[
  {
    "path": "License",
    "content": "MIT License\n\nCopyright (c) 2020 JeniyaTabassum\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
  },
  {
    "path": "Readme.md",
    "content": "# Dataset and Model for Fine-grained Software Entity Extraction\n\nThis 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)]\n\n\nFor the source code of our NER tagger, check the `code/NER/` folder.\n\nFor our annotated data with software-domain named entities, check the `resources/annotated_ner_data/` folder.\n\nTo cite the data or the code included in this repository, please use the following bibtex entry:\n\n\n      @inproceedings{Tabassum20acl,\n          title = {Code and Named Entity Recognition in StackOverflow},\n          author = \"Tabassum, Jeniya and Maddela, Mounica and  Xu, Wei  and Ritter, Alan\",\n          booktitle = {The Annual Meeting of the Association for Computational Linguistics (ACL)},\n          year = {2020}\n      }\n\n"
  },
  {
    "path": "code/Attentive_BiLSTM/HAN.py",
    "content": "import torch\nimport torch.nn as nn\nimport torch.autograd as autograd\nimport torch.nn.functional as F\n\nfrom utils_so import *\nfrom config_so import parameters\n\ntorch.backends.cudnn.deterministic = True\ntorch.manual_seed(parameters[\"seed\"])\n\n\n\n\n\nclass Embeeding_Attn(nn.Module):\n  def __init__(self):\n    super(Embeeding_Attn, self).__init__()\n    \n    self.max_len = 3\n    self.input_dim = 1824\n    self.hidden_dim = 150\n    self.bidirectional = True\n    self.drop_out_rate = 0.5 \n\n    self.context_vector_size = [parameters['embedding_context_vecotr_size'], 1]\n    self.drop = nn.Dropout(p=self.drop_out_rate)\n\n    self.word_GRU = nn.GRU(input_size=self.input_dim,\n                               hidden_size=self.hidden_dim,\n                               bidirectional=self.bidirectional,\n                               batch_first=True)\n    \n    self.w_proj = nn.Linear(in_features=2*self.hidden_dim ,out_features=2*self.hidden_dim)\n\n    self.w_context_vector = nn.Parameter(torch.randn(self.context_vector_size).float())\n\n    self.softmax = nn.Softmax(dim=1)\n\n    init_gru(self.word_GRU)\n\n  def forward(self,x):\n    \n    \n    x, _ = self.word_GRU(x)\n    Hw = torch.tanh(self.w_proj(x))\n    w_score = self.softmax(Hw.matmul(self.w_context_vector))\n    x = x.mul(w_score)\n    x = torch.sum(x, dim=1)\n    return x\n\n\n\n\n\n\n\n\nclass Word_Attn(nn.Module):\n  def __init__(self):\n    super(Word_Attn, self).__init__()\n    \n    self.max_len = 92\n    self.input_dim = 300\n    self.hidden_dim = 150\n    self.bidirectional = True\n    self.drop_out_rate = 0.5 \n\n    self.context_vector_size = [parameters['word_context_vecotr_size'] , 1]\n    self.drop = nn.Dropout(p=self.drop_out_rate)\n\n    self.word_GRU = nn.GRU(input_size=self.input_dim,\n                               hidden_size=self.hidden_dim,\n                               bidirectional=self.bidirectional,\n                               batch_first=True)\n    \n    self.w_proj = nn.Linear(in_features=2*self.hidden_dim ,out_features=2*self.hidden_dim)\n\n    self.w_context_vector = nn.Parameter(torch.randn(self.context_vector_size).float())\n\n    self.softmax = nn.Softmax(dim=1)\n\n    init_gru(self.word_GRU)\n\n  def forward(self,x):\n    \n    \n    x, _ = self.word_GRU(x)\n    Hw = torch.tanh(self.w_proj(x))\n    w_score = self.softmax(Hw.matmul(self.w_context_vector))\n    x = x.mul(w_score)\n    # print(x.size())\n    return x\n\n\n\n\n\n\n\n\n\n"
  },
  {
    "path": "code/Attentive_BiLSTM/Word_Freqency_Mapper.py",
    "content": "from gaussian_binner import GaussianBinner\nimport numpy as np\nfrom collections import Counter\n\nclass Word_Freqency_Mapper:\n\t\"\"\"docstring for ClassName\"\"\"\n\tdef __init__(self,bins=100, w=5.0):\n\t\tself.Train_Word_Counter=Counter()\n\t\tself.set_of_freq=set()\n\t\tself.binner = GaussianBinner(bins=bins, w=w)\n\n\t\tself.all_word_w_freq_vector={}\n\t\tself.Test_Set_Words=set()\n\n\tdef Find_Freq_Vector_for_words(self):\n\t\t\n\t\tip_array=np.array([0])\n\n\t\tfor word in self.Train_Word_Counter:\n\t\t\tword_freq=np.array([self.Train_Word_Counter[word]])\n\t\t\ttemp_ip_array = np.vstack((ip_array,word_freq))\n\t\t\tfreq_vector= self.binner.transform(temp_ip_array,1)[1]\n\t\t\tself.all_word_w_freq_vector[word]=freq_vector\n\t\t\t# print(freq_vector.shape)\n\t\t\t# print(word)\n\t\t\t# print(freq_vector[1])\n\t\t# print(self.Test_Set_Words - (set()))\n\t\t# print(len(self.Train_Word_Counter.keys()))\n\t\tfor word in self.Test_Set_Words:\n\t\t\tif word in self.Train_Word_Counter:\n\t\t\t\t# continue\n\t\t\t\t# word_freq1= self.all_word_w_freq_vector[word]\n\t\t\t\tword_freq=np.array([self.Train_Word_Counter[word]])\n\t\t\t\t# print(np.subtract(word_freq1, word_freq1))\n\t\t\t\t# print(\"\\n\\n\\n\")\n\t\t\t\tcontinue\n\t\t\telse:\n\t\t\t\tword_freq=np.array([0])\n\t\t\t\t# print(word, word_freq)\n\n\t\t\ttemp_ip_array = np.vstack((ip_array,word_freq))\n\t\t\tfreq_vector= self.binner.transform(temp_ip_array,1)[1]\n\t\t\t# print(word, freq_vector)\n\t\t\tself.all_word_w_freq_vector[word]=freq_vector\n\t\t# print(self.all_word_w_freq_vector)\n\n\tdef Read_File(self, ip_file):\n\t\tlist_of_sentence_words_in_file=[]\n\t\tlist_of_sentence_labels_in_file=[]\n\t\tlist_of_markdown_markdowns_in_file=[]\n\t\tcurrent_sent_words=[]\n\t\tcurrent_sent_labels=[]\n\t\tcurrent_sent_markdowns=[]\n\n\t\tfor line in open(ip_file):\n\t\t\t#print(line)\n\t\t\tif line.strip()==\"\":\n\t\t\t\tif len(current_sent_words)>0:\n\t\t\t\t\toutput_line = \" \".join(current_sent_words)\n\t\t\t\t\t#print(output_line)\n\t\t\t\t\tif \"code omitted for annotation\" in output_line and \"CODE_BLOCK :\" in output_line:\n\t\t\t\t\t\tcurrent_sent_words=[]\n\t\t\t\t\t\tcurrent_sent_labels=[]\n\t\t\t\t\t\tcurrent_sent_markdowns=[]\n\t\t\t\t\t\tcontinue\n\t\t\t\t\telif \"omitted for annotation\" in output_line and \"OP_BLOCK :\" in output_line:\n\t\t\t\t\t\tcurrent_sent_words=[]\n\t\t\t\t\t\tcurrent_sent_labels=[]\n\t\t\t\t\t\tcurrent_sent_markdowns=[]\n\t\t\t\t\t\tcontinue\n\t\t\t\t\telif \"Question_URL :\" in output_line:\n\t\t\t\t\t\tcurrent_sent_words=[]\n\t\t\t\t\t\tcurrent_sent_labels=[]\n\t\t\t\t\t\tcurrent_sent_markdowns=[]\n\t\t\t\t\t\tcontinue\n\t\t\t\t\telif \"Question_ID :\" in output_line:\n\t\t\t\t\t\tcurrent_sent_words=[]\n\t\t\t\t\t\tcurrent_sent_labels=[]\n\t\t\t\t\t\tcurrent_sent_markdowns=[]\n\t\t\t\t\t\tcontinue\n\t\t\t\t\telse:\n\t\t\t\t\t\tlist_of_sentence_words_in_file.append(current_sent_words)\n\t\t\t\t\t\tlist_of_sentence_labels_in_file.append(current_sent_labels)\n\t\t\t\t\t\tlist_of_markdown_markdowns_in_file.append(current_sent_markdowns)\n\t\t\t\t\t\tcurrent_sent_words=[]\n\t\t\t\t\t\tcurrent_sent_labels=[]\n\t\t\t\t\t\tcurrent_sent_markdowns=[]\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\telse:\n\t\t\t\tline_values=line.strip().split()\n\t\t\t\tgold_word=line_values[0]\n\t\t\t\tgold_label=line_values[1]\n\t\t\t\traw_word=line_values[2]\n\t\t\t\traw_label=line_values[3]\n\n\t\t\t\tword=gold_word\n\t\t\t\tlabel=gold_label\n\n\t\t\t\tcurrent_sent_words.append(word)\n\t\t\t\tcurrent_sent_markdowns.append(raw_label)\n\t\t\t\tcurrent_sent_labels.append(label)\n\t\t\t\t\n\t\treturn (list_of_sentence_words_in_file, list_of_sentence_labels_in_file, list_of_markdown_markdowns_in_file)\n\n\tdef Read_Test_Data(self, input_test_file):\n\t\t(list_of_sentence_words_in_file, list_of_sentence_labels_in_file, list_of_markdown_markdowns_in_file) = self.Read_File(input_test_file)\n\t\t\n\n\t\tfor list_of_words in list_of_sentence_words_in_file:\n\t\t\tfor word in list_of_words:\n\t\t\t\tself.Test_Set_Words.add(word)\n\n\tdef Read_Dev_Data(self, input_dev_file):\n\t\t(list_of_sentence_words_in_file, list_of_sentence_labels_in_file, list_of_markdown_markdowns_in_file) = self.Read_File(input_dev_file)\n\t\t\n\n\t\tfor list_of_words in list_of_sentence_words_in_file:\n\t\t\tfor word in list_of_words:\n\t\t\t\tself.Test_Set_Words.add(word)\n\n\n\tdef Find_Train_Data_Freq(self, input_train_file):\n\n\t\t(list_of_sentence_words_in_file, list_of_sentence_labels_in_file, list_of_markdown_markdowns_in_file) = self.Read_File(input_train_file)\n\t\tfor list_of_words in list_of_sentence_words_in_file:\n\t\t\tfor word in list_of_words:\n\t\t\t\tself.Train_Word_Counter[word]+=1\n\n\t\tfor word in self.Train_Word_Counter:\n\t\t\tself.set_of_freq.add(self.Train_Word_Counter[word])\n\n\t\t# print(min(self.set_of_freq))\n\n\n\tdef Find_Gaussian_Bining_For_Training_Data_Freq(self):\n\t\tfreq_array=np.array([0])\n\n\t\tfor word in self.Train_Word_Counter:\n\t\t\tword_freq =np.array([self.Train_Word_Counter[word]])\n\t\t\tfreq_array = np.vstack((freq_array,word_freq ))\n\n\n\t\tself.binner.fit(freq_array, 1)\n\n\tdef Write_Freq_To_File(self,output_file):\n\t\tfout= open(output_file,'w')\n\t\tfor word in self.all_word_w_freq_vector:\n\t\t\tword_freq=self.all_word_w_freq_vector[word].tolist()\n\t\t\tword_freq_str=[str(x) for x in word_freq]\n\t\t\t# print(word_freq)\n\t\t\t# word_freq_str = np.array2string(word_freq, formatter={'str':lambda x: float(word_freq)})\n\t\t\t# print(word_freq_str)\n\t\t\t# print(\"\\n\\n\\n\")\n\t\t\topline=word+\" \"+\" \".join(word_freq_str)+\"\\n\"\n\t\t\t# print(opline)\n\t\t\tfout.write(opline)\n\t\tfout.close()\n\n\n\n\n\nif __name__ == '__main__':\n\tinput_train_file=\"../../StackOverflow_Input_Data/train_gold_raw_merged.txt\"\n\tinput_dev_file=\"../../StackOverflow_Input_Data/dev_gold_raw_merged.txt\"\n\tinput_test_file=\"../../StackOverflow_Input_Data/test_gold_raw_merged.txt\"\n\toutput_file=\"Freq_Vector.txt\"\n\n\tfreq_mapper = Word_Freqency_Mapper()\n\tfreq_mapper.Find_Train_Data_Freq(input_train_file)\n\tfreq_mapper.Read_Dev_Data(input_dev_file)\n\tfreq_mapper.Read_Test_Data(input_test_file)\n\tfreq_mapper.Find_Gaussian_Bining_For_Training_Data_Freq()\n\tfreq_mapper.Find_Freq_Vector_for_words()\n\tfreq_mapper.Write_Freq_To_File(output_file)\n\n\n\n\n\n\n\n\n\n"
  },
  {
    "path": "code/Attentive_BiLSTM/auxilary_inputs_ner/ctc_pred.tsv",
    "content": "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\nadjusted\t0\n,\t0\nbut\t0\ndont\t0\nknow\t0\nhow\t0\nSQLFIDDLE\t1\n:\t0\nhttp://sqlfiddle.com/#!9/11093\t0\nYou\t0\nare\t0\nvery\t0\nclose\t0\n.\t0\nJust\t0\nadd\t0\na\t0\nwhere\t0\nclause\t0\nA\t0\nmore\t0\ntraditional\t0\napproach\t0\nuses\t0\nNOT\t0\nEXISTS\t1\nHere\t0\nis\t0\nSQL\t0\nFiddle\t0\nillustrating\t0\nthat\t0\nthe\t0\nfirst\t0\nworks\t0\n'm\t0\ntrying\t0\nmake\t0\nlittle\t0\nchat\t0\nprogram\t0\nafter\t0\nreading\t0\nBeej\t0\n's\t0\nguide\t0\nprogramming\t0\nAnd\t0\nthen\t0\nwas\t0\nthinking\t0\nabout\t0\nbasics\t0\nof\t0\nitself\t0\nand\t0\nn't\t0\nprint\t0\noutput\t0\nrecv()\t1\ninput\t0\nfor\t0\nsend()\t1\nat\t0\nsame\t0\ntime\t0\nbecause\t0\nclient\t0\ncan\t0\nalways\t0\nwrite\t0\nsomething\t0\nsend\t0\nit\t0\npossible\t0\nalso\t0\nwhile\t0\nhe\t0\n?\t0\nthought\t0\nthreads\t0\nlearned\t0\nbit\t0\nthem\t0\ncreated\t0\nsimple\t0\none\t0\nprints\t0\nsentence\t0\nevery\t0\n3\t0\nseconds\t0\nsecond\t0\nof-course\t0\nhad\t0\nlot\t0\nissues\t0\nex\t0\nif\t0\nyou\t0\nstarted\t0\ntyping\t0\nother\t0\nthread\t0\nwill\t0\nsimply\t0\ntake\t0\nwhat\t0\nwrote\t0\nwith\t0\ncode\t0\ntried\t0\nrecreate\t0\nhope\t0\nguys\t0\nhelp\t0\nme\t0\nundefined\t1\nbehavior\t0\nin\t0\nyour\t0\nhaven\t0\nan\t0\nuninitialized\t1\npointer\t0\ngetinput\t1\nUninitialized\t0\n(\t0\nnon-static\t0\n)\t0\nlocal\t0\nvariables\t0\nindeterminate\t0\nvalue\t0\nseem\t0\nrandom\t0\nAs\t0\nseemingly\t0\nscanf\t1\ncall\t0\nsome\t0\nunknown\t0\nplace\t0\nmemory\t0\noverwriting\t0\nwhatever\t0\nthere\t0\ncould\t0\neasily\t0\nsolve\t0\nby\t0\nmaking\t0\narray\t0\nC#\t0\n/.NET\t1\napplication\t0\nmultiple\t0\ni.e\t0\nconcurrently\t0\n6\t0\ntries\t0\nperform\t0\nupdate\t0\nThis\t0\npiece\t0\nrun\t0\ntransaction\t0\nBoth\t0\n3+mio\t0\nrecords\t0\nClustered\t0\nkey\t0\non\t0\n[\t0\nId\t0\n]\t0\nfield\t0\nnon-clustered\t0\nindexes\t0\nas\t0\nwell\t0\nFunny\t0\nthing\t0\nmanually\t0\nchecked\t0\nmy\t0\nparticular\t0\nexample\t0\ncWrh\t1\nOptions\t0\ncStg\t1\nso\t0\nend\t0\nnot\t0\nnecessary\t0\nattaching\t0\ndeadlog\t0\ngraph\t0\nredacted\t0\nvalues\t0\nsay\t0\nDB.wrh.Cars\t1\nDeadlock\t0\nYes\t0\nconcurrency\t0\nreally\t0\nadding\t0\nany\t0\n\"\t0\nReset\t0\n;\t0\nRecalculate\t0\nwhich\t0\ndoes\t0\ncalculation\t0\nbulk\t0\ninserts\t0\nback\t0\ninto\t0\nupdates\t0\nlater\t0\nconcurrent\t0\nmode\t0\nspeeds\t0\nup\t0\nsignificantly\t0\njust\t0\nlike\t0\nstick\t0\nregardless\t0\ntask\t0\nreset\t0\nvs\t0\nCPU\t0\nintensive\t0\nwork\t0\nAny\t0\nsuggestion\t0\naround\t0\ndeadlock\t0\nappreciated\t0\nsuggested\t0\n@KamranFarzami\t1\nanswer\t0\n@Grantly\t1\nsolved\t0\nproblem\t0\npoint\t0\nanswering\t0\nquestion\t0\ngoes\t0\nTransaction\t0\nIsolation\t0\nLevel\t0\nSNAPSHOT\t0\nprevents\t0\ndeadlocks\t0\nfrom\t0\nocurring\t0\nam\t0\naccomplish\t0\nwhy\t0\nstruggling\t0\nCreate\t0\nnew\t0\nfiddle\t0\ncontains\t0\nbutton\t0\ntext\t0\nx2\t0\nnumber\t0\n1\t0\nUse\t0\nJavascript\t0\neach\t0\nclicked\t0\nabove\t0\ndouble\t0\nSend\t0\nlink\t0\nthus\t0\nfar\t0\ntargeting\t0\nvia\t0\nJS\t0\ncannot\t0\nfigure\t0\nout\t0\nreturn\t0\nupdated\t0\nwhen\t0\nTry\t0\nLook\t0\ndoing\t0\nmultiplying\t0\nelement\t0\ntwo\t0\nwant\t0\nuse\t0\ninnerHTML\t1\nor\t0\ntextContent\t1\nThat\t0\nreturns\t0\nstring\t0\nparseInt()\t1\nparseFloat()\t1\nwe\t0\noverride\t0\nparent\t0\nclass\t0\nmethod\t0\nsuper()\t1\navoid\t0\nmention\t0\nname\t0\n-\t0\nclear\t0\nBut\t0\ncase\t0\nsubclass\t0\nfunction\t0\ndefined\t0\nWhat\t0\npreferable\t0\nway\t0\nsuper().parent_method()\t1\nself.parent_method()\t1\nOr\t0\nno\t0\ndifference\t0\nactually\t0\nsyntactic\t0\nsugar\t0\nits\t0\npurpose\t0\ninvoke\t0\nimplementation\t0\ncertain\t0\ninstead\t0\noverwrite\t0\nextra\t0\naka\t0\nexecution\t0\nbefore\t0\noriginal\t0\ncompletely\t0\ndifferent\t0\nca\t0\nself.method_name()\t1\nrecursion\t0\nerror\t0\n!\t0\nRuntimeError\t1\nmaximum\t0\ndepth\t0\nexceeded\t0\nExample\t0\nGiven\t0\nbase\t0\nm\t0\nB\t0\nextends\t0\noverriding\t0\nC\t0\nD\t0\ngenerates\t0\nEDIT\t0\nrealized\t0\nmethods\t0\ntest_a\t1\ntest_b\t1\nMy\t0\nstill\t0\nvalid\t0\nregarding\t0\nspecific\t0\nscenario\t0\nshould\t0\nself.test_a()\t1\nunless\t0\noverride/overwrite\t0\nexecute\t0\nimplementation.\t0\ncalling\t0\nsuper().test_a()\t1\ngiven\t0\n'll\t0\nnever\t0\ntest_a()\t1\nsubclasses.\t1\nhowever\t0\nnonsense\t0\nUsually\t0\ninherited\t0\nHowever\t0\nrare\t0\nsituations\t0\nmight\t0\neven\t0\nthough\t0\nseems\t0\nThey\t0\n're\t0\nequivalent\t0\nthey\t0\nTo\t0\nexplore\t0\ndifferences\t0\nlets\t0\nversions\t0\nkind\t0\nclasses\t0\nfurther\t0\nextend\t0\nWhen\t0\ntest_b()\t1\nC1\t0\nC2\t0\ninstances\t0\nresults\t0\nB1\t1\nB2\t0\nbehave\t0\nB2.test_b\t1\ntells\t0\nPython\t0\nskip\t0\nversion\t0\nderived\t0\nActually\t0\nsuppose\t0\nsibling\t0\ninheritance\t0\nsituation\t0\ngetting\t0\nobscure\t0\nLike\t0\nsaid\t0\ntop\t0\nusually\t0\nallow\t0\nmore-derived\t0\nCs\t1\nless-derived\t0\nmeans\t0\nmost\t0\nusing\t0\nself.whatever\t1\ngo\t0\nonly\t0\nneed\t0\nsuper\t0\nfancy\t0\n'd\t0\nchange\t0\nobject\t0\nparameter\t0\ndecide\t0\nsample\t0\nchanged\t0\nAlternatively\t0\nchoose\t0\n..\t0\nswitch\t0\nstatement\t0\nIs\t0\ngood\t0\ndirection\t0\npretty\t0\nsure\t0\nhas\t0\nalready\t0\nbeen\t0\ndiscussed\t0\ninternet\t0\n've\t0\nread\t0\neverything\t0\nfunctions\t0\nfind\t0\nsolution\t0\nguess\t0\nsearching\t0\nwrong\t0\nkeywords\t0\nCarinherits\t1\nNSObject\t1\nkey-value-coding\t0\nfree\t0\nsetValue:forKey\t1\ncreate\t0\nKVC\t0\ninherit\t0\nfunc\t1\nguards\t0\nagain\t0\nbad\t0\nproperty\t0\nnames\t0\nKeep\t0\nmind\t0\ncrash\t0\nenter\t0\nHope\t0\nanswers\t0\nhaskell\t0\nnow\t0\nunderstand\t0\nmost/some\t0\nconcepts\t0\nexactly\t0\nhaskells\t0\ntype\t0\nsystem\t0\nanother\t0\nstatically\t0\ntyped\t0\nlanguage\t0\nintuitively\t0\nbetter\t0\nimaginable\t0\ncompared\t0\nC++\t0\njava\t0\nexplain\t0\nlogically\t0\nprimarily\t0\nlack\t0\nknowledge\t0\nsystems\t0\nbetween\t0\nlanguages\t0\nCould\t0\nsomeone\t0\ngive\t0\nexamples\t0\nhelpful\t0\nstatic\t0\nExamples\t0\nterse\t0\nsuccinctly\t0\nexpressed\t0\nnice\t0\nHaskell\t0\nfeatures\t0\nall\t0\nexist\t0\nrarely\t0\ncombined\t0\nwithin\t0\nsingle\t0\nconsistent\t0\nsound\t0\nmeaning\t0\nerrors\t0\nguaranteed\t0\nhappen\t0\nruntime\t0\nwithout\t0\nneeding\t0\nchecks\t0\nCaml\t0\nSML\t0\nalmost\t0\nJava\t0\nLisp\t0\npeforms\t0\nreconstruction\t0\nprogrammer\t0\ntypes\t0\nwants\t0\ncompiler\t0\nreconstruct\t0\nown\t0\nsupports\t0\nimpredicative\t0\npolymorphism\t0\nhigher\t0\nkinds\t0\nunlike\t0\nproduction-ready\t0\nknown\t0\nsupport\t0\noverloading\t0\nWhether\t0\nthose\t0\nopen\t0\ndiscussion\t0\n—\t0\nquite\t0\nfew\t0\nprogrammers\t0\nwho\t0\nstrongly\t0\ndislike\t0\nprefer\t0\nmodule\t0\nOn\t0\nhand\t0\nlacks\t0\nelegantly\t0\ndispatch\t0\nJulia\t0\nexistential\t0\nGADTs\t0\nthese\t0\nboth\t0\nGHC\t0\nextensions\t0\ndependent\t0\nCoq\t0\nAgda\t0\nIdris\t0\nAgain\t0\nwhether\t0\ndesirable\t0\ngeneral-purpose\t0\nOne\t0\nmajor\t0\nOO\t0\nability\t0\nside\t0\neffects\t0\nrepresented\t0\ndata\t0\nmonad\t1\nsuch\t0\nIO\t1\nallows\t0\npure\t0\nverify\t0\nside-effect-free\t0\nreferentially\t0\ntransparent\t0\ngenerally\t0\neasier\t0\nless\t0\nprone\t0\nbugs\t0\nIt\t0\nmakes\t0\nthink\t0\ncarefully\t0\nparts\t0\nI/O\t0\nmutable\t1\nAlso\t0\nalthough\t0\npart\t0\nfact\t0\ndefinitions\t0\nexpressions\t0\nrather\t0\nthan\t0\nlists\t0\nstatements\t0\nsubject\t0\ntype-checking\t0\nIn\t0\noften\t0\nintroduce\t0\nlogic\t0\nwriting\t0\norder\t0\nsince\t0\ndetermine\t0\nmust\t0\nprecede\t0\nFor\t0\nline\t0\nmodifies\t0\nstate\t0\nimportant\t0\nbased\t0\nensure\t0\nthings\t0\ncorrect\t0\nordering\t0\ndependency\t0\ntends\t0\nthrough\t0\ncomposition\t0\ne.g\t0\nf\t1\ng\t1\nx\t0\ncheck\t0\nagainst\t0\nargument\t0\ncomposed\t0\nhttps://www.youtube.com/watch?v=XPpsI8mWKmg\t0\nvideo\t0\nclosed\t0\ncaptions\t0\nresponse\t0\nisCC\t1\n=\t0\nfalse\t0\nhappens\t0\nvideos\t0\nCan\t0\nanyone\t0\ntell\t0\nhttps://developers.google.com/youtube/v3/docs/captions\t0\nThank\t0\nset\t0\ngot\t0\nbelieve\t0\nplayer\t0\nCC\t0\nsee\t0\nreferring\t0\nsubtitles\t0\nThere\t0\ndistinction\t0\ncaptioning\t0\nhere\t0\nTherefore\t0\ntrue\t0\ninclude\t0\nintended\t0\npeople\t0\nable\t0\nhear\t0\nhappening\t0\nopposed\t0\ngeneral\t0\nput\t0\nonto\t0\ntheir\t0\ncases\t0\nhigh\t0\nquality\t0\npaid\t0\nmovies\t0\nYouTube\t0\nsense\t0\nsupposed\t0\nsyntax\t0\nmaybe\t0\nmuch\t0\nexperience\t0\nyoutube\t0\napi\t0\nchecking\t0\ndocumentation\t0\nfound\t0\nlearning\t0\nCollection\t0\nFramework\t0\nwebsite\t0\nhttp://way2java.com/collections/hashtable-about/\t0\nAfter\t0\nHashtable\t1\naccess\t0\ntable\t0\nkeys\t0\nSet\t0\nkeys()\t1\nReturns\t0\ncontaining\t0\nkeySet()\t1\nsimilarity\t0\nduplicates\t0\nAdding\t0\nremoving\t0\nelements\t0\nreflects\t0\nAnyone\t0\nEnumeration<K>\t1\nlegacy\t0\nlonger\t0\nrecommended\t0\nreplaced\t0\nHashMap\t1\nConcurrentHashMap\t1\n†\t0\nexisted\t0\nJCF\t0\ndid\t0\ntherefore\t0\nstandard\t0\nstart\t0\nEnumeration\t1\ninterface\t0\nmoving\t0\ncollection\t0\nobjects\t0\nThen\t0\ncame\t0\n1.2\t0\nretrofitted\t0\nMap\t0\nreturned\t0\nintroduced\t0\nretained\t0\ncompatibility\t0\nreasons\t0\nachieves\t0\nconveys\t0\nintent\t0\nreinforces\t0\nmathematical\t0\nimplements\t0\nIterable\t1\n<T>,\t1\nreplaces\t0\nEnumerable<T>\t1\nFrom\t0\nenumeration\t1\nhashtable\t0\nrecord\t0\nmongoDb\t1\ni\t0\nMay\t0\nlend\t0\nhelping\t0\nupsert\t1\ninsert\t0\nmissing\t0\n{\t0\ndocument\t0\n$set\t1\nstudent_record}\t1\nconvert\t0\nstudent_grade\t1\nfloat\t0\nBy\t0\ndefault\t0\nFalse\t1\nspecify\t0\nYour\t0\nsimplify\t0\nflag.lower()\t1\n==\t0\n'\t0\ny\t0\nLast\t0\nleast\t0\ndeprecated\t0\nAPI\t0\nupdate_one\t1\nRails\t0\n1.2.3\t0\nproject\t0\nUpgrading\t0\nrails\t0\noption\t0\ntest\t0\nweb-service\t0\ntested\t0\nscaffold\t0\ngenerate\t0\nproblems\t0\nsetup\t0\n.NET\t0\nASP.NET\t0\nWeb\t0\nApp\t0\nReference\t0\nURL\t0\nwizard\t0\nreceive\t0\nAre\t0\nActionWebService\t1\nprobably\t0\nanswered\t0\nelsewhere\t0\npops\t0\ngoogle\t0\nactionwebservice\t1\nrequests\t0\nAWS\t0\nrefuses\t0\nnon-POST\t0\nSpecifically\t0\naction_controller_dispatcher.rb\t1\nreads\t0\nBasically\t0\neither\t0\nrequest\t0\nPOST\t0\nGETting\t0\nhandling\t0\nGET\t0\ntry\t0\nediting\t0\ninside\t0\ngem\t0\n1)\t0\noverwritten\t0\n2)\t0\nidea\t0\n3)\t0\nformer\t0\nlikely\t0\nappropriate\t0\ncontrol\t0\ngenerating\t0\nZack\t0\nChandler\t0\nworkaround\t0\nQuickBooks\t0\nconnection\t0\nquoting\t0\nbelow\t0\nurl\t0\nchanges\t0\nObviously\t0\ndispatch_web_service_request\t1\nhelps\t0\nreposting\t0\nlarge\t0\nfile\t0\nLet\t0\ncompare\t0\n3rd\t0\nsymbol\t0\nc'\t1\ncounter\t0\ngrep\t0\nsuite\t0\nSo\t0\nadvice\t0\nMore\t0\nextract\t0\nvector\t0\n4\t0\n4:10\t0\nsymbols\t0\nadvance\t0\nP.S\t0\nbest\t0\nscript\t0\nR\t0\ncurious\t0\nadequate\t0\nEdited\t0\nprovide\t0\nfast\t0\nlarger\t0\nstrings\t0\nlong\t0\nmillions\t0\nnucleotides\t0\nlookbehind\t1\nassertion\t0\ntoo\t0\nslow\t0\npractical\t0\nsplits\t0\napart\t0\ncharacter\t0\ncharacters\t0\nfill\t0\nthree\t0\nrow\t0\nmatrix\t0\nextracts\t0\ntakes\t0\n0.2\t0\nprocess\t0\n3-million\t0\nOriginal\t0\nsubstr()\t1\nCompare\t0\nthird\t0\nc\t0\nExtract\t0\n10\t0\ninstall\t0\nckeditor\t1\nconfiguration\t0\ndescribe\t0\nedit\t0\nHTML\t0\nalfresco\t0\ncontent\t0\narea\t0\nempty\t0\nblank\t0\nanything\t0\nHelp\t0\nplease\t0\n:(\t1\ndownloaded\t0\nckeditor-forms-master\t0\ngithub\t0\ncmd\t0\nfolder\t0\ncommands\t0\nant\t0\nclean\t0\ndist-jar\t1\n-Dtomcat.home\t1\nC:/Alfresco/tomcat\t1\nhotcopy-tomcat-jar\t1\nwere\t0\nsuccessfully\t0\nexecuted\t0\nRestarted\t0\ntomcat\t0\nserver\t0\nNow\t0\ncreate/edit\t0\ncontext\t0\n4.2.f\t0\nbrowser\t0\nchrome\t0\nlearn\t0\nSencha\t0\nTouch\t0\nstuck\t0\nobvious\t0\ntabPanel\t1\nevent\t0\ntap\t0\nload\t0\nmaptestPanel\t1\npanel\t0\nmap\t0\nloaded\t0\njs\t0\nlooks\t0\nok\t0\nseeing\t0\nproperly\t0\nThanks\t0\nsteer\t0\nright\t0\nclassic\t0\nsencha\t1\nmapPanel\t1\nhidden\t0\nhandler\t0\nshow\t0\nhiding\t0\nBesides\t0\nspeaking\t0\nlayouts\t0\nprecise\t0\nlayout\t0\ncard\t0\ndefinition\t0\nseveral\t0\nfix\t0\nMaps\t0\nSince\t0\nchild\t0\nitem\t0\nfit\t0\nOnly\t0\nfullscreen\t1\noutermost\t0\nitems\t0\ncontainers\t0\ndynamically\t0\ncontainer\t0\nadd()\t1\ndoLayout()\t1\ntrigger\t0\nfunctionality\t0\nInstead\t0\ndirectly\t0\nbtnPanel\t1\n4)\t1\npossibly\t0\nvbox\t0\nquestions\t0\nkinesis\t0\nshard\t0\nconsumers\t0\nstream\t0\nconsume\t0\nlambda\t0\nindependently\t0\niterator\t1\nstream/shard\t1\nshards\t0\nlimit\t0\ninvocations\t0\nexecutions\t0\nSeethis\t0\ndoc\t0\ndetails\t0\nenum\t1\nEnumDropDownListFor\t1\npage\t0\nEmployee\t0\nform.But\t0\nfirstly\t0\nEvaluation.My\t1\ndecision\t0\nchanging\t0\nwhole\t0\nworking\t0\n.So\t0\neasly\t0\nideas\t0\nSlideshow\t0\nreason\t0\nendless\t0\ntimes\t0\nhttp://jsfiddle.net/2VQ9A/\t0\njsfiddle\t1\nbeing\t0\nrecognized\t0\nweird\t0\nsilly\t0\nappreciate\t0\n:)\t0\nfiles\t0\ndefinetely\t0\nprobme.Try\t1\nCheck\t0\nadded\t0\njquery\t1\nCDN\t0\nGoogle\t0\nMicrosoft\t0\nAdd\t0\nexisting\t0\ncalled\t0\ntemp_09.jwn\t1\ncolumn\t0\ncobrand_bank_id\t1\nALTER\t0\nTABLE\t0\nstep\t0\nNo\t0\nSchema-less\t0\ndatabases\t0\nNoSQL\t0\nRDBMS\t0\nscheme\t0\naltered\t0\nsaying\t0\nbought\t0\nshoes\t0\nbin\t0\nstore\t0\ntoss\t0\ncorner\t0\nappear\t0\noptions\t0\nachieve\t0\nschema\t0\nflexibility\t0\nEntity\t0\n–\t0\nattribute\t0\nmodel\t0\nJSON\t0\nDepending\t0\nvolume\t0\netc\t0\nnosql\t0\ndb\t0\nchoice\t0\nsometimes\t0\nschema-flexible\t1\nrelational\t0\nSome\t0\nflexible\t0\nE.g\t0\nSAP\t0\nHANA\t0\nCREATE\t0\nWITH\t0\nSCHEMA\t0\nFLEXIBILITY\t0\nInternet\t0\nvirtual\t0\nmachine\t0\nCentOS\t0\n7\t0\nnetwork\t0\nadapter\t0\nNAT\t0\nHost\t0\nping\t0\namong\t0\nmachines\t0\nslave1\t1\nslave2\t1\n...\t0\nfine\t0\n8.8.8.8\t1\n->\t1\nPING\t0\n56(84)\t0\nbytes\t0\nmessage\t0\nnothing\t0\ncomes\t0\nout.\t0\ngoogle.com\t0\nsays\t0\nunkown\t0\nhost\t0\nenp0s3\t1\nNAT(on)\t1\ninet\t0\n10.0.2.15\t1\nnetmask\t1\n255.255.255.0\t1\nenp0s8\t1\nhost(on)\t1\n192.168.56.101\t1\nWhere\t0\nPlease\t0\nspending\t0\n17\t0\nhours\t0\nNetwrok\t0\nadaptateur\t0\nEnabled\t0\nAttached\t0\nBridge\t0\nAdapter\t0\nNetwork\t0\nConnections\t0\nconfigure\t0\nObtain\t0\nIP\t0\naddress\t0\nautomatically\t0\nDNS\t0\nlogin\t0\nregister\t0\nPHP\t0\nMySQL\t0\nfragment\t0\nloginfragment\t1\nloginlayout\t1\nandroid\t0\ndevelop\t0\ntutorials\t0\nactivity\t0\nasked\t0\ninvolved\t0\nespecially\t0\nmentioned\t0\nsource\t0\nofficial\t0\nAndroid\t0\nDevelopers\t0\ntraining\t0\nhttp://developer.android.com/training/basics/network-ops/connecting.html\t0\ncopy\t0\nrelevant\t0\nHaving\t0\ndone\t0\nbite\t0\nimplement\t0\nrequires\t0\ncalls\t0\nweb\t0\nbackground\t0\nhttp://developer.android.com/training/multiple-threads/index.html\t0\ngoing\t0\nauthentication\t0\nused\t0\nDrupal\t1\nframework\t0\nSession\t0\nauth\t0\nCRLF\t1\ntoken\t0\nOAuth\t1\nsimilar\t0\nAuthentication\t0\ninvolve\t0\nsteps\t0\n**\t0\nSign\t0\nRetrieve\t0\ncookie\t0\nalong\t0\nheaders\t0\nFinally\t0\nsort\t0\nencapsulation\t0\nlayer\t0\nfolks\t0\nXML\t0\nGSON\t0\nlibrary\t0\nhttps://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/Gson.html\t0\nuser\t0\nbeginner\t0\nfriendly\t0\npractice\t0\nbuilt-in\t0\nJSONArray\t1\nJSONObject\t1\nhttp://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/\t0\nOverall\t0\nWeb-service\t0\nCall\t0\nform\t0\nFragment\t1\nGet\t0\nparse\t0\nShow\t0\nResult\t0\nUser\t0\nFragments\t1\nrich\t0\nQComboBox\t1\nPerhaps\t0\nunsure\t0\ncustom\t0\ndelegate\t0\nreplace\t0\ndrawing\t0\nroutine\t0\nQLabel\t1\nQListView/QListWidget\t1\nwidgets\t0\nvalidating\t0\nDOMDocument\t1\nwarning\t0\nWarning\t0\nDOMDocument::schemaValidate()\t1\nElement\t0\nfoo\t1\nexpected\t0\nExpected\t0\n{url}foo\t1\n{url}bar\t1\n'{url}foo'\t1\nnotation\t0\nrefer\t0\nexpanded\t0\nwhose\t0\nnamespace\t0\nreferred\t0\nClark\t0\nJames\t0\npromoted\t0\nunqualified\t0\n{}foo\t1\ntelling\t0\nlocation\t0\nexpecting\t0\nnamespace-qualfied\t1\nnamed\t0\nbar\t0\nProbable\t0\ncause\t0\ninstance\t0\nrequired\t0\ndeclaration\t0\nclassify\t0\nr\t0\nstructure\t0\ndistinguish\t0\nday\t0\n/\t0\nmonth\t0\nyear\t0\nstrsplit\t1\nstr_split\t1\ncategorize\t0\npattern\t0\ndates\t0\nstringr\t1\nrebus\t0\npackages\t0\nintuitive\t0\nmove\t0\nMVC\t0\nAzure\t0\nin-house\t0\nexport\t0\nSSL\t0\ncertificate\t0\nassociated\t0\nNO\t0\nWindows\t0\nQuestion\t0\nappeared\t0\ncertainly\t0\nuploaded\t0\nmagic\t0\ndeveloper\t0\npacked\t0\ndeployment\t0\npackage\t0\nreference\t0\nthumbprint\t0\nservice\t0\nadministrator\t0\nco-admin\t1\ncontact\t0\nwhom\t0\nask\t0\nlost\t0\nissuer\t0\ncertification\t0\nauthority\t0\noriginally\t0\nrequested\t0\nbehind\t0\nindices\t0\nnearest\t0\nnon-coprime\t0\nGCD(Ai,\t1\nAj)\t1\n>\t0\nAi\t1\nAj\t0\n!=\t1\nj\t1\nlet\t0\nwritten\t0\nbrute\t0\nforce\t0\nO(n^2))\t0\nBinary\t0\nGCD\t0\nefficient\t0\nwondering\t0\nfaster\t0\nParticularly\t0\nO(NlogN)\t1\nmax\t0\nnumbers\t0\nafford\t0\nkeep\t0\nlist\t0\nprimes\t0\nfactoring\t0\nmay\t0\naverage/random\t0\nOtherwise\t0\nworst\t0\ncomplexity\t0\nO(N*N)\t1\nApproach\t0\nfactor\t0\nMap[N]\t1\n+\t0\nint\t1\nclosestNeigh[]\t1\nO(N)\t0\nclosest\t0\ncontain\t0\nprefix/sufix\t0\nsums\t0\neliminate\t0\nmaps\t0\nnext\t0\nAdjust\t0\nneighbor\t0\nindex\t0\nbring\t0\nrelief\t0\nO\t0\nN*\t1\n<num_distict_factors>\t1\nN\t0\nwilling\t0\nfactorization\t0\ntraverse\t0\nonce\t0\nleft\t0\nhashing\t0\nprime\t0\nupdating\t0\nseen\t0\ncourse\t0\nnoting\t0\ntraversal\t0\nmiss\t0\nconduct\t0\nnearer\t0\nshared\t0\nsaved\t0\nimage\t0\ncolors\t0\nimages\t0\nformats\t0\nWriteableBitmap.GetPixels()\t1\ncloned\t0\npixel\t0\nputting\t0\nwriteablebitmap\t1\nposition\t0\ncloning\t0\nfault\t0\nWriteablebitmap\t1\nEx\t0\ncompiled\t0\ndownloadable\t0\n1.0.2\t0\nothers\t0\nuntil\t0\nV\t0\n1.0.5\t0\nuntested\t0\nsourcecode\t0\nwriteablebitmapex\t1\nVersion\t0\niterating\t0\ntr\t0\nclick\t0\nX\t0\niterated\t0\nY\t0\ncontroller\t0\nangular\t1\nper\t0\n$rootScope\t1\npass\t0\nscope\t0\npopulate\t0\n$scope\t1\nones\t0\naccessible\t0\nhttp://jsfiddle.net/ae8neq3k/\t0\nmultidimensional\t0\n$responses\t1\nprint_r\t1\nforeach\t1\nloop\t0\nprint_r($output)\t1\nSeems\t0\ntransformation\t0\nvar_dump\t1\nview\t0\nvariable\t0\ninheriting\t0\niter\t0\niterators\t0\nexported\t0\nreproducible\t0\nrunnable\t0\npairsRef\t1\nloops\t0\nmine\t0\nTest2\t1\nunexported\t0\nimport\t0\nBiostrings\t1\nWith\t0\nfresh\t0\nsession\t0\nloading\t0\nrunning\t0\nResults\t0\nError\t0\nattempt\t0\napply\t0\nnon-function\t0\ninternal\t0\nsuggestions\t0\ngreatly\t0\nnecessarily\t0\nBen\t0\nnextElem\t1\nimported\t0\nadditional\t0\nunique\t0\nvisible\t0\nMongoDB\t0\nSUM\t0\nincoming\t0\n11\t0\n12\t0\n500\t0\nMongo\t0\nShell\t0\nllovet\t0\naggregation\t0\nlook\t0\nshape\t0\nresulting\t0\nsum\t0\n$project\t1\noperator\t0\npipeline\t0\njson\t1\nran\t0\nID\t0\nprefectly\t0\njsonString\t1\nstops\t0\ngives\t0\nnullpoiterexeption\t1\ninfo\t0\n\"W1121000-00002\":\t1\n\"clnt\":1023\t1\n\"srvr\":870\t1\n}\t0\nclnt\t0\nPyhton3.4.1\t1\nwin7\t0\ntxt\t0\nsoftware\t0\npython\t0\nnotepad\t0\nspace\t0\nsave\t0\nmac\t0\nwindows\t0\nans\t0\ntextedit\t1\ndoubting\t0\ncoding\t0\nPlus\t0\nreported\t0\nmac(Python3.4.1,OS10.9)\t0\nNotepad\t0\nreencoded\t0\nencoding\t0\ninstallation\t0\nauto-detected\t0\nopened\t0\nopens\t0\nQuoting\t0\nopen()\t1\nexplicitly\t0\nwanted\t0\nutf-8-sig\t1\nauto-detect\t0\nUTF-16\t1\nplain\t0\nUTF-8\t1\nencodings\t0\nencoded\t0\nANSI\t0\ncodepage\t1\nexact\t0\nconfigured\t0\n936\t0\nGBK\t0\nSee\t0\ncodecs\t0\nsupported\t0\nCompile\t0\ngcc\t0\n-fdump-class-hierarchy\t1\nemits\t0\nsignificance\t0\nnearly-empty\t0\nmean\t0\ndifferentiate\t0\ncompile\t0\nmembers\t0\nhasa\t0\nvtable\t1\nelse\t0\nABI\t0\nprovides\t0\nnearly\t0\ninteresting\t0\naffect\t0\nconstruction\t0\nacross\t0\nresearching\t0\neffect\t0\nbases\t0\nsize\t0\noverhead\t0\nNSJSONSerialization\t1\nobj\t1\nprops\t0\nsuccess\t0\nboolean\t0\nString\t0\nindicates\t0\ntimeout\t0\nnull\t0\nhtml\t0\nrequiring\t0\nhttp://screencast.com/t/chDMshKPl\t0\nCSS\t0\nvertical\t0\nscrollbar\t1\nFirefox\t0\nDoes\t0\ntechnique\t0\nSafari\t0\nOpera\t0\notherwise\t0\n11.01\t0\n5.0.3\t0\nrest\t0\nrule\t0\noverflow-y\t1\nscroll\t0\n10.10\t0\nChrome\t0\n3.0.195.38\t0\nMozilla\t0\n3.5.6\t0\nobviously\t0\nExplorer\t0\nshown\t0\nengine\t0\nchances\t0\nKendo\t0\nUI\t0\n&\t0\nCodeigniter\t0\ntrouble\t0\ncodeigniter\t1\ndisplay\t0\ngrid\t0\nBelow\t0\nscreen\t0\nshoot\t0\ndebug\t0\nshot\t0\nhttp://prntscr.com/5bmn3n\t0\nrecived\t0\nhttp://prntscr.com/5bmne5\t0\nprntscr.com/5bmnib\t1\nprntscr.com/5bmnni\t1\njsonp\t1\ncross-domain\t0\nMVC5\t1\nhaving\t0\nserver-side\t0\nvalidation\t0\nfields\t0\nculture\t0\nde-CH\t1\nfeels\t0\ndefaulting\t0\nGerman\t0\nformat\t0\nweb.config\t1\nglobalization\t0\nresource\t0\nuiCulture\t1\ncome\t0\nplay\t0\njquery.globalize\t1\ncorrectly\t0\nreports\t0\nproper\t0\nLocally\t0\nvalidates\t0\n100.00\t0\nAll\t0\nWin7\t0\nIIS7\t0\nThough\t0\nWin8\t0\nanymore\t0\nclient-side\t0\n0.00\t0\nrejects\t0\ninvalid\t0\nDate\t0\nARE\t0\nadds\t0\nconfusion\t0\nwonder\t0\nsomehow\t0\nfalling\t0\nde-DE\t1\ndate\t0\n0\t0\n00\t0\nenabled/installed\t0\nfigured\t0\nApparently\t0\nregistry\t0\nsettings\t0\nde-AT\t0\nThese\t0\nhonored\t0\nWeb.Config\t1\nHTTP\t0\nRequest\t0\nScrapy\t0\ncopy/paste\t0\nBurp\t0\nscrapy.http.Request\t1\ncorresponding\t0\nClearly\t0\ninformation\t0\nerror-prone\t0\nedge\t0\nunderstanding\t0\nconverts\t0\nTwisted\t0\nwrites\t0\nbody\t0\nTCP\t0\ntransport\t0\naway\t0\nUPDATE\t0\n1.0\t0\nhttp.py\t1\n1.1\t0\nhttp11.py\t0\nsent\t0\nduplicating\t0\nScrapy/Twisted\t1\nframeworks\t0\nscrapy\t1\nplenty\t0\nextension\t0\npoints\t0\ndoable\t0\nfinally\t0\nassembled\t0\nscrapy/core/downloader/handlers/http11.py\t1\nScrapyAgent.download_request\t1\nhttps://github.com/scrapy/scrapy/blob/master/scrapy/core/downloader/handlers/http11.py#L270\t0\nhook\t0\ndump\t0\nmonkey\t0\npatching\t0\nScrapyAgent\t1\nlogging\t0\nHTTP11DownloadHandler\t1\nAgent\t0\nDOWNLOAD_HANDLER\t1\nhttp\t0\nhttps\t0\nsettings.py\t1\nhttps://doc.scrapy.org/en/latest/topics/settings.html#download-handlers\t0\nopinion\t0\npacket\t0\nsniffer\t0\nproxy\t0\noverkill\t0\nAssigning\t0\nwidth\t0\nheight\t0\ndimensions\t0\nrectangle\t0\ncircle\t0\nassign\t0\ndraw\t0\nsurface\t0\nEvery\t0\nRect\t0\nerase\t0\nattempting\t0\nup-sample\t0\nicosahedron\t0\nMATLAB\t1\nvertices\t0\nmid-points\t0\nrecomputing\t0\nfaces\t0\nmanaged\t0\nrecompute\t0\nvertex\t0\nconnect\t0\nneighbours\t0\nup-sampled\t0\nSample\t0\nCode\t0\ntriangle\t0\n3}\t0\nsubdividing\t0\nb\t0\nc}\t1\ncreates\t0\ncoordinates\t0\ntriangles\t0\nfollowed\t0\nFirst\t0\nsize(S.vertices)+1\t1\ntotal\t0\n3*size(S.faces)\t1\ngroup\t0\nface\t0\ntogether\t0\nus\t0\nVx(f,:)\t1\nVx(:,1)\t1\nVx(:,3)<-\t1\nVx(:,2)\t1\ncat\t1\npermute\t0\nreshape\t0\ngets\t0\nugly\t0\nincomprehensible\t0\n9\t0\nplug\t0\nm*3\t1\nS\t1\napp\t0\ncommand\t0\nnodemon\t1\nserver.js\t1\ndeploy\t0\nBitnami\t0\npowered\t0\ncompute\t0\ninstalled\t0\nlog\t0\nnodejs\t0\nssh-ing\t0\nperimision\t0\nport\t0\n27017\t1\ngcloud\t1\nfirewall-rules\t1\nallow-mongodb\t1\n--allow\t1\ntcp:27017\t1\nmongodb.config\t1\nbind_ip\t1\n0.0.0.0\t1\nStill\t0\nfrustating\t0\napreciate\t0\nexplicit\t0\nhelped\t0\nprinter\t0\nshreds\t0\nshredder\t0\nsaves\t0\nprinted\t0\nsecurely\t0\ndeletes\t0\nshows\t0\ndriver\t0\nVB.Net\t0\nnul\t1\nworked\t0\nDOS\t0\nprinting\t0\nhttp://www.markmmanning.com/blog/2009/01/creating-fake-printer-devnull-for.html\t0\nPDF\t0\nold\t0\niText\t1\nUnix\t0\nEverything\t0\nexploitation\t0\nteam\t0\ncontacted\t0\nstorage\t0\ntroubles\t0\ntemp\t0\nindicate\t0\nAcroaxxxxx\t1\nunder\t0\n/tmp\t1\nmodify\t0\ndelete\t0\ntmp\t0\nduring\t0\nThnks\t0\napache_setenv\t1\n'sessionID'\t1\nsession_id()\t1\nTRUE\t1\nBUT\t0\nsessionID\t1\nGETs\t0\nincluding\t0\njpg\t0\ngif\t0\nsetting\t0\napache\t0\nenvironment\t0\navailable\t0\np.s\t0\nnote\t0\nGetting\t0\nGateway\t0\nUnable\t0\npost\t0\npayments\t0\nauthorize.net\t1\nAuthorize.net\t0\ncoming\t0\nprovider\t0\npayment\t0\nverified\t0\ntrans\t1\ncURL\t0\nfirewalls\t0\nblocking\t0\nconnections\t0\ntestmode\t1\ndebugging\t0\nexception.log\t1\nenabled\t0\nTest\t0\nMode\t0\nSystem->Configuration->PaymentMethods\t0\nTurns\t0\nissue\t0\nnameservers\t0\nhttp://www.magentocommerce.com/boards/viewthread/50611/\t0\nreferenced\t0\nviewed\t0\narchive\t0\nhttps://web.archive.org/web/20150315055800/http://www.magentocommerce.com/boards/viewthread/50611\t0\nreceived\t0\nblocked\t0\nip\t0\naccounts.authorize.net\t1\nTools\t0\nmenu\t0\nFraud\t0\nSuite\t0\nAuthorized\t0\nAIM\t0\naddresses\t0\nlast\t0\ndatabase\t0\nuniversity\t0\nprevious\t0\nid\t0\n$_POST['ids']\t1\ncicle\t0\nsubmit\t0\n$service_info\t1\nvar_dump()\t1\nechoing\t0\nwo\t0\npassed\t0\nlatest\t0\nmade\t0\nMobile\t0\nService\t0\n__createdAt\t1\nplanning\t0\naccording\t0\ntracks\t0\nHi\t0\nTree\t0\nnode\t0\npreorder\t1\nthank\t0\nListView\t1\nStore\t0\nselects\t0\ntemplate\t0\ndataTemplateSelector\t1\nItemTemplate\t1\nadjust\t0\ndisplayed\t0\nbigger\t0\nbig\t0\nFollowing\t0\nXAML\t1\nVerticalContentAlignment\t1\nStretch\t0\nstretches\t0\nListViewItem\t1\nItem\t0\nincreases\t0\nselected\t0\nItemTemplateSelector\t1\nGrid\t0\nRow\t0\nNumber\t0\n<Grid\t1\nGrid.Row=\"1\"\t1\nstretch\t0\ncross\t0\nword\t0\nbind\t0\nbinding\t0\nHeight\t1\nDataTemplate\t1\nActualHeight\t1\nListView.ItemContainerStyle\t1\nstyle\t0\nsetter\t0\nDefinition\t0\napplied\t0\nAuto\t0\nOrderAmount\t1\nassuming\t0\norders\t0\nproduct\t0\nrealise\t0\nenough\t0\nextracted\t0\nbuild\t0\npublish\t0\nRubygems\t0\nmain\t0\nGemfile\t0\ndiscover\t0\nsmall\t0\nbug\t0\ninteracts\t0\nEach\t0\nbuilding\t0\ninstalling\t0\nlocally\t0\n15\t0\nminimise\t0\nquick\t0\ndevelop/test\t0\ncycle\t0\nbuilt\t0\ncontradict\t0\npushed\t0\nleading\t0\nguides\t0\nbundler\t0\ngems\t0\nrubygems\t1\ngit\t0\nrepository\t0\nconveniently\t0\npath\t0\nheader.tpl\t1\nproduct.tpl\t1\nSEO\t0\npurposes\t0\nmodifiy\t0\nmeta\t0\nCurrently\t0\n$description\t1\n<?php\t1\necho\t0\n$heading_title\t1\n?>\t1\nessentially\t0\nheader\t0\naccessing\t0\nmodel/controller\t0\nwasting\t0\nnoted\t0\ncomments\t0\nOnce\t0\nimpossible\t0\ncontents\t0\npreg_replace()\t1\nprocessing\t0\neliminates\t0\nparadox\t0\nWhich\t0\nleave\t0\nlooking\t0\nbenefit\t0\nsimpler\t0\nmaintain\t0\nEven\t0\nseperation\t0\nconcerns\t0\nfunctional\t0\n.html.erb\t1\n@consumer\t1\n.name\t0\nfacebook_consumer.js\t1\nliked\t0\n<%=\t1\n@consumer.name\t1\n%>\t1\nsaving\t0\njs.erb\t1\nthoughts\t0\ninline\t0\nRuby\t0\n.js\t1\n.js.erb\t0\nrender\t0\npartial\t0\nbet\t0\napp-wide\t0\nAt\t0\nlinked\t0\nscripts\t0\nmulti\t0\nthreaded\t0\nhandles\t0\nevents\t0\nstarts\t0\noperations\t0\nloads\t0\ndata-table\t0\nstrongly-typed\t1\ndataset\t0\nDataGridView\t1\nbound\t0\nDataTable\t1\nready\t0\ninvokes\t0\nrefresh()\t1\nlines\t0\nfits\t0\ncrashes\t0\ndatalines\t0\noccurs\t0\n3.5\t0\nXP\t0\nWin\t0\n64\t0\nbecomes\t0\nunresponsive\t0\nresize\t0\nwindow\t0\nappears\t0\nattached\t0\nrefresh\t0\noperation\t0\n.cs\t1\nrelated\t0\ndirect\t0\nDataSet\t1\nUiDataSource\t1\nCurrentSamples\t1\nmanner\t0\nmistake\t0\nsomewhere\t0\n@ChrisF\t0\nu\t0\ndatabinding\t1\ndataTable\t1\nraises\t0\nguessing\t0\nWinForms\t1\nSTA\t0\nthreading\t0\nlocated\t0\nneeded\t0\nLikely\t0\naware\t0\nreceives\t0\nbackwards\t0\nenterprise\t0\nadapters\t0\nGUI\t0\nBindingList\t1\nquote\t0\ncredit\t0\ncrashing\t0\ncross-thread\t0\nprogressively\t0\nmp3\t0\nDataSource\t1\ntd\t0\nzebra\t0\nphoto\t0\nanimals\t0\nselect\t0\nquantity\t0\nlion\t0\nunsuccessful\t0\nfinding\t0\nMaybe\t0\nxpath\t0\ntags\t0\ndepending\t0\ninputs\t0\nprior\t0\navail\t0\nclassName\t1\nlocator\t0\nName\t0\ncssselector\t1\nline_item\t1\nZebra\t0\nWebElement\t1\nholds\t0\nfour\t0\n<td>\t1\nWebElements\t1\nmodes\t0\ndocs\t0\nsite\t0\nexit\t0\ncomponent\t0\nunbinds\t0\nstartService()\t1\nremain\t0\nbindService()\t1\nunbindService()\t1\ngone\t0\nEventually\t0\nstop\t0\nkill\t0\nneither\t0\nimmediately\t0\nupon\t0\nbuild.gradle\t1\nplugin\t0\napplicationId\t1\nmanage\t0\nconfig\t0\nresolved\t0\nphase\t0\nalternative\t0\nconstructor\t0\n100%\t1\nre-order\t0\ndivs\t1\ntablets\t0\nhttp://getbootstrap.com/css/#grid-column-ordering\t0\nhack\t0\nmobile\t0\nIts\t0\nPlace\t0\nviewports\t1\nreorder\t0\nLinux\t0\nUbuntu\t0\nfell\t0\nshort\t0\nargparse\t1\narguments\t0\ntoying\t0\narchives\t0\naction\t0\ncompress\t0\ntest1.txt\t1\nArchive.zip\t1\nfeel\t0\nstupid\t0\n*\t0\nChanged\t0\nplaces\t0\n-c\t1\npython3\t1\nidiot\t0\nbiggest\t0\nturned\t0\nhttps://docs.python.org/3.3/using/windows.html\t0\nhttps://docs.python.org/3.3/using/unix.html\t0\ninterested\t0\nlinks\t0\ndisplaying\t0\nbeans\t0\nemail\t0\npassword\t0\nrole\t0\nbean\t0\ntesting\t0\nenters\t0\neverytime\t0\nturn\t0\noff\t0\nrerun\t0\nentered\t0\nofcourse\t0\ndoLogin.jsp\t1\nformError.java\t1\nvalidate\t0\nBeans\t1\ncurrently\t0\naddGenError\t1\nsetGenError\t1\nsending\t0\nloginFormData\t1\ndesired\t0\nexists\t0\nindividuals\t0\npersonal\t0\ndrive\t0\nHappens\t0\nexecutes\t0\nfailing\t0\npaste\t0\nBare\t0\nbones\t0\nthrowing\t0\nnoticed\t0\ninstantiated\t0\nFileSystemObject\t1\nfso\t1\nLate\t0\ninterrogate\t0\nScripting.FileSystemObject\t1\nearly\t0\nScripting\t0\nRuntime\t0\nCreateObject\t1\ndetailed\t0\nStack\t0\nOverflow\t0\nhttps://stackoverflow.com/a/3236348/491557\t0\nactions\t0\nUITableViewCell\t1\noverlap\t0\ncell\t0\nNational\t0\nGeographic\t0\nswiped\t0\nlistener\t0\ncontentView\t1\ntrack\t0\nframe\t0\nconstant\t0\nunable\t0\nkinda\t0\niOS\t0\ncreating\t0\nswipe\t0\ngestures\t0\nyourself\t0\nproceed\t0\ntabview\t1\nxib\t0\nCustomCell\t1\nCustomCell.swift\t1\npast\t0\ntableview\t0\n100pt\t0\nstoryboard\t0\ndatasource\t1\nBear\t0\nstackoverflow\t0\nvarious\t0\nsearch\t0\nengines\t0\ntold\t0\nspreadsheet\t0\nmyself\t0\ndeleting\t0\nSorry\t0\nprevent\t0\nimplies\t0\nEither\t0\nprotection\t0\ncomment\t0\nentire\t0\nindividual\t0\nsheets\t0\nareas\t0\nsheet\t0\nReading\t0\nImplies\t0\nmodified\t0\nbasis\t0\ninserting\t0\nprotect\t0\nhide\t0\nspan\t0\nprotected\t0\nonEdit(e)\t0\ndetect\t0\ncells\t0\nNote\t0\nadding/deleting\t0\nrows\t0\nonEdit()\t1\nonChange()\t1\nWithin\t0\ndeleted\t0\ninserted\t0\nrange\t0\naffected\t0\nspreadsheets\t0\nparameters\t0\nmisunderstood\t0\namend\t0\nAssuming\t0\ninterest\t0\nlate\t0\nreply\t0\nhttp://d.pr/86DH+\t0\ndivide\t0\nprice\t0\nAngular\t1\ndirective\t0\nbootstrap\t0\nformatter\t0\nreturning\t0\nngClick\t1\nwatch/monitor\t0\nDOM\t0\nprocesss/compile\t0\ndirectives\t0\nAnother\t0\nng-click\t1\ntwice\t0\nDatagrid\t1\neasy\t0\ncolumns\t0\nmouse\t0\nreleased\t0\ncurrent\t0\nVIEW\t1\ncode-behind\t0\nleader\t0\nthru\t0\nproperties\t0\nOmitted\t0\nexceed\t0\nproceeded\t0\nmultibind\t1\ndatagridcell\t1\ndatacontext\t1\nAn\t0\naside\t0\ndue\t0\nconstraints\t0\ndatagridrow\t1\nviewmodel\t1\nDid\t0\ntrick\t0\nAlternative\t0\nDataGrid\t1\nand/or\t0\ndefine\t0\nsupporting\t0\njob\t0\nSelectedItem\t1\nSelectedValue\t1\nCurrentItem\t1\nCurrentCell\t1\nFuthermore\t0\ncouldnt\t0\nhandled\t0\ntriggers\t0\nBinding\t0\ntransmit\t0\nViewModel\t1\ncommunication\t0\nView\t0\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid%28v=vs.110%29.aspx\t0\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid.currentitem%28v=vs.110%29.aspx\t0\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selectedvalue%28v=vs.110%29.aspx\t0\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selecteditem%28v=vs.110%29.aspx\t0\nbindable\t1\nEdit\t0\nLink\t0\nMSDN\t0\nMultiBinding\t1\nPage\t0\nhttp://msdn.microsoft.com/en-us/library/system.windows.data.multibinding%28v=vs.110%29.aspx\t0\nrequirement\t0\nICommand\t1\nProperty\t1\nbasic\t0\nthis.\t0\nPropertyChangedCallback\t1\nattach\t0\nhandle\t0\nPreviewKeyDown\t1\n@Value\t1\n@AID\t1\nstored\t0\nprocedure\t0\nphp\t0\nsubscribe\t0\nsection\t0\npressing\t0\nasking\t0\nhis\t0\nemails\t0\nusers\t0\nsubscription\t0\nimplemented\t0\ntotally\t0\nDB\t0\nclients\t0\napps\t0\nvoila\t0\ncloud\t0\nexcel\t0\nTest.xlsx\t1\nformula\t0\n\"='C:[Sample.xlsx]Sheet1'!B14\"\t1\nSmaple.xlsx\t1\nB14\t0\nExcel\t0\nOptions->\t1\nAdvanced\t0\n->General\t0\nun-checking\t0\nAsk\t0\nautomatic\t0\nvaiable\t0\nReveiveSMS.class\t1\nReceiveSMS.class\t1\nmessageBody\t1\nthanks\t0\nSharedPreferences\t1\nReceiveSMS\t1\nrecently\t0\nswitched\t0\ndistributions\t0\nAnaconda\t0\nContinuum\t0\nAnalytics\t0\n3.3\t0\nSublime\t0\nruns\t0\nexcept\t0\ncompletion\t0\nenable\t0\nnormal\t0\nlive\t0\nunbuffered\t0\n-u\t1\nflag\t0\nVBA\t0\nmacro\t0\nMS\t0\nOutlook\t0\nour\t0\norganization\t0\nsigned\t0\nNot\t0\nself-cert\t0\ncert\t0\nWe\t0\nMy_Org_VBA_Macro_Cert\t1\nMMC\t0\nsnap-in\t0\ndigital\t0\nsignature\t0\ncerts\t0\nrebooting\t0\nTools->Digital\t1\nSignature\t0\npress\t0\nChoose\t0\nCert\t0\n7.1\t0\n2013\t0\narticles\t0\ndeal\t0\nself\t1\ncover\t0\nsigning\t0\ngloss\t0\nover\t0\nwish\t0\ndata-item\t1\ndata-variable\t1\nIE\t0\nShould\t0\nbecome\t0\nel\t0\nDEMO\t0\nUPD\t0\nreplaceWith\t1\nthx\t0\n@Barmar\t1\nreplacement\t0\nkept\t0\nhttps://github.com/vinkla/instagram\t0\nLaravel\t1\n5.1\t0\ninstruction\t0\nMac\t0\nOS\t0\nforget\t0\nmoment\t0\nhints/suggestions\t0\n\\Exceptions\\Handler.php\t1\nException\t0\nlaravel\t1\n5.2\t0\n<=\t1\nhttps://github.com/laravel/framework/issues/9650\t0\nHandler\t0\nDo\t0\nrelease\t0\nvendor/Illuminate/Foundation/Bootstrap/HandleExceptions\t0\n@handleException\t1\ndd($e)\t1\ndeveloped\t0\nWord\t0\nPuzzle\t0\nGame\t0\ngreater\t0\n20\t0\nMB\t0\ngame\t0\nUnity\t0\napprox\t0\nAPK\t0\nadvise\t0\nHave\t0\nhttps://docs.unity3d.com/Manual/ReducingFilesize.html\t0\nafraid\t0\nminimal\t0\nembedding\t0\nmono\t0\nunity\t0\npuzzle\t0\nmostly\t0\nnative\t0\nManual\t0\nReducing\t0\nforum\t0\nmany\t0\nremember\t0\nIT\t0\nvisits\t0\nCake\t1\nrevisit\t0\nauto\t0\nlogged\t0\n$this->cookie->read('Auth.User')\t1\nbrowsers\t0\nFireFox\t0\ncookies\t0\nsetcookie()\t1\nCookie\t0\nresolve\t0\nbypasses\t0\ncake\t0\ncakes\t0\ncreation\t0\nalgorithm\t0\ncookie.php\t1\nencryption\t0\nbegan\t0\nfunky\t0\nmessages\t0\ncreate/save\t0\ncount\t0\nprohibited\t0\nHas\t0\nexperienced\t0\nupgraded\t0\n1.9\t0\n2.3.9\t0\nmistaken\t0\nchangelog\t0\nruby-on-rails-2-3-9-released\t0\nnuance\t0\nbunch\t0\nLudoCore/Singleton.h\t1\nincluded\t0\nearlier\t0\nMake\t0\nsemicolons\t0\nQuick\t0\n#include\t1\n<class\t1\nC>\t1\nSingleton\t1\npredeclaration\t1\ncomplains\t0\nincomplete\t0\nLudoTimer\t1\nSingleton.h\t1\ndefines\t0\namount\t0\nVRAM\t0\nVisual\t0\nStudio\t0\nGraphics\t0\nAnalyzer\t0\ngraphic\t0\nObject\t0\nTable\t0\nUnfortunately\t0\nmegabytes\t0\nrequire\t0\nSDK\t0\nccavenue\t0\nprestashop\t0\n1.2.5.0\t0\nsuccessful\t0\nshopping\t0\ncart\t0\nclearing\t0\nCCavenue\t0\nPayment\t0\nbluezeal.in\t1\nmerchant\t0\naccount\t0\nReturn\t0\nhttp://myshop\t0\n/modules/ccavenue/validation.php\t1\nccavenue.php\t1\n$Url\t1\nhttp://'.htmlspecialchars($_SERVER['HTTP_HOST'\t1\nENT_COMPAT\t1\n.__PS_BASE_URI__\t1\nmodules/ccavenue/validation.php\t1\nvalidation.php\t1\nIe\t0\nAuthDesc\t1\nOrder_Id\t1\nregenerating\t0\nsettings.\t1\ndirectory\t0\nrm\t1\ncapture\t0\nquotes\t0\nassignment\t0\nexport_folder_path\t1\nslanted\t0\nUnicode\t0\nbash\t0\ntreated\t0\nliterals\t0\ncopypasting\t0\nblogs\t0\neditor\t0\nmacOS\t0\nReplace\t0\nregular\t0\nASCII\t0\ndisable\t0\nsmart\t0\ncare\t0\nspaces\t0\nHad\t0\nreal\t0\nlife\t0\nWhy\t0\nnaming\t0\nmutators\t1\nprefixes\t0\nunderstandable\t0\nmyMember\t1\nMember\t0\nsetMyMember\t1\ngetMyMember\t1\nhistorical\t0\nget*\t0\nset*\t1\nspecified\t0\nJavaBeans\t0\nspecification\t0\nlibraries\t0\nreflection\t0\nexpect\t0\nJackson\t0\nmapper\t0\nserialize\t0\nget/setters\t0\nannotations\t0\nstyles\t0\nPerl\t0\n->someProperty()\t1\ngetter\t0\n->someProperty($newValue)\t1\nBasic\t0\nSingle-Row\t0\nTile\t0\nSource\t0\nconfigurations\t0\ntile\t0\nsources\t0\noverlays\t0\noverlay\t0\npositioned\t0\nplaced\t0\nway.\t0\ntileSources\t1\nindependent\t0\npages\t0\nconsole\t0\nTiledImage.imageToViewportRectangle\t1\ninitialization\t0\nCodepen\t0\nhttps://codepen.io/hussainb/pen/QQPPvL\t0\ncss\t0\nLooks\t0\nOpenSeadragon\t0\nticket\t0\nhttps://github.com/openseadragon/openseadragon/issues/1412\t0\nstoring\t0\nseparately\t0\nviewer\t0\nhttps://codepen.io/iangilman/pen/aqgzJZ\t0\nplot\t0\nbelong\t0\nx-axis\t0\naxis\t0\nmarkers\t0\nhttp://i.stack.imgur.com/FNcob.png\t0\nanybody\t0\nViktor\t0\nMatplotlib\t1\nsnaps\t0\nlimits\t0\nfactors\t0\n5\t0\n100\t0\nwind\t0\nboundary\t0\nax.margins\t1\npadding\t0\nautoscaling\t0\ncalculated\t0\n13\t0\nweeks\t0\nseparate\t0\nlinking\t0\ninitial\t0\nconfused\t0\ndateadd()\t1\nchild_process\t1\ndns\t1\nconfigurable\t0\nRemove\t0\nmodules\t0\nnode.gyp\t1\nremove\t0\nlib\t0\nbuiltinLibs\t0\nlib/internal/module.js\t1\nBe\t0\ntests\t0\nbenchmarks\t0\nchild_proccess\t1\nlib/internal/v8_prof_polyfill.js\t1\nlib/internal/cluster/master.js\t1\ncommence\t0\nstating\t0\nobjective\t0\n13-bit\t0\nintegers\t0\n<\t1\ntrillions\t0\nimperative\t0\noptimize\t0\nutilizes\t0\n2.7\t0\npyopencl\t1\naveraging\t0\n800\t0\nGFlops\t0\nATI\t0\nRadeon\t0\n6870\t0\ncaring\t0\n<,\t1\n>,\t1\noperators\t0\nbyte\t0\nfloats\t0\n(as\t0\nnow),\t1\nbitwise\t0\nbits\t0\nincrease\t0\nspeed\t0\nmodels\t0\norm\t0\nrefrence\t1\ngroup_by\t1\naggregates\t0\nannotate\t0\ndjango\t0\nperson\t0\nperson_name\t1\nPerson\t0\nCar\t0\ncar_owner\t1\nperson_id\t1\ncars\t0\nbelonging\t0\ngroup_by(person_name)\t0\nsorted\t0\nowner\t0\n%x%\t1\ncar_id\t1\n>=\t1\nList\t0\ncriteria\t0\nCars\t0\nOwners\t0\nintend\t0\nhttps://reqres.in/api/users/2\t0\nsends\t0\nfollows\t0\nwanna\t0\ngrab\t0\navatar\t0\nbinary\t0\nObservable\t1\napproached\t0\nfinish\t0\nfinal\t0\nswitchMap\t1\nconcatMap\t1\nmergeMap\t1\npop-up\t0\nfilled\t0\nSubmit\t0\nWhenever\t0\ncloses\t0\ntarget\t0\n_self\t1\ntab\t0\nyet\t0\nstay\t0\nAJAX\t0\nlisted\t0\nnon-AJAX\t1\npopup\t0\nclicks\t0\nunderneath\t0\nJSP\t0\nbacked\t0\nservlet\t0\nzoomPlot.generatePlot()\t1\n.png\t1\ndisplays\t0\nsubmits\t0\nrecycle\t0\ninit\t1\nElsewhere\t0\nways\t0\nIframe\t0\nTarget\t0\niframe\t0\nVisually\t0\nvisibility\t0\nnone\t0\nlatter\t0\ndestroys\t0\nPrevent\t0\nsubmission\t0\nsubmitted\t0\ndialog\t0\nWrap\t0\ndiv\t1\n#results\t1\n-container\t1\nNOTE\t0\nDO\t0\nFORGET\t0\njQuery\t0\nPS\t0\nsnippet\t0\nfunctioning\t0\n:::EDIT::\t1\nRespond\t0\nsrc\t0\nEspecially\t0\nJavaScript\t0\nmonitor\t0\nmatchmaker\t1\nself()\t1\nThreads\t0\ntrade\t0\ntids\t1\nmake_match()\t1\nmake_match\t1\npair\t0\nsleep\t0\nmutex\t1\ncondition\t0\npthread.h\t1\nmustbe\t0\nevaluate\t0\ncorrectness\t0\nfeedback\t0\nwether\t0\nRg.Plugins.Popup\t1\nconfirmation\t0\nItem1\t1\npause\t0\ntill\t0\nTaskCompletionSource\t1\nPopupAlert\t1\nasync\t0\nusage\t0\nleverage\t0\nMessagingCenter\t1\nconfirm\t0\nmat\t0\nfirst.mat\t1\nsecond.mat\t1\nthird.mat\t1\n,..\t0\nvariable1\t1\n<3400x1\t1\ndouble>\t1\nvariable2<1143x1\t1\nvariable3<1141x1\t1\nconcatenate\t0\nsomebody\t0\nMany\t0\nmatlab\t1\nvectors\t0\ncombine\t0\ndisk\t0\nSomething\t0\nplaying\t0\nexpansion\t0\npack\t0\nstuff\t0\ndownloader\t0\nspecial\t0\nvalues-v9/styles.xml\t1\nnotification\t0\ncauses\t0\npreAPI9\t1\napi9\t0\n<uses-sdk\t1\nandroid:minSdkVersion=\"8\"\t1\nandroid:targetSdkVersion=\"9\"\t1\n/>\t1\nAndroidManifest.xml\t1\nnaively\t0\neclipse\t0\nignore\t0\napi8\t0\ndeployed\t0\nmarket\t0\nvalues-9\t0\nphone\t0\nlevel\t0\nhoping\t0\ntrivial\t0\nbtw\t0\nDescription\t0\nResource\t0\nPath\t0\nLocation\t0\nType\t0\nretrieving\t0\nmatches\t0\nandroid:TextAppearance.StatusBar.EventContent.Title\t1\nstyles.xml\t1\n/Google\t0\nPlay\t0\nDownloader\t0\nLibrary/res/values\t0\n-v9\t1\nAAPT\t0\nProblem\t0\nposted\t0\napk\t0\nlibs\t0\nstumped\t0\nUpdate\t0\nvalues-v9\t1\nrebuilt\t0\nDownloadManager\t1\nfixed\t0\n2.3.3\t1\ntoolchain\t1\nbuiding\t0\nandroid:minSdkVersion\t1\n8\t0\nvalues-v9/\t1\nRemoving\t0\ndark\t0\nfont\t0\ntoolbar\t0\nbesides\t0\nToolbar\t0\nappcompat\t1\nxml\t0\nreflected\t0\ntutorial\t0\nhttp://developer.android.com/training/appbar/index.html\t0\nSLIDE\t0\nUP\t0\nanimation\t0\nrepeating\t0\nonAnimationEnd\t1\nfired\t0\nincremented\t0\nstarting\t0\ntickerView.startAnimation(animSlideUp)\t1\nMethod\t0\nAvoid\t0\nanimations\t0\nanimate\t0\nscaleY\t1\nLinearInterpolator\t1\nRepeat\t0\nsec\t0\nrestart\t0\nOnAnimationEnd()\t1\nFirebug\t0\najax\t0\nyes\t0\nfirebug\t0\nmarks\t0\nyellow\t0\ndynamic\t0\nSure\t0\ninspect\t0\nFireBug\t0\nrecent\t0\naccounts\t0\nOSX\t0\nsplit\t0\nbottom\t0\nNSTabview\t1\ntabs\t0\nshowing\t0\nbars\t0\ntabless\t0\nQt\t0\ngraphicsView\t1\nfitInView\t1\nnicely\t0\nlies\t0\nmaximize\t0\ngraphics\t0\nhorizontal\t0\ntalking\t0\nmaximized\t0\nQuite\t0\nresizeEvent\t1\nrelies\t0\nQGraphicsView\t1\nQGraphicsScene\t1\nzoom\t0\n;)\t0\nshare\t0\nInstagram\t0\nKingfisher\t0\nthroughout\t0\ndownload\t0\ncache\t0\nUIImageViews\t1\nDownload\t0\nobjective-C\t0\nSwift\t0\nRename\t0\n.igo\t0\ninstagram\t0\nexclusive\t0\ndepend\t0\nhooks\t0\nDocumentation\t0\nscarce\t0\nspecially\t0\npush\t0\nnavigation\t0\nUIBarButtonItem\t1\nSystem\t0\nAction\t0\nIBAction\t1\nexcludedActivityTypes\t1\ncomplete/exhaustive\t0\nUIActivityTypes\t1\ngleaned\t0\ncode-complete\t0\ncommand-clicking\t0\nUIActivity\t1\nstruct\t0\nuncomment\t0\nexclude\t0\nfuture\t0\nsounds\t0\nUIImage\t1\ndocuments\t0\nSaving\t0\nRetrieving\t0\nSharing\t0\nDFD\t0\npointed\t0\nVC\t0\nGDI+\t0\ncontexts\t0\nincludes\t0\nFont\t0\nSolidBrush\t1\nWhite\t0\nBlack.\t0\nPen.\t0\nstrategy\t0\nhold\t0\nwidely\t0\nread-only\t0\navoids\t0\ncreate/dispose\t0\ntook\t0\nthread-safety\t0\naccesses\t0\naccessed\t0\nbasically\t0\nlifetime\t0\n200\t0\nshort-life\t0\ndisposed\t0\nasap\t0\nsometime\t0\nunexpected\t0\nresources\t0\noutage\t0\nexception\t0\nhopefully\t0\nexceptions\t0\nwiser\t0\ntons\t0\nreal-world\t0\nconclusions\t0\ntheses\t0\nstrategies\t0\nCaching\t0\nSystem.Drawing\t1\ncheap\t0\nexpensive\t0\nallocated\t0\nheap\t0\nprocesses\t0\ndesktop\t0\nlimited\t0\n65535\t1\nCreating\t0\nbrush\t0\npen\t0\nroughly\t0\nmicrosecond\t0\nminiscule\t0\ncost\t0\ninvolves\t0\nsizable\t0\nchunk\t0\ntaken\t0\ncaches\t0\nOther\t0\nhogging\t0\nneedlessly\t0\ndangerous\t0\nblindly\t0\napplying\t0\nrelying\t0\nfinalizer\t0\nlots\t0\nheavy\t0\npainting\t0\nallocation\t0\nGC\t0\nexhaust\t0\nquota\t0\nGDI\t0\n10,000\t0\nwrappers\t0\nthemselves\t0\n10000\t0\nfinalizers\t0\ndiagnose\t0\nTask\t0\nManager\t0\nSelect\t0\nColumns\t0\ntick\t0\nObjects\t0\nMight\t0\nUSER\t0\nleaked\t0\neye\t0\ncounts\t0\nsteadily\t0\nclimbing\t0\nspells\t0\ndoom\t0\nSitecore\t0\nreferences\t0\nSPEAK\t0\nwidth/height\t1\nbears\t0\nresemblance\t0\nSheerResponse.ShowModalDialog\t1\npassing\t0\nsuffixed\t0\npx\t0\nbox\t0\nSPEAK-based\t0\ndialogs\t0\n7.5\t0\n8.0\t0\ncustomize\t0\n\\sitecore\\shell\\Controls\\jQueryModalDialogs.html\t1\nstring.Empty\t1\nForceDialogSize\t1\ndesigning\t0\ninterfaces\t0\nabstract\t0\nsuited\t0\nmissed\t0\nconsiderations\t0\ndesign\t0\ndomain\t0\nconsider\t0\nchoosing\t0\nabstracts\t0\nreasonable\t0\ncommon\t0\nboilerplate\t0\nconcrete\t0\nimplementations\t0\nProviding\t0\ngreatest\t0\nlatitude\t0\nimplementers\t0\nabstraction\t0\nimplementer\t0\nall--and\t0\nensures\t0\nALWAYS\t0\noccur\t0\nNegative\t0\ngoo\t0\npseudocode\t0\nIVehicle\t1\nVehicle\t0\nPutCarInGear()\t1\nfulfill\t0\nexpectation\t0\nmatters\t0\nAND\t0\nCryptoJS\t1\naes256\t1\n.net\t0\njavascript\t0\nCordova\t0\n//.Net\t1\n//\t0\nencode\t0\nBase64\t1\ndecode\t0\nJavascript(Cordova)\t1\nmatch\t0\ngenerated\t0\n.Net\t1\ndata.frame\t1\npairs\t0\nlogged_in\t1\ndeauthorize\t0\nlogs\t0\ncoercion\t0\nlocate\t0\nadvantage\t0\npain\t0\nquickly\t0\nEventName\t1\nseries\t0\nquicken\t0\nas.numeric(df$EventName)\t1\ndiff(as.numeric(df$EventName))\t1\nimagine\t0\n-1\t1\nData\t0\nrecognition\t0\ndetector\t0\nsqllite\t0\nstudio\t0\n3.4\t0\nopencv\t1\n??\t0\nim\t0\nIndexing\t0\nzero-based\t0\ncounting\t0\n36\t0\n38\t0\nauthorization\t0\naccess_token\t1\nFunction\t0\ngetUser\t1\nfeed\t0\nfan\t0\nwall\t0\ncronjob\t1\nhour\t0\nCoreData\t1\nBackground\t0\ndownloading\t0\ncaching\t0\niPad\t0\nthumbnail\t0\nTransformable\t0\ntriggered\t0\ncallback\t0\nactual\t0\nhang\t0\nDoing\t0\nblocks\t0\nnotice\t0\nInspecting\t0\nsqlite\t1\ndevice\t0\ninform\t0\ncore\t0\nrow/cell\t1\ntable/uicollectionview\t1\nNSURLConnection\t1\ncallbacks\t0\nqueue\t0\nlocking\t0\nCore\t0\nrules\t0\nconfinement\t0\nunfortunately\t0\nobsolete\t0\nblock\t0\nUsing\t0\nperformBlock\t1\nperformBlockAndWait\t1\nenqueued\t0\nserial\t0\nfailure\t0\nTypically\t0\nNSFetchedResultsController\t1\nobserves\t0\nfetch\t0\npopulates\t0\nlisten\t0\ninforms\t0\nBufferedImage\t1\ncopying\t0\nsquare\t0\nrotated\t0\nangle\t0\nequals\t0\nintersects\t0\nsimplest\t0\ntransform\t0\nGraphics2D\t1\nregion\t0\npaint\t0\nControl\t0\nGridView1\t1\nGridView\t1\ntag\t0\nrunat\t1\nGridview\t1\n.aspx\t0\ncontens\t0\n.aspx.vb\t1\nviews\t0\nlaunching\t0\nwhenever\t0\ninitialize\t0\nstatus\t0\npresent\t0\nmodally\t1\ndictated\t0\nmodalTransitionStyle\t1\ndismissViewControllerAnimated:completion\t1\nViewController\t1\niPhone\t0\nUINavigationController\t1\npop\t0\nsecondViewController\t1\ntransition\t0\nperformSegueWithIdentifier:sender\t1\nmatter\t0\nsegue\t0\nperformed\t0\ninstantiateViewControllerWithIdentifier\t1\nUIViewController\t1\nAvplayer\t0\nresume\t0\nstopped\t0\nglobal\t0\nCMtime\t0\ncurrenttime\t1\nseek(to:)\t1\nbeginning\t0\nAVAudioPlayer\t1\nAVplayer\t1\nAudio\t0\nUnwind\t1\n2.in\t0\nviewdidload\t1\nperfect\t0\nre-download\t0\naudio\t0\npurse\t0\nwait\t0\nTextViews\t1\ncopies\t0\ncolor\t0\n.gradlew\t1\ncreateCoverageReport\t1\nindex.html\t1\ncrashing.\t0\n98%\t0\nfail\t0\nnexus\t0\nconnected\t0\n4.4.\t0\nplug-in\t0\nBill\t0\ngradle\t1\njacoco\t1\npackaged\t0\nbroke\t0\nCouple\t0\nInstrumentation\t0\nfailed\t0\njava.lang.VerifyError\t1\nupgrade\t0\ntools\t0\n21+\t0\nHooray\t0\ntestCoverageEnabled\t1\n.ec\t0\nApplying\t0\nhurt\t0\nreportsDir\t1\nreport\t0\nbuild/outputs/reports/coverage/debug/index.html\t0\ncraigslist\t0\naddress(zip)\t0\nmapping\t0\nsites\t0\ncity-wise/state\t0\n-wise\t0\nIndeed\t0\nCraigslist\t0\nsites/cities\t0\nprebuild\t0\ncities\t0\ngeocoding\t1\nTiny\t0\nGeocoder\t0\nYahoo\t0\nBing\t0\noffer\t0\nsolutions\t0\nsort-by-nearest\t0\ngeospatial\t0\nMongoDB's\t0\nreproduced\t0\noptimizations\t0\nreplicates\t0\noptimization\t0\nstraight\t0\nforward\t0\ncommented\t0\noffending\t0\nconcerned\t0\nassembler\t0\nperhaps\t0\nexplanation\t0\nbuggy\t0\nEnv\t0\nVM\t0\nServer\t0\n2003\t0\nR2\t0\nSP1\t0\nVS2008\t0\nTeam\t0\nBrian\t0\nexpression\t0\nfatally\t0\nconfuses\t0\nJIT\t0\noptimizer\t0\n41\t0\nconcluded\t0\npasses\t0\nString.Concat()\t1\ncomparison\t0\nmoved\t0\n5c\t0\nconnect.microsoft.com\t0\nbeta\t0\noptimized\t0\nx86\t0\ndisassembly\t0\nnobugz\t0\nhighlighted\t0\nunoptimized\t0\nForge\t0\nautomation\t0\nforge\t0\nPackage\t0\ndwg\t0\npreparing\t0\nconman\t0\nSummary\t0\nRVT\t0\nexternalId\t1\nequal\t0\nRevit\t0\nUniqueId\t1\nRvtMetaProp\t1\nadd-in\t0\nOh\t0\ncomplete\t0\nsuccinct\t0\nUnique\t0\nIDs\t0\nViewer\t0\nElements\t0\ndealing\t0\ndbId\t1\nmanipulate\t0\n.getProperties()\t1\nElementID\t1\nexposed\t0\ntitle\t0\n12345\t0\nUniqueID\t1\n.getProperty()\t1\nsurprised\t0\nstraightforward\t0\nNothing\t0\nSO\t0\nevoke\t0\nopening\t0\nunderstood\t0\nabsolutely\t0\nnor\t0\nhitting\t0\nFEB\t0\nREST\t0\nAuthorization\t0\npostman\t0\nperfectly\t0\nhttp://localhost/forms-basic/secure/org/data/f0720c16-d4b8-442f-8674-2d7fbdab8afc/F_Form1/8d4dfeed-aa11-45fc-a958-23d62d9328cc\t0\naccept\t0\napplication/atom\t1\n+xml\t1\ndrop\t0\ndown\t0\nCombobox\t1\ndropdown\t0\nwich\t0\ncombobox\t1\napplicable\t0\ntheese\t0\nrepeated\t0\ndatavalidation\t0\nretrieved\t0\nNHibernate\t1\nWCF\t0\nICollection\t1\nintitialized\t0\nPersistentGenericSet\t1\n-or\t0\ncollections\t0\nISet\t1\nIesi.Collections\t1\ngap\t0\nserializing\t0\nmappings\t0\nBag\t1\nIList\t1\n<T>\t1\nSet<T>\t1\nw\t0\nremote\t0\nfacade\t0\nDTOs\t0\nendpoints\t0\nservices\t0\nJimmy\t0\nBogards\t0\nAutomapper\t1\ngreat\t0\ntool\t0\nre-reading\t0\narticle\t0\ndescribes\t0\nDavid\t0\nBrion\t0\nfollow\t0\ninstaller\t0\nInstallshield\t0\n2012\t0\ndepends\t0\nRegistry\t0\nRegDBGetKeyValueEx\t1\nInstallscript\t1\ntrailing\t0\nbackslash\t0\nserves\t0\nTARGETDIR\t1\nforeign\t0\nChinese\t0\nJapanese\t0\nKorean\t0\nappended\t0\nbackslash.This\t1\npollutes\t0\nwrongly\t0\ntranslates\t0\nroot-cause\t0\npurely\t0\n#define\t1\nUNICODE\t1\nanywhere\t0\nappends\t0\nfetches\t0\ncurrency\t0\nhttp://www.siao2.com/2005/09/17/469941.aspx\t0\nassigning\t0\nm_reqPath\t1\ntreating\t0\nnull-terminated\t0\nRegQueryValueEx()\t1\nwriter\t0\nclearly\t0\nstated\t0\nChances\t0\nbuffer\t0\npossibility\t0\nallocate\t0\nterminator\t0\nterminated\t0\nredundant\t0\nleaking\t0\nRegOpenKeyEx()\t1\nsucceeds\t0\nfails\t0\naltogether\t0\nRegGetValue()\t1\ndeals\t0\npositioning\t0\nsolvable\t0\nfooter\t0\ndisappears\t0\nsass\t0\ncodepen\t0\nhttp://codepen.io/colintoh/pen/tGmDp\t0\nfixing\t0\nJSFiddle\t0\nhttps://jsfiddle.net/rq9nm772/1/\t0\nstrange\t0\nparseResponse()\t1\nRecyclerView\t1\nonPostExecute\t1\nprogressbar\t1\ninvisible\t0\nnotifydatasetchange\t1\nnotifyDataSetChange()\t1\nAsyncTask\t1\ndoInBackground()\t1\ncommunicate\t0\nonPostExecute()\t1\nprivate\t0\nsuspicious\t0\nhard\t0\ncityList\t1\nactiveOrders\t1\nPresumably\t0\nre-drawn\t0\nsetNotifyOnChange(false)\t1\nmAdapter\t1\ndelay\t0\nnotifyDataSetChanged()\t1\nhttp://developer.android.com/reference/android/widget/ArrayAdapter.html#setNotifyOnChange(boolean)\t0\nparsed\t0\nMulti-threading\t0\ntricky\t0\nAsyncTasks\t1\nappearing/attempting\t0\npitfalls\t0\nattempted\t0\nsafety\t0\nprivilege\t0\nlisteners\t0\nordersDatabase\t1\nRewriteRule\t1\n.htaccess\t1\nCondition\t0\nForce\t0\nwww\t0\nsecure-email\t0\nadapt\t0\nFYI\t0\nApache\t0\n2.4\t0\nmod_rewrite\t1\nhighly\t0\nrecommend\t0\nHTTPS\t0\nparticularly\t0\nProgressive\t0\nApps\t0\ncouple\t0\nsynonyms\t0\naddition\t0\nsynonym\t0\nconstruct\t0\ntuples\t1\nprovided\t0\ntuple\t0\ndifficulty\t0\ndeciphering\t0\nmismatches\t0\nOf\t0\nuseful\t0\nexercise\t0\nprecedence\t0\nparsing\t0\nrealize\t0\navoided\t0\nwound\t0\nmatching\t0\ncomposing\t0\nfst\t1\nsnd\t0\nshaped\t0\nconsumes\t0\ndescriptive\t0\nimprovement\t0\nobserving\t0\nrecursive\t0\nPGM\t0\nparentheses\t0\n$\t1\nlow\t0\nlecture\t0\nsemester\t0\nsubset\t0\nDefines\t0\ntabular\t0\nchosen\t0\nbreak\t0\n\\ifdefined\t1\n\\fi\t1\nIncomplete\t0\nthrown\t0\ndefining\t0\noutputs\t0\nchar\t0\nelses\t0\nreach\t0\ngoal\t0\nPlots\t0\ncomplicated\t0\ncurved\t0\nbook\t0\npicture\t0\nprograms\t0\nrecommendations\t0\nsimple/basic\t0\nwrapped\t0\nManipulate\t0\nparameterized\t0\nalpha\t0\nslider\t0\naccordingly\t0\ninspiration\t0\nDemonstrations\t0\ntriangle-related\t0\ndemonstrations\t0\ntaking\t0\ngeometry-related\t0\nJay\t0\nWarendorff\t0\nHe\t0\nstructured\t0\nreuse\t0\nangleArc\t1\nhelper\t0\nroom\t0\nhierarchial\t0\ndimensional\t0\nobtained\t0\nLanguage\t0\n-3\t0\nroot\t0\nInput\t0\nOutput\t0\n&$a\t1\nnon-root\t0\nnodes\t0\nparents\t0\nAccess\t0\nrecordset\t1\ndeclaring\t0\nasks\t0\nEnter\t0\nParameter\t0\nValue\t0\nincorrect\t0\npicked\t0\ninterpret\t0\nliteral\t0\nimmediate\t0\nBeyond\t0\nWHERE\t0\nDAO\t0\nExecute\t1\ndbFailOnError\t1\nImagine\t0\nRegarding\t0\nlogical\t0\nbranching\t0\nensured\t0\nevaluated\t0\nconditional\t0\nbreaks\t0\nsoon\t0\nefficent\t0\nretrace\t0\ninterupt\t0\ndo/while\t1\ninvoking\t0\narithmetic\t0\nleaving\t0\nbounds\t0\nActingPointer\t1\nends\t0\nOriginPointer\t1\nSOME_GIVEN_AMOUNT\t1\niteration\t0\nbehaviour\t0\ndecremented\t0\njsp\t1\nGson\t1\nWrite\t0\ntoString()\t1\nLjava.lang.String\t1\n@5527f4f9\t1\never\t0\nxmlHttpRequestObject.responseText\t1\nAngularJS\t1\nstores\t0\n$http.get().success\t1\n$.ajax({success})\t1\neval\t1\ndual\t0\nthumbs\t0\n.change\t1\nconsole.log\t1\nfull\t0\nhttps://fiddle.jshell.net/elliottjb7/fj9ot08v/\t0\n(.change())\t1\n8-10\t0\nJPanel\t1\nGameWindow\t1\nJFrame\t1\npanels\t0\nMainMenuPanel\t1\nlabel\t0\ndirected\t0\nTomcat\t0\nspent\t0\ndays\t0\nbeans.xml\t1\nlogout\t0\ncached\t0\nemployed\t0\nfixes\t0\ncombination\t0\nCache-Control\t1\nno-cache\t1\nno-store\t1\nreliable\t0\nforces\t0\nreload\t0\nPreferences\t0\nSecurity\t0\nsubsequently\t0\nhit\t0\nfascinated\t0\npopular\t0\nlove\t0\nnewbie\t0\nember.js\t1\nnode.I\t0\nmailgun\t0\nFound\t0\nmailgun-js\t1\nexpress\t0\nparse-cloud\t0\nember\t0\nmail\t0\nEmber\t0\ncircumstances\t0\nhint\t0\nmail-sending\t0\nbackend\t0\njQuery-Ajax-Call\t1\nWPF\t0\nobservable\t1\nRight\t0\nMouse\t0\nButton\t0\nClick\t0\nDrag\t0\nDrop\t0\nexternal\t0\nAlt\t0\nKey\t0\nLeft\t0\ninitiate\t0\nDragDrop\t1\nirregular\t0\nselection\t0\nunclear\t0\n/Left\t0\noccurring\t0\ndetermined\t0\nclipboard\t0\ndrag\t0\nSpecially\t0\nDragLeave\t1\ndelete/add\t0\nGridData\t1\nparty\t0\nTelerik\t0\nshift\t0\nsignal\t0\ndisambiguate\t1\nmechanism\t0\nrecognize\t0\ndropping\t0\nregistered\t0\nrespond\t0\nlistening\t0\nsatisfied\t0\nOverride\t0\npreview\t0\ngather\t0\nbindings\t0\norganize\t0\nbaseline\t0\noptionally\t0\ncrc\t0\nhead\t0\nround\t0\nchecksum\t0\nreplication\t0\nentry\t0\nMYSQL\t0\nduplicate\t0\nentries\t0\nlengthy\t0\nSERVER\t0\nchecksum_binary\t1\nAlter\t0\nsafe\t0\nhash\t0\nseparator\t0\nconcat\t1\nmessing\t0\nnode.js\t1\nnpm\t1\ncomputer\t0\npackage.json\t1\ndependencies\t0\nnode_modules\t1\nnear\t0\nhttps://npmjs.org/doc/json.html\t0\nplaceholder\t0\ncode.\t0\nWould\t0\nkeyword\t0\nfinalAnswer\t1\nChange\t0\nexecuting\t0\nbreakpoints\t0\nBreakpoints\t0\nonResume()\t1\nActivity\t0\ndoinbackground\t1\nluck\t0\n.gradle\t1\n.AndroidStudioPreview\t1\nfolders\t0\nrestarted\t0\nnuclear\t0\ndataframes\t1\npool\t0\nfilter\t0\nlist1\t1\ndataframe\t0\ndplyr::filter\t1\n%in%\t1\nRichard\t0\ndeveloping\t0\nsingle-page\t0\nBackbone\t1\nrouter\t0\npushState\t1\nbackbone\t1\nrouting\t0\nproblem/question\t0\nroute\t0\ndashboard\t0\nClients\t0\nDash.Views.Dashboard\t1\nrenderDashboard()\t1\nrendering\t0\nroutes\t0\nrendered\t0\n/dashboard\t1\nafther\t0\n$el\t1\n$(this.el)\t1\nalway\t0\nassumption\t0\nDashboard\t0\n.dashboard\t1\nthis.el\t1\nsetElement\t1\nparams\t0\nmerge\t0\ninterpreted\t0\nresponse_status\t1\nredirect\t0\nhostname\t1\nredirecting\t0\naltbeacon\t1\ndidEnterRegion\t1\nnotifier\t1\nsees\t0\nbeacon\t0\nscan\t0\nminutes\t0\nreact\t0\nfrequency\t0\nscans\t0\ndetection\t0\nforeground\t0\nforewarned\t0\nbattery\t0\npower\t0\ntweak\t0\nperiod\t0\ntolerance\t0\ndrain\t0\n5*3600l\t1\nL\t0\nscanning\t0\nAPIs\t0\npromise\t0\nimprove\t0\ntradeoff\t0\ntimers\t0\nfor4.3\t1\n4.4\t0\njudgment\t0\nschedule\t0\nweeklyPlan\t1\nhasNext()\t1\nfeature\t0\nslightly\t0\nclosures\t0\ngroovy-code\t0\nanonymous\t0\napplications\t0\nworry\t0\npesky\t0\nweeklyPlan.add\t1\n=>\t1\njumped\t0\noutside\t0\nLINQ\t0\ndescribing\t0\nconstructs\t0\nrapidly\t0\nplatform\t0\nlargely\t0\npolitical\t0\nprocessor\t0\nwaiting\t0\nscheduler\t0\nscheduled\t0\nbrought\t0\nRAM\t0\nkernel\t0\nkeeps\t0\ndescriptor\t0\naddressing\t0\nTwo\t0\nphysical\t0\notherwize\t0\nDLL\t0\nmapped\t0\nLogin\t0\nLayout\t0\nmvc\t0\nController\t0\nIm\t0\nalert\t0\nAjax\t0\nForm\t0\nScripts\t0\ndatatype\t1\nresponding\t0\ndata.Code\t1\nalert({}.Code)\t1\nwhereas\t0\n{Code:''};alert(data.Code)\t1\ndescribed\t0\nProbably\t0\nalerts\t0\nAFNetworking\t1\n2.0\t0\ngerman\t0\nletters\t0\nä\t0\nü\t0\nö\t0\ndevices\t0\nSIGABRT\t1\nPrevSpeedDic\t1\ncircumstance\t0\nLocal\t0\ninitialized\t0\nnil\t0\nDriveInfoDic\t1\nbranch\t0\nEngine\t0\nCSV\t0\nunicodecsv\t1\ndaily\t0\nBlobstore\t0\nintention\t0\nUnforuntately\t1\nTim\t0\nblobstore\t1\nentity\t0\nserve\t0\ncron\t0\nBlobstoreDownloadHandler\t1\nblob\t0\nkeep/manage\t0\nyourapp\t0\nhttps://developers.google.com/appengine/docs/python/blobstore/overview#Writing_Files_to_the_Blobstore\t0\nXcode\t0\nIPA\t0\napple\t0\ncapabilities\t0\nlazy\t0\nsearched\t0\nXcode6\t0\nentitlements\t0\nIdentifier\t0\nUPDATED\t0\nproject.pbxproj\t1\n@colinta\t1\nscreenshot\t0\ngave\t0\ndiff\t0\nCame\t0\nHTH\t0\npagerank\t0\nmxm\t0\niterations\t0\nIteration\t0\nLooking\t0\nVariables\t0\np\t0\nq\t0\nhost_rank[k]\t1\nk\t0\nlol\t1\neucl\t0\ninfinite\t0\nsuspect\t0\ndo-while\t1\nd\t0\nn\t0\nsumPR\t1\nrepeats\t0\nrepeat\t0\nSay\t0\nUS$\t0\nXX.xx\t0\nGBP£\t1\nYY.yy\t1\nGBP\t0\nconversion\t0\nratio\t0\nprices\t0\nUSD$\t1\nending\t0\n.xx\t0\nPrices\t0\ncents\t0\nwrap\t0\njquery.each()\t1\njquery(this).html(\"GBP£YY.yy\")\t1\nreplacements\t0\nfire\t0\nANY\t0\ntitles\t0\nso.\t0\nbenefits\t0\ncompatible\t0\nalot\t0\ntextnodes\t1\nbenefitial\t0\nhandlers\t0\nfastdom\t0\ndom\t0\ntasks\t0\nloose\t0\nedited\t0\ninstant\t0\niterate\t0\nnumeric\t0\nconverted\t0\nblade\t0\ntemplating\t0\nDue\t0\nlimitations\t0\nfly\t0\nOddly\t0\nignoring\t0\nproviding\t0\nEssentially\t0\nhappy\t0\nftp\t0\nAlthough\t0\nattempts\t0\nClear\t0\nBlade\t1\nServlets\t0\n5.5\t0\nwebpage\t0\n30minutes\t0\nicon\t0\nthrows\t0\nsayin\t0\nSounds\t0\ntiming\t0\nweb.xml\t1\n60\t0\nsymptom\t0\nindeed\t0\ntimed\t0\nBecause\t0\nfashioned\t0\nscriptlets\t1\n<%\t1\nservlets\t0\nrequest/response\t0\nbusiness\t0\nharder\t0\nnaildown\t0\nNullPointerException\t1\nhomepage_jsp.java\t1\n107\t0\ntrackback\t0\nhomepage.jsp\t1\nrequest.getSession()\t1\nrequest.getSession(false)\t1\netcetera\t0\nsuggest\t0\norientdb\t1\nspring\t0\nmvc-dispacher-servlet.xml\t1\npom.xml\t1\nOrientDb\t1\n2.2.13\t0\nconfiguring\t0\nit.if\t0\nNT\t0\noperating\t0\nnumerous\t0\nOffice\t0\nAutomation\t0\nstates\t0\nsuitable\t0\nsorts\t0\nsaw\t0\nxls\t0\nxlsx\t0\nxlsm\t0\nsuffer\t0\nthreading/security/license\t0\nimposed\t0\nyears\t0\nup/embraced\t0\n2007\t0\nimpovement\t0\n2010\t0\ncomparing\t0\nSpreadsheetGear.Net\t1\npurchase\t0\nAspose.Cells\t1\nEvaluated\t0\ncollegue\t0\nAppeared\t0\nfairly\t0\nperformance\t0\ncomparable\t0\nInterop\t0\nGemBox\t1\nServices\t0\nSharePoint\t0\nMapper\t0\nSmartXls\t1\nActiveXls\t0\nFairly\t0\nProperties\t0\npreference\t0\nMethods\t0\nDespite\t0\nclaim\t0\n1M\t0\ncheaper\t0\nFlexCel\t0\ndecided\t0\nhelp/API\t0\nmanual\t0\nuseless\t0\nKoogra\t1\ndocumentations/information\t0\nFileHelpers\t1\nFlexcel\t1\nLowest\t0\nproximity\t0\ntechnical\t0\npick\t0\nSyncFusion\t0\nBackOffice\t1\nMedium\t0\nimplementing\t0\ninconsistent\t0\nunit\t0\nAttempted\t0\nencourage\t0\nhovers\t0\nie10\t0\nanchor\t0\nwork-around\t0\nspecifying\t0\nbackground-color\t1\ndoesnt\t0\nnon\t0\nIE10\t0\nVirtual\t0\nMachine\t0\nretarded\t0\nbelive\t0\nSimply\t0\n<html>\t1\nYep\t0\nExplorer.\t0\n:hover\t1\n<a>\t1\n<button>\t1\nSSIS\t0\nApplication\t0\ncrashed.I\t0\neventviewer\t1\npipelines\t0\nordered\t0\nmutator\t1\nreaches\t0\nmutations\t0\nQuickly\t0\nscrapy.item.Item\t1\ntouched\t0\nmodifications\t0\nItems\t0\nchain\t0\nrestructure\t0\nchild-parent\t0\nrelations\t0\ndimension\t0\nsubarrays\t0\nplayed\t0\nmultisort\t0\nSort\t0\nmulti-dimensional\t0\nlabels\t0\nBorderLayout\t1\nJComponents\t1\n5th\t0\ncompleted\t0\narrays\t0\nJLabels\t1\nGridLayout\t1\nJTable\t1\nJScrollPane\t1\nrich:dataTable\t0\nrendering.I\t0\nbacking-bean\t0\nzero\t0\nJSF-2.0\t0\nRichFaces-4\t1\ndatatable\t1\nEL\t0\npopulated\t0\nnullpointerexception\t1\neaser\t0\na4j:jsFunction\t1\nreRender\t1\nDOMXpath\t1\nresearch\t0\nlead\t0\ninputbox\t1\nevent.In\t0\ncalender\t0\ndatepicker\t1\nintegrate\t0\nintegration\t0\nflawlessly\t0\nLambda\t0\nProxy\t0\nIntegration\t0\ngoogled\t0\ndespite\t0\ncontinue\t0\nun-check\t0\nokay\t0\nmalformed\t0\nPOJO\t1\nArdent\t0\nUS\t0\ncustomers\t0\nextending\t0\nCanadian\t0\nrequirements\t0\nzip\t0\n5-9\t0\nstrip\t0\ndash\t0\npunctuation\t0\npostal\t0\ncodes\t0\npostal_codes\t1\nzip_code\t1\noffered\t0\nvice\t0\nversa\t0\nTheoretically\t0\ncomplex\t0\nregex\t1\ncountry\t0\nrequired_without\t1\nraspberry\t0\npi\t0\ndies\t0\nPi\t0\ndistribution\t0\n/var/log/wtmp\t1\nretrieve\t0\nExplanation\t0\nflags\t0\n-F\t1\nhandy\t0\n-R\t1\nsuppresses\t0\n-x\t0\nshutdown\t0\nen\t0\nrunlevel\t1\nfilters\t0\nboot\t0\nrecomend\t0\nappend\t0\nflushed\t0\nNext\t0\nelapsed\t0\nshuts\t0\nrecover\t0\nContext\t0\nGNU\t0\n4.4.12(1)-release\t1\nPowerline\t0\n2.5.2-1\t0\nPS1\t1\nScript\t0\nconfig.json\t1\ncolors.json\t1\ncolorschemes/shell/default.json\t1\nthemes/shell/default.json\t1\nhim\t0\nchars\t0\nwraps\t0\nps\t0\nnon-printable\t0\npowerline\t0\nnotifications\t0\nscheduleNotification\t1\npressed\t0\n4th\t0\nRelevant\t0\nReceiver\t0\nnotifies\t0\nEmployeeNo\t1\nEngagementID\t1\n0507\t0\nEngagement\t0\nusername\t0\nDie\t0\ndie\t0\nbrackets\t0\ngetFaceValue\t1\nroll\t1\nrolling\t0\nrowA\t1\n=[\t1\nindex-variable\t1\nreduce\t0\nduplicity\t0\nmandatory\t0\nperl\t0\nsubroutines\t0\nTry_2.pl\t1\nsubroutine\t0\nTry_1.pl\t1\nTry_1.pm\t1\n.pm\t1\n.pl\t0\nArrayList\t1\nVectors\t0\nHashMp\t0\nbank\t0\nArrayList/Vector\t1\nkey-value\t0\ngo-to\t0\ntrees\t0\nforest\t0\nVector\t0\nsubtle\t0\n2001\t0\nnewest\t0\nconsidered\t0\nnowadays\t0\nsynchronized\t0\nslower\t0\nunnecessary\t0\nrountine\t0\n0.1\t0\nhover\t0\n0.100000000000001\t1\n5.2.1\t0\ncompiling\t0\n32\t0\ndecimal\t0\nrepresentable\t0\nIEEE\t0\nfloating\t0\nrepresentation\t0\nfalls\t0\ncamp\t0\nhardware\t0\ncomputing\t0\napproximation\t0\n0.5\t1\n0.25\t1\nin-depth\t0\ndescription\t0\ncaused\t0\nfixed-sized\t0\ndigits\t0\ninherent\t0\nconverting\t0\nrid\t0\nprecision\t0\nchop\t0\npresented\t0\npotentially\t0\ntaps\t0\ndeeper\t0\nviewWillAppear\t1\nviewDidLoad\t1\nnib\t0\nresident\t0\ncaller\t0\ninelegant\t0\nclarify\t0\nunloaded\t0\nviewDidUnload\t1\nprerequisite\t0\nup-to-date\t0\ndealloc\t1\nlow-memory\t0\nconditions\t0\nresponsive\t0\nexplained\t0\n-(void)viewDidUnload\t1\n-dealloc\t1\nsetRootTableViewController\t1\nUITableViewController\t1\n*)\t1\nreloadData\t1\nCustomTableViewController\t1\nrootViewController\t1\ninitWithRootViewController\t1\nstack\t0\nalias\t0\nQuery\t0\n\"\",'',[]\t1\nhttps://support.microsoft.com/en-us/kb/298955\t0\nSELECT\t0\nTRANIN'AS\t1\nNAME\t0\nCASE\t1\nWHEN\t0\nALT3.TRANINDT\t1\nBETWEEN\t0\n20150603\t1\n20150601\t1\nTHEN\t0\nEND\t0\nAS\t0\nCurrentMonth\t1\n20150501\t1\n20150531\t1\nLastMonth\t1\nFROM\t0\nALT3\t0\nago\t0\nNormally\t0\nrename\t0\nperson__name\t1\nperson__email\t1\nknows\t0\ncausing\t0\ncant\t0\nInside\t0\nhttp://jsfiddle.net/376fLujs/3/\t0\nInclude\t0\nconsole.log(\"working\")\t1\nforms\t0\nre-using\t0\nAlways\t0\nhttp://jsfiddle.net/376fLujs/4/\t0\nbrief\t0\nGitLab\t0\nrepositories\t0\nspecifically\t0\nbellow\t0\ndownloads\t0\nunzip\t0\nMAC\t0\n.git\t1\ncorrupted\t0\nnuisance\t0\ntreats\t0\nhonest\t0\nbegin\t0\n10.8.4\t0\napparently\t0\nnewer\t0\nGroupMe\t0\ninvite\t0\nfriends\t0\nresearched\t0\nScringo\t0\nGroup\t0\nimply\t0\nrooms\t0\nchats\t0\ncustomizing\t0\ninvitation\t0\nScringoCommentButton\t1\nhttp://www.scringo.com/docs/android-guides/popular/setup-chat-rooms-and-forums/#Adhoc\t0\nallowed\t0\nBTW\t0\nscringo_comment_button.xml\t1\nLibrary\t0\ncsv\t0\naccountID\t1\n000005\t1\n000016\t1\nzeroes\t0\nwebtest\t0\nMKV\t0\nsubtitle\t0\ngrouped\t0\nmajority\t0\n4K\t0\nonline\t0\nmkv\t0\n20GB\t0\nTV\t0\nmedia\t0\nFAT16/32\t0\nexFAT\t0\nConsidering\t0\nlimitation\t0\n4GB\t0\nFAT32\t0\ngb\t0\n2GB\t0\n3Gb\t0\nmetadata\t0\nmain.mkv\t1\nrespective\t0\nmovie\t0\nfolder/\t0\npart1.dat\t1\npart2.dat\t1\npart3.dat\t1\npart4.dat\t1\nxen\t0\nwin\t0\nxp\t0\ndedicated\t0\npc\t0\nselenium-rc\t0\nselenium\t0\npear\t0\nsits\t0\nremote-controlled\t0\nwindowses\t0\nRC\t0\ngray\t0\nbase64_decode()\t1\nos\t0\ncorruption\t0\nPhotoshop\t0\nwont\t0\nweigh\t0\n0.7k\t0\nunix\t0\nrecognizes\t0\nPNG\t0\n1440\t0\n900\t0\n8-bit/color\t0\nRGB\t0\nnon-interlaced\t0\nresolution\t0\nrc\t0\nie\t0\n-jar\t1\nselenium-server.jar\t1\nsymptoms\t0\naccross\t0\nSelenium\t0\n1.0.1\t0\n$this->selenium->windowMaximize()\t1\n$screenshot\t1\n$this->selenium->captureScreenshotToString()\t1\nTesting_Selenium\t1\nwrapper\t0\nregards\t0\nAndras\t0\nposting\t0\nforums\t0\ndesperate\t0\nimput\t0\napologies\t0\nupsets\t0\n:-)\t1\n16:38:24.562\t1\nINFO\t0\nGot\t0\nbase64\t0\na5304a287eb244028c8c843b294bf98f\t0\njava.net.SocketException\t1\nSoftware\t0\nabort\t0\nsocket\t0\njava.net.SocketOutputStream.socketWrite0(NativeMethod)\t1\njava.net.SocketOutputStream.socketWrite(UnknownSource)\t0\njava.net.SocketOutputStream.write(UnknownSource)\t1\norg.mortbay.http.ChunkingOutputStream.bypassWrite(ChunkingOutputStream.java:151)\t0\norg.mortbay.http.BufferedOutputStream.write(BufferedOutputStream.java:142)\t1\norg.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:423)\t1\norg.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:414)\t1\norg.openqa.selenium.server.SeleniumDriverResourceHandler.handleCommandRequest(SeleniumDriverResourceHandler.java:370)\t1\norg.openqa.selenium.server.SeleniumDriverResourceHandler.handle(SeleniumDriverResourceHandler.java:125)\t0\norg.mortbay.http.HttpContext.handle(HttpContext.java:1530)\t1\norg.mortbay.http.HttpContext.handle(HttpContext.java:1482)\t1\norg.mortbay.http.HttpServer.service(HttpServer.java:909)\t1\norg.mortbay.http.HttpConnection.service(HttpConnection.java:820)\t1\norg.mortbay.http.HttpConnection.handleNext(HttpConnection.java:986)\t1\norg.mortbay.http.HttpConnection.handle(HttpConnection.java:837)\t1\norg.mortbay.http.SocketListener.handleConnection(SocketListener.java:245)\t1\norg.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)\t1\norg.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)\t1\ncaptures\t0\nblack\t0\nWithout\t0\nknowing\t0\ncreator\t0\nentirely\t0\nBrowserMob\t0\nmonitoring\t0\nlaunch\t0\nscreenshots\t0\nlocations\t0\nVNC\t0\nstartup\t0\nauto-logs\t0\n.bat\t1\nProgram\t0\nFiles->Startup\t1\nlaunches\t0\nensuring\t0\ninteracting\t0\nGood\t0\nadventures\t0\noutlined\t0\nstar\t0\nstars\t0\nim1\t1\nim4\t1\nR.drawable.star\t1\nreact-native\t1\nrnpm-install\t1\nERR\t0\nwent\t0\nlinking.\t0\nCannot\t0\nUIAppFonts\t1\naccidentally\t0\nInfo.plist\t1\nios\t0\nRestoring\t0\nmarking\t0\nasterix\t0\nSurely\t0\n/n\t1\nForms\t0\nwxWidgets\t1\nborderless\t0\nthin\t0\nmovable\t0\nwxPanel\t1\nwxPython\t1\narticle/question\t0\nfiring\t0\nEVT_LEFT_DOWN\t1\nlooked\t0\nhttp://docs.wxwidgets.org/2.6/wx_samples.html\t0\nhttp://docs.wxwidgets.org/2.6/wx_eventhandlingoverview.html#eventhandlingoverview\t0\ncritical\t0\nlock\t0\nsemaphores\t0\ngranted\t0\nprivileges\t0\ncan't\t0\nMacOS\t0\nLion\t0\nshell\t0\n10.6\t0\nhost-part\t0\n%\t1\nGRANT\t0\n@'localhost'\t1\nconnecting\t0\nTravis\t0\n.env\t1\nenv-file\t1\nafter_failure\t1\n/Users/travis/.opam/system/build/topkg.0.9.0/topkg\t0\n-19768-81a3ce.env\t1\nyml\t0\nbefore_install\t1\nreached\t0\nabsolute\t0\nfastest\t0\npulling\t0\nplacing\t0\nhundreds\t0\nideally\t0\nProcessing\t0\nmaintaining\t0\nnumpy\t1\nbisect\t0\nAboveNumber\t1\nunordered\t0\ncut\t0\nSSO\t0\nRecently\t0\ndiscovered\t0\nWaffle\t1\nseams\t0\nKerberos\t0\ntrust\t0\ngroups\t0\ndo-loop\t1\nThomas\t0\nSSPI\t0\nperforms\t0\ninvolving\t0\ntickets\t0\nbehalf\t0\nencrypted\t0\nsecret\t1\nguarantees\t0\nTicket\t0\nGranting\t0\nauthenticated\t0\nsecurity\t0\nWindows-specific\t0\nMIT\t0\nprotocol\t0\nexperimenting\t0\nelasticsearch\t1\nRegards\t0\nenron\t0\nlocalhost:9200/_search\t1\nlocalhist\t1\nurls\t0\nsite:example.com\t1\ninurl\t1\nconstrain\t0\nhttps://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\t0\nUncaught\t1\nTypeError\t1\nSpark\t0\n1.5.1\t0\nobservation\t0\nDataFrame\t1\nbackward\t0\nknwn\t0\ncomplicates\t0\nskipped\t0\nScala\t0\nzero323\t0\nsucceed\t0\n''\t0\ntranslate''\t1\nPyspark\t1\npartitioned\t0\npyspark\t1\nLoad\t0\nColumn\t0\npartitions\t0\nConvert\t0\nrdd\t0\npartition\t0\nCloudera\t0\nspark-ts\t1\noffers\t0\nsequential\t0\ntime-windowed\t0\nimputing\t0\nsequence\t0\nhttp://blog.cloudera.com/blog/2015/12/spark-ts-a-new-library-for-analyzing-time-series-data-with-apache-spark/\t0\npopup()function\t1\ncontained\t0\nresponses\t0\neval()\t1\nnasty\t0\npopup()\t1\nBetter\t0\nexcel2007\t0\npoi.jar\t1\njdk1.6.But\t0\nphenomenon\t0\nHashMap())\t1\njava.util.ArrayList\t1\nMap.clear()\t1\nArrayList.add()\t1\noverridden\t0\nolder\t0\nSnippets\t0\nrowForSheet(List)\t1\nAmazon\t0\nRedshift\t0\nanalysis\t0\nunload\t0\nRedShift\t0\nS3\t0\nprefix\t0\nbucket\t0\ngraceful\t0\ncleanup\t0\nenumerate\t0\ns3cmd\t1\ns3tools\t0\nhttp://s3tools.org/s3cmd\t0\nroles\t0\nconsisting\t0\nnet.tcp\t1\n808\t0\n810\t0\n811\t0\nendpoint\t0\nfront\t0\nUserService\t1\n<AllowAllTraffic/>\t1\n<WhenSource\t1\n...>\t1\nSecond\t0\nvariations\t0\nFixedPort\t1\nPortRange\t1\n=\"*\"\t1\nNetworkTrafficRules\t1\nWebRole.cs\t1\nsudden\t0\nreceiving(Internal)\t0\nWebRole\t1\nIP-addresses\t0\nc:\\data\t1\n\\\t0\nescape\t0\nquotes/tabs/newlines\t1\nc:\\\\data\t1\nc:/data\t1\nslash\t0\nraw\t0\nr'c:\\data'\t1\ncareful\t0\nescaped\t0\nmultiplication\t0\n3*\t0\n5)\t1\nbackslah\t0\nunclosed\t0\nillegal\t0\nRefer\t0\nJavadoc\t0\nString.replaceFirst\t1\nsequences\t0\nuntrusted\t0\nappropriately\t0\nmodification\t0\nString.substring\t1\nStringBuilder\t1\nmulti-digit\t0\nnegative\t0\nScanner\t1\n1D\t0\nArray\t0\n2D\t0\npositions\t0\ncharArray\t1\narray.char[][]\t0\nchar[6][6]\t1\ntips\t0\nguidance\t0\n6*6\t0\neasiest\t0\nLive\t0\nDemo\t0\nflat\t0\nkeyField\t1\nvalueField\t1\nCustomerNumbers\t1\ncustomer_number\t1\nUsers\t0\nGroups\t0\nNeed\t0\nCustomerNumbers.customer_number\t1\nGroups.name\t1\nplus\t0\nshoud\t0\nduplicated\t0\n@drmonkeyninja\t1\nModel\t0\nCustomer\t0\nNumbers\t0\nCakePhp\t1\nsoultion\t0\ndifficult\t0\nconcept\t0\nSolution\t0\nMyApp.Web\t1\nMyApp.Logic\t1\nMyApp.Data\t1\ngridview\t1\ntablename\t1\ndropdownlist\t1\npaging\t0\nGet_Data\t1\ntier\t0\nnotion\t0\ncreate/load/consume\t0\nlayers\t0\nspecialize\t0\nLayer\t0\nresponsible\t0\ncommunicating\t0\npopulating\t0\ntypically\t0\nrepresent\t0\ncustomer\t0\nhotel\t0\nbooked\t0\nsimplyfy\t1\nwhats\t0\nrecommendation\t0\ndatatables\t1\nmotivation\t0\ndevelopers\t0\nmember\t0\nbooks\t0\ncraig\t0\nlarman\t0\numl\t0\npatterns\t0\nasp.net\t1\nIE8\t0\nIE11\t0\n4.5\t0\ntrusted\t0\nintranet\t0\nUICollectionViewController\t1\n>2000\t0\nsections\t0\nscrolling\t0\nbecame\t0\nextremely\t0\nchoppy\t0\nInstruments\t0\nlookup\t0\nlayoutAttributesForElementsInRect\t1\nattributes\t0\nprepareLayout\t1\n~\t0\n25%\t1\ncpu\t0\nenumerating\t0\nNSIndexPath\t1\nisEqual\t1\nsectioned\t0\nUICollectionViewFlowLayout\t1\nsmooth\t0\nWell\t0\nturns\t0\ndictionaries\t0\nfiltering\t0\nNSPredicate\t1\nDjango\t1\n1.5.4\t0\npip\t0\n-U\t1\n-I\t0\nfreeze\t0\n1.6.5\t0\nvirtualen\t1\nv)\t1\nre-deploy\t0\nexplains\t0\nhappened\t0\n--upgrade\t1\nexpert\t0\nDriven\t0\nDevelopment\t0\n2nd\t0\nEd\t0\nWindoze\t0\nW10\t0\nCygwin\t0\n3.6\t0\npip3\t1\n1.11.8\t0\n(?)\t1\nknowledgeable\t0\ntalk\t0\n3.x\t0\nrate\t0\nstreaming\t0\nweblogic\t0\nredis\t0\nreal-time\t0\nrates\t0\ntalks\t0\ndll\t0\nmotors\t0\n30\t0\nWhile\t0\nMDI\t0\nChild\t0\nMultithreading\t0\nVCL\t1\nTThread\t1\ndescendant\t0\ndoubles\t0\npublic\t0\nvar\t1\nChildForm\t1\nSynchronize\t0\nCriticalSection\t1\nPostMessage\t1\nintermediary\t0\nThread\t0\nTThreadList\t1\nmaintainable\t0\nreadings\t0\nDefine\t0\ninstantiate\t0\ninvest\t0\nFIFO\t0\nmessaging\t0\nflow\t0\nputs\t0\nDelphi\t0\nshowed\t0\nfreely\t0\nTAnyValue\t1\nhttp://www.cromis.net/blog/downloads/\t0\nproduction\t0\nwhereby\t0\nhits\t0\nemailing\t0\ncheckboxes\t0\ncheckbox\t0\nticked\t0\nnee\t0\ndataname\t1\npush()\t1\nlength\t0\nconcat()\t1\nSOLUTION\t0\noldish\t0\nSymfony2\t1\n2.0-RC6\t0\n__construct\t1\nRoleSecurityIdentity\t1\nDecember\t0\nRole\t0\nRoleInstance\t1\nACL\t0\nnight\t0\nROLE_GROUP1\t1\nROLE_GROUP\t1\nobject-level\t0\nACE\t0\nROLE_GROUP2\t1\nidentical\t0\ngrant\t0\npermissions\t0\nAm\t0\nseemed\t0\ndrilled\t0\nSymfony\t0\npermission\t0\n$sid->getRole()\t1\nthis->role\t1\nmark\t0\nForeign-key\t1\nFkOriginalTextId\t1\nOriginalText\t1\nkey/value\t0\ncustomized\t0\nCustomText\t1\nStaff-member\t1\nLambda/Linq\t0\nTextValue\t1\noverriden\t0\nCTE\t0\nnormalized\t0\nheading\t0\ngiving\t0\npercentages\t0\n<h1>,\t1\n<h2>\t1\npercentage\t0\nh2\t0\nH1\t0\nH2\t0\nfalowing\t0\nFONT\t0\nSIZE\t1\nem\t0\npt\t0\nanyways\t0\none()\t1\ndelegated\t0\n1.7\t0\nlive()\t1\nnon-dynamic\t0\n.one\t1\nsense.\t1\nHiddenfield\t1\nvalue.\t1\nit.\t0\nhttp://jsfiddle.net/sushanth009/Fakb5/\t0\n.live\t1\npreferred\t0\n.on()\t1\nmistakes\t0\nsorry\t0\ndumb\t0\nplayerHand\t1\nrandint\t1\nHence\t0\nconfusingly\t0\n@IfProfileValue\t1\n@Profile\t1\n@ActiveProfiles\t1\nprofile\t0\nactive\t0\nsets\t0\nSpring\t0\nEnvironment\t0\nWut\t0\ndeprecate\t0\n@IfEnvironment\t1\n@IfProfile\t1\n@ActivateProfiles\t1\nCommentary\t0\nBoot\t1\nAnswers\t0\nassume\t0\nactivated\t0\nactiveProfiles\t1\nspeculate\t0\nActiveProfiles\t1\ndetail\t0\nhttps://stackoverflow.com/a/23627479/388980\t0\nyesterday\t0\nevolution\t0\nselectively\t0\n@Service\t1\n@Configuration\t1\n@Bean\t1\nprofiles\t0\nApplicationContext\t1\nannotation\t0\ndesignate\t0\ndeclared\t0\naforementioned\t0\n3.1\t0\nterm\t0\nmisleading\t0\nconsidering\t0\nsemantics\t0\nTestNG\t1\nJavaDoc\t0\nspring.profiles.active\t1\nAbstractEnvironment.ACTIVE_PROFILES_PROPERTY_NAME\t1\nharmony\t0\nconsult\t0\nJIRA\t0\njoin\t0\ndiscussions\t0\nhttps://jira.spring.io/browse/SPR-7754\t0\nhttps://jira.spring.io/browse/SPR-8982\t0\nhttps://jira.spring.io/browse/SPR-11677\t0\nclarifies\t0\nSam\t0\nauthor\t0\nTestContext\t1\nnailed\t0\naccepted\t0\npropagate\t0\nJVM\t0\nusual\t0\nterminal\t0\ngrabbing\t0\nSystem.property\t1\nassumeTrue/False\t1\nflyway/other\t0\nmigrations\t0\nkeeping\t0\nForm1\t1\nwithDataGridView`\t1\nconsists\t0\nSHORT\t0\nDESCRIPTION\t0\nForm2\t1\ntextboxes\t1\ntextBox1\t1\ntextbox2\t1\ntextbox4\t1\n\\Form1\t1\nMove\t0\nForm_Load\t1\nmc\t1\naddon\t0\nAMO\t0\neditors\t0\nrejected\t0\nAddon\t0\nreviewing\t0\nunsafe\t0\ninsertion\t0\nunsanitized\t0\nParts\t0\nUi\t1\nsanitized\t0\nfirebase\t0\nrealtime\t0\ndivided\t0\nStep\t0\nDatabase\t0\nOracle\t0\n11G\t0\nREGEXP_REPLACE\t1\nSUBSTR\t1\n^-\t1\nnon-hyphen\t1\nhyphen\t0\nvalues.Something\t1\narray($my_arr)\t1\neverywhere\t0\n4($my_arr[0]....$my_arr[4])\t1\narray_slice\t1\nmixed\t0\nAccording\t0\nksort\t1\nsql\t0\ndateStart\t1\ndateEnd\t1\ngrouping\t0\nwrapping\t0\ntabled-valued\t0\nincrement\t0\nScalaTest\t1\nsbt\t1\nSystem.getProperty\t1\nIntellij\t0\n-Dmy.command-line.property\t1\nRun\t0\nConfiguration\t0\nfork\t0\n:=\t1\nDynamic\t0\nUrl\t0\noptional\t0\nwww.example.com/getTest/1/\t1\nNone\t0\nThus\t0\nfacing\t0\nreverse\t0\n'yescourse:academypage_url'\t1\nargs\t1\nNone]\t1\nNoReverseMatch\t1\nReverse\t0\nacademypage_url\t1\n'{}'\t1\nTell\t0\nfirsty\t0\nrewrite\t0\nsub-pattern\t0\nnumerics\t0\nkwargs\t1\ncatch\t0\nDuring\t0\nhttp.authorizeRequests()'s\t1\n/bla\t1\nadmins\t0\nbla\t0\ninstantly\t0\nrestarting\t0\ndynamicaly\t0\nspring-loaded\t0\nJRebel\t1\nauthorisations\t0\ndeclare\t0\nSphinx\t0\ncharset_table\t0\nnatural\t0\nvague\t0\nrestated\t0\ncollations\t0\nutf8_general_ci\t1\ndecent\t0\nhttp://thefsb.wordpress.com/2010/12/\t0\nunsafeNew\t1\nhttps://hackage.haskell.org/package/vector-0.11.0.0/docs/src/Data-Vector-Generic-Mutable.html#new\t0\nbasicInitialize\t1\nJquery\t1\nSupersized\t0\nMagento\t0\nsustitute\t0\nsupersized\t0\njQuery.noConflict()\t1\nsupersized()\t1\nRead\t0\nFull\t0\n‌\t1\nalert(document.getElementsByTagName('div')[0].innerHTML)\t1\n<div>This\t1\nzero-width&zwnj;non-joiner,\t1\nnon-breaking&nbsp;space\t1\n&amp;\t1\nampersand</div>\t1\nhttps://jsfiddle.net/yst1Lanv/\t0\nunicode\t0\n\\u200c\t1\ndocument.getElementsByTagName\t1\n('div')[0]\t1\n.innerHTML.replace\t1\n\\u200c/g\t1\n‌'\t1\n(/‌/\t1\nYong\t0\nQuan\t0\nnicer\t0\nconfusing\t0\ncollect\t0\nsales\t0\nstatistics\t0\naggregated\t0\nmillion\t0\n22Gb\t0\nPlenty\t0\nsqlsrv\t1\nMSSQL\t0\nERP\t0\nguessed\t0\ncollecting\t0\n2016\t0\n2015\t0\norders/transactions\t0\npointers\t0\nSubqueries\t0\nWebApi\t1\nback-end\t0\nAdmin\t0\nOrder\t0\nReadonly\t1\n403\t0\nForbidden\t0\nif(User.IsInRole(\"Readonly\"))\t1\nForbidden()\t1\nupdate-able\t0\nNotAuthorized\t1\nAuthorize()\t1\nforbid\t0\ndecorate\t0\nrestricted\t0\npermitted\t0\nself-reference\t0\nrelationship\t0\nchildren\t0\nparent_id\t1\nfolloed\t0\ndoctrine\t1\npersist\t0\nALL\t0\nentities\t0\nCategory->addChildren\t1\ncategory\t0\nDoctrine\t0\nExtensions\t0\ntree\t0\nLWJGL\t0\nstumbled\t0\nbackups\t0\n8.1\t0\nsuddenly\t0\nincompatibility\t0\nhav\t0\nworld\t0\ninbuilt\t0\nGL11.glEnable(GL11.GL_DEPTH_TEST)\t1\nforgotten\t0\n-Kore\t0\naswell\t0\nGL11\t1\nglClear(GL11\t1\nGL_COLOR_BUFFER_BIT|GL11\t1\nGL_DEPTH_BUFFER_BIT\t1\n);\t0\nFirstly\t0\nLocationManager\t1\nGets\t0\nCalls\t0\nwebservice\t1\nPOIs\t0\nTabActivity\t1\nBearing\t0\ndocked\t0\nprogress\t0\nswitching\t0\ncopes\t0\norientation\t0\nfocus\t0\naccuracy\t0\nchooses\t0\nmapview\t1\naccurate\t0\ninitially\t0\nrough\t0\nlistview\t1\nMartin\t0\nsussed\t0\nLocationListener\t1\nprepared\t0\nlopper\t0\nLooper.Loop()\t1\nrequestLocationUpdates\t1\nkick\t0\ntimer\t0\nlocationmanager\t1\nresponds\t0\nexpires\t0\nlooper.quit()\t1\ncancelling\t0\nlooper\t0\ncancelled\t0\nUIImageView\t1\nimageView\t1\nalloc\t1\ninitWithFrame:CGRectMake(0,40,100,100)\t1\nincorporate\t0\nhttp://placehold.it/250x250\t0\nhttp://placehold.it/100x100\t0\nimageView.layer.rasterizationScale\t1\nimageView.layer.shouldRasterize\t1\nNSData\t1\ndataWithContentsOfURL\t1\nNEVER\t0\ncase.\t0\nuploading\t0\ntest.doc\t1\ncommons\t0\njar\t0\nFormFile\t1\ndoc.The\t0\ndocx\t0\nAdvance\t0\nmime\t0\nhttps://technet.microsoft.com/en-us/library/ee309278(office.12).aspx\t0\nUpdated\t0\nArrayBuffer\t1\nBlob\t0\nEncoding\t0\nPop\t0\nUp\t0\nIF\t0\nOR\t0\nclauses\t0\nORs\t0\nStops\t0\nshort-circuiting\t0\nhttp://en.wikipedia.org/wiki/Short-circuit_evaluation\t0\nhttps://developer.mozilla.org/en/JavaScript/Reference/Operators/Logical_Operators\t0\nPut\t0\nupper\t0\ncopy/drag\t0\nsufficient\t0\n0s\t0\nPick\t0\nzipcodes\t0\nchloropleth\t0\nggplot\t1\nlat\t0\nhavent\t0\nsamples\t0\ndating\t0\nstrangely\t0\nEclipse\t0\nerror/warning\t0\nFit\t0\nElizabeth\t0\nBennett\t0\n90.0\t0\nFitzwilliam\t0\nDarcy\t0\n90.55\t0\nRomeo\t0\nMontague\t0\n90.3\t0\nJuliet\t0\nCapulet\t0\n.......................................................\t0\nforth\t0\nappearing\t0\nconcatenating\t0\n(\"+\")\t1\n\\n\t1\nextraneous\t0\nNew\t0\n0.0\t1\n0.55\t0\n0.3\t0\n..............................................\t0\nthankfully\t0\nshorthand\t0\nleads\t0\ns\t0\nappearance\t0\nsolid\t0\nconclusion\t0\nmodifying\t0\nMultiple\t0\nSyntax\t0\n++\t0\nInvalid\t0\nInterestingly\t0\nsake\t0\nreadability\t0\nclarification\t0\nunusual\t0\nmassively\t0\nadmittedly\t0\nleft-associative\t1\ninteger\t0\nunary\t1\n\\t\t1\noperand\t0\nUnary\t1\npromotion\t0\neffectively\t0\nSystem.out.println\t1\nHello\t0\n\\t'\t1\nsigns\t0\nints\t0\nRemember\t0\n+2\t1\n-2\t0\nHello9\t0\nrotating\t0\nrotation\t0\nfyi\t0\nMandrill\t1\ncomposer\t0\nchoices\t0\ntrouble-shooting\t0\nChris\t0\nM\t0\nhttps://mandrillapp.com/api/docs/messages.php.html\t0\nIve\t0\ncontacts\t0\nborder\t0\nFixed3D\t1\nsunken\t0\nFixedSingle\t1\nMagnifier\t0\ntwo-pixel\t0\nwide\t0\nborders\t0\ndraws\t0\ntwo-pixel-wide\t0\nrectangles\t0\nDesigner\t0\nAffectedControl\t1\nweirdly\t0\nflickering\t0\nresizing\t0\ncontrols\t0\ncom.mysite.bookingmeeting.dao.implementation.UserProfileDaoImpl.findAllUsers(UserProfileDaoImpl.java:47)\t1\norg.apache.jsp.admin.ManageUsers_jsp._jspService(ManageUsers_jsp.java:133)\t1\nfindAllUsers()\t1\nUserProfileDaoImpl()\t1\nManageUsers.jsp\t1\nDeleteUserForm.jspf\t1\nDeleteUserForm.jsp\t1\nUserProfile\t1\nSpotDetails\t1\ndrawn\t0\nprogramically\t0\nUntill\t0\nWindRose\t0\nAsynTask\t1\nExperience\t0\nsuffering\t0\nDrawRose\t1\nDraw\t1\nSurfaceView\t1\nunlock\t0\ncanvas\t0\nsharing\t0\ncomponents\t0\ninjectible\t0\nSubject\t0\nreactive\t0\n1.create\t1\nDTO\t0\n2.import\t0\n3.create\t0\n4.access\t0\n1.4.1\t0\nlaptop\t0\ninteractively\t0\nHomebrew\t0\nspark-submit\t1\n/usr/local/Cellar/apache-spark/1.4.1/\t1\nincorrectly\t0\nPYTHONPATH\t1\n@Def_Os\t0\npointing\t0\ngeneric\t0\ndrops\t0\ntargets\t0\nAllowDrop\t1\nhooked\t0\nDragEnter\t1\nDragOver\t1\nUIElement\t1\nbubbling\t0\nenables\t0\nnesting\t0\ninter-application\t0\npotential\t0\npresses\t0\nEsc\t1\ncancel\t0\nrouted\t0\ne.OriginalSource\t1\nPreview\t0\nhittesting\t0\nItemsControl\t1\nListbox\t1\nvisuals\t0\nGrids\t0\ntextblocks\t0\nhappily\t0\ncolour\t0\ndefinitely\t0\nfinished\t0\ndragging\t0\nTreeView\t1\nexpands\t0\ncancels\t0\nundoes\t0\nsensibly\t0\nListBox\t1\nhopes\t0\nmarked\t0\nPreviewMouseMove\t1\ndistance\t0\nenacting\t0\nDoDragDrop\t1\nanalyze\t0\nDataObject\t1\nDragEventArgs\t1\ne\t0\nlistbox\t1\nholding\t0\nindicator\t0\ne.Source\t1\nDropTarget\t1\nTrue\t0\nDropOver\t1\nProtractor\t0\nrepeater\t1\nsummary\t0\ne2e\t0\ngetText()\t1\ngetText()'s\t1\ninnodb\t0\nmysql\t0\ninnodb_file_per_table\t1\nibd\t0\n3GB\t0\nfile(a.sql)\t1\na.sql\t1\n2.5Gb\t0\n30GB\t0\nb.sql\t1\nibdata1\t1\ndest\t1\nwon\t0\nCoda\t0\nlocation.href\t1\nurl.value\t1\nw3schools\t1\nthrow\t0\nredirected\t0\nManga\t0\nSomeone\t0\nMost\t0\nREFERRER\t0\nhomepage\t0\nHTTP-REFERRER\t0\nhttp://centraldemangas.com.br/\t1\nEstou\t0\ntentando\t0\nsalvar\t0\numa\t0\nimagem\t0\nque\t0\nvem\t0\nda\t0\nmas\t0\nsempre\t0\ncai\t0\nAssume\t0\nadjacent\t0\ntechnology/language\t0\n--what\t1\nautomating\t0\nprocessing/summary\t0\nclean-up\t0\neg\t0\njoins\t0\nsummaries\t0\npost-processing\t0\nautomate\t0\nmethod(s)\t1\ndbs\t0\nSimilar\t0\nMAW\t0\nintervals\t0\nDBMS\t0\njobs\t0\nprocedures/commands\t0\ntagged\t0\nthats\t0\nhttp://dev.mysql.com/tech-resources/articles/event-feature.html\t0\ngreen\t0\nchecklist\t0\nGREEN\t0\ncity\t0\nYork\t0\ndata-city\t1\ncorresponds\t0\nth\t0\nBased\t0\ntds\t0\ndemo\t0\nhttp://jsbin.com/leqinun/1/edit?html,js,output\t0\nweek\t0\nmissmatch\t0\ngenerics\t0\nT\t0\nMcKeown\t0\nBaseRequest\t1\nconstrained\t0\nconstraint\t0\nomit\t0\ncasting\t0\nListAlertsRequest\t1\nDoGetRequest\t1\nBaseRequest<BaseResponse>\t1\n<BaseResponse>\t1\nwa\t0\nupload\t0\nEDIT2\t0\nevent.target.files\t1\ndefaultImg\t1\nimg\t0\nsomthing\t0\ncalculate\t0\n2nd-order\t0\nderivative\t0\nCRF\t0\nloss\t0\nTensorflow\t1\ntf.contrib.crf.crf_log_likelihood\t1\nSecond-order\t0\ngradient\t0\nPreviously\t0\nRNN\t0\nimageupload\t1\nBest\t0\nHendrik\t0\nhttp://malsup.com/jquery/form/#options-object\t0\nletter\t0\nF\t0\nclickable\t0\ndiver\t0\nHtml\t0\nCodePen\t0\nuniversal\t0\nHeaders\t0\nparagraphs\t0\npictures\t0\nORDER\t1\nBY\t0\nunderscores\t0\nequally\t0\nDISTINCT\t0\napplies\t0\ndistinct\t0\nnon-Abstract\t0\nheres\t0\nmetronome\t0\ncopied\t0\nhttp://www.cs.cmu.edu/~illah/CLASSDOCS/javasound.pdf\t0\nJButtton\t1\nClickForSound\t1\nClass\t0\nPlsWork\t1\nPLEASE\t0\nactionPerformed\t1\nactionPreformed\t1\n@Override\t1\nnon-compile\t0\nnon-abstract\t1\nhistory\t0\nSHA\t0\ncommit\t0\nNeither\t0\nmerged\t0\nmaster\t0\nFind\t0\n--merges\t1\ncommits\t0\n--ancestry-path\t1\nbranches\t0\ngitk\t1\nentering\t0\nGit\t0\nmasterthat\t1\nreadable\t0\ndisabled\t0\nAD\t0\nDeprovisioned\t0\nOkta\t0\nreactivate\t0\nPowerShell\t1\nMatt\t0\nEgan\t0\nhttps://github.com/mbegan/Okta-PSModule\t0\ndeprovisioned\t0\nProvisioned\t0\nprofiled\t0\nActive\t0\nDirectory\t0\ndeactivated\t0\nmastered\t0\nactivate\t0\n/api/v1/users/{{userId}}/lifecycle/activate?sendEmail=false\t0\nactivating\t0\nImport\t0\nreactivated\t0\nvarbinary\t1\nXMl\t0\ncast\t0\n$multi_array[0][1]\t1\ncount($ALPHABET[0][0])\t1\nTreat\t0\n$multiarray[0][1]\t1\ncount($multiarray[$index])\t1\ndoxygen\t0\nfile(s)\t1\nDoxygen\t0\nGuid\t1\nids\t0\nbigint\t1\nGuids\t0\nrebasing\t0\nrebase\t1\n-i\t1\nHEAD\t0\nremoved\t0\nsquash\t0\ncommit-4\t0\ncherry\t0\ncommit-2\t1\nassumed\t0\nconflicts\t0\nCommits\t0\nEnterprise\t0\nGuide\t0\nCreated\t0\nsex\t0\nWill\t0\ndatasets\t0\n100k\t0\nobs\t1\nsurely\t0\nnHibernate\t1\nscenes\t0\ndrawback\t0\nkeyed\t0\nintermediate\t0\nconcatenated\t0\nLK\t0\nvakue\t1\nqueries\t0\nLaziale\t0\ncombinations\t0\nassigns\t0\nmet\t0\nkeyboard\t0\n2d\t0\nbarcode\t0\nscanner\t0\nmixture\t0\nCtrl+v\t1\nv\t0\ndetected\t0\ncursor\t0\nautofocus\t0\nFormatted\t0\nCFML\t0\nstring/text/base64\t1\novercome\t0\nCF\t0\nportability\t0\nexposes\t0\nbearing\t0\nBot\t0\nright-click\t0\ndesigned\t0\ntop-level\t0\nsubmodules\t0\nrecorded\t0\nsubmodule\t0\nreporting\t0\nsubmodule-a.git\t1\nsubmodule-b.git\t1\nthinks\t0\nTop-level\t0\nSubmodule\t1\n--all\t1\n&&\t1\nPlatform/Version\t0\nGNU/Linux\t0\n4.2.6-200.fc22.x86_64\t0\n2.4.3\t0\nconfirmed\t0\n2.5.0\t0\nre-confirmed\t0\nin-place\t0\nFedora\t0\n24\t0\n2.7.4\t0\nfilesystem\t0\npreserved\t0\ndisappeared\t0\nretrospective\t0\nreproduce\t0\nCI\t0\n120+\t0\nunhandled\t0\nEE\t0\nJQuery\t1\nrelative\t0\nBONUS\t0\nstabs\t0\nstaring\t0\nhttp://www.[yourwebsite].com/src/main/webapp/resources/js/template/Event/EventMainTemplate.html\t0\nHopefully\t0\ny'all\t0\n#messages\t1\nscroll-able\t0\nul.messages\t1\nmsg-con\t1\ncompeting\t0\nfaced\t0\ncanonical\t0\nexpressive\t0\nintersection\t0\nconverters\t0\nbidirectional\t0\nexchange\t0\nXSD\t0\nclosely\t0\nresembles\t0\nrenders\t0\nalter\t0\nsimples\t0\nB/C\t1\nidentified\t0\ndeconstructed\t0\nformalized\t0\nschemes\t0\nnontrivial\t0\ndesribed\t0\narbitrary\t0\nconvention\t0\ndead\t0\nmirrored\t0\nsubspace\t0\nidentifying\t0\nartifacts\t0\ntransparently\t0\nconventions\t0\nreasoner\t0\nspot\t0\nincoherent\t0\ndiscuss\t0\nexperts\t0\nQuestions\t0\nontologies\t0\nimpression\t0\nontology\t0\nrelation\t0\nlong-lived\t0\ncoherent\t0\nsemantic\t0\nconstituents\t0\nmanaging\t0\ncomplexities\t0\nmachinery\t0\n-taken\t0\npermanent\t0\ndissipating\t0\nreconnecting\t0\neffort\t0\nout-of-the-box\t0\ncompanies\t0\noff-the-shelf\t0\ngeneration\t0\nAbstracting\t0\nmeta-model\t0\nMeta\t0\nFacility\t0\nMOF\t0\nTopic\t0\nReferences\t0\nInfoGrid\t0\nGraph\t0\nvocabulary\t0\ntaxonomy\t0\nthesaurus\t0\nSpecification\t0\npdf\t0\nIntroduction\t0\nTM4J\t0\nGeneration\t0\nOpenDDS\t0\nPart\t0\nOCI\t0\nPaws\t0\nmetacpan.org\t0\nsdk\t0\nintegrated\t0\nGCM\t0\ntackle\t0\nregisters\t0\nreviewed\t0\nsender\t0\nregistration\t0\nirrelevant\t0\nalternate\t0\nfills\t0\nAccount\t0\nSettings\t0\nbtaylor\t0\nhttps://www.facebook.com/btaylor\t0\nhttps://graph.facebook.com/btaylor\t0\nwishlist\t0\ntracker\t0\nuploads/forms\t0\nFileField\t1\nFile\t0\nUploads\t0\nCripsy\t0\nBootstrap\t0\n.jar\t0\nfully\t0\ncustomise\t0\ntransport.FileSender\t1\nMGBNSender\t1\nfile.\t0\nclass-path\t0\nMain\t1\nSun\t0\nOct\t0\n15:30:30\t1\nEST\t0\nFriday\t0\n20:00:00\t1\nMST\t0\nAnswer\t0\nSept\t0\nSunday\t0\n21:00:00\t1\nSep\t0\n25\t0\n14:30:30\t1\nDateTime\t1\nCarbon\t0\nhttps://packagist.org/packages/nesbot/carbon\t0\nComposer\t0\nAlex\t0\nCodecourse\t0\nTutorial\t0\nstackexchange\t0\nApologies\t0\nphotos\t0\nreputation\t0\n.do\t0\nhttp://webapps2.rrc.state.tx.us/EWA/productionQueryAction.do\t0\nremains\t0\nobtain\t0\ncopy-paste\t0\ncounty/query/submission\t0\ntedious\t0\nmonthly\t0\ncounties\t0\ndistricts\t0\n2-3\t0\nautomate/ease\t0\nquerying\t0\nautomated\t0\napologise\t0\nnon-specific\t0\nprefixed\t0\nsearchArgs\t1\nmonth/year/.\t1\nactionManager\t1\nimediately\t0\ncrazy\t0\nqueried\t0\ndog\t0\nintroduction\t0\nworth\t0\nprevalent\t0\nAnusha\t0\nEF\t0\ntemplates\t0\nassociation\t0\nsubclasses/types\t0\nTemplateType2\t1\ninherits\t0\nloan1\t1\nloan1.TemplateInstances.add(foo)\t1\n…\t0\nInstanceType2\t1\nscalar\t0\nexposing\t0\nworse\t0\nended\t0\nsolving\t0\nsavingchanges\t0\n((Question)(Left_Node)(right_node))\t1\nsegment\t0\n1.5\t0\ndictionary\t1\nhalf\t0\ntraversed\t0\nrecursively\t0\nleaf\t0\nparser\t0\npyparsing\t1\ngrammar\t0\nnested\t0\nPyparsing\t0\nsimplifies\t0\ngruping\t0\npieces\t0\nvarname\t1\nidentifiers\t0\noperatorPrecedence\t1\nternary\t0\nright-associative\t0\n4-function\t0\nmath\t0\neventually\t0\nsketchy\t0\nspeech\t0\nsimliar\t0\nquoted\t0\nmatched\t0\ntokens\t0\npost-parsing\t0\npicking\t0\nchicken-and-egg\t0\npreface\t0\nForward\t0\n<<\t0\nliberties\t0\nelse-clause\t1\nOptional\t1\nGroup(action)(\"elseAction\")\t1\ndump()\t1\nparseString\t1\nhttp://pastebin.com/DnaNrx7j\t0\nstage\t0\nevaluating\t0\nwiki\t0\nSimpleBool.py\t1\nhttp://pyparsing.wikispaces.com/file/view/simpleBool.py\t0\ncallable\t0\nlocalize\t0\nCurrentUICulture\t1\nCurrentCulture\t1\nCultureInfo(\"fr-FR\")\t1\nSuppose\t0\nFrench\t0\ndictate\t0\nassigned\t0\nculture-specific\t0\nToString()\t1\nsatellite\t0\nEnglish\t0\nspeak\t0\nRussian\t0\nchose\t0\n=P\t1\npreferences\t0\nPreconditions\t0\nlocalized\t0\nsatellites\t0\n\"\"\t1\nconstructed\t0\nGive\t0\nLanguages\t0\nwinforms\t0\nEasiest\t0\nNewbie\t0\ncoder\t0\ndev\t0\nmini_magick20130627-17452-1k48fim.png\t0\nImageMagick\t0\nErrno::ENOENT\t1\nSitesController\t1\n#create\t1\nidentify\t0\n-quiet\t1\n-ping\t0\n/tmp/mini_magick20130627\t1\n-17452-1k48fim.png\t1\ndevelopment.rb\t1\npassenger\t0\nproduction.rb\t1\nPassenger\t0\nCarrierwave\t0\nPhusion\t0\nvars\t0\nhttpd-vhosts.conf\t1\nhttp://blog.phusion.nl/2008/12/16/passing-environment-variables-to-ruby-from-phusion-passenger/\t0\n/etc/bashrc\t1\n/etc/profile\t1\nbashrc/profile\t1\ninduction\t0\nexplorer\t0\nPass\t0\nFormat\t0\nprocessDate.getFullYear()==>\t1\nprocessDate.getFullYear().toDateString()\t1\nevaluates\t0\nloses\t0\n<input\t1\nid=\"txt\"\t1\nonchange=\"inputChange(this.value)\"\t1\n@gurvinder372\t1\nonkeyup\t1\ntype=\"text\"\t1\nid=\"input\">\t1\ncollapsible\t0\ndiagram\t0\ncollapsed\t0\nhttp://bl.ocks.org/david4096/6168323\t0\n43.0.4\t0\nplunker\t0\npartially\t0\ncollpased\t0\nnon-working\t0\ngetAllNetworkInfo()\t1\ngetActiveNetworkInfo()\t1\ndetecting\t0\nplots\t0\nplotted\t0\nintance\t0\nsupermatrix(5:10,:,2:3)\t1\nlegend\t0\n\"supermatrix(5:10,:,2:3)\"\t1\ndfig\t0\nF.Moisy\t0\nfigures\t0\nplotting\t0\noverall\t0\nrobust\t0\nPrint\t0\nThermal\t0\nPrinter\t0\nweb-view\t0\nOver\t0\nOn-click\t1\nOut\t0\nOpen\t0\nweb-view.\t0\nFine\t0\nOpens\t0\nReceive\t0\nAlong\t0\nWeb-view\t0\nOutside\t0\nMeans\t0\n@Sujal\t1\nMandal\t0\nKnow\t0\nme.\t0\nkind.\t0\ntext-view\t1\nCODE\t0\ngetIntent().getStringExtra(\"STRING_DATA\")\t1\noncreate\t1\n15px\t1\nred\t0\nwhite\t0\n2px\t0\nangular5\t1\n2017\t0\nauthenticating\t0\nazure\t0\nwarn\t0\nRoles\t0\nserializeable\t0\ncontract\t0\nfiguring\t0\nmoderately\t0\nsized\t0\nsub\t0\nhttp://json2csharp.com/\t1\nc#\t0\nhttp://json2csharp.com\t0\nGenerated\t0\nplayers\t0\nscores\t0\nName:Mike\t1\nScore:10\t1\nName:Peter\t0\nScore:5\t1\nbronze\t0\nsilver\t0\ngold\t0\nmedal\t0\nUnderneath\t0\nplayername(s)\t1\nwinners\t0\nTotalViewModel\t1\nObservableCollection\t1\nTotal\t0\nScores\t0\nIEnumerable\t1\nscore\t0\nDataContext\t1\nUserControl\t1\n1/2/3\t0\nlinq\t1\nFirstOne\t1\npropertychanged\t1\ng++\t1\n5.4\t0\nclang\t0\n3.8\t0\n64-bit\t0\ndiagnostics\t0\nvary\t0\nclash\t0\nclock\t1\ntime.h\t1\nstd\t0\n<ctime>\t1\n__BEGIN_NAMESPACE_STD\t1\nC-library\t0\nstd::clock\t1\n::clock\t1\n<c*>\t1\n<*.h>\t1\nlocalhost\t0\nStruggling\t0\nReferring\t0\nmarkup\t0\nLabel\t0\nTab\t0\nÂ\t1\nunintentional\t0\ntemplated\t0\nredoing\t0\nscratch\t0\nencounter\t0\nbrso05\t1\ndocument.getElementById(\"myInput\").value\t1\ndocument.getElementById(\"myDiv\").innerHTML\t1\ngroup_concat\t0\nyii2\t1\nmaths\t0\ng_sname\t1\ncolumn()\t1\nwkhtmltopdf\t1\nOpenSCAP\t0\nSLES\t0\nW3C\t0\nhttp://www.w3schools.com/php/php_ajax_database.asp\t0\ncollects\t0\ngotten\t0\n.txtHint\t1\n#sideWays\t0\nrecognising\t0\nTrying\t0\nwatch\t0\nMWE\t0\nMainActivity.java\t1\nactivity_main.xml\t1\nWear\t0\nWebView\t1\nconcretely\t0\nexamine\t0\nthereabouts\t0\ngyrations\t0\nguts\t0\nNullWebViewFactoryProvider\t1\ninterval\t0\n/5\t1\n/home/user/test.pl\t1\n.   \t0\nminute\t0\n59\t0\n|\t0\n.  --\t0\n. ----\t0\n. -\t0\njan\t0\nfeb\t0\nmar\t0\napr\t0\n.----\t1\nsun\t0\nmon\t0\ntue\t0\nwed\t0\nthu\t0\nfri\t0\nsat\t0\nCronjobs\t0\ndeamon\t0\nweekday\t0\nBash\t0\nScrollViewer\t1\nListBoxItem\t1\nvirtualization\t0\nviewers\t1\nListBox.ItemTemplate\t1\nItemsSource\t1\nEasy\t0\nThrough\t0\nXaml\t0\nTemplate\t0\nBehind\t0\n64bit\t0\nstrlen()\t1\nsize_t\t1\nstrlen\t1\ncommonly\t0\nmulti-gigabyte\t0\nmulti-terabyte\t0\nNULL\t0\nridiculous\t0\nStrLenAsync()\t1\nultra\t0\n40TB\t0\nSound\t0\nYea\t0\nproposed\t0\njoke\t0\ntypedef\t1\nvaries\t0\narchitectures\t0\nlargest\t0\n16\t0\nsizes\t0\npupil\t0\npythonwith\t0\nopencvpackage\t1\npresence\t0\nreflection/\t0\nglare\t0\npixels\t0\naccurately\t0\nwebsocket\t1\nbasicly\t0\nWebSocket\t1\nwss://192.168.1.8/ws\t1\nhandshake\t0\ncanceled\t0\nPRO\t0\nx6\t0\nclicking\t0\nreimplement\t0\nOK\t0\nself-signed\t0\n@BenDarnell\t0\nbrowse\t0\nflight\t0\nITA\t0\nMatrix\t0\nhttp://matrix.itasoftware.com/\t0\nselecting\t0\npassengers\t0\nClicking\t0\narrow\t0\nteaching\t0\nclever\t0\nXPath\t0\nNUMBER_OF_PASSENGERS\t1\nunread\t0\nXMPPUserCoreDataStorageObject\t1\ncleaned.So\t0\ndeep\t0\nwindow+alt+shift+\t1\nEMACS\t0\n24.3\t0\nrecentf\t0\nmakefiles\t1\nprojects\t0\nsticky\t0\npersistent\t0\nbookmark\t0\nhttp://www.emacswiki.org/emacs/BookMarks\t0\nnutshell\t0\nC-x\t1\nbookmarks\t0\ndired\t0\nbuffers\t0\nbookmarked\t0\nvisit\t0\nregularly\t0\nhttp://www.emacswiki.org/emacs-es/RecentFiles\t0\n16.04\t0\nComposer.org\t0\nline->\t0\n-r\t1\ncopy('https://getcomposer\t1\n.org/installer\t0\ncomposer-setup.php\t1\nTrough\t0\napt\t0\natp\t0\ntrough\t0\nmanager\t0\nnamely\t0\ninstructions\t0\nPersonally\t0\nperiodically\t0\nComboTree\t1\njeasyui.com\t0\nindex.js\t1\ncshtml\t1\nloadData\t1\ntree_data1.json\t1\ncomboTreeDirective\t1\ncomboe\t0\nAsync/Await\t1\nHTTPClient\t1\n@TheESJ\t0\nawaits\t0\nfashion\t0\nawait\t0\npaused\t0\nawaiting\t0\nfacilitate\t0\nkicked\t0\nparallel\t0\nThose\t0\nConsider\t0\n.ContinueWith\t1\nTask.WhenAll\t1\nDear\t0\nExpert\t0\ntglawal\t0\ntglakhir\t0\n2016-12-04\t1\n2016-12-06\t1\nto_secs\t1\n3600\t0\nLiferays\t1\ninput-date\t1\nsuccessfull\t0\nmesses\t0\n18.08.2017\t1\nd.08.2017\t0\nmessed\t0\nundoing\t0\nerros\t0\npicker\t0\nLiferay.Form\t1\nnormally\t0\nMOBILE\t0\nMAX\t0\nMIN\t0\ndegradation\t0\naim\t0\nprogressive\t0\nenhancement\t0\nre-engineer\t0\nMIN-width\t1\nMAX-width\t1\ntrimmed\t0\n95%\t0\nMAIN\t0\n--MEDIA\t1\n@media\t1\nMin-width\t0\nmax-width\t1\nscreens\t0\nmin-width\t1\nsmaller\t0\nminimum\t0\neffecting\t0\n740px\t1\n900px\t1\nreducing\t0\nproduce\t0\nThings\t0\n-When\t0\nexcluding\t0\nmin/max\t0\n-sizes\t0\nre-sized\t0\n-Here\t0\nendeavours\t0\nhttp://css-tricks.com/snippets/css/media-queries-for-standard-devices/\t0\n400px\t1\nminumum\t0\nVery\t0\noptimizing\t0\npractices\t0\nEm\t0\nPx\t0\nfont-size\t1\nunits\t0\nproportionally\t0\nadjusts\t0\nPercentages\t0\nskinny\t0\nAbsolutely\t0\nPositioned\t0\ndifficuly\t0\nrelatively\t0\nunittest\t1\ntest_code\t1\n-m\t0\ninner\t0\ncartesian\t0\nadditionally\t0\n$array1\t1\n$array2\t1\nangularjs\t1\nembedded\t0\nmywebservice.com\t0\norigin\t0\nallowing\t0\nChoiceBox\t1\npane\t0\nLater\t0\nGroovy\t0\n90,000\t0\n00-90\t0\n000\t0\n90000\t0\nCorrect\t0\nmoves\t0\ndisappear\t0\nprepend\t0\nhttps://jsfiddle.net/rzpL34ef/3/\t0\nIDEA\t0\nJSDoc\t1\nZimbra\t0\nfrontend\t0\nDwtComposite\t1\ncoverage\t0\nJasmine\t0\nWorking\t0\n3.2.2\t0\nJsTestDriver\t1\nmetrics\t0\nJSCoverage\t0\nband\t0\nline.\t0\nJesCov\t1\nJRE\t0\njescov-0.0.1.jar\t1\none.js\t0\ntwo.js\t1\nthree.js\t1\nmonths\t0\nGrails\t0\nhearing\t0\nPanel\t1\nGWT\t0\namounts\t0\nHidden\t1\nwidget\t0\ntype='hidden'>\t1\nfile_get_Contents\t1\nfile_get_contents\t1\ntagit\t0\nwise\t0\nmen\t0\nthis.Also\t1\nrecording\t0\nframes\t0\nemulator\t0\nJuno\t0\nOpenCV4Android\t1\nver\t0\n2.4.5\t0\nandroid-ndk\t1\nlogcat\t0\njniVideoCapture.cpp\t1\nAndroid.mk\t1\ndir\t0\nlibopencv_java.so\t1\njniVideoCapture\t1\nMainActivity\t1\nlibs/\t1\n40M\t0\nRows\t0\nchunks\t0\noccurance\t0\ntable2\t1\ntable1\t1\ncleanse\t0\nsanitised\t0\nquicker\t0\nDump\t0\npk/clustered\t0\njoining\t0\nlowest\t0\nquickest\t0\nidentity\t0\nbatches\t0\nuniqueness\t0\ncomponent_summary\t1\nlabref='A'\t1\nworking.\t0\nSuggestions\t0\nCakePHP\t1\nlest\t0\neditAll\t1\nsubmitting\t0\nindividually\t0\nchildren_ids\t1\nsubquery\t1\ncount_children\t1\nouter\t0\nfind_in_set()\t1\njunction\t0\nStoring\t0\ncomma\t0\ndelimited\t0\nhotels\t0\nhotls1\t1\nhotels.id\t1\nhotels1.I\t1\nsplit()\t1\nADBannerView\t1\nCocos2d\t0\nbanner\t0\napears\t0\nlandscape\t0\nrotate\t0\nM_PI\t1\nmath.h\t1\ncocos2d\t1\nrect\t0\nshouldAutorotateToInterfaceOrientation\t1\nconstantly\t0\nbuttons\t0\nUpon\t0\nmenus\t0\nopinions\t0\nAJ\t0\nPanels\t0\nactivities\t0\nEnsure\t0\ninitialised\t0\nswap\t0\ntechniques\t0\nrevalidate\t1\nOperating\t0\nSystems\t0\nadhere\t0\ntypical\t0\nexpectations\t0\nFurther\t0\nSE\t0\ninitalise\t0\nswaps\t0\ninital\t0\nopt\t0\ninitalisation\t0\nSpeaking\t0\nCardLayout\t1\nsomewhat\t0\n171\t0\n$f\t1\n$data\t1\n$did\t1\nquotations\t0\nLearn\t0\nmysql_\t1\nmysqli\t1\nPDO\t0\nmysql_query\t1\nHttpClient\t1\nStorage\t0\nXamarin.iOS\t0\nalright\t0\nContent-Length\t1\nTryAddWithoutValidation\t1\nworkings\t0\nCheckName()\t1\nhttps://github.com/mono/mono/blob/master/mcs/class/System.Net.Http/System.Net.Http.Headers/HttpHeaders.cs\t0\nknown_headers\t1\nAdd()\t1\nwidth:200px\t1\nhttp://jsfiddle.net/ebG9N/45/\t0\nwhite-space\t1\nnowrap\t1\noverflow\t0\noverflowing\t0\ni)\t1\nSTRICTLY\t0\nWITHIN\t0\noverflow:auto\t1\nii)\t0\nWRAP\t0\ndisplay:table\t1\nGenerally\t0\nwider\t0\nencountered\t0\nSyslog\t0\nwild\t0\nhay-wire\t0\nthousand\t0\nVIM\t0\n^M\t1\nvim\t0\n^J\t1\n0x0a\t1\ncarriage\t0\n0x0d\t0\nseparators\t0\nCR-LF\t0\nUnix-based\t0\nLF\t0\ntreat\t0\nCR\t0\nVim\t0\ndetects\t0\nfileformats\t1\nISO-8859-1\t1\nInputStreamReader\t1\nbreaks.\t0\nBufferedReader.readLine()\t1\n\\r\t1\n\\r\\n\t1\nWebsite\t0\numbraco\t0\nSnippet\t0\nStatus\t0\nMacro\t0\nLogged\t0\nUmbraco\t1\ninbound\t0\nEnable\t0\nCase\t0\nEmail\t0\nCE\t0\n6.5.17\t0\nunchecked\t0\n.load\t1\ndivs(non-nested)..\t1\nOk\t0\nElse\t0\nselector\t0\n#div_1\t1\ndrawables\t1\nLolipop\t0\nsvg\t0\nscaling\t0\nsharp\t0\nstretching\t0\ndrawable\t1\ndensity\t0\nconverter\t0\n5.0\t0\nLollipop\t0\nPNGs\t0\nraster\t0\nyield\t0\npoor\t0\nassets\t0\nIllustrator\t0\nSVG\t0\nVectorDrawable\t1\nDPI\t0\nbuckets\t0\npre-5.0\t0\npostgresql\t1\nMockTable\t1\nlabeled\t0\npull\t0\nrecieving\t0\n1st\t0\nall-lowercase\t0\ncapitalization\t0\nHours\t0\nHOURS\t0\nlowercase\t0\ndouble-quotes\t0\nreserved\t0\nalphabetical\t0\nmagnitude\t0\nmeaningless\t0\nmerely\t0\ndamned\t0\nnon-numeric\t1\narises\t0\nrouting.yml\t1\ncrawler\t0\nrestrict\t0\ntoy\t0\nrepresents\t0\ngrows\t0\ndownwards\t0\nReingold-Tilford\t0\nhttp://igraph.sourceforge.net/doc/python/igraph.Graph-class.html#layout_reingold_tilford\t0\n<Text\t1\nstyle={{color:\t1\n'blue'}}\t1\ngetHighlightColor\t1\nselectionColor='red'></Text>,\t1\ndon't\t0\nprop\t1\n'blue'}}></Text>\t1\ngetCurrentTextColor\t1\nsetTextColor\t1\nsnippets\t0\nSomeComponent.js\t1\nTextView\t1\nStyleSheets\t1\ndmg\t0\nuploader\t0\nported\t0\nBrowser\t0\nunidentified\t0\nPrivacy\t0\nopted\t0\ninorder\t0\nerrors/warnings\t0\nnovice\t0\nkindly\t0\nrequesting\t0\nunverified\t0\nright-clicking\t0\nDMG\t0\ndoubled\t0\nhttp://osxdaily.com/2012/07/27/app-cant-be-opened-because-it-is-from-an-unidentified-developer/\t0\npay\t0\nApple\t0\nPOSTMAN\t0\nTown\t0\nProvince\t1\nParent\t0\nSpring-data-jpa\t1\nPOJOs\t0\nEntities\t0\nSwap\t0\n@JsonBackReference\t1\n@JsonManagedReference\t1\n256\t0\ncase-insensitively\t0\napplepie()\t1\n255\t0\ncaps\t0\napplepie\t0\n$@\t1\nfake\t0\ncase-insensitive\t1\ntrap\t0\nApPlE\t0\ncommand_not_found_handle\t1\nlower-cases\t0\nobtuse\t0\none-liner\t0\nbc\t1\nosx\t0\n2^n\t0\nFiddles\t0\ntoupper()\t1\ndigit\t0\nreassembles\t0\nAssumes\t0\nRestful\t0\nrestful\t0\n-servlet.xml\t1\nAbove\t0\nMyApp/WebContent/images/logo.jpg\t1\nMyApp/WebContent/WEB-INF/view/home.jsp\t1\n<'img\t1\nsrc=\"<%=request.getContextPath()%>\t1\n/images/logo.jpg\t1\n>and\t1\nsrc=\"<'c:url\t1\nvalue='<%=request.getContextPath()%>/images/logo.jpg'>\t1\nwebapp\t0\nhierarchy\t0\nMyApp\t1\n\\src\\main\\webapp\\images\\logo.jpg\t1\n\\src\\main\\webapp\\web-inf\\views\\home.jsp\t1\nReally\t0\nhttp://www.tutorialspoint.com/spring/spring_static_pages_example.htm\t0\nservlet.xml\t1\nMapping\t0\nspringmvc-servlet.xml\t1\nnsmutablestring\t1\n@\t0\nhello\t0\nbriefly\t0\nobject1\t1\nobject2\t1\nobject3\t1\nobject4\t1\nobject5\t1\nNSArray\t1\nuiimageview\t1\nuniquely\t0\nNSString\t1\nrepresenting\t0\nprogramm\t0\nconstants\t0\nmacros\t0\nUICollectionView\t1\nUITableView\t1\nsetPrefetchingEnabled\t1\nvertically\t0\nalign\t0\nUILabels\t1\ncolon\t0\nLabel1\t1\nlabel1\t1\nLabel2\t1\naccomplished\t0\nAutoLayout\t1\nTitle\t0\nLabels\t0\nAligned\t0\n:1\t1\n:100\t1\npin\t0\nwidths\t0\nspacing\t0\nstringwithFormat\t1\n:%d\t1\nillustrates\t0\nAutolayout\t0\nUIView\t1\ncentre\t0\nderives\t0\nsubviews\t1\npinned\t0\nedges\t0\n|[label1]-[label2]|\t1\ncrashlytics\t0\nXamarin\t0\naffects\t0\n80%\t1\ndecipher\t0\ngist\t0\ndSYM\t0\nCrashlytics\t1\nAppDelegate.cs\t1\nFabric\t0\nBucket\t0\nCloudFront\t0\ncloudfront\t0\nzone\t0\nEC2\t0\nRTMP\t0\npagination\t0\nRoute\t0\nmodel-function\t1\nqueryParams\t1\nhttp://emberjs.com/guides/routing/query-params/\t0\nparam\t0\nhttp://yourdomain.com/someroute?limit=15\t0\nconcern\t0\nCart\t1\n$id\t1\nqty\t1\nrowId\t1\nCart::search()\t1\n$cartItem\t1\nhttps://github.com/Crinsane/LaravelShoppingcart\t0\nCaseMilestone\t1\nSimilarly\t0\nMilestoneType\t1\nCaseMilestones\t1\nRelationship\t0\nLookup\t0\ncalculating\t0\nloan\t0\nprofessor\t0\nive\t0\nexiting\t0\njigsaw\t0\njumps\t0\nproduces\t0\nloop.\t0\ncontinues\t0\nSame\t0\ntied\t0\nrobustness\t0\nprocess()\t1\nBreak\t0\nstopping\t0\nCMD\t0\nGOTO\t0\nONIX\t0\nhttp://www.editeur.org/93/Release-3.0-Downloads/\t0\n3.0\t0\nhttp://www.editeur.org/files/ONIX%203/ONIX_BookProduct_XSD_schema+codes_Issue_25.zip\t0\nxsd\t1\nyour.xsd\t1\n/classes\t0\nXml\t0\nSerializer\t1\ndrill\t0\nQT\t0\ncoordinate\t0\ndivision\t0\nstudent\t0\nregisered\t0\ncourses\t0\nPSY1\t0\nfufills\t0\nBOTH\t0\nCond1\t1\nCond\t1\n1004\t1\npsy1\t1\nDoesnt\t0\nED\t0\nstudents\t0\nteh\t0\nammount\t0\nOTHER\t0\nfufill\t0\nbot\t0\ncond1\t1\ncond2\t1\nUntested\t0\nstarter\t0\nINNER\t0\nJOIN\t1\nLEFT\t1\nCOUNT\t1\nCOALESCE(COUNT))\t1\nRoot/uploads/images\t1\ngoogling\t0\nhelpfull\t0\nstuch\t0\nthankful\t0\nroutes.rb\t1\nscalesPageToFit\t1\nYES\t0\nsafari\t0\ncompleteness\t0\nmultitouch\t0\nscalesPagesToFit\t1\nhttp://iphoneincubator.com/blog/windows-views/right-scale-for-a-uiwebview\t0\n6.0\t0\nMarshmallow\t0\nEditText\t1\nImageView\t1\nRelativeLayout\t1\nlayout_alignBaseline\t1\nobserved\t0\nemulatr\t0\nEditor\t0\nsolely\t0\nhttps://github.com/mikegr/baseline\t0\nhttps://code.google.com/p/android/issues/detail?id=73697&thanks=73697\t0\nAPI11\t1\nandroid:baselineAlignBottom\t1\ngetBaseLine()\t1\nSupport\t0\n23.2.1\t0\nhuge\t0\nfread\t0\nseparation\t0\nSetting\t0\nweirdness\t0\nHadoop\t0\nHBase\t0\ncluster\t0\nStart\t0\nstandalone\t0\nservers\t0\nlinux\t0\ncompany\t0\neveryone\t0\nFollowed\t0\nKundera\t0\ndistribute\t0\ndoubt\t0\ndefinitive\t0\nanalog\t0\nArduino\t0\nUno\t0\nvoltage\t0\n5V\t0\nmotor\t0\npwm\t0\n127\t0\n2.5V\t0\nPWM\t0\n255pwm(5V)\t0\n127V\t0\n50%\t1\ntwitch\t0\nlower\t0\nvolts\t0\nD3\t0\nA3\t0\ndriving\t0\nDC\t0\nservo\t0\nstepper\t0\nsmoothing\t0\ncapacitor\t0\nL*C\t0\nNoting\t0\nanalogWrite\t1\n490Hz\t0\ncap\t0\naverage\t0\nlows\t0\nduty\t0\ncapacitance\t0\nimpedance\t0\nsupply\t0\n20ma\t0\npulses\t0\nstall\t0\nperiods\t0\ntransistor\t0\nON-OFF\t0\ninertia\t0\nadafruit-arduino-lesson-13-dc-motors/breadboard\t0\n-layout\t1\nmenu-bar\t1\nSnow\t0\nLeopard\t0\nsooner\t0\nAnytime\t0\nTheWindowController\t1\ncorrupt\t0\nIdea\t0\nBtw\t0\nARC\t0\nNIB\t0\n10.7-specific\t0\nCocoa\t0\nwarnings\t0\n10.7\t0\nbuilds\t0\npost-10.6\t0\nCompatibility\t0\nconnects\t0\nmongo\t0\nMONGOHQ_URL\t1\nhttp://docs.mongohq.com/languages/nodejs.html\t0\nSabari\t0\n/.bash_profile\t1\nNode.js\t1\ndotenv\t1\nMongoHQ\t0\nmootools\t1\noutgoing\t0\nclickRecord(id)\t1\nonclick\t1\n=\"\"\t1\nstranger\t0\nonmousedown\t1\nnavigate\t0\nonclick()\t1\nsynchronous\t0\ncommitting\t0\nbreaking\t0\nonmousedownevent\t1\nfirefox\t0\nnavigates\t0\nunsolved\t0\nraised\t0\n1995\t0\nevent.stop()\t1\n<div\t1\nid=\"1\">\t1\nMetaTrader\t0\nTerminal\t0\noffline\t0\nchart\t0\ntimezone\t1\nbroker\t0\nMQL4\t0\ntrully\t0\noffline-charts\t0\ncharts\t0\nevent-flow\t1\nMT4-Server\t1\nretaining\t0\nTOHLCV-data\t1\nTimeZone\t1\nshifts\t0\nsynthetic\t0\nBar(s)\t1\nadditions\t0\nadaptations\t0\ntransformed\t0\nTOHLCV-history\t1\nF2\t1\nfacility\t0\nMT4\t0\nHistory\t0\nCentre\t0\nlive-quote-stream\t0\nTrading\t0\nunwanted\t0\nreaching\t0\nanFxQuoteStreamPROCESSOR\t1\ninject\t0\nQuoteStreamDATA\t1\nMetaQuotes\t0\nInc\t0\npostulated\t0\nServer/Terminal\t0\nreverse-engineer\t0\nunlawfull\t0\nviolation\t0\nrights\t0\nlegal\t0\nconsequences\t0\ncarefull\t0\nstepping\t0\nAnyway\t0\nrisk\t0\nCa\t0\nQuotes\t0\nfed\t0\nmt4\t1\nevented\t0\nmetatrader\t0\nAnkhSVN\t1\nVS2012\t0\nSubversion\t0\nVS2010\t1\n2.4.11610.27\t1\nstable\t0\nUltimate\t0\npresumably\t0\nplugins\t0\nTortoiseSVN\t1\nreinstalling\t0\nCollabNet\t1\ntools->options->source\t1\nuninstall/reinstall\t0\nrepair\t0\nblank.ex\t1\niex\t1\nweather\t0\nelixirc\t1\nbeam\t0\nsecondly\t0\nElixir.Blank.Integer.beam\t1\nElixir.Blank.List.beam\t1\nfallback\t0\nOpenfire\t0\nlive.Please\t0\n2017.08.23\t1\n09:37:35\t1\norg.jivesoftware.openfire.plugin.rest.exceptions.RESTExceptionMapper\t1\nUserAlreadyExistsException\t1\nressource\t0\natg\t0\njivesoftware\t0\nopenfire\t0\nPluginManager\t1\nloadPlugin(PluginManager\t1\njavaorg\t0\nPluginMonitor$MonitorTask$4\t1\ncall(PluginMonitor\t1\njavaat\t0\nutil\t0\nFutureTask\t1\nrun(FutureTask\t1\n262\t0\nThreadPoolExecutor\t1\nrunWorker(ThreadPoolExecutor\t1\nThreadPoolExecutor$Worker\t1\nrun(ThreadPoolExecutor\t1\nlang\t0\nrank\t0\nFloat\t0\nReferenceError\t1\nascending\t0\ndescending\t0\nsorting\t0\nrevert\t0\nre-clicking\t0\nng-repeat\t1\nRetrofit\t1\n@Expose\t1\nteacherServiceId\t1\n840\t0\nPLC\t0\nModbus\t0\nhttp://www.codeproject.com/Tips/16260/Modbus-TCP-class\t0\nMaster.ReadHoldingRegister(ushortid,byteunit,ushortstartAddress,ushortnumInputs)\t1\nlenght\t0\n144\t0\n1680\t0\n125\t0\nHolding\t0\nRegisters\t0\nspliting\t0\nstudy\t0\nreliably\t0\nbuild.xml\t1\ntriggering\t0\nmvn\t1\nrenaming\t0\nmaven\t0\nsnapshot\t0\nAnt\t0\nvoid\t0\nXButtonExit_Click\t1\nEventArgs\t1\n//This\t0\nClose()\t1\n;}\t1\nTextBoxes\t1\ntax\t0\nsubtotal\t0\nSubtotal\t0\n//Take\t0\nxTextBoxTotal\t1\nFormatException\t1\nConvert.toInt16(xtextboxTotal.text)\t1\nformating\t0\nre-convert\t0\ncurency\t1\nformatting\t0\nhttp://msdn.microsoft.com/en-us/library/3s27fasw.aspx\t0\nMaven\t0\nspring-boot-starter-ws\t1\nstarter-web\t0\nlog4j\t0\nlogger\t0\nTRACE\t0\nlogback\t1\nlogback.xml\t1\nstarter-logging\t0\napplication.properties\t1\nWEB-INF\t0\nlogging.level.org.springframework\t1\nlogging.path\t1\nEndpoint\t0\nBasicly\t0\nshipped\t0\nDEBUG\t0\ntrace\t0\nperformant\t0\n//Update\t1\nreduced\t0\nbase.xml\t1\nBlocks\t0\nbefore/after\t0\ncentering\t0\nwebpack\t1\nhttps://webpack.js.org/loaders/\t0\n\\.css$/\t1\nfront/back\t0\nslashes\t0\nmeant\t0\n2.4.10\t1\nofficials\t0\nclone\t0\nOpenCV\t1\nTortoiseGit\t1\n2.4.0.3\t1\nClone\t0\nhttps://github.com/opencv/opencv.git\t0\nSwitch/Checkout\t0\nOpenCV-2.4.10\t1\nBranch\t0\nTag\t1\nsubfolder\t0\nopencv-2.4.10\t1\nGitHub\t0\nequality\t0\nJoin\t0\nPig\t0\nHive\t0\ninequality\t0\nCROSS\t0\nFILTER\t0\nreducer\t0\nimproved\t0\nscale\t0\nggnetwork\t0\nscaled\t0\nscale_size_area()\t1\ntowards\t0\nshrink\t0\nboils\t0\ngeoms\t0\nscale_size_area\t1\nmax_size\t1\nscale_size_continuous\t1\nc(1,6))\t1\nAlmost\t0\nggplot2\t1\ndual-scaling\t0\ny-axes\t0\nscales\t0\ncontradicts\t0\nCKEDITOR\t0\nbase64_encode\t1\n-signs\t0\nwhitespaces\t1\nCKEditor\t0\nvar_dumped\t1\nclue\t0\nsingleton\t0\nIntelliJ\t0\nhorribly\t0\nflawed\t0\nmulti-threading\t0\nholder\t0\nloader\t0\nsynchronization\t0\nhistograms\t0\nhistogram\t0\njam\t0\ndatas\t0\nconcurently\t0\n0-255\t0\nneglect\t0\nthermal\t0\nsignificant\t0\nunsigned\t0\n0-65535\t1\nhte\t0\npreallocated\t0\ncircular\t0\n-notify\t1\narrive\t0\nprocessed\t0\nreusable\t0\nfamiliar\t0\ntoy.h\t1\n.cpp\t1\ndifficulties\t0\naspect\t0\nnotify\t0\nget_buffer())\t1\nBuf_start\t1\n_Buf_end\t1\nseeking\t0\noverload\t0\n()\t1\nbuffer()\t1\nunique_lock\t1\n_mtx_foreground\t1\noutbound\t0\nsatisfy\t0\nremake\t0\nredo\t0\ndeeply\t0\ntoy2\t1\nJobs\t0\nJob\t1\nTasks\t0\ntasksCount\t1\ntricks\t0\ntwig\t0\nhydrate\t0\nGravatar\t0\nRSAPKCS1Signatureformatter\t1\nRSACryptoServiceProvider\t1\nsign\t0\nRSAPKCS1SignatureFormatter\t1\nRSACryptoServiceProvider.SignHash\t1\nPsychic\t0\nSignData\t1\nRSA\t1\nhashed\t0\nSignHash\t1\npre-digested\t0\ntoolset\t0\ncontrollers\t0\n1:1\t0\nController+View\t1\nmodal\t0\nhttps://github.com/angular-ui/ui-router\t0\nheavily\t0\ntying\t0\npartials\t0\nng-include\t1\ncoupled\t0\nng-controller\t1\nnest\t0\nexpects\t0\nutilize\t0\nPlunker\t1\nswapping\t0\nfeasibility\t0\nglance\t0\ncostly\t0\n40-400\t0\nparticles\t1\nparticle\t0\nParticleAI\t1\nUpdate()\t1\nnewly\t0\nParticle\t0\nefficiency\t0\n100-2000\t0\nLists\t0\n60FPS\t0\nnulls\t0\nAI\t1\nbrain\t0\nconstructing\t0\nunexpectedly\t0\nterms\t0\nsheer\t0\nparticleAI\t1\nreusing\t0\nNull\t0\nLinkedList\t1\nlighter\t0\nto-be-replaced\t0\nCollections.emptyList()\t1\nsafer\t0\nworthwile\t0\nalgorithmic\t0\nSpending\t0\nQueues\t0\nPriorities\t0\nquests\t0\nhosted\t0\nquest\t0\nsuits\t0\ntimestamp\t1\nnotepad++\t1\nBrackets\t0\nfind/replace\t0\nDialog\t0\n^\t1\n\\[\\]]*\\[([^\\]]+)\\]\t1\n\\1\\n\t1\nRE\t0\nmetacharacters\t1\nbracket\t0\nconsist\t0\nclosing\t0\n((\t1\n^\\\t1\n+))\t1\ncaptured\t0\n\\1\t1\nsubstitution\t0\nnewline\t0\nwindows-style\t0\nlineendings\t1\nLayoutManager\t1\nLeanback\t0\nleanback\t1\nfocused\t0\nmiddle\t0\nsetStackFromEnd(true)\t1\nsetReverseLayout(true)\t1\nslashdot\t0\nstory\t0\ntidbit\t0\nscoured\t0\nhttp://infoworld.com/d/developer-world/12-programming-mistakes-avoid-292\t0\ngroovy\t0\nProject\t0\nCoin\t0\nhttps://wiki.openjdk.java.net/display/Coin/2009+Proposals+TOC\t0\nElvis\t0\nNull-Safe\t0\nOperators\t0\nunpredictable\t0\nplan\t0\nsetups\t0\ntermed\t0\ncoalesce\t0\ntry-catch\t1\nrails4-application\t0\nheroku\t0\ngithub-repository\t0\ntopic\t0\nRuby/rails\t0\ndebugger\t0\nHeroku\t0\ndevelopment\t0\nhttps://devcenter.heroku.com/articles/ruby-support#debugger-gems-fail-to-install\t0\nCodeIgniter\t1\nsqlserver\t1\n2008\t0\nini\t0\ntriying\t0\ngivme\t0\nPhp\t0\nconect\t0\n:S\t0\nwasnt\t0\nexpired\t0\nigniter\t0\nbecouse\t0\ndatabase.php\t1\nSolved\t0\nhttps://www.atlassian.com/git/tutorials/setting-up-a-repository/git-clone\t0\n--global\t1\nshortcut\t0\nsynatax\t0\ndidnt\t0\naliases\t0\nliterally\t0\nNotice\t0\nalias.<alias>\t1\nNEW\t0\nhp\t1\nIMABigBaboon\t0\nNotificationCenter\t1\nClosures\t0\nURLSession\t1\nclosure\t0\nResponse\t0\ninterchangeable\t0\nobservers\t0\ndelegates\t0\nlightweight\t0\npositively\t0\ntoPost\t1\nsubmit_data\t1\nSerialization\t0\nfield_name_1\t1\nfield_value_1&field_name_2\t1\nfield_value_2\t1\n$_POST['field_name_1']\t1\n$_POST['field_name_2']\t1\nprint_r($_POST)\t1\nrow_selected\t1\npaths\t0\n.svn\t0\ndirectories\t0\ndeas\t0\n-type\t0\n-rf\t1\n`find\t0\n-name\t1\n`\t1\nPostgreSQL\t0\nnumeric(15,6)\t1\nDecimalField\t1\nhttp://www.postgresql.org/docs/current/interactive/datatype-numeric.html#DATATYPE-NUMERIC-DECIMAL\t0\nhttps://docs.djangoproject.com/en/1.8/ref/forms/fields/#decimalfield\t0\nsolutions.MY\t1\nsignup\t0\nadministration.But\t0\nforms.py\t1\nviews.py\t1\nmodels.py\t1\n\"mail_base,provider=email.split(\"@\")\"\t1\nforms.py.Please\t1\nleaves\t0\nSignUp\t0\nEmailField(blank=True))\t0\nself.cleaned_data.get('email')\t1\nmail_base\t1\nemail.split('@')\t1\nraise\t0\nemail.split(\"@\")\t1\nintellisense\t0\nu.Id\t1\nug.UserId\t1\nANSWER\t0\nNorthwind\t0\n.sql\t1\nimporting\t0\nstuff.sql\t1\nStatement\t0\ntemporary\t0\nmemory-only\t0\nSQLite\t1\n:MEMORY\t1\nMEMORY\t1\nHEAP\t1\nDDL\t0\nINNODB\t1\nMyISAM\t1\n1TB\t0\nprove\t0\nimpractical\t0\nrecreating\t0\nMPxCommand\t1\nMArgList\t1\ndoIt()\t1\nMArgParser\t1\nasStringArray(index)\t1\nasIntArray(index)\t1\nself.myStr\t1\ncmds.myCommand\t1\nclears\t0\nreflect\t0\nOpenID\t0\nIdP\t0\nRP\t0\nworking-\t0\ncontacting\t0\nauthenticate/authorize\t0\nverification\t0\ndug\t0\nhunch\t0\nYadis\t0\nrealm\t0\nshoots\t0\n302\t0\nAccept\t0\napplication/xrds\t1\nissuing\t0\nX-XRDS-Location\t1\nrework\t0\ngolden\t0\nhttp://blog.nerdbank.net/2008/06/why-yahoo-says-your-openid-site.html\t0\nUIPickerView\t1\nsecondviewcontroller\t1\nfirstviewcontroller\t1\nsegues\t0\nrudimentary\t0\nbrand\t0\nUnlock\t0\nScreen\t0\nhome\t0\nDeviceAdminReceiver\t1\nCSS3\t0\ndecreases\t0\nbackground-size\t0\ntoggled\t0\n.active\t1\nhttp://jsfiddle.net/VQaGh/22/\t0\nhttp://jsfiddle.net/Sk2sX/\t0\nhas_and_belongs_to_many\t1\nOrb\t0\nBook\t1\n_form\t1\nanywere\t0\nhttps://github.com/senayar/books\t0\nnotresolved\t0\nTIMESTAMP\t1\nCURRENT_TIMESTAMP\t1\nStackoverflow\t1\nDatetime\t1\nTimestamp\t1\nhttp://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_datediff\t0\nRufinus\t1\nrow-wise\t0\n#1\t1\nnp.unique\t1\n#2\t1\ndifferentiation\t0\nExtending\t0\nextended\t0\navoiding\t0\npure-Python\t0\nical\t0\nattachment\t0\nmentions\t0\nattachments\t0\nicalendar\t0\nhttps://www.addevent.com/\t1\noriented\t0\ntoward\t0\ninvitations\t0\n100/day\t0\nDealt\t0\ncalendar\t0\n.ical\t0\nattache\t0\n2.0.1\t0\nwierd\t0\nfonts\t0\nFF\t0\nUiBinder\t1\nshowcases\t0\nstyling\t0\n.gwt.xml\t0\nGwtOverride.css\t1\nWinXP\t0\nSP\t0\nannoying\t0\nblue\t0\nnullify\t0\nGentoo\t0\namd6\t0\nreneders\t0\nodd\t0\nmodeless\t0\nDesired\t0\nwhichever\t0\ntopmost\t0\nOnInitDialog()\t1\nSetWindowPos(&this->wndTop,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE)\t1\nSetWindowPos(&this->wndTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE)\t0\nm_subDlg1->Create\t1\nSubDlg1::IDD\t1\nowned\t0\nowned/child\t0\nparent/owner\t0\nowner/child\t0\ncovered\t0\nparent/child/owned\t0\ninternally\t0\nMFC\t0\nBOOL\t1\nWnd\t1\n::\t1\nCreateDlgIndirect(LPCDLGTEMPLATE\t1\nlpDialogTemplate\t1\nCWnd\t1\npParentWnd\t1\nHINSTANCE\t1\nhInst\t1\nSetParent(NULL)\t1\nASSERTs\t0\nCheckBoxes\t1\nofc\t0\nnr\t0\n1.5.7\t0\nChecked\t1\n+check\t1\nSWT\t0\nawt\t0\nCheckBox\t1\nCheckbox\t1\n!!\t1\nBottom\t0\nCheckboxGroup\t1\nexperiment\t0\nmeasure\t0\ntf.idf\t1\nGeolocation\t0\nHarvesine\t0\ndistance.\t1\nstudying\t0\nSimilarity\t0\nprocede\t0\nIIUC\t0\nindexing\t0\nExtend\t0\nDefaultSimilarity\t1\nSimilarityDelegator\t1\npayloads\t0\nterm-specific\t0\nlat-long\t0\nSimilarity.setDefault(mySimilarity)\t1\ncorpus\t0\nSearcher\t0\nLucene\t0\npredict\t0\nprohibitive\t0\nnevertheless\t0\nMining\t0\nMassive\t0\nDatasets\t0\nmin\t0\nhashes\t0\nshingling\t0\nPatrick\t0\nGrant\t0\nIngersoll\t0\nDragons\t0\nCustomizing\t0\nfun\t0\nspatial\t0\npaper\t0\nfindability\t0\nrelevance\t0\n.svc\t1\nWebservice\t0\ncertficiate\t0\nWS\t0\nhttp://localhost/myws.svc/\t0\nWorks\t0\nhttps://localhost/myws.svc/\t1\nhttp://blogs.microsoft.co.il/blogs/shair/archive/2008/07/28/how-to-create-sql-server-management-studio-addin.aspx\t0\noutdated\t0\nhttp://jcooney.net/post/2007/11/26/The-Black-Art-of-Writing-a-SQL-Server-Management-Studio-2005-Add-In.aspx\t0\nSMSS2008r2\t1\nSSMS\t0\nnews\t0\nSSMS2008\t1\nAdd-In\t0\ndefbug\t0\nSSMS2012\t1\nssmsboost\t1\nwelcome\t0\nssms\t0\nMemento\t0\nPattern\t0\nbehavioural\t0\nshed\t0\nlight\t0\nroll-back/save\t0\nserialisation\t0\nbyte[]\t1\nreverting\t0\nserialised\t0\nConversely\t0\nUndo\t0\ntransforming\t0\n<select>\t1\nstd::condition_variable\t1\nspurious\t0\nwakeups\t0\nis_ready\t1\nnotify_one()\t1\nnotify_all())\t1\ncondition_variable\t1\nduration\t0\nreceiver\t0\nconsumer\t0\nnon-empty\t0\nget_from_queue\t1\nthe_queue.empty()\t1\nsimultaneously\t0\nreleasing\t0\nrace\t0\nwake\t0\nups\t0\natomic\t0\natomics\t0\npolling\t0\ncoded\t0\n99.6\t0\ninfinitely\t0\ninefficiency\t0\nvendor\t0\nought\t0\ngrins\t0\naugmented\t0\nwakeup\t0\ndemonstrate\t0\n5000\t0\nAutosuggestion\t0\nFilter\t0\nselect2.css\t1\nselect2.js\t1\njquery-2.1.1.js\t1\nfront-end\t0\nlimiting\t0\nFront-End\t0\nchallenge\t0\nhtml/css\t1\n50\t0\n<td>,\t1\n<th>\t1\nMAY\t0\ndifferently\t0\npowershell\t0\ncmdlet\t1\ncmdlets\t0\nadblock\t0\nAdblock\t0\nhttp://domain.com/ads/\t0\nAdBlock\t0\nFlash\t0\nembeds\t0\nroll-over\t0\nexpecially\t0\nembed\t0\nannounced\t0\navailability\t0\nDocumentDB\t0\ntransactional\t0\ntechnological\t0\nground\t0\nKnockBack\t0\ncomputed\t0\nunderlying\t0\nKnockout\t1\njsfiddles\t0\npreamble\t0\nKnockback\t1\nMVVM\t1\nVVM\t0\ndutifully\t0\nAlive\t0\npsql.exe\t1\nPGOPTIONS='-c\t1\ntcp_keepalives_idle\t1\ntcp_keepalives_interval\t1\ntcp_keepalives_count=10\t1\nreboot\t0\npsql\t1\nVacuum\t0\nCopy\t0\nJDBC\t0\nODBC\t0\nNpgSQL\t1\nDraft-JS\t0\nconsumption\t0\nUL\t1\nLI\t0\nTextarea\t1\nExporting\t0\nRedo\t0\nregenerate\t0\nYou.\t0\nfinance\t0\nbranch_master\t1\ncircumvented\t0\n@Thorsten\t0\ncircumvent\t0\nOverview\t0\nDB2\t0\nIBM\t0\nlogins\t0\ndebugged\t0\nknock-on\t0\ndisabling\t0\ninspection\t0\ninspected\t0\nTADOQuery.sql.add()\t1\nTADOQuery\t1\npropery\t0\nadoqry.sql.add\t1\nServer-SQL\t0\nRequests\t0\nPrepare\t0\nDescribe\t0\nadoqry.active\t1\nOpen/Describe\t0\nproof\t0\ntraced\t0\nsql.add()\t1\nConnectionString\t1\nADOQuery\t1\ncombines\t0\nundesirable\t0\ncredentials\t0\nSeparate\t0\nADOConnection\t1\nSpecify\t0\nADOQuery.Connection\t1\nAdditionally\t0\nADOConnection.Open\t1\nseparating\t0\nToday\t0\n87\t0\nBoy\t0\nclaimed\t0\nCP\t0\ncarry\t0\nborrow\t0\nconflict\t0\nSUB\t1\nZ80\t0\ntypo\t0\nmisunderstanding\t0\nADD\t1\ncomplement\t0\nGameBoy\t0\nSBC\t0\nSUB/SBC/CP\t1\nZ-80\t0\n8080\t0\nMAME\t0\nMESS\t0\necommerece\t0\nmagento\t0\ncountries\t0\nindia\t0\nsingapore\t0\nusa\t0\nshipping\t0\nregisterd\t0\nguest\t0\nAnybody\t0\nThanx\t0\nShipping\t0\nsystem->configuration->shipping\t0\nmethods->your\t1\nmethod->Ship\t0\nApplicable\t0\nCountries\t0\nShip\t0\nSpecific\t0\naviable\t0\nfeald\t1\nJsonResult\t1\nREMOVE\t0\nPropertyToNOTExpose\t1\nNewtonsoft.Json.Linq.JObject\t1\nJObject.Remove\t1\nScriptIgnore\t1\nJavaScriptSerializer\t1\nignored\t0\ndeserialization\t0\n<span>\t1\ndiminished\t0\nstylesheet\t0\nunadorned\t0\nbehaves\t0\nbroadcast\t0\nPeriodSender\t1\n.Dynamically\t0\nregistering\t0\nManifest\t0\nMyReceiver21\t1\nMY_ACTION1\t1\nbroadcasts\t0\nregisterReceiver()\t1\nMainActivity.onCreate()\t1\nBroadcastIntents\t1\nKivy\t1\nEarlier\t0\nwidget.pos\t1\nhero\t1\nFLoatLayout\t1\nFloatLayout\t1\nco-ordinates\t0\nhttp://kivy.org/docs/api-kivy.uix.relativelayout.html\t0\nPeace\t0\n8.2\t0\n2005\t0\nreferrer\t0\nadvertisement\t0\nwhoever\t0\nlowly\t0\nintern\t0\nvarchar(50)\t1\ntasked\t0\n31\t0\nadvisable\t0\nINET_ATON\t1\none-off\t0\nIPAddress\t1\nfrequent\t0\ncamera\t0\nCamera\t0\nRoll\t0\ncomplained\t0\nPhoto\t0\nAlbum\t0\npickup\t0\nsynced\t0\niTunes\t0\nALAssetsGroupLibrary\t1\nvariants\t0\nALAssetsGroupType\t1\nallAssets\t1\nallVideos\t1\nallPhotos\t1\nrack\t0\naap\t0\nnotified\t0\npuma\t0\nworkers\t0\nworker\t0\nhttps://devcenter.heroku.com/articles/ruby-websockets\t0\nSublimeREPl\t1\nSublimeREPL\t1\ninteractive\t0\nObjective-C\t0\nApples\t0\nNSMutableArray\t1\nobjectAtIndex:i\t1\nYet\t0\nclaiming\t0\nperforming\t0\nfrustrating\t0\nidiosyncrasies\t0\nObjective\t0\nborne\t0\nassistance\t0\nWalt\t0\nWilliams\t0\nPossibly\t0\ndot\t0\nWain\t0\ncomplaining\t0\nobjectAtIndex\t1\nflash\t0\nbuy\t0\nactiveden\t1\narabic\t0\ntextfield\t1\nrtl\t0\nTLFTextfield\t1\nTLFTextField\t1\nas3\t0\nBuild\t0\nTLF\t0\nfiltered\t0\n57\t0\ndisplay:none\t1\nnon-functional\t0\ndisables\t0\n1998\t0\ndangerously\t0\noccupied\t0\ndeallocated\t1\ninvalidate\t0\narraylist\t1\ncamel\t0\nuri\t0\nrecieved\t0\nheader.endpoints\t1\nrecipient\t1\nEIP\t0\nN+\t1\ndestinations\t0\nhttp://camel.apache.org/recipient-list.html\t0\ntoD\t0\n1.N\t1\nas-is\t0\ndestination\t0\nquads\t0\nshader\t0\nquad\t0\ncolored\t0\nflagged\t0\n50x50\t0\nfrag\t0\ntexture\t0\ntextures\t0\ncoordinated\t0\nvert\t0\nx1\t1\nyellow/green\t0\nDodd\t0\nscreen-space\t0\ncenters\t0\ngl_FragCoord\t1\nviewport\t1\nhalf-by-half\t0\nhalf-cut\t0\ninterpolant\t0\nvec2\t1\nquadCoord\t1\nvertexes\t0\nquadCoordIn\t1\nquadCoord.xy\t1\nArrayLists\t1\nachieving\t0\nclumsy\t0\nlists.\t0\npredictable\t0\nsophisticated\t0\napproaches\t0\nlineIsComment\t1\naddToList\t1\n<Integer>\t1\nNAnt\t0\ncheckout\t0\nNant\t1\ndefault.build\t1\nassembly\t0\nActionResult\t1\nGlobalFilterCollection\t1\nSystem.Web.Mvc.dll\t1\nSystem.Web.MVC\t1\nVS\t0\nSometimes\t0\ndefaul\t0\neverybody\t0\nAssemblies\t0\nfiles(x86)\t1\n-->\t1\nmsbuild\t0\nreferencing\t0\nhttp://www.microsoft.com/download/en/details.aspx?displaylang=en&id=4211\t0\nhttp://weblogs.asp.net/scottgu/archive/2011/05/03/asp-net-mvc-3-tools-update.aspx\t0\ntooling\t0\nimprovements\t0\nbinaries\t0\nallot\t0\nplagued\t0\nWorld\t0\nsupplied\t0\nappspot.com\t0\napp.yaml\t1\nmain.py\t1\nXAMPP\t1\nGAE\t0\nhttp://www.youtube.com/watch?v=IFuNNddWQIo\t0\ndoubts\t0\nif(\"status\".equalsIgnoreCase((nNode.getNodeName())))\t1\nnNode.setTextContent(\"2000000\")\t1\npreppend\t0\n<span>word</span>\t1\nasynchronously\t0\nnode.rendered\t1\nnode.childrenrendered\t1\nPretty\t0\nexcludes\t0\nArrays\t0\nJUST\t0\nexplosion\t0\nhitTestObject\t1\nExplosion\t1\nmovieclip\t1\nkeyframe\t0\nstop()\t1\n1009\t0\nremoves\t0\ntruly\t0\ngarbage\t0\ncollected\t0\nfair\t0\ncollector\t0\nAS3\t0\nGarbage\t0\nionic\t0\nboard\t0\nTabs.ts\t1\ntabs.html\t1\nhome.ts\t1\nhome.html\t1\ntrainning\t0\nyea\t0\ntabs.ts\t1\nthis.navCtrl.push(TrainingPage,this.token)\t1\nthis.navCtrl.select\t1\nthis.token\t1\nsearch/highlight\t0\nCGPDFScanner\t1\nPDFKitten\t0\nhints\t0\ntamarin\t0\n2.x\t0\nBeta\t0\nPaginator\t1\nIE9\t0\ndebuging\t0\nconclude\t0\nASPX\t0\nF12\t0\n<head>\t1\nInterface\t0\ncall.enqueue()\t1\nGlide\t1\nPissaco\t0\nquestuion\t0\nrepeatable\t0\nThats\t0\nmaterial\t0\nArticle\t0\nArticleType\t1\nfewer\t0\nContact\t0\nFirstName\t1\nLastName\t1\nbitten\t0\nprojections\t0\nTransformers.AliasToBean\t1\nprojection\t0\nDrive\t0\nResearch\t0\nonsubmit\t1\nrefreshes\t0\nminus\t0\nposts\t0\nHTML5\t0\nultimately\t0\nsentences\t0\nfilename\t0\ntime()\t1\nrand()\t1\ntempnam()\t1\nbanners\t0\nDefault\t0\nBanner\t1\nSelectable\t1\nselectable\t0\nSpecial\t0\ncarousel\t0\nselectablebanners\t1\nadvanced\t0\nselectedbanners\t1\nul\t0\n#sortable1\t1\ndefaultbanner\t1\nselectablebanner\t1\njsFiddle\t1\nwin32\t1\nvisual\t0\ncmd.exe\t1\ngoto\t0\nExternal\t0\nPowershell\t1\nStartup\t0\nmixing\t0\nsubsystem\t0\nofferring\t0\nconsuming\t0\nISE\t0\n-Oisin\t0\ncassandra\t0\nNode1\t1\nNode2\t1\nNode3\t1\nsync\t0\nnodetool\t1\nrebuild\t1\nreplication_factor\t1\n1.You\t0\ntopology\t0\n2.Your\t0\nSimple\t0\ndatacenter\t0\nSimpleStrategy\t1\nreplica\t0\npartitioner\t1\nAdditional\t0\nreplicas\t0\nclockwise\t0\nring\t0\nGo\t0\nhttps://docs.datastax.com/en/cassandra/3.0/cassandra/architecture/archDataDistributeReplication.html\t0\nretrieves\t0\nTodoItem\t1\nunnamed\t0\nchronologically\t0\nSorted\t0\nWhatever\t0\ntranslation\t0\nReminder\t0\nsortInPlace\t1\nsubtract\t0\nsubtracted\t0\nSubtracting\t0\nTimespan\t1\ndays/hours/mins/secs/milliseconds/ticks\t0\noccured\t0\nDateTimes\t1\nTimeSpan\t1\nprocedures\t0\nAddDays\t1\nSimilarlly\t0\nAddHours\t1\nAddMonths\t1\nAddMilliseconds\t1\nhttp://msdn.microsoft.com/en-us/library/system.datetime_members.aspx\t0\nplane\t0\nclustered\t0\noutliers\t0\nrectangular\t0\nvisiting\t0\nvisited\t0\nideal\t0\nminimize\t0\nunvisited\t0\nminimizing\t0\nFileHandlers\t1\nslowing\t0\npoll\t0\npreformatted\t0\nFileHandler\t1\nrealised\t0\nrun()\t1\npublish()\t1\nLogRecord\t1\ntraces\t0\nFormatter\t1\ncontinuing\t0\nAROUND\t0\njava.util.Logger\t1\nJDK\t0\nLogging\t0\nremarkable\t0\nasynchronous\t0\nNecessary\t0\nLog4j2.xml\t1\nloggign\t0\nSLF4J\t1\nintrusive\t0\nhttp://saltnlight5.blogspot.ca/2013/08/how-to-configure-slf4j-with-different.html\t0\nhttp://www.slf4j.org/manual.html\t0\nlogwriters\t1\nlevels\t0\nnon-blocking\t0\nlog(logLevel,\t1\nlogOrigin,\t1\nlogMessage)\t1\nhood\t0\nlogwriter\t0\nqueues\t0\nAVAssetReaderOutput\t1\nAVAsset\t1\nRemoteIO\t0\nAU\t0\nAudioOutputUnitStop\t1\nplayback\t0\nAudioOutputUnitStart\t1\ncopyNextSampleBuffer\t1\nAVAssetReader\t1\nAVAssetReaderStatusFailed\t1\nDomain\t0\nAVFoundationErrorDomain\t1\n-11847\t0\nOperation\t0\nInterrupted\t0\nUserInfo\t1\n0x1d8b6100\t1\nNSLocalizedRecoverySuggestion\t1\nStop\t0\nNSLocalizedDescription\t1\nInterrupted}\t1\nreinitialize\t0\nHoping\t0\nAVAssetReaders\t1\nsurvive\t0\nback.\t0\nNotes\t0\nentitled\t0\ninterruptions\t0\nAVAudioSession\t1\nAVAudioSessionDelegates\t1\nendInterruptionWithFlags\t1\nAudioPlayer\t1\nAudioReader\t1\nSetup\t0\nRender\t1\nRenderCallback\t1\nAVReader\t0\nunderpinnings\t0\nconnected/linked\t0\nwhatsoever\t0\nhibernate\t0\ndecides\t0\nforced\t0\nbeginBackgroundTaskWithName:expirationHandler\t1\ndevs\t0\nQA\t0\nexits\t0\nWILL\t0\nreader\t0\nreaderOutput\t1\nAVAssetReader.error.code\t1\nAVErrorOperationInterrupted\t1\ngapless\t0\nrecovery\t0\nencapsulated\t0\nseek\t0\nAVAssetReader.timeRange\t1\npresto\t0\nkAudioUnitRenderAction_OutputIsSilence\t1\nStarting\t0\nUnless\t0\nserious\t0\ninterruption\t0\nasset\t0\nlie\t0\nattack\t0\nAUGraph\t1\ntear\t0\nreconnect\t0\nReconnect\t0\nUsername\t0\nPassword\t0\nincorrect.\t0\npassword_verify\t1\n5.3.2\t0\nhence\t0\n$hashed\t1\npassword_hash\t1\n$password\t1\nPASSWORD_BCRYPT\t1\nextent\t0\npls\t0\nClojure\t0\nKoans\t0\nhttps://github.com/functional-koans/clojure-koans/blob/master/src/koans/10_lazy_sequences.clj\t0\nbuiltin\t0\n_\t0\nblanks\t0\nseq\t1\nparenthesis\t0\nRe-read\t0\nnth\t0\nsolves\t0\nkoan\t0\nAsking\t0\nfriend\t0\nsatisfactory\t0\nImage\t0\nLinq\t0\ninventive\t0\nMark\t0\n100.0\t0\noval\t0\npaintComponent\t1\nsoultions\t0\nRacerMain.java\t1\nDot.java\t1\nFlowLayout\t1\nrespects\t0\nDot\t0\ngetPreferredSize\t1\n#setVisible\t1\nTYIA\t0\nBefore\t0\nrestore\t0\nbackup\t0\n/bash_login\t1\n/.profile\t1\n/.bashrc\t1\n/bin/cat\t1\nproperly-speaking\t0\ndefaults\t1\ncom.apple.Terminal\t1\npath/to/saved.plist\t1\nruby\t0\nroleDefinitionBindings\t1\n:{\t1\n-2147024891\t1\nSystem.UnauthorizedAccessException\t1\nen-US\t1\ndenied\t0\n}}}\t1\ngetUserRole(appWeburl,\t1\nprincipalid,success,failed)\t1\n.ajax\t1\nappWeburl+\t1\n/_api/web/RoleAssignments\t1\n('\t1\nprincipalid\t1\n/roleDefinitionBindings\t1\napplication/json\t1\nodata\t1\nverbose\t0\nfunction(data)\t1\nSuccess\t1\ndata.d.results\t1\nFailed\t0\nfailed()\t1\nInstall\t0\nInfo\t0\nsonarqube-6.7.1\t1\nsonar-scanner-3.0.3.778\t0\nsonar-scanner-msbuild-4.0.2.892\t1\n14\t0\nKit\t0\n4.6.2\t0\nbatch\t0\nscan(sonar)\t0\nOur\t0\nBuild.bat\t1\nSonarQube\t1\nC:\\Program\t1\nFiles\t0\n\\Jenkins\\workspace\\CSS_SQ>exit\t1\nCSS_SQ\t1\nFiles(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\MSBuild.SonarQube.Runner.exe\"\t0\n/d:sonar.login\t1\n******\t0\n********\t0\nMSBuild\t1\n4.0.2\t0\nFiles(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml\t1\nLoading\t0\n\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml\t1\nPost-processing\t0\nsonar-properties\t1\n14:36:16.988\t1\nmarkdown\t0\n14:36:16.989\t1\nExit\t0\nERROR\t0\nExecution\t0\nFinished\t0\nFAILURE\t0\nAbout\t0\nPossible\t0\n.sonarqube\t0\n.sln\t0\ncd\t1\nOlder\t0\ninvestigated\t0\nSlave\t0\nyours\t0\n/d:sonar.verbose\t1\nsubfolders\t0\nC:\\Windows\t1\nJenkins\t0\nslave\t0\nagent\t0\nDFS\t0\narraylists\t1\nadjacency\t0\nGraph.txt\t1\nviz\t0\nviz[node]\t1\npop()\t1\nInteger\t1\n(array\t1\nstacks\t0\npeek()\t1\nStacks\t0\nfirst-in\t0\nlast-out\t0\npopping\t0\nPushing\t0\nCharlie\t0\nAdam\t0\nsqlite3\t1\nIntel-PIN\t0\nPinCRT\t0\nPin\t0\n_OS_RETURN_CODE\t1\ntens\t0\nGigabytes\t0\nunpack\t0\nsequentially\t0\nmmap\t1\nctypes\t0\nspecialized\t0\nCython-coded\t0\nFortran\t0\ninterfaced\t0\nhumongous\t0\npeculiar\t0\nintrinsically\t0\noffsets\t0\nusable\t0\ncompact\t0\nhandily-formatted\t1\nauxiliary\t0\nlengths\t0\ncompositions\t0\ngigabytes\t0\nEtc\t0\nGB\t0\nwow\t0\nthereof\t0\ngenerators\t0\ninput.txt\t1\nberry\t0\nberries\t0\nsimplistic\t0\nsays.\t0\noriginal.txt\t1\n-v\t1\nsed\t1\n-n\t1\nloganberry\t0\nstrawberries\t0\nSlider\t1\nemulation\t0\ntool-tips\t0\nIPhone\t0\ntouch\t0\n6s\t0\nremarable\t0\ntooltips\t0\ngwtbootstrap3\t1\ntip\t0\nlibrary.For\t0\npending\t0\nMyThreadYield\t1\nworkes\t0\ngetcontext(&(save.context))\t1\naddToQueue(save)\t1\nthread-safe\t0\nsuggests\t0\nmulti-threaded\t0\nremoveFromQueue()\t1\naddToQueue()\t1\nAside\t0\nrear\t0\nqueue[front]\t1\ngrow\t0\nindefinitely\t0\nbeyond\t0\nsegmentation\t0\nsuperficially\t0\nlong-term\t0\narray-based\t0\nterrible\t0\ninefficient\t0\nmodulo\t0\nahead\t0\ndisaster\t0\nDefinitely\t0\ntail\t0\nhttp://en.wikipedia.org/wiki/Queue_(abstract_data_type)#Queue_implementation\t0\ndestroyed\t0\nsubversion\t0\nsvn\t0\nrevisited\t0\nretract\t0\npropdel\t1\nsvn:ignore\t1\ningnores\t0\nConflict\t0\nmisinterpreting\t0\nJDT\t0\nAST\t0\nJAR\t0\n7+\t0\nJARs\t0\nNoClassDefFoundError\t1\nTrial\t0\nCtrl-T\t1\nview/locate\t0\nanalyzer\t0\nJarAnalyzer\t1\nJars\t0\ngraphical\t0\nFinding\t0\nunused\t0\njars\t0\nClassPathHelper\t1\nunresolved\t0\nidentifies\t0\norphan\t0\nobscured\t0\ninjection\t0\ninline-block\t1\n32%\t0\ntext-align\t1\ncenter\t0\ndiv-container\t1\npseudo\t0\nresizeFunction\t1\ndiv.content-wrapper\t1\ndisplay:inline-block\t1\ndiv.content\t1\nGreetz\t0\nFlex\t1\ncentered\t0\nflex\t1\nAdded\t0\nSomebody\t0\nsintaxys\t1\nHeadache\t0\n5.0.51b\t0\nInfinity\t0\nSiride\t0\nTRIGGUER\t1\nTRIGGER\t1\nsemi-colon\t0\nbugging\t0\nwordToDisplay\t1\ntextView\t1\nsetText();\t1\ntextview\t1\nandroid:id\t1\n@+\t1\nid/mytextview\t1\ntv\t1\n(TextView)findViewById(R.id.mytextview)\t1\ntv.setText(\"foo\")\t1\nSOAP\t0\nsecured\t0\nNTLM\t0\nauthenticate\t0\nWSDL\t0\nmaven-jaxb2-plugin\t1\njaxb2:generate\t1\nwsdl\t1\nRoute53\t0\ndelegation\t0\nsets.But\t0\ndomains\t0\ngonna\t0\nwirte\t0\ndoenst\t0\nlseek\t1\ninconsistently\t0\nleft-over\t0\nsyncfs\t1\nhard-coded\t0\nsuperfluous\t0\nstr\t1\npersonally\t0\nmain.cpp\t1\nmain.pro\t1\nPlayer\t0\nScore\t1\nrow+\t1\nPlayer1\t1\n____playerScore1\t1\nPlayer2\t1\n____playerScore2\t1\nPlayer3\t1\n____playerScore3\t1\n......\t1\nHarry\t0\nUITable\t1\nblog\t0\nCheckout\t0\nhttp://www.littlecomputers.net/2009/?page_id=549\t0\nhttp://www.icodeblog.com/2008/08/08/iphone-programming-tutorial-populating-uitableview-with-an-nsarray/\t0\nhttp://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html\t0\npasted\t0\nunderscore\t0\ne.gr\t1\nrationale\t0\nGuidelines\t0\nspecifies\t0\nguidelines\t0\nIntellisense\t0\nthis.variablename\t1\n_variablename\t1\nnote/label\t0\nwhen/if\t0\nfetched\t0\nmostUpTodateNewsItemsFromRealm\t1\nnumberOFChannelSubscribedToIs\t1\n.......\t1\nstucked\t0\nCause\t0\npivot\t0\ncouldn\t0\nt\t1\nCol5\t1\nOutPut\t0\ncycles\t0\ncol6\t1\nbelongs\t0\ncol5\t1\nincreasing\t0\nclearer\t0\ncol3\t1\nCol4\t1\n****\t0\ncomments*******\t0\nProvided\t0\n*Query\t1\nCycle\t0\nOUTPUT\t0\nSelectQuery\t1\npredicates.\t1\nwhitespace\t1\nbuilding.\t0\npredicate\t0\naddConditions\t1\noverloaded\t0\n[Collection\t1\nConditions\t0\nmylist\t1\n.i\t0\nprintList()\t1\nworking.how\t0\nNode\t0\nNodes\t0\ndocument.createTextNode()\t1\ndocument.appendChild()\t1\ndocument.write\t1\nSecondly\t0\nappendChild\t1\ndocument.createTextNode\t1\nepisode\t0\nshades\t0\n@DonJuwe\t0\nhttp://jsbin.com/xakifequ/1/edit\t0\nJSBin\t0\n.html-file\t1\nUrls\t0\n//code.jquery.com/jquery\t0\n-1.9.1.js\t1\nfile://\t1\nachieved\t0\nhttp://localhost/yourfile.html\t0\nhttp://\t0\n:D\t0\ntext-editor\t0\nsyntax-coloring\t0\nFile/Open\t0\n.pdb\t1\npdb\t0\nRelease\t0\nPrior\t0\nPDB\t0\nFile->Open\t1\nreflector\t0\ninterrupted\t0\nstatic_assert\t1\ncompilation\t0\nconstexpr\t1\nSIZE_MAX\t1\n<stdint.h>\t1\nsize_t(-1)\t1\nhttp://en.cppreference.com/w/cpp/types/climits\t0\nSurveys\t0\nrequest_id\t1\nsurveys\t0\nExecuting\t0\nto_json\t1\nadvertised\t0\n150\t0\nyou''ll\t1\nowns\t0\nsurvey\t0\nConsumer\t0\nlegged\t0\nprompt\t0\nnon-service\t0\nhttps://developers.google.com/identity/protocols/OAuth2WebServer\t0\ncredential\t0\n./example_client.py\t1\n--client_secrets_file\t1\nlocalhost:8080\t1\n2004-03-01-22.58.00.912933\t0\nOthers\t0\ndealt\t0\nf1\t0\nfractions\t0\nmusic\t0\nSpotify\t0\nspotify\t0\nnumbers/urls\t0\nscrape\t0\nunmanageable\t0\nimportantly\t0\nscraping\t0\ncatalog\t0\nTerms\t0\nuser-supplied\t0\np+1\t1\n=p\t1\nch>='a'\t1\nch='z'\t1\nif()\t1\nha\t0\nforgot\t0\nthen(<)\t1\nch<='z'\t1\nLHS\t0\nlvalue\t1\nRHS\t0\nlavalue\t0\ndrop-down\t0\npreviously\t0\nselected/clicked\t0\nTHANKS\t0\ngrid_filename\t1\nvalgrind\t1\ntcp\t0\nValgrind\t0\npositives\t0\nsuppress\t0\nreview\t0\nstare\t0\nwalk\t0\ntoolbox\t0\nefficiently\t0\nproducing\t0\n.cgi\t1\nindex.cgi\t1\nevrything\t0\ncorectly\t0\n:/\t0\ndisconnect\t0\n<3\t0\n:')\t0\ninsecure\t0\nHTML::Template\t1\nsessions\t0\ncgi\t0\noccurrence\t0\ncygwin\t1\n46\t0\npipe\t0\nMenu\t0\nstyled\t0\nIDE\t0\nContextMenu.Resources\t1\nContextMenu\t1\nRachel\t0\nSeparator\t1\nStyle\t0\nthird-party\t0\ndiffer\t0\nserialization\t0\nparses\t0\noperands\t0\narguement\t0\naccorind\t0\n1+5+\t0\nvarargs\t1\nStringTokenizer\t1\nOpenTok\t0\nWebRTC\t0\nFlash-based\t0\nTB.min.js\t1\nfall\t0\n0.9\t0\ninteroperate\t0\nI.e\t0\nChromes\t0\n2.0/WebRTC\t1\n0.9/Flash\t0\nFrame\t0\nIE6+\t0\nactively\t0\n23+\t0\n22+\t0\noperate\t0\nChrome/Firefox\t0\nmigrate\t0\nmedium-sized\t0\nNuke\t0\n2000\t0\nWordPress\t0\nredirection\t0\nnuke\t1\nNews\t0\nhtaccess\t0\npandas\t0\nequation\t0\nrow-by-row\t0\ncoefficients\t0\nexecutable\t0\nsympy.sympify()\t1\ndataFrame\t1\noutPut\t0\nDF\t0\nsympify()\t1\nElaborating\t0\nlambdify\t1\nsympy\t1\nindustry\t0\nindustry.rb\t1\n:sector\t1\nindustries\t0\nalphabetically\t0\noptions_from_collection_for_select\t1\nvalue_method\t1\ntext_method\t1\naltera\t0\nDE0\t0\nDE2\t0\nDE1-SoC\t0\nboards\t0\nisa\t0\nnios\t0\nII\t0\ntest-and-set\t0\nISA\t0\nenforces\t0\nmutual\t0\nexclusion\t0\ntiny\t0\nmain()\t1\nInterrupt\t0\nRoutine\t0\nlocks\t0\nNios\t0\narchitecture\t0\nprocessors\t0\nHardware\t0\nMutex\t0\nperipheral\t0\ntest-and-test\t0\nAltera\t0\nMultiprocessor\t0\nrespect\t0\ninterrupts\t0\nClientConfigurationFactory\t1\ncom.amazonaws.ClientConfigurationFactory\t1\naws-java-sdk-core\t1\n//i2cjni.java\t1\n//i2c.java\t1\n//I2CBoard.java\t1\n-when\t0\nU2C_GetDeviceCount()\t1\n.c\t0\nCoffeScript\t0\nwebService.coffe\t1\nsimplificated\t0\n_Class.logout\t1\nhandleResult\t1\n102\t0\nwebService.coffee\t1\nhi\t0\narrayContactsFromAddressbook\t1\nschemaLocation\t1\nxml-file\t0\nxsd-File\t1\nXSLT\t0\nxmlns\t1\nhttp://www.w3schools.com\t0\nschool/personen/person\t1\nXSLT/XPath\t1\nxpath-default-namespace\t1\nxmlns:df\t1\ndf:school/df:personen/df:person\t1\ndf:name\t1\nWSO2\t0\nBAM\t0\nmediator\t0\nPayload\t0\ncapital\t0\nPascalCase\t1\ntoday\t0\nPoint\t1\nPrompt\t0\nPoints\t0\noriginal_points\t1\nskipping\t0\n99\t0\npush_back()\t1\noccurred\t0\nP\t0\noperator>>(...)\t1\njump\t0\np.x\t1\np.y\t1\nskip_to_character(...)\t1\ninitializing\t0\ndlopen/dlsym\t1\n.so(dlclose)\t1\ntransfer\t0\n.so\t0\nnc\t0\nsegv\t0\nrpm\t0\nyum\t0\nXXX\t0\nmain.js\t1\nShared\t1\n../shared/index\t1\nloaders\t0\ntransform-runtime\t0\nCol\t0\n18.2\t0\n10/29\t0\n11/15\t0\nvarchar\t1\npresentation\t0\nsubstring\t0\nOP\t0\nSwipe\t0\nbrowsed\t0\nTouchAction\t1\nAppium\t0\n1.4.13\t0\nDraco\t0\n//Method\t1\ndriver.swipe(startingXCoordinate,StartingYCoordinate,EndXCoordinate,EndYCoordinate,timeForSwipe)\t1\n100th\t0\n450th\t0\ncoordinate.that\t1\nmilliseconds\t0\nhttp://imgur.com/qBGvP\t0\nmonospace\t0\npixel-for-pixel\t0\nprimitive\t0\nOCR\t0\nUserRoles\t1\nseparated\t0\nWebForm_FireDefaultButton\t1\ntextbox1.Focus()\t1\nwebresource.axd\t1\ninaccessible\t0\nFirewall\t0\npolicy\t0\nISAPI\t1\nhttp://dormfair.com/about.php\t0\n#B7DDF2\t1\ngrey\t0\nStackOverflow\t1\n.ui-widget-content\t1\njquery-ui.css\t1\n1px\t1\nnav\t0\n.ui-menu\t1\nui-widget\t1\nui-widget-content\t1\nui-corner-all\t1\nmouseup\t1\nonBlur\t1\nclicked/has\t0\nonCLick\t1\nOnClick\t1\nOnBlur\t1\nonClick\t0\ndebuggers\t0\nbreakpoint\t0\nmouseUp\t1\nhttp://jsfiddle.net/alaa13212/Gs5Y2/\t0\nblur\t0\nfocusout\t1\ntabindex\t1\nfocusable\t1\ncontact-us\t0\nUs\t0\nInitially\t0\ntoggle()\t1\ndiv>s\t1\nhttp://jsfiddle.net/8wbXV/\t0\n$('a')\t1\nillustration\t0\nUeditor\t0\nflip\t0\nLine\t0\njWysiwyg\t0\nText\t0\nWeird\t0\nknew\t0\ngrips\t0\nAutofac\t1\nGuice\t0\nannotations/ways\t0\nconstructors\t0\nautofac\t0\nMessageBox\t1\nWindow\t0\nShowDialog()\t1\nSystem.Windows.MessageBox.Show()\t1\nhttps://stackoverflow.com/a/20098381/2190520\t0\nstand\t0\n1-2\t0\nLogCat\t0\nconnection.disconnect()\t1\nUPDATE1\t0\n$.post{}\t1\nalert(data)\t1\ndisplaying.\t0\nerror_reporting(E_ALL)\t1\ndeliberately\t0\nupcoming\t0\nbirthdays\t0\npulled\t0\nbirthday\t0\nFacebook\t0\nprivacy\t0\nMM/dd\t1\ndateFormatterWithFormat\t1\nNSDateFormatter\t1\ndifference.day\t1\ndancing\t0\nNSDate\t1\nrip\t0\nassemble\t0\nnoon\t0\n23:00:00\t1\n00:00:00\t1\ntomorrow\t0\narrangement\t0\nslice\t0\nbirthdayComponents\t1\nrefactor\t0\nES5\t0\nprototype\t0\nbabel\t0\ntranspile\t0\nprimer\t0\nES2015\t0\nES6\t0\nprototypes\t0\nsetTimeout()\t1\n200ms\t0\nSalty\t0\njeroen\t0\nhardcoded\t0\nwysiwyg\t0\npostContentClr\t1\nhtml()\t1\nFigured\t0\nJitter\t0\npreloading\t0\noverlooking\t0\nMemSQL\t0\nanalytical\t0\nMySQL-compatible\t1\nrowstores\t0\nPostgres\t0\nhttps://github.com/the4thdoctor/pg_chameleon\t0\nadapted\t0\nshovel\t0\nNOTIFY/LISTEN\t0\nWinSCP\t0\nhttp://winscp.net/eng/index.php\t0\nfantastic\t0\nubuntu\t0\nputty\t0\nsudo\t1\nwinscp\t1\nsuperuser\t0\nunpacked\t0\ngetPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionCode\t1\ngetPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionName\t1\nassets/\t0\ngetAssets()\t1\n360\t0\ndegrees\t0\npanorama\t0\ncube\t0\nlatitude-longitude\t1\nskybox\t0\nskyboxes\t0\nplanned\t0\nstreetview\t0\nDesperately\t0\nashamed\t0\nExt.js\t1\nmy.items.push\t1\nMixedCollection\t1\ninitComponent\t1\nExt.apply\t1\nnvarchar(MAX)\t1\ndatetime\t1\n2016-04-15\t1\n13:30:00.000\t1\n>>\t1\nHERE\t0\nworkbook\t0\nInvalidOperationException\t1\nSequence\t0\nStandard\t0\nJeffN825\t0\nHV\t0\nM2\t0\nCB\t0\nsheet2\t1\nsheet3\t1\nsheet4\t1\nsheet5\t1\n161\t0\nPackagePart\t1\ndamn\t0\n.Single()\t1\nFirstOrDefault()\t1\nnon-LINQ\t0\nreplacing\t0\n.FirstOrDefault()\t1\nhttp/2\t0\nreachable\t0\n443\t0\nwebserver\t0\nloadbalancer\t1\nforwarding\t0\nHTTP/2\t0\nProxyPass\t1\nmod_proxy_http\t1\nwebservers/loadbalancers\t1\nNginx\t0\nHTTP/1.1\t0\nHTTP2\t0\nnginx\t0\nJson.net\t1\nJsonTextReader\t1\njson.net\t1\nhttp://pastebin.com/DbSDVt2K\t0\nStreamReader\t1\nTextReader\t1\nhttp://pastebin.com/iwF3xuUp\t0\nmyString\t1\nreader.ReadAsString()\t1\nUnexpected\t0\nStartArray\t1\nDeserialize\t1\nJsonConvert\t1\nJson\t1\nDeserialze\t1\nspecifiy\t0\nJsonReader\t1\nJObject\t1\nJToken.CreateReader\t1\nNewtonsoft\t1\nreq.isAuthenticated()\t1\nreq.user\t1\nIDispatch\t1\nIMyInterface\t1\nInterfaceType(ComInterfaceType.InterfaceIsIDispatch)\t1\nworksheet_change\t1\nworksheet\t0\nSheet1\t1\nG8\t1\nbeleive\t0\nsheet4.conditions\t1\nAwesome\t0\nhorizontally\t0\nhttps://jsfiddle.net/b1rw80jz/1/\t0\nflex-box\t1\n+CSS\t0\n+HTML\t0\npseudo-elements::before\t1\nbell\t0\nhttps://jsfiddle.net/b1rw80jz/6/\t0\nwalkthrough\t0\nComponentGroup\t1\nWiX\t0\n3.10\t0\nComponent\t0\nThink\t0\nComponents\t1\nskill\t0\nBeginner\t0\nwpf\t1\nDell\t0\nVenue\t0\nPro\t0\ntablet\t0\ncellular\t0\ntriangulation\t0\ncoordinates(latitude/longitude)\t0\nGPS\t0\nlat/lon\t0\nreceiving\t0\ntower\t0\nNaN\t0\ncontinous\t0\nTryStart\t1\nsynchronously\t0\nisChecked()\t1\nDeprecated\t0\nUiAutomator\t1\nmathod\t0\nuiobject\t1\ngetValue()\t1\ngetValue\t1\nnotavaible\t0\nUIObject\t1\ncheckable'=>true\t1\nCheckedTextView\t1\nisChecked()\"\t1\nsuspiciously\t0\nhttp://developer.android.com/reference/android/widget/CheckedTextView.html#isChecked()\t0\nApplescript\t0\nAppleScript\t0\nproperty-value\t1\nOpening\t0\nrecompiling\t0\nresets\t0\nhttp://blueflame-software.com/using-highcharts-with-codeigniter/\t0\npositive\t0\nhttps://blueflame-software.com/using-highcharts-with-codeigniter/\t0\nSoundCloud\t0\n<error>401\t1\nUnauthorized</error>\t1\nhttp://api.soundcloud.com/tracks?client_id=xxxx&q=punk\t0\ndisregard\t0\nlisting\t0\n401\t0\ncurl\t0\nhttps://api.soundcloud.com/tracks?q=track&client_id=aeb03ac55f278fc7e579c744144b1d5d\t0\nquerystring\t1\ndiffering\t0\nwell.Thanks\t1\nz\t0\nimplicit\t0\n@alphabets\t1\nxyz\t1\nStructure\t0\njsx\t0\nCommand\t0\n--out-dir\t1\ndevDependencies\t1\nlegitimate\t0\nRealized\t0\nsimplified\t0\nbabel.rc\t1\naginst\t0\nAttribute\t0\nlookups\t0\nStatic\t0\ninclined\t0\ncleaner\t0\nsenior\t0\nturning\t0\nnose\t0\nOption\t0\nAttributes\t0\nintegral\t0\nUsage\t0\nmere\t0\ntechnicality\t0\nAttributeManager\t1\nease\t0\nslowly\t0\nmigrating\t0\ntracked\t0\nAdministrator\t0\nadmin\t0\n\\Administrator\t0\nidentifier\t0\nMakes\t0\nlogged-in\t0\nlaptops\t0\nsynchronizing\t0\nWebService\t1\nMule\t0\n3.1.0\t0\nfooImpl\t1\nstacktrace\t1\nvomited\t0\nmule\t0\nstdout\t1\nExceptionTransformer\t1\ndefault-exception-strategy\t1\n<custom-exception-strategy\t1\nclass=\"com.arcusys.nkeservice.mule.dynasty.ExceptionTest\">\t1\nExceptionTest\t1\n@override\t1\nhandleException\t1\nCXF\t0\n3.1.3\t0\nhttp://mule.1045714.n5.nabble.com/mule-scm-mule-22344-branches-mule-3-1-x-modules-cxf-src-test-resources-EE-2273-td4557349.html\t0\nEE-2273\t0\nhttp://www.mulesoft.org/documentation/display/current/Mule+ESB+3.1.3+Release+Notes\t0\n<Item>\t1\nset()\t1\nsetID()\t1\nistringstream\t1\nifstream\t1\ninput(file_name)\t1\nconsecutive\t0\npython-markdown\t0\ncleanest\t0\nsad\t0\nweights\t0\nArrayAdapter\t1\ninadvertantly\t0\ntextviews\t1\nrecycled\t0\nAbsListAdapter\t1\nCoreHourID\t1\nexplaining\t0\nEntry\t0\nHour\t1\nemployees\t0\nWorkingFromHome\t1\nEmployeeNumber\t1\nJustifyDate\t1\nEntryDate\t1\nInHour\t1\nCoreHour\t1\nEntryID\t1\nOutHour\t1\nemployee\t0\ncomments/questions\t0\ngladly\t0\nRevised\t0\nArbitraryText\t1\nExecuteQuery\t1\nignores\t0\nColumnAttribute\t1\nDataContext.ExecuteQuery\t1\nPOCO\t0\nLINQ-mapped\t0\naggregate\t0\nsub-optimal\t0\ngrungy\t0\nmarry\t0\nUDF\t0\ncomment-id\t0\nthings.\t0\nside-step\t0\nCent\t0\nsudoers\t0\nworkflow\t0\nWork\t0\nre-base\t0\nRe-base\t0\nwells\t0\nfeature2\t1\n<branch>\t1\nbalancer\t0\nregional\t0\nIPs\t0\n.mp3\t1\nDSX\t0\nMusic\t0\nInformation\t0\nRetrieval\t0\nlibrosa\t0\nabsence\t0\nffmpeg\t0\nwalk-around\t0\nnotebook\t0\n--user\t1\nrequest/idea\t0\nhttps://ibmwatsondataplatform.ideas.aha.io/?category=6441922592725708622\t0\nCharles\t0\nfellow\t0\nProgrammers\t0\nWordpress\t0\nTypo3\t0\nsidebars\t0\nWP\t0\nfunctions.php\t1\nbio\t0\nindex.php\t1\nfooter.php\t1\nProblems\t0\nContent\t0\nthemes\t0\nwp-content/debug.log\t1\nwp-config.php\t1\nsKylo\t0\n%d\t1\ndecimals\t0\ncodex\t0\nregister_sidebars\t1\nSidebar-1\t1\nSidebar-2\t0\nSidebar-3\t1\nhighest\t0\nRandom\t0\nrand\t1\nRandom()\t1\nrand.Next()%15\t1\n-12\t0\nrand.Next()\t1\nhttps://math.stackexchange.com/questions/519845/modulo-of-a-negative-number\t1\n14}\t1\nattention\t0\n\"rand.Next()\t1\n\"rand.Next(15)\"\t1\nrand.Next(minValue,maxValue)\t1\nminValue\t1\ninclusive\t0\nmaxValue\t1\n4.1\t0\ncode-first\t0\nthousands\t0\nSeveral\t0\nGridRow\t1\nimplied\t0\nModify\t0\npersisted\t0\noccasion\t0\nlong-running\t0\nDbContext\t1\nSaveChanges()\t1\nlegwork\t0\noptimal\t0\nnotably\t0\nunit-of-work\t0\nherself\t0\nwins\t0\nsimplicity\t0\nnudge\t0\nwishy-washy\t0\nfundamental\t0\nliving\t0\nimprecise\t0\nEDIT1\t0\nexistance\t0\nDbSet\t1\n<>\t1\ninvites\t0\nindefinate\t0\nodds\t0\ndisconnected\t0\noccaisionally\t0\nshe\t0\nTrigger\t0\nedits\t0\ndispose\t0\nunsaved\t0\nSync\t1\ndraggable\t1\nboundaries\t0\nVisualTreeHelper.FindElementsInHostCoordinates\t1\nTransformToVisual\t1\ncorners\t0\ndragged\t0\nmousemove\t1\neventhandler\t1\nClip\t0\nshortcuts\t0\nwebcam\t0\nx264\t0\ncodec\t0\npoping\t0\nVirtualDub\t1\nHack\t0\ndub\t0\nlatency\t0\nemgu\t1\nfourcc\t0\nx264wfv\t1\n.content\t1\n.nav-wrapper\t1\nprocedural\t0\nTOP\t0\nspecifics\t0\nes6\t0\nsyntax.Either\t0\ntranspiler(Babel)\t1\nNeo4J\t0\nevaluator\t0\nrelationships\t0\nwalked\t0\nevaluation\t0\nmaintains\t0\ncandidate\t0\nbegins\t0\nremaining\t0\nA-D\t0\nA-B\t1\nB-C\t0\nD-E\t0\ndetermination\t0\nTraversalDescription\t1\nPaths\t0\nprimary\t0\ncomplaint\t0\nRELATIONSHIP_GLOBAL\t1\nguaranteeing\t0\nbroadly\t0\ntraversers\t0\ntend\t0\ntermination\t0\nPyQt\t0\nbear\t0\n.py\t1\nhate\t0\nekhumoro\t0\npyuic\t1\nimports\t0\nexample_rc\t1\nlowers\t0\nproductivity\t0\n.ui\t0\nui\t1\nuic.loadUi('example.ui')\t1\nui.setupUi()\t1\nordinary\t0\nQMainWindow\t1\nQDialog\t1\nQWidget\t1\nsetupUi\t1\nMainWindow\t1\nUi_MainWindow\t1\nTake\t0\nO(n^2)\t0\nexamining\t0\nproving\t0\nn^2\t1\nO(n^3)\t1\ninverse\t0\nsubsection\t0\nquadratic\t0\nO(n2))\t0\nproven\t0\ndominant\t0\nApart\t0\nn-1\t1\nO(n)\t1\nt_j\t1\ndecrementing\t1\nsumming\t0\npaying\t0\nn+1\t0\ndividing\t0\nwolfram\t0\n/2\t0\ndominate\t0\nblacberry\t0\nVOIP\t0\ndelivering\t0\nopensource\t0\nByteArrayOutputStream\t1\ndataOut\t1\nRTP\t0\nlower-case\t0\nupper-case\t0\nawk\t1\nwords\t0\napproximate\t0\nQuadratic\t0\nBSpline\t0\nCurve\t0\nB-spline\t1\ncurve\t0\nfitting\t0\nadaptive\t0\nrefinement\t0\nPark\t0\nLee\t0\nFair\t0\ninterpolation\t0\nB-splines\t0\nenergy\t0\nminimization\t0\nVassilev\t0\nConverting\t0\ncurvature\t0\n1.6\t0\ntrunk\t0\n30000\t0\n/trunk\t1\nsubdirectory\t0\nsub-folders\t0\n30,000\t0\nnoticeable\t0\nSSD\t0\nnetworked\t0\nLC3\t0\ndevides\t0\nremainder\t0\nR0.In\t0\nR1\t0\n0.Else\t0\nbeginner.Could\t1\n#25\t0\nmessage.Thank\t0\nASP.Net\t1\nunauthorized\t0\npersons\t0\ndetaisl\t0\nvalidated\t0\nOOP\t0\nmanagement\t0\ninteraction\t0\n....\t0\ncolossal\t0\nmassive\t0\nknees\t0\nlack-of-scalability\t0\ntransactions\t0\nDataTables\t1\nnifty\t0\ncomfortable\t0\nsuffice\t0\nagnostic\t0\nhurry\t0\nton\t0\nhands\t0\njudicious\t0\nmotion\t0\nadage\t0\n20%\t1\nNail\t0\ncleanly\t0\ntown\t0\nflashy\t0\nfluff\t0\nIS\t0\nEXT.JS\t0\n1.8\t0\nREE\t0\nFixnum\t1\nCalling\t0\nobject-oriented\t0\nreceiver(!)\t0\nsymmetry\t0\nbroken\t0\nNumeric\t0\nQuaternion\t1\nQuaternions\t1\nthoughtful\t0\nFixnums\t0\nFixnum#\t1\nreverses\t0\nsubtyping\t0\nsubclassing\t0\nunderstands\t0\nviolates\t0\nlose\t0\nRope\t0\nto_str\t1\nIS-A\t1\nString#\t1\nstring-like\t0\nPeople\t0\nagree\t0\ncomplications\t0\nMutable\t0\nmoments\t0\nsymmetric\t0\nstdlib\t0\nartifact\t0\nsubclasses\t0\nformal\t0\ndouble-dispatch\t0\ncoerce\t0\nIOW\t0\n#coerce\t1\nQuaternion.new(2,0,0,0)\t1\nQuaternion.new(1,0,0,0)\t1\nFixnum#+\t1\nequivalence\t0\n#equal\t1\n#eql\t1\n#\t0\n#hash\t1\nMindful\t0\nequips\t0\nher\t0\nGoing\t0\n#<=>\t1\nthree-way\t0\nmethod,\t1\nComparable\t1\nmodule,\t1\n#==,\t1\n#<,\t1\n#>\t1\n#sort\t1\noperator-like\t0\nmindful\t0\nexistence\t0\nundergoing\t0\nFormCollection\t1\nHTTPPost\t1\ndecorated\t0\ncontroller.There\t0\nhttp://tutorial.techaltum.com/Form-collection-in-MVC.html\t0\nhttp://www.c-sharpcorner.com/UploadFile/dacca2/understand-formcollection-in-mvc-controller/\t0\nFollow\t0\nexoplayer\t0\nAMR\t0\nFFmpeg\t0\nExtension\t0\naar\t0\nextension-ffmpeg-debug.arr\t1\nloosely\t0\nlumping\t0\nMyAllIncludingEnumType\t1\nStrings\t0\nrawValues\t1\nAnyObject\t1\n.rawValue\t1\nship\t0\nGM\t0\nKametrixom\t0\nenums\t1\nconform\t0\nRawRepresentable\t1\napproval\t0\napproved\t0\napprover\t0\nOffer\t0\nDetail\t0\nfinds\t0\naudit\t0\ncolum\t0\naligned\t0\nsit\t0\n.Parent\t1\n#main\t1\nDiv\t0\nrecognise\t0\nstrech\t0\nDave\t0\nbehaving\t0\nexpand\t0\nfloated\t0\nexplanations\t0\noverflow:hidden\t1\noptionall\t0\nclear:both\t1\nCapabilitie\t1\nEN\t0\nENGLISH\t0\nCentos\t0\niptables\t1\nfirewall\t0\nPrtg\t0\nSolarwinds\t0\nOpmanger\t0\nMonitor\t0\nLinuxScript\t1\nthwack\t0\nstart.js\t1\nurls.py\t1\ndiv_val\t1\nrefering\t0\nleas\t0\nrender()\t1\nRest\t0\nReact\t0\nhttps://medium.com/@adamzerner/client-side-rendering-vs-server-side-rendering-a32d2cf3bfcc\t0\nEmployees\t0\nprofile.html\t1\n$_SESSION\t1\nprofile.php\t1\n.php\t1\ninterpreter\t0\n.html\t1\nsurrounded\t0\nconst\t1\nterminate\t0\nthrew\t0\ndecays\t0\nchar*\t1\nstd::exception\t1\nchapter\t0\nmeantime\t0\nsuper-FAQ\t0\nyou/\t0\nC-string\t1\nchar[13]\t1\nC-Arrays\t0\ndecay\t0\npredefined\t0\n<stdexcept>\t1\nstd::logic_error\t1\nstd::range_error\t1\nstd::bad_alloc\t1\nTheir\t0\ncaught\t0\nso-called\t0\nunwinding\t0\nrethrow\t0\nstd::terminate()\t1\naborted\t0\ntry/catch\t0\nCases\t0\ntreatment\t0\nrealistically\t0\nexceptional\t0\ncatch(...)\t1\n//..\t1\nFAQ\t0\nerrno\t0\nthrow/catch\t0\nprocess_several_files()\t1\nnon-cacheable\t0\nDRAM\t0\nkmalloc()\t1\nget_free_pages\t1\nvmalloc\t1\ndrivers/char/mem.c\t1\nChapter\t0\nDevice\t0\nDrivers\t0\nEdition\t0\npie\t0\nchart.js\t1\nanyway\t0\npro\t0\ngraphs\t0\ndynamics\t0\nObserver\t1\nBeautiful\t1\nSoup\t1\nbs4/__init__.py\t1\n219\t0\nReasons\t0\npromote\t0\nWarnings\t0\nExceptions\t1\nwarnings.simplefilter\t1\nwarnings.filterwarnings\t1\ntraceback\t1\nPythons\t0\npdbs\t0\npost-mortem\t0\ndig\t0\n-W\t1\nconvenience\t0\nUSER_SITE\t1\nsite._script()\"\t1\nusercustomize.py\t1\nCredits\t0\nLets\t0\ndatetimes\t1\n2013-07-22\t1\n2013-07-28\t1\n2013-07-23\t1\n2013-07-24\t1\n2013-07-25\t1\n2013-07-26\t1\n2013-07-27\t1\nRequire\t0\n$interval\t1\n3.\t0\n$period\t1\nLikewise\t0\npoof\t0\nGone\t0\nCODEPEN\t0\nuiGmapgoogle-maps\t1\ndependecies\t1\nLinks\t0\ndata-binding\t0\nng-href\t1\nhref\t1\npreparation\t0\nJhon\t0\nPapa\t0\nngRepeat\t1\nhttp://codepen.io/anon/pen/BKLdyP?editors=1011\t0\nAFIK\t0\nwhite/blank\t0\nsine\t0\nwave\t0\naxes\t0\n$('#my_id')\t1\n.on\t1\n'page\t1\n.dt\t1\nfunction()\t1\nperPageFunctionCall()\t1\n;})\t1\n.dataTable(soonansoforth)\t1\nredisplays\t0\ntrip\t0\nsubsequent\t0\ntrips\t0\nsomeway\t0\nmanipulation\t0\nresp\t1\nfavorite\t0\nalerted\t0\nassociative\t0\nuser_id\t1\nforum_id\t1\nuser_forum_subscriptions\t1\nforum.users\t1\nSubscription\t1\nsubscriptions\t0\nhave_many\t1\nadded/removed/edited\t0\nMichael\t0\nHartl\t0\nestablish\t0\ntwitter-like\t0\ngrade_id\t1\nwhereLoose()\t1\nwhere()\t1\nInt\t1\nactivates\t0\nrobotic\t0\narm\t0\nrobot\t0\n..//../Karel/RIGHT1\t0\nrightmanual.stm\t1\nimage/button\t0\nonegrey.jpg\t1\nbtnRedirect\t1\n:P\t0\nTimerTask\t1\nstandby\t0\nPartial\t1\nWake\t0\nLock\t1\nTried\t0\nWakeLock\t1\ntask/runnable\t0\nasynctask\t1\nwakelock\t1\nonCreate\t1\nconsole.log(e)\t1\ndone()\t1\nassert\t0\nextern\t1\nkernel.s\t1\nSignalR\t1\nSelf\t0\nHosted\t0\n2.2.0\t1\nSilverlight\t0\nClient\t0\nConnection\t0\nHub\t0\n28-30\t0\nsecs\t0\nAbort\t0\nunblocked\t0\nTask.Factory.StartNew\t1\n(()\t1\nhubConnection.Stop());)\t1\nTL\t0\n;D\t0\nhttps://github.com/SignalR/SignalR/issues/3102\t0\nhub\t0\nThreading\t0\nacknowledgement\t0\nPhantomJS\t0\nheadless\t0\nWebdriver\t0\nscrolls\t0\ndropUp\t0\nmenu_tab\t1\nstays\t0\nTIA\t0\nclearTimeout()\t1\nisn't\t0\nhttp://jsfiddle.net/YFPey/\t0\nSolidus\t0\necommerce\t0\nUK\t0\nZip\t0\nPost\t0\nlocalization\t0\nforked\t0\nSpree\t0\ntranslate\t0\nlocale\t0\ninternationalization\t0\nsolidus_i18n\t1\nInstallation\t0\nInstructions\t0\nreadme\t1\nconfig/initializers/spree.rb\t1\nInternationalization\t0\ndocumenation\t0\ndialogueService\t1\nDialogue.component.ts\t1\nDialogue.component.spec.ts\t1\ntextbox\t0\nawesome\t0\nCancel\t0\n#myDiv\t1\n$myDialog\t1\nautoOpen\t1\nover-ride\t0\njquery.ui.theme.css\t1\n.ui-state-default\t1\n.ui-widget-header\t1\nClose\t0\n.ui-icon\t1\nDialogue\t0\nupvoted\t0\ndialogClass\t1\nmyDialogCSS\t1\nMyStyleSheet.css\t1\nincompatible\t0\nPlayerData\t1\nAFAIK\t0\nXCode\t0\nresulted\t0\nNPE\t1\nremained\t0\nmaaartinus\t0\ncompiles\t0\nsloppy\t0\nheard\t0\nVrushank\t0\nDesai\t0\nInstanceCreator\t1\n----\t1\n2013-05-30\t1\n2013-05-29\t1\n2013-05-28\t1\n2013-05-27\t1\ngrateful\t0\ngsub\t1\ntalling\t0\nescaping\t0\ndashes\t0\nas.Date\t1\nProduces\t0\ntimeseries\t0\nGWT+Hibernate+Gilead\t0\nhttps://developers.google.com/web-toolkit/articles/using_gwt_with_hibernate\t0\nGilead\t0\n1.3.2\t1\n2010-05-22\t1\n2.5\t0\nHibernate\t0\n3.5.x\t0\nhttp://sourceforge.net/projects/gilead/forums/forum/868076/topic/4525959\t0\ne-commerce\t0\nwebsites\t0\nshopify\t0\nsitemap\t0\nShopify\t0\ncart0\t1\nsimultaneous\t0\nadd/update/change\t0\nchained\t0\ncombining\t0\nadditions/changes\t0\n/cart/update.js\t1\nvariant\t0\nquantities\t0\nhttps://help.shopify.com/themes/development/getting-started/using-ajax-api#update-cart\t0\nsingle-line\t0\nreliability\t0\njavafx\t1\nTableView\t1\ndataTypeColumn\t1\neditable\t0\nComboBox\t1\ncommiting\t0\nreuses\t0\nintervene\t0\nValues\t0\nDataType\t1\nFactory\t0\nIntegers\t1\nCellValueFactories\t1\nassoziated\t0\nreacts\t0\ncommited\t0\nsetPlaceholder\t1\nComboBoxTableCell\t1\nsuddendly\t0\nObservableList\t1\nRather\t0\nsurprising\t0\nwheel\t0\nbuf\t1\ncellFactory\t1\ndatagrid\t1\non.\t0\ngcov\t1\nMerge\t0\nmismatch\t0\nhttp://www.opensource.apple.com/source/gcc/gcc-5646/gcc/libgcov.c\t0\nsanity\t0\n.gcda\t1\ngains\t0\nprofilable\t1\nstuff.c\t0\nMakefile\t1\nmain.c\t1\nmain.o\t1\nstuff.o\t1\ntestexe\t1\n-fprofile-arcs\t1\n-ftest-coverage\t1\nprofiling\t0\nexecuatable\t0\nmain.gcda\t1\nstuff.gcda\t1\n#if\t1\nrecompile\t0\nrelink\t0\nrecreated\t0\nxargs\t1\nre-check\t0\nopenssl\t1\n0.9.8g\t1\nX509_verify\t1\n0/1\t0\nalgorithms\t0\nAlgorithm\t0\nobj_ID\t1\ncursors\t0\nHelper\t0\nalternatively\t0\nngShow\t1\ncrossfade\t0\nhttp://plnkr.co/edit/EcT2oOmClz65WUgXgG4g?p=preview\t0\n1.2.4\t0\nng-animate\t1\nfading\t0\nin/out\t0\noverlapping\t0\ncrossfading\t0\ninsight\t0\nutilization\t0\nresourceName.utilization()\t1\nStatistics\t0\nstatisticName.mean()\t1\nAnyLogic\t0\nresetStats()\t1\naveraged\t0\ngulp\t1\nsymphony\t1\nhttps://www.npmjs.com/package/gulp-twig\t0\ntest.twig\t1\nImplementation\t0\nhttps://github.com/justjohn/twig.js/wiki/Implementation-Notes\t0\nhttps://developers.google.com/web-toolkit/tools/gwtdesigner/features/menu_editing\t0\nSwing\t0\nReturning\t0\ngwtearthdemo\t1\n96\t0\njavax.swing.JFrame\t1\nDitto\t0\nJMenuBar\t1\nJMenu\t1\nsuggesting\t0\nClasses\t0\ntrial\t0\nQuest\t0\nOptimizer\t0\ndramatically\t0\nPlan\t0\nCost\t0\n831\t0\nElapsed\t0\nTime\t0\n00:00:21.40\t1\nRecords\t0\n40,717\t0\n686\t0\n00:00:00.95\t1\nre-arranging\t0\ncomparisons\t0\n||\t1\nAA\t0\nVERSION_NAME\t1\nRob\t0\ntune\t0\nGather\t0\nstats\t0\nDBA\t0\nhttp://www.adobe.com/devnet/flash/quickstart/datagrid_pt3/\t0\nCellRenderer\t1\nCellRenderers\t1\ntetris\t0\njoomla\t0\nFatal\t0\nget()\t1\nnon-object\t0\nbelows\t0\nhelper.php\t1\nmod_feedGrabber.php\t1\nmod_feedGrabber.xml\t1\ndefault.php\t1\n$params\t1\nfieldset\t1\nWin32\t1\nMMDeviceEnumerator\t1\nIaudiosessionManager\t1\nIdeally\t0\nDirectShow\t1\nMedia\t0\nFoundation\t1\ntwitter\t1\nPatterns\t0\nRegExp\t1\nreformats\t0\nGeoJSON\t1\nMultiPolygon\t0\n90\t0\nMb\t0\nSearch\t0\noutcome\t0\nreformatting\t0\ncomplain\t0\nunbalanced\t0\nextensive\t0\n2017-01-07\t1\nGPS-points\t0\nFeature\t0\n35.642.1.001_001\t1\nunchanged\t0\nbraces\t0\n-p\t1\nsuffix\t0\nquotation\t0\nPlatypus\t0\nprompts\t0\nTkinter\t1\nLINK\t1\n/LINK\t1\n<a\t1\nhref=url>url</a>\t1\na-zA-Z0-9_-.\t1\nCatch\t0\nhttps://\t0\nexample.com/google.com\t1\npreg_replace_callback()\t1\nxss\t0\nStrip\t0\noutputting\t0\nBB\t0\nAnalyses\t0\ncolumns(id\t1\ngame_id(FK\t1\n));\t1\nGames\t0\nround_id(FK\t1\nRound\t0\ncolumns(id,\t1\nround)\t1\nround_id\t1\nAnalyses::orderBy('round_id')->get()\t1\nanalyses\t0\norderby\t1\ngames\t0\neagerloading\t1\nexemple\t0\ngame_id\t1\nAnalyse\t0\norderedby\t1\nProgramming\t0\nLazy\t0\nEager\t0\nExplicit\t0\nreps\t0\nReps\t1\nReps_Zones\t1\nReps_Prerequisites\t1\nReps_Languages\t1\nappointments\t0\nperformances\t0\nLazy-loading\t0\nDBcontext\t1\ndatalayer\t0\nproperites\t0\nisnt\t0\nToList()\t1\nfacebook\t0\nLots\t0\npersists\t0\nhttp://developers.facebook.com/bugs/298512163544012?browse=search_4f3c5c801a70d4639459595\t0\nprioritized\t0\nincreased\t0\n520px\t1\npushes\t0\nBug\t0\nDetails\t0\ngriffon\t0\ntheory\t0\nsvg-edit.html\t1\njs/css\t0\ninteract\t0\nSVG-Edit\t0\nTwoWay\t1\nSelectionChanged\t1\ncross-browser\t0\nfpr\t0\nScreenshots\t0\nincude\t0\nissue.\t0\n42\t0\nMSIE\t0\n5.1.7\t0\n-webkit-linear-gradient(#FFF,#000)\t1\nexterning\t0\nHeader\t0\nMain.cpp\t1\nfunctions.cpp\t1\nstd::vector<Point2f>\t1\nobj_corners(4)\t1\ninitializer\t0\nEqual\t0\nunwrap\t0\nJohn\t0\nequatable\t0\noptionals\t1\nperson.name\t1\nimplicitly\t0\nduplication\t0\nminimized\t0\nextracting\t0\ngenes\t0\nbooks.models\t1\nRouter\t0\nrouters.py\t1\nprogmatically.\t0\nquerysets\t1\n10px\t0\nproduct-category\t0\nli.product-category\t1\nproduct>img\t0\n<product>\t1\nli-s\t0\ning\t0\n<img>\t1\nhomePage\t0\nProgressSample\t1\nmain(......)\t1\nplz\t0\nur\t0\nfoo.bar\t1\nOperator\t0\noperator->\t1\nfoo->bar\t1\nptr\t1\n.bar\t1\noverloads\t0\nspec/services/\t1\napp/services\t1\nrspec\t1\nassociations\t0\n@account\t1\n:confirmed\t1\nTransaction.pay\t1\nmock\t0\nFactoryGirl\t1\nDevise\t0\nhelpers\t0\nStub\t0\nBusiness\t0\nstub\t0\nspec\t0\nstubbed\t0\nperspective\t0\nconsistently\t0\nsqlfiddle\t1\nTransactionID\t1\nDoctorID\t1\nPatientID\t1\nTotalMedicine\t1\nMedicineID\t1\nmultiples\t0\nsmallest\t0\nDoctor\t0\ndidnot\t0\nmultiplies\t0\n4.\t0\nCast(Substring(PatientId\t1\nLen(PatientId\t1\ntableHeader\t1\nchar(5)\t1\nRTRIM\t1\nthis->forward404\t1\ngetApplicationConfiguration()\t1\nsettings.yml\t1\n404\t0\n.actions\t0\nerror_404_module\t1\nerror_404_action\t1\ncustom404\t1\nforward404\t1\ncustom404Success.php\t1\nprod\t1\nalbeit\t0\ndirtiest\t0\nCommonActions\t1\nsfError404Exception\t1\nenviroment\t0\nset_exception_handler(\"my_handle\")\t1\nPardon\t0\nstupidity\t0\nCLRv2\t0\nEric\t0\nLippert\t0\nresetting\t0\nrethrows\t0\ncatches\t0\nDivisionByZeroException\t1\nre-throwing\t0\nre-set\t0\nDurable\t0\nOrchestration\t0\ndocumentation.So\t0\nverb\t0\nresponded\t0\nNotFound\t0\n.Why\t0\ntriggred\t0\ndurable\t0\norchestration\t0\napproach.Is\t0\nFunctions\t0\nHttpTrigger\t1\nhttps://github.com/Azure/Azure-Functions/issues/552\t0\nhttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook\t0\nTimer\t0\nhttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer\t0\ntimer-triggered\t1\nOrchestrationClient\t1\nbare\t0\nSVN\t0\nintentionally\t0\n#git\t1\nreporting_date\t1\ninterest_payment\t1\nbalance\t0\n200401\t0\n.Is\t0\nes-spec\t0\nbabel-2015\t0\npreset\t0\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names\t0\nes2015\t0\nBabel\t0\nconsoling\t0\n<script\t1\nsrc=\"https://cdnjs.cloudflare.com/ajax/libs/babel-core/6.1.19/browser.min.js\"></script>\t1\n0Aconst%20A%20%3D%20%7B%5BL%5D%3A%20responses%7D%0Aconsole.log(A)%0A\t1\nappinventor\t0\nhttps://docs.google.com/document/d/1Xc9yt02x3BRoq5m1PJHBr81OOv69rEBy8LVG_84j9jc/pub#h.5p32kqx16c2d\t0\ninventor\t0\nhttps://github.com/mit-cml/appinventor-sources.git\t0\ntired\t0\nwindows/\t0\ngitHub\t0\ncorporate\t0\nunset\t0\nTextbox\t1\nFelix\t0\nFORM\t1\nWhats\t0\nmessage.Please\t0\n.keyup()\t1\nmyObject\t1\nMyObject\t1\n.h\t1\nreleases\t0\nhttp://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmObjectOwnership.html#//apple_ref/doc/uid/20000043-SW4\t0\nImportant\t0\ninvoked\t0\nZigglzworth\t0\n-(void)dealloc\t1\nMoved\t0\nNP-hard\t1\ntraveling\t0\nsalesman\t0\nMAX-SAT\t1\nchromatic\t0\nIntuitively\t0\nco-NP\t0\nrefute\t0\nwitness\t0\nKnowing\t0\nPSPACE-hard\t0\nbroad\t0\nsatisfying\t0\nprecludes\t0\nMAX-CNF-SAT\t1\nscored\t0\nfloor(k/N)\t1\ncomputable\t1\npolynomial\t0\nvaluation\t0\nyields\t0\nmaximizing\t0\nFLOOR-CNF-SAT\t1\nTAUTOLOGY\t0\nnegate\t0\ndummy\t0\nNegation\t0\nsolver\t0\ndeems\t0\ncrafted\t0\nsatisfies\t0\ncheating\t0\nartificially\t0\nestablished\t0\nco-NP-complete\t1\nco-NP-hard\t1\nreduction\t0\narbitrarily\t0\n1}\t1\nK\t1\ncheat\t0\nnegated\t0\nd1\t1\ndN\t1\n2N\t1\nSuch\t0\nregularity\t0\nscoring\t0\nis-optimal\t1\nall:/\t0\ngreedy\t0\nMOST\t0\nPentaho\t0\nKettle\t0\nInternal.Job.Filename.Directory\t1\nSPoon.bat\t1\njob/xfrm\t1\nrunnig\t0\nspoon.bat\t1\nSpoon\t0\ndocumented\t0\nhttp://jira.pentaho.com/browse/PDI-7434\t0\ncatching\t0\nfull-blown\t0\n5xx\t0\nJson()\t1\nchance\t0\nGenerate\t0\nC-based\t0\nJSON-C\t0\nJansson\t0\nParse\t0\ncalculations\t0\noly\t0\ndata.pdf\t0\noutput.csv\t1\npdfminer\t1\ntabula\t1\nnon-graphic\t0\nLocations\t0\n-100\t0\n21\t0\n21x21\t0\nranging\t0\n-10\t0\n+10\t0\nLIVE\t0\nFunktion\t0\ngetLocation(x,y)\t1\nRevolution\t0\nbringing\t0\nRAM-sized\t0\nsimulation\t0\nSurvSplit()\t1\nsurvival\t0\nseperate\t0\nobservations\t0\nsymfony\t1\nbundle\t0\nfgetcsv\t1\ncolor.Is\t1\nhttps://git.webworks-nuernberg.de/webworks-nuernberg/parsecsv\t0\ncweiske\t0\n.xls\t1\n.odt\t1\nDate(2016,\t1\n4,\t1\nJSbin\t0\nhttp://jsbin.com/catolumifa/edit?html,output\t1\n<meta>\t1\nsheets,\t1\n<link>\t1\nvote\t0\nstylesheets\t1\nHW\t0\nMultivariate\t0\nAnalysis\t0\nPROC\t0\nPLOT\t0\n5-10\t0\ntall\t0\n.05\t0\ninch+\t0\ninformative\t0\nSAS\t0\nskilled\t0\nods\t0\nSGPLOT\t1\nCRUD\t0\npost_save\t1\nsignals\t0\nfunny\t0\nCRUD_Storage\t1\npre(post)init\t1\nDRY\t0\ndismissing\t0\ndismiss\t0\ndecorator\t0\nskip_signal\t1\nhelpdesk\t0\nEmails\t0\nXPages\t0\ncourtesy\t0\nhttp://techdriveactive.blogspot.co.uk/2012/11/open-attachments-in-xpage-in-client.html\t0\nHelpDeskOpenDoc.xsp\t1\nXPage\t1\nRich\t0\nField\t0\nDojo\t0\nContentPane\t1\nXPiNC\t0\nWAMP\t0\nMean\t0\nsever\t0\nWIN\t0\ncoz\t0\n.cancel()\t1\nNotifications\t0\nreciever\t0\nnotificationId\t1\nmNotificationManager\t1\nnotify(1\t1\nmBuilder\t1\n())\t1\nputExtra\t1\ntelephone\t0\nworkarounds\t0\nscreenshoting\t0\nverifying\t0\nRootFrame.Obscured\t1\nhttp://www.wintellect.com/CS/blogs/jprosise/archive/2011/02/11/silverlight-for-windows-phone-programming-tip-6.aspx\t0\nCOPY\t0\nguillemet\t0\n(Âť)\t1\nLoads\t0\ndots\t0\nINSERTs\t1\nchar_length\t1\nUTF8/UNICODE\t1\nMultibyte\t0\nhttp://docs.aws.amazon.com/redshift/latest/dg/multi-byte-character-load-errors.html\t0\neuclidean\t0\nnorm\t0\nsquared\t0\ndistances\t0\n=3\t1\npdist2\t1\nPairwise\t0\nbigList\t1\nlittleList\t1\nleverages\t0\nBenchmarking\t0\nBenchmark\t0\nruntimes\t0\nShai\t0\nbsxfun\t1\nwinner\t0\nmousedown\t1\nunforcused\t1\ndeselected\t0\ndirective/\t0\nbinds\t0\nevent.stopPropagation()\t1\nuninstalled\t0\ndetermining\t0\nAPN\t0\nabsent\t0\nAPNS\t0\nconclusively\t0\nng-map.min.js\t1\napplicatoion\t0\n.How\t0\nsong\t0\nbrowses\t0\nIphone\t0\nhtml5\t0\nplaybackrate\t0\nBrowsers\t0\nweb-audio\t1\nmobiles\t0\ntempo\t0\nschedules\t0\nBPM\t0\nnotes\t0\n120\t0\nAudioBufferSourceNode\t1\npre\t0\nplaybackRate\t1\npitch\t0\ncorrection\t0\nhttps://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode\t0\nPlugin\t0\nadvantages\t0\nmentioning\t0\nCheers\t0\nuid='0\t1\ndisapeared\t0\nciv_alive='0\t1\nmariadb\t1\npandas.DataFrame\t1\nfloat64\t1\nmyComplexFunc()\t1\n`̀N\t1\ndf\t1\ndtype\t1\nselect_dtypes\t1\naggreagate\t0\nSeries\t1\ndf.A\t1\nexcluded\t0\nbadly\t0\nMessage\t0\nCompose\t0\nTabBar\t0\nToolBar\t0\ntabBar\t1\nhidesBottomBarWhenPushed\t1\nSMS\t0\niphone\t0\nTotally\t0\ntabbar\t1\ncompose\t0\nFar\t0\nMFMessageComposeViewController\t1\nhid\t0\nHappy\t0\nIssue\t0\ntraying\t0\nmails\t0\ngmail\t0\nImapClient\t1\nSystem.Exception\t1\nAE.Net.Mail.dll\t1\nxm003\t1\nBAD\t0\nAE.Net.Mail\t1\nhttps://github.com/andyedinborough/aenetmail/issues/197\t0\nReplacing\t0\nSearchCondition\t1\n@Ahmado\t0\npop3\t0\ninbox\t0\nalso.for\t0\napplicatin\t0\nnuget\t1\nOpenPop.NET\t1\nStep1\t1\n:Each\t0\nSox\t0\narmeabi\t0\narmeabiv7\t1\nheartly\t0\nhttps://github.com/guardianproject/android-ffmpeg\t0\nrefuse\t0\niter()\t1\nnext()\t1\nStopIteration\t1\nerror.You\t1\ntry-except\t1\nitertools.izip()\t1\nzip(l,l[1:])\t1\nneighbour\t0\nKasra\t0\niter()-based\t1\npage-specific\t0\nheader.php\t1\nimport.php\t1\nstyles.css.php\t1\n$name\t1\nstdClass\t1\nse\t0\n$_GET['name']\t1\napi-oauth/openconnect/identity\t1\nfederation/sign\t0\nKindly\t0\nprotocols\t0\nauthorize\t0\nSign-in\t0\naspects\t0\nAuthorizing\t0\nscopes\t0\ndocumentations\t0\nflights\t0\nstation\t0\nfirst_value()\t1\nlast_value()\t1\nQ\t0\nFIRST_VALUE\t1\nLAST_VALUE\t1\nSQLServer\t1\nsymbiosis\t0\nYogesh\t0\nSharma\t0\n3.2.0\t0\nsubstrings\t0\n-D\t1\n-M\t1\nGeneralized\t0\nLibstree\t0\nlongest\t0\nstd::string\t1\nmulti-character\t0\nUTF\t0\ncodepoint\t1\noverlaps\t0\nOutputting\t0\ncodepoints\t0\nmanipulating\t0\nIMO\t0\nUTF-32\t1\nnix\t0\nimbue\t0\nfacet\t0\nfacets\t0\nboost\t0\nhttp://www.boost.org/doc/libs/1_38_0/libs/serialization/doc/codecvt.html\t0\n1.46\t0\nwritting\t0\nUTF-16/32\t0\nDifferent\t0\nDinkumware\t0\nhttp://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=index_cvt.html#Code%20Conversions\t0\nUTF-X\t1\nUCS-Y\t1\ntechnically\t0\nminor\t0\ninconsequential\t0\nStick\t0\nSurrogate\t0\npractically\t0\n-O3\t1\n0.014\t0\n-O0\t1\n0.000000\t1\n-03\t0\nsummarize\t0\nelimination\t0\nas-if\t0\nomits\t0\nspend\t0\napologize\t0\npowerless\t0\nmystery\t0\nQtCreator\t1\nPopulation\t1\nevolve\t0\nPopulationMember\t1\npopulation\t1\nPopulation::evaluate()\t1\nstrangest\t0\nreport()\t1\nexperimentation\t0\nstd::sort\t1\nqSort\t1\nPopulation->evaluate()\t1\naddres\t0\n0xbffff628\t1\npopulation_->members_.count()\t1\nprintouts\t0\nevaluate()\t1\nproblem_\t1\n0xbffff780\t1\n344\t0\npuzzling\t0\nevaluate(PopulationMember&)const\t1\nPopulation-instances\t1\nownsMembers_\t1\nfishy\t0\ndestructors/constructors\t0\nlifecycle\t0\nPopulation&\t1\nPopulationMembers\t1\nPopulations\t0\nFix\t0\nSOF\t0\njoy\t0\npresume\t0\ntoggling\t0\nsetChoiceMode\t1\nR.layout.listview_item_text.xml\t1\ninflate\t0\nlistview_item_checkbox.xml\t1\nCheckable\t0\nandroid.R.layout.simple_list_item_multiple_choice\t1\nyur\t0\nCheckableFrameLayout\t1\nBooleanSparseArray\t1\ngetCheckedItemPositions())\t1\ngrepcode\t0\nLab9\t0\n//compiles\t0\ntraffic\t0\njams\t0\nopenstreetmaps.in\t0\nnavigating\t0\nroutes.how\t1\nopenstreetmaps\t0\nA1\t1\nA2\t0\nrouters\t0\nOSM\t0\nGraphHopper\t0\ninfluenced\t0\nblogged\t0\nstreets\t0\nweighting\t0\nskills\t0\nSKILL\t0\nclasic\t0\npersonToSkill\t1\ntempting\t0\nmaitnence\t0\nhell\t0\npretend\t0\nassociates\t0\nDoe\t0\nBenny\t0\nHill\t0\nLinus\t0\nTorvalds\t0\nSwimming\t0\nDonald\t0\nKnuth\t0\npilots\t0\nAstronaut\t0\nalarm\t0\nalarms\t0\nreboots\t0\nbroadcastReceiver\t1\nonReceive\t1\nbootReceiver\t1\nrequestCode\t1\nandroid.intent.action.BOOT_COMPLETED\t1\nBroadcastReceiver\t1\nhttp://developer.android.com/reference/android/content/BroadcastReceiver.html\t0\npracticing\t0\nfresher\t0\ninterview\t0\nNeon\t0\nDataInputStream\t1\n32-bit\t0\nscrapping\t0\ninformations\t0\nproducts\t0\nserver/link\t0\ntheirs\t0\nplanet\t0\nmarginal\t0\nserving\t0\nsame-sized\t0\nhot\t0\nfilenames\t0\ndesire\t0\nw/o\t0\nopt-in\t0\n5-6\t0\nLinearLayout\t1\nwant(blankHeight=(ListViewHeight-count*rowHeight)>0)\t0\nheightToPlus\t1\nblankHeight/count\t1\nrowHeight+heightToPlus\t1\ngetHeight\t1\nsetHeight\t1\ncustomValidator\t1\nPOSTBACK\t0\nrequiredFieldValidator\t1\nfomer\t0\npostback\t1\nvalidator\t1\npostbacks\t0\nhomebrew\t0\nrvm\t1\n1.9.3\t1\n1.7.4\t0\n4.3.2\t0\nlibksba\t1\nbrew\t0\nHome\t0\nBrew\t0\n/usr/bin/ruby\t1\n-e\t1\n/usr/bin/curl\t1\n-fsSL\t1\nhttps://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb\t0\nMacPorts\t0\nerased\t0\ncommunity\t0\nmachined\t0\ncritically\t0\nSnowLeopard\t0\n10.6.8\t0\nuninstall\t0\nxcode\t0\n/Developer/Library/uninstall\t1\n-devtools\t1\n--mode\t1\nrsync\t1\n/System/Library/Frameworks/Ruby.framework\t1\nexecutables\t0\n/usr/bin\t1\n/usr/bin/{erb,gem,irb,rdoc,ri,ruby,testrb}\t1\nsymlinks\t0\nerb\t0\n../../System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/erb\t0\nre-symlinked\t0\nln\t0\n-s\t0\n./erb\t1\nsymlinking\t0\nostruct\t0\ndoctor\t0\nmacports\t1\ndefg\t0\nklmno'`\t1\ngenerator\t0\ncomprehension\t0\nlens\t0\ngrails\t0\n2.3.x\t0\nonError\t1\nonComplete\t1\nThread.sleep()\t1\npratically\t0\nhttp://grails.org/doc/latest/guide/async.html\t0\nGPars\t0\nrequest/action\t0\nwaitAll()\t1\nlist.get()\t1\nTroubleShooting->Logs\t1\nTrace->Server\t1\nLog\t0\ntracing\t0\nWAS\t0\nZ/OS\t0\nmainframe\t0\nAIX\t0\nTroubleShooting\t0\nLogs\t0\nTrace\t0\nDiagnostic\t0\nenable/disable\t0\nshall\t0\nrollover\t0\nz/OS\t0\nAdministrators\t0\nAdministrative\t0\nenabling\t0\nwsadmin\t1\nhttp://pic.dhe.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.express.doc%2Finfo%2Fexp%2Fae%2Ftxml_profiletrace.html\t0\n<p:calendar>\t1\nOmniFaces\t0\n#{now}\t1\na:placeholder\t1\nsomeproperty\t1\njava.util.date\t1\ndd.MM.yyyy\t1\nHH:mm\t1\nof:formatDate()\t1\n#{component}\t1\nsyntax/concepts\t0\nlovely\t0\nDispatcher\t0\nBackGroundWorker\t1\nwalls\t0\nalone\t0\ntonight\t0\nfooling\t0\ntackling\t0\neat\t0\nglaring\t0\nsilliness\t0\nproperties-I\t0\noccurrs\t0\nherring\t0\nInnerException\t1\nwhilst\t0\nfeeling\t0\ngetfiltered\t0\nresidents\t0\ngenius\t0\nCMS\t0\nrewriting\t0\nages\t0\npeaceful\t0\nholidays\t0\nserializers\t0\ncreate()\t1\nPrice\t0\nserializer\t0\nopportunity\t0\nassociate\t0\nPriceSerializer\t1\nMeta.exclude\t1\nMeta.fields\t1\nPrimaryKeyRelatedField\t1\nmass\t0\n<b></b>\t1\nnewlines\t1\npreg_replace\t1\nshitty\t0\ndeterminate\t0\n<br>\t1\n<pre>\t1\npseudo-element\t0\n:first-line\t1\nparagraph\t0\nhttp://www.ideone.com/1pTwD\t0\nNSMutableArrays\t1\nNSNumbers\t1\nNSCoding\t1\npresently\t0\nincremental\t0\ndirty\t0\nNSTimer\t1\nMongocxx\t0\nhorrible\t0\nhttp://mongodb.github.io/mongo-cxx-driver/api/mongocxx-3.1.1/classmongocxx_1_1bulk__write.html\t0\nbulk_write::bulk_write()\t1\nbulk_write::append()\t1\nhttps://docs.mongodb.com/manual/reference/method/Bulk/\t0\nbulk_write\t1\nv2\t0\nmaven-android-sdk-deployer\t1\n-P\t1\n\\adt-bundle-windows-x86\\adt-bundle-windows-x86\\sdk\\extras\\android\\support\\v7\t1\npackag\t0\nExtras\t0\nnet\t0\ndoInBackground\t1\nandroids\t0\n1.8.7\t0\n10.7.3\t0\npre-installed\t0\nfashioning\t0\nMaker\t0\nSplitContainer\t1\nPanel1\t1\nPanel2\t1\nself-contained\t0\nhacky\t0\nuser-controls\t0\nsplitContainer\t1\nhttp://i.stack.imgur.com/CG6kO.png\t0\nsprite\t0\nReplaceControl\t1\na-form-inside-a-form\t1\ndocking\t0\nprogrammaticaly\t0\n54\t0\niharob\t1\nsatisfaction\t0\nActiveX\t0\ncustomizable\t0\nprevented\t0\nWndProc\t1\nref\t0\nPass-through\t0\nIMessageFilters\t1\nApplication-Wide\t0\nEvent\t0\nHandling\t0\nCapturing\t0\nEvents\t0\nWInForm\t1\nExperiment\t0\nextensively\t0\nIMessageFilter\t1\nopt-out\t0\nFiltering\t0\naverted\t0\npreventing\t0\nEnableWindow(hand,FALSE)\t1\nuppermost\t0\nhwnd\t1\nHandle\t0\nPOLYGONS\t0\nPOLYINES\t0\npolygon\t0\npolyline\t0\npolygons\t0\nPolygons\t0\npolylines.I\t0\nhere.sorry\t0\nenglish\t0\n.Demo\t1\ngoogle.maps.PolylineOptions\t1\ngoogle.maps.PolygonOptions\t1\nrefreshed\t0\nImages\t0\n<li\t1\nreloadImages()\t1\nflicker\t0\nPreload\t0\nfolowing\t0\npreload\t0\nis'n\t0\nhttps://github.com/desandro/imagesloaded\t0\ndestionation\t1\nGhost\t0\nBlogging\t0\nPlatform\t0\n62rem\t0\nblockquote\t1\n.container\t1\nreorganize\t0\nFIDDLE\t0\ntargeted\t0\nghost\t0\nnode/express\t0\nres.render\t1\nJADE\t0\nAaron\t0\nlineedit\t1\ndelgate\t0\nQCompleter\t1\nrecived_model\t1\ncompleter\t0\nQStringList\t1\nconstains\t0\nredone\t0\nModelWithoutDuplicatesProxy\t1\ndeleter\t0\ntheme\t0\npage-node-1.tpl\t1\nblock-modulename-2.tpl\t1\ndelta\t0\nadmin/build/block\t1\nadmin/build/block/configure/views/news\t0\n-block_2\t1\nViews\t0\nnews-block_2\t1\nModules\t0\nGulp\t0\nimagemin\t1\njus\t0\ngulpfile.js\t1\n20secs\t0\nhttp://example.com/ViewVacancy.aspx?ID=8674\t0\nhttp://m.example.com/vacancy.aspx?name=8674\t0\nhttp://example.com\t1\nhttp://m.example.com\t0\nhttp://example.com/viewvacancy.aspx?id=8674\t0\nString.Replace()\t1\nWondering\t0\nre\t0\nseparates\t0\ncommonParentElementHere\t1\ngui\t0\nmypic\t0\nmytext\t1\nintroducing\t0\n???\t1\ntailor\t0\nmyText\t1\nmyPic\t1\noverlaying\t0\nJLayeredPane\t1\nmanagers\t0\nWidget\t0\nWeather\t0\ndemonstration\t0\nFirebase\t0\nmessagesRef.child\t1\ntee\t0\nmessagesRef\t1\nfirebase.database().ref('messages').limitToLast(30)\t1\nfirebase.database.Query\t1\nfirebase.database.Reference\t1\nfirebase.database().ref('messages/users').limitToLast(30)\t0\nPlain\t0\ngain\t0\nunfortunate\t0\nportable\t0\nMCU\t0\nstrictly\t0\nAVR\t0\ndrawbacks\t0\ninherently\t0\namongst\t0\nol\t0\nGrab\t0\nAtmel\t0\navr-gcc\t1\navr-objcopy\t1\navrdude\t1\nC-only\t0\nstock\t0\nlower-level\t0\nUid\t1\nav:Canvas.Top\t1\n-TIA\t0\nnamespaces\t0\nSelectSingleNode\t1\nSaved\t0\nhttps://www.google.com\t1\n@Url\t1\ntableView\t1\nself.listData\t1\nNSInteger\t1\nnumberOfRowsInSection\t1\nSimple_TableViewController\t1\nrespectively\t0\nUITableViewDelegate\t1\nUITableViewDataSource\t1\n<UITableViewDelegate,\t1\nUITableViewDataSource>\t1\nInventory\t0\nProduct\t0\nSales\t0\nsuperclass\t1\nSKTextureAtlas\t1\nSKSpriteNode\t1\nSKAction.animateWithTextures(atlasFrames,timePerFrame:0.1,resize:true,restore:false)\t1\n1%\t0\nhttps://www.youtube.com/watch?v=TDwSR3e6nN0\t0\nrestricting\t0\nautocommit\t0\nmid\t0\ncon.commit()\t1\nShivam\t0\nKalra\t0\npools\t0\nsingletons\t0\nmethod-local\t0\neconomize\t0\ndestroying\t0\nTransactionScope\t1\ntxScope.Complete()\t1\nrolled\t0\npossible.\t0\ntxScope\t1\ndeptAdapter\t1\nempAdapter\t1\nBeginTransaction()\t1\nRollbackTransaction()\t1\nsurrounding\t0\nambient\t0\nScope\t0\nenlist\t0\nCaution\t0\nescalate\t0\nDistribtued\t0\nrollback\t0\nDTC\t0\nthread-specific\t0\nincrements\t0\nDispose\t0\ncomitted\t0\nrolls\t0\nmagically\t0\nemptAdapter\t1\nCurrent\t0\ncommit/rollback\t0\npropogate\t0\nvarying\t0\ncoordinators\t0\ndistributed\t0\nSimpleXML\t1\nproduced\t0\nDocument\t0\nDTD\t0\nSchema\t0\nstructure/content\t0\nconforms\t0\nDTD/Schema\t0\nwell-formedness\t0\nexample.dtd\t1\nprefixing\t0\ndoctypes\t0\nFortunately\t0\ndom_import_simplexml\t1\nFoo\t1\nBar\t0\nBaz\t0\nBar.prototype\t1\nFoo()\t1\nbeloved\t0\nClassy\t0\nJS.Class\t1\nad\t0\ndecouple\t0\nremark\t0\nflaws\t0\nworkspace\t0\nbandwidth\t0\nNSURLSession\t1\nfile-sync-client\t0\nDropbox/GoogleDrive/pCloud\t1\nfacilities\t0\nsockets\t0\nthrottle\t0\nProvide\t0\nin-app\t0\nConfigure\t0\nMVP\t0\nin-general\t0\ndigest\t0\npresenter\t0\nMosby\t0\nkosher\t0\nBase\t0\nPresenter\t0\nPhotoRecyclerPresenter\t1\ncommunicates\t0\nPhotoRecyclerFragment\t1\nself-doubt\t0\nCUDA\t0\nthreadIdx.x\t1\nblockIdx.x\t1\nRunning\t0\nwarp\t0\nscheduling\t0\nlockstep\t0\nprintf\t1\nunspecified\t0\nwarps\t0\ndisperse\t0\nrandomize\t0\nemanating\t0\ndiverges\t0\nconvergence\t0\n1.4.0.M3\t1\n@Entity\t1\nRepository\t0\n@Transactional\t1\n@Commit\t1\nDataIntegrityViolationException\t1\nJUnit\t1\n@WebAppConfiguration\t1\n@ResponseStatus\t1\n@ControllerAdvice\t1\nsuit\t0\nflush\t0\n@NotTransactional\t1\nhttp://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/testing.html#integration-testing-annotations\t0\nTransactional\t0\nNon\t0\npropagation\t0\nPropagation.NEVER\t1\nM.Deinum\t1\nStephane\t0\nNicoll\t0\nJSTL\t1\njstl.jar\t1\nhttp://java.sun.com/jsp/jstl/core\t0\nhttp://www.java2s.com/Code/Jar/j/Downloadjstljar.htm\t0\nNetBeans\t0\njavax.servlet.jsp.jstl.core.*\t1\nxmpp\t0\nBlank\t0\noutputing\t0\nlog-file_2014.02.20.xml\t1\nlog-file_2014.02.20.1.xml\t1\nlog-file_2014.02.20.2.xml\t1\n.1\t0\nya\t0\nconfigration\t0\nBehgozin_DB\t1\ndetach\t0\n\\debug\t1\nrun-time\t0\nNever\t0\naccidently\t0\nManually\t0\ndeploying\t0\n|DataDirectory|\t1\nread/write\t0\nCloudStorage\t0\nGCE\t0\nRedirect\t0\nURI\t0\nbi-directional\t0\nVehicles\t0\nemployee_id\t1\nafterwards\t0\nJPA\t0\nMuch\t0\ncascade\t0\nvehicles\t0\nassociatedEmployee\t1\npersisting\t0\nhierarchical\t0\npretty-printed\t0\nEXPLAIN\t0\nlft\t1\nrgt\t1\nlft-rgt\t0\n7040\t0\nmanages\t0\nEXPLAINs\t0\nFINALLY\t0\nranges\t0\n7.2.5.1\t0\nRange\t0\nSingle-Part\t0\nIndexes\t0\nunion\t0\nIPython\t1\nSympy\t0\nlatex/unicode\t1\nSteps\t0\nipython\t1\nqtconsole/notebook\t1\ninit_printing\t1\n0.7.3\t1\nipython3\t1\nmatplotlib\t1\n1.3.1\t0\n1.7.1\t0\nscipy\t1\n0.12.0\t1\n13.10\t0\nIncidentally\t0\nPYTHONSTARTUP\t1\nJakob\t0\n1.1.0\t0\ntheoretically\t0\nkeen\t0\nbundled\t0\n00-startup.py\t1\nipython_config.py\t1\ntest.php\t1\ndoc||docx\t1\nhref=''>\t1\nintervention\t0\nmouse-1\t1\nmouse-2\t1\nEmacs\t0\n.emacs\t1\nmouse-1-click-follows-link\t1\ndownladed\t0\nOBJ\t0\nIFC\t0\nAutodesk\t0\ncleanliness\t0\nmaintenance\t0\nControllers\t0\nintro\t0\ncategories\t0\nUIViewControllers\t1\nPlacing\t0\nutility\t0\n-Prefix.pch\t1\nSubclassing\t0\nMySubclassedViewController.h\t1\nMySubclassedViewController.m\t1\nCategory\t0\nUIViewController+\t1\nSpecialCatrgory.h\t1\nSpecialCatrgory.m\t1\nDedicated\t0\nMyHelperClass.h\t1\nMyHelperClass.m\t1\ndequeueing\t0\nrequeueing\t0\nchannel\t0\ndeadloks\t0\ngoroutines\t0\nPlayground\t0\nMinimal\t0\nhttp://play.golang.org/p/Vb4-RFEmm3\t0\n26\t0\ninstructs\t0\ngoroutine\t1\n1001\t0\n1000\t0\nfunc()\t1\narr\t1\nredeclaring\t0\n0-9\t0\narguably\t0\nelegant\t0\nredeclare\t1\nweird-looking\t0\nmanifest\t0\nenqueue\t1\n1001s\t0\nforever\t0\nzillion\t0\noverusing\t0\ndequeued\t1\nquitting\t0\nhttp://play.golang.org/p/bBM3uTnvxi\t0\nlowish-level\t0\nreflexive\t0\nlen\t1\nrep\t0\nhttps://stackoverflow.com/a/21034111/432509\t0\nHoudini\t0\nschool\t0\nclues\t0\nthe-state\t0\ncompojure\t1\nmain-routes\t1\ninjecting\t0\n:init\t1\nmiddleware\t0\ninjects\t0\ndefroutes\t1\nNSTableview\t1\nNSTableView\t1\nNsTableview\t1\nmotive\t0\nDown\t0\nOpenMP\t0\nc3005\t0\ncollapse\t0\nopenmp\t0\nOpenMP2\t0\nOpenMP4.5\t0\nclang-cl\t1\nhttp://llvm.org/builds/\t0\nVS2017\t1\nhttps://bugs.llvm.org/show_bug.cgi?id=33672\t0\nhttps://www.reddit.com/r/cpp/comments/6oepq4/making_windows_clang_401_play_nice_with_visual/\t0\nhttps://github.com/WubbaLubba/LlvmForVS2017\t0\n/fallback\t1\n/MP\t0\nhttp://clang-developers.42468.n3.nabble.com/clang-windows-clang-cl-support-for-MP-tp4045651p4045659.html\t0\nIQKeyboardManager\t1\nUItextField\t1\nUIDatePicker\t1\npad\t0\ncapable\t0\nde\t0\nnaissance\t0\nIQDropDownTextField.h\t1\n#import\t1\nUITextField\t1\nIQDropDownTextField\t1\n@property\t1\nweak\t0\nnonatomic\t1\nIBOutlet\t1\nmyTextField\t1\nBuilder\t0\n.xib\t1\nIdentity\t0\nInspector\t0\nMohd\t0\nIftekhar\t0\nQurashi\t0\n.m\t1\nsetCustomDoneTarget:action\t1\ndoneAction\t1\ncustomised\t0\nIQUIView+\t1\nIQKeyboardToolbar.h\t1\nprevious/next/done\t0\nTextFieldViewController.m\t1\n/var/www/html/dashboard.php\t1\n1021\t0\nTaking\t0\nLinux/Unix\t0\nSCP\t0\nscp\t0\n[[user@]host1:]file1\t1\n[[user@]host2:]file2\t1\nconfuse\t0\nhql\t1\n#option\t1\ncount()\t1\nJS/HTML5\t0\nsubpage\t0\nhistory.state\t1\nrefreshing\t0\ncpp\t0\nportion\t0\n./MyApp\t1\nfine.\t0\nself.counters\t1\ndict\t1\neditDependent\t1\nemployee.html\t1\nui-view\t1\ntwo-way\t0\nEmployeeService\t1\nEmployeeController\t1\nbuttons(new/edit)\t1\nng-view=\"editDependent()\"\t1\ncascading\t0\nRoot\t0\nINSERT\t0\nFOREIGN\t0\nKEY\t0\nid_root\t1\nid_parent\t1\nUNIQUE\t0\nPRIMARY\t0\nAuto_increment\t1\nHotKey\t1\nCtrl\t0\nSpace\t0\nunhandle\t1\nkeystrokes\t0\nunregister\t0\nbool\t1\nKeyDown\t1\ncpython\t0\nIronPython\t1\nCommunication\t0\nexpose\t0\nDive\t0\nInto\t0\nunified\t0\nsuds\t0\nRESTful\t0\nmassaging\t0\n00:00\t0\nwouldnt\t0\nDateTime.Now\t1\nSDL\t0\nloc\t0\ncontnent\t0\nNSLog\t1\nNSMutableData\t1\nbeware\t0\nthread/UI\t0\ndata-object\t0\nhttps://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html#//apple_ref/doc/uid/20001836-BAJEAIEE\t0\nPrivateMessages\t1\nSender==QueryString('idCompany')\t1\nprivateMessage\t1\nSender\t0\n???????\t1\nSelecting\t0\nWhereParameters\t1\nDepends\t0\nflavor\t0\nduper\t0\namoled\t0\nworks.\t0\ncharacthers\t0\nall.\t0\npostData\t1\nde-serialized\t0\nstructs\t0\nalive\t0\nindicated\t0\nletting\t0\nbane\t0\nMyStruct\t1\nMyStruct::*\t1\nAllStructs\t0\nallocating\t0\nmessy\t0\nstd::vector\t1\nregions\t0\nschools\t0\nselections\t0\nsearch.php\t1\nThx\t0\ngetschools()\t1\ntwilio\t0\nIVR\t0\nmood\t0\npodcast\t0\nTWIML\t0\nSkip\t0\ncontinuously\t0\nTwilio\t0\nevangelist\t0\npossible*\t0\nslices\t0\nvoice\t0\nTwiML\t0\n/voice/check\t0\n-digits\t0\ndirects\t0\nconference\t0\ndial\t0\nhangup\t0\ndials\t0\nunlikely\t0\n<Gather>\t1\nasterisk\t0\nErlang\t0\nspawn\t0\narguments.callee\t1\nMDC\t0\ncuriosity\t0\nprorotyping\t0\nrumour\t0\nphases\t0\nDSL\t0\nErlang/OTP\t1\n17.0-rc1\t1\n1Mb\t0\nSQlite\t0\nPersistence\t0\ncurves\t0\nsynchronize\t0\niCloud\t0\nDropbox\t0\nShall\t0\nsetText(String)\t1\nDoc\t0\nViewGroup\t1\nBaseAdapter\t1\nexec\t0\nexecl\t1\nPATH\t0\nksh/bash\t1\ncharm\t0\nsqrt\t1\ndist\t0\nEg\t0\nMin\t0\n1200x800\t1\nhowever.\t0\nonPrepare\t1\nuser-agent\t0\nprotractor/nodeJS\t1\ngrunt\t0\n375x667\t0\nfix/track\t0\nIdeas\t0\nmytestconfig.conf.js\t1\nrecurrence\t0\ntheorem\t0\nSubtraction\t0\nConquer\t0\ncommitted\t0\nAttempt\t0\nB()\t1\nthis.arr\t1\nPrototypes\t0\nchains\t0\ntone\t0\ncaveat\t0\nprototypal\t0\nAnything\t0\ninitialise\t0\nlocalised\t0\n.csv\t1\n9876542\t1\n$max\t1\nPROCESS\t0\nID(id)\t1\nwt\t0\nthis->\t1\nWrite->\t1\nRead->\t1\nFree\t0\ndone.\t0\n/A\t0\npt[0]\t1\ncorrect.1\t0\nmalloc\t0\ncalloc\t1\nfree(pt)\t1\nFotenotes\t0\n1Note\t1\ndiamond\t0\nh\t0\n5-elements\t0\ndiamonds\t0\nmask\t0\nL1\t0\ntaxicab\t0\nthreshold\t0\nReactor\t0\nManaged\t0\nExtensibility\t0\nMEF\t0\nadpators\t0\naddins\t0\nstackoverlow\t0\nspecificity\t0\nEziriz\t0\nobfuscate\t0\nMind\t0\nTextField\t1\nradio\t0\nScenario\t0\nlocationno\t0\nlocationDetails\t1\npage.its\t0\nlocationAllDetails\t1\npage.Here\t0\nfetching\t0\nOutputtype\t1\nwww.mywebsite.com\t1\nhttp://www.mywebsite.com/styles/app.css\t0\n/styles/app.css\t1\nhttp://www.mywebsite.com\t0\nhttp://localhost:3000/mywebsite/\t0\nhttp://localhost:3000/mywebsite/styles/app.css\t0\nquit\t0\nwww.mywebsite.com/styles/app.css\t1\napp.css\t1\ndocnr\t0\nclientid\t1\n700k\t0\ndoSNOW\t1\nsqldf\t1\nsubqueries\t1\nobliged\t0\nave\t0\nwil\t0\ndata.table\t1\ndatases\t0\nbillions\t0\nseq_len(.N)\t1\nseq_along\t1\ncumsum(x)\t1\ndplyr\t1\ndf1\t1\nZSL\t0\ncamera2\t1\nLEVEL-3\t0\nYUV_REPROCESSING\t1\nReprocessableCaptureSession\t1\nReprocessableCatureSession\t1\nYUV\t0\n4608\t0\n3456\t0\nSize\t0\nCameraCharacteristics\t1\ngetInputSizes(ImageFormat.YUV_420_888)\t1\nYUV_420_888\t1\nImageReader\t1\nSurface\t0\nJPEG\t0\n4608x3456\t1\nRAW\t0\nsensor\t0\nCaptureRequest\t1\nRingQueue\t1\ntaked\t0\nreprocessed\t0\nwant(ZSL)\t1\nreprocess\t0\nSIZE(4608x3456)\t1\nbytearrays\t1\nMAXIMUM\t0\nReprocessableCaptureRequest\t1\nCTS\t0\nimageReader\t1\nByte[]\t1\njQuery-generated\t0\njQ\t0\ngallery\t0\nblindspot\t0\nregard\t0\nListItemIndex\t1\nSlide\t0\nsvs\t0\nappending\t0\n$(this)\t1\nli\t0\nhttp://jsfiddle.net/meo/yKgSf/​\t0\nhttp://jsfiddle.net/meo/yKgSf/2/\t0\nHTML4\t0\ntype=\"file\"\t1\nname=\"userfile\">\t1\nConstants\t0\nclasspath\t1\nSomewhere\t0\nChristian\t0\nSub_Init_Globals()\t1\nSubProcedure\t1\nSubProcedures\t0\nWorkbook_Open\t1\nvba\t1\nWorkbook\t0\nDeclare\t0\nProcedures\t0\ndepDt\t1\nCONSTRAINTS\t0\nbtree_gist\t1\nGiST\t0\nCHECK\t0\n:SQL\t1\ndatevalue\t1\nMarch\t0\n7:04:28\t0\nPM\t0\nGMT-07:00\t1\n=DATEVALUE(B26)\t1\nGert\t0\ndate/time\t0\nGMT\t0\nco-erce\t0\n=LEFT(B26,FIND(\"GMT\",B26)-1)+0\t1\nm/d/yy\t1\nhh:mm\t1\nc++11\t1\nseed\t0\nexamples/sites/articles\t0\ncryptography\t0\nsuspicion\t0\nstd::mt19937\t1\nstd::default_random_engine\t1\naccepts\t0\nstd::random_device\t1\ndestroy\t0\nunnecessarily\t0\nlibc++\t1\nstd::fopen(\"/dev/urandom\")\t1\ncosts\t0\nmicrosoft\t0\ncrypto\t0\nnegligible\t0\nties\t0\nmandated\t0\nmt19937\t1\ncross-platform\t0\nconfident\t0\ncontrast\t0\nopaque\t0\nacquired\t0\nseeds\t0\nacts\t0\ncryptographic\t0\nsadly\t0\ncorrespond\t0\n/dev/random\t1\n/dev/urandom/\t1\nMSVC\t0\nmingw\t1\ncross-compile\t0\nentropy\t0\nseeding\t0\ntime(NULL)\t1\ncrappy\t0\nsynthesize\t0\nUnknown\t0\nPseudo-randomic\t0\nDeterministic\t0\n16/8/4/2\t0\nsetContentView(int)\t1\naddView(View)\t1\nremoveView(View)\t1\nexcellent\t0\nCanvas\t0\nclassifier\t0\nweka\t0\n:java\t1\n-classpath\t1\nweka.jar\t1\nweka-src.jar\t1\nweka.gui.GUIChooser\t1\nclassifiers\t0\nC:/..\t1\nc:/.../weka.jar\t1\nneeeded\t0\nscript/batch\t0\nMemoryStream\t1\nsecure\t0\nMemory\t0\nPCI\t0\nattacks\t0\nnumerical\t0\noccurrences\t0\n2041\t0\n318\t0\n358\t0\n865\t0\n1818\t0\n920\t0\n898\t0\n470\t0\n725\t0\n114\t0\n56\t0\n55\t0\nPrinciple\t0\nNodeJs\t0\nExtra\t0\n1-10000\t0\nlinear\t0\ntranslating\t0\nself-explanatory\t0\nto_array()\t1\nsoft\t0\n->find(true)\t1\norder())\t1\n70\t0\n99999\t1\nin_array\t1\ntweaks\t0\nFeel\t0\nhttp://codepad.viper-7.com/INvSNo\t0\n285\t0\nDetailed\t0\nusernames\t0\npasswords\t0\ncouchdb\t1\nanyanything\t0\nrecieve\t0\nJWT\t0\nhttps://github.com/dmunch/couch_jwt_auth\t0\nCouchDB\t0\nusername/password\t1\nverifies\t0\nintegrity\t0\nHS256\t0\nfrequently\t0\nStaff\t0\nstaff\t0\nCredential\t0\nadds/edits\t0\npartialview\t1\nhid7\t0\nmess\t0\nreinventing\t0\ninstinct\t0\nforbids\t0\nload/save\t0\nlosing\t0\nHTTPPOST\t1\nGROUP_CONCAT\t1\nMySql\t0\nAggrigate\t1\nfuncton\t0\ncocating\t0\nmurows\t0\ndistinct/Unique\t0\nBASIC_SKILL2\t1\nBASIC_SKILL1\t1\npushing\t0\nbys\t0\nsubselects\t0\nXMLELEMENT\t1\nelided\t0\nclarity\t0\nXMLQUERY\t1\nXSLTRANSFORM\t1\ntpl\t1\ndisplayfield\t1\ntextarea\t1\nrowexpander\t1\nXTemplate\t1\nhttps://fiddle.sencha.com/#fiddle/14sf\t0\nhttps://fiddle.sencha.com/#fiddle/14t7\t0\nsucess\t0\nunsuccessfully\t0\nDisplay\t0\nresolving\t0\nrenderer\t1\nhttps://fiddle.sencha.com/#fiddle/14il\t0\nmongoDB\t1\nsucceeded\t0\no/p\t0\nPrism\t0\n2.2\t0\ndemand\t0\nondemand\t0\nxaml\t1\nModuleManager\t1\nprism\t0\ncodeplex\t0\npan\t0\nhttp://compositewpf.codeplex.com/Thread/View.aspx?ThreadId=47957\t0\nFileDownloader\t1\nFileDownloaderWithProgress\t1\nWebClient\t1\nfires\t0\nDownloadProgressChanged\t1\nIFileDownloader\t1\nShowing\t0\nDELETE\t0\nhttp://localhost:1693/Product/Delete?id=16\t0\n/Product\t0\nDelete\t0\nWebAPI\t1\n.delete\t1\n$http\t1\nfoo-tables\t1\ntoggle\t0\n$('.footable').footable({})\t1\nun-rendered\t0\nFooTable\t1\n2.0.3\t0\njQuery-1.11.1\t1\nv1.11.0\t1\n2014-06-26\t1\n46.0.2490.80\t1\nfootables\t0\nfootable\t0\nstampede\t0\n;¬)\t1\nSynopsis\t0\ndraft\t0\nConcept\t0\nscrollable\t0\ndirections\t0\nauto-scrolls\t0\nfinite\t0\nearliest\t0\ncollapses\t0\nJuly\t0\n2011\t0\nscroller\t0\npulls\t0\nspans\t0\ncaption\t0\nCappuccino\t0\nCappuccino/Cocoa\t0\nThoughts\t0\nSplitView\t1\ndivider\t0\nsubview\t1\nsufficiently\t0\nCPView\t1\ndrawRect\t1\nCPControl\t1\nCPBox\t1\nsetBackgroundColor\t1\nmouseDown\t1\nCPScrollView\t1\nSynchronise\t0\nCPTableView\t1\nScrolling\t0\nscrollToPoint\t1\ncandidates\t0\n40\t0\nsubjects\t0\ndegree(degcode,name,subject)\t1\ncandidate(seatno,degcode,name)\t0\nmarks(seatno,dedcode,mark)\t0\nclairty\t0\nnon-final\t0\net.getText().toString()\t1\nformatted\t0\nDoor\t0\ntreasure\t0\nDeck\t0\nliberty\t0\ndoor\t0\nxeditable\t1\ndecrease\t0\nbothered\t0\nus-ascii\t1\nencoding='us-ascii'\t1\ndiferently\t0\nhttp://msdn.microsoft.com/en-us/library/ms534370(VS.85).aspx\t0\ncovers\t0\nLogger\t0\nlogger.js\t1\nstartAdminInterface.js\t1\nenormous\t0\nprogramatically\t0\npreserve-order\t0\nTestNG.XML\t1\nachive\t0\nTestNG.XMl\t1\nsetTestNames\t1\nA.class\t1\n@Test\t1\ntestcases\t0\nTestng\t0\ntestNg\t1\nannotatios\t0\ntestng.xml\t1\nIMethodInterceptor\t1\nwindows/dialogs\t0\nfrustration\t0\nstudies\t0\naccessibility\t0\nmodals\t0\ngalleries\t0\nstandpoint\t0\nstartling\t0\nboxes\t0\ncohesive\t0\nacknowledge\t0\nreaders\t0\ncombat\t0\ndegrade\t0\ngracefully\t0\nthemed\t0\nlayered\t0\nunavailable\t0\nModal\t0\nimmune\t0\nblockers\t0\nNon-modal\t0\nnon-modal\t0\nIMHO\t0\nnarrow\t0\ninappropriately\t0\n\\main\\resources\\wsdl\\\t1\nWeblogic\t0\n12C\t0\nCammel\t0\n2.18.3\t0\nRouteBuilder\t1\nwsdl2java\t1\nMention\t0\n.Show\t1\nSalesView.xaml\t1\nControl(WPF)\t1\nDashboard.xaml\t1\nApp.xaml\t1\nhosting\t0\nSimplest\t0\ncontroller/view\t0\nvm\t0\nDom\t0\n$(\"form[action='/haters']\")\t1\nhttp://codepen.io/marc313/pen/uphiv\t0\nDeryck\t0\nact\t0\nMarkup\t0\n.eq()\t1\nrefers\t0\n$('input[type=submit'])\t1\nsystemically\t0\nfor()\t1\nwhile()\t1\neq(0)\t1\n$('input[type=submit]').length)\t1\nalert()\t1\nreimplementing\t0\nmousePressEvent\t1\ncue\t0\nbg\t0\nQStyleItemDelegate\t1\nPOS\t0\ntagger\t0\n3.7.0\t0\nconfig/modules.config.php\t1\nautoloader\t0\nZF3\t1\nZend\t0\nInstaller\t0\nmodules.config.php\t1\nextra.zf.component\t1\ncomposer.json\t1\n\\\\Form\t1\nSkeleton\t0\nHttpSession\t1\njsf\t0\ncountdown\t0\nchronometer\t0\ninvestigating\t0\nNodaTime\t1\nLocalDate\t1\nBCL\t0\nDateTime/DateTimeOffset\t1\nambiguous\t0\nYYYY-MM-DD\t1\ndeserialize\t1\nLocateDate\t1\n1970-01-01\t1\nPeopleController.cs\t1\nGlobal.asax.cs\t1\nJanuary\t0\n1970\t0\nStepping\t0\nserialized\t0\nbinder\t0\nbinders\t0\nNoda\t0\nserialziation\t0\nUIButtons\t1\nswitches\t0\nfinger\t0\nNSLogs\t1\ncellForRowAtIndexPath\t1\nUIButton\t1\ntableView:cellForRowAtIndexPath\t1\nIB\t0\nre-read\t0\ndeep-link\t0\nIntent\t0\nmute\t0\nmicrophone\t0\nFMIS\t0\ndo-able\t0\nNetConnection\t0\npublishes\t0\nNetStream\t0\nFMS\t0\nNetStream.send()\t1\nsubscribing\t0\ndisplay/hide\t0\nsubscriber\t0\ntoggleAwayImageDisplay\t1\nError::raiseNotice()\t1\nerror_reporting\t1\nE_ALL\t1\nE_DEPRECATED\t1\nhttp://php.net/manual/en/function.error-reporting.php\t0\nerror.php\t1\ntextbox1\t1\nVB.NET\t1\nwebform\t0\nseats\t0\n11/12/2010\t0\nseat_select\t1\n13/12/2010\t0\nCode-behind\t0\nSystem.Data.DataSetExtensions.dll\t1\nSystem.Core.dll\t1\nsmiley\t0\ntouches\t0\n@Benito\t0\n-Bertoli\t1\nRadioButton\t1\nradiobutton\t1\ncustom_btn_radio.xml\t1\nandroid:button\t1\n@btmImage\t1\nVF\t0\npageblock\t0\naint\t0\nc:batchDetailsComponent.BatchJobDetails\t1\nvisualforce\t0\n<apex:component\t1\naccess=\"global\"\t1\ncontroller=\"BatchOpportunityDetailsExtension\">\t1\nmongo-hadoop\t1\nwget\t1\nhttps://repo1.maven.org/maven2/org/apache/commons/commons-math3/3.4.1/commons-math3-3.4.1.jar\t0\nscaffolding\t0\nartisan\t0\nAuth\t0\npassword-reset\t0\nManuel\t0\npassword_resets\t1\n\\config\\auth.php\t1\nCustomerID\t1\nnon-null\t0\nRevision\t0\nphpMyAdmin\t1\nburied\t0\nhttp://dev.mysql.com/doc/refman/5.7/en/show-triggers.html\t0\nhttp://dev.mysql.com/doc/refman/5.7/en/trigger-syntax.html\t1\nUITableViewStyleGrouped\t1\nrounded\t0\nBorderless\t0\nRounded\t0\ndblWordFreqByCluster\t1\n<KeyValuePair<string,\t1\ndouble>>\t1\ntodo\t0\n:complete\t1\nlink_to\t1\nResources\t0\nmigrated\t0\n:completed\t1\nsimple_form\t1\ntodo(edit)\t1\nPATCH\t0\nrockstar\t0\nclassical\t0\nUX\t0\nfoundation\t0\nenhance\t0\nmeasurements\t0\n3-second\t0\nserie\t0\naverages\t0\nperiod.apply\t1\nxts\t1\ndat\t0\ncalculates\t0\ntimestamps\t1\nalign.time\t1\naggregate.zoo\t1\ndec\t0\n=\".\"\t1\nread.zoo\t1\nomitted\t0\nrails-api\t1\nng-resource\t1\npost=>\t1\n\"kind\"=>\"GGG\"\t1\n400\t0\nBad\t0\nfactory\t0\ndeclerations\t0\ndeclarations\t0\nC89\t1\ndollar\t0\nZ\t0\ncrude\t0\n$line\t1\nFibonacci\t0\ninstantaneously\t0\ncodereview\t0\nGordan\t0\nDavisson\t0\n@thatotherguy\t1\nWords.txt\t1\nsteal\t0\nFD\t0\n#3\t1\n-u3\t1\nsubprocesses\t0\nwc\t0\n${letter[i]}\t1\n370,101\t0\n7.8\t0\nmicroseconds\t0\nalphabet\t0\nPrints\t0\n1:55\t0\n580\t0\nms\t0\ngluing\t0\nEasier\t0\nlydskrift\t1\nSurprisingly\t0\nDATA\t0\nmu\t0\n<FILE>\t1\nwhile(\t1\nFILE\t0\nif(\t0\nm/\t1\n(.+)/)\t1\n$_\t1\nwhile(1)\t1\nFurthermore\t0\nRoutes\t0\nphp.ini\t1\n<ul></ul>\t1\n/<li\t1\n[^>]*>.*<\\/li>/g\t1\nhttps://regex101.com/r/KXEkJz/1\t0\n[^>]*>[\\s\\S]*<\\/li>/g\t0\ngiant\t0\n[^>]*>.*<\\/li>\t0\n\\n?\t1\n<li>\t1\nFirstClass\t1\nThanking\t0\nanticipation\t0\nintroduces\t0\ncoupling\t0\nuserNameFld\t1\nshowDialog\t1\nTableClass\t1\nprogrammatically\t0\nKeyboard\t0\nkeydown/keyup/keypress\t1\nkeystroke\t0\n←\t0\n→\t0\nABCDEF|\t1\nhttp://jsfiddle.net/Vsafv/\t0\nviewing\t0\nhttp://blog.josh420.com/archives/2007/10/setting-cursor-position-in-a-textbox-or-textarea-with-javascript.aspx\t0\n37\t0\n39\t0\nbounding\t0\nscene\t0\nQGraphicsItems\t1\nQGraphicsItem::ItemIgnoresTransformations\t1\nQGraphicsItem::deviceTransform()\t1\nQGraphicsView::viewportTransform()\t1\nInverting\t0\nvp_trans\t1\n2.0.4\t0\nTwitter\t0\nshadow\t0\nnav-bar\t1\n2.2.1\t1\nnavbar\t1\n2.1.2-WIP\t1\nradius\t0\nmiles\t0\nkm\t0\nmodule_name\t1\nestimated\t0\nwinpython\t1\nhttp://hastebin.com/qiconesoje.apache\t0\nvirtualenv\t1\nretain\t0\nstands\t0\nSystem.arrayCopy\t1\nsecondArray\t1\nlooping\t0\nrefid\t1\nwriteXML\t1\nhttp://msdn.microsoft.com/en-us/library/system.data.datatable.writexml.aspx\t1\nregex.syntax\t1\nsimplified/optimized\t0\nfmt.Println(p)\t1\nregexp\t1\nsyntax.Regexp\t1\nSub\t0\nsubexpressions\t1\ninspecting\t0\nOp\t0\nRune\t0\njade\t0\nJade\t0\nSystem.out.println(\"something\")\t1\ncertificates\t0\ninsanely\t0\nWelcome\t0\ninputFromKafka\t1\nKAFKA\t0\n9c8f09e6-4b28-5aa1-c74c-ebfa53c01ae4\t0\n1437066957272}\t1\nSending\t0\nKafka\t0\nKafkaHeaders.MESSAGE_KEY\t1\nProducer\t0\nKafkaProducerMessageHandler\t1\nmessageHeaders\t1\npayload\t0\nmessageKey\t1\nKafkaHighLevelConsumerMessageSource\t1\nKafkaMessageDrivenChannelAdapter\t1\n<int-kafka:message-driven-channel-adapter>\t1\nstruggled\t0\ncalculator\t0\nflexbox\t1\nflex-direction\t1\ncodepen.io\t0\nmodern\t0\nviable\t0\nhttps://codepen.io/anon/pen/VjOKGX\t0\nuneven\t0\nthere.\t0\nflex-wrap\t1\nsiblings\t0\nweaker\t0\nsub-section\t0\n.long\t1\n33.33\t0\nflex-grow\t1\nflex-shrink\t1\nflex-basis\t1\n66.67\t0\nre-declare\t1\nintact\t0\nprevails\t0\na.Lat\t1\nAWE_Propvids\t1\ncorrelated\t0\nHAVING\t0\nIN\t0\ncheckboxTree\t1\ncheckboxtree\t1\n4000\t0\ncheckBoxTree.getCheckBoxTreeSelectionModel().setDigIn(true)\t1\nwelcomed\t0\nJQM\t0\nmigration\t0\nPhoneGap\t1\njqm\t0\nbattling\t0\nwww.site.co.za/mens-clothing-3\t1\nwww.site.co.za/mens-clothing\t1\nhtacess\t1\nmens-clothing\t0\nobviosuly\t0\nhttp://www.magentocommerce.com/wiki/modules_reference/english/mage_adminhtml/urlrewrite/index\t0\nmany-to-many\t1\nAirports\t0\nAeroplanes\t0\nshouldn't\t0\nairport\t0\nplanes\t0\nairports\t0\nareoplanes\t1\nPrimary\t0\nairports_and_planes\t1\nrepsective\t0\nexceptions/crashes\t0\nCSScript\t0\nCS-Script\t0\nCommand-line\t0\ncscs.exe\t1\n/dbg\t1\n/d\t0\n.exe\t0\n.dll\t0\nTest.cs\t1\nTest.exe\t1\nTest.pdb\t1\nDebugBuild\t1\nEvaluatorConfig\t1\nBUt\t0\nLoadCode\t1\nLoadXXX\t0\nprettier\t0\nimportrange\t1\nonedit\t0\nonEdit\t1\nOnEdit\t1\nTime-driven\t0\n/text\t1\n\\n[\\t].\\n[\\t]\t1\negrep\t1\ntext/\t0\n^($/p\t1\nyourfile\t1\n-AN\t0\nasp\t0\nXLSX\t0\nXLS\t0\nread/edit/create\t0\nOpenXML\t1\nhttp://msdn.microsoft.com/en-us/library/bb448854%28office.14%29.aspx\t0\nread+write\t0\nhttp://www.codeproject.com/KB/office/OpenXML.aspx\t0\nPDFs\t0\nformulas\t0\ncommercial\t0\nClosedXML\t1\nEPPlus\t0\nSpreadsheetGear\t1\nLibXL\t0\nsever-scenarios\t0\nExcelDataReader\t1\nXLS/XLSX\t0\nReader\t0\nRia\t0\nSL\t0\nStartLongOperation\t1\nInvoke\t0\nThread.Sleep\t1\nGetStatus\t1\nserverside\t0\nClient-side\t0\nGetStatusCompleted\t1\nMeaning\t0\nFiddler\t0\nsystem_name\t1\narrival_time\t1\nJsp\t0\ndiv1\t1\nposition:absolute\t1\nprintout\t0\nDirectoryStream\t1\nFiles.newDirectoryStream\t1\nNIO.2\t0\n:hidden\t1\nClientIDMode\t1\nangular-cli\t1\n16.04.2\t1\nLTS\t0\nangluar-cli\t1\nng\t1\n@angular\t1\n/cli\t1\n@latest\t1\nglobally\t0\nFixing\t0\nfour-letter\t0\nlength-delimited\t1\nTreeSet\t1\n.toUpperCase()\t1\n.toLowerCase()\t1\n0.45\t0\n1.30\t0\nTimeSerial\t1\n@date\t1\nJbuilder\t0\nActiveModel\t1\nSerializers\t0\nNet::HTTP\t1\nCreate-Read-Update-Destroy\t1\nURLs\t0\nauto-magically\t0\nRecord\t0\nActiveResource-based\t0\nActiveRecord\t1\ngaining\t0\nsplitting\t0\ncompelling\t0\nWorkMail\t0\njohn@mycompany.com\t1\nhttps://mail.mycompany.com\t0\nhttps://mycompany.awsapps.com\t0\nsub-domain\t0\nmail.mycompany.com\t1\nmycompany.awsapps.com\t1\nadmit\t0\nmywebmail.mydomain.com\t1\nmyaws.awsapps.com/workmail\t0\nCNAME\t0\nmyaws.awsapps.com\t1\nhttps://console.aws.amazon.com/cloudfront/\t0\nDistribution\t0\nOrigin-Domain\t0\nOrigin-URI\t1\n/workmail\t1\nScroll\t0\nSave\t0\n10-20\t0\nCloundFront\t1\nYourDomainName\t1\nbehaviours\t0\nKind\t0\nHeider\t0\nSati\t0\n$postid\t1\nZend_Db_Select\t1\ndropped\t0\nplaceholders\t0\nhttp://framework.zend.com/manual/en/zend.db.statement.html\t0\ndb->query\t1\nquery()\t1\nsanitization\t0\nsub-directories\t0\n1.0.0d0\t1\nd(ev)\t1\na(lpha)\t1\nb(eta)\t1\nf(inal)\t1\n16.0.0a2\t0\n16.0.0d24\t1\nalphabetic\t0\npriority\t0\ncredited\t0\nAacini\t0\naschipfl\t0\nAmpscript\t0\nGetContent\t1\nLOY\t0\nIndexOf()\t1\nSFMC\t0\nSF\t0\nhttp://salesforce.stackexchange.com\t0\nyeah\t0\nmaby\t0\nREALLY\t0\nMonoTouch\t0\nMonoMac\t0\nGithub\t0\npromising\t0\n2010/2011\t0\nAppStore\t0\nalternatives\t0\nbeside\t0\nTrackbar\t0\nWinforms\t1\ntrackbar\t1\nleft/right\t0\nopposite\t0\nup/down\t0\nPageUp/PageDown\t1\ncounter-intuitive\t0\nconsequently\t0\nArrow\t0\nUAC\t0\nund\t0\nPgUp\t1\nergonomics\t0\nHuman\t0\nFactors\t0\nErgonomics\t0\nthumb\t0\nlaid\t0\nWM_HSCROLL\t1\nWM_VSCROLL\t1\nscrollbars\t1\nupwards\t0\nleftwards\t0\nmovement\t0\nrightwards\t0\nprinciples\t0\nOrientDB\t0\ndisjunctive\t0\nStudent\t0\nWorker\t0\nAlberto\t0\nWorkingStudent\t1\ngraduates\t0\nMoving\t0\nconsiderable\t0\nSpouse\t0\nNet::SMTPAuthenticationError\t1\nenv\t0\n2-factor\t0\nautt\t0\nsmtp\t0\nconfig/development.rb\t1\nconfig/production.rb\t1\nmailer\t0\nPushWatir::StackoMailer.success_mail.deliver_now\t0\nBig\t0\nAllow\t0\nhttps://support.google.com/accounts/answer/6010255\t0\nLemonstand\t0\nshop\t0\nsells\t0\nebooks\t0\ncharge\t0\n$7\t1\n$20\t1\n$14\t1\nbuilt_in\t0\nupdate_shipping_quote\t1\nnon-ebooks\t0\nhttps://v1.lemonstand.com/api/event/shop:onupdateshippingquote/\t0\n($non_ebook_subtotal)\t1\n$shipping_option\t1\n1.calling\t1\n2.ajax_js2.php\t1\nscript.What\t0\n<script>\t1\ntest()\t1\nevil\t0\nbrazil\t0\nkeystore\t1\njre7/bin\t1\n\\Java\\jdk1.7.0_51\\bin\t1\nwriten\t0\nportuguese\t0\nInforme\t0\nsenha\t0\nárea\t1\narmazenamento\t1\nchaves\t0\nencrypt\t0\nPasswords\t0\nshadowed\t0\nstorepass\t1\nkeypass\t1\nparametrs\t1\npausing\t0\nRef\t0\nhttps://msdn.microsoft.com/en-us/library/d00bd51t(v=vs.110).aspx\t0\npauses\t0\nNodeJS\t1\nHapi\t0\n('/')\t1\n/public/index.html\t1\nPipeline\t0\ndacpacs\t0\nect\t0\nPipelines\t0\nrepo\t0\nexternally\t0\ncapability\t0\ncompliance\t0\nfirm\t0\nPublish\t0\nArtifacts\t0\nFolder\t0\nC:\\project\\a\t1\nContents\t0\nwildcards\t0\n**\\*\t1\nsubfilder\t0\n$(build.artifactstagingdirectory)\t1\n_GET\t1\nRegardless\t0\nhttp://www.example.com/page.php#tabname?color=red\t0\nhttp://www.example.com/page.php?color=red#tabname\t1\nDllImport\t1\nFile_name.xls\t1\nVerified\t0\nBit\t0\napplication/ms\t0\n-excel\t1\ncrushing\t0\nShot\t0\nDark\t0\nAssist\t0\nXamarin.Forms\t1\nUWP\t0\nnon-void\t1\ndo.\t0\nReplaced\t0\nblgz.co\t0\nsitting\t0\npinpoint\t0\n=(\t1\nreformat\t0\n#content\t1\n-inner\t1\nsidebar-second\t0\nlayout.\t0\nresults.\t0\nFetching\t0\nbtnTester\t1\nbacking\t0\np:message\t1\n:\\\t0\ngrowl\t0\np:messages\t1\ninferred\t0\nsearches\t0\nCalendar\t0\ntimeMin\t1\ntimeMax\t1\nsingleEvents\t1\norderBy\t1\nhttps://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\t0\n8/2008\t0\nMastoll\t0\nv3\t0\nhttps://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&\t0\nstart-min\t1\nstart-max\t1\nfutureevents\t1\nhttps://developers.google.com/google-apps/calendar/v2/reference?hl=de&csw=1#Parameters\t0\ntrials\t0\noffset\t0\nhttps://developers.google.com/google-apps/calendar/concepts\t0\nhttps://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\t0\nofferings\t0\nOfferings\t0\nJAXB\t1\nsub-Class\t0\nModifiers\t1\nOrdering\t0\nRules\t0\nOffering\t0\nanotations\t0\noffering\t0\nmodifiers\t0\n@XmlTransient\t1\n@XmlElement\t1\nhttp://www.silverlightshow.net/items/Silvester-A-Silverlight-Twitter-Widget.aspx\t0\nsilverlight\t0\nFeb\t0\n201\t0\nhttp://ie.microsoft.com/testdrive/Browser/ActiveXFiltering/About.html\t0\nUniversal\t0\nDEP0700\t0\nsub-error\t0\nwell-known\t0\nGUID\t0\nblah\t0\nAppxManifest\t1\nopening/editing\t0\nApxManifest\t1\ndesigner\t0\nhttp://ms-iot.github.io/content/en-US/win10/samples/SerialSample.htm\t0\nappxmanifest\t1\nserialcommunication\t0\neditting\t0\nMs\t0\ncobbled\t0\n429\t0\nactivex\t0\nADO\t0\nFollowHyperlink\t1\nhighlighting\t0\nhighlight\t0\nbaz\t0\n<return>\t1\nIncSearch\t0\n:set\t1\nhlsearch\t0\nincsearch\t1\nstreams\t0\ngetline()\t1\nuserStringPrompt()\t1\nconsonants\t0\nvowels\t0\nfunction/method\t0\nE\t0\nuserStringPrompt\t1\ncapturing\t0\ngetline(cin,\t1\nstring)\t1\nguidance/hints\t0\nF5\t0\nnslayoutconstraints.the\t1\ncollectionview\t1\nview.When\t0\n***\t0\n0x27126d67\t1\n0x34c61c77\t1\n0x27047237\t1\n0x2704701b\t1\n0xe1333\t1\n0xe0bc1\t1\n0x1c6ca7\t1\n0x1d24e1\t1\n0x9b59cb\t1\n0x9b59b7\t1\n0x9b9411\t1\n0x270ecc41\t1\n0x270eb361\t1\n0x27038981\t1\n0x27038793\t1\n0x2e3e8051\t1\n0x2a62a981\t1\n0x1d72b5\t1\n0x351fdaaf\t1\nabi.dylib\t1\nterminating\t0\nuncaught\t1\nNSException\t1\nNIL\t0\ntablview\t1\nIBOUTLET\t0\nstoryboard.When\t1\nruns.but\t0\ndata.Can\t0\nviewDidLayoutSubviews\t1\nsynthesizing\t0\nuser_agent\t1\nreferrers\t0\nJavaScript.I\t0\ncreative\t0\nClean\t0\n/out/\t1\ndocpad\t1\n--env\t1\ncontent.html\t1\n/content/index.html\t1\nbehavious\t0\nsight\t0\nglitch\t0\nIOS\t0\n1.Open\t1\n2.Select\t0\nproject->Targets->your\t1\nproject->Search\t1\nDeployment\t0\n7.0\t0\n3.Also\t0\nLatest\t0\nproject->Build\t1\nSettings->Base\t1\nit.then\t0\nnobody\t0\ncool.\t0\nOSResultStruct\t1\nosedition\t0\nOSResultStruct.OSEdition\t1\nimplimented\t0\nReflection\t0\ninstantiable\t0\naccessor\t0\nType.GetProperty\t1\nIgnoreCase\t1\nGetValue\t1\nupper1\t1\nupper2\t1\nupper3\t1\n$('#next')\t1\n.click\t1\nwaits\t0\nattr\t1\nspecialiased\t0\nexcusable\t0\nBencoding\t0\nBitTorrent\t0\nBItem\t1\nDecode(string)\t1\nBencoded\t0\nBString\t1\nBInteger\t1\nBList\t1\nBDictionary\t1\nthis[int]\t1\nthis[string]\t1\naccessors\t0\narray-like\t0\nqualities\t0\nhorrific\t0\nOuch\t0\neyes\t0\nWow\t0\nhey\t0\nMUCH\t0\nsell\t0\nsoul\t0\nimplying\t0\ntorrent[\"info\"][\"files\"][0][\"length\"]\t1\ntorrent[\"announce-list\"][0][0]\t0\n90%\t1\ntorrent\t0\nGenerics\t0\natleast\t0\ndot-points\t0\nBItems\t1\nindexers\t0\nindexer\t1\nderive\t0\nBCollection\t1\nmile\t0\nReadibility\t0\nreusability\t0\npointe\t0\nCognos\t0\nCube\t0\npublished\t0\nNOTE-Cognos\t1\nunsupported\t0\nfeasible\t0\nd:\\Cognos\\PowerCubes\\Build\t0\nd:\\Cognos\\PowerCubes\\Live\t0\nd:\\Cognos\\PowerCubes\\Build\\yourcube.mdc\t0\n/Y\t1\n/B\t0\nmycube.mdc\t1\ndiffrents\t0\n.Hence\t0\nTypeDescriptor\t1\nSystem.ComponentModel\t1\nTypeConverter\t1\nnon-trivial\t0\nICustomTypeDescriptor\t1\nCustomTypeDescriptor\t1\nPropertyDescriptor\t1\nper-instance\t0\nscenarios\t0\nC++11\t1\nstd::cbegin()\t1\nGCC\t0\n5.4.0\t1\n/usr/include/c\t1\n/5/bits/range_access.h\t1\nstd::begin()\t1\ncommittee\t0\nunlimited\t0\nreasonably\t0\nC++14\t1\nstd::make_unique\t1\nproposal\t0\nfavour\t0\nN167\t0\nattitude\t0\nDefect\t0\nReport\t0\n2128\t0\nadopted\t0\n2.1\t0\nis_float\t1\nMatches\t0\ncommas\t0\n[0-9,]+\t1\n(?:\\.\t1\n1+\t0\nhyphens\t0\n\\d+\t1\n\\d\t0\nmetacharacter\t1\ndenote\t0\nbonus\t0\nexponent\t0\nregular-expressions.info\t1\n-+\t1\n?)\t1\nnon-capturing\t0\n/i\t0\ninsensitive\t0\nmodifier\t1\n\\d+`\t1\nsize(y,\t1\ncorrepond\t0\ny(i)\t1\nOctave\t0\n3.6.3\t0\nbroadcasting\t0\ntranspose\t0\ntransposed\t0\ny==(1:3)')\t1\nuniform\t0\nPicture00000001.jpg\t1\n00000001\t1\npark\t0\nbread\t0\nbutter\t0\ngas\t0\nOCD\t0\nFilenameWithOutExtension\t1\nf.DirectoryName\t1\nf.BaseName\t1\nbasename\t1\nBasename\t1\nFileInfo\t1\nCommunity\t0\nshots\t0\nJoomla3.x\t1\n1.Customize\t0\ntemplateDetails.xml\t1\nnewposition\t1\n2.create\t1\ntemplates/your_template/index.php\t1\nextensions->modules\t1\nPYTHON\t0\nHDD\t0\nprogrammes\t0\nNTFS\t0\nfat32\t0\nmanuals\t0\nsys.path\t1\npermanently\t0\nIDLE\t0\nirritation\t0\n/home/me/mypy\t1\nhttp://www.johnny-lin.com/cdat_tips/tips_pylang/path.html\t0\nchromebook\t0\nmagnifying\t0\nwherever\t0\ntext/images\t0\nglass\t0\nmanifest.json\t1\nhttp://www.supertecho.com/background.html\t0\nmagnification\t0\npopup.html\t1\nbackground.html\t1\ninjected\t0\nhttp://code.google.com/chrome/extensions/content_scripts.html\t0\nsubmit.php\t1\nhighcharts\t1\nXX\t0\nconsideration\t0\nAmpserand.js\t1\nteams\t0\nMoreover\t0\nhttp://jsfiddle.net/ma50685a/5/\t0\nif-else\t1\nOkay\t0\nIIS\t0\nvolatile\t0\nVStudio.NET\t1\nelevated\t0\nHKEY_LOCAL_MACHINE\\Software\t1\nregedit\t1\nhives/keys\t0\nHalf\t0\nportions\t0\nutterly\t0\n=)\t0\nremotely\t0\nRegEdit\t1\ntouble\t0\nRegEdt32.exe\t1\nConnect\t0\navd\t0\n--*\t1\nContent-Disposition\t1\nform-data\t1\nvalue1\t1\nvalue2\t1\n1.jpg\t1\nContent-Type\t1\nimage/jpeg\t1\n.jjt\t1\nfile.I\t0\njjtThis.setName()\t1\njjtThis.type\t1\njjtThis.setLength()\t1\njjtThis.correlationName\t1\njjtThis.setScale()\t1\njjtThis.setPrecision()\t1\njjtThis.add()\t1\njjtThis.tableName\t1\njjtThis.name\t1\njjtThis.position\t1\njjtThis.length\t1\njjtThis\t1\nmeanings\t0\n?..\t0\nhttps://javacc.java.net/doc/JJTree.html\t0\nillustrate\t0\ndisassembler\t0\nbytecode\t0\nhttp://javabytes.herokuapp.com/\t0\nhttp://en.wikipedia.org/wiki/Java_bytecode_instruction_listings\t0\nDisassembled\t0\nStates\t0\nState\t0\nhouston\t0\nTX\t0\nPhoenix\t0\nAZ\t0\nsapply\t1\nstringr::str_extract_all\t1\nstringr::str_extract\t1\ndocker-compose.yml\t1\ncomposition/override\t0\ndocker-compose.prod.yml\t1\ndb_for_development\t1\nShdr\t0\nNEED\t0\nVertex\t0\nShader\t0\n16x16\t0\nmat4\t1\nintelligent\t0\nivec4\t1\nquarter\t0\nthoroughly\t0\nfloor\t0\nmod\t0\nlibary\t0\nstruts\t0\nglassfish\t0\nwebservices\t0\ndelaying\t0\norg.springframework.core.task.TaskExecutor\t1\ncorrect/best\t0\ndiscouraged\t0\nspawning\t0\nundeploy\t1\ndisposal\t0\nFormData\t1\nprocessData\t1\ninevitable\t0\nIllegal\t0\nInvocation\t0\nreside\t0\nappicon\t0\nhttps://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/\t0\nindexed\t0\nassignments\t0\nSTL\t0\n_assignments\t0\n_counts\t0\nspaced\t0\nreserve\t0\nentityManager.fetchMetadata()\t1\nfetchMetadata()\t1\nanywhere.\t0\nBreeze\t0\nbreeze\t0\nentityManager\t1\nbreeze.EntityManager('api/Db')\t1\napi/db\t0\nMetadata()\t1\nrepository.Metadata()\t1\n.then(success,failed)\t1\nfull-filled\t0\nmetadataStore\t1\nentitymanager\t1\nPseudo\t0\non-the-fly\t0\nhttp://www.breezejs.com/breeze-labs/breezedirectivesvalidation\t0\nhttp://plnkr.co/edit/lxPAbIJmRaLmyagXQAFC?p=info\t0\nhttp://www.breezejs.com/documentation/metadata\t0\nDeveloper\t0\nWebIDE\t0\nsmartphone\t0\n37+\t0\ndebugg\t0\nusb\t0\ndave\t0\naddFriend\t1\nfirstFriend\t1\ninputted\t0\nrob\t0\nbill\t0\ntravis\t0\nfirstPerson\t1\nEventhough\t0\nPDF-1.4\t1\n<</AcroForm\t1\n<</DR\t1\n<</Font\t1\n<</Helvetica\t1\n220\t0\nR>>\t1\n/ProcSet\t1\n[/PDF\t1\n/Text]>>\t1\n/Fields\t0\nfiled\t0\nJFilechooser\t1\nchoosed\t0\nsay.\t0\nFileInputStream\t1\nFileReader\t1\nversus\t0\nYes/No\t0\nActiveYN\t1\nHide\t0\nshow/hide\t0\nrazor\t0\n{%^$@#)(\t1\ncollation\t0\niddiagrama\t1\nnombre\t1\ntipo\t0\ndescripcion\t1\ncharacteres\t0\nmanuallity\t0\ngoogle-gson\t1\nargue\t0\nDBConnector\t1\nperformDatabaseMethod\t1\nsharedInstance\t1\nperformMethod\t1\nflexigrid\t1\nfancybox\t1\nColorBox\t0\nquerys\t0\nrandomly\t0\nisolate\t0\nflaw\t0\net2\t1\nNumberFormatException\t1\nleftString\t1\nfloat/Integer\t1\nDLR\t0\nmaintained\t0\nsuperseded\t0\n4.0\t0\nApril\t0\nmsdn\t0\noverview\t0\nio\t0\ntypescript\t1\nthis.s\t1\nthis.io\t1\nSwitching\t0\nthis.s.on\t1\nthis.io.on\t1\nshapes\t0\nViews/Layouts\t0\nMain.java\t1\npreprocess\t0\nTookit\t0\nONLY\t0\nWHOSE\t0\nTARGET\t0\nBROWSER\t0\nNEEDS\t0\nAnwser\t0\nWHAT\t0\nCOULD\t0\nWE\t0\nSUGGEST\t0\nfullfill\t0\nanalises\t0\nhypothetical\t0\nMootools\t0\nPrototype\t0\nsayHello\t1\npeculiarities\t0\nre-creating\t0\nshenanigans\t0\nnick\t0\nprofessionally\t0\n1996\t0\ntempted\t0\napparent\t0\nwell-documented\t0\nNetscape\t0\nNavigator\t0\nscream\t0\n;-)\t1\nToolkit\t0\nAOL\t0\nserved\t0\ncacheable\t0\njQuery.js\t1\neliminated\t0\nproblematic\t0\ninfrastructure\t0\nacej\t1\ncloser\t0\nstd::vector<char>\t1\ninfinity\t0\nunrelated\t0\nsourceForge.net\t0\ngiga\t0\n510199112\t1\ntime-out\t0\nbutdo\t0\nstaying\t0\nentails\t0\nexited\t0\nonBeforeUnload\t1\nClosing\t0\nExiting\t0\nNavigating\t0\nRefreshing\t0\nslideDown\t1\nSlideUp\t1\nslide\t0\n#box\t1\nslided\t0\n.slideToggle()\t1\n$(\"#box\").slideToggle(\"slow\")\t1\nserver-client\t0\nRadmin\t0\nnetsupport\t0\nports\t0\nex:9090\t1\ncmdClient\t1\n11589then\t1\ndataClient\t1\n1800\t0\nhappene\t0\ntransfers\t0\nCmdPort\t1\nHey\t0\nYYYY\t1\nRoger\t0\n8217\t0\nConnects\t0\nChecks\t0\ntransferred\t0\nSocket.LocalEndpoint\t1\nSocket.SendFile\t1\neffective\t0\nFTP\t0\nbittorrent\t0\nextreme\t0\nthrottling\t0\nBatch\t0\nfilename+size\t1\nRECIEVE\t0\nIMAGE\t0\nhttp://csharp.net-informations.com/communications/csharp-multi-threaded-server-socket.htm\t0\n/abc/home\t1\n/home\t1\nsubpaths\t0\nabc/parent/child\t1\n/parent/child\t0\n/:_abc/:parent/:children\t1\n/:_abc/:grandparent/:parent/:children/\t0\nRouter.go()\t1\n/abc/\t1\nundesired\t0\ncomma-separated\t0\nscanFileName\t1\nJlabel\t1\nWait\t0\nConcurrency\t0\nThread.sleep\t1\njavax.swing.Timer\t1\nTimers\t0\nTLDR\t0\nfatal\t0\ncross-native\t0\nreport_times\t1\ngcc.c\t1\nlibiberty\t0\npex_get_times\t1\nDETAIL\t0\nbeating\t0\nNDK\t0\nbinutils\t1\n2.23\t0\n4.70\t0\narm-linux-eabi-gcc\t1\nhello.c\t1\n-o\t1\nExamining\t0\n--disable-build-libiberty\t1\nNookHD\t0\nquestion(s)\t1\nsafely\t0\nhost/target\t0\nll\t0\nhttp://www-gpsg.mit.edu/~simon/gcc_g77_install/build.html\t0\n-g\t1\nLIBCXXFLAGS\t1\nLIBCFLAGS\t1\nLIBCPPFLAGS\t1\nRan\t0\nDESTDIR\t1\n/staging/install/path\t0\ninstall-host\t1\ntarballed\t0\nInternal\t0\ngstreamer\t0\nRerun\t0\nGST_DEBUG\t1\n=\"*\t1\n:2\t0\nfakesink\t1\ncodeblocks\t1\nchangeing\t0\nspeacking\t0\nstructur\t0\n#region\t1\nres.php\t1\nUniversity\t0\nWashington\t0\nthis.value\t1\nfill()\t1\nLIs\t0\nintercept/redirect\t0\nobject/function\t0\nChecking\t0\nredirector\t0\nm_redir.c\t1\nSpecs\t0\nActives\t0\ncomputation\t0\nconflicting\t0\nredirections\t0\ninterests\t0\n66\t0\n3.6.1\t0\nSysListView32\t1\nLVS_OWNERDRAWFIXED\t1\nAllocate\t0\nownerdrawn\t1\nlistitem\t1\nhooking\t0\nLVITEMs\t1\nobligation\t0\nSpecifying\t0\npszText\t1\niImage\t1\nWM_DRAWITEM\t1\nHDC\t1\noutlier\t0\nRealistically\t0\ntowel\t0\nGuys\t0\najax-request\t0\nfoo()\t1\nreurn\t0\ndialog-status\t1\n.hpp\t1\nBuilt\t0\ni686-w64-mingw32\t1\nx86_64-pc-linux-gnu\t1\nVirtualBox\t0\nv4.2.0-r80737\t1\nproxies\t0\nsite/repo\t0\nBridged\t0\nIntel\t0\nPRO/1000MT\t0\nDesktop\t0\nPromiscuous\t0\nDeny\t0\nCable\t0\nConnected\t0\nLAN\t0\nhosts\t0\nhost-only\t0\nscala\t0\nhttp://commons.apache.org/proper/commons-math/userguide/random.html\t0\nbuild.sbt\t1\nsemicolon\t0\nRandomDataGenerator\t1\norg.apache.commons.math3.random.RandomDataGenerator\t1\nSBT\t0\nverbosity\t0\nCentral\t0\ncommons-math\t1\nnowhere\t0\nconvenient\t0\nGoogling\t0\nIPV6\t0\ngeoip\t0\n2001:0db8:0000:0000:0000:ff00:0042:8329\t0\n42540766411282592856904265327123268393\t0\nThanks.\t0\nIPv6\t0\nhttp://lite.ip2location.com/faqs\t0\nnon-homework\t0\nslash-notation\t1\nsubnet\t0\nBitArray\t1\nnumberOfSetBits\t1\nsymmetrical\t0\n255.255.255.63\t1\n255.255.255.252\t1\nnever-ending\t0\ngod\t0\n1111\t0\n1100\t0\n(=\t0\nmangling\t0\n0011\t1\nshifting\t0\nBitConverter.GetBytes\t1\nhigh-order\t0\nlow-order\t0\nreasoning\t0\nprecisely\t0\nleast-significant\t1\n11111000000000\t1\nspring-data-mongodb\t1\nhttp://localhost:8080/document/getByCategory?categories=category1&categories=category2\t1\nVB2010\t0\n0.000\t0\n164.04\t0\nSeemed\t0\nVB6\t0\naccounted\t0\n1.Find\t1\n2.multiply\t1\n10^p\t1\nwacky\t0\nhides\t0\ntext.\t1\n.stop()\t1\nremedy\t0\ndidnt.\t1\n.slideUp\t1\n.slidedown\t1\n.animate()\t1\nIGrouping\t1\nViewPage\t1\nViewData[\"Products\"]\t1\naspx\t1\nJBoss\t0\nhttp://13.10.15.48\t0\nWAR\t0\n/WEB-INF/jboss\t1\n-web.xml\t1\nEAR\t0\ncontext-root\t1\n/META-INF/application.xml\t1\nhttps://community.jboss.org/wiki/HowDoIOverrideTheWebContextRoot\t0\nrootCanvas\t1\nTransforms\t0\nLayoutTransform\t1\ntransforms\t0\nLayoutTranform\t1\nRotateTransform\t1\nTranslateTransform\t1\nMatrixTransform\t1\ntranslations\t0\nWibbs\t0\nremarks\t0\nFrameworkElement.LayoutTransform\t1\nUIElement.RenderTransform\t1\nUIGestureRecognizer\t1\nsliding\t0\nkey-words\t0\nmaxi\t0\nhttps://github.com/iosdeveloper/SlideToCancel\t0\nhttp://denizdemir.com/2011/03/07/animated-slider-iphones-cool-first-impression/\t0\ngesture\t0\nhttp://iphonedevelopment.blogspot.com/2009/04/detecting-circle-gesture.html\t0\nhttp://forum.unity3d.com/threads/13494-Messing-around-with-gestures\t0\nLuck\t0\nSpreadsheets\t0\nSpreadsheet_paul.xls\t1\nSpreadsheet_Nick.xls\t1\n........\t1\nquesions\t0\nwokrbooks\t0\n@dmitry\t0\n-pavliv\t1\nSheets\t0\ncomprehensions\t0\nletterlist\t1\nGives\t0\nandhow\t0\ntypename\t1\nB<T>:\t1\nunqualifed\t0\nB<T>\t1\nqualify\t0\n[basic.lookup.unqual]/8\t0\nbolded\t0\nAdobe\t0\nAcrobat\t0\nJasperReports\t1\n6.3.1\t0\nJRXML\t1\nps1\t0\nunblock\t0\nScott\t0\nHanselman\t0\nstreams.exe\t1\nSysInternals\t1\n@driis\t1\npowershelly\t0\nhttp://social.technet.microsoft.com/Forums/en/winserverpowershell/thread/0b5f1fa6-981e-4696-84bc-b8046564ec8b\t0\njvm\t0\n-client\t1\n-server\t1\ncommand-line\t0\n-Xmx256m\t1\nLaunch\t0\n480\t0\nemulators\t0\nSamsung\t0\nGT\t0\nlaunched\t0\nexplicty\t0\nOverviewMode\t1\ntarget-densityDpi\t1\ndevice-dpi\t1\nGalaxy\t0\nNexus\t0\nJSF\t0\ndiving\t0\ntransmitted\t0\nAttempting\t0\nserver-specific\t0\nSPI\t0\nrequests/responses\t0\ninsufficient\t0\nviability\t0\nJSESSIONID\t1\nleaks\t0\ncontainer-specific\t0\nintercept\t0\ngetSession(false))\t1\nMY_SESSION_ID\t1\nreject\t0\ngetSession(true))\t1\nsuper-secure\t0\ndisadvantage\t0\nJSPs\t0\ndowns\t0\nscripting\t0\nLiveCycle\t0\nMediaPlayer\t1\nMediaRecorder\t1\nundertaking\t0\nspeaker\t0\nEF5\t0\n<-\t1\nProjectCategoryIntersection\t1\nChangeTracker\t1\nTProject\t1\nApperantly\t0\nIds\t0\nyearly\t0\nsalary\t0\nweekly\t0\n312,000\t0\n$6000\t1\nhourly\t0\n52\t0\nweeklySalary\t1\nyearlySalary\t1\nhourlySalary\t1\n2*D\t1\nsource1\t1\ntarget1\t1\nsource2\t1\ntarget2\t1\nshortest\t0\ndonot\t0\nintersect\t0\nGenetic\t0\nsource1-target1\t1\nsource2-target2\t1\ngenetic\t0\nA*\t1\nALT+SHIFT\t1\nALT+TAB\t1\nItellij\t0\nshortcut-function\t1\nALT+\t0\nSHIFT\t0\nstart-up\t0\nDreamweaver\t0\ntimestam\t1\nsetTimeout\t1\nlistView\t1\nlisview\t0\nListView.ListViewListener\t1\nsummarization\t0\nbegun\t0\nanalyzed\t0\nconditionals\t0\neof()\t1\naccident\t0\n/J\t0\nVC++\t0\nEOF\t1\nLatin-1\t1\nÿ\t0\nPutting\t0\neof())\t1\nch\t0\ntolower\t1\nUCHAR_MAX\t1\nchaining\t0\nFWIW\t0\nisspace\t1\nstatic_cast\t1\n<unsigned\t1\nchar>\t1\nsentenceCheck.second\t1\nabbreviations\t0\nMr\t0\nJones\t0\nhere.\t0\nPL/SQL\t1\nproc\t0\ndivide-and-conquer\t0\ncommenting\t0\nso-far\t0\n@varname\t1\n5.x\t0\nUIViews\t1\nx/y\t0\nuserInteractionEnabled\t1\nre-showing\t0\nEventMachine\t1\nmy_app.rb\t1\nrun.rb\t1\nRabbitMQ\t1\nnon-Spring\t0\nexec'ing\t1\nrabbitmqctl\t1\nlist_queues\t1\nresults--not\t1\nrabbitmq-plugins\t1\nrabbitmq_management\t1\nweb-application\t0\nplaintext\t1\nSP0105\t0\nSymmetricBinding/AsymmetricBinding/TransportBinding\t0\nhttp://www.javadb.com/using-a-message-handler-to-alter-the-soap-header-in-a-web-service-client\t0\nEndpointResolver.java\t1\nHeaderHandlerResolver\t1\njavax.xml.ws.handler.HandlerResolver\t1\nmethid\t0\nHeaderHandler\t1\nmetro\t0\n2.1.1\t1\nlib/webservices\t1\n-rt.jar\t1\n-tools.jar\t1\nlib/endorsed/webservices\t1\n-api.jar\t1\nClassCastException\t1\nHeaderHandler/HeaderHandlerResolver\t1\nChanging\t0\nindex.jsp\t1\nmobileinit\t1\nredirect.jsp\t1\nReorderList\t1\nDIV\t0\nscrolled\t0\nhttp://forums.asp.net/p/1068063/1550532.aspx\t0\nAjaxControlToolkit\t1\nre-build\t0\ntoolkit\t0\nschedulenotification\t1\nkilled\t0\nuploads\t0\nOccurred\t0\ndouble-clicking\t0\njavaw.exe\t1\nsupposing\t0\nMyJarFile.jar\t1\njava.exe\t1\nprintStackTrace()\t1\nAh\t0\n\\to\t1\nApachePoiJarName\t1\nMyAppJarFile\t1\nmy.main.class.package\t1\nMyMainClass\t1\nPOI\t0\nExport\t0\nRunnable\t1\nUnder\t0\nFinish\t0\njavaw\t1\nMyJarName.jar\t1\nlibgdx\t1\ncomputers\t0\ngoogle-play-services\t1\nBaseGameUtils\t1\nre-importing\t0\nrecommand\t0\nBitbucket\t0\nbitbucket\t0\nMatch\t0\npull(download)/push(upload)\t1\nKilled\t0\nДопоможіть\t0\nхто\t1\nзможе\t1\nservice_name\t1\nfulfills\t0\nsuicide\t0\n\"s[e]rvice_name\"\t1\n|grep\t1\n/home/site/public_html/\t1\n/usr/bin/svn/project\t1\n/home/site/public_html\t1\nvestigial\t0\nIntelliSense\t0\nICustomPropertyProvider\t1\nusability\t0\nancestors\t0\nhackish\t0\ngetThisValue\t1\nsetThisValue\t1\nwanting\t0\nrestrictions\t0\nvalueEnum\t1\nAPIUsageClass\t1\nAPIClass\t1\nUltimately\t0\nsyntactically\t0\nreformatted\t0\ncorrected\t0\n2KB\t0\nfinderr\t0\nlower-bound\t0\nInformix\t0\nIDS\t0\nvariety\t0\nsensible\t0\n10.00\t0\ndbspace\t0\n3*255+(20/2+1)\t1\n776\t0\nmaximum-length\t0\nROWID/FRAGID\t1\nKB\t0\nVARCHAR(255)\t1\nDATE\t1\nDATETIME\t1\nYEAR\t0\nTO\t0\nDAY\t1\nspelling\t0\nSECOND\t0\nnum0\t1\nnum1\t1\nnum2\t1\ndubious\t0\nNUMERIC\t0\nDECIMAL\t0\nDECIMAL(20)\t1\n20-digit\t0\nVARCHAR\t1\nLVARCHAR\t1\nCHAR\t0\nTEXT\t0\nCLOB\t0\nBYTE\t0\nBLOB\t0\nUIScrollView\t1\nslides\t0\nreveal\t0\nvisually\t0\nsimulator\t0\nwired\t0\nculprit\t0\nmisconfigured\t0\nUITapGestureRecognizer\t1\nclient-server\t0\nserversocket\t1\ninputstream\t1\ndocs.oracle.com\t1\nreadLine()\t1\ndelimeter\t1\n\\\\n\t1\nflush()\t1\nprintwriter\t1\nScreenshot\t0\nImagePlot\t1\nImageJ\t0\nvisualize\t0\nsaturation\t0\nmedium\t0\nbrightness\t0\nEditText(Android)\t1\n19\t0\nwondered\t0\nDev\t0\nMulti-Touch\t0\nHP\t0\nTouchSmart\t0\nRocks\t0\ntouch-enabled\t0\nmulti-touch\t0\nJ\t0\nextend/build\t0\nXT2\t1\ndream\t0\nNTrig\t1\ndrivers\t0\nSpannble\t1\nSpannable\t1\nSpannedStringt/text\t1\nSpannedString\t1\nBufferType.SPANNABLE\t1\nSpannableString(textView.getText())\t1\nremoveSpan()\t1\nsetSpan()\t1\nScan\t0\nCredit\t0\nCard\t0\nreplied\t0\nrecipients\t0\nphpMailer\t1\nseach\t0\n$maileremail\t1\n$add\t1\nEDITED\t0\nrepetition\t0\n$mail\t1\nforeach($add)\t1\nbodies\t0\nappers\t0\n$injector:nomod\t1\nModule\t0\nmisspelled\t0\nvariany\t0\nangular.module\t1\napp.module.ts\t1\nCM\t0\nAlbanian\t0\nsq\t0\nres/values\t1\n-sq\t1\nsq'\t1\nreinvent\t0\ninfluence\t0\nphones\t0\nforcing\t0\nafaik\t0\nAlbanian-specific\t0\nhidden-sm-down\t1\nv4-alpha\t1\nhttps://v4-alpha.getbootstrap.com/layout/responsive-utilities/\t0\nAPP\t0\n23\t0\ntopics\t0\njtds.jdbe\t1\narrange\t0\nzooming\t0\ncrucially\t0\nOwain\t0\nattribute/property\t1\n.item1\t1\n.item2\t1\ntwo-item-column\t1\nWaypoints\t0\ntravelMode\t1\ntravel\t0\nwaypoints\t0\nwalking\t0\nwaypoint\t0\nstopover\t0\ngmaps\t0\ngoogle.maps.LatLng\t1\nlongitude\t0\nTravelMode\t1\ncol-lg-6\t1\nexpanding\t0\nprohibiting\t0\n_ViewStart.cshtml\t1\n_Layout.cshtml\t1\nViewStart\t1\nmission\t0\ntrustKeyStoreFile\t1\nreread\t0\nforbidden\t0\ninstall/download\t0\nUpsettingly\t0\ntelnet\t0\nscripted\t0\nMSWinsock.Winsock.1\t1\nCOM\t0\nPortQry\t1\nPsPing\t0\nwonderful\t0\nrely\t0\nTest-NetConnection\t1\n-Port\t1\nmysql_real_escape_string\t1\nhacked\t0\nunderdevelopment\t0\nstrong\t0\nSelectButton\t1\npreferably\t0\nctrl\t1\ninspector\t0\nPOSIX\t1\ncompliant\t0\n(.*\t1\nfoo.*\t1\nhotfixes\t0\nVS10-KB2275326-x86\t1\nVS10-KB2251084-x86\t1\nVS10-KB2268081-x86\t1\nunnescessarily\t0\nVS10-KB2345133-x86\t1\nhotfix\t0\nKB2275326\t1\nâ€\t0\nMint\t0\nKDE\t0\nPlasma\t0\nPartition\t0\nComputer\t0\nGRUB\t0\nMaster\t0\nMBR\t0\nCD/USB\t0\nre-install\t0\nmount\t0\nXY\t0\ndistro\t0\n<root-partition[e.g.\t1\n/dev/sdaXY]>\t1\n<mount-point[e.g.\t1\n/mnt/]>\t1\nessential\t0\nmounted\t0\n/mnt\t1\n--bind\t1\n/dev\t1\n/mnt/dev\t1\n/dev/pts\t1\n/mnt/dev/pts\t0\n/proc\t1\n/mnt/proc\t1\n/sys\t0\n/mnt/sys\t1\nchroot\t1\ngrub-install\t1\n/dev/sda\t1\ngrub\t0\nupdate-grub\t1\nunmount\t0\nbinded\t0\nsector\t0\nbooting\t0\nrepair-boot\t1\nRestart\t0\nCD\t0\nCD/DVD\t0\nBecome\t0\nfdisk\t1\n-l\t1\n/dev/sda1\t1\nReinstall\t0\n--root-directory\t1\n/mnt/\t1\nReboot\t0\nRestore\t0\n@christopher\t0\nabc0\t1\nkeil\t0\nuvision\t0\nV5.20.0.0\t1\nFlash.c\t0\nstartup_efm32zg.s\t1\nstartup_efm32zg.c\t1\nem_dma.c\t1\nZero\t0\noptions/properties\t0\n0x0000\t1\n0800\t0\nWizard\t0\nSilicon\t0\nLabs\t0\nflash.c\t0\nflash.h\t1\nRAMFUNC\t0\nKeil\t0\nFLASH_write\t0\nsupposedly\t0\nDMA\t0\nDMA->CHENS\t1\nDMA_CHENS_CH0ENS\t1\nActivate\t0\nFLASH_init()\t1\nFLASH_erasePage\t1\n2400\t0\nstartAddress\t1\n0x00002400\t1\nflashBuffer\t1\nuint8_t\t1\nflashBuffer[256]\t1\nBLOCK_SIZE\t1\n0x00000000\t1\n0xAA\t1\n9K\t0\nbootloader\t0\nTarget1\t1\nIROM1\t0\nStart[0x0]\t1\nSize[0x2400]\t1\nIRAM1\t0\nStart[0x20000000]\t1\nSize:[0x1000]\t1\nearth\t0\nLocation/Value\t0\nstepped\t0\n0x000008A4\t1\nflash!(?)\t0\nRAM_FUNC\t1\ndynamic_div\t1\n150px\t1\nid=\"container\">\t1\nAutomatically\t0\ndoc.body.style.cssText\t1\noverwrites\t0\nFACTS\t0\nstarred\t0\naddys\t0\nGOAL\t0\nExcept\t0\nPROBLEM\t0\nnewLabel\t1\nGmail\t0\nGmailApp.search()\t1\nis:unread\t1\nin:inbox\t1\nRad\t0\nBeacon\t0\nCloud\t0\ntracking\t0\ndislikes\t0\nyourwebsite.com/beacon-track\t1\nyourwebsite.com/beacon\t1\nyourwebsite.com\t1\nJ-Y\t0\n=CONCATENATE(IMPORTRANGE(\"123123123\",\"SheetName!J1:Y1\"))\t0\nlower-right\t0\n=CONCATENATE(IMPORTRANGE(\"123123123\",\"SheetName!J\"&ROW()&\":Y\"&ROW()))\t1\nsailsjs\t0\nmongodb\t1\nUserInterest.js\t1\nUserProfile.js\t1\nsails\t0\n2.1.2\t1\n--->\t1\ncoul\t0\nacceptable\t0\nrepeatedly\t0\nhttp://www.poornerd.com/2014/04/01/how-to-implement-a-session-timeout-in-play-framework-2/\t0\natlas\t0\n3D\t0\n4k*4K\t0\nspritesheet\t1\n420x768px\t1\n3d\t0\nbusy\t0\nduplicate-able\t0\nSurname\t0\nGreatly\t0\nAppreciated\t0\nJsFiddle\t1\nhttp://jsfiddle.net/6QTyd/5/\t0\ncordova\t0\nbackground.The\t0\nMinutes\t0\ndisturbing\t0\nhttps://github.com/katzer/cordova-plugin-background-mode\t0\n1234\t0\n12+34\t1\n123\t0\n12+(30-48)\t1\n12+\t0\n4567\t0\n45+67\t0\nd3\t0\ncircles\t0\nleaflet\t0\nhttp://jsfiddle.net/nextstopsun/C3U8g/\t0\nreset()\t1\nviewreset\t1\nhttp://bost.ocks.org/mike/leaflet/\t0\nrecalculated\t0\nrepositioned\t0\ntilelayer\t0\npaning\t0\nrepositioning\t0\nmorning\t0\ncocoa\t0\nicons\t0\nstatusmenu\t1\nvast\t0\npostpone\t0\nimmutable\t0\nemit\t0\nNSImage\t1\nCGImage\t1\nfavor\t0\natypical\t0\nSubiste\t0\nDeigner\t0\nsuccesfuly\t0\nhttp://mysharepointinsight.blogspot.com/2013/05/using-sharepoint-rest-services-from.html\t0\nsubsite\t0\n/SITE/_api/web/lists/getbytitle('Test')/items\t1\n/SITE/18/_api/web/lists/getbytitle('Test')/items\t0\n18\t0\nSP.Data.TestListItem\t1\nhttp://msdn.microsoft.com/en-us/library/jj822159.aspx\t0\nSaaS\t0\nwildcard\t0\n.webapp.com\t1\nCustomers\t0\nclient.webapp.com\t1\nclientdomain.com\t1\nWebapp\t0\nhttps://client.webapp.com\t0\nhttps://clientdomain.com\t1\nPlesk\t0\ngrasp\t0\nnessecary\t0\ncopying/pasting\t0\nmidpoint\t0\ndisplacement\t0\nimpressed\t0\noff-by-one\t0\nproportion\t0\nApiController\t1\nSql\t0\nOpenAsync\t1\n3s\t0\neradicate\t0\nslowness\t0\nSqlConnection\t1\nOpenConnection\t1\nincur\t0\nip.\t0\nTTL.\t0\nhtt\t1\nlatencies\t0\nsummarizing\t0\nobserve\t0\nTCP/IP\t0\nHandshake\t0\nincurring\t0\ninactivity\t0\ncorrelates\t0\nBalancer\t0\nIdle\t0\nTimeout\t0\nfile.Here\t0\nhtpasswd\t1\n2-million\t0\nscatterplot\t1\nmagenta\t0\ncyan\t0\nColor\t0\nelevation\t0\nXYZ\t0\nLattice\t0\ncolours\t0\nlattice\t0\ngroups.factor\t1\nmyData$Class\t1\nJeremyCG\t0\n@jeremycg\t1\n14.04\t0\ncuda\t0\n6.5\t0\nnvidia\t0\n340.29\t0\nopenGL\t0\nPBO\t0\nglTexSubImage2D\t1\nimage-generation\t0\ngdb\t0\ncudaGraphicsGLRegisterBuffer\t1\nmain.cu\t1\nGLdisplay.cu\t1\nGLdisplay.h\t1\nvert.glsl\t1\nfrag.glsl\t1\nUpdating\t0\n346.47\t0\nnvidia-smi\t1\nNVIDIA-SMI\t1\n346.xx\t0\nxx\t0\nships\t0\nforemost\t0\nOpenGL\t0\nunbind\t1\nsegfault\t1\ngwt\t0\nHTMLPanel\t1\nfired.Like\t1\nHTMLPanel(response.getText())\t1\nrootPanel.add(image)\t1\nPradeep\t0\nAttach\t0\nsharded\t0\nBigQuery\t0\ntables.Insert\t1\nschema.fields[].description\t1\nBundle\t0\nTier\t0\nanswers/comments\t0\nTier-0\t0\nbundles\t0\n$1\t1\na.k.a\t0\ntier-1\t0\nradar\t0\ndupe\t0\nbugreport.apple.com\t0\nMe\t0\nadda\t0\nGREATLY\t0\nbeautiful\t0\n;s\t1\nactionlink\t1\ncomparer\t1\nmillisecond\t0\nnullable\t1\nde-serialize\t0\nhttps://stackoverflow.com/questions/21080839/pulling-objects-from-binary-file-and-putting-in-listt\t0\ngrowing\t0\nlooped\t0\ncontrolled\t0\nAppreciate\t0\nThor\t0\nFateme\t0\nShirmohammadi\t0\nread()\t1\nladenedge\t0\nMarc\t0\nGravell\t0\nArtices\t0\nslugs\t0\nexample.com/23323\t0\nexample.com/Funny_Thing_Happened_to_Me\t0\ngrew\t0\ncapitalized\t0\nenforce\t0\nconducting\t0\nlower(url)\t1\n\"lower()\"\t1\n8.4\t0\ncontrib\t0\ncitext\t0\nlower/UPPER\t0\nafternoon\t0\nsold\t0\nBogota\t0\nSummation\t0\nBOGOTA\t0\n=SUMIF(DATOS!$G$4:$G$146;\"<>BOGOTA\")\t0\n9.5\t0\nupdatedAt\t1\nSDWebImage\t1\ncellForItemAtIndexPath\t1\n-collectionView\t1\n-downloadImageWithURL\t1\ndispatch_async(dispatch_get_main_queue\t1\nguarantee\t0\narchitectural\t0\nspecifications\t0\ntring\t0\nocclusion\t0\nTango\t0\nimpressive\t0\nhttps://www.youtube.com/watch?v=EpDhaM7ZhZs\t0\nmesh\t0\nOcclusion\t0\nexperimental\t0\nfidelity\t0\nfunctionalities\t0\nmeshes\t0\npre-scanned\t0\noccluded\t0\nup-sampling\t0\nclouds\t0\nARScreen\t1\nTangoUnitySDK\t1\nsensing\t0\nmeters\t0\ntalbe\t0\nthanx\t0\ncommunications\t0\npresents\t0\nSituation\t0\nattend\t0\ne-mail\t0\nvisitor\t0\nwordpress\t0\nthe_title()\t1\nthe_ID()\t1\nrsvp\t0\nbenchmark\t0\nJsPerf\t0\ncompares\t0\nnetaddr\t1\n192.168.1.1\t1\nhost1\t1\n192.168.1.2\t1\nhost2\t1\n192.168.1.3\t1\nSystem.Windows.Forms.PropertyGrid\t1\nGridItem\t1\nTAB\t0\nspeedier\t0\nCruise\t0\nwindow.innerWidth\t1\n$digest\t1\nResizing\t0\nre-run\t0\nwindow.onresize\t1\nfull-screen\t0\nDigg\t0\n</body>\t1\ndigg\t0\nTook\t0\nRootViewController\t1\nIOSLauncher\t0\npies\t0\nscatterpie\t0\n101\t0\n(color=sample(allcolors\t1\n101))\t1\nAesthetics\t0\n286\t0\nscale_color_manual\t1\nscale_fill_manual\t1\nNVD3\t1\nneed.I\t0\njwplayer\t1\nreciving\t0\nplaylist\t0\nRss\t0\nThu\t0\nJun\t0\n10:59:10\t1\nCDT\t0\n2014\t0\n%Z\t1\ndateutil\t1\neasy_install\t1\nthough.\t0\nstrptime\t1\nUTC\t0\nCST\t0\npython-dateutil\t1\nnaive\t0\ntimezone.\t1\nExcluded\t0\nbower-components/\t0\nnode-modules\t1\netc.\t0\nTypes\t0\nIssues\t0\nls\t0\nGIT\t0\nmp\t0\n-A\t0\nstat\t0\nexample/\t0\nMSysGit\t1\n1.7.10\t0\ntruetype\t0\nMsysgit\t1\nnon-ASCII\t0\n80\t0\nmediaplayr\t0\nbishop\t0\nFakhry\t0\nhow-to-play-videos-in-android-from-assets-folder-or-raw-folder\t0\nminidump\t0\nh1\t0\ntrick.\t0\n$(obj)\t1\nfind()\t1\n:selected\t1\npseudo-selector\t0\nSeq\t1\n\"(...).distinct.sameElements(...)\"\t1\ncheck.\t1\ncondensed\t0\ndistinct.sameElements\t1\nmeanwhile\t0\narose\t0\nm2-construct\t1\nm2\t1\nm1\t1\narea--testing\t1\nlike--are\t0\nhashCode\t1\ntoSet\t1\nourselves\t0\nThing\t0\nprimitives\t0\npossibilities\t0\noverrode\t0\nmapValues\t1\nfilterKeys\t1\nquestionable\t0\n.force\t1\nresort\t0\ncase--where\t1\nvalues--is\t1\ncategorie\t0\nbranding\t0\nsingle.php\t1\nthemeApp\t1\nAppPresser\t0\nhttps://github.com/WebDevStudios/AppPresser/blob/master/inc/theme-switcher.php\t0\noption_template\t1\noption_stylesheet\t1\n$post\t1\n$wp_query\t1\nupgrading\t0\n7.4.1\t0\nCourier\t0\nenvironments\t0\npackaging\t0\ndts\t0\nDTS\t0\nBCP\t0\nbcp\t0\ndb_name.schema_name.table_name\t1\ntable_name.dat\t1\n-t\t1\n-S\t1\nsource_server\t1\n-T\t0\ndestination_server\t1\nyour_username\t1\nyour_password\t1\nhttp://msdn.microsoft.com/en-us/library/ff772782.aspx\t0\nWANs\t0\ncumbersome\t0\nbullet\t0\nhttps://support.microsoft.com/en-us/kb/323567\t0\n0149\t0\nalignment\t0\nCustom\t0\nALT-0149\t1\ncontextual\t0\nNSTextView\t1\nNSTextField\t1\nfirstResponder\t1\nmenuForEvent\t1\nwindowWillReturnFieldEditor\t1\nCLI\t0\ninflux\t0\ninfluxdb\t1\n1.3\t0\nlives\t0\nShard\t0\nMeasurements\t0\n2012-11-26T00:00:00Z\t1\n2012-12-03T00:00:00Z\t1\ndisappearing\t0\nrailstutorial.org\t1\n10.5\t0\n:url\t1\nhttps://www.railstutorial.org/book/updating_and_deleting_users\t0\n_form.html.erb\t1\nedit.html.erb\t1\nnew.html.erb\t1\nKentico\t0\nBounced\t0\nBrenden\t0\nMailGun\t0\ndiscontinuing\t0\nPOP3\t0\nsupplier\t0\nRackspace\t0\nlistens\t0\n110\t0\nPOP3S\t0\nTransport\t0\nTLS\t0\nSecure\t0\nSockets\t0\n995\t0\nHierachicalDataTemplate\t1\nsp1\t0\nautopostback\t1\nRequired\t0\nValidator\t0\nchoise\t0\nPopulates\t0\nTextBox\t1\nddl1\t1\nSelectedIndexChanged\t1\ntxt1\t1\nsubscribed\t0\n20,000\t0\nunsubscribe\t0\nToken\t0\nLocationManager.h\t1\nLocationManager.m\t1\nMainViewController.m\t1\n0.00000\t1\nimediatly\t0\nReceiving\t0\nrecommends\t0\nage\t0\nvertx\t1\nOSGi\t0\nbndtools/eclipse\t1\nNetty\t0\n3.3.3\t0\nbndtools\t0\ncnf\t0\nactivator\t0\n```\t1\nmix\t0\nParemus\t0\nVert.x\t0\nhttps://github.com/gadieichhorn/hello-examples/tree/hello-1.13.x\t0\nVertx\t0\nPlatformDependent0\t1\nsun.misc\t0\norg.osgi.framework.system.packages.extra\t1\nfelix.config.properties\t1\njava.lang\t1\nVs\t0\nimpact\t0\nbubbles\t0\ntop-most\t0\nAnyways\t0\n/etc/ld.so.cache\t1\nNearly\t0\nregexes\t0\nREG_NOSUB\t1\ntd2\t1\ntd3\t1\nfadeout\t0\nfade\t0\n.td2\t1\nmysql(innodb)\t1\nmulti_index_test_tbl_1\t1\nquery_index_1\t1\nelaborate.\t0\nInnoDB\t1\nsecondary\t0\nFORMAT\t0\n1000000000\t1\n-1486618624\t1\nlongint\t1\nm*n\t1\n1,000,000,000,000,000,000\t1\nLongInt\t1\nInt64\t1\nQWord\t1\nscenario's\t1\nwindow/tab\t0\nfinishes\t0\nnotifying\t0\nchallenges\t0\nGetRecords\t1\nProcess/Process\t0\nWaitTillCompleted\t1\nspinner\t0\nLong\t0\nProcess\t0\n/3\t0\ninitiated\t0\nre-processing\t0\ncompletes\t0\npresenting\t0\nwarning/error\t0\ninstantiation\t0\nre-use\t0\nArguably\t0\noptimisation\t0\nlikelihood\t0\n.NET/C\t0\nWebForm\t1\nHttpContext.Current\t1\nfirst.\t1\nfrankly\t0\nSystem.Web.SessionState\t1\nNamespace\t1\nAssembly\t0\nSystem.Web\t1\nSystem.Web.dll\t1\n$scope.$apply()\t1\nslows\t0\n$scope.$evalAsync()\t1\ntended\t0\n$scope.$safeApply()\t1\ndebounced\t1\nhttp://i.stack.imgur.com/zX3xC.png\t0\n33\t0\nAbandon\t0\nAutoFilter\t1\nRange.Find\t1\n.AutoFilters\t1\n.Find\t1\nUnion\t0\n.Selectยน\t1\nEnd\t0\nwoudl\t0\nrng\t1\ndiscontiguous\t0\nยน\t1\ngoals\t0\n14.1\t0\nDouble\t0\n14th\t0\n1.4\t0\n1.41\t0\n141\t0\nmonetary\t0\nclaims\t0\nsubstract\t0\n1.11022302462516e-16\t1\nunprecise\t0\n5.96046e-08\t1\n4.440892.e-16\t1\n2.38419e-07\t1\n1.33226e-15\t1\n7.1525e-07\t1\nx.isLess(than:1.0)\t1\nhttps://developer.apple.com/reference/swift/floatingpoint/1849403-isless\t0\nisLessThanOrEqualTo(1.0)\t1\nadress\t0\nbrowsing\t0\nmap`\t1\nhttp://www.levinor.es/pruebas/pagina-ejemplo/\t0\n.levinor.es/\t1\ngoogle-maps.js\t0\nfuncionts.php\t1\ngratefull\t0\nauthorized\t0\nhttps://developers.google.com/maps/documentation/javascript/tutorial\t0\nDS1\t0\nExecutes\t0\nTruncates\t0\nDS2\t0\nDS3\t0\nSSRS\t0\nSets\t0\nhttp://blogs.msdn.com/b/robertbruckner/archive/2008/08/07/dataset-execution-order.aspx\t0\nprocess.php\t1\ncontradicting\t0\nbacktick\t1\n4.4.14\t0\nWin7+Chrome\t1\n5.6\t0\n+8\t0\nnow()\t1\nAlvin\t0\nSIU\t0\nchange/add\t0\ndate.timezone\t1\ntimezones\t0\nhttp://www.php.net/manual/en/timezones.php\t0\nStyles\t0\nChrome/Windows\t0\n43.0.2357.130\t0\nInsider\t0\n10130\t0\nDevTools\t0\nSources\t0\nFTP/SFTP/FUSE\t1\nmounts/etc\t0\nstructures\t0\nmounting\t0\n#ordernum\t1\n$.each()\t1\n$('#ordernum').text(row[0].order)\t1\n$rows\t1\nSQLSERVER\t1\neverthing\t0\nresponse.order\t1\n.each\t1\n$.parseJSON(response)\t1\nresopnse\t0\nHeadless\t0\nkills\t0\nImportantly\t0\nrespecting\t0\nJAX-WS\t1\ncom.sun.xml.ws.Closeable\t1\njava.io.Closeable\t1\nclose()\t1\nWS-RM\t1\nJMS\t0\nchatroom.php\t1\nChatroom.java\t1\nHTTP_REFERER\t1\nreferer\t1\nCookies\t0\nMatConvNet\t1\nfeedforward\t0\nthree-classes\t0\nclassification\t0\nbias\t0\nactivation\t0\nsigmoid\t1\nsoftmax\t1\nconverge\t0\nepoch\t0\nconverged\t0\nsigmoid/softmax\t1\nvocals\t0\ngathering\t0\nVKP\t0\nsuccesfully\t0\n@vocales\t0\n@resultado\t1\nrevise\t0\n32kb\t0\n.and\t0\nmb\t0\n3mb\t0\naudiotoolbox\t1\nsoundFileURL\t1\nappSoundPlayer\t1\nself.appSoundPlayer\t1\nhttp://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html\t0\nsmartphones\t0\nDesktop/Laptop\t0\nResolution\t0\nLarge\t0\nRes\t0\nusr\t0\nevhttp.h\t1\n/missed_include\t1\noctopus\t0\n/Users/batuhangoksu/Desktop/test.c\t1\n-levent\t0\n-lpthread\t1\nServer.js\t1\nclose/disconnected\t0\nstops/shuts\t0\nre-launch\t0\nNPM\t0\nclose'\t1\nA.start()\t1\nfirering\t0\nDownload-manager.js\t1\nWsclient.js\t1\nshut\t0\nre-establish\t0\nwebSocket\t0\nVideoView\t0\ndilog\t0\nsetOnPreparedListener\t1\nemulate\t0\nStudios\t0\nProperties.Settings\t1\nuser-specific\t0\nbreakdown\t0\nUIWebView\t1\nExample:\t1\nUIWebview\t1\nwww.site1.com\t1\nwww.site2.com\t1\njsonp.js\t1\ndice\t0\nappreciative\t0\nhttp://www.kiabuzz.co.za/?feed=json&callback=\t0\nPaste\t0\nShape\t0\nCircle\t0\nSquare\t0\nTriangle\t0\nVyrx\t0\nWeakReference\t1\ndubugging\t0\nWinDbg\t0\nSOS\t0\nhttp://livedemo00.template-help.com/wordpress_39638/contacts/\t0\nhttp://maps.google.com/mapsf=q&source=s_q&hl=en&geocode=&q=Brooklyn,+NY,+USA&aq=0&sll=37.0625,-95.677068&sspn=47.704107,79.013672&ie=UTF8&hq=&hnear=Brooklyn,+Kings,+New+York&ll=40.649974,-73.949919&spn=0.01628,0.028238&z=14&iwloc=A&output=embed\t0\nhttps://developers.google.com/maps/documentation/embed/start\t0\ndbase\t0\nphp5.3\t1\n.dbf\t0\ndbase.so\t0\nphp5\t1\nCMX.dbf\t0\nFoxPro9\t1\nread/write/execute\t0\nexert\t0\n/var/log/apache2/error.log\t1\n28\t0\nFoxpro\t0\nCONNECTION\t0\n25000\t0\n761\t0\nxgboost\t1\nXgboost\t0\nlevels(output)[levels(output)==\"-1\"]\t1\nXGBoost\t0\nConcurrentModificationException\t1\nsubList\t1\nsomeList\t1\nsub-list\t0\nshooting\t0\niterator.remove()\t1\nsublist\t1\nmodifiable\t0\n/home/xd/karthik\t1\nexceeds\t0\n/path/to/directory/\t1\nrooted\t0\narc\t0\niVar\t0\n@sythesize\t1\nself.str\t1\ngeneralize\t0\nLogic\t0\nDependencyPropertyChangedEvent\t1\nFrameworkElement\t1\nDependencyObject\t1\nstop/stuck\t0\nLuna\t0\n4.4.2\t0\nDeleting\t0\nfooters/headers\t0\ntapping\t0\ndata-role=\"content\"\t1\nTapping\t0\nestate\t0\nclunky\t0\nshorter\t0\nclimbs\t0\ndata-position\t1\ndata-tap-toggle\t1\nhttp://api.jquerymobile.com/fixedtoolbar/#option-tapToggle\t0\nExpression\t0\nBlend\t0\nContrary\t0\nSystem.Windows.Markup.XamlWriter.Save(myObject.Template)\t1\nDataView\t1\nComboBox.SelectedValue\t1\nDT\t0\ncontractsBindingSource.InvoicingIBAN\t1\nbankAccountCombo.DropDownStyle\t1\nComboBoxStyle.DropDown\t1\nMaterial\t0\n960\t0\nsizing\t0\nfxShow\t1\nfxhide\t1\nfile1\t1\nfile2\t1\nfile3\t1\nalphabitically\t1\nbubblesort\t1\nedit:managed\t1\nverbal\t0\nrealloc\t1\nbubble\t0\nqsort\t1\nre-write\t0\nCoding\t0\nexcercise\t0\nfgets\t1\nValidationExpression\t1\naccepting\t0\nhttps://regex101.com/r/GqtOuQ/2/\t0\n\\h\t0\nhttps://regex101.com/r/GqtOuQ/3\t0\nsecuview\t0\ndvr\t0\nmikrotik\t1\n192.168.100.2\t1\ndst-nat\t1\ndstnat\t0\ndst-port\t1\nDst\t0\nAddress\t0\n41.78.x.x\t1\nto-addresses\t0\nto-ports\t1\nkinect\t0\nfusion\t0\nNewcombe\t0\nKinect\t0\nv2.0\t1\nprinciple\t0\nfamous\t0\npcl\t0\nrefactoring\t0\ncompensate\t0\nnoisy\t0\nbilateral\t0\ndistorted\t0\nlibfreenect2\t1\nmechanize\t0\nbrowser.submit()\t1\nMechanize\t0\nclick_link\t1\nwebkit\t0\nheart\t0\nGET/POST\t0\nclientside\t0\nmsec/sec\t1\ntime.sleep()\t1\nreferential\t0\nneightbours\t0\nAdjacency\t0\nmatrices\t0\nMatrices\t0\nc++\t0\nde-allocate\t0\nNative\t0\nElectron\t0\n.nvmrc\t1\nelectron\t0\n7.4.0\t0\n1.6.7\t0\nNvm\t0\n0.33.2\t0\n4.0.5\t0\n./node_modules/.bin/electron\t1\n-rebuild\t0\nrebuilding\t0\nnvm\t1\nProducts\t0\nCategories\t0\nSidebar\t0\n_SidebarMenu\t1\nSystem.Collections.Generic.List\t1\n`1\t1\nProjectName.MVCWebUI.Models.Products\t1\nProjectName.MVCWebUI.Areas.Admin.Models.AdminMenuContent\t1\nvirtually\t0\nIntList\t1\nmeet\t0\n\"_BLOCK_TYPE_IS_VALID(pHead->nBlockUse)\t0\nPubNub\t0\nrelay\t0\nFluentd\t0\nloop+sleep\t1\nLEt\t0\n¿why\t0\nmargin\t0\nz-index\t1\nre-arrange\t0\nF0\t0\nF1\t0\nD6\t0\nSerialPort\t1\nRead(...)\t1\nWrite(...)\t1\nserialPort1\t1\nWrite()\t1\nRead()\t1\ndeduce\t0\nidiomatic\t0\none-past-the-end\t1\nstd::array\t1\napache2\t1\nhinted\t0\nsession.auto_start\t1\nsession_write_close()\t1\nreloading\t0\nFire\t0\nsniffing\t0\nWireshark\t0\ncontroller.But\t1\nobject.So\t0\nFilterNews()\t1\nuid\t1\n1.But\t0\nforgetting\t0\n$query->execute();\"\t1\nhttps://github.com/Schweriner/tgm_lazynews/blob/master/ext_typoscript_setup.txt\t0\nLst2\t1\nPassing\t0\ndel\t0\nSTDIN\t0\nsubitem\t0\nFullRowSelect\t1\nSubItems\t1\nProfile\t0\nSettingsSingleFileGenerator\t1\nnon-elevated\t0\nSettings.Default.Save()\t1\nSysinternals\t1\nSettings.Default\t1\nInstance\t0\nSave().\t1\n2.2.3\t1\nSoft\t0\nsetShowSoftInputOnFocus()\t1\nSTBs\t0\nsetShowSoftInputOnFocus(false)\t1\nCursorAdapter\t1\nnewView()\t1\nbindView()\t1\nGridImageAdapter.java\t1\nnewView()/bindView()\t1\nTo-Do\t0\nLoaderCallbacks\t1\nonLoadFinished\t1\nI'v\t0\nrecyclerview\t1\nEspresso\t0\nUhm\t0\nViewMatcher\t1\nwithText\t1\nrecyclers\t0\nViewHolder\t1\nmatcher\t0\nPositionableRecyclerViewAction\t1\nscrollToHolder(...)\t1\n300\t0\nJobKey\t1\nPause\t0\nJobKeys\t1\n.config\t1\nShowJobs\t1\nPersistJobDataAfterExecution\t1\nPersistJobDataAfterExecutionAttribute\t1\n/dev/\t1\nmtd0\t1\nmtd7\t1\nmtdblock0\t1\nmtdblock7\t1\nmtd\t0\nmtdblock\t0\nMTD\t0\nBSP\t0\nmtdparts\t1\nmtdinfo\t1\n/proc/mtd\t1\nstart-end\t1\narch/arm/mach-omap2/board\t1\n-omap3beagle.c\t1\nbeagleboard\t0\nmtd4\t1\nKernel\t0\nGPU\t0\nkernels\t0\nl\t0\natomicAdds\t1\ndimGrid\t1\ndimBlock\t1\nEdit2\t0\n-arch\t1\nsm_11\t1\nsm\t0\nSM\t0\nsm_20\t1\nDrawer\t0\nGravityCompat\t1\nSTART\t0\nDrawerLayout\t1\ntools:openDrawer\t1\ndrawer\t0\nactionbar\t1\napp_bar.xml\t1\ndrawerLayout\t1\nLIKE\t0\nFOOID.\t0\n@Martin\t1\nFaceboook\t0\nImplement\t0\nLuigi\t0\nintegrating\t0\nFB\t0\nframing\t0\nhappier\t0\niMovie\t0\nShareKit\t1\nplatforms\t0\nOded\t0\nPlease.\t0\ntooltip\t1\nhttp://jsfiddle.net/dvqFj/1/\t0\nD3.js\t0\nmouseover\t1\nhttp://jsfiddle.net/dvqFj/5/\t0\nexpense\t0\ncustomisation\t0\nhttp://jsfiddle.net/ezUex/\t0\n"
  },
  {
    "path": "code/Attentive_BiLSTM/auxilary_inputs_ner/segmenter_pred/segmenter_pred_dev.txt",
    "content": "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 Name\noperator O O\nhas O O\nan O O\nimplicit O O\ncast O O\nto O O\nthe O O\nleft O O\nhand O O\ntype O O\n. O O\n\nThis O O\ngoes O O\nfor O O\nall O O\ncomposed O O\noperators O O\n. O O\n\nAs O O\neveryone O O\nalready O O\nstated O O\n, O O\nthe O O\n+ Name Name\n= Name Name\nhas O O\nan O O\nimplicit O O\ncast O O\n. O O\n\nTo O O\nhelp O O\nillustrate O O\nthat O O\n, O O\nI O O\n'm O O\ngoing O O\nto O O\nuse O O\nan O O\napp O O\nI O O\nwrote O O\na O O\nwhile O O\nback O O\nthat O O\nis O O\nperfect O O\nfor O O\nthese O O\ntypes O O\nof O O\nquestions O O\n. O O\n\nIt O O\n's O O\nan O O\nonline O O\ndisassembler O O\nso O O\nyou O O\ncan O O\ncheck O O\nout O O\nthe O O\nactual O O\nbytecode O O\nthat O O\n's O O\nbeing O O\nproduced O O\n: O O\nhttp://javabytes.herokuapp.com/ O O\n\nAnd O O\na O O\ntable Name Name\nof O O\ntheir O O\nmeanings O O\n: O O\n\nhttp://en.wikipedia.org/wiki/Java_bytecode_instruction_listings O O\n\nSo O O\nlet O O\n's O O\ntake O O\na O O\nlook O O\nat O O\nthe O O\nbytecode O O\nfrom O O\nsome O O\nsimple O O\nJava Name Name\ncode O O\n: O O\n\nDisassembled O O\ncode O O\n. O O\n\nMy O O\ncomments O O\nwill O O\nhave O O\na O O\n// Name Name\nin O O\nfront O O\n. O O\n\nSay O O\n, O O\nI O O\nhave O O\na O O\nvector Name Name\nname O O\n\" O O\nstr Name Name\n\" O O\n, O O\nwhich O O\ncontain O O\nmany O O\nstrings Name Name\nlike O O\n\nAnd O O\n, O O\nI O O\nhave O O\na O O\ndata Name Name\nframe Name Name\nnamed O O\n' O O\nStates Name Name\n' O O\n: O O\n\nNow O O\nI O O\nwant O O\nto O O\ngenerate O O\nan O O\nextra O O\ncolumn Name Name\nnames O O\n\" O O\nState Name Name\n\" O O\nfor O O\n\" O O\nstr Name Name\n\" O O\n. O O\n\nI O O\nwant O O\nto O O\nuse O O\nthe O O\ncity O O\nname O O\nas O O\npattern O O\nto O O\n\" O O\ngrep Name Name\n\" O O\nthe O O\nstr Name Name\nvector Name Name\n, O O\nif O O\nmatch O O\n\" O O\nhouston O O\n\" O O\nthen O O\nput O O\n\" O O\nTX O O\n\" O O\nin O O\nthe O O\nnew O O\ncolumn Name Name\n, O O\nif O O\nmatch O O\nPhoenix O O\nthen O O\nput O O\nAZ O O\n, O O\nand O O\nso O O\non O O\n. O O\n\nFinally O O\nI O O\nwant O O\nto O O\nget O O\na O O\ndata Name Name\nframe Name Name\nlike O O\nthis O O\n: O O\n\nWhat O O\n's O O\nthe O O\nbest O O\nway O O\nto O O\ndo O O\nthis O O\n, O O\nwithout O O\nusing O O\nsapply Name Name\nor O O\nfor Name Name\nloop Name Name\n? O O\n\nFirst O O\n, O O\nconstruct O O\npattern O O\nstring Name Name\nof O O\nstate O O\nnames O O\n\nThen O O\n, O O\nuse O O\nstringr::str_extract_all Name Name\nor O O\nstringr::str_extract Name Name\nto O O\nextract O O\nstate O O\nnames O O\nfrom O O\nstring Name Name\nand O O\nadd O O\nnew O O\ncolumn Name Name\nto O O\ndata Name Name\nframe Name Name\n. O O\n\nThen O O\nmerge O O\nearlier O O\ndata Name Name\nframes Name Name\nto O O\nobtain O O\nsuitable O O\ndata Name Name\nframe Name Name\n. O O\n\nAlthough O O\nthe O O\nprevious O O\nanswers O O\nwork O O\ngreat O O\n, O O\nhere O O\nis O O\nanother O O\nsolution O O\nnot O O\nrelying O O\non O O\nexternal O O\npackages O O\n: O O\n\nwhich O O\ngives O O\n: O O\n\nI O O\nwant O O\nto O O\nremove O O\na O O\ncontainer O O\ndefined O O\nin O O\ndocker-compose.yml Name Name\nfile O O\nwhen O O\nwe O O\nrun O O\nin O O\ncomposition/override O O\nwith O O\nanother O O\nfile O O\ndocker-compose.prod.yml Name Name\n, O O\nby O O\nexample O O\n: O O\n\noverride O O\nwith O O\n: O O\n\nThen O O\n, O O\nwhen O O\nrunning O O\n: O O\n\nActually O O\n, O O\ni O O\nhave O O\nwww Name Name\nand O O\ndb_for_development Name Name\ntogether O O\n. O O\n\nI O O\nwant O O\nonly O O\nwww Name Name\ncontainer O O\n, O O\nnot O O\nothers O O\n. O O\n\nLive O O\nDemo O O\non O O\nShdr Name Name\nEditor Name Name\n. O O\n\nYou O O\nwill O O\nNEED O O\nto O O\nchange O O\nthe O O\ntop O O\nright O O\nto O O\ncube O O\nand O O\nzoom O O\nin O O\nto O O\nsee O O\nthe O O\neffect O O\nproperly O O\n. O O\n\nVertex O O\nShader O O\nCode O O\n\nFragment O O\nShader O O\ncode O O\n\nThe O O\nintention O O\nhere O O\nis O O\nthat O O\nwhen O O\nthis O O\nis O O\nused O O\n, O O\nit O O\nwill O O\nrender O O\nto O O\na O O\n16x16 O O\nwindow Name Name\n, O O\nthus O O\nwhy O O\nI O O\nconstrain O O\nit O O\nso O O\n. O O\n\nMy O O\nhard O O\ncoding O O\nof O O\nthe O O\nmat4 Name Name\nis O O\ntemporary O O\n. O O\n\nThe O O\nreal O O\nlife O O\napplication O O\nof O O\nthis O O\ncode O O\nwill O O\ngenerate O O\nintelligent O O\nvalues O O\nand O O\nuniform O O\nthem O O\nin O O\n. O O\n\nEach O O\nivec4 Name Name\nrepresents O O\na O O\nquarter O O\nof O O\nthe O O\nscreen O O\n( O O\n64 O O\npixels O O\n) O O\n; O O\neach O O\nint Name Name\nof O O\na O O\nvector Name Name\nrepresents O O\na O O\nrow Name Name\non O O\nthe O O\nscreen O O\n( O O\n16 O O\npixels O O\n) O O\n; O O\neach O O\nbit O O\nof O O\nan O O\nint Name Name\nrepresents O O\none O O\npixel O O\n. O O\n\nThus O O\nthe O O\nhard O O\ncoded O O\nmatrix Name Name\nvalue O O\nin O O\nhash Name Name\nshould O O\nhighlight O O\nthe O O\nleft O O\nhalf O O\nof O O\nthe O O\nbottom O O\nrow Name Name\n. O O\n\nI O O\n'm O O\nthoroughly O O\nconfused O O\nhere O O\n, O O\nand O O\nI O O\nmostly O O\nneed O O\nsomeone O O\nwho O O\nhas O O\nn't O O\nseen O O\nmy O O\ncode O O\nbefore O O\nto O O\nhave O O\na O O\nlook O O\nthrough O O\nit O O\nand O O\nfind O O\nwhere O O\nI O O\nwent O O\nwrong O O\n. O O\n\nI O O\n'm O O\nstumped O O\nat O O\nthe O O\nfrag O O\nshader O O\nlast O O\ntwo O O\nlines O O\n, O O\nfor O O\nbit Name Name\nis O O\nthe O O\nfloor O O\nof O O\na O O\nvalue O O\n's O O\nmod O O\n2 O O\n: O O\neither O O\n0 Name Name\nor O O\n1 Name Name\n, O O\nbut O O\nwhat O O\n's O O\nrendered O O\ndoes O O\nn't O O\nshow O O\nthat O O\n. O O\n\nHere O O\ns O O\nmy O O\ncode O O\ntrying O O\nto O O\nextend O O\na O O\ntextbox Name Name\nwith O O\nmicrosoft Name Name\najax Name Name\nlibary O O\n\nOn O O\nPage O O\ncode O O\nis O O\nas O O\nfollows O O\n: O O\n\nCode O O\nin O O\nthe O O\n.js Name Name\nfile O O\n\nThe O O\nerror O O\non O O\ndebug O O\nis O O\nas O O\nfollows O O\n\nwhat O O\nwrong O O\nam O O\ni O O\ndoing O O\nin O O\nmy O O\ncode O O\n? O O\n\ni O O\nhave O O\na O O\nwebapp O O\nwritten O O\nwith O O\nspring Name Name\n3 Name Name\nand O O\nstruts Name Name\n2 Name Name\nthat O O\nis O O\nhosted O O\non O O\na O O\nglassfish Name Name\nserver Name Name\n. O O\n\nIn O O\nthis O O\napp O O\ni O O\nhave O O\ntwo O O\nwebservices O O\nthat O O\nneed O O\nto O O\ndo O O\nsome O O\nbackground O O\nwork O O\nwithout O O\ndelaying O O\nthe O O\naccessed O O\nmethod O O\nresponse O O\n. O O\n\nSo O O\n, O O\nnow O O\ni O O\nuse O O\na O O\nspring Name Name\nbean Name Name\nthat O O\nuses O O\nan O O\ninstance O O\nof O O\norg.springframework.core.task.TaskExecutor Name Name\nand O O\nfrom O O\nthere O O\ni O O\nrun O O\nmy O O\nnew O O\nthread O O\n. O O\n\nIs O O\nthis O O\nthe O O\ncorrect/best O O\npractice O O\napproach O O\nin O O\ncontext O O\nof O O\nusing O O\nthis O O\napp O O\non O O\nglassfish Name Name\n? O O\n\nor O O\nshould O O\nfind O O\nanother O O\nmethod O O\nof O O\ndoing O O\nthis O O\n? O O\n\nIt O O\n's O O\ndiscouraged O O\nto O O\ncreate O O\nyour O O\nown O O\nthreads O O\nbecause O O\nthe O O\napp Name Name\nserver Name Name\nis O O\nmeant O O\nto O O\nbe O O\nin O O\ncharge O O\n. O O\n\nSee O O\nthe O O\nanswers O O\nto O O\nWhy O O\nis O O\nspawning O O\nthreads O O\nin O O\nJava Name Name\nEE Name Name\ncontainer O O\ndiscouraged O O\n? O O\n\nHowever O O\nin O O\npractice O O\n, O O\nespecially O O\nif O O\nit O O\n's O O\nthe O O\nonly O O\napplication O O\non O O\nthere O O\n, O O\nyou O O\nmight O O\nbe O O\nOK O O\n, O O\nespecially O O\nif O O\nyou O O\nuse O O\na O O\nfixed O O\nthread O O\npool O O\n. O O\n\nBe O O\nsure O O\nall O O\nthe O O\nthreads O O\nare O O\ngone O O\nwhen O O\nyou O O\nundeploy O O\nthe O O\napp O O\n. O O\n\n( O O\nI O O\nexpect O O\nSpring Name Name\nclasses O O\nwill O O\nhandle O O\ndisposal O O\non O O\nundeploy O O\n/ O O\nshutdown O O\ncorrectly O O\n, O O\nif O O\nyou O O\ndeclare O O\nthem O O\nwithin O O\nthe O O\nSpring Name Name\ncontainer O O\n) O O\n. O O\n\nI O O\n'd O O\nlike O O\nto O O\nsend O O\nto O O\na O O\nPHP Name Name\npage O O\na O O\nFormData Name Name\nvalue O O\nand O O\nsome O O\nString Name Name\nvalues O O\n. O O\n\nHere O O\n's O O\nmy O O\ncode O O\non O O\nthe O O\nJS Name Name\nside O O\n: O O\n\nAnd O O\non O O\nthe O O\nPHP Name Name\nside O O\n: O O\n\nThen O O\n, O O\nI O O\nget O O\nan O O\nerror O O\nsaying O O\nthat O O\ntype Name Name\nand O O\nid Name Name\nare O O\nnot O O\nset O O\n. O O\n\nI O O\n'm O O\nguessing O O\nthat O O\nthis O O\ncomes O O\nfrom O O\nthe O O\nprocessData Name Name\n: O O\nfalse Name Name\nfrom O O\nmy O O\najax Name Name\ncall O O\n. O O\n\nBut O O\nwithout O O\nthis O O\n, O O\nI O O\nget O O\nthe O O\ninevitable O O\nIllegal O O\nInvocation O O\n, O O\ncoming O O\nfrom O O\ntrying O O\nto O O\nsend O O\nthe O O\nFormData Name Name\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\nsend O O\nthe O O\nFormData Name Name\nAND O O\nmy O O\nString Name Name\nvalues O O\non O O\nthe O O\nsame O O\ncall O O\n? O O\n\nThanks O O\n! O O\n\nI O O\nassume O O\nyou O O\nare O O\nusing O O\nthe O O\nFormData Name Name\nobject O O\n, O O\nin O O\nthat O O\ncase O O\nyou O O\nneed O O\nto O O\nappend O O\nthe O O\nstring Name Name\nvalues O O\nto O O\nthe O O\nFormData Name Name\nobject O O\n, O O\nand O O\npass O O\nthe O O\nobject O O\nin O O\nas O O\nthe O O\ndata Name Name\nparameter O O\nin O O\njQuery Name Name\n's O O\n$ Name Name\n.ajax Name Name\n. O O\n\nYou O O\ncan O O\nappend O O\ndata O O\nto O O\nthe O O\nFormData Name Name\nobject O O\n, O O\nwith O O\nthe O O\nmethod O O\nappend Name Name\n. O O\n\nThis O O\nshould O O\nwork O O\n: O O\n\nThe O O\napp O O\nwill O O\nreside O O\non O O\nthe O O\nphone Name Name\n. O O\n\nBut O O\nnot O O\nvisible O O\nthrough O O\nan O O\nicon Name Name\n. O O\n\nIt O O\nshould O O\nnot O O\nbe O O\npossible O O\nto O O\nclose O O\nthe O O\napp O O\nthrough O O\nbackground O O\nrefresh O O\nor O O\nin O O\nany O O\nother O O\nway O O\n. O O\n\nIs O O\nIt O O\nPossible O O\nto O O\ndo O O\nthis O O\n? O O\n\nThis O O\nis O O\nnot O O\npossible O O\n. O O\n\nIt O O\nmay O O\nbe O O\npossible O O\n, O O\nif O O\nyou O O\nwill O O\nchange O O\nappicon Name Name\nto O O\ntransparent Name Name\nicon Name Name\n, O O\nbut O O\nApple Name Name\nDocumentation O O\nsays O O\n: O O\n\nhttps://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/ O O\n\nSo O O\nyour O O\ntransparent O O\npart O O\nwill O O\nbecome O O\nblack O O\n\nI O O\n'm O O\nhaving O O\nproblems O O\nwith O O\nindexed O O\nassignments O O\nin O O\nthe O O\nvector Name Name\nSTL Name Name\ncontainer O O\n. O O\n\nI O O\nneed O O\nto O O\ncount O O\nall O O\nvalues O O\nof O O\na O O\ngiven O O\nvector Name Name\n( O O\ncalled O O\n_assignments Name Name\n) O O\n, O O\nso O O\nI O O\nwrote O O\nthis O O\nfunction O O\n( O O\nwith O O\nextra O O\nprinting O O\nfor O O\ndemonstration O O\n) O O\n. O O\n\nBut O O\nit O O\nis O O\nnot O O\nassigning O O\nthe O O\ncount O O\ndata O O\nto O O\n_counts Name Name\n. O O\n\nAlso O O\n, O O\nit O O\nonly O O\nprints O O\nin O O\n( O O\n1) O O\n: O O\nonly O O\na O O\nblank O O\nline O O\nis O O\nprinted O O\nin O O\n( O O\n2) O O\n. O O\n\nEx O O\n. O O\n\nIf O O\n_assignments Name Name\nis O O\n: O O\n\nit O O\nprints O O\n\n( O O\nin O O\n( O O\n2) O O\nthe O O\noutput O O\nshould O O\nbe O O\nspaced O O\n) O O\n\nEdit O O\n: O O\nAs O O\nsuggested O O\nin O O\nthe O O\ncomments O O\n, O O\nI O O\nchanged O O\nreserve Name Name\nto O O\nresize Name Name\nand O O\nit O O\nfixed O O\nthe O O\nproblem O O\n! O O\n\nMy O O\ngoal O O\nis O O\nto O O\ncreate O O\nnew O O\nentity O O\nof O O\na O O\nnew O O\ntype O O\nand O O\npush O O\nit O O\nto O O\nmanager O O\n. O O\n\nI O O\n've O O\ncreated O O\nnew O O\nentity O O\ntype O O\n: O O\n\nTo O O\nbe O O\nable O O\nto O O\ncreate O O\nnew O O\nentity O O\nof O O\nthis O O\ntype O O\nI O O\nneed O O\nto O O\nfetch Name Name\nmetadata Name Name\nfirst O O\n: O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nI O O\nhave O O\nan O O\nerror O O\non O O\nthe O O\nline O O\nentityManager.fetchMetadata() Name Name\n: O O\n\" O O\nTypeError O O\n: O O\nCannot O O\ncall O O\nmethod O O\n' O O\nthen O O\n' O O\nof O O\nundefined O O\n\" O O\n\nWhy O O\nI O O\n'm O O\nseeing O O\nthis O O\nerror O O\n? O O\n\ndoes O O\nfetchMetadata() Name Name\ntries O O\nto O O\nhttp O O\n: O O\nGET O O\nmetadata O O\nfrom O O\nsomewhere O O\n? O O\n\nI O O\ndo O O\nn't O O\nhave O O\nit O O\nanywhere. O O\n. O O\nHow O O\nto O O\ncreate O O\nthe O O\nmetadata O O\nthen O O\n? O O\n\nUPDATE O O\n: O O\n\nfollowing O O\nsuggestions O O\nI O O\n've O O\nrewrite O O\ncode O O\ninto O O\n: O O\n\nBreeze Name Name\nmetadata O O\nis O O\ninformation O O\nabout O O\nall O O\nthe O O\nobjects O O\nyou O O\nhave O O\nto O O\nwork O O\nwith O O\n. O O\n\nYou O O\ncan O O\nfetch O O\nmetadata O O\nfrom O O\nserver-side O O\nor O O\nyou O O\ncan O O\ncreate O O\nmetadata O O\nby O O\nyourself O O\nand O O\nwork O O\nwith O O\nit O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\nwork O O\nwith O O\nyour O O\nserver-side O O\nobjects O O\nin O O\nbreeze Name Name\nyou O O\ncreate O O\nan O O\nentity O O\nmanager O O\nwith O O\nvar Name Name\nentityManager Name Name\n= Name Name\nnew Name Name\nbreeze.EntityManager('api/Db') Name Name\n; Name Name\nwhere O O\napi/db O O\nis O O\nyour O O\nasp.net Name Name\ncontroller O O\n. O O\n\nThis O O\ncontroller O O\nshould O O\nhave O O\na O O\nMetadata() Name Name\nmethod O O\nwhich O O\nreturns O O\nrepository.Metadata() Name Name\n. O O\n\nIn O O\njs Name Name\nyou O O\ncall O O\nentityManager.fetchMetadata() Name Name\n.then(success,failed) Name Name\n; Name Name\nAfter O O\nthe O O\npromise O O\nof O O\nfetchMetadata() Name Name\nis O O\nresolved O O\n, O O\nbreeze Name Name\nmetadata O O\nof O O\nvariable O O\nentityManager Name Name\nis O O\nfull-filled O O\nand O O\nyou O O\ncan O O\nstart O O\nworking O O\nwith O O\nyour O O\nserver-side Name Name\nobjects O O\nin O O\njs Name Name\nwith O O\nbreeze Name Name\n! O O\n\nBut O O\nyou O O\ncan O O\nalso O O\nwork O O\nwithout O O\nany O O\nmetadata O O\nfrom O O\nserver-side Name Name\nand O O\ncreate O O\nit O O\non O O\nthe O O\nfly O O\nin O O\nyour O O\njs Name Name\ncode O O\n. O O\n\nYou O O\ncreate O O\nyour O O\nown O O\nmetadataStore Name Name\n, O O\nattach O O\nit O O\nto O O\nentitymanager Name Name\n. O O\n\nPseudo O O\ncode O O\n: O O\n\nHere O O\nis O O\na O O\nworking O O\nsample O O\nfrom O O\nbreeze Name Name\nwith O O\non-the-fly O O\nmetadata O O\nhttp://www.breezejs.com/breeze-labs/breezedirectivesvalidation O O\n\nYou O O\nclick O O\non O O\ncode O O\nbutton Name Name\nor O O\njust O O\ngo O O\nto O O\nhttp://plnkr.co/edit/lxPAbIJmRaLmyagXQAFC?p=info O O\nto O O\nsee O O\nsources O O\n\nAlso O O\ntake O O\na O O\nlook O O\nat O O\nthis O O\nlink O O\nin O O\nbreeze Name Name\ndocs O O\nhttp://www.breezejs.com/documentation/metadata O O\n\nI O O\n'm O O\ntrying O O\nthe O O\nnew O O\nFirefox Name Name\nDeveloper Name Name\nEdition Name Name\n. O O\n\nI O O\n'm O O\nstruggling O O\nto O O\nget O O\nthe O O\nWebIDE Name Name\nto O O\nrun O O\na O O\nproject O O\nin O O\nmy O O\nsmartphone Name Name\n. O O\n\nIn O O\nthe O O\ndocumentation O O\n, O O\nit O O\n's O O\nsaid O O\nyou O O\ncan O O\ndebug O O\nan O O\napp O O\nusing O O\nChrome Name Name\n37+ Name Name\non O O\nandroid Name Name\n. O O\n\nWhen O O\nI O O\nconnect O O\nit O O\nto O O\nmy O O\nmac Name Name\n, O O\nI O O\ncan O O\nget O O\nthe O O\nWebIDE Name Name\nto O O\nrecognize O O\nthe O O\ndevice O O\n, O O\nbut O O\nwhen O O\nI O O\ntry O O\nto O O\nrun O O\nit O O\n, O O\nI O O\nget O O\nthis O O\nerror O O\n: O O\n\" O O\nOperation O O\nfailed O O\n: O O\ninstalling O O\nand O O\nrunning O O\napp O O\n: O O\nCa O O\nn't O O\ninstall O O\n\" O O\n. O O\n\nWhat O O\nam O O\nI O O\nmissing O O\n? O O\n\nI O O\nalready O O\nsetup O O\ndeveloper O O\nmode O O\non O O\nandroid Name Name\nand O O\nturned O O\non O O\ndebugg O O\nusb O O\nmode O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n! O O\n\nWhen O O\nmy O O\nprogram O O\ncomes O O\nto O O\nthis O O\nmethod O O\nit O O\nnever O O\nseems O O\nto O O\nupdate O O\nthe O O\ntarget Name Name\nvalue O O\n. O O\n\nIf O O\nI O O\ninput O O\n\" Name Name\ndave Name Name\n\" Name Name\nit O O\nwill O O\nremain O O\n\" Name Name\ndave Name Name\n\" Name Name\nno O O\nmatter O O\nhow O O\nmany O O\ncalls O O\nto O O\nthe O O\nmethod O O\nare O O\nmade O O\n. O O\n\nIf O O\nI O O\nadd O O\na O O\nfriend Name Name\nvia O O\nthis O O\naddFriend Name Name\nmethod O O\nfirstFriend Name Name\nwill O O\nend O O\nup O O\nprinting O O\nwhatever O O\nthe O O\nlast O O\nadded O O\nname O O\nwas O O\n. O O\n\nIf O O\nthe O O\ninputted O O\nnamed O O\nwere O O\nrob Name Name\nbill Name Name\nand O O\ntravis Name Name\n\nThe O O\noutput O O\nwould O O\nbe O O\ntravis Name Name\ntravis Name Name\ntravis Name Name\n. O O\n\nThe O O\nelse O O\npart O O\nneeds O O\nto O O\ngo O O\naway O O\n. O O\n\nThe O O\neffect O O\nof O O\nthis O O\ncode O O\nis O O\nthat O O\nit O O\nonly O O\nchecks O O\nthe O O\nfirst O O\nvalue O O\nand O O\nif O O\nit O O\nis O O\nnot O O\nthe O O\nvalue O O\nthat O O\nyou O O\nwant O O\nto O O\nlook O O\nup O O\nit O O\nis O O\ncoming O O\nout O O\nstraight O O\naway O O\n. O O\n\nChange O O\n\nto O O\nreturn Name Name\nnull Name Name\n; Name Name\n\nand O O\nremove O O\nthe O O\nelse Name Name\npart O O\nmentioned O O\nabove O O\n\nYou O O\nalways O O\nreturn O O\nin O O\nthe O O\nfirst O O\niteration O O\nof O O\nthe O O\nloop O O\n. O O\n\nIf O O\nthe O O\nperson Name Name\nis O O\nfound O O\nit O O\n's O O\nreturned O O\n( O O\nthe O O\nif Name Name\nbranch O O\n) O O\n, O O\nand O O\nif O O\nit O O\nis O O\nn't O O\n, O O\nnull Name Name\nis O O\nreturned O O\n( O O\nthe O O\nelse Name Name\nbranch O O\n) O O\n. O O\n\nInstead O O\n, O O\nyou O O\nshould O O\nkeep O O\niterating O O\nuntil O O\nyou O O\nfind O O\nthe O O\ncorrect O O\nperson Name Name\nor O O\nexhaust O O\nthe O O\nlist Name Name\n. O O\n\nThe O O\nfirst O O\ncondition O O\n, O O\nBTW O O\n, O O\nis O O\na O O\nsubset O O\nof O O\nthe O O\nloop O O\n( O O\nif O O\nfirstPerson Name Name\nis O O\nnull Name Name\ntarget Name Name\nwill O O\njust O O\nbecome O O\nnull Name Name\nimmediately O O\n) O O\n, O O\nand O O\ncan O O\n( O O\nshould O O\n! O O\n) O O\n\nalso O O\nbe O O\nremoved O O\n: O O\n\nI O O\nhave O O\nasked O O\na O O\nquestion O O\nbefore O O\nabout O O\nretrieving O O\na O O\npdf Name Name\nfile O O\nfrom O O\ndatabase O O\n, O O\nand O O\ngot O O\nthe O O\nanswer O O\nfor O O\nmy O O\nquestion O O\n. O O\n\nEventhough O O\nthat O O\ncode O O\nwas O O\nworking O O\nfor O O\nme O O\nearlier O O\n, O O\nI O O\nam O O\ncurrently O O\nnot O O\nable O O\nto O O\nretrieve O O\nfile O O\ncontents O O\n, O O\nonly O O\nfile O O\nname O O\nfrom O O\nthe O O\ndatabase O O\n( O O\nlike O O\n: O O\n\n\" Name Name\n% Name Name\nPDF-1.4 Name Name\n1 Name Name\n0 Name Name\nobj Name Name\n<</AcroForm Name Name\n<</DR Name Name\n<</Font Name Name\n<</Helvetica Name Name\n220 Name Name\n0 Name Name\nR>> Name Name\n/ProcSet Name Name\n[/PDF Name Name\n/Text]>> Name Name\n/Fields Name Name\n\" Name Name\n) Name Name\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n: O O\n\nMy O O\nuploaded O O\ncode O O\n: O O\n\nIn O O\nthe O O\ndatabase O O\nfiled O O\nis O O\na O O\nvarchar Name Name\n. O O\n\nsuppose O O\nthat O O\nusing O O\na O O\nJFilechooser Name Name\n, O O\nwe O O\nchoosed O O\na O O\ntext Name Name\nfile O O\nwhich O O\ncontained O O\n1 O O\nline O O\n, O O\nsay. O O\n. O O\n\" Name Name\nhello Name Name\nworld Name Name\n\" Name Name\n\nwhen O O\nwe O O\nprint O O\nthe O O\nfile O O\ncontents O O\nwe O O\nget O O\n\" Name Name\nhello Name Name\nworld Name Name\n\" Name Name\n\nbut O O\nwhat O O\nhappens O O\nif O O\nwe O O\nchanged O O\nthe O O\ntext Name Name\nfile O O\ncontents O O\nand O O\nadded O O\nsome O O\nnew O O\nlines O O\n, O O\nand O O\nprinted O O\nagain O O\n, O O\ndoes O O\njava Name Name\nstores O O\nthe O O\nfile O O\nin O O\nmemory O O\n? O O\n\nor O O\nit O O\nwill O O\nreads O O\nit O O\nagain O O\n, O O\nand O O\nconsequently O O\nprints O O\nthe O O\nnew O O\nlines O O\nwe O O\nadded O O\n? O O\n\nThat O O\ndepends O O\non O O\nwhat O O\nyou O O\ndo O O\n. O O\n\nThe O O\nrules O O\nare O O\nsimple O O\n: O O\nwhen O O\nyou O O\nread O O\nit O O\nagain O O\nby O O\nusing O O\na O O\nFileInputStream Name Name\nor O O\na O O\nFileReader Name Name\n, O O\nyou O O\nwill O O\nalways O O\nget O O\nthe O O\nlatest O O\ncontent O O\n. O O\n\nThe O O\nOS O O\nmight O O\noptimize O O\nthis O O\nin O O\nmemory O O\n, O O\nif O O\nthe O O\nfile O O\nis O O\nnot O O\nedited O O\n. O O\n\nIf O O\nyou O O\nsimply O O\nkeep O O\nthe O O\nfile O O\ncontents O O\ninto O O\na O O\nself O O\nconstructed O O\nbuffer O O\n( O O\ne.g O O\n. O O\n: O O\na O O\nString Name Name\nor O O\na O O\nbyte[] Name Name\n) O O\n, O O\nand O O\nthe O O\nfile O O\nchanges O O\n, O O\nof O O\ncourse O O\nthe O O\nbuffer O O\nwill O O\nremained O O\nunchanged O O\n. O O\n\nWhen O O\nyou O O\ncreate O O\na O O\nFile Name Name\n, O O\nnothing O O\nactually O O\nhappens O O\n. O O\n\nThe O O\nlocation O O\nof O O\nthe O O\nfile O O\nis O O\nstored O O\n, O O\nnothing O O\nelse O O\n. O O\n\nIt O O\n's O O\nlike O O\nsetting O O\nyour O O\nGPS Name Name\nto O O\ngo O O\nsomewhere O O\nversus O O\ndriving O O\nthere O O\n. O O\n\nFrom O O\nthe O O\nJavadoc Name Name\n: O O\n\nWhen O O\nyou O O\nread O O\nfrom O O\nthe O O\nfile O O\n, O O\nyou O O\n'll O O\nget O O\nthe O O\ncontents O O\nof O O\nthe O O\nfile O O\n. O O\n\nI O O\nhave O O\na O O\ntable Name Name\nthat O O\nhas O O\na O O\ncolumn Name Name\nwith O O\nYes/No Name Name\nas O O\npossible O O\nvalues O O\n\nI O O\nneed O O\nto O O\nshow O O\nthe O O\nrow Name Name\nif O O\nActiveYN Name Name\nis O O\n' Name Name\nYes Name Name\n' Name Name\nand O O\nHide O O\nid O O\nActiveYN Name Name\nis O O\n' Name Name\nNo Name Name\n' Name Name\n\nHow O O\ncan O O\ni O O\naccess O O\nthe O O\nActiveYN Name Name\ninside O O\nJQuery Name Name\nand O O\nshow/hide O O\naccordingly O O\n? O O\n\nYou O O\ncan O O\ndo O O\nit O O\nfrom O O\nserver Name Name\nside O O\nitself O O\n. O O\n\nI O O\ndo O O\nn't O O\nknow O O\nthe O O\nrazor Name Name\nsyntax O O\n, O O\nbut O O\nyou O O\nget O O\nthe O O\nidea O O\n. O O\n\nTo O O\nbe O O\nable O O\nto O O\ndo O O\nit O O\nfrom O O\nclient-side Name Name\n, O O\nadd O O\na O O\nclass O O\n. O O\n\nAnd O O\nthen O O\nin O O\njQuery Name Name\n: O O\n\nEdited O O\nagain O O\nafter O O\nyour O O\nquestion O O\nwas O O\nedited O O\n, O O\nnow O O\nif O O\nwe O O\nforget O O\nthe O O\nserver-side Name Name\naltogether O O\n: O O\n\nUse O O\nthis O O\nstatement O O\nin O O\nyour O O\nbutton Name Name\nclick O O\nhandler O O\nfunction O O\n. O O\n\nBut O O\n, O O\nremember O O\nit O O\nwill O O\nalso O O\nfind O O\nany O O\ntext O O\nwhich O O\ncontains O O\n\" Name Name\nNo Name Name\n\" Name Name\nanywhere O O\nin O O\na O O\nrow Name Name\n. O O\n\nTo O O\nmake O O\nit O O\nmore O O\nprecise O O\n, O O\nuse O O\nregular O O\nexpressions O O\nto O O\nsearch O O\nexactly O O\na O O\n\" Name Name\nNo Name Name\n\" Name Name\n. O O\n\nDEMO O O\n\nI O O\nam O O\nusing O O\nsort Name Name\ncommand O O\nin O O\nLinux Name Name\nto O O\nsort Name Name\nstrings Name Name\n. O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nmy O O\nstrings Name Name\ncontains O O\nnon O O\nletter O O\ncharacters O O\nsuch O O\nas O O\n! Name Name\n{%^$@#)( Name Name\n. O O\n\nI O O\nhave O O\nnoticed O O\nthat O O\nsort Name Name\nin O O\nLinux Name Name\nignores O O\nthese O O\ncharacters O O\nand O O\nsort Name Name\nbased O O\non O O\nletters O O\nonly O O\n. O O\n\nHowever O O\n, O O\nI O O\nwant O O\nto O O\nsort Name Name\nbased O O\non O O\nthese O O\ncharacters O O\n' O O\nASCII O O\ncode O O\nalso O O\n. O O\n\nUse O O\na O O\nlocale O O\nof O O\n\" Name Name\nC Name Name\n\" Name Name\nto O O\nforce O O\nbitwise O O\ncollation O O\n. O O\n\nwell O O\ni O O\nhave O O\nthis O O\nstring Name Name\n\nhow O O\ndo O O\ni O O\nget O O\nthe O O\nvalue O O\nof O O\niddiagrama Name Name\n, O O\nnombre Name Name\n, O O\ntipo Name Name\n, O O\ndescripcion Name Name\n! O O\n\nnote O O\n, O O\nthere O O\nare O O\nmore O O\nthan O O\n1 O O\nof O O\neveryone O O\n! O O\n\nfor O O\nexample O O\ni O O\nwould O O\nto O O\nget O O\ni O O\ndont O O\nknow O O\n! O O\n\nmaybe O O\nin O O\na O O\narray Name Name\nsomething O O\nso O O\n\nand O O\nthe O O\nsame O O\nwith O O\ntipo Name Name\n, O O\nand O O\ndescription Name Name\n\nsome O O\nidea O O\n? O O\n\n* O O\nother O O\nthing O O\n\nthe O O\nlenght O O\nof O O\ncharacteres Name Name\nChange O O\n! O O\n\nbecause O O\nit O O\nis O O\na O O\nquery O O\nsince O O\na O O\nwebservice O O\n! O O\n\ni O O\nam O O\ntrying O O\nit O O\nmanuallity O O\ndoes O O\nsomeone O O\nhas O O\na O O\nexample O O\nfor O O\nto O O\ndo O O\nit O O\nwith O O\na O O\nlibrary O O\n? O O\n\none O O\nway O O\nis O O\nto O O\nconcatenate O O\nthe O O\nstrings Name Name\nin O O\nthe O O\narray Name Name\nto O O\nform O O\na O O\nstring Name Name\nby O O\nrunning O O\na O O\nfor Name Name\nloop O O\naround O O\neach O O\narray Name Name\n. O O\n\nIs O O\nthat O O\nwhat O O\nyou O O\n're O O\ntrying O O\nto O O\ndo O O\n? O O\n\nIt O O\nseems O O\nlike O O\nyour O O\nstring Name Name\ncontains O O\ndata O O\ncoded O O\nin O O\nJSON Name Name\nformat O O\n. O O\n\nYou O O\nmay O O\nuse O O\na O O\nJSON Name Name\nlibrary O O\nlike O O\ngoogle-gson Name Name\n. O O\n\nThen O O\nyou O O\ndo O O\nn't O O\nhave O O\nto O O\nparse O O\nthe O O\nstring Name Name\nmanually O O\n. O O\n\nSo O O\nI O O\nam O O\nfairly O O\nnew O O\nto O O\niOS Name Name\ndevelopment O O\nand O O\nhave O O\ndecide O O\nto O O\ncreate O O\na O O\nproject O O\nof O O\nmy O O\nown O O\n. O O\n\nThis O O\napp O O\nis O O\nusing O O\nParse Name Name\nas O O\nit O O\n's O O\nbackend O O\n. O O\n\nI O O\nknow O O\nthat O O\nit O O\nis O O\nbetter O O\nto O O\nhave O O\nall O O\nthe O O\ndatabase O O\ncalls O O\nin O O\none O O\nclass O O\n, O O\nbut O O\nam O O\nunsure O O\nof O O\nthe O O\nbest O O\nway O O\nto O O\ndo O O\nit O O\n. O O\n\nSo O O\nfar O O\nI O O\nhave O O\ntwo O O\noptions O O\n: O O\n\nCreate O O\nseparate O O\n.h Name Name\nand O O\n.m Name Name\nfiles O O\nand O O\nput O O\nall O O\ndatabase O O\naccessors O O\nthere O O\nas O O\nstatic Name Name\nmethods O O\n\nCreate O O\nbase O O\n.h Name Name\nand O O\n.m Name Name\nfiles O O\n( O O\nthat O O\ninherit O O\nfrom O O\nUIViewController Name Name\n) O O\nand O O\nput O O\nall O O\nthe O O\ncalls O O\nthere O O\n. O O\n\nThen O O\nderive O O\nall O O\nmy O O\nother O O\nview O O\ncontrollers O O\nin O O\nthe O O\napp O O\nfrom O O\nthis O O\none O O\n. O O\n\nWhich O O\nof O O\nthese O O\ntwo O O\noptions O O\nis O O\nbetter O O\n? O O\n\nOr O O\nis O O\nthere O O\na O O\nbetter O O\nway O O\nto O O\ndo O O\nthis O O\nthan O O\nthese O O\ntwo O O\noptions O O\n? O O\n\nWhile O O\nthis O O\nis O O\npurely O O\nopinion O O\nbased O O\nI O O\nwould O O\nargue O O\nfor O O\nsolution O O\n1 O O\n. O O\n\nThis O O\ncreates O O\na O O\ngood O O\nseparation O O\nof O O\ncode O O\nand O O\nmakes O O\nit O O\nclear O O\nwhere O O\nthe O O\ndatabase O O\nmethods O O\nare O O\nlocated O O\nboth O O\nwhen O O\nlooking O O\nat O O\na O O\nview O O\ncontroller O O\n. O O\n\nCompare O O\n[ Name Name\nDBConnector Name Name\nperformDatabaseMethod Name Name\n] Name Name\nto O O\n[ Name Name\nself Name Name\nperformDatabaseMethod Name Name\n] Name Name\nthe O O\nsecond O O\none O O\nseems O O\nweird O O\nand O O\nout O O\nof O O\nplace O O\nif O O\nself Name Name\nis O O\na O O\nUIViewController Name Name\nsubclass O O\n. O O\n\nAnother O O\noption O O\nis O O\nusing O O\na O O\nsingleton O O\ndatabase O O\naccessor O O\nwhich O O\nyou O O\naccess O O\nusing O O\n[ Name Name\n[ Name Name\nDBConnector Name Name\nsharedInstance Name Name\n] Name Name\nperformMethod Name Name\n] Name Name\nwhere O O\nsharedInstance Name Name\nlooks O O\nsomething O O\nlike O O\nthis O O\n. O O\n\nUsing O O\nflexigrid Name Name\n, O O\nI O O\nhave O O\ntwo O O\nbuttons Name Name\n( O O\nadd O O\n, O O\ndelete O O\n) O O\non O O\nthe O O\ntoolbar Name Name\n. O O\n\nWhen O O\nthe O O\nadd O O\nbutton Name Name\nis O O\nclicked O O\n, O O\nI O O\nwant O O\nto O O\ncreate O O\na O O\nfancybox Name Name\ninput O O\nform Name Name\n. O O\n\nHow O O\ncan O O\nI O O\ndo O O\nthis O O\n? O O\n\nHere O O\nis O O\nmy O O\ncode O O\n: O O\n\nCheck O O\nout O O\nthe O O\nColorBox Name Name\nplugin Name Name\nexample O O\nhere O O\n. O O\n\nIn O O\nExcel Name Name\nI O O\nusing O O\na O O\nData Name Name\nTable Name Name\nthat O O\nconnects O O\nvia O O\na O O\ndata O O\nconnection O O\nstring Name Name\nto O O\nan O O\nsql Name Name\nserver Name Name\nprocedure O O\n. O O\n\nThe O O\nprocedure O O\naccepts O O\nsome O O\nparameters O O\nquerys O O\nand O O\nthen O O\nreturns O O\nthe O O\ndata O O\nto O O\nthe O O\nexcel Name Name\ndata Name Name\ntable Name Name\n. O O\n\nThis O O\nhas O O\nworked O O\nwell O O\nfor O O\nquite O O\na O O\nwhile O O\n. O O\n\nNow O O\nthe O O\nusers O O\nhave O O\nstarted O O\nto O O\nrandomly O O\nget O O\nthe O O\nfollowing O O\nerror O O\nmessage O O\n. O O\n\nThis O O\nis O O\nhappening O O\nrandomly O O\nas O O\nthe O O\nuser O O\ntry O O\n's O O\nit O O\nagain O O\nand O O\nit O O\nworks O O\n. O O\n\nNothing O O\nelse O O\nis O O\non O O\nthe O O\nspreadsheet Name Name\nand O O\nthe O O\nreturned O O\ninformation O O\nis O O\nwell O O\nwithin O O\nany O O\nrow Name Name\ncount O O\nlimitation O O\nthat O O\nexcel Name Name\nmay O O\nhave O O\n. O O\n\nI O O\nwas O O\nable O O\nto O O\nisolate O O\nthe O O\ncause O O\nof O O\nthe O O\nerror O O\n. O O\n\nIf O O\nyou O O\nhave O O\nsomething O O\non O O\nyour O O\nclipboard Name Name\nand O O\nthen O O\nrefresh O O\nyour O O\ntable Name Name\nit O O\ncauses O O\na O O\nconflict O O\nwhen O O\nthe O O\nrecords O O\nare O O\nreturned O O\n. O O\n\nAfter O O\nclearing O O\nmy O O\nclipboard Name Name\nand O O\nrefreshing O O\nit O O\nworked O O\nfine O O\n. O O\n\nThis O O\nmost O O\nbe O O\na O O\nflaw O O\nin O O\nthe O O\nversion O O\nof O O\nExcel Name Name\nI O O\n'm O O\nusing O O\n- O O\n2016 Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nmake O O\na O O\ncalculator Name Name\napp O O\nbut O O\nunfortunately O O\nI O O\nam O O\ngetting O O\nstuck O O\nwith O O\nparsing O O\nthe O O\nstring Name Name\n. O O\n\nThe O O\napplication O O\ntakes O O\ninput O O\nand O O\ndisplays O O\nit O O\nin O O\nan O O\nEditText Name Name\net2 Name Name\n. O O\n\nThe O O\ncalculator Name Name\ndoes O O\nthe O O\nfollowing O O\njob O O\nwhen O O\n\" O O\nequal O O\n\" O O\nkey O O\nis O O\npressed O O\n. O O\n\nI O O\nget O O\na O O\nNumberFormatException O O\nerror O O\n. O O\n\nHere O O\n's O O\nis O O\nthe O O\nerror O O\nlog O O\n: O O\n\nYou O O\nare O O\ntry O O\nto O O\nparse O O\nan O O\nnone O O\nInteger Name Name\nvalue O O\nto O O\nInteger Name Name\n\nFollow O O\nthe O O\nnumber O O\nof O O\nline O O\nprovided O O\nin O O\nthe O O\nlogcat Name Name\nto O O\ncorrect O O\nyour O O\nmistake O O\n\nyour O O\nerror O O\nmust O O\nbe O O\nhappened O O\nhere O O\n\nother O O\nhere O O\n\ntry O O\nto O O\ndo O O\nthis O O\n\nand O O\ncheck O O\nif O O\nthe O O\nleftString Name Name\ncan O O\nbe O O\nconverted O O\ninto O O\nfloat/Integer Name Name\n\nSo O O\nproblem O O\nis O O\nthat O O\nyour O O\nString Name Name\nhas O O\ninvalid O O\nformat O O\nand O O\ncannot O O\nbe O O\nparsed O O\nto O O\nnumber Name Name\n. O O\n\nSo O O\nmy O O\nsuggestion O O\nis O O\nto O O\nuse O O\nfor O O\nexample O O\nregex O O\nbefore O O\nyou O O\nwill O O\nperform O O\nparsing O O\n: O O\n\nNote O O\n: O O\nAlso O O\nadd O O\ntry-catch Name Name\nblock O O\nto O O\ncatch O O\nException Name Name\nand O O\nmake O O\nsome O O\nlog O O\nabout O O\nproblem O O\n( O O\nprint O O\nstring Name Name\nvalue O O\nfor O O\nexample O O\n) O O\n. O O\n\nI O O\nwas O O\nthinking O O\nof O O\nusing O O\n.NET Name Name\nDLR Name Name\nfor O O\na O O\nproject O O\n, O O\nbut O O\nI O O\nsee O O\nit O O\nhas O O\nn't O O\nchanged O O\nsince O O\n2010 O O\n. O O\n\nDoes O O\nanyone O O\nknow O O\nif O O\nthis O O\nproject O O\nwill O O\nbe O O\nmaintained O O\nor O O\nif O O\nit O O\nhas O O\nbeen O O\nsuperseded O O\nby O O\nanything O O\nelse O O\n? O O\n\nI O O\nam O O\nafraid O O\nto O O\nstart O O\na O O\nproject O O\nthat O O\nheavily O O\ndepends O O\non O O\nthe O O\nDLR Name Name\nif O O\nDLR Name Name\nis O O\nno O O\nlonger O O\nsupported O O\nby O O\nMicrosoft Name Name\n. O O\n\nIt O O\ngot O O\nintegrated O O\ninto O O\n.net Name Name\nin O O\nversion O O\n4.0 Name Name\nin O O\nApril O O\n2010 O O\n. O O\n\nAs O O\nsuch O O\n, O O\nthe O O\nDLR Name Name\nproject O O\nitself O O\nis O O\nn't O O\nupdated O O\nanymore O O\n. O O\n\nThe O O\nmsdn Name Name\nhas O O\na O O\ngood O O\noverview O O\n: O O\nDynamic O O\nLanguage O O\nRuntime O O\nOverview O O\n. O O\n\nwhen O O\nmy O O\nsocket Name Name\nio Name Name\nclient Name Name\nconnect O O\nto O O\nthe O O\nserver Name Name\nit O O\ndoes O O\nit O O\ntwice O O\n\ndouble O O\nconnection O O\n\nthis O O\nis O O\nan O O\nangular Name Name\n2 Name Name\nproject O O\nso O O\ni O O\ncode O O\nin O O\ntypescript Name Name\nas O O\nyou O O\ncan O O\nsee O O\n: O O\n\ni O O\ntried O O\nto O O\ncode O O\nit O O\nlike O O\nthat O O\n: O O\n\nbut O O\nunfortunately O O\nit O O\nshows O O\nto O O\nme O O\nthis O O\nerror O O\n: O O\n\nerror O O\nserver O O\n\nThe O O\nserver Name Name\ntell O O\nthat O O\nthe O O\nvalue O O\nis O O\nnot O O\ninitialized O O\n== O O\n> O O\n\" Name Name\nundefined Name Name\n\" Name Name\n\nI O O\nreally O O\ndo O O\nnot O O\nknow O O\nwhat O O\nto O O\ndo O O\n:( O O\n\nif O O\nyou O O\nhave O O\nan O O\nidea O O\n! O O\n\nthis.s Name Name\nis O O\nuninitialized O O\nuntil O O\nthis.io Name Name\nreceives O O\na O O\n\" Name Name\nconnection Name Name\n\" Name Name\nevent O O\n. O O\n\nIf O O\nthat O O\n's O O\nthe O O\nonly O O\nplace O O\nyou O O\n're O O\ninitializing O O\n, O O\nyou O O\ncan O O\nonly O O\nsubscribe O O\nthis.s Name Name\nto O O\nother O O\nevents O O\nupon O O\na O O\nconnection O O\n. O O\n\nSwitching O O\nfrom O O\n\nto O O\n\nmight O O\ndo O O\nthe O O\ntrick O O\n. O O\n\nYou O O\nare O O\nattempting O O\nto O O\nuse O O\ns Name Name\nbefore O O\nit O O\nis O O\ninitialized O O\n. O O\n\nBy O O\nmoving O O\nthe O O\nthis.s.on Name Name\ncall O O\ninto O O\nthe O O\nthis.io.on Name Name\ncallback O O\n, O O\nyou O O\nwill O O\nensure O O\nthat O O\ns Name Name\nis O O\nnot O O\nundefined Name Name\n. O O\n\nI O O\n'm O O\nattempting O O\nto O O\ncreate O O\na O O\nListView Name Name\nwhere O O\nI O O\ncan O O\ndraw O O\nsome O O\nbasic O O\nshapes O O\ninto O O\neach O O\nitem O O\nin O O\nthe O O\nListView Name Name\n. O O\n\nI O O\n've O O\nfound O O\nmany O O\nexamples O O\nusing O O\nViews/Layouts Name Name\nwithin O O\na O O\nListView Name Name\nto O O\nadd O O\nan O O\nimage Name Name\netc O O\n, O O\nbut O O\nam O O\nunsure O O\nhow O O\nI O O\nwould O O\ndraw O O\ninto O O\neach O O\none O O\nusing O O\na O O\nCanvas Name Name\nor O O\nsimilar O O\n. O O\n\nFurthermore O O\nthese O O\nexamples O O\nseem O O\nto O O\nall O O\nwork O O\nin O O\nslightly O O\ndifferent O O\nways O O\n, O O\nso O O\nI O O\nwas O O\nwondering O O\nwhat O O\nthe O O\nbest O O\nstrategy O O\nis O O\n. O O\n\nAt O O\nthe O O\nmoment O O\nI O O\njust O O\nhave O O\na O O\nMain Name Name\nclass O O\nwhich O O\npopulates O O\nthe O O\nListView Name Name\nwith O O\nbasic O O\ntext O O\n. O O\n\nMain.java Name Name\n\nNow O O\nI O O\ngather O O\nI O O\n'll O O\nneed O O\nchange O O\nthe O O\nAdapter Name Name\nbit O O\nhere O O\n, O O\nand O O\nalso O O\nwrite O O\nanother O O\nclass O O\nwhich O O\npossibly O O\nextends O O\nView Name Name\n, O O\nwhich O O\nI O O\ncan O O\ndraw O O\nto O O\n, O O\nthen O O\nadd O O\nthis O O\nas O O\nan O O\nitem O O\nin O O\nthe O O\nListView Name Name\n? O O\n\nThanks O O\nfor O O\nyour O O\nhelp O O\nin O O\nadvance O O\n. O O\n\nYou O O\nwould O O\nneed O O\nto O O\nsubclass O O\nyour O O\nListView Name Name\nto O O\na O O\ncustom O O\nimplementation O O\n. O O\n\nYou O O\ncan O O\nchange O O\nthe O O\nview Name Name\nfor O O\neach O O\nrow Name Name\nin O O\nthe O O\nListView Name Name\nby O O\nreplacing O O\nthe O O\n.. O O\n. O O\nwith O O\nthe O O\nappropriate O O\nView Name Name\ncode O O\n. O O\n\nFor O O\nexample O O\n, O O\nyou O O\ncan O O\nuse O O\nSurfaceView Name Name\nto O O\ndraw O O\non O O\nit O O\n. O O\n\nThe O O\nabove O O\ncode O O\nis O O\nn't O O\ntested O O\n, O O\nbut O O\nhopefully O O\nwill O O\ndrive O O\nyou O O\nto O O\nthe O O\nright O O\ndirection O O\n. O O\n\nMake O O\nsure O O\nyou O O\noptimize O O\nyour O O\ndrawing O O\nsuch O O\nas O O\nuse O O\ncaching O O\nwhen O O\navailable O O\n, O O\npreprocess O O\n, O O\netc O O\n. O O\n\nI O O\nlike O O\nGoogle Name Name\nWeb Name Name\nTookit Name Name\nAPI O O\napproach O O\n. O O\n\nIt O O\nuse O O\nJava Name Name\nlanguage O O\nbehind O O\nthe O O\nscenes O O\nthat O O\ncompiles O O\nONLY O O\nJavaScript Name Name\ncode O O\nWHOSE O O\nTARGET O O\nBROWSER Name Name\nNEEDS O O\n. O O\n\nIt O O\nhappens O O\nsome O O\ndevelopers O O\nwould O O\nlike O O\nto O O\nuse O O\nthat O O\nfeature O O\nin O O\npure O O\nJavaScript Name Name\nlanguage O O\n. O O\n\nAnwser O O\n: O O\nWHAT O O\nCOULD O O\nWE O O\nSUGGEST O O\nin O O\norder O O\nto O O\nfullfill O O\nthis O O\nrequirement O O\n? O O\n\nI O O\nsuggest O O\nto O O\nuse O O\nJavaScript Name Name\ncomments O O\n( O O\nas O O\na O O\nflag O O\n) O O\nas O O\na O O\nway O O\nsome O O\ncompiler Name Name\n( O O\nlike O O\nYahoo Name Name\nJavaScript Name Name\ncompiler Name Name\n) O O\nanalises O O\nour O O\napp O O\nJavaScript Name Name\ncode O O\nand O O\ngenerates O O\nonly O O\na O O\nJavaScript Name Name\nFramework Name Name\ncode O O\nneeded O O\n. O O\n\nExample O O\n: O O\na O O\nhypothetical O O\nJavaScript Name Name\nframework Name Name\n( O O\nJQuery Name Name\n, O O\nMootools Name Name\n, O O\nPrototype Name Name\nect O O\n) O O\ncode O O\n\nSo O O\nwhen O O\nmy O O\napp O O\nuse O O\na O O\nfunction O O\nsayHello Name Name\n, O O\nonly O O\nthat O O\nsayHello Name Name\nfunction O O\nand O O\nits O O\ndependencies O O\nwould O O\nbe O O\nfiltered O O\nthrough O O\nJavaScript Name Name\ncomments O O\n, O O\nnothing O O\nelse O O\n. O O\n\nSo O O\n, O O\nthis O O\nway O O\nour O O\napplication O O\nwould O O\nbe O O\nlighter O O\n, O O\nby O O\nusing O O\nonly O O\nJavaScript Name Name\nFramework Name Name\ncode O O\nneeded O O\n. O O\n\nAnd O O\nyou O O\n: O O\nwhat O O\ndo O O\nyou O O\nsuggest O O\n? O O\n\nI O O\nwould O O\nsuggest O O\nlearning O O\nto O O\nprogram O O\nin O O\nJavaScript Name Name\nand O O\nunderstanding O O\nthe O O\nvarious O O\npeculiarities O O\nof O O\nthe O O\ndifferent O O\nDOM Name Name\nimplementations O O\n, O O\nthen O O\nwriting O O\njust O O\nthe O O\ncode O O\nnecessary O O\nfor O O\nyour O O\napplication O O\n. O O\n\nIf O O\nyou O O\nreally O O\ndo O O\nn't O O\nwant O O\nto O O\nhave O O\nto O O\ndeal O O\nwith O O\nre-creating O O\nall O O\nthe O O\nevent O O\nhandling O O\nshenanigans O O\nand O O\nso O O\non O O\n, O O\nthen O O\nnick O O\nthe O O\nrelevant O O\ntechniques O O\nfrom O O\nthe O O\nlibraries O O\n. O O\n\nYou O O\n'll O O\nlearn O O\na O O\nlot O O\nmore O O\nabout O O\nwhat O O\nyou O O\n're O O\ndoing O O\nthat O O\nway O O\n, O O\nas O O\nyou O O\n'll O O\nneed O O\nto O O\nactually O O\nunderstand O O\nhow O O\nit O O\nall O O\nworks O O\nto O O\nbe O O\nable O O\nto O O\nintegrate O O\nthose O O\ntechniques O O\nwith O O\nyour O O\napplication O O\n. O O\n\nHaving O O\nworked O O\nprofessionally O O\nwith O O\nJavaScript Name Name\nsince O O\n1996 O O\nI O O\n, O O\nlike O O\nmany O O\n, O O\nwas O O\ninitially O O\ntempted O O\nby O O\nthe O O\napparent O O\nease O O\nof O O\nuse O O\noffered O O\nby O O\nlibraries O O\n; O O\nbut O O\nif O O\nI O O\nsee O O\none O O\nmore O O\nanswer O O\non O O\nhere O O\nthat O O\nsays O O\n\" O O\nuse O O\njQuery Name Name\n\" O O\n( O O\nfollowed O O\nby O O\nsome O O\ncode O O\nthat O O\nis O O\nn't O O\neven O O\noptimal O O\nin O O\njQuery Name Name\n) O O\nwhen O O\nthe O O\ncorrect O O\nanswer O O\nis O O\nto O O\nuse O O\nan O O\nexisting O O\nand O O\nwell-documented O O\nfeature O O\nof O O\nJavaScript Name Name\nthat O O\nworks O O\non O O\nevery O O\nsingle O O\nimplementation O O\nsince O O\nNetscape Name Name\nNavigator Name Name\n3 Name Name\n, O O\nI O O\n'll O O\nscream O O\n;-) O O\n\nI O O\ndo O O\nn't O O\nknow O O\nabout O O\nother O O\nframeworks O O\n, O O\nbut O O\nwith O O\nDojo Name Name\nToolkit Name Name\nyou O O\ncan O O\ntake O O\nadvantage O O\nof O O\ncaching O O\nbetter O O\nby O O\nusing O O\na O O\npublic O O\nCDN O O\ncopy O O\nof O O\nthe O O\nsource O O\nin O O\nyour O O\nsite O O\n, O O\nfrom O O\nAOL Name Name\nor O O\nGoogle Name Name\n. O O\n\nIf O O\nthe O O\nJavaScript Name Name\ncode O O\nof O O\nthe O O\nframework O O\nis O O\nserved O O\nas O O\na O O\ncacheable O O\nfile O O\nthen O O\nthe O O\ndownload O O\ncost O O\nof O O\nrequesting O O\nthe O O\nentire O O\nframework O O\n( O O\ne.g O O\n. O O\njQuery.js Name Name\n) O O\ncan O O\nbe O O\neliminated O O\n, O O\nbut O O\nif O O\nyou O O\nwere O O\ngenerating O O\nthe O O\nframework O O\ncode O O\non O O\nthe O O\nfly O O\n( O O\nas O O\nyou O O\nsuggest O O\nabove O O\n) O O\nthen O O\nit O O\n's O O\ngoing O O\nto O O\nbe O O\nharder O O\nto O O\ntake O O\nadvantage O O\nof O O\ncaching O O\n. O O\n\nOn O O\ntop O O\nof O O\nthis O O\nthe O O\nmemory O O\ncost O O\nof O O\ndefining O O\nthe O O\nentire O O\nframework O O\nis O O\nprobably O O\nunlikely O O\nto O O\nbe O O\nproblematic O O\n( O O\nassuming O O\nthe O O\nframework O O\nis O O\nwritten O O\nsensibly O O\n) O O\n. O O\n\nSo O O\n, O O\npulling O O\nin O O\nthe O O\nentire O O\nframework O O\n, O O\nas O O\nis O O\nthe O O\ncommon O O\ncase O O\n, O O\nis O O\nsimple O O\n, O O\nworks O O\nwell O O\nand O O\ndoes O O\nn't O O\nrequire O O\na O O\nparticular O O\nserver-side Name Name\ninfrastructure O O\n( O O\nlike O O\nGWT Name Name\ndoes O O\n) O O\n. O O\n\nI O O\nexpect O O\nto O O\noutput O O\n: O O\n\nacej O O\n\nwhich O O\nworks O O\nfine O O\nwith O O\nthis O O\nalgorithm O O\nbut O O\nthere O O\nis O O\na O O\nproblem O O\nwith O O\noutputting O O\nthe O O\nresult O O\nand O O\nthis O O\nproblem O O\ncauses O O\nstack Name Name\nto O O\noverflow O O\n. O O\n\nHow O O\ndo O O\nI O O\nfix O O\nit O O\n? O O\n\nLets O O\ntake O O\na O O\ncloser O O\nlook O O\nat O O\nyour O O\noutput O O\noperator O O\n: O O\n\nIt O O\n's O O\ncalled O O\nwhen O O\nyou O O\noutput O O\na O O\nstd::vector<char> Name Name\n. O O\n\nIt O O\nwill O O\nthen O O\noutput O O\na O O\nstd::vector<char> Name Name\nwhich O O\ncauses O O\na O O\nrecursive O O\ncall O O\n, O O\nand O O\nso O O\non O O\nin O O\ninfinity O O\n( O O\nor O O\nuntil O O\nyou O O\nget O O\na O O\nstack O O\noverflow O O\n) O O\n. O O\n\nWhat O O\nyour O O\noutput O O\noperator O O\nneeds O O\nto O O\nto O O\nis O O\niterate O O\nover O O\nthe O O\nvector Name Name\nand O O\noutput O O\neach O O\nelement O O\n. O O\n\nOn O O\nan O O\nunrelated O O\nnote O O\n, O O\ndo O O\nn't O O\npass O O\nthe O O\nvector Name Name\nby O O\nvalue O O\nto O O\nthe O O\nfunction O O\n. O O\n\nInstead O O\nuse O O\na O O\nconstant O O\nreference O O\n: O O\n\nDid O O\nyou O O\nintend O O\nto O O\nuse O O\nstd::string Name Name\nand O O\nused O O\nincorrect O O\nSTL Name Name\ncontainer O O\ninstead O O\n. O O\n\nOutput O O\n\nI O O\nam O O\nfirst O O\nsorry O O\nto O O\nsay O O\nthat O O\nI O O\ndo O O\nnot O O\nhave O O\naccess O O\nto O O\ngitHub Name Name\nor O O\nsourceForge.net Name Name\n, O O\nso O O\nI O O\nca O O\nn't O O\nretrieve O O\nsolution O O\nlike O O\nthis O O\n: O O\npossible O O\nanswer O O\n\nI O O\nhave O O\nhalf O O\na O O\ngiga O O\n( O O\n510199112 O O\nbytes O O\n) O O\nto O O\ndownload O O\nby O O\nftp O O\nbut O O\nthere O O\nis O O\na O O\ntime-out O O\nerror O O\n: O O\n\nI O O\nwould O O\nlike O O\nto O O\nmanage O O\nmy O O\ntime O O\nout O O\nbutdo O O\nnot O O\nknow O O\nhow O O\nto O O\nproceed O O\nin O O\nmy O O\ncurrent O O\ncode O O\n: O O\n\nUsing O O\najax Name Name\n, O O\nI O O\nmade O O\nit O O\npossible O O\nso O O\nthat O O\na O O\nuser O O\ngets O O\nlogout O O\nafter O O\n10 O O\nseconds O O\nof O O\nstaying O O\non O O\nthe O O\nsame O O\npage O O\n. O O\n\nKeep O O\nin O O\nmind O O\nthat O O\nthe O O\n10 O O\nseconds O O\nis O O\njust O O\nfor O O\ntesting O O\npurposes O O\n. O O\n\nHowever O O\n, O O\nif O O\nthe O O\nuser O O\ncloses O O\ntheir O O\nbrowser Name Name\nbefore O O\nthe O O\n10 O O\nseconds O O\nare O O\nup O O\n, O O\nthey O O\ndo O O\nnot O O\nget O O\nlog O O\nout O O\n. O O\n\nI O O\nthought O O\nabout O O\nlogging O O\nthem O O\nout O O\nwhen O O\nthey O O\nexit O O\ntheir O O\nbrowser Name Name\n, O O\nbut O O\nI O O\nhave O O\nyet O O\nto O O\nfigure O O\nout O O\nhow O O\n, O O\nand O O\neven O O\nif O O\nI O O\ndo O O\n, O O\nwhat O O\ndoes O O\nexiting O O\ntheir O O\nbrowser Name Name\nentails O O\n? O O\n\nDoes O O\nit O O\ncount O O\nif O O\nthey O O\njust O O\nclose O O\na O O\ntab Name Name\nwhile O O\nthere O O\nare O O\nother O O\ntabs Name Name\nopen O O\n? O O\n\nWhat O O\nif O O\nthey O O\nhave O O\n2 O O\n, O O\n3 O O\nor O O\nmore O O\nbrowsers Name Name\nopen O O\nat O O\nthe O O\nsame O O\ntime O O\n? O O\n\nHow O O\ndo O O\nI O O\ndetermine O O\nthat O O\nall O O\nthose O O\nopen O O\nbrowsers Name Name\nare O O\nexited O O\nbefore O O\nlogging O O\nthem O O\nout O O\n? O O\n\nThe O O\nonBeforeUnload Name Name\nevent O O\nshould O O\nwork O O\nfor O O\nyou O O\n. O O\n\nIt O O\ncovers O O\n: O O\n\nClosing O O\na O O\ntab Name Name\n( O O\nregardless O O\nof O O\nhow O O\nmany O O\ntabs Name Name\nare O O\nopen O O\n) O O\n\nExiting O O\nthe O O\nbrowser Name Name\n\nNavigating O O\naway O O\nfrom O O\nthe O O\npage Name Name\n\nRefreshing O O\nthe O O\npage Name Name\n\nYou O O\ncan O O\nuse O O\nthis O O\nas O O\ninline O O\nattributes O O\n, O O\nor O O\nto O O\ntrigger O O\najax Name Name\nfunctions O O\nto O O\nnotify O O\nthe O O\nserver Name Name\n. O O\n\nThere O O\nare O O\nseveral O O\nmethods O O\nto O O\naccomplish O O\nwhat O O\nyou O O\nare O O\nlooking O O\nfor O O\n, O O\nhowever O O\nI O O\nmust O O\nnote O O\nI O O\nhave O O\nnever O O\nattempted O O\nwhat O O\nyou O O\nare O O\ntrying O O\n. O O\n\nI O O\nam O O\nonly O O\nspeaking O O\nfrom O O\nwhat O O\nI O O\nhave O O\nread O O\nabout O O\nit O O\n. O O\n\nHere O O\nare O O\nsome O O\nother O O\nsources O O\non O O\nSO Name Name\nas O O\nwell O O\n. O O\n\nHope O O\nthis O O\nhelps O O\n! O O\n\nI O O\nhave O O\na O O\nsimple O O\nquestion O O\nabout O O\njquery Name Name\nslideDown Name Name\n, O O\nSlideUp Name Name\n. O O\n\nI O O\n'm O O\nusing O O\nslideDown Name Name\nto O O\nslide O O\na O O\ndiv Name Name\non O O\nclick O O\n, O O\nlike O O\n\nHow O O\ncan O O\nI O O\ndo O O\nit O O\nso O O\nthat O O\nif O O\nthe O O\n#box Name Name\nis O O\nalready O O\nslided O O\ndown O O\n, O O\nit O O\nshould O O\nslide O O\nup O O\nby O O\nclicking O O\nagain O O\n? O O\n\nThanks O O\n. O O\n\nuse O O\n.slideToggle() Name Name\ninstead O O\n\n$(\"#box\").slideToggle(\"slow\") Name Name\n; Name Name\n\nI O O\nhave O O\na O O\nserver-client Name Name\napplication O O\n[ O O\nTCP O O\nsockets O O\n, O O\n.NET Name Name\n4.0 Name Name\n] O O\n. O O\n. O O\n\nthe O O\napplication O O\nabout O O\n: O O\n\ndo O O\nthe O O\ncommands O O\nthat O O\nreceived O O\nfrom O O\nthe O O\nclient Name Name\n\nreceives O O\nfiles O O\n\nsend O O\na O O\nscreenshot O O\nimage Name Name\n\nthe O O\napplication O O\nshould O O\ndo O O\nthe O O\n3 O O\ntasks O O\nin O O\nthe O O\nsame O O\ntime O O\n\nAfter O O\ni O O\ndone O O\nthat O O\nand O O\nit O O\nworked O O\n. O O\n. O O\ni O O\nrealized O O\nthat O O\nthese O O\nkind O O\nof O O\napplication O O\nshould O O\nuse O O\none O O\nport Name Name\nfor O O\nall O O\ntasks O O\n. O O\n. O O\nlike O O\nRadmin Name Name\nand O O\nnetsupport Name Name\n. O O\n. O O\netc O O\n\nbut O O\ni O O\nused O O\n3 O O\nports O O\n. O O\n. O O\none O O\nto O O\nkeep O O\nreceiving O O\ncommands O O\nany O O\ntime O O\nthe O O\nclient Name Name\nsends O O\n. O O\n\nand O O\none O O\nfor O O\nreceiving O O\nfiles O O\n. O O\n. O O\nand O O\none O O\nif O O\nthe O O\nclient Name Name\nasked O O\nfor O O\na O O\nscreenshot O O\n\nso O O\nis O O\nit O O\nfine O O\nto O O\nuse O O\n3 O O\nports Name Name\nfor O O\na O O\nnetwork O O\napplication O O\n? O O\n\n. O O\n. O O\n\nI O O\n've O O\ntried O O\nto O O\ncreate O O\n3 O O\nsockets O O\non O O\nthe O O\nclient Name Name\nside O O\nto O O\nconnect O O\nto O O\nserver Name Name\non O O\nthe O O\nsame O O\nport Name Name\n( O O\nex:9090 O O\n) O O\n\nbut O O\nwhen O O\ni O O\ntried O O\nto O O\nsend O O\na O O\nfile O O\nfrom O O\nthe O O\nclient Name Name\n. O O\n. O O\nthe O O\nserver Name Name\nreceived O O\nthe O O\nbytes O O\nin O O\nJob Name Name\nfunction O O\nthat O O\n's O O\nshould O O\nreceives O O\nthe O O\ncommands O O\nonly O O\n.. O O\n. O O\nso O O\nit O O\nlooks O O\nlike O O\ni O O\nca O O\nn't O O\nuse O O\none O O\nport Name Name\nfor O O\nthose O O\ntasks O O\nso O O\nis O O\nit O O\npossible O O\nuse O O\none O O\nport Name Name\nfor O O\nall O O\nof O O\nthe O O\nthree O O\ntasks O O\nthat O O\nthey O O\nmay O O\nwork O O\nat O O\nthe O O\nsame O O\ntime O O\n? O O\n\nAdded O O\nquestion O O\n: O O\n\nlets O O\nsay O O\nthe O O\nserver Name Name\nhas O O\none O O\nport Name Name\n. O O\n\nthe O O\nclient Name Name\nconnect O O\nto O O\nserver Name Name\nfor O O\ncommands O O\n. O O\n. O O\nlet O O\n's O O\ncall O O\nit O O\ncmdClient Name Name\nwhich O O\nits O O\nport Name Name\nis O O\n11589then Name Name\na O O\nJob Name Name\nThread O O\nstarted O O\nfor O O\nthis O O\nclient Name Name\nlike O O\nthe O O\ncode O O\nup O O\n. O O\n\nthen O O\nthe O O\nclient Name Name\nconnect O O\nwith O O\nanother O O\nsocket O O\nto O O\nthe O O\nserver Name Name\n. O O\n. O O\ndataClient Name Name\nwhich O O\nits O O\nport Name Name\nis O O\n1800 Name Name\nthen O O\nwhen O O\ni O O\nuse O O\nthe O O\ndataClient Name Name\nto O O\nsend O O\na O O\nfile O O\n. O O\n. O O\nthe O O\nserver Name Name\nreceives O O\nthe O O\nbytes O O\nat O O\nthe O O\njob Name Name\nMethod O O\n. O O\n. O O\n\n! O O\n! O O\n\nwhy O O\ndoes O O\nthat O O\nhappene O O\n? O O\n\nYes O O\n, O O\nit O O\nis O O\nwise O O\nto O O\nuse O O\nmultiple O O\nports Name Name\nwhen O O\ndoing O O\nfile O O\ntransfers O O\n. O O\n\nIt O O\nwould O O\nrequire O O\na O O\nquite O O\nadvanced O O\nprotocol O O\nto O O\nuse O O\nthe O O\nsame O O\nport Name Name\nand O O\nstill O O\nkeep O O\nthe O O\napplication O O\nresponse O O\n( O O\nas O O\nyou O O\nstill O O\nhave O O\nto O O\nbe O O\nable O O\nto O O\nsend O O\ncommands O O\nduring O O\nfile O O\ntransfers O O\n) O O\n. O O\n\nBut O O\nI O O\ndo O O\nnot O O\nrecommend O O\nyou O O\nto O O\nuse O O\nthree O O\nfixed O O\nports Name Name\n. O O\n\nUse O O\none O O\nport Name Name\nfor O O\nall O O\ncommands O O\nand O O\nan O O\narbitrary O O\nnumber O O\nof O O\nports Name Name\nfor O O\nthe O O\nfile O O\ntransfers O O\n. O O\n\nA O O\nfile O O\ntransfer O O\nwould O O\nlook O O\nlike O O\nthis O O\n: O O\n\n( O O\nCmdPort O O\n) O O\nClient Name Name\n-> O O\nServer Name Name\nHey O O\nI O O\nwant O O\nto O O\ntransfer O O\nfile O O\nXXX Name Name\nwith O O\nsize O O\nYYYY Name Name\n\n( O O\nCmdPort O O\n) O O\nServer Name Name\n-> O O\nClient Name Name\nRoger O O\n, O O\nconnect O O\nto O O\nport Name Name\n8217 Name Name\nand O O\ntransfer O O\nthe O O\nfile O O\n\n( O O\n8217 O O\n) O O\nClient Name Name\n-> O O\nServer Name Name\nConnects O O\n, O O\ntransfer O O\nthe O O\nentire O O\nfile O O\n, O O\ndisconnect O O\n\n( O O\n8217 O O\n) O O\nServer Name Name\nChecks O O\nthat O O\nthe O O\ntransferred O O\nsize O O\nmatches O O\nthe O O\none O O\nspecified O O\nin O O\nstep O O\n#1 O O\n\nThat O O\nallows O O\nyou O O\nto O O\ntransfer O O\nseveral O O\nfiles O O\nat O O\nthe O O\nsame O O\ntime O O\n. O O\n\nLet O O\nthe O O\nserver Name Name\ncreate O O\na O O\nnew O O\nlistening O O\nsocket O O\nusing O O\nport Name Name\n0 Name Name\n. O O\n\nIt O O\ntells O O\nthe O O\nOS O O\nto O O\nselect O O\na O O\nfree O O\nport Name Name\n. O O\n\nThen O O\nuse O O\nSocket.LocalEndpoint Name Name\nto O O\nfind O O\nout O O\nthe O O\nport Name Name\nbefore O O\nsending O O\nit O O\nback O O\nin O O\nstep O O\n#2 O O\n. O O\n\nThe O O\nspecified O O\napproach O O\nalso O O\nlets O O\nyou O O\ntake O O\nadvantage O O\nof O O\nSocket.SendFile Name Name\nwhich O O\nis O O\nprobably O O\nthe O O\nmost O O\neffective O O\nand O O\nfastest O O\nway O O\nto O O\nsend O O\nfiles O O\nusing O O\n.NET Name Name\n. O O\n\n( O O\nFTP O O\nuses O O\nthe O O\nsame O O\napproach O O\n, O O\nas O O\ndo O O\nbittorrent O O\n. O O\n\nYou O O\nmight O O\nhave O O\nused O O\na O O\nfile Name Name\nmanager Name Name\nwhen O O\ndownloading O O\nfiles O O\nfrom O O\nthe O O\nweb O O\n. O O\n\nThey O O\ntakes O O\na O O\nmore O O\nextreme O O\napproach O O\nand O O\nsplits O O\nup O O\nthe O O\nfile O O\ndownload O O\nover O O\nmultiple O O\nsockets O O\nto O O\nget O O\naround O O\nweb O O\nserver Name Name\nbandwidth O O\nthrottling O O\n. O O\n) O O\n\nupdate O O\nin O O\nresponse O O\nto O O\na O O\ncomment O O\n: O O\n\nYou O O\ndid O O\nnot O O\nspecify O O\nthat O O\ninformation O O\nin O O\nthe O O\noriginal O O\nquestion O O\n, O O\nwhich O O\nmade O O\nme O O\nassume O O\nthat O O\nyou O O\nonly O O\ntransfer O O\none O O\nfile O O\nat O O\na O O\ntime O O\n. O O\n\nBatch O O\ntransfers O O\nwould O O\nwork O O\nin O O\nthe O O\nsame O O\nway O O\n, O O\njust O O\nchange O O\nso O O\nthat O O\nstep O O\n#1 O O\nsends O O\na O O\nlist Name Name\nof O O\nfilename+size O O\nand O O\nthen O O\nsend O O\nall O O\nfiles O O\nafter O O\neach O O\nother O O\nin O O\nstep O O\n#3 O O\n. O O\n\nIt O O\nwould O O\nnot O O\nbe O O\nbest O O\npractice O O\nto O O\nuse O O\n3 O O\nports Name Name\nunless O O\neach O O\noperation O O\nwas O O\nit O O\n's O O\nown O O\napplication O O\n, O O\ni.e O O\n. O O\na O O\nfile Name Name\nserver Name Name\n, O O\nan O O\nimage Name Name\nserver Name Name\netc O O\n. O O\n\nYou O O\nshould O O\ncreate O O\none O O\napplication O O\nlistening O O\non O O\n1 O O\nport Name Name\nand O O\nthen O O\nuse O O\nThreading O O\nto O O\naccept O O\nmultiple O O\nconnections O O\nto O O\nthe O O\nserver Name Name\n( O O\neach O O\nwith O O\nit O O\n's O O\nown O O\ninstance O O\nof O O\na O O\nStreamReader Name Name\n) O O\n. O O\n\nYou O O\ncould O O\nthen O O\nwrite O O\na O O\nparser Name Name\nmethod O O\nfor O O\nthe O O\nusers O O\ninput O O\n. O O\n\nFor O O\nexample O O\n, O O\nif O O\nthe O O\nuser O O\nsends O O\nthe O O\ncommand O O\n\" Name Name\nRECIEVE Name Name\nFILE Name Name\n\" Name Name\n, O O\nthe O O\nserver Name Name\nwould O O\nexpect O O\na O O\nFile O O\n, O O\nif O O\nthe O O\nuser O O\nsent O O\nthe O O\ncommand O O\n\" Name Name\nIMAGE Name Name\n\" Name Name\nthe O O\nserver Name Name\nwould O O\nexpect O O\nan O O\nimage Name Name\n. O O\n\nAn O O\nexample O O\nof O O\nmulti O O\nthreaded O O\nservers Name Name\ncan O O\nbe O O\nfound O O\nhere O O\n: O O\n\nhttp://csharp.net-informations.com/communications/csharp-multi-threaded-server-socket.htm O O\n\nI O O\nwant O O\nto O O\nroute Name Name\nmultiple O O\npaths O O\nto O O\nthe O O\nsame O O\ntemplate O O\n. O O\n\nFor O O\nexample O O\n, O O\n/abc/home Name Name\nand O O\n/home Name Name\nwill O O\nboth O O\nshow O O\nthe O O\nhome O O\ntemplate O O\n. O O\n\nThe O O\npaths O O\ncan O O\nalso O O\nhave O O\nsubpaths O O\n, O O\nso O O\nabc/parent/child Name Name\nand O O\n/parent/child Name Name\nshould O O\nroute Name Name\nto O O\nsame O O\npath O O\nalso O O\n. O O\n\nI O O\ncan O O\nsimply O O\nrepeat O O\n: O O\n\nBut O O\nI O O\ndo O O\nn't O O\nwant O O\nto O O\nrepeat O O\nit O O\n. O O\n\nIf O O\nI O O\nwant O O\nto O O\nchange O O\nthe O O\ntemplate O O\nto O O\nroute Name Name\nto O O\n, O O\nI O O\nwant O O\nto O O\nonly O O\nchange O O\nit O O\nonce O O\n- O O\nfor O O\nconvenience O O\nand O O\nalso O O\nto O O\nminimize O O\nerrors O O\n. O O\n\nI O O\ncan O O\nalso O O\nuse O O\nparameters O O\n: O O\n\nBut O O\nthis O O\n, O O\nagain O O\n, O O\nis O O\nrepeating O O\nmyself O O\n. O O\n\nAlso O O\n, O O\nthere O O\ncan O O\nsubpaths O O\n, O O\nand O O\nI O O\ndo O O\nn't O O\nwant O O\nto O O\ndefine O O\nrouting O O\nfor O O\n/:_abc/:parent/:children Name Name\nand O O\n/:_abc/:grandparent/:parent/:children/ Name Name\n: O O\n, O O\nbecause O O\nit O O\nwill O O\nbe O O\nmessy O O\n. O O\n\nI O O\nalso O O\ntried O O\nusing O O\nRouter.go() Name Name\n: O O\n\nBut O O\nthis O O\nremoves O O\nthe O O\n/abc/ Name Name\nfrom O O\nthe O O\nurl O O\n, O O\nwhich O O\nis O O\nundesired O O\nin O O\nmy O O\ncase O O\n. O O\n\nThe O O\nbest O O\nsolution O O\nI O O\nhave O O\nright O O\nnow O O\nis O O\nusing O O\na O O\nshared O O\nfunction O O\n: O O\n\nCan O O\nI O O\ninstead O O\ndo O O\nsomething O O\nlike O O\nspecify O O\nan O O\narray Name Name\n, O O\nor O O\ncomma-separated O O\nstring Name Name\n: O O\n\nHow O O\ndo O O\nI O O\nefficiently O O\nroute Name Name\nmultiple O O\npaths O O\nto O O\none O O\ntemplate O O\n, O O\nwhile O O\nnot O O\nrepeating O O\nmyself O O\n? O O\n\nUse O O\na O O\nregular O O\nexpression O O\n( O O\nregex O O\n) O O\nthat O O\nmatches O O\nboth O O\n/home Name Name\nand O O\n/abc/home Name Name\n. O O\n\nI O O\nmade O O\na O O\nsecond O O\ntemplate O O\nthat O O\nonly O O\nincludes O O\nthe O O\nfirst O O\n. O O\n\nIn O O\nyour O O\ncase O O\nthis O O\nmight O O\nlook O O\nlike O O\nthis O O\n: O O\n\nI O O\nstill O O\ndo O O\nn't O O\nunderstand O O\nwhy O O\nthe O O\noutput O O\nin O O\nscanFileName Name Name\n( Name Name\nJlabel Name Name\n) Name Name\nis O O\ndirectly O O\nshowing O O\n\" Name Name\n. Name Name\n\" Name Name\ninstead O O\nof O O\n\"\" Name Name\n, O O\n\" Name Name\nPlease Name Name\nWait Name Name\n. Name Name\nLoading Name Name\nDatabase Name Name\n.. Name Name\n. Name Name\n\" Name Name\n, O O\nand O O\nthen O O\n\" Name Name\n. Name Name\n\" Name Name\n. O O\n\nPlease O O\nhelp O O\n. O O\n\nI O O\n'd O O\nbe O O\ngrateful O O\nto O O\nyou O O\n. O O\n\nStart O O\nby O O\nhaving O O\na O O\nread O O\nthrough O O\nConcurrency O O\nin O O\nSwing Name Name\n. O O\n\nSwing Name Name\nis O O\na O O\nsingle O O\nthreaded O O\nframework O O\n, O O\nthis O O\nmeans O O\nthat O O\nanything O O\nwhich O O\nblocks O O\nthis O O\nthread O O\n( O O\nlike O O\nThread.sleep Name Name\n) O O\nwill O O\nprevent O O\nthe O O\nframework O O\nfrom O O\nprocessing O O\nnew O O\nevents O O\n( O O\nincluding O O\npaint O O\nrequests O O\n) O O\n. O O\n\nWhile O O\nthere O O\nare O O\nany O O\nnumber O O\nof O O\nways O O\nyou O O\nmight O O\nmake O O\nthis O O\nwork O O\n, O O\nprobably O O\nthe O O\neasiest O O\nis O O\na O O\nSwing Name Name\njavax.swing.Timer Name Name\n. O O\n\nTake O O\na O O\nlook O O\nat O O\nHow O O\nto O O\nuse O O\nSwing Name Name\nTimers Name Name\nfor O O\nmore O O\ndetails O O\n.. O O\n. O O\n\nTLDR O O\n: O O\nGetting O O\nfatal O O\nerror O O\n' O O\nfailed O O\nto O O\nget O O\nprocess O O\ntimes O O\n' O O\non O O\ncross-native Name Name\nbuild O O\nof O O\ngcc Name Name\n. O O\n\nCan O O\nI O O\nremove O O\nreport_times Name Name\ncode O O\nfrom O O\ngcc.c Name Name\nOR O O\nuse O O\ngcc Name Name\ncommand O O\nline O O\noption O O\nto O O\ndisable O O\nreport_times Name Name\nOR O O\nbuild O O\ngcc Name Name\nwithout O O\nlibiberty Name Name\n( O O\nwhich O O\ncontains O O\npex_get_times Name Name\nused O O\nby O O\nreport_times Name Name\n\nDETAIL O O\n\nAfter O O\nbeating O O\nmy O O\nhead O O\nagainst O O\nvarious O O\nproblems O O\nI O O\n've O O\n( O O\nfinally O O\n) O O\nsuccessfully O O\nused O O\nthe O O\nAndroid Name Name\nNDK Name Name\nstandalone Name Name\ntoolchain Name Name\nto O O\nbuild O O\nbinutils Name Name\n2.23 Name Name\nand O O\ngcc Name Name\n4.70 Name Name\n. O O\n\nMy O O\ncurrent O O\nproblem O O\nis O O\ngetting O O\nit O O\nto O O\nrun O O\non O O\nmy O O\ndevice O O\n. O O\n\nI O O\n've O O\nwritten O O\na O O\nstandard O O\n' O O\nhello O O\nworld O O\n' O O\n( O O\ncopied O O\nfrom O O\nhere O O\n) O O\nto O O\ntest O O\ngcc Name Name\non O O\nmy O O\ndevice O O\n. O O\n\nWhen O O\nI O O\nrun O O\n: O O\n\narm-linux-eabi-gcc Name Name\nhello.c Name Name\n-o Name Name\nhello Name Name\n\nor O O\n: O O\n\narm-linux-eabi-gcc Name Name\nhello.c Name Name\n\nI O O\nget O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\narm-linux-eabi-gcc Name Name\n: Name Name\nfatal O O\nerror O O\n: O O\nfailed O O\nto O O\nget O O\nprocess O O\ntimes O O\n: O O\nNo O O\nsuch O O\nfile O O\nor O O\ndirectory O O\n. O O\n\nGoogle Name Name\ndid O O\nnot O O\nreturn O O\nmuch O O\nexcept O O\nfor O O\nlinks O O\nto O O\ngcc.c Name Name\nsource O O\n. O O\n\nExamining O O\nthe O O\nsource O O\n, O O\nI O O\nfound O O\nthe O O\nerror O O\nin O O\na O O\nfunction O O\n( O O\nmodule O O\n? O O\n\nextension O O\n? O O\n) O O\n\ncalled O O\nreport_times Name Name\n. O O\n\nThe O O\nerror O O\nis O O\nreturned O O\nby O O\nthe O O\nfunction O O\n( O O\nmodule O O\n? O O\nextension O O\n? O O\n) O O\n\npex_get_times Name Name\n.... O O\nI O O\n' O O\nm O O\nguessing O O\nit O O\ndoes O O\nso O O\nif O O\nit O O\nca O O\nn't O O\nget O O\nthe O O\nprocess O O\ntimes O O\n. O O\n\nThe O O\npex_get_times Name Name\nfunction O O\n( O O\nmodule O O\n? O O\nextension O O\n? O O\n\nI O O\n'm O O\nnot O O\nsure O O\nwhat O O\nit O O\nis O O\n) O O\nis O O\ndefined O O\nin O O\nlibiberty Name Name\n. O O\n\nI O O\ncan O O\nuse O O\n--disable-build-libiberty Name Name\n, O O\nbut O O\nit O O\ndoes O O\nn't O O\nhelp O O\nfor O O\nthe O O\nhost O O\n( O O\nmy O O\nNookHD Name Name\n) O O\ngcc Name Name\nbuild O O\n. O O\n\nMy O O\nquestion(s) O O\n: O O\n\nCan O O\nthis O O\nportion O O\nof O O\ngcc.c Name Name\nbe O O\nsafely O O\n( O O\nand O O\neasily O O\n) O O\nremoved O O\n... O O\ni O O\n. O O\nthe O O\nreport_times Name Name\nfunction Name Name\nand O O\neverything O O\nassociated O O\nwith O O\nit O O\n? O O\n\nor O O\n\nIs O O\nthere O O\na O O\ncommand Name Name\nline Name Name\noption O O\nto O O\ntell O O\narm-linux-eabi-gcc Name Name\nNOT O O\nto O O\nuse O O\nreport_times Name Name\n? O O\n\nor O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\ndisable O O\nbuild O O\nof O O\nlibiberty Name Name\nfor O O\nhost/target O O\nfor O O\nboth O O\ngcc Name Name\nand O O\nbinutils Name Name\n, O O\nand O O\nwould O O\nthat O O\nfix O O\nthe O O\nerror O O\n? O O\n\nAs O O\nalways O O\n... O O\nI O O\n' O O\nll O O\nkeep O O\nresearching O O\nwhile O O\nawaiting O O\nan O O\nanswer O O\n. O O\n\nFound O O\nthis O O\nabout O O\nan O O\nhour O O\nafter O O\nposting O O\nthis O O\nquestion O O\n. O O\n\nMaybe O O\ntwo O O\n. O O\n\nApparently O O\nreport_times Name Name\nis O O\npart O O\nof O O\ndebugging O O\nsymbols O O\n(?) O O\n\nfor O O\nGCC Name Name\n. O O\n\nTo O O\nexclude O O\nreport_times Name Name\n( O O\nwhich O O\ncauses O O\nthe O O\n' O O\nfailed O O\nto O O\nget O O\nprocess O O\ntimes O O\n' O O\nfrom O O\nthe O O\noriginal O O\nquestion O O\n) O O\nyou O O\nhave O O\nto O O\nbuild O O\nthe O O\ndebug O O\n... O O\nor O O\nrelease O O\n... O O\nversion O O\nof O O\ngcc O O\n. O O\n\nTo O O\ndo O O\nthis O O\n, O O\nI O O\nused O O\ninfo O O\nfrom O O\nthis O O\nlink O O\n: O O\nhttp://www-gpsg.mit.edu/~simon/gcc_g77_install/build.html O O\n\nBUT O O\n, O O\nI O O\nomitted O O\nthe O O\n-g Name Name\nfrom O O\nthe O O\nLIBCXXFLAGS Name Name\nand O O\nLIBCFLAGS Name Name\nand O O\nI O O\nadded O O\nLIBCPPFLAGS Name Name\nwithout O O\n-g Name Name\njust O O\nin O O\ncase O O\n. O O\n\nRan O O\nmake Name Name\nDESTDIR Name Name\n= Name Name\n/staging/install/path Name Name\ninstall-host Name Name\n, O O\ntarballed O O\nand O O\ntransferred O O\nto O O\ndevice O O\n. O O\n\nNo O O\nmore O O\n' O O\nfailed O O\nto O O\nget O O\nprocess O O\ntimes O O\n' O O\nerror O O\n. O O\n\nI O O\nam O O\nseeing O O\nanother O O\nerror O O\n, O O\nbut O O\nit O O\nis O O\nnot O O\nrelated O O\nto O O\nthis O O\nquestion O O\n\nWhen O O\ni O O\ntried O O\nthis O O\ncommand O O\n: O O\n\nI O O\ngot O O\nerror O O\nas O O\n: O O\n\nWhat O O\nis O O\nthe O O\nmain O O\nreason O O\nfor O O\ngiving O O\nerror O O\nas O O\n\" O O\nInternal O O\ndata O O\nflow O O\nerror O O\n\" O O\nin O O\ngstreamer Name Name\n? O O\n\nIt O O\nis O O\nthe O O\nunfortunate O O\ncase O O\nof O O\nsomething O O\ndid O O\nnot O O\nwork O O\n. O O\n\nRerun O O\nthe O O\ncommand O O\nwith O O\nthe O O\nenvironment O O\nvariable O O\nGST_DEBUG Name Name\n=\"* Name Name\n:2 Name Name\n\" Name Name\nto O O\nsee O O\nall O O\nwarnings O O\n. O O\n\nThere O O\nare O O\nmany O O\npotential O O\nreasons O O\nfor O O\ninternal O O\ndata O O\nflow O O\nerror O O\n. O O\n\nTo O O\nencounter O O\nthe O O\nproblematic O O\nplace O O\n, O O\njust O O\nconnect O O\na O O\nfakesink Name Name\nelement O O\nstep O O\nby O O\nstep O O\nand O O\ntry O O\n. O O\n\nAs O O\nmy O O\nscript O O\nis O O\ngetting O O\npretty O O\nlong O O\nand O O\nit O O\nwill O O\nget O O\nlonger O O\nI O O\nwas O O\nwondering O O\nif O O\nI O O\ncould O O\nwrap O O\naround O O\nsome O O\ncodeblocks O O\nwithout O O\nchangeing O O\nreally O O\nthe O O\nscope O O\nor O O\nvalues O O\n. O O\n\nI O O\n'm O O\nspeacking O O\nof O O\nsomething O O\nlike O O\ndiv Name Name\ncontainers O O\non O O\nhtml Name Name\nor O O\neven O O\nsomething O O\nlike O O\nonly O O\nwrap O O\naround O O\n\" O O\nint Name Name\nmain Name Name\n( Name Name\nvoid Name Name\n) Name Name\n\" O O\nfrom O O\nc Name Name\nlanguages O O\n\nThis O O\nwould O O\nbe O O\nthe O O\nperfect O O\npart O O\nof O O\nmy O O\nscript O O\nto O O\nwrap O O\naround O O\nin O O\nsomething O O\nlike O O\na O O\ndiv Name Name\ncontainer O O\nto O O\nget O O\nsome O O\nstructur O O\ninto O O\n, O O\nbut O O\nI O O\ndont O O\nknow O O\nif O O\nthere O O\nis O O\nan O O\noption O O\nlike O O\nthis O O\nwithout O O\nchanging O O\nscopes O O\n\nIf O O\nyou O O\nwork O O\nwith O O\nPowerShell Name Name\nISE Name Name\n, O O\nyou O O\ncan O O\nuse O O\n#region Name Name\n: O O\n\nNow O O\nyou O O\ncan O O\ncollapse O O\neach O O\nindividual O O\nregion O O\n. O O\n\nYou O O\nan O O\nalso O O\nnest O O\nthem O O\n. O O\n\nBasically O O\n, O O\nI O O\nhave O O\na O O\nsearch O O\nbox Name Name\nthat O O\nsuggests O O\nresults O O\nfrom O O\na O O\ndatabase O O\nas O O\nuser O O\ntypes O O\n. O O\n\nIt O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nExample O O\n. O O\n\nI O O\nuse O O\najax Name Name\nin O O\na O O\nfile O O\nto O O\nmake O O\na O O\nlive O O\nsearch O O\nas O O\nuser O O\ntypes O O\n: O O\n\nThen O O\nin O O\nanother O O\nfile O O\n( O O\nres.php Name Name\n) O O\nI O O\nhave O O\na O O\nsql Name Name\nrequest Name Name\nand O O\nI O O\ndisplay O O\nresults O O\n. O O\n\nI O O\nalso O O\nhave O O\nmy O O\n' O O\nonclick Name Name\n' O O\nfunction O O\nto O O\nreplace O O\nsuggestion O O\nin O O\ntext Name Name\nbox Name Name\n: O O\n\nMy O O\nproblem O O\nis O O\n: O O\nwhen O O\ni O O\nclick O O\non O O\nany O O\nof O O\nthe O O\nsuggestion O O\n, O O\nit O O\nis O O\nalways O O\nthe O O\nlast O O\noption O O\nthat O O\nis O O\nreplaced O O\nin O O\nthe O O\ntext Name Name\nbox Name Name\n, O O\nin O O\nthis O O\ncase O O\n\" Name Name\nUniversity Name Name\nof Name Name\nWashington Name Name\n\" Name Name\n. O O\n\nI O O\nhave O O\nbeen O O\ntrying O O\nto O O\nsolve O O\nthat O O\nproblem O O\nfor O O\n2 O O\ndays O O\nnow O O\nand O O\nI O O\nca O O\nn't O O\nfind O O\nthe O O\nsolution O O\n. O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\ngreatly O O\nappreciated O O\n. O O\n\nThanks O O\n\nUPDATE O O\n\nFound O O\nthe O O\nsolution O O\n, O O\nif O O\nsomeone O O\nis O O\ninterested O O\n, O O\nhere O O\n's O O\nwhat O O\nI O O\ndid O O\nin O O\nres.php Name Name\n: O O\n\nand O O\nin O O\nthe O O\nfirst O O\nfile O O\n: O O\n\nI O O\nwould O O\nn't O O\nuse O O\nthe O O\nonclick Name Name\nmethod O O\nhere O O\n. O O\n\nI O O\nwould O O\nuse O O\njQuery Name Name\nto O O\nassign O O\nthe O O\nevents O O\nto O O\nyour O O\nlist Name Name\nitems O O\n. O O\n\nBut O O\nif O O\nyou O O\nmust O O\n, O O\nin O O\nyour O O\nonclick Name Name\nmethod O O\n, O O\ntry O O\npassing O O\nthis.value Name Name\nlike O O\nso O O\n: O O\n\nThen O O\nyour O O\nfill() Name Name\nmethod O O\ncould O O\nbe O O\nsomething O O\nlike O O\nso O O\n: O O\n\nEDIT O O\n: O O\nYou O O\nare O O\nmixing O O\nplain O O\nJavaScript Name Name\nand O O\njQuery Name Name\ncode O O\n. O O\n\nI O O\nreplaced O O\nyour O O\nplain O O\nJS Name Name\nline O O\nwith O O\nthe O O\njQuery Name Name\nequivalent O O\n. O O\n\nAlso O O\n, O O\nif O O\nyou O O\nare O O\nadding O O\nthe O O\nfill() Name Name\nmethod O O\nin O O\nthe O O\nsame O O\nloop O O\nthat O O\nadds O O\nthe O O\nLIs Name Name\n, O O\nthen O O\nyou O O\nare O O\nadding O O\nmultiple O O\nfill Name Name\nmethods O O\n, O O\nwhich O O\nis O O\nincorrect O O\n. O O\n\nJust O O\nadd O O\nit O O\nonce O O\nin O O\nthe O O\nsame O O\nscript O O\ntag O O\nlike O O\nbelow O O\n. O O\n\nI O O\nget O O\nthis O O\nin O O\nValgrind Name Name\n. O O\n\nIs O O\nit O O\nany O O\nconcern O O\n? O O\n\nA O O\nbig O O\npart O O\nof O O\nValgrind Name Name\n's O O\nmagic O O\nis O O\nhow O O\nit O O\nis O O\nable O O\nto O O\nintercept/redirect O O\nfunction O O\ncalls O O\nin O O\norder O O\nto O O\nkeep O O\ntrack O O\nof O O\nthe O O\nstate O O\nof O O\nthe O O\nworld O O\n. O O\n\nAs O O\nI O O\nunderstand O O\nit O O\n, O O\nredirection O O\nis O O\nachieved O O\nusing O O\nshared O O\nobject/function O O\nname O O\npatterns O O\nwhich O O\nwhen O O\nmatched O O\n' O O\nredirect O O\n' O O\ncalls O O\nto O O\nnew O O\naddresses O O\n. O O\n\nChecking O O\nout O O\nthe O O\nvalgrind Name Name\nsource O O\n, O O\nwe O O\nfind O O\nthe O O\nnotion O O\nof O O\na O O\n' O O\nredirector O O\n' O O\n: O O\n\n( O O\nm_redir.c Name Name\nline O O\n10 O O\n4) O O\n\nSo O O\n' O O\nSpecs O O\n' O O\nprovide O O\nshared O O\nobject/function O O\nname O O\nto O O\naddress O O\nmappings O O\nand O O\n' O O\nActives O O\n' O O\nrepresent O O\nthe O O\nmappings O O\nthemselves O O\n. O O\n\nActive O O\ncomputation O O\n: O O\n\n( O O\nm_redir.c Name Name\nline O O\n120 O O\n) O O\n\nThe O O\nidea O O\nof O O\n\" O O\nconflicting O O\nredirections O O\n\" O O\nis O O\nmentioned O O\nhere O O\ntoo O O\n: O O\n\n( O O\nm_redir.c Name Name\nline O O\n15 O O\n2) O O\n\nAnd O O\nfor O O\ninterests O O\nsake O O\n, O O\nhere O O\nis O O\nwhere O O\nyour O O\nwarning O O\nis O O\ngenerated O O\n: O O\n\n( O O\nm_redir.c Name Name\nline O O\n66 O O\n4) O O\n\nSo O O\n, O O\nafter O O\nall O O\nthis O O\nit O O\nis O O\nprobably O O\nsafe O O\nto O O\nassume O O\nthat O O\n: O O\n\nThe O O\nredirection O O\nmessages O O\nare O O\npart O O\nof O O\nnormal O O\nvalgrind Name Name\noperation O O\n. O O\n\nThe O O\nwarning O O\nmessage O O\nis O O\nlikely O O\na O O\nresult O O\nof O O\nconflicting O O\nspec O O\npatterns O O\n( O O\nprobably O O\nnot O O\na O O\ngreat O O\ncause O O\nfor O O\nconcern O O\nin O O\nthis O O\ninstance O O\n. O O\n) O O\n\nReferences O O\n: O O\nValgrind Name Name\nmanual O O\n, O O\nValgrind Name Name\n3.6.1 Name Name\nsource O O\n\nThis O O\nis O O\na O O\nkind O O\nof O O\nGUI O O\nautomation O O\napplication O O\nwhereby O O\nI O O\nwant O O\nto O O\nread O O\nthe O O\ndata O O\nfrom O O\na O O\nlistview Name Name\nfrom O O\nanother O O\nprocess O O\n. O O\n\nThe O O\nlistview Name Name\nclass O O\nis O O\nSysListView32 Name Name\nand O O\nhas O O\nfollowing O O\nstyles O O\nset O O\nLVS_OWNERDRAWFIXED Name Name\n\nGenerally O O\nI O O\nam O O\nable O O\nto O O\nread O O\nthe O O\ntext O O\nfrom O O\nlistview Name Name\nusing O O\nthe O O\nfollowing O O\nprocedure O O\n\nAllocate O O\nmemory O O\nin O O\nthe O O\nmemory O O\nspace O O\nof O O\nother O O\nprocess O O\n\nSend O O\nmessage O O\nto O O\nlistview Name Name\nto O O\nread O O\nthe O O\ntext O O\nwith O O\nthe O O\npointer Name Name\nof O O\nbuffer Name Name\nallocated O O\nin O O\nthat O O\nprocess O O\n\nRead O O\nthe O O\nbuffer O O\n\nIt O O\nworks O O\nfine O O\nwhen O O\nthe O O\nlistview Name Name\nis O O\nnot O O\nownerdrawn O O\nbut O O\nin O O\nthis O O\ncase O O\n, O O\nthe O O\nlistview Name Name\nappears O O\nto O O\nbe O O\ndrawn O O\nby O O\nthe O O\nowner O O\n, O O\ni.e O O\n. O O\nthe O O\nlistitem Name Name\nhas O O\nno O O\ndata O O\n. O O\n\nIs O O\nit O O\npossible O O\nto O O\nread O O\nthe O O\ntext O O\nfrom O O\nsuch O O\na O O\nlistview Name Name\neither O O\nby O O\nthe O O\nmethod O O\nI O O\nhave O O\ndiscussed O O\nor O O\nby O O\nany O O\nmethod O O\nor O O\nby O O\nhooking O O\nthe O O\napi Name Name\nor O O\nwhatsoever O O\nmethod O O\n? O O\n\nThe O O\ncontrol O O\nmust O O\nstill O O\nadd O O\nLVITEMs Name Name\nto O O\nthe O O\nlist Name Name\nview Name Name\n. O O\n\nBut O O\nof O O\ncourse O O\nthere O O\n's O O\nno O O\nobligation O O\nto O O\nput O O\nanything O O\nuseful O O\nin O O\nthem O O\n. O O\n\nSpecifying O O\na O O\nnull O O\npszText Name Name\nor O O\niImage Name Name\nwould O O\nwork O O\njust O O\nfine O O\nif O O\nthe O O\napp O O\ndoes O O\nits O O\nown O O\ndrawing O O\n. O O\n\nIt O O\nwill O O\nimplement O O\na O O\nWM_DRAWITEM Name Name\nmessage O O\nhandler O O\nand O O\nuse O O\ninternal O O\ndata O O\nto O O\nrender O O\nthe O O\nitem O O\n. O O\n\nThere O O\nis O O\nno O O\nway O O\nto O O\nfind O O\nout O O\nwhere O O\nthat O O\ndata O O\nis O O\nstored O O\n. O O\n\nYou O O\ncould O O\nfake O O\nyour O O\nown O O\nWM_DRAWITEM Name Name\nmessage O O\n, O O\nalbeit O O\nthat O O\nit O O\nis O O\nvery O O\nhard O O\nto O O\ndo O O\nsince O O\nyou O O\nmust O O\ninject O O\ncode O O\nto O O\ncreate O O\nthe O O\nHDC O O\n, O O\nbut O O\nthat O O\njust O O\ngets O O\nyou O O\npixels O O\n, O O\nnot O O\nbytes O O\n. O O\n\nUsing O O\nOCR O O\nwould O O\nbe O O\na O O\nmajor O O\noutlier O O\nsolution O O\n. O O\n\nRealistically O O\nyou O O\n'll O O\nneed O O\nto O O\nthrow O O\nin O O\nthe O O\ntowel O O\non O O\nthis O O\none O O\n. O O\n\nGuys O O\n! O O\n\nI O O\nhave O O\na O O\none O O\nmisunderstanding O O\nin O O\njavascript Name Name\n. O O\n\nI O O\nwant O O\nmake O O\na O O\najax-request Name Name\nwith O O\nfunction O O\nfoo() Name Name\nand O O\ni O O\nwant O O\nreturn O O\nresult O O\ndata O O\nby O O\nfoo() Name Name\nreturn O O\n, O O\nbut O O\ni O O\nca O O\nn't O O\nreturn O O\nsomething O O\nin O O\ncallback Name Name\nfunction O O\nin O O\n$ Name Name\n.ajax Name Name\n. O O\n\nSo O O\ni O O\nwant O O\nthis O O\n: O O\nif O O\najax Name Name\nreurn O O\ndata O O\nthen O O\nfunction O O\nfoo() Name Name\nreturn O O\nsame O O\ndata O O\n. O O\n\nUse O O\nas O O\nbelow O O\n: O O\n\nI O O\nwant O O\nto O O\nadd O O\nan O O\nextra O O\nattribute O O\nto O O\njquery Name Name\ndialog Name Name\n. O O\n\nhow O O\nto O O\nadd O O\nan O O\nattribute O O\nlike O O\n\" O O\ndialog-status Name Name\n\" O O\nwhen O O\ncreating O O\ndialog Name Name\n. O O\n\nany O O\nmethods O O\nto O O\ndo O O\nthis O O\n? O O\n\nTry O O\nthis O O\n: O O\n\nI O O\ncurrently O O\nhave O O\nthe O O\nfollowing O O\nline O O\nin O O\nmy O O\nMakefile Name Name\n: O O\n\nEverything O O\nunder O O\nthis O O\nline O O\nwill O O\nrun O O\nwhenever O O\na O O\n.cpp Name Name\nor O O\n.hpp Name Name\nfile O O\nanywhere O O\nin O O\nmy O O\nproject O O\nis O O\nmodified O O\n( O O\nthe O O\nintended O O\nbehavior O O\n) O O\n, O O\nbut O O\nonly O O\nwhen O O\non O O\nWindows Name Name\nmachines O O\n. O O\n\nWhen O O\nI O O\nrun O O\nthe O O\nMakefile Name Name\non O O\nmy O O\nLinux Name Name\nmachine O O\n, O O\na O O\nwarning O O\nis O O\noutput O O\n( O O\n*** O O\nmixed O O\nimplicit O O\nand O O\nnormal O O\nrules O O\n: O O\ndeprecated O O\nsyntax O O\n) O O\nand O O\nthe O O\ncode O O\nwo O O\nn't O O\nrun O O\nwhen O O\nthe O O\nfiles O O\nare O O\nmodified O O\n. O O\n\nI O O\n'm O O\nvery O O\ncurious O O\nas O O\nto O O\nwhy O O\nthis O O\nis O O\nfunctioning O O\nfine O O\non O O\nWindows Name Name\nbut O O\nnot O O\nLinux Name Name\n. O O\n\nThanks O O\n. O O\n\nWindows Name Name\n: O O\nGNU Name Name\nMake Name Name\n4.1 Name Name\n( O O\nBuilt O O\nfor O O\ni686-w64-mingw32 Name Name\n) O O\n\nLinux Name Name\n: O O\nGNU Name Name\nMake Name Name\n4.1 Name Name\n( O O\nBuilt O O\nfor O O\nx86_64-pc-linux-gnu Name Name\n) O O\n\nI O O\n've O O\ngot O O\nan O O\nUbuntu Name Name\nVM Name Name\nin O O\nVirtualBox Name Name\n( O O\nv4.2.0-r80737 Name Name\n) O O\nrunning O O\non O O\nmy O O\nWindows Name Name\n7 Name Name\nbox O O\nthat O O\n's O O\nhosting O O\na O O\ngit Name Name\nrepo O O\n, O O\nwebsite O O\n, O O\nand O O\na O O\nfew O O\nother O O\ndev O O\ntools O O\n. O O\n\nIt O O\nis O O\neasily O O\naccessible O O\nfrom O O\nother O O\nmachines O O\n, O O\nand O O\non O O\nthe O O\nhost O O\nmachine O O\nvia O O\nproxies O O\n, O O\nbut O O\nI O O\nam O O\nunable O O\nto O O\naccess O O\nthe O O\nsite/repo O O\ndirectly O O\non O O\nthe O O\nhost O O\nmachine O O\n. O O\n\nThe O O\nnetwork O O\nsetup O O\nin O O\nVirtualBox Name Name\nfor O O\nthe O O\nVM Name Name\nis O O\nas O O\nfollows O O\n: O O\n\nAttached O O\nto O O\n: O O\nBridged Name Name\nAdapter Name Name\n\nAdapter Name Name\nType O O\n: O O\nIntel Name Name\nPRO/1000MT Name Name\nDesktop Name Name\n\nPromiscuous O O\nMode O O\n: O O\nDeny O O\n\nCable O O\nConnected O O\n\nMy O O\nguess O O\nwould O O\nbe O O\nthat O O\nthe O O\nhost O O\nis O O\ntrying O O\nto O O\nconnect O O\nto O O\nthe O O\nwebpage O O\nvia O O\nthe O O\nLAN O O\n, O O\nrather O O\nthan O O\nthe O O\nwider O O\nInternet O O\n, O O\nand O O\nis O O\nbeing O O\nblocked O O\nfor O O\nsome O O\nreason O O\n. O O\n\nWhat O O\nI O O\ndo O O\nn't O O\nknow O O\nis O O\nwhy O O\n, O O\nor O O\nhow O O\nto O O\nfix O O\nit O O\n, O O\nso O O\nany O O\nhelp O O\nthere O O\nwould O O\nbe O O\nawesome O O\n. O O\n\nThe O O\nset O O\nup O O\nyou O O\nhave O O\nshould O O\nwork O O\n( O O\nyou O O\nmight O O\nwant O O\nto O O\nadd O O\nan O O\nentry O O\nto O O\nthe O O\nhosts O O\nfile O O\non O O\neither O O\nside O O\nto O O\nmake O O\nlife O O\neasier O O\n, O O\nbut O O\nnot O O\nnecessary O O\n) O O\n. O O\n\nI O O\nhave O O\nthe O O\nsame O O\nset O O\nup O O\nand O O\nit O O\nworks O O\n. O O\n\nUsually O O\n, O O\nit O O\nneeds O O\nto O O\ncompletely O O\nshutdown O O\nthe O O\nVM Name Name\nand O O\nboot O O\nit O O\nup O O\nagain O O\n. O O\n\nHave O O\nyou O O\ntried O O\nan O O\nhost-only Name Name\nadapter Name Name\n. O O\n\nI O O\nhad O O\nthis O O\nproblem O O\nwith O O\na O O\ncustom O O\nserver Name Name\nsolution O O\nI O O\nwas O O\nworking O O\non O O\nand O O\nit O O\nseemed O O\nto O O\nfix O O\nit O O\n. O O\n\nI O O\ndo O O\nn't O O\nknow O O\nwhy O O\nbut O O\nits O O\nworth O O\na O O\nshot O O\n. O O\n\nTell O O\nme O O\nif O O\nit O O\nwork O O\nfor O O\nyou O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nuse O O\napache Name Name\nmath Name Name\nwith O O\nscala Name Name\nbut O O\nI O O\nam O O\nnot O O\nable O O\nto O O\nrun O O\nthe O O\nexamples O O\nfrom O O\nthe O O\ndocumentation O O\nhttp://commons.apache.org/proper/commons-math/userguide/random.html O O\n\nI O O\nam O O\nnew O O\nto O O\nscala Name Name\nand O O\njava Name Name\nso O O\nplease O O\nprovide O O\na O O\ndetailed O O\nanswer O O\n. O O\n\nEDIT O O\n: O O\n\nI O O\nhave O O\ncreated O O\na O O\nnew O O\nfolder O O\nwith O O\nthe O O\nbuild.sbt Name Name\n. O O\n\nIf O O\nI O O\nrun O O\nthe O O\ncommand O O\nsbt Name Name\nconsole Name O\nin O O\nthat O O\nfolder O O\nthan O O\nthe O O\ncode O O\nseems O O\nto O O\nbe O O\nworking O O\nin O O\nthe O O\nconsole Name Name\n. O O\n\nBut O O\nnow O O\nhow O O\ncan O O\nI O O\ncan O O\nrun O O\nthe O O\ncode O O\non O O\neclipse Name Name\n? O O\n\n? O O\n\nFirst O O\nof O O\nall O O\n, O O\nyou O O\nmight O O\nwant O O\nto O O\nlook O O\nup O O\nScala Name Name\n's O O\ngeneral O O\nsyntactic O O\nrules O O\n, O O\nunlike O O\nJava Name Name\nfor O O\nexample O O\n, O O\nScala Name Name\ndoes O O\nn't O O\nstart O O\nits O O\nvariables O O\nwith O O\nthe O O\ntype O O\n, O O\nnor O O\nis O O\na O O\nsemicolon Name Name\nrequired O O\n. O O\n\nSo O O\nin O O\ncase O O\nof O O\nyour O O\n\" O O\nproblem O O\n\" O O\n, O O\nthe O O\nsolution O O\nis O O\nreally O O\njust O O\n\nThat O O\n, O O\nand O O\nyour O O\nimport O O\nmight O O\nbe O O\nwrong O O\n, O O\nsince O O\nRandomDataGenerator Name Name\nis O O\nunder O O\norg.apache.commons.math3.random.RandomDataGenerator Name Name\n, O O\nnot O O\nmath Name Name\n\nApache Name Name\nproject O O\ndocumentation O O\ntends O O\nto O O\nbe O O\nterrible O O\nabout O O\nexplaining O O\nhow O O\nto O O\nget O O\nstarted O O\n. O O\n\nFor O O\nexample O O\n, O O\nyou O O\n'll O O\nsee O O\n\" O O\nDownload O O\n\" O O\nlinks O O\neverywhere O O\nthat O O\nshow O O\nyou O O\nhow O O\nto O O\nget O O\nthe O O\nproject O O\ncode O O\nand O O\njars Name Name\n. O O\n\nDo O O\nn't O O\ndo O O\nthis O O\n! O O\n\nUse O O\na O O\nproper O O\nbuild O O\nsystem O O\nthat O O\nwill O O\nmanage O O\nyour O O\ndependencies O O\nfor O O\nyou O O\n. O O\n\nFor O O\nthis O O\nexample O O\nI O O\n'll O O\nuse O O\nSBT Name Name\n, O O\nbut O O\nMaven Name Name\nwould O O\nwork O O\njust O O\nas O O\nwell O O\n( O O\nalthough O O\nwith O O\na O O\nlot O O\nmore O O\nverbosity O O\n) O O\n. O O\n\nOnce O O\nyou O O\n've O O\ngot O O\nSBT Name Name\ninstalled O O\nyou O O\ncan O O\nsearch O O\nMaven Name Name\nCentral O O\nfor O O\n\" O O\ncommons-math Name Name\n\" O O\n, O O\nwhich O O\nwill O O\ntake O O\nyou O O\nhere O O\n. O O\n\nYou O O\n'll O O\nsee O O\na O O\n\" O O\nScala Name Name\nSBT Name Name\n\" O O\nbutton Name Name\non O O\nthe O O\nside O O\n; O O\nclick O O\nit O O\nand O O\ncopy O O\nthe O O\ntext O O\nto O O\na O O\nfile O O\ncalled O O\nbuild.sbt Name Name\n: O O\n\nOkay O O\n, O O\nnow O O\nyou O O\ncan O O\nstart O O\nan O O\nSBT Name Name\nconsole Name Name\nwith O O\nsbt Name Name\nconsole Name Name\n. O O\n\nNow O O\nyou O O\nneed O O\nto O O\nknow O O\nthe O O\nfull O O\npath O O\nto O O\nthe O O\nclass O O\nyou O O\nwant O O\n, O O\nwhich O O\nof O O\ncourse O O\nis O O\nnowhere O O\nto O O\nbe O O\nfound O O\nin O O\nthe O O\nApache Name Name\ndocumentation O O\n, O O\nbecause O O\nthat O O\nwould O O\nbe O O\ntoo O O\nconvenient O O\n. O O\n\nWith O O\na O O\nlittle O O\nbit O O\nof O O\nGoogling O O\nyou O O\n'll O O\nfind O O\nthe O O\nfollowing O O\n: O O\n\nAnd O O\nnow O O\nyou O O\ncan O O\ncreate O O\nan O O\ninstance O O\n: O O\n\nAnd O O\nyou O O\n're O O\ndone O O\n! O O\n\nNow O O\nany O O\ngood O O\nScala Name Name\nresource O O\nwill O O\ngive O O\nyou O O\nan O O\nidea O O\nof O O\nhow O O\nto O O\naccomplish O O\nwhatever O O\nyou O O\nwant O O\nto O O\ndo O O\nnext O O\n. O O\n\nI O O\n'm O O\nlooking O O\nfor O O\na O O\nformula O O\nto O O\nconvert O O\nIPV6 O O\naddress O O\nto O O\nIP O O\nnumber O O\n. O O\n\nThis O O\nis O O\nrequired O O\nto O O\nmap O O\nwith O O\ngeoip O O\nlocation O O\ninformation O O\nwe O O\nhave O O\n. O O\n\nInput O O\nIPV6 O O\naddress O O\n: O O\n2001:0db8:0000:0000:0000:ff00:0042:8329 Name Name\n\nOutput O O\nIP O O\nNumber O O\nconverted O O\n: O O\n42540766411282592856904265327123268393 Name Name\n\nThanks. O O\n. O O\n\nBelow O O\nare O O\nthe O O\nsample O O\ncodes O O\nin O O\nmultiple O O\nlanguages O O\nto O O\nconvert O O\nIPv6 O O\naddress O O\nto O O\nnumber O O\ntaken O O\nfrom O O\nhttp://lite.ip2location.com/faqs O O\n\nPHP Name Name\n\nJava Name Name\n\nC# Name Name\n\nVB.NET Name Name\n\nPlease O O\nconsider O O\nthis O O\n( O O\nnon-homework O O\n) O O\nexercise O O\nof O O\nconverting O O\na O O\nslash-notation O O\n( O O\ne.g O O\n. O O\n24 O O\n, O O\n30 O O\n) O O\nto O O\na O O\nsubnet O O\nmask O O\n. O O\n\nWhen O O\nI O O\ncopy O O\na O O\nBitArray Name Name\nto O O\nbyte[] Name Name\n, O O\nthe O O\ninternal O O\nordering O O\nof O O\nthe O O\nBitArray Name Name\nleads O O\nto O O\nincorrect O O\noutput O O\n. O O\n\nFor O O\ninstance O O\n, O O\nwith O O\nan O O\ninput O O\nof O O\nnumberOfSetBits Name Name\n= Name Name\n24 Name Name\n, O O\nToString() Name Name\nshould O O\nreturn O O\n255.255.255.0 Name Name\n( O O\nthis O O\nworks O O\nbecause O O\nthe O O\nbits O O\nare O O\nsymmetrical O O\n) O O\n. O O\n\nHowever O O\n, O O\nan O O\ninput O O\nof O O\n30 Name Name\nresults O O\nin O O\n255.255.255.63 Name Name\ninstead O O\nof O O\nthe O O\nexpected O O\n255.255.255.252 Name Name\n. O O\n\nYes O O\n, O O\nI O O\nrealize O O\nthat O O\nthat O O\n's O O\njust O O\nthe O O\nway O O\na O O\nBitArray Name Name\nhandles O O\nit O O\n's O O\nchildren O O\n( O O\nthere O O\n's O O\nan O O\nold O O\ndiscussion O O\nabout O O\nthe O O\nissue O O\n, O O\nunfortunately O O\nwithout O O\na O O\nsolution O O\n, O O\njust O O\na O O\nnever-ending O O\nargument O O\nover O O\nwhy O O\none O O\nordering O O\nwould O O\nbe O O\nbetter O O\n) O O\n. O O\n\nBut O O\nhow O O\n, O O\nfor O O\nthe O O\nlove O O\nof O O\ngod O O\n, O O\ncan O O\nI O O\nget O O\nthis O O\ncode O O\nto O O\ntreat O O\n1111 Name Name\n1100 Name Name\n(= Name Name\n25 Name Name\n2) Name Name\nfor O O\nwhat O O\nit O O\nis O O\ninstead O O\nof O O\nmangling O O\nit O O\nto O O\n0011 Name Name\n1111 Name Name\n(= Name Name\n6 Name Name\n3) Name Name\n? O O\n\nI O O\nbelieve O O\nI O O\n'll O O\nhave O O\nto O O\nchange O O\nthe O O\norder O O\nin O O\nwhich O O\nI O O\n'm O O\nadding O O\nthe O O\nbits O O\nin O O\nthe O O\nfirst O O\nplace O O\n, O O\nbut O O\nI O O\nca O O\nn't O O\nget O O\nit O O\nto O O\nwork O O\n. O O\n\nThank O O\nyou O O\n. O O\n\nYou O O\ndo O O\nn't O O\nneed O O\na O O\nBitArray Name Name\n, O O\nyou O O\ncan O O\ncreate O O\nthe O O\nmask O O\nfrom O O\nshifting O O\nan O O\ninteger Name Name\n, O O\nand O O\nuse O O\nBitConverter.GetBytes Name Name\nto O O\nget O O\nit O O\nas O O\nbytes Name Name\n: O O\n\nWould O O\nn't O O\nthis O O\njust O O\nbe O O\nfixed O O\nby O O\ndoing O O\n: O O\n\nThis O O\nsets O O\nthe O O\nhigh-order O O\nbits O O\n( O O\nrather O O\nthan O O\nthe O O\nlow-order O O\nbits O O\n) O O\n. O O\n\nThe O O\nreasoning O O\nhere O O\nis O O\nprecisely O O\nwhat O O\nis O O\nmentioned O O\nin O O\nthe O O\nanswer O O\nyou O O\nlinked O O\n- O O\nBitArray Name Name\nstores O O\nthe O O\nleast-significant O O\ndigits O O\nin O O\nthe O O\nlowest O O\nindex O O\n, O O\nso O O\nthe O O\nbit Name Name\narray Name Name\n11111000000000 Name Name\nbelow O O\nis O O\n[ O O\nindexed O O\n] O O\nthus O O\n: O O\n\nI O O\nam O O\nusing O O\nspring-data-mongodb Name Name\n. O O\n\nHere O O\nis O O\nmy O O\ncontroller O O\nmethod O O\n: O O\n\nController O O\n: O O\n\nHere O O\nI O O\nam O O\npassing O O\nlist Name Name\nof O O\nstring Name Name\nas O O\na O O\nrequest O O\nparameter O O\n. O O\n\nMy O O\nservice O O\nmethod O O\nis O O\n: O O\n\nRepository O O\ncode O O\n: O O\n\nHere O O\n, O O\nmy O O\nquery O O\nin O O\nrepository O O\nalways O O\nreturns O O\nempty O O\narray Name Name\n[ O O\n] O O\n. O O\n\nI O O\nam O O\nnot O O\ngetting O O\nwhat O O\nis O O\nwrong O O\nwith O O\nthis O O\nquery O O\n. O O\n\nMy O O\nrequest O O\nURL O O\nis O O\n: O O\n\ni O O\nthink O O\nthe O O\nproblem O O\nis O O\nin O O\nyour O O\nurl O O\n. O O\n\ntry O O\nto O O\nremove O O\nthe O O\nquotes O O\n. O O\n\nhttp://localhost:8080/document/getByCategory?categories=category1&categories=category2 Name Name\n\nVB2010 Name Name\nI O O\nhave O O\na O O\nuser O O\nform O O\nwhere O O\nthe O O\nuser O O\ninputs O O\na O O\nnumber O O\nformat O O\n. O O\n\nThe O O\nroutine O O\nthen O O\ncycles O O\nthrough O O\na O O\nlist Name Name\nof O O\nnumber O O\npairs O O\nand O O\ndisplays O O\nthem O O\nin O O\na O O\nlist Name Name\nof O O\ncategories O O\n: O O\n\nWhat O O\nI O O\nam O O\ntrying O O\nto O O\ndo O O\nis O O\nto O O\nincrement O O\nthe O O\nfirst O O\nvalue O O\nby O O\none O O\ndigit O O\nso O O\nthere O O\nis O O\nno O O\noverlap O O\n. O O\n\nsomething O O\nlike O O\n: O O\n\nI O O\nam O O\ntrying O O\nto O O\nmake O O\nit O O\nso O O\nit O O\nworks O O\nwith O O\nany O O\nnumber O O\nformat O O\nthe O O\nuser O O\ninputs O O\nlike O O\n\" Name Name\n0.000 Name Name\n\" Name Name\nor O O\n\" Name Name\n0.0 Name Name\n\" Name Name\n. O O\n\nWhat O O\nI O O\ncurrently O O\nhave O O\nis O O\n( O O\nexample O O\nfor O O\nvalue O O\n164.04 Name Name\n) O O\n\nSeemed O O\nto O O\nwork O O\nin O O\nmy O O\nVB6 Name Name\nprogram O O\nbut O O\nwanted O O\nto O O\nsee O O\nif O O\nanyone O O\nhad O O\nany O O\nbetter O O\nideas O O\n. O O\n\nI O O\nalso O O\ndo O O\nn't O O\nthink O O\ni O O\naccounted O O\nfor O O\nthe O O\nlast O O\ndigit O O\nbeing O O\na O O\n9 Name Name\n. O O\n\nUpdate O O\n: O O\nbased O O\non O O\nthe O O\nsuggestions O O\nbelow O O\nwhat O O\nended O O\nup O O\nworking O O\nfor O O\npositive O O\nand O O\nnegative O O\nnumbers O O\nand O O\nintegers Name Name\nand O O\nfloats Name Name\nwas O O\nthe O O\nfollowing O O\n: O O\n\nHere O O\nis O O\nthe O O\nalgorithm O O\n: O O\n\n1.Find O O\ndecimal O O\npoints O O\n( O O\np Name Name\n) O O\n\n2.multiply O O\nthe O O\nnumber O O\nby O O\n10^p Name Name\n, O O\nincrease O O\nit O O\nby O O\none O O\n, O O\ndivide O O\nit O O\nback O O\nby O O\n10^p Name Name\n\nI O O\n've O O\ncreated O O\nsomewhat O O\nof O O\na O O\ncomplicated O O\nslider Name Name\nwith O O\njquery Name Name\nCycle Name Name\n. O O\n\nYou O O\ncan O O\nsee O O\nit O O\nrunning O O\nperfectly O O\nhere O O\n\nHowever O O\n, O O\nwhen O O\nyou O O\nclick O O\nit O O\na O O\nbunch O O\nof O O\ntimes O O\n( O O\nbefore O O\nthe O O\nslide O O\nhas O O\nfinished O O\nits O O\ntransition O O\n) O O\n, O O\nit O O\nstarts O O\nto O O\ngo O O\nwacky O O\nand O O\neven O O\nhides O O\nthe O O\ntext. Name Name\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n: O O\n\nAny O O\nideas O O\n? O O\n\nI O O\nthought O O\n.stop() Name Name\nwould O O\nremedy O O\nthis O O\n, O O\nbut O O\nit O O\ndidnt. O O\n. O O\n\nFigured O O\nit O O\nout O O\n. O O\n\nHad O O\nto O O\nset O O\nthe O O\n.slideUp Name Name\nand O O\n.slidedown Name Name\nto O O\nhappen O O\non O O\nthe O O\ncallback O O\nof O O\n.animate() Name Name\n\nHow O O\ndo O O\ni O O\nget O O\nan O O\nIGrouping Name Name\nresult O O\nto O O\nmap O O\nto O O\nthe O O\nview Name Name\n? O O\n\nI O O\nhave O O\nthis O O\nquery O O\n: O O\n\nWhat O O\nis O O\nthe O O\nproper O O\nmapping O O\nfor O O\nthe O O\nViewPage Name Name\ndeclaration O O\n? O O\n\nIn O O\nthe O O\ninstance O O\nof O O\nhelping O O\nothers O O\nout O O\n. O O\n\nThis O O\nis O O\nwhat O O\nI O O\nwas O O\nattempting O O\nto O O\naccomplish O O\n. O O\n\nThe O O\naction O O\ncode O O\n\nThe O O\nView Name Name\n\nIGrouping Name Name\nis O O\na O O\nlist Name Name\nof O O\nlists Name Name\nso O O\nto O O\nspeak O O\n. O O\n\nWith O O\nthe O O\n\" O O\nKey Name Name\n\" O O\nbeing O O\nthe O O\ngrouped O O\nproperty O O\nin O O\nthe O O\nsource O O\nlist Name Name\n. O O\n\nThe O O\nview Name Name\nmust O O\nbe O O\nthe O O\nsame O O\ntype O O\nof O O\nthe O O\npage O O\n. O O\n\nYou O O\nwould O O\nhave O O\nto O O\nconvert O O\nthe O O\noutput O O\nto O O\nthe O O\nsame O O\ntype O O\nused O O\nby O O\nyour O O\nview Name Name\npage O O\n. O O\n\nYou O O\ncould O O\nalso O O\nuse O O\na O O\nViewData[\"Products\"] Name Name\nto O O\nset O O\nthe O O\ncollection O O\ninformation O O\nyou O O\nwant O O\nto O O\nbe O O\nvisible O O\non O O\nyour O O\nView Name Name\naspx Name Name\npage O O\n. O O\n\nWe O O\nare O O\ntrying O O\nto O O\nrewrite O O\nan O O\nIIS Name Name\nweb Name Name\nserver Name Name\nhandler Name Name\nfor O O\nJBoss Name Name\n5 Name Name\napp Name Name\nserver Name Name\n, O O\nbut O O\nI O O\ncould O O\nnot O O\nfind O O\nthe O O\nsimilar O O\nconcept O O\nfor O O\nJBoss Name Name\n. O O\n\nCould O O\nyou O O\n, O O\nplease O O\n, O O\ngive O O\nsome O O\nadvice O O\nor O O\ndirection O O\nhow O O\nwe O O\nshould O O\nimplement O O\nthe O O\nhandler Name Name\n, O O\nor O O\nwhat O O\nshould O O\nwe O O\ngoogle O O\nfor O O\n? O O\n\nTo O O\nbe O O\nclear O O\n, O O\nthe O O\nfinal O O\ngoal O O\nis O O\nto O O\nhave O O\nan O O\napplication O O\nwhich O O\ndoes O O\nnot O O\nneed O O\na O O\nname O O\nin O O\nurl O O\nin O O\norder O O\nto O O\nbe O O\ninvoked O O\nand O O\nruns O O\nevery O O\ntime O O\nI O O\naccess O O\njust O O\nthe O O\nIP O O\naddress O O\nor O O\nserver Name Name\nname O O\n. O O\n\ne.g O O\n. O O\nhttp://13.10.15.48 O O\n\nThe O O\napplication O O\n( O O\nhandler Name Name\n) O O\nshould O O\ngrab O O\nthe O O\nrequest O O\n, O O\nprocess O O\nit O O\nand O O\npass O O\nover O O\nto O O\nother O O\ndefault O O\nhandlers Name Name\nor O O\nweb O O\nserver Name Name\n. O O\n\nShould O O\nI O O\nsearch O O\nfor O O\nTomcat Name Name\nhandlers Name Name\ninstead O O\n? O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nBy O O\ndefault O O\nJBoss Name Name\nhas O O\na O O\nthe O O\nroot O O\ncontext O O\npoint O O\nto O O\na O O\ndefault O O\napp O O\n. O O\n\nIn O O\norder O O\nto O O\npoint O O\nyou O O\napplication O O\nto O O\nthe O O\nroot O O\ncontext O O\nyou O O\nneed O O\nto O O\ndo O O\nthe O O\nfollowing O O\n\nIf O O\nyou O O\nare O O\ndeploying O O\nyou O O\napplication O O\nas O O\na O O\nWAR Name Name\nfile O O\n, O O\nthe O O\nadd O O\nthe O O\nfollowing O O\ncontent O O\nto O O\nyour O O\n/WEB-INF/jboss Name Name\n-web.xml Name Name\n( O O\nif O O\nit O O\ndoes O O\nnot O O\nalready O O\nexist O O\n) O O\n\nIf O O\nyou O O\nare O O\ndeploying O O\nyour O O\napplication O O\nas O O\nan O O\nEAR Name Name\nfile O O\n, O O\nthen O O\nyou O O\nneed O O\nto O O\nset O O\nthe O O\ncontext-root Name Name\nin O O\nyour O O\n/META-INF/application.xml Name Name\nfile O O\nas O O\nfollows O O\n\nFor O O\nmore O O\ninformation O O\nplease O O\nrefer O O\n[ O O\n1 O O\n] O O\n\nHope O O\nthis O O\nhelps O O\n. O O\n\nGood O O\nluck O O\n! O O\n\n[ O O\n1 O O\n] O O\nhttps://community.jboss.org/wiki/HowDoIOverrideTheWebContextRoot O O\n\nYou O O\n'd O O\ndo O O\nthis O O\nby O O\ncreating O O\nan O O\napplication O O\n( O O\na O O\nWAR Name Name\nis O O\nfine O O\n) O O\nwith O O\ncontext-root Name Name\nset O O\nto O O\n/ Name Name\n. O O\n\nI O O\nhave O O\na O O\nsimple O O\napplication O O\nconsisting O O\nof O O\na O O\nWindow Name Name\ncontaining O O\na O O\nCanvas Name Name\n( O O\nrootCanvas Name Name\n) O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nadd O O\nanother O O\nCanvas Name Name\n( O O\ntest Name Name\n) O O\nto O O\nthis O O\nand O O\napply O O\ndifferent O O\nTransforms Name Name\nto O O\nthe O O\nchild O O\ncanvas Name Name\n's O O\nLayoutTransform Name Name\n. O O\n\nThis O O\nis O O\nall O O\nbeing O O\ndone O O\nprogrammatically O O\nrather O O\nthan O O\nusing O O\nXAML Name Name\n. O O\n\nSome O O\ntransforms Name Name\nare O O\nworking O O\n, O O\nwhilst O O\nothers O O\nare O O\nnot O O\nas O O\nfollows O O\n: O O\n\nWhen O O\nthe O O\nLayoutTranform Name Name\nis O O\nset O O\nto O O\na O O\nRotateTransform Name Name\nit O O\nworks O O\nas O O\n\nexpected O O\n. O O\n\nWhen O O\nit O O\nis O O\nset O O\nto O O\na O O\nTranslateTransform Name Name\nthe O O\ntranslation O O\ndoes O O\nnot O O\nappear O O\n\nto O O\nbe O O\napplied O O\n, O O\nand O O\nthe O O\ntest O O\nCanvas Name Name\nis O O\nstill O O\nlocated O O\nin O O\nthe O O\ntop O O\ncorner O O\nof O O\n\nrootCanvas Name Name\n\nWhen O O\nit O O\nis O O\nset O O\nto O O\na O O\nMatrixTransform Name Name\nthat O O\nhas O O\nbeen O O\nconstructed O O\nby O O\napplying O O\na O O\nrotation O O\nand O O\nthen O O\na O O\ntranslation O O\n, O O\nonly O O\nthe O O\nrotation O O\nappears O O\nto O O\nbe O O\napplied O O\n. O O\n\nThe O O\ncode O O\nis O O\ngiven O O\nbelow O O\n: O O\n\nI O O\nwould O O\nbe O O\nextremely O O\ngrateful O O\nif O O\nsomeone O O\ncould O O\nexplain O O\nwhat O O\nI O O\nam O O\ndoing O O\nwrong O O\nhere O O\n, O O\nas O O\nI O O\ndo O O\nnot O O\nunderstand O O\nwhy O O\ntranslations O O\ndo O O\nnot O O\nseem O O\nto O O\nbe O O\nworking O O\nas O O\nI O O\nwould O O\nexpect O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n, O O\n\nWibbs O O\n\nPlease O O\nread O O\nthe O O\nremarks O O\nin O O\nFrameworkElement.LayoutTransform Name Name\nProperty O O\n. O O\n\nUse O O\nUIElement.RenderTransform Name Name\nProperty O O\nfor O O\napplying O O\na O O\nTranslateTransform Name Name\n. O O\n\ni O O\nread O O\nsome O O\nquestions O O\nhere O O\nabout O O\nUIGestureRecognizer Name Name\nbut O O\ni O O\nam O O\nnot O O\nsure O O\nhow O O\nto O O\naccomplish O O\nthe O O\nfollowing O O\ntask O O\n: O O\n\nI O O\nwould O O\nlike O O\nto O O\ncreate O O\nsomething O O\nlike O O\nthe O O\nunlock O O\nslider Name Name\nof O O\nthe O O\niphone Name Name\n, O O\nbut O O\nsliding O O\na O O\nbutton Name Name\naround O O\na O O\ncircle Name Name\n. O O\n\nIn O O\nthis O O\ncase O O\ni O O\ndo O O\nn't O O\nneed O O\nto O O\nlook O O\ninto O O\nthe O O\nUIGestureRecognizer Name Name\nclass O O\n, O O\ndo O O\ni O O\n? O O\n\nI O O\nneed O O\nan O O\nanimation O O\nclass O O\nor O O\nsomething O O\n... O O\nIf O O\nyou O O\ngave O O\nme O O\nsome O O\nkey-words O O\nto O O\nstart O O\nwith O O\ni O O\nwould O O\nbe O O\nreally O O\nhappy O O\n:) O O\n\nmaxi O O\n\nHere O O\n's O O\nanother O O\none O O\n: O O\n\nhttps://github.com/iosdeveloper/SlideToCancel O O\n\nYou O O\nmight O O\ntry O O\nthis O O\npage O O\nas O O\na O O\nstarting O O\npoint O O\n\nhttp://denizdemir.com/2011/03/07/animated-slider-iphones-cool-first-impression/ O O\n\nTo O O\ndo O O\nthe O O\ncircle Name Name\nversion O O\nwill O O\ninvolve O O\na O O\nfair O O\nbit O O\nmore O O\nwork O O\nI O O\n'd O O\nsay O O\nas O O\nnot O O\nonly O O\ndo O O\nyou O O\nneed O O\nto O O\nread O O\nthe O O\ncircle Name Name\ngesture O O\nyou O O\nalso O O\nneed O O\nyour O O\nlock O O\nto O O\nmove O O\naround O O\nthe O O\ncircle Name Name\n.. O O\n. O O\n\nhttp://iphonedevelopment.blogspot.com/2009/04/detecting-circle-gesture.html O O\n\nhttp://forum.unity3d.com/threads/13494-Messing-around-with-gestures O O\n\nCould O O\nbe O O\nthere O O\nis O O\na O O\nfar O O\nsimpler O O\nway O O\nto O O\ndo O O\nthis O O\nnow O O\nbut O O\nI O O\n'm O O\nnot O O\naware O O\nof O O\nit O O\n. O O\n\nGood O O\nLuck O O\n! O O\n\nMy O O\nexcel Name Name\nspreadsheet Name Name\ncontains O O\n\nI O O\nused O O\nfreeze O O\npanel O O\nand O O\nother O O\nformatting O O\nthings O O\n. O O\n\nI O O\nwant O O\nto O O\ncreate O O\nseparate O O\nSpreadsheets Name Name\nthat O O\nwould O O\ncontains O O\nonly O O\none O O\nname O O\n. O O\n\nExample O O\n: O O\n\nSpreadsheet_paul.xls Name Name\n\nSpreadsheet_Nick.xls Name Name\n\n........ O O\n. O O\n\nI O O\nneed O O\nto O O\ncreate O O\nseparate O O\nfiles O O\n, O O\nwith O O\nthe O O\nnumber O O\nof O O\nfiles O O\nat O O\nthe O O\nend O O\nequal O O\nto O O\nthe O O\nnumber O O\nof O O\nnames O O\nin O O\nthe O O\noriginal O O\nspreadsheet Name Name\n, O O\neach O O\ncontaining O O\nthe O O\ncorresponding O O\nsubset O O\nof O O\nthe O O\noriginal O O\ndata O O\n. O O\n\nHow O O\ncan O O\nI O O\ndo O O\nthis O O\n? O O\n\nTry O O\nthis O O\ncode O O\n. O O\n\nI O O\n've O O\ncommented O O\nit O O\nin O O\ndetails O O\n. O O\n\nBut O O\nif O O\nyou O O\nhave O O\nsome O O\nquesions O O\n, O O\nask O O\nin O O\ncomments O O\n: O O\n) O O\n. O O\n\nCode O O\nsaves O O\nnew O O\nwokrbooks Name Name\nin O O\nthe O O\nfolder O O\nwhere O O\nyour O O\ncurrent O O\nworkbook Name Name\nis O O\nsaved O O\n. O O\n\n@dmitry O O\n-pavliv O O\ncan O O\nyou O O\nmodify O O\nyour O O\ncode O O\nand O O\nadd O O\na O O\nfunctionality O O\nto O O\ncopy O O\nspecific O O\nSheets Name Name\nand O O\nadd O O\nthem O O\nthe O O\nfinal O O\nfile O O\n? O O\n\nI O O\n'm O O\nlearning O O\nlist Name Name\ncomprehensions O O\nin O O\nPython Name Name\n. O O\n\nI O O\nwas O O\nto O O\nappend O O\nletters O O\nfrom O O\na O O\nlist Name Name\nof O O\nwords O O\nand O O\nform O O\na O O\nnew O O\nlist Name Name\nbut O O\nwithout O O\nduplicates O O\n. O O\n\nThis O O\nis O O\nwhat O O\nI O O\n'm O O\ntrying O O\n: O O\n\nI O O\n'm O O\ngetting O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\nWhat O O\nam O O\nI O O\ndoing O O\nwrong O O\n? O O\n\nIf O O\nyou O O\nsimply O O\nwant O O\nto O O\nget O O\nrid O O\nof O O\nduplicates O O\n, O O\nyou O O\nmight O O\nwant O O\nto O O\nutilize O O\nset() Name Name\n. O O\n\nletterlist Name Name\nis O O\nnot O O\ndefined O O\nuntil O O\nthe O O\nlist Name Name\ncomprehension O O\nis O O\nfinished O O\n. O O\n\nTherefore O O\n, O O\nyou O O\nca O O\nn't O O\nreference O O\nit O O\ninside O O\nitself O O\n. O O\n\nA O O\nfunction O O\ncan O O\nreference O O\nitself O O\nonly O O\nbecause O O\nthe O O\nfunction O O\nis O O\nnot O O\ncalled O O\nuntil O O\nafter O O\nit O O\n's O O\ndefined O O\n, O O\nbut O O\na O O\nlist Name Name\ncomprehension O O\nis O O\nbeing O O\nexecuted O O\nas O O\npart O O\nof O O\nthe O O\ndefinition O O\n, O O\nso O O\nit O O\nca O O\nn't O O\nreference O O\nitself O O\n. O O\n\nA O O\npossible O O\nway O O\nto O O\ndo O O\nit O O\nwould O O\nbe O O\nto O O\ndefine O O\nthe O O\nlist Name Name\nwithout O O\nthe O O\ntest O O\n, O O\nand O O\nthen O O\nremove O O\nthe O O\nduplicates O O\n: O O\n\nUsing O O\nset() Name Name\nmakes O O\nit O O\na O O\nlist Name Name\n( O O\nwhich O O\nremoves O O\nthe O O\nduplicates O O\n) O O\n, O O\nand O O\nusing O O\nlist Name Name\nconverts O O\nit O O\nback O O\nto O O\na O O\nlist Name Name\n. O O\n\nIf O O\nyou O O\nreally O O\ndo O O\nn't O O\nwant O O\nto O O\nuse O O\na O O\nset Name Name\n, O O\nthen O O\nusing O O\na O O\nlist Name Name\ncomprehension O O\nis O O\nprobably O O\nnot O O\nthe O O\nbest O O\nway O O\nto O O\ngo O O\n. O O\n\nYou O O\ncould O O\nuse O O\na O O\nfor Name Name\nloop O O\nlike O O\nthis O O\n: O O\n\nGives O O\nthe O O\nfollowing O O\nerror O O\n: O O\n( O O\ntry O O\nit O O\n) O O\n. O O\n\nAn O O\ninline O O\ndefinition O O\ndoes O O\nnot O O\nsuffer O O\nfrom O O\nthis O O\nerror O O\n. O O\n\nCould O O\nsomeone O O\nplease O O\nexplain O O\nwhy O O\nthe O O\ncompiler Name Name\ncan O O\nnot O O\nresolve O O\na Name Name\nin O O\nthis O O\ncase O O\n, O O\nandhow O O\nI O O\ncan O O\nmake O O\nthis O O\ncode O O\nwork O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nnot O O\nresolve O O\nall O O\nthe O O\nnames O O\nexplicitly O O\nlike O O\n\nAs O O\nit O O\nwould O O\ndecrease O O\nreadability O O\n. O O\n\nIf O O\nC++11 Name Name\nand O O\n14 Name Name\n, O O\nyou O O\ncan O O\ndeclare O O\nyour O O\nfunction O O\nauto O O\nto O O\nget O O\nrid O O\nof O O\nthe O O\nlong Name Name\nreturn O O\ntype O O\n. O O\n\nYou O O\nneed O O\nto O O\nspecify O O\nit O O\nas O O\na O O\ntrailing O O\ntype O O\nin O O\nC++11 Name Name\n, O O\nbut O O\nthis O O\nallows O O\nyou O O\nto O O\nget O O\nomit O O\nthe O O\ntypename Name Name\nB<T>: Name Name\n: Name Name\nbecause O O\nthe O O\ncompiler Name Name\nalready O O\nknows O O\nwhere O O\nto O O\nlook O O\n. O O\n\nThat O O\n's O O\nbecause O O\nthe O O\na Name Name\nhere O O\nis O O\nstill O O\nlooking O O\nin O O\nglobal Name Name\nscope O O\n: O O\n\nYou O O\n're O O\ndoing O O\nunqualifed O O\nlookup O O\non O O\na Name Name\n. O O\n\nOnce O O\nyou O O\nget O O\nto O O\nthe O O\nB<T>: Name Name\n: Name Name\npart O O\nof O O\nthe O O\ndefinition O O\n, O O\nthat O O\nscope O O\nis O O\nadded O O\nto O O\nall O O\nfurther O O\nlookup O O\n. O O\n\nSo O O\nthe O O\ntype O O\nof O O\nthe O O\nargument O O\nb Name Name\nwill O O\nbe O O\nlooked O O\nup O O\nin O O\nthe O O\nscope O O\nof O O\nB<T> Name Name\n. O O\n\nYou O O\nsimply O O\nneed O O\nto O O\nqualify O O\nit O O\nthe O O\nreturn O O\ntype O O\n: O O\n\nThe O O\nrelevant O O\nrules O O\nis O O\nfor O O\nwhy O O\nthe O O\nargument O O\ntype O O\na Name Name\ncan O O\nbe O O\nfound O O\nis O O\nin O O\n[basic.lookup.unqual]/8 Name Name\n: O O\n\nThe O O\nreturn O O\ntype O O\na Name Name\ndoes O O\nnot O O\nmatch O O\nthe O O\nbolded O O\ntext O O\n( O O\nor O O\nany O O\nof O O\nthe O O\ntext O O\nabove O O\n) O O\n, O O\nbut O O\nthe O O\nargument O O\ntype O O\na Name Name\ndoes O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nmake O O\na O O\nPDF Name Name\nfile O O\naccessible O O\n, O O\nand O O\nI O O\nam O O\nusing O O\nAdobe Name Name\nAcrobat Name Name\nto O O\ncheck O O\nfor O O\naccessibility O O\n. O O\n\nI O O\nam O O\nusing O O\nJasperReports Name Name\nversion O O\n6.3.1 Name Name\n. O O\n\nHow O O\ndo O O\nI O O\nset O O\nthe O O\nprimary O O\nlanguage O O\nand O O\ntitle O O\n? O O\n\nI O O\nused O O\nthe O O\nfollowing O O\ncode O O\nto O O\nadd O O\na O O\ntitle O O\n, O O\nbut O O\nit O O\ndid O O\nnot O O\nwork O O\n. O O\n\nWhat O O\ndo O O\nI O O\nneed O O\nto O O\nadd O O\nin O O\nthe O O\nJRXML Name Name\nfile O O\n? O O\n\nHow O O\ndo O O\nI O O\nset O O\nthe O O\ntab Name Name\norder O O\nfor O O\nelements O O\non O O\na O O\npage Name Name\n( O O\ntable Name Name\n, O O\ntext Name Name\nfields Name Name\n, O O\netc O O\n. O O\n) O O\n? O O\n\nI O O\nhave O O\na O O\nscript O O\nthat O O\ndownloads O O\nps1 Name Name\nfiles O O\nto O O\nrun O O\non O O\nnew O O\nmachine O O\nstart O O\nup O O\n. O O\n\nI O O\ndo O O\nn't O O\nwant O O\nto O O\ninstall O O\nany O O\npowershell Name Name\nadd O O\nin O O\nor O O\nextension O O\nmethods O O\n. O O\n\nI O O\njust O O\nwant O O\nto O O\nunblock O O\nthe O O\nfiles O O\nand O O\nrun O O\nthem O O\n. O O\n\nAny O O\nsuggestions O O\n? O O\n\nThis O O\npost O O\nfrom O O\nScott O O\nHanselman O O\nexplains O O\nhow O O\nthe O O\nzone O O\ninformation O O\nis O O\nembedded O O\nin O O\nan O O\nalternate O O\ndata O O\nstream O O\n, O O\nyou O O\ncan O O\nuse O O\nthat O O\nknowledge O O\nto O O\nunblock O O\nyour O O\nfiles O O\n. O O\n\nIf O O\nyou O O\nare O O\nable O O\nto O O\nuse O O\nan O O\nexternal O O\ntool O O\n, O O\nthe O O\neasiest O O\nway O O\nis O O\nto O O\nuse O O\nstreams.exe Name Name\nfrom O O\nSysInternals Name Name\n: O O\n\nGot O O\nthe O O\nanswer O O\non O O\nanother O O\nforum O O\n: O O\nNot O O\nthat O O\n@driis O O\nwas O O\nn't O O\non O O\ntarget O O\nbut O O\nthis O O\nis O O\nmore O O\npowershelly Name Name\n\nhttp://social.technet.microsoft.com/Forums/en/winserverpowershell/thread/0b5f1fa6-981e-4696-84bc-b8046564ec8b O O\n\nI O O\nwant O O\nto O O\ntest O O\nperformance O O\nof O O\nmy O O\ncode O O\non O O\nboth O O\njvm Name Name\ntypes O O\n-client Name Name\nand O O\n-server Name Name\n\nHow O O\ncan O O\ni O O\nswitch O O\namong O O\nboth O O\njvm Name Name\ntypes O O\nin O O\neclipse Name Name\n? O O\n\nThe O O\nsame O O\nway O O\nyou O O\nwould O O\nrun O O\nyour O O\napplication O O\nwith O O\nany O O\ncommand-line Name Name\nswitches O O\n( O O\nsuch O O\nas O O\n-Xmx256m Name Name\n) O O\n. O O\n\nJust O O\nadd O O\nit O O\nto O O\nthe O O\nCommand Name Name\nLine Name Name\nOptions O O\nto O O\nthe O O\nRun Name Name\nConfiguration O O\n( O O\nyou O O\ncould O O\ncreate O O\n2 O O\nconfigurations O O\n, O O\none O O\nfor O O\neach O O\nsetting O O\n) O O\n. O O\n\nTo O O\nbe O O\nmore O O\nspecific O O\n: O O\n\nGo O O\nto O O\nyour O O\napplication O O\n's O O\nmain Name Name\nclass O O\n\nRun O O\nit O O\n\nThis O O\nshould O O\ncreate O O\na O O\nRun Name Name\n( O O\nor O O\nLaunch Name Name\n) O O\nConfiguration O O\n\nEdit O O\nthis O O\nconfiguration O O\n\nAdd O O\n-client Name Name\nor O O\n-server Name Name\nin O O\nthe O O\ncommand-line Name Name\nswitches O O\n\nMore O O\ninformation O O\nis O O\navailable O O\nin O O\nthe O O\nEclipse Name Name\nHelp O O\n\nI O O\n've O O\ngot O O\nPhoneGap Name Name\nAndroid Name Name\napp O O\nthat O O\nis O O\nexactly O O\n480 Name Name\npixel Name Name\nwidth O O\nand O O\nI O O\nwant O O\nto O O\nset O O\nviewport Name Name\nsize O O\nto O O\nthis O O\nsize O O\non O O\nevery O O\npossible O O\nAndroid Name Name\n's O O\ndevice O O\n\nI O O\n've O O\ntried O O\nthis O O\ntag O O\n: O O\n\nBut O O\nit O O\nwas O O\nignored O O\nby O O\nall O O\ndevices O O\nand O O\nemulators Name Name\nI O O\ntested O O\nwith O O\n. O O\n\nThen O O\nI O O\ntried O O\n: O O\n\nAnd O O\nthis O O\nworked O O\n, O O\nbut O O\nonly O O\non O O\nsome O O\n( O O\nsmaller O O\n) O O\ndevices O O\n. O O\n\nOn O O\nmu O O\nSamsung Name Name\nGT Name Name\nit O O\ngives O O\ncorrect O O\n480 Name Name\npixel Name Name\nwidth O O\nviewport O O\n, O O\nbut O O\nwhen O O\nlaunched O O\non O O\ntablet Name Name\nit O O\ngives O O\n800 Name Name\npixel Name Name\nwidth O O\nviewport Name Name\n. O O\n\nAm O O\nI O O\nmissing O O\nsomething O O\nobvious O O\n? O O\n\nAfter O O\nseveral O O\nhours O O\nof O O\ndebugging O O\nI O O\nfinally O O\nfound O O\na O O\nsolution O O\n: O O\n\nWebView Name Name\nwill O O\nignore O O\nwidth Name Name\nof O O\nthe O O\nviewport Name Name\nunless O O\nit O O\nis O O\nexplicty O O\ntold O O\nto O O\nbe O O\nloaded O O\nin O O\nOverviewMode Name Name\n. O O\n\nSo O O\nif O O\nanyone O O\ncome O O\nhere O O\nfrom O O\nGoogle Name Name\n, O O\nhere O O\n's O O\nthe O O\nsolution O O\n: O O\n\nAdd O O\nto O O\nyour O O\nJava Name Name\nsource O O\n: O O\n\nNot O O\nsure O O\nwhy O O\n, O O\nbut O O\nI O O\nhad O O\nto O O\nremove O O\n, Name Name\ntarget-densityDpi Name Name\n= Name Name\ndevice-dpi Name Name\nfrom O O\nthe O O\nviewport Name Name\ntag O O\nto O O\nget O O\nthis O O\nto O O\nwork O O\n- O O\nthe O O\naccepted O O\nanswer O O\ndid O O\nn't O O\nhelp O O\nme O O\n. O O\n\nusing O O\na O O\nSamsung Name Name\nGalaxy Name Name\nNexus Name Name\n\nI O O\nhave O O\na O O\nweb O O\napplication O O\nin O O\nwhich O O\nwe O O\nuse O O\nJSF Name Name\nframework O O\n. O O\n\nI O O\nhave O O\nbeen O O\ndiving O O\ndeep O O\ninto O O\nthe O O\nsecurity O O\npart O O\nfor O O\nweb O O\napplication O O\nand O O\nhence O O\nI O O\nwas O O\nlooking O O\nto O O\ngenerate O O\nmy O O\nown O O\nunique O O\nsession O O\nID O O\n( O O\nusing O O\nencryption O O\nalgorithm O O\nand O O\nassign O O\nit O O\nto O O\nevery O O\nnew O O\nsession O O\nwhich O O\ngets O O\ncreated O O\nonce O O\nuser O O\nlogs O O\nin O O\n. O O\n\nCan O O\nanyone O O\nplease O O\nguide O O\nme O O\non O O\nhow O O\nto O O\nset O O\nmanual O O\ngenerated O O\nsession O O\nid O O\nin O O\nsession O O\nand O O\nensure O O\nwith O O\neach O O\nrequest O O\nthat O O\nsession O O\nid O O\nis O O\ntransmitted O O\n. O O\n\nThanks O O\n. O O\n\nAttempting O O\nto O O\ndo O O\nthis O O\nat O O\nthe O O\nJSF Name Name\napplication O O\nlayer O O\nis O O\nunlikely O O\nto O O\nbe O O\nsuccessful O O\n; O O\nI O O\nwould O O\nperform O O\nthis O O\ntask O O\nat O O\na O O\nlower O O\nlevel O O\nAPI O O\n. O O\n\nI O O\nam O O\nassuming O O\na O O\nservlet Name Name\ncontainer O O\n. O O\n\nI O O\ncan O O\nthink O O\nof O O\ntwo O O\napproaches O O\n: O O\n\ndo O O\nthis O O\nat O O\na O O\ncontainer O O\nlevel O O\nvia O O\na O O\nserver-specific Name Name\nSPI O O\n( O O\nif O O\none O O\neven O O\nexists O O\n) O O\n\ndo O O\nthis O O\nby O O\nrewriting O O\nrequests/responses O O\nvia O O\na O O\nservlet Name Name\nFilter Name Name\n\nThere O O\nis O O\ninsufficient O O\ninformation O O\nto O O\ncomment O O\non O O\nthe O O\nviability O O\nof O O\nthe O O\nfirst O O\napproach O O\n. O O\n\nIn O O\nthe O O\nsecond O O\n, O O\nyou O O\nwould O O\nhave O O\nto O O\ndetermine O O\nthe O O\nname O O\nof O O\nthe O O\nsession O O\ncookie O O\n( O O\nit O O\nis O O\nusually O O\nJSESSIONID Name Name\n, O O\nbut O O\ndoes O O\nnot O O\nhave O O\nto O O\nbe O O\n) O O\n. O O\n\nYour O O\nAPI Name Name\nwould O O\n: O O\n\nmap O O\nthe O O\nfilter O O\nto O O\nall O O\napplication O O\nrequests O O\n\nmaintain O O\na O O\nmap O O\nof O O\ncontainer O O\nsession O O\nids O O\nto O O\n\" O O\nsecure O O\n\" O O\nids O O\n\nuse O O\nthe O O\nfilter O O\nto O O\nrewrite O O\nany O O\nsession O O\ncookie O O\nin O O\nthe O O\nrequest O O\nwith O O\nthe O O\nsession O O\nid O O\n\nuse O O\nthe O O\nfilter O O\nrewrite O O\nany O O\nsession O O\ncookie O O\nin O O\nthe O O\nresponse O O\nwith O O\nthe O O\nsecure O O\nid O O\n\nuse O O\na O O\nlistener O O\nto O O\nremove O O\ninvalid O O\nsessions O O\nfrom O O\nthe O O\nmap O O\nto O O\navoid O O\nmemory O O\nleaks O O\n\nI O O\nreally O O\ndoubt O O\nyou O O\n'll O O\ngenerate O O\nsession O O\nIDs O O\nthat O O\nare O O\nmore O O\nsecure O O\nthan O O\nthe O O\nones O O\ngenerated O O\nby O O\nthe O O\ncontainer O O\n, O O\nbut O O\nhere O O\n's O O\nwhat O O\nyou O O\ncould O O\ndo O O\n, O O\nwithout O O\nusing O O\nany O O\ncontainer-specific O O\nextension O O\n. O O\n\nCreate O O\na O O\nservlet Name Name\nfilter Name Name\nwhich O O\nintercept O O\nevery O O\nrequest O O\nto O O\nthe O O\nserver O O\n. O O\n\nWhen O O\na O O\nrequest O O\ncomes O O\nin O O\n, O O\ncheck O O\nif O O\na O O\nsession O O\nalready O O\nexists O O\nfor O O\nthis O O\nrequest O O\n( O O\nusing O O\ngetSession(false)) Name Name\n. O O\n\nIf O O\none O O\nexists O O\n, O O\nthen O O\nextract O O\nyour O O\nspecific O O\ncookie O O\nMY_SESSION_ID Name Name\nfrom O O\nthe O O\nrequest O O\n, O O\nand O O\ncompare O O\nits O O\nvalue O O\nto O O\nthe O O\none O O\nthat O O\nis O O\nstored O O\nin O O\nthe O O\nsession O O\n. O O\n\nIf O O\nthey O O\ndo O O\nn't O O\nmatch O O\n, O O\nreject O O\nthe O O\nrequest O O\n. O O\n\nIf O O\nthe O O\nsession O O\ndoes O O\nn't O O\nexist O O\n, O O\nthen O O\ncreate O O\nit O O\n( O O\nusing O O\ngetSession(true)) Name Name\n, O O\ngenerate O O\nyour O O\nsuper-secure O O\nsession O O\nID O O\n, O O\nstore O O\nit O O\nas O O\na O O\nsession O O\nattribute O O\nand O O\nadd O O\nthe O O\ncookie O O\nMY_SESSION_ID Name Name\nto O O\nthe O O\nresponse O O\n. O O\n\nThis O O\nhas O O\nthe O O\ndisadvantage O O\nof O O\ncreating O O\na O O\nsession O O\nautomatically O O\n, O O\neven O O\nif O O\nit O O\n's O O\nnot O O\nstrictly O O\nneeded O O\n. O O\n\nBut O O\nthat O O\n's O O\nthe O O\ncase O O\nmost O O\nof O O\nthe O O\ntime O O\nwhen O O\nusing O O\nJSPs Name Name\nof O O\ncomponent O O\nframeworks O O\n. O O\n\nI O O\nhave O O\na O O\nlarge O O\nform Name Name\nthat O O\nhas O O\nalready O O\nbeen O O\nmade O O\n, O O\nthere O O\nare O O\nmany O O\ndifferent O O\nobjects O O\nin O O\nthe O O\nform Name Name\nincluding O O\ndrop Name Name\ndowns Name Name\nand O O\ncheck Name Name\nboxes Name Name\n. O O\n\nThe O O\nmajority O O\nof O O\nthe O O\nobjects O O\nare O O\ncheck Name Name\nboxes Name Name\n. O O\n\nI O O\nneed O O\nthe O O\nboxes Name Name\nto O O\nturn O O\nred O O\nif O O\nthey O O\nare O O\nchanged O O\nfrom O O\nthe O O\ndefault O O\n. O O\n\nSome O O\ndefaults O O\nare O O\n\" Name Name\non Name Name\n\" Name Name\nothers O O\nare O O\n\" Name Name\noff Name Name\n\" Name Name\nI O O\ncan O O\ndo O O\nthis O O\nitem O O\nby O O\nitem O O\n, O O\nbut O O\nit O O\n's O O\nvery O O\ntime O O\nconsuming O O\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\nmake O O\nit O O\na O O\nstandard O O\nfor O O\nthe O O\nform Name Name\n? O O\n\nThe O O\nother O O\nissue O O\nI O O\nam O O\nhaving O O\nis O O\n, O O\nif O O\nthey O O\nchange O O\nit O O\nfrom O O\nthe O O\ndefault O O\nit O O\nturns O O\nred O O\n, O O\nhowever O O\nif O O\nit O O\nis O O\nreturned O O\nto O O\nthe O O\ndefault O O\nit O O\nstays O O\nred O O\n, O O\nis O O\nthere O O\na O O\nway O O\nto O O\nmake O O\nit O O\nchange O O\nback O O\n? O O\n\nI O O\nfeel O O\nlike O O\nthis O O\nshould O O\nbe O O\nsomething O O\nsimple O O\nthat O O\nI O O\nam O O\njust O O\nmissing O O\n. O O\n\nYou O O\ncan O O\nuse O O\nscripting O O\non O O\nenter O O\nand O O\nexit O O\nevents O O\n\nIn O O\nAdobe Name Name\nLiveCycle Name Name\nDesigner Name Name\nselect O O\nall O O\nthe O O\nfields O O\nyou O O\nwant O O\nto O O\nchange O O\nthe O O\nhighlighting O O\nand O O\nadd O O\nthe O O\nfollowing O O\nscripts O O\nto O O\neach O O\ntext Name Name\nfield Name Name\n: O O\n\nAdd O O\nan O O\nenter O O\nevent O O\nto O O\nthe O O\nfields O O\nto O O\nhighlight O O\nin O O\nred O O\n: O O\n\nAdd O O\nan O O\nexit O O\nevent O O\nto O O\nthe O O\nfields O O\nto O O\nhighlight O O\nin O O\nblack O O\n: O O\n\nIn O O\nmy O O\napplication O O\nI O O\nam O O\ndoing O O\nlive O O\naudio O O\nstreaming O O\nusing O O\nAndroid Name Name\nmedia Name Name\nplayer Name Name\n. O O\n\nI O O\nwant O O\nto O O\ncapture O O\nthe O O\nsound O O\nstream O O\nplayed O O\nby O O\nMediaPlayer Name Name\n. O O\n\nIs O O\nthere O O\nis O O\nway O O\nto O O\nrecord O O\nusing O O\nAndroid Name Name\nMediaPlayer Name Name\ninstead O O\nof O O\nMediaRecorder Name Name\n? O O\n\nAny O O\nsuggestions O O\n? O O\n\nWhile O O\nit O O\nis O O\na O O\nnon-trivial O O\nundertaking O O\n, O O\nyou O O\ncan O O\nwrite O O\nyour O O\nown O O\n\" O O\nMediaPlayer Name Name\n\" O O\nthat O O\nimplements O O\nwhatever O O\nstreaming O O\nprotocol O O\nyou O O\nare O O\nusing O O\nand O O\nwrites O O\nthe O O\nstream O O\nto O O\na O O\nfile O O\ninstead O O\nof O O\nthe O O\nspeaker Name Name\n. O O\n\nI O O\ncreated O O\nmy O O\ndatabase O O\nand O O\nstarted O O\ndeveloping O O\na O O\nweb O O\napplication O O\nin O O\nc# Name Name\nwith O O\nEF5 Name Name\nand O O\nthe O O\nDB Name Name\nFirst Name Name\napproach Name Name\n. O O\n\nI O O\ncan O O\nmodify O O\nmy O O\nentities O O\non O O\ntheir O O\nown O O\ndata O O\nfields O O\nbut O O\ndo O O\nn't O O\nget O O\nit O O\nto O O\nwork O O\nwhen O O\nit O O\ncomes O O\nto O O\nupdating O O\nrelationships O O\n. O O\n\nA O O\nsimple O O\nrelationship O O\nexample O O\nis O O\nProject Name Name\n<- O O\nProjectCategoryIntersection Name Name\n-> O O\nCategory Name Name\n\nModel O O\n: O O\n\nSave O O\n: O O\n\nexception Name Name\n: O O\n\nI O O\nalso O O\nreceive O O\na O O\nmultiple O O\ninstances O O\nChangeTracker O O\nexception Name Name\nwhen O O\ni O O\ntry O O\nto O O\nadd O O\nthe O O\ncategories O O\ndirectly O O\nto O O\nthe O O\nproject O O\nobject O O\n: O O\n\nShould O O\ni O O\nremove O O\nthe O O\ngenerated O O\ntable Name Name\nobject O O\nfrom O O\nmy O O\nmodel O O\n? O O\n\nSolution O O\n\nI O O\nended O O\nup O O\nremoving O O\nthe O O\ngenerated O O\ntable Name Name\nobject O O\npublic Name Name\nTProject Name Name\nproject Name Name\n{ Name Name\nget Name Name\n; Name Name\nprivate Name Name\nset Name Name\n; Name Name\n} Name Name\nand O O\nchanged O O\nmy O O\ncode O O\nto O O\n: O O\n\nApperantly O O\nthis O O\nhappens O O\nwhen O O\nyou O O\nuse O O\nreference O O\nto O O\nan O O\nobject O O\nand O O\nalso O O\nan O O\nInteger Name Name\nfor O O\nthe O O\nID Name Name\nwithin O O\nthe O O\nsame O O\nobject O O\nand O O\nchange O O\nboth O O\nof O O\nthem O O\n. O O\n\nWhen O O\nthis O O\nhappens O O\nEF Name Name\ncan O O\nnot O O\nknow O O\nwhich O O\none O O\nis O O\nthe O O\ncorrect O O\nreference O O\n\nTry O O\nsetting O O\nonly O O\nIds Name Name\nand O O\nset O O\nnull Name Name\nfor O O\nreferences O O\nlike O O\n\nI O O\nam O O\ntrying O O\nto O O\nconvert O O\nyearly O O\nsalary O O\nto O O\nweekly O O\n. O O\n\nSo O O\n, O O\n312,000 Name Name\nyearly O O\nsalary O O\nshould O O\ncome O O\nout O O\nas O O\n$6000 Name Name\nweekly O O\n. O O\n\nHere O O\nis O O\nmy O O\nformula O O\nwhich O O\nis O O\nnot O O\ngiving O O\nthe O O\ndesired O O\nresult O O\n: O O\n\nAlso O O\n, O O\nhow O O\ncan O O\nI O O\nconvert O O\nyearly O O\nto O O\nhourly O O\n! O O\n\nThere O O\nare O O\n52 Name Name\nweeks O O\nin O O\na O O\nyear O O\n, O O\nso O O\nweeklySalary Name Name\n= Name Name\nyearlySalary Name Name\n/ Name Name\n52 Name Name\n. O O\n\nIf O O\nyou O O\nwant O O\nhourly O O\n, O O\nthere O O\nare O O\n40 Name Name\nworking O O\nhours O O\nin O O\na O O\nweek O O\n, O O\nso O O\nhourlySalary Name Name\n= Name Name\nweeklySalary Name Name\n/ Name Name\n40 Name O\n. O O\n\ni O O\nneed O O\nto O O\nfind O O\nthe O O\npossible O O\npaths O O\nbetween O O\nsource O O\nand O O\ntarget O O\nin O O\na O O\n2*D O O\ngrid Name Name\nunder O O\nsome O O\ndefined O O\nconstraints O O\nlike O O\n\nex O O\n: O O\nwe O O\nhave O O\na O O\ngrid Name Name\n( O O\n5 O O\n* O O\n9 O O\n) O O\nand O O\nwe O O\nhave O O\n2 O O\nsource O O\nand O O\n2 O O\ntargets O O\n, O O\ni.e O O\n. O O\n\nsource1 Name Name\n( Name Name\n2 Name Name\n, Name Name\n2) Name Name\ntarget1 Name Name\n( Name Name\n4 Name Name\n, Name Name\n9 Name Name\n) Name Name\n\nsource2 Name Name\n( Name Name\n2 Name Name\n, Name Name\n7 Name Name\n) Name O\ntarget2 Name Name\n( Name Name\n4 Name O\n, Name Name\n3) Name Name\n\nNow O O\ni O O\nhave O O\nto O O\nfind O O\npossible O O\nshortest O O\npaths O O\ncombinations O O\nbetween O O\nsource1 Name Name\nand O O\ntarget1 Name Name\nwhich O O\ndonot O O\nintersect O O\nthe O O\npath O O\nbetween O O\nsource2 Name Name\nand O O\ntarget2 Name Name\nwith O O\nminimum O O\ntime O O\ncomplexity O O\n. O O\n? O O\n\nCan O O\ni O O\napply O O\nGenetic Name Name\nAlgorithm Name Name\nfor O O\nthis O O\nproblem O O\nor O O\nkeep O O\ncomparing O O\neach O O\npath O O\nof O O\nsource1-target1 Name Name\nwith O O\nall O O\npaths O O\nof O O\nother O O\nsource2-target2 Name Name\n. O O\n? O O\n\ncomparing O O\nall O O\npaths O O\nwill O O\nlead O O\nto O O\nmore O O\ntime O O\ncomplexity O O\n. O O\n\nso O O\nsuggest O O\nme O O\nany O O\nbetter O O\nsolution O O\nfor O O\nthis O O\nproblem O O\n. O O\n\nI O O\nhave O O\nin O O\nfact O O\nno O O\nexperience O O\nwith O O\ngenetic Name Name\nalgorithms Name Name\n. O O\n\nBut O O\nyou O O\nmight O O\nbe O O\nable O O\nto O O\nmodify O O\nan O O\nA* Name Name\nsearch Name Name\nalgorithm O O\nand O O\nlet O O\none O O\npath O O\nblock O O\noff O O\nthe O O\nother O O\npath O O\n\nI O O\n' O O\nm O O\ntrying O O\nto O O\nswitch O O\nwindows Name Name\ninput O O\nlanguage O O\nby O O\nALT+SHIFT O O\nfrom O O\nRussian O O\nto O O\nEnglish O O\nbut O O\nit O O\ndoes O O\nn't O O\nin O O\njava Name Name\napplications O O\n. O O\n\nIn O O\nwindows Name Name\nit O O\nworks O O\nfine O O\nbut O O\nwhen O O\nI O O\nswitch O O\nby O O\nALT+TAB O O\nto O O\none O O\nof O O\njava Name Name\napplications O O\nit O O\ndoes O O\nn't O O\nwork O O\n. O O\n\nTo O O\nfix O O\nit O O\nI O O\nhave O O\nto O O\nrestart O O\napplication O O\n, O O\nfor O O\nexample O O\nItellij Name Name\nIDEA Name Name\n. O O\n\nBut O O\nafter O O\nsome O O\ntime O O\nit O O\nappears O O\nagain O O\n. O O\n\nCan O O\nAnybody O O\ndescribe O O\nhow O O\nto O O\nfix O O\nit O O\n? O O\n\nHave O O\na O O\nlook O O\nat O O\nyour O O\njava Name Name\napp O O\nkeyboard O O\npreferences O O\nif O O\nit O O\nhas O O\nits O O\nown O O\nshortcut-function O O\nbound O O\nto O O\nthe O O\nALT+ O O\nSHIFT O O\n. O O\n\nIt O O\nmay O O\nbe O O\nso O O\nfor O O\nIntelliJ Name Name\nIDEA Name Name\n. O O\n\nAFAIK Name Name\n, O O\nthe O O\ndefault O O\nlanguage O O\nis O O\ndecided O O\nat O O\nstart-up O O\n, O O\nas O O\nyou O O\nexperienced O O\n. O O\n\nThis O O\nallows O O\nto O O\noverride O O\nthe O O\ndefault O O\nlanguage O O\nusing O O\nsome O O\ncommand Name Name\nline Name Name\narguments O O\n. O O\n\nI O O\n'm O O\nafraid O O\n, O O\nthis O O\nis O O\nhow O O\nit O O\nis O O\n. O O\n\nYou O O\nwill O O\nhave O O\nto O O\nrestart O O\nthe O O\napplication O O\nto O O\nget O O\nthe O O\nchanged O O\ndefault O O\nlanguage O O\nfrom O O\nthe O O\nOS O O\n. O O\n\nPlease O O\nHelp O O\n! O O\n\nI O O\nhave O O\na O O\nuser O O\npage Name Name\nsetup O O\nand O O\nproperly O O\nlinked O O\nto O O\nmy O O\ndatabase O O\n. O O\n\nWhat O O\ni O O\nwant O O\nto O O\ndo O O\nis O O\nto O O\nadd O O\na O O\ncountdown O O\ntimer O O\nof O O\n3 O O\nhours O O\nfor O O\nusers O O\nwho O O\nhave O O\nnot O O\nactivated O O\ntheir O O\naccount O O\n. O O\n\nI O O\nwant O O\nthat O O\ntimer O O\nto O O\nbe O O\nunique O O\nto O O\nindividual O O\nusers O O\nwhich O O\nwill O O\nstart O O\ncounting O O\nonce O O\nthey O O\nregister O O\ntheir O O\naccount O O\nand O O\nwhen O O\nthey O O\nlogin O O\nthe O O\ncountdown O O\nwill O O\nbe O O\ndisplayed O O\non O O\nthe O O\npage Name Name\n. O O\n\nPlease O O\n, O O\ncan O O\nanyone O O\nhelp O O\nme O O\nwith O O\na O O\nsimple O O\ncode O O\nto O O\nimplement O O\nthis O O\n? O O\n\nThanks O O\na O O\nlot O O\n. O O\n\nPS O O\n: O O\nI O O\nam O O\na O O\ndummy O O\nin O O\ncode O O\nwriting O O\n, O O\nso O O\nI O O\nuse O O\nDreamweaver Name Name\nto O O\nhelp O O\nme O O\nwith O O\ncode O O\ngeneration O O\n. O O\n\nHere O O\n's O O\nmy O O\npage Name Name\ncode O O\n: O O\n\nYou O O\ncan O O\nstore O O\ntimestamp O O\nin O O\na O O\nfield O O\nof O O\nuser O O\ntable Name Name\nwhen O O\nregistering O O\nnew O O\nuser O O\n. O O\n\nalso O O\nyou O O\ncan O O\nuse O O\nmysql Name Name\ninsert O O\ntrigger O O\nto O O\ndo O O\nthat O O\nautomatically O O\nfor O O\nyou O O\n. O O\n\nwhen O O\nuser O O\nlogged O O\nin O O\n, O O\nyou O O\ncan O O\nsubtract O O\nregistered O O\ntimestamp O O\nfrom O O\ncurrent O O\ntimestam O O\nand O O\nshow O O\nin O O\nuser O O\ndashboard Name Name\n. O O\n\nalso O O\nyou O O\ncan O O\nuse O O\nJavaScript Name Name\nto O O\ncontinues O O\nshowing O O\ncounting O O\ndown O O\ntimer O O\nin O O\nin O O\nuser O O\ndashboard Name Name\nwith O O\ninterval Name Name\nor O O\nsetTimeout Name Name\n. O O\n\nEdited O O\n: O O\n\nto O O\nset O O\ntimestamp O O\nin O O\nyou O O\ntable Name Name\nyou O O\ncan O O\nsimply O O\nDefault O O\nvalue O O\nto O O\nyour O O\nfield O O\n, O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nwhen O O\nyour O O\ntry O O\nto O O\nlogin O O\nor O O\nwhen O O\nyour O O\nJob O O\nfired O O\n, O O\nyou O O\ncan O O\ncheck O O\ntime O O\nand O O\ndelete O O\nuser O O\nif O O\ntime O O\nis O O\nmore O O\nthan O O\n3 O O\nhours O O\nan O O\nuser O O\ndo O O\nn't O O\nfinish O O\nregistration O O\nsteps O O\n. O O\n\nsomething O O\nlike O O\nbelow O O\nphp Name Name\ncode O O\n: O O\n\nWhat O O\nI O O\nwant O O\n: O O\n\nI O O\nhave O O\nListView Name Name\n. O O\n\nLoad O O\ndata O O\nto O O\nListView Name Name\nin O O\nfly O O\n( O O\nwhen O O\nuser O O\nscrolling O O\nlistView Name Name\n) O O\n. O O\n\nData O O\nis O O\nfrom O O\nSQLite Name Name\ntable Name Name\n. O O\n\nBut O O\nwhen O O\nSQLite Name Name\ntable Name Name\nend O O\n- O O\nget O O\nnew O O\ndata O O\nfrom O O\nGitHub Name Name\nAPI Name Name\nin O O\nJSON Name Name\nformat O O\n. O O\n\nThen O O\nsave O O\nthis O O\ndata O O\nto O O\nSQLite Name Name\ntable Name Name\nand O O\nthen O O\nshow O O\nnew O O\nitems O O\nin O O\nlisview Name Name\n. O O\n\nHow O O\ncan O O\nI O O\ndo O O\nthis O O\n? O O\n\nThanks O O\nin O O\nadvance O O\n! O O\n\nYour O O\ncustom O O\nListView Name Name\nclass O O\n. O O\n\nIn O O\nyour O O\nactivity Name Name\n, O O\nimplement O O\nListView.ListViewListener Name Name\n\nI O O\n'm O O\nworking O O\non O O\nan O O\nautomatic O O\nsummarization O O\nsystem O O\nin O O\nmy O O\nC++ Name Name\nclass O O\nand O O\nhave O O\na O O\nquestion O O\nregarding O O\none O O\nof O O\nthe O O\nASCII O O\ncomparisons O O\nI O O\n'm O O\ndoing O O\n. O O\n\nHere O O\n's O O\nthe O O\ncode O O\n: O O\n\nWhat O O\nis O O\nbeing O O\ndone O O\nhere O O\n( O O\nwith O O\nthe O O\ntwo O O\nif O O\nstatements O O\n) O O\nis O O\nchecking O O\nwhether O O\na O O\nnew O O\nsentence Name Name\nhas O O\nbegun O O\nin O O\nthe O O\ntext O O\nthat O O\nis O O\nto O O\nbe O O\nanalyzed O O\nand O O\ndealt O O\nwith O O\nlater O O\n. O O\n\nThe O O\nconditionals O O\nwork O O\nbut O O\nonly O O\nbecause O O\nwe O O\ndiscovered O O\nthat O O\nwe O O\nhave O O\nto O O\ncheck O O\nfor O O\nthat O O\n-1 Name Name\nas O O\nwell O O\n. O O\n\nAny O O\nideas O O\nwhat O O\nthat O O\nrepresents O O\n? O O\n\nAs O O\nan O O\nASCII O O\ncharacter Name Name\n-1 Name Name\ndoes O O\nn't O O\nrepresent O O\nanything O O\n( O O\nwhich O O\nis O O\nto O O\nsay O O\n-1 Name Name\nis O O\nnot O O\na O O\nvalid O O\nASCII O O\nvalue O O\n) O O\n. O O\n\nAs O O\nthe O O\nreturn O O\nvalue O O\nfrom O O\nget() Name Name\nit O O\nmeans O O\nthat O O\nthe O O\nread O O\noperation O O\nfailed O O\n- O O\nmost O O\nlikely O O\ndue O O\nto O O\nthe O O\nend O O\nof O O\nfile O O\nbeing O O\nreached O O\n. O O\n\nNote O O\nthat O O\nthe O O\neof() Name Name\nfunction O O\ndoes O O\nn't O O\nreturn O O\ntrue Name Name\nif O O\nthe O O\nnext O O\ncall O O\nto O O\nget Name Name\nwill O O\nfail O O\nbecause O O\nof O O\nthe O O\nend O O\nof O O\nfile O O\nbeing O O\nreached O O\n- O O\nit O O\nreturns O O\ntrue Name Name\nif O O\nthe O O\nprevious O O\ncall O O\nto O O\nget Name Name\nfailed O O\nbecause O O\nof O O\nthe O O\nend O O\nof O O\nfile O O\nbeing O O\nreached O O\n. O O\n\nThe O O\nfact O O\nthat O O\nchecking O O\nfor O O\n-1 Name Name\nworks O O\nis O O\nan O O\naccident O O\n, O O\nand O O\nhas O O\nnothing O O\nto O O\ndo O O\nwith O O\nASCII O O\nvalues O O\n( O O\nwhich O O\nonly O O\nuse O O\n0 Name Name\nto O O\n127 Name Name\n) O O\n. O O\n\nYour O O\ncode O O\nwill O O\nfail O O\nif O O\neither O O\nplain O O\nchar Name Name\nis O O\nunsigned Name Name\n( O O\ncompile O O\nwith O O\n/J Name Name\nwith O O\nVC++ Name Name\n, O O\nI O O\nthink O O\n) O O\n, O O\nor O O\nEOF Name Name\nis O O\nn't O O\n-1 Name Name\n( O O\nrare O O\n, O O\nbut O O\nall O O\nthat O O\n's O O\nguaranteed O O\nis O O\nthat O O\nit O O\nis O O\nnegative O O\n) O O\n. O O\n\nYou O O\n're O O\ncode O O\nwill O O\nalso O O\nfail O O\nif O O\nthe O O\ninput O O\nhappens O O\nto O O\nbe O O\nLatin-1 Name Name\n, O O\nand O O\nit O O\ncontains O O\na O O\n' Name Name\nÿ Name Name\n' Name Name\n. O O\n\nThe O O\nbasic O O\nproblem O O\nin O O\nyour O O\ncode O O\nis O O\nthat O O\nyou O O\n're O O\nnot O O\nchecking O O\nfor O O\nend O O\nof O O\nfile O O\ncorrectly O O\n. O O\n\nPutting O O\nthe O O\ntest O O\nat O O\nthe O O\ntop O O\nof O O\nthe O O\nloop O O\ndoes O O\nn't O O\nwork O O\n; O O\nyou O O\nneed O O\nto O O\ntest O O\nfor O O\nfailure O O\n( O O\nnot O O\neof()) Name Name\nafter O O\ninput O O\n, O O\nbefore O O\nusing O O\nthe O O\nvalue O O\nread O O\n. O O\n\nThere O O\nare O O\nseveral O O\nways O O\nof O O\ndoing O O\nthis O O\n; O O\nin O O\nyour O O\ncase O O\n, O O\nthe O O\nsimplest O O\nis O O\nprobably O O\nto O O\nuse O O\n: O O\n\nAlternatively O O\n, O O\nyou O O\ncan O O\nmake O O\nch Name Name\nan O O\nint Name Name\n, O O\nand O O\ndo O O\n: O O\n\nThis O O\nhas O O\nthe O O\nadvantage O O\nthat O O\nthe O O\nfollowing O O\ncall O O\nto O O\ntolower Name Name\nis O O\nno O O\nlonger O O\nundefined O O\nbehavior O O\n( O O\ntolower Name Name\ntakes O O\nan O O\nint Name Name\n, O O\nwhich O O\nmust O O\nbe O O\nin O O\nthe O O\nrange O O\n0 Name Name\n... Name Name\nUCHAR_MAX Name Name\nor Name Name\nEOF Name Name\n— Name Name\nif Name Name\nplain O O\nchar Name Name\nis Name Name\nsigned O O\n, O O\nyou O O\nare O O\nn't O O\nguaranteeing O O\nthis O O\n) O O\n. O O\n\nOn O O\nthe O O\nother O O\nhand O O\n, O O\nit O O\ndoes O O\nn't O O\nallow O O\nchaining O O\n, O O\ni.e O O\n. O O\nyou O O\nca O O\nn't O O\nwrite O O\nthe O O\nequivalent O O\nof O O\n: O O\n\n( O O\nwhich O O\ncould O O\nbe O O\nuseful O O\nin O O\nsome O O\ncases O O\n) O O\n. O O\n\nFWIW O O\n: O O\nthe O O\ntechnique O O\nyou O O\n're O O\nusing O O\nis O O\nsomething O O\ncalled O O\na O O\nsliding O O\nwindow O O\ninto O O\na O O\nstream O O\n, O O\nand O O\nit O O\n's O O\nworth O O\npushing O O\nit O O\noff O O\ninto O O\na O O\nseparate O O\nclass O O\nto O O\nhandle O O\nthe O O\nlogic O O\nof O O\nkeeping O O\nthe O O\nwindow O O\nfilled O O\nand O O\nup O O\nto O O\ndate O O\n. O O\n\nAlternatively O O\n, O O\na O O\nsimple O O\nstate O O\nmachine O O\ncould O O\nbe O O\nused O O\nfor O O\nyour O O\nproblem O O\n. O O\n\nAnd O O\nI O O\n'd O O\ndefinitely O O\navoid O O\nusing O O\nmagic O O\nconstants O O\n: O O\nif O O\nyou O O\nwant O O\nto O O\ncheck O O\nfor O O\na O O\ncarriage O O\nreturn O O\n, O O\ncompare O O\nwith O O\n' Name Name\n\\r Name Name\n' Name Name\n. O O\n\nSimilarly O O\n, O O\nnewline O O\nis O O\n' Name Name\n\\n Name Name\n' Name Name\n, O O\nand O O\nin O O\nthe O O\nouter O O\nif Name Name\n, O O\nit O O\nlooks O O\nlike O O\nyou O O\nwant O O\nto O O\ncheck O O\nfor O O\nwhitespace O O\n( O O\nisspace Name Name\n( Name Name\nstatic_cast Name Name\n<unsigned Name Name\nchar> Name Name\n( Name Name\nsentenceCheck.second Name Name\n) Name Name\n) Name Name\n) O O\n, O O\nrather O O\nthan O O\ncomparing O O\nfor O O\nthe O O\nvalues O O\n. O O\n\nI O O\nmight O O\nalso O O\nadd O O\nthat O O\nyour O O\ncode O O\nfails O O\nto O O\ncorrectly O O\nhandle O O\nsentences O O\nthat O O\nend O O\nwith O O\na O O\nquote O O\n, O O\nlike O O\nThis Name Name\nis Name Name\nthe Name Name\n\" Name Name\ntext Name Name\nin Name Name\nyour Name Name\ninput Name Name\n. Name Name\n\" Name Name\n; O O\nit O O\nalso O O\nfails O O\nfor O O\nabbreviations O O\nlike O O\nMr Name Name\n. Name Name\nJones Name Name\nis Name Name\nhere. Name Name\n. O O\n\nBut O O\nthose O O\nproblems O O\nmay O O\nbe O O\nbeyond O O\nthe O O\nscope O O\nof O O\nyour O O\nassignment O O\n. O O\n\n( O O\nThe O O\nabbreviations O O\none O O\nis O O\nprobably O O\nnot O O\nfully O O\nsolvable O O\n: O O\nsometimes O O\n\" Name Name\netc Name Name\n. Name Name\n\" Name Name\nis O O\nthe O O\nend O O\nof O O\na O O\nsentence O O\n, O O\nand O O\nsometimes O O\nit O O\n's O O\nnot O O\n. O O\n) O O\n\nIn O O\nthe O O\nOracle Name Name\nPL/SQL Name Name\n, O O\nhow O O\nto O O\ndebug O O\na O O\ncomplex O O\nstored O O\nproc O O\n? O O\n\nfor O O\nexample O O\n, O O\nthe O O\ncodes O O\nbelow O O\n, O O\nit O O\nis O O\nusing O O\nloop O O\n+ O O\ncorrelated O O\nsubquery O O\n. O O\n\nhow O O\nto O O\nfully O O\nunderstand O O\nit O O\n? O O\n\nI O O\nhave O O\nlearned O O\nthat O O\nthe O O\nbest O O\nway O O\nto O O\ndebug O O\nis O O\ndivide-and-conquer Name Name\n, O O\nthen O O\nhow O O\nto O O\ncut O O\nthis O O\ncoding O O\ninto O O\nsmall O O\npieces O O\n? O O\n\nThanks O O\n\nTry O O\ncommenting O O\nout O O\npart O O\nof O O\nthe O O\ncode O O\n, O O\nthen O O\nstore O O\nthe O O\nso-far O O\nresult O O\nin O O\na O O\nvariable O O\n. O O\n\nThen O O\nyou O O\ncan O O\njust O O\nselect O O\nit O O\nlike O O\n: O O\nSELECT Name Name\n@varname Name Name\nAt O O\nleast O O\nthat O O\n's O O\nhow O O\nMYSQL Name Name\n5.x Name Name\nhandles O O\nit O O\n. O O\n\nYou O O\ndo O O\nn't O O\nsay O O\nwhat O O\ntools O O\nyou O O\n're O O\nusing O O\n, O O\nbut O O\nif O O\nyou O O\nget O O\nOracle Name Name\nSQL Name Name\nDeveloper Name Name\n, O O\nit O O\nincludes O O\na O O\ndebugger Name Name\nthat O O\nallows O O\nyou O O\nto O O\nstep O O\nthrough O O\nthe O O\ncode O O\nline O O\nby O O\nline O O\n, O O\nset O O\nbreakpoints O O\n, O O\nand O O\nso O O\nforth O O\n- O O\nall O O\nthe O O\ntypical O O\nfeatures O O\nof O O\na O O\ndebugging O O\nGUI O O\n. O O\n\nAnd O O\n, O O\nit O O\n's O O\nfree O O\n. O O\n\nGet O O\nit O O\nhere O O\n. O O\n\nI O O\ndo O O\nn't O O\nknow O O\nhow O O\n, O O\nbut O O\nafter O O\nmoving O O\ntwo O O\nof O O\nmy O O\nUIViews Name Name\n, O O\nthey O O\nare O O\nmoving O O\nback O O\nto O O\ntheir O O\nstarting O O\nx/y Name Name\nposition O O\nevery O O\nso O O\noften O O\n. O O\n\nI O O\n've O O\nchecked O O\nthe O O\ncode O O\nand O O\nI O O\n'm O O\nnot O O\nmoving O O\nthem O O\nback O O\nto O O\ntheir O O\nstarting O O\npositions O O\ndirectly O O\n, O O\nbut O O\nthey O O\nare O O\ngoing O O\nback O O\nthere O O\nsomehow O O\n. O O\n\nWhat O O\ntechnique O O\nwould O O\nyou O O\nsuggest O O\nto O O\nfind O O\nwhich O O\nbit O O\nof O O\ncode O O\nis O O\nmoving O O\nthem O O\n? O O\n\n( O O\nI O O\nam O O\n' O O\nhiding O O\n' O O\nthem O O\nat O O\none O O\npoint O O\n( O O\nalpha Name Name\n= Name Name\n0.5 Name Name\n, O O\nuserInteractionEnabled Name Name\n= Name Name\nNO Name O\n) O O\nand O O\nthen O O\nre-showing O O\nthem O O\n. O O\n\nThat O O\ncould O O\nn't O O\nbe O O\nit O O\ncould O O\nit O O\n? O O\n) O O\n\nI O O\nwrote O O\na O O\nsimple O O\nEventMachine Name Name\nserver Name Name\nlike O O\nthis O O\none O O\n: O O\n\nNow O O\n, O O\nI O O\nwould O O\nlike O O\nto O O\ntrigger O O\nit O O\nfrom O O\nanother O O\nfile O O\nin O O\nanother O O\ndirectory O O\n. O O\n\nIf O O\nEventMachine Name Name\nwould O O\nbe O O\na O O\nsimple O O\nRuby Name Name\nclass O O\nI O O\nwould O O\nadd O O\na O O\nrun Name Name\n( O O\nor O O\nsomething O O\n) O O\nclass O O\nmethod O O\nand O O\ndo O O\nsomething O O\nlike O O\n: O O\n\nAny O O\nidea O O\nhow O O\nto O O\ndo O O\nthis O O\n? O O\n\nThanks O O\n! O O\n\nYou O O\nalready O O\nhad O O\nthe O O\nsolution O O\n: O O\n\nmy_app.rb Name Name\n: O O\n\nrun.rb Name Name\n: O O\n\nI O O\n'm O O\nusing O O\nthe O O\nJava Name Name\nclient O O\nwith O O\nRabbitMQ Name Name\n. O O\n\nI O O\n've O O\nseen O O\nreferences O O\nto O O\nfinding O O\nqueue Name Name\nsize O O\nwith O O\na O O\nSpring Name Name\nplugin O O\n, O O\nbut O O\nI O O\n'm O O\nnot O O\nusing O O\nSpring Name Name\n. O O\n\nIs O O\nthere O O\na O O\nnon-Spring Name Name\nway O O\nto O O\nget O O\nthe O O\nsize O O\nof O O\na O O\nqueue Name Name\ngiven O O\nits O O\nname O O\n? O O\n\nRight O O\nnow O O\nI O O\n'm O O\njust O O\nexec'ing O O\nshell Name Name\ncommands O O\n' O O\nrabbitmqctl Name Name\nlist_queues Name Name\n' O O\nand O O\nparsing O O\nthe O O\nresults--not O O\ngreat O O\n. O O\n\nyou O O\ncan O O\nenable O O\nthe O O\nhttp Name Name\nmanagement Name Name\nplugin O O\n, O O\n\nrabbitmq-plugins Name Name\nenable Name Name\nrabbitmq_management Name Name\n\nthen O O\nuse O O\nthe O O\nhttp Name Name\nAPI Name Name\n. O O\n\nIf O O\nyou O O\nexecute O O\nan O O\nhttp O O\ncall O O\nlike O O\n: O O\n\nyou O O\nhave O O\nall O O\ninformation O O\nabout O O\nthe O O\nqueue Name Name\n, O O\nthe O O\noutput O O\nis O O\na O O\njson Name Name\nlike O O\n: O O\n\nWhat O O\nI O O\nwant O O\nto O O\ndo O O\nis O O\nto O O\nwrite O O\na O O\npiece O O\nof O O\ncode O O\n( O O\npart O O\nof O O\nbigger O O\nweb-application O O\ndeployed O O\non O O\nglassfish Name Name\n) O O\nthat O O\nconnects O O\nto O O\nother O O\nsystem O O\nvia O O\nwebservice O O\n. O O\n\nHowever O O\nI O O\n'm O O\nwriting O O\nclient O O\nonly O O\n, O O\nso O O\nI O O\nassume O O\nthat O O\nI O O\ncannot O O\nchange O O\nWSDL Name Name\nor O O\nmodify O O\nanything O O\non O O\nserver Name Name\nside O O\n( O O\nincluding O O\nauth O O\n, O O\nthat O O\nis O O\nprobably O O\na O O\nproblem O O\nhere O O\n) O O\n. O O\n\nI O O\n'm O O\nnew O O\nto O O\nwebservices O O\n, O O\nso O O\npretty O O\nplease O O\n- O O\nwrite O O\nyour O O\nanswers O O\nas O O\nsimple O O\nas O O\nthey O O\ncan O O\nbe O O\n. O O\n\nI O O\nwas O O\nable O O\nto O O\ngenerate O O\nclasses O O\nfrom O O\nWSDL Name Name\n, O O\nwrite O O\nsimple O O\ncommand O O\nline O O\napplication O O\nthat O O\nconnects O O\nto O O\nwebservice O O\n, O O\nadds O O\nsecurity O O\nheader O O\n( O O\nadd O O\nplaintext O O\nusername/password O O\n, O O\nmore O O\nbelow O O\n) O O\n, O O\ncalls O O\nsome O O\nmethod O O\nand O O\nprints O O\nresult O O\n. O O\n\nEverything O O\nworks O O\nOK O O\non O O\ncommand Name Name\nline Name Name\n, O O\nbut O O\nif O O\nI O O\n'll O O\nattach O O\nthis O O\ncode O O\nto O O\n' O O\nbigger O O\nwebapp O O\n' O O\n( O O\ndeploy O O\non O O\nglassfish Name Name\n) O O\nI O O\n'm O O\ngetting O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\nSP0105 O O\n: O O\nEither O O\nSymmetricBinding/AsymmetricBinding/TransportBinding O O\nassertion O O\nmust O O\nbe O O\npresent O O\nin O O\nthe O O\nwsdl Name Name\n. O O\n\nI O O\n'm O O\nnot O O\ngetting O O\nit O O\nfrom O O\nthere O O\n- O O\nif O O\nit O O\nworks O O\nfrom O O\ncommand Name Name\nline Name Name\n( O O\noutside O O\nof O O\nglassfish Name Name\n) O O\n, O O\nwhy O O\ndoes O O\nit O O\nneed O O\nsomething O O\nmore O O\nwhile O O\ndeployed O O\non O O\nglassfish Name Name\n? O O\n\nI O O\nwas O O\nusing O O\nhints O O\nfrom O O\nthis O O\npage O O\n: O O\n\nhttp://www.javadb.com/using-a-message-handler-to-alter-the-soap-header-in-a-web-service-client O O\n\nTo O O\ngive O O\nmore O O\ninfo O O\non O O\nthis O O\n, O O\nsome O O\npieces O O\nof O O\ncode O O\n: O O\n\nCode O O\nfragment O O\nfor O O\nresolving O O\nendpoint O O\nand O O\ncalling O O\nservice O O\n( O O\nin O O\nfile O O\nEndpointResolver.java Name Name\n) O O\n: O O\n\nHeaderHandlerResolver Name Name\n( O O\nimplementing O O\njavax.xml.ws.handler.HandlerResolver Name Name\n) O O\nmost O O\nimportant O O\nmethid O O\n: O O\n\nHeaderHandler Name Name\nhandle O O\nmethod O O\n( O O\nauth Name Name\nis O O\nhere O O\n:) O O\n) O O\n\nThank O O\nyou O O\nvery O O\nmuch O O\nfor O O\nany O O\nhelp O O\nwith O O\nthis O O\n. O O\n\nedit O O\n: O O\n\nBelow O O\nis O O\n' O O\npolicy O O\n' O O\npart O O\nfrom O O\nwsdl Name Name\nfile O O\n( O O\nas O O\nstated O O\nbefore O O\n, O O\nI O O\ncannot O O\nchange O O\nthat O O\n) O O\n: O O\n\nI O O\n'll O O\nanswer O O\nto O O\nmy O O\nown O O\nquestion O O\n: O O\n\nThere O O\nwere O O\ntwo O O\nthings O O\nrequired O O\nto O O\nfix O O\nproblem O O\nabove O O\n. O O\n\nFirst O O\nthing O O\nthat O O\nwas O O\nrequired O O\nwas O O\nto O O\nupdate O O\nmetro Name Name\nlibrary O O\non O O\nglassfish Name Name\n( O O\nI O O\n've O O\nupdated O O\nit O O\nto O O\nversion O O\n2.1.1 Name Name\n, O O\nso O O\nupdated O O\nlibraries O O\nlib/webservices Name Name\n-rt.jar Name Name\n, O O\nlib/webservices Name Name\n-tools.jar Name Name\n, O O\nlib/endorsed/webservices Name Name\n-api.jar Name O\n) O O\n. O O\n\nThat O O\nsolved O O\nSP0105 O O\nerror O O\n, O O\nbut O O\ngenerated O O\nnew O O\none O O\n( O O\nClassCastException O O\nsomewhere O O\nat O O\nheaders O O\n) O O\n. O O\n\nTo O O\nfix O O\nthe O O\nsecond O O\none O O\n, O O\nI O O\n've O O\ndeleted O O\nHeaderHandler/HeaderHandlerResolver Name Name\nclasses O O\nand O O\ninstead O O\nof O O\n: O O\n\ncalled O O\n: O O\n\nHere O O\ni O O\nhave O O\na O O\nproblem O O\nwith O O\nredirecting O O\nthe O O\nURL O O\nwith O O\nJSP Name Name\nForm O O\nsubmit O O\nthe O O\npage O O\n( O O\nuse O O\npost Name Name\nmethod O O\n) O O\nis O O\nChanging O O\nBut O O\nthe O O\nURL O O\nis O O\nnot O O\nChanging O O\n... O O\n. O O\n\nthe O O\npage O O\nsequence O O\n: O O\n\nindex.jsp Name Name\nfile O O\nhave O O\ninclude O O\njqm Name Name\njs Name Name\nand O O\ncss Name Name\n\nhere O O\nis O O\nmy O O\nmobileinit Name Name\nsettings O O\n: O O\n\nredirect.jsp Name Name\nfile O O\n\nIt O O\n's O O\nstrange O O\nthat O O\nis O O\nwork O O\nwhen O O\nindex.jsp Name Name\nwithout O O\ninclude O O\njqm Name Name\njs Name Name\nand O O\ncss Name Name\n. O O\n\nI O O\nhave O O\na O O\nReorderList Name Name\ninside O O\na O O\nvertically O O\n\" O O\nscrollable O O\n\" O O\nDIV Name Name\ntag O O\nwhich O O\ndoes O O\nnot O O\nwork O O\nwhen O O\nthe O O\nscrollbar Name Name\nfor O O\nDIV Name Name\ntag O O\nis O O\nalready O O\nscrolled O O\nand O O\nwe O O\ntry O O\nto O O\nre-order O O\nvisible O O\nitems O O\n. O O\n\nFor O O\ndetails O O\n, O O\nplease O O\nrefer O O\nhttp://forums.asp.net/p/1068063/1550532.aspx O O\n. O O\n\nI O O\nchanged O O\nthe O O\nscript O O\nand O O\nnow O O\nwant O O\nto O O\nbuild O O\nframework O O\n3.5 Name Name\nassembly Name Name\n. O O\n\nI O O\nwas O O\nable O O\nto O O\ndownload O O\nAjaxControlToolkit Name Name\nsource O O\ncode O O\nfrom O O\ncodeplex Name Name\nand O O\nre-build O O\nthe O O\ntoolkit O O\n, O O\nunder O O\nframework O O\n4.0 Name Name\n\nHow O O\nshould O O\nI O O\nproceed O O\nto O O\nbuild O O\nit O O\nso O O\nthat O O\nit O O\nis O O\ncompatible O O\nwith O O\n3.5 Name Name\nweb O O\nsite O O\nproject O O\n. O O\n\nPlease O O\nnote O O\nthat O O\nthis O O\nall O O\nshould O O\nbe O O\npossible O O\nfrom O O\nVisual Name Name\nStudio Name Name\n2010 Name Name\nand O O\nNOT O O\n2008 Name Name\n. O O\n\nNo O O\nresponses O O\n? O O\n\nI O O\nhad O O\nto O O\nopen O O\najax Name Name\ncontrol Name Name\ntoolkit Name Name\n2008 Name Name\nsolution O O\nand O O\ncreate O O\na O O\nnew O O\nassembly Name Name\nfrom O O\nthere O O\n. O O\n\nBut O O\nthere O O\nshould O O\nbe O O\nsome O O\nway O O\n? O O\n\nI O O\nwould O O\nlike O O\nto O O\ntrigger O O\nschedulenotification Name Name\nwhen O O\napp O O\nis O O\nclosed O O\n. O O\n\nThis O O\nis O O\nworking O O\nvery O O\nwell O O\nforeground Name Name\nand O O\nbackground Name Name\n. O O\n\nBut O O\ni O O\nwant O O\nto O O\nshow O O\nwhen O O\napp O O\nis O O\nkilled O O\n. O O\n\nIm O O\nwriting O O\na O O\nprogram O O\nin O O\njava Name Name\nthat O O\ntakes O O\nan O O\nexcel Name Name\nsheet O O\nfrom O O\na O O\nlocal O O\nfile O O\nand O O\nuploads O O\nthe O O\nvalues O O\ngiven O O\ninto O O\nthe O O\nprogram O O\nfor O O\nsome O O\ncalculations O O\n. O O\n\nWhen O O\nI O O\ncompile O O\ninside O O\neclipse Name Name\neverything O O\nworks O O\nexactly O O\nas O O\nit O O\nis O O\nsupposed O O\nto O O\n, O O\nbut O O\nwhen O O\nI O O\ncreate O O\na O O\nrunnable O O\njar Name Name\nfile O O\n, O O\nI O O\nget O O\na O O\npopup O O\nerror O O\n\" O O\nA O O\nJava O O\nException O O\nhas O O\nOccurred O O\n\" O O\n. O O\n\nI O O\nwent O O\nthrough O O\nthe O O\ncode O O\n, O O\nand O O\nif O O\ni O O\nremove O O\nthe O O\nmethod O O\nto O O\nload O O\nthe O O\nvalues O O\nfrom O O\nthe O O\nspreadsheet O O\nthe O O\nrunnable O O\njar Name Name\nworks O O\njust O O\nfine O O\n. O O\n\nBut O O\nif O O\ni O O\nput O O\nthe O O\ncode O O\nback O O\nin O O\nto O O\nload O O\nthe O O\nvalues O O\n, O O\nit O O\nbreaks O O\n. O O\n\nWhat O O\nis O O\nhappening O O\nin O O\nthis O O\nblock O O\nof O O\ncode O O\nthat O O\ncauses O O\nthe O O\nwhole O O\nprogram O O\nto O O\nbreak O O\n? O O\n\nAnd O O\nthe O O\nmain O O\nis O O\n: O O\n\nEDIT O O\n: O O\n\nHere O O\nis O O\nthe O O\nerror O O\nwhen O O\nI O O\nrun O O\nit O O\nthrough O O\ncommand Name Name\nline Name Name\n. O O\n\nTo O O\nfigure O O\nout O O\nwhat O O\n's O O\nwrong O O\n, O O\nyou O O\nneed O O\nto O O\nactually O O\nsee O O\nthe O O\nexception Name Name\n. O O\n\nJust O O\ndouble-clicking O O\nthe O O\njar Name Name\nfile O O\nwill O O\nlaunch O O\nit O O\nusing O O\n\" O O\njavaw.exe Name Name\n\" O O\n, O O\nwhich O O\nhas O O\nno O O\nconsole Name Name\nand O O\ntherefore O O\nonly O O\nreports O O\nthat O O\nthere O O\nwas O O\nan O O\nexception Name Name\n- O O\n- O O\nwithout O O\nthe O O\nstack O O\ntrace O O\n. O O\n\nInstead O O\n, O O\nstart O O\na O O\ncommand Name Name\nprompt Name Name\nand O O\n\" O O\ncd Name Name\n\" O O\nto O O\nwhere O O\nyour O O\njar Name Name\nfile O O\nis O O\n. O O\n\nThen O O\n, O O\nsupposing O O\nthat O O\nthe O O\njar Name Name\nname O O\nis O O\n\" O O\nMyJarFile.jar Name Name\n\" O O\n, O O\nrun O O\nthis O O\n: O O\n\nWhen O O\nrun O O\nwith O O\n\" O O\njava.exe Name Name\n\" O O\n, O O\nyour O O\nprintStackTrace() Name Name\nwill O O\nactually O O\nhave O O\na O O\nconsole Name Name\nin O O\nwhich O O\nto O O\nprint O O\nthe O O\nstack O O\ntrace O O\n, O O\nwhich O O\nwill O O\npoint O O\nyou O O\nto O O\nthe O O\noffending O O\nline O O\nof O O\ncode O O\nand O O\nstate O O\nthe O O\ntype O O\nof O O\nproblem O O\n. O O\n\nUPDATE O O\n( O O\nfollowing O O\nthe O O\nposted O O\nexception O O\n) O O\n: O O\n\nAh O O\n, O O\nsince O O\nyou O O\nrequire O O\na O O\nthird O O\nparty O O\ndependency O O\n, O O\nyou O O\nneed O O\nto O O\nswitch O O\nto O O\nsomething O O\nlike O O\nthis O O\n, O O\nrunning O O\nyour O O\nmain O O\nclass O O\nexplicitly O O\nand O O\nspecifying O O\na O O\nclasspath O O\ncontaining O O\nall O O\nrequired O O\nclasses O O\n: O O\n\nwith O O\n... O O\n\" O O\npath Name Name\n\\to Name Name\n\" O O\n, O O\n\" O O\nApachePoiJarName Name Name\n\" O O\n, O O\n\" O O\nMyAppJarFile Name Name\n\" O O\n, O O\n\" O O\nmy.main.class.package Name Name\n\" O O\nand O O\n\" O O\nMyMainClass Name Name\n\" O O\nreplaced O O\nwith O O\nthe O O\nappropriate O O\nname O O\n. O O\n\nIf O O\nthe O O\nPOI Name Name\njar Name Name\nrequires O O\nin O O\nturn O O\nits O O\nown O O\ndependencies O O\n, O O\nadd O O\nthe O O\npaths O O\nto O O\nthose O O\nfiles O O\nto O O\nthe O O\nclass O O\npath O O\nas O O\nwell O O\n( O O\na O O\nlist O O\nof O O\njar Name Name\npaths O O\nseparated O O\nby O O\nsemicolons O O\n, O O\nno O O\nspaces O O\nbetween O O\nthem O O\n) O O\n. O O\n\nIn O O\nreply O O\nto O O\n\" O O\nNow O O\nwhat O O\ndo O O\nI O O\nneed O O\nto O O\ndo O O\nto O O\nmake O O\nit O O\nrunnable O O\nby O O\ndouble O O\nclicking O O\nthe O O\njar Name Name\nfile O O\n, O O\ninstead O O\nof O O\nrunning O O\nit O O\nfrom O O\ncommand Name Name\nline Name Name\n? O O\n\" O O\n\n( O O\nTried O O\nto O O\nreply O O\nin O O\na O O\ncomment O O\nbut O O\nthe O O\nsize O O\nlimit O O\nwas O O\ntoo O O\nsmall O O\n. O O\n) O O\n\nIn O O\nEclipse Name Name\n, O O\nonce O O\nyou O O\nhave O O\na O O\n\" O O\nrun O O\nconfiguration O O\n\" O O\nwith O O\nwhich O O\nthe O O\nproject O O\nis O O\nrunning O O\ncorrectly O O\n: O O\n\nRight O O\nclick O O\nthe O O\nproject O O\n-> O O\nExport O O\n.. O O\n. O O\n-> O O\n( O O\nfrom O O\nJava O O\n) O O\n-> O O\nRunnable O O\nJAR Name Name\nfile O O\n\nNext O O\n\nSelect O O\nfrom O O\nthe O O\ndrop-down Name Name\nlist Name Name\nthe O O\nrun O O\nconfiguration O O\nthat O O\nlaunches O O\nyour O O\nproject O O\n. O O\n\nIn O O\nExport O O\ndestination O O\n, O O\nbrowse O O\nto O O\nwhere O O\nyou O O\nwant O O\nthe O O\nrunnable O O\njar Name Name\nexported O O\nand O O\nchoose O O\na O O\njar Name Name\nfile O O\nname O O\n. O O\n\nUnder O O\n\" O O\nLibrary O O\nhandling O O\n\" O O\nselect O O\n\" O O\nPackage O O\nrequired O O\nlibraries O O\ninto O O\ngenerated O O\nJAR Name Name\n\" O O\n\nFinish O O\n\nYour O O\njar Name Name\nfile O O\nshould O O\nnow O O\nrun O O\nnormally O O\n. O O\n\nNote O O\nthat O O\nit O O\nopens O O\nwith O O\n\" O O\njavaw Name Name\n\" O O\nby O O\ndefault O O\n, O O\nwhich O O\ndoes O O\nnot O O\nshow O O\na O O\nconsole Name Name\n. O O\n\nIf O O\nyou O O\nneed O O\na O O\nconsole Name Name\nto O O\nsee O O\nsome O O\noutput O O\n, O O\nor O O\nif O O\nit O O\nfails O O\nand O O\nyou O O\nwant O O\nto O O\nsee O O\nthe O O\nexception Name Name\n, O O\nopen O O\na O O\nconsole Name Name\nwhere O O\nthe O O\njar Name Name\nis O O\nand O O\nrun O O\n\" O O\njava Name Name\n-jar Name Name\nMyJarName.jar Name Name\n\" O O\n( O O\nno O O\nmore O O\nneed O O\nto O O\nspecify O O\nthe O O\nmain Name Name\nclass O O\nand O O\ndependencies O O\n) O O\n. O O\n\nI O O\n'm O O\nhaving O O\ntrouble O O\nto O O\nworking O O\nwith O O\na O O\nlibgdx Name Name\nproject O O\non O O\ntwo O O\ncomputers Name Name\n. O O\n\nWhat O O\nis O O\nthe O O\nbest O O\nway O O\nto O O\nbackup O O\nin O O\none O O\ncomputer Name Name\nand O O\nthen O O\nrestore O O\non O O\nanother O O\n? O O\n\nI O O\nuse O O\nthe O O\ngoogle-play-services Name Name\nand O O\nBaseGameUtils Name Name\nand O O\nhave O O\nto O O\nre-importing O O\nall O O\ntime O O\n. O O\n\nFor O O\nthat O O\ni O O\nrecommand O O\nto O O\nuse O O\nGit Name Name\n, O O\nif O O\nit O O\n's O O\nnew O O\nto O O\nyou O O\nhere O O\nare O O\nthe O O\nmain O O\nsteps O O\nto O O\nget O O\nstart O O\n: O O\n\n1 O O\n- O O\nCreate O O\nan O O\naccount O O\nat O O\nBitbucket Name Name\n: O O\nyou O O\ncan O O\nput O O\nyour O O\ncode O O\nin O O\nprivate O O\nmode O O\nand O O\nit O O\n's O O\nfree O O\n\n2 O O\n- O O\nDownload O O\nand O O\nInstall O O\nTortoiseGit Name Name\ntool O O\n: O O\nit O O\nreally O O\nmake O O\nlife O O\neasier O O\n\n3 O O\n- O O\nCreate O O\nyour O O\n( O O\nin O O\nServer Name Name\n) O O\nrepository O O\nin O O\nbitbucket Name Name\n\n4 O O\n- O O\nCreate O O\nyour O O\nrepository O O\nin O O\nLocal Name Name\n\n5 O O\n- O O\nMatch O O\nbetween O O\nyour O O\nrepositories O O\nusing O O\nthese O O\ncommands O O\n: O O\n\nYou O O\ncan O O\nnow O O\npull(download)/push(upload) O O\nyour O O\ncode O O\nwith O O\none O O\nclick O O\n! O O\n! O O\n\nHope O O\nthat O O\nwas O O\nclear O O\nand O O\nhelpful O O\n! O O\n\nGood O O\nluck O O\n\nI O O\n'm O O\ntrying O O\nto O O\ndo O O\nit O O\nlike O O\nthis O O\n: O O\n\nBut O O\nit O O\n's O O\njust O O\nprinting O O\n\" O O\nKilled O O\n\" O O\nand O O\ndoes O O\nn't O O\nstart O O\nit O O\nagain O O\n. O O\n\nIf O O\nI O O\ndo O O\nall O O\nthis O O\nstuff O O\nseparately O O\n- O O\nit O O\n's O O\nworking O O\n, O O\nbut O O\nfor O O\nall O O\ntogether O O\n- O O\nnot O O\n.. O O\n. O O\n\nДопоможіть O O\nхто O O\nзможе O O\n.. O O\n. O O\n\nThe O O\nscript O O\nfrom O O\nwhich O O\nyou O O\nexecute O O\nit O O\n, O O\ndoes O O\nit O O\ncontain O O\n\" O O\nservice_name Name Name\n\" O O\nin O O\nits O O\nname O O\n? O O\n\nThen O O\nit O O\nobviously O O\nfulfills O O\nthe O O\ncriteria O O\nfor O O\nbegin O O\nkilled O O\nby O O\nyour O O\nfor Name Name\nloop O O\nand O O\ncommits O O\nsuicide O O\n. O O\n\nIf O O\nit O O\ndoes O O\nnot O O\n, O O\nthen O O\nstill O O\nthe O O\ngrep Name Name\nservice_name Name Name\nremains O O\nwhich O O\nfulfills O O\nthe O O\nkill O O\ncriteria O O\n( O O\nhas O O\nservice_name Name Name\nin O O\nits O O\ncmd Name Name\nline O O\n) O O\n- O O\nfor O O\nfixed O O\nstrings Name Name\nin O O\ngrep Name Name\nI O O\nusually O O\nwrite O O\nthem O O\ngrep Name Name\n\"s[e]rvice_name\" Name Name\n, O O\nother O O\nprefer O O\nto O O\nput O O\nanother O O\n|grep Name Name\n-v Name Name\ngrep Name Name\ninto O O\nthe O O\npipe O O\nbefore O O\nthe O O\nawk Name Name\n\nHow O O\ndo O O\nI O O\nsync O O\nall O O\nthe O O\ncode O O\nin O O\nthe O O\nSVN Name Name\nrepository O O\n( O O\nfor O O\ndevelopment O O\npurposes O O\n) O O\nwith O O\nthe O O\nlive O O\ncode O O\nI O O\nhave O O\nrunning O O\nin O O\n/home/site/public_html/ O O\n, O O\nas O O\nin O O\noverwrite O O\nwhatever O O\nis O O\nin O O\nlive O O\nwith O O\nthe O O\nnew O O\ncode O O\nfrom O O\nthe O O\nSVN Name Name\nrepo O O\n( O O\nassume O O\nthe O O\nSVN Name Name\nrepo O O\nlocation O O\nis O O\nin O O\n/usr/bin/svn/project Name Name\n, O O\njust O O\nfor O O\nthe O O\nsake O O\nof O O\nthe O O\nargument O O\n, O O\neven O O\nthough O O\nit O O\n's O O\nprobably O O\nfar O O\nfrom O O\nthat O O\n) O O\n? O O\n\nJust O O\ndo O O\nan O O\nsvn Name Name\ncheckout Name Name\nor O O\nsvn Name Name\nexport Name Name\nin O O\n/home/site/public_html O O\n. O O\n\nPersonally O O\nI O O\nhave O O\na O O\nchecked O O\nout O O\ncopy O O\non O O\nmy O O\nweb O O\nserver Name Name\n, O O\nand O O\nthe O O\nrepository O O\nis O O\non O O\nthe O O\nsame O O\nmachine O O\n. O O\n\nI O O\nthen O O\nhave O O\na O O\nhook O O\nso O O\nthat O O\non O O\na O O\ncommit O O\n, O O\nI O O\nperform O O\nan O O\nsvn Name Name\nupdate Name Name\nin O O\nthe O O\nlive O O\ndirectory O O\n, O O\nso O O\nthat O O\ncommitting O O\nto O O\nthe O O\nrepository O O\nimmediately O O\nmakes O O\nthe O O\nchange O O\nlive O O\n. O O\n\nI O O\n'm O O\nlooking O O\nfor O O\nsome O O\nway O O\nto O O\neffectively O O\nhide O O\ninherited O O\nmembers O O\n. O O\n\nI O O\nhave O O\na O O\nlibrary O O\nof O O\nclasses O O\nwhich O O\ninherit O O\nfrom O O\ncommon O O\nbase O O\nclasses O O\n. O O\n\nSome O O\nof O O\nthe O O\nmore O O\nrecent O O\ndescendant O O\nclasses O O\ninherit O O\ndependency O O\nproperties O O\nwhich O O\nhave O O\nbecome O O\nvestigial O O\nand O O\ncan O O\nbe O O\na O O\nlittle O O\nconfusing O O\nwhen O O\nusing O O\nIntelliSense Name Name\nor O O\nusing O O\nthe O O\nclasses O O\nin O O\na O O\nvisual Name Name\ndesigner Name Name\n. O O\n\nThese O O\nclasses O O\nare O O\nall O O\ncontrols O O\nthat O O\nare O O\nwritten O O\nto O O\nbe O O\ncompiled O O\nfor O O\neither O O\nWPF Name Name\nor O O\nSilverlight Name Name\n2.0 Name Name\n. O O\n\nI O O\nknow O O\nabout O O\nICustomTypeDescriptor Name Name\nand O O\nICustomPropertyProvider Name Name\n, O O\nbut O O\nI O O\n'm O O\npretty O O\ncertain O O\nthose O O\nca O O\nn't O O\nbe O O\nused O O\nin O O\nSilverlight Name Name\n. O O\n\nIt O O\n's O O\nnot O O\nas O O\nmuch O O\na O O\nfunctional O O\nissue O O\nas O O\na O O\nusability O O\nissue O O\n. O O\n\nWhat O O\nshould O O\nI O O\ndo O O\n? O O\n\nUpdate O O\n\nSome O O\nof O O\nthe O O\nproperties O O\nthat O O\nI O O\nwould O O\nreally O O\nlike O O\nto O O\nhide O O\ncome O O\nfrom O O\nancestors O O\nthat O O\nare O O\nnot O O\nmy O O\nown O O\nand O O\nbecause O O\nof O O\na O O\nspecific O O\ntool O O\nI O O\n'm O O\ndesigning O O\nfor O O\n, O O\nI O O\nca O O\nn't O O\ndo O O\nmember O O\nhiding O O\nwith O O\nthe O O\nnew Name Name\noperator O O\n. O O\n\n( O O\nI O O\nknow O O\n, O O\nit O O\n's O O\nridiculous O O\n) O O\n\nI O O\nthink O O\nyou O O\n're O O\nbest O O\nleast O O\nhackish O O\nway O O\nis O O\nto O O\nconsider O O\ncomposition O O\nas O O\nopposed O O\nto O O\ninheritance O O\n. O O\n\nOr O O\n, O O\nyou O O\ncould O O\ncreate O O\nan O O\ninterface O O\nthat O O\nhas O O\nthe O O\nmembers O O\nyou O O\nwant O O\n, O O\nhave O O\nyour O O\nderived O O\nclass O O\nimplement O O\nthat O O\ninterface O O\n, O O\nand O O\nprogram O O\nagainst O O\nthe O O\ninterface O O\n. O O\n\nI O O\nknow O O\nthere O O\n's O O\nbeen O O\nseveral O O\nanswers O O\nto O O\nthis O O\n, O O\nand O O\nit O O\n's O O\nquite O O\nold O O\nnow O O\n, O O\nbut O O\nthe O O\nsimplest O O\nmethod O O\nto O O\ndo O O\nthis O O\nis O O\njust O O\ndeclare O O\nthem O O\nas O O\nnew Name Name\nprivate Name Name\n. O O\n\nConsider O O\nan O O\nexample O O\nI O O\nam O O\ncurrently O O\nworking O O\non O O\n, O O\nwhere O O\nI O O\nhave O O\nan O O\nAPI Name Name\nthat O O\nmakes O O\navailable O O\nevery O O\nmethod O O\nin O O\na O O\n3rd O O\nparty O O\nDLL Name Name\n. O O\n\nI O O\nhave O O\nto O O\ntake O O\ntheir O O\nmethods O O\n, O O\nbut O O\nI O O\nwant O O\nto O O\nuse O O\na O O\n.Net Name Name\nproperty O O\n, O O\ninstead O O\nof O O\na O O\n\" O O\ngetThisValue Name Name\n\" O O\nand O O\n\" O O\nsetThisValue Name Name\n\" O O\nmethod O O\n. O O\n\nSo O O\n, O O\nI O O\nbuild O O\na O O\nsecond O O\nclass O O\n, O O\ninherit O O\nthe O O\nfirst O O\n, O O\nmake O O\na O O\nproperty O O\nthat O O\nuses O O\nthe O O\nget Name Name\nand O O\nset Name Name\nmethods O O\n, O O\nand O O\nthen O O\noverride O O\nthe O O\noriginal O O\nget Name Name\nand O O\nset Name Name\nmethods O O\nas O O\nprivate O O\n. O O\n\nThey O O\n're O O\nstill O O\navailable O O\nto O O\nanyone O O\nwanting O O\nto O O\nbuild O O\nsomething O O\ndifferent O O\non O O\nthem O O\n, O O\nbut O O\nif O O\nthey O O\njust O O\nwant O O\nto O O\nuse O O\nthe O O\nengine O O\nI O O\n'm O O\nbuilding O O\n, O O\nthen O O\nthey O O\n'll O O\nbe O O\nable O O\nto O O\nuse O O\nproperties O O\ninstead O O\nof O O\nmethods O O\n. O O\n\nUsing O O\nthe O O\ndouble O O\nclass O O\nmethod O O\ngets O O\nrid O O\nof O O\nany O O\nrestrictions O O\non O O\nbeing O O\nunable O O\nto O O\nuse O O\nthe O O\nnew Name Name\ndeclaration O O\nto O O\nhide O O\nthe O O\nmembers O O\n. O O\n\nYou O O\nsimply O O\nca O O\nn't O O\nuse O O\noverride Name Name\nif O O\nthe O O\nmembers O O\nare O O\nmarked O O\nas O O\nvirtual Name Name\n. O O\n\nNow O O\nvalueEnum Name Name\nis O O\navailable O O\nto O O\nboth O O\nclasses O O\n, O O\nbut O O\nonly O O\nthe O O\nproperty O O\nis O O\nvisible O O\nin O O\nthe O O\nAPIUsageClass Name Name\nclass O O\n. O O\n\nThe O O\nAPIClass Name Name\nclass O O\nis O O\nstill O O\navailable O O\nfor O O\npeople O O\nwho O O\nwant O O\nto O O\nextend O O\nthe O O\noriginal O O\nAPI Name Name\nor O O\nuse O O\nit O O\nin O O\na O O\ndifferent O O\nway O O\n, O O\nand O O\nthe O O\nAPIUsageClass Name Name\nis O O\navailable O O\nfor O O\nthose O O\nwho O O\nwant O O\nsomething O O\nmore O O\nsimple O O\n. O O\n\nUltimately O O\n, O O\nwhat O O\nI O O\n'll O O\nbe O O\ndoing O O\nis O O\nmaking O O\nthe O O\nAPIClass Name Name\ninternal O O\n, O O\nand O O\nonly O O\nexpose O O\nmy O O\ninherited O O\nclass O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\ncreate O O\na O O\ntable Name Name\nwith O O\nthe O O\nfollowing O O\n: O O\n\nIt O O\nfails O O\ndue O O\nto O O\ncolumn Name Name\nlength O O\nnot O O\nbeing O O\nlarge O O\nenough O O\n. O O\n\nIt O O\nwould O O\nhelp O O\nif O O\nthe O O\nSQL Name Name\nstatement O O\nwas O O\nsyntactically O O\nvalid O O\nand O O\nif O O\nyou O O\nprovided O O\nthe O O\nexact O O\nerror O O\nmessage O O\n. O O\n\nWhen O O\nreformatted O O\nand O O\nsyntax O O\ncorrected O O\n, O O\nthe O O\nstatement O O\nlooks O O\nlike O O\n: O O\n\nAnd O O\n, O O\nwhen O O\nthat O O\nis O O\nrun O O\non O O\na O O\nsystem O O\nwith O O\n2KB O O\npages O O\n, O O\nthe O O\nerror O O\nmessage O O\nis O O\n: O O\n\nThe O O\nstandard O O\nway O O\nof O O\ngetting O O\na O O\nbrief O O\nexplanation O O\nof O O\nan O O\nerror O O\nmessage O O\nis O O\nfinderr Name Name\n; O O\nit O O\nsays O O\n: O O\n\nThe O O\n' O O\na O O\ntotal O O\nof O O\n120 O O\nbytes O O\n' O O\nshould O O\nbe O O\n' O O\na O O\ntotal O O\nof O O\nat O O\nleast O O\n120 O O\nbytes O O\n' O O\n; O O\nthat O O\nlower-bound O O\napplies O O\nto O O\nInformix Name Name\nSE Name Name\n. O O\n\nIn O O\nIDS Name Name\n( O O\nInformix Name Name\nDynamic Name Name\nServer Name Name\n) O O\n, O O\nthe O O\nlower-bound O O\nis O O\n255 O O\nbytes O O\n, O O\nbut O O\nit O O\nis O O\nbigger O O\nin O O\nmore O O\nrecent O O\nsystems O O\n, O O\nand O O\nalso O O\nbigger O O\nwhen O O\nthe O O\npage O O\nsize O O\nis O O\nbigger O O\n. O O\n\nYou O O\nhave O O\na O O\nvariety O O\nof O O\noptions O O\n. O O\n\nYou O O\ncan O O\nconsider O O\nwhy O O\nyour O O\nnames O O\nneed O O\nto O O\nbe O O\n255 O O\ncharacters O O\neach O O\n- O O\nis O O\nthat O O\nsensible O O\n( O O\nwould O O\n, O O\nsay O O\n, O O\n64 O O\nbe O O\nsufficient O O\n) O O\n? O O\n\nIf O O\nyour O O\nserver Name Name\nversion O O\nis O O\nrecent O O\nenough O O\n( O O\n10.00 Name Name\nor O O\nlater O O\n, O O\nI O O\nbelieve O O\n) O O\n, O O\nyou O O\ncould O O\ncreate O O\nthe O O\ntable Name Name\nin O O\na O O\ndbspace O O\nwith O O\na O O\nlarger O O\npage O O\nsize O O\n. O O\n\nSince O O\nthe O O\nkey O O\nis O O\na O O\nmaximum O O\nof O O\n3*255+(20/2+1) O O\n= O O\n776 O O\nbytes O O\n, O O\nand O O\nthe O O\nrule O O\nof O O\nthumb O O\nis O O\nyou O O\nneed O O\nto O O\nbe O O\nable O O\nto O O\nstore O O\n5 O O\nmaximum-length O O\nkey O O\nvalues O O\n+ O O\nROWID/FRAGID O O\noverhead O O\n( O O\n8 O O\nbytes O O\n) O O\nper O O\npage O O\n, O O\nyou O O\nwould O O\nneed O O\na O O\n4 O O\nKB O O\npage O O\nsize O O\n. O O\n\n( O O\nHad O O\nyou O O\nbeen O O\nrunning O O\non O O\nAIX Name Name\n, O O\nyou O O\nprobably O O\nwould O O\nn't O O\nhave O O\nnoticed O O\nthe O O\nissue O O\n. O O\n) O O\n\nAlso O O\n, O O\nyou O O\nshould O O\nnot O O\nbe O O\nstoring O O\ndate O O\nvalues O O\nin O O\nVARCHAR(255) Name Name\n; O O\nyou O O\nshould O O\nuse O O\nDATE Name Name\nor O O\nperhaps O O\nDATETIME Name Name\nYEAR Name Name\nTO Name Name\nDAY Name Name\n( O O\na O O\nweird O O\nway O O\nof O O\nspelling O O\nDATE Name Name\n- O O\nthough O O\nthe O O\nunderlying O O\nformat O O\nis O O\ndifferent O O\n, O O\nusing O O\n5 O O\nbytes O O\non O O\ndisk Name Name\ninstead O O\nof O O\n4 O O\nfor O O\na O O\nplain O O\nDATE Name Name\n) O O\n, O O\nor O O\nperhaps O O\nDATETIME Name Name\nYEAR Name Name\nTO Name Name\nSECOND Name Name\n( O O\na O O\nfunny O O\nway O O\nof O O\nspelling O O\nTIMESTAMP Name Name\n) O O\n, O O\nor O O\n.. O O\n. O O\n\nThe O O\n' O O\nnum0 Name Name\n, O O\nnum1 Name Name\n, O O\nnum2 Name Name\n' O O\nfields O O\nare O O\nalso O O\ndubious O O\n, O O\ntoo O O\n; O O\nif O O\nthey O O\nare O O\nmeant O O\nto O O\nstore O O\nnumbers O O\n, O O\nuse O O\nNUMERIC Name Name\nor O O\nDECIMAL Name Name\n- O O\n- O O\nDECIMAL(20) Name Name\nin O O\nmost O O\nIDS Name Name\ndatabases O O\nmeans O O\na O O\n20-digit O O\nfloating O O\npoint O O\ndecimal O O\nnumber O O\n. O O\n\nEdited O O\nto O O\nadd O O\n: O O\n\nAnd O O\n, O O\nto O O\nanswer O O\nthe O O\ndirect O O\nquestion O O\n, O O\nVARCHAR Name Name\ncolumns Name Name\ncan O O\nonly O O\nbe O O\nup O O\nto O O\n255 O O\nbytes O O\nlong O O\n; O O\nLVARCHAR Name Name\ncolumns Name Name\ncan O O\nbe O O\nup O O\nto O O\nabout O O\n32 O O\nKB O O\n; O O\nCHAR Name Name\ncolumns Name Name\ncan O O\nbe O O\nup O O\nto O O\n32 O O\nKB O O\n; O O\nTEXT Name Name\ncolumns Name Name\ncan O O\nbe O O\nup O O\nto O O\n2 O O\nGB O O\n, O O\nand O O\nCLOB Name Name\ncolumns Name Name\ncan O O\nbe O O\neven O O\nlarger O O\n. O O\n\nThe O O\ntotal O O\nlength O O\nof O O\na O O\nrow Name Name\nis O O\nlimited O O\nto O O\nabout O O\n32 O O\nKB O O\n( O O\nbut O O\nBYTE Name Name\n, O O\nTEXT Name Name\n, O O\nBLOB Name Name\nand O O\nCLOB Name Name\ncolumns Name Name\ncount O O\nas O O\na O O\nfixed O O\nsize O O\ndescriptor O O\ntowards O O\nthat O O\n32 O O\nKB O O\ntotal O O\n- O O\nthe O O\nactual O O\ndata O O\nis O O\nstored O O\noutside O O\nthe O O\nrow Name Name\n) O O\n. O O\n\nThere O O\nare O O\nsome O O\nversion O O\ndependencies O O\nthat O O\nI O O\n'm O O\nnot O O\nbringing O O\nout O O\n- O O\nif O O\nyou O O\nare O O\nusing O O\nIDS Name Name\n10.00 Name Name\nor O O\nlater O O\n, O O\nthis O O\nis O O\naccurate O O\n. O O\n\nI O O\n've O O\ngot O O\na O O\nstrange O O\nbug O O\nwhereby O O\ntwo O O\nUIButtons Name Name\ninside O O\na O O\nUIView Name Name\n, O O\nwhich O O\nis O O\nin O O\nturn O O\ninside O O\na O O\nUIScrollView Name Name\nview O O\nare O O\nnot O O\nclickable O O\non O O\niOS Name Name\n5 Name Name\n, O O\nbut O O\nwork O O\nperfectly O O\nfine O O\non O O\niOS Name Name\n6 Name Name\n( O O\nscreenshot O O\nshows O O\nscroller Name Name\nand O O\nmap Name Name\nunderneath O O\n) O O\n\nThe O O\nonly O O\nother O O\ndetail O O\nis O O\nthe O O\nscroller Name Name\nview O O\n' O O\nslides O O\nup O O\n' O O\nto O O\nreveal O O\nbuttons Name Name\nwhen O O\na O O\nstation O O\nis O O\nselected O O\n. O O\n\nI O O\n've O O\ntried O O\nselecting O O\nthe O O\nbuttons Name Name\non O O\niOS Name Name\n5 Name Name\n, O O\nand O O\nthey O O\ndo O O\nget O O\nhit O O\n( O O\nvisually O O\n) O O\n, O O\nbut O O\nthe O O\nevent O O\nis O O\nn't O O\nfired O O\n. O O\n\nEdit O O\n: O O\nIf O O\nI O O\ntap O O\nand O O\nhold O O\non O O\nthe O O\nbutton Name Name\nin O O\nthe O O\nsimulator Name Name\n, O O\nthen O O\nmove O O\nthe O O\ncursor Name Name\nup O O\nthe O O\nscreen Name Name\nand O O\nrelease O O\n( O O\ne.g O O\n. O O\nto O O\nthe O O\npart O O\nof O O\nthe O O\nUIView Name Name\nthat O O\nwas O O\nalways O O\nvisible O O\n) O O\n, O O\nthe O O\nevent O O\nfires O O\n. O O\n\nThe O O\nscroll Name Name\nview Name Name\nitself O O\nhas O O\nthe O O\nfollowing O O\nsettings O O\n, O O\nthe O O\nlatter O O\ntwo O O\nhave O O\nonly O O\nbeen O O\nadded O O\nin O O\norder O O\nto O O\ntry O O\nand O O\nmake O O\nthe O O\nbuttons Name Name\nwork O O\non O O\niOS Name Name\n5 Name Name\n( O O\ntried O O\nvarious O O\ncombinations O O\n) O O\n: O O\n\nThe O O\nbutton Name Name\nevents O O\nare O O\nall O O\nwired O O\nup O O\ncorrectly O O\n, O O\nwith O O\nsuitable O O\ntargets O O\netc O O\n: O O\n\nAnd O O\nhandlers O O\n( O O\nhere O O\n's O O\none O O\nas O O\na O O\nsample O O\n) O O\n: O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\ngreat O O\n! O O\n\nFound O O\nthe O O\nculprit O O\n- O O\na O O\nmisconfigured O O\nUITapGestureRecognizer Name Name\non O O\nthe O O\nUIView Name Name\nthe O O\nUIButtons Name Name\nsit O O\non O O\n: O O\n\nSimply O O\nadding O O\nthe O O\nfollowing O O\nafter O O\ninit Name Name\nof O O\n' O O\ntap Name Name\n' O O\nsolves O O\nthe O O\nissue O O\nin O O\niOS Name Name\n5 Name Name\n: O O\n\nI O O\n've O O\nencountered O O\na O O\nvery O O\nstrange O O\nproblem O O\n( O O\nsince O O\nthis O O\nalways O O\nworked O O\nbefore O O\n) O O\nwhen O O\nbuilding O O\na O O\nclient-server O O\nchat O O\nprogram O O\n. O O\n\nThe O O\nserversocket Name Name\naccepts O O\nwithout O O\nany O O\nproblem O O\nthe O O\nincoming O O\nconnection O O\nof O O\nthe O O\nclient Name Name\n, O O\nbut O O\nwhen O O\nI O O\ntry O O\nto O O\nread O O\nfrom O O\nthe O O\nsocket Name Name\n's O O\ninputstream Name Name\nthe O O\nwhole O O\nmethod O O\nblocks O O\nand O O\nonly O O\nreleases O O\nwhen O O\nI O O\nclose O O\nthe O O\nclient Name Name\n's O O\nsocket Name Name\n. O O\n\nI O O\n've O O\neven O O\ntried O O\nit O O\nwith O O\nthe O O\nsample O O\ncode O O\non O O\ndocs.oracle.com Name Name\n, O O\nbut O O\nthe O O\nproblem O O\nremains O O\n. O O\n\nCan O O\nanybody O O\npoint O O\nme O O\nout O O\nthe O O\nerror O O\nI O O\n'm O O\nobviously O O\nnot O O\nseeing O O\n? O O\n\nServer Name Name\ncode O O\n: O O\n\nClient Name Name\ncode O O\n: O O\n\nthe O O\nmethod O O\nreadLine() Name Name\nis O O\nwaiting O O\nfor O O\n\\n Name Name\ncharacter O O\nto O O\nappear O O\nin O O\nthe O O\nstream O O\n( O O\nthe O O\nmethod O O\nblocks O O\nuntil O O\nit O O\nsees O O\nend O O\nline O O\ndelimeter O O\n) O O\n. O O\n\nTry O O\nsending O O\n\" Name Name\ntest Name Name\n\\\\n Name Name\n\" Name Name\nfrom O O\nthe O O\nclient Name Name\nand O O\nsee O O\nwhat O O\nhappens O O\n. O O\n\nAnd O O\nremember O O\nto O O\nflush() Name Name\nthe O O\noutput Name Name\nstream Name Name\non O O\nthe O O\nclient Name Name\nside O O\n\nYou O O\nforgot O O\nto O O\nadd O O\na O O\ntrue O O\nas O O\nthe O O\n2nd O O\nparameter O O\nwhen O O\ncreating O O\nthe O O\nprintwriter Name Name\nprintwriter Name Name\n\nIt O O\nwill O O\nmake O O\nit O O\nflush O O\nautomatically O O\n. O O\n\nIf O O\nyou O O\nlook O O\nat O O\nthe O O\nscreenshot O O\nin O O\nthe O O\nbelow O O\nlink O O\nyou O O\n'll O O\nsee O O\nwhat O O\nI O O\n'm O O\nafter O O\n. O O\n\nI O O\nbasically O O\nwant O O\npeople O O\nto O O\nbe O O\nable O O\nto O O\nclick O O\na O O\nservice O O\ndown O O\nthe O O\nleft O O\nhand O O\nside O O\nand O O\nthen O O\nthe O O\ncontent O O\nloads O O\nin O O\non O O\nthe O O\nright O O\nhand O O\nside O O\n. O O\n\nLike O O\nthis O O\npage O O\nbut O O\ninstead O O\nof O O\nloading O O\nbelow O O\n, O O\nit O O\nloads O O\nto O O\nthe O O\nright O O\n, O O\nand O O\nalso O O\n, O O\nthe O O\nlink O O\nthere O O\nloads O O\nthe O O\ncontent O O\nin O O\nvia O O\na O O\nhtml Name Name\nfile O O\n, O O\nI O O\n'd O O\nlike O O\nto O O\navoid O O\nthis O O\nis O O\npossible O O\n. O O\n\nScreenshot O O\n: O O\n\nDoes O O\nanyone O O\nknow O O\nof O O\na O O\njQuery Name Name\nplugin O O\nor O O\najax Name Name\nthat O O\ncan O O\ndo O O\nthis O O\n? O O\n\nUse O O\njquery Name Name\n's O O\najax Name Name\nfor O O\nthat O O\n. O O\n\nOr O O\nalternatively O O\npreload O O\nall O O\nthe O O\ncontents O O\nand O O\nuse O O\njquery Name Name\nUI O O\n's O O\ntabs Name Name\n\nI O O\nwould O O\nlike O O\nto O O\nuse O O\nImagePlot Name Name\n( O O\nan O O\nImageJ Name Name\nmacro Name Name\n) O O\nto O O\nvisualize O O\nimages Name Name\nin O O\na O O\nfolder O O\n. O O\n\nTo O O\ndo O O\nthis O O\n, O O\nI O O\nhave O O\nto O O\nhave O O\na O O\nspreadsheet Name Name\nthat O O\nI O O\nload O O\ninto O O\nan O O\nImagePlot Name Name\nthat O O\ncontains O O\naverage O O\ncolor O O\nsaturation O O\nor O O\nmedium O O\nbrightness O O\nof O O\neach O O\nimage Name Name\n. O O\n\nIs O O\nit O O\npossible O O\nto O O\nmake O O\nsuch O O\na O O\nspreadsheet Name Name\nin O O\nImageJ Name Name\nor O O\ndo O O\nI O O\nneed O O\nto O O\ndo O O\nit O O\ndifferently O O\n? O O\n\nIds O O\nare O O\nuseful O O\nin O O\nautomation O O\ncontext O O\n. O O\n\nHow O O\nto O O\nset O O\nan O O\nid O O\nto O O\nEditText(Android) Name Name\nwhen O O\nworking O O\nwith O O\nCordova Name Name\n? O O\n\nI O O\ncame O O\nacross O O\nthe O O\nDell Name Name\nStudio Name Name\nOne Name O\n19 Name Name\non O O\nthe O O\nweb O O\nthe O O\nother O O\nday O O\n, O O\nand O O\nwondered O O\nwhat O O\nthe O O\nDev O O\nenvironment O O\nfor O O\nthe O O\nMulti-Touch O O\nwas O O\n? O O\n\nAnyone O O\nout O O\nthere O O\ndeveloping O O\nfor O O\nthis O O\n, O O\nor O O\nknow O O\nwhat O O\nthe O O\nenvironment O O\nis O O\n? O O\n\nI O O\nknow O O\nthat O O\nto O O\ndevelop O O\nfor O O\nthe O O\nHP Name Name\nTouchSmart Name Name\nyou O O\nneed O O\nHP Name Name\n's O O\nown O O\nSDK Name Name\n.... O O\nand O O\nit O O\ndoes O O\nn't O O\nsound O O\ntoo O O\ngood O O\nto O O\nme O O\n( O O\ncheck O O\nout O O\nthis O O\n.NET Name Name\nRocks O O\nepisode O O\non O O\nit O O\n) O O\n\nI O O\nwas O O\nhoping O O\nthe O O\nnew O O\nDell Name Name\nis O O\njust O O\nusing O O\nWindows Name Name\n7 Name Name\nnative O O\ntouch O O\nsupport O O\n... O O\n. O O\n\nIdeally O O\nI O O\n'd O O\nlike O O\nto O O\nsee O O\na O O\nsubset O O\nof O O\nthe O O\nMicrosoft Name Name\nSurface Name Name\nSDK Name Name\nbrought O O\nto O O\ntouch-enabled Name Name\nscreens Name Name\nrunning O O\nWin Name Name\n7 Name Name\n... O O\n. O O\n\nanyone O O\ngot O O\ninsight O O\ninto O O\nwhats O O\nhappening O O\nwith O O\nMulti-Touch O O\non O O\nWin Name Name\n7 Name Name\nfrom O O\na O O\ndevelopment O O\nperspective O O\n? O O\n\nWhile O O\nthis O O\nmay O O\nnot O O\napply O O\nto O O\nthe O O\nDell Name Name\nStudio Name Name\nOne Name O\n19 Name Name\nto O O\nanswer O O\nyour O O\nquestion O O\nat O O\nthe O O\nend O O\n, O O\n\" O O\nanyone O O\ngot O O\ninsight O O\ninto O O\nwhats O O\nhappening O O\nwith O O\nMulti-Touch O O\non O O\nWin Name Name\n7 Name Name\nfrom O O\na O O\ndevelopment O O\nperspective O O\n? O O\n\" O O\n\nI O O\ncan O O\nsay O O\nthat O O\nit O O\nseems O O\nthat O O\nout O O\nof O O\nthe O O\nbox O O\nthere O O\nwill O O\nbe O O\na O O\nmulti-touch Name Name\nAPI Name Name\n, O O\nwhich O O\nis O O\nwhat O O\nyou O O\nshould O O\nfind O O\navailable O O\nin O O\nthe O O\nWin Name Name\n7 Name Name\nRC Name Name\nSDK Name Name\nlinked O O\nin O O\nTim O O\nJ O O\n's O O\nanswer O O\n. O O\n\nIn O O\naddition O O\nWPF Name Name\n4.0 Name Name\nwill O O\ninclude O O\nmulti-touch Name Name\nAPIs Name Name\nand O O\ncontrols O O\nwhich O O\nit O O\nwould O O\nseem O O\nthat O O\nthe O O\nSurface Name Name\nSDK Name Name\n2.0 Name Name\nwill O O\nextend/build O O\nupon O O\n. O O\n\nIf O O\nyou O O\ngo O O\nto O O\nslide O O\n7 O O\nof O O\nthe O O\nfollowing O O\npresentation O O\nyou O O\n'll O O\nsee O O\nhow O O\nthing O O\nstack O O\ntogether O O\n. O O\n\nFunny O O\nyou O O\nshould O O\nask O O\nthis O O\nI O O\nam O O\njust O O\nstarting O O\nwith O O\nthis O O\nstuff O O\nthis O O\nweek O O\n. O O\n\nI O O\nhave O O\nthe O O\nDell Name Name\nXT2 Name Name\nwith O O\nWindows Name Name\n7 Name Name\n64bit O O\n( O O\nruns O O\nlike O O\na O O\ndream O O\n) O O\n. O O\n\nWhat O O\nyou O O\nneed O O\nto O O\nhave O O\n.. O O\n. O O\n\nThe O O\nWindows Name Name\n7 Name Name\nRC Name Name\nSDK Name Name\n\nand O O\nyou O O\nalso O O\nmust O O\nhave O O\nthe O O\n\nNTrig Name Name\ndevice Name Name\ndrivers Name Name\n\nWhat O O\n's O O\nnice O O\nto O O\nhave O O\nis O O\nthe O O\nNTrig Name Name\nSDK Name Name\n\nThere O O\nhave O O\nbeen O O\nsome O O\nchanges O O\nbetween O O\nthe O O\nWindows Name Name\n7 Name Name\nBeta Name Name\nand O O\nthe O O\nRC Name Name\n, O O\nand O O\nthe O O\nsamples O O\nhave O O\nn't O O\nbeen O O\nupdated O O\nyet O O\n, O O\nbut O O\nits O O\nreasonably O O\nsimple O O\nto O O\nwork O O\nout O O\n. O O\n\nHave O O\nfun O O\n, O O\nI O O\nam O O\n. O O\n\nHello O O\nI O O\nhave O O\nset O O\nsome O O\ntext O O\nin O O\na O O\ntextview Name Name\n. O O\n\nThen O O\nI O O\nneed O O\nto O O\nconvert O O\nthe O O\ntext O O\nof O O\nthe O O\nTextView Name Name\ninto O O\nSpannble Name Name\n. O O\n\nSo O O\nI O O\ndid O O\nthis O O\nlike O O\n: O O\n\nI O O\nneed O O\nto O O\nconvert O O\nit O O\nSpannable Name Name\nbecause O O\nI O O\npassed O O\nthe O O\nTextView Name Name\ninto O O\na O O\nfunction O O\n: O O\n\nThis O O\nshows O O\nno O O\nerror/warning O O\n. O O\n\nBut O O\nthrowing O O\na O O\nRuntime O O\nError O O\n: O O\n\nHow O O\ncan O O\nI O O\nconvert O O\nthe O O\nSpannedStringt/text Name Name\nof O O\nthe O O\ntextview Name Name\ninto O O\nSpannble Name Name\n? O O\n\nOr O O\ncan O O\nI O O\ndo O O\nthe O O\nsame O O\ntask O O\nwith O O\nSpannedString Name Name\ninside O O\nthe O O\nfunction O O\n? O O\n\nIf O O\nyou O O\nspecify O O\nBufferType.SPANNABLE Name Name\nwhen O O\nsetting O O\nthe O O\nTextView Name Name\n's O O\ntext O O\n, O O\nthen O O\nwhen O O\ngetting O O\nthe O O\ntext O O\nyou O O\ncan O O\ncast O O\nit O O\nto O O\nSpannable Name Name\n\nnew Name Name\nSpannableString(textView.getText()) Name Name\nshould O O\nwork O O\n. O O\n\nSorry O O\n, O O\nbut O O\nremoveSpan() Name Name\nand O O\nsetSpan() Name Name\nare O O\nmethods O O\non O O\nthe O O\nSpannable Name Name\ninterface O O\n, O O\nand O O\nSpannedString Name Name\ndoes O O\nnot O O\nimplement O O\nSpannable Name Name\n. O O\n\nIn O O\nSafari Name Name\non O O\niOS Name Name\nif O O\nI O O\nopen O O\nmy O O\nlogin O O\npage Name Name\nit O O\nshows O O\n\" O O\nScan O O\nCredit O O\nCard O O\n\" O O\n, O O\nhow O O\ncan O O\nI O O\nhide O O\nthis O O\nas O O\nthis O O\nis O O\nnot O O\nrelevant O O\nfor O O\nthe O O\nusername O O\nor O O\npassword O O\ntext Name Name\nbox Name Name\n. O O\n\nI O O\ntried O O\nto O O\nfind O O\nanswer O O\nhere O O\nHow O O\nto O O\ndisable O O\n\" O O\nScan O O\nCredit O O\nCard O O\n\" O O\nfeature O O\non O O\niOS Name Name\n8 Name Name\nSafari Name Name\n? O O\n\nbut O O\nno O O\none O O\nhas O O\nreplied O O\nto O O\nit O O\nyet O O\n. O O\n\nImage Name Name\nis O O\nshown O O\nbelow O O\nas O O\nreference O O\n: O O\n\nI O O\n'm O O\ntrying O O\nto O O\nsend O O\ntwo O O\nversions O O\nof O O\nthe O O\nsame O O\nemail O O\nto O O\ntwo O O\nrecipients O O\nusing O O\nphpMailer Name Name\n\nDepending O O\non O O\nthe O O\nemail O O\nI O O\nneed O O\nto O O\nsend O O\none O O\nversion O O\nor O O\nanother O O\n. O O\n\nAt O O\nthe O O\nmoment O O\nI O O\n'm O O\nable O O\nto O O\nsend O O\nonly O O\nthe O O\nsame O O\nversion O O\nto O O\nboth O O\nemail O O\naddress O O\n\nI O O\nthink O O\nyou O O\nwant O O\nto O O\nseach O O\nthe O O\n$maileremail Name Name\ninside O O\n$add Name Name\nand O O\nsend O O\nthe O O\ndesired O O\nemail O O\n. O O\n\nEDITED O O\n: O O\n\nI O O\nmisunderstood O O\nthe O O\nquestion O O\n. O O\n\nBrian O O\nis O O\nright O O\n. O O\n\nIf O O\nyou O O\n're O O\nlooking O O\nto O O\ndo O O\nall O O\nthe O O\nsetup O O\nonce O O\nfor O O\nminimal O O\nrepetition O O\n, O O\nsimply O O\nclone O O\nyour O O\n$mail Name Name\nobject O O\nin O O\nyour O O\nforeach($add) Name Name\nloop O O\n: O O\n\nThis O O\ncreates O O\na O O\nseparate O O\nclone O O\nof O O\nyour O O\n$mail Name Name\nobject O O\nfor O O\nevery O O\nloop O O\n, O O\nallowing O O\nyou O O\nto O O\nadd O O\ndifferent O O\nemail O O\nbodies O O\n, O O\nsubjects O O\n, O O\netc O O\n. O O\n\nwithout O O\nhaving O O\nto O O\nrewrite O O\nall O O\nconnection O O\nsettings O O\n. O O\n\nCan O O\nsomebody O O\nhelp O O\nplease O O\n. O O\n\nI O O\nhav O O\nn't O O\nany O O\nexperience O O\nin O O\nAngular Name Name\n1 Name Name\nto O O\n2 Name Name\nmigration O O\n. O O\n\nI O O\nhave O O\nthis O O\ncode O O\n\nand O O\nafter O O\nfirst O O\nappers O O\nthis O O\nerror O O\n: O O\n\nError O O\n: O O\n[ O O\n$injector:nomod O O\n] O O\nModule O O\n' O O\napp O O\n' O O\nis O O\nnot O O\navailable O O\n! O O\n\nYou O O\neither O O\nmisspelled O O\nthe O O\nmodule O O\nname O O\nor O O\nforgot O O\nto O O\nload O O\nit O O\n. O O\n\nIf O O\nregistering O O\na O O\nmodule O O\nensure O O\nthat O O\nyou O O\nspecify O O\nthe O O\ndependencies O O\nas O O\nthe O O\nsecond O O\nargument O O\n. O O\n\nAnd O O\nafter O O\nsecond O O\nvariany O O\nthis O O\none O O\n: O O\n\nError O O\n: O O\nTypeError O O\n: O O\nangular.module O O\nis O O\nnot O O\na O O\nfunction O O\n\napp.module.ts Name Name\n\npackage.json Name Name\n\nI O O\nhave O O\na O O\nfree O O\nopen O O\nsource O O\napp O O\nthat O O\nalready O O\nsupports O O\nmultiple O O\nlanguages O O\n. O O\n\nTo O O\ntest O O\nthe O O\nlanguages O O\nI O O\nswitch O O\nthe O O\nphone Name Name\n's O O\nsetting O O\n| O O\nlanguage O O\nand O O\neverything O O\nworks O O\njust O O\nfine O O\n. O O\n\nOnce O O\nin O O\na O O\nwhile O O\nI O O\nget O O\nrequests O O\nfrom O O\npeople O O\nthat O O\nwant O O\nto O O\ntranslate O O\nthe O O\napp O O\nto O O\na O O\nlanguage O O\nthat O O\nis O O\nnot O O\nlisted O O\non O O\nmy O O\nown O O\ndevice O O\n( O O\nCM Name Name\n7.1 Name Name\nor O O\nUS Name Name\nNexus Name Name\n7 Name Name\n) O O\n. O O\n\nFor O O\nexample O O\n, O O\nthe O O\nlast O O\none O O\nwas O O\nfor O O\nAlbanian O O\n. O O\n\nI O O\npresume O O\nthat O O\nthe O O\nlanguage O O\ncode O O\nis O O\n' Name Name\nsq Name Name\n' Name Name\nso O O\nI O O\ncan O O\ncreate O O\nres/values Name Name\n-sq Name Name\nwith O O\nthe O O\ntranslation O O\nthey O O\nprovide O O\nbut O O\nhow O O\ncan O O\nI O O\ntest O O\nit O O\non O O\nmy O O\nown O O\nphone Name Name\n? O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\nforce O O\nmy O O\napp O O\nto O O\nuse O O\na O O\nspecific O O\nlanguage O O\ncode O O\n( O O\ne.g O O\n. O O\n' Name Name\nsq' Name Name\n) O O\n, O O\neven O O\nif O O\nit O O\nis O O\nnot O O\nlisted O O\nin O O\nmy O O\nphone Name Name\n's O O\nsettings O O\n? O O\n\nTo O O\nclarify O O\n, O O\nI O O\ndo O O\nn't O O\nwant O O\nto O O\nreinvent O O\nlanguage O O\nswitching O O\n, O O\njust O O\nto O O\ninfluence O O\nthe O O\nresource O O\nselector O O\nto O O\nuse O O\nres/values Name Name\n-sq Name Name\n. O O\n\nIf O O\nit O O\nmatters O O\n, O O\nthe O O\napp O O\nuses O O\nandroid:minSdkVersion Name Name\n= Name Name\n\" Name Name\n8 Name Name\n\" Name Name\n. O O\n\nYour O O\nphone Name Name\nvendor O O\nchose O O\nnot O O\nto O O\ninclude O O\nthe O O\nAlbanian O O\nlocale O O\n, O O\nso O O\nunfortunately O O\nyou O O\nwo O O\nn't O O\nbe O O\nable O O\nto O O\nchoose O O\nit O O\n. O O\n\nThis O O\nis O O\nusually O O\nvendor O O\nspecific O O\nand O O\ndepends O O\ngreatly O O\non O O\nyour O O\nlocation O O\n. O O\n\nFor O O\nexample O O\n, O O\nSamsung Name Name\nwill O O\nnot O O\ninclude O O\nthe O O\nAlbanian O O\nlocale O O\nin O O\nan O O\nAndroid Name Name\nbuild O O\nused O O\nfor O O\nphones Name Name\nto O O\nbe O O\ndistributed O O\nin O O\nthe O O\nUS O O\n. O O\n\nAs O O\nfor O O\nforcing O O\nyour O O\napp O O\ndirectly O O\nto O O\nchoose O O\none O O\nof O O\nyour O O\nlocale O O\n's O O\n, O O\nit O O\nis O O\nnot O O\ndoable O O\nafaik O O\n. O O\n\nThe O O\nbest O O\nyou O O\ncould O O\ndo O O\n( O O\nin O O\ncase O O\nyou O O\nwant O O\nto O O\ntest O O\nyour O O\nresources O O\n) O O\nwould O O\nbe O O\nto O O\nrecreate O O\nthe O O\nproject O O\nand O O\nremove O O\nall O O\nthe O O\nother O O\nresources O O\nand O O\nleave O O\nthe O O\nAlbanian-specific O O\nones O O\n. O O\n\nThe O O\nsystem O O\nwill O O\n\" O O\nbe O O\nforced O O\n\" O O\nuse O O\nthem O O\n. O O\n\nWe O O\nhave O O\na O O\nwebsite O O\nusing O O\nbootstrap Name Name\n, O O\ncss Name Name\n, O O\nand O O\nhtml Name Name\n. O O\n\nwe O O\nhave O O\na O O\npiece O O\nof O O\ntext Name Name\nthat O O\nwe O O\nwant O O\nto O O\ndisappear O O\nwhen O O\non O O\nmobile Name Name\n. O O\n\nThere O O\nare O O\nslightly O O\ndifferent O O\nclasses O O\nyou O O\nneed O O\nto O O\nadd O O\ndepending O O\non O O\nthe O O\nversion O O\nof O O\nBootstrap Name Name\n, O O\ne.g O O\n. O O\nhidden-sm-down Name Name\nfor O O\nv4-alpha Name Name\n( O O\nhttps://v4-alpha.getbootstrap.com/layout/responsive-utilities/ O O\n) O O\n\n( O O\nFirst O O\nof O O\nall O O\nim O O\nnot O O\na O O\nnative O O\nenglish O O\nspeaker O O\nso O O\nmy O O\nenglish O O\nis O O\nreally O O\nbad O O\n) O O\n\nI O O\n've O O\nbeen O O\nworking O O\non O O\na O O\nandroid Name Name\nAPP O O\n. O O\n\nBasically O O\nI O O\nneed O O\nto O O\nconnect O O\nto O O\na O O\nSQL Name Name\nServer Name Name\n2012 Name Name\nexpress O O\ndatabase O O\n. O O\n\nAll O O\nworks O O\nfine O O\nuntil O O\nI O O\nuse O O\na O O\ndifferent O O\nAPI Name Name\nof O O\n23 Name Name\n. O O\n\nI O O\n've O O\nfound O O\nthis O O\nerror O O\non O O\nother O O\ntopics O O\nbut O O\nno O O\nanswer O O\nworked O O\nfor O O\nme O O\n. O O\n\nThis O O\nis O O\nthe O O\nerror O O\n: O O\n\nI O O\n've O O\nbeen O O\ndoing O O\nsome O O\nresearch O O\non O O\nthe O O\ncode O O\nand O O\nthe O O\nerror O O\nlog O O\nand O O\nit O O\nseems O O\nto O O\nbe O O\nan O O\nerror O O\nwith O O\nthe O O\ndatabase O O\nconnection O O\n, O O\nbut O O\ni O O\ndont O O\nreally O O\nfound O O\nout O O\nwhat O O\ncan O O\nbe O O\n. O O\n\nThe O O\nthing O O\nis O O\n, O O\nthe O O\nAPP O O\nworks O O\ntotally O O\nfine O O\non O O\nAPI Name Name\n23 Name Name\n. O O\n\nBut O O\nwhen O O\nI O O\nuse O O\nan O O\nAPI Name Name\n17 Name Name\nemulator Name Name\ndevice O O\nthis O O\nerror O O\njust O O\nappears O O\n. O O\n\nI O O\nstarted O O\nthe O O\nproject O O\non O O\nAPI Name Name\n17 Name Name\n. O O\n\nI O O\n've O O\ntried O O\nto O O\ncreate O O\nan O O\nAPI Name Name\n10 Name Name\nproject O O\nand O O\nit O O\ndid O O\nn't O O\nwork O O\n. O O\n\nThis O O\nis O O\nthe O O\nlayout O O\n: O O\n\nThis O O\nis O O\nthe O O\ndatabase Name Name\nconnection Name Name\nclass O O\n: O O\n\nAnd O O\nhere O O\nis O O\nthe O O\nmain O O\ncode O O\n: O O\n\nIm O O\nusing O O\nthe O O\nlast O O\nversion O O\nof O O\njtds.jdbe Name Name\ndriver O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\narrange O O\na O O\ngrid Name Name\nlayout O O\n. O O\n\nThe O O\nlast O O\ndiv Name Name\nmoves O O\nwhen O O\nzooming O O\nout O O\n. O O\n\nAlso O O\na O O\nwhite Name Name\nline Name Name\nappear O O\nbetween O O\nthe O O\nright O O\nside O O\npanel Name Name\nand O O\nlast O O\ncontent O O\ndiv Name Name\nwhen O O\nI O O\nzoom O O\nin O O\n. O O\n\nAm O O\nI O O\ndoing O O\nsomething O O\ncrucially O O\nwrong O O\nwith O O\nmy O O\nCSS Name Name\nand O O\nlayout O O\n? O O\n\nCheers O O\n, O O\n\nOwain O O\n\nIf O O\nI O O\nunderstood O O\nyour O O\nquestion O O\ncorrectly O O\n, O O\nthis O O\nis O O\nwhat O O\nyour O O\noutput O O\nshould O O\nbe O O\n. O O\n\nThe O O\nCSS Name Name\nshall O O\nbe O O\n\nalso O O\n, O O\nremove O O\nthe O O\nwidth Name Name\nattribute/property O O\nfrom O O\n.item1 Name Name\nand O O\n.item2 Name Name\n. O O\n\nAdding O O\nwidth Name Name\nto O O\ntwo-item-column Name Name\nwould O O\nfix O O\nit O O\n. O O\n\nAnd O O\nthere O O\nis O O\nno O O\nneed O O\nto O O\nmake O O\nits O O\nposition O O\nrelative O O\nif O O\nit O O\nis O O\nnot O O\nfor O O\nother O O\nparts O O\nof O O\nyour O O\nlayout O O\n: O O\n\nI O O\nwant O O\nto O O\nput O O\nsome O O\nWaypoints Name Name\nin O O\na O O\nMap Name Name\n. O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nI O O\nam O O\nspecifying O O\nthe O O\ntravelMode Name Name\nbut O O\nthe O O\nWaypoints Name Name\ndo O O\nnot O O\nuse O O\nmy O O\ntravel Name Name\nmode Name Name\n, O O\napparently O O\nwaypoints Name Name\nused O O\n\" Name Name\ndriving Name Name\n\" Name Name\ntravel Name Name\nmode Name Name\n, O O\nand O O\nI O O\nwant O O\nto O O\nuse O O\n\" Name Name\nwalking Name Name\n\" Name Name\n. O O\n\nAs O O\nyou O O\ncan O O\nsee O O\n, O O\nthe O O\nroute O O\nis O O\nnot O O\nthe O O\nbest O O\nroute O O\nto O O\nwalk O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n: O O\n\nAlso O O\nevery O O\nwaypoint Name Name\nhave O O\n: O O\nstopover Name Name\n: Name Name\ntrue Name Name\n. O O\n\nAnd O O\nidea O O\n? O O\n\nThank O O\nyou O O\nin O O\nadvance O O\n! O O\n\nIn O O\ngmaps Name Name\n, O O\nby O O\ndefault O O\n, O O\nthe O O\ntravelMode Name Name\nis O O\nwalking Name Name\n, O O\nand O O\neach O O\nwaypoint Name Name\nmust O O\nhave O O\nits O O\nlocation Name Name\nas O O\nan O O\ninstance O O\nof O O\ngoogle.maps.LatLng Name Name\n, O O\nnot O O\nan O O\narray Name Name\nwith O O\nlatitude O O\nand O O\nlongitude O O\n( O O\nlike O O\norigin Name Name\nor O O\ndestination Name Name\n) O O\n. O O\n\nAlso O O\n, O O\naccording O O\nthe O O\nGoogle Name Name\nMaps Name Name\nAPI Name Name\nreference O O\n: O O\n\nThe O O\nstring Name Name\n' Name Name\nwalking Name Name\n' Name Name\nis O O\nnot O O\na O O\nTravelMode Name Name\n\nI O O\nhave O O\nthis O O\nexample O O\n: O O\n\nIt O O\nworks O O\nfine O O\nand O O\nthe O O\ninput Name Name\nboxes Name Name\nspan O O\n2 Name Name\n, O O\n3 Name Name\n, O O\nand O O\n4 Name Name\ncolumns Name Name\n. O O\n\nHowever O O\n, O O\nIf O O\nI O O\nchange O O\nthe O O\ncolumn Name Name\nwidths O O\nto O O\n: O O\n\nThe O O\ncolumn Name Name\nwidths O O\nare O O\nnot O O\nbehaving O O\nas O O\nexpected O O\n. O O\n\nThe O O\ncol-lg-6 Name Name\ninput Name Name\nbox Name Name\nis O O\nnot O O\nexpanding O O\n6 Name Name\ncolumns Name Name\nand O O\nnothing O O\nseems O O\nto O O\nbe O O\nexpanding O O\npast O O\n4 Name Name\ncolumns Name Name\n. O O\n\nIs O O\nsomething O O\nprohibiting O O\nthe O O\ncolumn Name Name\nfrom O O\nbeing O O\nexpanded O O\npast O O\na O O\nwidth O O\nof O O\n4 Name Name\nby O O\ndefault O O\n? O O\n\nNot O O\nsure O O\nwhat O O\ncould O O\nbe O O\ngoing O O\non O O\nhere O O\n. O O\n\nJust O O\nfigured O O\nout O O\nwhat O O\nis O O\ngoing O O\non O O\n. O O\n\nThe O O\ndefault O O\nMVC Name Name\nproject O O\ntemplate O O\ncreates O O\na O O\n_ViewStart.cshtml Name Name\nthat O O\nreferences O O\na O O\n_Layout.cshtml Name Name\n. O O\n\nIn O O\norder O O\nto O O\navoid O O\nthe O O\ndefault O O\nlayout O O\ncreated O O\nfrom O O\nViewStart Name Name\nI O O\nadded O O\n: O O\n\n} Name Name\n\nRecently O O\n, O O\nI O O\ngot O O\na O O\nmission O O\nto O O\nset O O\nup O O\nan O O\nhttps O O\nserver Name Name\nwith O O\ntomcat Name Name\n, O O\nwith O O\nbidirectional O O\nauthentication O O\n. O O\n\nI O O\nhave O O\nto O O\nwrite O O\nthe O O\ncert O O\ninto O O\nthe O O\ntrustKeyStoreFile Name Name\n. O O\n\nBut O O\nthe O O\nuser O O\nstill O O\ncannot O O\nvisit O O\nthe O O\nwebsite O O\nwithout O O\nrestarting O O\ntomcat Name Name\n. O O\n\nI O O\nthink O O\nit O O\nis O O\nbecause O O\ntomcat Name Name\nreads O O\nthe O O\nfile O O\nwhen O O\nit O O\nstarts O O\n. O O\n\nSo O O\neven O O\nif O O\nI O O\nwrite O O\nthe O O\ncert O O\ninto O O\nthe O O\ntrustKeyStoreFile Name Name\n, O O\nthe O O\ncert O O\nis O O\nstill O O\nnot O O\ntrusted O O\n. O O\n\nI O O\ncannot O O\nrestart O O\nthe O O\nserver Name Name\nevery O O\ntime O O\nthere O O\nis O O\na O O\nnew O O\nuser O O\n, O O\nso O O\nhow O O\ncan O O\nI O O\nlet O O\nthe O O\nserver Name Name\nreread O O\nthe O O\nfile O O\nwhen O O\nit O O\nis O O\nchanged O O\n? O O\n\nAs O O\nthis O O\nquestion O O\nis O O\nclosed O O\n( O O\nwhere O O\nI O O\nintended O O\nto O O\nanswer O O\nfirst O O\n) O O\nI O O\n'm O O\nopening O O\nthis O O\none O O\n. O O\n\nOn O O\nsome O O\nmachines O O\nit O O\nis O O\nforbidden O O\nto O O\ninstall/download O O\nbinaries Name Name\nso O O\nI O O\nwant O O\nto O O\nknow O O\nhow O O\ncan O O\nI O O\ncheck O O\nif O O\na O O\nport Name Name\non O O\na O O\nremote O O\nmachine O O\nis O O\nopen O O\nusing O O\nonly O O\nnative O O\nwindows Name Name\nscript O O\ncapabilities O O\n. O O\n\nUpsettingly O O\n, O O\nWindows Name Name\ndoes O O\nnot O O\noffer O O\nsimple O O\ntools O O\nto O O\ncheck O O\nwhether O O\nport Name Name\nis O O\nopen O O\non O O\na O O\nremote O O\nserver Name Name\n. O O\n\nOne O O\noption O O\nis O O\ntelnet Name Name\nbut O O\nit O O\ncannot O O\nbe O O\nscripted O O\nas O O\nit O O\ncloses O O\nwhen O O\nits O O\noutput O O\nis O O\nredirected O O\nor O O\ncaptured O O\n. O O\n\nOnce O O\nupon O O\na O O\ntime O O\nthere O O\nwas O O\na O O\nMSWinsock.Winsock.1 Name Name\nCOM O O\nobject O O\ninstalled O O\non O O\nWindows Name Name\nmachines O O\nthat O O\ncould O O\nbe O O\nused O O\nin O O\na O O\nscript O O\n, O O\nbut O O\nno O O\nmore O O\n. O O\n\nPortQry Name Name\nand O O\nPsPing Name Name\nare O O\na O O\nwonderful O O\ntools O O\nbut O O\nyou O O\nstill O O\nhave O O\nto O O\ndownload O O\nthem O O\n( O O\ndespite O O\nit O O\nbeing O O\nprovided O O\nby O O\nMicrosoft Name Name\n) O O\n. O O\n\nSo O O\nthe O O\neasiest O O\nway O O\nis O O\nto O O\nrely O O\non O O\nPowerShell Name Name\n. O O\n\nHere O O\nis O O\nthe O O\ncode O O\nfor O O\na O O\nsimple O O\n.bat Name Name\nscript O O\n, O O\ninternally O O\nusing O O\nPowershell Name Name\nto O O\nget O O\nthe O O\njob O O\ndone O O\n: O O\n\nSome O O\nmachines O O\nhave O O\n.NET Name Name\nframework O O\nwithout O O\nPowerShell Name Name\ninstalled O O\nso O O\nin O O\nthis O O\ncase O O\nC# Name Name\ncode O O\ncan O O\nbe O O\nembedded O O\ninto O O\na O O\nbatch Name Name\nscript Name Name\nusing O O\nmsbuild Name Name\n: O O\n\nAs O O\nfor O O\nthe O O\nmachines O O\nwithout O O\n.NET Name Name\nframework O O\nI O O\ndo O O\nn't O O\nknow O O\nany O O\nnative O O\nmethod O O\nto O O\ncheck O O\nremote O O\nports Name Name\n. O O\n\nIf O O\nyou O O\nonly O O\nwant O O\nto O O\ncheck O O\nTCP O O\nports Name Name\nyou O O\ncan O O\nuse O O\nTest-NetConnection Name Name\n. O O\n\nIf O O\noffers O O\na O O\n-Port Name Name\nparameter O O\nto O O\ndefine O O\nthe O O\nTCP O O\nport Name Name\n. O O\n\nI O O\nam O O\nnew O O\nto O O\nPHP Name Name\nand O O\nwanted O O\nto O O\nmake O O\nsure O O\n. O O\n\nIf O O\ni O O\nuse O O\nmysql_real_escape_string Name Name\nfor O O\nuser O O\ngenerated O O\ninput O O\n( O O\nvariables O O\n) O O\n, O O\nthe O O\nquery O O\nwo O O\nn't O O\nbe O O\nhacked O O\n? O O\n\nSample O O\nscript O O\n: O O\n\nDo O O\nn't O O\nuse O O\nstraight O O\nmysql Name Name\n. O O\n\nUse O O\nthe O O\nmysqli Name Name\n( O O\nnotice O O\nthe O O\ni) O O\nor O O\nPDO Name Name\nlibrary O O\nand O O\nuse O O\nprepared O O\nstatements O O\n. O O\n\nUsing O O\nprepared O O\nstatements O O\nis O O\nmore O O\nsecure O O\nthan O O\nusing O O\nstraight O O\nqueries O O\nand O O\nincluding O O\nthe O O\nvariable O O\nin O O\nthe O O\nquery O O\nstring Name Name\n. O O\n\nAccording O O\nto O O\nthe O O\nPHP Name Name\ndocumentation O O\n, O O\nmysql Name Name\nwill O O\nbe O O\ndeprecated O O\n. O O\n\nIt O O\nis O O\nno O O\nlonger O O\nunderdevelopment O O\nand O O\nthe O O\nmysqli Name Name\nand O O\nPDO Name Name\nextensions O O\nshould O O\nbe O O\nused O O\ninstead O O\n. O O\n\nYou O O\n're O O\npretty O O\nsafe O O\nif O O\nyour O O\nusing O O\nboth O O\nquotes O O\nand O O\nmysql_real_escape_string Name Name\n. O O\n\nYou O O\nmay O O\nwant O O\nto O O\nlook O O\nat O O\nPDO Name Name\nor O O\nat O O\nleast O O\nmysqli Name Name\nfor O O\nother O O\nreasons O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\ncreate O O\na O O\ncustom O O\nclass O O\nthat O O\ncreates O O\na O O\nbutton Name Name\n. O O\n\nI O O\n'm O O\nhaving O O\ntrouble O O\nadding O O\na O O\ntarget O O\nto O O\nthat O O\nbutton Name Name\ninside O O\nit O O\n's O O\nclass O O\n. O O\n\nThis O O\nis O O\nmy O O\ncode O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nI O O\nca O O\nn't O O\nconnect O O\nan O O\naction O O\non O O\nbutton Name Name\nclick O O\n. O O\n\nThis O O\nworks O O\nif O O\nit O O\n's O O\nused O O\noutside O O\nmy O O\nclass O O\nbut O O\nnot O O\ninside O O\n. O O\n\nUsage O O\nof O O\nthe O O\nclass O O\n\nNothing O O\nis O O\nholding O O\na O O\nstrong O O\nreference O O\nto O O\nyour O O\nSelectButton Name Name\ninstance O O\n, O O\nso O O\nas O O\nsoon O O\nas O O\nthe O O\nfunction O O\nthat O O\ncreates O O\ntest Name Name\nexits O O\n, O O\nthat O O\ninstance O O\nis O O\nreleased O O\n. O O\n\nThe O O\nbutton Name Name\nitself O O\nis O O\nretained O O\nbecause O O\nyou O O\nhave O O\nadded O O\nit O O\nas O O\na O O\nsubview Name Name\n. O O\n\nTherefore O O\n, O O\nit O O\nis O O\nstill O O\nvisible O O\nbut O O\nthere O O\nis O O\nno O O\nlonger O O\nan O O\nobject O O\nto O O\nrespond O O\nto O O\nthe O O\naction O O\n. O O\n\nYou O O\neither O O\nneed O O\nto O O\nuse O O\nan O O\ninstance O O\nproperty O O\nrather O O\nthan O O\na O O\nlocal O O\nvariable O O\nfor O O\ntest Name Name\n, O O\nor O O\n, O O\npreferably O O\nhave O O\nSelectButton Name Name\ninherit O O\ndirectly O O\nfrom O O\nUIButton Name Name\n\nWhen O O\nsomeone O O\ntaps O O\nthe O O\nbutton Name Name\n, O O\nusually O O\nyou O O\nwant O O\nsomething O O\nto O O\nhappen O O\nsomewhere O O\nelse O O\nin O O\nyour O O\napp O O\n( O O\nlike O O\nin O O\none O O\nof O O\nyour O O\nview O O\ncontrollers O O\nor O O\nin O O\nsome O O\nother O O\nUI O O\nelement O O\n) O O\n. O O\n\nThe O O\nway O O\nthe O O\nIBAction Name Name\nis O O\nset O O\nup O O\nright O O\nnow O O\n, O O\nyou O O\nhave O O\nit O O\nso O O\nthat O O\nsomething O O\nwill O O\ntrigger O O\nor O O\nhappen O O\nwithin O O\nthe O O\nbutton Name Name\nitself O O\nwhen O O\nsomeone O O\ntaps O O\non O O\nit O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\nhandle O O\na O O\nbutton Name Name\ntap O O\nprogrammatically O O\ninstead O O\nof O O\nctrl O O\ndragging O O\nfrom O O\nthe O O\nbutton Name Name\ninto O O\nthe O O\nview O O\ncontroller O O\n, O O\nyou O O\ncan O O\ndo O O\nit O O\nthis O O\nway O O\nif O O\nyou O O\nprefer O O\n. O O\n\nFirst O O\n, O O\nadd O O\nthis O O\ncode O O\ninto O O\nthe O O\nview O O\ncontroller O O\n: O O\n\nThen O O\nyou O O\ncan O O\neither O O\nadd O O\nthe O O\nselector O O\nprogrammatically O O\nby O O\nadding O O\nthis O O\nmethod O O\ninto O O\nyour O O\nview O O\ncontroller O O\n: O O\n\nOr O O\nby O O\ngoing O O\nto O O\nthe O O\nconnections O O\ninspector O O\nand O O\ndragging O O\nfrom O O\nthe O O\ntouch O O\nup O O\ninside O O\nover O O\nto O O\nthe O O\nIBAction Name Name\ndot O O\nin O O\nyour O O\nview O O\ncontroller O O\ncode O O\n. O O\n\nAlso O O\n, O O\nas O O\nsomeone O O\nelse O O\npointed O O\nout O O\nin O O\nthe O O\ncomments O O\nyou O O\nshould O O\nmake O O\nyour O O\nbutton Name Name\ninherit O O\nfrom O O\nUIButton Name Name\nby O O\nadding O O\nthis O O\nto O O\nyour O O\nclass O O\ndeclaration O O\n: O O\n\nhow O O\ncan O O\nI O O\ncapture O O\nall O O\nlines O O\nfrom O O\na O O\ntext Name Name\nfile O O\nthat O O\nbegin O O\nwith O O\nthe O O\ncharacter O O\n\" Name Name\nX Name Name\n\" Name Name\nor O O\ncontain O O\nthe O O\nword O O\n\" Name Name\nfoo Name Name\n\" Name Name\n? O O\n\nThis O O\nworks O O\n: O O\n\nbut O O\nI O O\ntried O O\n: O O\n\nand O O\nvariations O O\nbut O O\ncannot O O\nfind O O\nthe O O\nright O O\nsyntax O O\nanywhere O O\n. O O\n\nhow O O\ncan O O\nthis O O\nbe O O\ndone O O\n? O O\n\nthanks O O\n. O O\n\nIf O O\nyour O O\ngrep Name Name\nimplementation O O\nis O O\nn't O O\nPOSIX Name Name\ncompliant O O\n, O O\nyou O O\ncan O O\nuse O O\negrep Name Name\ninstead O O\nof O O\ngrep Name Name\n: O O\n\ncontains O O\nthe O O\nword O O\n\" Name Name\nfoo Name Name\n\" Name Name\nis O O\n: O O\n(.* Name Name\nfoo.* Name Name\n) Name O\nso O O\nyour O O\nregex O O\nwould O O\nbecome O O\n: O O\n\nI O O\n'm O O\nhaving O O\nproblems O O\nwith O O\nthe O O\nIDE Name Name\nsince O O\nit O O\nkeeps O O\nopening O O\nwhen O O\nI O O\ntried O O\nto O O\nclosed O O\nit O O\n. O O\n\nDo O O\nyou O O\nhave O O\nthe O O\nsame O O\nproblem O O\nand O O\nsolution O O\nfor O O\nthat O O\n? O O\n\nEdit O O\n\nI O O\nrecently O O\ninstall O O\nhotfixes Name Name\n: O O\n\n[ O O\ncrashes O O\non O O\nshutdown O O\n] O O\nVS10-KB2275326-x86 Name Name\n\n[ O O\ninsufficient O O\nmemory O O\nbug O O\nwhen O O\ncopy-paste O O\n] O O\nVS10-KB2251084-x86 Name Name\n\n[ O O\nsearch O O\nbox O O\nincreased O O\nsize O O\nbug O O\n] O O\nVS10-KB2268081-x86 Name Name\n\n[ O O\nunnescessarily O O\nscrolling O O\nin O O\ncontext O O\nmenus O O\n] O O\nVS10-KB2345133-x86 Name Name\n\nTry O O\nto O O\nuse O O\nthis O O\nhotfix Name Name\nKB2275326 Name Name\nâ€ Name Name\n\" Name Name\nThe O O\nVisual Name Name\nStudio Name Name\n2010 Name Name\ndevelopment O O\nenvironment O O\ncrashes O O\non O O\nshutdown O O\n\nThere O O\n's O O\na O O\ncheckbox Name Name\nin O O\nvisual Name Name\nstudio Name Name\n2010 Name Name\nthat O O\nasks O O\nif O O\nit O O\nshould O O\nrestart O O\nautomatically O O\nwhen O O\nit O O\ncrashes O O\n. O O\n\nSo O O\nif O O\nits O O\ncrashing O O\nthen O O\nthis O O\nis O O\nthe O O\nexpected O O\nbehavior O O\nbut O O\nif O O\nits O O\nopening O O\nafter O O\nyou O O\nclick O O\nthe O O\nexit O O\nbutton Name Name\ni O O\nhave O O\nno O O\nidea O O\nabout O O\nits O O\ncause O O\n. O O\n\nI O O\nrecently O O\ninstall O O\nLinux Name Name\nMint Name Name\n( O O\nKDE Name Name\nPlasma Name Name\n) O O\non O O\nmy O O\nSSD Name Name\n( O O\n30GB O O\nPartition O O\n) O O\nafter O O\nthat O O\nI O O\ninstall O O\nWindows Name Name\n10 Name Name\non O O\nremaining O O\nstorage O O\n. O O\n\nBut O O\nwhen O O\nI O O\ntried O O\nto O O\nboot O O\nin O O\nLinux Name Name\nMint Name Name\nmy O O\nComputer Name Name\nautomatically O O\nboot O O\nWindows Name Name\n10 Name Name\nwithout O O\nshowing O O\nBoot O O\noptions O O\nfor O O\nselecting O O\nOS O O\n. O O\n\nNow O O\n, O O\nhow O O\nto O O\ninstall O O\nGRUB Name Name\non O O\nMaster Name Name\nBoot Name Name\nRecord Name Name\n( O O\nMBR O O\n) O O\nof O O\nmy O O\nSSD Name Name\nto O O\nboot O O\nboth O O\nOS O O\n. O O\n\nFirst O O\nlive O O\nboot O O\nto O O\nyour O O\nLinux Name Name\nMint Name Name\nsystem O O\n, O O\nusing O O\nexternal O O\nLive O O\nCD/USB Name Name\nDrive Name Name\n, O O\nthen O O\nfollow O O\nthese O O\ncommands O O\nto O O\nre-install O O\nGRUB Name Name\non O O\nMBR Name Name\n. O O\n\nmount O O\nyour O O\nLinux Name Name\ninstalled O O\npartition O O\nto O O\nsome O O\nmount O O\npoint O O\n. O O\n\nhere O O\nXY O O\nis O O\nthe O O\nnumber O O\nof O O\nyour O O\nLinux Name Name\ndistro O O\npartition O O\n. O O\n\nsudo Name Name\nmount Name Name\n<root-partition[e.g. Name Name\n/dev/sdaXY]> Name Name\n<mount-point[e.g. Name Name\n/mnt/]> Name Name\n\nNow O O\nbind O O\nsome O O\nessential O O\nlive O O\nroot O O\npartition O O\ndirectories O O\nto O O\nmounted O O\nroot O O\npartition O O\nat O O\n/mnt Name Name\n. O O\n\nsudo Name Name\nmount Name Name\n--bind Name Name\n/dev Name Name\n/mnt/dev Name Name\n&& Name Name\nsudo Name Name\nmount Name Name\n--bind Name Name\n/dev/pts Name Name\n/mnt/dev/pts Name Name\n&& Name Name\nsudo Name Name\nmount Name Name\n--bind Name Name\n/proc Name Name\n/mnt/proc Name Name\n&& Name O\nsudo Name Name\nmount Name Name\n--bind Name Name\n/sys Name Name\n/mnt/sys Name Name\n\nNow O O\n, O O\nchange O O\nthe O O\nroot O O\nto O O\nnewly O O\nmounted O O\npartition O O\ndirectory O O\n. O O\n\nsudo Name Name\nchroot Name Name\n<mount-point[e.g. Name Name\n/mnt/]> Name Name\n\nNow O O\n, O O\ninstall O O\nthe O O\nGRUB Name Name\nusing O O\ngrub-install Name Name\ncommand O O\nat O O\nyour O O\nHDD Name Name\nMBR Name Name\n. O O\n\ngrub-install Name Name\n/dev/sda Name Name\n\nFinally O O\nupdate O O\nthe O O\ngrub Name Name\nentries O O\nto O O\nshow O O\nnewly O O\ndetected O O\npartition O O\noperating O O\nsystems O O\n. O O\n\nupdate-grub Name Name\n\nAnd O O\nat O O\nlast O O\nunmount O O\nall O O\nthe O O\nbinded O O\npartition O O\ndirectories O O\n, O O\nand O O\nthen O O\nreboot O O\n. O O\n\nsudo Name Name\nreboot Name Name\n\nThat O O\n's O O\nit O O\n, O O\nhope O O\nthis O O\nwill O O\nhelp O O\n! O O\n! O O\n\nWindows Name Name\nwill O O\noverwrite O O\nthe O O\nboot O O\nsector O O\nwhenever O O\nyou O O\ninstall O O\nit O O\n. O O\n\nIn O O\ngeneral O O\ninstall O O\nwindows Name Name\nfirst O O\nthen O O\nlinux Name Name\n. O O\n\nYou O O\ncan O O\nrepair O O\nthe O O\ngrub Name Name\nby O O\nbooting O O\nfrom O O\na O O\nlive O O\ndisk Name Name\nof O O\nlinux Name Name\nMint Name Name\nand O O\nthere O O\nshould O O\nbe O O\nan O O\noption O O\nto O O\nrepair-boot O O\n, O O\nwhich O O\nwill O O\nrepair O O\nyour O O\ngrub Name Name\n. O O\n\nRestart O O\nit O O\nand O O\nnow O O\nyou O O\nshould O O\nbe O O\nable O O\nto O O\nsee O O\nboth O O\nthe O O\nOS O O\n. O O\n\nOr O O\nyou O O\ncan O O\nboot O O\nfrom O O\na O O\nlive O O\ncd Name Name\nand O O\nperform O O\nthe O O\nfollowing O O\nsteps O O\n: O O\n\nBoot O O\nfrom O O\na O O\nlive O O\nCD Name Name\n( O O\nCD/DVD Name Name\nor O O\nflash Name Name\ndrive Name Name\n) O O\n. O O\n\nBecome O O\nroot O O\nor O O\nuse O O\nsudo Name Name\nwith O O\ncommands O O\nbelow O O\n. O O\n\nList O O\nthe O O\navailable O O\npartitions O O\nif O O\nneeded O O\n: O O\nfdisk Name Name\n-l Name Name\n\nWindows Name Name\nwill O O\nalmost O O\ncertainly O O\nexist O O\non O O\n/dev/sda1 Name Name\n: Name Name\nmount Name Name\n/dev/sda1 Name Name\n/mnt Name Name\n\nReinstall O O\nGRUB Name Name\nin O O\nthe O O\nMBR Name Name\n: O O\ngrub-install Name Name\n--root-directory Name Name\n= Name Name\n/mnt/ Name Name\n/dev/sda Name Name\n\nReboot O O\n: O O\nshutdown Name Name\n-r Name Name\nnow Name Name\n\nRestore O O\nthe O O\nGRUB Name Name\nmenu O O\n: O O\nupdate-grub Name Name\n\nThanks O O\nto O O\n@christopher O O\nfor O O\nthe O O\nabove O O\nanswer O O\n. O O\n\nI O O\nam O O\nwriting O O\na O O\ncode O O\nin O O\nJava Name Name\nand O O\nI O O\nwant O O\nmy O O\noutput O O\nto O O\nbe O O\n3 O O\ncharacters Name Name\nfrom O O\na Name Name\nto O O\nz Name Name\nand O O\n2 O O\nnumbers Name Name\nfrom O O\n0 Name Name\nto O O\n9 Name Name\n( O O\ne.g O O\n. O O\nabc0 Name Name\n1) Name Name\nbut O O\nthe O O\nprogram O O\ngives O O\nme O O\n1 O O\ncharacter Name Name\nand O O\n1 O O\nnumber Name Name\n( O O\ne.g O O\n. O O\na Name Name\n1) Name Name\n. O O\n\nWhy O O\ndoes O O\nthe O O\nprogram O O\ndo O O\nthis O O\ndespite O O\nI O O\n've O O\nput O O\n3 O O\nand O O\n2 O O\ninto O O\nloops O O\n? O O\n\nFrom O O\nall O O\nI O O\nknow O O\nthe O O\nfirst O O\nloop O O\nmust O O\noperate O O\n3 O O\ntimes O O\nand O O\nthe O O\nsecond O O\none O O\nmust O O\noperate O O\n2 O O\ntimes O O\n. O O\n\nSo O O\nat O O\nthe O O\nend O O\nmy O O\noutput O O\nhave O O\nto O O\nbe O O\n3 O O\ncharacters Name Name\nand O O\n2 O O\nnumbers Name Name\n. O O\n\nThanks O O\n! O O\n\nchar Name Name\nand O O\nint Name Name\ncan O O\nstore O O\none O O\nvalue O O\nso O O\nuse O O\nString Name Name\nas O O\n\nYou O O\ngenerate O O\nyour O O\nrandom O O\nitems O O\ncorrectly O O\n, O O\nbut O O\nyou O O\ndo O O\nnot O O\ncollect O O\nthe O O\nresults O O\nin O O\na O O\nproper O O\nway O O\n. O O\n\nEach O O\niteration O O\nof O O\nthe O O\nloop O O\nwrites O O\nover O O\nthe O O\nresults O O\nof O O\nprior O O\niteration O O\n, O O\nleaving O O\nboth O O\na Name Name\nand O O\nb Name Name\nwith O O\nthe O O\nresult O O\nof O O\nthe O O\nlast O O\niteration O O\n. O O\n\nI O O\nrecommend O O\nusing O O\na O O\nStringBuilder Name Name\nto O O\nstore O O\ncharacters Name Name\nas O O\nyou O O\ngenerate O O\nthem O O\n: O O\n\nDemo O O\n. O O\n\nI O O\nam O O\nattempting O O\nto O O\ncreate O O\na O O\nboot Name Name\nloader Name Name\nwhich O O\nallows O O\nme O O\nto O O\nupdate O O\na O O\nprocessor Name Name\n's O O\nsoftware O O\nremotely O O\n. O O\n\nI O O\nam O O\nusing O O\nkeil Name Name\nuvision Name Name\ncompiler Name Name\n( O O\nV5.20.0.0 Name Name\n) O O\n. O O\n\nFlash.c Name Name\n, O O\nstartup_efm32zg.s Name Name\n, O O\nstartup_efm32zg.c Name Name\nand O O\nem_dma.c Name Name\nconfigured O O\nto O O\nexecute O O\nfrom O O\nRAM Name Name\n( O O\ncode O O\n, O O\nZero O O\ninit O O\ndata O O\n, O O\nother O O\ndata O O\n) O O\nvia O O\ntheir O O\noptions/properties O O\ntabs Name Name\n. O O\n\nStack Name Name\nsize O O\nconfigured O O\nat O O\n0x0000 Name Name\n0800 Name Name\nvia O O\nthe O O\nstartup_efm32zg.s Name Name\nConfiguration O O\nWizard O O\ntab Name Name\n. O O\n\nUsing O O\nSilicon Name Name\nLabs Name Name\nflash.c Name Name\nand O O\nflash.h Name Name\n, O O\nremoved O O\nRAMFUNC Name Name\nas O O\nthis O O\nis O O\nredundant O O\nto O O\nKeil Name Name\nconfiguration O O\n, O O\nabove O O\n. O O\n\nI O O\nmodified O O\nthe O O\nflash.c Name Name\ncode O O\nslightly O O\nso O O\nit O O\nstays O O\nin O O\nthe O O\nFLASH_write Name Name\nfunction O O\n( O O\nsupposedly O O\nin O O\nRAM Name Name\n) O O\nuntil O O\nthe O O\nDMA O O\nis O O\ndone O O\ndoing O O\nits O O\nthing O O\n. O O\n\nI O O\nmoved O O\nthe O O\n\nwhile Name Name\n( Name Name\nDMA->CHENS Name Name\n& Name Name\nDMA_CHENS_CH0ENS Name Name\n) Name Name\n; Name Name\n\nline O O\ndown O O\nto O O\nthe O O\nend O O\nof O O\nthe O O\nfunction O O\nand O O\nadded O O\na O O\nlittle O O\nwrapper O O\naround O O\nit O O\nlike O O\nthis O O\n: O O\n\n/ Name Name\n* Name Name\nActivate Name Name\nchannel Name Name\n0 Name Name\n* Name Name\n/ Name Name\n\nDMA->CHENS Name Name\n= Name Name\nDMA_CHENS_CH0ENS Name Name\n; Name Name\n\nFLASH_init() Name Name\nis O O\ncalled O O\nas O O\npart O O\nof O O\nthe O O\ninitial O O\nsetup O O\nprior O O\nto O O\nentering O O\nmy O O\ninfinite O O\nloop O O\n. O O\n\nWhen O O\ncalled O O\nupon O O\nto O O\nupdate O O\nthe O O\nflash Name Name\n.... O O\n. O O\n\n( O O\n1) O O\n: O O\nI O O\ndisable O O\ninterrupts O O\n. O O\n\n( O O\n2) O O\n: O O\nI O O\ncall O O\nFLASH_erasePage Name Name\nstarting O O\nat O O\n0x0000 Name Name\n2400 Name Name\n. O O\n\nThis O O\nworks O O\n. O O\n\n( O O\n3) O O\n: O O\nI O O\ncall O O\nFLASH_write Name Name\n. O O\n\nWhere O O\n: O O\n\nstartAddress Name Name\n= Name Name\n0x00002400 Name Name\n, O O\n\nflashBuffer Name Name\n= Name Name\na Name Name\nbuffer Name Name\nof Name Name\ntype Name Name\nuint8_t Name Name\nflashBuffer[256] Name Name\n, O O\n\n#define Name Name\nBLOCK_SIZE Name Name\n= Name Name\n256 Name Name\n. O O\n\nIt O O\ngets O O\nstuck O O\nhere O O\nin O O\nthe O O\nfunction O O\n: O O\n\nEventually O O\nthe O O\ndebugger Name Name\nexecution O O\nstops O O\nand O O\nthe O O\nCall O O\nStack Name Name\nclears O O\nto O O\nbe O O\nleft O O\nwith O O\n0x00000000 Name Name\nand O O\nALL O O\nof O O\nmemory O O\nis O O\ndisplayed O O\nas O O\n0xAA Name Name\n. O O\n\nI O O\nhave O O\nset O O\naside O O\n9K O O\nof O O\nflash Name Name\nfor O O\nthe O O\nbootloader Name Name\n. O O\n\nAfter O O\na O O\nbuild O O\nI O O\nam O O\ntold O O\n: O O\n\nTarget O O\nMemory O O\nOptions O O\nfor O O\nTarget1 O O\n: O O\n\nIROM1 Name Name\n: Name Name\nStart[0x0] Name Name\nSize[0x2400] Name Name\n\nIRAM1 Name Name\n: Name Name\nStart[0x20000000] Name Name\nSize:[0x1000] Name Name\n\nSo O O\n. O O\n. O O\nwhat O O\non O O\nearth O O\nis O O\ngoing O O\non O O\n? O O\n\nAny O O\nhelp O O\n? O O\n\nOne O O\nof O O\nmy O O\nother O O\nconcerns O O\nis O O\nthat O O\nit O O\nis O O\nsupposed O O\nto O O\nbe O O\nexecuting O O\nfrom O O\nRAM Name Name\n. O O\n\nWhen O O\nI O O\nlook O O\nin O O\nthe O O\nin O O\nthe O O\nCall O O\nStack Name Name\nfor O O\nthe O O\nLocation/Value O O\nfor O O\nFLASH_write Name Name\nafter O O\nhaving O O\nstepped O O\ninto O O\nthe O O\nFLASH_write Name Name\nfunction O O\nI O O\nsee O O\n0x000008A4 Name Name\n. O O\n\nThis O O\nis O O\nflash!(?) O O\n\nI O O\n've O O\ntried O O\nthe O O\nwhole O O\nRAM_FUNC Name Name\nthing O O\n, O O\ntoo O O\nwith O O\nthe O O\nsame O O\nresults O O\n. O O\n\nThis O O\nis O O\nmy O O\nfirst O O\nquestion O O\non O O\nstackoverflow Name Name\n. O O\n\nWhat O O\nI O O\nwant O O\nto O O\ndo O O\nis O O\nto O O\ncreate O O\nan O O\niframe Name Name\ninto O O\ntest O O\ndiv Name Name\nwith O O\njavascript Name Name\nand O O\nadd O O\nhtml Name Name\ncode O O\nin O O\nit O O\n. O O\n\nAlso O O\nI O O\nwant O O\nto O O\nresize O O\niframe Name Name\n's O O\nheight Name Name\ndynamically O O\n. O O\n\nThe O O\ncode O O\nbelow O O\nworks O O\ngood O O\nfor O O\nme O O\nonly O O\nif O O\nI O O\nset O O\ndynamic_div Name Name\n's O O\nheight Name Name\nmore O O\nthan O O\n150px Name Name\n. O O\n\nIf O O\nthe O O\nheight Name Name\nof O O\nthe O O\ndynamic_div Name Name\nless O O\nthan O O\n150 Name Name\nit O O\nautomatically O O\nsets O O\niframe Name Name\n's O O\nheight Name Name\nto O O\n150 Name Name\n. O O\n\nHow O O\ncan O O\nI O O\nfix O O\nthis O O\nproblem O O\n? O O\n\nP.S O O\n: O O\nhtml Name Name\ncode O O\nin O O\nthe O O\nhtml Name Name\nvariable O O\nis O O\ndynamic O O\n. O O\n\nSo O O\nI O O\ncan O O\nnot O O\nchange O O\nanything O O\nin O O\nit O O\n. O O\n\nMany O O\nThanks O O\n. O O\n\nBecause O O\nof O O\nyour O O\n<div Name Name\nid=\"container\"> Name Name\n\nAutomatically O O\nit O O\nwont O O\nbe O O\nas O O\ntall O O\nas O O\nyour O O\niframe Name Name\n. O O\n\nAdd O O\nsome O O\nstyle O O\nto O O\nit O O\n. O O\n\nThe O O\niframe Name Name\ngets O O\na O O\nheight Name Name\nvalue O O\nfor O O\nunknown O O\nreason O O\nto O O\nme O O\n, O O\nto O O\ngive O O\nit O O\na O O\nheight Name Name\nvalue O O\nsuch O O\nas O O\n0 Name Name\ndid O O\nthe O O\ntrick O O\n, O O\nThe O O\ndoc.body.style.cssText Name Name\noverwrites O O\nthe O O\nheight Name Name\nvalue O O\nto O O\n100% Name Name\nanyway O O\n, O O\nso O O\nyou O O\ndo O O\nn't O O\nneed O O\nto O O\nworry O O\n. O O\n\nExample O O\nJSFiddle Name Name\n\nFACTS O O\n: O O\n\nI O O\nhave O O\na O O\nscript O O\nthat O O\nsearches O O\ninbox Name Name\nfor O O\nunread O O\nemail O O\n, O O\nand O O\nanything O O\nthat O O\nis O O\nn't O O\nstarred O O\nare O O\nremoved O O\nfrom O O\ninbox Name Name\nand O O\napplied O O\nlabel O O\n. O O\n\nThere O O\nare O O\nfilters O O\nin O O\nplace O O\nto O O\nlabel O O\ncertain O O\nemail O O\naddys O O\nas O O\nstarred O O\n. O O\n\nGOAL O O\n: O O\n\nTo O O\nmove O O\neverything O O\nfrom O O\ninbox Name Name\nto O O\na O O\nfolder O O\nthat O O\nis O O\nnot O O\nrelevant O O\n. O O\n\nExcept O O\nthe O O\nitems O O\nthat O O\nare O O\nstarred O O\n. O O\n\nAlso O O\nhave O O\na O O\nmethod O O\nthat O O\nallows O O\nfor O O\nmanually O O\ndragging O O\nback O O\nto O O\ninbox Name Name\nand O O\nmake O O\nsure O O\nthey O O\nstay O O\nthere O O\n. O O\n\nPROBLEM O O\n: O O\n\nMost O O\nall O O\nemails O O\nare O O\nprocessed O O\nas O O\nneeded O O\n. O O\n\nOnly O O\nsome O O\nof O O\nthe O O\nstarred O O\nemails O O\nare O O\nstill O O\ngetting O O\nthe O O\nscript O O\napplied O O\nto O O\n, O O\nand O O\nare O O\nthus O O\nmoved O O\nfrom O O\ninbox Name Name\nand O O\nlabeled O O\n\" Name Name\nnewLabel Name Name\n\" Name Name\n\nThanks O O\nfor O O\nyour O O\nhelp O O\n. O O\n\nIf O O\nthere O O\nis O O\na O O\nbetter O O\nway O O\nto O O\naccomplish O O\nthe O O\nsame O O\nthing O O\n, O O\nI O O\n'll O O\nswitch O O\nit O O\nup O O\n. O O\n\nI O O\nused O O\nthis O O\nlink O O\nfor O O\npart O O\nof O O\nthis O O\n: O O\nGmail Name Name\nScript O O\n: O O\nsearch O O\nthen O O\nmove O O\nto O O\ninbox Name Name\n, O O\nremove O O\nlabel O O\n\nYour O O\nfirst O O\nthread O O\nis O O\nnot O O\npicking O O\nup O O\nmails O O\ncorrectly O O\n. O O\n\nYou O O\nindicated O O\nthat O O\n\nGmailApp.search() Name Name\nshould O O\nonly O O\nuse O O\nis:unread Name Name\nin:inbox Name Name\nfor O O\nwhat O O\nyou O O\nwant O O\n. O O\n\nAlso O O\n, O O\nusing O O\nthe O O\nsearch O O\nquery O O\nparameter O O\nlabel Name Name\n: Name Name\nshould O O\nn't O O\nhave O O\na O O\ndash O O\nbefore O O\nit O O\n. O O\n\nCheck O O\nout O O\nthe O O\ndocumentation O O\nfor O O\nthe O O\nlist O O\nof O O\naccepted O O\nsearch O O\nquery O O\nparameters O O\nhere O O\n\nThis O O\nquestion O O\nis O O\nabout O O\nRad Name Name\nBeacon Name Name\nDot Name Name\ndevice O O\nfor O O\nAndroid Name Name\n. O O\n\nI O O\nhave O O\nset O O\nup O O\nnotification O O\n. O O\n\nWhen O O\nuser O O\ngets O O\nit O O\non O O\nhis O O\nphone Name Name\n, O O\nhe O O\ncan O O\nclick O O\non O O\nit O O\nand O O\nit O O\nwill O O\nredirect O O\nhim O O\nto O O\nmy O O\nwebsite O O\n. O O\n\nAll O O\nnotification Name Name\nworks O O\ngreat O O\n, O O\ni O O\nhave O O\nconnected O O\nit O O\nwith O O\nGoogle Name Name\nCloud Name Name\nPlatform Name Name\n. O O\n\nNow O O\n, O O\nwhen O O\nuser O O\nclick O O\non O O\nnotification Name Name\n, O O\ncan O O\ni O O\nsomehow O O\nto O O\ntrack O O\nit O O\n? O O\n\nCan O O\ni O O\ntrack O O\neach O O\nclick O O\non O O\nnotification Name Name\n? O O\n\nI O O\ntried O O\nto O O\nenable O O\nGoogle Name Name\ntracking Name Name\nAPI Name Name\non O O\nthe O O\nGoogle Name Name\nCloud Name Name\nPlatform Name Name\n, O O\nand O O\nadded O O\ncredentials O O\nto O O\nattachments O O\nfield O O\nin O O\nthe O O\nBeacon Name Name\nDashboard Name Name\nPanel Name Name\n, O O\nbut O O\nit O O\nstill O O\ndoes O O\nn't O O\nwork O O\n. O O\n\nDo O O\nyou O O\nhave O O\na O O\nlink O O\nor O O\nadvice O O\nhow O O\ncan O O\ni O O\nachieve O O\nthat O O\n? O O\n\nI O O\n'm O O\nsure O O\nthere O O\n's O O\nshould O O\nbe O O\na O O\nbetter O O\nsolution O O\n, O O\nand O O\ni O O\nwill O O\nget O O\na O O\nlot O O\nof O O\ndislikes O O\nfor O O\nthat O O\nbut O O\n, O O\n\nBut O O\nyou O O\ncan O O\nset O O\nup O O\na O O\nlink O O\nexample O O\n: O O\nyourwebsite.com/beacon-track O O\nand O O\nplace O O\nsome O O\ntracking O O\ncode O O\nthere O O\n.. O O\n. O O\nand O O\nset O O\nup O O\nredirect O O\nfrom O O\nyourwebsite.com/beacon O O\nto O O\nyour O O\nwebsite O O\n, O O\nso O O\nwhen O O\nuser O O\nclick O O\non O O\nnotification Name Name\nit O O\ngoes O O\nto O O\nyourwebsite.com/beacon-track O O\n, O O\nadd O O\nas O O\nclick O O\n, O O\nand O O\nredirect O O\nuser O O\nto O O\nyourwebsite.com O O\n\nBut O O\n, O O\ni O O\n'm O O\nsure O O\n, O O\nthere O O\n's O O\na O O\nbetter O O\nsolution O O\n\nI O O\nneed O O\nto O O\npull O O\ndata O O\nfrom O O\ncolumns Name Name\nJ-Y Name Name\nfrom O O\na O O\nspreadsheet Name Name\nand O O\nconcatenate O O\nthem O O\nspecifically O O\nfor O O\neach O O\nhorizontal O O\nrow Name Name\nin O O\nthose O O\nranges O O\ninto O O\na O O\nsingle O O\ncell Name Name\n. O O\n\nThe O O\nbest O O\nI O O\ncan O O\ndo O O\nis O O\n: O O\n\n=CONCATENATE(IMPORTRANGE(\"123123123\",\"SheetName!J1:Y1\")) Name Name\n\nThat O O\nputs O O\neverything O O\nfrom O O\na O O\nspecific O O\nrow Name Name\ninto O O\na O O\nspecific O O\ncell Name Name\n. O O\n\nBut O O\nthe O O\nrange O O\nwill O O\nnot O O\nauto O O\nupdate O O\nwhen O O\nI O O\ndrag O O\nthe O O\nlower-right O O\nbox Name Name\ndown O O\nthe O O\ncolumn Name Name\n. O O\n\nHow O O\ndo O O\nI O O\nmake O O\nit O O\ndo O O\nthat O O\n? O O\n\ndoes O O\nthis O O\nworks O O\nas O O\nyou O O\nwant O O\nif O O\npasted O O\ninto O O\nrow Name Name\n1 O O\nand O O\ndragged O O\ndown O O\n: O O\n\n=CONCATENATE(IMPORTRANGE(\"123123123\",\"SheetName!J\"&ROW()&\":Y\"&ROW())) Name Name\n\nI O O\n'm O O\nworking O O\nwith O O\nsailsjs Name Name\nand O O\nmongodb Name Name\n. O O\n\nI O O\n'm O O\ngetting O O\nthe O O\nerror O O\n\" O O\nTypeError O O\n: O O\nCannot O O\nread O O\nproperty O O\n' O O\nattributes O O\n' O O\nof O O\nundefined O O\n\" O O\n. O O\n\nThis O O\nare O O\nthe O O\nmodels O O\n: O O\n\nUserInterest.js Name Name\n\nUserProfile.js Name Name\n\nI O O\n'm O O\ntrying O O\nto O O\nget O O\na O O\nuser O O\nprofile O O\nloaded O O\nthis O O\nway O O\n: O O\n\nThe O O\nerror O O\nhappens O O\nin O O\npopulate Name Name\nfunction O O\n. O O\n\nWhy O O\nthis O O\nis O O\nhappening O O\n? O O\n\nAfter O O\nstruggling O O\na O O\nlot O O\nwith O O\nthis O O\nproblem O O\n, O O\nI O O\nfound O O\nan O O\nanswer O O\n. O O\n\nThe O O\nattribute O O\ninterests O O\nwas O O\nduplicated O O\nand O O\nsails Name Name\nwas O O\nhaving O O\nproblems O O\nwith O O\nit O O\n. O O\n\nI O O\neliminated O O\nthe O O\nduplicate O O\n, O O\nleaving O O\nthe O O\ncollection O O\ndefinition O O\n. O O\n\nI O O\nhave O O\nmy O O\nPlay Name Name\nFramework Name Name\n2.1.2 Name Name\napplication O O\nand O O\nI O O\nneed O O\nto O O\nexecute O O\nclean O O\nup O O\ninstructions O O\nafter O O\nthe O O\nuser O O\nlogs O O\nout O O\nor O O\ncloses O O\nthe O O\nbrowser Name Name\n. O O\n\nSince O O\nin O O\nmy O O\nother O O\nquestion O O\nI O O\nasked O O\nhow O O\nto O O\nintercept O O\nthe O O\nclosing O O\naction O O\nand O O\nI O O\nwas O O\ntold O O\nit O O\n's O O\nnot O O\nreliable O O\nto O O\nstick O O\nwith O O\njavascript Name Name\nin O O\nbrowser Name Name\n, O O\nI O O\nwould O O\nlike O O\nto O O\nuse O O\nits O O\nserver Name Name\nside O O\nsession O O\ntimeout O O\nevent O O\nto O O\nacknowledge O O\nthe O O\nuser O O\nis O O\ngone O O\n. O O\n\nSo O O\nthe O O\nflow O O\nI O O\nwould O O\nlike O O\nto O O\nobtain O O\nis O O\nsimilar O O\nto O O\nthis O O\none O O\n: O O\n\nthe O O\nuser O O\nlogs O O\nin O O\n\nits O O\nsession O O\nis O O\ncreated O O\n\nthe O O\nuser O O\nworks O O\nwith O O\nmy O O\nweb O O\napplication O O\n\nthe O O\nuser O O\nlogs O O\nout O O\n/ O O\ncloses O O\nhis O O\nbrowser Name Name\n---> O O\nthe O O\nsession O O\nexpires O O\n\nhe O O\nis O O\nnot O O\non O O\nthe O O\nplatform O O\nanymore O O\nso O O\nI O O\ncan O O\nperform O O\nsome O O\noperations O O\non O O\nthe O O\ndb O O\nabout O O\nwhat O O\nhe O O\nhas O O\ndone O O\n\nI O O\ncoul O O\nn't O O\nfind O O\nany O O\nmethod O O\nto O O\noverride O O\nwhen O O\nthe O O\nsession O O\nexpires O O\n. O O\n\nCan O O\nsomeone O O\npoint O O\nme O O\ntowards O O\na O O\nsolution O O\n? O O\n\nEventually O O\nanother O O\nacceptable O O\nsolution O O\nwould O O\nbe O O\nsome O O\ntimed O O\nevent O O\nthat O O\nrepeatedly O O\nchecks O O\nwhich O O\nusers O O\nare O O\nnot O O\nconnected O O\nanymore O O\nand O O\nperforms O O\nbulk O O\noperations O O\non O O\nthat O O\npool O O\nof O O\nusers O O\nno O O\nlonger O O\nconnected O O\n. O O\n\nHow O O\nto O O\nachieve O O\nthis O O\n? O O\n\nI O O\nalso O O\nneeded O O\na O O\nsession O O\ntimeout Name Name\n, O O\nso O O\nI O O\nadded O O\na O O\ntimestamp Name Name\n( O O\ntick O O\n) O O\nto O O\nthe O O\nsession O O\nand O O\nupdated O O\nit O O\nwith O O\neach O O\nrequest O O\nafter O O\nchecking O O\nfor O O\na O O\ntimeout Name Name\n. O O\n\nSomething O O\nlike O O\nthis O O\n: O O\n\nhttp://www.poornerd.com/2014/04/01/how-to-implement-a-session-timeout-in-play-framework-2/ O O\n\nOn O O\nwhat O O\ngood O O\nserves O O\nme O O\na O O\ntexture O O\natlas O O\nif O O\nmy O O\n3D O O\ncharacter Name Name\nis O O\nbig O O\nenough O O\nand O O\nfits O O\nonly O O\na O O\nfew O O\non O O\nthe O O\n4k*4K O O\nspritesheet Name Name\n? O O\n\nSeems O O\nlike O O\nbig O O\nresolution O O\n( O O\n420x768px O O\n) O O\ngraphics O O\nare O O\nnot O O\nbest O O\nsuited O O\nfor O O\nsuch O O\ntextures O O\nand O O\nused O O\nin O O\ncocos2d Name Name\n2 Name Name\nto O O\ncreate O O\nnice O O\nanimations O O\nfrom O O\nframes O O\n. O O\n\nSo O O\nis O O\na O O\n3d O O\nengine O O\nbest O O\nsuited O O\nfor O O\nheavy O O\nsprite O O\nanimations O O\n? O O\n\nAnyone O O\nencountered O O\nsimilar O O\nlimitations O O\n, O O\nwhen O O\ncreating O O\na O O\nheavy O O\nanimation O O\ngame O O\nin O O\ncocos2d Name Name\n? O O\n\nThanks O O\n. O O\n\nI O O\n'm O O\nbusy O O\ncreating O O\nvalidation O O\nfor O O\nthis O O\nduplicate-able O O\nfields O O\n, O O\nso O O\nfor O O\non O O\nblur O O\nif O O\nnothing O O\nis O O\nfilled O O\nin O O\nthe O O\ninput O O\n' O O\nName Name Name\n' O O\nand O O\nalso O O\n' O O\nSurname Name Name\n, O O\nthen O O\na O O\nerror O O\nmessage O O\nwill O O\nshow O O\nup O O\n, O O\nthe O O\nonly O O\nproblem O O\nis O O\nthat O O\nthe O O\nerror O O\nshows O O\nup O O\nfor O O\nboth O O\ninputs O O\n' O O\nName Name Name\n' O O\nand O O\n' O O\nSurname Name Name\n' O O\n, O O\ninstead O O\nof O O\none O O\n. O O\n\nKeep O O\nin O O\nMind O O\nthat O O\nthe O O\nthe O O\nbottom O O\nfields O O\nare O O\nduplicate-able O O\nand O O\nthe O O\nvalidation O O\nhas O O\nto O O\nwork O O\nfor O O\nthem O O\nto O O\n, O O\nhence O O\nwhy O O\nthe O O\ncode O O\nis O O\nwritten O O\nas O O\nit O O\nis O O\n. O O\n\nAny O O\nHelp O O\nGreatly O O\nAppreciated O O\n. O O\n\nJsFiddle Name Name\n\nAnd O O\nthe O O\nJavascript Name Name\n: O O\n\nand O O\nthe O O\nHTML Name Name\n: O O\n\nSee O O\nthis O O\n: O O\nhttp://jsfiddle.net/6QTyd/5/ O O\n\nAlso O O\nnote O O\nthe O O\nchanges O O\nin O O\nthese O O\nareas O O\n: O O\n\nand O O\n\nI O O\nam O O\nworking O O\non O O\na O O\ncordova Name Name\nandroid Name Name\napp O O\n. O O\n\nMy O O\nQuestion O O\nis O O\n: O O\n\nis O O\nit O O\npossible O O\nto O O\nrun O O\na O O\npart O O\nof O O\nmy O O\napp O O\nin O O\nbackground O O\n, O O\nso O O\nthat O O\nthe O O\nuser O O\ncan O O\ncontinue O O\nhis O O\nwork O O\nwhile O O\nsending O O\ndata O O\nto O O\nserver Name Name\nin O O\nbackground O O\n. O O\n\ni O O\ndont O O\nwant O O\nmy O O\nuser O O\nto O O\nwait O O\nwhile O O\ni O O\nsync O O\nmy O O\nlocal O O\ndatabase O O\nwith O O\nremote O O\ndatabase O O\n. O O\n\nI O O\ndont O O\nwant O O\nmy O O\nwhole O O\napplication O O\nto O O\ngo O O\nbackground O O\n. O O\n\nI O O\nwant O O\nonly O O\nthe O O\nsync O O\nprocess O O\nto O O\nwork O O\nin O O\nbackground.The O O\ntotal O O\nsync O O\nprocess O O\nis O O\ntaking O O\n3 O O\nMinutes O O\ntime O O\nto O O\ncomplete O O\n. O O\n\ncurrently O O\ni O O\nam O O\nshowing O O\na O O\npopup Name Name\nwith O O\nmessage O O\nSync Name Name\nis Name Name\nin Name Name\nprogress Name Name\nwhich O O\nforces O O\nthe O O\nuser O O\nto O O\nwait O O\nfor O O\ncompletion O O\n. O O\n\nNow O O\ni O O\nwant O O\nthe O O\nsync O O\nprocess O O\nto O O\nwork O O\nin O O\nbackground O O\nwithout O O\ndisturbing O O\nthe O O\nuser O O\n. O O\n\ni O O\nused O O\nhttps://github.com/katzer/cordova-plugin-background-mode O O\nbut O O\nthis O O\nis O O\nworking O O\nwhen O O\nmy O O\nwhole O O\napplication O O\nis O O\ngoing O O\nin O O\nbackground O O\n. O O\n\nIf O O\nthere O O\nis O O\na O O\nway O O\nto O O\nsolve O O\nmy O O\nproblem O O\nusing O O\nthis O O\nplugin O O\nplease O O\npost O O\nhere O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n\nI O O\nhave O O\nto O O\nadd O O\ntwo O O\ndigit O O\nstrings Name Name\n, O O\nmeaning O O\n1234 Name Name\n12+34 Name Name\n( O O\nat O O\nleast O O\nthat O O\n's O O\nwhat O O\ni O O\ngather O O\n) O O\n. O O\n\nI O O\nwrote O O\na O O\nprogram O O\nthat O O\ndoes O O\nthis O O\nexpect O O\nfor O O\none O O\nexception O O\n, O O\nthat O O\nis O O\nwhen O O\nthe O O\nlast O O\nnumber O O\ndoes O O\nn't O O\nhave O O\na O O\npair O O\nit O O\nwont O O\nadd O O\nproperly O O\n. O O\n\nHere O O\nis O O\nthe O O\ncode O O\ni O O\nhave O O\n: O O\n\nso O O\nbasically O O\nif O O\ni O O\nhave O O\n123 Name Name\nthe O O\nprogram O O\ndoes O O\n12+(30-48) Name Name\n, O O\ninstead O O\nof O O\n12+ Name Name\n3 Name Name\n. O O\n\nIve O O\nbeen O O\nsitting O O\non O O\nit O O\nfor O O\na O O\nwhile O O\n, O O\nand O O\ncant O O\nfigure O O\nout O O\nhow O O\nto O O\nfix O O\nthat O O\nissue O O\n, O O\nany O O\ntips O O\nor O O\nadvice O O\nwould O O\nbe O O\nwelcomed O O\n. O O\n\n( O O\nStrings Name Name\nlike O O\n1234 Name Name\nor O O\n4567 Name Name\nwill O O\ndo O O\n12+34 Name Name\nand O O\n45+67 Name Name\n) O O\n\nI O O\n'm O O\nusing O O\nd3 Name Name\nto O O\nadd O O\nsvg Name Name\ncircles Name Name\non O O\nleaflet Name Name\nmap Name Name\n. O O\n\nMy O O\nfiddle Name Name\nis O O\nhere O O\nhttp://jsfiddle.net/nextstopsun/C3U8g/ O O\n\nI O O\n've O O\nadded O O\na O O\nreset() Name Name\nfunction O O\nto O O\nmap O O\nviewreset Name Name\nevent O O\nto O O\ncalculate O O\ntransformation O O\nfor O O\nsvg Name Name\ng Name Name\nelement O O\ncontaining O O\nall O O\ncircles Name Name\n. O O\n\nThis O O\nfunction O O\nis O O\ncalled O O\non O O\nmap O O\nviewreset Name Name\nevent O O\n. O O\n\n( O O\nThe O O\ncode O O\nis O O\noriginally O O\nfrom O O\nthis O O\nexample O O\nhttp://bost.ocks.org/mike/leaflet/ O O\n) O O\n\nI O O\ncan O O\nsee O O\nthat O O\nthe O O\ntransformation O O\nparameters O O\nfor O O\ng Name Name\nelement O O\nare O O\nbeing O O\nrecalculated O O\n, O O\nbut O O\ncircles Name Name\nare O O\nn't O O\nrepositioned O O\n( O O\nor O O\nthey O O\nare O O\nrepositioned O O\nwrong O O\n) O O\nand O O\ndo O O\nn't O O\nalign O O\nwith O O\nthe O O\nmap O O\ntilelayer Name Name\n. O O\n\nEverything O O\nis O O\nok O O\nwhen O O\npaning O O\nmap Name Name\n, O O\nthough O O\n. O O\n\nWhat O O\nhas O O\nto O O\nbe O O\nchanged O O\nfor O O\nproper O O\nrepositioning O O\non O O\nzooming O O\n? O O\n\nIn O O\naddition O O\nto O O\ntransforming O O\nthe O O\ng Name Name\nelement O O\nthat O O\ncontains O O\nthe O O\ncircles Name Name\n, O O\nyou O O\nalso O O\nneed O O\nto O O\nreset O O\nthe O O\ncoordinates O O\nof O O\nthe O O\ncircles Name Name\nthemselves O O\n: O O\n\nUpdated O O\njsfiddle Name Name\nhere O O\n. O O\n\nGood O O\nmorning O O\nto O O\nall O O\n, O O\n\nWhat O O\nis O O\nthe O O\npreferred O O\nway O O\nto O O\nembed O O\nimages Name Name\n( O O\nand O O\nother O O\nmedia O O\nin O O\ngeneral O O\n) O O\nin O O\na O O\ncocoa Name Name\napplication O O\n? O O\n\nWindows Name Name\nexecutables O O\nhave O O\na O O\nresource O O\nsection O O\nthat O O\nallows O O\nyou O O\nto O O\nstore O O\narbitrary O O\ndata O O\nand O O\nextract O O\nit O O\nat O O\nruntime O O\n. O O\n\nIs O O\nthere O O\na O O\nsimilar O O\nmechanism O O\non O O\nMac Name Name\nOS Name Name\nX Name Name\n? O O\n\nMy O O\nprogram O O\nuses O O\nseveral O O\nicons Name Name\nand O O\nimages Name Name\n( O O\nstatusmenu Name Name\nicon Name Name\n, O O\nGUI Name Name\nbutton Name Name\nimages Name Name\netc O O\n) O O\nand O O\nI O O\nwould O O\nprefer O O\nto O O\nstore O O\nthem O O\ninside O O\nthe O O\napplication O O\nor O O\na O O\nresource O O\nlibrary O O\nrather O O\nthan O O\njust O O\ndistribute O O\nthem O O\nas O O\nplain O O\nfiles O O\n. O O\n\nThank O O\nyou O O\nvery O O\nmuch O O\n! O O\n\nAdding O O\nthem O O\nto O O\nthe O O\nresource Name Name\ndirectory O O\nis O O\nthe O O\nway O O\nto O O\ngo O O\nin O O\nthe O O\nvast O O\nmajority O O\nof O O\ncases O O\n.. O O\n. O O\nthis O O\nis O O\nthe O O\ndefault O O\nbehavior O O\n. O O\n\nIt O O\n's O O\ngood O O\nbecause O O\nyou O O\ncan O O\npostpone O O\ncreation O O\nand O O\nbecause O O\nthe O O\nsystem O O\nmakes O O\nimmutable O O\n, O O\ncached O O\n, O O\nreusable O O\ninstances O O\nfor O O\nyou O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nlike O O\nthat O O\n, O O\nyou O O\ncan O O\njust O O\nmake O O\na O O\nquick O O\ntool O O\nto O O\ngenerate O O\na O O\ndata O O\nrepresentation O O\nand O O\nemit O O\nthat O O\nto O O\na O O\nC Name Name\nfile O O\nwhich O O\nis O O\ncompiled O O\ninto O O\nyour O O\nprogram O O\n, O O\nthen O O\nuse O O\nthat O O\nas O O\nan O O\ninput O O\nto O O\nan O O\nimage Name Name\ncreator O O\ncall O O\n( O O\nassuming O O\nyou O O\nwant O O\nan O O\nNSImage Name Name\nor O O\nCGImage Name Name\nrepresentation O O\nof O O\nthat O O\n) O O\n. O O\n\nBut O O\nthat O O\n's O O\na O O\nbit O O\nextreme O O\n- O O\nperhaps O O\nyou O O\nwould O O\nfavor O O\nremoving O O\nthe O O\nfile O O\nextension O O\n( O O\nor O O\njust O O\nchanging O O\nit O O\nto O O\nsomething O O\natypical O O\n) O O\nand O O\nthen O O\ncopying O O\nit O O\nto O O\nthe O O\nresources Name Name\ndirectory O O\n? O O\n\nI O O\n'm O O\ntrying O O\nto O O\ncreate O O\nlist Name Name\nitem O O\nin O O\nSubiste O O\nusing O O\nSharePoint Name Name\nDeigner Name Name\n2013 Name Name\nCall O O\nHTTP O O\naction O O\n. O O\n\nI O O\nsuccesfuly O O\nset O O\nup O O\nthis O O\nsolution O O\nusing O O\nthis O O\ntip O O\n: O O\n\nhttp://mysharepointinsight.blogspot.com/2013/05/using-sharepoint-rest-services-from.html O O\n\nBut O O\nwhen O O\nI O O\ncreate O O\nlist Name Name\nin O O\nsubsite O O\nand O O\nchange O O\nurl O O\nto O O\ncall O O\nfrom O O\n\n/SITE/_api/web/lists/getbytitle('Test')/items O O\n\nto O O\n\n/SITE/18/_api/web/lists/getbytitle('Test')/items O O\n\n( O O\n18 Name Name\n- O O\nis O O\nname O O\nand O O\nURL O O\nof O O\nmy O O\nsubsite O O\n) O O\n\nAction O O\nis O O\nn't O O\ncreating O O\nitem O O\n. O O\n\nIn O O\nboth O O\nscenario O O\nI O O\n'm O O\nusing O O\nSP.Data.TestListItem Name Name\ntype O O\nin O O\nmetadata O O\n. O O\n\nEDIT O O\n: O O\nI O O\n've O O\nfound O O\nsolution O O\n- O O\nhttp://msdn.microsoft.com/en-us/library/jj822159.aspx O O\n\nWe O O\nhave O O\na O O\nSaaS O O\nweb O O\napp O O\n. O O\n\nWe O O\nhave O O\na O O\nwildcard O O\nSSL O O\ncert O O\non O O\nthe O O\nmain O O\ndomain O O\n: O O\n* Name Name\n.webapp.com Name Name\n\nCustomers O O\ncan O O\nadd O O\na O O\ncustom O O\ndomain O O\nto O O\ntheir O O\naccount O O\n, O O\nso O O\ninstead O O\nof O O\nclient.webapp.com Name Name\nthey O O\ncan O O\nsetup O O\na O O\nCNAME O O\nto O O\nhave O O\n: O O\nclientdomain.com Name Name\n\nWe O O\nhave O O\nsome O O\nclients Name Name\nthat O O\nwant O O\nto O O\nadd O O\na O O\nSSL O O\ncert O O\nto O O\ntheir O O\ncustom O O\ndomains O O\n. O O\n\nWebapp O O\nalready O O\nruns O O\nhttps://client.webapp.com O O\nbut O O\nthey O O\nwant O O\nhttps://clientdomain.com O O\n\nWe O O\nare O O\nusing O O\napache Name Name\n( O O\nvia O O\nPlesk Name Name\n) O O\non O O\nthe O O\nmain O O\nserver Name Name\n. O O\n\nIs O O\nit O O\npossible O O\nto O O\nachieve O O\nthis O O\n? O O\n\nI O O\n'm O O\ntrying O O\nto O O\nimplement O O\nprocedural O O\ngeneration O O\nin O O\nmy O O\ngame O O\n. O O\n\nI O O\nwant O O\nto O O\nreally O O\ngrasp O O\nand O O\nunderstand O O\nall O O\nof O O\nthe O O\nalgorithms O O\nnessecary O O\nrather O O\nthan O O\nsimply O O\ncopying/pasting O O\nexisting O O\ncode O O\n. O O\n\nIn O O\norder O O\nto O O\ndo O O\nthis O O\nI O O\n've O O\nattempted O O\nto O O\nimplement O O\n1D O O\nmidpoint O O\ndisplacement O O\non O O\nmy O O\nown O O\n. O O\n\nI O O\n've O O\nused O O\nthe O O\ninformation O O\nhere O O\nto O O\nwrite O O\nand O O\nguide O O\nmy O O\ncode O O\n. O O\n\nBelow O O\nis O O\nmy O O\ncompleted O O\ncode O O\n, O O\nit O O\ndoes O O\nn't O O\nthrow O O\nan O O\nerror O O\nbut O O\nthat O O\nresults O O\ndo O O\nn't O O\nappear O O\ncorrect O O\n. O O\n\nWhere O O\nexactly O O\nhave O O\nI O O\nmade O O\nmistakes O O\nand O O\nhow O O\nmight O O\nI O O\ncorrect O O\nthem O O\n? O O\n\nI O O\n'm O O\ngetting O O\nresults O O\nlike O O\nthis O O\n: O O\n\nBut O O\nI O O\nwas O O\nexpecting O O\nresults O O\nlike O O\nthis O O\n: O O\n\nThe O O\nanswer O O\nis O O\nvery O O\nsimple O O\nand O O\nby O O\nthe O O\nway O O\nI O O\n'm O O\nimpressed O O\nyou O O\nmanaged O O\nto O O\ndebug O O\nall O O\nthe O O\npotential O O\noff-by-one O O\nerrors O O\nin O O\nyour O O\ncode O O\n. O O\n\nThe O O\nfollowing O O\nline O O\nis O O\nwrong O O\n: O O\n\nYou O O\ncorrectly O O\ncompute O O\nthe O O\ncenter Name Name\nindex O O\nand O O\nchange Name Name\namount O O\nbut O O\nyou O O\nmissed O O\nthat O O\nthe O O\nchange Name Name\nshould O O\nbe O O\napplied O O\nto O O\nthe O O\nmidpoint O O\nin O O\nterms O O\nof O O\nheight O O\n. O O\n\nThat O O\nis O O\n: O O\n\nI O O\n'm O O\nsure O O\nyou O O\nget O O\nthe O O\nidea O O\n. O O\n\nThe O O\nproblem O O\nseems O O\nto O O\nbe O O\nthat O O\nyou O O\nare O O\nchanging O O\nonly O O\nthe O O\nmidpoint O O\nof O O\neach O O\nline O O\nsegment O O\n, O O\nrather O O\nthan O O\nchanging O O\nthe O O\nrest O O\nof O O\nthe O O\nline O O\nsegment O O\nin O O\nproportion O O\nto O O\nits O O\ndistance O O\nfrom O O\neach O O\nend O O\nto O O\nthe O O\nmidpoint O O\n. O O\n\nThe O O\nfollowing O O\ncode O O\nappears O O\nto O O\ngive O O\nyou O O\nsomething O O\nmore O O\nlike O O\nwhat O O\nyou O O\n're O O\nlooking O O\nfor O O\n: O O\n\nWhen O O\nrun O O\nthis O O\nway O O\n, O O\nit O O\nproduces O O\nthe O O\nfollowing O O\nresult O O\n: O O\n\nWithin O O\na O O\nrequest O O\non O O\nan O O\nApiController Name Name\n, O O\nI O O\n'm O O\ntracking O O\nthe O O\nduration O O\nof O O\nawaiting O O\nthe O O\nSql Name Name\nConnection Name Name\nto O O\nopen O O\n. O O\n\nIf O O\nmy O O\nrequest O O\nis O O\nnot O O\ncalled O O\nfor O O\nat O O\nleast O O\n5 O O\nminutes O O\n, O O\nthen O O\nany O O\nnew O O\ncall O O\nwill O O\nsee O O\nthe O O\nduration O O\nof O O\nOpenAsync Name Name\nbe O O\nhuge O O\n( O O\nc O O\n. O O\n3s O O\n) O O\ninstead O O\nof O O\nimmediate O O\n. O O\n\nI O O\n'd O O\nlike O O\nto O O\nunderstand O O\nthe O O\nreason O O\nto O O\neradicate O O\nthat O O\ncrazy O O\nslowness O O\n. O O\n\nUPDATE O O\n\nI O O\ncreated O O\nan O O\nendpoint O O\njust O O\nto O O\nopen O O\nthe O O\nSqlConnection Name Name\n. O O\n\nIf O O\nI O O\nwait O O\nmore O O\nthan O O\n5 O O\nminutes O O\nthen O O\ncall O O\nthat O O\nOpenConnection Name Name\nendpoint O O\nthen O O\ncall O O\nany O O\nanother O O\nrequest O O\n, O O\nthe O O\nOpenConnection Name Name\nwill O O\nincur O O\nthe O O\nwaiting O O\ncost O O\nmentioned O O\nabove O O\nbut O O\nthe O O\nrequest O O\nwill O O\nnot O O\n. O O\n\nHence O O\n, O O\nI O O\n've O O\nscheduled O O\na O O\njob O O\non O O\nAzure Name Name\nto O O\nrun O O\nevery O O\nminute O O\nand O O\ncall O O\nthe O O\nOpenConnection Name Name\nendpoint O O\n. O O\n\nHowever O O\n, O O\nwhen O O\nI O O\nmake O O\nrequests O O\nfrom O O\nmy O O\nhttp O O\nclient Name Name\n, O O\nI O O\nincur O O\nthe O O\nwaiting O O\ntime O O\n. O O\n\nAs O O\nif O O\nopened O O\nthe O O\nSqlConnection Name Name\nwas O O\nsomehow O O\nlinked O O\nto O O\nthe O O\nhttp O O\nclient Name Name\nip. O O\n. O O\n\nAlso O O\n, O O\nthat O O\n5 O O\nminutes O O\nwindows O O\nis O O\ntypical O O\nof O O\nDNS O O\nTTL. O O\n. O O\n\nHowever O O\n3s O O\nfor O O\na O O\nDNS O O\nlookup O O\nof O O\nthe O O\nDatabase O O\nendpoint O O\nis O O\ntoo O O\nlong O O\n. O O\n\nIt O O\nca O O\nn't O O\nbe O O\nthat O O\n. O O\n\nUPDATE O O\n2 O O\n\nTime O O\nobserved O O\nat O O\nthe O O\nhtt O O\nclient Name Name\nlevel O O\nseems O O\nto O O\nbe O O\nthe O O\nresult O O\nof O O\nboth O O\nawaiting O O\nfor O O\nthe O O\nconnection O O\nas O O\nwell O O\nas O O\nsome O O\nother O O\nlatencies O O\n( O O\ndns O O\nlookup O O\n? O O\n) O O\n. O O\n\nHere O O\nis O O\na O O\ntable O O\nsummarizing O O\nwhat O O\nI O O\nobserve O O\n: O O\n\nUPDATE O O\n3 O O\n\nThe O O\ndifference O O\nbetween O O\nrow O O\n3 O O\nand O O\n4 O O\nof O O\nmy O O\ntable O O\nis O O\ntime O O\nspent O O\nin O O\nTCP/IP O O\nConnect O O\nand O O\nHTTPS O O\nHandshake O O\naccording O O\nto O O\nFiddler Name Name\n. O O\n\nLet O O\n's O O\nnot O O\nfocus O O\non O O\nit O O\non O O\nthat O O\npost O O\nbut O O\nonly O O\non O O\nthe O O\ntime O O\nspent O O\nwaiting O O\nfor O O\nthe O O\nSqlConnection Name Name\nto O O\nopen O O\n. O O\n\nUPDATE O O\n4 O O\n\nActually O O\nI O O\nthink O O\nboth O O\ntwo O O\nwaiting O O\ntimes O O\nhave O O\nthe O O\nsame O O\nreason O O\n. O O\n\nThe O O\nserver Name Name\nneeds O O\nto O O\n\" O O\nkeep O O\nalive O O\n\" O O\nits O O\nconnection O O\nto O O\nthe O O\ndatabase Name Name\nand O O\nthe O O\nclient Name Name\nneeds O O\nto O O\n\" O O\nkeep O O\nalive O O\n\" O O\nits O O\nconnection O O\nto O O\nthe O O\nserver Name Name\n. O O\n\nUPDATE O O\n5 O O\n\nI O O\nhad O O\na O O\njob O O\nrunning O O\nevery O O\n4 O O\nminutes O O\nto O O\nopen O O\nthe O O\nSqlConnection Name Name\nbut O O\nonce O O\nin O O\na O O\nwhile O O\nit O O\nwas O O\nincurring O O\nthe O O\nwaiting O O\ncost O O\n. O O\n\nSo O O\nI O O\nthink O O\nthe O O\ninactivity O O\ntime O O\nis O O\n4 O O\nminutes O O\nnot O O\n5 O O\n( O O\nhence O O\nI O O\nupdated O O\nthis O O\npost O O\ntitle O O\n) O O\n. O O\n\nSo O O\nI O O\nupdated O O\nmy O O\nscheduled O O\njob O O\nto O O\nrun O O\nevery O O\nminute O O\n. O O\n\nthen O O\nI O O\nrealised O O\nit O O\nwas O O\nstill O O\nincurring O O\nthe O O\nwaiting O O\ncost O O\nbut O O\nregularly O O\nevery O O\n30 O O\nminutes O O\n( O O\nhence O O\nI O O\nupdated O O\nthis O O\npost O O\ntitle O O\n) O O\n. O O\n\nThese O O\ntwo O O\ntimes O O\nstrangely O O\ncorrelates O O\nwith O O\nthose O O\nof O O\nAzure Name Name\nLoad Name Name\nBalancer Name Name\nIdle O O\nTimeout O O\n. O O\n\nI O O\nwant O O\nto O O\nmake O O\nmy O O\nadmin O O\nfolder O O\nprotected O O\nwith O O\nhtaccess Name Name\nfile.Here O O\nis O O\nmy O O\nhtaccess Name Name\nfile O O\n\nI O O\nmade O O\nhtpasswd Name Name\nfile O O\nand O O\nhad O O\npassword O O\nencrypted O O\n. O O\n\nWhen O O\ni O O\ntry O O\nto O O\naccess O O\nthe O O\nfolder Name Name\nit O O\ndoes O O\nn't O O\naccept O O\nmy O O\npassword O O\nand O O\nopens O O\nanother O O\nlogin Name Name\n, O O\nbut O O\nwhen O O\ni O O\nset O O\npassword O O\nto O O\nbe O O\nadmin O O\n, O O\nwithout O O\nencryption O O\n, O O\nit O O\nworks O O\n. O O\n\nDoes O O\nanybody O O\nhave O O\nidea O O\nwhy O O\nthis O O\nis O O\nhappening O O\n? O O\n\nAnd O O\nif O O\nit O O\nis O O\nimportant O O\n, O O\nhere O O\nis O O\nmy O O\napache Name Name\nerror O O\nlog O O\n\nI O O\nam O O\nstill O O\nstruggling O O\nwith O O\nR Name Name\nplots Name Name\nand O O\ncolors O O\n- O O\n- O O\nsome O O\nresults O O\nare O O\nas O O\nI O O\nexpected O O\n, O O\nsome O O\nnot O O\n. O O\n\nI O O\nhave O O\na O O\n2-million O O\npoint O O\ndata O O\nset O O\n, O O\ngenerated O O\nby O O\na O O\nsimulation O O\nprocess O O\n. O O\n\nThere O O\nare O O\nseveral O O\nvariables O O\non O O\nthe O O\ndataset O O\n, O O\nbut O O\nI O O\nam O O\ninterested O O\non O O\nthree O O\nand O O\non O O\na O O\nfactor O O\nthat O O\ndescribe O O\nthe O O\nclass O O\nfor O O\nthat O O\ndata O O\npoint O O\n. O O\n\nHere O O\nis O O\na O O\nshort O O\nsnippet O O\nof O O\ncode O O\nthat O O\nreads O O\nthe O O\npoints O O\nand O O\nget O O\nsome O O\nbasic O O\nstatistics O O\non O O\nit O O\n: O O\n\nThat O O\ngives O O\nme O O\n\n( O O\nthe O O\ninput O O\nfile O O\nis O O\nquite O O\nlarge O O\n, O O\ncannot O O\nadd O O\nit O O\nas O O\na O O\nlink O O\n) O O\n\nI O O\nwant O O\nto O O\nsee O O\nthese O O\npoints O O\nin O O\na O O\nscatterplot O O\nmatrix Name Name\n, O O\nso O O\nI O O\nuse O O\nthe O O\ncode O O\n\nHere O O\nis O O\nthe O O\nresult O O\n. O O\n\nAs O O\nexpected O O\n, O O\npoints O O\nfrom O O\nclass O O\nE Name Name\nare O O\nin O O\nvast O O\nmajority O O\n, O O\nso O O\nI O O\ncannot O O\nsee O O\npoints O O\nof O O\nother O O\nclasses O O\n. O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nI O O\nexpected O O\nthe O O\npoints O O\nto O O\nbe O O\nplotted O O\nin O O\nmagenta O O\n( O O\nclasses O O\nare O O\nA Name Name\n, O O\nB Name Name\n, O O\nC Name Name\n, O O\nD Name Name\n, O O\nE Name Name\n, O O\nN Name Name\n; O O\ncolors O O\nare O O\nred Name Name\n, O O\ngreen Name Name\n, O O\nblue Name Name\n, O O\ncyan Name Name\n, O O\nmagenta Name Name\n, O O\nyellow Name Name\n) O O\n. O O\n\nWhen O O\nI O O\ndo O O\nthe O O\nplot O O\nclass O O\nby O O\nclass O O\nit O O\nworks O O\nas O O\nexpected O O\n, O O\nsee O O\ntwo O O\nexamples O O\n: O O\n\ngives O O\nthis O O\n: O O\n\nAnd O O\nthis O O\nsnippet O O\nof O O\ncode O O\n\ngives O O\nthis O O\n: O O\n\nThis O O\nalso O O\nseems O O\nas O O\nexpected O O\n: O O\na O O\nplot Name Name\nof O O\npoints O O\nof O O\nall O O\nclasses O O\nexcept O O\nE Name Name\n. O O\n\nThe O O\nquestion O O\nis O O\n, O O\nwhy O O\non O O\nthe O O\nfirst O O\nplot Name Name\nthe O O\npoints O O\nare O O\nblue Name Name\ninstead O O\nof O O\nmagenta Name Name\n? O O\n\nThis O O\nquestion O O\nis O O\nsomehow O O\nsimilar O O\nto O O\nColor O O\ngradient O O\nfor O O\nelevation O O\ndata O O\nin O O\na O O\nXYZ O O\nplot O O\nwith O O\nR Name Name\nand O O\nLattice Name Name\nbut O O\nnow O O\nI O O\nam O O\nusing O O\nfactors O O\nto O O\ndetermine O O\ncolors O O\non O O\nthe O O\nscatterplot O O\n. O O\n\nI O O\n've O O\nalso O O\nread O O\nChanging O O\ndefault O O\ncolours O O\nof O O\na O O\nlattice O O\nplot O O\nby O O\nfactor O O\n- O O\n- O O\ngrouping O O\nplots O O\nby O O\na O O\nfactor O O\n( O O\nusing O O\nthe O O\nparameter O O\ngroups.factor Name Name\n= Name Name\nmyData$Class Name Name\n) O O\ndoes O O\nnot O O\nsolve O O\nmy O O\nproblem O O\n, O O\nplots Name Name\nare O O\nstill O O\nin O O\nblue O O\nbut O O\nseparated O O\nby O O\nclass O O\n. O O\n\nEdited O O\nto O O\nadd O O\nmore O O\ninformation O O\n: O O\nthis O O\nfake O O\ndata O O\nset O O\ncan O O\nbe O O\nused O O\nfor O O\ntests O O\n. O O\n\nWhen O O\nI O O\nplot O O\nit O O\nwith O O\n\nI O O\nget O O\nthe O O\nplot Name Name\nbelow O O\n. O O\n\nAll O O\npoints O O\nare O O\nin O O\nblue Name Name\n. O O\n\nJeremyCG O O\nfound O O\nthe O O\nproblem O O\n. O O\n\nHere O O\nis O O\nthe O O\ncomplete O O\ncode O O\nthat O O\nworks O O\n, O O\nfor O O\nfuture O O\nreference O O\n. O O\n\nThat O O\nshowed O O\nthe O O\nissue O O\n: O O\n\nClass O O\nmust O O\nbe O O\na O O\nfactor O O\n. O O\n\nThis O O\nsolved O O\nit O O\n: O O\n\nThen O O\nplot O O\nit O O\n: O O\n\nHere O O\nis O O\nthe O O\nresult O O\n: O O\n\nThanks O O\n@jeremycg O O\n! O O\n\nI O O\n'm O O\non O O\nUbuntu Name Name\n14.04 Name Name\nwith O O\ncuda Name Name\ntoolkit Name Name\n6.5 Name Name\n, O O\nnvidia Name Name\ndriver Name Name\nversion O O\n340.29 Name Name\n. O O\n\nMy O O\napplication O O\nregisters O O\na O O\npixel O O\nbuffer O O\nfrom O O\nopenGL Name Name\nand O O\nwrites O O\nan O O\nimage Name Name\nto O O\nthe O O\nbuffer O O\nevery O O\nloop O O\n, O O\ncopies O O\nthe O O\nPBO O O\nto O O\na O O\ntexture O O\nusing O O\nglTexSubImage2D Name Name\n, O O\nand O O\ndraws O O\nthe O O\ntexture O O\n. O O\n\nThis O O\nall O O\nworks O O\nproperly O O\nuntil O O\nI O O\nchange O O\nmy O O\nimage-generation Name Name\nkernel Name Name\n, O O\nthen O O\nI O O\ngdb Name Name\nreports O O\na O O\nsegmentation O O\nfault O O\nin O O\ncudaGraphicsGLRegisterBuffer Name Name\n. O O\n\nMy O O\nguess O O\nis O O\nthis O O\nis O O\na O O\nbug O O\n, O O\nbecause O O\nthe O O\ncuda Name Name\nkernel Name Name\nis O O\ncompletely O O\nunrelated O O\nto O O\ncudaGraphicsGLRegisterBuffer Name Name\n, O O\nwhich O O\nis O O\ncalled O O\nbefore O O\nany O O\nprocessing O O\n. O O\n\nMakefile Name Name\n\nmain.cu Name Name\n\nGLdisplay.cu Name Name\n\nGLdisplay.h Name Name\n\nvert.glsl Name Name\n\nfrag.glsl Name Name\n\nUpdating O O\nto O O\nnvidia Name Name\ndisplay Name Name\ndriver Name Name\n346.47 Name Name\nsolved O O\nmy O O\nproblem O O\ncompletely O O\n. O O\n\nFor O O\nthe O O\nunsure O O\n, O O\nrun O O\nnvidia-smi Name Name\nin O O\na O O\nterminal Name Name\nwindow O O\n, O O\nand O O\nif O O\nyou O O\ndo O O\nn't O O\nsee O O\nNVIDIA-SMI Name Name\n346.xx Name Name\n( O O\nxx Name Name\nbeing O O\nan O O\narbitrary O O\nnumber O O\n) O O\n, O O\nupdate O O\nwith O O\nthe O O\nnewest O O\ndriver O O\navailable O O\nfrom O O\nnvidia Name Name\n. O O\n\nAt O O\nthe O O\ntime O O\nof O O\nwriting O O\nthis O O\n, O O\nCUDA Name Name\ntoolkit Name Name\n6.5 Name Name\nships O O\nwith O O\nan O O\noutdated O O\ngraphics Name Name\ndriver Name Name\n. O O\n\nYour O O\ncode O O\nlacks O O\nerror O O\ncondition O O\nchecking O O\n. O O\n\nFirst O O\nand O O\nforemost O O\nI O O\nsuggest O O\nyou O O\ncheck O O\nthe O O\nerror O O\ncode O O\nstatus O O\nafter O O\neach O O\nand O O\nevery O O\nOpenGL Name Name\nand O O\nCUDA Name Name\ncall O O\n. O O\n\nI O O\n've O O\ngot O O\na O O\nvery O O\nstrong O O\nhunch O O\nwhat O O\nthe O O\nproblem O O\nis O O\nand O O\nadding O O\nthe O O\nerror O O\nchecking O O\nwill O O\ntell O O\nif O O\nthis O O\nis O O\nthe O O\ncase O O\n. O O\n\nSo O O\n: O O\nI O O\nsee O O\nthat O O\nyou O O\nnever O O\nproperly O O\nunbind O O\nthe O O\nPBO O O\nfrom O O\nOpenGL Name Name\nbefore O O\ntrying O O\nto O O\nmap O O\nit O O\nto O O\na O O\nCUDA Name Name\npointer Name Name\n. O O\n\nDepending O O\non O O\nthe O O\npath O O\nyour O O\nprogram O O\ntakes O O\nthis O O\nmay O O\nresult O O\nin O O\nthe O O\nPBO O O\nactually O O\nnot O O\ngetting O O\nmapped O O\n, O O\nhence O O\ngiving O O\nyou O O\nan O O\ninvalid O O\npointer Name Name\nthat O O\nif O O\naccessed O O\n, O O\nfrom O O\nthe O O\nCUDA Name Name\nkernel Name Name\nor O O\nthe O O\nhost O O\n, O O\nwill O O\nresult O O\nin O O\na O O\nsegfault O O\n. O O\n\nTo O O\npin O O\ndown O O\nthe O O\nproblem O O\ncheck O O\nthe O O\nerror O O\nstatus O O\nof O O\nevery O O\nOpenGL Name Name\nand O O\nCUDA Name Name\noperation O O\n. O O\n\nCUDA Name Name\nwill O O\ntell O O\nyou O O\nif O O\nit O O\nca O O\nn't O O\nmap O O\na O O\nOpenGL Name Name\nresource O O\n, O O\nfor O O\nwhatever O O\nreason O O\n( O O\nlike O O\nthe O O\nresource O O\nstill O O\nbeing O O\nbound O O\nto O O\na O O\nOpenGL Name Name\nfunctional O O\nunit O O\n) O O\n. O O\n\nI O O\nam O O\nnew O O\nto O O\ngwt Name Name\nand O O\nin O O\nmy O O\napplication O O\nI O O\nhave O O\nto O O\ndisplay O O\na O O\nsvg Name Name\nfile O O\nwhich O O\nI O O\nget O O\nfrom O O\nserver Name Name\n. O O\n\nThe O O\nquestion O O\nis O O\nI O O\nam O O\nable O O\nto O O\nget O O\nthe O O\nsvg Name Name\nfile O O\nfrom O O\nserver Name Name\nside O O\nand O O\ndisplay O O\nusing O O\nHTMLPanel Name Name\n. O O\n\nBut O O\nevents O O\nare O O\nnot O O\ngetting O O\nfired.Like O O\nmouse Name Name\nover O O\n, O O\ndrag O O\nand O O\ndrop O O\nevents Name Name\netc O O\nwhich O O\nare O O\ninside O O\n\nthe O O\nsvg Name Name\nfile O O\nthey O O\nare O O\nnot O O\ngetting O O\nfired O O\n. O O\n\nPlease O O\nlet O O\nme O O\nknow O O\nhow O O\ncan O O\nI O O\nsolve O O\nthis O O\nissue O O\n. O O\n\nbelow O O\nis O O\nmy O O\ncode O O\n\nimage Name Name\n= Name Name\nnew Name Name\nHTMLPanel(response.getText()) Name Name\n; Name Name\n\nrootPanel.add(image) Name Name\n; Name Name\n\nThanks O O\nin O O\nadvance O O\n, O O\n\nPradeep O O\n\nI O O\n'm O O\nguessing O O\nyou O O\nare O O\ntrying O O\nto O O\ndisplay O O\nthe O O\nSVG Name Name\nXML Name Name\nor O O\na O O\nData O O\nURI O O\nas O O\nHTML Name Name\n? O O\n\nIf O O\nso O O\n, O O\nthat O O\ntext O O\nwill O O\nnot O O\ngenerate O O\nany O O\nevents O O\n, O O\nonly O O\nthe O O\nHTMLPanel Name Name\nwill O O\n. O O\n\nThe O O\nfollowing O O\ncode O O\nshould O O\nallow O O\nyou O O\nto O O\nadd O O\na O O\nhandler O O\nto O O\nthe O O\nHTMLPanel Name Name\n: O O\n\nAttach O O\nother O O\nevent Name Name\nhandlers O O\nthe O O\nsame O O\nway O O\n. O O\n\nI O O\n'm O O\ncurrently O O\ncreating O O\nsharded O O\ntables Name Name\ndaily O O\nusing O O\nthe O O\nPython Name Name\nAPI Name Name\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\nadd O O\nthe O O\ncomments O O\nfor O O\nthe O O\ntable Name Name\n's O O\ncolumns Name Name\nwhen O O\ncreating O O\nthe O O\ntable Name Name\n? O O\n\nI O O\ncould O O\nn't O O\nsee O O\nit O O\nin O O\nthe O O\ndoc O O\nbut O O\nit O O\nmight O O\nstill O O\nbe O O\nimplemented O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nFrom O O\nthe O O\nREST Name Name\nAPI Name Name\nfor O O\nBigQuery Name Name\ndocumentation O O\n, O O\ntables.Insert Name Name\ntakes O O\na O O\ntable Name Name\nresource O O\n, O O\nand O O\nin O O\nthe O O\nschema.fields[].description Name Name\nproperty O O\n, O O\nyou O O\ncan O O\nput O O\nin O O\na O O\ndescription O O\n. O O\n\nI O O\n'm O O\nthinking O O\non O O\nmake O O\nan O O\napp O O\nBundle O O\non O O\nApp Name Name\nStore Name Name\nwith O O\nApps O O\nwhich O O\nare O O\nfree O O\n. O O\n\nIt O O\n's O O\npossible O O\nto O O\ncreate O O\na O O\nfree O O\napp O O\nbundle O O\non O O\nApp Name Name\nStore Name Name\n? O O\n\nAs O O\nfar O O\nI O O\ncan O O\nsee O O\n, O O\nminimum O O\nprice O O\noption O O\nis O O\nTier O O\n1 O O\n( O O\nnot O O\nTier O O\n0 O O\n) O O\nand O O\nApple Name Name\ntalks O O\nabout O O\n' O O\nreduced O O\nprice O O\npack O O\n' O O\n, O O\nso O O\nit O O\nseems O O\nto O O\nbe O O\nno O O\noption O O\nto O O\ngroup O O\nseveral O O\nfree O O\napps O O\nin O O\na O O\nfree O O\nApple Name Name\nBundle O O\n. O O\n\nThanks O O\n, O O\n\nNo O O\n. O O\n\nSee O O\n: O O\ndocumentation O O\n\nAs O O\nfor O O\nthe O O\nother O O\nanswers/comments O O\n, O O\nTier-0 O O\nbundles O O\nare O O\nnot O O\npossible O O\nat O O\nthe O O\nmoment O O\n. O O\n\nDespite O O\nthis O O\n, O O\nyou O O\nstill O O\ncan O O\ngo O O\nahead O O\nand O O\ncreate O O\na O O\nbundle O O\nof O O\nfree O O\napps O O\n: O O\n\nthis O O\nwill O O\nbe O O\ncreated O O\n, O O\ncan O O\neven O O\ngo O O\nthrough O O\nthe O O\nreview O O\nand O O\nbe O O\napproved O O\n, O O\nbut O O\nit O O\nwo O O\nn't O O\nbe O O\nmade O O\navailable O O\nto O O\nthe O O\nstore O O\nbecause O O\n\" O O\nyou O O\nmust O O\nchoose O O\na O O\ncompatible O O\nprice O O\n\" O O\n( O O\nand O O\nyou O O\nca O O\nn't O O\nask O O\nfor O O\n$1 O O\n, O O\na.k.a O O\n. O O\n\ntier-1 O O\n, O O\nfor O O\na O O\nbundle O O\nof O O\nfree O O\napps O O\n) O O\n. O O\n\nI O O\n've O O\ncreated O O\na O O\nradar O O\non O O\nthe O O\nmatter O O\n: O O\nif O O\nyou O O\nalso O O\nagree O O\nthat O O\nfree O O\nbundles O O\nshould O O\nexist O O\n, O O\nplease O O\nfeel O O\nfree O O\nto O O\ndupe O O\nit O O\nat O O\nbugreport.apple.com O O\n. O O\n\nMe O O\nagain O O\n! O O\n\nHere O O\nis O O\nmy O O\nmodel O O\n\nhere O O\nare O O\nmy O O\nindex Name Name\nand O O\nbrowse Name Name\ncontrollers O O\n\nAt O O\nthe O O\nmoment O O\nmy O O\nindex Name Name\nis O O\ngrouping O O\nevents O O\nby O O\ndate O O\nand O O\nreturning O O\nhow O O\nmany O O\nthere O O\nare O O\nconnected O O\nwith O O\na O O\ncertain O O\ndate O O\n. O O\n\nI O O\nwant O O\nto O O\nadda O O\nbrowse Name Name\nlink Name Name\nwhich O O\nwill O O\nlist O O\nthe O O\nevents O O\nassociated O O\nwith O O\na O O\ndate O O\n. O O\n\nI O O\nca O O\nn't O O\nseem O O\nto O O\ncompare O O\nDateTime Name Name\n's O O\nin O O\nmy O O\nlinq Name Name\nquery O O\n, O O\neverything O O\nI O O\ntry O O\njust O O\nreturns O O\nblank O O\n. O O\n\nAny O O\nhelp O O\nis O O\nGREATLY O O\nappreciated O O\nyou O O\nbeautiful O O\npeople O O\nyou O O\n! O O\n\nThanks O O\n! O O\n\nupdate O O\n: O O\n\nHey O O\n! O O\n\nGot O O\nit O O\nworking O O\n\nHere O O\n;s O O\nmy O O\nnew O O\ncontroller O O\n; O O\n\nAnd O O\nwhat O O\ndid O O\nthe O O\ntrick O O\n, O O\nin O O\nmy O O\nactionlink Name Name\nin O O\nmy O O\nview O O\n... O O\n. O O\n\nThanks O O\nfor O O\nyou O O\nhelp O O\n! O O\n\n! O O\n\nSince O O\nboth O O\n' O O\nstart Name Name\n' O O\nand O O\n' O O\nday Name Name\n' O O\nare O O\nof O O\ntype O O\nDateTime Name Name\n, O O\nthe O O\ncomparer O O\non O O\nthem O O\nis O O\ngoing O O\nto O O\ncheck O O\neach O O\nbit O O\nfor O O\na O O\nfull O O\nDateTime Name Name\nobject O O\n. O O\n\nIf O O\nyou O O\n're O O\njust O O\ntrying O O\nto O O\nbrowse Name Name\nfor O O\nthe O O\nday O O\n, O O\nand O O\nnot O O\nthe O O\nexact O O\nmillisecond O O\nof O O\na O O\nDateTime Name Name\n, O O\ntry O O\n: O O\n\nIt O O\n's O O\nalso O O\na O O\npretty O O\ngood O O\nidea O O\nto O O\ndo O O\nsome O O\nnull Name Name\nchecking O O\non O O\nthose O O\nnullable O O\nfields O O\nas O O\nwell O O\n. O O\n\nI O O\nam O O\nusing O O\nmethods O O\nto O O\nserialize Name Name\nand O O\nde-serialize Name Name\nobjects O O\nto O O\nbinary Name Name\nfile O O\nthat O O\nI O O\nhave O O\nfound O O\ndescribed O O\nand O O\ndiscussed O O\nhere O O\non O O\nstackoverflow Name Name\n. O O\n\namong O O\nothers O O\nin O O\nfollowing O O\nlink O O\n: O O\nhttps://stackoverflow.com/questions/21080839/pulling-objects-from-binary-file-and-putting-in-listt O O\nThe O O\nserialisation O O\nprocess O O\nis O O\nworking O O\nfine O O\n, O O\nI O O\nsee O O\nthe O O\nfile Name Name\ngrowing O O\nwhen O O\nobjects O O\nare O O\nappended O O\nto O O\nit O O\nand O O\nwhen O O\nreading O O\nwith O O\ndeserialization O O\nthe O O\nproblem O O\nis O O\nthat O O\nI O O\nonly O O\nget O O\nthe O O\npart O O\nof O O\nthe O O\nlist Name Name\nthat O O\nwas O O\nwritten O O\nin O O\nthe O O\nfirst O O\nwrite Name Name\nto O O\nfile Name Name\n. O O\n\nThe O O\ndata O O\nretrieved O O\nseem O O\ncorrect O O\n, O O\nbut O O\nI O O\ndo O O\nnot O O\nget O O\nto O O\nread Name Name\nbeyond O O\nthe O O\nfirst O O\nnumber O O\nof O O\nobjects O O\nthat O O\nwere O O\nin O O\nthe O O\nlist Name Name\nin O O\nthe O O\nfirst O O\n\" O O\nwrite Name Name\n\" O O\noperation O O\n. O O\n\nit O O\nis O O\nlike O O\nthe O O\nfile Name Name\nposition O O\nis O O\nalways O O\nset O O\nto O O\nzero Name Name\n. O O\n\ncan O O\nthe O O\nread Name Name\noperation O O\nbe O O\nlooped O O\nor O O\ncontrolled O O\nin O O\nany O O\nway O O\nto O O\nforced O O\nit O O\nto O O\nread Name Name\nthe O O\nentire O O\nfile Name Name\n? O O\n\nAppreciate O O\nyour O O\ncomments O O\non O O\nthis O O\n\nThor O O\n\nI O O\nsolved O O\nthe O O\nissue O O\nafter O O\nreading O O\na O O\npost O O\nfrom O O\nFateme O O\nShirmohammadi O O\non O O\nStackoverflow Name Name\n. O O\n\nThe O O\nsolution O O\nis O O\nto O O\ncheck O O\nwhere O O\nin O O\nthe O O\nstream Name Name\nthe O O\n\" O O\nreader O O\n\" O O\nis O O\nand O O\nloop O O\nuntil O O\nit O O\nreaches O O\nthe O O\nend O O\nor O O\nlength O O\nof O O\nthe O O\nstream Name Name\n. O O\n\nIn O O\neach O O\niteration O O\nyou O O\nappend O O\nthe O O\nrange O O\nto O O\nthe O O\nlist Name Name\n. O O\n\nSee O O\nthe O O\nchanged O O\nread() Name Name\nmethod O O\nattached O O\n; O O\n\nI O O\nshould O O\ngive O O\ncredit O O\nto O O\nladenedge O O\nand O O\nMarc O O\nGravell O O\nwho O O\nanswered O O\nto O O\nFateme O O\n's O O\nquestions O O\n. O O\n\nStackoverflow Name Name\nis O O\nrely O O\na O O\ngreat O O\nresource O O\n. O O\n\nThor O O\nP O O\n\nI O O\n'm O O\nusing O O\nPostgres Name Name\n. O O\n\nI O O\nhave O O\na O O\ntable Name Name\nof O O\nArtices O O\nin O O\nmy O O\ndatabase O O\n, O O\nwith O O\na O O\ncolumn Name Name\nurl Name Name\nfor O O\nurl O O\nslugs O O\n. O O\n\nThese O O\nare O O\nso O O\nthat O O\nI O O\ncan O O\ndisplay O O\nthe O O\narticles O O\nin O O\nthat O O\ntable Name Name\non O O\na O O\nwebsite O O\nas O O\nnot O O\n\" O O\nexample.com/23323 Name Name\n\" O O\nbut O O\ninstead O O\nas O O\n\" O O\nexample.com/Funny_Thing_Happened_to_Me Name Name\n\" O O\n. O O\n\nThis O O\nwas O O\nstraightforward O O\nenough O O\nto O O\nimplement O O\n, O O\nand O O\nthen O O\nas O O\nthe O O\nnumber O O\nof O O\narticles O O\ngrew O O\n, O O\nI O O\nadded O O\nan O O\nindex O O\nto O O\nthe O O\ntable Name Name\non O O\nthe O O\nurl O O\nslugs O O\n. O O\n\nI O O\nhave O O\nsince O O\nrealized O O\nthat O O\nwhile O O\nI O O\nwant O O\nto O O\nbe O O\nable O O\nto O O\ndisplay O O\ncapitalized O O\nletters O O\nin O O\nthe O O\nurls O O\n, O O\nI O O\nwant O O\nthem O O\nto O O\nbe O O\ncase O O\ninsensitive O O\nin O O\nterms O O\nof O O\nwhat O O\nthe O O\nuser O O\ntypes O O\nin O O\n, O O\nand O O\nI O O\nwant O O\nto O O\nenforce O O\nuniqueness O O\non O O\nthe O O\nurls O O\nin O O\na O O\ncase O O\ninsensitive O O\nmanner O O\n. O O\n\nIs O O\nthere O O\na O O\nstraightforward O O\nway O O\nto O O\nquickly O O\nsearch O O\nbased O O\non O O\na O O\ntext O O\ncolumn Name Name\nin O O\na O O\ncase O O\ninsensitive O O\nway O O\n, O O\nand O O\nalso O O\nenforce O O\nuniqueness O O\nin O O\na O O\ncase O O\ninsensitive O O\nway O O\n? O O\n\nI O O\n've O O\ntried O O\nconducting O O\nthe O O\nsearches O O\nwith O O\nsomething O O\nlike O O\nlower(url) Name Name\n= Name Name\nbut O O\nthat O O\ncauses O O\nPostgres Name Name\nto O O\ndecide O O\nnot O O\nto O O\nuse O O\nthe O O\nindex O O\nat O O\nall O O\n. O O\n\nIs O O\nthis O O\nwhat O O\nyou O O\nare O O\nlooking O O\nfor O O\n? O O\n\nWhat O O\ndo O O\nyou O O\nmean O O\nby O O\n\" O O\nenforce O O\nuniqueness O O\nin O O\na O O\ncase O O\ninsensitive O O\nway O O\n\" O O\n? O O\n\nOr O O\nthis O O\nif O O\nyou O O\nwant O O\nto O O\nstick O O\nto O O\nthe O O\n\"lower()\" Name Name\n: O O\n\nUse O O\na O O\nfunctional O O\nindex O O\n: O O\n\nIf O O\nyou O O\n're O O\non O O\n8.4 Name Name\nand O O\ncan O O\ninstall O O\na O O\ncontrib Name Name\nmodule Name Name\n, O O\nthen O O\nalso O O\ntake O O\na O O\nlook O O\nat O O\nthe O O\ncitext Name Name\ntype O O\n. O O\n\nIt O O\nabstracts O O\naway O O\nall O O\nthe O O\nlower/UPPER O O\nstuff O O\nand O O\nis O O\nslightly O O\nbetter O O\nperforming O O\n. O O\n\nGood O O\nafternoon O O\n, O O\nI O O\n'm O O\nstuck O O\nwith O O\na O O\nsmall O O\nproblem O O\nof O O\nformulas O O\nin O O\nexcel Name Name\n: O O\n\nI O O\nhave O O\na O O\ntable Name Name\nin O O\nanother O O\nsheet Name Name\nand O O\nI O O\nhave O O\nto O O\nperform O O\nthe O O\nfollowing O O\noperations O O\n: O O\n\n1 O O\n. O O\nnumber O O\nof O O\nunits O O\nsold O O\nin O O\nBogota Name Name\n. O O\n\n2 O O\n. O O\nnumber O O\nof O O\nunits O O\nsold O O\nin O O\ndifferent O O\ncities O O\nto O O\nBogota Name Name\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nuse O O\nthe O O\nformula O O\n: O O\n\nFor O O\nthe O O\nfirst O O\nrequirement O O\nworks O O\n, O O\nbut O O\nat O O\nthe O O\nmoment O O\nof O O\nusing O O\nit O O\nto O O\nknow O O\nwhich O O\ncity O O\nis O O\ndifferent O O\nfrom O O\nBogota Name Name\n, O O\nI O O\ndo O O\nnot O O\nknow O O\nhow O O\nto O O\ndo O O\nit O O\n; O O\ntry O O\nto O O\nuse O O\nthe O O\n<> Name Name\noperator O O\nbut O O\nI O O\nget O O\nan O O\nerror O O\nand O O\nplacing O O\nthe O O\nformula O O\nas O O\nfollows O O\n: O O\n\ndo O O\nnot O O\nadd O O\nthe O O\ndata O O\n( O O\nSummation O O\ngives O O\n0 Name Name\n) O O\n. O O\n\nSomeone O O\nhas O O\nan O O\nidea O O\nof O O\nthe O O\nproblem O O\n. O O\n\nI O O\nbelieve O O\nyou O O\nhave O O\nto O O\nput O O\nquotes O O\n\" O O\nlike O O\nthis O O\n\" O O\naround O O\nthe O O\nentire O O\nlogical O O\nstatement O O\n\"\" Name Name\n<> Name Name\nBOGOTA Name Name\n\" Name Name\n\nIt O O\ncan O O\nbe O O\nused O O\nlike O O\nthis O O\n: O O\n\n=SUMIF(DATOS!$G$4:$G$146;\"<>BOGOTA\") Name Name\n\nHope O O\nthis O O\nhelps O O\n\nI O O\nam O O\ntrying O O\nto O O\nupdate O O\nan O O\nexisting O O\ndatabase O O\nentry O O\nusing O O\nHibernate Name Name\nand O O\nPostgreSQL Name Name\n( O O\n9.5 Name Name\n) O O\nso O O\nthat O O\nwhite O O\nspace O O\nis O O\ntrimmed O O\nfrom O O\nstrings Name Name\n. O O\n\nFor O O\nexample O O\n.. O O\n. O O\n\nElse O O\nwhere O O\nin O O\nmy O O\ncode O O\nI O O\nsuccessfully O O\nupdate O O\nother O O\nfields O O\n, O O\nfor O O\nexample O O\nthe O O\nupdatedAt Name Name\ntime O O\nfield O O\nin O O\nthe O O\nexample O O\nabove O O\n. O O\n\nHowever O O\n, O O\nI O O\ncannot O O\nremove O O\ntrailing O O\nwhite O O\nspace O O\nfrom O O\nthe O O\nlocale O O\nfield O O\n. O O\n\nI O O\ncould O O\n, O O\nif O O\nI O O\nwanted O O\nto O O\nchange O O\nthe O O\nlocale O O\nfield O O\nto O O\nsomething O O\nelse O O\nentirely O O\n, O O\nfor O O\nexample O O\nusing O O\nsomething O O\nlike O O\nthis O O\n.. O O\n. O O\n\nThis O O\nwill O O\nchange O O\nthe O O\nlocale O O\nvalue O O\n. O O\n\nI O O\njust O O\ncannot O O\nremove O O\nwhite O O\nspace O O\n. O O\n\nAny O O\nideas O O\n? O O\n\nwe O O\nneed O O\nmore O O\ninfo O O\n( O O\nex O O\nEntity O O\nand O O\nSchema O O\nData O O\nDefinition O O\n) O O\n. O O\n\ncheck O O\nif O O\nit O O\nuses O O\na O O\nchar Name Name\ninstead O O\nof O O\nvarchar Name Name\nin O O\nSchema O O\n. O O\n\nif O O\nit O O\nuses O O\nchar Name Name\nit O O\nwould O O\nhave O O\nsame O O\nlength O O\nappended O O\nwith O O\nempty O O\nspace O O\n. O O\n\nI O O\nam O O\nusing O O\nSDWebImage Name Name\nlibrary O O\nand O O\nits O O\nworking O O\non O O\niPhone Name Name\n. O O\n\nBut O O\nI O O\ndo O O\nn't O O\nknow O O\nwhy O O\nthis O O\nis O O\nnot O O\ncalled O O\nin O O\niPad Name Name\n. O O\n\nI O O\ntried O O\nto O O\nput O O\nbreak O O\npoints O O\n, O O\nbut O O\nit O O\ndoes O O\nn't O O\nhit O O\nthe O O\nbreak O O\npoint O O\neither O O\n. O O\n\nI O O\nput O O\nthis O O\nmethod O O\nin O O\ncellForItemAtIndexPath Name Name\n. O O\n\nThere O O\nis O O\na O O\nproblem O O\nin O O\nconcurrent O O\nimage Name Name\nloading O O\nimplementation O O\n. O O\n\nWhen O O\n-collectionView Name Name\n: Name Name\ncellForItemAtIndexPath Name Name\n: Name Name\nis O O\ncalling O O\n, O O\nthe O O\ndevice O O\nexecutes O O\ncode O O\non O O\nthe O O\nmain O O\nqueue Name Name\n. O O\n\nAssuming O O\nthat O O\n-downloadImageWithURL Name Name\n: Name Name\noptions Name Name\n: Name Name\nprogress Name Name\n: Name Name\ncompleted Name O\n: Name Name\nmethod O O\nperforms O O\nimage Name Name\nloading O O\non O O\nthe O O\nbackground O O\nthread O O\nand O O\nreturns O O\ninstantly O O\nwe O O\ncan O O\ncall O O\nit O O\nwithout O O\ndispatch_async(dispatch_get_main_queue Name Name\n() Name Name\n... Name Name\nwrapping O O\n. O O\n\nOtherwise O O\nwe O O\ncannot O O\nguarantee O O\nthat O O\nthe O O\ncompletion O O\nhandler O O\nis O O\nexecuting O O\non O O\nthe O O\nmain O O\nthread O O\n, O O\nso O O\nthe O O\ncode O O\nshould O O\nlook O O\nlike O O\nthis O O\n\nAnd O O\nthe O O\ndifferent O O\nresults O O\non O O\niPhone Name Name\nand O O\niPad Name Name\ncan O O\nbe O O\nexplained O O\nby O O\nthe O O\narchitectural O O\ndifferences O O\nin O O\ntechnical O O\nspecifications O O\nof O O\ntesting O O\ndevices O O\n. O O\n\nI O O\nam O O\ntring O O\nto O O\ndo O O\nocclusion O O\nwith O O\nGoogle Name Name\nTango Name Name\nin O O\nUnity Name Name\n. O O\n\nWhat O O\nI O O\nwant O O\nis O O\npretty O O\nsimple O O\nto O O\nunderstand O O\n: O O\nwhen O O\nthere O O\nis O O\na O O\nreal O O\nobject O O\nin O O\nfront O O\nof O O\na O O\nvirtual O O\nobject O O\n, O O\nthe O O\nvirtual O O\nobject O O\nis O O\nhidden O O\n( O O\nor O O\nrendered O O\ndifferently O O\n) O O\n\nThe O O\nperfect O O\nresult O O\nwould O O\nbe O O\nlike O O\nit O O\nis O O\nin O O\nthis O O\nimpressive O O\nvideo Name Name\nI O O\nfound O O\n: O O\nhttps://www.youtube.com/watch?v=EpDhaM7ZhZs O O\n. O O\n\nI O O\nalready O O\ntried O O\nthe O O\n\" O O\nEnable O O\nocclusion O O\n\" O O\noption O O\nof O O\nthe O O\nTango Name Name\nCamera Name Name\nand O O\nI O O\nam O O\nnot O O\nso O O\nhappy O O\nwith O O\nthe O O\nresults O O\n( O O\nit O O\nis O O\nnot O O\naccurate O O\nand O O\nnot O O\nreal O O\ntime O O\nas O O\nit O O\nis O O\nbased O O\non O O\nmesh O O\nreconstruction O O\nfrom O O\nthe O O\npoint O O\ncloud O O\n) O O\n. O O\n\nIf O O\nyou O O\nhave O O\nhints O O\n, O O\ntips O O\nor O O\nideas O O\nabout O O\nhow O O\nto O O\nachieve O O\nthis O O\n( O O\nlike O O\nin O O\nthe O O\nvideo Name Name\n) O O\n, O O\nthat O O\nwould O O\nbe O O\nawesome O O\n! O O\n\nOcclusion O O\nis O O\nstill O O\na O O\nvery O O\nexperimental O O\nfeature O O\non O O\nTango Name Name\n. O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nit O O\n's O O\nvery O O\nhard O O\nto O O\ndo O O\nocclusion O O\nwith O O\nhigh O O\nfidelity O O\nand O O\nhigh O O\nperformance O O\n, O O\nhere O O\n's O O\ncouple O O\nof O O\nideas O O\non O O\nhow O O\nto O O\nachieve O O\nit O O\nusing O O\ndifferent O O\nmethod O O\n: O O\n\nUse O O\n3D O O\nreconstruction O O\n. O O\n\nTango Name Name\ndoes O O\nprovide O O\nfunctionalities O O\nto O O\nconstruct O O\n3D O O\nmeshes O O\nfrom O O\npoint O O\ncloud O O\n, O O\nyou O O\ncan O O\nfind O O\nsample O O\ncode O O\nfrom O O\nTango Name Name\nsample O O\ncode O O\nrepository O O\n( O O\nC Name Name\n, O O\nJava Name Name\n, O O\nUnity Name Name\n) O O\n. O O\n\nIf O O\nyou O O\nhave O O\na O O\nworld O O\nthat O O\nis O O\npre-scanned O O\n, O O\nyou O O\ncan O O\nessentially O O\nuse O O\nthat O O\nmesh O O\ndata O O\nto O O\noccluded O O\nvirtual O O\nobject O O\n. O O\n\nRun O O\ntime O O\nup-sampling O O\ndepth O O\nimage Name Name\n. O O\n\nYou O O\ncan O O\nalso O O\nproject O O\nall O O\npoint O O\nclouds O O\non O O\nto O O\nan O O\nimage Name Name\nplane Name Name\n, O O\nup-sample O O\nit O O\n, O O\nand O O\nuse O O\nthe O O\nimage Name Name\nas O O\na O O\ndepth O O\nbuffer O O\nfor O O\nrendering O O\n. O O\n\nThis O O\nis O O\nwhat O O\nARScreen Name Name\nocclusion O O\nis O O\nusing O O\nin O O\nTangoUnitySDK Name Name\n. O O\n\nDue O O\nto O O\nthe O O\nlimitation O O\nof O O\nTango Name Name\ndepth O O\nsensing O O\nhardware O O\n, O O\nthe O O\nresult O O\nquality O O\nis O O\nnot O O\nvery O O\nideal O O\n, O O\nand O O\nit O O\nwill O O\nnot O O\nwork O O\nif O O\nall O O\nphysical O O\nobjects O O\nare O O\nfar O O\naway O O\n( O O\nbeyond O O\n4 O O\nmeters O O\n) O O\nfrom O O\nthe O O\ndevice O O\n. O O\n\ntalbe Name Name\nrow Name Name\nwith O O\nas O O\nset O O\nof O O\nelements O O\n( O O\ntextboxes Name Name\n) O O\nare O O\ndynamically O O\ncreated O O\nby O O\nJavascript Name Name\nlike O O\nfollow O O\n: O O\n\nafter O O\nsubmitted O O\n, O O\ni O O\nwant O O\nto O O\nretrieve O O\nthe O O\nvalues O O\nthat O O\nare O O\ninput O O\nin O O\nthe O O\ndynamically O O\ncreated O O\ntextboxes Name Name\nusing O O\nphp Name Name\nfile O O\nlike O O\n: O O\n\nhowever O O\n, O O\ni O O\ngot O O\n\" O O\nInternal O O\nServer O O\nError O O\n\" O O\n, O O\nany O O\nsuggestion O O\nabout O O\nreasons O O\n? O O\n\nthanx O O\nin O O\nadvance O O\n. O O\n\nthanx O O\na O O\nlot O O\nfor O O\nreply O O\n. O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nin O O\nloop O O\ncontrol O O\n, O O\ni O O\nmiss O O\n\" Name Name\n$ Name Name\n\" Name Name\nbefore O O\nindex O O\ni Name Name\n. O O\n\nI O O\n'm O O\nusing O O\na O O\nJava Name Name\nlibrary O O\nthat O O\nuses O O\na O O\nsocket Name Name\nto O O\ncommunicate O O\nwith O O\nthe O O\nworld O O\n. O O\n\nI O O\n'd O O\nlike O O\nto O O\nget O O\na O O\nreference O O\nto O O\nthat O O\nsocket Name Name\nso O O\nI O O\ncan O O\nmonitor O O\nthe O O\ndata O O\nthe O O\nlibrary O O\nis O O\nsending O O\nand O O\nreceiving O O\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\nhook O O\nJava Name Name\n's O O\nsockets Name Name\nsystem O O\nso O O\nI O O\ncan O O\nmonitor O O\nsocket Name Name\ncommunications O O\nwhen O O\nI O O\nca O O\nn't O O\nmodify O O\nthe O O\ncode O O\nthat O O\ncreates O O\nthe O O\nsocket Name Name\n? O O\n\nHave O O\na O O\nlook O O\nat O O\nthat O O\nidea O O\n: O O\n\nFinding O O\nout O O\nwhat O O\nnetwork O O\nsockets Name Name\nare O O\nopen O O\nin O O\nthe O O\ncurrent O O\nJava Name Name\nVM Name Name\n\nI O O\nhave O O\nn't O O\ntested O O\nit O O\n, O O\nbut O O\nit O O\nlooks O O\ninteresting O O\nas O O\nit O O\npresents O O\na O O\nway O O\nto O O\nhook O O\ninto O O\nthe O O\nsocket Name Name\ncreation O O\nprocess O O\nof O O\nJava Name Name\n. O O\n\nSituation O O\n: O O\n\nI O O\n'm O O\nbuilding O O\na O O\nwebsite O O\non O O\nBootstrap Name Name\n3.0 Name Name\n, O O\nand O O\nit O O\ncontains O O\na O O\nsection O O\nwith O O\nupcoming O O\nevents O O\n. O O\n\nIf O O\na O O\nuser O O\nwants O O\nto O O\nattend O O\n, O O\nthey O O\ncan O O\ndo O O\nthat O O\nby O O\nclicking O O\non O O\nthe O O\nevent O O\n. O O\n\nNow O O\na O O\nmodal O O\nappears O O\nwith O O\nname O O\n, O O\ne-mail O O\nand O O\nevent O O\ntitle O O\ninput Name Name\nfields Name Name\n. O O\n\nThe O O\ne-mail O O\ngoes O O\nto O O\nme O O\nso O O\nI O O\nknow O O\nwho O O\n's O O\ncoming O O\nfor O O\nwhat O O\n. O O\n\nThis O O\nis O O\nthe O O\nhtml Name Name\nfor O O\na O O\nsingle O O\nevent O O\n: O O\n\nQuestion O O\n: O O\nHow O O\ncan O O\nI O O\ncode O O\nthis O O\n, O O\nso O O\nit O O\nautomatically O O\nadds O O\nthe O O\ntitle O O\nof O O\nan O O\nevent O O\nto O O\nthe O O\ne-mail O O\nby O O\nclicking O O\non O O\nthe O O\nevent O O\n? O O\n\nI O O\ndo O O\nn't O O\nwant O O\nusers O O\nto O O\ntype O O\nthe O O\nevent O O\ntitle O O\nmanually O O\nwhen O O\nthe O O\nmodal O O\nappears O O\n. O O\n\nI O O\n'm O O\nalso O O\nopen O O\nfor O O\nbetter O O\nways O O\nto O O\ndo O O\nthis O O\n. O O\n\ncurrent O O\nprocess O O\n: O O\n\nvisitor O O\nclicks O O\non O O\nevent O O\n> O O\nfills O O\nin O O\nname O O\n, O O\ne-mail O O\nand O O\nevent O O\ntitle O O\n> O O\nsubmits O O\nform O O\n\nfuture O O\nprocess O O\n: O O\n\nvisitor O O\nclicks O O\non O O\nevent O O\n> O O\nfills O O\nin O O\nname O O\n, O O\nemail O O\n> O O\nsubmits O O\nform O O\n\nInfo O O\n: O O\n\nI O O\n'll O O\nbe O O\nusing O O\nWordpress Name Name\nas O O\nCMS O O\n. O O\n\nI O O\n'm O O\nassuming O O\nyou O O\nare O O\nworking O O\nwith O O\na O O\ncustom O O\npost O O\ntype O O\nfor O O\nyour O O\nevents O O\n. O O\n\nYes O O\n, O O\nyou O O\nwill O O\nneed O O\nto O O\npopulate O O\nthe O O\nhidden O O\nfield Name Name\nyourself O O\n. O O\n\nOn O O\nthe O O\nsingle O O\ntemplate O O\n, O O\nin O O\nthe O O\nform Name Name\nmarkup O O\n, O O\nyou O O\ncan O O\noutput O O\nthe O O\ntitle O O\nof O O\nthe O O\nevent O O\nas O O\nthe O O\nvalue O O\nof O O\nthe O O\nhidden O O\nfield O O\nby O O\nusing O O\nthe O O\nwordpress Name Name\nfunction O O\nthe_title() Name Name\n. O O\n\nYou O O\ncould O O\nalso O O\ndo O O\nit O O\nwith O O\njavascript Name Name\n, O O\nbut O O\nthis O O\nis O O\nexactly O O\nthe O O\nkind O O\nof O O\nsituation O O\nwordpress Name Name\ntemplates O O\nand O O\nPHP Name Name\nare O O\nmade O O\nfor O O\n. O O\n\nYou O O\nmight O O\nalso O O\nthink O O\nabout O O\ngrabbing O O\nthe O O\nevent O O\npost Name Name\nid Name Name\nfor O O\nthe O O\nevent O O\nusing O O\nthe_ID() Name Name\n. O O\n\nTwo O O\nevents O O\ncan O O\neasily O O\nhave O O\nthe O O\nsame O O\ntitle O O\n, O O\nbut O O\nwill O O\nnever O O\nhave O O\nthe O O\nsame O O\npost Name Name\nid Name Name\n. O O\n\nIt O O\nis O O\nworth O O\nnoting O O\nthat O O\neven O O\nthough O O\nnamed O O\n\" Name Name\nhidden Name Name\nfield Name Name\n\" Name Name\n, O O\nthe O O\nvalues O O\nare O O\neasily O O\naccessible O O\nto O O\nanyone O O\nusing O O\nyour O O\nform Name Name\n, O O\nand O O\nafter O O\nthe O O\npage O O\nloads O O\nand O O\nyour O O\nPHP Name Name\nis O O\noutput O O\n, O O\nthey O O\ncan O O\nbe O O\nchanged O O\nto O O\nanything O O\nvery O O\neasily O O\nand O O\nthen O O\nsubmitted O O\n. O O\n\nSo O O\nif O O\nyou O O\nhave O O\nany O O\nrestrictions O O\non O O\nwhat O O\nevents O O\nare O O\nshown O O\nto O O\nwhat O O\nusers O O\n, O O\nsomeone O O\ncan O O\npotentially O O\njust O O\nreplace O O\nthe O O\ntitle O O\nin O O\ntheir O O\nform Name Name\nwith O O\nan O O\nevent O O\nthey O O\nshould O O\nn't O O\nbe O O\nable O O\nto O O\nrsvp O O\nfor O O\n, O O\nbut O O\nyou O O\n'd O O\nnever O O\nknow O O\nthat O O\nfrom O O\nthe O O\nemail O O\nyou O O\nreceive O O\n. O O\n\nBut O O\nthat O O\n's O O\na O O\nwhole O O\nother O O\nquestion O O\n. O O\n\nWhy O O\nis O O\nthis O O\nformatted O O\nstring Name Name\ntemplate O O\n\nfaster O O\nthan O O\njust O O\na O O\nregular O O\nstring Name Name\ntemplate O O\non O O\n1 O O\nline O O\nlike O O\n\nYou O O\ncan O O\nsee O O\nthe O O\nbenchmark O O\nin O O\nthe O O\nJsPerf Name Name\ntest O O\nlinked O O\nbelow O O\n. O O\n\nAlso O O\nwhy O O\ndoes O O\nFirefox Name Name\nperform O O\nway O O\nbetter O O\nthan O O\nChrome Name Name\non O O\nthis O O\nbenchmark O O\n? O O\n\nJsPerf Name Name\ntest O O\n\nI O O\nhave O O\na O O\nsimple O O\npython Name Name\nscript O O\nthat O O\ncompares O O\na O O\nrange O O\nusing O O\nnetaddr Name Name\nwith O O\nthe O O\nhost O O\nfile O O\n. O O\n\nI O O\nneed O O\nto O O\nprint O O\nthe O O\nwhole O O\nrange O O\nand O O\nthe O O\nmatches O O\n. O O\n\nThis O O\nas O O\nfar O O\nas O O\nI O O\ncan O O\ngo O O\n. O O\n\nSnippet O O\nbelow O O\n: O O\n\nSomething O O\nlike O O\nthis O O\n: O O\n\n192.168.1.1 Name Name\n192.168.1.1 Name Name\nhost1 Name Name\n\n192.168.1.2 Name Name\n192.168.1.2 Name Name\nhost2 Name Name\n\n192.168.1.3 Name Name\n\nI O O\nwould O O\nlike O O\nto O O\nstill O O\nprint O O\nthe O O\nIP Name Name\neven O O\nif O O\nthere O O\nis O O\nno O O\nmatch O O\n. O O\n\nAny O O\nassistance O O\nwould O O\nbe O O\ngreatly O O\nappreciated O O\n! O O\n\nEasy O O\nsolution O O\nwould O O\nbe O O\nto O O\ninitialize O O\na O O\nmatch O O\nvariable O O\nand O O\nthen O O\nprint O O\nthe O O\nip Name Name\nonce O O\nif O O\nit O O\ndoes O O\nn't O O\nturn O O\non O O\n. O O\n\nFor O O\nexample O O\n: O O\n\nI O O\n'm O O\nlooking O O\nfor O O\na O O\ngood O O\nway O O\nto O O\nprogrammatically O O\ninitiate O O\nediting O O\non O O\na O O\nSystem.Windows.Forms.PropertyGrid Name Name\n. O O\n\nI O O\ncan O O\nselect O O\nthe O O\nGridItem Name Name\nthat O O\nI O O\nwant O O\n, O O\nbut O O\nthat O O\ndoes O O\nn't O O\nmove O O\nthe O O\ncursor Name Name\ninto O O\nthe O O\nedit O O\nfield Name Name\n. O O\n\nDid O O\nyou O O\ntry O O\nsending O O\nthe O O\nTAB O O\nkey O O\n? O O\n\nI O O\nhad O O\nreviewed O O\nthis O O\nthread O O\nwhich O O\ncovers O O\nperforming O O\na O O\nbulk O O\ninsert O O\nusing O O\nthe O O\nmysql Name Name\nnode Name Name\nmodule O O\nbut O O\nwith O O\na O O\nvery O O\nparticular O O\nsyntax O O\nthat O O\ndoes O O\nn't O O\ninclude O O\nthe O O\nuse O O\nof O O\nsubqueries O O\n. O O\n\nI O O\nwas O O\nwondering O O\nhow O O\nI O O\nwould O O\nperform O O\na O O\nbulk O O\ninsert O O\nusing O O\nthis O O\nmodule O O\nfor O O\na O O\nquery O O\nlike O O\nthis O O\n. O O\n\nWhile O O\nI O O\n'm O O\nable O O\nto O O\nrun O O\nthis O O\nin O O\nthe O O\nmysql Name Name\nmodule O O\njust O O\nfine O O\nover O O\na O O\nloop O O\n, O O\nI O O\nwas O O\nhoping O O\nfor O O\na O O\nspeedier O O\ninsert O O\nprocess O O\n, O O\nbut O O\nca O O\nn't O O\nseem O O\nto O O\nfigure O O\nout O O\nhow O O\nto O O\nadjust O O\nthe O O\nsyntax O O\nso O O\nit O O\nworks O O\nfor O O\na O O\nbulk O O\ninsert O O\noperation O O\n. O O\n\nCheers O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nconfigure O O\nthe O O\nlatest O O\nversion O O\nof O O\nCruise Name Name\nControl Name Name\nwith O O\nSVN Name Name\nand O O\nlooking O O\nfor O O\nthe O O\nsimple O O\nsteps O O\nto O O\ndo O O\nthe O O\nsame O O\n. O O\n\nNot O O\nable O O\nto O O\nmake O O\nout O O\nmuch O O\nfrom O O\nthis O O\n. O O\n\nAny O O\nhelp O O\nwill O O\nbe O O\nappreciated O O\n\nI O O\nuse O O\na O O\ncustom O O\nblock O O\nlike O O\nthis O O\n: O O\n\n( O O\njust O O\nput O O\nit O O\nsomewhere O O\nat O O\nthe O O\nbeginning O O\ndirectly O O\nunder O O\nthe O O\nroot O O\nnode O O\n) O O\n\nThen O O\nI O O\ncan O O\nuse O O\nthis O O\nin O O\na O O\nproject O O\nlike O O\nthis O O\n: O O\n\nThis O O\nway O O\nI O O\ndo O O\nnot O O\nneed O O\nto O O\nrepeat O O\nthe O O\nsubversion Name Name\nconfiguration O O\nall O O\nthe O O\ntime O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nsetup O O\nmy O O\napp O O\nto O O\nwatch O O\nthe O O\nwindow.innerWidth Name Name\nproperty O O\nand O O\nadd O O\na O O\nproperty O O\nto O O\nthe O O\n$scope Name Name\nbased O O\non O O\nthat O O\nwidth O O\n. O O\n\nIt O O\nworks O O\nthe O O\nfirst O O\ntime O O\n, O O\nbut O O\nnot O O\non O O\nany O O\nresize O O\nafter O O\nthat O O\n. O O\n\nIs O O\nthe O O\n$digest Name Name\nmethod O O\nnot O O\nbeing O O\ncalled O O\n? O O\n\nIf O O\nso O O\nwhy O O\nnot O O\n? O O\n\nModule O O\n\nController O O\n\nView O O\n\nThis O O\nworks O O\nthe O O\nfirst O O\ntime O O\n, O O\nif O O\nI O O\nrefresh O O\nthe O O\nscreen Name Name\nafter O O\nresizing O O\nit O O\n, O O\nthe O O\nexpand Name Name\nclass O O\nis O O\napplied O O\n, O O\nbut O O\nwhen O O\nI O O\nresize O O\nit O O\n, O O\nnothing O O\nhappens O O\n, O O\nthe O O\nconsole.log Name Name\nfunction O O\ndoes O O\nn't O O\neven O O\nfire O O\n\nResizing O O\nthe O O\nwindow Name Name\ndoes O O\nn't O O\ncause O O\nAngular Name Name\nto O O\nre-run O O\na O O\n$digest Name Name\nloop O O\n, O O\nso O O\nwindow.innerWidth Name Name\n' O O\ns O O\nvalue O O\nis O O\nchecked O O\nonly O O\nwhen O O\nsomething O O\nelse O O\ncauses O O\nit O O\n. O O\n\nYou O O\nshould O O\ninstead O O\nuse O O\na O O\ndirective O O\n( O O\nie O O\n. O O\ndo O O\nn't O O\ndo O O\nthis O O\nwork O O\nin O O\nyour O O\ncontroller O O\n) O O\n, O O\nbinding O O\nto O O\nthe O O\nwindow.onresize Name Name\nevent O O\n: O O\n\nIn O O\nthis O O\ncase O O\n, O O\nyou O O\ncall O O\nscope Name Name\n. Name Name\n$ Name Name\napply Name Name\n. O O\n\nThis O O\ncauses O O\nthe O O\n$digest Name Name\nloop O O\nto O O\nrun O O\nfollowing O O\nthis O O\nevent O O\n, O O\nwhich O O\nis O O\noutside O O\nof O O\nthe O O\nAngular Name Name\ncontext O O\n. O O\n\nYou O O\ncan O O\nuse O O\nthis O O\ndirective O O\nto O O\ndecorate O O\nan O O\nelement O O\non O O\nthe O O\nsame O O\nscope O O\nas O O\nthe O O\nvariable O O\nyou O O\n're O O\nchanging O O\n: O O\n\nDemo O O\n( O O\nbest O O\nviewed O O\nfull-screen O O\n) O O\n\nI O O\n've O O\nadded O O\na O O\nDigg Name Name\nbutton Name Name\nto O O\nall O O\nthe O O\nitems O O\nin O O\nmy O O\nsite O O\n. O O\n\nThe O O\njavascript Name Name\nrequired O O\nfor O O\ndynamic O O\nDigg Name Name\nbuttons Name Name\nis O O\njust O O\nbefore O O\nmy O O\n</body> Name Name\nclose O O\ntag O O\n. O O\n\nEverything O O\nworks O O\non O O\npages Name Name\nthat O O\nhave O O\nthe O O\ndynamic O O\nDigg Name Name\nbuttons Name Name\non O O\nthem O O\n, O O\nbut O O\non O O\npages Name Name\nthat O O\ndo O O\nn't O O\n, O O\nan O O\norphan O O\nDigg Name Name\nicon Name Name\nis O O\nfloating O O\nin O O\nspace O O\nat O O\nthe O O\nbottom O O\nof O O\nthe O O\npage Name Name\n. O O\n\nIs O O\nthis O O\nnormal O O\nbehaviour O O\n? O O\n\nHow O O\ncan O O\nI O O\nprevent O O\nit O O\n? O O\n\nI O O\nbroke O O\ndown O O\nand O O\nsimply O O\ntook O O\nthe O O\n<script> Name Name\nout O O\nof O O\nmy O O\nbase O O\ntemplate O O\nand O O\nonly O O\nput O O\nit O O\non O O\npages Name Name\nwith O O\ndigg Name Name\nbuttons Name Name\n. O O\n\nTook O O\nsome O O\nextra O O\ntemplate O O\ncode O O\nto O O\nmake O O\nit O O\nwork O O\n, O O\nbut O O\nit O O\ngets O O\nrid O O\nof O O\nthe O O\n\" O O\nghost O O\n\" O O\nbutton Name Name\n. O O\n\nHow O O\ncan O O\nI O O\nprogram O O\na O O\nfunction O O\nto O O\nchange O O\nthe O O\nvisible O O\nview O O\n? O O\n\nFor O O\nExample O O\n: O O\nI O O\nclick O O\non O O\na O O\nbutton Name Name\n, O O\nand O O\nthen O O\nchange O O\nthe O O\nvisible O O\nview O O\nto O O\na O O\nsecond O O\nview O O\n. O O\n\nIn O O\nxcode Name Name\nit O O\nlooks O O\nlike O O\nthis O O\npicture O O\n. O O\n\nYou O O\ncreate O O\na O O\nUIViewController Name Name\nand O O\nsimply O O\npresent O O\nit O O\nfrom O O\nyour O O\ncurrent O O\n. O O\n\nThis O O\nis O O\nyour O O\nRootViewController Name Name\nin O O\nthe O O\nIOSLauncher Name Name\n: O O\n\nThen O O\ncreate O O\na O O\nnew O O\none O O\nin O O\ncode O O\n: O O\n\nAnd O O\nthen O O\nswitch O O\nto O O\nit O O\n: O O\n\nI O O\nwant O O\nto O O\nmake O O\n6 O O\ndifferent O O\npies Name Name\nusing O O\nscatterpie Name Name\n. O O\n\nThere O O\nare O O\n101 O O\ndifferent O O\ncategories O O\nmaking O O\nup O O\nthe O O\npies Name Name\n( O O\nnot O O\nall O O\npies Name Name\nhave O O\n10 O O\n1) O O\n, O O\nso O O\nI O O\nwant O O\nto O O\nbe O O\nable O O\nto O O\ndifferentiate O O\nthe O O\ncolors O O\n. O O\n\nThis O O\ndoes O O\nnot O O\ngive O O\nme O O\nenough O O\ncolors O O\n( O O\nI O O\ncan O O\ntell O O\njust O O\nby O O\nlooking O O\nat O O\nthe O O\npies Name Name\n) O O\n\nThen O O\nif O O\nI O O\ntry O O\nto O O\nset O O\nthe O O\ncolors O O\nmanually O O\nas O O\nbelow O O\nI O O\nget O O\na O O\nblank O O\nscreen O O\n. O O\n\nIf O O\nI O O\ntry O O\nand O O\nset O O\nthe O O\ncolors O O\nin O O\nthe O O\nscatterpie Name Name\n(color=sample(allcolors Name Name\n, Name Name\n101)) Name Name\n, O O\nthen O O\nI O O\nget O O\nthe O O\nerror O O\n\nError O O\n: O O\nAesthetics O O\nmust O O\nbe O O\neither O O\nlength O O\n1 O O\nor O O\nthe O O\nsame O O\nas O O\nthe O O\ndata O O\n( O O\n286 O O\n4) O O\n: O O\ncolour O O\n\nHere O O\nis O O\nthe O O\nfinal O O\nworking O O\ncode O O\n. O O\n\nI O O\nhad O O\nto O O\nswitch O O\nthe O O\nscale_color_manual Name Name\nto O O\nscale_fill_manual Name Name\n. O O\n\nAnd O O\nhere O O\nis O O\nthe O O\nplot O O\n\nI O O\nam O O\nworking O O\nwith O O\nNVD3 Name Name\nlibrary O O\nand O O\nI O O\nadded O O\nthe O O\nlinks O O\nto O O\nthe O O\nlibraries O O\nthat O O\nI O O\nneed.I O O\nhave O O\nthe O O\nv3 Name Name\nfor O O\nD3 Name Name\nand O O\nthe O O\nangular Name Name\nNVD3 Name Name\nlink O O\n, O O\nbut O O\nthe O O\nchart O O\nis O O\nnot O O\nrendering O O\nand O O\nI O O\nget O O\nan O O\nerror O O\nlike O O\nbelow O O\n. O O\n\nThis O O\nare O O\nthe O O\nlinks O O\nin O O\nmy O O\nindex Name Name\nfile O O\n: O O\n\nAnd O O\nhere O O\nis O O\nmy O O\nerror O O\n: O O\n\nDoes O O\nanybody O O\nhave O O\nany O O\nideas O O\non O O\nhow O O\nto O O\nsolve O O\nthis O O\n? O O\n\nSample O O\nCode O O\n. O O\n\nI O O\nneed O O\nto O O\ncall O O\na O O\nmethod O O\non O O\na O O\ncontroller O O\nwithout O O\nreload O O\nthe O O\npage O O\n. O O\n\nHere O O\nthe O O\nproblem O O\n, O O\n\nI O O\nhave O O\na O O\njwplayer Name Name\nreciving O O\na O O\nplaylist O O\nvia O O\nRss O O\nfrom O O\nthe O O\ncontroller O O\n, O O\nand O O\nthen O O\nwhen O O\nthe O O\nplaylist O O\nend O O\n's O O\nI O O\nneed O O\nto O O\nget O O\nanother O O\nplaylist O O\nfrom O O\nthe O O\ncontroller O O\n, O O\nbut O O\nI O O\nca O O\nn't O O\nrefresh O O\nthe O O\npage O O\n( O O\nThat O O\n's O O\nthe O O\neasier O O\nway O O\n) O O\nbecause O O\nthe O O\nplayer Name Name\ndo O O\nn't O O\ndo O O\nfullscreen O O\nautomatically O O\n. O O\n\nHow O O\ncan O O\nI O O\ndo O O\nit O O\n. O O\n\nthanks O O\n. O O\n\nIf O O\nyour O O\ncontroller O O\nhas O O\nall O O\nthe O O\nrequired O O\ndata O O\nthen O O\nyou O O\ncan O O\nsimply O O\n\ninject O O\nthe O O\ncontroller O O\nin O O\nyour O O\nview O O\n. O O\n\nIf O O\nthe O O\ndata O O\nis O O\nchanging O O\nbased O O\non O O\nthe O O\ninput O O\nsupplied O O\nthen O O\nyou O O\nhave O O\nto O O\nuse O O\nthe O O\najax Name Name\ncalls O O\nto O O\nget O O\nthe O O\nnew O O\ndata O O\n. O O\n\nYou O O\ncan O O\nsend O O\nthe O O\nnext O O\najax Name Name\ncall O O\non O O\nthe O O\nend O O\nof O O\ncurrent O O\nplaylist O O\n. O O\n\nA O O\nsimple O O\najax Name Name\ncall O O\nwould O O\nbe O O\nlike O O\nthis O O\n\nand O O\nin O O\nyour O O\nroutes O O\nfile O O\n\nHow O O\nto O O\nconvert O O\n\" O O\nThu Name Name\nJun Name Name\n5 Name Name\n10:59:10 Name Name\nCDT Name Name\n2014 Name Name\n\" O O\ninto O O\npython Name Name\ndatetime Name Name\nobject O O\n? O O\n\nI O O\nca O O\nn't O O\nseem O O\nto O O\nget O O\nit O O\nto O O\nwork O O\ndue O O\nto O O\nthe O O\nCDT O O\n. O O\n\n%Z Name Name\nfor O O\nthat O O\nis O O\nthrowing O O\nerrors O O\n:( O O\n\ndateutil Name Name\ncan O O\nparse O O\nmost O O\ndate O O\nformats O O\nwithout O O\neffort O O\n\n$ Name Name\neasy_install Name Name\ndateutil Name Name\n\n( O O\nI O O\ndont O O\nthink O O\nit O O\nhandles O O\nthe O O\ntimezone O O\nquite O O\nright O O\nthough. O O\n. O O\nbut O O\nit O O\ncertainly O O\nparses O O\nit. O O\n. O O\n) O O\n\nYou O O\nca O O\nn't O O\nuse O O\nusual O O\nmethods O O\nfrom O O\ndatetime Name Name\nto O O\nconstruct O O\nthe O O\nobject O O\nhere O O\n. O O\n\nAs O O\nmentioned O O\nin O O\nthe O O\ndocumentation O O\n, O O\nstrptime Name Name\ncan O O\nwork O O\nonly O O\nwith O O\n( O O\nempty O O\n) O O\n, O O\nUTC O O\n, O O\nEST O O\n, O O\nCST O O\n: O O\n\nYou O O\nneed O O\nto O O\ntake O O\na O O\nlook O O\nat O O\npython-dateutil Name Name\n, O O\nwhich O O\nwill O O\nparse O O\nthe O O\nobject O O\ninto O O\na O O\nnaive O O\ndatetime Name Name\nobject O O\n( O O\nit O O\ndoes O O\nnot O O\ntake O O\ninto O O\naccount O O\nthe O O\ntimezone. O O\n. O O\n) O O\n: O O\n\nI O O\nhave O O\nthe O O\nsame O O\ndirectory O O\nstructure O O\nin O O\nall O O\nmy O O\nprojects O O\n. O O\n\nI O O\nwould O O\njust O O\nlike O O\nto O O\nexclude O O\nthe O O\nsame O O\ndirectories O O\nevery O O\ntime O O\n, O O\ninstead O O\nof O O\nchoosing O O\neach O O\ndirectory O O\nfor O O\nevery O O\nproject O O\nand O O\nhaving O O\nto O O\nselect O O\nMark O O\nDirectory O O\nas O O\n-> O O\nExcluded O O\n\nFor O O\nExample O O\n: O O\nbower-components/ Name Name\n, O O\nnode-modules Name Name\n, O O\netc. O O\n. O O\n\nIs O O\nthat O O\npossible O O\n? O O\n\nI O O\ncould O O\nn't O O\nfind O O\nthat O O\noption O O\n. O O\n\nThanks O O\n! O O\n\nSettings O O\n| O O\nEditor O O\n| O O\nFile O O\nTypes O O\n| O O\nFiles O O\nand O O\nfolders O O\nto O O\nignore O O\n\n( O O\nNote O O\nthat O O\napplying O O\nit O O\nto O O\nnode-modules Name Name\nmight O O\nnot O O\nbe O O\nthe O O\nbest O O\nidea O O\nbecause O O\nif O O\nyou O O\ndo O O\nthis O O\n, O O\nthe O O\nJS Name Name\nsupport O O\nin O O\nIntelliJ Name Name\nIDEA Name Name\nwill O O\nnot O O\nsee O O\nany O O\ndeclarations O O\nin O O\nany O O\nof O O\nthe O O\nnode O O\nmodules O O\nthat O O\nyou O O\nuse O O\n, O O\nso O O\nyou O O\n'll O O\nlose O O\non O O\ncode O O\ncompletion O O\nand O O\nnavigation O O\nsupport O O\n. O O\n) O O\n\nIssues O O\n: O O\n\nUsing O O\nls Name Name\nin O O\nGIT Name Name\nshows O O\nall O O\nunicode O O\nin O O\nfilenames O O\nas O O\n' O O\n? O O\n' O O\n\n( O O\ni.e O O\n. O O\n??? Name Name\n. Name Name\nmp Name Name\n3) Name Name\n. O O\n\nWhen O O\nusing O O\ngit Name Name\nadd Name Name\n-A Name Name\nthe O O\nfollowing O O\nerror O O\nis O O\nreturned O O\n: O O\n\" O O\nfatal O O\n: O O\nunable O O\nto O O\nstat O O\n' O O\nexample/ O O\n? O O\n? O O\n\n? O O\n. O O\nmp3 O O\n' O O\n: O O\nno O O\nsuch O O\nfile O O\nor O O\ndirectory O O\n\" O O\n\nIs O O\nthere O O\na O O\nsolution O O\nto O O\nthis O O\n? O O\n\nThanks O O\n. O O\n\nAs O O\nof O O\nMSysGit Name Name\n1.7.10 Name Name\n( O O\nthe O O\nlatest O O\nversion O O\nat O O\nthis O O\ntime O O\n) O O\n, O O\nUnicode O O\nis O O\ncorrectly O O\nsupported O O\non O O\nWindows Name Name\n, O O\nat O O\nthe O O\ncondition O O\nyou O O\ntweak O O\nsome O O\nsettings O O\nand O O\nuse O O\na O O\ntruetype O O\nfont O O\nin O O\nthe O O\nconsole Name Name\n. O O\n\nSee O O\nexplanations O O\nhere O O\n, O O\nincluding O O\nhow O O\nto O O\ndeal O O\nwith O O\nprevious O O\nrepositories O O\n. O O\n\nMsysgit Name Name\ndoes O O\nn't O O\nhave O O\nsupport O O\nfor O O\nnon-ASCII O O\ncharacters O O\nin O O\nfilenames O O\n. O O\n\nSee O O\nits O O\nissue O O\n80 O O\nfor O O\ndetails O O\n. O O\n\nConsider O O\nusing O O\nCygwin Name Name\n's O O\ngit Name Name\npackage O O\ninstead O O\n, O O\nwhich O O\ndoes O O\nhave O O\nfull O O\nUTF-8 O O\nsupport O O\n. O O\n\nI O O\nwill O O\nload O O\nall O O\nvideo Name Name\nfrom O O\nraw Name Name\nfolder O O\nand O O\nshow O O\nit O O\nwith O O\nmediaplayr Name Name\n. O O\n\nfor O O\nthis O O\nuse O O\nfollowing O O\ncode O O\nbut O O\nget O O\nException Name Name\n. O O\n\nwhat O O\nis O O\nwrong O O\n? O O\n\nthanks O O\n\nYou O O\ncan O O\nplay O O\nthe O O\nvideos O O\nfrom O O\nraw Name Name\nusing O O\nthis O O\nfunction O O\n\nCode O O\ntaken O O\nfrom O O\nbishop O O\nFakhry O O\nFrom O O\nhere O O\nhow-to-play-videos-in-android-from-assets-folder-or-raw-folder O O\n\nI O O\ngot O O\nminidump Name Name\nfile O O\nfor O O\nmy O O\napplication O O\non O O\na O O\ncrash O O\n. O O\n\nBut O O\nit O O\nis O O\nnot O O\ngiving O O\nme O O\ndetails O O\nlike O O\nfunction O O\nname O O\nand O O\nline O O\nnumber O O\n. O O\n\nOutput O O\nis O O\nas O O\nfollows O O\n\nThese O O\nare O O\nthe O O\nsteps O O\ni O O\nam O O\nusing O O\nto O O\nsee O O\nthe O O\noutput O O\nof O O\ndump Name Name\n\nAm O O\nI O O\ndoing O O\nanything O O\nwrong O O\n? O O\n\nI O O\nhave O O\ntwo O O\ntext Name Name\nboxes Name Name\none O O\nfor O O\nfirst O O\ntext Name Name\nand O O\nthe O O\nother O O\nfor O O\nsecond O O\ntext Name Name\n. O O\n\nEach O O\nhave O O\na O O\ndrop Name Name\ndown Name Name\nbox Name Name\nfor O O\nchoosing O O\nthe O O\nsize O O\n( O O\nso O O\nthey O O\ncan O O\nbe O O\nof O O\ndifferent O O\nor O O\nsame O O\nsize O O\n) O O\n. O O\n\nRight O O\nnow O O\nI O O\nam O O\nable O O\nto O O\nchoose O O\ndifferent O O\nsizes O O\nand O O\nit O O\nworks O O\nfine O O\n. O O\n\nThe O O\ntrouble O O\nI O O\nam O O\nhaving O O\nis O O\nthey O O\nare O O\ndisplayed O O\nin O O\ntwo O O\ndifferent O O\nlines O O\nlike O O\n: O O\n\nbut O O\nI O O\nwant O O\nthem O O\nto O O\nbe O O\ndisplayed O O\nnext O O\nto O O\neach O O\nother O O\n. O O\n\nFor O O\nexample O O\n\nThe O O\ncode O O\nthat O O\nI O O\nhave O O\nright O O\nnow O O\nis O O\nas O O\nfollows O O\n: O O\n\nTry O O\nadding O O\nstyle Name Name\n= Name Name\n\" Name Name\ndisplay Name Name\n: Name Name\ninline Name Name\n; Name Name\n\" Name Name\nto O O\nyour O O\nh1 Name Name\ntags O O\n. O O\n\n( O O\nOf O O\ncourse O O\n, O O\nreally O O\nyou O O\nshould O O\ndo O O\nthis O O\nin O O\nyour O O\nCSS Name Name\nfile O O\n, O O\nbut O O\nthis O O\nwill O O\nquickly O O\ntell O O\nyou O O\nif O O\nit O O\nworks O O\n. O O\n) O O\n\nI O O\nam O O\nusing O O\na O O\nselect Name Name\ntag O O\nin O O\nmy O O\ncode O O\n, O O\nhere O O\nis O O\nmy O O\ncode O O\n, O O\n\nand O O\njavascript Name Name\ncode O O\nis O O\nhere O O\n, O O\n\nI O O\nwant O O\nto O O\nalert O O\nthe O O\nselected O O\ntext O O\nhere O O\n, O O\nIf O O\nI O O\nuse O O\nthe O O\nabove O O\ncode O O\nthe O O\nvalue O O\nof O O\nthe O O\nselected O O\noption O O\nis O O\ncoming O O\n, O O\nbut O O\nI O O\nwant O O\nto O O\nalert O O\nthe O O\ntext O O\nof O O\nthe O O\nselected O O\noption O O\ncan O O\nanyone O O\ntell O O\nto O O\nachive O O\nthis O O\none O O\n. O O\n\nI O O\nwant O O\nto O O\nalert O O\nit O O\nwithout O O\nusing O O\nany O O\nclass O O\nor O O\nid O O\n. O O\n\nI O O\nwant O O\nto O O\nalert O O\nit O O\nonly O O\nthrough O O\nthe O O\nobj Name Name\n. O O\n\nI O O\nam O O\nwaiting O O\nfor O O\nyour O O\nhelp O O\n. O O\n\nThanks O O\nIn O O\nadvance O O\n\nTry O O\nthis. O O\n. O O\n\nThis O O\nshould O O\ndo O O\nthe O O\ntrick. O O\n. O O\n\nThat O O\nuses O O\nthe O O\njQuery Name Name\nobject O O\n$(obj) Name Name\n, O O\nlike O O\nyou O O\nalready O O\nhad O O\n, O O\nbut O O\ndoes O O\na O O\nfind() Name Name\nwhich O O\nsearches O O\nthe O O\nchild O O\nelements O O\n, O O\nin O O\nthis O O\ncase O O\nthe O O\nselected O O\noption Name Name\n. O O\n\njQuery Name Name\nfind() Name Name\n\n:selected O O\npseudo-selector O O\n\nConsider O O\nI O O\nhave O O\n: O O\n\nWhile O O\nthe O O\nfollowing O O\nholds O O\n: O O\n\nI O O\nam O O\nfacing O O\n: O O\n\nWhy O O\n? O O\n\nI O O\nmean O O\n, O O\nit O O\n's O O\nclear O O\nthat O O\nmaking O O\na O O\nSet Name Name\nout O O\nof O O\na O O\nSeq Name Name\nchooses O O\nrandom O O\nelements O O\nin O O\ncase O O\nof O O\nduplicates O O\n, O O\nbut O O\nthere O O\nare O O\nno O O\nduplicates O O\nbecause O O\nof O O\n\"(...).distinct.sameElements(...)\" Name Name\n. O O\n\nI O O\ncertainly O O\nneed O O\na O O\ndeeper O O\nunderstanding O O\nof O O\nthe O O\nkind O O\nof O O\nequality O O\ncheck. O O\n. O O\n\nEDIT O O\n: O O\n\nAfter O O\na O O\nlong O O\nsearch O O\n, O O\nI O O\nfound O O\nthe O O\nproblem O O\nand O O\ncondensed O O\nit O O\nto O O\nthe O O\nfollowing O O\n: O O\n\nMy O O\nelements O O\nare O O\nnot O O\nthe O O\nsame O O\n, O O\nhowever O O\nI O O\nmust O O\ntake O O\na O O\ncloser O O\nlook O O\nwhy O O\ndistinct.sameElements Name Name\nis O O\nn't O O\ncomplaining O O\n. O O\n\nBut O O\nmeanwhile O O\na O O\nnew O O\nquestion O O\narose O O\n: O O\n\nConsider O O\nthis O O\n: O O\n\nSo O O\nmy O O\nelements O O\nin O O\nmy O O\nfirst O O\nto O O\nsequences Name Name\nare O O\nn't O O\nthe O O\nsame O O\nbecause O O\nthey O O\ndepend O O\non O O\na O O\nm2-construct Name Name\nand O O\nso O O\neach O O\ntime O O\na O O\naccessing O O\nthem O O\nthey O O\nare O O\ndifferent O O\n. O O\n\nMy O O\nnew O O\nquestion O O\nis O O\n, O O\nwhy O O\ndoes O O\nm2 Name Name\nbehave O O\nlike O O\na O O\nfunction O O\nin O O\ncontrast O O\nto O O\nm1 Name Name\nalthough O O\nboth O O\nare O O\nimmutable O O\nmaps Name Name\n. O O\n\nThat O O\nis O O\nn't O O\nintuitively O O\nfor O O\nme O O\n. O O\n\nThe O O\nmost O O\ncommon O O\nreasons O O\nfor O O\nproblems O O\nin O O\nthis O O\narea--testing O O\nset O O\nequality O O\nand O O\nthe O O\nlike--are O O\n\nhashCode Name Name\ndoes O O\nnot O O\nagree O O\nwith O O\nequals Name Name\n\nYour O O\nvalues O O\nare O O\nnot O O\nstable O O\n( O O\nso O O\nprevious O O\nhashCode Name Name\ndoes O O\nnot O O\nagree O O\nwith O O\ncurrent O O\nequals Name Name\n) O O\n\nThe O O\nreason O O\nis O O\nthat O O\nthis O O\nmatters O O\nis O O\nthat O O\ndistinct Name Name\nand O O\ntoSet Name Name\nuse O O\nhash O O\ncodes O O\nto O O\nbuild O O\nsets Name Name\n, O O\nwhereas O O\ncontains Name Name\nsimply O O\nruns O O\nover O O\nthe O O\ncollection O O\nwith O O\nan O O\nexists Name Name\n: O O\n\nThis O O\nis O O\nmade O O\nmore O O\ncomplicated O O\nby O O\nthe O O\nfact O O\nthat O O\nmany O O\nsets Name Name\ndo O O\nn't O O\nstart O O\nusing O O\nhash Name Name\ncodes Name Name\nuntil O O\nthey O O\n're O O\nlarger O O\nthan O O\nsome O O\nminimal O O\nsize O O\n( O O\nusually O O\n4) O O\n, O O\nso O O\nyou O O\ndo O O\nn't O O\nalways O O\nnotice O O\nthis O O\nwith O O\ntesting O O\n. O O\n\nBut O O\nlet O O\n's O O\nprove O O\nit O O\nto O O\nourselves O O\n: O O\n\nOkay O O\n, O O\nso O O\nnow O O\nwe O O\nknow O O\nthat O O\nfor O O\nmost O O\nof O O\nthese O O\noperations O O\n, O O\nmatching O O\nup O O\nhashCode Name Name\nand O O\nequals Name Name\nis O O\na O O\nGood O O\nThing O O\n. O O\n\nWarning O O\n: O O\nin O O\nJava Name Name\n, O O\nmismatches O O\nhappens O O\nfrequently O O\neven O O\nwith O O\nprimitives O O\n: O O\n\nbut O O\nScala Name Name\nnow O O\nat O O\nleast O O\ncatches O O\nthat O O\n( O O\nhopefully O O\nevery O O\ntime O O\n) O O\n: O O\n\nCase O O\nclasses O O\nalso O O\ndo O O\nthis O O\nproperly O O\n, O O\nso O O\nwe O O\n're O O\nleft O O\nwith O O\nthree O O\npossibilities O O\n\nYou O O\noverrode O O\nequals Name Name\nbut O O\nnot O O\nhashCode Name Name\nto O O\nmatch O O\n\nYour O O\nvalues O O\nare O O\nnot O O\nstable O O\n\nThere O O\nis O O\na O O\nbug O O\nand O O\nJava Name Name\nwrapped O O\nprimitive O O\nhashCode Name Name\nmismatch O O\nis O O\ncoming O O\nback O O\nto O O\nbite O O\nyou O O\n\nThe O O\nfirst O O\none O O\nis O O\neasy O O\nenough O O\n. O O\n\nThe O O\nsecond O O\none O O\nseems O O\nto O O\nbe O O\nyour O O\nproblem O O\n, O O\nand O O\nit O O\narises O O\nfrom O O\nthe O O\nfact O O\nthat O O\nmapValues Name Name\nactually O O\ncreates O O\na O O\nview O O\nof O O\nthe O O\noriginal O O\ncollection O O\n, O O\nnot O O\na O O\nnew O O\ncollection O O\n. O O\n\n( O O\nfilterKeys Name Name\ndoes O O\nthis O O\nalso O O\n. O O\n) O O\n\nPersonally O O\n, O O\nI O O\nthink O O\nthis O O\nis O O\na O O\nquestionable O O\nchoice O O\nof O O\ndesign O O\n, O O\nsince O O\nnormally O O\nwhen O O\nyou O O\nhave O O\na O O\nview O O\nand O O\nyou O O\nwant O O\nto O O\nmake O O\na O O\nsingle O O\nconcrete O O\ninstance O O\nof O O\nit O O\n, O O\nyou O O\n.force Name Name\nit O O\n. O O\n\nBut O O\ndefault O O\nmaps Name Name\ndo O O\nn't O O\nhave O O\na O O\n.force Name Name\nbecause O O\nthey O O\ndo O O\nn't O O\nrealize O O\nthat O O\nthey O O\nmight O O\nbe O O\nviews O O\n. O O\n\nSo O O\nyou O O\nhave O O\nto O O\nresort O O\nto O O\nthings O O\nlike O O\n\nThis O O\nis O O\nreally O O\nimportant O O\nif O O\nyou O O\n're O O\ndoing O O\nthings O O\nlike O O\nfile O O\nIO O O\nto O O\nmap Name Name\nyour O O\nvalues O O\n( O O\ne.g O O\n. O O\nif O O\nyour O O\nvalues O O\nare O O\nfilenames O O\nand O O\nyou O O\n're O O\nmapping O O\nto O O\ntheir O O\ncontents O O\n) O O\nand O O\nyou O O\ndo O O\nn't O O\nwant O O\nto O O\nread O O\nthe O O\nfile O O\nover O O\nand O O\nover O O\nagain O O\n. O O\n\nBut O O\nyour O O\ncase--where O O\nyou O O\n're O O\nassigning O O\nrandom O O\nvalues--is O O\nanother O O\nwhere O O\nit O O\nis O O\nimportant O O\nto O O\npick O O\na O O\nsingle O O\ncopy O O\n, O O\nnot O O\nrecreate O O\nthe O O\nvalues O O\nover O O\nand O O\nover O O\n. O O\n\nThis O O\nis O O\nwhat O O\nI O O\nwant O O\nto O O\naccomplish O O\n. O O\n\nIn O O\nWordpress Name Name\nI O O\n've O O\ncreated O O\na O O\ntaxonomy O O\ncalled O O\ncategorie Name Name\nwith O O\nthe O O\nterms O O\napp Name Name\n, O O\nweb Name Name\nand O O\nbranding Name Name\n. O O\n\nWhen O O\na O O\nproject O O\nhas O O\nthe O O\nterm O O\napp Name Name\n, O O\nI O O\nwant O O\nto O O\nload O O\nanother O O\ntheme O O\n/ O O\nblog O O\n. O O\n\nWhen O O\na O O\nproject O O\nhas O O\nthe O O\nterm O O\nweb Name Name\nor O O\nbranding Name Name\n, O O\nI O O\nwant O O\nto O O\nload O O\nsingle.php Name Name\n. O O\n\nThe O O\nlast O O\none O O\nworks O O\njust O O\nfine O O\n. O O\n\nThis O O\nis O O\nmy O O\ncode O O\nso O O\nfar O O\n\nSo O O\nwhen O O\na O O\nproject O O\nhas O O\nthe O O\nterm O O\napp Name Name\n, O O\nI O O\nwant O O\nto O O\nload O O\nthe O O\ntheme O O\nthemeApp Name Name\n. O O\n\nAny O O\nsuggestions O O\n? O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nWe O O\nhad O O\nto O O\naccomplish O O\na O O\nsimilar O O\ntask O O\nin O O\nour O O\nplugin O O\n, O O\nAppPresser Name Name\n. O O\n\nYou O O\ncan O O\nsee O O\nour O O\nsolution O O\nhere O O\n: O O\nhttps://github.com/WebDevStudios/AppPresser/blob/master/inc/theme-switcher.php O O\n\nBasically O O\n, O O\nyou O O\nneed O O\nto O O\nchange O O\nthe O O\ntheme O O\nname O O\nin O O\n3 O O\nfilters O O\n: O O\n' Name Name\ntemplate Name Name\n' O O\n, O O\n' O O\noption_template Name Name\n' Name Name\n, O O\n' Name Name\noption_stylesheet Name Name\n' Name Name\n. O O\n\nGetting O O\nthe O O\ncategory O O\nis O O\nnot O O\nso O O\nsimple O O\nthough O O\n, O O\nbecause O O\nthe O O\ntemplate O O\ncheck O O\nhappens O O\nearly O O\nenough O O\nin O O\nthe O O\nWordPress Name Name\nprocess O O\nthat O O\nthe O O\nglobal Name Name\n$post Name Name\nand O O\n$wp_query Name Name\nobjects O O\nare O O\nnot O O\navailable O O\n. O O\n\nHere O O\nis O O\none O O\nway O O\nthat O O\ncan O O\nbe O O\naccomplished O O\n: O O\n\nAfter O O\nupgrading O O\nto O O\n7.4.1 Name Name\nI O O\nam O O\nunable O O\nto O O\nCourier Name Name\nMedia O O\nitems O O\n. O O\n\nThe O O\nfirst O O\nerror O O\nwas O O\nthat O O\nthere O O\nwas O O\nno O O\ncolumn Name Name\nfor O O\nhelp O O\ntext O O\n, O O\nSo O O\nI O O\nadded O O\nthis O O\nto O O\nboth O O\nenvironments O O\n\nand O O\nnow O O\nanother O O\nexception Name Name\nis O O\nbeing O O\nthrown O O\nwhen O O\npackaging O O\nitems O O\n. O O\n\nPlease O O\ncan O O\nanyone O O\nhelp O O\n\nHere O O\ni O O\nwant O O\nto O O\ntransfer O O\ndata O O\nfrom O O\none O O\ndatabase O O\nto O O\nanother O O\ndatabase O O\nin O O\nsql Name Name\n2005 Name Name\n, O O\n\ni O O\ntried O O\nin O O\ndts Name Name\nbut O O\nits O O\nnot O O\nworking O O\n. O O\n\nNeed O O\nmore O O\ninformation O O\n, O O\nbut O O\nif O O\nyou O O\nwant O O\nto O O\njust O O\ncopy O O\na O O\ndatabase O O\n, O O\nyou O O\ncan O O\nback O O\nit O O\nup O O\n, O O\nthen O O\nrestore O O\nthat O O\nbackup O O\nin O O\nanother O O\ndatabase O O\n. O O\n\nIf O O\nyou O O\njust O O\nwant O O\nto O O\ncopy O O\nindividual O O\ntables Name Name\nthen O O\nDTS Name Name\nis O O\nyour O O\nfriend O O\n. O O\n\nHow O O\nis O O\nit O O\n\" O O\nnot O O\nworking O O\n\" O O\nfor O O\nyou O O\n? O O\n\nIf O O\nyou O O\n're O O\nmoving O O\na O O\nfew O O\ntables Name Name\nonce O O\noff O O\nthen O O\nthe O O\nsimplest O O\nway O O\nis O O\nto O O\nuse O O\nthe O O\nBCP Name Name\ncommand Name Name\nline Name Name\nutility Name Name\n. O O\n\nbcp Name Name\ndb_name.schema_name.table_name Name Name\nout Name Name\ntable_name.dat Name Name\n-c Name Name\n-t Name Name\n, Name Name\n-S Name Name\nsource_server Name Name\n-T Name Name\n\nbcp Name Name\ndb_name.schema_name.table_name Name Name\nin Name Name\ntable_name.dat Name Name\n-c Name Name\n-t Name Name\n, Name Name\n-S Name Name\ndestination_server Name Name\n-T Name Name\n\nChange O O\n' O O\n-T Name Name\n' O O\nto O O\n' O O\n-U Name Name\nyour_username Name Name\n-P Name Name\nyour_password Name Name\n' O O\nif O O\nyou O O\n're O O\nnot O O\nusing O O\ntrusted O O\nconnections O O\n. O O\n\nIf O O\nyou O O\n're O O\nmoving O O\ndata O O\nregularly O O\nbetween O O\nservers Name Name\non O O\na O O\nLAN O O\nthen O O\nconsider O O\nusing O O\nlinked O O\nservers Name Name\n. O O\n\nhttp://msdn.microsoft.com/en-us/library/ff772782.aspx O O\n\nLink O O\nserver Name Name\nperformance O O\nover O O\nWANs O O\nis O O\noften O O\npoor O O\n, O O\nin O O\nmy O O\nexperience O O\n. O O\n\nConsider O O\ndoing O O\na O O\nBCP Name Name\nout Name Name\n, O O\nsecure O O\nfile O O\ntransfer O O\nto O O\nthe O O\ndestination O O\nserver Name Name\nthen O O\nBCP Name Name\nin Name Name\nif O O\nthe O O\nservers Name Name\nare O O\nn't O O\non O O\nthe O O\nsame O O\nLAN O O\n. O O\n\nI O O\nhave O O\ntried O O\ncopying O O\ntext Name Name\nfrom O O\nWord Name Name\n, O O\nbut O O\nthat O O\n's O O\ncumbersome O O\nevery O O\ntime O O\n. O O\n\nHence O O\ncould O O\nsomeone O O\ntell O O\nme O O\nhow O O\nI O O\ncan O O\ninsert O O\nbullet Name Name\npoints Name Name\ninside O O\na O O\ncell Name Name\n? O O\n\nMicrosoft Name Name\nprovides O O\npretty O O\nexcellent O O\ndocumentation O O\non O O\nhow O O\nto O O\ndo O O\nthis O O\n( O O\nfound O O\nthrough O O\na O O\nquick O O\nGoogle Name Name\nsearch O O\n, O O\nno O O\nless O O\n! O O\n\n) O O\n: O O\nhttps://support.microsoft.com/en-us/kb/323567 O O\n\nTo O O\ncreate O O\nthe O O\nbullet Name Name\npoint Name Name\nsymbol O O\n, O O\ntype O O\nALT+ O O\n0149 O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\napply O O\nbullet Name Name\npoint Name Name\nto O O\nan O O\nentire O O\ncolumn Name Name\nor O O\nselection O O\nof O O\ncells Name Name\n, O O\nhighlight O O\nthose O O\ncells Name Name\n, O O\nlook O O\nat O O\nthe O O\ntop O O\nof O O\nyour O O\nscreen Name Name\nand O O\nmake O O\nsure O O\nyou O O\n're O O\non O O\n\" Name Name\nHome Name Name\n\" Name Name\n, O O\nthen O O\nclick O O\nNumber O O\n( O O\nShould O O\nbe O O\nbetween O O\nalignment O O\nand O O\nfont O O\n) O O\nand O O\npick O O\nCustom O O\n. O O\n\nThere O O\nshould O O\nbe O O\nan O O\n@ O O\nsymbol O O\nin O O\nthe O O\ntype Name Name\nbox Name Name\n. O O\n\nClick O O\nto O O\nthe O O\nleft O O\nof O O\nit O O\nand O O\ntype O O\nALT-0149 O O\nto O O\nput O O\nthe O O\nbullet Name Name\npoint Name Name\nin O O\nand O O\ncheck O O\nthe O O\nexample O O\nabove O O\nit O O\nto O O\nmake O O\nsure O O\nit O O\n's O O\nhow O O\nyou O O\nwant O O\nit O O\n. O O\n\nI O O\nwant O O\nto O O\nadd O O\na O O\nmenu Name Name\nitem O O\nto O O\nall O O\ntext Name Name\nfield Name Name\n's O O\ncontextual O O\nmenu Name Name\n. O O\n\nI O O\ncan O O\ndo O O\nit O O\nif O O\nI O O\nget O O\na O O\nhold O O\nof O O\nthe O O\ninternal O O\nfield O O\neditor O O\nof O O\ntype O O\nNSTextView Name Name\nused O O\nby O O\nall O O\nNSTextField Name Name\n's O O\nthrough O O\nout O O\nthe O O\napplication O O\n. O O\n\nThe O O\nthing O O\nis O O\nthe O O\nonly O O\nway O O\nI O O\ncan O O\nthink O O\nof O O\ngetting O O\nit O O\n, O O\nis O O\nby O O\naccessing O O\nit O O\nfrom O O\n[ O O\nwindow Name Name\nfirstResponder Name Name\n] O O\n. O O\n\nDoes O O\nanyone O O\nknow O O\nanother O O\nway O O\n? O O\n\nOne O O\nmore O O\nmethod O O\nthat O O\nI O O\ncan O O\nthink O O\nof O O\nis O O\nsubclassing O O\nthe O O\nNSTextField Name Name\nto O O\nextend O O\nits O O\nbehaviour O O\nby O O\noverriding O O\nthe O O\nmenuForEvent Name Name\nmethod O O\n. O O\n\nFinally O O\nreturn O O\nan O O\ninstance O O\nof O O\nthe O O\ncustom O O\nfield O O\neditor O O\nusing O O\nwindowWillReturnFieldEditor Name Name\nmethod O O\nin O O\nthe O O\nwindow Name Name\ndelegate O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nknow O O\nif O O\nit O O\npossible O O\nsomehow O O\nfrom O O\nthe O O\nCLI Name Name\nof O O\nthe O O\ninflux Name Name\nto O O\nselect O O\nthe O O\ndata O O\nof O O\na O O\nspecific O O\nshard Name Name\n. O O\n\nI O O\nthought O O\nalso O O\nto O O\nselect O O\nthe O O\nseries O O\nwithin O O\ntwo O O\ntimestamps O O\nbut O O\ni O O\nhave O O\nnot O O\nfound O O\nhow O O\nyet O O\n. O O\n\nAny O O\ninput O O\nwould O O\nbe O O\nappreciated O O\n, O O\nthank O O\nyou O O\n. O O\n\nQ O O\n: O O\nI O O\nwould O O\nlike O O\nto O O\nknow O O\nif O O\nit O O\npossible O O\nsomehow O O\nfrom O O\nthe O O\nCLI Name Name\nof O O\nthe O O\ninflux Name Name\nto O O\nselect O O\nthe O O\ndata O O\nof O O\na O O\nspecific O O\nshard Name Name\n. O O\n\nA O O\n: O O\nAt O O\ninfluxdb Name Name\n1.3 Name Name\nthis O O\nis O O\nnot O O\npossible O O\n. O O\n\nHowever O O\nyou O O\nshould O O\nbe O O\nable O O\nto O O\nwork O O\nout O O\nwhat O O\ndata O O\nlives O O\nin O O\nthere O O\n. O O\n\nIf O O\nyou O O\ndo O O\na O O\nshow Name Name\nshard Name Name\nstatement O O\nin O O\nthe O O\ninflux Name Name\ncommand Name Name\nline Name Name\nit O O\nshould O O\ntell O O\nyou O O\nthe O O\nstart O O\nand O O\nend O O\ndate O O\ntime O O\nof O O\nthe O O\ndata O O\n( O O\nacross O O\nall O O\nseries O O\nin O O\nthe O O\ndatabase O O\n) O O\ncontained O O\nin O O\nthat O O\nshard Name Name\n. O O\n\nFor O O\ninstance O O\n\nGiven O O\nShard O O\ninfo O O\n: O O\n\nGiven O O\nMeasurements O O\n: O O\n\nShard Name Name\n123 Name Name\nwill O O\ncontain O O\nall O O\nof O O\nthe O O\ndata O O\nacross O O\nthe O O\nnoted O O\nmeasurements O O\nabove O O\nthat O O\nfall O O\nin O O\nthe O O\nstart O O\ntime O O\nof O O\n2012-11-26T00:00:00Z Name Name\nand O O\nend O O\ntime O O\nof O O\n2012-12-03T00:00:00Z Name Name\n. O O\n\nThat O O\nis O O\n, O O\nrunning O O\na O O\ndrop O O\nshard Name Name\n123 Name Name\nwould O O\nsee O O\ndata O O\nin O O\nthat O O\nrange O O\ndisappearing O O\nacross O O\nthe O O\nmeasurements O O\n. O O\n\nI O O\nam O O\ndoing O O\nMichael O O\nHartl O O\n's O O\nrailstutorial.org Name Name\nand O O\nI O O\nam O O\ntrying O O\nto O O\ndo O O\nan O O\nexercise O O\nfactoring O O\nout O O\na O O\nform O O\nin O O\na O O\nview O O\n. O O\n\nHere O O\nis O O\nthe O O\nlink O O\nto O O\nthe O O\nchapter O O\n, O O\nand O O\nthe O O\nproblem O O\nis O O\nassociated O O\nwith O O\nlisting O O\n10.5 O O\n, O O\n10.6 O O\nand O O\n10.7 O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nfigure O O\nout O O\nexactly O O\nhow O O\nto O O\nprovide O O\nthe O O\nproper O O\n:url Name Name\n, O O\nat O O\nleast O O\nthat O O\n's O O\nwhat O O\nI O O\nthink O O\nI O O\n'm O O\ndoing O O\n. O O\n\nhttps://www.railstutorial.org/book/updating_and_deleting_users O O\n\nHere O O\nis O O\nmy O O\ncode O O\n: O O\n\n_form.html.erb Name Name\n\nedit.html.erb Name Name\n\nnew.html.erb Name Name\n\nI O O\nhave O O\ntried O O\nrepeatedly O O\nto O O\nget O O\nthis O O\nto O O\nwork O O\n, O O\ntrying O O\nvarious O O\nways O O\n, O O\nbut O O\nso O O\nfar O O\n, O O\nto O O\nno O O\navail O O\n. O O\n\nHere O O\nis O O\nthe O O\ntest O O\nthat O O\nis O O\nfailing O O\n: O O\n\nand O O\nthe O O\ncode O O\nfor O O\nit O O\n: O O\n\nroutes.rb Name Name\n\nAny O O\nhelp O O\nwould O O\nbe O O\ngreatly O O\nappreciated O O\n! O O\n\nI O O\nuse O O\nsmtp Name Name\nmailgun Name Name\nfor O O\nsending O O\nemail O O\nin O O\nKentico Name Name\n. O O\n\nhow O O\ni O O\ncan O O\nset O O\nup O O\npop3 O O\nfor O O\ncheck O O\nBounced O O\nemails O O\nfrom O O\nmailgun Name Name\n. O O\n\nWhat O O\nis O O\na O O\nport Name Name\nI O O\nshould O O\nuse O O\n? O O\n\nAs O O\nper O O\nBrenden O O\n's O O\ncomment O O\n, O O\nMailGun Name Name\nare O O\ndiscontinuing O O\nPOP3 O O\nsupport O O\n. O O\n\nIn O O\norder O O\nto O O\ndo O O\nthis O O\n, O O\nyou O O\n're O O\ngoing O O\nto O O\nneed O O\nto O O\nfind O O\nan O O\nalternative O O\nemail O O\nsupplier O O\nthat O O\nsupports O O\nPOP3 O O\n( O O\nthe O O\nlinked O O\narticle O O\nsuggests O O\nRackspace Name Name\nfor O O\nexample O O\n) O O\n. O O\n\nPOP3 Name Name\nserver Name Name\nlistens O O\nusually O O\nlisten O O\non O O\nport Name Name\n110 Name Name\n. O O\n\nIf O O\nyou O O\nmove O O\nto O O\nPOP3S O O\n( O O\nusing O O\nTransport O O\nLayer O O\nSecurity O O\n( O O\nTLS O O\n) O O\nor O O\nSecure O O\nSockets O O\nLayer O O\n( O O\nSSL O O\n) O O\n) O O\n, O O\nthen O O\nyou O O\nmight O O\nuse O O\nsomething O O\nlike O O\nport Name Name\n995 Name Name\n. O O\n\nYour O O\nmail O O\nprovider O O\n's O O\nsupport O O\nteam O O\nwill O O\nbe O O\nable O O\nto O O\nadvise O O\nyou O O\non O O\nwhich O O\nport Name Name\nto O O\nuse O O\n. O O\n\nHere O O\nis O O\nwhat O O\nI O O\nwant O O\nto O O\ndo O O\n: O O\n\nThe O O\nstyle Name Name\npart O O\nnever O O\ngets O O\napplied O O\n. O O\n\nThe O O\nHierachicalDataTemplate Name Name\nseems O O\nto O O\noverride O O\nthe O O\ninitial O O\nstyle Name Name\n. O O\n\nI O O\ncannot O O\nuse O O\nthe O O\ntype O O\nto O O\napply O O\nthe O O\ntemplate O O\nsince O O\nmultiple O O\ntypes O O\nare O O\ninvolved O O\n. O O\n\nAny O O\nideas O O\n? O O\n\nThanks O O\n\nDataTemplate Name Name\nhas O O\nhigher O O\nprecedence O O\nover O O\nStyle Name Name\n. O O\n\nTry O O\nmoving O O\nthe O O\nDataTemplate Name Name\ninto O O\nthe O O\nStyle Name Name\nas O O\n: O O\n\nthere O O\nare O O\nmany O O\nposts O O\nthat O O\ndeal O O\nwith O O\nvalidation O O\ncontrols O O\ninside O O\nupdate Name Name\npanel Name Name\nand O O\npartial O O\npage O O\nrendering O O\n. O O\n\nBut O O\ni O O\ngot O O\na O O\ndifferent O O\nproblem O O\nhere O O\n, O O\ni O O\ndid O O\ntry O O\nupdating O O\nto O O\nsp1 Name Name\n.NET Name O\nframework Name Name\n2.0 Name Name\nand O O\nagain O O\n.NET Name Name\nFramework Name Name\n4.0 Name Name\nbut O O\nnothing O O\nhappens O O\n. O O\n\nBasically O O\ni O O\ngot O O\na O O\ndropdownlist Name Name\ninside O O\nupdate Name Name\npanel Name Name\nwhose O O\nautopostback Name Name\nis O O\nset O O\nto O O\ntrue Name Name\nand O O\nan O O\nempty Name Name\nitem O O\n- Name Name\n- Name Name\nSelect Name Name\n- Name Name\n- Name Name\nis O O\nadded O O\nas O O\nindex O O\n0 Name Name\nfor O O\nvalidation O O\n( O O\nRequired O O\nField O O\nValidator O O\n) O O\npurpose O O\n. O O\n\nI O O\ndoes O O\nhappen O O\nthat O O\neven O O\nwhen O O\ni O O\nselect O O\nindex O O\n0 Name Name\n, O O\nthe O O\nvalidation O O\nmessage O O\nappears O O\nbriefly O O\nand O O\nthen O O\npartial O O\npostback O O\ntakes O O\nplace O O\n. O O\n\nDoes O O\nanyone O O\nhave O O\nany O O\nreasons O O\nfor O O\nthe O O\nsame O O\nor O O\nalternate O O\nways O O\nto O O\ndo O O\nthis O O\n. O O\n\nnote O O\n: O O\n\nI O O\nam O O\npopulating O O\nother O O\ncontrols O O\n( O O\ndropdownlist Name Name\n) O O\nduring O O\nthe O O\nselected O O\nindex O O\nchanged O O\nevent O O\n. O O\n\nI O O\ncould O O\nuse O O\ncascading O O\ndropdownlist Name Name\nfrom O O\nAjaxControlToolkit Name Name\nbut O O\nthen O O\ni O O\nlose O O\nevent O O\nvalidation O O\nfunctionality O O\nthat O O\nother O O\ncontrols O O\nneed O O\n. O O\n\nwhy O O\nnot O O\nvalidating O O\nclient O O\nchoise O O\nin O O\ncode O O\nbehind O O\n? O O\n\nfor O O\nex O O\n' O O\n: O O\n\nAs O O\na O O\nquick O O\ntest O O\nI O O\n've O O\ncome O O\nup O O\nwith O O\nthis O O\n, O O\nwhich O O\nworks O O\n( O O\nfor O O\nme O O\n) O O\n: O O\n\nAnd O O\nin O O\nthe O O\ncode O O\nbehind O O\n: O O\n\nPopulates O O\nthe O O\nsecond O O\nDDL Name Name\nwhen O O\nany O O\noption O O\nis O O\nchosen O O\n, O O\nbut O O\nnot O O\nfor O O\nthe O O\ninitial O O\nitem O O\nof O O\n0 Name Name\n\nEDIT O O\n: O O\nAdded O O\nin O O\nTextBox Name Name\nand O O\nButton Name Name\nwith O O\nvalidation O O\ngroups O O\n; O O\nOnly O O\nddl1 Name Name\nis O O\nvalidated O O\non O O\nSelectedIndexChanged Name Name\nbut O O\nboth O O\nddl1 Name Name\nand O O\ntxt1 Name Name\nare O O\nvalidated O O\nOnClick Name Name\n\nI O O\nhave O O\na O O\nFacebook Name Name\nApp O O\nwhich O O\nis O O\nsubscribed O O\nto O O\nmore O O\nthan O O\n20,000 O O\npages Name Name\n. O O\n\nThe O O\nserver Name Name\nis O O\nn't O O\nable O O\nto O O\nprocess O O\nhooks O O\nfrom O O\nall O O\nthese O O\nFacebook Name Name\npages Name Name\n, O O\nI O O\nwant O O\nto O O\nunsubscribe O O\nmy O O\napp O O\nfrom O O\nall O O\nthese O O\nFacebook Name Name\npages Name Name\n. O O\n\nIs O O\nthere O O\na O O\nquicker O O\nway O O\nto O O\ndo O O\nthis O O\n. O O\n\nMost O O\nof O O\nthe O O\npage Name Name\naccess O O\ntoken O O\nI O O\nhave O O\nis O O\nexpired O O\n, O O\nso O O\nI O O\nca O O\nn't O O\nloop O O\nthrough O O\nall O O\nthe O O\npages Name Name\nand O O\nunsubscribe O O\nmy O O\napp O O\nfrom O O\nthem O O\n. O O\n\nTo O O\nunsubscribe O O\nyour O O\napp O O\nfrom O O\na O O\nFacebook Name Name\npage Name Name\n, O O\nyou O O\ndo O O\nnot O O\nneed O O\na O O\ntoken O O\nfrom O O\nthe O O\npage Name Name\n. O O\n\nAll O O\nyou O O\nneed O O\nis O O\nyour O O\nApp Name Name\nAccess Name Name\nToken Name Name\n. O O\n\nTo O O\nunsubscribe O O\nfrom O O\nthe O O\npage Name Name\njust O O\nmake O O\na O O\nDELETE Name Name\nhttp O O\nrequest O O\nto O O\n: O O\n\nYou O O\ncan O O\nget O O\nyour O O\nApp Name Name\nAccess Name Name\nToken Name Name\nby O O\nsending O O\na O O\nGET Name Name\nrequest O O\nto O O\n: O O\n\nSo O O\njust O O\nmake O O\na O O\nDELETE Name Name\nrequest O O\nto O O\neach O O\npage Name Name\nyou O O\nwant O O\nto O O\nunsubscribe O O\nfrom O O\n. O O\n\nFor O O\ngetting O O\na O O\nlocation O O\n, O O\nI O O\nmade O O\nLocationManager.h Name Name\nand O O\nLocationManager.m Name Name\n\nLocationManager.h Name Name\n\nLocationManager.m Name Name\n\nAnd O O\nMainViewController.m Name Name\ncall O O\nlocation Name Name\nmanager Name Name\n. O O\n\nWhen O O\nI O O\ninstall O O\nmy O O\napp O O\nat O O\nthe O O\nfirst O O\ntime O O\n, O O\nlocation O O\nis O O\n0.00000 Name Name\n. O O\n\nI O O\ndo O O\nn't O O\nhave O O\nany O O\nidea O O\nwhy O O\nlocation O O\nis O O\nlike O O\nthat O O\n. O O\n\nIs O O\nthere O O\nany O O\nproblem O O\nwith O O\nthe O O\ncode O O\n? O O\n\nI O O\ncan O O\nremember O O\ni O O\nread O O\nsomewhere O O\nthat O O\nyou O O\nwill O O\nget O O\nimediatly O O\nthe O O\nlast O O\nknown O O\nlocation O O\nand O O\nthen O O\nupdates O O\nof O O\nnew O O\nlocations O O\n. O O\n\nin O O\nthis O O\narticle O O\nGetting O O\nthe O O\nUser O O\n's O O\nCurrent O O\nLocation O O\n| O O\nReceiving O O\nLocation O O\nData O O\nfrom O O\na O O\nService O O\napple Name Name\nrecommends O O\nto O O\ncheck O O\nthe O O\nage O O\nof O O\nthe O O\nreceived O O\ndata O O\n: O O\n\ni O O\nthink O O\nthis O O\nway O O\nyou O O\ncan O O\nfilter O O\nthe O O\n\" Name Name\ninvalid Name Name\n\" Name Name\nlocation O O\nupdates O O\nand O O\nthe O O\n\" Name Name\nzero Name Name\nupdate Name Name\n\" Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nrun O O\nvertx Name Name\nunder O O\nOSGi Name Name\n( O O\nbndtools/eclipse Name Name\n) O O\nand O O\ngetting O O\nthis O O\nerror O O\nmessage O O\nfrom O O\nthe O O\nunderlying O O\nNetty Name Name\n. O O\n\nI O O\nam O O\nusing O O\nvertx Name Name\n3.3.3 Name Name\n\nusing O O\nbndtools Name Name\nin O O\nstandalone O O\nmode O O\n( O O\nmaven Name Name\n) O O\nso O O\nall O O\ndependencies O O\nare O O\nimported O O\nusing O O\nmaven Name Name\nand O O\nnot O O\nthe O O\nstandard O O\nbndtools Name Name\n( O O\ncnf O O\n) O O\ntemplate O O\n. O O\n\nIn O O\nmy O O\nbundle O O\nactivator O O\nI O O\ntry O O\nto O O\ncreate O O\na O O\nnew O O\nvertx Name Name\nusing O O\nthe O O\nstatic Name Name\nmethod O O\n: O O\n\n``` O O\n\n``` O O\n\nIn O O\nthe O O\nstandard O O\nbndtools Name Name\ntemplate O O\n( O O\nnone O O\nmaven Name Name\n) O O\nthis O O\nworks O O\nfine O O\n. O O\n\nI O O\nam O O\nnot O O\nsure O O\nI O O\ncan O O\nmix O O\nthe O O\ntwo O O\nmodes O O\nin O O\nthe O O\nsame O O\nproject O O\nand O O\nI O O\nprefer O O\nto O O\nstick O O\nto O O\nthe O O\nmaven Name Name\nformat O O\n. O O\n\nEDIT O O\n\nI O O\ncreated O O\nthis O O\nsample O O\nproject O O\ncloned O O\nfrom O O\nthe O O\nmain O O\nParemus Name Name\nproject O O\nhello O O\nexample O O\nto O O\ndemonstrate O O\nthe O O\nissue O O\nI O O\nam O O\nhaving O O\nwith O O\nVert.x Name Name\n& O O\nOSGi Name Name\n\nhttps://github.com/gadieichhorn/hello-examples/tree/hello-1.13.x O O\n\nEDIT O O\n2 O O\n\nI O O\nmoved O O\nthe O O\nVertx Name Name\ninitialization O O\nto O O\na O O\nservice O O\n( O O\nnot O O\nbundle O O\nactivator O O\n) O O\nand O O\nnow O O\nI O O\nam O O\ngetting O O\na O O\nmore O O\ndetailed O O\nerror O O\n. O O\n\nany O O\nhelp O O\nappreciated O O\n\nIt O O\nis O O\nbecause O O\n\" O O\nPlatformDependent0 Name Name\n\" O O\nimport O O\n\" Name Name\nsun.misc Name Name\n\" Name Name\n. O O\n\nYou O O\ncan O O\nsolve O O\nthis O O\nby O O\nsetting O O\n\" Name Name\norg.osgi.framework.system.packages.extra Name Name\n= Name Name\nsun.misc Name Name\n\" Name Name\n\nEDIT O O\n1 O O\n: O O\n\nI O O\nstart O O\nthe O O\nOSGi Name Name\nframework O O\n( O O\nApache Name Name\nFelix Name Name\n) O O\nthis O O\nway O O\n: O O\n\nBut O O\nI O O\nguess O O\nyou O O\ncan O O\ndirectly O O\nput O O\nthis O O\nsetting O O\nin O O\nthe O O\n\" Name Name\nfelix.config.properties Name Name\n\" Name Name\nfile O O\n. O O\n\nThe O O\nproblems O O\noccurs O O\nbecause O O\nsun.misc Name Name\nis O O\nprivate O O\nAPI Name Name\n. O O\n\nSo O O\nyou O O\nhave O O\nto O O\nexplicitly O O\nadd O O\nthe O O\npackage O O\nas O O\nan O O\nextra O O\npackage O O\nprovided O O\nby O O\nthe O O\nMain O O\nBundle O O\n. O O\n\nIt O O\nis O O\ndone O O\nimplicitly O O\nfor O O\npublic O O\nAPI Name Name\n( O O\njava.lang Name Name\n, O O\nutil Name Name\n.. Name Name\n. Name Name\n) Name Name\n\nDoes O O\nbinding O O\nan O O\nevent O O\non O O\ndocument Name Name\nhave O O\nany O O\nperformance O O\nconcerns O O\n? O O\n\ni.e O O\n: O O\n\nVs O O\n\nI O O\nthink O O\nkeeping O O\na O O\ntrack O O\nvia O O\ndocument Name Name\nwill O O\nuse O O\nmore O O\nprocessing O O\npower O O\nthen O O\nassigning O O\nthe O O\nevent O O\nonly O O\na O O\nlimited O O\nDOM Name Name\nelements O O\n? O O\n\nYou O O\nmight O O\nneed O O\nto O O\nimplement O O\na O O\nperformance O O\ntest O O\nto O O\nbe O O\nsure O O\nabout O O\nthe O O\nactual O O\ndifference O O\n, O O\nbut O O\nI O O\nguess O O\nit O O\nshould O O\nbe O O\na O O\nminimal O O\nimpact O O\n, O O\nbecause O O\nbinding O O\nevents O O\non O O\nthe O O\ndocument O O\nwill O O\nmean O O\nthat O O\nyou O O\ncatch O O\nany O O\nelement O O\nevent O O\nonce O O\nit O O\nbubbles O O\nto O O\nthe O O\ntop-most O O\nelement O O\nin O O\nthe O O\ndocument O O\n. O O\n\nAnyways O O\n, O O\nskipping O O\nthe O O\n\" O O\nperformance O O\nargument O O\n\" O O\n, O O\nyour O O\ncase O O\nlooks O O\nbetter O O\nwhen O O\nyou O O\nbind O O\na O O\nhandler Name Name\non O O\nthe O O\nnearest O O\nparent O O\n. O O\n\nIt O O\n's O O\nnot O O\nonly O O\nabout O O\nperformance O O\n: O O\nit O O\n's O O\nmore O O\nlogical O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nget O O\n2 O O\nsubstrings O O\nfrom O O\nthis O O\nline O O\n: O O\n\nIn O O\nthe O O\nfirst O O\nI O O\nmust O O\nhave O O\n/etc/ld.so.cache Name Name\nand O O\nin O O\nthe O O\nsecond O O\n/etc/ld.so.cache Name Name\n. O O\n\nSo O O\nI O O\nwrote O O\nthis O O\n\nBut O O\nit O O\ndoes O O\nn't O O\nreturn O O\nthe O O\nfirst O O\ngroup O O\n. O O\n\nCould O O\nyou O O\ntell O O\nme O O\n, O O\nif O O\nmy O O\nregex Name Name\nis O O\ngood O O\n? O O\n\nNearly O O\n. O O\n\nIn O O\nPOSIX Name Name\nregexes O O\n, O O\nparentheses Name Name\nand O O\nother O O\nspecial O O\ncharacters Name Name\nhave O O\nto O O\nbe O O\nescaped O O\nif O O\nyou O O\nwant O O\nthem O O\nto O O\nmatch O O\nthemselves O O\n, O O\nnot O O\nto O O\naccess O O\ntheir O O\nspecial O O\nfunction O O\n, O O\nso O O\nit O O\nhas O O\nto O O\nbe O O\n\nIn O O\naddition O O\n, O O\nif O O\nyou O O\nwant O O\nthe O O\ncaptures O O\n, O O\nyou O O\nhave O O\nto O O\ncompile O O\nthe O O\nregex O O\nwithout O O\nREG_NOSUB Name Name\n: O O\n\nand O O\n.. O O\nthe O O\nprintf Name Name\nwill O O\nprobably O O\nsegfault O O\non O O\nyou O O\nat O O\nthe O O\nmoment O O\n; O O\nthe O O\narguments O O\ndo O O\nn't O O\nmatch O O\nthe O O\nformat O O\nstring Name Name\n. O O\n\nSo O O\nlet O O\n's O O\nsay O O\nI O O\nhave O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nNow O O\n, O O\nwhat O O\nI O O\nwould O O\nlike O O\nto O O\ndo O O\nis O O\nhave O O\nthe O O\ntd2 Name Name\ntext Name Name\nto O O\nshow O O\nwhen O O\nyou O O\nfirst O O\nsee O O\nthe O O\npage Name Name\n, O O\nbut O O\nnot O O\nthe O O\ntd3 Name Name\n. O O\n\nThen O O\nwhen O O\nclicking O O\nthe O O\ntd2 O O\ndiv Name Name\nit O O\nmakes O O\na O O\nfadeout O O\nor O O\nslides O O\nupwards O O\n, O O\nand O O\nthen O O\nreveal O O\nthe O O\ntd3 O O\ndiv Name Name\nand O O\nthat O O\ntext Name Name\n. O O\n\nIn O O\nthis O O\nparticular O O\ncase O O\nthe O O\ndiv Name Name\ndoes O O\nn't O O\nhave O O\nto O O\ncome O O\nback O O\nwhen O O\nre-clicking O O\n. O O\n\nIt O O\n's O O\njust O O\nlike O O\na O O\n\" O O\none O O\nway O O\nticket O O\n\" O O\n. O O\n\nClick O O\n, O O\nand O O\nit O O\n's O O\ngone O O\nforever O O\n. O O\n\nWhat O O\nmight O O\nbe O O\nthe O O\neasiest O O\nway O O\nto O O\ndo O O\nthis O O\n? O O\n\nYou O O\ncould O O\nuse O O\nJQuery Name Name\nUI Name Name\nto O O\nget O O\nthe O O\nfade O O\neffect O O\n, O O\nand O O\nregister O O\nto O O\nclick O O\nevent O O\non O O\n.td2 Name Name\nin O O\norder O O\nto O O\nupdate O O\nthe O O\nDOM Name Name\nas O O\nper O O\nyour O O\nrequirement O O\n. O O\n\nHere O O\n's O O\none O O\nway O O\nof O O\ndoing O O\nit O O\n: O O\n\nYou O O\nwill O O\nneed O O\nto O O\nlearn O O\nsome O O\njavascript Name Name\nand O O\nsome O O\njQuery Name Name\nfor O O\nthis O O\n;) O O\n\nHere O O\nis O O\nthe O O\noutput O O\nof O O\nan O O\nexplain O O\ncommand O O\nin O O\nmysql(innodb) Name Name\n: O O\n\nThe O O\nschema O O\nof O O\ntable Name Name\nmulti_index_test_tbl_1 Name Name\nis O O\nas O O\nfollow O O\n: O O\n\nIt O O\nseems O O\nthat O O\nquery_index_1 Name Name\nis O O\nused O O\n. O O\n\nAnd O O\n' O O\nusing O O\nindex O O\n' O O\nappears O O\nin O O\nExtra Name Name\nwhile O O\nthe O O\nindex O O\nquery_index_1 Name Name\ndoes O O\nn't O O\ncontain O O\nall O O\nfields O O\nin O O\ntable Name Name\nmulti_index_test_tbl_1 Name Name\n. O O\n\nSince O O\nmysql Name Name\ndoc O O\nsays O O\nthat O O\n: O O\n\nI O O\n'm O O\nconfused O O\nwhat O O\n's O O\nexactly O O\nhappening O O\nhere O O\n. O O\n\nAh O O\n, O O\nbut O O\nit O O\ndoes O O\n' O O\ncontain O O\nrequired O O\nfields O O\n' O O\n. O O\n\nTo O O\nelaborate. O O\n. O O\n\nInnoDB Name Name\nincludes O O\nall O O\nthe O O\ncolumns Name Name\nof O O\nthe O O\nPRIMARY Name Name\nKEY Name Name\nin O O\neach O O\n' O O\nsecondary O O\n' O O\nindex O O\n. O O\n\nSo O O\n, O O\n\nis O O\nreally O O\nmore O O\nlike O O\n\nIn O O\nyour O O\nexample O O\n, O O\nthat O O\nincludes O O\nall O O\nthe O O\ncolumns Name Name\n. O O\n\nHence O O\n, O O\neverything O O\nin O O\nthe O O\nSELECT Name Name\n, O O\nincluding O O\n* Name Name\nis O O\nfound O O\nin O O\nthat O O\nsecondary O O\nindex O O\n. O O\n\nSo O O\n, O O\n\" O O\nUsing O O\nindex O O\n\" O O\nis O O\n' O O\ncorrect O O\n' O O\n. O O\n\nThis O O\nis O O\none O O\nway O O\nin O O\nwhich O O\nInnoDB Name Name\nis O O\nsometimes O O\nbetter O O\nthan O O\nMyISAM Name Name\n. O O\n\nTry O O\nEXPLAIN Name Name\nFORMAT Name Name\n= Name Name\nJSON Name Name\nSELECT Name Name\n.. Name Name\n. Name Name\nto O O\nget O O\nmore O O\ndetails O O\n. O O\n\nMy O O\ncode O O\nis O O\nvery O O\nsimple O O\n: O O\n\nand O O\nif O O\ni O O\nput O O\n1000000000 Name Name\nfor O O\nboth O O\nm Name Name\nand O O\nn Name Name\nas O O\na O O\nresult O O\ni O O\nget O O\n-1486618624 Name Name\n, O O\nalso O O\nm Name Name\nand O O\nn Name Name\nare O O\nlongint Name Name\n, O O\nso O O\nthey O O\nare O O\nn't O O\nover O O\nthe O O\nlimit O O\nwith O O\n1 Name Name\n000 Name Name\n000 Name Name\n000 Name Name\n. O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nm*n Name Name\nis O O\n1,000,000,000,000,000,000 Name Name\nand O O\ndoes O O\nnot O O\nfit O O\nin O O\na O O\nLongInt Name Name\n. O O\n\nTry O O\nusing O O\nInt64 Name Name\nor O O\nQWord Name Name\ninstead O O\n. O O\n\nI O O\nhave O O\nhad O O\na O O\nfew O O\nitems O O\ncome O O\nup O O\nrecently O O\nwhere O O\nI O O\nhave O O\na O O\nneed O O\nto O O\nexecute O O\na O O\nmethod O O\nimmediately O O\nafter O O\ninitial O O\nscreen Name Name\nload O O\n. O O\n\nFor O O\nexample O O\na O O\ncouple O O\nscenario's O O\n: O O\n\n1) O O\nProcessing O O\nscreen Name Name\nwhere O O\nthe O O\ndata O O\nshown O O\nin O O\nthe O O\nprocessing O O\nscreen Name Name\ncomes O O\nfrom O O\nan O O\nexternal O O\nAPI Name Name\n( O O\ndynamically O O\nloaded O O\nand O O\nparsed O O\n, O O\nthen O O\ndisplayed O O\nfor O O\nprocessing O O\n) O O\n\n2) O O\nAutomatically O O\nload O O\na O O\nsecond O O\nwindow/tab Name Name\nwhen O O\nthe O O\nscreen Name Name\nfinishes O O\nloading O O\nbased O O\non O O\ndata O O\nin O O\nthe O O\nrecord O O\n. O O\n\n3) O O\nA O O\npopup Name Name\nprompt Name Name\nafter O O\nscreen Name Name\nload O O\nnotifying O O\nthe O O\nuser O O\nof O O\na O O\nsituation O O\non O O\nthe O O\nitem O O\nthe O O\nloaded O O\n. O O\n\nAll O O\nthree O O\nof O O\nthese O O\npresent O O\ndifferent O O\nchallenges O O\nwhich O O\nlead O O\nme O O\nto O O\nwonder O O\nif O O\nwhat O O\nthe O O\nbest O O\nday O O\nto O O\nhandle O O\nthese O O\nwould O O\nbe O O\n. O O\n\nFor O O\nexample O O\n, O O\nitem O O\n1 O O\n- O O\ncurrently O O\nI O O\nhave O O\nan O O\na O O\ncall O O\nin O O\nthe O O\n\" O O\nGetRecords Name Name\n\" O O\noverride O O\nthat O O\nif O O\nthe O O\nView O O\ncontains O O\nno O O\nrecords O O\n, O O\ncalls O O\nthe O O\na O O\nlong O O\nrunning O O\nprocess O O\nto O O\ngo O O\ngrab O O\nthe O O\nrecords O O\n. O O\n\nWhile O O\nthis O O\nworks O O\n, O O\nI O O\n'm O O\npresented O O\nwith O O\ntwo O O\nissues O O\n\nIf O O\nI O O\nlet O O\nthe O O\nlong O O\nprocess O O\nrun O O\nand O O\nthen O O\nrequest O O\na O O\nrefresh O O\n, O O\nthe O O\nuser O O\nhas O O\nthe O O\nability O O\nto O O\nclick O O\n\" O O\nProcess/Process O O\nAll O O\n\" O O\nbefore O O\ndata O O\nis O O\navailable O O\n. O O\n\nThis O O\nalso O O\neffects O O\nscheduling O O\nof O O\nthe O O\nprocess O O\n. O O\n\nIf O O\nI O O\nblock O O\nthe O O\nprocess O O\nwith O O\na O O\nWaitTillCompleted Name Name\n, O O\nthe O O\nuser O O\nis O O\npresented O O\nwith O O\na O O\nstandard O O\npage Name Name\nloading Name Name\nspinner Name Name\ninstead O O\nof O O\nthe O O\n\" O O\nLong O O\nrunning O O\nProcess O O\n\" O O\nindicator O O\nbut O O\nallows O O\nscheduling O O\nto O O\nwork O O\ncorrectly O O\n. O O\n\nFor O O\n#2 O O\n/3 O O\n, O O\nthe O O\nrequest O O\nfor O O\nthe O O\nnew O O\nwindow/tab Name Name\nand O O\nthe O O\npopup Name Name\nboth O O\nseem O O\nto O O\nbe O O\ninitiated O O\nfrom O O\na O O\npostback O O\nto O O\nfunction O O\ncorrectly O O\n. O O\n\nThat O O\nleads O O\nme O O\nto O O\nbelieve O O\nI O O\nneed O O\na O O\njavascript Name Name\nmethod O O\nto O O\nrun O O\nafter O O\nthe O O\npage Name Name\nfinishes O O\ninit O O\nto O O\nexecute O O\nthe O O\nappropriate O O\nactions O O\n. O O\n\nIs O O\nthere O O\na O O\nbetter O O\nway O O\nto O O\nhandle O O\neither O O\nof O O\nthese O O\nsituations O O\nwith O O\nnative O O\nframework O O\nmethods O O\n? O O\n\nWhile O O\nthis O O\ndoes O O\nn't O O\ndirectly O O\nanswer O O\nthe O O\nneed O O\nto O O\ncall O O\na O O\nmethod O O\nin O O\npage Name Name\nload O O\n, O O\nhere O O\nare O O\nsome O O\noptions O O\nfor O O\nchecking O O\nfor O O\nrunning O O\nprocess O O\nto O O\ncontrol O O\nbuttons Name Name\nor O O\ndisplaying O O\nmessages O O\noutside O O\nof O O\na O O\npopup Name Name\n.. O O\n. O O\n\nWe O O\nhave O O\nsome O O\nareas O O\nwhere O O\nwe O O\nwant O O\nto O O\nwait O O\nor O O\nprevent O O\nusers O O\nfrom O O\nre-processing O O\nbefore O O\nthe O O\nlast O O\nprocess O O\ncompletes O O\nand O O\nhave O O\nimplemented O O\nsome O O\nof O O\nthe O O\nfollowing O O\nexamples O O\n. O O\n\nCheck O O\nto O O\nsee O O\nif O O\nthe O O\nprocess O O\nis O O\ncurrently O O\nrunning O O\n. O O\n\nCould O O\nbe O O\nused O O\nto O O\ndisable O O\nbuttons Name Name\nor O O\nexist O O\naction O O\nbuttons Name Name\n.. O O\n. O O\n\nWait O O\nfor O O\nthe O O\ncurrently O O\nrunning O O\nprocess O O\nto O O\nfinish O O\n.. O O\n. O O\n\nI O O\nhave O O\nnot O O\nworked O O\nwith O O\na O O\npopup Name Name\nduring O O\ndata O O\nload O O\nbut O O\nyou O O\nmight O O\nbe O O\nbetter O O\noff O O\npresenting O O\na O O\nrow Name Name\nwarning/error O O\nfor O O\nthe O O\ndisplayed O O\ndata O O\nrather O O\nthan O O\na O O\npop Name Name\nup Name Name\n? O O\n\nI O O\nhave O O\nseen O O\nthis O O\nmethod O O\nin O O\nandroid Name Name\nsource O O\ncode O O\n. O O\n\nwhy O O\nnot O O\nsomething O O\nlike O O\nthis O O\n\nwhat O O\nis O O\nthe O O\nadvantage O O\nof O O\nmodifying O O\nargument O O\ninstead O O\nof O O\nreturning O O\nnew O O\nvalue O O\n\nThe O O\nadvantage O O\nof O O\nmodifying O O\nan O O\nargument O O\ninstead O O\nof O O\nreturning O O\na O O\nnew O O\ninstance O O\nis O O\nthat O O\nyou O O\nput O O\ncontrol O O\nof O O\ninstantiation O O\nin O O\nthe O O\nhands O O\nof O O\nthe O O\ncalling O O\ncode O O\n- O O\ni.e O O\n. O O\n\nyou O O\nallow O O\nit O O\nto O O\nre-use O O\nan O O\nexisting O O\ninstance O O\n. O O\n\nThe O O\n' O O\nmodifying O O\nargument O O\n' O O\napproach O O\nallows O O\nyou O O\nto O O\ninitialise O O\nan O O\nobject O O\nusing O O\nseveral O O\nsuch O O\nmethods O O\n. O O\n\ne.g O O\n. O O\n\nArguably O O\nyou O O\ncould O O\ndo O O\nthe O O\nsame O O\nthing O O\nby O O\nreturning O O\nthe O O\nsame O O\ninstance O O\nas O O\nwas O O\npassed O O\nin O O\nas O O\na O O\nparameter O O\n, O O\nbut O O\nI O O\npersonally O O\nthink O O\nthat O O\n's O O\nasking O O\nfor O O\ntrouble O O\n. O O\n\nAnother O O\npossible O O\nreason O O\nmight O O\nbe O O\nif O O\nthe O O\ncost O O\nof O O\ninstantiation O O\nwas O O\nhigh O O\n, O O\nyou O O\nmight O O\nwant O O\nto O O\nrecycle O O\nan O O\nold O O\nobject O O\n. O O\n\nThis O O\ndoes O O\nn't O O\nappear O O\nto O O\nbe O O\nthe O O\ncase O O\nwith O O\nthe O O\ncode O O\nyou O O\npresent O O\nthough O O\n, O O\nand O O\nit O O\n's O O\nan O O\noptimisation O O\nso O O\nonly O O\nthink O O\nabout O O\ndoing O O\nthis O O\nif O O\nabsolutely O O\nnecessary O O\n! O O\n\nPersonally O O\nI O O\nwould O O\ntend O O\nto O O\ntake O O\nthe O O\n' O O\nreturn O O\na O O\nnew O O\ninstance O O\n' O O\napproach O O\nunless O O\nthere O O\n's O O\na O O\nspecific O O\nreason O O\nnot O O\nto O O\n. O O\n\nI O O\nthink O O\nit O O\n's O O\nsimpler O O\nand O O\ndecreases O O\nthe O O\nlikelihood O O\nof O O\nsubtle O O\nerrors O O\nin O O\nthe O O\ncalling O O\ncode O O\n. O O\n\nI O O\n'm O O\nwith O O\na O O\n.NET/C Name Name\n# Name Name\nWebForm Name Name\napplication O O\n. O O\n\nI O O\ncreate O O\na O O\nclass O O\n, O O\nand O O\nI O O\n'd O O\nlike O O\nto O O\nuse O O\nthe O O\nobject O O\nSession Name Name\nor O O\nRequest Name Name\n( O O\nas O O\nI O O\nuse O O\non O O\nan O O\n.aspx Name Name\npage Name Name\n) O O\nwithout O O\nprefix O O\nit O O\nwith O O\nHttpContext.Current Name Name\n. O O\n\nI O O\nguess O O\nI O O\ncan O O\njust O O\nimport O O\na O O\nclass O O\nby O O\nusing O O\n? O O\n\nBut O O\nwhich O O\n? O O\n\nTo O O\nobtain O O\nRequest Name Name\n, O O\nSession Name Name\netc O O\nin O O\nan O O\nunrelated O O\nclass O O\nwithout O O\nusing O O\nHttpContext.Current Name Name\nfirst. O O\n. O O\nwell O O\n, O O\nyou O O\nca O O\nn't O O\n- O O\nunless O O\nyou O O\nadd O O\nthem O O\nas O O\nproperties O O\nsomewhere O O\n- O O\nfor O O\nexample O O\n: O O\n\nHowever O O\n, O O\nfrankly O O\nI O O\ndo O O\nn't O O\nthink O O\nI O O\nwould O O\ndo O O\nthis O O\n. O O\n\nIn O O\nfact O O\n, O O\nI O O\nwould O O\nstrongly O O\nadvise O O\nlimiting O O\nhow O O\nmuch O O\nyour O O\nutility O O\ncode O O\nknows O O\nabout O O\nthe O O\nrequest O O\nmodel O O\n, O O\nand O O\nsimply O O\nfigure O O\nout O O\nwhat O O\nthe O O\nclass O O\nneeds O O\nto O O\nknow O O\n, O O\nand O O\ngive O O\nit O O\nexactly O O\nthat O O\n. O O\n\nLet O O\nthe O O\nUI O O\nlayer O O\nworry O O\nabout O O\nASP.NET Name Name\n, O O\nnot O O\nyour O O\nlogic O O\ncode O O\n. O O\n\nBy O O\nusing O O\nthis O O\nSystem.Web.SessionState Name Name\nyou O O\ncan O O\naccess O O\nthe O O\nsession O O\n. O O\n\nMore O O\ninformation O O\non O O\nthis O O\nlink O O\n\nNamespace O O\n: O O\nSystem.Web.SessionState Name Name\n\nAssembly O O\n: O O\nSystem.Web Name Name\n( O O\nin O O\nSystem.Web.dll Name Name\n) O O\n\nI O O\nhave O O\na O O\nsingle O O\npage O O\napplication O O\nusing O O\nAngularJS Name Name\nand O O\nI O O\nam O O\nfacing O O\none O O\nperformance O O\nissue O O\nin O O\nit O O\n. O O\n\nMy O O\napplication O O\nprocesses O O\nincoming O O\nevents O O\nfrom O O\nthe O O\nserver Name Name\nside O O\nwhich O O\nare O O\npassed O O\nto O O\nthe O O\nAngularJS Name Name\nframework O O\non O O\nthe O O\nclient Name Name\nside O O\nusing O O\nASP.NET Name Name\nSignalR Name Name\n. O O\n\nThere O O\nare O O\nmillions O O\nof O O\nevents O O\nthat O O\ncan O O\nbe O O\nreceived O O\nby O O\nmy O O\napplication O O\nand O O\nthere O O\nis O O\nno O O\nperformance O O\nissue O O\non O O\nthe O O\nserver Name Name\nside O O\nand O O\nit O O\neasily O O\npasses O O\nthese O O\nnumber O O\nof O O\nevents O O\none O O\nafter O O\nthe O O\nother O O\nto O O\nthe O O\nAngularJS Name Name\nframework O O\n. O O\n\nThe O O\nproblem O O\nlies O O\non O O\nthe O O\nclient Name Name\nside O O\n. O O\n\nAfter O O\nprocessing O O\nthe O O\nevent O O\n, O O\ni O O\nuse O O\n$scope.$apply() Name Name\nto O O\nupdate O O\nthe O O\npage O O\nand O O\ndisplay O O\nthe O O\nevents O O\n. O O\n\nIn O O\nsuch O O\na O O\ncase O O\nwhere O O\nthere O O\nare O O\nmultiple O O\nevents O O\nbeing O O\nreceived O O\none O O\nafter O O\nthe O O\nother O O\n, O O\ncalling O O\n$scope.$apply() Name Name\nevery O O\ntime O O\nslows O O\ndown O O\nthe O O\napplication O O\nand O O\ndoes O O\nnot O O\nshow O O\nthe O O\nevents O O\nquickly O O\n. O O\n\nThe O O\nevents O O\nwill O O\nbe O O\npassed O O\nat O O\nrandom O O\nso O O\nI O O\ndo O O\nn't O O\neven O O\nknow O O\nhow O O\nany O O\nevents O O\nwill O O\nbe O O\nreceived O O\nby O O\nmy O O\napplication O O\nat O O\nany O O\npoint O O\nin O O\ntime O O\n. O O\n\nAny O O\nideas O O\non O O\nhow O O\nto O O\nget O O\nthis O O\nissue O O\nresolved O O\nwill O O\nbe O O\nvery O O\nhelpful O O\n. O O\n\nThanks O O\n. O O\n\nInstead O O\nof O O\nusing O O\n$scope.$apply() Name Name\n, O O\nuse O O\n$scope.$evalAsync() Name Name\ninstead O O\n. O O\n\nFrom O O\nthe O O\ndocs O O\n: O O\n\nI O O\nalso O O\ntended O O\nto O O\nhave O O\na O O\n$scope.$safeApply() Name Name\nmethod O O\nas O O\nwell O O\nthat O O\nwas O O\neffectively O O\na O O\ndebounced O O\ncall O O\nto O O\n$scope.$evalAsync() Name Name\n. O O\n\nSo O O\nfar O O\n, O O\nI O O\nhave O O\nan O O\nexcel Name Name\nfile O O\nas O O\nsuch O O\n\nhttp://i.stack.imgur.com/zX3xC.png O O\n\nMy O O\nproblem O O\nis O O\nthat O O\nI O O\nwant O O\nto O O\nbe O O\nable O O\nto O O\ninput O O\na O O\nnumber O O\nafter O O\nhaving O O\nthe O O\nsearch Name Name\nbutton Name Name\npressed O O\nand O O\nan O O\nInput Name Name\nbox Name Name\nappears O O\n, O O\nWith O O\nthe O O\nnumber O O\nin O O\nthe O O\nsearch Name Name\nbar Name Name\nfor O O\nall O O\nnumbers O O\nthat O O\nmatch O O\nin O O\nthe O O\nspreadsheet Name Name\nto O O\nbe O O\nselected O O\n. O O\n\nAlso O O\nas O O\nas O O\naddition O O\nto O O\nbe O O\nable O O\nto O O\nput O O\nin O O\na O O\nfew O O\nnumbers O O\n( O O\n40 Name Name\n, O O\n21 Name Name\n, O O\n33 Name Name\nseparated O O\nby O O\ncommas O O\n) O O\n\nMy O O\ncurrent O O\ncode O O\nis O O\n: O O\n\nI O O\nam O O\nfairly O O\nnew O O\nto O O\ncoding O O\nso O O\na O O\nlot O O\nof O O\nthis O O\nhas O O\ncome O O\nfrom O O\ninternet O O\nresearch O O\netc O O\n. O O\n\nAbandon O O\nyour O O\nAutoFilter Name Name\nmethod O O\nin O O\nfavor O O\nof O O\na O O\nRange.Find Name Name\nmethod O O\n. O O\n\nWhile O O\nultimately O O\npossible O O\nwith O O\na O O\nseries O O\nof O O\n.AutoFilters Name Name\napplied O O\nto O O\neach O O\ncolumn Name Name\n, O O\nsimply O O\ncollecting O O\nthe O O\nresults O O\nfrom O O\na O O\n.Find Name Name\noperation O O\nwith O O\nthe O O\nUnion Name Name\nmethod O O\nmakes O O\nmore O O\nsense O O\n. O O\n\nIt O O\nis O O\nnot O O\nclear O O\nwhat O O\nactions O O\nyou O O\nwant O O\nto O O\nperform O O\nafter O O\nthe O O\nRange Name Name\n.Selectยน Name Name\nmethod O O\nhas O O\nbeen O O\napplied O O\n. O O\n\nI O O\nwould O O\nsuggest O O\nthat O O\na O O\nsimple O O\nWith Name Name\n.. Name Name\n. Name Name\nEnd Name Name\nWith Name Name\nstatement O O\nwoudl O O\nallow O O\nyou O O\nto O O\ncontinue O O\nworking O O\non O O\nthe O O\nrng Name Name\ndiscontiguous O O\nRange Name Name\nobject O O\nwithout O O\nactually O O\nselecting O O\nit O O\nat O O\nall O O\n. O O\n\nยน O O\nSee O O\nHow O O\nto O O\navoid O O\nusing O O\nSelect Name Name\nin O O\nExcel Name Name\nVBA Name Name\nmacros O O\nfor O O\nmore O O\nmethods O O\non O O\ngetting O O\naway O O\nfrom O O\nrelying O O\non O O\nselect Name Name\nand O O\nactivate Name Name\nto O O\naccomplish O O\nyour O O\ngoals O O\n. O O\n\nI O O\nhave O O\ntested O O\nwhile Name Name\nloop O O\nbelow O O\nand O O\ndo O O\nn't O O\nunderstand O O\nthe O O\nresult O O\n. O O\n\nHow O O\nis O O\nit O O\npossible O O\nto O O\nhave O O\nthe O O\nresult O O\nx Name Name\n= Name Name\n1.5 Name Name\nfor O O\nthe O O\nused O O\nwhile O O\ncondition O O\nwhere O O\nx Name Name\n< Name Name\n14.1 Name Name\n? O O\n\nHow O O\nto O O\nexplain O O\nthis O O\nresult O O\n? O O\n\nUpdate O O\n: O O\n\nand O O\none O O\nmore O O\n. O O\n\nWhy O O\nthe O O\nresults O O\nare O O\ndifferent O O\nfor O O\nDouble Name Name\nand O O\nFloat Name Name\n? O O\n\nUpdate O O\n2 O O\n\nand O O\nanother O O\none O O\n. O O\n\nWhy O O\nthere O O\nis O O\nno O O\ndifference O O\nfor O O\n< Name Name\nand O O\n<= Name Name\nconditions O O\n. O O\n\nDoes O O\nit O O\nmean O O\nthat O O\nusage O O\nof O O\n<= Name Name\nhas O O\nno O O\nsense O O\nfor O O\nfloating Name Name\npoint Name Name\n? O O\n\nWhat O O\nelse O O\nwould O O\nyou O O\nexpect O O\n? O O\n\nThe O O\nloop O O\nis O O\nexecuted O O\n15 O O\ntimes O O\n. O O\n\nOn O O\nthe O O\n14th O O\ntime O O\n, O O\nx Name Name\nis O O\n1.4 Name Name\nand O O\nso O O\nyou O O\nadd O O\nanother O O\n0.1 Name Name\n, O O\nmaking O O\nit O O\n1.5 Name Name\n. O O\n\nIf O O\nyou O O\nexpect O O\nthe O O\nloop O O\nto O O\nterminate O O\nat O O\n1.4 Name Name\n, O O\nyou O O\nshould O O\nincrement O O\nx Name Name\nbefore O O\nchecking O O\nthe O O\nwhile O O\ncondition O O\n, O O\nnot O O\nafter O O\nthat O O\n. O O\n\nIf O O\nyou O O\nexpect O O\nthe O O\nloop O O\nto O O\nterminate O O\non O O\n1.41 Name Name\n, O O\nyour O O\nincrement O O\nis O O\nwrong O O\nand O O\nyou O O\nshould O O\ndo O O\n\ninstead O O\n, O O\nmaking O O\nit O O\n141 O O\niterations O O\n. O O\n\nAs O O\nfor O O\nthe O O\nsecond O O\nquestion O O\n, O O\nI O O\nam O O\naware O O\nthat O O\nFloat Name Name\nshould O O\nnot O O\nbe O O\nused O O\nfor O O\nmonetary O O\ncalculations O O\nand O O\nsuch O O\ndue O O\nto O O\nits O O\nlack O O\nof O O\nprecision O O\n. O O\n\nHowever O O\n, O O\nI O O\ntrusted O O\nDouble Name Name\nso O O\nfar O O\n, O O\nand O O\nthe O O\nwhile O O\nloop O O\nin O O\nrun O O\n15 O O\nactually O O\nclaims O O\nthe O O\nDouble Name Name\nvalue O O\nto O O\nbe O O\nless O O\nthan O O\n1.0 Name Name\nwhile O O\nit O O\nis O O\nreported O O\nto O O\nbe O O\n1.0 Name Name\n. O O\n\nWe O O\nhave O O\ngot O O\na O O\nprecision O O\nproblem O O\nhere O O\n, O O\nas O O\nwe O O\ncan O O\nsee O O\nif O O\nwe O O\nsubstract O O\nx Name Name\nfrom O O\n1.0 Name Name\n: O O\n\nwhich O O\nreturns O O\n: O O\n1.11022302462516e-16 Name Name\n\nAt O O\nthe O O\nsame O O\ntime O O\n, O O\nFloat Name Name\nseems O O\nto O O\nbe O O\nunprecise O O\nin O O\nthe O O\nother O O\ndirection O O\n. O O\n\nIn O O\nthe O O\nlast O O\nrun O O\n, O O\nit O O\nis O O\na O O\nlittle O O\nbigger O O\nthan O O\n0.9 Name Name\n( O O\n0.9 Name Name\n+ Name Name\n5.96046e-08 Name Name\n) O O\n, O O\nmaking O O\nit O O\nbigger O O\nthan O O\n10 Name Name\nin O O\nthe O O\nfollowing O O\nrun O O\n. O O\n\nThe O O\nreason O O\nwhy O O\nDouble Name Name\nand O O\nFloat Name Name\nare O O\nwrong O O\nin O O\ndifferent O O\ndirections O O\nis O O\njust O O\na O O\nmatter O O\nof O O\nhow O O\nthe O O\nvalues O O\nare O O\nstored O O\n, O O\nand O O\nthe O O\nresult O O\nwill O O\nbe O O\ndifferent O O\ndepending O O\non O O\nthe O O\nnumber O O\n. O O\n\nFor O O\nexample O O\n, O O\nwith O O\n2.0 O O\nboth O O\nactual O O\nvalues O O\nare O O\nbigger O O\n: O O\nDouble Name Name\nby O O\n4.440892.e-16 Name Name\nand O O\nFloat Name Name\nby O O\n2.38419e-07 Name Name\n. O O\n\nFor O O\n3.0 O O\nDouble Name Name\nis O O\nbigger O O\nby O O\n1.33226e-15 O O\nand O O\nFloat Name Name\nsmaller O O\nby O O\n7.1525e-07 O O\n. O O\n\nThe O O\nsame O O\nproblems O O\noccur O O\nusing O O\nx.isLess(than:1.0) Name Name\n, O O\nbut O O\nthis O O\nmethod O O\nis O O\nthe O O\nbasis O O\nfor O O\nthe O O\n< Name Name\noperator O O\nas O O\nof O O\nhttps://developer.apple.com/reference/swift/floatingpoint/1849403-isless O O\n\nisLessThanOrEqualTo(1.0) Name Name\n, O O\non O O\nthe O O\nother O O\nhand O O\n, O O\nseems O O\nto O O\nwork O O\nreliably O O\nas O O\nexpected O O\n. O O\n\nThis O O\nanswer O O\nis O O\npretty O O\nmuch O O\na O O\nquestion O O\nitself O O\nby O O\nnow O O\n, O O\nso O O\nI O O\n'm O O\ncurious O O\nif O O\nanyone O O\nhas O O\nan O O\nin-depth O O\nexplanation O O\nof O O\nthis O O\n.. O O\n. O O\n\nUpdate O O\n\nThe O O\nmore O O\nI O O\nthink O O\nabout O O\nit O O\n, O O\nthe O O\nless O O\nof O O\na O O\nSwift Name Name\nproblem O O\nit O O\nis O O\n. O O\n\nBasically O O\n, O O\nyou O O\nhave O O\nthat O O\nproblem O O\nin O O\nall O O\nfloating Name Name\npoint Name Name\ncalculations O O\n, O O\nbecause O O\nthey O O\nare O O\nnever O O\nprecise O O\n. O O\n\nBoth O O\nFloat Name Name\nand O O\nDouble Name Name\nare O O\nnot O O\nprecise O O\n, O O\nDouble Name Name\nis O O\njust O O\ntwice O O\nas O O\naccurate O O\n. O O\n\nHowever O O\n, O O\nthis O O\nmeans O O\nthat O O\ncomparisons O O\nlike O O\n== Name Name\nare O O\nuseless O O\nwith O O\nfloating Name Name\npoint Name Name\nvalues O O\nunless O O\nthey O O\nare O O\nboth O O\nrounded O O\n. O O\n\nTherefore O O\n, O O\ngood O O\nadvice O O\nin O O\nloops O O\nlike O O\nthose O O\nof O O\nyours O O\nwith O O\na O O\nknown O O\nprecision O O\n( O O\nin O O\nyour O O\ncase O O\none O O\ndecimal Name Name\n) O O\nwould O O\nbe O O\nto O O\nround O O\nto O O\nthat O O\nprecision O O\nbefore O O\ndoing O O\nany O O\nkind O O\nof O O\ncomparison O O\n. O O\n\nFor O O\nexample O O\n, O O\nthis O O\nwould O O\nfix O O\nthe O O\nloop O O\n: O O\n\nI O O\n'm O O\ntrying O O\nto O O\nmake O O\na O O\nWordpress Name Name\npage O O\nwhere O O\nthe O O\nuser O O\ncan O O\npoint O O\nto O O\na O O\nlocation O O\nby O O\nwriting O O\nthe O O\nadress O O\nor O O\nbrowsing O O\na O O\nmap` Name Name\n. O O\n\nAs O O\nyou O O\ncan O O\nsee O O\nin O O\nthe O O\npage O O\n( O O\nhttp://www.levinor.es/pruebas/pagina-ejemplo/ O O\n) O O\nthe O O\nmap Name Name\nis O O\nn't O O\nloading O O\nand O O\nI O O\ndo O O\nn't O O\nknow O O\nwhy O O\n.. O O\n. O O\n\nI O O\nchecked O O\nthe O O\nAPI Name Name\nKey Name Name\n, O O\nand O O\nthe O O\nallowed O O\ndomains O O\n( O O\n.levinor.es/ O O\n) O O\nof O O\nthe O O\nkey O O\n.. O O\n. O O\n\nPlease O O\nI O O\nneed O O\nsome O O\nhelp O O\n.. O O\n. O O\n\nTo O O\ndo O O\nso O O\nI O O\ncreated O O\nthis O O\njavascript Name Name\n( O O\ngoogle-maps.js Name Name\n) O O\nand O O\nplaced O O\nit O O\nin O O\nthe O O\nscript O O\nfolder O O\nof O O\nmy O O\ntheme O O\n: O O\n\nI O O\nplaced O O\nthe O O\nnext O O\ncode O O\ninto O O\nthe O O\nfuncionts.php Name Name\nfile O O\nfor O O\nreferencing O O\nthe O O\njs Name Name\n( O O\nI O O\ndoubled O O\nchecked O O\nthe O O\npage O O\nID O O\nand O O\nmy O O\nAPI Name Name\nKey Name Name\n) O O\n: O O\n\n} Name Name\n\nAnd O O\nadded O O\nto O O\nmy O O\nheader.php Name Name\n: O O\n\nThe O O\ncode O O\nof O O\nthe O O\npage O O\nis O O\n: O O\n\nI O O\nwill O O\nbe O O\nvery O O\ngratefull O O\nif O O\nsomeone O O\ncan O O\nhelp O O\nme O O\n. O O\n\nThanks O O\n! O O\n\nGoogle Name Name\nhas O O\ndisabled O O\nthe O O\nuse O O\npt O O\nthe O O\nMaps Name Name\nAPI Name Name\nfor O O\nthis O O\napplication O O\n. O O\n\nThe O O\nkey O O\nyou O O\nused O O\nis O O\nnot O O\nvalid O O\nor O O\nis O O\nnot O O\nauthorized O O\nfor O O\nGoogle Name Name\nmaps Name Name\nJavaScript Name Name\nAPI Name Name\n. O O\n\nIf O O\nyou O O\nobtained O O\nthis O O\nkey O O\nyou O O\nstill O O\nneed O O\nto O O\nenable O O\nthe O O\nuse O O\nof O O\nthe O O\nJavaScript Name Name\nAPI Name Name\n\nGo O O\nto O O\nthis O O\nlink O O\nfor O O\nmore O O\ninfo O O\n: O O\n\nhttps://developers.google.com/maps/documentation/javascript/tutorial O O\n\nI O O\nhave O O\nreport O O\nwith O O\nseveral O O\ndata O O\nsets O O\n. O O\n\nDS1 Name Name\n- O O\nExecutes O O\nan O O\nSP O O\nwhich O O\nTruncates O O\nand O O\nloads O O\na O O\nTable Name Name\nbased O O\non O O\nthe O O\nyear O O\nand O O\nperiod O O\npassed O O\nas O O\na O O\nparameter O O\nby O O\nuser O O\nfrom O O\nthe O O\nreport O O\n. O O\n\nDS2 Name Name\nand O O\nDS3 Name Name\n- O O\nSelect O O\nfrom O O\nthe O O\ntable Name Name\nloaded O O\nin O O\nlast O O\nstep O O\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\nensure O O\nthat O O\nDS1 Name Name\nexecutes O O\nbefore O O\nDS2 Name Name\nand O O\nDS3 Name Name\n? O O\n\nI O O\nknow O O\nthat O O\nthere O O\nis O O\na O O\ndata O O\nsource O O\nproperty O O\nwhich O O\ntells O O\nSSRS Name Name\nto O O\nrun O O\nthe O O\nData O O\nSets O O\nin O O\na O O\nsingle O O\ntransaction O O\nand O O\nhence O O\nexecute O O\nthem O O\nsequentially O O\nrather O O\nthan O O\nin O O\nparallel O O\nas O O\nexplained O O\nin O O\nthis O O\nlink O O\nhttp://blogs.msdn.com/b/robertbruckner/archive/2008/08/07/dataset-execution-order.aspx O O\n\nBut O O\nmy O O\ndoubt O O\nis O O\nthat O O\nwhen O O\nI O O\ndeploy O O\nthis O O\nreport O O\nto O O\na O O\nreport Name Name\nserver Name Name\n, O O\nI O O\nam O O\ngoing O O\nto O O\nuse O O\na O O\nshared O O\ndata O O\nsource O O\nalready O O\ncreated O O\nthere O O\n. O O\n\nWhat O O\nwill O O\nhappen O O\nto O O\nthis O O\nproperty O O\nwhich O O\nI O O\nset O O\nat O O\ndesign O O\ntime O O\nafter O O\ndeployment O O\n? O O\n\nI O O\nca O O\nn't O O\nfigure O O\nout O O\nwhy O O\nI O O\nget O O\nthis O O\nerror O O\non O O\nmy O O\nprocess.php Name Name\npage O O\n: O O\n\nDoes O O\nn't O O\nmake O O\nmuch O O\nsense O O\n, O O\nas O O\nit O O\nseems O O\nto O O\nbe O O\ncontradicting O O\nitself O O\nin O O\nthe O O\nerror O O\nmessage O O\n. O O\n\nHere O O\nmy O O\nprocess.php Name Name\n: O O\n\nIt O O\n's O O\nprobably O O\na O O\nstupid O O\nerror O O\n, O O\nas O O\nI O O\n'm O O\nlearning O O\nwhile O O\nworking O O\non O O\nthis O O\nproject O O\n. O O\n\nThanks O O\nfor O O\nany O O\nhelp O O\n! O O\n\nChange O O\n\nto O O\n\nyou O O\nmissed O O\na O O\nbacktick O O\n=> O O\n` Name Name\n\nI O O\nusing O O\nphpMyAdmin Name Name\n4.4.14 Name Name\nin O O\nWin7+Chrome Name Name\nand O O\nMySQL Name Name\n5.6 Name Name\nin O O\nLinux Name Name\n. O O\n\nMy O O\ntimezone O O\nis O O\n+8 Name Name\n\nThe O O\ndate Name Name\ncommand O O\nin O O\nLinux Name Name\nreturns O O\na O O\ncorrect O O\ndate O O\nand O O\ntime O O\n. O O\n\nWhen O O\nI O O\nissue O O\nselect Name Name\nnow() Name Name\ninside O O\nthe O O\nphpMyAdmin Name Name\n, O O\nthe O O\ndate O O\nand O O\ntime O O\nis O O\ncorrect O O\n. O O\n\nBut O O\n, O O\nwhen O O\nI O O\nprint O O\nthe O O\nresult O O\n, O O\nthe O O\ntime O O\nvalue O O\nin O O\nthe O O\nGeneration Name Name\nTime Name Name\nis O O\nwrong O O\n. O O\n\nLook O O\nlike O O\nthat O O\nthe O O\nGeneration Name Name\nTime Name Name\ndoes O O\nnot O O\ndo O O\na O O\n+8 Name Name\nto O O\nthe O O\nhour O O\n. O O\n\nHow O O\nto O O\nfix O O\n? O O\n\nCheers O O\n, O O\n\nAlvin O O\nSIU O O\n\nPrint O O\nview O O\nis O O\ndone O O\nvia O O\nPHP Name Name\nscript O O\n, O O\nso O O\nthe O O\nissue O O\nis O O\nin O O\nPHP Name Name\n, O O\nnot O O\nin O O\nMySQL Name Name\n. O O\n\nIn O O\norder O O\nto O O\nchange O O\nthis O O\ntimestamp O O\n, O O\nyou O O\nneed O O\nto O O\nopen O O\nphp.ini Name Name\nand O O\nto O O\nchange/add O O\ndate.timezone Name Name\nvariable O O\nwith O O\ndesired O O\nvalue O O\n: O O\n\nAll O O\navailable O O\ntimezones O O\ncan O O\nbe O O\nfound O O\nhere O O\n: O O\nhttp://www.php.net/manual/en/timezones.php O O\n\nCan O O\nthe O O\nGoogle Name Name\nChrome Name Name\ndev Name Name\ntools Name Name\nbe O O\nused O O\nto O O\ndirectly O O\nchange O O\nthe O O\nfiles O O\non O O\nthe O O\nserver Name Name\nfor O O\nexample O O\nby O O\ndirectly O O\ninteracting O O\nwith O O\nan O O\nftp O O\nserver Name Name\n? O O\n\nIt O O\nwould O O\nmake O O\nPHP Name Name\nediting O O\nmuch O O\neasier O O\n. O O\n\nUnfortunately O O\nediting O O\nDOM O O\nelements O O\ndoes O O\nn't O O\nupdate O O\nPHP Name Name\nor O O\nHTML Name Name\nmapped O O\nlocal O O\nfiles O O\n. O O\n\nThis O O\nis O O\ncurrently O O\na O O\nlimitation O O\nof O O\nthe O O\nworkspace O O\nfeature O O\n. O O\n\nCSS Name Name\nStyles O O\nonly O O\n. O O\n\nAs O O\nfor O O\nserver Name Name\nmapping O O\n, O O\nit O O\nshould O O\nbe O O\npossible O O\nbut O O\nChrome Name Name\nseems O O\nto O O\nbe O O\ncrashing O O\nwhen O O\nI O O\ntry O O\nadding O O\na O O\nmapped O O\nFTP O O\nlocation O O\n. O O\n\nI O O\nhave O O\nn't O O\nhad O O\na O O\nchance O O\nto O O\ntest O O\nany O O\nother O O\ncomputers O O\nof O O\nversions O O\nof O O\nChrome/Windows Name Name\n\nCurrently O O\nusing O O\nChrome Name Name\n43.0.2357.130 Name Name\non O O\nWindows Name Name\n10 Name Name\nInsider Name Name\nPreview Name Name\n10130 Name Name\n\nThe O O\nDevTools Name Name\ncan O O\nupdate O O\nany O O\nfiles O O\nthat O O\nare O O\neditable O O\nvia O O\nSources O O\n, O O\nincluding O O\nPHP Name Name\nand O O\nHTML Name Name\n. O O\n\nCSS Name Name\nis O O\nonly O O\nupdated O O\ndirectly O O\nvia O O\nthe O O\nelements Name Name\npanel Name Name\n. O O\n\nOther O O\ntext O O\nfile O O\ntypes O O\ncan O O\nbe O O\nupdated O O\nthrough O O\nthe O O\nSources O O\npanel O O\nwhere O O\nyou O O\nmap O O\nthe O O\nfiles O O\n. O O\n\nDevTools Name Name\ndirectly O O\nhas O O\nno O O\nknowledge O O\nof O O\nFTP/SFTP/FUSE O O\nmounts/etc O O\n. O O\n\nAll O O\nit O O\nknows O O\nis O O\nlocal O O\nfilesystem O O\nstructures O O\n. O O\n\nSo O O\n, O O\nif O O\nyou O O\nuse O O\nsome O O\nsoftware O O\nto O O\nmount O O\na O O\nremote O O\nfilesystem O O\nlocally O O\nas O O\na O O\nnew O O\nfolder O O\nor O O\ndrive O O\n, O O\nthen O O\nyou O O\ncan O O\nmap O O\nit O O\nto O O\nDevTools Name Name\njust O O\nfine O O\n. O O\n\nI O O\nhave O O\ndone O O\nthis O O\nmyself O O\nin O O\nthe O O\npast O O\nand O O\nhave O O\nseen O O\nothers O O\ndo O O\nthis O O\nsetup O O\nas O O\nwell O O\n. O O\n\nYou O O\nsimply O O\nneed O O\nto O O\nresearch O O\nyour O O\nOS O O\nand O O\nsee O O\nwhat O O\nsoftware O O\nis O O\navailable O O\nthat O O\nyou O O\nare O O\ncomfortable O O\nwith O O\nto O O\nhandle O O\nthe O O\nmounting O O\n. O O\n\nWarning O O\nthough O O\n, O O\nwith O O\nlarge O O\nproject O O\nfile O O\nstructures O O\nthis O O\ncan O O\nmake O O\nthings O O\nslow O O\n. O O\n\nI O O\nhave O O\na O O\nJSON Name Name\nresponse O O\nfrom O O\nPHP Name Name\nlike O O\nthis O O\n: O O\n\nWhat O O\nI O O\nwant O O\nto O O\ndo O O\nwith O O\nthis O O\nis O O\nout O O\noutput O O\nthe O O\norder O O\nnumber O O\nwhich O O\nis O O\nalways O O\nthe O O\nsame O O\nin O O\nan O O\nelement O O\nwith O O\nan O O\nid Name Name\nof O O\n#ordernum Name Name\n. O O\n\nThen O O\nfor O O\nthe O O\nother O O\nparts O O\n, O O\ni O O\nwant O O\nto O O\ncreate O O\na O O\ncouple O O\nof O O\ndivs Name Name\nwithin O O\na O O\ncontainer O O\ndiv Name Name\nfor O O\nthe O O\nname Name Name\nand O O\nid Name Name\n. O O\n\nI O O\n'm O O\npretty O O\nsure O O\nI O O\ncan O O\nget O O\nthat O O\nbit O O\nworking O O\nbut O O\nwhat O O\ni O O\n'm O O\nunsure O O\nof O O\nis O O\nhow O O\nto O O\nloop O O\nthrough O O\neach O O\nof O O\nthe O O\nJSON Name Name\nrows O O\nto O O\nget O O\nto O O\nthe O O\npart O O\nwhere O O\ni O O\ncan O O\ncreate O O\nmy O O\ndivs Name Name\n\nThis O O\nis O O\nwhat O O\nI O O\nhave O O\nso O O\nfar O O\nbut O O\nthis O O\nappends O O\nto O O\na O O\ndiv Name Name\nwhere O O\ni O O\nwant O O\nto O O\ncreate O O\nnew O O\ndivs Name Name\n. O O\n\nWould O O\ni O O\nneed O O\nto O O\ndo O O\nanother O O\n$.each() Name Name\nafter Name Name\n$('#ordernum').text(row[0].order) Name Name\n; Name Name\n? O O\n\nEDIT O O\n\nThis O O\nis O O\nhow O O\nthe O O\njson Name Name\nis O O\ncreated O O\n. O O\n\n$rows Name Name\nis O O\nfrom O O\na O O\nquery O O\nfrom O O\na O O\nSQLSERVER Name Name\ndatabase O O\nand O O\nI O O\nloop O O\nthrough O O\nthat O O\nto O O\nget O O\nall O O\nthe O O\nrows Name Name\nfrom O O\nthe O O\nMySQL Name Name\ndatabase O O\n\nI O O\nthink O O\neverthing O O\nis O O\nworking O O\nright O O\n\njust O O\nresponse.order Name Name\nwill O O\nsay O O\nundefined O O\n. O O\n\nif O O\n.each Name Name\nloop O O\nis O O\nnot O O\nworking O O\nas O O\nsaying O O\nthen O O\nput O O\nbefore O O\nloop O O\n\nvar Name Name\nresponse Name Name\n= Name Name\n$.parseJSON(response) Name Name\n. O O\n\nand O O\nif O O\nu O O\nneed O O\nresopnse O O\nlike O O\n\nthen O O\nin O O\nphp Name Name\ncode O O\nyou O O\ncan O O\ndo O O\nin O O\nsecond O O\nlast O O\nline O O\n\nthen O O\nyou O O\nwill O O\nnot O O\nneed O O\nindex O O\nin O O\njavascript Name Name\n. O O\n\nput O O\nthis O O\ncode O O\nin O O\nfire Name Name\nbug Name Name\nconsole Name Name\n. O O\n\nand O O\ncheck O O\nthe O O\nresult O O\n\nand O O\nyou O O\ncan O O\ncreate O O\nyour O O\ndiv Name Name\nunder O O\nfirst O O\nloop O O\n, O O\nyou O O\ndo O O\nnot O O\nneed O O\nsecond O O\nlike O O\neven O O\nyou O O\ndo O O\nnot O O\nchange O O\nyour O O\nresponse O O\n, O O\nor O O\nyou O O\nreformat O O\nthat O O\n. O O\n\nI O O\nam O O\nwriting O O\na O O\nDjango Name Name\nproject O O\nwhich O O\nwill O O\nuse O O\nChrome Name Name\nHeadless Name Name\nto O O\nproduce O O\nPDF Name Name\ndocuments O O\n. O O\n\nThere O O\nare O O\nlots O O\nof O O\nApps O O\n, O O\neach O O\nof O O\nwhich O O\nwill O O\nproduce O O\nPDFs Name Name\n, O O\nso O O\nit O O\nmade O O\nsense O O\nto O O\nhave O O\na O O\nclass O O\n, O O\nthat O O\nlaunches O O\nChrome Name Name\n, O O\nmakes O O\na O O\nconnection O O\nto O O\nit O O\n, O O\nand O O\nkills O O\nthe O O\nChrome Name Name\nprocess O O\nwhen O O\nthe O O\nclass O O\nis O O\ndeleted O O\n. O O\n\nThere O O\nwill O O\nbe O O\na O O\nclass O O\nmethod O O\n, O O\nwhich O O\nopens O O\na O O\nnew O O\ntab Name Name\n, O O\nrenders O O\nsome O O\nHTML Name Name\n, O O\nand O O\nreturns O O\nthe O O\nPDF Name Name\ndata O O\n, O O\nand O O\ncloses O O\nthe O O\ntab Name Name\n. O O\n\nIt O O\nseems O O\nslightly O O\ninefficient O O\nto O O\ncreate O O\na O O\nnew O O\ninstance O O\nof O O\nthe O O\nClass O O\n, O O\nevery O O\ntime O O\nI O O\nwant O O\nto O O\nprint O O\na O O\nPDF Name Name\n( O O\nwhich O O\nis O O\nthe O O\nprimary O O\npurpose O O\nof O O\nthe O O\nproject O O\n) O O\n. O O\n\nIt O O\nseems O O\nbetter O O\nto O O\ncreate O O\na O O\nglobal Name Name\ninstance O O\nof O O\nthe O O\nClass O O\n, O O\nand O O\nhave O O\none O O\ncopy O O\nof O O\nheadless Name Name\nChrome Name Name\nrunning O O\nthe O O\nwhole O O\ntime O O\n, O O\nrather O O\nthan O O\nstarting O O\nChrome Name Name\n, O O\nconnecting O O\nto O O\nit O O\n, O O\ngetting O O\nthe O O\nPDF Name Name\ndata O O\n, O O\nand O O\nthen O O\nclosing O O\neverything O O\nevery O O\ntime O O\n. O O\n\nOther O O\nposts O O\non O O\nthis O O\nissue O O\n, O O\nsuggest O O\nthat O O\nany O O\nkind O O\nof O O\nglobal Name Name\nvariable O O\n( O O\naside O O\nfrom O O\nsome O O\nconstants O O\nin O O\nsettings O O\n) O O\nis O O\na O O\nbad O O\nidea O O\n. O O\n\nIn O O\nthis O O\nparticular O O\ncase O O\n, O O\nis O O\nthis O O\nstill O O\na O O\nbad O O\nidea O O\n? O O\n\nWhy O O\nis O O\nthis O O\nthe O O\ncase O O\n? O O\n\nImportantly O O\n, O O\nis O O\nthere O O\nan O O\nalternative O O\napproach O O\n? O O\n\nI O O\nam O O\nworking O O\nrespecting O O\nthe O O\nJAX-WS Name Name\nspecification O O\nand O O\nwould O O\nlike O O\nto O O\nknow O O\nif O O\nthere O O\nis O O\nany O O\nmethod O O\nto O O\nclose O O\nthe O O\nport Name Name\n. O O\n\nWith O O\nthe O O\nmetro Name Name\nWS Name Name\n, O O\nI O O\ncan O O\nuse O O\nthis O O\n\n( Name Name\n( Name Name\ncom.sun.xml.ws.Closeable Name Name\n) Name Name\nport Name Name\n) Name Name\n; Name Name\n\nIs O O\nthere O O\nany O O\nneed O O\nto O O\nclose O O\nthe O O\nport Name Name\nespecially O O\nfor O O\nperformance O O\nreasons O O\n? O O\n\nThanks O O\n. O O\n\nCXF Name Name\n's O O\nport Name Name\nimplement O O\nthe O O\nstandard O O\njava.io.Closeable Name Name\ninterface O O\n. O O\n\nJust O O\ncast O O\nto O O\nthat O O\nand O O\nclose() Name Name\n. O O\n\nFor O O\nnormal O O\nHTTP O O\nuse O O\ncase O O\n, O O\nthere O O\nreally O O\nis O O\nn't O O\nMUCH O O\nadvantage O O\nin O O\ndoing O O\nso O O\n. O O\n\nHowever O O\n, O O\nif O O\nusing O O\nWS-RM Name Name\nor O O\nJMS Name Name\nor O O\nsimilar O O\n, O O\nit O O\ndoes O O\nallow O O\nthings O O\nto O O\nbe O O\ndisconnected O O\nand O O\nsuch O O\nsooner O O\n. O O\n\nI O O\nhave O O\nproblem O O\nand O O\nneed O O\nhelp O O\nwhen O O\nreceive O O\nmessages O O\nfor O O\nthe O O\nchat O O\ni O O\nmake O O\n, O O\ni O O\nonly O O\nsuccess O O\nto O O\nsend O O\nthe O O\nmessages O O\nand O O\nshow O O\nthe O O\nmessages O O\nthat O O\ni O O\nsend O O\n, O O\nbut O O\ni O O\nfailed O O\nto O O\nreceive O O\nand O O\nshow O O\nthe O O\nmessages O O\nthat O O\ni O O\nreceive O O\nfrom O O\nother O O\nparty O O\n. O O\n\nI O O\nca O O\nn't O O\nretrieve O O\nthe O O\nmessages O O\nfrom O O\ndatabase O O\nand O O\nalways O O\nnull O O\n, O O\nwhen O O\nthe O O\nmessages O O\ncome O O\nthe O O\ncode O O\nnot O O\nchecking O O\nthere O O\nis O O\nany O O\nmessages O O\nand O O\nnull O O\nand O O\ni O O\nthink O O\nit O O\n's O O\nstop O O\n. O O\n\nand O O\nI O O\nchecking O O\nthe O O\nstream O O\n, O O\nthe O O\nstream O O\nca O O\nn't O O\nget O O\nthe O O\ncontent O O\n. O O\n\ni O O\ndo O O\nn't O O\nunderstand O O\nwhat O O\n's O O\nwrong O O\n, O O\nso O O\nanyone O O\nplease O O\nhelp O O\nme O O\n. O O\n\nthank O O\nyou O O\n\nchatroom.php Name Name\n\nChatroom.java Name Name\n\nLogCat Name Name\n\nI O O\nwould O O\nlike O O\nto O O\nhave O O\na O O\nPHP Name Name\ncode O O\nto O O\ndo O O\nthe O O\nfollowing O O\n: O O\n\nUser O O\ncomes O O\nto O O\nmy O O\nwebsite O O\nfrom O O\na O O\nlink O O\nin O O\nan O O\nexternal O O\nwebsite O O\n, O O\nin O O\nother O O\nwords O O\n, O O\nthe O O\nHTTP_REFERER Name Name\nis O O\nnot O O\nfrom O O\nmy O O\nown O O\ndomain O O\n. O O\n\nSave O O\nthis O O\nHTTP_REFERER Name Name\nin O O\na O O\ncookie O O\n\nIn O O\nanother O O\npart O O\nof O O\nmy O O\nwebsite O O\nI O O\nwill O O\ncheck O O\nto O O\nsee O O\nif O O\nthis O O\ncookie O O\nis O O\npresent O O\nand O O\ninclude O O\nthe O O\nsaved O O\nreferer O O\nwith O O\nthe O O\nuser O O\nprofile O O\n. O O\n\nSaving O O\ncookies O O\nis O O\npretty O O\neasy O O\n( O O\nsee O O\nPHP Name Name\nCookies O O\nfor O O\ndetails O O\n) O O\n. O O\n\nRetrieving O O\nis O O\njust O O\nas O O\neasy O O\n: O O\n\nI O O\nused O O\nMatConvNet Name Name\nto O O\ntest O O\na O O\nfeedforward Name Name\nnet Name Name\nfor O O\nthree-classes O O\nclassification O O\nproblem O O\n. O O\n\nMy O O\ninput O O\ndata O O\nhas O O\n5 O O\nfeatures O O\nand O O\nthe O O\nnet O O\nwork O O\ntopology O O\nas O O\nfollows O O\n: O O\n\n* O O\nhidden O O\nlayer O O\n: O O\nnode O O\nwith O O\n5 O O\nweights O O\n& O O\n1 O O\nbias O O\nactivation O O\nfunc O O\n: O O\nsigmoid Name Name\n\n* O O\noutput O O\nlayer O O\n: O O\n3 O O\nnodes O O\neach O O\nof O O\nthem O O\nhave O O\n1 O O\nweights O O\n& O O\n1 O O\nbias O O\nactivation O O\nfunc O O\n: O O\nsigmoid Name Name\n/ O O\nsoftmax Name Name\n+ O O\nloss Name Name\n\nthe O O\nproblem O O\nis O O\nlike O O\nthis O O\n, O O\nno O O\nmatter O O\nhow O O\ni O O\nchange O O\nthe O O\nnetwork O O\n's O O\ntopology O O\n, O O\nas O O\nalong O O\nas O O\nthe O O\nnetwork O O\nhas O O\nhidden O O\nlayers O O\n, O O\nit O O\nalways O O\nreturn O O\nsame O O\nlabel O O\nfor O O\nany O O\ninput O O\n. O O\n\nMoreover O O\nonce O O\ni O O\nadd O O\nhidden O O\nlayers O O\n, O O\nthe O O\nnetwork O O\nalways O O\nconverge O O\nwithin O O\n3 O O\nepoch O O\n. O O\n\nhere O O\nis O O\nhow O O\nit O O\nconverged O O\nwith O O\nhidden O O\nlayer O O\n\nhowever O O\nthe O O\nnetwork O O\ncould O O\nrun O O\n\" O O\nnormally O O\n\" O O\n( O O\ngives O O\ndifferent O O\nlabel O O\n) O O\nif O O\nit O O\ndoes O O\nn't O O\nhave O O\nany O O\nhidden O O\nlayer O O\n. O O\n\nI O O\nhave O O\ntried O O\n: O O\n\n* O O\nnormalized O O\nthe O O\ninput O O\ndata O O\n\n* O O\nsubtract O O\nmean O O\n\n* O O\nchange O O\nto O O\ndifferent O O\nactivation O O\nfunc O O\n, O O\nsigmoid/softmax Name Name\n\nbut O O\nnone O O\nof O O\nthem O O\nworks O O\n... O O\n. O O\n\nso O O\nanyone O O\nknow O O\nwhat O O\n's O O\nwrong O O\nwith O O\nthis O O\nproblem O O\n? O O\n\nthanks O O\n. O O\n\ni O O\nhave O O\nthis O O\nprocedure O O\nand O O\ni O O\ncant O O\nsee O O\nmy O O\nerror O O\n, O O\nsomeone O O\n? O O\n\nI O O\nwant O O\nto O O\nadd O O\nsome O O\ntext O O\nand O O\nprint O O\nonly O O\nthe O O\nvocals Name Name\n. O O\n\nMy O O\nerror O O\nis O O\nnear O O\nfrom O O\n\" O O\ncase Name Name\n\" O O\n\nAn O O\nalternative O O\nway O O\nof O O\ngathering O O\nvowels O O\n: O O\n\nCouple O O\nthings O O\n. O O\n\nAs O O\nmentioned O O\nin O O\nthe O O\ncomments O O\nby O O\nVKP O O\n, O O\nyou O O\ncannot O O\npull O O\nfrom O O\nthe O O\nCASE Name Name\nstatement O O\nin O O\nthe O O\nsame O O\nquery O O\n, O O\nto O O\nget O O\naround O O\nthat O O\nyou O O\ncan O O\njust O O\ncreate O O\nan O O\nadditional O O\nSELECT Name Name\nfor O O\nthe O O\nCASE Name Name\nstatement O O\n\nSecond O O\n, O O\nwhen O O\nusing O O\nCASE Name Name\nyou O O\ndo O O\nn't O O\nneed O O\nthe O O\nequal O O\nsign O O\n(= Name Name\n) O O\nafter O O\nTHEN Name Name\n. O O\n\n\" O O\nTHEN Name Name\n\" O O\nis O O\nessentially O O\nthe O O\nequal O O\nsign O O\nso O O\njust O O\nput O O\nthe O O\nvalues O O\nyou O O\nwant O O\nit O O\nto O O\nequal O O\n. O O\n\nIf O O\nyou O O\ntry O O\nthis O O\nthe O O\nquery O O\nruns O O\nsuccesfully O O\n: O O\n\nHowever O O\n, O O\nas O O\nit O O\ncurrently O O\nis O O\nthis O O\nquery O O\nwill O O\njust O O\nprovide O O\na O O\nnumber O O\nof O O\nNULL Name Name\nvalues O O\nequal O O\nto O O\nthe O O\nlength O O\nof O O\nthe O O\n@vocales Name Name\nvalue O O\n. O O\n\nThis O O\nis O O\nbecause O O\nthe O O\nvalue O O\nof O O\nparameter O O\n@resultado Name Name\nis O O\nnever O O\ndeclared O O\nand O O\nin O O\nyour O O\nCASE Name Name\nstatement O O\nyou O O\nare O O\nadding O O\na O O\nNULL Name Name\nvalue O O\nto O O\na O O\nknown O O\nvalue O O\nwhich O O\nwill O O\nalways O O\nequal O O\nNULL Name Name\n. O O\n\nLet O O\nme O O\nknow O O\nwhat O O\noutput O O\nyou O O\nare O O\nlooking O O\nfor O O\nand O O\nI O O\ncan O O\nrevise O O\nmy O O\nquery O O\nto O O\nhelp O O\nyou O O\nget O O\nthere O O\n. O O\n\ni O O\nam O O\nfacing O O\nthe O O\nmemory O O\nmanagement O O\nissue O O\n. O O\n\nin O O\nthe O O\nmemory O O\nallocation O O\nevery O O\ntime O O\nit O O\nincreases O O\n32kb O O\nwhen O O\nthe O O\npage O O\nload O O\nand O O\nit O O\ndoes O O\nnot O O\nrelease O O\nthe O O\nmemory O O\n.and O O\nafter O O\nsome O O\ntime O O\nwhen O O\nthe O O\ntotal O O\nmemory O O\nreach O O\nto O O\n3 O O\nmb O O\nit O O\ncrashes O O\nin O O\n3mb O O\n1 O O\nmb O O\nis O O\nonly O O\nfor O O\naudiotoolbox Name Name\nmalloc Name Name\n. O O\n\nhere O O\n's O O\nmy O O\ncode O O\nplease O O\nhelp O O\nme O O\n\nin O O\n.h Name Name\nfile O O\n: O O\n- O O\n\nThere O O\nare O O\nnumerous O O\nissues O O\nwith O O\nyour O O\ncode O O\n: O O\n\nYou O O\n're O O\nnot O O\ncalling O O\n[ Name Name\nsuper Name Name\ndealloc Name Name\n] Name Name\nat O O\nthe O O\nend O O\nof O O\n-dealloc Name Name\n. O O\n\nYou O O\n're O O\nnot O O\nreleasing O O\nsoundFileURL Name Name\nin O O\n-dealloc Name Name\n. O O\n\nThe O O\nmethod O O\nnames O O\nshould O O\nbe O O\ncamel O O\ncase O O\n( O O\nviewDidLoad Name Name\nnot O O\nviewdidload O O\n) O O\n. O O\n\nUse O O\neither O O\n[ Name Name\nappSoundPlayer Name Name\nrelease Name Name\n] Name Name\nor O O\nself.appSoundPlayer Name Name\n= Name Name\nnil Name Name\n, O O\nnot O O\nboth O O\n. O O\n\nI O O\nhighly O O\nrecommend O O\nyou O O\nread O O\nthe O O\nmemory O O\nmanagement O O\nprogramming O O\nguide O O\nhttp://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html O O\n\nI O O\nam O O\ntrying O O\nto O O\nput O O\nin O O\na O O\ndifferent O O\nimage Name Name\nfor O O\neach O O\nresolution O O\n. O O\n\nIt O O\nworked O O\nfor O O\nnormal O O\nscreen Name Name\nand O O\nsmartphones Name Name\n, O O\nhowever O O\nI O O\ncannot O O\nget O O\nit O O\nto O O\nshow O O\nup O O\nfor O O\nthe O O\nlarge O O\nresolution O O\nscreens Name Name\n. O O\n\nHere O O\nare O O\nthe O O\nrelevant O O\nsections O O\nof O O\ncode O O\n: O O\n\nCSS Name Name\n: O O\n\nHTML Name Name\n: O O\n\nThere O O\nis O O\nno O O\nHTML Name Name\n? O O\n\nAlso O O\nposting O O\na O O\nquick O O\nfiddle Name Name\nwould O O\nmake O O\nthis O O\nso O O\nmuch O O\neasier O O\nto O O\ndebug O O\n! O O\n\nI O O\nactually O O\njust O O\nfigured O O\nit O O\nout O O\n! O O\n\nBecause O O\nI O O\nwas O O\nhiding O O\nthe O O\nDIV Name Name\nfor O O\nregular O O\nDesktop/Laptop Name Name\nResolution O O\nand O O\nnot O O\ndefining O O\nthe O O\nmax-width Name Name\nfor O O\nthat O O\nvalue O O\nin O O\nits O O\nMedia O O\nQuery O O\n, O O\nit O O\nwas O O\nalso O O\nhiding O O\nit O O\nin O O\nthe O O\nLarge O O\nResolution O O\nMedia O O\nQuery O O\n. O O\n\nSimple O O\nfix O O\nof O O\ndefining O O\na O O\nmax-width Name Name\nvalue O O\nfor O O\nStandard O O\nRes O O\n. O O\n\nThanks O O\n! O O\n\n:) O O\n\nI O O\nwant O O\nto O O\ncompile O O\nthe O O\nsample O O\ncode O O\nabove O O\n, O O\nbut O O\nI O O\nget O O\nthe O O\nfollowing O O\nerror O O\n. O O\n\nWhat O O\nis O O\nthe O O\nreason O O\nfor O O\nit O O\n. O O\n\n\" O O\nOSX Name Name\n- O O\n/ Name Name\nusr Name Name\n/ Name Name\nlocal Name Name\n\" O O\nunder O O\nall O O\nthe O O\nfiles O O\ninstalled O O\n\nError O O\n: O O\n\nCommand O O\n: O O\n\nFirst O O\n, O O\nplease O O\nfind O O\nthe O O\npath O O\nof O O\nevhttp.h Name Name\nfile O O\n. O O\n\nThen O O\n, O O\nyou O O\ncould O O\ncheck O O\nif O O\nthis O O\npath O O\nis O O\nin O O\nthe O O\n#include Name Name\nfiles O O\nsearch O O\npath O O\nlist O O\nby O O\ncommand O O\n\nThe O O\noutput O O\nis O O\nlike O O\nthis O O\n, O O\n\nIf O O\nthe O O\npath O O\nis O O\nnot O O\nin O O\nthe O O\nsearch O O\nlist Name Name\n, O O\nthen O O\nadd O O\n-I Name Name\n/missed_include Name Name\n( O O\nassume O O\nit O O\nis O O\nthe O O\npath O O\n) O O\nto O O\nyour O O\ncommand O O\n, O O\nlike O O\n\ngcc Name Name\n-o Name Name\noctopus Name Name\n/Users/batuhangoksu/Desktop/test.c Name Name\n-levent Name Name\n-lpthread Name Name\n-I Name Name\n/missed_include Name Name\n\nI O O\nhave O O\na O O\nJSP Name Name\nwhich O O\nhas O O\nmultiple O O\nsections O O\nin O O\nthe O O\nform O O\nof O O\ntabs Name Name\n. O O\n\nWhen O O\nclicking O O\nthe O O\nnext O O\nbutton Name Name\nthe O O\nform Name Name\nis O O\nvalidated O O\nand O O\nerror O O\nmessages O O\nare O O\ndisplayed O O\nas O O\nper O O\nthe O O\nvalidation O O\n. O O\n\nNow O O\nwhen O O\nI O O\nmove O O\nto O O\na O O\ndifferent O O\ntab Name Name\n, O O\nthe O O\nearlier O O\nerror O O\nmessages O O\nare O O\nstill O O\nthere O O\non O O\ntab Name Name\n2 O O\nand O O\nare O O\nonly O O\nremoved O O\nwhen O O\nclicking O O\nnext O O\nagain O O\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nthat O O\nwhen O O\nI O O\nswitch O O\nto O O\na O O\ndifferent O O\nsection O O\nwithin O O\nthe O O\nsame O O\nform Name Name\n, O O\nI O O\ncould O O\nremove O O\nearlier O O\nvalidation O O\nerrors O O\nwithout O O\nsubmitting O O\nthe O O\nform Name Name\nagain O O\n\nThanks O O\n\nI O O\nhave O O\na O O\nServer.js Name Name\nfile O O\ni O O\nlaunch O O\nfrom O O\nthe O O\nCMD Name Name\n: O O\nnode Name Name\nserver Name Name\n\nThe O O\nServer.js Name Name\nfile O O\ncreates O O\nan O O\nnew O O\ninstance O O\nof O O\nclass O O\nA Name Name\n\nClass O O\nA Name Name\ncreates O O\na O O\nnew O O\ninstance O O\nof O O\nclass O O\nB Name Name\n( O O\nweb Name Name\nsocket Name Name\n) O O\nand O O\nC Name Name\n( O O\nREST Name Name\nAPI Name Name\n) O O\n\nIf O O\nthe O O\nweb Name Name\nsocket Name Name\nconnection O O\nis O O\nclose/disconnected O O\nin O O\nclass O O\nB Name Name\nthen O O\nentire O O\nNodeJS Name Name\napp O O\n. O O\n\nsimply O O\nstops/shuts O O\ndown O O\n. O O\n\nEven O O\nthough O O\ni O O\nhave O O\ntried O O\nto O O\n\" O O\nstart O O\nthe O O\nentire O O\nprocess O O\n\" O O\nagain O O\n... O O\nby O O\ntrying O O\nto O O\nplace O O\ndifferent O O\ncode O O\nin O O\nin O O\nclose Name Name\nevent O O\n- O O\nlike O O\n: O O\n\nThe O O\nclose Name Name\nevent O O\nis O O\ncalled O O\n- O O\nbut O O\nno O O\nmatter O O\n- O O\nwhat O O\nand O O\nhow O O\ni O O\ntry O O\nto O O\n\" O O\nre-launch O O\n\" O O\nmy O O\napp O O\n. O O\n\nit O O\ndoes O O\nn't O O\nexecute O O\nmy O O\ncode O O\n- O O\nit O O\njust O O\nshuts O O\ndown O O\n. O O\n\nI O O\nlike O O\nto O O\nunderstand O O\nwhy O O\nand O O\nwhat O O\nis O O\ngoing O O\non O O\nand O O\nnot O O\njust O O\nto O O\nre-launch O O\nthe O O\nentire O O\napp O O\n- O O\nby O O\nusing O O\nNPM Name Name\nforever O O\netc O O\n.. O O\n. O O\n\nUPDATE O O\n: O O\n\nSorry O O\nfor O O\nnot O O\nmaking O O\nmyself O O\nclear O O\nenough O O\n. O O\n\nBut O O\nactually O O\nthe O O\ndetails O O\nyou O O\nare O O\nlooking O O\nfor O O\nis O O\nmy O O\nbullet O O\npoint O O\nno O O\n. O O\n\n4 O O\n.. O O\n. O O\nliterally O O\nno O O\n- O O\ni O O\ndo O O\nn't O O\nexecute O O\nthe O O\nentire O O\nnode Name Name\napp O O\nagain O O\n.. O O\n. O O\nthats O O\nwhy O O\ni O O\nused O O\n\"\" Name Name\n( O O\nquotes O O\n) O O\n.. O O\n. O O\nas O O\ni O O\ndescribed O O\ni O O\ntry O O\nto O O\nstart O O\nthe O O\nprocess O O\nup O O\nagain O O\nin O O\nthe O O\non O O\n. O O\n\n( O O\n' O O\nclose' Name Name\n) O O\nevent Name Name\nhandler Name Name\n... O O\ni O O\ncan O O\ndebug O O\nand O O\nsee O O\nwhen O O\nthe O O\ncode O O\nreach O O\nthe O O\npoint O O\nin O O\nthe O O\neventhandler Name Name\n... O O\nbut O O\nit O O\ndoes O O\nn't O O\nwork O O\nto O O\nexecute O O\n/ O O\ncall O O\nA.start() Name Name\nfunction O O\nagain O O\nor O O\nvia O O\nfirering O O\nan O O\nevent O O\n... O O\nso O O\nits O O\nsome O O\nthing O O\nabout O O\nscopes O O\n, O O\ninstances O O\n, O O\nfunction O O\netc O O\n. O O\n\ni O O\nproperly O O\ndont O O\ndo O O\ncorrect O O\n- O O\nthats O O\nwhy O O\ni O O\ntried O O\nto O O\ndescribe O O\nthe O O\napp O O\n, O O\nclass O O\n, O O\nfunctions O O\n... O O\nnow O O\n- O O\ni O O\nhope O O\nits O O\nmore O O\nclear O O\nwhat O O\ni O O\nmean O O\n:-) O O\n\nUPDATE O O\n2 O O\n: O O\n\nServer.js Name Name\n\nDownload-manager.js Name Name\n\nWsclient.js Name Name\n\nA O O\nnode Name Name\napp O O\nwill O O\nstay O O\nalive O O\nas O O\nlong O O\nas O O\nthere O O\nare O O\nactive O O\nelements O O\nthat O O\ncan O O\nstill O O\nreceive O O\nevents O O\n. O O\n\nThis O O\ncan O O\ninclude O O\na O O\nTCP O O\nconnection O O\n, O O\na O O\nlistening O O\nserver Name Name\n, O O\na O O\ntimer O O\n, O O\netc O O\n.. O O\n. O O\n\nAs O O\nsoon O O\nas O O\nnone O O\nof O O\nthose O O\nexist O O\nany O O\nmore O O\nand O O\nthe O O\nevent O O\nqueue Name Name\nis O O\nempty O O\nand O O\nthe O O\nflow O O\nof O O\ncontrol O O\nreturns O O\nback O O\nto O O\nthe O O\nsystem O O\n( O O\ne.g O O\n. O O\nno O O\nJS Name Name\nis O O\nexecuting O O\n) O O\n, O O\nthen O O\nthe O O\nnode Name Name\napp O O\nwill O O\nshut O O\nitself O O\ndown O O\n. O O\n\nThe O O\nidea O O\nis O O\nthat O O\nif O O\nnothing O O\nis O O\nrunning O O\nthat O O\ncould O O\npossible O O\ncreate O O\nmore O O\nevents O O\nin O O\nthe O O\nfuture O O\n, O O\nthen O O\nthere O O\n's O O\nnothing O O\nelse O O\nthat O O\ncan O O\nhappen O O\nin O O\nthis O O\nnode Name Name\napp O O\nso O O\nit O O\nmust O O\nbe O O\ndone O O\n. O O\n\nIf O O\nyou O O\n're O O\nsaying O O\nthat O O\nwhen O O\nyou O O\ntry O O\nto O O\nrun O O\nyour O O\napp O O\nagain O O\n, O O\nit O O\nwo O O\nn't O O\nstart O O\nany O O\nmore O O\n, O O\nthen O O\nthat O O\nis O O\na O O\ndifferent O O\nissue O O\n. O O\n\nYou O O\nwill O O\nneed O O\nto O O\ndo O O\nsome O O\nlogging O O\nof O O\nerrors O O\nand O O\ndebugging O O\nto O O\nfigure O O\nout O O\nwhy O O\nthat O O\nmay O O\nbe O O\n. O O\n\nIf O O\nyou O O\njust O O\nlog O O\nevery O O\npossible O O\nplace O O\nyou O O\ncould O O\nget O O\nan O O\nerror O O\nin O O\nyour O O\napp O O\nstart-up O O\ncode O O\n, O O\nyou O O\nwill O O\nprobably O O\ndiscover O O\nwhere O O\nthe O O\nerror O O\nis O O\nthat O O\nis O O\nkeeping O O\nit O O\nfrom O O\nstarting O O\n. O O\n\nSince O O\nyou O O\n've O O\nprovided O O\nnot O O\ndetails O O\nthat O O\nwe O O\ncould O O\ngo O O\non O O\nto O O\nknow O O\nwhat O O\nissue O O\nmight O O\nbe O O\npreventing O O\nthat O O\n, O O\nI O O\ncan O O\nlist O O\nsome O O\ncommon O O\nthings O O\n: O O\n\nSome O O\nprocess O O\nis O O\nstill O O\nrunning O O\nthat O O\nhas O O\ncontrol O O\nof O O\nsome O O\nresource O O\n( O O\nsuch O O\nas O O\na O O\nport Name Name\n) O O\nand O O\nwhen O O\nyou O O\ntry O O\nto O O\nrestart O O\nyour O O\napp O O\n, O O\nit O O\nshuts O O\ndown O O\nwhen O O\nit O O\nca O O\nn't O O\naccess O O\nthat O O\nresource O O\n. O O\n\nSome O O\nprocess O O\nis O O\nstill O O\nrunning O O\nand O O\nhas O O\nopen O O\nfile O O\nresources O O\n, O O\nrestricting O O\nyour O O\nability O O\nto O O\naccess O O\nthose O O\nfiles O O\n. O O\n\nTo O O\nstart O O\nwith O O\n, O O\nI O O\n'd O O\ncheck O O\nyour O O\nOS Name Name\nprocess Name Name\nmanager Name Name\nto O O\nverify O O\nthat O O\nyour O O\noriginal O O\napp O O\ninstance O O\nis O O\nnot O O\nstill O O\nrunning O O\n. O O\n\nThe O O\nsymptoms O O\nyou O O\ndescribe O O\nmake O O\nit O O\nsound O O\nlike O O\nit O O\nis O O\nprobably O O\nstill O O\nrunning O O\nand O O\nholding O O\nonto O O\nsome O O\nresources O O\nthat O O\nkeep O O\nyour O O\napp O O\nfrom O O\nrunning O O\nagain O O\n. O O\n\nThis O O\npart O O\nhas O O\nme O O\nconfused O O\nwhen O O\nyou O O\nsay O O\n\" O O\nstart O O\nthe O O\nentire O O\nprocess O O\nagain O O\n\" O O\nwhen O O\nyour O O\nwed O O\nsocket O O\ncloses O O\n. O O\n\nAre O O\nyou O O\nliterally O O\ntrying O O\nto O O\nexec O O\nnode O O\nserver.js Name Name\nagain O O\nfrom O O\nwithin O O\nyour O O\napp O O\n? O O\n\nOr O O\n, O O\nwhat O O\nare O O\nyou O O\nactually O O\ntrying O O\nto O O\ndo O O\nthere O O\n? O O\n\nWe O O\nprobably O O\nneed O O\nto O O\nsee O O\nthat O O\ncode O O\nto O O\nhelp O O\nyou O O\nwith O O\nthat O O\nparticular O O\naction O O\n. O O\n\nFYI O O\n, O O\nit O O\nshould O O\nbe O O\nno O O\nbig O O\ndeal O O\nto O O\njust O O\nre-establish O O\na O O\nwebSocket Name Name\nconnection O O\nafter O O\nit O O\nclosed O O\n. O O\n\nYou O O\nshould O O\nn't O O\nhave O O\nto O O\nrestart O O\nyour O O\nwhole O O\napp O O\njust O O\nto O O\ndo O O\nthat O O\n. O O\n\nI O O\nhave O O\na O O\nVideoView Name Name\ninside O O\na O O\ncustom O O\ndialog Name Name\n, O O\nand O O\nI O O\nam O O\ncreating O O\na O O\nmedia Name Name\ncontroller Name Name\nfor O O\nthe O O\nVideoView Name Name\non O O\nthe O O\nfly O O\nand O O\nassigning O O\nit O O\nto O O\nthe O O\nVideoView Name Name\nin O O\nthe O O\ncode O O\n, O O\nhowever O O\nthe O O\ncontroller Name Name\ndoes O O\nn't O O\nactually O O\nappear O O\nover O O\nthe O O\nvideo Name Name\n- O O\nit O O\nappears O O\nbehind O O\nthe O O\ndialog Name Name\n! O O\n\nAny O O\nidea O O\nhow O O\nto O O\nget O O\nthe O O\ncontroller Name Name\nabove O O\nthe O O\nvideo Name Name\n? O O\n\nI O O\ncreated O O\na O O\nstatic Name Name\ndialog Name Name\nhelper Name Name\nclass O O\nto O O\nhelp O O\nconstruct O O\nthe O O\ncustom O O\ndialogs Name Name\n: O O\n\nSo O O\nin O O\nmy O O\nActivity Name Name\ni O O\njust O O\nhave O O\nthis O O\nto O O\ncreate O O\nmy O O\ndialog Name Name\n: O O\n\nThis O O\nis O O\nworked O O\nfor O O\nme O O\n\nin O O\nxml Name Name\nlayout O O\nmake O O\nchanges O O\nlike O O\nthis O O\n, O O\n\nin O O\nyour O O\ndilog Name Name\n, O O\n\nin O O\nthis O O\n, O O\nvideo Name Name\nview Name Name\nuse O O\nsetOnPreparedListener Name Name\nlistener O O\nand O O\nset Name Name\nmedia Name Name\ncontroller Name Name\n, O O\n\nI O O\nsuggest O O\nthat O O\nyou O O\nneed O O\nto O O\nuse O O\nan O O\nActivity Name Name\ninstead O O\nof O O\na O O\nDialog Name Name\n. O O\n\nSet O O\nyour O O\nActivity Name Name\ntheme O O\nto O O\nemulate O O\na O O\nDialog Name Name\nin O O\nthe O O\nmanifest O O\n. O O\n\nExample O O\n- O O\nAndroidManifest.xml Name Name\n: O O\n\nThen O O\n, O O\nyou O O\nwill O O\nbe O O\nable O O\nto O O\ndisplay O O\na O O\nVideoView Name Name\nas O O\nin O O\nthe O O\nexamples O O\n. O O\n\nWhat O O\n's O O\nthe O O\nbest O O\nway O O\nto O O\nstore O O\ndata O O\nin O O\na O O\nC# Name Name\napplication O O\n? O O\n\nI O O\nplan O O\nto O O\nhave O O\nthe O O\nuser O O\nto O O\nset O O\nthe O O\ndatabase O O\nconnection O O\nand O O\noutput O O\nfolder O O\n. O O\n\nBut O O\nI O O\nneed O O\nmy O O\napplication O O\nto O O\nremember O O\nthose O O\nsettings O O\nthe O O\nnext O O\ntime O O\nthe O O\nuser O O\nstarts O O\nthe O O\napplication O O\n. O O\n\nI O O\nwas O O\nthinking O O\nsaving O O\nthe O O\ndata O O\nto O O\nan O O\nXML Name Name\nfile O O\nthen O O\njust O O\nextract O O\nthe O O\ndata O O\nfrom O O\nthe O O\nXML Name Name\nfile O O\neach O O\ntime O O\nthe O O\napplication O O\nstarts O O\n. O O\n\nIs O O\nthere O O\na O O\nbetter O O\nway O O\nto O O\ndo O O\nthis O O\n? O O\n\nPerhaps O O\nVisual Name Name\nStudios Name Name\n' O O\napplication O O\nsettings O O\n? O O\n\nVisual Name Name\nStudio Name Name\n-> O O\nProject O O\n-> O O\n( O O\nproject O O\nname O O\n) O O\nProperties O O\n-> O O\nSettings O O\ntab Name Name\n\nIf O O\nit O O\n's O O\nthe O O\nlatter O O\n, O O\nhow O O\nwould O O\nI O O\ngo O O\nabout O O\nthis O O\n? O O\n\nFrom O O\nyour O O\ndescription O O\n, O O\nit O O\nsounds O O\nlike O O\nyou O O\ndefinitely O O\nwant O O\nto O O\nuse O O\nthe O O\nProperties.Settings Name Name\n. O O\n\nThis O O\nwill O O\nlet O O\nyou O O\nhave O O\nuser-specific O O\nconnections O O\neasily O O\n. O O\n\nYou O O\ncan O O\nread O O\nthis O O\nanswer O O\nfor O O\na O O\ngood O O\nbreakdown O O\nof O O\neach O O\noption O O\n. O O\n\nI O O\nload O O\nthe O O\nurl O O\nin O O\nUIWebView Name Name\n, O O\nthere O O\nis O O\nan O O\noption O O\nchoose O O\nfile O O\nwhere O O\ni O O\nhave O O\nto O O\nopen O O\nimage Name Name\npicker O O\ncontroller O O\nand O O\npick O O\nimage Name Name\n. O O\n\npicked O O\nimage Name Name\nshould O O\nupload O O\nto O O\nthat O O\nurl O O\n. O O\n\nExample: O O\n- O O\n\" O O\nif O O\nprofile O O\nview O O\nloaded O O\ninto O O\nUIWebview Name Name\nthan O O\nuser O O\ncan O O\nchange O O\ntheir O O\nprofile O O\npicture O O\nfrom O O\nthe O O\nUIWebview Name Name\n, O O\nthere O O\nis O O\nan O O\noption O O\nlike O O\nchoose O O\nfile O O\nwhere O O\nuser O O\ncan O O\nopen O O\npicker O O\ncontroller O O\nto O O\npick O O\nimage Name Name\nand O O\nset O O\nselected O O\nthat O O\nimage Name Name\n. O O\n\" O O\n\nI O O\ntried O O\nabove O O\ncode O O\n, O O\nbut O O\nselected O O\nimage Name Name\nnot O O\nupload O O\nto O O\nthat O O\nurl O O\nwhich O O\nis O O\nloaded O O\nin O O\nUIWebview Name Name\n. O O\n\nHow O O\nto O O\ndo O O\nthis O O\n, O O\nwhat O O\nis O O\nwrong O O\nin O O\nthis O O\n? O O\n\nif O O\nthere O O\nis O O\nany O O\nsolution O O\nthan O O\nplease O O\nsuggest O O\nme O O\n. O O\n\nso O O\ni O O\nhave O O\nthe O O\nbelow O O\ncode O O\n, O O\nwhich O O\nparses O O\nan O O\nxml Name Name\nfeed O O\non O O\na O O\ndifferent O O\nserver Name Name\n( O O\nie O O\nwww.site1.com O O\n) O O\nfrom O O\na O O\nlocally O O\nhosted O O\nfile O O\n( O O\non O O\nmy O O\ncomputer Name Name\n) O O\n. O O\n\nit O O\nworks O O\nperfectly O O\nin O O\nsafari Name Name\n. O O\n\nbut O O\ndoesnt O O\nwork O O\nin O O\nchrome Name Name\nor O O\nfirefox Name Name\n. O O\n\nwhen O O\ni O O\nstore O O\nthe O O\nxml Name Name\nfeed O O\non O O\nthe O O\nsame O O\nserver O O\nas O O\nthe O O\nhtml Name Name\nfile O O\n( O O\nie O O\nboth O O\nfiles O O\non O O\nwww.site2.com O O\n) O O\n, O O\nthe O O\nfile O O\nparses O O\nfine O O\nin O O\nall O O\nbrowsers Name Name\n. O O\n\nthe O O\nproblem O O\nis O O\n, O O\ni O O\nneed O O\nto O O\nbe O O\nparsing O O\nthe O O\nxml Name Name\nfrom O O\nan O O\nexternal O O\nserver Name Name\n. O O\n\nhow O O\ndo O O\ni O O\nmake O O\nthis O O\nwork O O\n? O O\n\nis O O\nit O O\npossible O O\n? O O\n\ni O O\nfeel O O\nlike O O\nive O O\ntried O O\neverything O O\n. O O\n\ncallback Name Name\nfunctions O O\n, O O\njsonp.js Name Name\nfiles O O\n, O O\nand O O\nall O O\nsorts O O\nof O O\njquery Name Name\noptions O O\n. O O\n\nbut O O\nno O O\ndice O O\n. O O\n\nif O O\nanyone O O\nhas O O\nany O O\nsuggestions O O\n, O O\ni O O\n'd O O\nbe O O\nreal O O\nappreciative O O\n! O O\n\nthank O O\nyou O O\n! O O\n\nLook O O\nat O O\nyour O O\nconsole Name Name\n. O O\n\nYou O O\nare O O\ndoing O O\na O O\ncross O O\ndomain O O\najax Name Name\nrequest Name Name\n. O O\n\nThe O O\nonly O O\nway O O\nyou O O\nare O O\nable O O\nto O O\nachieve O O\ncross O O\ndomain O O\nparsing O O\n, O O\nis O O\nwith O O\njsonp Name Name\n. O O\n\nWhere O O\nare O O\nyou O O\ngrabbing O O\nthe O O\nxml Name Name\nfeed O O\nfrom O O\n? O O\n\nMaybe O O\nI O O\ncan O O\nhelp O O\nyou O O\nand O O\ntry O O\nsee O O\nif O O\nthey O O\nhave O O\na O O\njsonp Name Name\nexample O O\n. O O\n\nThis O O\nis O O\nan O O\nexample O O\nof O O\na O O\njsonp Name Name\nurl O O\nhttp://www.kiabuzz.co.za/?feed=json&callback= O O\n? O O\n. O O\n\nPaste O O\nit O O\nin O O\nreplace O O\nof O O\nthe O O\nabove O O\nand O O\nyou O O\nwill O O\nsee O O\nthat O O\nthe O O\nproblem O O\nwill O O\ndisappear O O\n. O O\n\nObviously O O\nthe O O\ndatatype O O\nwill O O\nbe O O\njson Name Name\nas O O\nopposed O O\nto O O\nxml Name Name\n. O O\n\nAs O O\nyou O O\ncan O O\nsee O O\nthat O O\nif O O\nthe O O\nfile O O\nis O O\non O O\nthe O O\nserver Name Name\nthe O O\nproblem O O\nwill O O\ndisappear O O\n. O O\n\nCan O O\nyou O O\nprovide O O\nme O O\nwith O O\nthe O O\nurl O O\nyou O O\nare O O\ntrying O O\nto O O\ngrab O O\nthe O O\nxml Name Name\nfeed O O\nfrom O O\n? O O\n\nSuppose O O\nyou O O\nhave O O\na O O\nclass O O\nShape Name Name\n. O O\n\nAssume O O\nShape Name Name\nhas O O\nbeen O O\ninstantiated O O\nas O O\nCircle Name Name\n, O O\nSquare Name Name\n, O O\nand O O\nTriangle Name Name\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nat O O\nruntime O O\nto O O\nget O O\na O O\nlist Name Name\nof O O\nthe O O\nnames O O\nof O O\nthe O O\nShape Name Name\nobjects O O\nand O O\nthen O O\nto O O\niterate O O\nover O O\nthose O O\nobjects O O\n? O O\n\nI O O\ndo O O\nn't O O\nrecommend O O\nthis O O\n, O O\nbut O O\none O O\nway O O\nof O O\ntracking O O\nall O O\ninstances O O\nof O O\nyour O O\nshape O O\nis O O\nto O O\ndo O O\nthe O O\nfollowing O O\n: O O\n\nIf O O\nyou O O\nneed O O\nto O O\ndo O O\nthis O O\n, O O\nyou O O\nmay O O\nbe O O\nsolving O O\nyour O O\nproblem O O\nthe O O\nwrong O O\nway O O\n. O O\n\nThanks O O\nto O O\nVyrx O O\nfor O O\nthe O O\nWeakReference Name Name\nsuggestion O O\nto O O\nsolve O O\ngarbage O O\ncollection O O\nissues O O\n. O O\n\nThere O O\nis O O\nno O O\nway O O\nto O O\nuse O O\nreflection O O\nto O O\nobtain O O\nlist Name Name\nof O O\ninstantiated O O\nobjects O O\n. O O\n\nReflection O O\ncan O O\ngive O O\ninformation O O\nabout O O\ntype O O\nor O O\ninteract O O\nwith O O\nobjects O O\nyou O O\nhave O O\nreference O O\nto O O\n, O O\nit O O\ndoes O O\nnot O O\nlet O O\nyou O O\nfind O O\n\" O O\nall O O\nobject O O\nof O O\nthis O O\ntype O O\never O O\ncreated O O\n\" O O\n. O O\n\nYou O O\ncan O O\nuse O O\ndubugging Name Name\nAPIs Name Name\nto O O\ndo O O\nthat O O\n. O O\n\nI.e O O\n. O O\n\nin O O\nWinDbg Name Name\n+ O O\nSOS Name Name\n: O O\n\nI O O\njust O O\nsaw O O\na O O\ntemplate O O\nhttp://livedemo00.template-help.com/wordpress_39638/contacts/ O O\nand O O\ni O O\nliked O O\nthe O O\nway O O\ngoogle Name Name\nmaps Name Name\nis O O\nused O O\nhere O O\n, O O\nthe O O\nimage Name Name\niframe Name Name\nvalue O O\nis O O\nhttp://maps.google.com/mapsf=q&source=s_q&hl=en&geocode=&q=Brooklyn,+NY,+USA&aq=0&sll=37.0625,-95.677068&sspn=47.704107,79.013672&ie=UTF8&hq=&hnear=Brooklyn,+Kings,+New+York&ll=40.649974,-73.949919&spn=0.01628,0.028238&z=14&iwloc=A&output=embed O O\n. O O\n\nHow O O\ncan O O\ni O O\ngenerate O O\nmy O O\nown O O\nlocation O O\n's O O\ngoogle Name Name\nmaps Name Name\nimage Name Name\n. O O\n\nhttps://developers.google.com/maps/documentation/embed/start O O\nhas O O\na O O\npretty O O\neasy O O\nto O O\nfollow O O\nseries O O\nof O O\n4 O O\nsteps O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nuse O O\nthe O O\ndbase Name Name\nlibrary O O\nin O O\nphp5.3 Name Name\nto O O\nopen O O\na O O\n.dbf Name Name\nfile O O\n. O O\n\nI O O\n've O O\ngot O O\nthe O O\ndbase.so Name Name\nlibrary O O\ninstalled O O\nand O O\nactive O O\non O O\nmy O O\nphp5 Name Name\nbuild O O\nand O O\nI O O\n'm O O\nexecuting O O\nthe O O\nfollowing O O\ncode O O\n: O O\n\nWhere O O\nCMX.dbf Name Name\nis O O\na O O\nVisual Name Name\nFoxPro9 Name Name\ndata O O\ntable Name Name\nand O O\nis O O\nlocated O O\nin O O\nthe O O\nsame O O\ndirectory O O\nas O O\nthe O O\nexecuting O O\nscript O O\nwith O O\nread/write/execute O O\npermissions O O\nenabled O O\n. O O\n\nThe O O\nfollowing O O\nis O O\nan O O\nexert O O\nfrom O O\n/var/log/apache2/error.log Name Name\n: O O\n\nline O O\n28 O O\n\nAs O O\nthis O O\nerror/warning O O\nis O O\nnot O O\nvery O O\ndescriptive O O\n, O O\nI O O\n'm O O\nhaving O O\nissues O O\ntracking O O\ndown O O\nthe O O\nroot O O\ncause O O\n. O O\n\nCan O O\nanyone O O\nhelp O O\nwith O O\nthis O O\n? O O\n\nTry O O\nthis O O\n: O O\n\nNot O O\npositive O O\nabout O O\nPHP Name Name\n, O O\nnor O O\nApache Name Name\n, O O\nbut O O\ntypically O O\n, O O\nwhen O O\ntrying O O\nto O O\nconnect O O\nto O O\ndatabase O O\nfiles O O\n( O O\nor O O\nFoxpro Name Name\n) O O\n, O O\nthe O O\ntypical O O\napproach O O\nwould O O\nbe O O\nto O O\nhave O O\na O O\nCONNECTION Name Name\nto O O\na O O\nPATH Name Name\n, O O\nthen O O\nperform O O\na O O\nquery O O\nagainst O O\nthe O O\nname O O\nof O O\nthe O O\ntable Name Name\n... O O\n. O O\n\nI O O\nhave O O\na O O\ndataset O O\nwith O O\n25000 O O\nrows Name Name\nand O O\n761 O O\ncolumns Name Name\n, O O\nwhich O O\nincludes O O\none O O\nbinary O O\nresponse O O\ncolumn Name Name\n. O O\n\nMy O O\nbinary O O\nresponse O O\nhad O O\nvalues O O\n' O O\n-1 Name Name\n' O O\nand O O\n' O O\n1 Name Name\n' O O\n. O O\n\nI O O\nwas O O\ntrying O O\nto O O\nrun O O\nxgboost Name Name\non O O\nit O O\n, O O\nand O O\nkeep O O\ngetting O O\nan O O\nerror O O\nwhich O O\nsays O O\n- O O\n\nI O O\nchanged O O\nthe O O\nlevels O O\nof O O\nmy O O\nresponse O O\nusing O O\nthe O O\nfollowing O O\ncommand O O\n- O O\n\nI O O\nstill O O\nkeep O O\ngetting O O\nthe O O\nsame O O\nerror O O\n, O O\nand O O\nam O O\nnot O O\nsure O O\nwhat O O\nexactly O O\nthe O O\nissue O O\nis O O\n. O O\n\nOne O O\nimportant O O\npoint O O\nis O O\nthat O O\nthis O O\nis O O\na O O\nrare O O\nevent O O\ndetection O O\nproblem O O\n, O O\nwith O O\nthe O O\nproportion O O\nof O O\npositive O O\ncases O O\nbeing O O\n1% O O\nof O O\nthe O O\ntotal O O\nobservations O O\n. O O\n\nCould O O\nthat O O\nbe O O\nthe O O\nreason O O\nI O O\n'm O O\ngetting O O\nthe O O\nerror O O\n? O O\n\nBefore O O\nrunning O O\nXgboost Name Name\nmodel O O\n, O O\nwe O O\nhave O O\nto O O\nkeep O O\ncertain O O\nsteps O O\nin O O\nmind O O\n. O O\n\nAll O O\nvariables O O\nshould O O\nbe O O\nnumeric Name Name\n\nfor O O\nbinary O O\nclassification O O\n, O O\nyour O O\noutput O O\nvariable O O\nshould O O\nrange O O\nfrom O O\n0 Name Name\nto O O\n1 Name Name\n\nUsing O O\nlevels(output)[levels(output)==\"-1\"] Name Name\n< Name Name\n- Name Name\n\" Name Name\n0 Name Name\n\" Name Name\n, O O\n, O O\nyour O O\noutput O O\nvariable O O\nwill O O\nbe O O\ncharacter Name Name\n. O O\n\nChange O O\nit O O\nto O O\nnumeric Name Name\n, O O\nkeep O O\nthe O O\nrange O O\nbetween O O\n0 Name Name\nand O O\n1 Name Name\nand O O\nyour O O\nXgboost Name Name\nmodel O O\nwill O O\nprobably O O\nwork O O\n. O O\n\nJust O O\nso O O\nthis O O\nmay O O\nhelp O O\nsomeone O O\ntrying O O\nto O O\nconvert O O\na O O\nfactor O O\nvariable O O\nwith O O\nlevels O O\n0 Name Name\nand O O\n1 Name Name\ninto O O\nlabels O O\nfor O O\ninput O O\nto O O\nXGBoost Name Name\n, O O\nyou O O\nneed O O\nto O O\nbe O O\naware O O\nthat O O\nyou O O\nneed O O\nto O O\nsubtract O O\n1 Name Name\nafter O O\nconverting O O\nto O O\ninteger Name Name\n( O O\nor O O\nnumeric Name Name\n) O O\n: O O\n\nI O O\nhaving O O\nproblems O O\nwith O O\nConcurrentModificationException Name Name\nwhen O O\nI O O\nuse O O\na O O\nsubList Name Name\n. O O\n\nMy O O\nquestion O O\nis O O\n: O O\n\nIs O O\nsafe O O\ncreate O O\na O O\nnew O O\ncollection O O\nusing O O\na O O\nsubList Name Name\n? O O\n\nExample O O\n: O O\n\nThe O O\nresult O O\nlist Name Name\nmust O O\nto O O\nbe O O\na O O\nindependent O O\nlist Name Name\nof O O\nthe O O\noriginal O O\nlist Name Name\n. O O\n\nSorry O O\nfor O O\nmy O O\nenglish O O\n. O O\n\nWithout O O\nseeing O O\nmore O O\ncode O O\n, O O\nI O O\n'm O O\nassuming O O\nthat O O\nanother O O\nthread O O\nis O O\nprobably O O\nmodifying O O\nthe O O\ncontents O O\nof O O\nsomeList Name Name\n, O O\nin O O\nwhich O O\ncase O O\nyou O O\n'll O O\nneed O O\nto O O\nimplement O O\nsome O O\nsort O O\nof O O\nsynchronization O O\npolicy O O\n, O O\nsuch O O\nas O O\na O O\nsynchronized Name Name\nblock O O\nwhen O O\nyou O O\nattempt O O\nto O O\nextract O O\na O O\nsub-list Name Name\nfrom O O\nit O O\n- O O\n- O O\nthat O O\n's O O\nme O O\nshooting O O\nin O O\nthe O O\ndark O O\n. O O\n\nEDIT O O\n\nIf O O\nyou O O\n're O O\nattempting O O\nto O O\nremove O O\nan O O\nelement O O\nfrom O O\nthe O O\nsub-list Name Name\nin O O\nthe O O\nmiddle O O\nof O O\niterating O O\nover O O\nit O O\n, O O\nI O O\n'd O O\nrecommend O O\ndoing O O\nso O O\nusing O O\niterator.remove() Name Name\nsince O O\n\nIf O O\nyou O O\nneed O O\nthe O O\nsublist Name Name\nto O O\nbe O O\nmodifiable O O\n, O O\nthis O O\nis O O\nabout O O\nthe O O\neasiest O O\nway O O\nto O O\ndo O O\nit O O\n. O O\n\nIn O O\nLinux Name Name\n, O O\nhow O O\ncan O O\nI O O\ndelete O O\nall O O\nfiles O O\nin O O\nparticular O O\ndirectory O O\n? O O\n\nFor O O\nexample O O\n/home/xd/karthik Name Name\nis O O\nmy O O\npath O O\n; O O\nI O O\nwant O O\nto O O\ndelete O O\nall O O\nfiles O O\nin O O\nthe O O\nabove O O\ndirectory O O\n, O O\nif O O\nthe O O\ndisk Name Name\nusage O O\nexceeds O O\n90% O O\n. O O\n\nHow O O\ncan O O\nI O O\nwrite O O\na O O\nscript O O\nfor O O\nthat O O\n? O O\n\nrm Name Name\n/path/to/directory/ Name Name\n* Name Name\n\nadd O O\nrm Name Name\n-r Name Name\nto O O\nremove O O\nthe O O\nfile O O\nhierarchy O O\nrooted O O\nin O O\neach O O\nfile O O\nargument O O\n. O O\n\ndont O O\nneed O O\nscript O O\njust O O\nbasic O O\nshell Name Name\ncommand O O\n\nSometimes O O\n, O O\nbefore O O\nthe O O\narc Name Name\nwas O O\nintroduced O O\n, O O\nI O O\nwas O O\nn't O O\nusing O O\nthe O O\n@property Name Name\ndeclaration O O\nand O O\nuse O O\njust O O\niVar Name Name\nlike O O\nfollow O O\n: O O\n\nHow O O\nto O O\nimplement O O\nsomething O O\nlike O O\nthis O O\nwith O O\nARC Name Name\nif O O\nI O O\ndo O O\nn't O O\nwant O O\nto O O\nuse O O\n@property Name Name\ndeclaration O O\n? O O\n\nDeclare O O\nstr Name Name\nin O O\n.h Name Name\nfile O O\n. O O\n\nYou O O\ncan O O\nsynthesize O O\nthis O O\nvariable O O\nin O O\n.m Name Name\nfile O O\nlike O O\n@sythesize Name Name\nstr Name Name\n; Name Name\n\nYou O O\ncan O O\nuse O O\nself.str Name Name\nfor O O\nassigning O O\nor O O\ngetting O O\nstr Name Name\n. O O\n\nFor O O\nmore O O\ndetails O O\nread O O\nthis O O\ndocument O O\n. O O\n\nARC Name Name\njust O O\nworks O O\n: O O\n\n.. O O\n. O O\nand O O\nno O O\ndealloc Name Name\n:) O O\n\nFrom O O\npost O O\nWPF Name Name\n: O O\nHow O O\nto O O\nprogrammatically O O\nremove O O\nfocus O O\nfrom O O\na O O\nTextBox Name Name\n, O O\nI O O\nknow O O\nhow O O\nto O O\nset O O\na O O\nTextBox Name Name\n's O O\nfocus O O\nback O O\nto O O\nits O O\nparent O O\nusing O O\nthe O O\nfollowing O O\ncode O O\n: O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\ngeneralize O O\nthis O O\ncode O O\n( O O\nlike O O\ntemplate O O\nfunctions O O\n) O O\nto O O\nmake O O\nit O O\nalso O O\nwork O O\nfor O O\nother O O\nitems O O\nlike O O\nComboBox Name Name\n, O O\nCanvas Name Name\n, O O\nImage Name Name\netc O O\n. O O\n\nYes O O\n, O O\nthere O O\nis O O\nsuch O O\na O O\npossibility O O\n, O O\nin O O\nsuch O O\ncases O O\n, O O\nimplement O O\nattached O O\nbehavior O O\n. O O\n\nLogic O O\nat O O\nwork O O\nwith O O\na O O\nfocus O O\nmust O O\nfit O O\ninto O O\nDependencyPropertyChangedEvent Name Name\nhandler O O\n. O O\n\nHere O O\nis O O\nan O O\nexample O O\nfor O O\nyour O O\ncase O O\n: O O\n\nXAML Name Name\n\nCode-behind O O\n\nIt O O\nshould O O\nbe O O\nrelatively O O\nstraightforward O O\n: O O\n\nThis O O\nworks O O\nbecause O O\nall O O\ncontrols O O\ninherit O O\nfrom O O\nFrameworkElement Name Name\nwhich O O\ninherits O O\nfrom O O\nDependencyObject Name Name\n. O O\n\nSo O O\nyou O O\ncan O O\nset O O\nctrl O O\nto O O\nany O O\ntype O O\nof O O\ncontrol O O\nyou O O\nwant O O\n: O O\nComboBox Name Name\n, O O\nTextBox Name Name\n, O O\nButton Name Name\n, O O\nCanvas Name Name\n, O O\netc O O\n. O O\n\nWhenever O O\nI O O\npress O O\nthe O O\nbutton Name Name\n, O O\nthe O O\nimage Name Name\ndoes O O\nnot O O\nappear O O\n. O O\n\nTry O O\nthis O O\n\nMake O O\nsure O O\nthe O O\nimages Name Name\nare O O\nin O O\nthe O O\nright O O\nfolder O O\n, O O\nit O O\nshould O O\nbe O O\nin O O\nthe O O\nsame O O\ndirectory O O\nas O O\nyour O O\nHTML Name Name\nfile O O\n. O O\n\nI O O\nhave O O\nconfiguration Name Name\nlook O O\nlike O O\nthis O O\nand O O\nI O O\ndo O O\nn't O O\nknow O O\nhow O O\nto O O\nread O O\n, O O\nI O O\nwant O O\nto O O\nget O O\nvalue O O\nif O O\nI O O\nchoose O O\nproduct O O\nor O O\npreview O O\n? O O\n\nHow O O\ncan O O\nI O O\nread O O\nthis O O\nin O O\nmy O O\ndebugging O O\n? O O\n\nIn O O\nC# Name Name\nI O O\nrecommend O O\nyou O O\nto O O\nuse O O\nLinq Name Name\nto O O\nXML Name Name\n. O O\n\nIt O O\nis O O\nin O O\nthe O O\nstandard O O\n.net Name Name\nframework O O\n( O O\n3.5 Name Name\n) O O\n, O O\nand O O\nit O O\nhelp O O\nyou O O\nto O O\nload O O\nthe O O\nXML Name Name\n, O O\nand O O\nto O O\nread O O\nevery O O\nnode O O\nand O O\nattribute O O\nof O O\nit O O\neasily O O\n. O O\n\nIt O O\n's O O\nquite O O\neasy O O\nusing O O\nLINQ Name Name\n\nThis O O\nshould O O\nhelp O O\nyou O O\n\nI O O\nhave O O\nmaven Name Name\ninstalled O O\nand O O\nit O O\nworked O O\nwell O O\nbefore O O\nbut O O\nnow O O\nMaven Name Name\nclean O O\nstop/stuck O O\nat O O\ncertain O O\npoint O O\n. O O\n\nI O O\nhave O O\ntried O O\nrestarting O O\neclipse Name Name\nbut O O\ndoes O O\nn't O O\nseem O O\nto O O\nwork O O\n. O O\n\nEclipse Name Name\nVersion O O\n: O O\nLuna Name Name\nService Name Name\nRelease Name Name\n2 Name Name\n( Name Name\n4.4.2 Name Name\n) Name Name\n\nAny O O\nhelp O O\nwill O O\nbe O O\ngreatly O O\nappreciated O O\n. O O\n\nDeleting O O\neclipse Name Name\nlocal O O\nhistory O O\n, O O\nindexes O O\nand O O\ntemp O O\nfiles O O\nsolved O O\nthe O O\nissue O O\n. O O\n\nI O O\n've O O\ngot O O\npersistent O O\nfooters/headers Name Name\nin O O\na O O\njqm Name Name\napp O O\nI O O\n'm O O\nworking O O\non O O\n. O O\n\nThey O O\nwork O O\npretty O O\nmuch O O\nas O O\nexpected O O\n, O O\nexcept O O\nwhen O O\nyou O O\ntapping O O\nin O O\nthe O O\n\" Name Name\nwhite Name Name\nspace Name Name\n\" Name Name\nanywhere O O\ninside O O\nthe O O\n[ O O\ndata-role=\"content\" Name Name\n] O O\n, O O\nthe O O\nheader Name Name\nand O O\nfooter Name Name\nscroll O O\nout O O\nof O O\nview O O\n. O O\n\nTapping O O\nin O O\nthe O O\ncontent O O\nwhere O O\nthere O O\nare O O\nno O O\nlinks O O\nor O O\nbuttons Name Name\nagain O O\nslides O O\nthe O O\nheader Name Name\nand O O\nfooter Name Name\nback O O\ninto O O\nplace O O\n. O O\n\nHere O O\nis O O\na O O\nprototype O O\nof O O\nthe O O\napp O O\nI O O\n'm O O\nworking O O\non O O\n: O O\n\nIt O O\n's O O\nappropriate O O\nfor O O\npages Name Name\nwhere O O\nthere O O\nis O O\na O O\nlong O O\ncolumn Name Name\nof O O\ntext O O\n. O O\n\nYou O O\nget O O\nmore O O\nscreen O O\nreal O O\nestate O O\nfor O O\nreading O O\nthe O O\ncontent O O\n. O O\n\nThat O O\n's O O\nnice O O\nif O O\nit O O\n's O O\nwhat O O\nyou O O\nexpect O O\n. O O\n\nBut O O\nwhen O O\nyou O O\nhave O O\na O O\nmap Name Name\npage Name Name\n, O O\nit O O\ngets O O\nclunky O O\n- O O\nnew O O\nusers O O\nmay O O\nsee O O\nthis O O\nas O O\nbug O O\n- O O\n- O O\nespecially O O\nif O O\nthey O O\nca O O\nn't O O\nfigure O O\nout O O\nhow O O\nto O O\nget O O\noff O O\nthe O O\nmap Name Name\npage Name Name\nor O O\nanother O O\npage Name Name\nwith O O\ncontent O O\n. O O\n\nAlso O O\nwhen O O\nyou O O\n're O O\nviewing O O\na O O\npage Name Name\nwith O O\ncontent O O\nthat O O\n's O O\nshorter O O\nthan O O\nthe O O\npage Name Name\nlength O O\non O O\na O O\ndesktop Name Name\n, O O\nthe O O\nfooter Name Name\nactually O O\nclimbs O O\nup O O\ninto O O\nthe O O\npage Name Name\n. O O\n\nThat O O\n's O O\nnot O O\nwhat O O\nI O O\nexpect O O\n. O O\n\nHow O O\ncan O O\nI O O\nmake O O\ndata-position Name Name\n= Name Name\n\" Name Name\nfixed Name Name\n\" Name Name\nreally O O\nwork O O\nthe O O\nway O O\nI O O\nexpect O O\nit O O\nto O O\n? O O\n\nTry O O\napplying O O\nthe O O\ndata-tap-toggle Name Name\n= Name Name\n\" Name Name\nfalse Name Name\n\" Name Name\nattribute O O\nto O O\nyour O O\nheader Name Name\nand O O\nfooter Name Name\n, O O\nor O O\nin O O\njavascript Name Name\n: O O\n\nHere O O\nis O O\nthe O O\nAPI Name Name\ndocumentation O O\n: O O\nhttp://api.jquerymobile.com/fixedtoolbar/#option-tapToggle O O\n\nI O O\nam O O\nlooking O O\nto O O\nchange O O\nthe O O\nstyle O O\nof O O\na O O\ncontrol Name Name\nbut O O\nI O O\nbasically O O\nwant O O\nto O O\ncopy O O\npart O O\nof O O\na O O\ndefault O O\nstyle O O\n. O O\n\nDoes O O\nanyone O O\nknow O O\nhow O O\nI O O\ncan O O\nfigure O O\nout O O\nwhat O O\nthe O O\ndefault O O\nstyle O O\nof O O\na O O\ncontrol Name Name\nis O O\n? O O\n\nIn O O\nmy O O\ncase O O\nI O O\nam O O\nwanting O O\nto O O\nmake O O\nthe O O\ncolumn Name Name\nheaders O O\nin O O\na O O\nDataGrid Name Name\ngo O O\nblue O O\non O O\nmouse Name Name\nover O O\nlike O O\nthe O O\nrow Name Name\nheaders O O\ndo O O\n. O O\n\nYou O O\ncan O O\nfind O O\nsome O O\ntemplates O O\nthat O O\nare O O\nvery O O\nclose O O\nto O O\nthe O O\ndefaults O O\non O O\nthis O O\nMSDN Name Name\nsite O O\n\nAnother O O\nalternative O O\nis O O\nto O O\nget O O\na O O\ncopy O O\nof O O\nExpression Name Name\nBlend Name Name\nand O O\nuse O O\nit O O\nto O O\nmake O O\na O O\ncopy O O\nof O O\nthe O O\ndefault O O\nstyle O O\n, O O\nhowever O O\nBlend Name Name\nis O O\nn't O O\nfree O O\n\nContrary O O\nto O O\nwhat O O\nRachel O O\nsays O O\n, O O\nthe O O\nlink O O\nshe O O\nprovides O O\ndoes O O\nnot O O\nprovide O O\nthe O O\ndefault O O\ntemplates O O\n. O O\n\nI O O\nhave O O\nseen O O\nusing O O\nSystem.Windows.Markup.XamlWriter.Save(myObject.Template) Name Name\nthat O O\nthe O O\ndefault O O\ntemplates O O\nare O O\ncompletely O O\ndifferent O O\nfrom O O\nwhat O O\nthat O O\nsite O O\nshows O O\n. O O\n\nI O O\nhave O O\na O O\nComboBox Name Name\nwith O O\na O O\ndatasource Name Name\nfrom O O\na O O\nDataTable Name Name\n( O O\nDataView Name Name\n) O O\n. O O\n\nFor O O\nexample O O\n, O O\nthis O O\nsource O O\nreturn O O\n5 O O\nitems O O\nin O O\nmy O O\nComboBox Name Name\n. O O\n\nIf O O\nI O O\ndo O O\nn't O O\nwant O O\nto O O\nchoose O O\none O O\nof O O\nthese O O\n5 O O\nitems O O\n, O O\nand O O\nI O O\nneed O O\nto O O\nadd O O\nanother O O\nnew O O\nto O O\nsave O O\nit O O\nin O O\nmy O O\ndatabase O O\n, O O\nhow O O\nI O O\ncan O O\ndo O O\nit O O\n? O O\n\nmy O O\ncombobox Name Name\nvalues O O\n: O O\n\nComboBox.SelectedValue Name Name\nis O O\nsaved O O\nin O O\ndatabase O O\nby O O\nthis O O\nline O O\n: O O\n\nmy O O\nproblem O O\nis O O\nat O O\nComboBox.SelectedValue Name Name\n.. O O\n. O O\nhow O O\nI O O\ncan O O\nSelect O O\nanother O O\nvalue O O\noutside O O\nthe O O\nreturned O O\nlist Name Name\nfrom O O\nDT Name Name\n? O O\n? O O\n\nI O O\nthink O O\nyou O O\nhave O O\nto O O\nbind O O\nboth O O\nSelectedValue Name Name\nand O O\nText Name Name\nto O O\ncontractsBindingSource.InvoicingIBAN Name Name\n. O O\n\nEnsure O O\nthat O O\nyour O O\nComboBox Name Name\nallows O O\nuser O O\ninput O O\nby O O\nsetting O O\nbankAccountCombo.DropDownStyle Name Name\n= Name Name\nComboBoxStyle.DropDown Name Name\n; Name Name\n\nI O O\n'm O O\njust O O\nstarting O O\nto O O\nwork O O\nwith O O\nAngular Name Name\n2 Name Name\nand O O\nI O O\nhave O O\na O O\nproject O O\nwhere O O\nI O O\nam O O\nusing O O\nMaterial Name Name\n2 Name Name\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\ncreate O O\na O O\nresponsive O O\neffect O O\n, O O\nwhere O O\nI O O\nhide O O\na O O\ncolumn Name Name\nwhen O O\nmy O O\nscreen Name Name\nis O O\n960 Name Name\nor O O\nlower O O\n. O O\n\nI O O\nknow O O\nMaterial Name Name\n2 Name Name\nhas O O\na O O\nway O O\nto O O\ndetect O O\ncolumn Name Name\nsize O O\nfor O O\nsizing O O\n, O O\nlike O O\nthe O O\nfollowing O O\n: O O\n\nDoes O O\nanyone O O\nknow O O\nof O O\na O O\nway O O\nin O O\nAngular Name Name\n2 Name Name\nand O O\nMaterial Name Name\n2 Name Name\nto O O\ndetect O O\nand O O\nhid O O\na O O\ncolumn Name Name\n? O O\n\nTake O O\na O O\nlook O O\nat O O\nfxShow Name Name\nand O O\nfxhide Name Name\n. O O\n\nYou O O\ncan O O\nuse O O\nthem O O\nlike O O\nthis O O\n: O O\n\nI O O\nwould O O\nlike O O\nto O O\nknow O O\na O O\nsimple O O\nway O O\nto O O\nsort O O\na O O\ntext Name Name\nfile O O\nby O O\nlines O O\n. O O\n\nI O O\nhave O O\n2 O O\nfiles O O\n: O O\n\nfile1 Name Name\n: O O\n\nfile2 Name Name\n: O O\n\nmy O O\ncurrent O O\ncode O O\nis O O\n: O O\n\nI O O\nmerged O O\nfile1 Name Name\nand O O\nfile2 Name Name\nin O O\na O O\nfile3 Name Name\n\nI O O\nhave O O\nsome O O\nideas O O\nof O O\nhow O O\ni O O\ncan O O\nsort O O\nfile Name Name\n3 Name Name\nby O O\nlines O O\nbut O O\ni O O\ndont O O\nreally O O\nknow O O\nhow O O\nto O O\nmake O O\nthem O O\nhappen O O\n. O O\n\nOne O O\nis O O\ngoing O O\nthrough O O\nthe O O\nlonger O O\ntext O O\nout O O\nof O O\nthe O O\ntwo O O\n, O O\nfind O O\na O O\n\\n Name Name\nand O O\nall O O\nthe O O\ntext O O\nup O O\nuntil O O\nthe O O\n\\n Name Name\nto O O\nbe O O\nput O O\nin O O\nan O O\narray Name Name\nand O O\nthe O O\nsort O O\nthe O O\narray Name Name\nand O O\nthen O O\nput O O\neach O O\nelement O O\nof O O\nthe O O\nsorted O O\narray Name Name\non O O\na O O\nline O O\nform O O\nfile3 Name Name\n. O O\n\nThe O O\nother O O\nis O O\ngoing O O\nthrough O O\nfile3 Name Name\nand O O\ntry O O\nsomehow O O\nto O O\nswitch O O\nthe O O\nlines O O\nalphabitically O O\n, O O\nlike O O\nbubblesort Name Name\n. O O\n\nedit:managed O O\nto O O\ndo O O\nit O O\n, O O\njust O O\nneeded O O\nsome O O\ndirection O O\n, O O\nthanks O O\neveryone O O\n\nAs O O\na O O\nverbal O O\nprocedure O O\n, O O\nyou O O\ncan O O\ndo O O\n: O O\n\nAllocate O O\nan O O\narray Name Name\nof O O\npointers Name Name\nto O O\nchars Name Name\n\nRead O O\nall O O\nlines O O\nof O O\nthe O O\nfile O O\n. O O\n\nAllocate O O\na O O\nnew O O\nstring Name Name\nfor O O\neach O O\nline O O\nand O O\nput O O\nin O O\nthe O O\narray Name Name\n\nIf O O\nthe O O\narray Name Name\nis O O\ntoo O O\nsmall O O\n, O O\nthen O O\nuse O O\nrealloc Name Name\nto O O\nmake O O\nit O O\nlarger O O\n. O O\n\nRead O O\nabout O O\nrealloc Name Name\nto O O\navoid O O\ncommon O O\nerrors O O\n. O O\n\nOnce O O\nthe O O\nfile O O\nhas O O\nbeen O O\nread O O\n, O O\nuse O O\nyour O O\nown O O\nbubble Name Name\nsort Name Name\nor O O\nthe O O\nlibrary O O\n's O O\nqsort Name Name\nto O O\nsort O O\nthe O O\narray Name Name\n. O O\n\nRead O O\nabout O O\nqsort Name Name\n. O O\n\nOnce O O\nsorted O O\n, O O\nre-write O O\nfile3 Name Name\nfrom O O\nthe O O\narray Name Name\n. O O\n\nCoding O O\nthis O O\nis O O\na O O\nnice O O\nexcercise O O\nthat O O\nI O O\nleave O O\nto O O\nyou O O\n. O O\n\nEasy O O\nway O O\n: O O\nread O O\nthe O O\ntext Name Name\nfiles O O\ninto O O\none O O\narray Name Name\n( O O\nfirst O O\nline O O\nof O O\nsecond O O\nfile O O\nfollowing O O\nlast O O\nline O O\nof O O\nfirst O O\nfile O O\n( O O\nhint O O\n: O O\nfgets Name Name\n) O O\n, O O\nsort O O\nthe O O\narray Name Name\n( O O\nhint O O\n: O O\nqsort Name Name\n) O O\n, O O\nand O O\noutput O O\n. O O\n\nThe O O\nformat O O\nI O O\nwould O O\nlike O O\nto O O\nallow O O\nin O O\nmy O O\ntext Name Name\nboxes Name Name\nare O O\ncomma O O\ndelimited O O\nlists Name Name\nfollowed O O\nby O O\na O O\nline O O\nbreak O O\nin O O\nbetween O O\nthe O O\ncomma O O\ndelimited O O\nlists Name Name\n. O O\n\nHere O O\nis O O\nan O O\nexample O O\nof O O\nwhat O O\nI O O\nwant O O\nfrom O O\nthe O O\nuser O O\n: O O\n\nSo O O\nfar O O\nI O O\nhave O O\nlimited O O\nthe O O\nuser O O\nusing O O\nthis O O\nValidationExpression Name Name\n: O O\n\nHowever O O\nwith O O\nthat O O\nexpression O O\n, O O\nthe O O\nuser O O\nis O O\nonly O O\nable O O\nto O O\nenter O O\none Name Name\nrow Name Name\nof O O\ncomma O O\ndelimited O O\nnumbers O O\n. O O\n\nHow O O\ncan O O\nproceed O O\nto O O\naccept O O\nmultiple O O\nrows Name Name\nby O O\naccepting O O\nline O O\nbreaks O O\n? O O\n\nIt O O\nis O O\npossible O O\nto O O\ncheck O O\nif O O\nthe O O\ninput O O\nhas O O\nthe O O\ncorrect O O\nformat O O\n. O O\n\nI O O\nwould O O\nrecommend O O\nto O O\nuse O O\ngroups O O\nand O O\nrepeat O O\nthem O O\n: O O\n\nBut O O\nto O O\ncheck O O\nif O O\nthe O O\nmatrix Name Name\nis O O\nsymmetric O O\nyou O O\nhave O O\nto O O\nuse O O\nsomething O O\nelse O O\nthen O O\nregex Name Name\n. O O\n\nCheck O O\nit O O\nout O O\nhere O O\n: O O\nhttps://regex101.com/r/GqtOuQ/2/ O O\n\nIf O O\nyou O O\nwant O O\nto O O\nbe O O\na O O\nbit O O\nmore O O\nuser O O\nfriendly O O\nit O O\nis O O\npossible O O\nto O O\nallow O O\nas O O\nmuch O O\nhorizontal O O\nspaces O O\nas O O\nthe O O\nuser O O\nwants O O\nto O O\nadd O O\nbetween O O\nthe O O\nnumber O O\nand O O\ncomma O O\n. O O\n\nThis O O\ncan O O\nbe O O\ndone O O\nwith O O\nhe O O\nregex Name Name\ngroup O O\n\\h Name Name\nwhich O O\nallows O O\nevery O O\nwhitespace O O\nexcept O O\n\\n Name Name\n. O O\n\nThe O O\nregex Name Name\ncode O O\nlooks O O\nnow O O\na O O\nbit O O\nmore O O\nmessy O O\n: O O\n\nCheck O O\nthis O O\nout O O\nhere O O\n: O O\nhttps://regex101.com/r/GqtOuQ/3 O O\n\nHere O O\nis O O\nthe O O\nversion O O\nthat O O\nshould O O\nwork O O\nwith O O\n.NET Name Name\n: O O\n\ni O O\nhave O O\na O O\nsecuview Name Name\ndvr Name Name\nconnected O O\nto O O\nmikrotik Name Name\n, O O\ni O O\nsuccessfully O O\nconfigured O O\na O O\nport Name Name\nforwarding O O\nto O O\nthe O O\ndvr Name Name\n. O O\n\nAm O O\nusing O O\na O O\npublic O O\nip O O\non O O\nthe O O\nmikrotik Name Name\nand O O\nprivate O O\nip O O\nto O O\nthe O O\ndvr Name Name\n. O O\n\nAt O O\nthe O O\nmoment O O\n, O O\ni O O\ncan O O\nsuccessfully O O\nlog O O\nin O O\nthe O O\ndvr Name Name\nin O O\nmy O O\nlocal O O\nnetwork O O\nusing O O\nthe O O\nprivate O O\nip O O\ni.e Name Name\n192.168.100.2 Name Name\n, O O\nbut O O\ncannot O O\nlog O O\nin O O\noutside O O\nmy O O\nnetwork O O\n, O O\ni O O\nget O O\nthe O O\nlogin O O\npage O O\nfor O O\nthe O O\ndvr Name Name\n, O O\nbut O O\nnone O O\nof O O\nmy O O\ncredentials O O\nthat O O\ni O O\nused O O\nin O O\nthe O O\nlocal O O\nnetwork O O\nseem O O\nto O O\nwork O O\n\nhere O O\nis O O\nmy O O\nconfig O O\n\naction Name Name\n= Name Name\ndst-nat Name Name\nchain Name Name\n= Name Name\ndstnat Name Name\ndisabled Name Name\n= Name Name\nno Name Name\ndst-port Name Name\n= Name Name\n80 Name Name\nDst Name Name\n. Name Name\nAddress Name Name\n= Name Name\n41.78.x.x Name Name\nprotocol Name Name\n= Name Name\ntcp Name Name\nto-addresses Name Name\n= Name Name\n192.168.100.2 Name Name\nto-ports Name Name\n= Name Name\n80 Name Name\n\ni O O\nhave O O\nattached O O\nan O O\nimage Name Name\nof O O\nthe O O\nlogin O O\npage Name Name\nfrom O O\noutside O O\nmy O O\nnetwork O O\n. O O\n\nIs O O\nthere O O\nsomething O O\nam O O\ndoing O O\nwrong O O\n? O O\n\nI O O\nam O O\nlooking O O\nfor O O\na O O\ncode O O\nwhich O O\nwill O O\nable O O\nto O O\nperform O O\nkinect Name Name\nfusion Name Name\nas O O\ndone O O\nby O O\nNewcombe O O\nwith O O\nKinect Name Name\nv2.0 Name Name\n. O O\n\nI O O\nknow O O\nthat O O\nthat O O\nprinciple O O\nused O O\nfor O O\nKinect Name Name\n1 Name Name\nis O O\ndifferent O O\nfrom O O\nthe O O\nprinciple O O\nused O O\nfor O O\nKinect Name Name\n2.0 Name Name\n. O O\n\nI O O\nhave O O\nfound O O\none O O\nfamous O O\nopen O O\nsource O O\nlibrary O O\nwhich O O\ndoes O O\nthis O O\n, O O\npcl Name Name\n. O O\n\nBut O O\nThe O O\ncode O O\nis O O\nspecific O O\nfor O O\nkinect Name Name\n1.0 Name Name\n. O O\n\nIs O O\nthere O O\nany O O\nopensource O O\nlibrary O O\nwhich O O\ncan O O\ndo O O\nthis O O\nfor O O\nKinect Name Name\n2.0 Name Name\n. O O\n\nIf O O\nnot O O\nis O O\nthere O O\na O O\nway O O\nI O O\ncan O O\nrefactor O O\nthe O O\ncurrent O O\nopen O O\nsource O O\ncodes O O\nto O O\nmake O O\nit O O\nfor O O\n2.0 Name Name\n. O O\n\nIf O O\nI O O\nam O O\nrefactoring O O\nthe O O\ncode O O\nfor O O\n2.0 Name Name\nthen O O\nis O O\nthere O O\nanything O O\nelse O O\nI O O\nhave O O\nto O O\nmodify O O\nother O O\nthan O O\n, O O\nchanging O O\nthe O O\nresolution O O\nof O O\nthe O O\ncamera Name Name\noutputs O O\n? O O\n\nIs O O\nthere O O\na O O\nway O O\nI O O\ncan O O\ncompensate O O\nfor O O\nextra O O\nnoisy O O\nresult O O\ngiven O O\nby O O\nKinect Name Name\n2.0 Name Name\nother O O\nthan O O\nincreasing O O\nthe O O\nsmoothing O O\nin O O\nbilateral O O\nfiltering O O\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nI O O\ncan O O\nhandle O O\nthe O O\nextra O O\ndistorted O O\nresults O O\ngiven O O\nby O O\nKinect Name Name\n2.0 Name Name\n? O O\n\nI O O\nlooking O O\nto O O\nuse O O\nlibfreenect2 Name Name\n. O O\n\nThanks O O\n:) O O\n\nUsing O O\nmechanize Name Name\n, O O\nhow O O\ncan O O\nI O O\nwait O O\nfor O O\nsome O O\ntime O O\nafter O O\npage O O\nload O O\n( O O\nsome O O\nwebsites O O\nhave O O\na O O\ntimer O O\nbefore O O\nlinks O O\nappear O O\n, O O\nlike O O\nin O O\ndownload O O\npages O O\n) O O\n, O O\nand O O\nafter O O\nthe O O\nlinks O O\nhave O O\nbeen O O\nloaded O O\n, O O\nclick O O\non O O\na O O\nspecific O O\nlink O O\n? O O\n\nSince O O\nit O O\n's O O\nan O O\nanchor Name Name\ntag O O\nand O O\nnot O O\na O O\nsubmit O O\nbutton Name Name\n, O O\nwill O O\nbrowser.submit() Name Name\nwork O O\n( O O\nI O O\ngot O O\nerrors O O\nwhile O O\ndoing O O\nthat O O\n) O O\n? O O\n\nMechanize Name Name\ndoes O O\nnot O O\noffer O O\njavascript Name Name\nfunctionality O O\n, O O\nso O O\nyou O O\nwill O O\nnot O O\nsee O O\ndynamic O O\ncontent O O\n( O O\nlike O O\na O O\ntimer O O\nthat O O\nturns O O\ninto O O\na O O\nlink O O\n) O O\n. O O\n\nAs O O\nfar O O\nas O O\nclicking O O\non O O\na O O\nlink O O\n, O O\nyou O O\nhave O O\nto O O\nfind O O\nthe O O\nelement O O\n, O O\nand O O\nthen O O\nyou O O\ncan O O\ncall O O\nclick_link Name Name\non O O\nit O O\n. O O\n\nSee O O\nthe O O\nFinding O O\nLinks O O\nsection O O\nof O O\nthis O O\nsite O O\n. O O\n\nIf O O\nyou O O\nare O O\nlooking O O\nfor O O\nsomething O O\nto O O\nhandle O O\nsuch O O\nsites O O\n, O O\na O O\ngood O O\noption O O\nis O O\nPhantomJS Name Name\n. O O\n\nIt O O\nuses O O\nnodejs Name Name\n, O O\nbut O O\nruns O O\non O O\nthe O O\nwebkit Name Name\nengine Name Name\n, O O\nallowing O O\nyou O O\nparse O O\ndynamic O O\ncontent O O\n. O O\n\nIf O O\nyou O O\nhave O O\nyour O O\nheart O O\nset O O\non O O\npython Name Name\n, O O\nusing O O\nSelenium Name Name\nto O O\nprogramatically O O\ndrive O O\na O O\nreal O O\nbrowser Name Name\nmay O O\nbe O O\nyour O O\nbest O O\nbet O O\n. O O\n\nIf O O\nit O O\n's O O\nan O O\nanchor Name Name\ntag O O\n, O O\nthen O O\njust O O\nGET/POST Name Name\nwhatever O O\nit O O\nis O O\n. O O\n\nThe O O\ntimer O O\nbetween O O\nlinks O O\nappearing O O\nis O O\ngenerally O O\ndone O O\nin O O\njavascript Name Name\n- O O\nsome O O\nsites O O\nyou O O\nare O O\nattempting O O\nto O O\nscrape O O\nmay O O\nnot O O\nbe O O\nusable O O\nwithout O O\njavascript Name Name\n, O O\nor O O\nrequires O O\na O O\ntoken O O\ngenerated O O\nin O O\njavascript Name Name\nwith O O\nclientside Name Name\nmath O O\n. O O\n\nDepending O O\non O O\nthe O O\nsite O O\n, O O\nyou O O\ncan O O\neither O O\nextract O O\nthe O O\nwait O O\ntime O O\nin O O\nmsec/sec O O\nand O O\ntime.sleep() Name Name\nfor O O\nthat O O\nlong O O\n, O O\nor O O\nyou O O\n'll O O\nhave O O\nto O O\nuse O O\nsomething O O\nthat O O\ncan O O\nexecute O O\njavascript Name Name\n\nGiven O O\nadjacency O O\nrelation O O\nlike O O\n\nHow O O\ndo O O\nI O O\nconstruct O O\na O O\ngraph Name Name\nof O O\nit O O\n. O O\n\nI O O\nwant O O\na O O\neasier O O\nimplementation O O\nwhich O O\ncan O O\nbe O O\nunderstood O O\nby O O\na O O\nbeginner O O\n. O O\n\nI O O\nknow O O\nabout O O\nself O O\nreferential O O\nstructures O O\n. O O\n\nPlease O O\nhelp O O\n\nUse O O\nproper O O\nabstraction O O\nlevel O O\n. O O\n\nYou O O\nwant O O\nto O O\nrepresent O O\neach O O\nnode O O\nas O O\nan O O\nint Name Name\nwith O O\na O O\nset Name Name\nof O O\nneightbours O O\n? O O\n\nWhy O O\ndo O O\nn't O O\nyou O O\nuse O O\nAdjacency O O\nMatrix Name Name\n, O O\nit O O\n's O O\npretty O O\nsimple O O\nand O O\neasy O O\n. O O\n\nAdjacency O O\nmatrices Name Name\nare O O\nmatrices Name Name\nwhich O O\ndefine O O\nrelations O O\nbetween O O\nthe O O\nvertices O O\nof O O\na O O\ngraph Name Name\n. O O\n\nSee O O\nin O O\nthe O O\nexample O O\nabove O O\n, O O\nyou O O\nhave O O\nan O O\nedge O O\ngoing O O\nfrom O O\nvertex Name Name\n1 Name Name\nto O O\n2 O O\n, Name Name\nso O O\nthere O O\nis O O\na O O\n1 Name Name\nat O O\nthe O O\nindex O O\n[ Name Name\n1 Name Name\n] Name Name\n[ Name Name\n2 Name Name\n] Name Name\nof O O\nadjacency O O\nmatrix Name Name\n, O O\nsimilar O O\nis O O\nthe O O\ncase O O\nwith O O\n[ Name Name\n1 Name Name\n] Name Name\n[ Name Name\n3 Name Name\n] Name Name\nand O O\nso O O\non O O\n. O O\n\nAnd O O\nyou O O\ndo O O\nn't O O\nhave O O\nany O O\nedge O O\ngoing O O\nfrom O O\n1 Name Name\nto O O\n5 Name Name\n, O O\nso O O\nthere O O\nis O O\na O O\n0 Name Name\nat O O\nindex O O\n[ Name Name\n1 Name Name\n] Name Name\n[ Name Name\n5 Name Name\n] Name Name\n, O O\nand O O\nso O O\non O O\n. O O\n\nYou O O\ncan O O\nalso O O\nuse O O\nAdjacency O O\nList Name Name\n, O O\nnow O O\ngo O O\nahead O O\nand O O\ngoogle O O\nit O O\nto O O\nhave O O\nsome O O\nunderstanding O O\nof O O\nhow O O\nto O O\nuse O O\nAdjacency O O\nMatrices Name Name\nand O O\nAdjacency O O\nLists Name Name\n, O O\nand O O\ncome O O\nback O O\nwith O O\nsome O O\nreal O O\nproblem O O\nthen O O\n. O O\n\nEDIT O O\n\nI O O\nsee O O\n, O O\nyou O O\ndo O O\nn't O O\nhave O O\nany O O\nunderstanding O O\nof O O\nhow O O\nto O O\nimplement O O\na O O\ngraph Name Name\n, O O\nlet O O\nme O O\nwrite O O\nsome O O\nexamples O O\nfor O O\nyou O O\nusing O O\nAdjacency O O\nMatrix Name Name\n. O O\n\nI O O\n'm O O\nassuming O O\nthat O O\nyou O O\nknow O O\nhow O O\nto O O\nallocate O O\na O O\n2D O O\narray Name Name\nin O O\nc++ Name Name\n. O O\n\nNow O O\n, O O\nif O O\nyou O O\nwant O O\nto O O\ncreate O O\nan O O\nadjacency O O\nmatrix Name Name\nfor O O\na O O\ngraph Name Name\ncontaining O O\nn Name Name\nvertices O O\n, O O\nsimply O O\ncreate O O\na O O\n2D O O\narray Name Name\nof O O\nsize O O\nn Name Name\nx O O\nn Name Name\nand O O\ninitialize O O\nall O O\nof O O\nthe O O\nelements O O\nin O O\nit O O\nwith O O\n0 Name Name\n. O O\n\nThere O O\nyou O O\ngo O O\n, O O\ncall O O\nthis O O\nfunction O O\n, O O\nand O O\nyou O O\n've O O\ncreated O O\nyourself O O\nan O O\nAdjacency O O\nMatrix Name Name\n. O O\n\nNow O O\n, O O\nyou O O\ncan O O\ndo O O\nwhatever O O\nyou O O\nwant O O\nto O O\ndo O O\nwith O O\nyour O O\ngraph Name Name\n( O O\nFor O O\nnow O O\n, O O\nit O O\ndoes O O\nn't O O\nhave O O\nany O O\nedges O O\n) O O\n. O O\n\nTo O O\nhave O O\nedges O O\nin O O\nit O O\n, O O\nsimply O O\nplace O O\n1 Name Name\nwherever O O\nyou O O\nwant O O\nto O O\nput O O\nan O O\nedge O O\n. O O\n\nNow O O\n, O O\nsimply O O\ncall O O\nthis O O\nfunction O O\n, O O\nand O O\nadd O O\nsome O O\nedges O O\nto O O\nyour O O\ngraph Name Name\n. O O\n\nSo O O\ni O O\n'm O O\ngonna O O\nput O O\nsome O O\nedges O O\nand O O\ncreate O O\nthe O O\nabove O O\nshown O O\ngraph Name Name\nin O O\nit O O\n. O O\n\nNow O O\n, O O\nyou O O\ncan O O\ndo O O\nwhatever O O\nyou O O\nwant O O\nwith O O\nyour O O\ngraph Name Name\n, O O\nlike O O\nshould O O\nwe O O\ncalculate O O\nhow O O\nmany O O\noutgoing O O\nedges O O\nvertex Name Name\n1 Name Name\nhas O O\n? O O\n\nFor O O\nthis O O\n, O O\nyou O O\ncan O O\nsimply O O\nloop O O\nthrough O O\nthe O O\nrow Name Name\n1 Name Name\n\nAt O O\nthe O O\nend O O\n, O O\nyou O O\nshould O O\nde-allocate O O\nthe O O\nallocated O O\nmemory O O\nfor O O\nadjacency O O\ngraph Name Name\n. O O\n\nSo O O\n, O O\ni O O\nthink O O\nby O O\nnow O O\n, O O\nyou O O\n'd O O\nhave O O\nmuch O O\nbetter O O\nunderstanding O O\n. O O\n\nI O O\n've O O\nimplemented O O\nthe O O\ngraph Name Name\nwith O O\nusing O O\njust O O\nthe O O\nfunctions O O\n, O O\nand O O\npassing O O\nadjacency O O\nmatrix Name Name\nto O O\nthem O O\n( O O\nmy O O\nbad O O\n) O O\n, O O\nI O O\nstrongly O O\nrecommend O O\nto O O\nimplement O O\nthe O O\nGraph Name Name\nin O O\na O O\nclass O O\n, O O\nwhich O O\nhandles O O\nall O O\nof O O\nthe O O\nGraph Name Name\nstuff O O\nitself O O\n, O O\nand O O\nyou O O\ndo O O\nn't O O\nhave O O\nto O O\npass O O\nadjacency O O\nmatrix Name Name\nto O O\nit O O\n, O O\nyou O O\nshould O O\nn't O O\neven O O\nhave O O\nto O O\nknow O O\nwhether O O\nthe O O\nGraph Name Name\nclass O O\nis O O\nimplemented O O\nusing O O\nAdjacency O O\nMatrix Name Name\nor O O\nsome O O\nother O O\nmethod O O\n( O O\nof O O\ncourse O O\nwhen O O\nusing O O\nthe O O\nclass O O\n, O O\nnot O O\nimplementing O O\nit O O\n) O O\n\nYou O O\nclass O O\nshould O O\nbe O O\nlike O O\nthis O O\n: O O\n\nNow O O\n, O O\ngo O O\nahead O O\nand O O\nimplement O O\nthis O O\nclass O O\nand O O\nadd O O\nwhatever O O\nfunctions O O\nyou O O\nwant O O\nin O O\nthere O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\ncreate O O\na O O\nsimple O O\nexample O O\nNative Name Name\naddon Name Name\nfor O O\nElectron Name Name\n. O O\n\nHowever O O\n, O O\nkeep O O\nrunning O O\ninto O O\nthis O O\nversion O O\nmiss O O\nmatch O O\nissue O O\n. O O\n\nI O O\nhave O O\n.nvmrc Name Name\nfiles O O\nfor O O\nboth O O\nmy O O\nelectron Name Name\nproject O O\nand O O\nthe O O\naddon O O\nproject O O\n( O O\nusing O O\nnode Name Name\n7.4.0 Name Name\n) O O\n. O O\n\nElectron Name Name\n1.6.7 Name Name\n\nNode Name Name\n7.4.0 Name Name\n\nNvm Name Name\n0.33.2 Name Name\n\nNPM Name Name\n4.0.5 Name Name\n\nThe O O\nError O O\n\nTried O O\nsolutions O O\n\n1 O O\n. O O\nTried O O\nusing O O\n./node_modules/.bin/electron Name Name\n-rebuild Name Name\n\n2 O O\n. O O\nTried O O\nrebuilding O O\nmy O O\naddon O O\nnvm Name Name\nuse O O\n7.4.0 Name Name\nnpm Name Name\nrebuild O O\n\nStill O O\nget O O\nthe O O\nerror O O\n. O O\n\nUpdate O O\n: O O\nfound O O\nthis O O\npost O O\n, O O\nbut O O\nsolution O O\ndid O O\nn't O O\nwork O O\nfor O O\nme O O\neither O O\n. O O\n\nBeginner O O\n's O O\nQuestion O O\n: O O\n2 O O\ntables Name Name\non O O\nmy O O\ndb O O\n: O O\nProducts Name Name\n, O O\nCategories Name Name\n. O O\n\nI O O\ncreated O O\na O O\nView O O\nof O O\nProducts Name Name\n. O O\n\nAnd O O\nI O O\nhave O O\na O O\nSidebar Name Name\nMenu Name Name\nas O O\na O O\nPartial Name Name\nView Name Name\n. O O\n\nI O O\nwant O O\nto O O\nlist O O\nmy O O\ncategories Name Name\nin O O\n_SidebarMenu Name Name\ndynamically O O\n. O O\n\nSo O O\nI O O\ntried O O\nthis O O\nin O O\n_SidebarMenu Name Name\n: O O\n\nBut O O\nI O O\ngot O O\na O O\nServer O O\nError O O\n: O O\n\nThe O O\nmodel O O\nitem O O\npassed O O\ninto O O\nthe O O\ndictionary Name Name\nis O O\nof O O\ntype O O\n' O O\nSystem.Collections.Generic.List Name Name\n`1 O O\n[ O O\nProjectName.MVCWebUI.Models.Products Name Name\n] O O\n' O O\n, O O\nbut O O\nthis O O\ndictionary Name Name\nrequires O O\na O O\nmodel O O\nitem O O\nof O O\ntype O O\n' O O\nProjectName.MVCWebUI.Areas.Admin.Models.AdminMenuContent Name Name\n' O O\n. O O\n\nHow O O\ncan O O\nI O O\nlist O O\na O O\ndifferent O O\nModel O O\nrather O O\nthan O O\na O O\nModel O O\nin O O\na O O\nrendering O O\nView O O\n? O O\n\nI O O\nwould O O\nrecommend O O\nusing O O\na O O\nchild O O\naction O O\n, O O\nsince O O\nit O O\n's O O\nvirtually O O\nimpossible O O\nto O O\nensure O O\nthat O O\nthe O O\nright O O\nmodel O O\nwill O O\nbe O O\npassed O O\nto O O\nthe O O\npartial O O\nin O O\nevery O O\nsingle O O\nview O O\notherwise O O\n. O O\n\nBasically O O\n, O O\nin O O\nthe O O\ncontroller O O\nof O O\nyour O O\nchoice O O\n, O O\nadd O O\nan O O\naction O O\nlike O O\n: O O\n\nThen O O\n, O O\nin O O\nyour O O\nlayout O O\n, O O\nadd O O\nthe O O\nfollowing O O\nwhere O O\nyou O O\nwant O O\nthis O O\nmenu Name Name\nto O O\nappear O O\n: O O\n\nWhere O O\n\" O O\nFoo O O\n\" O O\nis O O\nthe O O\nname O O\nof O O\nthe O O\ncontroller O O\nyou O O\nput O O\nthis O O\naction O O\nin O O\n. O O\n\nAssuming O O\nyou O O\nhave O O\na O O\nViewModel Name Name\nlike O O\n: O O\n\nMain O O\nview O O\nwould O O\nhave O O\nthe O O\n: O O\n\nPartial O O\nwould O O\nhave O O\n: O O\n\nSo O O\nfrom O O\nyour O O\nmain O O\nview O O\nyou O O\ncould O O\nrender O O\nthe O O\npartial O O\nand O O\npassing O O\nthe O O\ncorrect O O\nlist Name Name\nlike O O\n: O O\n\nI O O\nhave O O\na O O\nheader Name Name\nfile O O\n: O O\n\nBut O O\nI O O\ndo O O\nn't O O\nknow O O\nwhy O O\nI O O\nca O O\nn't O O\nreturn O O\nvalue O O\nto O O\nIntList Name Name\nobject O O\nin O O\nthere O O\n: O O\n\nI O O\nwant O O\nto O O\nreturn O O\nvalue O O\nof O O\nA Name Name\nwhose O O\ntype O O\nis O O\nIntList Name Name\nbut O O\nI O O\nmeet O O\nan O O\nerror O O\non O O\n\"_BLOCK_TYPE_IS_VALID(pHead->nBlockUse) O O\nin O O\nvisual Name Name\nstudio Name Name\n2010 Name Name\n. O O\n\nHow O O\ncan O O\nI O O\nrepair O O\nit O O\n? O O\n\nI O O\nhave O O\nsome O O\nRuby Name Name\ncode O O\nto O O\nsubscribe O O\nto O O\nPubNub Name Name\nand O O\nrelay O O\nwhat O O\nis O O\nread O O\nfrom O O\na O O\nchannel O O\nto O O\nFluentd Name Name\n. O O\n\nI O O\nam O O\nperiodically O O\nseeing O O\nsome O O\nduplicate O O\nmessages O O\narrive O O\nin O O\nFluentd Name Name\n. O O\n\nI O O\nsuspect O O\nthere O O\nis O O\na O O\nproblem O O\nusing O O\nthe O O\ninfinite O O\nloop+sleep Name Name\nin O O\nthe O O\ncode O O\nbelow O O\n. O O\n\nWhat O O\nis O O\nthe O O\nmore O O\ncorrect O O\nway O O\nto O O\nachieve O O\nthis O O\n? O O\n\nMany O O\nthanks O O\n. O O\n\nI O O\nhave O O\na O O\nweird O O\nproblem O O\nthat O O\nI O O\n'm O O\nnot O O\nable O O\nto O O\nsolve O O\n. O O\n\nIt O O\nshould O O\nseems O O\nthe O O\nsame O O\nas O O\nsome O O\nother O O\nproblem O O\nI O O\nhave O O\nread O O\nabout O O\nthe O O\nrelation O O\nbetween O O\nand O O\n, O O\nbut O O\nthis O O\nis O O\nanother O O\nthing O O\n. O O\n\nLEt O O\nme O O\nexplain O O\nall O O\nthis O O\n: O O\n\nFirst O O\n, O O\nI O O\n've O O\nbeen O O\nworking O O\nwith O O\nthis O O\ncode O O\n. O O\n\nThis O O\nworks O O\nas O O\nit O O\nshould O O\n: O O\n\nThis O O\nshows O O\nthe O O\ndiv Name Name\ncontent O O\nas O O\nit O O\nwas O O\nexpected O O\nover O O\nthe O O\ncanvas Name Name\n, O O\nboth O O\nattached O O\nto O O\nthe O O\n0 Name Name\n, Name Name\n0 Name Name\n. O O\n\nNow O O\n, O O\ninstead O O\n, O O\nI O O\nneed O O\nto O O\nshow O O\nthe O O\ngame Name Name\ncentered O O\nin O O\nthe O O\nwebpage Name Name\n, O O\nso O O\n, O O\ni O O\nthought O O\nin O O\nthis O O\n. O O\n\nThis O O\nis O O\nnot O O\nworking O O\n, O O\nthe O O\ndiv Name Name\nthat O O\npreviously O O\nwas O O\nover O O\nthe O O\ncanvas Name Name\nnow O O\nis O O\nright O O\nbehind O O\n.. O O\n. O O\n¿why O O\n? O O\n\nI O O\ntried O O\nwith O O\ninherit O O\npositioning O O\ntoo O O\n, O O\nthe O O\nresult O O\nis O O\nthe O O\nsame O O\n. O O\n\nI O O\ndo O O\nn't O O\nknow O O\nhow O O\nto O O\nattack O O\nthis O O\nproblem O O\nand O O\nI O O\nwould O O\nbe O O\nvery O O\ngrateful O O\nwith O O\nany O O\nhelp O O\nyou O O\ncould O O\ngive O O\nme O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\ncenter O O\nthe O O\ncontainer O O\ndiv Name Name\nin O O\na O O\nweb Name Name\npage Name Name\nhorizontally O O\n, O O\njust O O\nprovide O O\na O O\nwidth Name Name\nto O O\nthe O O\ncontainer O O\nelement O O\nand O O\nuse O O\nmargin Name Name\n: Name Name\nauto Name Name\n; Name Name\nthat O O\n's O O\nall O O\nyou O O\nneed O O\n, O O\nif O O\nyou O O\nwant O O\nto O O\nhorizontally O O\nas O O\nwell O O\nas O O\nvertically O O\ncentered O O\nyou O O\nneed O O\nto O O\nuse O O\nposition Name Name\n: Name Name\nabsolute Name Name\n; Name Name\n\nAnd O O\nstill O O\nif O O\nyou O O\nare O O\nconfused O O\nwhy O O\nthe O O\ndiv Name Name\nwent O O\nbehind O O\n, O O\nI O O\n've O O\nno O O\nidea O O\nwhy O O\nit O O\nwent O O\nbehind O O\nand O O\nhow O O\n, O O\nbut O O\nyou O O\ncould O O\nuse O O\nz-index Name Name\nto O O\nre-arrange O O\nthe O O\nstack O O\nlevel O O\nof O O\nthe O O\nelement O O\n\ni O O\nneed O O\nto O O\nopen O O\na O O\nserial O O\nport Name Name\nsend O O\ncommand O O\n00 Name Name\n00 Name Name\nF0 Name Name\n00 Name Name\n00 Name Name\nand O O\nthen O O\nreceive O O\nthe O O\ndata O O\nfrom O O\nthe O O\nport Name Name\nif O O\nhe O O\ncommand O O\nreceived O O\nis O O\nF1 Name Name\nand O O\ndata O O\nreceived O O\nis O O\nF1 Name Name\nD6 Name Name\ni O O\nneed O O\nto O O\nopen O O\na O O\nfile O O\nand O O\nwrite O O\nthe O O\ndata O O\n. O O\n\nand O O\nthen O O\nagain O O\nsend O O\nthe O O\ncommand O O\nF1 Name Name\nand O O\nif O O\ncommand O O\nreceived O O\nis O O\nF2 Name Name\ni O O\nneed O O\nto O O\nclose O O\nthe O O\nfile O O\n. O O\n\nYou O O\ncan O O\nuse O O\nthe O O\nSerialPort Name Name\nClass O O\nin O O\n.NET Name Name\nto O O\naccomplish O O\nthis O O\n. O O\n\nUse O O\nRead(...) Name Name\nand O O\nWrite(...) Name Name\nmethods O O\nto O O\naccomplish O O\nyour O O\ntask O O\n. O O\n\nFirstly O O\n, O O\nyou O O\nadd O O\nserialPort1 Name Name\ntools O O\nin O O\nyour O O\nform Name Name\nand O O\nafter O O\nusing O O\n\nthat O O\ncodes O O\nto O O\nopen O O\nyour O O\nport Name Name\n. O O\n\nAfter O O\nthat O O\nyou O O\nneed O O\nWrite() Name Name\nand O O\nRead() Name Name\nmethod O O\nin O O\nserialPort1 Name Name\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\npass O O\nthis O O\narray Name Name\nby O O\nreference O O\nbut O O\nmy O O\ncode O O\ndoes O O\nn't O O\nseem O O\nto O O\nbe O O\nable O O\nto O O\npick O O\nup O O\nthe O O\nfunction O O\n. O O\n\nHelp O O\n? O O\n\nYou O O\nalmost O O\ngot O O\nthe O O\nright O O\nsyntax O O\n, O O\nbut O O\nyou O O\nneed O O\nthe O O\narray Name Name\n's O O\nsize O O\n, O O\nwhich O O\nyou O O\ncould O O\nspecify O O\nexplicitly O O\nif O O\nyou O O\nonly O O\nneed O O\nto O O\nsupport O O\none O O\nsize O O\n: O O\n\nor O O\nuse O O\na O O\nfunction O O\ntemplate O O\nto O O\ndeduce O O\nit O O\nif O O\nyou O O\nneed O O\nfunctions O O\nfor O O\ndifferent O O\nsizes O O\n: O O\n\nNote O O\nthat O O\nthere O O\nare O O\nmore O O\nidiomatic O O\nsolutions O O\nin O O\nC++ Name Name\n. O O\n\nOne O O\nis O O\nto O O\npass O O\nbegin O O\nand O O\none-past-the-end O O\niterators O O\n( O O\nplain O O\npointers Name Name\nwill O O\ndo O O\n) O O\nspecifying O O\nthe O O\nrange O O\n. O O\n\nOthers O O\nare O O\nto O O\nuse O O\nstd::array Name Name\nfor O O\nfixed O O\nsize O O\narrays Name Name\nand O O\nstd::vector Name Name\nfor O O\ndynamically O O\nsized O O\nones O O\n. O O\n\nWhy O O\nare O O\n2 O O\nconcurrent O O\ncalls O O\nto O O\napache2 Name Name\nnot O O\nprocessed O O\nin O O\nparallel O O\n? O O\n\nOpen O O\n2 O O\ntabs Name Name\ninto O O\nchrome Name Name\n, O O\nand O O\ngo O O\nto O O\nscript O O\n. O O\n\n( O O\nsame O O\ntime O O\n) O O\n\nResult O O\nfrom O O\nTAB Name Name\n1 Name Name\n\nResult O O\nfrom O O\nTAB Name Name\n2 Name Name\n\nHow O O\ndo O O\nI O O\nprevent O O\nthis O O\nfrom O O\nhappening O O\n? O O\n\nYour O O\nquestions O O\nhinted O O\nto O O\nthe O O\nright O O\nanswer O O\n. O O\n\nsession.auto_start Name Name\n= Name Name\n1 Name Name\nwas O O\nactivated O O\nin O O\nphp.ini Name Name\nThe O O\nsolution O O\nis O O\nto O O\neither O O\nstart O O\nscript O O\nwith O O\n: O O\nsession_write_close() Name Name\n; O O\n\nor O O\nsession.auto_start Name Name\n= Name Name\n0 Name Name\n; O O\ninto O O\nphp.ini Name Name\n. O O\n\nThank O O\nyou O O\nfor O O\nthe O O\nhelp O O\n. O O\n\nWhen O O\nyou O O\nuse O O\nChrome Name Name\nand O O\nrequest O O\nthe O O\nsame O O\nresource O O\nin O O\nmultiple O O\ntabs Name Name\n, O O\nit O O\nwill O O\nwait O O\nfor O O\nthe O O\nresource O O\nto O O\nfinish O O\ndownloading O O\nin O O\none O O\n. O O\n\nThe O O\nreason O O\nis O O\nthat O O\nif O O\nthe O O\nheaders O O\nallow O O\n, O O\nthe O O\nsecond O O\ntab Name Name\nwill O O\nload O O\nfrom O O\ncache O O\n, O O\nrather O O\nthan O O\nreloading O O\nit O O\nfrom O O\nthe O O\nserver Name Name\n. O O\n\nThis O O\nhas O O\nnothing O O\nto O O\ndo O O\nwith O O\nyour O O\nserver Name Name\nconfiguration O O\n, O O\nbut O O\nmore O O\nto O O\ndo O O\nwith O O\nyour O O\nflawed O O\ntest O O\nmethod O O\n. O O\n\nFire O O\noff O O\na O O\ncouple O O\nwget Name Name\ncalls O O\nfrom O O\nthe O O\ncommand Name Name\nline Name Name\n, O O\nand O O\nthis O O\nwill O O\nlikely O O\nwork O O\nas O O\nexpected O O\n. O O\n\nYou O O\ncan O O\nalso O O\nverify O O\nthat O O\nthis O O\nis O O\nhappening O O\nby O O\nusing O O\na O O\ndebugging O O\nproxy O O\n, O O\nsuch O O\nas O O\nFiddler Name Name\n, O O\nor O O\npacket O O\nsniffing O O\nsoftware O O\n, O O\nsuch O O\nas O O\nWireshark Name Name\n. O O\n\nWhat O O\nare O O\nyour O O\napache Name Name\nsettings O O\n? O O\n\nIt O O\n's O O\npossible O O\nyou O O\nhave O O\nthe O O\nconfig O O\nset O O\nto O O\nonly O O\nrun O O\n1 O O\nserver Name Name\ninstead O O\nof O O\nmultiple O O\nservers Name Name\n. O O\n\nSo O O\nif O O\nit O O\nwere O O\nset O O\nthat O O\nway O O\nthen O O\nit O O\nwould O O\nbe O O\nimpossible O O\nto O O\nrun O O\nconcurrently O O\n. O O\n\nI O O\nhave O O\nto O O\ncreate O O\nan O O\nextension O O\nto O O\nfilter O O\nthe O O\nnews Name Name\n. O O\n\nSo O O\nI O O\nbuild O O\nan O O\nextension O O\nwith O O\nnews Name Name\nmodel O O\n. O O\n\nMy O O\nmodel O O\nlooks O O\nlike O O\n\nI O O\nhave O O\nto O O\nlist O O\nall O O\nnews Name Name\nfrom O O\nmy O O\nextension O O\n. O O\n\nSo O O\nI O O\ncalled O O\nthe O O\n\nFrom O O\nmy O O\ncontroller.But O O\nit O O\nreturns O O\nan O O\nempty O O\nobject.So O O\nI O O\nwrite O O\na O O\ncustom O O\nfunction O O\nFilterNews() Name Name\nhere O O\nis O O\nmy O O\ncode O O\n\nThere O O\nis O O\na O O\nnews Name Name\nwith O O\nuid Name Name\n= Name Name\n1.But Name Name\nit O O\nreturns O O\nempty O O\n. O O\n\nHow O O\ncan O O\nI O O\naccess O O\nnews Name Name\n? O O\n\nI O O\nincluded O O\nthe O O\nfollowing O O\nfunction O O\nin O O\nmy O O\nrepository O O\n\nAlways O O\nforgetting O O\nthe O O\nsame O O\n: O O\nDo O O\nyou O O\n\" O O\nreturn Name Name\n$query->execute();\" Name Name\n? O O\n\n;-) O O\n\nAnother O O\nsolution O O\n: O O\nAdd O O\ntable Name Name\nmapping O O\nto O O\nyour O O\nmodel O O\nsee O O\nthis O O\nextension O O\n: O O\nhttps://github.com/Schweriner/tgm_lazynews/blob/master/ext_typoscript_setup.txt O O\n\nI O O\ncreated O O\na O O\nprogram O O\nthat O O\nautomatically O O\ndeletes O O\nthe O O\nelement O O\nI O O\nhave O O\nspecified O O\nin O O\nLst2 Name Name\nwhich O O\nis O O\nelement O O\n3 O O\n. O O\n\nNow O O\n, O O\nI O O\nwant O O\nto O O\nmanually O O\npick O O\nwhat O O\nelement O O\nis O O\nto O O\nbe O O\ndeleted O O\nin O O\nthe O O\nlist Name Name\nthat O O\nI O O\nwill O O\ninput O O\n. O O\n\nPassing O O\nin O O\nan O O\nindex O O\nwhen O O\nyou O O\ncall O O\nthe O O\ndel Name Name\nfunction O O\nwill O O\nwork O O\n: O O\n\nOr O O\n, O O\nif O O\nyou O O\nwant O O\nto O O\nget O O\nthe O O\nindex O O\nfrom O O\nuser O O\ninput O O\nyou O O\ncan O O\nread O O\nfrom O O\nSTDIN Name Name\nlike O O\nthis O O\n: O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\ncopy O O\nthe O O\ntext O O\nof O O\nthe O O\nselected O O\nsubitem O O\nfrom O O\na O O\nListView Name Name\nin O O\n.NET Name Name\nWinforms Name Name\n? Name Name\n\nUnless O O\nI O O\n'm O O\nreally O O\nmissing O O\nsomething O O\nfundamental O O\n, O O\nyou O O\nca O O\nn't O O\nselect O O\na O O\nsubitem O O\n. O O\n\nYou O O\ncan O O\nselect O O\nthe O O\nsubitem O O\nin O O\nthe O O\nfirst O O\ncolumn Name Name\nor O O\nyou O O\ncan O O\nset O O\nthe O O\nFullRowSelect Name Name\nproperty O O\nto O O\nTrue O O\n. O O\n\nNeither O O\nhelps O O\nyou O O\nto O O\ndetermine O O\nwhat O O\nsubitem O O\nthe O O\nuser O O\nmight O O\nbe O O\ninterested O O\nin O O\n, O O\nthere O O\n's O O\nno O O\nway O O\nto O O\nguess O O\nwhat O O\nto O O\ncopy O O\nto O O\nthe O O\nclipboard Name Name\n. O O\n\nUse O O\nDataGridView Name Name\nto O O\nwork O O\naround O O\nthat O O\n. O O\n\nEach O O\nitem O O\ninside O O\nof O O\na O O\nListView Name Name\ncontrol O O\nis O O\nrepresented O O\nby O O\na O O\nListViewItem Name Name\n. O O\n\nThe O O\nListViewItem Name Name\nhas O O\na O O\nproperty O O\ncalled O O\nSubItems Name Name\nwhich O O\nstarts O O\nfrom O O\nthe O O\nvery O O\nfirst O O\ncolumn Name Name\nof O O\ndata O O\nin O O\nthe O O\nListView Name Name\ncontrol O O\n. O O\n\nTo O O\ncopy O O\ndata O O\nfrom O O\na O O\ncolumn Name Name\n, O O\nget O O\nthe O O\nselected O O\nListViewItem Name Name\nand O O\nreference O O\nthe O O\nText Name Name\nproperty O O\navailable O O\nfrom O O\nthe O O\nSubItems Name Name\nproperty O O\n. O O\n\nFor O O\nexample O O\n, O O\n\nI O O\n've O O\nrun O O\ninto O O\na O O\nproblem O O\nrunning O O\nan O O\nown O O\ntool O O\n( O O\n.NET Name Name\n3.5 Name Name\nClient O O\nProfile O O\n) O O\non O O\nWindows Name Name\nServer Name Name\n2012 Name Name\nR2 Name Name\n. O O\n\nThe O O\ntool O O\nis O O\nusing O O\nthe O O\nsingleton Name Name\nSettings O O\nobject O O\nto O O\nstore O O\nprogram O O\nsettings O O\n. O O\n\nThe O O\nuser O O\ndefined O O\ntool O O\nto O O\nstore O O\nthe O O\nconfiguration O O\nfile O O\nis O O\nset O O\nto O O\nSettingsSingleFileGenerator Name Name\n- O O\nwhich O O\nI O O\nguess O O\ndoes O O\nnot O O\nmean O O\nanything O O\nand O O\njust O O\npoints O O\nto O O\nthe O O\nGUI O O\nbased O O\nsettings O O\neditor Name Name\n? O O\n! O O\n\nWhen O O\nrunning O O\non O O\nany O O\nWindows Name Name\n7 Name Name\nmachine O O\nas O O\nwell O O\nas O O\nrunning O O\non O O\nWindows Name Name\nServer Name Name\n2012 Name Name\nR2 Name Name\nin O O\nelevated O O\nmode O O\n, O O\nstoring O O\nthe O O\nsettings O O\nseveral O O\ntimes O O\nis O O\nno O O\nproblem O O\n. O O\n\nIf O O\nI O O\nrun O O\nthe O O\ntool O O\non O O\nWindows Name Name\nServer Name Name\n2012 Name Name\nR2 Name Name\nnon-elevated O O\n, O O\nthe O O\nfirst O O\ncall O O\nof O O\nSettings.Default.Save() Name Name\nis O O\nworking O O\nas O O\nexpected O O\n. O O\n\nWith O O\nevery O O\nfollowing O O\ncall O O\n, O O\nI O O\nget O O\nan O O\nerror O O\nmessage O O\n\" O O\nThe O O\nprocess O O\ncannot O O\naccess O O\nthe O O\nfile O O\n.. O O\n. O O\nbecause O O\nit O O\nis O O\nbeing O O\nused O O\nby O O\nanother O O\nprocess O O\n. O O\n\" O O\n. O O\n\nUsing O O\nSysinternals Name Name\nProcess Name Name\nExplorer Name Name\n( O O\nrunning O O\nelevated O O\n) O O\n, O O\nI O O\nchecked O O\nwhether O O\nthe O O\nfile O O\nis O O\nactually O O\nbeing O O\nused O O\nby O O\nanother O O\nprocess O O\n, O O\nbut O O\nonly O O\nmy O O\ntool O O\nappears O O\n. O O\n\nI O O\ncould O O\nnot O O\nfind O O\nany O O\nremarks O O\nin O O\nthe O O\ndocumentation O O\nthat O O\nit O O\ncould O O\nbe O O\nrequired O O\nto O O\nsomehow O O\nclose O O\nthe O O\nfile O O\nafter O O\nsaving O O\n. O O\n\nDespite O O\nthere O O\n's O O\nno O O\nsuch O O\nfunction O O\nas O O\nclosed O O\ngiven O O\nby O O\nthe O O\nSettings.Default Name Name\nInstance O O\n. O O\n\nThere O O\n's O O\nalso O O\nno O O\nhint O O\nthat O O\nan O O\nException Name Name\ncould O O\nbe O O\ngenerated O O\nwhen O O\ncalling O O\nSave(). Name Name\n. O O\n\nMight O O\nbe O O\na O O\nsetting O O\nin O O\nWindows Name Name\nServer Name Name\n2012 Name Name\nR2 Name Name\n? O O\n\nA O O\nsecurity O O\nfeature O O\n? O O\n\nBug O O\nin O O\n.NET Name Name\n? O O\n\nI O O\nwould O O\nappreciate O O\nany O O\nhint O O\nto O O\nsolve O O\nthat O O\nproblem O O\n.. O O\n. O O\n\nIs O O\nthere O O\na O O\nproblem O O\nwith O O\nEditText Name Name\n? O O\n\nI O O\nupdated O O\nmy O O\nAndroid Name Name\nStudio Name Name\nto O O\n2.2.3 Name Name\nthen O O\nsuddenly O O\nall O O\nmy O O\nEditText Name Name\ndo O O\nn't O O\nshow O O\nthe O O\nSoft Name Name\nKeyboard Name Name\n. O O\n\nI O O\ntried O O\nevery O O\npossible O O\nmeans O O\nthat O O\nI O O\nknow O O\n, O O\nto O O\nforce O O\nit O O\nto O O\nshow O O\nbut O O\nnone O O\nworked O O\n. O O\n\nI O O\nwas O O\nthinking O O\nthat O O\nit O O\nhas O O\nto O O\ndo O O\nsomething O O\nwith O O\nthe O O\nsetShowSoftInputOnFocus() Name Name\nmethod O O\nthat O O\nis O O\nonly O O\navailable O O\nfrom O O\nSDK Name Name\n21 Name Name\nup O O\n. O O\n\nUnfortunately O O\nI O O\n'm O O\nworking O O\non O O\nSTBs Name Name\nrunning O O\non O O\nSDK Name Name\n17 Name Name\nand O O\n19 Name Name\n. O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nIf O O\nyou O O\nhave O O\npass O O\nset O O\nthe O O\nvalue O O\nof O O\nsetShowSoftInputOnFocus(false) Name Name\nthen O O\nit O O\nwill O O\nalways O O\nhide O O\nthe O O\nkeyboard Name Name\nfor O O\nEditText Name Name\neven O O\nit O O\nis O O\nhaving O O\nfocus O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\nshow O O\nkeyboard Name Name\non O O\nEditText Name Name\nfocus O O\nset O O\nits O O\nvalue O O\ntrue O O\ninstead O O\nof O O\nfalse O O\n\nYou O O\ncan O O\nfind O O\nit O O\n's O O\ndetails O O\nfrom O O\nhere O O\n. O O\n\nI O O\nsolved O O\nit O O\n. O O\n\nSomeone O O\nmessed O O\nup O O\nwith O O\nthe O O\nsettings O O\nof O O\nmy O O\ntest O O\ndevice O O\n. O O\n\nThank O O\nyou O O\n\nI O O\nam O O\ntrying O O\nto O O\ndisplay O O\nimages Name Name\nfrom O O\na O O\ndatabase O O\nin O O\na O O\nGridView Name Name\nwithin O O\na O O\nFragment Name Name\n. O O\n\nFor O O\nsome O O\nreason O O\n, O O\nthe O O\nCursorAdapter Name Name\n's O O\nnewView() Name Name\nor O O\nbindView() Name Name\nmethod O O\nis O O\nnot O O\ngetting O O\ncalled O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n: O O\n\nGridImageAdapter.java Name Name\nclass O O\n: O O\n\nand O O\nfrom O O\nfragment Name Name\n: O O\n\nSo O O\n, O O\nmy O O\nquestion O O\nis O O\n, O O\nwhy O O\nis O O\nthe O O\nCursorAdapter Name Name\nnot O O\ncalling O O\nthe O O\nnewView()/bindView() Name Name\nmethods O O\n? O O\n\nI O O\nca O O\nn't O O\neven O O\nget O O\nthe O O\nlogcat Name Name\noutput O O\non O O\nthose O O\nmethods O O\n, O O\nso O O\nI O O\nknow O O\nit O O\n's O O\nnot O O\nreaching O O\nthere O O\n. O O\n\nThank O O\nyou O O\n. O O\n\nWell O O\n, O O\nI O O\nknow O O\nit O O\n's O O\nlate O O\n-I O O\nhad O O\nn't O O\nfound O O\nthis O O\npost O O\n- O O\n, O O\nbut O O\nI O O\nhad O O\nthe O O\nsame O O\nproblem O O\n( O O\nthough O O\nI O O\nwas O O\njust O O\ntrying O O\nto O O\ndo O O\na O O\nTo-Do O O\nList O O\n) O O\n. O O\n\nI O O\n've O O\nspent O O\nthe O O\nlast O O\nthree O O\nhour O O\ntrying O O\nto O O\nfigure O O\nout O O\nwhat O O\nthe O O\nproblem O O\nwas O O\nand O O\nlooking O O\nfor O O\npossible O O\nsolutions O O\nsomewhere O O\non O O\nthe O O\nweb O O\n. O O\n\nMaybe O O\nit O O\ncould O O\nhelp O O\nsomebody O O\nelse O O\nanyway O O\n, O O\nso O O\nI O O\n'll O O\nput O O\nit O O\n. O O\n\nIn O O\nmy O O\ncase O O\nwhat O O\nworked O O\nwas O O\nthis O O\n: O O\n\nThis O O\nis O O\npart O O\nof O O\nmy O O\nMain O O\nActivity Name Name\nwith O O\nthe O O\nonCreate Name Name\nmethod O O\n: O O\n\n.. O O\n. O O\nand O O\nmoving O O\ndown O O\nto O O\nthe O O\nLoaderCallbacks Name Name\nmethods O O\n: O O\n\nSo O O\n, O O\nin O O\nmy O O\ncase O O\n, O O\nthe O O\nreason O O\nit O O\nwas O O\nn't O O\nworking O O\nwas O O\nbecause O O\nthe O O\nadapter Name Name\nwas O O\nn't O O\nbeing O O\nset O O\nto O O\nthe O O\nListView Name Name\n, O O\nso O O\nmy O O\nlist Name Name\ndid O O\nn't O O\nshow O O\nanything O O\nand O O\nthe O O\nmethods O O\nnewView() Name Name\nand O O\nbindView() Name Name\nnever O O\ngot O O\ncalled O O\nbefore O O\n. O O\n\nMaybe O O\nit O O\ncould O O\nwork O O\nby O O\nsetting O O\nthe O O\nadapter Name Name\nto O O\nthe O O\nGridView Name Name\non O O\nyour O O\nonLoadFinished Name Name\n, O O\nonce O O\nthe O O\ncursor O O\nload O O\nhas O O\nbeen O O\nmade O O\n. O O\n\nDo O O\nn't O O\nknow O O\nif O O\nit O O\nwill O O\nsolve O O\nyour O O\nproblem O O\nor O O\nanyone O O\nelse O O\n's O O\nbut O O\nit O O\nworked O O\nfor O O\nme O O\n. O O\n\nHope O O\nit O O\nhelps O O\n. O O\n\nI'v O O\ngot O O\nthis O O\nproblem O O\ntoo O O\n, O O\nI O O\nsolved O O\nit O O\nin O O\nthis O O\nway O O\n, O O\nyou O O\ncan O O\ntry O O\nit O O\n. O O\n\nIn O O\nyour O O\nfragment Name Name\n, O O\nchange O O\nthis O O\nline O O\n: O O\n\nto O O\n\nThe O O\nformer O O\ndoes O O\nn't O O\nwork O O\nbecause O O\nit O O\nmake O O\nthe O O\nActivity Name Name\nas O O\ncontext Name Name\n, O O\nso O O\nthe O O\nFragment Name Name\nwo O O\nn't O O\nbe O O\nnotified O O\n. O O\n\nI O O\nhave O O\na O O\nsliding O O\ntabs Name Name\napp O O\n, O O\nwith O O\nrecyclerview Name Name\nin O O\nevery O O\ntab Name Name\n. O O\n\nI O O\nam O O\ntesting O O\nthe O O\napp O O\nusing O O\nAndroid Name Name\nEspresso Name Name\n. O O\n\nI O O\nwant O O\nto O O\nclick O O\non O O\none O O\nof O O\nthe O O\nrecyclerview Name Name\nitem O O\n. O O\n\nwhen O O\ni O O\ndo O O\nthis O O\n: O O\n\nI O O\nget O O\nthis O O\nexception Name Name\n: O O\n\nany O O\nIdeas O O\n? O O\n\nUhm O O\n, O O\ni O O\nguess O O\nyou O O\nare O O\nusing O O\nthe O O\nsame O O\nxml Name Name\nfile O O\nfor O O\nevery O O\nRecyclerView Name Name\nin O O\nyour O O\ntabs Name Name\n. O O\n\nHence O O\nall O O\nyour O O\nRecyclerView Name Name\n's O O\nhave O O\nthe O O\nsame O O\nID Name Name\n. O O\n\nSo O O\nyou O O\nca O O\nn't O O\nrefer O O\nto O O\nyour O O\nRecyclerView Name Name\n's O O\nusing O O\nyour O O\nID Name Name\n's O O\n. O O\n\nSo O O\neither O O\ngive O O\nevery O O\nRecyclerView Name Name\nit O O\n's O O\nown O O\nID Name Name\nor O O\ntry O O\nsearching O O\nwith O O\nany O O\nother O O\nViewMatcher Name Name\nlike O O\nwithText Name Name\n( Name Name\n\" Name Name\nany Name Name\nspecific Name Name\ntext Name Name\nin Name Name\nyour Name Name\nrecyclers Name Name\n\" Name Name\n) Name Name\n. O O\n\nHere O O\nyou O O\nmay O O\nfind O O\nmethods O O\nthat O O\nwill O O\nwork O O\nin O O\nyour O O\ncase O O\n. O O\n\nI O O\n'd O O\nsuggest O O\nto O O\ncreate O O\nthe O O\nViewHolder Name Name\nmatcher O O\nto O O\nmatch O O\nspecific O O\nitem O O\ninside O O\nRecyclerView Name Name\n. O O\n\nThen O O\nyou O O\n'll O O\nbe O O\nable O O\nto O O\nuse O O\nPositionableRecyclerViewAction Name Name\nlike O O\nscrollToHolder(...) Name Name\nfor O O\nexample O O\n: O O\n\nAnd O O\nthis O O\nis O O\nhow O O\nI O O\nuse O O\nit O O\n: O O\n\nI O O\nhave O O\na O O\njob O O\nand O O\na O O\ntrigger O O\n, O O\nand O O\nevery O O\nx Name Name\ntime O O\nthe O O\ntrigger O O\ntriggers O O\nthe O O\njob O O\n. O O\n\nSometimes O O\n, O O\nI O O\nhave O O\nanother O O\nscenario O O\nthat O O\nI O O\nwant O O\nto O O\ntrigger O O\nthe O O\njob O O\n, O O\nfor O O\nexample O O\n, O O\nwhen O O\na O O\nlist Name Name\ncount O O\nis O O\n300 Name Name\n. O O\n\nWhen O O\nthe O O\nlist Name Name\ncount O O\ngets O O\nto O O\n300 Name Name\nI O O\ntrigger O O\nthe O O\njob O O\nwith O O\nthis O O\ncode O O\n: O O\n\nWhen O O\nI O O\ndo O O\nthat O O\n, O O\nI O O\nwant O O\nto O O\nstop O O\nthe O O\nregular O O\ntime O O\ntrigger O O\n, O O\nand O O\nrestart O O\nit O O\nagain O O\nafter O O\nthe O O\njob O O\nis O O\ndone O O\n( O O\nfor O O\nexample O O\nif O O\nthe O O\nregular O O\ntrigger O O\nis O O\n3 O O\nminutes O O\n, O O\nand O O\n1 O O\nminute O O\npassed O O\nbut O O\nthe O O\njob O O\nwas O O\ntriggered O O\nby O O\nthe O O\nlist Name Name\ncount O O\ngetting O O\nover O O\n300 Name Name\n, O O\nI O O\nwant O O\nthe O O\nregular O O\ntime O O\ntrigger O O\nto O O\nstop O O\nand O O\nstart O O\nagain O O\nfrom O O\n0 Name Name\nafter O O\nthe O O\njob O O\nis O O\ndone O O\n) O O\n. O O\n\nThank O O\nYou O O\n\nThe O O\nsecond O O\nJob O O\nneeds O O\nto O O\nknow O O\nthe O O\nJobKey Name Name\nfor O O\nthe O O\nFirst O O\nJob O O\n, O O\nin O O\norder O O\nto O O\nPause O O\nit O O\n\nYou O O\ncan O O\nfind O O\nthe O O\nJobKeys Name Name\nwith O O\nthis O O\ncode O O\n. O O\n\nNote O O\n, O O\nyou O O\n'll O O\nwant O O\nto O O\nstore O O\nthe O O\nJobKey Name Name\n( O O\nof O O\nhte O O\nfirst O O\njob O O\n) O O\nin O O\na O O\n.config Name Name\nfile O O\nand O O\nnot O O\nhard O O\ncode O O\nit O O\nin O O\n. O O\n\nThe O O\n\" O O\nShowJobs Name Name\n\" O O\ncode O O\nis O O\nto O O\nhelp O O\nyou O O\nlocate O O\nthe O O\nvalue O O\n. O O\n\nI O O\nwould O O\nhave O O\ncode O O\nin O O\nthe O O\nsecond O O\njob O O\nlook O O\nlike O O\nthis O O\n: O O\n\nThis O O\nis O O\npseudo O O\ncode O O\n... O O\nto O O\ngive O O\nyou O O\nthe O O\nidea O O\n...... O O\nnot O O\n\nSomething O O\nlike O O\nthis O O\n: O O\n\nAs O O\nfar O O\nas O O\nthe O O\n\" O O\n300 Name Name\n\" O O\n, O O\nresearch O O\nPersistJobDataAfterExecution Name Name\n( O O\nPersistJobDataAfterExecutionAttribute Name Name\n) O O\nto O O\nsee O O\nhow O O\nto O O\npersist O O\na O O\nvalue O O\nthat O O\nyou O O\ncan O O\nread O O\nlater O O\n. O O\n\nIn O O\nmy O O\nlinux Name Name\n/dev/ Name Name\nfolder O O\n, O O\nI O O\nhave O O\nmtd0 Name Name\n- O O\nmtd7 Name Name\nand O O\nmtdblock0 Name Name\n- O O\nmtdblock7 Name Name\n. O O\n\nI O O\nwant O O\nto O O\nhave O O\nmore O O\nmtd Name Name\ndevices O O\nhere O O\n. O O\n\nWhat O O\nshould O O\nI O O\nchange O O\nwhen O O\nbuilding O O\nthe O O\nkernel Name Name\n? O O\n\nThanks O O\n\nYou O O\nneed O O\nmore O O\nmtd Name Name\npartitions O O\n. O O\n\nUpon O O\nboot O O\n, O O\nthe O O\nkernel Name Name\ncreates O O\none O O\nmtd Name Name\nand O O\none O O\nmtdblock Name Name\nunder O O\n/dev Name Name\nfor O O\neach O O\n. O O\n\nThe O O\nMTD Name Name\npartitions O O\nare O O\nusually O O\nwritten O O\nin O O\nthe O O\nboard O O\n's O O\nBSP Name Name\nfile O O\n. O O\n\nYou O O\ncan O O\noverride O O\nthat O O\nby O O\npassing O O\nthe O O\nkernel Name Name\na O O\nmtdparts Name Name\noption O O\n. O O\n\nMore O O\ninfo O O\nhere O O\n. O O\n\nAlso O O\nmtdinfo Name Name\nand O O\n/proc/mtd Name Name\ndescribe O O\nthe O O\nstart-end O O\nof O O\neach O O\npartition O O\nand O O\nits O O\nname O O\n. O O\n\nEDIT O O\n: O O\n\nAn O O\nexample O O\nof O O\nthe O O\nmtd Name Name\npartition Name Name\ntable Name Name\nis O O\nin O O\narch/arm/mach-omap2/board Name Name\n-omap3beagle.c Name Name\nfor O O\nthe O O\nbeagleboard Name Name\nhere O O\n. O O\n\n} O O\n; O O\n\nThere O O\nare O O\n5 O O\npartitions O O\nmtd0 Name Name\nto O O\nmtd4 Name Name\nwith O O\nsizes O O\nhard-coded O O\nin O O\nthe O O\nKernel Name Name\nimage O O\n. O O\n\nI O O\nam O O\nrunning O O\nsome O O\nimage O O\nprocessing O O\noperations O O\non O O\nGPU Name Name\nand O O\nI O O\nneed O O\nthe O O\nhistogram Name Name\nof O O\nthe O O\noutput O O\n. O O\n\nI O O\nhave O O\nwritten O O\nand O O\ntested O O\nthe O O\nprocessing O O\nkernels O O\n. O O\n\nAlso O O\nI O O\nhave O O\ntested O O\nthe O O\nhistogram Name Name\nkernel O O\nfor O O\nsamples O O\nof O O\nthe O O\noutput O O\npictures Name Name\nseparately O O\n. O O\n\nThey O O\nboth O O\nwork O O\nfine O O\nbut O O\nwhen O O\nI O O\nput O O\nall O O\nof O O\nthem O O\nin O O\none O O\nloop O O\nI O O\nget O O\nnothing O O\n. O O\n\nThis O O\nis O O\nmy O O\nhistogram Name Name\nkernel O O\n: O O\n\nIt O O\nis O O\nupdating O O\nhistogram Name Name\nvectors Name Name\nfor O O\nred Name Name\n, O O\ngreen Name Name\n, O O\nand O O\nblue Name Name\n. O O\n\n( O O\n' O O\nl Name Name\n' O O\nis O O\nthe O O\nlength O O\nof O O\nthe O O\nvectors Name Name\n) O O\n\nWhen O O\nI O O\ncomment O O\nout O O\natomicAdds Name Name\nit O O\nagain O O\nproduces O O\nthe O O\noutput O O\nbut O O\nof O O\ncourse O O\nnot O O\nthe O O\nhistogram Name Name\n. O O\n\nWhy O O\ndo O O\nn't O O\nthey O O\nwork O O\ntogether O O\n? O O\n\nEdit O O\n: O O\n\nThis O O\nis O O\nthe O O\nloop O O\n: O O\n\nThen O O\nI O O\ncopy O O\nthe O O\noutput O O\nto O O\nhost O O\nmemory O O\nand O O\nwrite O O\nit O O\nto O O\na O O\nvideo Name Name\n. O O\n\nThese O O\nare O O\nc Name Name\ncodes O O\nthat O O\nonly O O\ncall O O\ntheir O O\nkernels O O\nwith O O\ndimGrid Name Name\nand O O\ndimBlock Name Name\nthat O O\nare O O\ngiven O O\nas O O\ninputs O O\n. O O\n\nAlso O O\n: O O\n\nI O O\nchanged O O\nthis O O\nfor O O\nhistogram Name Name\nbecause O O\nit O O\nworked O O\nbetter O O\nwith O O\nit O O\n. O O\n\nDoes O O\nit O O\nmatter O O\n? O O\n\nEdit2 O O\n: O O\n\nI O O\nam O O\nusing O O\n-arch Name Name\n= Name Name\nsm_11 Name Name\noption O O\nfor O O\ncompilation O O\n. O O\n\nI O O\njust O O\nread O O\nit O O\nsomewhere O O\n. O O\n\nCould O O\nanyone O O\ntell O O\nme O O\nhow O O\nI O O\nshould O O\nchoose O O\nit O O\n? O O\n\nperhaps O O\nyou O O\nshould O O\ntry O O\nto O O\ncompile O O\nwithout O O\n-arch Name Name\n= Name Name\nsm_11 Name Name\nflag O O\n. O O\n\nsm Name Name\n1.1 Name Name\nis O O\nthe O O\nfirst O O\narchitecture O O\nwhich O O\nsupported O O\natomic O O\noperations O O\non O O\nglobal O O\nmemory O O\nwhile O O\nyour O O\nGPU Name Name\nsupports O O\nSM Name Name\n2.0 Name Name\n. O O\n\nHence O O\nthere O O\nis O O\nno O O\nreason O O\nto O O\ncompile O O\nfor O O\nSM Name Name\n1.1 Name Name\nunless O O\nfor O O\nbackward O O\ncompatibility O O\n. O O\n\nOne O O\npossible O O\nissue O O\ncould O O\nbe O O\nthat O O\nSM Name Name\n1.1 Name Name\ndoes O O\nnot O O\nsupport O O\natomic Name Name\noperations O O\non O O\n64-bit O O\nints Name Name\nin O O\nglobal O O\nmemory O O\n. O O\n\nSo O O\nI O O\nwould O O\nsuggest O O\nyou O O\nrecompile O O\nthe O O\ncode O O\nwithout O O\n-arch Name Name\noption O O\n, O O\nor O O\nuse O O\n-arch Name Name\n= Name Name\nsm_20 Name Name\nif O O\nyou O O\nlike O O\n\nI O O\n'm O O\nusing O O\nThe O O\nlast O O\nversion O O\nof O O\nAndroid Name Name\nStudio Name Name\n( O O\n1.5 Name Name\n) O O\nand O O\nI O O\nwant O O\nto O O\nmake O O\na O O\nmenu Name Name\nusing O O\nDrawer Name Name\nLayout Name Name\n, O O\nfor O O\nposition O O\nits O O\ncall O O\nGravityCompat Name Name\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nuse O O\nthis O O\ncomponents O O\nand O O\nmodify O O\nit O O\n, O O\nputting O O\nthe O O\nDrawer Name Name\nout O O\nfrom O O\nright O O\nto O O\nleft O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n. O O\n\nThe O O\nXML Name Name\n\nAs O O\nyou O O\ncan O O\nsee O O\n, O O\nGravityCompat Name Name\ndo O O\nn't O O\nlet O O\nme O O\nto O O\nput O O\nright O O\ninstead O O\nof O O\nEND Name Name\nor O O\nSTART Name Name\n, O O\nand O O\nif O O\nI O O\nput O O\nit O O\nin O O\nthe O O\nXML Name Name\n, O O\nit O O\ncrash O O\n. O O\n\nwith O O\nthe O O\nnext O O\nerror O O\n: O O\n\nFirst O O\nof O O\nall O O\nreplace O O\non O O\nDrawerLayout Name Name\nthe O O\ntools:openDrawer Name Name\n= Name Name\n\" Name Name\nstart Name Name\n\" Name Name\nwith O O\ntools:openDrawer Name Name\n= Name Name\n\" Name Name\nend Name Name\n\" Name Name\n. O O\n\nNow O O\nyour O O\nproblem O O\nis O O\non O O\nthe O O\ntoggle O O\n, O O\nwhich O O\nopens O O\nthe O O\nleft O O\ndrawer Name Name\n, O O\nand O O\nbecause O O\nyou O O\nhave O O\nonly O O\nright O O\ndrawer Name Name\nit O O\nthrows O O\nthe O O\nexception Name Name\n. O O\n\nYou O O\ncan O O\nadd O O\nyour O O\nown O O\nbutton Name Name\non O O\nthe O O\nactionbar Name Name\n( O O\non O O\nthe O O\nright O O\nside O O\n) O O\nto O O\nopen O O\nthe O O\ndrawer Name Name\n. O O\n\nTo O O\ndo O O\nthat O O\nchange O O\nyour O O\napp_bar.xml Name Name\nlike O O\nthis O O\n\nThen O O\nchange O O\nyour O O\nonCreate Name Name\nmethod O O\nfrom O O\nyour O O\nActivity Name Name\nlike O O\nthis O O\n\nAlso O O\nyou O O\ncan O O\nfind O O\nthe O O\nimage Name Name\nfor O O\nyour O O\ndrawer Name Name\nhere O O\nor O O\nhere O O\n. O O\n\nI O O\nhope O O\nthis O O\nwill O O\nhelp O O\nyou O O\n. O O\n\n:) O O\n\nuse O O\na O O\ncustom O O\ndrawerLayout Name Name\njust O O\nlike O O\nthis O O\n: O O\n\nCan O O\nI O O\nreplace O O\nthe O O\n= Name Name\nstatement O O\nwith O O\nthe O O\nLIKE Name Name\none O O\nfor O O\nthe O O\nintegers Name Name\n? O O\n\nby O O\neg O O\n. O O\nare O O\nthe O O\nfollowing O O\nthe O O\nsame O O\nthing O O\n: O O\n\nI O O\n'd O O\nprefer O O\nto O O\nuse O O\nLIKE Name Name\ninstead O O\nof O O\n= Name Name\nbecause O O\nI O O\ncould O O\nuse O O\n% Name Name\nwhen O O\nI O O\nhave O O\nno O O\nfilter O O\nfor O O\nFOOID. Name Name\n. O O\n\nSQL Name Name\nServer Name Name\n2005 Name Name\n. O O\n\nEDIT O O\n1 O O\n@Martin O O\n\nUse O O\nNULL Name Name\nas O O\nthe O O\nparameter O O\nvalue O O\ninstead O O\nof O O\n% Name Name\nfor O O\nyour O O\nwildcard O O\ncondition O O\n\nUse O O\na O O\nCASE Name Name\nstatement O O\nto O O\nconvert O O\nan O O\ninput O O\nstring Name Name\nto O O\nan O O\ninteger Name Name\n. O O\n\nConvert O O\nthe O O\nwildcard O O\n% Name Name\nto O O\na O O\nNULL Name Name\n. O O\n\nThis O O\nwill O O\ngive O O\nbetter O O\nperformance O O\nthan O O\nimplicitly O O\nconverting O O\nthe O O\nentire O O\nint Name Name\ncolumn Name Name\nto O O\nstring Name Name\n. O O\n\nI O O\n've O O\ngot O O\njust O O\none O O\nsimple O O\nsilly O O\nquestion O O\n: O O\n\nWhat O O\n's O O\nthe O O\nbest O O\nway O O\nto O O\nimplement O O\nFacebook Name Name\non O O\nmy O O\napplication O O\n? O O\n\nAdd O O\nan O O\neasy O O\nUIWebView Name Name\nconnecting O O\nto O O\nthe O O\nUrl O O\nof O O\nthe O O\nFaceboook Name Name\npage O O\nI O O\nwant O O\nto O O\nshow O O\n; O O\n\nImplement O O\nthe O O\nAPI Name Name\nI O O\nfound O O\nin O O\nseveral O O\nanswer O O\nall O O\nof O O\nyou O O\nalready O O\ngave O O\nin O O\nthis O O\nforum O O\n. O O\n\nThank O O\nyou O O\nfor O O\nyour O O\nhelp O O\n\nLuigi O O\n\nThe O O\nanswer O O\nis O O\n\" O O\nit O O\ndepends O O\n, O O\n\" O O\nbut O O\nIMHO O O\nyou O O\n're O O\nasking O O\nthe O O\nwrong O O\nquestion O O\n. O O\n\nA O O\nbetter O O\nquestion O O\nwould O O\nbe O O\n\" O O\nwhich O O\nmethod O O\nof O O\nintegrating O O\nwith O O\nFB Name Name\nwould O O\nresult O O\nin O O\na O O\nbetter O O\nexperience O O\nfor O O\nmy O O\nusers O O\n? O O\n\" O O\n\nThat O O\nis O O\n, O O\nwould O O\nyour O O\nusers O O\nbe O O\nbest O O\nserved O O\nby O O\n\" O O\nframing O O\n\" O O\nthe O O\nstandard O O\nFB Name Name\nweb O O\ninterface O O\nin O O\na O O\nUIWebView Name Name\n? O O\n\nOr O O\nmaybe O O\nthey O O\n'd O O\nbe O O\nhappier O O\nwith O O\njust O O\na O O\nsmall O O\npiece O O\nof O O\nFB Name Name\nfunctionality O O\nembedded O O\nin O O\nyour O O\napp O O\n, O O\nlike O O\nthe O O\n\" O O\nupload O O\nto O O\nFB Name Name\n\" O O\nfunction O O\nin O O\niMovie Name Name\n. O O\n\nOnce O O\nyou O O\ndecide O O\nexactly O O\nwhat O O\nyou O O\nwant O O\nto O O\ndo O O\n, O O\nhow O O\nto O O\ndo O O\nit O O\ntends O O\nto O O\nbe O O\nfairly O O\nobvious O O\n. O O\n\nWhich O O\nway O O\nto O O\ngo O O\ndepends O O\non O O\nwhat O O\nyour O O\napp O O\ndoes O O\n, O O\nand O O\nhow O O\nyour O O\nusers O O\nwill O O\nwant O O\nto O O\ndo O O\nit O O\n- O O\nand O O\nyou O O\nknow O O\nthat O O\npart O O\nfar O O\nbetter O O\nthan O O\nthe O O\nrest O O\nof O O\nus O O\ndo O O\n! O O\n\n:-) O O\n\nI O O\n've O O\nanswered O O\nsomething O O\nsimilar O O\nhere O O\n: O O\n\nShareKit Name Name\niOS Name Name\n- O O\ndifferent O O\ncontent O O\nfor O O\ndifferent O O\nplatforms O O\n\nBasically O O\n, O O\nI O O\nused O O\nShareKit Name Name\nwhich O O\nis O O\nvery O O\npopular O O\nand O O\nindeed O O\nwas O O\na O O\nbreeze O O\nto O O\nadd O O\n. O O\n\nYou O O\ncan O O\nsee O O\nhow O O\neasy O O\nthe O O\ncode O O\nis O O\n, O O\nin O O\nthe O O\nquestion O O\nabove O O\n. O O\n\nCheers O O\n, O O\n\nOded O O\n. O O\n\nI O O\nreally O O\nneed O O\nhelp O O\n! O O\n\nPlease. O O\n. O O\n\nI O O\nneed O O\nto O O\nadd O O\ntooltip Name Name\nto O O\nthis O O\ngraph Name Name\n: O O\nhttp://jsfiddle.net/dvqFj/1/ O O\n\nAny O O\nidea O O\nhow O O\nI O O\ncan O O\ndo O O\nit O O\n? O O\n\nOr O O\ndo O O\nyou O O\nknow O O\nany O O\nsimilar O O\nexample O O\nin O O\nD3.js Name Name\n\nI O O\nhave O O\ntried O O\nthe O O\nfollowing O O\nwithout O O\nno O O\nsucess O O\n: O O\n\nYou O O\nalmost O O\nhad O O\nit O O\n! O O\n\nThe O O\nmouseover Name Name\nfunctions O O\njust O O\nneeded O O\nto O O\nbe O O\nattached O O\nto O O\nyour O O\npath O O\nelements O O\n: O O\n\nhttp://jsfiddle.net/dvqFj/5/ O O\n\nIt O O\n's O O\nnot O O\nclear O O\nfrom O O\nyour O O\nquestion O O\nwhether O O\nthis O O\nis O O\nan O O\noption O O\nfor O O\nyou O O\n, O O\nbut O O\none O O\npossibility O O\nis O O\nto O O\nuse O O\na O O\ntitle O O\nelement O O\n, O O\nrather O O\nthan O O\nimplementing O O\nyour O O\nown O O\ntooltip Name Name\n. O O\n\nThis O O\nhas O O\nthe O O\nadvantage O O\nof O O\nbeing O O\nstandard O O\nand O O\nsimple O O\n, O O\nat O O\nthe O O\nexpense O O\nof O O\nreducing O O\npossible O O\ncustomisation O O\n. O O\n\nhttp://jsfiddle.net/ezUex/ O O\n\n\n\n"
  },
  {
    "path": "code/Attentive_BiLSTM/auxilary_inputs_ner/segmenter_pred/segmenter_pred_test.txt",
    "content": "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\nAfter O O\ncreating O O\nArrayList Name Name\n\nI O O\nhave O O\nthe O O\nfollowing O O\ncode O O\nin O O\nmy O O\napp O O\n: O O\n\nHowever O O\n, O O\nwhen O O\nI O O\ntry O O\nto O O\nclick O O\non O O\nthe O O\ncheckbox Name Name\n, O O\nnothing O O\nhappens O O\n. O O\n\nSo O O\nI O O\nhave O O\nto O O\nmanage O O\ntoggling O O\ncheckbox Name Name\nstate O O\nmanually O O\n. O O\n\nThen O O\nit O O\nworks O O\n. O O\n\n( O O\nbefore O O\nthat O O\nI O O\nhave O O\nto O O\nremove O O\nsetChoiceMode Name Name\nmethod O O\ncall O O\n) O O\n\nSo O O\nwhat O O\ncould O O\nbe O O\nthe O O\nproblem O O\n? O O\n\nWhy O O\nthere O O\nis O O\nno O O\neffect O O\n? O O\n\nmy O O\nR.layout.listview_item_text.xml Name Name\n\nIn O O\nmy O O\nadapter Name Name\nI O O\ninflate O O\ncheckbox Name Name\nlayout O O\nwith O O\nthe O O\nfollowing O O\ncode O O\n: O O\n\nlistview_item_checkbox.xml Name Name\n\nI O O\nbelieve O O\nthat O O\nyou O O\nhave O O\nto O O\nuse O O\na O O\nwidget Name Name\nthat O O\nimplements O O\nCheckable Name Name\n. O O\n\nTry O O\nwith O O\nandroid.R.layout.simple_list_item_multiple_choice Name Name\n. O O\n\nIf O O\nyou O O\nneed O O\ntwo O O\nlines O O\nthen O O\nimplement O O\nsomething O O\nsimilar O O\n. O O\n\nInstead O O\nof O O\nyour O O\ncode O O\n: O O\n\nTry O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nIf O O\nyou O O\ncan O O\n- O O\nimprove O O\nyur O O\ncode O O\n( O O\ncreate O O\nCheckableFrameLayout Name Name\nas O O\nparent O O\nlayout O O\nof O O\nyour O O\nList Name Name\nItem Name Name\n) O O\n. O O\n\nListView Name Name\nkeep O O\nBooleanSparseArray Name Name\nof O O\nchecked O O\npositions O O\n( O O\nyou O O\ncan O O\nget O O\nit O O\nwith O O\nmethod O O\ngetCheckedItemPositions()) Name Name\n. O O\n\nIn O O\ncode O O\n( O O\ngrepcode Name Name\n) O O\nit O O\nset O O\nView Name Name\nchecked O O\nor O O\nnot O O\nby O O\nitself O O\nonly O O\nif O O\nView Name Name\nis O O\nimplementing O O\nCheckable Name Name\n. O O\n\nIf O O\ncreate O O\nCheckableFrameLayout Name Name\nand O O\nsat O O\nas O O\nmain O O\nparent O O\n, O O\nyou O O\ndo O O\nnot O O\nhave O O\nto O O\nhandle O O\nthese O O\ncases O O\nin O O\nthe O O\nadapter Name Name\n. O O\n\nI O O\nam O O\nrunning O O\nthis O O\non O O\na O O\nmac Name Name\nand O O\nit O O\ncompiles O O\nin O O\nthe O O\nterminal Name Name\nbut O O\nafter O O\ni O O\ntype O O\nin O O\njava Name Name\nLab9 Name Name\nit O O\ndoes O O\nn't O O\ndo O O\nanything O O\n. O O\n\nBelow O O\nis O O\nexactly O O\nwhat O O\ni O O\nput O O\ninto O O\nthe O O\nterminal Name Name\n\n//compiles O O\nbut O O\ndoes O O\nnot O O\nrun O O\n\nThe O O\nprogram O O\nis O O\nwaiting O O\nfor O O\nyour O O\ninput O O\n. O O\n\nAdd O O\na O O\nprompt O O\n: O O\n\ni O O\n'm O O\ndeveloping O O\na O O\nandroid Name Name\napplication O O\nwhich O O\nwill O O\ndetect O O\ntraffic O O\njams O O\nand O O\nmap O O\non O O\nopenstreetmaps.in Name Name\nnavigating O O\nbetween O O\nmy O O\ncurrent O O\nlocation O O\nand O O\nthe O O\ndestination O O\nif O O\na O O\ntraffic O O\njam O O\nis O O\ndetected O O\nthe O O\napplication O O\nshould O O\nsuggest O O\nall O O\nthe O O\nother O O\nalternative O O\nroutes.how O O\ncan O O\ni O O\nget O O\nthese O O\nalternative O O\nroutes O O\nfrom O O\nopenstreetmaps Name Name\n. O O\n\nA1 Name Name\n- O O\nalternative O O\nroute O O\n1 O O\n, O O\n\nA2 Name Name\n- O O\nalternative O O\nroute O O\n2 O O\n\nSome O O\nof O O\nthe O O\nonline O O\nrouters O O\nfor O O\nOSM Name Name\nhave O O\nan O O\navoid O O\nareas O O\nfeature O O\n. O O\n\nGraphHopper Name Name\nallows O O\nyou O O\nto O O\nmake O O\nthe O O\nrouting O O\ninfluenced O O\nby O O\ntraffic O O\ninformation O O\n. O O\n\nI O O\n've O O\nblogged O O\nrecently O O\nabout O O\nit O O\nhere O O\n. O O\n\nOr O O\nyou O O\ncan O O\njust O O\nblock O O\ncertain O O\nstreets O O\nwith O O\nthe O O\nblocking O O\nweighting O O\ndescribed O O\nhere O O\n. O O\n\nI O O\nneed O O\nto O O\ndesign O O\na O O\ndatabase O O\nfor O O\nstoring O O\nskills O O\nfor O O\na O O\nperson O O\n, O O\na O O\nperson O O\ncan O O\nhave O O\nnone O O\n, O O\none O O\nor O O\nseveral O O\nskills O O\n, O O\nwhat O O\nis O O\na O O\ngood O O\nway O O\nto O O\nstore O O\nit O O\nwhen O O\nit O O\ncomes O O\nto O O\neasy O O\nmodification O O\nof O O\nskill O O\nand O O\nfast O O\nsearch O O\n? O O\n\nI O O\nhave O O\nbeen O O\nthinking O O\n\n1 O O\n. O O\nuse O O\na O O\nbit O O\narray Name Name\n, O O\neach O O\nbit O O\nposition O O\nrepresents O O\na O O\nskill O O\n, O O\n\n2 O O\n. O O\na O O\nrelation O O\ntable Name Name\nthat O O\neach O O\nrow Name Name\nlink O O\na O O\nperson O O\nto O O\na O O\nSKILL O O\n\n3 O O\n. O O\neach O O\nskill O O\nas O O\na O O\nfield O O\nin O O\nthe O O\ntable Name Name\nof O O\nthe O O\nperson O O\n\nAny O O\nother O O\nsuggestion O O\nor O O\nwhat O O\nshould O O\nI O O\naim O O\nfor O O\n? O O\n\nIt O O\n's O O\na O O\nclasic O O\nmany O O\nto O O\nmany O O\nrelationship O O\nso O O\nI O O\nwould O O\nsuggest O O\na O O\npersons Name Name\ntable Name Name\n, O O\nskills Name Name\ntable Name Name\nand O O\na O O\npersonToSkill Name Name\ntable Name Name\n. O O\n\nYou O O\nother O O\nsuggested O O\nsolutions O O\nmight O O\nbe O O\ntempting O O\nat O O\nfirst O O\n, O O\nbut O O\nthey O O\nare O O\nboth O O\na O O\nmaitnence O O\nhell O O\n. O O\n\nFirst O O\n, O O\nwe O O\nneed O O\na O O\npersons Name Name\ntable Name Name\n( O O\nall O O\ncode O O\nexamples O O\nuse O O\nMySQL Name Name\nsyntax O O\n) O O\n: O O\n\nAnd O O\npretend O O\nthis O O\nis O O\nthe O O\ndata O O\nin O O\nthe O O\ntable Name Name\n: O O\n\nThen O O\nwe O O\nneed O O\na O O\nskills Name Name\ntable Name Name\nto O O\nhold O O\nall O O\nknown O O\nskills O O\n: O O\n\nFinally O O\nwe O O\nneed O O\na O O\ntable Name Name\nthat O O\nassociates O O\na O O\nperson Name Name\nwith O O\na O O\nskill Name Name\n: O O\n\nThe O O\nprimary O O\nkey O O\nis O O\ndefined O O\nso O O\nthat O O\nno O O\nperson Name Name\ncan O O\nbe O O\nassociated O O\nwith O O\nthe O O\nsame O O\nskill Name Name\nmore O O\nthan O O\nonce O O\nand O O\nboth O O\ncolumns Name Name\nare O O\nforeign O O\nkey O O\nto O O\ntheir O O\nrespective O O\ntables Name Name\n. O O\n\nAssume O O\nthe O O\ndata O O\nbelow O O\n: O O\n\nThis O O\ndata O O\nwould O O\nindicate O O\nthat O O\nJohn Name Name\nDoe Name Name\n, O O\nBenny Name Name\nHill Name Name\nand O O\nLinus Name Name\nTorvalds Name Name\nall O O\nhave O O\nthe O O\nskill O O\n\" O O\nSwimming Name Name\n\" O O\n. O O\n\nBenny Name Name\nHill Name Name\nand O O\nDonald Name Name\nKnuth Name Name\nare O O\nboth O O\npilots Name Name\n. O O\n\nLinus Name Name\nTorvalds Name Name\ncreated Name Name\na Name Name\nkernel Name Name\n. O O\n\nAnd O O\nDonald Name Name\nKnuth Name Name\nis O O\na O O\nwriter Name Name\n. O O\n\nNone O O\nof O O\nthe O O\npersons O O\nare O O\nan O O\nAstronaut Name Name\n.. O O\n. O O\n\nI O O\nam O O\nusing O O\nan O O\nalarm Name Name\nmanager Name Name\nand O O\nI O O\nhave O O\nn't O O\nbeen O O\nable O O\nto O O\nmaintain O O\nthe O O\nalarms O O\nwhen O O\nthe O O\nsystem O O\nreboots O O\nso O O\n, O O\nI O O\nhave O O\nread O O\nthat O O\nI O O\nshould O O\nuse O O\na O O\nboot Name Name\nreceiver Name Name\nwhich O O\nextends O O\nbroadcastReceiver Name Name\nbut O O\nI O O\nwant O O\nto O O\nknow O O\nthe O O\nexact O O\ndifference O O\nbetween O O\nthe O O\nreceiver Name Name\nitself O O\nand O O\nthe O O\nboot Name Name\nreceiver Name Name\n. O O\n\nThe O O\nonReceive Name Name\nmethod O O\nof O O\nmy O O\nbroadcastReceiver Name Name\nactually O O\ntakes O O\nme O O\nto O O\na O O\nnew O O\nactivity Name Name\nusing O O\nan O O\nintent Name Name\nshould O O\ni O O\nuse O O\nthis O O\ncode O O\nand O O\npaste O O\nit O O\nin O O\nthe O O\nonReceive Name Name\nof O O\nthe O O\nbootReceiver Name Name\n? O O\n\nor O O\nwhat O O\nexactly O O\nshould O O\nI O O\nwrite O O\nin O O\nthe O O\nbootReceiver Name Name\n? O O\n\nI O O\nam O O\nvery O O\nconfused O O\nabout O O\nthis O O\npoint O O\nbecause O O\nI O O\nhave O O\nmultiple O O\nalarms O O\nand O O\nI O O\nhave O O\ngiven O O\neach O O\none O O\na O O\nunique O O\nrequestCode Name Name\n. O O\n\nThere O O\nis O O\nno O O\nseparate O O\nentity O O\n\" O O\nBoot Name Name\nReceiver Name Name\n\" O O\nin O O\nAndroid Name Name\n. O O\n\nBoot Name Name\nreceiver Name Name\nis O O\njust O O\nbroadcast Name Name\nreceiver Name Name\nwhich O O\nresponds O O\nto O O\nintent Name Name\nwith O O\naction O O\nandroid.intent.action.BOOT_COMPLETED Name Name\n. O O\n\nI O O\nbelieve O O\nyou O O\nwill O O\nneed O O\nto O O\ndo O O\ncouple O O\nof O O\nthings O O\n: O O\n\nCreate O O\na O O\nclass O O\nwhich O O\nwill O O\ninherit O O\nfrom O O\nBroadcastReceiver Name Name\n\nAdd O O\nit O O\nto O O\nManifest Name Name\nand O O\nadd O O\ninfo O O\nthat O O\nit O O\nshould O O\nhandle O O\nandroid.intent.action.BOOT_COMPLETED Name Name\n\nin O O\nonReceive Name Name\ncode O O\nread O O\nall O O\nyour O O\nalarms O O\nfrom O O\npersistent O O\nstorage O O\nand O O\nset O O\nthem O O\nagain O O\n( O O\nso O O\n, O O\nthey O O\nwill O O\nbe O O\nset O O\nagain O O\nafter O O\neach O O\nreboot O O\n) O O\n. O O\n\nP.S O O\n. O O\nI O O\nrecommend O O\nto O O\nread O O\nthrough O O\n: O O\n\nhttp://developer.android.com/reference/android/content/BroadcastReceiver.html O O\n\nI O O\nam O O\npracticing O O\nfor O O\nJava Name Name\nfresher O O\ninterview O O\ncoding O O\nexamples O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nwrite O O\na O O\nprogram O O\nto O O\nfind O O\nduplicate O O\nnumbers O O\nbetween O O\n1 Name Name\nto O O\nN Name Name\n, O O\nwhere O O\nN Name Name\nis O O\ngiven O O\nby O O\nthe O O\nuser O O\nalong O O\nwith O O\nthe O O\nnumbers O O\nthemselves O O\n. O O\n\nHere O O\nis O O\nthe O O\ncode O O\n: O O\n\nBut O O\nI O O\nam O O\ngetting O O\nfollowing O O\nerror O O\nin O O\nEclipse Name Name\nNeon Name Name\n: O O\n\nWhat O O\nis O O\nwrong O O\n? O O\n\nWhy O O\nthe O O\nJVM Name Name\nheap Name Name\nspace O O\nerror O O\n? O O\n\nCode O O\ncompiles O O\nand O O\nruns O O\nfine O O\n. O O\n\nDataInputStream Name Name\nis O O\nfor O O\nbinary O O\nnot O O\ntext O O\n. O O\n\nWhen O O\nyou O O\ntype O O\n4 O O\nbytes O O\n, O O\nthis O O\nis O O\nturned O O\ninto O O\na O O\n32-bit O O\nint Name Name\nvalue O O\ne.g O O\n. O O\n5 Name Name\n, O O\n\\n Name Name\n, O O\n\\n Name Name\n, O O\n\\n Name Name\nis O O\nabout O O\n900 O O\nmillion O O\nwhich O O\nis O O\nwhy O O\nit O O\ncomplains O O\nabout O O\nmemory O O\nwhen O O\nyou O O\ncreate O O\nthe O O\narray Name Name\n. O O\n\nYou O O\ncan O O\ncheck O O\nthis O O\nby O O\nstepping O O\nthrough O O\nthe O O\ncode O O\nin O O\nyour O O\ndebugger Name Name\n. O O\n\nWhat O O\nyou O O\nneed O O\nis O O\ntext O O\ninput O O\n, O O\ntry O O\nusing O O\n\nTry O O\nusing O O\na O O\nScanner Name Name\nfor O O\nyour O O\nclass O O\ninstead O O\n. O O\n\nHere O O\n's O O\na O O\nbasic O O\nexample O O\n: O O\n\nI O O\n'm O O\nscrapping O O\nthrough O O\na O O\nwebsite O O\nto O O\nget O O\nproduct O O\ninformations O O\nto O O\nbe O O\nused O O\non O O\nmy O O\nweb O O\napp O O\n. O O\n\nAn O O\nexample O O\nof O O\na O O\nproduct O O\nattributes O O\nare O O\n\nMy O O\nplan O O\nis O O\nto O O\nstore O O\nall O O\nof O O\nthe O O\nproducts O O\n' O O\ninformation O O\non O O\nmy O O\nserver Name Name\nand O O\ncall O O\nthem O O\nfrom O O\nmy O O\nweb O O\napp O O\n. O O\n\nIs O O\nit O O\nsmart O O\nmove O O\nto O O\nstore O O\nimg Name Name\nfiles O O\nto O O\nmy O O\nserver/link O O\nthem O O\non O O\nmysql Name Name\nDB O O\nthen O O\ncall O O\nit O O\nfrom O O\nthe O O\nweb O O\nor O O\nwill O O\nit O O\nbe O O\nfast O O\nenough O O\nto O O\njust O O\ncall O O\nthe O O\nimg Name Name\non O O\nmy O O\nweb O O\napp O O\nusing O O\nthe O O\noriginal O O\nimg Name Name\nsrc O O\nurl O O\n( O O\nfrom O O\nthe O O\noriginal O O\nwebsite O O\n) O O\n\nIt O O\ndepends O O\non O O\nthe O O\nperformance O O\nof O O\nyour O O\nsetup O O\ncompared O O\nto O O\ntheirs O O\nfor O O\nany O O\ngiven O O\nuser O O\ndepending O O\non O O\nwhere O O\nthey O O\nare O O\non O O\nthe O O\nplanet O O\n. O O\n\nI O O\nthink O O\nit O O\n's O O\nsafe O O\nto O O\nassume O O\nthat O O\nany O O\ndifferences O O\nwould O O\nbe O O\nmarginal O O\nassuming O O\nyou O O\nare O O\nserving O O\nup O O\nthe O O\nsame-sized O O\nimage Name Name\n. O O\n\nHowever O O\n, O O\nthe O O\noriginal O O\nwebsite O O\nmight O O\nnot O O\nlike O O\nit O O\nif O O\nyou O O\nare O O\nhot O O\nlinking O O\nto O O\ntheir O O\nimages Name Name\n. O O\n\nAlso O O\nif O O\nthey O O\nchange O O\ntheir O O\nfilenames O O\nor O O\nimages Name Name\nyour O O\nlinks O O\nwill O O\nbreak O O\n. O O\n\nI O O\n've O O\ncustom O O\nlist Name Name\nview Name Name\nlayout O O\n. O O\n\nThe O O\nitems O O\nin O O\nlist Name Name\nare O O\ngoing O O\nto O O\nbe O O\n5 O O\nor O O\nmore O O\n. O O\n\nIf O O\nmore O O\nthan O O\nsay O O\n, O O\n5-10 O O\nitems O O\nare O O\nthere O O\nin O O\nlist Name Name\n, O O\nit O O\nlooks O O\ngood O O\n. O O\n\nBut O O\nif O O\nthere O O\nare O O\nsay O O\nonly O O\n5 O O\nitems O O\n, O O\nthen O O\nblank O O\nspace O O\nappears O O\nbelow O O\nlist Name Name\non O O\ndevices O O\nlarger O O\nin O O\nheight O O\n. O O\n\nThis O O\ndoes O O\nnot O O\nlook O O\ngood O O\n. O O\n\nfollowing O O\nis O O\nmy O O\nlist Name Name\nrow Name Name\nlayout O O\n- O O\n\nAnd O O\nlistview Name Name\n- O O\n\nWhat O O\nI O O\ndesire O O\nis O O\n, O O\nif O O\nheight O O\nof O O\ndevice O O\nis O O\nlarger O O\nthen O O\nI O O\nwant O O\nlist Name Name\nto O O\ntake O O\ncomplete O O\nheight O O\nby O O\nscaling O O\nheight O O\nof O O\neach O O\nrow Name Name\nin O O\nway O O\nthat O O\nit O O\nshould O O\ndisplay O O\nall O O\nitems O O\nw/o O O\nscroll O O\n. O O\n\nIf O O\nitems O O\nare O O\nmore O O\nthen O O\nscroll O O\nshould O O\nappear O O\n. O O\n\nHow O O\ncan O O\nI O O\nset O O\nthis O O\nup O O\n? O O\n\nUpdate O O\n\nI O O\ncan O O\nopt-in O O\nfor O O\na O O\nsolution O O\nwhere O O\nI O O\n'd O O\ncheck O O\nhow O O\nmany O O\nitems O O\nare O O\ngoing O O\nto O O\nbe O O\nthere O O\nin O O\nlist Name Name\nbefore O O\nand O O\nif O O\nthey O O\nare O O\nless O O\nthan O O\n5-6 O O\n, O O\nI O O\n'd O O\nchoose O O\na O O\ndifferent O O\nlayout O O\nconsisting O O\nof O O\nLinearLayout Name Name\nor O O\nsomething O O\nthat O O\nwould O O\nfill O O\nup O O\nthe O O\nblank O O\nspace O O\n. O O\n\nBut O O\nI O O\nca O O\nn't O O\nfigure O O\nout O O\nthe O O\nstructure O O\nI O O\nneed O O\nto O O\nchoose O O\nfor O O\nsuch O O\nLinearLayout Name Name\n. O O\n\nShould O O\nI O O\nchoose O O\n5-6 O O\nLinearLayout Name Name\nbelow O O\none O O\nanother O O\nor O O\na O O\nsingle O O\nwith O O\niteration O O\n? O O\n\nWell O O\n, O O\nin O O\nmy O O\nview O O\nif O O\nI O O\nneed O O\nto O O\nimplement O O\nsuch O O\na O O\nfunction O O\n, O O\nI O O\n'll O O\ndo O O\nlike O O\nbelow O O\n: O O\n\ncheck O O\nif O O\nthere O O\nexist O O\nblank O O\nyou O O\ndont O O\nwant(blankHeight=(ListViewHeight-count*rowHeight)>0) Name Name\n\nheightToPlus Name Name\n= Name Name\nblankHeight/count Name Name\n\nthen O O\nyou O O\ncan O O\nset O O\nthe O O\nheight O O\nof O O\neach O O\nrow Name Name\nto O O\nrowHeight+heightToPlus Name Name\n\nevery O O\nheight O O\ncan O O\nbe O O\nget O O\nby O O\ngetHeight Name Name\nand O O\nalso O O\ncan O O\nbe O O\nset O O\nby O O\nsetHeight Name Name\n, O O\nthey O O\n're O O\nmethod O O\nof O O\nview Name Name\n. O O\n\nSo O O\ni O O\nthink O O\nit O O\nnot O O\nhard O O\nto O O\nimplement O O\n.. O O\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\nshow O O\nthe O O\nerror O O\nmessage O O\nof O O\ncustomValidator Name Name\nwithout O O\nPOSTBACK Name Name\n? O O\n\nI O O\nhave O O\nused O O\nboth O O\nrequiredFieldValidator Name Name\nand O O\ncustomValidator Name Name\n. O O\n\nThe O O\nfomer O O\ncan O O\nbe O O\ninline O O\nand O O\ncan O O\nshow O O\nerror O O\nmessage O O\nwithout O O\npostback Name Name\n. O O\n\nIs O O\nthis O O\npossible O O\nfor O O\ncustomValidator Name Name\n? O O\n\nOption O O\n1 O O\n: O O\n\nWhenever O O\nI O O\ncreate O O\na O O\ncustom Name Name\nvalidator Name Name\n, O O\nI O O\ntry O O\nto O O\ncreate O O\na O O\nserver Name Name\nand O O\nclient Name Name\nside O O\nvalidation O O\nmethods O O\nto O O\nvalidate O O\n. O O\n\ncreating O O\na O O\nclient Name Name\nside O O\nmethod O O\nwill O O\navoid O O\nunnecessary O O\npostback Name Name\n. O O\n\nAs O O\na O O\nsafety O O\nmeasure O O\n, O O\nserver Name Name\nside O O\nmethod O O\nshould O O\nbe O O\npresent O O\n. O O\n\nExample O O\n: O O\n\nOption O O\n2 O O\n: O O\n\nIt O O\nis O O\nnot O O\nalways O O\npossible O O\nto O O\nbuild O O\na O O\nclient Name Name\nside O O\nvalidation O O\nmethod O O\n. O O\n\nThere O O\nyou O O\ncan O O\nuse O O\nupdate Name Name\npanel Name Name\nto O O\nhide O O\nthose O O\npostbacks Name Name\n. O O\n\nyou O O\ncan O O\nuse O O\nUpdate Name Name\nPanel Name Name\najax Name Name\nto O O\nthis O O\naction O O\nwithout O O\npostback Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\ninstall O O\nhomebrew Name Name\naccording O O\nto O O\nthe O O\nguidelines O O\ndescribed O O\nin O O\nhere O O\n. O O\n\nI O O\nhave O O\ncurl Name Name\nand O O\nrvm Name Name\n, O O\nand O O\nwant O O\nto O O\ninstall O O\nrails Name Name\n1.9.3 Name Name\non O O\nmy O O\nlion Name Name\n1.7.4 Name Name\nwith O O\nXcode Name Name\n4.3.2 Name Name\nand O O\nwith O O\ndeveloper Name Name\ncommand Name Name\nline Name Name\ntools Name Name\ninstalled O O\n. O O\n\nIt O O\nseems O O\nI O O\nwill O O\nneed O O\nlibksba Name Name\n, O O\nwhich O O\nrequires O O\nme O O\nto O O\nuse O O\nto O O\ncommand O O\nbrew Name Name\ninstall Name Name\nlibksba Name Name\n. O O\n\nSo O O\nI O O\nwill O O\nneed O O\nHome Name Name\nBrew Name Name\n. O O\n\nI O O\nfollow O O\nthe O O\ninstructions O O\nand O O\nuse O O\n\n/usr/bin/ruby Name Name\n-e Name Name\n\" Name Name\n$ Name Name\n( Name Name\n/usr/bin/curl Name Name\n-fsSL Name Name\nhttps://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb Name Name\n) Name Name\n\" Name Name\n\nwhich O O\noutputs O O\nthe O O\nfollowing O O\n: O O\n\nSo O O\nthis O O\nmeans O O\nbasically O O\nthat O O\nbrew Name Name\nwas O O\nnot O O\ninstalled O O\nright O O\n. O O\n\nDo O O\nI O O\nhave O O\nto O O\nchange O O\nthe O O\npath O O\nat O O\nwhich O O\nit O O\nis O O\nlooking O O\nfor O O\n? O O\n\nI O O\nused O O\nto O O\nhave O O\nMacPorts Name Name\nin O O\n, O O\nwhich O O\nI O O\ncompletely O O\nerased O O\nso O O\nthere O O\nshould O O\nbe O O\nno O O\nconflicts O O\nthere O O\n. O O\n\nPlease O O\nhelp O O\n!! O O\n! O O\n\nThanks O O\na O O\nlot O O\n! O O\n\nIt O O\n's O O\nan O O\nawesome O O\ncommunity O O\n. O O\n\nUPDATE O O\n: O O\n\nI O O\ntime O O\nmachined O O\nback O O\na O O\nyear O O\nbecause O O\nI O O\nthought O O\nI O O\ndid O O\nsomething O O\ncritically O O\nwrong O O\n. O O\n\nNow O O\nI O O\nstill O O\nhave O O\nan O O\nissue O O\ninstalling O O\n, O O\nbut O O\nit O O\nseems O O\na O O\nbit O O\nmore O O\ncommon O O\n. O O\n\nI O O\ninstalled O O\nhomebrew Name Name\nusing O O\n\nAny O O\ncommand O O\nof O O\n\" O O\nbrew Name Name\n\" O O\ngives O O\nme O O\nthis O O\nerror O O\n: O O\n\nAny O O\nsuggestions O O\n? O O\n\nThank O O\nyou O O\nall O O\n! O O\n\nI O O\nhad O O\nthe O O\nsame O O\nproblem O O\nas O O\nmentioned O O\nin O O\nmy O O\ncomment O O\nabove O O\n. O O\n\nTo O O\nresolve O O\nit O O\nI O O\nended O O\nup O O\nhaving O O\nto O O\nrestore O O\nmy O O\ndefault O O\nsystem O O\nruby Name Name\n. O O\n\nI O O\nam O O\non O O\nSnowLeopard Name Name\n- Name Name\nOSX Name Name\n10.6.8 Name Name\n, O O\nso O O\nyour O O\nresources O O\nmay O O\nvary O O\n, O O\nbut O O\nwhat O O\nI O O\ndid O O\nwas O O\n: O O\n\nuninstall O O\nxcode Name Name\n: O O\nsudo Name Name\n/Developer/Library/uninstall Name Name\n-devtools Name Name\n--mode Name Name\n= Name Name\nall Name Name\n\nrsync Name Name\nor O O\ncopy O O\n/System/Library/Frameworks/Ruby.framework Name Name\nfrom O O\nanother O O\nmachine O O\nrunning O O\n10.6.8 Name Name\n\nYou O O\nalso O O\nneed O O\nthe O O\nruby Name Name\nexecutables O O\nin O O\n/usr/bin Name Name\nto O O\npoint O O\nto O O\nthe O O\nsystem O O\nRuby Name Name\n: O O\n/usr/bin/{erb,gem,irb,rdoc,ri,ruby,testrb} Name Name\n\nthese O O\nare O O\njust O O\nsymlinks Name Name\nto O O\n/System/Library/Frameworks/Ruby.framework Name Name\n\nerb Name Name\n-> O O\n../../System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/erb Name Name\n\nso O O\nI O O\nre-symlinked O O\nthem O O\n, O O\nfor O O\nexample O O\nfrom O O\n/usr/bin Name Name\n: Name Name\nsudo Name Name\nln Name Name\n-s Name Name\n../../System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/erb Name Name\n./erb Name Name\n\nthe O O\nbrew Name Name\nexecutable O O\ncurrently O O\nuses O O\n/usr/bin/ruby Name Name\nso O O\nthat O O\nneeds O O\nto O O\nbe O O\nthere O O\nin O O\nthe O O\nleast O O\n\nI O O\nhear O O\nfuture O O\nversions O O\nof O O\nbrew Name Name\nwill O O\npoint O O\ndirectly O O\nat O O\nthe O O\nsystem O O\nruby Name Name\non O O\nthe O O\n/System/Library/Frameworks/Ruby.framework Name Name\npath O O\n, O O\nso O O\nsymlinking O O\nruby Name Name\nto O O\na O O\ncustom O O\ninstall O O\nis O O\na O O\nbad O O\nidea O O\n\nAt O O\nthis O O\npoint O O\nbrew Name Name\ncommands O O\nworked O O\nagain O O\nand O O\nostruct Name Name\n( O O\npart O O\nof O O\nruby Name Name\nstandard O O\nlib O O\n) O O\nwas O O\nagain O O\nfound O O\n. O O\n\nI O O\nwent O O\nahead O O\nand O O\nadded O O\nxcode Name Name\nback O O\nin O O\nand O O\nworked O O\nthrough O O\nsome O O\nminor O O\n' O O\nbrew Name Name\ndoctor Name Name\n' O O\nerrors O O\n. O O\n\nI O O\nhave O O\nnow O O\nreplaced O O\nall O O\nmy O O\nold O O\nmacports Name Name\npackages O O\nwith O O\nhomebrew Name Name\npackages O O\nand O O\nits O O\nsuch O O\nan O O\nimprovement O O\n! O O\n\nI O O\nhave O O\na O O\ndictionary Name Name\nwith O O\n5000 O O\nkeys O O\nwho O O\n's O O\nvalues O O\nare O O\nlists Name Name\n, O O\nI O O\nneed O O\nto O O\ndetermine O O\nquickly O O\nthe O O\nlength O O\nof O O\nthe O O\nlongest O O\nstring Name Name\nfor O O\na O O\ngiven O O\nindex O O\nin O O\nall O O\nof O O\nthe O O\ndictionary Name Name\nvalues O O\n\nexpected O O\noutput O O\n: O O\n5 Name Name\n, O O\nbecause O O\nof O O\nall O O\nof O O\nthe O O\nvalues O O\nat O O\nindex O O\n1 Name Name\n( O O\n' Name Name\ndefg Name Name\n' Name Name\nand O O\n' Name Name\nklmno'` Name Name\n, O O\nthe O O\nlatter O O\nis O O\nthe O O\nlongest O O\n) O O\n. O O\n\nYou O O\nneed O O\nto O O\nuse O O\na O O\ngenerator O O\nexpression O O\nto O O\nextract O O\nthe O O\nright O O\nindex O O\n: O O\n\nIf O O\nall O O\nyou O O\nneed O O\nis O O\nthe O O\nlength O O\n, O O\nnot O O\nthe O O\nstring Name Name\nitself O O\n, O O\nyou O O\nmay O O\nas O O\nwell O O\nget O O\nthe O O\nlength O O\nin O O\nthe O O\ngenerator O O\nexpression O O\n: O O\n\nDemo O O\n: O O\n\nYou O O\nca O O\nn't O O\nescape O O\nhaving O O\nto O O\niterate O O\nover O O\nall O O\nvalues O O\nin O O\nthe O O\ndictionary Name Name\nhowever O O\n. O O\n\nFirst O O\n, O O\nextract O O\nall O O\nthe O O\nstrings Name Name\nof O O\ninterest O O\nwith O O\na O O\nlist Name Name\ncomprehension O O\n: O O\n\nNext O O\n, O O\ntake O O\nmax Name Name\nover O O\nthe O O\nlens Name Name\nof O O\nthe O O\nstrings Name Name\n: O O\n\nI O O\ngot O O\nsome O O\nstrange O O\nbehaviour O O\nusing O O\ngrails Name Name\n2.3.x Name Name\nand O O\nasync O O\n. O O\n\nI O O\n'm O O\ndoing O O\nsome O O\ntest O O\nwith O O\nthis O O\ncode O O\n: O O\n\nbut O O\nin O O\nmy O O\nlog Name Name\ni O O\ngot O O\n: O O\n\nIn O O\nfact O O\nthe O O\ntasks O O\n( O O\nand O O\nonError Name Name\nclosure O O\n) O O\nare O O\nexecuted O O\n, O O\nbut O O\nonComplete Name Name\nis O O\nnot O O\n( O O\noff O O\ncourse O O\n) O O\n! O O\n! O O\n\nwhat O O\nam O O\ni O O\ndoing O O\nwrong O O\n? O O\n\nexcept O O\nfor O O\nthe O O\nThread.sleep() Name Name\nis O O\npratically O O\ncode O O\ntaken O O\nfrom O O\ndoc O O\n: O O\nhttp://grails.org/doc/latest/guide/async.html O O\n\nIs O O\nThread.sleep() Name Name\nnot O O\ncompatible O O\nwith O O\nGPars Name Name\nfor O O\nsome O O\nreason O O\n? O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nonComplete Name Name\ndoes O O\nnot O O\nblock O O\n. O O\n\nThe O O\nrequest/action O O\ndoes O O\nfinish O O\nbefore O O\nyour O O\ntasks O O\nand O O\nlist Name Name\ngoes O O\nout O O\nof O O\nscope O O\n. O O\n\nYou O O\nneed O O\nto O O\nuse O O\nwaitAll() Name Name\nto O O\nwait O O\nfor O O\nall O O\ntasks O O\nto O O\nfinish O O\nbefore O O\nthe O O\naction O O\nreturns O O\n. O O\n\nEasiest O O\nis O O\nto O O\nreplace O O\nthe O O\nonComplete Name Name\nwith O O\n\nlist.get() Name Name\nis O O\nimplemented O O\nby O O\ncalling O O\nwaitAll() Name Name\n. O O\n\nWhenever O O\nI O O\ngo O O\ninto O O\nthe O O\ntab Name Name\nTroubleShooting->Logs O O\nand O O\nTrace->Server Name Name\nI O O\nget O O\nthe O O\ngeneral O O\nproperties O O\nsection O O\nin O O\nwhich O O\nthere O O\n's O O\nonly O O\na O O\nlink O O\nof O O\nChange O O\nLog Name Name\nDetails O O\nLevel O O\n. O O\n\nI O O\n've O O\nchanged O O\nthe O O\ntracing O O\ninside O O\nto O O\nreflect O O\nfor O O\nmy O O\napps O O\n. O O\n\nBut O O\nbeyond O O\nthis O O\noption O O\nI O O\n'm O O\nnot O O\nable O O\nto O O\nsee O O\nthe O O\nlog Name Name\nfiles O O\ninside O O\nWAS Name Name\n. O O\n\nWe O O\nhave O O\nWAS O O\non O O\nZ/OS Name Name\nand O O\nI O O\n'm O O\nable O O\nto O O\nview O O\nlogs Name Name\non O O\nthe O O\nmainframe Name Name\n. O O\n\nIs O O\nthere O O\nany O O\nfile O O\nor O O\nscript O O\nthat O O\nwe O O\nneed O O\nto O O\nrun O O\nto O O\nenable O O\nJVM Name Name\nlogs Name Name\n? O O\n\nOn O O\nAIX Name Name\n, O O\nlinux Name Name\nand O O\nWindows Name Name\n, O O\nwhen O O\nI O O\ngo O O\nTroubleShooting O O\n-> O O\nLogs O O\nand O O\nTrace O O\n-> O O\nServer Name Name\n, O O\nI O O\nget O O\nseveral O O\nlinks O O\nin O O\ngeneral O O\nproperties O O\nsection O O\n, O O\none O O\nof O O\nwhich O O\nis O O\n' Name Name\nDiagnostic Name Name\nTrace Name Name\n' Name Name\nthrough O O\nwhich O O\nI O O\ncan O O\nenable/disable O O\ntracing O O\nand O O\nconfigure O O\nwhere O O\nthe O O\nlog Name Name\nfiles O O\nshall O O\nbe O O\nlocated O O\nat O O\n, O O\ntheir O O\nsizes O O\n, O O\nrollover O O\nsettings O O\netc O O\n. O O\n\nThe O O\nfact O O\nthat O O\nyou O O\ndo O O\nn't O O\nsee O O\nthis O O\nlink O O\neither O O\nsuggests O O\nthis O O\nis O O\nsomething O O\nz/OS Name Name\nspecific O O\n, O O\nor O O\nyou O O\ndo O O\nn't O O\nhave O O\nprivileges O O\nto O O\nperform O O\nruntime O O\noperations O O\n. O O\n\nYou O O\nmay O O\ncheck O O\nif O O\nyou O O\n're O O\nlogging O O\nin O O\nwith O O\na O O\nuser O O\nthat O O\nis O O\nin O O\nAdministrators O O\ngroup O O\n( O O\nyou O O\nmay O O\ncheck O O\nyou O O\nuser O O\nat O O\nUsers O O\nand O O\nGroups O O\n-> O O\nAdministrative O O\nUser O O\nRoles O O\n) O O\n. O O\n\nThere O O\nare O O\ntwo O O\ntabs Name Name\nat O O\nthe O O\nscreen O O\nthat O O\nyou O O\nchange O O\ntrace O O\noptions O O\n, O O\nnamely O O\n' O O\nconfiguration Name Name\n' O O\nand O O\n' O O\nruntime Name Name\n' O O\n. O O\n\nIf O O\nyou O O\nare O O\nmaking O O\nchanges O O\nat O O\nconfiguration O O\ntab Name Name\n, O O\nyou O O\nhave O O\nto O O\nrecycle O O\nthe O O\nserver Name Name\nfor O O\ntrace O O\nstring Name Name\nto O O\nbecome O O\nactive O O\n. O O\n\nYou O O\nmay O O\ntry O O\nusing O O\nRuntime O O\ntab Name Name\nif O O\nyou O O\nhave O O\nn't O O\ndone O O\nso O O\n. O O\n\nYou O O\nmay O O\ntry O O\nenabling O O\ntrace O O\nusing O O\nwsadmin Name Name\nas O O\nin O O\nhttp://pic.dhe.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.express.doc%2Finfo%2Fexp%2Fae%2Ftxml_profiletrace.html O O\n\nturn O O\non O O\ntrace O O\n( O O\nputting O O\nyour O O\nown O O\ntrace O O\nstring Name Name\n) O O\n\nturn O O\noff O O\ntrace O O\n\nI O O\ngot O O\na O O\n<p:calendar> Name Name\nand O O\nwant O O\nto O O\nuse O O\ntoday O O\n's O O\ndate O O\nas O O\nplaceholder O O\n. O O\n\nMy O O\nattempt O O\nis O O\nto O O\nuse O O\nOmniFaces Name Name\n#{now} Name Name\nin O O\ncombination O O\nwith O O\na:placeholder Name Name\nfor O O\nthis O O\n: O O\n\nWhere O O\nsomeproperty O O\nis O O\na O O\njava.util.date Name Name\n. O O\n\nThis O O\nis O O\nworking O O\nso O O\nfar O O\n, O O\nbut O O\nI O O\nwant O O\nto O O\nformat O O\nthe O O\ndate O O\nlike O O\ndd.MM.yyyy Name Name\nHH:mm Name O\n. O O\n\nHow O O\ncan O O\nI O O\nachieve O O\nthis O O\n? O O\n\nUse O O\nof:formatDate() Name Name\nfunction O O\nin O O\nEL O O\n: O O\n\nOr O O\nif O O\nyou O O\n'd O O\nlike O O\nto O O\nreuse O O\ncalendar O O\ncomponent O O\n's O O\nown O O\npattern O O\nattribute O O\n: O O\n\nSee O O\nalso O O\n: O O\n\nWhat O O\nexactly O O\nis O O\n#{component} Name Name\nin O O\nEL O O\n? O O\n\nI O O\n'm O O\nhoping O O\nsomeone O O\ncan O O\npoint O O\nme O O\nin O O\nthe O O\nright O O\ndirection O O\n; O O\nI O O\nthink O O\nI O O\n'm O O\ngetting O O\nclose O O\nbut O O\nI O O\n've O O\nnever O O\ndone O O\nthreading O O\nand O O\nkeep O O\ngetting O O\nstuck O O\non O O\nsyntax/concepts O O\n. O O\n\nThe O O\nfirst O O\npart O O\nI O O\nbelieve O O\nis O O\nworking O O\n, O O\nhowever O O\nI O O\nhave O O\na O O\nlovely O O\nWPF Name Name\nerror O O\nregarding O O\nthe O O\nowner O O\nof O O\nthe O O\nthread O O\n. O O\n\nI O O\nknow O O\nsomehow O O\nI O O\n've O O\ngot O O\nget O O\nat O O\nthe O O\nthread O O\nwith O O\nDispatcher Name Name\nor O O\nBackGroundWorker Name Name\nbut O O\ntime O O\nis O O\ngetting O O\nshort O O\n- O O\nI O O\n'm O O\nhitting O O\ntoo O O\nmany O O\nwalls O O\nto O O\nsolve O O\nit O O\nalone O O\ntonight O O\n. O O\n\nHere O O\nis O O\nthe O O\npart O O\nI O O\n'm O O\nfailing O O\nat O O\n: O O\n\nNow O O\nthis O O\nnext O O\nbit O O\n, O O\nI O O\nbelieve O O\nis O O\neither O O\nA O O\n) O O\nWorking O O\nor O O\nB O O\n) O O\nfooling O O\nme O O\nas O O\nI O O\n've O O\nyet O O\nto O O\nprove O O\nit O O\n:) O O\n. O O\n\nFinally O O\nthe O O\nexact O O\nerror O O\nis O O\nThe O O\ncalling O O\nthread O O\ncannot O O\naccess O O\nthis O O\nobject O O\nbecause O O\na O O\ndifferent O O\nthread O O\nowns O O\nit O O\n. O O\n\nI O O\n'm O O\ngoing O O\nto O O\nbe O O\ntackling O O\nthis O O\nagain O O\nin O O\na O O\ncouple O O\nof O O\nhours O O\nonce O O\nI O O\n've O O\nhad O O\nchance O O\nto O O\neat O O\nand O O\nread O O\n, O O\nagain O O\n. O O\n\nHowever O O\nif O O\nanyone O O\ncan O O\ntell O O\nme O O\nwhat O O\nthe O O\nglaring O O\nsilliness O O\nthat O O\nI O O\n've O O\nnot O O\nquite O O\ngot O O\nmy O O\nhead O O\naround O O\n, O O\nI O O\n'd O O\nbe O O\nrather O O\ngrateful O O\n! O O\n! O O\n\nThe O O\ncontext O O\nis O O\nan O O\nEntity Name Name\nFramework Name Name\n5 Name Name\nObservableCollection Name Name\nwith O O\nchild O O\nnavigation O O\nfiltered O O\nproperties-I O O\ndo O O\nn't O O\nthink O O\nthe O O\ncode O O\nquite O O\nsays O O\nit O O\n:) O O\n. O O\n\nThank O O\nyou O O\n:) O O\n. O O\n\nAs O O\nrequested O O\n, O O\nthe O O\nexception Name Name\nI O O\nget O O\n. O O\n\nThis O O\noccurrs O O\nin O O\nthe O O\nrepository Name Name\ncode O O\n. O O\n\nThe O O\nThread O O\nstuff O O\nis O O\na O O\nred O O\nherring O O\n. O O\n\nInnerException O O\n: O O\n\nThis O O\nis O O\nthe O O\nentire O O\nexception Name Name\nand O O\nit O O\noccurs O O\nhere O O\n: O O\n\nI O O\n've O O\nbeen O O\nthrough O O\nthe O O\narticles O O\nlast O O\nnight O O\n, O O\nwhilst O O\nI O O\nunderstand O O\nit O O\na O O\nlittle O O\nbetter O O\nnow O O\nI O O\n'm O O\nstill O O\nstruggling O O\nto O O\napply O O\nit O O\nto O O\nthe O O\nrepository Name Name\nclass O O\n. O O\n\nThis O O\nis O O\nusually O O\na O O\ncombination O O\nof O O\nsyntax O O\nconfusion O O\nand O O\nnot O O\nquite O O\ngetting O O\nit O O\non O O\nmy O O\npart O O\n. O O\n\nI O O\n've O O\na O O\nfeeling O O\nthat O O\nI O O\nshould O O\nbe O O\nable O O\nto O O\nsplit O O\nout O O\npart O O\nof O O\nthe O O\noperation O O\nin O O\nthe O O\ngetfiltered Name Name\nresidents O O\ninto O O\nan O O\nawait O O\ntask O O\nbut O O\nhave O O\nn't O O\nmanaged O O\nto O O\nfigure O O\nit O O\nout O O\njust O O\nyet O O\n. O O\n\nToday O O\n's O O\njob O O\n- O O\nif O O\nentity Name Name\nframework Name Name\ncan O O\nbe O O\nused O O\nthis O O\nway O O\n! O O\n\nHello O O\nto O O\nevery O O\nWordpress Name Name\ngenius O O\n, O O\n\nI O O\nhave O O\na O O\nquestion O O\nand O O\nyou O O\nmight O O\nhelp O O\n. O O\n\nI O O\n've O O\ncreated O O\na O O\nsingle-page O O\nsite O O\nwith O O\nBootstrap Name Name\nand O O\nuploaded O O\nit O O\nas O O\na O O\ntemplate O O\nto O O\nWordpress Name Name\n. O O\n\nNow O O\nI O O\nwould O O\nlike O O\nto O O\nedit O O\nsome O O\nparts O O\nof O O\nthe O O\nsite O O\n( O O\nmostly O O\nsome O O\ntext O O\n) O O\nin O O\nthe O O\nWordpress Name Name\nCMS Name Name\ninstead O O\nof O O\nrewriting O O\nthe O O\nHTML Name Name\nfile O O\n. O O\n\nDoes O O\nanyone O O\nknow O O\nhow O O\nto O O\ndo O O\nit O O\nor O O\nknow O O\na O O\ndetailed O O\ntutorial O O\n? O O\n\nI O O\nhave O O\nspent O O\nages O O\ngoogling O O\nit O O\nbut O O\nno O O\nsuccess O O\nso O O\nfar O O\n. O O\n\nThank O O\nyou O O\nfor O O\nany O O\nadvice O O\nand O O\nhave O O\npeaceful O O\nholidays O O\n! O O\n\nI O O\n'm O O\nattempting O O\nto O O\nbuild O O\na O O\nnested O O\nrelationship O O\nusing O O\nDjango Name Name\nRest Name Name\nFramework Name Name\n3.0 Name Name\n. O O\n\nI O O\n've O O\ncreated O O\nmy O O\nserializers Name Name\nand O O\nhave O O\nattempted O O\nto O O\noverride O O\nthe O O\ncreate() Name Name\nfunction O O\n. O O\n\nMy O O\nmodels O O\nare O O\ndefined O O\nas O O\nfollows O O\n: O O\n\nAs O O\nyou O O\n'll O O\nnote O O\n, O O\nI O O\ncan O O\nhave O O\nmultiple O O\nprices Name Name\nfor O O\nmy O O\nitems Name Name\n. O O\n\nMy O O\nserializers Name Name\nare O O\ndefined O O\nas O O\nfollows O O\n: O O\n\nWhen O O\nI O O\ntry O O\nand O O\nPOST O O\na O O\nnew O O\nitem O O\n: O O\n\nI O O\nget O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\nPresumably O O\nbecause O O\nthe O O\nPrice Name Name\nserializer Name Name\nhas O O\nno O O\nidea O O\nwhat O O\nthe O O\nID O O\nof O O\nthe O O\nnew O O\nitem Name Name\nis O O\n. O O\n\nI O O\n've O O\ntried O O\noverriding O O\nthis O O\nfunctionality O O\nin O O\nthe O O\ncreate() Name Name\nfunction O O\nof O O\nmy O O\nserializer Name Name\n, O O\nbut O O\nit O O\nappears O O\nas O O\nthough O O\nthe O O\nserializer Name Name\n's O O\nvalidation O O\nis O O\nbeing O O\nhit O O\nbefore O O\nI O O\nhave O O\nthe O O\nopportunity O O\nto O O\ncreate O O\nthe O O\nitem Name Name\nand O O\nassociate O O\nit O O\nwith O O\nthe O O\nprice Name Name\n. O O\n\nSo O O\n- O O\nHow O O\ndo O O\nI O O\ncreate O O\na O O\nnew O O\nitem Name Name\n, O O\nget O O\nthe O O\nitem Name Name\nID Name Name\n, O O\nand O O\nthen O O\ncreate O O\neach O O\nof O O\nthe O O\nnew O O\nprices Name Name\n? O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nyour O O\nPriceSerializer Name Name\nis O O\nlooking O O\nfor O O\nthe O O\nitem Name Name\nkey O O\nbecause O O\nit O O\nis O O\nspecified O O\non O O\nthe O O\nPrice Name Name\nmodel O O\n. O O\n\nThis O O\nis O O\nn't O O\nimmediately O O\nobvious O O\nbecause O O\nyou O O\nare O O\nusing O O\nMeta.exclude Name Name\ninstead O O\nof O O\nMeta.fields Name Name\n. O O\n\nIs O O\nthe O O\nsame O O\nas O O\nwriting O O\n\nWhich O O\nmakes O O\nit O O\nvery O O\nclear O O\nwhat O O\nyour O O\nissue O O\nis O O\n. O O\n\nBecause O O\nyour O O\nitem Name Name\nfield O O\non O O\nthe O O\nmodel O O\ndoes O O\nnot O O\nhave O O\nempty Name Name\n= Name Name\nTrue Name Name\n( O O\nor O O\nnull Name Name\n= Name Name\nTrue Name Name\n) O O\nset O O\n, O O\nDjango Name Name\nREST Name Name\nFramework Name Name\nautomatically O O\ngenerates O O\nit O O\nas O O\na O O\nPrimaryKeyRelatedField Name Name\nwith O O\nrequired Name Name\n= Name Name\nTrue Name Name\n. O O\n\nThis O O\nis O O\nwhy O O\nyou O O\nare O O\ngetting O O\nthe O O\nThis O O\nfield O O\nis O O\nrequired O O\nis O O\nrequired O O\nerror O O\n, O O\nbecause O O\nDjango Name Name\nREST Name Name\nFramework Name Name\ncannot O O\nautomatically O O\ndetect O O\nthat O O\nit O O\nis O O\ncoming O O\nfrom O O\na O O\nparent O O\nserializer Name Name\nwhich O O\nalready O O\nhas O O\nthat O O\nfield O O\n. O O\n\nYou O O\ncan O O\nget O O\naround O O\nthis O O\nby O O\nremoving O O\nthe O O\nfield O O\nfrom O O\nthe O O\nserializer Name Name\n, O O\nas O O\nit O O\ndoes O O\nn't O O\nappear O O\nto O O\never O O\nbe O O\nneeded O O\n. O O\n\nThis O O\nwill O O\nno O O\nlonger O O\ndisplay O O\nthe O O\nitem Name Name\nfield O O\nthough O O\n, O O\nbut O O\nI O O\nsuspect O O\nthis O O\nis O O\nn't O O\nactually O O\nan O O\nissue O O\nfor O O\nyou O O\n. O O\n\nI O O\nwant O O\nto O O\nwrap O O\nparticular O O\nlines O O\nin O O\na O O\ntext O O\nmass O O\nwith O O\n<b></b> Name Name\n\nFirst O O\nline O O\nin O O\nthe O O\ntext O O\n\nAll O O\nlines O O\nwith O O\na O O\nprevious O O\nempty O O\nline O O\n( O O\neg O O\ntwo O O\nnewlines O O\nbefore O O\n) O O\n\nI O O\n'm O O\nusing O O\npreg_replace Name Name\nwith O O\nphp Name Name\n, O O\nbut O O\nI O O\n'm O O\nreally O O\nshitty O O\nwith O O\nregex O O\n. O O\n\nGood O O\ntutorials O O\nare O O\nappreciated O O\n. O O\n\nIn O O\nHTML Name Name\n( O O\nI O O\n'm O O\nassuming O O\nthat O O\n's O O\nthe O O\ncontext O O\n) O O\nthere O O\nis O O\nno O O\nsuch O O\nthing O O\nas O O\n\" O O\nlines O O\n\" O O\nin O O\nregards O O\nto O O\nsource O O\ncode O O\n, O O\nsince O O\nit O O\n's O O\nnot O O\nreally O O\npossible O O\nreliable O O\nto O O\ndeterminate O O\nhow O O\na O O\ntext O O\nwraps O O\n( O O\nunless O O\nyou O O\ndo O O\nall O O\nthe O O\nwrapping O O\nyourself O O\nwith O O\n<br> Name Name\nor O O\n<pre> Name Name\n) O O\n. O O\n\nHowever O O\nthere O O\nis O O\nthe O O\nCSS Name Name\npseudo-element O O\n:first-line Name Name\nthat O O\nwill O O\nlet O O\nyou O O\nformat O O\nthe O O\nfirst O O\nline O O\nof O O\nan O O\nelement O O\n( O O\nfor O O\nexample O O\na O O\nparagraph O O\n) O O\n: O O\n\nTry O O\n\nfor O O\nexample O O\n, O O\nhttp://www.ideone.com/1pTwD O O\n. O O\n\nI O O\nhave O O\nan O O\napp O O\nwith O O\na O O\nlot O O\nof O O\ndata O O\n( O O\nincluding O O\nNSMutableArrays Name Name\n, O O\nNSNumbers Name Name\n, O O\nvarious O O\ncustom O O\nclasses O O\n) O O\nthat O O\nuses O O\nNSCoding O O\nprotocol O O\npresently O O\n. O O\n\nHowever O O\n, O O\nI O O\nwould O O\nlike O O\nto O O\nimplement O O\nan O O\nincremental O O\nsaving O O\nsystem O O\n, O O\nto O O\nsave O O\ntime O O\nduring O O\nthe O O\n\" O O\nsaving O O\nprocess O O\n\" O O\n. O O\n\nThe O O\nloading O O\ntime O O\nis O O\nnot O O\nimportant O O\n. O O\n\nIs O O\nthere O O\nany O O\nexisting O O\ncontainer O O\nthat O O\nchecks O O\nits O O\nmembers O O\nfor O O\n\" O O\ndirty O O\n\" O O\nand O O\nonly O O\nupdates O O\nthose O O\nvalues O O\nwhen O O\nwriting O O\nto O O\nfile O O\n; O O\nor O O\nbetter O O\nyet O O\n, O O\na O O\nprotocol O O\nthat O O\ncan O O\nbe O O\nimplemented O O\nto O O\ndo O O\nthe O O\nsame O O\n; O O\nor O O\nany O O\nother O O\nsimple O O\n, O O\navailable O O\nway O O\nof O O\ndoing O O\nthis O O\n? O O\n\nFor O O\nlarge O O\namount O O\nof O O\ndata O O\nits O O\nbetter O O\nto O O\nchange O O\ndata O O\nmodel O O\nto O O\nCore O O\nData O O\n. O O\n\nOtherwise O O\n, O O\nyou O O\nmay O O\nwant O O\nto O O\nsave O O\nchanges O O\nafter O O\nspecific O O\nevents O O\n, O O\nor O O\n, O O\nbad O O\nsolution O O\nis O O\nto O O\nuse O O\nNSTimer Name Name\n, O O\nto O O\nsave O O\nall O O\ndata O O\nevery O O\ntime O O\nyou O O\nwant O O\nto O O\n. O O\n\nHow O O\ndo O O\nI O O\nexecute O O\nbulk O O\noperations O O\nwith O O\nthe O O\nnew O O\nMongocxx Name Name\ndriver Name Name\n? O O\n\nThe O O\ndriver Name Name\nmanual O O\nis O O\nhorrible O O\n. O O\n\nAnd O O\nthere O O\nare O O\nno O O\nexamples O O\nanywhere O O\n!! O O\n! O O\n\nRelevant O O\nclass O O\n: O O\nhttp://mongodb.github.io/mongo-cxx-driver/api/mongocxx-3.1.1/classmongocxx_1_1bulk__write.html O O\n\nI O O\ncan O O\ncreate O O\nan O O\noperation O O\nusing O O\nbulk_write::bulk_write() Name Name\nand O O\nadd O O\nqueries O O\nusing O O\nbulk_write::append() Name Name\n. O O\n\nBut O O\nI O O\nam O O\nconfused O O\nas O O\nto O O\nhow O O\nto O O\nexecute O O\nit O O\n. O O\n\nIt O O\n's O O\nterrible O O\nthat O O\nthey O O\ndo O O\nn't O O\nprovide O O\nsimilar O O\nfunctions O O\nlike O O\nthe O O\nmongo Name Name\nshell Name Name\n. O O\n\nEx O O\n: O O\nhttps://docs.mongodb.com/manual/reference/method/Bulk/ O O\n\nCreate O O\na O O\nbulk_write Name Name\ninstance O O\n, O O\nthen O O\npopulate O O\nit O O\nwith O O\nwrite O O\noperations O O\nand O O\nfinally O O\nsubmit O O\nit O O\nto O O\nMongo Name Name\ncollection O O\nusing O O\nthis O O\nmethod O O\n: O O\n\nI O O\n'm O O\ntrying O O\nto O O\ninstall O O\nGoogle Name Name\nMaps Name Name\nv2 Name Name\nlibraries O O\ninto O O\nmy O O\nlocal O O\nMaven Name Name\nrepository O O\nusing O O\nmaven-android-sdk-deployer Name Name\naccording O O\nto O O\nthe O O\nmanual O O\non O O\nthat O O\npage O O\n. O O\n\nWhen O O\nI O O\nrun O O\nmvn Name Name\ninstall Name Name\n-P Name Name\n4.1 Name Name\n, O O\nI O O\nget O O\nfollowing O O\nerror O O\n: O O\n\nThere O O\nis O O\nactually O O\nno O O\nappcompat Name Name\ndirectory O O\nin O O\nC:\\Program Name Name\nFiles Name Name\n\\adt-bundle-windows-x86\\adt-bundle-windows-x86\\sdk\\extras\\android\\support\\v7 Name Name\n. O O\n\nI O O\nsuppose O O\nthat O O\nI O O\nneed O O\nto O O\ninstall O O\nsome O O\npackag O O\nusing O O\nthe O O\nAndroid Name Name\nSDK Name Name\nManager Name Name\n. O O\n\nWhich O O\npackage O O\n( O O\nname O O\n, O O\nversion O O\n) O O\nshould O O\nI O O\ninstall O O\nin O O\norder O O\nto O O\nfix O O\nthis O O\nissue O O\n? O O\n\nIn O O\norder O O\nfor O O\nthat O O\ncommand O O\nto O O\nwork O O\n, O O\nit O O\nis O O\nnecessary O O\nto O O\ninstall O O\nall O O\n\" O O\nExtras O O\n\" O O\nin O O\nthe O O\nAndroid Name Name\nSDK Name Name\nmanager Name Name\n. O O\n\nI O O\ncheck O O\nthe O O\nconnection O O\nand O O\nthe O O\ncorrect O O\nlink O O\nbefore O O\nthe O O\nasynctask Name Name\n, O O\nbut O O\nsometimes O O\nthe O O\napplication O O\ncrash O O\n, O O\nfor O O\ndo O O\nit O O\non O O\nthe O O\nUI O O\nthread O O\ni O O\nthink O O\n. O O\n\nIf O O\ni O O\nput O O\nthe O O\ncode O O\non O O\nthe O O\nAsyncTask Name Name\nthe O O\napplication O O\nalways O O\ncrash O O\n. O O\n\nAny O O\nsolution O O\n? O O\n\nOn O O\nthe O O\nonCreate Name Name\nmethod O O\n: O O\n\nTry O O\nthis O O\n, O O\ncheck O O\nnet O O\nconnection O O\ninside O O\ndoInBackground Name Name\n. O O\n\nYour O O\nquestion O O\nis O O\nvery O O\nvague O O\n! O O\n\nYet O O\n: O O\nIn O O\nnewer O O\nandroids Name Name\n, O O\nyou O O\ncan O O\nnot O O\nexecute O O\nthis O O\nline O O\non O O\nthe O O\nUI O O\nthread O O\n: O O\n\nso O O\na O O\nsimple O O\nsolution O O\nwould O O\nbe O O\nto O O\nadd O O\neverything O O\ninside O O\na O O\nnew O O\nThread Name Name\n: O O\n\nHowever O O\n, O O\nyour O O\ncode O O\nhas O O\nsome O O\nblocks O O\nto O O\nshow O O\na O O\ndialog Name Name\n( O O\nguessing O O\n) O O\nlike O O\nthis O O\n: O O\n\nThese O O\nfunction O O\nshould O O\nbe O O\ndone O O\non O O\nthe O O\nUI O O\nthread O O\n. O O\n\nSo O O\nuse O O\na O O\nhandler Name Name\n: O O\n\nThen O O\ninside O O\nyour O O\ncode O O\nuse O O\n: O O\n\nFinally O O\n, O O\nthis O O\nis O O\na O O\nfix O O\n. O O\n\nThe O O\nreal O O\nsolution O O\nwould O O\nbe O O\nfor O O\nyou O O\nto O O\npost O O\nthe O O\nAsyncTask Name Name\nanyway O O\nand O O\nhandle O O\nerrors O O\nor O O\nsuccess O O\nin O O\nthe O O\nonPostExecute() Name Name\n\nI O O\n'm O O\na O O\ntotal O O\nnewbie O O\nwhen O O\nit O O\ncomes O O\nto O O\nusing O O\nTerminal Name Name\n, O O\nso O O\nI O O\ndo O O\nn't O O\nreally O O\nunderstand O O\nwhat O O\n's O O\nhappening O O\nhere O O\nwhen O O\nI O O\ntry O O\nto O O\nupgrade O O\nmy O O\nruby Name Name\nversion O O\n( O O\n1.8.7 Name Name\n) O O\nwith O O\nrvm Name Name\non O O\na O O\nMac Name Name\nOS Name Name\nX Name Name\n10.7.3 Name Name\n. O O\n\nWhen O O\nI O O\ninput O O\n\nI O O\nget O O\nthis O O\n\nWhat O O\ndoes O O\nthis O O\nmean O O\n? O O\n\nAnd O O\nhow O O\ncan O O\nI O O\nproceed O O\nwith O O\nthe O O\ninstallation O O\nof O O\nthe O O\nlatest O O\nversion O O\n? O O\n\nThe O O\ncurrent Name Name\nrvm Name Name\ncommand O O\noutputs O O\nthe O O\nname O O\nof O O\nthe O O\ncurrently O O\nactive O O\ninstallation O O\nof O O\nRuby Name Name\n; O O\nin O O\nthis O O\ncase O O\n, O O\nit O O\n's O O\nusing O O\nyour O O\nsystem O O\n's O O\npre-installed O O\nRuby Name Name\n( O O\n1.8.7 Name Name\n) O O\n. O O\n\nTry O O\nthis O O\n: O O\n\nI O O\n'm O O\nmaking O O\na O O\nprogram O O\nto O O\ngenerate O O\ncode O O\nfor O O\nme O O\n, O O\nand O O\nI O O\n'm O O\nfashioning O O\nthe O O\nUI O O\nafter O O\nGame Name Name\nMaker Name Name\ndue O O\nto O O\nhow O O\neasy O O\nthe O O\ninterface O O\nis O O\n. O O\n\nIt O O\nhas O O\na O O\nSplitContainer Name Name\nwith O O\nPanel1 Name Name\ncontaining O O\na O O\nTreeView Name Name\nand O O\nPanel2 Name Name\ncontaining O O\nan O O\narbitrary O O\namount O O\nof O O\nself-contained O O\nwindows Name Name\n( O O\nreal O O\nwindows Name Name\n, O O\nnot O O\nsome O O\nhacky O O\nworkaround O O\n) O O\n. O O\n\nI O O\nwanted O O\nto O O\nuse O O\nuser-controls O O\nto O O\nstore O O\nthe O O\ncontrols Name Name\nI O O\nuse O O\nto O O\nmodify O O\nthings O O\n, O O\nbut O O\nI O O\nca O O\nn't O O\nfigure O O\nout O O\nany O O\nway O O\nto O O\nput O O\nit O O\nin O O\na O O\nwindow Name Name\ninside O O\nthe O O\nsplitContainer Name Name\n's O O\nPanel2 Name Name\n. O O\n\nCan O O\nanyone O O\nhelp O O\nme O O\n? O O\n\nHere O O\n's O O\na O O\ngood O O\nexample O O\n: O O\n\nhttp://i.stack.imgur.com/CG6kO.png O O\n\nThose O O\ntwo O O\nsprite O O\nproperty O O\nwindows Name Name\nare O O\nwhat O O\nI O O\n'm O O\ntrying O O\nto O O\ndo O O\n. O O\n\nI O O\ndid O O\nsimilar O O\nthing O O\nonce O O\n, O O\nand O O\nfor O O\nthat O O\nreason O O\n, O O\nI O O\nhave O O\nReplaceControl Name Name\nmethod O O\n, O O\nwhich O O\nI O O\npaste O O\nbelow O O\n: O O\n\nOnly O O\nthing O O\nleft O O\nto O O\ndo O O\nis O O\nto O O\ncreate O O\nsome O O\ncontrol Name Name\nmanually O O\non O O\nthe O O\nform Name Name\n, O O\nas O O\nthe O O\nplaceholder O O\nfor O O\nyour O O\nForm Name Name\n. O O\n\nUse O O\nlabel Name Name\n, O O\nfor O O\nexample O O\n. O O\n\nFrom O O\nHow O O\nto O O\nimplement O O\na-form-inside-a-form O O\nwith O O\nruntime O O\nembedded O O\nforms O O\nswitching O O\n? O O\n\nPut O O\nit O O\ninto O O\nthe O O\nPanel2 Name Name\n's O O\nControl Name Name\ncollection O O\nvia O O\nthe O O\nAdd() Name Name\nmethod O O\n, O O\napply O O\ncoordinates O O\n, O O\nanchor O O\nand O O\ndocking O O\nprogrammaticaly O O\n. O O\n\nThis O O\nmay O O\nbe O O\nvery O O\nbasic O O\nbut O O\ni O O\nam O O\nlooking O O\nfor O O\nthe O O\nsimplest O O\nway O O\nto O O\nget O O\nthe O O\nleft O O\ndigit O O\nof O O\na O O\nnumber Name Name\n, O O\nand O O\nthe O O\nright O O\ndigit O O\n. O O\n\nso O O\n54 Name Name\nwill O O\ngive O O\nme O O\ntwo O O\nintegers Name Name\n, O O\nint Name Name\na Name Name\n= Name Name\n5 Name Name\n, O O\nand O O\nint Name Name\nb Name Name\n= Name Name\n4 Name Name\n. O O\n\nTry O O\n\nBasic O O\nstuff O O\n\nFor O O\niharob O O\nsatisfaction O O\n\nTry O O\nthis O O\n\nnotice O O\nthat O O\nthis O O\nworks O O\nfor O O\nany O O\nnumber O O\nof O O\ndigits O O\n. O O\n\nContext O O\n\nIn O O\na O O\nC# Name Name\nWindows Name Name\nForms Name Name\napplication O O\nfor O O\nWin7 Name Name\nwe O O\nhost O O\nan O O\nActiveX Name Name\ncontrol Name Name\n. O O\n\nSo O O\nfar O O\n, O O\nso O O\ngood O O\n. O O\n\nNeed O O\n: O O\nprevent O O\nActiveX Name Name\nto O O\nreceive O O\nmouse Name Name\nevents O O\n\nActually O O\n, O O\nthe O O\nActiveX Name Name\nhas O O\ntoo O O\nmuch O O\nfunctionality O O\n. O O\n\nIt O O\nis O O\nnot O O\nvery O O\ncustomizable O O\nto O O\nturn O O\noff O O\nfeatures O O\nwe O O\ndo O O\nn't O O\nneed O O\n. O O\n\nIt O O\nwould O O\nbe O O\nnice O O\nif O O\nwe O O\njust O O\nprevented O O\nit O O\nfrom O O\nreceiving O O\nmouse Name Name\nevents O O\n. O O\n\nThe O O\nideal O O\nwould O O\nbe O O\nto O O\njust O O\ntreat O O\nevents O O\nas O O\nif O O\nthe O O\nActiveX Name Name\nwas O O\nnot O O\nthere O O\n, O O\nthat O O\nis O O\nthe O O\nmouse Name Name\nclicks O O\ngo O O\nright O O\nthrough O O\nto O O\nthe O O\nunderlying O O\n( O O\nor O O\ncontaining O O\n) O O\nControl Name Name\n. O O\n\nBut O O\nif O O\nwe O O\njust O O\nprevent O O\nthe O O\nActiveX Name Name\nfrom O O\ngetting O O\nevents O O\nthat O O\nwould O O\nbe O O\nokay O O\nwith O O\nus O O\n. O O\n\nSearch O O\nbefore O O\nyou O O\nask O O\n\nSome O O\nanswers O O\nto O O\nprevious O O\nquestions O O\nmention O O\nto O O\nprotected Name Name\noverride Name Name\nvoid Name Name\nWndProc Name Name\n( Name Name\nref Name Name\nMessage Name Name\nm Name Name\n) Name Name\n, O O\ne.g O O\n. O O\nc# Name Name\n- O O\nPass-through O O\nmouse Name Name\nevents O O\nto O O\nparent O O\ncontrol O O\n- O O\nStack Name Name\nOverflow Name Name\n\nOther O O\nmentions O O\nto O O\nimplement O O\nIMessageFilters Name Name\n, O O\ne.g O O\n. O O\n: O O\n\nwinforms Name Name\n- O O\nC# Name Name\nApplication-Wide O O\nLeft O O\nMouse Name Name\nClick O O\nEvent O O\n- O O\nStack Name Name\nOverflow Name Name\n\nwinforms Name Name\n- O O\nHandling O O\na O O\nclick O O\nevent O O\nanywhere O O\ninside O O\na O O\npanel O O\nin O O\nC# Name Name\n- O O\nStack Name Name\nOverflow Name Name\n\nwinforms Name Name\n- O O\nC# Name Name\nApplication-Wide O O\nLeft O O\nMouse Name Name\nClick O O\nEvent O O\n- O O\nStack Name Name\nOverflow Name Name\n\nCapturing O O\nMouse Name Name\nEvents O O\nfrom O O\nevery O O\ncomponent O O\non O O\nC# Name Name\nWInForm Name Name\n- O O\nStack Name Name\nOverflow Name Name\n\nExperiment O O\n: O O\nActiveX Name Name\nstill O O\ngets O O\nevents O O\n\nI O O\nhave O O\nfairly O O\nextensively O O\ntried O O\nboth O O\noverride O O\nWndProc Name Name\nand O O\nIMessageFilter Name Name\nways O O\n, O O\nfiltering O O\n( O O\nopt-in O O\nand O O\nopt-out O O\n) O O\na O O\nnumber O O\nof O O\nevents O O\n. O O\n\nIn O O\nsome O O\ncases O O\nI O O\ncan O O\nprevent O O\nevents O O\nto O O\nreach O O\nnative O O\nC# Name Name\ncontrols O O\n, O O\nbut O O\nthe O O\nActiveX Name Name\nstill O O\ngot O O\nits O O\nshare O O\n. O O\n\nFiltering O O\ntoo O O\nmuch O O\n, O O\nprevented O O\ncontrols O O\nand O O\nActiveX Name Name\nto O O\npaint O O\n, O O\nor O O\neven O O\napplication O O\nto O O\ndraw O O\nproperly O O\nor O O\ncaused O O\ncrash O O\non O O\nexit O O\n. O O\n\nThis O O\ncan O O\nbe O O\naverted O O\nby O O\nselecting O O\nopt-in O O\nor O O\nopt-out O O\noptions O O\ncarefully O O\n. O O\n\nIs O O\nthere O O\nanother O O\nway O O\n? O O\n\nIs O O\nthere O O\nanother O O\nway O O\nfrom O O\nC# Name Name\n/.NET Name Name\nto O O\nhost O O\nan O O\nActiveX Name Name\nControl Name Name\nwhile O O\npreventing O O\nit O O\nfrom O O\ngetting O O\nmouse Name Name\nevents O O\n? O O\n\nPerhaps O O\nat O O\napplication O O\nstart O O\ntime O O\n? O O\n\nTry O O\nto O O\ndo O O\na O O\nEnableWindow(hand,FALSE) Name Name\non O O\nthe O O\nuppermost O O\nhwnd Name Name\nof O O\nthe O O\nActiveX Name Name\nControl Name Name\nafter O O\nhas O O\nbeen O O\ncreated O O\n. O O\n\nSee O O\nUsing O O\nWindow O O\nHandle O O\nto O O\ndisable O O\nMouse Name Name\nclicks O O\nusing O O\nc# Name Name\nhow O O\nto O O\ndo O O\nthis O O\nin O O\nc# Name Name\n. O O\n\nI O O\n'm O O\nnew O O\nto O O\ngoogle Name Name\nmaps Name Name\napi Name Name\n, O O\ni O O\nhave O O\nsome O O\nPOLYGONS Name Name\nand O O\nPOLYINES Name Name\n. O O\n\ni O O\n'm O O\ntrying O O\nto O O\nshow O O\nboth O O\n( O O\npolygon Name Name\nand O O\npolyline Name Name\n) O O\nin O O\ngoogle Name Name\nmaps Name Name\napi Name O\n. O O\n\nI O O\n'm O O\ntried O O\nsomething O O\n, O O\nbut O O\nnot O O\nable O O\nnot O O\nshow O O\nboth O O\npolygons Name Name\nand O O\npolyline Name Name\n, O O\nonly O O\npolygons Name Name\nis O O\nshowing O O\n, O O\nhow O O\nto O O\nshow O O\nboth O O\nPolygons Name Name\nand O O\npolylines.I Name Name\nhave O O\na O O\nJson Name Name\nthat O O\njson Name Name\nhave O O\nsource O O\npolygon Name Name\nor O O\npolyline Name Name\n, O O\nthat O O\nsource O O\nbased O O\ni O O\n'm O O\nshowing O O\nhere.sorry O O\nfor O O\nmy O O\nenglish O O\n. O O\n\nHopefully O O\nsomeone O O\ncan O O\nkindly O O\nlet O O\nme O O\nknow O O\nwhere O O\nI O O\nam O O\nfailing O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n.Demo O O\n\nA O O\ngoogle.maps.PolylineOptions Name Name\nobject O O\ndoes O O\nn't O O\nhave O O\na O O\npaths O O\nproperty O O\n, O O\nthat O O\nis O O\nonly O O\nvalid O O\nfor O O\na O O\ngoogle.maps.PolygonOptions Name Name\nobject O O\n. O O\n\nChange O O\n: O O\n\nTo O O\n: O O\n\nproof O O\nof O O\nconcept O O\nfiddle Name Name\n\ncode O O\nsnippet O O\n: O O\n\nPage Name Name\nis O O\nrefreshed O O\nevery O O\n5 O O\nseconds O O\n. O O\n\nImages Name Name\nthat O O\nreceived O O\nfrom O O\n.php Name Name\nfile O O\nare O O\nappended O O\nto O O\nsome O O\n<li Name Name\n> Name Name\nelements O O\n. O O\n\nHere O O\nis O O\nthe O O\ncode O O\n: O O\n\nEverything O O\nworks O O\nas O O\nexpected O O\n. O O\n\nBut O O\nwhen O O\nreloadImages() Name Name\nis O O\ncalled O O\n, O O\nImages Name Name\nare O O\nflickering O O\nduring O O\nthe O O\nreload O O\n. O O\n\nHow O O\nto O O\nprevent O O\nthis O O\nflicker O O\n? O O\n\nPreload O O\nImages Name Name\n? O O\n\nHelp O O\nme O O\naddress O O\nthe O O\nflickering O O\n. O O\n\nyou O O\ncould O O\nuse O O\nthe O O\nfolowing O O\nmechanism O O\nof O O\npreload O O\nand O O\ncallback O O\n( O O\nis'n O O\ntested O O\nactually O O\n) O O\n\nYou O O\ncan O O\nuse O O\nhttps://github.com/desandro/imagesloaded O O\nplugin O O\nto O O\nload O O\nimages Name Name\ninto O O\ndisplay Name Name\n: Name Name\nnone Name Name\n; Name Name\ndiv Name Name\nand O O\nthen O O\nmove O O\nthem O O\nto O O\nyour O O\ndestionation O O\non O O\ncallback Name Name\n. O O\n\nI O O\nam O O\nusing O O\nGhost Name Name\nBlogging Name Name\nPlatform Name Name\n, O O\nand O O\nwhen O O\nI O O\ninsert O O\na O O\nimage Name Name\nit O O\nautomatically O O\nwraps O O\na O O\nimage Name Name\nin O O\na O O\np Name Name\ntag O O\n. O O\n\nI O O\nhave O O\na O O\nmax-width Name Name\nsetup O O\nfor O O\nthe O O\ncontainer O O\nwrapping O O\nthe O O\np Name Name\ntag O O\nand O O\nthe O O\nimg Name Name\n. O O\n\nI O O\nwant O O\nthe O O\nimg Name Name\nto O O\nbe O O\nlarger O O\nthan O O\nthe O O\ncontainer O O\n. O O\n\nI O O\ncan O O\nset O O\na O O\nwidth Name Name\nfor O O\nthe O O\nimg Name Name\nwhich O O\nis O O\nlarger O O\nwith O O\nwidth Name Name\n: Name Name\n62rem Name Name\n; Name Name\nHowever O O\nit O O\nno O O\nlonger O O\nis O O\nresponsive O O\nvs O O\nwidth Name Name\n: Name Name\n100% Name Name\n; Name Name\n\nI O O\nwant O O\nthe O O\nimg Name Name\nto O O\nresize O O\nas O O\nI O O\nresize O O\nthe O O\nbrowser Name Name\n, O O\nI O O\nwas O O\nhoping O O\nto O O\ndo O O\nit O O\nwithout O O\nmedia O O\nqueries O O\nbut O O\nif O O\nnecessary O O\nI O O\nwill O O\ndo O O\nso O O\n. O O\n\nI O O\nam O O\nalready O O\nchanging O O\nthe O O\nsize O O\nof O O\nall O O\nthe O O\np Name Name\ntags O O\nso O O\nthat O O\nmy O O\nblockquote Name Name\nis O O\nthe O O\nsize O O\nof O O\nthe O O\ncontainer O O\nsection O O\n, O O\nand O O\nI O O\nwant O O\nmy O O\nimage Name Name\nto O O\ndo O O\nthe O O\nsame O O\n, O O\nbut O O\nit O O\nis O O\njust O O\nthe O O\nsize O O\nof O O\nthe O O\np Name Name\ntag O O\n. O O\n\nMy O O\nmain O O\nconcern O O\nis O O\nmaking O O\nthe O O\nimg Name Name\nresponsive O O\nand O O\nlarger O O\n, O O\nI O O\ncan O O\nalready O O\nmake O O\nit O O\nlarger O O\non O O\nits O O\nown O O\nwith O O\na O O\nspecified O O\nwidth Name Name\n, O O\nbut O O\nit O O\nno O O\nlonger O O\nstays O O\nresponsive O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nCODE O O\n\nHTML Name Name\n\nCSS Name Name\n\nYou O O\nare O O\nsetting O O\n100% O O\nwidth Name Name\ntoo O O\nimage Name Name\n, O O\nbut O O\nalso O O\ngiving O O\nit O O\nborders Name Name\n. O O\n\nThis O O\ncauses O O\nproblem O O\n. O O\n\nYou O O\nneed O O\nto O O\nsubtract O O\namount O O\nof O O\nborder Name Name\nfrom O O\nimage Name Name\n. O O\n\nTry O O\n: O O\n\nFiddle Name Name\nhere O O\n. O O\n\nI O O\ndo O O\nn't O O\nthink O O\nyou O O\nshould O O\nhave O O\na O O\ndiv Name Name\nof O O\na O O\ncertain O O\nsize O O\nand O O\nand O O\nthen O O\nan O O\nelement O O\nwithin O O\nthat O O\nwhich O O\nthen O O\nbreaks O O\nout O O\nof O O\nthe O O\ndiv Name Name\nbecause O O\nyou O O\n've O O\nset O O\nit O O\nto O O\nbe O O\nlarger O O\nthen O O\nthe O O\n.container Name Name\n\nFirst O O\nthing O O\nI O O\nwould O O\ndo O O\nis O O\nreorganize O O\nthe O O\nway O O\nthat O O\ncontainer O O\nworks O O\n. O O\n\nHere O O\nis O O\na O O\nFIDDLE Name Name\nof O O\nsome O O\nbasic O O\nhtml Name Name\nto O O\nreference O O\n. O O\n\nThe O O\nsecond O O\nthing O O\nI O O\nwould O O\ndo O O\n- O O\nis O O\nask O O\na O O\nmore O O\ntargeted O O\nquestion O O\nabout O O\nremoving O O\nthe O O\nautomatic O O\np Name Name\ntag O O\nfrom O O\nthe O O\nimage Name Name\nin O O\na O O\nghost Name Name\nforum O O\n( O O\nassuming O O\nthey O O\nexist O O\nby O O\nnow O O\n) O O\n. O O\n\nIn O O\nWordPress Name Name\nthis O O\nhappens O O\nby O O\ndefault O O\nas O O\nwell O O\n. O O\n\nIt O O\nlooks O O\nsomething O O\nlike O O\nthis O O\nwith O O\na O O\nfunction O O\nrunning O O\na O O\nregular O O\nexpression O O\nsearch O O\nand O O\nreplace O O\n. O O\n\nI O O\nbet O O\nthere O O\nis O O\nsomething O O\nlike O O\nthis O O\nfor O O\nghost Name Name\n, O O\nor O O\nthere O O\nwill O O\nbe O O\nreally O O\nreally O O\nsoon O O\n- O O\nbecause O O\nit O O\n's O O\na O O\nhuge O O\npain O O\n- O O\nand O O\nalmost O O\nno O O\none O O\nactually O O\nputs O O\nimages Name Name\ninline O O\nanymore O O\n. O O\n\nAnd O O\nif O O\nthey O O\ndid O O\n, O O\nthey O O\nwould O O\nwant O O\nto O O\ncontrol O O\nwhen O O\nthis O O\nhappens O O\n. O O\n\nGood O O\nluck O O\n! O O\n\nI O O\nhope O O\nto O O\nplay O O\nwith O O\nGhost Name Name\nsoon O O\nand O O\nI O O\nbet O O\nthis O O\nwill O O\nbe O O\nthe O O\nfirst O O\nproblem O O\nI O O\nrun O O\ninto O O\nas O O\nwell O O\n. O O\n\nI O O\nhave O O\na O O\nroute O O\ndefined O O\nin O O\nnode/express Name Name\nthat O O\nhas O O\na O O\nres.render Name Name\n\nOn O O\nrendering O O\nthis O O\nindex O O\npage Name Name\n, O O\nI O O\nwant O O\nto O O\ncapture O O\nthis O O\nreq.user Name Name\nas O O\na O O\n$scope Name Name\nobject O O\nin O O\nthe O O\nangular Name Name\ncontroller O O\non O O\nthe O O\nfront O O\nend O O\n. O O\n\nHow O O\ncan O O\nthis O O\nbe O O\ndone O O\n? O O\n\nPlease O O\nprovide O O\ncode O O\nsnippets O O\nwith O O\nthe O O\nanswer O O\n. O O\n\nTo O O\naccomplish O O\nthis O O\n, O O\nyou O O\nfirst O O\nneed O O\nto O O\nadd O O\na O O\nline O O\nin O O\nJADE Name Name\nto O O\ncreate O O\na O O\nglobal Name Name\njavascript Name Name\nobject O O\nthat O O\nwill O O\nhold O O\nthe O O\nuser Name Name\nvalue O O\n, O O\ni.e O O\n. O O\n\nNow O O\nin O O\nyour O O\ncontroller O O\njust O O\ndo O O\nthis O O\n\nI O O\nhave O O\ndone O O\nthis O O\nfor O O\na O O\nfew O O\nprojects O O\n. O O\n\nAaron O O\n\nI O O\n'm O O\ntrying O O\nto O O\nset O O\nup O O\na O O\ndelegate O O\nthat O O\nhas O O\na O O\nlineedit Name Name\nwith O O\nsuggestions O O\nthat O O\nare O O\nread O O\nfrom O O\na O O\nmodel O O\n. O O\n\nSo O O\n, O O\nI O O\ntried O O\npassing O O\nthe O O\nmodel O O\nthat O O\ndelegate O O\nshould O O\nread O O\nthe O O\ninformation O O\nfrom O O\n, O O\nthis O O\nis O O\nnot O O\nworking O O\nsince O O\nafter O O\nthe O O\ndelgate O O\nis O O\nconstructed O O\n, O O\nthe O O\nmodel O O\nthat O O\nthe O O\nQCompleter Name Name\nis O O\nlooking O O\nat O O\ndoes O O\nn't O O\nnot O O\nshow O O\nthe O O\nexternal O O\nmodifications O O\nmade O O\nto O O\nrecived_model Name Name\n. O O\n\nSo O O\nit O O\ndoes O O\nonly O O\nwork O O\nmaking O O\nthe O O\nright O O\nsuggestions O O\nwhen O O\nthe O O\nrecived_model Name Name\nhas O O\nn't O O\nchanged O O\n.. O O\n. O O\n\nConsidering O O\nthat O O\nthe O O\ndelegates O O\nis O O\nbeing O O\nused O O\nto O O\nmodify O O\nthe O O\ncontents O O\nof O O\nrecived_model Name Name\n. O O\n\nI O O\nthink O O\nthere O O\nshould O O\nbe O O\na O O\nway O O\nto O O\naccess O O\nthe O O\ndata O O\nof O O\nthe O O\ncolumn Name Name\nI O O\nwant O O\nthe O O\ncompleter O O\nto O O\nget O O\nsuggestions O O\nfrom O O\n. O O\n\nI O O\nthink O O\nthis O O\ncould O O\nbe O O\ndone O O\nusing O O\na O O\n\" O O\nfor Name Name\n\" O O\nand O O\nthe O O\ndata O O\nfunction O O\nto O O\nset O O\nup O O\na O O\nnew O O\nQStringList Name Name\nthat O O\nconstains O O\nonly O O\nthe O O\ninformation O O\nfrom O O\nthe O O\ncolumn Name Name\nthat O O\nI O O\nwanted O O\nthe O O\ncompleter O O\nto O O\nuse O O\nas O O\nsuggestions O O\n. O O\n\nBut O O\nthis O O\nshow O O\nbe O O\nredone O O\nany O O\ntime O O\nother O O\nitem O O\nin O O\nthe O O\nview O O\nis O O\naccessed O O\n. O O\n\nI O O\n'm O O\nsame O O\nas O O\nstart O O\n, O O\nno O O\nidea O O\nhow O O\nto O O\nachieve O O\nthis O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n.. O O\n. O O\nHope O O\nyou O O\ncan O O\nhelp O O\n: O O\n\nand O O\nthe O O\nimplementation O O\n: O O\n\n. O O\n\n. O O\n\n. O O\n\nModelWithoutDuplicatesProxy Name Name\n\nImplementation O O\n: O O\n\nThere O O\nit O O\nis O O\nthe O O\ncode O O\nof O O\nthe O O\nduplicates O O\ndeleter O O\n. O O\n\nFrom O O\nreading O O\nthe O O\ndocumentation O O\n, O O\nyou O O\ncan O O\ndynamically O O\ntheme O O\nDrupal Name Name\nblocks Name Name\nand O O\nnodes Name Name\nby O O\nadding O O\ntemplate O O\nfiles O O\n: O O\n\" O O\npage-node-1.tpl Name Name\n\" O O\nor O O\n\" O O\nblock-modulename-2.tpl Name Name\n\" O O\n. O O\n\nHow O O\ndo O O\ni O O\nknow O O\nthe O O\ndelta Name Name\nvalue O O\n( O O\nin O O\nthis O O\ncase O O\n1 Name Name\nor O O\n2) Name Name\nto O O\ncreate O O\na O O\ntemplate O O\nfile O O\nfor O O\nnode Name Name\nor O O\nblock Name Name\n? O O\n\nDo O O\nthese O O\ndelta Name Name\nvalues O O\nkeep O O\nchanging O O\n? O O\n\nWhat O O\nassigns O O\nthese O O\ndelta Name Name\nvalues O O\nand O O\nwhen O O\n? O O\n\nGo O O\nto O O\nadmin/build/block Name Name\n, O O\nthen O O\nmove O O\ncursor Name Name\nover O O\nany O O\n' O O\nconfigure O O\n' O O\nlink O O\nin O O\nthe O O\nblock Name Name\nlist Name Name\n. O O\n\nYou O O\n'll O O\nsee O O\nfor O O\nexample O O\n' O O\nadmin/build/block/configure/views/news Name Name\n-block_2 Name Name\n' O O\npath O O\n. O O\n\nIt O O\nmeans O O\nthis O O\nblock Name Name\nprovided O O\nby O O\n' O O\nViews Name Name\n' O O\nmodule O O\nand O O\nhas O O\ndelta Name Name\n' O O\nnews-block_2 Name Name\n' O O\n\nNo O O\n\nModules O O\n\nI O O\n'm O O\nhaving O O\nan O O\nissue O O\nwith O O\nGulp Name Name\nI O O\njust O O\nsimply O O\nwant O O\nto O O\nprocess O O\nsass Name Name\nfiles O O\n, O O\noptimize O O\nimages Name Name\nand O O\nwatch O O\nchanges O O\non O O\nsaid O O\nsass Name Name\nfiles O O\n. O O\n\nFor O O\nsome O O\nreason O O\nit O O\ndoes O O\nrun O O\nthe O O\nsass Name Name\nand O O\nimagemin Name Name\ntasks O O\ncorrectly O O\nbut O O\nthen O O\nit O O\ntries O O\nto O O\nwatch O O\nand O O\nafter O O\nseveral O O\nseconds O O\nit O O\njus O O\nexits O O\ngulp Name Name\nand O O\nI O O\n'm O O\nback O O\na O O\ncommand O O\nline O O\nlike O O\nif O O\nI O O\nmanually O O\nstopped O O\nthe O O\ntasks O O\n. O O\n\nI O O\ndo O O\nn't O O\nget O O\nany O O\nerrors O O\nor O O\nwarnings O O\nit O O\njust O O\nends O O\n. O O\n\nThis O O\nis O O\nthe O O\ngulpfile.js Name Name\n: O O\n\nOn O O\ncommand O O\nline O O\nthis O O\nis O O\nall O O\nI O O\nsee O O\n: O O\n\nThen O O\nafter O O\napprox O O\n. O O\n\n20secs O O\nit O O\nexits O O\ngulp Name Name\n, O O\nI O O\ntried O O\nlooking O O\neverywhere O O\nand O O\nuse O O\nother O O\npost O O\nfixes O O\nand O O\nno O O\nluck O O\n. O O\n\nI O O\nhave O O\nwebsite O O\nin O O\nasp.net Name Name\nand O O\nhave O O\nits O O\nmobile Name Name\nversion O O\nas O O\nwell O O\n. O O\n\nI O O\nwant O O\nthat O O\nif O O\nuser O O\ntypes O O\nthis O O\nin O O\nmobile Name Name\n: O O\n\nhttp://example.com/ViewVacancy.aspx?ID=8674 O O\n\nthen O O\nhe O O\nis O O\ndirected O O\nto O O\n: O O\n\nhttp://m.example.com/vacancy.aspx?name=8674 O O\n\nI O O\nhave O O\nwritten O O\nfollowing O O\ncode O O\n: O O\n\nIt O O\nis O O\nworking O O\nwhen O O\nuser O O\ntypes O O\n\nhttp://example.com O O\n\nso O O\nuser O O\nis O O\nredirected O O\nto O O\n: O O\n\nhttp://m.example.com O O\n\nbut O O\nwhen O O\nuser O O\ntypes O O\n: O O\n\nhttp://example.com/viewvacancy.aspx?id=8674 O O\n\nIt O O\nis O O\nnot O O\nredirected O O\nto O O\n: O O\n\nhttp://m.example.com/vacancy.aspx?name=8674 O O\n\nPlease O O\nsuggest O O\nsolution O O\nto O O\nit O O\n. O O\n\nThe O O\nproblem O O\nis O O\nString.Replace() Name Name\n\nI O O\n'm O O\ntrying O O\nto O O\nget O O\nthe O O\nhang O O\nof O O\nusing O O\najax Name Name\nloads Name Name\n( O O\nmostly O O\nvia O O\njquery Name Name\n) O O\nto O O\nmake O O\nmy O O\nsite O O\nmore O O\nefficient O O\n. O O\n\nWondering O O\nif O O\nanyone O O\ncan O O\nprovide O O\nany O O\nsuggestions O O\nre O O\n\" O O\nbest O O\npractices O O\n\" O O\nfor O O\nusing O O\najax Name Name\n? O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\nsimplify O O\na O O\nscript O O\nfor O O\nmultiple O O\najax Name Name\ncalls O O\n? O O\n\nFor O O\nexample O O\n, O O\nI O O\ncurrently O O\nhave O O\nthe O O\nworking O O\nscript O O\n: O O\n\nThe O O\nscript O O\njust O O\ngets O O\nlonger O O\nand O O\nlonger O O\nwith O O\neach O O\nadditional O O\nfunction O O\n. O O\n\nIs O O\nthere O O\na O O\nsimpler O O\n, O O\nmore O O\nefficient O O\nway O O\nto O O\nwrite O O\nthis O O\nscript O O\nto O O\ncover O O\nmultiple O O\nload Name Name\nscripts O O\n? O O\n\nAlso O O\n, O O\nshould O O\nI O O\nbe O O\nusing O O\najax Name Name\nloads Name Name\nto O O\nreplace O O\nthe O O\nmajority O O\nof O O\nactual O O\nlinks O O\n? O O\n\nAssuming O O\nthat O O\nthe O O\nid Name Name\nmatches O O\nthe O O\nfile O O\nname O O\nthe O O\nscript O O\ncan O O\nbe O O\nsimplified O O\nto O O\n: O O\n\nThis O O\nscript O O\nsimply O O\nspecifies O O\neach O O\nid Name Name\nin O O\na O O\nsingle O O\nselector O O\nthat O O\nseparates O O\neach O O\nid Name Name\nwith O O\na O O\ncomma O O\n. O O\n\nThis O O\nwill O O\ncalls O O\nthe O O\nclick Name Name\nfunction O O\nto O O\nbe O O\nfired O O\nfor O O\neach O O\nelement O O\n. O O\n\nWith O O\nthe O O\nanonymous O O\nfunction O O\nattached O O\nto O O\nthe O O\nclick Name Name\nevent O O\n, O O\nthe O O\nid Name Name\nof O O\neach O O\nelement O O\nis O O\nobtained O O\nand O O\nconcatenated O O\nto O O\ncreate O O\nthe O O\nfile O O\nname O O\nwhich O O\nis O O\nthen O O\npassed O O\nto O O\nthe O O\nload Name Name\nfunction O O\n. O O\n\nIf O O\nthe O O\nid Name Name\ndoes O O\nn't O O\nalways O O\nmatch O O\nthe O O\nelement O O\nyou O O\ncould O O\nuse O O\nthe O O\nfollowing O O\napproach O O\n. O O\n\nHere O O\nis O O\na O O\nsuggestion O O\n, O O\nsince O O\nthe O O\ncode O O\nyou O O\nposted O O\nseems O O\nto O O\nhave O O\na O O\npattern O O\nbetween O O\nthe O O\nid Name Name\nand O O\nthe O O\nfilename O O\n: O O\n\nThis O O\nsuggestion O O\nuses O O\n.on() Name Name\nand O O\nyou O O\njust O O\nneed O O\nto O O\nadd O O\na O O\ncommonParentElementHere Name Name\n, O O\na O O\nid Name Name\nor O O\na O O\nclass O O\nof O O\nthe O O\ncommon O O\nparent O O\nof O O\nthose O O\nelements O O\n. O O\n\nAnother O O\noption O O\nis O O\nto O O\nuse O O\na O O\nclass O O\non O O\nall O O\nelements O O\nthat O O\nshould O O\nbe O O\nclickable O O\n, O O\nand O O\nthen O O\nuse O O\nthe O O\ncode O O\npassing O O\nthe O O\nid Name Name\nto O O\nthe O O\nhtml Name Name\nfile O O\nname O O\n, O O\nlike O O\n: O O\n\nQuestion O O\nI O O\nhave O O\nis O O\nI O O\nam O O\ntrying O O\nto O O\nupdate O O\nmy O O\ngui O O\nwith O O\na O O\ntimer Name Name\n( O O\nthis O O\nworks O O\nand O O\nchanges O O\nthe O O\nimage Name Name\nfor O O\nmypic Name Name\nbut O O\n, O O\nit O O\nwill O O\nnot O O\nupdate O O\nmytext Name Name\nlabel O O\nfor O O\nsome O O\nweird O O\nreason O O\nany O O\nhelp O O\nwould O O\nbe O O\nvery O O\nmuch O O\nappreciated O O\n! O O\n\n* O O\nI O O\nshould O O\nadd O O\nthat O O\nmytext Name Name\nis O O\nn't O O\nshowing O O\nup O O\nat O O\nall O O\non O O\nmy O O\ngui O O\nsince O O\nintroducing O O\nthe O O\ntimer Name Name\n... O O\nbut O O\nmypic Name Name\ndoes O O\n??? O O\n? O O\n\nUPDATE O O\nwith O O\nsuggestions O O\nstill O O\nis O O\nn't O O\nworking. O O\n. O O\n\nHere O O\n's O O\na O O\nworking O O\nsolution O O\nwhich O O\nyou O O\ncan O O\ntailor O O\nto O O\nyour O O\nuse O O\n. O O\n\nThe O O\ncause O O\nseemed O O\nto O O\nbe O O\nthe O O\nway O O\nyou O O\nhad O O\ntried O O\nto O O\ndisplay O O\nthe O O\nComponents Name Name\nrather O O\nthan O O\nthe O O\ncode O O\nin O O\nyour O O\naction Name Name\nlistener Name Name\n. O O\n\nYour O O\napproach O O\nwas O O\njust O O\nreplacing O O\nmyText Name Name\nwith O O\nmyPic Name Name\nwhen O O\nyou O O\ninitially O O\nset O O\nup O O\nthe O O\nJFrame Name Name\n. O O\n\nInstead O O\nyou O O\nneed O O\nto O O\nuse O O\na O O\nlayout Name Name\nmanager Name Name\n. O O\n\nThe O O\nexample O O\nI O O\n've O O\ngiven O O\nis O O\nwith O O\noverlaying O O\nusing O O\nJLayeredPane Name Name\n. O O\n\nYou O O\nmay O O\nwish O O\nto O O\nuse O O\na O O\nlayout Name Name\nmanager Name Name\ninstead O O\nif O O\nthis O O\nis O O\nnot O O\nthe O O\ndesired O O\noutcome O O\n, O O\nsee O O\nthe O O\nOracle Name Name\nTutorial O O\non O O\nusing O O\nlayout Name Name\nmanagers Name Name\n. O O\n\nWidget Name Name\nclass O O\n\nWeather Name Name\nclass O O\nfor O O\ndemonstration O O\npurposes O O\n\nI O O\nhave O O\na O O\nproject O O\nin O O\nReact Name Name\nwhere O O\nI O O\n'm O O\ntrying O O\nto O O\nstructure O O\nmy O O\ndatabase O O\nusing O O\nFirebase Name Name\n. O O\n\nI O O\nwant O O\nto O O\ncreate O O\na O O\nreference O O\nfor O O\na O O\nchild O O\nnode O O\n, O O\nbut O O\nI O O\nkeep O O\ngetting O O\n' O O\nTypeError O O\n: O O\nmessagesRef.child O O\nis O O\nnot O O\na O O\nfunction O O\n' O O\nand O O\nthe O O\ncode O O\nerrors O O\nout O O\non O O\nline O O\n3 O O\n. O O\n\nBelow O O\nis O O\nmy O O\ncode O O\nfor O O\nthe O O\nreferences O O\n: O O\n\nAm O O\nI O O\nmaking O O\nthese O O\nreferences O O\ncorrectly O O\n? O O\n\nI O O\nfollowed O O\nthe O O\nFirebase Name Name\ndocumentation O O\nto O O\na O O\ntee O O\nand O O\nI O O\nca O O\nn't O O\nfind O O\na O O\nsolution O O\n. O O\n\nI O O\nbelieve O O\nthe O O\nissue O O\nis O O\nthat O O\n\nvar Name Name\nmessagesRef Name Name\n= Name Name\nfirebase.database().ref('messages').limitToLast(30) Name Name\n; Name Name\n\nis O O\nof O O\ntype O O\n\nfirebase.database.Query Name Name\n\nand O O\nnot O O\nof O O\ntype O O\n\nfirebase.database.Reference Name Name\n\nThe O O\nmethod O O\nchild Name Name\ncan O O\nonly O O\nbe O O\ncalled O O\non O O\nReference Name Name\ntype O O\nobjects O O\n, O O\nso O O\ninstead O O\nyou O O\ncould O O\nuse O O\n\nvar Name Name\nmessagesRef Name Name\n= Name O\nfirebase.database().ref('messages/users').limitToLast(30) Name Name\n; Name Name\n\nThis O O\nis O O\nassuming O O\nyour O O\ndatabase O O\nstructure O O\nis O O\nlike O O\nthis O O\n: O O\n\nHow O O\ncan O O\ni O O\nuse O O\n\" O O\nPlain O O\nC Name Name\n\" O O\nto O O\nprogram O O\nArduino Name Name\nwithout O O\nusing O O\nthe O O\n\" O O\nProcessing Name Name\nprogramming O O\nlanguage O O\n\" O O\n? O O\n\nI O O\nwant O O\nto O O\nimprove O O\nmy O O\nC Name Name\nprogramming O O\nskills O O\nby O O\nusing O O\nit O O\nwith O O\nArduino Name Name\nfor O O\nembedded O O\nsystems O O\n. O O\n\nI O O\nhave O O\nvery O O\nlimited O O\nability O O\nto O O\ncode O O\nin O O\nC++ Name Name\n, O O\nand O O\nI O O\nwould O O\nlove O O\nto O O\nwrite O O\nmy O O\nown O O\nArduino Name Name\nLibrary O O\nusing O O\n\" O O\nC Name Name\n\" O O\n, O O\nto O O\navoid O O\nusing O O\nclasses O O\nand O O\nOOP O O\n. O O\n\nProcessing Name Name\nlooks O O\nlike O O\nJava Name Name\nto O O\nme O O\n, O O\nand O O\ni O O\nwant O O\nto O O\nuse O O\n\" O O\nC Name Name\npointers Name Name\n\" O O\nto O O\ngain O O\nmore O O\npractical O O\nknowledge O O\n. O O\n\nThe O O\nthing O O\nis O O\nthat O O\nArduino Name Name\ndoes O O\nn't O O\nuse O O\nProcessing Name Name\n. O O\n\nProcessing Name Name\nis O O\n( O O\nwas O O\n? O O\n) O O\na O O\nseparate O O\nprogramming O O\nlanguage O O\nwhich O O\nwas O O\ndeveloped O O\nindependently O O\nfor O O\na O O\ndifferent O O\npurpose O O\n. O O\n\nThe O O\nlanguage O O\nresembles O O\nC Name Name\nand O O\nC++ Name Name\nvery O O\nclosely O O\n, O O\nso O O\nclosely O O\nthat O O\nit O O\n's O O\nalmost O O\nidentical O O\n. O O\n\nProgramming O O\nthe O O\nArduino Name Name\n, O O\nhowever O O\n, O O\nis O O\naccomplished O O\nusing O O\na O O\n( O O\nn O O\nunfortunate O O\n) O O\nmixture O O\nof O O\nC Name Name\nand O O\nC++ Name Name\n, O O\nwith O O\na O O\nset O O\nof O O\ncustom O O\nlibraries O O\n( O O\nwhich O O\nare O O\nsimilar O O\nin O O\nstyle O O\nto O O\nthat O O\nof O O\nProcessing Name Name\n) O O\n. O O\n\nThese O O\nlibraries O O\nare O O\nwritten O O\nin O O\nC Name Name\nand O O\nC++ Name Name\nthemselves O O\n, O O\nand O O\nthey O O\nare O O\nonly O O\ngood O O\nfor O O\nmaking O O\none O O\n's O O\ncode O O\nmore O O\nportable O O\nacross O O\ndifferent O O\nMCU Name Name\ntypes O O\n. O O\n\nUsing O O\nthem O O\nis O O\nnot O O\nstrictly O O\nnecessary O O\nfor O O\nprogramming O O\nthe O O\nAVR Name Name\nMCU Name Name\n. O O\n\nIn O O\nfact O O\n, O O\nthe O O\nlibraries O O\nhave O O\nquite O O\na O O\nfew O O\ndrawbacks O O\n( O O\nthe O O\ncode O O\nis O O\nbig O O\n, O O\ninherently O O\nslow O O\nand O O\nugly O O\n, O O\namongst O O\nothers O O\n) O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\nuse O O\nplain O O\nol O O\n' O O\nC Name Name\nfor O O\nprogramming O O\nthe O O\nArduino Name Name\n, O O\nthen O O\njust O O\ngo O O\nahead O O\nand O O\ndo O O\nso O O\n. O O\n\nGrab O O\nthe O O\nreference O O\nPDF Name Name\nfrom O O\nAtmel Name Name\n's O O\nsite O O\nfor O O\nyour O O\nparticular O O\nMCU Name Name\n, O O\nlearn O O\nthe O O\nspecial O O\nregisters Name Name\n( O O\nI/O O O\n, O O\ntimers O O\n, O O\netc O O\n. O O\n) O O\n, O O\ninstall O O\nthe O O\navr-gcc Name Name\ntoolchain Name Name\non O O\nyour O O\ncomputer O O\n, O O\nand O O\nuse O O\navr-gcc Name Name\n, O O\navr-objcopy Name Name\nand O O\navrdude Name Name\nto O O\ncompile O O\nand O O\ninstall O O\nyour O O\nprograms O O\n. O O\n\nThere O O\nalso O O\nhappens O O\nto O O\nbe O O\na O O\nC-only Name Name\nlibrary O O\nwhich O O\nfollows O O\nthis O O\nkind O O\nof O O\nconvention O O\n. O O\n\nIt O O\ndoes O O\nn't O O\nprovide O O\nas O O\nmuch O O\nabstraction O O\nas O O\nthe O O\nstock O O\nArduino Name Name\nlibrary O O\nhas O O\n, O O\nbecause O O\nit O O\n's O O\nlower-level O O\n, O O\nbut O O\nyou O O\ncan O O\nhave O O\na O O\nlook O O\nat O O\nit O O\nand O O\nsee O O\nhow O O\none O O\ncan O O\naccomplish O O\nbasic O O\nalgorithms O O\nwithout O O\nthe O O\ndefault O O\nlibraries O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n\nI O O\nam O O\nunable O O\nto O O\nget O O\nthe O O\nUid Name Name\nbecause O O\nof O O\ndifferent O O\nnamespace O O\nprobably O O\n, O O\nsame O O\ngoes O O\nfor O O\nav:Canvas.Top Name Name\n. O O\n\nHow O O\nto O O\nget O O\nthese O O\nattributes O O\n? O O\n\n-TIA O O\n\nFirst O O\n, O O\nadd O O\nall O O\nthe O O\nnamespaces Name Name\n\nNow O O\n, O O\nif O O\nyou O O\nwant O O\nto O O\ncheck O O\nfor O O\nattributes O O\nand O O\nnodes O O\nregardless O O\nof O O\nthe O O\nnamespace Name Name\nyou O O\ncould O O\nsimply O O\nvisit O O\neach O O\nnode O O\nand O O\nthen O O\nloop O O\nthrough O O\nits O O\nattributes O O\nto O O\nfind O O\nout O O\nthe O O\nvalue O O\n. O O\n\nAs O O\nlong O O\nas O O\nyou O O\nadd O O\nthe O O\npath O O\nyou O O\nwant O O\nto O O\nvisit O O\nin O O\nSelectSingleNode Name Name\nand O O\nyour O O\nnamespaces Name Name\nare O O\ndeclared O O\nyou O O\nshould O O\nbe O O\nable O O\nto O O\nrun O O\nthrough O O\nany O O\nnode O O\nand O O\nget O O\nany O O\nvalue O O\nyou O O\nwant O O\n. O O\n\nTry O O\nthis O O\n\nI O O\nhave O O\nSaved O O\na O O\nlink O O\nin O O\ndatabase O O\nand O O\nthen O O\ni O O\nneed O O\nto O O\nview O O\nthat O O\nlink O O\nin O O\nview O O\nin O O\nasp.net Name Name\nmvc Name Name\nfor O O\nexample O O\nhttps://www.google.com O O\n\nJust O O\nprint O O\nthe O O\nURL O O\n: O O\n\nThe O O\n@Url Name Name\nhelpers O O\nare O O\nfor O O\nlinks O O\npointing O O\ninto O O\nthe O O\napplication O O\n. O O\n\nSimple O O\nquestion O O\n: O O\nwhere O O\ndo O O\nthe O O\ntableView Name Name\nand O O\nsection Name Name\narguments O O\nget O O\npassed O O\nfrom O O\n? O O\n\nThe O O\nactual O O\ncode O O\nin O O\nthe O O\nmethod O O\nreturn Name Name\n[ Name Name\nself.listData Name Name\ncount Name Name\n] Name Name\n; Name Name\ndoes O O\nn't O O\neven O O\nmention O O\nthem O O\n. O O\n\nHere O O\n's O O\nmy O O\ninterface O O\ncode O O\n: O O\n\nAnd O O\nthis O O\nis O O\nall O O\nthe O O\nimplementation O O\ncode O O\n: O O\n\nI O O\njust O O\nwant O O\nto O O\nknow O O\nhow O O\ndoes O O\nthe O O\nmethod O O\n( Name Name\nNSInteger Name Name\n) Name Name\ntableView Name Name\n: Name Name\n( Name Name\nUITableView Name Name\n* Name Name\n) Name Name\nnumberOfRowsInSection Name Name\n: Name Name\nreceive O O\nthose O O\narguments O O\n? O O\n\nOf O O\ncourse O O\nthis O O\nhappens O O\neverywhere O O\n; O O\nI O O\njust O O\nwant O O\nto O O\nunderstand O O\nit O O\n. O O\n\nThe O O\nSimple_TableViewController Name Name\nclass O O\nis O O\nlikely O O\nmeant O O\nto O O\nmanage O O\na O O\nsingle O O\ntable Name Name\nwith O O\na O O\nsingle O O\nsection O O\n. O O\n\nGiven O O\nthat O O\n, O O\nthe O O\ntableView Name Name\nand O O\nsection Name Name\nparameters O O\nare O O\nn't O O\nimportant O O\nbecause O O\nthey O O\ncan O O\nonly O O\nbe O O\none O O\nthing O O\n: O O\na O O\npointer Name Name\nto O O\nthe O O\ntable Name Name\nand O O\n0 Name Name\n, O O\nrespectively O O\n. O O\n\nYour O O\nview O O\ncontroller O O\nclass O O\nis O O\nadding O O\nsupport O O\nfor O O\nthese O O\ncallback O O\nmethods O O\nthrough O O\nUITableViewDelegate Name Name\nand O O\nUITableViewDataSource Name Name\n. O O\n\nYou O O\nare O O\nadding O O\nthis O O\nsupport O O\nin O O\nyour O O\n.h Name Name\nfile O O\nthrough O O\n<UITableViewDelegate, Name Name\nUITableViewDataSource> Name Name\n. O O\n\nThese O O\nclasses O O\nare O O\nbuilt O O\nin O O\nto O O\nthe O O\nCocoa Name Name\nTouch Name Name\nframework O O\nand O O\nyou O O\nare O O\njust O O\nusing O O\nthem O O\n. O O\n\nWhen O O\nthe O O\ntable Name Name\nis O O\n( O O\nre O O\n) O O\nloaded O O\n, O O\nthis O O\ncallback O O\nmethods O O\nare O O\ncalled O O\nif O O\nyou O O\nhave O O\ndefined O O\nthem O O\n( O O\nsome O O\nare O O\nrequired O O\n, O O\nothers O O\nare O O\noptional O O\n) O O\n. O O\n\nFor O O\nexample O O\n. O O\n\nI O O\nhave O O\nmultiple O O\nclasses O O\nas O O\n: O O\nInventory Name Name\n, O O\nProduct Name Name\n, O O\nSales Name Name\netc O O\n. O O\n\nNow O O\nmy O O\nrequirement O O\nis O O\nto O O\nput O O\nall O O\nabove O O\ntypes O O\nin O O\na O O\nsingle O O\nmap Name Name\ncontainer O O\n. O O\n\nI O O\ndo O O\nn't O O\nwant O O\nto O O\ncreate O O\nmultiple O O\nmaps Name Name\nfor O O\nputting O O\nabove O O\neach O O\nobject O O\nvalues O O\n. O O\n\nIf O O\nall O O\nyour O O\nclasses O O\ncan O O\nimplement O O\nthe O O\nsame O O\ninterface O O\n, O O\nthen O O\nyou O O\ncan O O\nstore O O\nthem O O\nall O O\nin O O\nthe O O\nsame O O\ncontainer O O\n. O O\n\nOtherwise O O\nyou O O\nwould O O\nhave O O\nto O O\nuse O O\nObject Name Name\n.. O O\n. O O\n\nMore O O\ngenerally O O\n- O O\nwhy O O\ndo O O\nyou O O\nnot O O\nwant O O\nto O O\nuse O O\nmultiple O O\nmaps Name Name\n? O O\n\nSet O O\nthe O O\nvalue O O\ntype O O\nas O O\nObject Name Name\n: O O\n\nOr O O\n, O O\nif O O\nInventory Name Name\n, O O\nProduct Name Name\n, O O\nSales Name Name\n, O O\nand O O\nwhatever O O\nelse O O\nis O O\ngoing O O\ninto O O\nthe O O\nmap Name Name\nshare O O\na O O\nsuperclass O O\nor O O\nimplement O O\nthe O O\nsame O O\ninterface O O\n, O O\nthen O O\nset O O\nthe O O\nvalue O O\ntype O O\nas O O\nthat O O\n: O O\n\nI O O\nam O O\nusing O O\na O O\nSKTextureAtlas Name Name\nto O O\nanimate O O\na O O\nSKSpriteNode Name Name\n. O O\n\nThe O O\nanimation O O\nworks O O\n, O O\nbut O O\nit O O\nlooks O O\nweird O O\nbecause O O\nfor O O\nsome O O\nreason O O\nthe O O\nsprite O O\n's O O\nheight O O\nis O O\nchanging O O\nseveral O O\ntimes O O\nin O O\nthe O O\nanimation O O\n. O O\n\nThis O O\nalso O O\ncauses O O\nthe O O\ny Name Name\nposition O O\nto O O\nchange O O\nas O O\nwell O O\n. O O\n\nEverything O O\nelse O O\nremains O O\nthe O O\nsame O O\nexcept O O\nfor O O\nthe O O\nheight O O\nand O O\nthe O O\ny Name Name\n. O O\n\nThe O O\nonly O O\nthing O O\nI O O\ncan O O\nthink O O\nof O O\nis O O\nthere O O\nare O O\ndifferent O O\namounts O O\nof O O\ntransparent O O\npixels O O\nwithin O O\neach O O\nframe O O\n. O O\n\nEach O O\nimage O O\nis O O\nthe O O\nsame O O\nsize O O\nthough O O\n. O O\n\nEven O O\nwhen O O\nI O O\nuse O O\nSKAction.animateWithTextures(atlasFrames,timePerFrame:0.1,resize:true,restore:false) Name Name\n, O O\nwith O O\nresize Name Name\nset O O\nto O O\ntrue Name Name\nand O O\nfalse Name Name\n, O O\nthe O O\nproblem O O\npersists O O\n. O O\n\nI O O\nheard O O\nabout O O\nthis O O\nissue O O\nwith O O\ntextures Name Name\n. O O\n\nI O O\nrecommend O O\nyou O O\nto O O\nmake O O\nall O O\ntextures Name Name\nof O O\nsame O O\nsize O O\nand O O\nadd O O\nbackground O O\nfor O O\nall O O\nimages Name Name\nof O O\n1% Name Name\nalpha Name Name\n( O O\nit O O\nwont O O\nbe O O\nvisible O O\nbut O O\nit O O\nwill O O\nbe O O\nwhere O O\n) O O\n. O O\n\nThis O O\nis O O\nhappening O O\nbecause O O\ninvisible O O\nbackground O O\nis O O\ncut O O\n. O O\n\nYou O O\ncan O O\nwatch O O\nthis O O\nguide O O\nfor O O\nmore O O\ninformation O O\n: O O\nhttps://www.youtube.com/watch?v=TDwSR3e6nN0 O O\n\nI O O\nam O O\nusing O O\nbelow O O\ncode O O\nsnippet O O\nto O O\ncreate O O\na O O\nsingleton O O\ninstance O O\nof O O\nConnection Name Name\nobject O O\nfor O O\na O O\nweb O O\napplication O O\nwhich O O\nwill O O\nbe O O\nused O O\nby O O\nmultiple O O\nusers O O\n. O O\n\nThis O O\nclass O O\nwill O O\nreturn O O\nsame O O\ninstance O O\nof O O\nconnection Name Name\nuntil O O\nand O O\nunless O O\nconnection Name Name\nis O O\nclosed O O\nor O O\nnull Name Name\n. O O\n\nI O O\nsuppose O O\nsame O O\nconnection Name Name\nwill O O\nbe O O\nshared O O\nby O O\nall O O\nusers O O\non O O\ndifferent O O\nmachine O O\nas O O\nit O O\nis O O\nstatic O O\none O O\n. O O\n\nIf O O\none O O\nuser O O\nis O O\nsetting O O\nauto O O\ncommit O O\nto O O\noff O O\nto O O\ncommit O O\ncouple O O\nof O O\nstatements O O\nas O O\ntransaction O O\n, O O\nwill O O\nthis O O\ncreate O O\nproblems O O\nfor O O\nother O O\nusers O O\nby O O\nrestricting O O\ntheir O O\nconnection O O\nto O O\ndisable O O\nautocommit O O\nas O O\nwell O O\nor O O\nby O O\ncommiting O O\ntheir O O\ntransaction O O\nin O O\nmid O O\nway O O\nif O O\none O O\nuser O O\nhas O O\nused O O\ncon.commit() Name Name\n? O O\n\nYes O O\n, O O\nit O O\nwill O O\ncause O O\nproblems O O\n. O O\n\nThey O O\nare O O\nsharing O O\nthe O O\nsame O O\ninstance O O\n, O O\nso O O\nthis O O\nstatement O O\nis O O\nwrong O O\n\nIt O O\nshould O O\nread O O\n\nSince O O\nall O O\nthe O O\nusers O O\n( O O\nthreads O O\n) O O\nare O O\nusing O O\nthe O O\nsame O O\ninstance O O\n, O O\nchanges O O\nmade O O\nto O O\nit O O\nby O O\none O O\nuser O O\nwill O O\naffect O O\nthe O O\nothers O O\n. O O\n\nAs O O\nShivam O O\nKalra O O\nsays O O\n, O O\nconnection Name Name\npools O O\nare O O\na O O\nbetter O O\ntool O O\n. O O\n\nMost O O\nprobably O O\nyour O O\nweb O O\nserver O O\nwill O O\nalready O O\nprovide O O\nthem O O\n, O O\nand O O\nif O O\nnot O O\nthere O O\nare O O\nthird O O\nparty O O\nlibraries O O\n. O O\n\nYes O O\n. O O\n\nYes O O\n. O O\n\nDatabase O O\nconnections O O\nare O O\nnot O O\nsafe O O\nfor O O\nuse O O\nby O O\nmultiple O O\nthreads O O\n, O O\nand O O\nshould O O\nnot O O\nin O O\ngeneral O O\neven O O\nbe O O\nmember O O\nfields O O\nlet O O\nalone O O\nsingletons O O\n. O O\n\nThey O O\nshould O O\nbe O O\nmethod-local O O\nvariables O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\neconomize O O\non O O\ncreating O O\n& O O\ndestroying O O\nthem O O\n, O O\nyou O O\nmust O O\nuse O O\na O O\nconnection Name Name\npool O O\n. O O\n\nI O O\n'm O O\nwriting O O\nan O O\nintegration O O\ntest O O\nwhere O O\nI O O\nwill O O\nbe O O\ninserting O O\na O O\nnumber O O\nof O O\nobjects O O\ninto O O\na O O\ndatabase O O\nand O O\nthen O O\nchecking O O\nto O O\nmake O O\nsure O O\nwhether O O\nmy O O\nmethod O O\nretrieves O O\nthose O O\nobjects O O\n. O O\n\nMy O O\nconnection O O\nto O O\nthe O O\ndatabase O O\nis O O\nthrough O O\nNHibernate Name Name\n... O O\nand O O\nmy O O\nusual O O\nmethod O O\nof O O\ncreating O O\nsuch O O\na O O\ntest O O\nwould O O\nbe O O\nto O O\ndo O O\nthe O O\nfollowing O O\n: O O\n\nHowever O O\n, O O\nI O O\n've O O\nrecently O O\nfound O O\nout O O\nabout O O\nTransactionScope Name Name\nwhich O O\napparently O O\ncan O O\nbe O O\nused O O\nfor O O\nthis O O\nvery O O\npurpose O O\n.. O O\n. O O\n\nSome O O\nexample O O\ncode O O\nI O O\n've O O\nfound O O\nis O O\nas O O\nfollows O O\n: O O\n\nI O O\nbelieve O O\nthat O O\nif O O\nI O O\ndo O O\nn't O O\ninclude O O\nthe O O\nline O O\ntxScope.Complete() Name Name\nthat O O\nthe O O\ndata O O\ninserted O O\nwill O O\nbe O O\nrolled O O\nback O O\n. O O\n\nBut O O\nunfortunately O O\nI O O\ndo O O\nn't O O\nunderstand O O\nhow O O\nthat O O\nis O O\npossible. O O\n. O O\nhow O O\ndoes O O\nthe O O\ntxScope Name Name\nobject O O\nkeep O O\na O O\ntrack O O\nof O O\nthe O O\ndeptAdapter Name Name\nand O O\nempAdapter Name Name\nobjects O O\nand O O\ntheir O O\ntransactions O O\non O O\nthe O O\ndatabase O O\n. O O\n\nI O O\nfeel O O\nlike O O\nI O O\n'm O O\nmissing O O\na O O\nbit O O\nof O O\ninformation O O\nhere O O\n.. O O\nam O O\nI O O\nreally O O\nable O O\nto O O\nreplace O O\nmy O O\nBeginTransaction() Name Name\nand O O\nRollbackTransaction() Name Name\ncalls O O\nby O O\nsurrounding O O\nmy O O\ncode O O\nusing O O\nTransactionScope Name Name\n? O O\n\nIf O O\nnot O O\n, O O\nhow O O\nthen O O\ndoes O O\nTransactionScope Name Name\nwork O O\nto O O\nroll O O\nback O O\ntransactions O O\n? O O\n\nEssentially O O\nTransactionScope Name Name\ndoes O O\nn't O O\ntrack O O\nyour O O\nAdapter Name Name\n's O O\n, O O\nwhat O O\nit O O\ndoes O O\nis O O\nit O O\ntracks O O\ndatabase O O\nconnections O O\n. O O\n\nWhen O O\nyou O O\nopen O O\na O O\nDB O O\nconnection O O\nthe O O\nconnections O O\nwill O O\nlooks O O\nif O O\nthere O O\nis O O\nan O O\nambient O O\ntransaction O O\n( O O\nTransaction Name Name\nScope Name Name\n) O O\nand O O\nif O O\nso O O\nenlist O O\nwith O O\nit O O\n. O O\n\nCaution O O\nif O O\nthere O O\nare O O\nmore O O\nthe O O\none O O\nconnection O O\nto O O\nthe O O\nsame O O\nSQL Name Name\nserver Name Name\nthis O O\nwill O O\nescalate O O\nto O O\na O O\nDistribtued O O\nTransaction O O\n. O O\n\nWhat O O\nhappens O O\nsince O O\nyou O O\n're O O\nusing O O\na O O\nusing O O\nblock O O\nyou O O\nare O O\nensuring O O\ndispose Name Name\nwill O O\nbe O O\ncalled O O\neven O O\nif O O\nan O O\nexception Name Name\noccurs O O\n. O O\n\nSo O O\nif O O\ndispose Name Name\nis O O\ncalled O O\nbefore O O\ntxScope.Complete() Name Name\nthe O O\nTransactionScope Name Name\nwill O O\ntell O O\nthe O O\nconnections O O\nto O O\nrollback O O\ntheir O O\ntransactions O O\n( O O\nor O O\nthe O O\nDTC O O\n) O O\n. O O\n\nThe O O\nTransactionScope Name Name\nclass O O\nworks O O\nwith O O\nthe O O\nTransaction Name Name\nclass O O\n, O O\nwhich O O\nis O O\nthread-specific O O\n. O O\n\nWhen O O\nthe O O\nTransactionScope Name Name\nis O O\ncreated O O\n, O O\nit O O\nchecks O O\nto O O\nsee O O\nif O O\nthere O O\nis O O\na O O\nTransaction Name Name\nfor O O\nthe O O\nthread O O\n; O O\nif O O\none O O\nexists O O\nthen O O\nit O O\nuses O O\nthat O O\n, O O\notherwise O O\n, O O\nit O O\ncreates O O\na O O\nnew O O\none O O\nand O O\npushes O O\nit O O\nonto O O\nthe O O\nstack Name Name\n. O O\n\nIf O O\nit O O\nuses O O\nan O O\nexisting O O\none O O\n, O O\nthen O O\nit O O\njust O O\nincrements O O\na O O\ncounter O O\nfor O O\nreleases O O\n( O O\nsince O O\nyou O O\nhave O O\nto O O\ncall O O\nDispose Name Name\non O O\nit O O\n) O O\n. O O\n\nOn O O\nthe O O\nlast O O\nrelease O O\n, O O\nif O O\nthe O O\nTransaction Name Name\nwas O O\nnot O O\ncomitted O O\n, O O\nit O O\nrolls O O\nback O O\nall O O\nthe O O\nwork O O\n. O O\n\nAs O O\nfor O O\nwhy O O\nclasses O O\nseem O O\nto O O\nmagically O O\nknow O O\nabout O O\ntransactions O O\n, O O\nthat O O\nis O O\nleft O O\nas O O\nan O O\nimplementation O O\ndetail O O\nfor O O\nthose O O\nclasses O O\nthat O O\nwish O O\nto O O\nwork O O\nwith O O\nthis O O\nmodel O O\n. O O\n\nWhen O O\nyou O O\ncreate O O\nyour O O\ndeptAdapter Name Name\nand O O\nemptAdapter Name Name\ninstances O O\n, O O\nthey O O\ncheck O O\nto O O\nsee O O\nif O O\nthere O O\nis O O\na O O\ncurrent O O\ntransaction O O\non O O\nthe O O\nthread O O\n( O O\nthe O O\nstatic O O\nCurrent Name Name\nproperty O O\non O O\nthe O O\nTransaction Name Name\nclass O O\n) O O\n. O O\n\nIf O O\nthere O O\nis O O\n, O O\nthen O O\nit O O\nregisters O O\nitself O O\nwith O O\nthe O O\nTransaction Name Name\n, O O\nto O O\ntake O O\npart O O\nin O O\nthe O O\ncommit/rollback O O\nsequence O O\n( O O\nwhich O O\nTransaction Name Name\ncontrols O O\n, O O\nand O O\nmight O O\npropogate O O\nto O O\nvarying O O\ntransaction O O\ncoordinators O O\n, O O\nsuch O O\nas O O\nkernel Name Name\n, O O\ndistributed O O\n, O O\netc O O\n. O O\n) O O\n. O O\n\nI O O\nam O O\ncreating O O\nan O O\nXML Name Name\nfile O O\nfrom O O\nscratch O O\nusing O O\nPHP Name Name\n's O O\nSimpleXML Name Name\nObject O O\n. O O\n\nBut O O\nI O O\nam O O\ngetting O O\nthis O O\nerror O O\nwhen O O\nvalidating O O\nthe O O\ndocument O O\n: O O\n' O O\nCan O O\nnot O O\nfind O O\ndeclaration O O\nof O O\nelement O O\n\" O O\nexample O O\n\" O O\n. O O\n' O O\n\nHere O O\nis O O\nthe O O\ncode O O\nthat O O\nis O O\ncreating O O\nthe O O\nXML Name Name\ndocument O O\n: O O\n\nThe O O\nXML Name Name\nthat O O\nis O O\nproduced O O\nis O O\nthis O O\n: O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\nappreciated O O\n! O O\n\nThanks O O\n\nAn O O\nXML Name Name\nfile O O\nneeds O O\nsomething O O\nto O O\nvalidate O O\nit O O\nagainst O O\n, O O\na O O\nDocument O O\nType O O\nDefinition O O\n( O O\nDTD O O\n) O O\nor O O\nan O O\nXML Name Name\nSchema Name Name\n. O O\n\nYou O O\n're O O\nnot O O\nproviding O O\nany O O\n, O O\nso O O\nvalidation O O\n( O O\ni.e O O\n. O O\n, O O\nchecking O O\nif O O\nthe O O\nstructure/content O O\nof O O\nthe O O\nXML Name Name\ndocument O O\nconforms O O\nto O O\nthe O O\nrules O O\nset O O\nforth O O\nin O O\nthe O O\nDTD/Schema O O\n) O O\nis O O\nimpossible O O\n. O O\n\nOr O O\ndid O O\nyou O O\njust O O\nwish O O\nto O O\ncheck O O\nfor O O\nwell-formedness O O\n( O O\ni.e O O\n. O O\n, O O\nchecking O O\nthat O O\nall O O\ntags O O\nare O O\nclosed O O\nproperly O O\n, O O\nthat O O\nthere O O\nare O O\nno O O\nillegal O O\ncharacters O O\nanywhere O O\netc O O\n. O O\n) O O\n? O O\n\nIn O O\norder O O\nto O O\nvalidate O O\nan O O\nXML Name Name\ndocument O O\n, O O\nyou O O\nneed O O\na O O\nDTD Name Name\n( O O\nor O O\nXML Name Name\nSchema Name Name\n) O O\nwhich O O\ndescribes O O\nhow O O\na O O\nvalid O O\ndocument O O\nlooks O O\nlike O O\n. O O\n\nYou O O\nneed O O\nwrite O O\na O O\nDTD Name Name\nexample.dtd Name Name\nfor O O\nyour O O\nXML Name Name\napplication O O\n, O O\nand O O\neither O O\ngive O O\nit O O\nto O O\nthe O O\nvalidator O O\nor O O\ninclude O O\nit O O\nin O O\nyour O O\nXML Name Name\ndocument O O\n, O O\nby O O\nprefixing O O\nit O O\nwith O O\n\nSince O O\nSimpleXML Name Name\ndoes O O\nnot O O\nsupport O O\ndoctypes Name Name\n, O O\nyou O O\nmust O O\neither O O\nmanually O O\nprefix O O\nthe O O\nabove O O\nline O O\nor O O\nuse O O\nphp Name Name\n's O O\nDOM Name Name\nextension O O\n. O O\n\nFortunately O O\n, O O\nyou O O\ncan O O\nimport O O\nthe O O\nSimpleXML Name Name\nfragment O O\nto O O\nDOM Name Name\nwith O O\ndom_import_simplexml Name Name\n. O O\n\nSay O O\nI O O\nhave O O\na O O\nClass O O\n: O O\n\nAnd O O\nI O O\nwant O O\nother O O\nobjects O O\nto O O\ninherit O O\nvariables O O\n& O O\nfunctions O O\nfrom O O\nit O O\n. O O\n\nThen O O\ninstantiate O O\nmy O O\nobjects O O\n: O O\n\nWhat O O\n's O O\nthe O O\nproper O O\nfunction O O\nto O O\ninclude O O\nFoo Name Name\nin O O\nBar Name Name\nand O O\nBaz Name Name\n? O O\n\nI O O\nalready O O\ndid O O\nBar.prototype Name Name\n= Name Name\nnew Name Name\nFoo() Name Name\n; Name Name\nbut O O\nit O O\nseems O O\nto O O\nfail O O\non O O\nour O O\nbeloved O O\nIE Name Name\n( O O\n< O O\n9 Name Name\n) O O\n. O O\n\nhave O O\na O O\nlook O O\nto O O\nClassy Name Name\nor O O\n, O O\nif O O\nyou O O\nlike O O\nRuby Name Name\nand O O\nwant O O\na O O\nmore O O\ncomplete O O\nsolution O O\nto O O\nJS.Class Name Name\n. O O\n\nThose O O\nlibraries O O\nhelps O O\nyou O O\nwith O O\nobject O O\norientation O O\nin O O\njavascript Name Name\nad O O\nhide O O\nprototype O O\nto O O\nthe O O\ndeveloper O O\n. O O\n\nHope O O\nthis O O\nhelps O O\n\nIf O O\nyou O O\nattach O O\nall O O\nthe O O\nproperties O O\nto O O\nthe O O\nprototype O O\n( O O\nwhich O O\nis O O\npreferable O O\n, O O\nat O O\nleast O O\nfor O O\nmethods O O\n) O O\n, O O\n\nthen O O\nassigning O O\nthe O O\nparent O O\n's O O\nprototype O O\nto O O\nthe O O\nchild O O\n's O O\nprototype O O\nis O O\nsufficient O O\n: O O\n\nHere O O\nwe O O\nused O O\nan O O\nintermediate O O\nconstructor O O\nfunction O O\nto O O\n\" O O\ndecouple O O\n\" O O\nthe O O\ntwo O O\nprototypes O O\n. O O\n\nOtherwise O O\nif O O\nyou O O\n'd O O\nchange O O\none O O\n, O O\nyou O O\n'd O O\nchange O O\nthe O O\nother O O\none O O\ntoo O O\n( O O\nas O O\nthey O O\nreference O O\nthe O O\nsame O O\nobject O O\n) O O\n. O O\n\nThis O O\nway O O\nis O O\nactually O O\npretty O O\npopular O O\nand O O\nused O O\nby O O\na O O\ncouple O O\nof O O\nlibraries O O\n. O O\n\nIf O O\nnot O O\n, O O\nyou O O\nhave O O\nto O O\ncall O O\nthe O O\nparent O O\n's O O\nconstructor O O\nfunction O O\ninside O O\nthe O O\nchild O O\n's O O\nconstructor O O\nfunction O O\n: O O\n\nThis O O\nis O O\nsomething O O\nyou O O\nalways O O\nshould O O\ndo O O\n, O O\nto O O\nassign O O\nthe O O\nproperties O O\nset O O\nup O O\nin O O\nthe O O\nconstructor O O\nfunction O O\nto O O\nthe O O\ncurrent O O\nobject O O\n. O O\n\nAn O O\nadditional O O\nremark O O\nto O O\nyour O O\nway O O\n: O O\n\nthis O O\nshould O O\nwork O O\n( O O\nalso O O\nin O O\nIE O O\nactually O O\n) O O\n, O O\nbut O O\nit O O\nhas O O\ntwo O O\nmajor O O\nflaws O O\n: O O\n\nAll O O\nthe O O\ninstance O O\nproperties O O\nset O O\nup O O\nin O O\nFoo Name Name\nwill O O\nbecome O O\nproperties O O\nshared O O\nby O O\nall O O\nBar Name Name\ninstances O O\n. O O\n\nWhat O O\nif O O\nFoo Name Name\nexpects O O\nsome O O\narguments O O\nthat O O\nare O O\nonly O O\navailable O O\nwhen O O\nyou O O\ncreate O O\na O O\nBar Name Name\ninstance O O\n? O O\n\nWhenever O O\nI O O\ntry O O\nto O O\nopen O O\nEclipse Name Name\nwith O O\na O O\nnew O O\nworkspace O O\n, O O\nit O O\nturn O O\nout O O\ngive O O\nempty O O\ndialog Name Name\nbox Name Name\nwith O O\nno O O\nmessage O O\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\nlimit O O\nthe O O\nbandwidth O O\nin O O\nNSURLSession Name Name\n? O O\n\nI O O\n'm O O\nmaking O O\nfile-sync-client Name Name\nfor O O\nmacOS Name Name\nlike O O\nDropbox/GoogleDrive/pCloud Name Name\nand O O\nthey O O\nall O O\nhave O O\nbandwidth O O\nlimiting O O\noptions O O\n, O O\nbut O O\nI O O\n'm O O\nnot O O\nsure O O\nhow O O\nto O O\nconfigure O O\nNSURLSession Name Name\nto O O\nrespect O O\nbandwidth O O\nlimiting O O\n. O O\n\nUnless O O\nApple Name Name\nhas O O\nadded O O\nsomething O O\nvery O O\nrecently O O\n, O O\nNSURLSession Name Name\nprovides O O\nno O O\nfacilities O O\nfor O O\nbandwidth O O\nlimiting O O\n. O O\n\nThe O O\nonly O O\nways O O\nI O O\n'm O O\naware O O\nof O O\nto O O\ndo O O\nthat O O\nare O O\n: O O\n\nUse O O\nlower-level O O\nAPIs Name Name\nthat O O\nallow O O\nyou O O\nto O O\nprovide O O\nyour O O\nown O O\nsockets O O\nand O O\nthen O O\nthrottle O O\nthe O O\ndata O O\nrate O O\nat O O\nthe O O\nTCP O O\nsocket O O\nlevel O O\n. O O\n\nProvide O O\nan O O\nin-app O O\nweb O O\nproxy O O\nand O O\nuse O O\nit O O\nfor O O\nall O O\noutgoing O O\nrequests O O\n. O O\n\nConfigure O O\nthe O O\nproxy O O\nto O O\nlimit O O\nthe O O\nbandwidth O O\nof O O\nall O O\nrequests O O\nthat O O\ngo O O\nthrough O O\nit O O\n. O O\n\nI O O\n'm O O\nnew O O\nto O O\nAndroid Name Name\nand O O\nMVP Name Name\nin-general O O\n, O O\nand O O\nI O O\n've O O\nbeen O O\ndoing O O\niOS Name Name\nprogramming O O\nfor O O\nthe O O\nlast O O\n1.5 O O\nyears O O\n, O O\nso O O\nI O O\nfind O O\ndelegate O O\npatterns O O\neasy O O\nto O O\ndigest O O\n. O O\n\nI O O\n've O O\nimplemented O O\nMVP Name Name\nin O O\nsuch O O\na O O\nway O O\nthat O O\nthe O O\nview O O\nconforms O O\nto O O\na O O\npresenter O O\n's O O\nprotocol O O\n, O O\nwhich O O\nlets O O\nthe O O\npresenter O O\ndisregard O O\nthe O O\nview O O\n's O O\nspecific O O\ntype O O\n, O O\nbut O O\nlets O O\nit O O\nknow O O\nthat O O\ncertain O O\nmethods O O\nare O O\na O O\ngiven O O\nand O O\nthus O O\nokay O O\nto O O\ncall O O\non O O\nthe O O\n\" O O\nview O O\n. O O\n\" O O\n\nI O O\n've O O\nbeen O O\nreading O O\nvarious O O\nMVP Name Name\nguides O O\n, O O\nand O O\nall O O\nof O O\nthe O O\nMosby Name Name\ntutorials O O\n, O O\nand O O\nI O O\n'm O O\nnot O O\nsure O O\nI O O\nagree O O\nwith O O\nsome O O\nof O O\nit O O\n. O O\n\nIs O O\nthe O O\npattern O O\nI O O\n've O O\nimplemented O O\nkosher O O\n? O O\n\nI O O\n'd O O\nlike O O\nsome O O\nfeedback O O\nso O O\nI O O\ndo O O\nn't O O\nkeep O O\nheading O O\nin O O\na O O\nbad O O\ndirection O O\n, O O\nif O O\nthat O O\nis O O\nindeed O O\nwhat O O\nI O O\n'm O O\ndoing O O\n.. O O\n. O O\n\nFor O O\nexample O O\n, O O\n\nBase O O\nPresenter Name Name\n: O O\n\nI O O\nthen O O\nsubclass O O\nthis O O\ninto O O\nthe O O\nfollowing O O\n: O O\n\nPhotoRecyclerPresenter Name Name\n: O O\n\nAnd O O\nit O O\ncommunicates O O\nwith O O\nthe O O\nview O O\n: O O\n\nPhotoRecyclerFragment Name Name\n: O O\n\nThis O O\nlets O O\nme O O\ndefine O O\na O O\nset O O\nof O O\nrequirements O O\na O O\nview O O\nneeds O O\nto O O\nconform O O\nto O O\nin O O\norder O O\nto O O\nutilize O O\nthe O O\nsingleton O O\npresenter O O\n, O O\nwhile O O\nkeeping O O\nthe O O\npresenter O O\nagnostic O O\nabout O O\nwhat O O\nviews O O\nuse O O\nit O O\n, O O\nas O O\nlong O O\nas O O\nthey O O\nconform O O\nto O O\nits O O\nprotocol O O\n. O O\n\nSo O O\nfar O O\nin O O\nmy O O\npractice O O\nproject O O\nit O O\nseems O O\nto O O\nwork O O\nfine O O\n, O O\nbut O O\nI O O\nca O O\nn't O O\nseem O O\nto O O\nfind O O\nany O O\nresources O O\nwhere O O\nwhat O O\nI O O\n'm O O\ndoing O O\nis O O\nrecommended O O\nas O O\nfar O O\nas O O\nMVP Name Name\ngoes O O\n, O O\nand O O\nI O O\nhave O O\nenough O O\nself-doubt O O\nthat O O\nI O O\nfigured O O\nI O O\n'd O O\nask O O\nmy O O\nfirst O O\nStackOverflow Name Name\nquestion O O\n. O O\n\nCan O O\nanyone O O\nwho O O\nhas O O\nexperience O O\nwith O O\nMVP Name Name\nshed O O\nsome O O\nlight O O\non O O\nthis O O\n? O O\n\nAlso O O\n, O O\nif O O\nI O O\n'm O O\nasking O O\nin O O\nthe O O\nwrong O O\nplace O O\n, O O\nfeel O O\nfree O O\nto O O\npoint O O\nme O O\nto O O\nthe O O\ncorrect O O\nplace O O\nto O O\npost O O\nthis O O\n. O O\n\nThanks O O\n:) O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\ncode O O\nfor O O\na O O\nCUDA Name Name\nprogram O O\n: O O\n\nin O O\nwhich O O\nevery O O\nthread O O\nwill O O\nprint O O\nits O O\nthreadIdx.x Name Name\nand O O\nblockIdx.x Name Name\n. O O\n\nOne O O\npossible O O\noutput O O\nof O O\nthis O O\nprogram O O\nis O O\nthis O O\n: O O\n\nRunning O O\nthe O O\nprogram O O\nseveral O O\ntimes O O\nI O O\nget O O\nsimilar O O\nresults O O\n, O O\nexcept O O\nthat O O\nblock O O\norder O O\nis O O\nrandom O O\n. O O\n\nFor O O\nexample O O\n, O O\nin O O\nthe O O\nabove O O\noutput O O\nwe O O\nhave O O\nthis O O\nblock O O\norder O O\n0 Name Name\n, O O\n2 Name Name\n, O O\n3 Name Name\n, O O\n1 Name Name\n. O O\n\nRunning O O\nthe O O\nproblem O O\nagain O O\nI O O\nget O O\n1 Name Name\n, O O\n2 Name Name\n, O O\n3 Name Name\n, O O\n0 Name Name\n. O O\n\nThis O O\nis O O\nexpected O O\n. O O\n\nHowever O O\n, O O\nthe O O\nthread O O\norder O O\nin O O\nevery O O\nblock O O\nis O O\nalways O O\n0 Name Name\n, O O\n1 Name Name\n, O O\n2 Name Name\n, O O\n3 Name Name\n. O O\n\nWhy O O\nis O O\nthis O O\nhappening O O\n? O O\n\nI O O\nthought O O\nit O O\nwould O O\nbe O O\nrandom O O\ntoo O O\n. O O\n\nI O O\ntried O O\nto O O\nchange O O\nmy O O\ncode O O\nto O O\nforce O O\nthread O O\n0 Name Name\nin O O\nevery O O\nblock O O\nto O O\ntake O O\nlonger O O\nto O O\nexecute O O\n. O O\n\nI O O\ndid O O\nit O O\nlike O O\nthis O O\n: O O\n\nI O O\nwould O O\nexpect O O\nthread O O\norder O O\nto O O\nbe O O\n1 Name Name\n, O O\n2 Name Name\n, O O\n3 Name Name\n, O O\n0 Name Name\n. O O\n\nHowever O O\n, O O\nI O O\ngot O O\na O O\nsimilar O O\nresult O O\nto O O\nthe O O\none O O\nI O O\nhave O O\nshown O O\nabove O O\nwhere O O\nthread O O\norder O O\nwas O O\nalways O O\n0 Name Name\n, O O\n1 Name Name\n, O O\n2 Name Name\n, O O\n3 Name Name\n. O O\n\nWhy O O\nis O O\nthis O O\nhappening O O\n? O O\n\nWith O O\n4 O O\nthreads O O\nper O O\nblock O O\nyou O O\nare O O\nonly O O\nlaunching O O\none O O\nwarp O O\nper O O\nblock O O\n. O O\n\nA O O\nwarp O O\nis O O\nthe O O\nunit O O\nof O O\nexecution O O\n( O O\nand O O\nscheduling O O\n, O O\nand O O\nresource O O\nassignment O O\n) O O\nin O O\nCUDA Name Name\n, O O\nnot O O\na O O\nthread O O\n. O O\n\nCurrently O O\n, O O\na O O\nwarp O O\nconsists O O\nof O O\n32 O O\nthreads O O\n. O O\n\nThis O O\nmeans O O\nthat O O\nall O O\n4 O O\nof O O\nyour O O\nthreads O O\nper O O\nblock O O\n( O O\nsince O O\nthere O O\nis O O\nno O O\nconditional O O\nbehavior O O\nin O O\nthis O O\ncase O O\n) O O\nare O O\nexecuting O O\nin O O\nlockstep O O\n. O O\n\nWhen O O\nthey O O\nreach O O\nthe O O\nprintf Name Name\nfunction O O\ncall O O\n, O O\nthey O O\nall O O\nexecute O O\nthe O O\ncall O O\nto O O\nthat O O\nfunction O O\nin O O\nthe O O\nsame O O\nline O O\nof O O\ncode O O\n, O O\nin O O\nlockstep O O\n. O O\n\nSo O O\nthe O O\nquestion O O\nbecomes O O\n, O O\nin O O\nthis O O\nsituation O O\n, O O\nhow O O\ndoes O O\nthe O O\nCUDA Name Name\nruntime O O\ndispatch O O\nthese O O\n\" O O\nsimultaneous O O\n\" O O\nfunction O O\ncalls O O\n? O O\n\nThe O O\nanswer O O\nto O O\nthat O O\nquestion O O\nis O O\nunspecified O O\n, O O\nbut O O\nit O O\nis O O\nnot O O\n\" O O\nrandom O O\n\" O O\n. O O\n\nTherefore O O\nit O O\n's O O\nreasonable O O\nthat O O\nthe O O\norder O O\nof O O\ndispatch O O\nfor O O\noperations O O\nwithin O O\na O O\nwarp O O\ndoes O O\nnot O O\nchange O O\nfrom O O\nrun O O\nto O O\nrun O O\n. O O\n\nIf O O\nyou O O\nlaunch O O\nenough O O\nthreads O O\nto O O\ncreate O O\nmultiple O O\nwarps O O\nper O O\nblock O O\n, O O\nand O O\nprobably O O\nalso O O\ninclude O O\nsome O O\nother O O\ncode O O\nto O O\ndisperse O O\nand O O\nor O O\n\" O O\nrandomize O O\n\" O O\nthe O O\nbehavior O O\nbetween O O\nwarps O O\n, O O\nyou O O\nshould O O\nbe O O\nable O O\nto O O\nsee O O\nprintf Name Name\noperations O O\nemanating O O\nfrom O O\nseparate O O\nwarps O O\noccurring O O\nin O O\n\" O O\nrandom O O\n\" O O\norder O O\n. O O\n\nTo O O\nanswer O O\nthe O O\nsecond O O\npart O O\nof O O\nyour O O\nquestion O O\n, O O\nwhen O O\ncontrol O O\nflow O O\ndiverges O O\nat O O\nthe O O\nif Name Name\nstatement O O\n, O O\nthe O O\nthreads O O\nwhere O O\nthreadIdx.x Name Name\n!= Name Name\n0 Name Name\nsimply O O\nwait O O\nto O O\nat O O\nthe O O\nconvergence O O\npoint O O\nafter O O\nthe O O\nif Name Name\nstatement O O\n. O O\n\nThey O O\ndo O O\nnot O O\ngo O O\non O O\nto O O\nthe O O\nprintf Name Name\nstatement O O\nuntil O O\nthread O O\n0 O O\nhas O O\ncompleted O O\nthe O O\nif Name Name\nblock O O\n. O O\n\nI O O\nam O O\nusing O O\nSpring Name Name\nBoot Name Name\n1.4.0.M3 Name Name\n. O O\n\nI O O\nhave O O\nan O O\n@Entity Name Name\nthat O O\nhas O O\na O O\nusername Name Name\nwhich O O\nshould O O\nbe O O\nunique O O\n: O O\n\nUsing O O\na O O\nSpring Name Name\nData O O\nRepository O O\n, O O\nI O O\nwant O O\nto O O\ntest O O\nif O O\nthere O O\nwill O O\nbe O O\nan O O\nexception Name Name\nwhen O O\na O O\nduplicate O O\nusername Name Name\nis O O\nused O O\n. O O\n\nThis O O\ntest O O\nworks O O\n: O O\n\nHowever O O\n, O O\nwhen O O\nadding O O\n@Transactional Name Name\nwith O O\n@Commit Name Name\n, O O\nthis O O\ntest O O\nfails O O\n: O O\n\nBut O O\nlooking O O\nat O O\nthe O O\nlogging O O\n, O O\nthe O O\nDataIntegrityViolationException Name Name\nis O O\nbeing O O\nthrown O O\n: O O\n\nWhy O O\ndoes O O\nthe O O\ntest O O\nfail O O\n? O O\n\nCould O O\nit O O\nbe O O\nthat O O\nJUnit Name Name\nchecks O O\nif O O\nthe O O\nexception Name Name\nis O O\nthrown O O\nbefore O O\nSpring Name Name\ncommits O O\nthe O O\ntransaction O O\n? O O\n\nI O O\nneed O O\nto O O\ntest O O\nDataIntegrityViolationException Name Name\nin O O\nMVC Name Name\ncontroller O O\ntest O O\n( O O\n@WebAppConfiguration Name Name\n) O O\nand O O\ndo O O\n@ResponseStatus Name Name\nmodification O O\ninside O O\napplication O O\nby O O\n@ControllerAdvice Name Name\n.So O O\nyours O O\napproach O O\ndoes O O\nn't O O\nsuit O O\nfor O O\nme O O\n, O O\nit O O\nflush O O\ntoo O O\nlate O O\n. O O\n\nUnfortunately O O\n@NotTransactional Name Name\nannotation O O\nwas O O\nexcluded O O\nin O O\nSpring Name Name\n4 Name Name\n, O O\nso O O\nI O O\njust O O\nseparate O O\nmy O O\ntests O O\nfor O O\n@Transactional Name Name\nand O O\nnot O O\ntransactional O O\n. O O\n\nSee O O\nalso O O\nhttp://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/testing.html#integration-testing-annotations O O\nfrom O O\n\nUPDATE O O\n. O O\n\n2 O O\nways O O\nsolution O O\n: O O\n\nseparate O O\nyour O O\ntest O O\nexplicitly O O\nfor O O\nTransactional O O\nand O O\nNon O O\ntransactional O O\n\nuse O O\n@Transactional Name Name\n( Name Name\npropagation Name Name\n= Name Name\nPropagation.NEVER Name Name\n) Name Name\nwhere O O\ntransaction O O\nis O O\nnot O O\ndesirable O O\n\nBased O O\non O O\nthe O O\ncomments O O\nby O O\nM.Deinum O O\nand O O\nStephane O O\nNicoll O O\n, O O\nthis O O\nis O O\nthe O O\nworking O O\nversion O O\n: O O\n\nNote O O\nthat O O\nboth O O\nstatic Name Name\nmethods O O\nneed O O\nto O O\nbe O O\ncalled O O\nto O O\nmake O O\nit O O\nwork O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nknow O O\nhow O O\nI O O\ncould O O\nimport O O\nthe O O\nJSTL Name Name\ncore O O\nlibrary O O\ndirectly O O\ninto O O\nmy O O\nproject O O\ninstead O O\nof O O\naccessing O O\nit O O\nby O O\na O O\nlink O O\nthis O O\nway O O\n: O O\n\nEDIT O O\n: O O\n\nIn O O\nfact O O\nit O O\nis O O\nalready O O\nworking O O\n, O O\ni O O\nhave O O\nalready O O\nimport O O\nthe O O\njstl.jar Name Name\nfile O O\nin O O\nmy O O\neclipse Name Name\nproject O O\n. O O\n\nI O O\ncan O O\nuse O O\nin O O\nmy O O\njsp Name Name\nfiles O O\n. O O\n\nThe O O\nthing O O\nis O O\nthat O O\ni O O\nwould O O\nlike O O\nto O O\nuse O O\nthem O O\nwithout O O\nhaving O O\na O O\nlink O O\nto O O\nanother O O\nwebsite O O\n. O O\n\n( O O\nhttp://java.sun.com/jsp/jstl/core O O\n) O O\n\nDownload O O\nthe O O\njar Name Name\nfile O O\n: O O\nhttp://www.java2s.com/Code/Jar/j/Downloadjstljar.htm O O\n\nImport O O\nit O O\ninto O O\nyour O O\nIDE Name Name\n: O O\n\nEclipse Name Name\n: O O\nHow O O\nto O O\nimport O O\na O O\njar Name Name\nin O O\nEclipse Name Name\n\nNetBeans Name Name\n: O O\nHow O O\nto O O\nuse O O\n.jar Name Name\nfiles O O\nin O O\nNetBeans Name Name\n? O O\n\nUse O O\nan O O\nimport Name Name\nstatement O O\nto O O\nimport O O\nyour O O\nlibrary O O\n: O O\nimport Name Name\njavax.servlet.jsp.jstl.core.* Name Name\n; Name Name\n\nAll O O\n. O O\n\nI O O\nam O O\nusing O O\nxmpp Name Name\nframework O O\nfor O O\nFacebook Name Name\nchat O O\nimplementation O O\nin O O\niOS Name Name\napplication O O\n. O O\n\nThe O O\nchat O O\nis O O\nworking O O\nfine O O\nwith O O\niOS Name Name\n, O O\nbut O O\nthere O O\nis O O\none O O\nissue O O\nwith O O\nthis O O\n. O O\n\nWhen O O\nonline O O\nand O O\noffline O O\nfriends O O\nare O O\nbeing O O\nshown O O\n, O O\nalways O O\npresence O O\nof O O\nonline O O\nand O O\noffline O O\nfriend O O\nis O O\ncalled O O\n. O O\n\nIn O O\nthis O O\nprocess O O\nI O O\n'm O O\ngetting O O\nthe O O\nBlank O O\nname O O\nof O O\nonline O O\nuser O O\nin O O\nFacebook Name Name\nchat O O\n, O O\nthe O O\nlast O O\nname O O\nfield O O\nis O O\nblank O O\n. O O\n\nCan O O\nanyone O O\ntell O O\nme O O\nwhat O O\nis O O\nwrong O O\nwith O O\nmy O O\nconfig O O\n.. O O\n. O O\n\nI O O\n've O O\nbeen O O\nat O O\nthis O O\nfor O O\na O O\nbit O O\nand O O\nca O O\nn't O O\nseem O O\nto O O\nget O O\nit O O\noutputing O O\nthe O O\nway O O\nI O O\nwant O O\n. O O\n\nMy O O\noutput O O\nfiles O O\nare O O\nas O O\nfollows O O\nafter O O\ntwo O O\nruns O O\n\nlog-file_2014.02.20.xml Name Name\n\nlog-file_2014.02.20.1.xml Name Name\n\nWhich O O\nis O O\nwhat O O\nI O O\nwould O O\nexpect O O\n, O O\nbut O O\nwhen O O\nI O O\nrun O O\nit O O\na O O\nthird O O\ntime O O\n. O O\n\nI O O\nwould O O\nexpect O O\nto O O\nsee O O\nlog-file_2014.02.20.2.xml Name Name\nhowever O O\n.. O O\n. O O\nthe O O\nactively O O\nlogging O O\nfile O O\nreplaces O O\nthe O O\nfile O O\nwith O O\nno O O\nindex O O\n\" O O\nlog-file_2014.02.20.xml Name Name\n\" O O\n, O O\nand O O\nthe O O\nfile O O\nthat O O\nhad O O\nno O O\nindex Name Name\ngets O O\nmoved O O\nto O O\none O O\nwith O O\nthe O O\n.1 Name Name\nindex Name Name\nand O O\nthe O O\none O O\nthat O O\nhad O O\nthe O O\n.1 Name Name\nindex Name Name\nis O O\ndeleted O O\n! O O\n\nSo O O\nmy O O\nindexes Name Name\nnever O O\ngo O O\npast O O\n.1 Name Name\nfor O O\nany O O\ngiven O O\ndate O O\n. O O\n\nDid O O\nya O O\nfollow O O\nthat O O\n.. O O\n. O O\nAny O O\nhelp O O\nwould O O\nbe O O\ngrateful O O\n! O O\n\nuse O O\nthis O O\nconfigration O O\n.. O O\n. O O\nHope O O\nit O O\nhelps O O\n.. O O\n. O O\n:) O O\n\nIn O O\nmy O O\nC# Name Name\nprogram O O\nI O O\nhave O O\na O O\nbig O O\nproblem O O\n: O O\n\nI O O\nadd O O\nan O O\nSQL Name Name\nserver Name Name\ndatabase O O\nnamed O O\n\" Name Name\nBehgozin_DB Name Name\n\" Name Name\nto O O\nmy O O\nproject O O\n. O O\n\nI O O\ndo O O\nthe O O\nfollowing O O\nsteps O O\nfor O O\nadding O O\nthe O O\ndatabase O O\n: O O\n\nIn O O\nmy O O\nSQL Name Name\nserver Name Name\nmanagement Name Name\nstudio Name Name\nI O O\ndetach O O\nmy O O\ndatabase O O\n\nIn O O\nmy O O\nvisual Name Name\nstudio Name Name\nfrom O O\nData O O\nmenu Name Name\nI O O\nadd O O\nnew O O\ndata O O\nsource O O\n\nMy O O\nConnection O O\nString Name Name\nis O O\n: O O\n\nEverything O O\nis O O\nOK O O\nbut O O\nwhen O O\nI O O\ninsert O O\nsomething O O\ninto O O\nmy O O\ndatabase O O\nafter O O\nclosing O O\nthe O O\napplication O O\n, O O\nI O O\ncan O O\nnot O O\nsee O O\nany O O\ndata O O\n. O O\n\nBut O O\nwhen O O\nI O O\nright O O\nclick O O\non O O\nmy O O\ntables Name Name\nin O O\nmy O O\nvisual Name Name\nstudio Name Name\nserver O O\nexplorer O O\nmenu Name Name\nand O O\nchoose O O\nshow O O\ntable Name Name\ndata O O\n, O O\nmy O O\napplication O O\nreads O O\nthe O O\nwhole O O\ntable Name Name\nof O O\ndata O O\ncompletely O O\n! O O\n\nAnother O O\nproblem O O\nis O O\nafter O O\nworking O O\nwith O O\nthis O O\napp O O\n, O O\neven O O\nit O O\ncan O O\nnot O O\nread O O\nits O O\nown O O\ndata O O\nin O O\ntable Name Name\n. O O\n\nIts O O\na O O\nC# Name Name\nproject O O\nin O O\nVisual Name Name\nStudio Name Name\n2010 Name Name\nSQL Name Name\nServer Name Name\n2008 Name Name\n. O O\n\nYour O O\ndatabase O O\nfile O O\nhas O O\n2 O O\ncopies O O\n. O O\n\nOne O O\nis O O\nin O O\nyour O O\nproject O O\nand O O\nthe O O\nother O O\nis O O\nin O O\nbin Name Name\n\\debug Name Name\n. O O\n\nIn O O\ndesign O O\ntime O O\nyou O O\nedit O O\nthe O O\none O O\nin O O\nyour O O\nproject O O\n. O O\n\nEach O O\ntime O O\nyour O O\nproject O O\nchanges O O\nand O O\nyou O O\nbuild O O\nit O O\n, O O\nthe O O\nproject O O\ndatabase O O\nfile O O\nis O O\noverwriting O O\nthe O O\nfile O O\nin O O\nbin Name Name\n\\debug Name Name\n, O O\nand O O\nthis O O\nfile O O\nyou O O\n're O O\nupdating O O\nin O O\nrun-time O O\n. O O\n\nIn O O\norder O O\nto O O\nsolve O O\nthat O O\nyou O O\nhave O O\nthree O O\noptions O O\n: O O\n\nUse O O\nonly O O\nthe O O\nfile O O\nin O O\nbin Name Name\n\\debug Name Name\n. O O\n\nSet O O\nthe O O\nproject O O\ndatabase O O\nfile O O\ncopy O O\noptions O O\nto O O\n\" O O\nNever O O\n\" O O\n( O O\nin O O\nthe O O\nproperties O O\nwindow Name Name\n) O O\n, O O\nshow O O\nall O O\nfiles O O\nof O O\nthe O O\nproject O O\nand O O\nadd O O\nthe O O\nbin Name Name\n\\debug Name Name\ndatabase O O\nfile O O\nto O O\nthe O O\nserver Name Name\nexplorer Name Name\n. O O\n\nCaution O O\n: O O\nIf O O\nyou O O\naccidently O O\ndelete O O\nthe O O\nbin Name Name\n\\debug Name Name\nfolder O O\nall O O\nyour O O\nchanges O O\nare O O\ngone O O\n. O O\n\nManually O O\ncopy O O\nthe O O\ndatabase O O\nfile O O\nfrom O O\nbin Name Name\n\\debug Name Name\nto O O\nthe O O\nproject O O\nfolder O O\nwhen O O\nyou O O\nchange O O\nit O O\n. O O\n\nPut O O\nthe O O\nfile O O\nin O O\nyour O O\nsql Name Name\nserver Name Name\nfolder O O\nand O O\nnot O O\nin O O\nyour O O\nproject O O\n. O O\n\nWhen O O\ndeploying O O\n, O O\nchange O O\nthe O O\nconnection O O\nstring Name Name\nand O O\ncopy O O\nthe O O\ndatabase O O\nfrom O O\nserver Name Name\n. O O\n\nReplace O O\n\" O O\n|DataDirectory| Name Name\n\" O O\nmacro O O\nwith O O\nthe O O\nabsolute O O\npath O O\nto O O\nthe O O\nproject O O\ndatabase O O\nfile O O\n. O O\n\nWhen O O\ndeploying O O\n, O O\njust O O\nchange O O\nit O O\nback O O\nto O O\n\" O O\n|DataDirectory| Name Name\n\" O O\n\nI O O\n'm O O\nfacing O O\nan O O\nauthentication O O\nissue O O\nnot O O\nbeing O O\nable O O\nto O O\nread/write O O\nto O O\nCloudStorage Name Name\nfrom O O\nPHP Name Name\non O O\nGCE Name Name\n. O O\n\nI O O\ntested O O\nusing O O\nthe O O\nsample O O\nAPI O O\nbut O O\nreceived O O\nan O O\nerror O O\nmessage O O\n\nand O O\nthe O O\nauthentication O O\nfailed O O\n. O O\n\nAlso O O\n, O O\nI O O\nsee O O\nno O O\nRedirect O O\nURI O O\ngenerated O O\nin O O\n\" O O\n2 O O\n. O O\n\nGenerated O O\na O O\nClient O O\nID O O\n\" O O\n\nMaybe O O\nthis O O\nis O O\na O O\nstupid O O\nquestion O O\nbut O O\nit O O\n's O O\nbugging O O\nme O O\n. O O\n\nI O O\nhave O O\na O O\nbi-directional O O\none O O\nto O O\nmany O O\nrelationship O O\nof O O\nEmployee Name Name\nto O O\nVehicles Name Name\n. O O\n\nWhen O O\nI O O\npersist O O\nan O O\nEmployee Name Name\nin O O\nthe O O\ndatabase O O\nfor O O\nthe O O\nfirst O O\ntime O O\n( O O\ni.e O O\n. O O\nit O O\nhas O O\nno O O\nassigned O O\nID Name Name\n) O O\nI O O\nalso O O\nwant O O\nits O O\nassociated O O\nVehicles Name Name\nto O O\nbe O O\npersisted O O\n. O O\n\nThis O O\nworks O O\nfine O O\nfor O O\nme O O\nat O O\nthe O O\nmoment O O\n, O O\nexcept O O\nthat O O\nmy O O\nsaved O O\nVehicle Name Name\nentity O O\nis O O\nnot O O\ngetting O O\nthe O O\nassociated O O\nEmployee Name Name\nmapped O O\nautomatically O O\n, O O\nand O O\nin O O\nthe O O\ndatabase O O\nthe O O\nemployee_id Name Name\nforeign O O\nkey O O\ncolumn Name Name\nin O O\nthe O O\nVehicle Name Name\ntable Name Name\nis O O\nnull Name Name\n. O O\n\nMy O O\nquestion O O\nis O O\n, O O\nis O O\nit O O\npossible O O\nto O O\nhave O O\nthe O O\nVehicle Name Name\n's O O\nemployee O O\npersisted O O\nat O O\nthe O O\nsame O O\ntime O O\nthe O O\nEmployee Name Name\nitself O O\nis O O\nbeing O O\npersisted O O\n? O O\n\nI O O\nrealise O O\nthat O O\nthe O O\nEmployee Name Name\nwould O O\nneed O O\nto O O\nbe O O\nsaved O O\nfirst O O\n, O O\nthen O O\nthe O O\nVehicle Name Name\nsaved O O\nafterwards O O\n. O O\n\nCan O O\nJPA Name Name\ndo O O\nthis O O\nautomatically O O\nfor O O\nme O O\n? O O\n\nOr O O\ndo O O\nI O O\nhave O O\nto O O\ndo O O\nsomething O O\nlike O O\nthe O O\nfollowing O O\n: O O\n\nThanks O O\n! O O\n\nEdit O O\n: O O\nAs O O\nrequested O O\n, O O\nhere O O\n's O O\nmy O O\nmappings O O\n( O O\nwithout O O\nall O O\nthe O O\nother O O\nmethods O O\netc O O\n. O O\n) O O\n\nI O O\njust O O\nrealised O O\nI O O\nshould O O\nhave O O\nhad O O\nthe O O\nfollowing O O\nmethod O O\ndefined O O\non O O\nmy O O\nEmployee Name Name\nclass O O\n: O O\n\nNow O O\nthe O O\ncode O O\nabove O O\nwill O O\nlook O O\nlike O O\nthis O O\n: O O\n\nMuch O O\nsimpler O O\nand O O\ncleaner O O\n. O O\n\nThanks O O\nfor O O\nyour O O\nhelp O O\neveryone O O\n! O O\n\nOne O O\nway O O\nto O O\ndo O O\nthat O O\nis O O\nto O O\nset O O\nthe O O\ncascade O O\noption O O\non O O\nyou O O\n\" O O\nOne O O\n\" O O\nside O O\nof O O\nrelationship O O\n: O O\n\nby O O\nthis O O\n, O O\nwhen O O\nyou O O\ncall O O\n\nit O O\nwill O O\nsave O O\nthe O O\nvehicles Name Name\ntoo O O\n. O O\n\nYou O O\nhave O O\nto O O\nset O O\nthe O O\nassociatedEmployee O O\non O O\nthe O O\nVehicle Name Name\nbefore O O\npersisting O O\nthe O O\nEmployee Name Name\n. O O\n\nMy O O\ntable Name Name\n( O O\nprojects Name Name\n) O O\n: O O\n\nAs O O\nyou O O\nmay O O\nhave O O\nnoticed O O\n, O O\nthis O O\nis O O\nhierarchical O O\ndata O O\nusing O O\nthe O O\nnested O O\nset Name Name\nmodel O O\n. O O\n\nTree Name Name\npretty-printed O O\n: O O\n\nI O O\nwant O O\nto O O\nselect O O\nall O O\nsub O O\nprojects O O\nunder O O\nproject Name Name\n1 Name Name\nand O O\n4 Name Name\n. O O\n\nI O O\ncan O O\ndo O O\nthis O O\nwith O O\n: O O\n\nHowever O O\n, O O\nthis O O\nis O O\nvery O O\nslow O O\nwith O O\na O O\nlarge O O\ntable Name Name\n, O O\nwhen O O\nrunning O O\nEXPLAIN Name Name\n( Name Name\nQuery Name Name\n) Name Name\ni O O\nget O O\n: O O\n\n( O O\nThe O O\nproject Name Name\ntable Name Name\nhas O O\nindexes O O\non O O\nlft Name Name\n, O O\nrgt Name Name\n, O O\nand O O\nlft-rgt Name Name\n. O O\n\nAs O O\nyou O O\ncan O O\nsee O O\n, O O\nmysql Name Name\ndoes O O\nnot O O\nuse O O\nany O O\nindex O O\n, O O\nand O O\nloops O O\nthrough O O\nthe O O\n7040 O O\nrecords O O\n) O O\n\nI O O\nhave O O\nfound O O\nthat O O\nif O O\nI O O\nonly O O\nselect O O\nfor O O\none O O\nof O O\nthe O O\nsuper O O\nproject Name Name\n, O O\nmysql Name Name\nmanages O O\nto O O\nuse O O\nthe O O\nindexes O O\n: O O\n\nEXPLAINs Name Name\nto O O\n: O O\n\nFINALLY O O\n, O O\nmy O O\nquestion O O\n: O O\nI O O\nthere O O\nany O O\nway O O\ni O O\ncan O O\nSELECT Name Name\nrows Name Name\nmatching O O\nmultiple O O\nranges O O\n, O O\nand O O\nstill O O\nbenefit O O\nfrom O O\nindexes O O\n? O O\n\nFrom O O\n7.2.5.1 O O\n. O O\n\nThe O O\nRange O O\nAccess O O\nMethod O O\nfor O O\nSingle-Part O O\nIndexes O O\nin O O\nMySQL Name Name\nreference O O\nmanual O O\n: O O\n\nSo O O\nyou O O\nneed O O\nto O O\nhave O O\na O O\nunion Name Name\nof O O\ntwo O O\ndifferent O O\nselects Name Name\n. O O\n\nhave O O\nyou O O\ntried O O\na O O\nunion Name Name\n? O O\n\ntake O O\nyour O O\nsecond O O\nexample O O\n, O O\nadd O O\n\" O O\nunion Name Name\n\" O O\nunderneath O O\nand O O\nthe O O\nrepeat O O\nbut O O\nmatching O O\nid Name Name\n4 Name Name\n. O O\ni O O\ndo O O\nn't O O\nknow O O\nif O O\nit O O\nwould O O\nwork O O\n, O O\nbut O O\nit O O\nseems O O\nlike O O\nan O O\nobvious O O\nthing O O\nto O O\ntry O O\n. O O\n\nedit O O\n: O O\n\nI O O\n'm O O\nsetting O O\nup O O\nIPython Name Name\nto O O\nautomatically O O\nload O O\nSympy Name Name\nand O O\nconfigure O O\nit O O\n's O O\noutput O O\nmethod O O\non O O\nstartup O O\n. O O\n\nHowever O O\n, O O\nwhatever O O\nI O O\ntry O O\nI O O\nca O O\nn't O O\nget O O\nsympy Name Name\nto O O\ninitialize O O\nthe O O\nlatex/unicode Name Name\nstyle O O\noutput O O\nprinting O O\n. O O\n\nSteps O O\ntaken O O\n: O O\n\nThe O O\nstartup O O\nscript O O\n: O O\n\nWhen O O\nI O O\nstart O O\nipython Name Name\n, O O\nit O O\ndoes O O\nn't O O\ndisplay O O\na O O\n\" O O\npretty-printed O O\n\" O O\noutput O O\n: O O\n\nOutput O O\n: O O\n\nSimilar O O\noutput O O\nusing O O\nqtconsole/notebook Name Name\n. O O\n\nIf O O\nI O O\nrun O O\nthe O O\ninit_printing Name Name\ncommand O O\nagain O O\nthe O O\npretty O O\nprint O O\ndisplay O O\nworks O O\nfor O O\nthat O O\nkernel Name Name\ninstance O O\n. O O\n\nAdditionally O O\nI O O\nknow O O\nthe O O\nstartup O O\nscript O O\nis O O\nbeing O O\nrun O O\nproperly O O\nbecause O O\nI O O\ncan O O\nadd O O\nprint Name Name\nstatements O O\nand O O\nget O O\noutput O O\n( O O\nadditionally O O\n, O O\nthe O O\npackages O O\nare O O\nimported O O\nand O O\navailable O O\nfor O O\nuse O O\n) O O\n. O O\n\nI O O\nam O O\nrunning O O\nsympy Name Name\n0.7.3 Name Name\n, O O\nipython3 Name Name\n1.1 Name Name\n, O O\nmatplotlib Name Name\n1.3.1 Name Name\n, O O\nnumpy Name Name\n1.7.1 Name Name\n, O O\nscipy Name Name\n0.12.0 Name Name\non O O\na O O\n64-bit O O\nUbuntu Name Name\n13.10 Name Name\ninstall O O\n. O O\n\nIncidentally O O\n, O O\nrunning O O\nthe O O\nplain O O\npython3 Name Name\nterminal Name Name\nwith O O\nPYTHONSTARTUP Name Name\nset O O\nto O O\nrun O O\nthe O O\nsame O O\nstartup O O\nscript O O\nwill O O\nproperly O O\npretty O O\nprint O O\nSympy Name Name\noutput O O\n. O O\n\nIn O O\nresponse O O\nto O O\nJakob O O\n's O O\ncomment O O\n, O O\nipython3 Name Name\n1.1.0 Name Name\nis O O\nstill O O\nusing O O\nthe O O\ninteractive O O\nsympy Name Name\nmodule O O\ninstead O O\nof O O\nsympy Name Name\n0.7.3 Name Name\n' O O\ns O O\ninit_printing Name Name\n, O O\nwhich O O\ntheoretically O O\nworks O O\nfine O O\nexcept O O\nI O O\nget O O\nnasty O O\nwarning O O\noutput O O\nat O O\nstart O O\n. O O\n\nI O O\n'm O O\nalso O O\nnot O O\ntoo O O\nkeen O O\non O O\neverything O O\nin O O\nsympy Name Name\nbeing O O\nimported O O\ninto O O\nthe O O\nglobal Name Name\nnamespace O O\n, O O\nwhich O O\nthe O O\nbundled O O\nsympy Name Name\nconfig O O\ndoes O O\n( O O\nas O O\nwell O O\nas O O\ndefine O O\na O O\nfew O O\nvariables O O\n) O O\n. O O\n\nHowever O O\n, O O\nthe O O\nsuggestion O O\ndid O O\nhelp O O\nme O O\nfind O O\na O O\nfix O O\n: O O\n\nInstead O O\nof O O\nputting O O\nmy O O\nstartup O O\ncode O O\ninto O O\nthe O O\n00-startup.py Name Name\n, O O\nI O O\nmodified O O\nthe O O\nipython_config.py Name Name\nfile O O\nto O O\nexecute O O\nadditional O O\nlines O O\nat O O\nstartup O O\n: O O\n\nI O O\n'm O O\nunsure O O\nif O O\nthis O O\nis O O\na O O\nbug O O\nin O O\neither O O\nsympy Name Name\nor O O\nipython Name Name\n, O O\nbut O O\nthis O O\noption O O\ncertainly O O\nworks O O\n. O O\n\nHow O O\ncan O O\ni O O\nset O O\nleft O O\nmouse Name Name\nclick O O\nto O O\nsave O O\nthe O O\ndoc Name Name\n( O O\ndocx Name Name\n) O O\ndocument O O\nto O O\nmy O O\ncomputer Name Name\n? O O\n\nAt O O\nthis O O\nmoment O O\nits O O\nonly O O\nopening O O\ndoc Name Name\nfile O O\nin O O\na O O\nbrowser Name Name\n, O O\ni O O\nwant O O\nto O O\nprevent O O\nthat O O\n. O O\n\nHow O O\n's O O\nthat O O\ncan O O\nbe O O\ndone O O\n? O O\n\nThe O O\ncode O O\nabove O O\nis O O\nnot O O\nworking O O\n- O O\nstill O O\nopening O O\nthat O O\ndoc Name Name\nfile O O\nin O O\na O O\nbrowser Name Name\n.. O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\ni O O\ncan O O\nset O O\nthat O O\non O O\nmy O O\ntest.php Name Name\npage O O\n: O O\n\nbut O O\nthen O O\nwhen O O\ni O O\nload O O\ntest.php Name Name\nit O O\nalways O O\nasks O O\nme O O\nto O O\nsave O O\nthat O O\nfile O O\n.. O O\n. O O\nhow O O\ncan O O\ni O O\nmake O O\nto O O\nwork O O\nthat O O\nonly O O\nfor O O\nlinks O O\nthat O O\nleading O O\nto O O\ndoc||docx Name Name\nfiles O O\n? O O\n\nAdd O O\nthe O O\nfollowing O O\nto O O\nyour O O\n.htaccess Name Name\nfile O O\nin O O\nyour O O\nsites O O\ndirectory O O\n: O O\n\nThis O O\nwill O O\nforce O O\nit O O\nto O O\ndownload O O\n, O O\nand O O\nyou O O\ncan O O\nuse O O\na O O\nregular O O\n<a Name Name\nhref=''> Name Name\nto O O\nlink O O\nto O O\nthe O O\nfile O O\nwithout O O\nany O O\nJS Name Name\nintervention O O\n. O O\n\nHow O O\ncan O O\nI O O\nswap O O\nmouse-1 Name Name\nand O O\nmouse-2 Name Name\non O O\nEmacs Name Name\n? O O\n\nThere O O\nmust O O\nbe O O\na O O\nsimple O O\n.emacs Name Name\ncode O O\n; O O\nI O O\nspent O O\none O O\nhour O O\nsearching O O\non O O\nthe O O\nweb O O\nbut O O\nI O O\ncould O O\nn't O O\nfind O O\nany O O\nexample O O\n.. O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nYou O O\ncan O O\ndo O O\nit O O\nwith O O\n\nBut O O\nif O O\nyou O O\ntell O O\nus O O\nwhy O O\n, O O\nmaybe O O\nwe O O\ncan O O\ngive O O\na O O\nbetter O O\nanswer O O\n. O O\n\nE.g O O\n. O O\nyou O O\nmight O O\nwant O O\nto O O\ntake O O\na O O\nlook O O\nat O O\nmouse-1-click-follows-link Name Name\nwhich O O\nperforms O O\na O O\nsimilar O O\n( O O\nbut O O\npartial O O\n) O O\nswap O O\n( O O\nand O O\nis O O\nactivated O O\nby O O\ndefault O O\n) O O\n. O O\n\nI O O\nhave O O\ndownladed O O\nan O O\nOBJ Name Name\nfile O O\nalong O O\nwith O O\nmeta O O\ninformation O O\nand O O\nproperties O O\n, O O\nbased O O\non O O\nan O O\nIFC O O\nthat O O\nwas O O\nuploaded O O\nto O O\nAutodesk Name Name\nForge Name Name\n. O O\n\nQuestion O O\nis O O\n; O O\nHow O O\ndo O O\nI O O\nmap O O\nobjects O O\nin O O\nthe O O\nOBJ Name Name\nto O O\nthe O O\ncorrect O O\nentries O O\nin O O\nthe O O\n' O O\nmeta O O\n' O O\nand O O\n' O O\nproperties O O\n' O O\n? O O\n\nI O O\nhave O O\na O O\nprocedure O O\nthat O O\nI O O\n'll O O\nneed O O\nin O O\na O O\nlot O O\n( O O\nif O O\nnot O O\nall O O\n) O O\nof O O\nmy O O\nview O O\ncontrollers O O\n. O O\n\nI O O\nwant O O\nto O O\nknow O O\nhow O O\nI O O\ncan O O\nput O O\nit O O\nin O O\none O O\nplace O O\n( O O\nfor O O\ncode O O\ncleanliness O O\nand O O\nmaintenance O O\n) O O\nand O O\nutilize O O\nit O O\nelsewhere O O\n. O O\n\nIf O O\nyou O O\n're O O\nnot O O\nsure O O\nthat O O\nthe O O\nmethod O O\nwill O O\nbe O O\nused O O\nin O O\nall O O\nControllers O O\n, O O\nI O O\n'd O O\nrecommend O O\ncreating O O\na O O\ncategory O O\nfor O O\nthe O O\nfunctionality O O\nyou O O\n're O O\nadding O O\n. O O\n\nYou O O\ncan O O\nfind O O\na O O\ngood O O\nintro O O\nto O O\ncategories O O\nhere O O\n. O O\n\nIf O O\nyou O O\n're O O\nsure O O\nyou O O\n'll O O\nneed O O\nit O O\nin O O\nall O O\nUIViewControllers Name Name\n, O O\ncreating O O\na O O\nbase O O\nController O O\nand O O\nsubclassing O O\nshould O O\nbe O O\nthe O O\nbetter O O\napproach O O\n. O O\n\nAll O O\nother O O\nmethods O O\nof O O\nimplementing O O\n( O O\nPlacing O O\na O O\nclass O O\nmethod O O\nin O O\na O O\nutility Name Name\n/ O O\nAdding O O\nto O O\n* O O\n-Prefix.pch Name Name\n) O O\nwill O O\nwork O O\n, O O\nbut O O\nmight O O\nnot O O\nbe O O\nideal O O\nsolutions O O\n( O O\nassuming O O\nthe O O\nfunctionality O O\nyour O O\n're O O\nadding O O\nis O O\nonly O O\napplicable O O\nto O O\nUIViewController Name Name\n) O O\n. O O\n\nThere O O\nare O O\nmore O O\nways O O\non O O\nhow O O\nto O O\napproach O O\nthis O O\n- O O\ndepending O O\non O O\nwhat O O\nexactly O O\nyou O O\nwould O O\nlike O O\nto O O\nachieve O O\n. O O\n\nIf O O\nthis O O\nmethods O O\nare O O\ntied O O\nwith O O\nUIViewController Name Name\n's O O\nlife O O\nand O O\ndata O O\nyou O O\nwould O O\nprobably O O\nwant O O\nto O O\nsubclass O O\nUIViewController Name Name\nor O O\nmake O O\nan O O\nUIViewController Name Name\ncategory O O\n. O O\n\nA O O\n: O O\nSubclassing O O\n( O O\nyou O O\nwant O O\nto O O\nadd O O\nsome O O\ncustom O O\nproperties O O\n, O O\nvariables O O\n, O O\nmethods O O\nor O O\nyou O O\nwant O O\nto O O\noverride O O\na O O\nmethod O O\n) O O\n: O O\n\nMySubclassedViewController.h Name Name\n\nMySubclassedViewController.m Name Name\n\nB O O\n: O O\nCategory O O\n( O O\nyou O O\njust O O\nwant O O\nto O O\nadd O O\nsome O O\nextra O O\nmethod O O\nto O O\na O O\nclass O O\n) O O\n: O O\n\nUIViewController+ Name Name\nSpecialCatrgory.h Name Name\n\nUIViewController+ Name Name\nSpecialCatrgory.m Name Name\n\nC O O\n: O O\nDedicated O O\nhelper O O\nclass O O\n\nOn O O\nthe O O\nother O O\nhand O O\nif O O\nyou O O\nfind O O\nyourself O O\nusing O O\nsome O O\nindependent O O\nmethod O O\non O O\nmore O O\nthan O O\none O O\nplace O O\nyou O O\nmight O O\n\nwant O O\nto O O\nconsider O O\nwriting O O\nup O O\na O O\nhelper O O\nclass O O\nand O O\nuse O O\nit O O\nas O O\na O O\nsingleton O O\n. O O\n\nMyHelperClass.h Name Name\n\nMyHelperClass.m Name Name\n\nYou O O\nuse O O\nit O O\nsimply O O\nby O O\nimporting O O\nMyHelperClass.h Name Name\n( O O\nor O O\nputting O O\nit O O\nin O O\n-Prefix.pch Name Name\n) O O\n, O O\nwithout O O\nexplicitly O O\ncreating O O\nan O O\ninstance O O\n. O O\n\nFor O O\nexample O O\n: O O\n\nI O O\nam O O\ntrying O O\nto O O\nimplement O O\na O O\nqueue Name Name\n, O O\ndequeueing O O\nand O O\nrequeueing O O\nin O O\na O O\nsingle O O\nchannel O O\n. O O\n\nI O O\nhave O O\ntwo O O\nquestions O O\n: O O\n\nwhy O O\ndo O O\nI O O\nobtain O O\na O O\ndeadlock O O\n? O O\n\nI O O\nwas O O\nexpecting O O\nan O O\ninfinite O O\nloop O O\n( O O\nsince O O\nI O O\nam O O\nrequeueing O O\neven O O\nelements O O\nwhich O O\ngenerate O O\nmore O O\nelements O O\nand O O\nso O O\non O O\n) O O\n. O O\n\nShould O O\nn't O O\nthe O O\nrange Name Name\nqueue Name Name\nalways O O\nlistening O O\nto O O\nthe O O\nchannel O O\n? O O\n\nthis O O\nis O O\npart O O\nof O O\nthe O O\nprint O O\nbefore O O\nthe O O\ndeadloks O O\n: O O\n\nAre O O\ntwo O O\ndifferent O O\ngoroutines O O\ndequeueing O O\nthe O O\nsame O O\nelement O O\n? O O\n\nI O O\ndo O O\nn't O O\nunderstand O O\nwhy O O\nthis O O\ndata O O\nrace O O\n; O O\nI O O\nthought O O\nthat O O\nthe O O\nrange Name Name\nwould O O\npick O O\none O O\nper O O\ntime O O\n. O O\n\nCode O O\nin O O\nPlayground Name Name\n\nWhen O O\na O O\nrange O O\nloop O O\nover O O\na O O\nchannel O O\nreaches O O\nthe O O\nend O O\nof O O\nthe O O\nchannel O O\n's O O\nbuffer Name Name\n( O O\nif O O\nthe O O\nchannel O O\nhas O O\none O O\n) O O\nit O O\nwill O O\nblock O O\n, O O\nwaiting O O\nfor O O\nmore O O\nelements O O\nto O O\nbe O O\nsent O O\nthrough O O\nthe O O\nchannel O O\n. O O\n\nIf O O\nthere O O\nare O O\nno O O\nother O O\nrunning O O\nor O O\nrunnable O O\ngoroutines O O\nthen O O\nwe O O\n've O O\nreached O O\na O O\ndeadlock O O\n. O O\n\nMinimal O O\nexample O O\n: O O\n\nhttp://play.golang.org/p/Vb4-RFEmm3 O O\n\nNo O O\n. O O\n\nWhat O O\n's O O\nhappening O O\nis O O\nthat O O\nthis O O\nline O O\n( O O\n26 O O\n) O O\n: O O\n\ninstructs O O\nGo Name Name\n's O O\nruntime O O\nto O O\nschedule O O\na O O\nnew O O\ngoroutine O O\n, O O\nit O O\ndoes O O\nnot O O\nnecessarily O O\nexecute O O\nimmediately O O\n. O O\n\nWhen O O\nthe O O\ngoroutine O O\neffectively O O\nruns O O\n, O O\nnew Name Name\n's O O\nvalue O O\nis O O\n1001 Name Name\n, O O\nnot O O\n1000 Name Name\nas O O\nprinted O O\n. O O\n\nIt O O\n's O O\na O O\nscope O O\nproblem O O\n. O O\n\nThis O O\nhappens O O\na O O\nlot O O\nwhen O O\ngetting O O\nstarted O O\nwith O O\ngo Name Name\nfunc() Name Name\n{ Name Name\n... Name Name\n} Name Name\n; O O\nit O O\nmight O O\nbe O O\nmore O O\ncommon O O\nthan O O\nreal O O\nproblems O O\nwith O O\nconcurrency O O\n. O O\n\nThere O O\nare O O\nsections O O\nin O O\nthe O O\nFAQ O O\nand O O\nthe O O\nGo Name Name\nwiki O O\nabout O O\nit O O\n. O O\n\nThe O O\nanonymous O O\nfunc Name Name\nyou O O\ncreate O O\ngets O O\na O O\nreference O O\nto O O\na O O\nvariable O O\nin O O\nthe O O\nouter O O\nscope O O\n, O O\nnot O O\nto O O\nits O O\nvalue O O\nat O O\nthe O O\ntime O O\nthe O O\nfunc Name Name\nstatement O O\nruns O O\n. O O\n\nAnd O O\nthat O O\nloop O O\nvariable O O\nis O O\nupdated O O\neach O O\npass O O\nthrough O O\nthe O O\nloop O O\n, O O\nso O O\nit O O\nchanges O O\nbetween O O\nyour O O\ngo Name Name\nstatement O O\nand O O\nwhen O O\nthe O O\ngoroutine O O\nactually O O\nruns O O\n. O O\n\nYou O O\ncan O O\nwork O O\naround O O\nthis O O\nby O O\ndeclaring O O\nanother O O\nvariable O O\nduring O O\neach O O\niteration O O\nof O O\nthe O O\nloop O O\n( O O\ni.e O O\n. O O\n, O O\ninside O O\nthe O O\nfor Name Name\nbraces O O\n) O O\n. O O\n\nIf O O\nyour O O\nloop O O\nwas O O\nfor Name Name\ni Name Name\n:= Name Name\nrange Name Name\narr Name Name\n{ Name Name\n... Name Name\n} Name Name\nyou O O\ncould O O\njust O O\nadd O O\ni Name Name\n:= Name Name\ni Name Name\n. O O\n\nSo O O\n, O O\nthis O O\nbad O O\nversion O O\n: O O\n\nalways O O\n... O O\nprints O O\n9 Name Name\n. O O\n\nA O O\nfixed O O\nversion O O\n, O O\nredeclaring O O\ni Name Name\ninside O O\nthe O O\nloop O O\n: O O\n\nprints O O\n.. O O\n0-9 Name Name\n. O O\n\nA O O\ndifferent O O\n, O O\narguably O O\nmore O O\nelegant O O\nway O O\nto O O\nredeclare O O\ni Name Name\nis O O\nto O O\nmake O O\nit O O\na O O\nparam O O\nof O O\nthe O O\nanonymous O O\nfunc Name Name\n; O O\nthen O O\nit O O\n's O O\nnot O O\na O O\nweird-looking O O\nstandalone O O\nstatement O O\n: O O\n\nHere O O\n's O O\nthat O O\ncode O O\n. O O\n\nFor O O\nall O O\nof O O\nthe O O\nPlayground Name Name\nversions O O\n, O O\nI O O\nhad O O\nto O O\nadd O O\nsynchronization O O\nso O O\nmain Name Name\nwould O O\nn't O O\nexit O O\nbefore O O\nthe O O\ngoroutines O O\nrun O O\n. O O\n\nIt O O\n's O O\nconfusing O O\nthat O O\na O O\ndeclaration O O\nthat O O\n\" O O\nruns O O\n\" O O\nonce O O\neach O O\ntime O O\nthrough O O\nthe O O\nloop O O\nbehaves O O\ndifferently O O\n( O O\nweird O O\nway O O\nfor O O\nscope O O\nto O O\nmanifest O O\n) O O\nbut O O\nthe O O\nway O O\nto O O\nget O O\naround O O\nit O O\nis O O\nstraightforward O O\nenough O O\n. O O\n\nIn O O\nyour O O\ncase O O\n: O O\nqueue Name Name\n< Name Name\n- Name Name\nnew Name Name\ncan O O\nrun O O\nat O O\nany O O\ntime O O\n, O O\nand O O\nit O O\nturns O O\nout O O\nto O O\nrun O O\nafter O O\nyou O O\n've O O\ngone O O\nthrough O O\nthe O O\nfor Name Name\n_ Name Name\n, Name Name\nnew Name Name\nloop O O\nentirely O O\n. O O\n\nHowever O O\n, O O\nit O O\nuses O O\nwhatever O O\nthe O O\nvalue O O\nof O O\nnew Name Name\nis O O\nas O O\nof O O\nwhen O O\nit O O\nactually O O\nruns O O\n, O O\nnot O O\nas O O\nof O O\nwhen O O\nthe O O\ngo Name Name\nstatement O O\nwas O O\nexecuted O O\n. O O\n\nIn O O\nthis O O\ncase O O\n, O O\nboth O O\nthe O O\ngoroutines O O\nyou O O\nstart O O\nget O O\nthe O O\nvalue O O\n1001 Name Name\n, O O\nthe O O\nso O O\nsecond O O\ntime O O\nthrough O O\nboth O O\nvalues O O\npassed O O\ninto O O\nenqueue Name Name\nare O O\nodd O O\n( O O\nyou O O\ncan O O\nsee O O\nthat O O\nas O O\ntwo O O\nusing O O\n1001s O O\nin O O\nyour O O\noutput O O\n) O O\nso O O\nnothing O O\nwrites O O\nto O O\nthe O O\nqueue Name Name\n, O O\nso O O\nthere O O\nis O O\nnothing O O\nfor O O\nthe O O\nrange Name Name\nqueue Name Name\nloop O O\nto O O\nconsume O O\n. O O\n\nThe O O\nchannel O O\nis O O\nn't O O\nclosed O O\neither O O\n, O O\nso O O\nthe O O\nmain Name Name\nca O O\nn't O O\njust O O\nend O O\n, O O\nso O O\nyou O O\nget O O\na O O\ndeadlock O O\n. O O\n\nYou O O\nwant O O\na O O\ndifferent O O\nvalue O O\nto O O\nbe O O\n\" O O\ncaptured O O\n\" O O\nfor O O\neach O O\nexecution O O\nof O O\nthe O O\ngoroutine O O\n. O O\n\nFor O O\nthat O O\n, O O\nyou O O\ncan O O\nput O O\nnew Name Name\n:= Name Name\nnew Name Name\nat O O\nthe O O\ntop O O\nof O O\nthe O O\nloop O O\n, O O\nas O O\nfunny O O\nas O O\nthat O O\nlooks O O\n. O O\n\nThat O O\n's O O\nenough O O\nto O O\nmake O O\nthe O O\nvalue O O\nfrom O O\neach O O\niteration O O\na O O\n\" O O\ndifferent O O\nvar Name Name\n\" O O\nfrom O O\nGo Name Name\n's O O\nperspective O O\n, O O\nso O O\nyou O O\nget O O\n1000 Name Name\nand O O\n1001 Name Name\ninserted O O\nin O O\nthe O O\nchannel O O\n. O O\n\nOnce O O\nyou O O\n've O O\nactually O O\ngot O O\nit O O\nworking O O\n, O O\nthe O O\nPlayground Name Name\nwo O O\nn't O O\nactually O O\nrun O O\nyour O O\ncode O O\nsuccessfully O O\nbecause O O\nit O O\nloops O O\nforever O O\nand O O\nthere O O\nare O O\na O O\nzillion O O\ngoroutines O O\nrunning O O\nand O O\nI O O\nguess O O\nthe O O\nPlayground Name Name\ndoes O O\nn't O O\nlike O O\nthat O O\n( O O\noverusing O O\nresources O O\n) O O\n. O O\n\nIf O O\nyou O O\nadd O O\na O O\nlimit O O\nof O O\n100 O O\nelements O O\ndequeued O O\nbefore O O\nquitting O O\n, O O\nyou O O\nget O O\nhttp://play.golang.org/p/bBM3uTnvxi O O\n. O O\n\nYou O O\n'll O O\nalso O O\nnotice O O\nthe O O\nnumbers O O\nit O O\noutputs O O\nget O O\nweird O O\nbecause O O\nmultiplying O O\nby O O\n100 Name Name\neach O O\ntime O O\nwill O O\neventually O O\noverflow O O\nthe O O\nmachine O O\n's O O\nint Name Name\ntype O O\n, O O\nbut O O\nthat O O\n's O O\njust O O\nhow O O\nit O O\ngoes O O\nwriting O O\nprograms O O\nin O O\nlowish-level O O\nlanguages O O\n. O O\n\nAs O O\na O O\nminor O O\nthing O O\n, O O\nyou O O\nprobably O O\ndo O O\nn't O O\nwant O O\nto O O\nname O O\na O O\nvariable O O\nnew Name Name\nbecause O O\nthat O O\n's O O\nalso O O\nthe O O\nname O O\nof O O\na O O\nbuilt-in O O\nfunction O O\n. O O\n\nIt O O\n's O O\nlegal O O\nto O O\ndo O O\nso O O\n, O O\njust O O\nconfusing O O\n. O O\n\n( O O\nIt O O\ncan O O\nbe O O\nkind O O\nof O O\nreflexive O O\nto O O\nname O O\na O O\nlength O O\nvariable O O\nlen Name Name\n, O O\nespecially O O\nif O O\nnothing O O\nwas O O\nwrong O O\nwith O O\nthat O O\nin O O\nthe O O\nlanguage O O\nyou O O\n're O O\ncoming O O\nfrom O O\n. O O\n) O O\n\nI O O\nwish O O\nI O O\ncould O O\nask O O\nthis O O\nquestion O O\nin O O\ncontext O O\n, O O\nbut O O\nI O O\ndo O O\nn't O O\nhave O O\nenough O O\nrep O O\nto O O\ncomment O O\nand O O\nask O O\nmy O O\nquestion O O\nthere O O\n, O O\nso O O\nI O O\nhave O O\nto O O\nmake O O\na O O\nnew O O\npost O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nuse O O\nthe O O\ncode O O\nfrom O O\nthis O O\ncomment O O\n: O O\n\nhttps://stackoverflow.com/a/21034111/432509 O O\n\nI O O\nam O O\nworking O O\nin O O\nPython Name Name\nin O O\nHoudini Name Name\nat O O\nschool O O\n, O O\nso O O\nI O O\nam O O\nlimited O O\non O O\nwhat O O\nlibraries O O\nI O O\ncan O O\nutilize O O\nto O O\nwhat O O\nthey O O\nhave O O\ninstalled O O\n, O O\nso O O\nI O O\nwas O O\ngoing O O\nto O O\nuse O O\nthe O O\npure O O\npython Name Name\nimplementation O O\nto O O\nwrite O O\nsome O O\ndata O O\nout O O\nas O O\na O O\nPNG Name Name\nmap O O\n, O O\nbut O O\nI O O\nam O O\nrunning O O\ninto O O\nan O O\nerror O O\nin O O\nthis O O\nline O O\n: O O\n\nI O O\nam O O\ngetting O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\nUnfortunately O O\nI O O\nam O O\nnot O O\nfamiliar O O\nwith O O\nall O O\nof O O\nthis O O\nsyntax O O\nand O O\nas O O\nsuch O O\nI O O\nam O O\nnot O O\nable O O\nto O O\nrepair O O\nthe O O\nerror O O\nmyself O O\n. O O\n\nAny O O\nclues O O\n? O O\n\nHow O O\ndoes O O\none O O\ninject O O\nstate O O\ninto O O\nring Name Name\nhandlers O O\nmost O O\nconveniently O O\n( O O\nwithout O O\nusing O O\nglobal Name Name\nvars O O\n) O O\n? O O\n\nHere O O\nis O O\nan O O\nexample O O\n: O O\n\nI O O\nwould O O\nlike O O\nto O O\nget O O\nthe-state Name Name\ninto O O\nthe O O\ncompojure Name Name\nhandler O O\nfor O O\nmain-routes Name Name\n. O O\n\nThe O O\nstate O O\nmight O O\nbe O O\nsomething O O\nlike O O\na O O\nmap Name Name\ncreated O O\nwith O O\n: O O\n\nIn O O\na O O\nnon O O\nring Name Name\napplication O O\nI O O\nwould O O\ncreate O O\nthe O O\nstate O O\nin O O\na O O\nmain Name Name\nfunction O O\nand O O\nstart O O\ninjecting O O\nit O O\n, O O\nor O O\nparts O O\nof O O\nit O O\n, O O\nas O O\nfunction O O\nparameters O O\nto O O\nthe O O\ndifferent O O\ncomponents O O\nof O O\nthe O O\napplication O O\n. O O\n\nCan O O\nsomething O O\nsimilar O O\nbe O O\ndone O O\nwith O O\nring Name Name\n's O O\n:init Name Name\nfunction O O\nwithout O O\nusing O O\na O O\nglobal Name Name\nvar O O\n? O O\n\nThe O O\n\" O O\ncorrect O O\n\" O O\nway O O\nto O O\ndo O O\nthis O O\nis O O\nto O O\nuse O O\na O O\ndynamically O O\nbound O O\nvar O O\n. O O\n\nYou O O\ndefine O O\na O O\nvar O O\nwith O O\n: O O\n\nAnd O O\nthen O O\nyou O O\ncreate O O\nsome O O\nring Name Name\nmiddleware O O\nwhich O O\nbinds O O\nthe O O\nvar O O\nfor O O\neach O O\nhandler O O\ncall O O\n: O O\n\nYou O O\nwould O O\nuse O O\nthis O O\nto O O\ninject O O\ndependencies O O\nby O O\nusing O O\nthis O O\nin O O\nyour O O\n' O O\nmain Name Name\n' O O\nfunction O O\nwhere O O\nyou O O\nlaunch O O\nthe O O\nserver Name Name\n: O O\n\nI O O\n've O O\nseen O O\nthis O O\ndone O O\na O O\ncouple O O\nof O O\nways O O\n. O O\n\nThe O O\nfirst O O\nis O O\nusing O O\nmiddleware O O\nthat O O\ninjects O O\nthe O O\nstate O O\nas O O\na O O\nnew O O\nkey O O\nin O O\nthe O O\nrequest O O\nmap Name Name\n. O O\n\nFor O O\ninstance O O\n: O O\n\nThe O O\nother O O\napproach O O\nis O O\nto O O\nreplace O O\nthe O O\ncall O O\nto O O\ndefroutes Name Name\n, O O\nwhich O O\nbehind O O\nthe O O\nscenes O O\nwill O O\ncreate O O\na O O\nhandler O O\nand O O\nassign O O\nit O O\nto O O\na O O\nvar O O\n, O O\nwith O O\na O O\nfunction O O\nthat O O\nwill O O\naccept O O\nsome O O\nstate O O\nand O O\nthen O O\ncreate O O\nthe O O\nroutes Name Name\n, O O\ninjecting O O\nthe O O\nstate O O\nas O O\nparameters O O\nto O O\nfunction O O\ncalls O O\nwithin O O\nthe O O\nroute Name Name\ndefinitions O O\n: O O\n\nGiven O O\na O O\nchoice O O\n, O O\nI O O\n'd O O\nprobably O O\ngo O O\nwith O O\nthe O O\nsecond O O\napproach O O\n. O O\n\nI O O\nhave O O\na O O\nNSTableview Name Name\nwhich O O\nshows O O\n50 O O\nrows Name Name\ncurrently O O\nwhich O O\nis O O\nfixed O O\nstatic Name Name\n. O O\n\nNow O O\nI O O\nwant O O\nto O O\nadd O O\na O O\nfeature O O\ninto O O\nit O O\n. O O\n\nI O O\nwant O O\nto O O\nadd O O\na O O\nmore O O\n50 O O\nrows Name Name\nto O O\nthe O O\ntable Name Name\nwhen O O\nuser O O\nreach O O\nto O O\nthe O O\nlast O O\nrow Name Name\nof O O\nthe O O\nNSTableView Name Name\n. O O\n\nI O O\nmean O O\ncurrently O O\nI O O\nam O O\nshowing O O\nfixed O O\n50 O O\nrows Name Name\nin O O\nthe O O\napplication O O\n. O O\n\nBut O O\nnow O O\nI O O\nwant O O\nto O O\nadd O O\n50 O O\nmore O O\nrows Name Name\nwhenever O O\nuser O O\nreaches O O\nto O O\nthe O O\nlast O O\nrow Name Name\nof O O\nprevious O O\nNsTableview Name Name\n. O O\n\nPlease O O\ngive O O\nme O O\nany O O\nsuggestions O O\nor O O\nany O O\nsample O O\ncode O O\nto O O\nachieve O O\nmy O O\nmotive O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nWhat O O\ni O O\nhave O O\ndone O O\nis O O\n( O O\nThis O O\ncode O O\ndoes O O\nnot O O\nwork O O\nwith O O\nrow Name Name\nselected O O\n( O O\nDown O O\nkey O O\npressed O O\n) O O\n, O O\nand O O\ndoes O O\nnot O O\nload O O\nnew O O\nrows Name Name\n) O O\n- O O\n\nTrying O O\nto O O\nuse O O\nfeatures O O\nfrom O O\nOpenMP Name Name\n3 Name Name\n\nin O O\nVisual Name Name\nStudio Name Name\n2017 Name Name\n; O O\ni O O\n'm O O\ngetting O O\nerror O O\nc3005 O O\n: O O\n' O O\ncollapse O O\n' O O\nunexpected O O\ntoken O O\nencountered O O\non O O\nopenmp O O\n' O O\nparallel O O\nfor O O\n' O O\ndirective O O\n\nIt O O\nseems O O\nVisual Name Name\nStudio Name Name\n2017 Name Name\nonly O O\nsupports O O\nOpenMP2 Name Name\n. O O\n\nIn O O\na O O\nrequest O O\nto O O\nsupport O O\nOpenMP4.5 Name Name\nit O O\nwas O O\nsaid O O\nfrom O O\nVS Name Name\nteam O O\n\nAnother O O\nanswer O O\nsaid O O\n\nHow O O\nto O O\nuse O O\nclang-cl Name Name\nwith O O\nVisual Name Name\nStudio Name Name\n2017 Name Name\nand O O\nwhat O O\nis O O\nthe O O\nfallback O O\noption O O\n? O O\n\nYou O O\nmay O O\nobtain O O\nclang-cl Name Name\nfrom O O\nhttp://llvm.org/builds/ O O\n\nBut O O\nyou O O\nmay O O\nrun O O\ninto O O\nintegration O O\nissues O O\nstarting O O\nwith O O\nVS2017 Name Name\n: O O\n\nhttps://bugs.llvm.org/show_bug.cgi?id=33672 O O\n\nhttps://www.reddit.com/r/cpp/comments/6oepq4/making_windows_clang_401_play_nice_with_visual/ O O\n\nThere O O\nis O O\nan O O\nattempt O O\nat O O\nsolving O O\nthis O O\n: O O\n\nhttps://github.com/WubbaLubba/LlvmForVS2017 O O\n\n/fallback Name Name\nis O O\na O O\nclang-cl Name Name\noption O O\nwhich O O\nmakes O O\nit O O\nfall O O\nback O O\nto O O\nMicrosoft Name Name\n's O O\ncompiler Name Name\nif O O\nit O O\nca O O\nn't O O\ncompile O O\nsomething O O\nitself O O\n. O O\n\nBut O O\nkeep O O\nin O O\nmind O O\nthere O O\nis O O\nno O O\nsupport O O\nfor O O\nthe O O\n/MP Name Name\nhack O O\n: O O\nhttp://clang-developers.42468.n3.nabble.com/clang-windows-clang-cl-support-for-MP-tp4045651p4045659.html O O\n\nI O O\n've O O\nimplemented O O\nthe O O\nIQKeyboardManager Name Name\nframework O O\nto O O\nmake O O\nthe O O\nkeyboard Name Name\nhandle O O\neasier O O\n. O O\n\nIt O O\nworks O O\nvery O O\nfine O O\n, O O\nexcept O O\nfor O O\none O O\nthing O O\n: O O\n\nThere O O\n're O O\nsome O O\nUItextField Name Name\ncontrols O O\nin O O\nmy O O\napp O O\nwhich O O\nopen O O\na O O\nUIDatePicker Name Name\nin O O\nplace O O\nof O O\na O O\ndefault O O\nkeyboard Name Name\n( O O\ne.g O O\n. O O\nnumber O O\npad Name Name\n, O O\ndecimal O O\npad Name Name\n, O O\nASCII O O\ncapable O O\n, O O\netc O O\n. O O\n) O O\n. O O\n\nHere O O\n's O O\na O O\ncode O O\nsample O O\nwith O O\nthe O O\ngraphical O O\nresult O O\n: O O\n\nMy O O\nquestion O O\nis O O\n: O O\n\nIs O O\nit O O\npossible O O\nto O O\nhandle O O\nthe O O\naction O O\non O O\nthe O O\n\" O O\nOK O O\n\" O O\nbutton Name Name\nto O O\nfill O O\nthe O O\nfield O O\n\" Name Name\nDate Name Name\nde Name Name\nnaissance Name Name\n\" Name Name\n? O O\n\nEDIT O O\n: O O\n\nFor O O\nthe O O\nones O O\nwho O O\nwant O O\nto O O\nknow O O\nhow O O\nI O O\nsolved O O\nmy O O\nproblem O O\n: O O\n\nin O O\nmy O O\n.h Name Name\n, O O\nI O O\nimported O O\nIQDropDownTextField.h Name Name\n: O O\n\n#import Name Name\n\" Name Name\nIQDropDownTextField.h Name Name\n\" Name Name\n\nin O O\nthe O O\n.h Name Name\n, O O\nI O O\nchanged O O\nthe O O\ntype O O\nof O O\nmy O O\nUITextField Name Name\nto O O\nIQDropDownTextField Name Name\n: O O\n\n@property Name Name\n( Name Name\nweak Name Name\n, Name Name\nnonatomic Name Name\n) Name Name\nIBOutlet Name Name\nIQDropDownTextField Name Name\n* Name Name\nmyTextField Name Name\n; Name Name\n\nselect O O\nyour O O\nfield O O\nin O O\nInterface Name Name\nBuilder Name Name\nor O O\nin O O\nyour O O\n.xib Name Name\n, O O\nand O O\nshow O O\nthe O O\nIdentity Name Name\nInspector Name Name\n: O O\nchange O O\nyour O O\nfield O O\n's O O\nclass O O\nto O O\nIQDropDownTextField Name Name\n. O O\n\nNote O O\naccording O O\nto O O\nMohd O O\nIftekhar O O\nQurashi O O\ncomment O O\n: O O\nthe O O\ntwo O O\nnext O O\npoints O O\ncan O O\nbe O O\navoided O O\nwith O O\nthe O O\nfollowing O O\ncode O O\n: O O\n\nin O O\nthe O O\n.m Name Name\n, O O\nI O O\nadded O O\nthe O O\nsetCustomDoneTarget:action Name Name\n: Name O\nmethod O O\n: O O\n\nin O O\nthe O O\n.m Name Name\n, O O\nI O O\nadded O O\nthe O O\ndoneAction Name Name\n: Name Name\nmethod O O\n: O O\n\nYou O O\ncan O O\nnow O O\nadd O O\ncustomised O O\nselector O O\n( O O\nplease O O\nrefer O O\n' O O\nIQUIView+ Name Name\nIQKeyboardToolbar.h Name Name\n' O O\n) O O\nfor O O\nprevious/next/done Name Name\nto O O\nget O O\nnotify O O\n. O O\n\nNote O O\nthat O O\ncustom O O\nselector O O\ndoes O O\nn't O O\naffect O O\nthe O O\nnative O O\nfunctionality O O\nof O O\nprevious/next/done Name Name\n, O O\nit O O\n's O O\njust O O\nused O O\nfor O O\ncallback O O\npurpose O O\nonly O O\n. O O\n\nFor O O\ndetail O O\ndocumentation O O\nplease O O\nrefer O O\n' O O\nIQUIView+ Name Name\nIQKeyboardToolbar.h Name Name\n' O O\n, O O\nfor O O\n' O O\nhow O O\nto O O\nuse O O\n? O O\n' O O\n\nplease O O\nrefer O O\n' O O\nTextFieldViewController.m Name Name\n' O O\n. O O\n\nI O O\nneed O O\nhelp O O\nI O O\nget O O\nthis O O\nerror O O\nevery O O\ntime O O\non O O\nmy O O\nwebsite O O\nParse O O\nerror O O\n: O O\nsyntax O O\nerror O O\n, O O\nunexpected O O\nend O O\nof O O\nfile O O\nin O O\n/var/www/html/dashboard.php Name Name\non O O\nline O O\n1021 O O\n\nthis O O\nis O O\nmy O O\ncode O O\n\nCan O O\nsomebody O O\nplease O O\nhelp O O\nme O O\nin O O\ntell O O\nme O O\nwhat O O\ni O O\n'm O O\ndoing O O\nwrong O O\n. O O\n\nWhich O O\nline O O\nis O O\nline O O\n1021 O O\n? O O\n\nTaking O O\na O O\nquick O O\nlook O O\nat O O\nit O O\nyou O O\nare O O\nmissing O O\na O O\n} Name Name\nat O O\nthe O O\nvery O O\nend O O\nof O O\nyour O O\nfile O O\n: O O\n\nPHP Name Name\nis O O\nstill O O\nwaiting O O\nfor O O\nthat O O\nclosing O O\n} Name Name\nto O O\nend O O\nyour O O\nif O O\nstatement O O\nwhich O O\nis O O\nwhy O O\nyou O O\nare O O\ngetting O O\nthe O O\nunexpected O O\nend O O\nof O O\nfile O O\nerror O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nexport O O\nFirewall Name Name\nlogs Name Name\nand O O\nit O O\nis O O\ngiving O O\nme O O\nabove O O\nerror O O\n. O O\n\nBoth O O\nclient Name Name\nand O O\nserver Name Name\nare O O\nLinux/Unix Name Name\nbased O O\nserver Name Name\n. O O\n\nCan O O\nanyone O O\nhelp O O\n? O O\n\nSCP O O\nsyntax O O\ngoes O O\n: O O\nscp Name Name\n[[user@]host1:]file1 Name Name\n.. Name Name\n. Name Name\n[[user@]host2:]file2 Name Name\n. O O\n\nYour O O\n@ Name Name\nsymbols O O\nwill O O\ndefinitely O O\nconfuse O O\nscp Name Name\n, O O\nbut O O\nI O O\n'm O O\nnot O O\nsure O O\nthat O O\n's O O\neven O O\nwhat O O\nyou O O\n're O O\ntrying O O\nto O O\ndo O O\n. O O\n\nRun O O\nyour O O\nexport Name Name\nfirst O O\nand O O\nthen O O\nexport O O\nthe O O\nresulting O O\nfile O O\n. O O\n\ni O O\nhave O O\nto O O\nconvert O O\nthis O O\nhql Name Name\nquery O O\nin O O\nhibernate Name Name\ncriteria O O\n. O O\n\nin O O\nfollowing O O\nquery O O\ni O O\nam O O\ntrying O O\nto O O\ncount O O\n#option Name Name\npicked O O\nby O O\nvarious O O\nuser O O\nduring O O\na O O\nsurvey O O\n. O O\n\nand O O\nfor O O\nthis O O\ni O O\nam O O\nusing O O\ncase Name Name\ninside O O\ncount() Name Name\nmethod O O\n. O O\n\nmy O O\nhibernate Name Name\nversion Name Name\n5.1 Name Name\n\nhow O O\nto O O\nwrite O O\n. O O\n\nI O O\n'm O O\ntesting O O\nnew O O\nJS/HTML5 Name Name\nhistory Name Name\nmethods O O\n. O O\n\nOn O O\nsubpage O O\nload O O\nI O O\nhave O O\nan O O\nevent O O\nchanging O O\nthe O O\nURL O O\nand O O\nhistory Name Name\nstate O O\n: O O\n\nNow O O\nwhen O O\nthe O O\nuser O O\nclicks O O\nback O O\nbutton Name Name\nthe O O\nhistory.state Name Name\nand O O\nthe O O\nURL O O\nchanges O O\n, O O\nbut O O\nwithout O O\nloading O O\nthe O O\nprevious O O\npage O O\n( O O\nwithout O O\nrefreshing O O\nthe O O\ncurrent O O\nURL O O\n) O O\n. O O\n\nI O O\ntried O O\nto O O\nadd O O\na O O\nmanual O O\nrefresh O O\non O O\nthe O O\nhistory.state Name Name\nchange O O\n, O O\nI O O\nfound O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nbut O O\nit O O\ndoes O O\nn't O O\nwork O O\n. O O\n\nTry O O\nthis O O\n: O O\n\nI O O\ngot O O\na O O\nsegmentation O O\nfault O O\nwhen O O\ntrying O O\nto O O\nuse O O\none O O\ncpp Name Name\nfile O O\nand O O\ntried O O\nto O O\nlocate O O\nthe O O\nerror O O\nusing O O\nValgrind Name Name\n, O O\nbut O O\nI O O\n'm O O\nconfused O O\n. O O\n\nSince O O\nthe O O\ncode O O\nis O O\nvery O O\nlarge O O\n, O O\nI O O\nwill O O\nonly O O\npost O O\na O O\nshort O O\nportion O O\nof O O\nit O O\nbelow O O\n: O O\n\nIt O O\nlooks O O\nlike O O\nyou O O\nare O O\nrunning O O\nvalgrind Name Name\non O O\nthe O O\ncompiler Name Name\n. O O\n\nUnless O O\nyou O O\nare O O\ntrying O O\nto O O\ndebug O O\nthe O O\ncompiler Name Name\n, O O\nyou O O\nshould O O\nbe O O\nrunning O O\nvalgrind Name Name\non O O\nyour O O\napplication O O\ninstead O O\n: O O\n\n( O O\nreplace O O\n./MyApp Name Name\nwith O O\nthe O O\nappropriate O O\nexecutable O O\nname O O\nand O O\narguments O O\n, O O\nof O O\ncourse O O\n) O O\n\n( O O\nExplanation O O\n: O O\nvalgrind Name Name\nis O O\na O O\nrun-time O O\nanalysis O O\ntool O O\n; O O\nit O O\ntakes O O\nyour O O\napplication O O\nas O O\ninput O O\n. O O\n\nIt O O\nis O O\nnot O O\na O O\ncompiler Name Name\ntool O O\nlike O O\nsome O O\nof O O\nthe O O\nother O O\ndebugging O O\ntools O O\nthat O O\nare O O\nout O O\nthere O O\n) O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\nexample O O\n\nSo O O\nthat O O\nworks O O\njust O O\nfine. O O\n. O O\nbut O O\nin O O\nmy O O\naggregate O O\nfunction O O\nI O O\nneed O O\nto O O\nclear O O\nout O O\nthe O O\nself.counters Name Name\ndict Name Name\n. O O\n\nI O O\n'm O O\nhaving O O\nissues O O\ndoing O O\nthis. O O\n. O O\n\nI O O\nwant O O\nto O O\ndo O O\nsomething O O\nlike O O\n\nIf O O\nI O O\nreference O O\nself.counters Name Name\nin O O\nthat O O\nfunction O O\nI O O\nget O O\n\nIt O O\n's O O\na O O\ngood O O\nidea O O\nto O O\ninclude O O\na O O\nrunnable O O\nexample O O\nof O O\nyour O O\nproblem O O\n, O O\nif O O\nI O O\ntry O O\nwhat O O\nyou O O\ndescribe O O\nit O O\nworks O O\nfine O O\n. O O\n\nI O O\nknow O O\nthat O O\nto O O\nadd O O\npermissions O O\nto O O\na O O\nspecific O O\nuser O O\n, O O\nyou O O\nformat O O\na O O\npermissions O O\nresource O O\nlike O O\nso O O\n: O O\n\nBut O O\n, O O\nwhat O O\nif O O\ni O O\nwant O O\nto O O\ngrant O O\nread-only O O\naccess O O\nto O O\nanyone O O\n? O O\n\nI O O\nguess O O\n, O O\nsomething O O\nlike O O\n: O O\n\nWhat O O\ndo O O\nI O O\nput O O\nas O O\n' O O\nvalue Name Name\n' O O\n? O O\n\nWell O O\n, O O\nit O O\nturns O O\nout O O\nthat O O\n\" O O\nvalue Name Name\n\" O O\nis O O\nnot O O\nrequired O O\nparameter O O\nfor O O\ntype Name Name\n= Name Name\nanyone Name Name\n. O O\n\nworks O O\njust O O\nfine O O\n. O O\n\nI O O\nposted O O\nmy O O\ncode O O\nbelow O O\n. O O\n\nIn O O\na O O\nmodal O O\nI O O\nhave O O\na O O\neditDependent Name Name\nas O O\nmodel O O\nin O O\na O O\nmodal O O\ndiv Name Name\nwhich O O\nis O O\nin O O\na O O\npage O O\nemployee.html Name Name\nwhich O O\nis O O\nrouted O O\nin O O\na O O\ninner O O\ndiv Name Name\nui-view Name Name\n. O O\n\nHow O O\nto O O\nperform O O\nthe O O\ntwo-way O O\nbinding O O\non O O\nthe O O\nobject O O\nfrom O O\nmodal O O\nand O O\nsend O O\nit O O\nto O O\nsave O O\n? O O\n\nI O O\nexplain O O\nit O O\nmore O O\nbelow O O\n. O O\n\nI O O\nhave O O\nan O O\nindex O O\nas O O\nmain Name Name\nhtml Name Name\nwhich O O\ncontains O O\na O O\nui-view Name Name\n. O O\n\nI O O\ncontrol O O\nthe O O\nrouting O O\n\nlike O O\nthis O O\n\nThis O O\nis O O\nmy O O\nemployee.html Name Name\n\nthis O O\nis O O\nmy O O\nEmployeeService Name Name\nand O O\nEmployeeController Name Name\n\nUPDATE O O\n\nI O O\nadded O O\na O O\nnew O O\nmethod O O\nin O O\nthe O O\ncontroller O O\n\nAnd O O\nI O O\nlinked O O\nthe O O\nmethod O O\nto O O\nmy O O\n2 O O\nbuttons(new/edit) Name Name\nwith O O\nng-view=\"editDependent()\" Name Name\nbut O O\n$scope Name Name\nis O O\nstill O O\nundefined O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nhave O O\na O O\nkind O O\nof O O\ncascading O O\nprimary Name Name\nkey Name Name\nlike O O\ngiven O O\nbelow O O\n. O O\n\nRoot Name Name\ntable Name Name\n: O O\n\nParent Name Name\ntable Name Name\n: O O\n\nChild Name Name\ntable Name Name\n: O O\n\nFor O O\nINSERT Name Name\nstatements O O\nthe O O\nFOREIGN Name Name\nKEY Name Name\npart O O\nwill O O\nbe O O\ngiven O O\n, O O\ne.g O O\n. O O\nlike O O\n: O O\n\nUnfortunately O O\nI O O\nrun O O\ninto O O\n2 O O\nissues O O\n: O O\n\nid Name Name\nof O O\nchild O O\ntable Name Name\nis O O\nset O O\nto O O\n0 O O\nfor O O\nfirst O O\ninsert Name Name\n( O O\neven O O\nthough O O\ndeclared O O\nas O O\nNOT Name Name\nNULL Name Name\n) O O\n\nsecond O O\ninsert Name Name\nwith O O\nsame O O\nid_root Name Name\nand O O\nid_parent Name Name\nis O O\nnot O O\ntaking O O\nplace O O\n( O O\nguess O O\ndue O O\nto O O\nprimary Name Name\nkey Name Name\nviolation O O\nwith O O\nid Name Name\n= Name Name\n0 Name Name\n, O O\nfor O O\nsome O O\nreason O O\nmysql Name Name\nis O O\nnot O O\nthrowing O O\nan O O\nerror O O\nlike O O\nnormally O O\n) O O\n\nI O O\nhave O O\nplayed O O\nwith O O\nUNIQUE Name Name\nKEY Name Name\ninstead O O\nof O O\nPRIMARY Name Name\nKEY Name Name\n, O O\nbut O O\nsame O O\nresult O O\n. O O\n\nAuto_increment Name Name\nof O O\nid Name Name\nis O O\nrejected O O\nby O O\nthe O O\nengine Name Name\nwhen O O\ncreating O O\nthe O O\ntable Name Name\n. O O\n\nApart O O\nfrom O O\ngiving O O\nthe O O\nid Name Name\nvalue O O\ne.g O O\n. O O\nthrough O O\ntriggers O O\n, O O\nis O O\nthere O O\nanother O O\nway O O\nto O O\nmake O O\nthis O O\nwork O O\n? O O\n\nI O O\nhave O O\ndefined O O\na O O\nHotKey Name Name\nCtrl O O\n+ O O\nSpace O O\nto O O\nactivate O O\nmy O O\nWindows Name Name\nForm Name Name\n. O O\n\nWhen O O\nthe O O\nform O O\nhandles O O\nthis O O\nHotKey Name Name\n, O O\nthis O O\nevent O O\nis O O\nnot O O\nseen O O\nby O O\nthe O O\nsystem O O\n. O O\n\nIs O O\nthere O O\nsubsequently O O\nany O O\nway O O\nto O O\nunhandle O O\nthese O O\nkeystrokes O O\n? O O\n\n( O O\nThat O O\nis O O\n, O O\nunregister O O\nthe O O\nHotKey Name Name\n. O O\n) O O\n\nHere O O\nis O O\nwhat O O\nI O O\nhave O O\ntried O O\n: O O\n\nCreate O O\na O O\nglobal Name Name\nbool Name Name\nvariable O O\n. O O\n\nSet O O\nits O O\nvalue O O\nto O O\nfalse Name Name\n. O O\n\nIn O O\nWindows Name Name\nKeyDown Name Name\nevent O O\ncheck O O\nif O O\nthat O O\nbool Name Name\nvariable O O\nis O O\ntrue Name Name\nreturn O O\nfrom O O\nmethod O O\n. O O\n\nWhen O O\nyou O O\nwant O O\nto O O\nunhandle O O\nthese O O\nkeystrokes O O\nset O O\nits O O\nvalue O O\nto O O\ntrue Name Name\nand O O\nwhen O O\nyou O O\nwant O O\nto O O\nhandle O O\nthese O O\nkeystrokes O O\nset O O\nits O O\nvalue O O\nto O O\nfalse Name Name\n. O O\n\nNow O O\nyou O O\njust O O\nhave O O\nto O O\nset O O\nthis O O\nflag Name Name\nvalue O O\nto O O\nhandle O O\nor O O\nunhandle O O\nyour O O\nkeystrokes O O\n. O O\n\nIs O O\nthere O O\nany O O\nexample O O\ncode O O\nof O O\na O O\ncpython Name Name\n( O O\nnot O O\nIronPython Name Name\n) O O\nclient O O\nwhich O O\ncan O O\ncall O O\nWindows Name Name\nCommunication Name Name\nFoundation Name Name\n( O O\nWCF Name Name\n) O O\nservice O O\n? O O\n\nWCF Name Name\nneeds O O\nto O O\nexpose O O\nfunctionality O O\nthrough O O\na O O\ncommunication O O\nprotocol O O\n. O O\n\nI O O\nthink O O\nthe O O\nmost O O\ncommonly O O\nused O O\nprotocol O O\nis O O\nprobably O O\nSOAP O O\nover O O\nHTTP O O\n. O O\n\nLet O O\n's O O\nassume O O\nthat O O\n's O O\nwhat O O\nyou O O\n're O O\nusing O O\nthen O O\n. O O\n\nTake O O\na O O\nlook O O\nat O O\nthis O O\nchapter O O\nin O O\nDive O O\nInto O O\nPython Name Name\n. O O\n\nIt O O\nwill O O\nshow O O\nyou O O\nhow O O\nto O O\nmake O O\nSOAP O O\ncalls O O\n. O O\n\nI O O\nknow O O\nof O O\nno O O\nunified O O\nway O O\nof O O\ncalling O O\na O O\nWCF Name Name\nservice O O\nin O O\nPython Name Name\n, O O\nregardless O O\nof O O\ncommunication O O\nprotocol O O\n. O O\n\nI O O\nused O O\nsuds Name Name\n. O O\n\nThat O O\nshould O O\nget O O\nyou O O\nstarted O O\n. O O\n\nI O O\n'm O O\nable O O\nto O O\nconnect O O\nto O O\nexposed O O\nservices O O\nfrom O O\nWCF Name Name\nand O O\na O O\nRESTful Name Name\nlayer O O\n. O O\n\nThere O O\nneeds O O\nto O O\nbe O O\nsome O O\ndata O O\nmassaging O O\nto O O\nhelp O O\ndo O O\nwhat O O\nyou O O\nneed O O\n, O O\nespecially O O\nif O O\nyou O O\nneed O O\nto O O\nbind O O\nto O O\nseveral O O\nnamespaces O O\n. O O\n\nI O O\n'm O O\nhaving O O\nan O O\nissue O O\nwith O O\nsaving O O\nthe O O\ntime O O\ninto O O\nmy O O\nSQL Name Name\ndatabase O O\n. O O\n\nThe O O\nsystem O O\nshould O O\nsave O O\ntime O O\nand O O\ndate O O\nto O O\nthe O O\ndatabase O O\nwhen O O\nthe O O\nuser O O\nscans O O\ninto O O\nthe O O\nbuilding O O\n. O O\n\nAt O O\nthe O O\ncurrent O O\nmoment O O\nit O O\nsaves O O\ndate O O\nbut O O\ntime O O\nis O O\nsaved O O\nas O O\n00:00 Name Name\n. O O\n\nI O O\nhad O O\nproblems O O\nconverting O O\nthe O O\ndate O O\nto O O\nSQL Name Name\nduring O O\nthe O O\nsave O O\nprocess O O\n, O O\nso O O\nmaybe O O\ni O O\n've O O\nmade O O\na O O\nmistake O O\nin O O\nthe O O\nprocess O O\n. O O\n\nI O O\n've O O\nlooked O O\nat O O\nit O O\nfor O O\nages O O\nand O O\ncant O O\nsee O O\nwhy O O\nit O O\nwouldnt O O\nsave O O\nthe O O\ntime O O\nas O O\nwell O O\n. O O\n\nAny O O\nideas O O\n? O O\n\nhere O O\nis O O\nthe O O\ncode O O\nin O O\nquestion O O\n\nThank O O\nyou O O\n\nYou O O\nshould O O\nnot O O\nto O O\nchange O O\nits O O\ndatatype O O\nand O O\nconvert O O\nit O O\nto O O\nstring Name Name\n, O O\njust O O\npass O O\nit O O\ndirectly O O\nto O O\nthe O O\ndatabase O O\nif O O\nyou O O\nhave O O\ncolumn Name Name\nin O O\ndatabase O O\nof O O\ntype O O\ndate Name Name\nor O O\ndatetime Name Name\n: O O\n\nYou O O\ncan O O\ndirectly O O\npass O O\nDateTime.Now Name Name\nfor O O\ncommand O O\nparameters O O\nand O O\nmake O O\nsure O O\ndatabase O O\ncolumn Name Name\nis O O\nDateTime Name Name\n. O O\n\nThat O O\n's O O\nIt O O\n. O O\n\nYou O O\ncan O O\nremove O O\nbelow O O\nfrom O O\nyour O O\ncode O O\nas O O\nIt O O\nis O O\nnot O O\nrequired O O\nat O O\nall O O\n. O O\n\nI O O\nam O O\nusing O O\nSDL Name Name\nand O O\nI O O\nhave O O\ncreated O O\na O O\nfunction O O\nthat O O\nwill O O\ncreate O O\na O O\nrandom O O\nset O O\nof O O\npieces O O\nand O O\nrender O O\nthem O O\n. O O\n\nHowever O O\n, O O\nwhen O O\nI O O\nrun O O\nthe O O\nprogram O O\nit O O\nwill O O\nconstantly O O\nrender O O\na O O\nnew O O\nrandom O O\nset O O\nof O O\npieces O O\non O O\na O O\n10 Name Name\nby Name Name\n10 Name Name\ngrid Name Name\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nknow O O\nhow O O\nI O O\ncan O O\nget O O\nit O O\nso O O\nrender O O\nonce O O\nand O O\nno O O\nlonger O O\ngenerate O O\na O O\nnew O O\nset O O\n, O O\nbut O O\nstill O O\nbe O O\nable O O\nto O O\nedit O O\nthe O O\nlocations O O\n. O O\n\nThis O O\nis O O\nthe O O\nfunction O O\nI O O\nhave O O\nfor O O\ngenerating O O\nthe O O\nset O O\nand O O\nI O O\nput O O\nit O O\nin O O\nthe O O\nmain O O\nloop O O\n. O O\n\nCreate O O\nyour O O\narray Name Name\n\" O O\nloc Name Name\n\" O O\noutside O O\nof O O\nyour O O\nlocation O O\ngeneration O O\nand O O\nrender O O\nfunctions O O\n. O O\n\nJust O O\nnow O O\nyou O O\nare O O\ncreating O O\na O O\nnew O O\narray Name Name\neach O O\ntime O O\nyou O O\nrender O O\n( O O\nmultiple O O\ntimes O O\na O O\nsecond O O\n) O O\n. O O\n\nYou O O\ncan O O\ncreate O O\nyour O O\narray Name Name\nonce O O\n, O O\nand O O\nthen O O\npass O O\nit O O\nto O O\nyour O O\nlocation O O\ngeneration O O\nfunction O O\nwhich O O\ncan O O\nalter O O\nthe O O\nvalues O O\nstored O O\nin O O\nyour O O\narray Name Name\n, O O\nand O O\nthen O O\nto O O\nyour O O\nrender O O\nfunction O O\n. O O\n\nThis O O\nwill O O\nalso O O\nreduce O O\nthe O O\nmemory O O\nuse O O\nof O O\nyour O O\nprogram O O\n. O O\n\nI O O\nmay O O\nbe O O\nmisunderstanding O O\nthe O O\nquestion O O\n, O O\nbut O O\nwhy O O\ndo O O\nn't O O\nyou O O\nmake O O\na O O\nclass O O\nwith O O\na O O\nfunction O O\nto O O\ngenerate O O\nand O O\nanother O O\nfunction O O\nto O O\nedit O O\nthe O O\nlocations O O\n? O O\n\nYour O O\ncode O O\nfor O O\nexecution O O\nwould O O\nthen O O\nbe O O\n: O O\n\nSimply O O\nput O O\n, O O\nis O O\nseparating O O\nthe O O\nfunctions O O\nan O O\nissue O O\n? O O\n\nI O O\nhave O O\ntext Name Name\nfile O O\nwith O O\n5 O O\nstrings Name Name\n. O O\n\nI O O\nneed O O\nto O O\nuse O O\nNSURLConnection Name Name\nto O O\nget O O\ncontnent O O\nof O O\nthis O O\nfile O O\n. O O\n\nBut O O\nNSLog Name Name\nshows O O\nme O O\n, O O\nthat O O\n' O O\ndump Name Name\n' O O\nis O O\nempty O O\n. O O\n\nHow O O\ncan O O\nI O O\ntransform O O\nthe O O\ndata O O\nfrom O O\nNSMutableData Name Name\nto O O\nNSArray Name Name\n. O O\n\nArrays Name Name\nis O O\nbecause O O\nI O O\nneed O O\nto O O\nshow O O\nthose O O\n5 O O\nitems O O\nin O O\na O O\nTableView Name Name\n. O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nBTW O O\nURL O O\nworks O O\n, O O\nyou O O\ncan O O\nsee O O\nthe O O\nfile O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nwant O O\nto O O\nuse O O\na O O\ndelegate O O\n, O O\nyou O O\ncan O O\nuse O O\na O O\nsynchronous O O\ncall O O\nwith O O\nNSURLConnection Name Name\n, O O\nlike O O\nthis O O\n: O O\n\nJust O O\nbeware O O\nthat O O\nthis O O\nwill O O\nnot O O\nbe O O\nrunning O O\nasynchronously O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nwant O O\nit O O\nto O O\nrun O O\non O O\nthe O O\nmain O O\nthread O O\nand O O\nblock O O\nyour O O\nmain O O\nthread/UI O O\n, O O\nconsider O O\nusing O O\na O O\nseparate O O\nthread O O\nto O O\nexecute O O\nthat O O\ncode O O\nor O O\nuse O O\nGCD O O\n. O O\n\nYou O O\nneed O O\nto O O\nimplement O O\nthe O O\ndelegate O O\nmethods O O\nfor O O\nNSURLConnection Name Name\nto O O\nbe O O\nnotified O O\nof O O\nincoming O O\ndata O O\n. O O\n\nYou O O\nare O O\nusing O O\nthe O O\nasynchronous O O\nmethods O O\n. O O\n\nAlso O O\nnote O O\nthat O O\n[ Name Name\nNSMutableData Name Name\ndata Name Name\n] Name Name\njust O O\ncreates O O\nan O O\nempty O O\ndata-object O O\n. O O\nso O O\nyou O O\nca O O\nn't O O\nexpect O O\nit O O\nto O O\ncontain O O\nany O O\ndata O O\n. O O\n\nI O O\nsuggest O O\nyou O O\nread O O\nhttps://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html#//apple_ref/doc/uid/20001836-BAJEAIEE O O\n\n( O O\ncompletely O O\n! O O\n) O O\n\nthis O O\ncode O O\nselect O O\nfrom O O\ntable Name Name\nPrivateMessages Name Name\nwhere O O\nSender==QueryString('idCompany') Name Name\n\nthis O O\ncode O O\nwork O O\nfine O O\n. O O\n\ni O O\nwant O O\nselect O O\nfrom O O\nprivateMessage Name Name\nwhere O O\nSender Name Name\n== Name Name\n\" Name Name\nadmin Name Name\n\" Name Name\n??????? O O\n? O O\n\nwhere O O\nsender Name Name\nequal O O\na O O\nconst Name Name\nstring Name Name\n. O O\n\nYou O O\ncan O O\nuse O O\nSelecting Name Name\nevent O O\nand O O\ndo O O\nlike O O\n. O O\n\nOr O O\nyou O O\ncan O O\nreplace O O\nthe O O\nWhereParameters Name Name\nsection O O\nwith O O\nsomething O O\nlike O O\n\nDepends O O\non O O\nyou O O\nin O O\nchoosing O O\nwhat O O\nflavor O O\nof O O\nthis O O\n2 O O\nsolutions O O\nbest O O\nsuits O O\nthis O O\nscenario O O\n. O O\n\nI O O\nhave O O\na O O\nquite O O\nodd O O\nproblem O O\n. O O\n\nThe O O\nproblem O O\nis O O\nlike O O\nthis O O\n.. O O\n. O O\n\nWhen O O\nI O O\ntry O O\nto O O\npass O O\na O O\nstring Name Name\nto O O\nmy O O\ncontroller Name Name\naction O O\n( O O\n.NET Name Name\nMVC Name Name\n) O O\n, O O\nthis O O\none O O\n: O O\n\nI O O\nchecked O O\nin O O\nthe O O\nconsole Name Name\nand O O\nI O O\n'm O O\ngetting O O\nan O O\nserver O O\ninternal O O\nerror O O\n500 O O\n.. O O\n. O O\nTo O O\nmake O O\nthings O O\nworse O O\nI O O\n've O O\ntested O O\nwhether O O\nthe O O\npost Name Name\nwill O O\nwork O O\nwith O O\ndifferent O O\nkinds O O\nof O O\ntitles O O\nlike O O\n: O O\n\" Name Name\nsuper Name Name\nduper Name Name\namoled Name Name\nTV Name Name\n\" Name Name\nor O O\nsomething O O\nlike O O\n, O O\nand O O\nit O O\nworks. O O\n. O O\n\nI O O\nsuspect O O\nthat O O\nthe O O\nissue O O\nis O O\nbecause O O\nthe O O\nstring Name Name\ncontains O O\nspecial O O\ncharacthers O O\nlike O O\n' Name Name\nand O O\n\" Name Name\n.. O O\n. O O\n\nThis O O\nis O O\nthe O O\npost Name Name\nmethod O O\nitself O O\n: O O\n\nFirst O O\npost Name Name\ndata Name Name\nand O O\nnow O O\nthe O O\npost Name Name\nitself O O\n: O O\n\nAnd O O\nnow O O\nthe O O\nController Name Name\naction O O\nitself O O\n: O O\n\nWith O O\nthe O O\ntitle O O\nitself O O\nthat O O\nI O O\n've O O\nshown O O\nabove O O\n, O O\naction O O\ndoes O O\nn't O O\ngets O O\ntriggered O O\nat O O\nall. O O\n. O O\n\nInstead O O\nI O O\nsimply O O\nget O O\ninternal O O\nserver O O\nerror O O\n500 O O\nin O O\nconsole Name Name\n.. O O\n. O O\n\nHow O O\ncould O O\nI O O\nfix O O\nthis O O\n? O O\n\nYou O O\ncould O O\nserialize O O\nthe O O\npostData Name Name\nand O O\nexpect O O\na O O\nrequest Name Name\nobject O O\nat O O\nthe O O\naction O O\nwhich O O\ncan O O\nfurther O O\nbe O O\nde-serialized O O\nto O O\nobtain O O\nindividual O O\nproperties O O\n. O O\n\nModel O O\n: O O\n\nController Name Name\nAction O O\n: O O\n\nUpdate O O\n: O O\n\nJson Name Name\nobject O O\n: O O\n\nI O O\nhave O O\nto O O\ncreate O O\na O O\nstruct Name Name\n, O O\na O O\nstatic Name Name\nvariable O O\nto O O\nkeep O O\ntrack O O\nof O O\nhow O O\nmany O O\nstructs Name Name\nare O O\nalive O O\nand O O\nalso O O\na O O\nlist Name Name\nof O O\nall O O\ncurrent O O\nstructs Name Name\n. O O\n\nI O O\n'm O O\nhaving O O\ntrouble O O\ncreating O O\nthis O O\nlist Name Name\nand O O\nthe O O\nappropriate O O\nconstructor O O\n. O O\n\nSo O O\nfar O O\nI O O\nhave O O\n\nAs O O\nyou O O\ncan O O\nsee O O\nI O O\ntried O O\nto O O\ndo O O\nit O O\nby O O\ncreating O O\na O O\nstatic Name Name\narray Name Name\nthat O O\ngets O O\nadded O O\nto O O\nas O O\npart O O\nof O O\nthe O O\nconstructor O O\n, O O\nbut O O\nthe O O\ncompiler Name Name\ngives O O\nme O O\nan O O\nerror O O\n: O O\n\" O O\nlvalue O O\nrequired O O\nas O O\nleft O O\noperand O O\nof O O\nassignment O O\n\" O O\nin O O\nthe O O\nplace O O\nI O O\nindicated O O\n. O O\n\nIt O O\n's O O\nnot O O\nletting O O\nme O O\nassign O O\nnew O O\nstructs Name Name\nto O O\nmy O O\nstatic Name Name\narray Name Name\n. O O\n\nWhat O O\nam O O\nI O O\ndoing O O\nwrong O O\n? O O\n\nKeep O O\nin O O\nmind O O\npointers Name Name\nare O O\nthe O O\nbane O O\nof O O\nmy O O\nlife O O\nso O O\nplease O O\nexplain O O\nit O O\nto O O\nme O O\nas O O\nyou O O\nwould O O\nto O O\na O O\nsmall O O\nchild O O\n. O O\n\nThanks O O\na O O\nlot O O\n. O O\n\nWhen O O\nyou O O\ndefine O O\nMyStruct Name Name\nMyStruct::* Name Name\nAllStructs Name Name\n; Name Name\n, O O\nall O O\nyou O O\nare O O\ndoing O O\nis O O\nallocating O O\nmemory O O\nfor O O\none O O\nsingle O O\npointer Name Name\nto O O\na O O\nMyStruct Name Name\nobject O O\n, O O\nnot O O\nactually O O\ncreating O O\nspace O O\nfor O O\nan O O\narray Name Name\nof O O\nthem O O\n. O O\n\nThis O O\narray Name Name\nyou O O\nwant O O\nneeds O O\nto O O\nhave O O\na O O\nvalid O O\nmemory O O\nlocation O O\ninitialised O O\nfor O O\nit O O\nto O O\nlive O O\nin O O\n, O O\nwhere O O\nit O O\ncan O O\nstore O O\nits O O\ncopy O O\nof O O\nall O O\nthe O O\npointers Name Name\nyou O O\nwant O O\nit O O\nto O O\n. O O\n\nThat O O\n's O O\nlikely O O\nto O O\nget O O\nmessy O O\nthough O O\n, O O\nso O O\nyou O O\nshould O O\nuse O O\na O O\nstatic Name Name\nstd::vector Name Name\ninstead O O\nto O O\nmanage O O\nthe O O\nmemory O O\nallocation O O\nfor O O\nthe O O\nMyStruct Name Name\n. O O\n\nSimple O O\nas O O\nthis O O\n: O O\n\nHope O O\nthat O O\nhelps O O\n! O O\n\nI O O\nhave O O\nMySQL Name Name\ntables Name Name\nlooking O O\nlike O O\nthat O O\n\nregions Name Name\ntable Name Name\n\n.. O O\n. O O\n\nand O O\nschools Name Name\ntable Name Name\n\nThere O O\nare O O\nmultiple O O\nselect O O\n( O O\ndropdown Name Name\n) O O\nmenus Name Name\nin O O\nmy O O\nregistration O O\nform Name Name\n. O O\n\nThe O O\nregions O O\ndropdown Name Name\nlooks O O\nlike O O\nthat O O\n\nI O O\nwant O O\nto O O\npopulate O O\nnew O O\ndropdown Name Name\nlist Name Name\nbased O O\non O O\nprevious O O\nselections O O\n. O O\n\nWhat O O\ni O O\nwant O O\nto O O\ndo O O\nis O O\n, O O\nget O O\n\" O O\nregions Name Name\n\" O O\nid O O\n, O O\nthen O O\npopulate O O\nschools O O\ndropdown Name Name\nmenu Name Name\nbased O O\non O O\nid Name Name\n( O O\nid Name Name\nof O O\nprevious O O\nselection O O\n) O O\nfrom O O\n\" O O\nschools Name Name\n\" O O\ntable Name Name\non O O\nthe O O\nfly O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\nbut O O\nit O O\ndoes O O\nn't O O\nwork O O\n. O O\n\nMy O O\njs Name Name\nlooks O O\nlike O O\nthat O O\n\nand O O\nsearch.php Name Name\n\nPlease O O\nhelp O O\nme O O\nto O O\nfinish O O\nit O O\n. O O\n\nThx O O\nin O O\nadvance O O\n. O O\n\nYou O O\n're O O\ncalling O O\ngetschools() Name Name\nwith O O\nno O O\nparameter O O\n, O O\nso O O\nit O O\nreturns O O\nnothing O O\n. O O\n\nYou O O\nwere O O\nsupposed O O\nto O O\npass O O\nthe O O\nresult O O\nthat O O\nyou O O\nget O O\nafter O O\nmaking O O\na O O\nPOST O O\nrequest O O\nto O O\nthe O O\nsearch.php Name Name\nfile O O\n. O O\n\nEDIT O O\n: O O\n\nI O O\n'm O O\nnot O O\nsure O O\nthat O O\nthis O O\nwill O O\nwork O O\n, O O\nas O O\nI O O\n've O O\nnot O O\ntested O O\nit O O\nfirst O O\n. O O\n\nBut O O\nI O O\nthink O O\nyou O O\nshould O O\nchange O O\n\nto O O\n\nI O O\nwas O O\nworking O O\nwith O O\ntwilio Name Name\n\nmy O O\ncase O O\nis O O\nwhen O O\nuser O O\nmake O O\na O O\ncall O O\nIVR Name Name\nwill O O\nask O O\nfor O O\nuser O O\nmood O O\nand O O\nthen O O\nstart O O\nrecording O O\nfor O O\n10 O O\nsecond O O\n, O O\ntake O O\nthat O O\nrecording O O\nto O O\nserver O O\nfind O O\npodcast O O\naccording O O\nto O O\nuser O O\nmood O O\nand O O\nsend O O\nback O O\nTWIML Name Name\nwith O O\npodcast O O\nmp3 Name Name\nurl O O\nand O O\nplay O O\nit O O\nto O O\nuser O O\n\nI O O\n'm O O\ndone O O\nwith O O\nthis O O\njob O O\n\nnow O O\ni O O\nwant O O\nto O O\nimplement O O\nthe O O\nfeature O O\nin O O\nwhich O O\nwhen O O\nuser O O\nuser O O\nsay O O\n\" Name Name\nSkip Name Name\n\" Name Name\nor O O\n\" Name Name\nI Name Name\ndo Name Name\nn't Name Name\nlike Name Name\nthis Name Name\none Name Name\nplease Name Name\nskip Name Name\n\" Name Name\n( O O\nor O O\nsomething O O\nsimilar O O\nwhich O O\ni O O\nwill O O\nhandle O O\nwith O O\nA O O\ni) O O\nimmediately O O\nstop O O\nplaying O O\nand O O\ngoto O O\nserver Name Name\nand O O\nget O O\nanother O O\npodcast O O\nmp3 Name Name\nurl O O\nand O O\nplay O O\nit O O\n\nfor O O\ndoing O O\nthis O O\ni O O\nneed O O\nto O O\ndo O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nbut O O\ndoing O O\nthis O O\nwill O O\nnot O O\nsolve O O\nmy O O\nproblem O O\nbecause O O\ntwilio Name Name\nwill O O\nstart O O\nrecording O O\nafter O O\nfinish O O\nplaying O O\n, O O\nI O O\nwant O O\nto O O\nrecord O O\neach O O\n10 O O\nseconds O O\nand O O\nsend O O\nit O O\nto O O\nserver O O\ncontinuously O O\nwhen O O\nuser O O\nis O O\nlistening O O\npodcast O O\n\neach O O\ntime O O\nwhen O O\nwe O O\nget O O\nrecording O O\non O O\nserver O O\n, O O\ni O O\nwill O O\nconvert O O\nrecording O O\nto O O\ntext O O\nad O O\ncheck O O\nif O O\nuser O O\nsaid O O\n\" O O\nskip O O\n\" O O\n, O O\nif O O\nyes O O\ni O O\nwill O O\nmodify O O\ncall O O\non O O\nthe O O\nfly O O\n\nTwilio Name Name\ndeveloper O O\nevangelist O O\nhere O O\n. O O\n\nI O O\n'm O O\nafraid O O\nthat O O\nit O O\nis O O\ncurrently O O\nnot O O\npossible* O O\nto O O\nrecord O O\nslices O O\nof O O\na O O\ncall O O\nwhile O O\nsimultaneously O O\nplaying O O\nan O O\nmp3 Name Name\n. O O\n\nCan O O\nI O O\nsuggest O O\nthat O O\nrather O O\nthan O O\nvoice O O\nyou O O\nuse O O\na O O\nkey O O\npress O O\nfor O O\nthis O O\nfunctionality O O\ninstead O O\n? O O\n\nYou O O\ncan O O\nthen O O\nuse O O\nthe O O\nfollowing O O\nTwiML Name Name\n( O O\nas O O\nan O O\nexample O O\n) O O\n\nThen O O\nyou O O\nwill O O\nneed O O\nan O O\nendpoint O O\nin O O\nyour O O\napplication O O\nat O O\n/voice/check Name Name\n-digits Name Name\nthat O O\ndirects O O\nthe O O\nuser O O\nonto O O\nthe O O\nnext O O\npodcast O O\n. O O\n\n* O O\nOK O O\n, O O\nit O O\nmight O O\nbe O O\npossible O O\nif O O\nyou O O\nplay O O\nthe O O\naudio O O\ninto O O\na O O\nconference O O\nand O O\nhave O O\nanother O O\nscript O O\ndial O O\ninto O O\nthe O O\nconference O O\nand O O\nrecord O O\n10 O O\nseconds O O\n, O O\nthen O O\nhangup O O\nas O O\nanother O O\nscript O O\ndials O O\nin O O\nto O O\nstart O O\nrecording O O\n. O O\n\nBut O O\neven O O\nthen O O\n, O O\nyou O O\n'd O O\nbe O O\ntrying O O\nto O O\nextract O O\nthe O O\nvoice O O\nof O O\nthe O O\ncaller O O\nfrom O O\nthe O O\naudio O O\nof O O\nthe O O\npodcast O O\nand O O\nthat O O\nis O O\nunlikely O O\nto O O\nbe O O\naccurate O O\nat O O\nall O O\n. O O\n\nEspecially O O\nif O O\na O O\nvoice O O\nin O O\nthe O O\npodcast O O\nsays O O\n\" Name Name\nskip Name Name\n\" Name Name\n. O O\n\nSo O O\nI O O\nstill O O\nrecommend O O\nusing O O\n<Gather> Name Name\n! O O\n\nI O O\nhave O O\nscript O O\nfor O O\nasterisk O O\n\nI O O\nwant O O\nto O O\nexecute O O\nthis O O\nscript O O\nfrom O O\nbuild.xml Name Name\nfile O O\n\nthis O O\nversion O O\ndoes O O\nnot O O\nwork O O\n\nCan O O\nanybody O O\nhelp O O\nme O O\n? O O\n\nThe O O\ndifference O O\nbetween O O\nyou O O\ncommand Name Name\nline Name Name\nand O O\nthe O O\nAnt Name Name\nscript O O\nis O O\nthe O O\nworking O O\ndirectory O O\n. O O\n\nOne O O\nis O O\nthe O O\ncurrent O O\none O O\n, O O\nthe O O\nother O O\nis O O\nthe O O\nasterisk Name Name\none O O\n. O O\n\nProbably O O\nyou O O\njust O O\nwant O O\nto O O\ndo O O\n: O O\n\nIn O O\nErlang Name Name\nis O O\nthere O O\na O O\nway O O\nreference O O\nthe O O\ncurrently O O\nexecuting O O\nfunction O O\n) O O\n? O O\n\nThat O O\nwould O O\nbe O O\nuseful O O\nto O O\nspawn O O\nan O O\ninfinite O O\nloop O O\n: Name Name\n\nIn O O\nJavaScript Name Name\narguments.callee Name Name\ndoes O O\njust O O\nthat O O\n, O O\nsee O O\nthe O O\nspecification O O\non O O\nMDC O O\n. O O\n\nEdit O O\nto O O\nanswer O O\na O O\n' O O\nwhy O O\nwould O O\nyou O O\ndo O O\nthat O O\n' O O\n: O O\nmostly O O\ncuriosity O O\n; O O\nit O O\nis O O\nalso O O\nuseful O O\nto O O\ndefine O O\na O O\ntimer O O\nwhen O O\nprorotyping O O\n: O O\n\nThe O O\nErlang Name Name\nlanguage O O\ndoes O O\nnot O O\nexpose O O\nany O O\nway O O\nfor O O\nanonymous O O\nfunctions O O\nto O O\nrefer O O\nto O O\nthem O O\nself O O\n, O O\nbut O O\nthere O O\nis O O\na O O\nrumour O O\nthat O O\nCore Name Name\nErlang Name Name\n( O O\nan O O\nintermediate O O\nbut O O\nofficial O O\nrepresentation O O\nin O O\nthe O O\ncompiler Name Name\nphases O O\n) O O\ndoes O O\nhave O O\nsuch O O\na O O\nfeature O O\n. O O\n\nI O O\ndo O O\nn't O O\nknow O O\nwhy O O\nI O O\nam O O\nforwarding O O\nthis O O\n, O O\nbut O O\nyou O O\nknow O O\n, O O\nif O O\nyou O O\nhappen O O\nto O O\nbe O O\ngenerating O O\nCore Name Name\nErlang Name Name\nin O O\na O O\nDSL Name Name\nor O O\nsimilar O O\nit O O\nis O O\nsomething O O\nthat O O\nis O O\nwithin O O\nreach O O\n. O O\n\nIn O O\nErlang/OTP Name Name\n17.0-rc1 Name Name\n, O O\nyou O O\ncan O O\nuse O O\na O O\nnamed O O\nfun O O\nfor O O\nthat O O\n: O O\n\nIn O O\nearlier O O\nversions O O\n, O O\nthere O O\nis O O\nno O O\nway O O\nto O O\ndo O O\nexactly O O\nthat O O\n. O O\n\nYou O O\ncould O O\npass O O\nthe O O\nfunction O O\nitself O O\nas O O\nan O O\nargument O O\n: O O\n\nI O O\nam O O\ndeveloping O O\nan O O\niOS Name Name\napplication O O\n( O O\niPad Name Name\n) O O\n, O O\nmy O O\nproblem O O\nis O O\nto O O\nchoose O O\nhow O O\nto O O\nstore O O\nmy O O\ndata O O\n( O O\nI O O\nhave O O\nan O O\nequivalent O O\nof O O\n1Mb O O\nof O O\ndata O O\n) O O\n. O O\n\nWhat O O\nis O O\nthe O O\nbest O O\none O O\nto O O\nchoose O O\nand O O\nWhy O O\n? O O\n\n( O O\nProperty Name Name\nlist Name Name\n, O O\nXML Name Name\n, O O\nSQlite Name Name\n, O O\n. O O\n) O O\n. O O\n\nthanks O O\nfor O O\nour O O\nanswers O O\n. O O\n\nThat O O\n's O O\nnot O O\nenough O O\ninformation O O\nto O O\nanswer O O\nyour O O\nquestion O O\nproperly O O\n. O O\n\nThere O O\nare O O\na O O\nlot O O\nof O O\nfactors O O\nthat O O\naffect O O\nthe O O\ndecision O O\n. O O\n\nPersistence O O\nlibraries O O\nand O O\nframeworks O O\nall O O\nhave O O\nvery O O\nspecial O O\nconstraints O O\nand O O\nlearning O O\ncurves O O\n. O O\n\nHere O O\nare O O\nsome O O\nquestions O O\nto O O\nbe O O\ntaken O O\ninto O O\naccount O O\n: O O\n\nWhat O O\nkind O O\nof O O\ndata O O\n? O O\n\nHow O O\nmuch O O\ndata O O\n? O O\n\nHow O O\noften O O\ndoes O O\nthe O O\ndata O O\nchange O O\nand O O\nin O O\nwhich O O\npatterns O O\n? O O\n\nWhere O O\ndoes O O\nthe O O\ndata O O\ncome O O\nfrom O O\n( O O\nserver Name Name\n, O O\nuser O O\ninput O O\n) O O\n\nDo O O\nyou O O\nwant O O\nto O O\nsynchronize O O\ndata O O\n( O O\niCloud Name Name\n, O O\nDropbox Name Name\n, O O\nother O O\nservices O O\n) O O\n\nWhat O O\nare O O\ntypical O O\naccess O O\npatterns O O\n? O O\n\n( O O\nDatabase O O\nvs O O\n. O O\nwhole O O\nfile O O\n) O O\n\nShall O O\nthe O O\ndata O O\nbe O O\nportable O O\n? O O\n\nTextView Name Name\nhas O O\nsetText(String) Name Name\n, O O\nbut O O\nwhen O O\nlooking O O\non O O\nthe O O\nDoc O O\n, O O\nI O O\ndo O O\nn't O O\nsee O O\none O O\nfor O O\nGridLayout Name Name\n. O O\n\nIs O O\nthere O O\nan O O\nadapter Name Name\nor O O\nsomething O O\nthat O O\nI O O\nneed O O\nto O O\nuse O O\ninstead O O\n? O O\n\nIf O O\nso O O\n, O O\nwhich O O\none O O\n? O O\n\nThanks O O\nin O O\nadvance O O\nfor O O\nany O O\nof O O\nthe O O\nhelp O O\n. O O\n\nGridLayout Name Name\nis O O\na O O\nViewGroup Name Name\n, O O\nto O O\nwhich O O\nyou O O\ncan O O\nonly O O\nadd O O\nviews O O\n; O O\nif O O\nyou O O\nwant O O\nto O O\nmake O O\na O O\ncalendar Name Name\n, O O\nit O O\nwould O O\nbe O O\nbetter O O\nto O O\nuse O O\na O O\nGridView Name Name\n. O O\n\nfor O O\nthe O O\nGridView Name Name\n, O O\ncreate O O\nan O O\nadapter Name Name\nwhich O O\nextends O O\nBaseAdapter Name Name\n, O O\nand O O\nuse O O\nTextView Name Name\nfor O O\nthe O O\ngrid O O\n's O O\nlayout O O\n. O O\n\nhere O O\nis O O\nan O O\nexample O O\n. O O\n\nWe O O\ncan O O\ncreate O O\nmany O O\nwrapper O O\nscripts O O\nto O O\ncall O O\nspecific O O\nbinary Name Name\nfiles O O\nand O O\nuse O O\nalias O O\nto O O\npoint O O\nto O O\ndifferent O O\nstring Name Name\n. O O\n\nMy O O\nrequirement O O\nis O O\nwe O O\nneed O O\nto O O\ncall O O\nthe O O\nalias O O\nstring Name Name\nin O O\nexec Name Name\nsystem O O\ncall O O\n. O O\n\nIf O O\nwe O O\nrun O O\nthat O O\nstring Name Name\ndirectly O O\nin O O\nexec Name Name\ncall O O\n, O O\nthe O O\nsystem O O\ncall O O\nfails O O\n\nEx O O\n: O O\n\nThe O O\nabove O O\nexecl Name Name\nsystem O O\ncall O O\nfails O O\n. O O\n\nI O O\nthink O O\nit O O\nis O O\nunable O O\nto O O\nfind O O\nalias O O\nstring Name Name\nin O O\nthe O O\nPATH Name Name\nand O O\nthat O O\nis O O\nexpected O O\n. O O\n\nHow O O\nto O O\nget O O\naway O O\nfrom O O\nthis O O\nproblem O O\n? O O\n\n? O O\n\nThe O O\nusage O O\nof O O\nksh/bash Name Name\nwith O O\ncommand O O\nas O O\noptions O O\nworked O O\nlike O O\na O O\ncharm O O\n. O O\n\nThanks O O\n\nI O O\nneed O O\nto O O\nget O O\nall O O\nfields O O\nof O O\na O O\nrow Name Name\nwho O O\nhas O O\nmin Name Name\nsqrt Name Name\nvalue O O\nfor O O\none O O\ncolumn Name Name\n\nThe O O\nmin Name Name\nfunction O O\nworks O O\nperfectly O O\nBut O O\nthe O O\nname Name Name\nand O O\ndist Name Name\nwould O O\nalways O O\nreturn O O\nfrom O O\nfirst O O\nrow Name Name\n. O O\n\nEg O O\n. O O\n\nMin Name Name\nwas O O\nfrom O O\n5th O O\nrow Name Name\neven O O\nthen O O\nname Name Name\nand O O\ndist Name Name\nwould O O\nbe O O\nof O O\nfirst O O\nrow Name Name\n\nmysql Name Name\nversion O O\n\nI O O\nhave O O\na O O\nconfiguration O O\nthat O O\nhas O O\na O O\nhardcoded O O\nresolution O O\nof O O\n1200x800 O O\n, O O\nhowever. O O\n. O O\n\nin O O\nthe O O\nonPrepare Name Name\nI O O\nlike O O\nto O O\ncheck O O\nthe O O\nuser-agent Name Name\nstring Name Name\nto O O\nsee O O\nif O O\nsomeone O O\nis O O\ntrying O O\nto O O\ntest O O\niPhone Name Name\nor O O\niPad Name Name\n. O O\nthen O O\nI O O\nchange O O\nthe O O\nresolution O O\naccordingly O O\n. O O\n\nThis O O\nworks O O\ngreat O O\nwith O O\nplain O O\nold O O\nprotractor/nodeJS Name Name\n, O O\nbut O O\nwhen O O\nI O O\ntry O O\nto O O\nuse O O\nmy O O\ngrunt Name Name\ntask O O\n. O O\nit O O\ncompletely O O\nignores O O\nthe O O\nupdated O O\nresolution O O\nof O O\n375x667 Name Name\nand O O\nruns O O\nwith O O\nthe O O\ndefault O O\n. O O\n\nWhat O O\nI O O\nthink O O\nmight O O\nbe O O\noccurring O O\nwas O O\na O O\nversion O O\nmismatch O O\nperhaps O O\n, O O\nbut O O\nunsure O O\nhow O O\nto O O\nfix/track O O\nthis O O\nbehavior O O\ndown O O\n. O O\n\nIdeas O O\n? O O\n\nmytestconfig.conf.js Name Name\n\nI O O\nhave O O\nthe O O\nfollowing O O\nrecurrence O O\n: O O\n\nIt O O\ncan O O\nbe O O\nsolved O O\ndirectly O O\nwith O O\na O O\ntheorem O O\ncalled O O\n\" O O\nSubtraction Name Name\nand Name Name\nConquer Name Name\n\" O O\n, O O\nbut O O\nin O O\nthis O O\ncase O O\nI O O\n'm O O\ninterested O O\nin O O\nthe O O\nback Name Name\nsubstitution Name Name\nmethod O O\n. O O\n\nI O O\ntried O O\nthe O O\nsolution O O\nbelow O O\nbut O O\nI O O\n'm O O\nalmost O O\ncertain O O\nthat O O\nI O O\n've O O\ncommitted O O\nsome O O\nerror O O\nbecause O O\nI O O\nca O O\nn't O O\nsee O O\nhow O O\nto O O\nbuild O O\nthe O O\nfinal O O\nequation O O\n.. O O\n. O O\n, O O\nbelow O O\nmy O O\nattempt O O\n: O O\n\n1st O O\niteration O O\n\n2nd O O\niteration O O\n\n3rd O O\niteration O O\n\nAttempt O O\nto O O\nfind O O\nthe O O\nequation O O\n: O O\n\nI O O\nhave O O\nfollowing O O\ncode O O\n. O O\n\nWhy O O\ndo O O\nall O O\nthe O O\nthree O O\nobjects O O\nrefer O O\nto O O\nthe O O\nsame O O\narray Name Name\nwhile O O\nthe O O\nstring Name Name\nvariable O O\nis O O\nindependent O O\n? O O\n\nHow O O\ncan O O\nI O O\nfix O O\nit O O\nwithout O O\nexplicitly O O\nadding O O\n: O O\nfunction Name Name\nB() Name Name\n{ Name Name\nthis.arr Name Name\n= Name Name\n[ Name Name\n] Name Name\n; Name Name\n} Name Name\n\nAn O O\nexplanation O O\nwould O O\nbe O O\n: O O\n\nPrototypes O O\nare O O\nlive O O\nchains O O\nbetween O O\nobjects O O\n. O O\n\nBecause O O\nB Name Name\n's O O\nprototype O O\nis O O\na O O\nsingle O O\ntone O O\ninstance O O\nof O O\nA Name Name\n, O O\nthe O O\narray Name Name\nprop O O\nis O O\npassed O O\nby O O\nreference O O\n. O O\n\nThis O O\nmeans O O\nthat O O\nfor O O\neach O O\nB Name Name\ninstance O O\nwe O O\nhave O O\naccess O O\nto O O\nthe O O\nsame O O\nA Name Name\ninstance O O\non O O\nthe O O\nprototype O O\n. O O\n\nThis O O\nmight O O\nsound O O\nconfusing O O\nat O O\nfirst O O\nbut O O\nthat O O\n's O O\nthe O O\nmagic O O\nof O O\nprototypes O O\nin O O\nJavaScript Name Name\n. O O\n\nThis O O\nis O O\nthe O O\ncaveat O O\nof O O\nprototypal O O\ninheritance O O\n. O O\n\nAnything O O\non O O\nthe O O\nprototype O O\nwill O O\nbe O O\npassed O O\ndown O O\nto O O\neach O O\ninstance O O\n. O O\n\nTo O O\nmaintain O O\ndifferent O O\ninstances O O\nof O O\nthe O O\nattribute O O\nwe O O\ninitialise O O\nour O O\nobject O O\n's O O\nattributes O O\nin O O\nthe O O\nconstructor O O\n. O O\n\nWhen O O\nworking O O\nwith O O\nobjects O O\nin O O\nJS Name Name\n( O O\nlike O O\narrays Name Name\n) O O\n, O O\nthey O O\nare O O\npassed O O\nby O O\nreference O O\n. O O\n\nTo O O\nmake O O\nuse O O\nof O O\nJS Name Name\n's O O\nprototype O O\nsystem O O\nI O O\nwould O O\nsuggest O O\nsomething O O\nlike O O\nso O O\n: O O\n\nThis O O\nway O O\nwe O O\nreuse O O\nthe O O\nmethods O O\nfrom O O\nthe O O\n\" O O\nparent O O\n\" O O\nand O O\nhave O O\na O O\nlocalised O O\narray Name Name\nin O O\nour O O\n\" O O\nchild O O\n\" O O\n. O O\n\nAt O O\na O O\nfirst O O\nglance O O\nthis O O\nmight O O\nlook O O\nas O O\na O O\nclassic O O\nOOP O O\ninheritance O O\ncase O O\nbut O O\nit O O\nis O O\na O O\nbit O O\ndifferent O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\nread O O\nmore O O\nabout O O\nprototypes O O\nin O O\nJS Name Name\nI O O\nrecommend O O\nthis O O\narticle O O\n\nHope O O\nthis O O\nhelps O O\n. O O\n\nHi O O\nall O O\nI O O\nhave O O\na O O\nproblem O O\nwith O O\nCSV Name Name\nopening O O\nthrough O O\nPHP Name Name\ncode O O\n. O O\n\nMy O O\nPHP Name Name\ncode O O\nis O O\n: O O\n\nThe O O\nproblem O O\nis O O\nn't O O\nin O O\nPHP Name Name\ncode O O\n, O O\nthe O O\nproblem O O\nis O O\nin O O\n.csv Name Name\nfile O O\n. O O\n\nPHP Name Name\ncode O O\nmust O O\nwork O O\neven O O\nif O O\nthere O O\nis O O\nmissing O O\ncomma O O\n, O O\nwhen O O\nit O O\nshow O O\nthe O O\ninformation O O\nthe O O\nnormal O O\nway O O\n. O O\n\nThe O O\n.csv Name Name\nfile O O\n: O O\n\nThe O O\nproblem O O\nis O O\nmost O O\nlikely O O\nto O O\ndo O O\nwith O O\nlines O O\nlike O O\n: O O\n\nWhere O O\nthere O O\nis O O\nno O O\ncity O O\ninformation O O\n. O O\n\nIn O O\nthis O O\ncase O O\n, O O\nyou O O\n'll O O\nnever O O\nget O O\n\" Name Name\n9876542 Name Name\n\" Name Name\nto O O\nshow O O\nup O O\nin O O\nthe O O\nphone Name Name\ncolumn Name Name\nunless O O\nyou O O\napply O O\nsome O O\nlogic O O\nto O O\ndetermine O O\nthat O O\nthis O O\nis O O\nn't O O\nthe O O\ncity Name Name\n, O O\nand O O\nto O O\nskip O O\nto O O\nthe O O\nnext O O\ncolumn Name Name\n. O O\n\nWhat O O\nyou O O\nshould O O\ndo O O\nthough O O\n, O O\nso O O\nthat O O\nyou O O\nhave O O\n6 O O\ncolumns Name Name\nin O O\neach O O\nrow Name Name\n, O O\nis O O\nthat O O\ninstead O O\nof O O\nresetting O O\n$max Name Name\nevery O O\ntime O O\n, O O\nyou O O\nshould O O\njust O O\nset O O\nit O O\nonce O O\nafter O O\nreading O O\nthe O O\nheader O O\n. O O\n\nThen O O\ndisplay O O\nthat O O\nnumber O O\nof O O\ncolumns Name Name\nfrom O O\neach O O\nrow Name Name\nyou O O\nread O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nbuild O O\na O O\nstructure O O\ncalled O O\nPROCESS Name Name\nin O O\nC Name Name\n, O O\nthis O O\nstruct Name Name\nshould O O\ncontain O O\nthe O O\nID(id) Name Name\nand O O\nwaiting O O\ntime O O\n( O O\nwt Name Name\n) O O\nof O O\nthe O O\nprocess Name Name\n\nnow O O\ni O O\nwant O O\nto O O\nmake O O\nmore O O\nthen O O\none O O\ninstance O O\nof O O\nthis O O\nstruct Name Name\nlike O O\nan O O\narray Name Name\n. O O\n\nwhat O O\ni O O\nwant O O\nto O O\ndo O O\nis O O\nsomething O O\nlike O O\nthis O O\n\nbut O O\ni O O\nwant O O\nto O O\ndo O O\nit O O\nusing O O\ndynamic O O\nmemory O O\nallocation O O\n: O O\n\nwhat O O\nis O O\nmy O O\nmistake O O\n\nI O O\nwould O O\nallocate O O\nlike O O\nthis-> O O\n\nWrite-> O O\n\nRead-> O O\n\nFree Name Name\nwhen O O\ndone. O O\n. O O\n\n/A O O\n\npt Name Name\nis O O\na O O\npointer Name Name\nto O O\nPROCESS Name Name\n, O O\npt[0] Name Name\nis O O\nthe O O\nfirst O O\nPROCESS Name Name\nobject O O\npointed O O\nto O O\nby O O\npt Name Name\n. O O\n\nThe O O\n-> Name Name\noperator O O\nto O O\naccess O O\nmembers O O\nof O O\na O O\nstruct Name Name\nmust O O\nbe O O\nused O O\nwith O O\npointers Name Name\nonly O O\n, O O\notherwise O O\nuse O O\n. Name Name\n\nwould O O\nbe O O\ncorrect.1 O O\n\nAn O O\nsince O O\nyou O O\nsay O O\nyou O O\nare O O\ndoing O O\nC Name Name\n, O O\nyou O O\ndo O O\nn't O O\nneed O O\nto O O\ncast O O\nmalloc Name Name\nor O O\ncalloc Name Name\n. O O\n\nAlso O O\ndo O O\nn't O O\nforget O O\nto O O\ncheck O O\nthe O O\nreturn O O\nvalue O O\nof O O\ncalloc Name Name\nand O O\ndo O O\nn't O O\nforget O O\nto O O\nfree O O\nthe O O\nmemory O O\nlater O O\nwith O O\nfree(pt) Name Name\n; Name Name\n. O O\n\nFotenotes O O\n\n1Note O O\nthat O O\nthis O O\nwould O O\nbe O O\nequivalent O O\nto O O\n\nbut O O\nif O O\nyou O O\nwant O O\nto O O\nset O O\nid Name Name\nof O O\nthe O O\nsecond O O\nelement O O\n, O O\nyou O O\nwould O O\nneed O O\nto O O\ndo O O\n\nbut O O\nI O O\nthink O O\nit O O\n's O O\nmore O O\nreadable O O\nto O O\ndo O O\n\nSuppose O O\nthe O O\narray Name Name\nis O O\n: O O\n\nI O O\nwant O O\nto O O\ncopy O O\nthe O O\ndiamond Name Name\narrangement O O\n, O O\ni.e O O\n. O O\nthe O O\nelements O O\nd Name Name\n, O O\nb Name Name\n, O O\nf Name Name\n, O O\nh Name Name\n, O O\ne Name Name\ninto O O\na O O\nnew O O\n1D O O\narray Name Name\n. O O\n\nThe O O\nabove O O\narray Name Name\nis O O\njust O O\nan O O\nexample O O\n, O O\nthe O O\nmatrix Name Name\ncould O O\nbe O O\nany O O\nsize O O\nrectangular O O\nmatrix Name Name\nand O O\nthe O O\nlocation O O\nof O O\nthe O O\ndiamond Name Name\ncan O O\nbe O O\nanywhere O O\nwithin O O\nthe O O\narray Name Name\n. O O\n\nAssuming O O\nthat O O\nyou O O\nare O O\nlooking O O\nonly O O\nfor O O\n5-elements O O\ndiamonds Name Name\n, O O\nin O O\nthe O O\norder O O\nyou O O\nspecified O O\n, O O\nyou O O\ncould O O\ndo O O\n: O O\n\nThis O O\nworks O O\nby O O\nbuilding O O\na O O\nmask O O\n( O O\nlogical O O\nindex O O\n) O O\nwith O O\nthe O O\ndesired O O\ndiamond Name Name\nshape O O\nand O O\na O O\nspecified O O\ncenter O O\n. O O\n\nThe O O\nmask O O\nis O O\nobtained O O\nby O O\ncomputing O O\nthe O O\nL1 O O\n( O O\nor O O\ntaxicab O O\n) O O\ndistance O O\nfrom O O\neach O O\nentry O O\nto O O\nthe O O\ndiamond Name Name\ncenter O O\nand O O\ncomparing O O\nto O O\nthe O O\nappropriate O O\nthreshold O O\n: O O\n\nI O O\ntried O O\n.NET Name Name\nReactor Name Name\nwith O O\na O O\nsimple O O\nManaged Name Name\nExtensibility Name Name\nFramework Name Name\n( O O\nMEF Name Name\n) O O\napplication O O\n. O O\n\nThe O O\nhost O O\ncould O O\nn't O O\nload O O\nadpators O O\nand O O\naddins O O\n. O O\n\nThere O O\nis O O\nno O O\nforum O O\nsupport O O\nfrom O O\n.NET Name Name\nReactor Name O\n, O O\nso O O\nstackoverlow Name Name\nseems O O\nthe O O\nbest O O\nplace O O\nto O O\nask O O\nthis O O\nquestion O O\n. O O\n\n:) O O\n\nGiven O O\nthe O O\nspecificity O O\nof O O\nyour O O\nissue O O\nyou O O\nshould O O\nconsider O O\ncontacting O O\nEziriz O O\ndirectly O O\n, O O\nhowever O O\nas O O\nlong O O\nas O O\nyou O O\ndo O O\nn't O O\nobfuscate O O\nthe O O\nmetadata O O\nof O O\nthe O O\ntypes O O\nexported O O\neverything O O\nshould O O\nwork O O\nfine O O\n. O O\n\nMind O O\nthat O O\nas O O\nsoon O O\nas O O\nyou O O\n'll O O\nobfuscate O O\nthe O O\nmetadata O O\nof O O\na O O\npublic Name Name\ntype O O\nused O O\nelsewhere O O\nthings O O\nwill O O\nmost O O\nlikely O O\nbreak O O\n. O O\n\nAs O O\nper O O\nmy O O\nrequirement O O\nmain O O\npage O O\ncontains O O\nTextField Name Name\nand O O\nradio Name Name\nbutton Name Name\n. O O\n\nScenario O O\n1 O O\n: O O\nwhen O O\nthe O O\nuser O O\nenter O O\n\" O O\nlocationno Name Name\n\" O O\nin O O\nTextField Name Name\nand O O\nsubmit O O\nservlet Name Name\nwill O O\ncall O O\nDB O O\nand O O\nfetch O O\nrecords O O\nfor O O\nentered O O\nlocationno Name Name\nfrom O O\nDatabase O O\nand O O\nforward Name Name\nto O O\nlocationDetails Name Name\npage.its O O\nworking O O\nfine O O\n\nScenario O O\n2 O O\n: O O\nwhen O O\nthe O O\nuser O O\nenter O O\nenters O O\nlocationno O O\nin O O\nTextField Name Name\nsimultaneously O O\nclick O O\nradio Name Name\nbutton Name Name\nservlet Name Name\nwill O O\ncall O O\nDB O O\nand O O\nfetch O O\nall O O\ndetails O O\nfor O O\nthe O O\nparticular O O\nlocationno Name Name\nand O O\nforward Name Name\nto O O\nlocationAllDetails Name Name\npage.Here O O\nit O O\nis O O\nfetching O O\nrecords O O\nproper O O\nbut O O\nit O O\nalways O O\nforward Name Name\nto O O\nlocationDetails Name Name\npage O O\ninstead O O\nof O O\nlocationAllDetails Name Name\npage O O\n. O O\n\nWhen O O\nI O O\nclick O O\nsubmit O O\nbutton Name Name\nafter O O\nenter O O\nTextField Name Name\nand O O\nradio Name Name\nbutton Name Name\nin O O\nthe O O\nlog O O\nit O O\nshows O O\nOutputtype O O\n( O O\nradio Name Name\nbutton Name Name\nname O O\n) O O\nas O O\n\" Name Name\nALL Name Name\n\" Name Name\nbut O O\nstill O O\nit O O\nalways O O\nforward Name Name\nto O O\nlocationDetails Name Name\npage O O\ninstead O O\nof O O\nlocationAllDetails Name Name\npage O O\n\nwhat O O\n's O O\nwrong O O\nin O O\nthe O O\nbelow O O\ncode O O\nmy O O\ndoubt O O\nis O O\ndue O O\nto O O\nthis O O\nline O O\n\nPlease O O\nfind O O\nthe O O\ncode O O\nbelow O O\nand O O\nhelp O O\non O O\nthis O O\n. O O\n\nAfter O O\nevery O O\nforward Name Name\ndo O O\na O O\nreturn Name Name\n. O O\n\nSay O O\nI O O\n'm O O\naccessing O O\nwww.mywebsite.com O O\n. O O\n\nThis O O\nwebsite O O\nfetches O O\nthe O O\nfollowing O O\nasset O O\n: O O\n\nhttp://www.mywebsite.com/styles/app.css O O\n\nI O O\nwant O O\nto O O\naccess O O\nthe O O\nwebsite O O\nexactly O O\nas O O\nI O O\nnormally O O\nwould O O\n, O O\nwith O O\none O O\nexception O O\n: O O\n\nWhenever O O\nmy O O\nbrowser Name Name\nmakes O O\na O O\nrequest O O\nto O O\n/styles/app.css Name Name\n, O O\ninstead O O\nof O O\nfetching O O\nit O O\nfrom O O\nhttp://www.mywebsite.com O O\n, O O\nI O O\nwant O O\nto O O\nfetch O O\nit O O\nfrom O O\nhttp://localhost:3000/mywebsite/ O O\n. O O\n\nSo O O\ninstead O O\nit O O\nshould O O\nbe O O\nfetching O O\n: O O\n\nhttp://localhost:3000/mywebsite/styles/app.css O O\n\nIs O O\nthis O O\npossible O O\nwith O O\nnginx Name Name\n? O O\n\nI O O\ntried O O\nto O O\ndo O O\nit O O\nusing O O\nthe O O\nfollowing O O\nserver Name Name\nconfig O O\n: O O\n\nBut O O\neven O O\nafter O O\nrestarting O O\nnginx Name Name\n( O O\nsudo Name Name\nnginx Name Name\n-s Name O\nquit Name Name\n, O O\nsudo Name Name\nnginx Name Name\n) O O\n, O O\nnothing O O\nseems O O\nto O O\nhave O O\nchanged O O\n. O O\n\nWhen O O\nI O O\nbrowse O O\nto O O\nwww.mywebsite.com/styles/app.css O O\n, O O\nI O O\nstill O O\nget O O\nthe O O\nsame O O\nold O O\napp.css Name Name\nbeing O O\nretrieved O O\nfrom O O\nthe O O\nserver Name Name\n, O O\nrather O O\nthan O O\nmy O O\nlocal O O\none O O\n. O O\n\nI O O\nhave O O\na O O\nbig O O\ndataframe Name Name\nin O O\nR Name Name\n, O O\nand O O\nI O O\nwant O O\nto O O\nmake O O\nsome O O\nnew O O\ncolumns Name Name\nbased O O\non O O\nexisting O O\ncolumns Name Name\n. O O\n\nHowever O O\n, O O\nfor O O\neach O O\nrow Name Name\n, O O\nthe O O\nnew O O\nvalue O O\ndepends O O\nalso O O\non O O\nsome O O\nother O O\nrows Name Name\n. O O\n\nHere O O\nis O O\nsome O O\ndummy O O\ndata O O\n\nWhat O O\nI O O\nwant O O\nto O O\ndo O O\n, O O\nis O O\nfor O O\nevery O O\nrow Name Name\n( O O\nuniquely O O\nidentified O O\nby O O\ndocnr Name Name\n) O O\nto O O\ntake O O\nthe O O\ndate Name Name\nand O O\nthe O O\nclient Name Name\nid Name Name\n, O O\nand O O\nfind O O\nall O O\nof O O\nthe O O\nother O O\nrows Name Name\nthat O O\nhave O O\nthe O O\nsame O O\nclientid Name Name\n, O O\nand O O\nan O O\nearlier O O\ndate Name Name\n. O O\n\nThen O O\n, O O\nI O O\nwant O O\nto O O\ncalculate O O\nsome O O\nthings O O\nfrom O O\nthis O O\nsubset O O\n. O O\n\nFor O O\nexample O O\n, O O\nI O O\nwant O O\nthe O O\ntotal O O\nnumber O O\nof O O\nrows Name Name\nin O O\nthis O O\nsubset O O\n, O O\nand O O\nthe O O\ntotal O O\nof O O\nall O O\nvalues O O\nof O O\nthis O O\nsubset O O\n. O O\n\nSo O O\nfor O O\nthis O O\nexample O O\ndata O O\n, O O\nI O O\nwould O O\nexpect O O\n: O O\n\nAt O O\nthe O O\nmoment O O\n, O O\nI O O\nuse O O\na O O\nfor Name Name\nloop O O\n: O O\n\nThis O O\nloop O O\nis O O\nobviously O O\nvery O O\nslow O O\nfor O O\na O O\ndataframe Name Name\nof O O\n700k O O\nrows Name Name\n( O O\nhave O O\nnot O O\nrun O O\nit O O\nto O O\ncompletion O O\nyet O O\n) O O\n. O O\n\nA O O\nparallel O O\nimplementation O O\nwith O O\ndoSNOW Name Name\ndoes O O\nnot O O\nseem O O\nto O O\nscale O O\nmuch O O\nbetter O O\n. O O\n\nI O O\n've O O\ntried O O\nusing O O\na O O\nsql Name Name\nquery O O\nwith O O\nsqldf Name Name\n, O O\nbut O O\nsubqueries O O\ncan O O\nonly O O\nreturn O O\n1 O O\nvalue O O\nat O O\na O O\ntime O O\n, O O\nwhich O O\nwould O O\nmean O O\nrunning O O\nthe O O\nquery O O\nall O O\nover O O\nfor O O\nevery O O\nnew O O\ncolumn Name Name\nI O O\nwant O O\nto O O\ndefine O O\n( O O\nand O O\nI O O\nwant O O\nto O O\nadd O O\nmany O O\nmore O O\nderivative O O\ncolumns Name Name\nlater O O\n) O O\n. O O\n\nI O O\ncame O O\nacross O O\na O O\nsolution O O\nwith O O\nSQL Name Name\nobjects O O\n( O O\nIs O O\nit O O\npossible O O\nto O O\nget O O\nmultiple O O\nvalues O O\nfrom O O\na O O\nsubquery O O\n? O O\n) O O\n, O O\nbut O O\nobjects O O\ndid O O\nn't O O\nwork O O\nin O O\nR Name Name\n's O O\nsqldf Name Name\n. O O\n\nUsing O O\njoins O O\ndoes O O\nn't O O\nwork O O\nbecause O O\nthe O O\nsecond O O\nquery O O\nneeds O O\nto O O\nhave O O\ninformation O O\nfrom O O\nthe O O\nfirst O O\nquery O O\n. O O\n\nI O O\njust O O\nstarted O O\nin O O\nR Name Name\n( O O\nand O O\nam O O\nalso O O\nnot O O\nvery O O\nfamiliar O O\nwith O O\nsql Name Name\n) O O\n, O O\nso O O\nI O O\nwould O O\nbe O O\nmuch O O\nobliged O O\nif O O\nsomeone O O\nknew O O\na O O\nmore O O\nefficient O O\nway O O\nto O O\ndo O O\nthis O O\n. O O\n\nHere O O\nare O O\ntwo O O\nlines O O\nof O O\nbase O O\nR Name Name\ncode O O\nusing O O\nave Name Name\nfor O O\ngrouping O O\n. O O\n\nThis O O\nreturns O O\n\nI O O\nsuspect O O\nthat O O\nthe O O\nabove O O\ncode O O\nwil O O\nperform O O\nquickly O O\nenough O O\nfor O O\nthe O O\ndata O O\nthat O O\nyou O O\ndescribed O O\n. O O\n\nHowever O O\n, O O\ndata.table Name Name\nis O O\na O O\nrecommended O O\npackage O O\nfor O O\nworking O O\nwith O O\ndatases O O\nthat O O\nmay O O\nhave O O\nbillions O O\nof O O\nrows Name Name\n. O O\n\nAn O O\nanalog O O\nto O O\nthe O O\nabove O O\ncode O O\nin O O\ndata.table Name Name\nwould O O\nbe O O\n\nwhere O O\nseq_len(.N) Name Name\nfills O O\nthe O O\nrole O O\nof O O\nseq_along Name Name\nand O O\nshift Name Name\nfills O O\nthe O O\nrole O O\nof O O\nc Name Name\n( Name Name\n0 Name Name\n, Name Name\nhead Name Name\n( Name Name\ncumsum(x) Name Name\n, Name Name\n-1 Name Name\n) Name Name\n) Name Name\nin O O\nthe O O\nprevious O O\ncode O O\n. O O\n\nThis O O\nreturns O O\na O O\ndata.table Name Name\nwith O O\nthe O O\nsame O O\nvalues O O\nas O O\nabove O O\n. O O\n\ndata O O\n\nThis O O\nworks O O\neasily O O\nwith O O\ndplyr Name Name\n\ndf1 Name Name\nnow O O\ncontains O O\nthe O O\ndata O O\nyou O O\nwant O O\n\nRecently O O\nI O O\n'm O O\ntrying O O\nto O O\ncreate O O\na O O\nZSL O O\nsession O O\non O O\nmy O O\ncamera Name Name\napp O O\nusing O O\nthe O O\ncamera2 Name Name\nAPI Name Name\nfrom O O\nandroid Name Name\n. O O\n\nI O O\n'm O O\nusing O O\na O O\ndevice O O\nwith O O\na O O\nLEVEL-3 O O\nhardware O O\nlevel O O\nwhich O O\nsupports O O\nYUV_REPROCESSING Name Name\n. O O\n\nIn O O\nthis O O\ncase O O\nI O O\n'm O O\nusing O O\nthe O O\nnext O O\ntemplate O O\n: O O\n\nAll O O\nthe O O\ntables Name Name\nand O O\ninformation O O\ncan O O\nbe O O\nfound O O\nin O O\nthe O O\nReprocessableCaptureSession Name Name\ndocumentation O O\n\nWith O O\nthe O O\ntable Name Name\nabove O O\n, O O\nI O O\ncreated O O\na O O\nReprocessableCatureSession Name Name\nwith O O\nthe O O\nnext O O\nvalues O O\n: O O\n\nInput O O\nconfiguration O O\nin O O\nYUV Name Name\nformat O O\nwith O O\n4608 Name Name\nx Name Name\n3456 Name Name\nSize O O\n( O O\nThe O O\none O O\nreturned O O\nby O O\nmy O O\nCameraCharacteristics Name Name\nwhen O O\ncalling O O\ngetInputSizes(ImageFormat.YUV_420_888) Name Name\n\nYUV_420_888 Name Name\nImageReader Name Name\nSurface Name Name\nwith O O\n4608 O O\nx O O\n3456 O O\nsize O O\n. O O\n\nJPEG Name Name\nImageReader Name Name\nSurface Name Name\nwith O O\nthe O O\nsize O O\nthat O O\nI O O\nwant O O\n( O O\nWith O O\na O O\nmaximum O O\nsize O O\nof O O\n4608x3456 Name Name\n) O O\n. O O\n\nA O O\nPreview O O\nSurface Name Name\nin O O\nYUV Name Name\nFormat O O\n. O O\n\nRAW Name Name\nImageReader Name Name\nSurface Name Name\nwith O O\nthe O O\nmax O O\nsize O O\nof O O\nthe O O\napplication O O\n( O O\nRAW Name Name\nalways O O\nshould O O\nbe O O\nsensor O O\ndevice O O\nsize O O\n) O O\n. O O\n\nWith O O\nthis O O\nvalues O O\nI O O\ncan O O\ncreate O O\na O O\nReprocessableCaptureSession Name Name\nan O O\neverything O O\nworks O O\nwell O O\n. O O\n\nI O O\nattached O O\nmy O O\nYUV_420_888 Name Name\nSurface Name Name\nto O O\nmy O O\npreview O O\nCaptureRequest Name Name\nto O O\ncapture O O\nall O O\nthe O O\nimages Name Name\nfrom O O\nthe O O\npreview O O\nin O O\na O O\ncustom O O\nclass O O\nwhich O O\nworks O O\nas O O\na O O\nRingQueue Name Name\nof O O\nimages Name Name\nand O O\nCaptureRequest Name Name\nwhere O O\nI O O\nstore O O\nthe O O\nlast O O\nX Name Name\nimages Name Name\nfrom O O\nmy O O\npreview O O\n, O O\nready O O\nto O O\nbe O O\ntaked O O\nand O O\nreprocessed O O\nin O O\nthe O O\nway O O\nthat O O\nI O O\nwant(ZSL) O O\n. O O\n\nI O O\ncan O O\nreprocess O O\nimages O O\nfrom O O\nYUV Name Name\nto O O\nRAW Name Name\n, O O\nto O O\nJPEG Name Name\n, O O\nchange O O\nvalues O O\nand O O\neverything O O\n, O O\nbut O O\nmy O O\nproblem O O\nappear O O\nwhen O O\nI O O\nwant O O\nto O O\nuse O O\nthe O O\nYUV Name Name\nimages Name Name\nthat O O\nI O O\ncaptured O O\nwhich O O\nare O O\nalways O O\nat O O\nMAX Name Name\nSIZE(4608x3456) Name Name\nto O O\ngenerate O O\na O O\nJPEG Name Name\nfrom O O\nthem O O\nor O O\nprocess O O\nthem O O\nwith O O\nsome O O\nnative O O\nlibraries O O\nwhich O O\nuses O O\nYUV Name Name\nbytearrays Name Name\nto O O\nwork O O\n. O O\n\nIn O O\nthis O O\ncase O O\nmy O O\nimage Name Name\nis O O\nalways O O\nin O O\nthe O O\nMAX Name Name\nSize Name Name\n, O O\nand O O\nI O O\ndo O O\nn't O O\nwant O O\nthat O O\n. O O\n\nThe O O\ndocumentation O O\nsays O O\nthat O O\nmy O O\n\" O O\nSame O O\nas O O\ninput O O\n\" O O\nTarget O O\n( O O\nYUV Name Name\nin O O\nthis O O\ncase O O\n) O O\nsize O O\ncan O O\ngo O O\nfrom O O\nminimum O O\nto O O\nMAXIMUM Name Name\n, O O\nit O O\ndoes O O\nn't O O\nindicate O O\nthat O O\nit O O\njust O O\nwork O O\nin O O\nthe O O\nmax O O\nsize O O\ngiven O O\nby O O\nthe O O\nhardware O O\n. O O\n\nIt O O\nis O O\npossible O O\nto O O\nachieve O O\nthese O O\nin O O\nsome O O\nway O O\n? O O\n\nI O O\nmean O O\n, O O\nI O O\nhave O O\ntried O O\nto O O\nlook O O\nto O O\nmore O O\ncodes O O\nwhich O O\nuse O O\nCamera Name Name\nAPI Name Name\n2 Name Name\n, O O\nbut O O\nthe O O\ndocumentation O O\nabout O O\nReprocessableCaptureRequest Name Name\nis O O\na O O\nbit O O\npoor O O\nand O O\nthe O O\nonly O O\ncode O O\nthat O O\nI O O\nfound O O\non O O\ninternet O O\nis O O\nthe O O\nCTS Name Name\nrepository O O\nfrom O O\nGoogle Name Name\n. O O\n\nMy O O\nproblem O O\ncan O O\nbe O O\nsolved O O\njust O O\nfinding O O\na O O\nway O O\nto O O\nconfigure O O\nmy O O\nSession Name Name\nwith O O\na O O\nlower O O\nYUV Name Name\nimageReader Name Name\nsession O O\nor O O\nlooking O O\nto O O\nsome O O\nway O O\nto O O\nresize O O\na O O\nYUV Name Name\nByte[] Name Name\nto O O\na O O\ndifferent O O\nwidth O O\nand O O\nheight O O\nvalues O O\n. O O\n\nThank O O\nyou O O\nso O O\nmuch O O\nfor O O\nyour O O\ntime O O\n! O O\n\nI O O\nhave O O\na O O\nhard-coded O O\nlist Name Name\n, O O\neach O O\nlist Name Name\nitem O O\nof O O\nwhich O O\nhas O O\nan O O\nID Name Name\n. O O\n\nI O O\nwant O O\nto O O\nhave O O\njQuery Name Name\ngenerate O O\nlist Name Name\nitems O O\nin O O\nanother O O\nlist Name Name\n, O O\nand O O\nset O O\nas O O\ntheir O O\ntext O O\ncontent O O\nthe O O\nID Name Name\nattribute O O\nvalues O O\nof O O\neach O O\nof O O\nthe O O\nhard-coded O O\nlist Name Name\n's O O\nitems O O\n: O O\n\ni.e O O\n. O O\nhard-coded O O\nlist Name Name\n: O O\n\njQuery-generated Name Name\nlist Name Name\n: O O\n\nI O O\nhave O O\njQ Name Name\ngetting O O\nthe O O\nnumber O O\nof O O\ngallery O O\nitems O O\n.. O O\n. O O\n\n.. O O\n. O O\nhere O O\n's O O\nthe O O\ntrouble O O\n: O O\nhow O O\ndo O O\nI O O\nget O O\njQuery Name Name\nto O O\nget O O\neach O O\nof O O\nthe O O\nlist Name Name\nitems O O\n' O O\nIDs Name Name\nas O O\nit O O\ngenerates O O\nthe O O\nnav O O\nlist Name Name\n( O O\nbelow O O\n) O O\n? O O\n\nthis O O\nis O O\ngenerating O O\nthe O O\nnav O O\nlist Name Name\nhowever O O\nthe O O\ncontent O O\nin O O\neach O O\nis O O\nthe O O\nsame O O\nbecause O O\nof O O\nmy O O\nblindspot O O\nwith O O\nregard O O\nto O O\nvar Name Name\nListItemIndex Name Name\n\nThe O O\nresults O O\nof O O\nthe O O\nabove O O\ncode O O\ngenerates O O\nthe O O\nlist Name Name\nbut O O\nall O O\nthe O O\nlist Name Name\nitems O O\n' O O\ncontent O O\nis O O\nthe O O\nsame O O\n, O O\n' Name Name\nSlide Name Name\n#1 Name Name\nof Name Name\n3 Name Name\nitems Name Name\n' Name Name\n. O O\n\nMany O O\nthanks O O\nin O O\nadvance O O\n! O O\n\nsvs O O\n\nHere O O\nis O O\nthe O O\njsFiddle Name Name\n. O O\n\nThe O O\ncode O O\n: O O\n\nYour O O\ncode O O\nhad O O\nthe O O\nbasics O O\nright O O\n, O O\nyou O O\njust O O\nneed O O\nto O O\nmove O O\nthe O O\nappending O O\nto O O\nthe O O\neach Name Name\nfunction O O\nthat O O\nwill O O\nexecute O O\nfor O O\neach O O\nlist Name Name\nitem O O\n. O O\n\nThe O O\nitem O O\ncan O O\nthen O O\nbe O O\naccessed O O\nwith O O\n$(this) Name Name\n. O O\n\ni O O\nwould O O\nnot O O\nappend O O\nit O O\nin O O\nthe O O\nloop O O\n, O O\nbut O O\nconstructing O O\na O O\nstring Name Name\nand O O\nappend O O\nit O O\nwhen O O\nits O O\nfinished O O\n. O O\n\nits O O\nmuch O O\nfaster O O\nthen O O\nappend O O\nit O O\nfor O O\neach O O\nli Name Name\nin O O\nthe O O\ngallery O O\n. O O\n\ndemo O O\n: O O\n\nhttp://jsfiddle.net/meo/yKgSf/​ O O\n\nor O O\nthe O O\nfancy O O\nversion O O\n( O O\nbecause O O\nconstructing O O\nlong O O\nstrings Name Name\nwith O O\nJS Name Name\ncan O O\nbe O O\nslow O O\n) O O\n\ndemo O O\n: O O\n\nhttp://jsfiddle.net/meo/yKgSf/2/ O O\n\nPS O O\n: O O\nHaving O O\nonly O O\na O O\nnumber O O\nas O O\nID Name Name\nis O O\nnot O O\nW3C Name Name\nvalid O O\nin O O\nHTML4 Name Name\n. O O\n\nThats O O\nwhy O O\ni O O\nchoose O O\nto O O\nuse O O\nthe O O\nindex O O\nalternatively O O\nwhen O O\nthere O O\nis O O\nno O O\nID Name Name\non O O\nthe O O\nelement O O\n\nI O O\nwant O O\nto O O\nupload O O\nmultiple O O\nimages Name Name\non O O\nmy O O\ngallery O O\n\ntill O O\ntoday O O\nI O O\nwas O O\nusing O O\nthis O O\ncode O O\nto O O\nupload O O\nsingle O O\nimages Name Name\n\nmy O O\ncontroller O O\nis O O\n\nMy O O\nmodels O O\nis O O\n\nand O O\nmy O O\nview O O\nis O O\n\nThis O O\nis O O\nwhat O O\nI O O\n'm O O\nusing O O\nfor O O\nuploading O O\nsingle O O\nimages Name Name\nnow O O\nI O O\nwant O O\nto O O\nupload O O\nmultiple O O\nand O O\nI O O\nhad O O\nonly O O\none O O\nimages Name Name\nfields O O\non O O\ndatabase O O\ndid O O\nI O O\nneed O O\nto O O\nmake O O\nmore O O\nimages Name Name\nfields O O\nfor O O\nupload O O\nmultiple O O\nimages Name Name\n? O O\n\nIf O O\nyou O O\nwant O O\nto O O\nupload O O\nmultiple O O\nimages Name Name\nthere O O\nare O O\nso O O\nmany O O\nplugins O O\nfor O O\nthat O O\n\nThis O O\na O O\nvery O O\nsimple O O\nand O O\nvery O O\ngreat O O\nplugin O O\nI O O\nhave O O\nalso O O\nused O O\nit O O\nin O O\nmay O O\nprojects O O\n. O O\n\nYou O O\ngot O O\nto O O\nsend O O\n<input Name Name\ntype=\"file\" Name Name\nname=\"userfile\"> Name Name\nas O O\nan O O\narray Name Name\nlike O O\nso O O\n: O O\n\nThen O O\nfor O O\neach O O\nposted O O\nimage Name Name\ndo O O\nan O O\nupload O O\n. O O\n\nBTW O O\na O O\nquick O O\nsearch O O\non O O\nthis O O\nsite O O\ngave O O\nme O O\nthis O O\npost O O\n, O O\nthat O O\nhas O O\nall O O\nother O O\ninfo O O\nyou O O\nneed O O\n: O O\n\nMultiple O O\nfiles O O\nupload O O\n( O O\nArray Name Name\n) O O\nwith O O\nCodeIgniter Name Name\n2.0 Name Name\n\ngood O O\nluck O O\n\nInside O O\nmy O O\nbuild.xml Name Name\n, O O\nI O O\nhave O O\n: O O\n\nWhen O O\nI O O\ninvoke O O\nthis O O\ntarget O O\n, O O\nI O O\nget O O\nan O O\nexception Name Name\n: O O\n\nKindly O O\nsuggest O O\nhow O O\nto O O\nadd O O\nthis O O\nConstants Name Name\nclass O O\nin O O\nmy O O\nclasspath Name Name\n? O O\n\nSomewhere O O\nin O O\nmy O O\nbuild.xml Name Name\n, O O\nI O O\nhave O O\n: O O\n\nProject O O\nstructure O O\nis O O\n: O O\n\nHere O O\nis O O\nmy O O\nbuild.xml Name Name\n\nAs O O\nsuggested O O\nby O O\nChristian O O\n, O O\nthe O O\nissue O O\ngot O O\nresolved O O\nby O O\nadding O O\n: O O\n\nI O O\nwould O O\nlike O O\nto O O\ndeclare O O\nkind O O\nof O O\nglobal Name Name\nvariables O O\n. O O\n\nWhat O O\nI O O\nwant O O\nto O O\ndo O O\nis O O\ninitialize O O\nthese O O\nvariables O O\n, O O\nthen O O\nuse O O\nthem O O\nin O O\nmacros O O\n, O O\nand O O\nchange O O\ntheir O O\nvalues O O\nin O O\nother O O\nmacros O O\n. O O\n\nI O O\nstarted O O\nto O O\nwrite O O\nit O O\nas O O\npublic Name Name\nvariables O O\n: O O\n\nThe O O\nproblem O O\nhere O O\nis O O\nthat O O\nI O O\nhave O O\nto O O\ncall O O\nSub_Init_Globals() Name Name\nin O O\neach O O\nof O O\nmy O O\nSubProcedure O O\n, O O\nand O O\nso O O\nif O O\nI O O\nwant O O\nto O O\nchange O O\nthe O O\ninitial O O\nvalues O O\nof O O\nmy O O\nglobal Name Name\nvariables O O\ninside O O\nother O O\nSubProcedures O O\n, O O\nthose O O\nchanges O O\nwo O O\nn't O O\nbe O O\nmade O O\n. O O\n\nDo O O\nyou O O\nknow O O\na O O\nway O O\nto O O\ncreate O O\nsuch O O\nvariables O O\n? O O\n\nAs O O\nfar O O\nas O O\nI O O\nunderstood O O\nthese O O\nare O O\njust O O\nstarting O O\nvalues O O\nwhat O O\nleaves O O\nyou O O\nwith O O\nnext O O\noptions O O\n: O O\n\n1 O O\n. O O\n) O O\n\nYou O O\ncan O O\ndeclare O O\nthese O O\nvariables O O\nand O O\nassign O O\nvalues O O\nin O O\nWorkbook_Open Name Name\nsub O O\n. O O\n\nMore O O\nhere O O\nIs O O\nit O O\npossible O O\nto O O\ndeclare O O\na O O\npublic Name Name\nvariable O O\nin O O\nvba Name Name\nand O O\nassign O O\na O O\ndefault O O\nvalue O O\n? O O\n\n2 O O\n. O O\n) O O\n\nCreate O O\nseparate O O\nsheet O O\n, O O\nthat O O\nwill O O\nbe O O\nhidden O O\n, O O\nwith O O\nsupport O O\ntable Name Name\nconsisting O O\nof O O\nthese O O\nvalues O O\n, O O\nin O O\nthis O O\ncase O O\nall O O\nchanges O O\nto O O\nthese O O\nvalues O O\nwill O O\nbe O O\nsaved O O\neven O O\nafter O O\nyou O O\nclose O O\nWorkbook O O\n. O O\n\n3 O O\n. O O\n) O O\n\nDeclare O O\nconstants O O\nand O O\nassign O O\nit O O\n's O O\nvalue O O\nto O O\na O O\ndifferent O O\nvariable O O\ninside O O\nProcedures O O\n. O O\n\nBelow O O\nis O O\nthe O O\nschema O O\nwhere O O\nI O O\nneed O O\nto O O\nput O O\na O O\nconstraint O O\nsuch O O\nthat O O\na O O\nsecond O O\nnew O O\nentry O O\ncould O O\nbe O O\nput O O\nin O O\nfor O O\na O O\nroom O O\nnumber O O\n, O O\neven O O\nbefore O O\nthe O O\nexisting O O\ndepDt Name Name\nfor O O\nthe O O\nsame O O\nroom O O\nnumber O O\n. O O\n\nCould O O\nany O O\nof O O\nyou O O\nplease O O\nhelp O O\nme O O\nwith O O\nthis O O\n? O O\n? O O\n\nI O O\nhave O O\ntried O O\ngiving O O\na O O\nsub O O\nquery O O\nunder O O\nWHERE Name Name\nin O O\nCONSTRAINTS Name Name\nbut O O\nits O O\nis O O\nnot O O\nworking O O\nin O O\nSQL Name Name\nFiddle Name Name\n. O O\n\nThis O O\ncan O O\nbe O O\ndone O O\nusing O O\nan O O\nexclusion O O\nconstraint O O\non O O\nthe O O\ndate O O\nrange O O\n: O O\n\nNote O O\nthat O O\nyou O O\nneed O O\nthe O O\nbtree_gist Name Name\nextension O O\nto O O\nsupport O O\nthe O O\n= Name Name\noperator O O\nin O O\na O O\nGiST Name Name\nindex O O\n. O O\n\nNote O O\n: O O\nThis O O\ndoes O O\nnot O O\nsolve O O\nthe O O\nproblem O O\nof O O\nrace O O\nconditions O O\n. O O\n\nCreate O O\na O O\nfunction O O\nthat O O\nchecks O O\nwhether O O\na O O\nroom O O\nis O O\navailable O O\nbased O O\non O O\nyour O O\nconditions O O\nand O O\nreturns O O\na O O\nscalar O O\nboolean Name Name\nvalue O O\nwhich O O\ncan O O\nbe O O\nused O O\nin O O\nCHECK Name Name\nconstraint O O\n. O O\n\nHere O O\nyou O O\ncan O O\npreview O O\nhow O O\nit O O\nworks O O\n( O O\nremember O O\nto O O\nuncomment O O\nthe O O\nlast O O\ninsert O O\nstatement O O\n) O O\n:SQL Name Name\nFIDDLE Name Name\n\nCreate O O\ntable Name Name\nwith O O\nnew O O\nconstraint O O\n\nTry O O\ninserting O O\ntwo O O\nrows Name Name\nin O O\nseparate O O\nstatements O O\n\nFirst O O\nvalue O O\nis O O\ninserted O O\n, O O\nwhile O O\nwhen O O\nissuing O O\nthe O O\nsecond O O\ninsert O O\nstatement O O\nyou O O\nget O O\na O O\ncheck O O\nconstraint O O\nviolation O O\n\nNote O O\n: O O\nThis O O\ncould O O\nbe O O\neasily O O\nimplemented O O\nusing O O\ntriggers O O\nas O O\nwell O O\n. O O\n\nYou O O\njust O O\nneed O O\nto O O\nmodify O O\nthe O O\nfunction O O\na O O\nlittle O O\nand O O\nissue O O\na O O\nCREATE Name Name\nTRIGGER Name Name\nstatement O O\n. O O\n\nThis O O\nis O O\nanother O O\nquestion O O\non O O\ndate O O\nstring Name Name\nto O O\ndatevalue Name Name\nconversion O O\n. O O\n\nInput O O\nformat O O\nis O O\n\" Name Name\nMarch Name Name\n17 Name Name\n, Name Name\n2013 Name Name\n7:04:28 Name Name\nPM Name Name\nGMT-07:00 Name Name\n\" Name Name\n. O O\n\n( O O\nOutput O O\nof O O\nSAP Name Name\ntool O O\n) O O\n\n=DATEVALUE(B26) O O\nfails O O\n. O O\n\nAny O O\nchances O O\n? O O\n\nThanks O O\n, O O\n\nGert O O\n\nIf O O\nyou O O\nare O O\nusing O O\nUS O O\nregional O O\nsettings O O\nthen O O\nyour O O\ntext O O\nis O O\na O O\nvalid O O\ndate/time O O\nformat O O\nonce O O\nyou O O\nremove O O\n\" Name Name\nGMT Name Name\n\" Name Name\nand O O\neverything O O\nafter O O\nso O O\nyou O O\ncan O O\nuse O O\na O O\nformula O O\nthat O O\nwill O O\nsimply O O\nremove O O\nthat O O\npart O O\nand O O\n\" O O\nco-erce O O\n\" O O\nto O O\na O O\ndate/time O O\nvalue O O\n, O O\ni.e O O\n. O O\n\n=LEFT(B26,FIND(\"GMT\",B26)-1)+0 Name Name\n\nformat O O\nresult O O\ncell Name Name\nin O O\nthe O O\nrequired O O\ndate/time O O\nformat O O\n, O O\ne.g O O\n. O O\nm/d/yy O O\nhh:mm O O\n\nThis O O\nshould O O\nwork O O\n: O O\n\nI O O\nam O O\na O O\nbit O O\nconfused O O\nabout O O\nthe O O\nc++11 Name Name\nrandom Name Name\nlibrary O O\n. O O\n\nWhat O O\nI O O\nunderstand O O\n: O O\nwe O O\nneed O O\ntwo O O\nseparate O O\nconcepts O O\n: O O\n\nrandom Name Name\nengine Name Name\n( O O\nwhich O O\ncan O O\nbe O O\npseudo O O\n( O O\nneed O O\nseed O O\n) O O\nor O O\nreal O O\n) O O\n\ndistribution O O\n: O O\nit O O\nmaps O O\nthe O O\nnumbers O O\nobtained O O\nfrom O O\nthe O O\nengine O O\nto O O\na O O\nspecific O O\ninterval O O\n, O O\nusing O O\na O O\nspecific O O\ndistribution O O\n. O O\n\nWhat O O\nI O O\ndo O O\nn't O O\nunderstand O O\nis O O\nwhy O O\nnot O O\njust O O\nuse O O\nthis O O\n: O O\n\nAs O O\nfar O O\nas O O\nI O O\ncan O O\ntell O O\nthis O O\nworks O O\nwell O O\n. O O\n\nInstead O O\n, O O\nthis O O\nis O O\nwhat O O\nI O O\nfound O O\non O O\nmost O O\nexamples/sites/articles O O\n: O O\n\nI O O\nam O O\nnot O O\ntalking O O\nabout O O\nspecial O O\nuse O O\n, O O\ne.g O O\n. O O\ncryptography O O\n, O O\njust O O\nyour O O\nbasic O O\ngetting O O\nstarted O O\narticles O O\n. O O\n\nMy O O\nsuspicion O O\nis O O\nbecause O O\nstd::mt19937 Name Name\n( O O\nor O O\nstd::default_random_engine Name Name\n) O O\naccepts O O\na O O\nseed O O\n, O O\nit O O\ncan O O\nbe O O\neasier O O\nto O O\ndebug O O\nby O O\nproviding O O\nthe O O\nsame O O\nseed O O\nduring O O\na O O\ndebug O O\nsession O O\n. O O\n\nAlso O O\n, O O\nwhy O O\nnot O O\njust O O\n: O O\n\nIt O O\nmight O O\nbe O O\nfine O O\nif O O\nyou O O\nonly O O\nwill O O\ndo O O\nthis O O\nonce O O\n, O O\nbut O O\nif O O\nyou O O\nwill O O\ndo O O\nit O O\nmany O O\ntimes O O\n, O O\nit O O\n's O O\nbetter O O\nto O O\nkeep O O\ntrack O O\nof O O\nyour O O\nstd::random_device Name Name\nand O O\nnot O O\ncreate O O\n/ O O\ndestroy O O\nit O O\nunnecessarily O O\n. O O\n\nIt O O\nmay O O\nbe O O\nhelpful O O\nto O O\nlook O O\nat O O\nthe O O\nlibc++ Name Name\nsource O O\ncode O O\nfor O O\nimplementation O O\nof O O\nstd::random_device Name Name\n, O O\nwhich O O\nis O O\nquite O O\nsimple O O\n. O O\n\nIt O O\n's O O\njust O O\na O O\nthin O O\nwrapper O O\nover O O\nstd::fopen(\"/dev/urandom\") Name Name\n. O O\n\nSo O O\neach O O\ntime O O\nyou O O\ncreate O O\na O O\nstd::random_device Name Name\nyou O O\nare O O\ngetting O O\nanother O O\nfilesystem O O\nhandle O O\n, O O\nand O O\npay O O\nall O O\nassociated O O\ncosts O O\n. O O\n\nOn O O\nwindows Name Name\n, O O\nas O O\nI O O\nunderstand O O\n, O O\nstd::random_device Name Name\nrepresents O O\nsome O O\ncall O O\nto O O\na O O\nmicrosoft Name Name\ncrypto Name Name\nAPI Name Name\n, O O\nso O O\nyou O O\nare O O\ngoing O O\nto O O\nbe O O\ninitializing O O\nand O O\ndestroying O O\nsome O O\ncrypto Name Name\nlibrary O O\ninterface O O\neverytime O O\nyou O O\ndo O O\nthis O O\n. O O\n\nIt O O\ndepends O O\non O O\nyour O O\napplication O O\n, O O\nbut O O\nfor O O\ngeneral O O\npurposes O O\nI O O\nwould O O\nn't O O\nthink O O\nof O O\nthis O O\noverhead O O\nas O O\nalways O O\nnegligible O O\n. O O\n\nSometimes O O\nit O O\nis O O\n, O O\nand O O\nthen O O\nthis O O\nis O O\ngreat O O\n. O O\n\nI O O\nguess O O\nthis O O\nties O O\nback O O\ninto O O\nyour O O\nfirst O O\nquestion O O\n: O O\n\nAt O O\nleast O O\nthe O O\nway O O\nI O O\nthink O O\nabout O O\nit O O\nis O O\n: O O\n\nstd::mt19937 Name Name\nis O O\na O O\nvery O O\nsimple O O\nand O O\nreliable O O\nrandom O O\ngenerator O O\n. O O\n\nThe O O\nimplementation O O\nis O O\nmandated O O\nby O O\nthe O O\nstandard O O\n, O O\nand O O\nat O O\nleast O O\nin O O\nboost O O\n, O O\nit O O\nused O O\nthe O O\nsame O O\ncode O O\neverywhere O O\n, O O\nderived O O\nfrom O O\nthe O O\noriginal O O\nmt19937 Name Name\npaper O O\n. O O\n\nThis O O\ncode O O\nis O O\nvery O O\nstable O O\nand O O\nit O O\n's O O\ncross-platform O O\n. O O\n\nYou O O\ncan O O\nbe O O\npretty O O\nconfident O O\nthat O O\ninitializing O O\nit O O\n, O O\nquerying O O\nfrom O O\nit O O\n, O O\netc O O\n. O O\n\nis O O\ngoing O O\nto O O\ncompile O O\nto O O\nsimilar O O\ncode O O\non O O\nany O O\nplatform O O\nthat O O\nyou O O\ncompile O O\nit O O\non O O\n, O O\nand O O\nthat O O\nyou O O\nwill O O\nget O O\nsimilar O O\nperformance O O\n. O O\n\nstd::random_device Name Name\nby O O\ncontrast O O\nis O O\npretty O O\nopaque O O\n. O O\n\nYou O O\ndo O O\nn't O O\nreally O O\nknow O O\nexactly O O\nwhat O O\nit O O\nis O O\n, O O\nwhat O O\nit O O\n's O O\ngoing O O\nto O O\ndo O O\n, O O\nor O O\nhow O O\nefficient O O\nit O O\nwill O O\nbe O O\n. O O\n\nYou O O\ndo O O\nn't O O\neven O O\nknow O O\nif O O\nit O O\ncan O O\nactually O O\nbe O O\nacquired O O\n- O O\n- O O\nit O O\nmight O O\nthrow O O\nan O O\nexception Name Name\nwhen O O\nyou O O\nattempt O O\nto O O\ncreate O O\nit O O\n. O O\n\nYou O O\nknow O O\nthat O O\nit O O\ndoes O O\nn't O O\nrequire O O\na O O\nseed O O\n. O O\n\nYou O O\n're O O\nnot O O\nusually O O\nsupposed O O\nto O O\npull O O\ntons O O\nand O O\ntons O O\nof O O\ndata O O\nfrom O O\nit O O\n, O O\njust O O\nuse O O\nit O O\nto O O\ngenerate O O\nseeds O O\n. O O\n\nSometimes O O\n, O O\nit O O\nacts O O\nas O O\na O O\nnice O O\ninterface O O\nto O O\ncryptographic O O\nAPIs O O\n, O O\nbut O O\nit O O\n's O O\nnot O O\nactually O O\nrequired O O\nto O O\ndo O O\nthat O O\nand O O\nsadly O O\nsometimes O O\nit O O\ndoes O O\nn't O O\n. O O\n\nIt O O\nmight O O\ncorrespond O O\nto O O\n/dev/random Name Name\non O O\nunix Name Name\n, O O\nit O O\nmight O O\ncorrespond O O\nto O O\n/dev/urandom/ Name Name\n. O O\n\nIt O O\nmight O O\ncorrespond O O\nto O O\nsome O O\nMSVC O O\ncrypto O O\nAPI O O\n( O O\nvisual Name Name\nstudio Name Name\n) O O\n, O O\nor O O\nit O O\nmight O O\njust O O\nbe O O\na O O\nfixed O O\nconstant O O\n( O O\nmingw Name Name\n) O O\n. O O\n\nIf O O\nyou O O\ncross-compile O O\nfor O O\nsome O O\nphone Name Name\n, O O\nwho O O\nknows O O\nwhat O O\nit O O\nwill O O\ndo O O\n. O O\n\n( O O\nAnd O O\neven O O\nwhen O O\nyou O O\ndo O O\nget O O\n/dev/random Name Name\n, O O\nyou O O\nstill O O\nhave O O\nthe O O\nproblem O O\nthat O O\nperformance O O\nmay O O\nnot O O\nbe O O\nconsistent O O\n- O O\n- O O\nit O O\nmay O O\nappear O O\nto O O\nwork O O\ngreat O O\n, O O\nuntil O O\nthe O O\nentropy O O\npool O O\nruns O O\nout O O\n, O O\nand O O\nthen O O\nit O O\nruns O O\nslow O O\nas O O\na O O\ndog O O\n. O O\n) O O\n\nThe O O\nway O O\nI O O\nthink O O\nabout O O\nit O O\nis O O\n, O O\nstd::random_device Name Name\nis O O\nsupposed O O\nto O O\nbe O O\nlike O O\nan O O\nimproved O O\nversion O O\nof O O\nseeding O O\nwith O O\ntime(NULL) Name Name\n- O O\n- O O\nthat O O\n's O O\na O O\nlow O O\nbar O O\n, O O\nbecause O O\ntime(NULL) Name Name\nis O O\na O O\npretty O O\ncrappy O O\nseed O O\nall O O\nthings O O\nconsidered O O\n. O O\n\nI O O\nusually O O\nuse O O\nit O O\nwhere O O\nI O O\nwould O O\nhave O O\nused O O\ntime(NULL) Name Name\nto O O\ngenerate O O\na O O\nseed O O\n, O O\nback O O\nin O O\nthe O O\nday O O\n. O O\n\nI O O\ndo O O\nn't O O\nreally O O\nconsider O O\nit O O\nall O O\nthat O O\nuseful O O\noutside O O\nof O O\nthat O O\n. O O\n\nThis O O\narticle O O\nis O O\na O O\ngood O O\npoint O O\nto O O\nstart O O\n. O O\n\nI O O\n'm O O\ngoing O O\nto O O\nsynthesize O O\njust O O\nfew O O\npoints O O\n: O O\n\nIt O O\nHas O O\nUnknown O O\nCost O O\n. O O\n\nFor O O\nmy O O\npersonal O O\nexperience O O\nI O O\n've O O\nnotified O O\nthat O O\nstd::random_device Name Name\nis O O\nusually O O\nslower O O\nthan O O\na O O\nsimple O O\nPseudo-randomic Name Name\nalgorithm O O\n. O O\n\nThat O O\ncould O O\nbe O O\nno O O\ntrue O O\nin O O\ngeneral O O\n, O O\nbut O O\nusually O O\nit O O\ndoes O O\n. O O\n\nThat O O\nbecause O O\nit O O\nmay O O\ninvolve O O\nphysical O O\ndevices O O\n, O O\nor O O\nother O O\nhardware O O\nthan O O\nthe O O\nsimple O O\nCPU Name Name\n. O O\n\nIt O O\nMight O O\nActually O O\nBe O O\nDeterministic O O\n. O O\n\nI O O\nhave O O\nan O O\napp O O\nthat O O\nwill O O\ntake O O\na O O\nlist Name Name\nof O O\nplayers O O\nand O O\nset O O\nthem O O\nup O O\nso O O\nthat O O\nyou O O\ncan O O\ngo O O\nthrough O O\nand O O\ncreate O O\na O O\nbracket Name Name\ndynamically O O\n. O O\n\nThe O O\nnumber O O\nof O O\nplayers O O\nwill O O\nchange O O\nand O O\nthe O O\nnames O O\nas O O\nwell O O\n. O O\n\nInstead O O\nof O O\nshowing O O\na O O\nwhole O O\nbracket Name Name\n, O O\nmy O O\npoint O O\nwill O O\nbe O O\nto O O\ngo O O\nin O O\ncolumns Name Name\n. O O\n\nI.e O O\n. O O\ninstead O O\nof O O\nthe O O\nleft O O\nside O O\nof O O\nthe O O\narrow Name Name\n, O O\nit O O\nshow O O\nthe O O\nright O O\nside O O\n: O O\n\nMy O O\nquestions O O\nis O O\nhow O O\ndo O O\nI O O\nbest O O\ndraw O O\nthis O O\n? O O\n\nMy O O\ninitial O O\nthought O O\nis O O\nto O O\ndo O O\nmultiple O O\nlayouts Name Name\nwhere O O\nI O O\nhard O O\ncode O O\ntextviews Name Name\nwith O O\ncustom O O\ndrawables Name Name\nand O O\nlines O O\nfor O O\neach O O\ncolumn Name Name\nof O O\n16/8/4/2 Name Name\nwith O O\njust O O\none O O\nborder Name Name\n, O O\nbut O O\nthen O O\nI O O\nhave O O\nto O O\nconstantly O O\nchange O O\nthe O O\nlayout Name Name\nsetup O O\n. O O\n\nMy O O\nsecond O O\none O O\nwould O O\nbe O O\nto O O\ndynamically O O\ndraw O O\nit O O\non O O\na O O\ncanvas Name Name\nbased O O\non O O\nthis O O\nanswer O O\nhere O O\n, O O\nbut O O\nit O O\ndid O O\nn't O O\ngive O O\na O O\nlot O O\nof O O\nideas O O\nof O O\nimplementations O O\n. O O\n\nMy O O\nQuestions O O\n: O O\nIf O O\nI O O\nchoose O O\nmethod O O\n1 O O\n, O O\nwill O O\nI O O\nbe O O\nable O O\nto O O\ndynamically O O\nchange O O\nthe O O\nlayout Name Name\nof O O\nmy O O\nactivity Name Name\n? O O\n\nIf O O\nI O O\nchoose O O\nmethod O O\n2 O O\n, O O\nhow O O\ncould O O\nI O O\ngo O O\nabout O O\nthis O O\n? O O\n\nI O O\n'm O O\nstill O O\npretty O O\nnew O O\nto O O\nandroid Name Name\n. O O\n\nAs O O\nfor O O\nquestion O O\n1 O O\n, O O\nyes O O\nyou O O\ncan O O\nabsolutely O O\nchange O O\nthe O O\nlayout Name Name\ndynamically O O\n. O O\n\nYou O O\ncan O O\ncreate O O\nseveral O O\nlayout Name Name\nfiles O O\nand O O\ndo O O\none O O\nof O O\ntwo O O\nthings O O\n: O O\nThe O O\nfirst O O\n, O O\nis O O\nyou O O\ncan O O\nuse O O\nyour O O\nactivity Name Name\n's O O\nsetContentView(int) Name Name\nmethod O O\nto O O\ncompletely O O\nreset O O\nthe O O\nactivity Name Name\n's O O\nlayout Name Name\nto O O\na O O\nnew O O\nview Name Name\n. O O\n\nThe O O\nsecond O O\nwould O O\nbe O O\nto O O\nidentify O O\nthe O O\nparent O O\nview Name Name\nof O O\nthe O O\nbracket O O\nportion O O\n, O O\ncast O O\nit O O\nto O O\na O O\nViewGroup Name Name\nand O O\nuse O O\naddView(View) Name Name\nand O O\nremoveView(View) Name Name\n. O O\n\nAs O O\nfor O O\nquestion O O\n2 O O\n, O O\nyou O O\ncould O O\ngo O O\nabout O O\nusing O O\na O O\ncanvas Name Name\n, O O\nbut O O\nit O O\nwould O O\nbe O O\nquite O O\ndifficult O O\nto O O\nuse O O\nonly O O\na O O\ncanvas Name Name\n, O O\nbut O O\npossibly O O\na O O\ncombination O O\nof O O\na O O\ncanvas Name Name\nand O O\na O O\nset O O\nof O O\ntext Name Name\nviews Name Name\ncould O O\nwork O O\n. O O\n\nWhile O O\nthis O O\nis O O\nn't O O\ndirectly O O\nanswering O O\nyour O O\nquestion O O\n, O O\nthis O O\ntutorial O O\nis O O\none O O\nI O O\nhave O O\nused O O\nin O O\nthe O O\npast O O\n, O O\nand O O\ngives O O\nyou O O\nan O O\nexcellent O O\nsense O O\nof O O\nhow O O\nto O O\nwork O O\nwith O O\nthe O O\nCanvas Name Name\nclass O O\nin O O\nandroid Name Name\n. O O\n\nwhile O O\nadding O O\na O O\nnew O O\nclassifier O O\nin O O\nweka Name Name\n... O O\nby O O\nrunning O O\njava Name Name\ncall O O\n:java Name Name\n-classpath Name Name\n\" Name Name\nweka.jar Name Name\n; Name Name\nweka-src.jar Name Name\n\" Name Name\nweka.gui.GUIChooser Name Name\n\nwhat O O\nto O O\nset O O\nclasspath O O\n... O O\nand O O\nis O O\nit O O\nthe O O\ncorrect O O\nformat O O\nto O O\nadd O O\na O O\nclassifier O O\na O O\nweka Name Name\n... O O\ni O O\nam O O\nusing O O\nwindows Name Name\n10 Name Name\n\nYou O O\nare O O\nnot O O\nadding O O\nclassifiers O O\n, O O\nyou O O\nare O O\nadding O O\n.jar Name Name\nfiles O O\n. O O\n\nYou O O\nhave O O\nto O O\nuse O O\nabsolute O O\npaths O O\n( O O\nC:/.. Name Name\n. Name Name\n) O O\nto O O\nthe O O\njar Name Name\nfiles O O\n. O O\n\njava Name Name\n-classpath Name Name\n\" Name Name\nc:/.../weka.jar Name Name\n\" Name Name\n\nweka-src.jar Name Name\nis O O\nnot O O\nneeeded O O\n. O O\n\nIt O O\nis O O\noptional O O\nto O O\nset O O\nthe O O\nworking O O\ndirectory O O\nof O O\nyour O O\nscript/batch Name Name\nfile O O\nto O O\nthe O O\ndirectory O O\nwhere O O\nthe O O\nweka.jar Name Name\nfile O O\ncan O O\nbe O O\nfound O O\n. O O\n\nIs O O\nthe O O\ncontents O O\nof O O\nthe O O\n.Net Name Name\nMemoryStream Name Name\nObject O O\nsecure O O\nin O O\nMemory O O\n? O O\n\nWe O O\nhave O O\nlarge O O\nfiles O O\nthat O O\nare O O\ndownloaded O O\nfrom O O\na O O\nsecure O O\nsite O O\ndirectly O O\ninto O O\nMemoryStream Name Name\nObjects O O\nthat O O\ncontain O O\nPCI O O\ninformation O O\n. O O\n\nThe O O\nconcern O O\nis O O\nthat O O\nthe O O\ndata O O\nin O O\nthe O O\nMemoryStream Name Name\nobject O O\nitself O O\nmaybe O O\nexposed O O\nin O O\nthe O O\nsystem O O\nmemory O O\nto O O\nRAM Name Name\nscraping O O\nattacks O O\n. O O\n\nI O O\nhave O O\na O O\nstring Name Name\nof O O\nnumerical O O\nvalues O O\nseparated O O\nwith O O\nspaces Name Name\n: O O\n\nI O O\nwant O O\nto O O\nget O O\nall O O\noccurrences O O\nof O O\nthe O O\nstring Name Name\n, O O\nwhere O O\ncombined O O\nsum O O\nof O O\nnumbers O O\nis O O\nx Name Name\n. O O\n\nSo O O\n, O O\nif O O\nI O O\nsearch O O\n: O O\n2041 Name Name\nit O O\nshould O O\nreturn O O\nan O O\narray Name Name\n( O O\n\" Name Name\n318 Name Name\n500 Name Name\n358 Name Name\n865 Name Name\n\" Name Name\n) O O\nor O O\nif O O\nI O O\nsearch O O\n: O O\n1818 Name Name\nit O O\nshould O O\nreturn O O\nan O O\narray Name Name\n( O O\n\" Name Name\n920 Name Name\n898 Name Name\n\" Name Name\n, O O\n\" Name Name\n31 Name Name\n470 Name Name\n725 Name Name\n358 Name Name\n114 Name Name\n56 Name Name\n9 Name Name\n55 Name Name\n\" Name Name\n) O O\n. O O\n\nI O O\nalso O O\nneed O O\nsolution O O\nto O O\nbe O O\noptimal O O\n, O O\nbecause O O\nstring Name Name\nof O O\nnumbers O O\ncan O O\nsum O O\nup O O\nto O O\nhundreds O O\nof O O\nthousands O O\n. O O\n\nPrinciple O O\nexplained O O\nin O O\ntheory O O\nwould O O\nbe O O\ngood O O\n, O O\nbut O O\npreferred O O\nlanguages O O\nare O O\nPHP Name Name\nor O O\nNodeJs Name Name\nif O O\nsolution O O\nis O O\ngiven O O\nby O O\nprogramming O O\nlanguage O O\n. O O\n\nEven O O\nMySQL Name Name\nsolution O O\nwould O O\nbe O O\nnice O O\n, O O\nif O O\npossible O O\n. O O\n\nBut O O\nsolution O O\nby O O\nany O O\nlanguage O O\nwould O O\nbe O O\nnice O O\nanyway O O\n. O O\n\nExtra O O\nnotes O O\n\nnumbers O O\nare O O\nall O O\npositive O O\nintegers Name Name\n\nnumber O O\nvalues O O\nare O O\nbetween O O\n1-10000 Name Name\n\nHere O O\nyou O O\ngo O O\n, O O\nin O O\nPython Name Name\n. O O\n\nThis O O\nhas O O\nlinear O O\ncomplexity O O\n: O O\n\nI O O\n'm O O\nassuming O O\nthere O O\nare O O\nno O O\nnegative O O\nvalues O O\nin O O\nyour O O\nlist Name Name\n, O O\nand O O\nthe O O\nlist Name Name\nconsists O O\npurely O O\nof O O\nintegers Name Name\nseparated O O\nby O O\nspaces Name Name\n. O O\n\nYou O O\nshould O O\nn't O O\nhave O O\nany O O\nproblems O O\ntranslating O O\nit O O\ninto O O\nany O O\nother O O\nlanguage O O\n. O O\n\nI O O\nhope O O\nthe O O\nalgorithm O O\nis O O\nself-explanatory O O\n, O O\nif O O\nnot O O\nask O O\n. O O\n\nUsage O O\n: O O\n\nFirst O O\nwe O O\npass O O\nthe O O\nstring Name Name\nwe O O\nwant O O\nto O O\nsearch O O\n, O O\nthen O O\nwe O O\nuse O O\nmethod O O\nto_array() Name Name\nso O O\nwe O O\ncan O O\ncreate O O\nthe O O\narray Name Name\nfrom O O\nthe O O\nstring Name Name\n, O O\nthen O O\nyou O O\nneed O O\nto O O\nchoose O O\nwhich O O\nmode O O\nyou O O\nwant O O\nto O O\nuse O O\n. O O\n\nIt O O\nhas O O\n2 O O\nmodes O O\n, O O\nsoft O O\nsearch O O\nand O O\nhard O O\nsearch O O\n. O O\n\nyou O O\ncan O O\nchoose O O\nwhich O O\none O O\nto O O\nuse O O\nin O O\nthe O O\nfind Name Name\nmethod O O\n, O O\n->find(true) Name Name\n, O O\nTrue Name Name\n= Name Name\nhard Name Name\nmode O O\n, O O\nFalse Name Name\n= Name Name\nsoft Name Name\nmode O O\n; O O\n\nThe O O\nsoft Name Name\nmode O O\nit O O\nis O O\nreally O O\nsimple O O\n, O O\ncreates O O\na O O\nnew O O\nmultidimensional O O\narray Name Name\nwith O O\nkeys O O\nas O O\nthe O O\nstrlen Name Name\nof O O\nthe O O\nnumbers O O\n( O O\nmethod O O\norder()) Name Name\n, O O\nso O O\nif O O\nwe O O\nare O O\nsearching O O\nfor O O\na O O\nnumber O O\n70 Name Name\nwe O O\ndo O O\nn't O O\nreally O O\nwanna O O\nuse O O\nthe O O\n3 O O\ndigits O O\nor O O\nmore O O\n, O O\ni O O\nmean O O\n( O O\n100 Name Name\n, O O\n99999 Name Name\netc O O\n.. O O\n. O O\n) O O\n. O O\n\nThen O O\nit O O\njust O O\nminus O O\nthe O O\nsearch O O\nvalue O O\nwith O O\nthe O O\nnumber O O\nand O O\ntries O O\nto O O\nsearch O O\nin O O\nthe O O\nentire O O\narray Name Name\nwith O O\n( O O\nin_array Name Name\n) O O\nif O O\nit O O\nhas O O\nthe O O\nresult O O\n; O O\n\nThe O O\nhard Name Name\nmode O O\nis O O\njust O O\nas O O\nthe O O\nname O O\nstates O O\n, O O\nwe O O\nwill O O\nloop O O\nthrough O O\nevery O O\nnumber O O\n. O O\n\nOf O O\ncourse O O\nwe O O\ncould O O\nreally O O\nmake O O\na O O\nfew O O\nmore O O\ntweaks O O\nbut O O\nfrom O O\nwhat O O\ni O O\ntested O O\nit O O\ngives O O\ngood O O\nresults O O\n. O O\n\nFeel O O\nfree O O\nto O O\nask O O\nif O O\nyou O O\nhave O O\nany O O\nquestions O O\n. O O\n\nExample O O\nwith O O\noutputs O O\n: O O\nhttp://codepad.viper-7.com/INvSNo O O\n\nOutput O O\nexample O O\nfor O O\n285 O O\n: O O\n\nDetailed O O\ninformation O O\nseems O O\nto O O\nbe O O\nhard O O\nto O O\nfind O O\non O O\nthis O O\n. O O\n\nSo O O\nthe O O\nsituation O O\nI O O\nhave O O\nis O O\nan O O\nexisting O O\nserver Name Name\nwith O O\nusernames O O\nand O O\npasswords O O\n. O O\n\nI O O\n'm O O\nadding O O\nan O O\nadditional O O\ncouchdb Name Name\nserver Name Name\nto O O\nmanage O O\ndata O O\nfor O O\na O O\nmobile Name Name\napp O O\n, O O\nhowever O O\nI O O\nstill O O\nwant O O\nall O O\nauthentication O O\nto O O\nbe O O\nhandled O O\nvia O O\nthe O O\nexisting O O\nserver Name Name\n. O O\n\nSo O O\nI O O\ncan O O\nsend O O\nan O O\nHTTP O O\nrequest O O\nwith O O\nusername O O\nand O O\npassword O O\nto O O\nthe O O\nexisting O O\nserver Name Name\nand O O\ni O O\ncan O O\nget O O\nit O O\nto O O\nsend O O\nback O O\nanyanything O O\ni O O\nlike O O\nif O O\naccess O O\nis O O\naccepted O O\n. O O\n\nHow O O\ncould O O\nI O O\nthen O O\nuse O O\nthat O O\ninformation O O\nto O O\nauthenticate O O\nwith O O\nthe O O\ncouchdb Name Name\nserver Name Name\n? O O\n\nI O O\nimagine O O\nit O O\nwould O O\nbe O O\npossible O O\nto O O\nrecieve O O\na O O\nsecret O O\nfrom O O\nthe O O\nexisting O O\nserver Name Name\non O O\nsuccessful O O\nauthentication O O\nthat O O\nwe O O\ncould O O\nmatch O O\nto O O\none O O\nwe O O\nhave O O\nmanually O O\nstored O O\non O O\ncouchdb Name Name\nserver Name Name\n. O O\n\nHowever O O\nthat O O\ndoes O O\nn't O O\nseem O O\nto O O\nbe O O\nvery O O\nsecure O O\n. O O\n\nI O O\nhave O O\nread O O\nthe O O\nAuthentication O O\ndocs O O\nat O O\ncouchdb Name Name\nbut O O\nI O O\n'm O O\nstill O O\nconfused O O\n. O O\n\nAny O O\nsuggestions O O\nfor O O\nan O O\nauthentication O O\nsystem O O\n? O O\n\nI O O\nthink O O\nJWT Name Name\nauthentication O O\nis O O\nwhat O O\nyou O O\n're O O\nlooking O O\nfor O O\n. O O\n\nThere O O\n's O O\na O O\nplugin O O\nwhich O O\ncan O O\ndo O O\nthis O O\nfor O O\nyou O O\n: O O\nhttps://github.com/dmunch/couch_jwt_auth O O\n( O O\nThe O O\nrepository O O\nis O O\na O O\nfork O O\n, O O\nimplementing O O\nadditional O O\nfunctionality O O\nto O O\nthe O O\noriginal O O\none O O\nplus O O\nis O O\ncompatible O O\nwith O O\nCouchDB Name Name\n2.0 Name Name\n. O O\n) O O\n\nBasically O O\nyou O O\nsend O O\nyour O O\nusername/password O O\nto O O\nthe O O\nauthentication O O\nserver Name Name\n, O O\nwhich O O\nin O O\nturn O O\ngives O O\nyou O O\nback O O\na O O\ntoken O O\n( O O\nthe O O\nJWT Name Name\n) O O\n. O O\n\nYou O O\ncan O O\nnow O O\nauthenticate O O\nto O O\nCouchDB Name Name\nusing O O\nthis O O\ntoken O O\n. O O\n\nCouchDB Name Name\nverifies O O\nthe O O\nintegrity O O\nof O O\nthe O O\ntoken O O\neither O O\nby O O\nusing O O\na O O\nshared O O\nsecret O O\n( O O\nHS256 O O\n) O O\nor O O\nby O O\nusing O O\nthe O O\npublic Name Name\nkey O O\nof O O\nthe O O\nauthentication O O\nserver Name Name\n. O O\n\nI O O\nhave O O\na O O\nproblem O O\nthat O O\nI O O\nfrequently O O\ndeal O O\nwith O O\nusing O O\nMVC Name Name\nthat O O\nI O O\nca O O\nn't O O\nseem O O\nto O O\nfind O O\nan O O\neasy O O\nsolution O O\nfor O O\n. O O\n\nVery O O\nfrequently O O\nI O O\nfind O O\nmyself O O\ncreating O O\na O O\nviewmodel Name Name\nfor O O\nan O O\nobject O O\nthat O O\nhas O O\na O O\ncollection O O\nof O O\nsmaller O O\nobjects O O\n. O O\n\nFor O O\ninstance O O\n, O O\n\nI O O\ncreated O O\na O O\nStaff Name Name\nscreen Name Name\nwhere O O\nthe O O\nuser O O\nadds O O\na O O\nstaff O O\nmember O O\nto O O\nthe O O\ndatabase O O\n. O O\n\nMost O O\nof O O\nthis O O\nis O O\nfairly O O\nstraight O O\nforward O O\n, O O\nbut O O\nthen O O\nI O O\nneed O O\nto O O\nbe O O\nable O O\nto O O\nadd O O\na O O\ncredential Name Name\n. O O\n\nThe O O\nnumber O O\nof O O\ncredentials Name Name\na O O\nstaff Name Name\ncan O O\nhave O O\nis O O\ndynamic O O\n, O O\nso O O\nthere O O\n's O O\na O O\nsecond O O\ntable Name Name\nwith O O\na O O\nforeign Name Name\nkey Name Name\nreferencing O O\nthe O O\nstaff Name Name\n, O O\nas O O\nwell O O\nas O O\nthe O O\nappropriate O O\ncredential Name Name\ndata O O\n. O O\n\nSo O O\nmy O O\nviewmodel Name Name\nhas O O\na O O\nStaff Name Name\nobject O O\n, O O\nand O O\nan O O\nIEnumerable Name Name\nof O O\nCredential Name Name\nobjects O O\n. O O\n\nCurrently O O\nwhen O O\nthe O O\nuser O O\nadds/edits O O\nstaff Name Name\nin O O\nthe O O\npartialview O O\nform Name Name\n, O O\na O O\npopup O O\nwith O O\nthe O O\ncredential Name Name\nfields O O\nappears O O\n. O O\n\nWhen O O\nyou O O\nsave O O\nthe O O\ncredential Name Name\n, O O\nI O O\nmanually O O\ngenerate O O\nthe O O\nhidden O O\nfields O O\nof O O\nevery O O\nsingle O O\nproperty O O\nas O O\nhidden O O\nhtml Name Name\nelements O O\nusing O O\njavascript Name Name\nstrings Name Name\n, O O\nthen O O\nappend O O\nit O O\nto O O\nthe O O\nappropriate O O\nplaces O O\n. O O\n\nIt O O\ngets O O\nreally O O\nunmanageable O O\n. O O\n\netc O O\n... O O\nto O O\nhid7 Name Name\n. O O\n\nI O O\nalso O O\ngenerate O O\na O O\nseries O O\nof O O\ntags O O\nto O O\ndisplay O O\nthe O O\ndata O O\non O O\nthe O O\npage Name Name\n. O O\n\nAn O O\nabsolute O O\nmess O O\n. O O\n\nIt O O\ncurrently O O\nworks O O\n, O O\nbut O O\nthere O O\nhas O O\nto O O\nbe O O\na O O\nbetter O O\nway O O\n, O O\nand O O\nI O O\n'm O O\nabout O O\nto O O\ndeal O O\nwith O O\na O O\nvery O O\nsimilar O O\nproblem O O\n. O O\n\nI O O\nfeel O O\nlike O O\nI O O\n'm O O\nreinventing O O\nthe O O\nwheel O O\n. O O\n\nMy O O\nfirst O O\ninstinct O O\nwas O O\nto O O\nadd O O\na O O\nnested O O\nform O O\n, O O\nbut O O\nmy O O\nresearch O O\ntells O O\nme O O\nMVC Name Name\nforbids O O\nthis O O\n, O O\nso O O\nthat O O\n's O O\nout O O\nof O O\nthe O O\nquestion O O\n. O O\n\nTo O O\nsum O O\nup O O\nwhat O O\nI O O\n'm O O\nlooking O O\nfor O O\n: O O\n\nHow O O\ncan O O\nI O O\ndynamically O O\nload/save O O\nobjects O O\nin O O\nthe O O\npartial O O\nview O O\n, O O\nwithout O O\nlosing O O\nthe O O\ndata O O\non O O\nHTTPPOST Name Name\n? O O\n\nI O O\nwant O O\nequivalent O O\nto O O\nGROUP_CONCAT Name Name\nfunctionality O O\nof O O\nMySql Name Name\nin O O\nDB2 Name Name\n. O O\n\nI O O\nhave O O\ntried O O\nXML Name Name\nAggrigate O O\nfuncton O O\nof O O\nDB2 Name Name\nfor O O\ncocating O O\nmurows O O\n. O O\n\nWhich O O\ngives O O\nme O O\nresult O O\n\nBut O O\nI O O\nwant O O\ndistinct/Unique O O\nValue O O\nof O O\nBASIC_SKILL2 Name Name\n, O O\nBASIC_SKILL1 Name Name\n. O O\n\nThe O O\nselect Name Name\ndistinct Name Name\nwo O O\nn't O O\nwork O O\nin O O\ncase O O\nof O O\ntables Name Name\nwith O O\nno O O\nduplicates O O\n, O O\nbecause O O\nof O O\nmultiple O O\njoins O O\ngiving O O\nall O O\nthe O O\ncombinations O O\nof O O\nthe O O\nvalues O O\nof O O\nevery O O\njoin Name Name\n. O O\n\nThat O O\nleads O O\nto O O\nduplicates O O\nin O O\nthe O O\naggregate O O\nfunction O O\n. O O\n\nI O O\n've O O\nfound O O\nthat O O\npushing O O\nthe O O\ngroup Name Name\nbys Name Name\nand O O\nthe O O\naggregate O O\nfunctions O O\nto O O\nsubqueries O O\nin O O\nthe O O\nfrom Name Name\npart O O\ngives O O\nthe O O\nbest O O\nresults O O\n. O O\n\nCame O O\nacross O O\nyour O O\nquestion O O\nafter O O\nasking O O\nthe O O\nsame O O\none O O\nmyself O O\n. O O\n\nThe O O\nsolution O O\nI O O\ncame O O\nup O O\nwith O O\nis O O\nto O O\nuse O O\na O O\ncommon O O\ntable Name Name\nexpression O O\nwith O O\nDISTINCT Name Name\n. O O\n\nIn O O\nyour O O\ncase O O\n, O O\nit O O\nwould O O\nbe O O\neasier O O\nand O O\nclearer O O\nto O O\nuse O O\nsubselects O O\ninstead O O\n( O O\nXMLELEMENT Name Name\nboilerplate O O\nelided O O\nfor O O\nclarity O O\n) O O\n: O O\n\nThere O O\nmay O O\nwell O O\nbe O O\nan O O\neasier O O\nway O O\n, O O\nbut O O\nthis O O\nis O O\nwhat O O\nI O O\ncame O O\nup O O\nwith O O\n. O O\n\nAlso O O\n, O O\nyou O O\nmight O O\nwant O O\nto O O\ntake O O\nadvantage O O\nof O O\nfunctions O O\nlike O O\nXMLQUERY Name Name\nand O O\nXSLTRANSFORM Name Name\n. O O\n\nMuch O O\nsimpler O O\nand O O\nless O O\nerror-prone O O\nthan O O\nthe O O\nmanual O O\nway O O\nyou O O\n're O O\ndoing O O\nit O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nimplement O O\na O O\ntpl Name Name\nwithin O O\na O O\ndisplayfield Name Name\nto O O\ndisplay O O\na O O\nlist Name Name\nof O O\ndata O O\nsent O O\nto O O\nthe O O\nserver Name Name\nfrom O O\na O O\ntextarea Name Name\n. O O\n\nThe O O\nsame O O\ndata O O\nis O O\ndisplayed O O\nin O O\na O O\ngrid Name Name\nwith O O\nrowexpander Name Name\nplugin Name Name\n( O O\ndisplay O O\nvalues O O\nin O O\nXTemplate Name Name\nlike O O\ntextarea Name Name\nformat O O\n) O O\n\nFiddle Name Name\n: O O\nhttps://fiddle.sencha.com/#fiddle/14sf O O\n\nI O O\ntried O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nFIDDLE Name Name\n: O O\nhttps://fiddle.sencha.com/#fiddle/14t7 O O\n\nwithout O O\nsucess O O\n.. O O\n. O O\n\nI O O\ntried O O\nevery O O\nway O O\nI O O\nfound O O\nto O O\nrender O O\na O O\ntpl Name Name\nunsuccessfully O O\n. O O\n\nDisplay O O\nhas O O\na O O\nconfig O O\ntpl Name Name\nbut O O\nit O O\nseems O O\nnot O O\nwork O O\nin O O\nmy O O\ncase O O\n.. O O\n. O O\n\nI O O\nappreciate O O\nsuggestions O O\nfor O O\nresolving O O\nthis O O\nissue O O\n\nThe O O\ndisplayfield O O\nalso O O\nhas O O\nrenderer O O\nfunction O O\n. O O\n\nYou O O\ncan O O\nuse O O\nit O O\nas O O\nin O O\nyour O O\ngrid Name Name\n: O O\n\nhttps://fiddle.sencha.com/#fiddle/14il O O\n\nI O O\nam O O\ntrying O O\nto O O\ninsert O O\nexcel Name Name\ndata O O\ninto O O\nmongoDB Name Name\ndatabase O O\n. O O\n\nI O O\nhave O O\nsucceeded O O\nto O O\ninsert O O\ndata O O\ninto O O\nit O O\nbut O O\nI O O\nam O O\nunable O O\nto O O\nstore O O\nthe O O\ndata O O\nrow Name Name\nby O O\nrow Name Name\n, O O\nthe O O\ntotal O O\ndata O O\ninserted O O\nas O O\none O O\nthing O O\nand O O\nunable O O\ndifferentiate O O\nthe O O\nString Name Name\nand O O\nNumeric Name Name\n. O O\n\nplease O O\nhelp O O\nme O O\non O O\nthis O O\n. O O\n\nI O O\nneed O O\nto O O\ninsert O O\nthe O O\ndata O O\nrow Name Name\nby O O\nrow Name Name\n. O O\n\nI O O\nhave O O\nattached O O\nmy O O\nexcel Name Name\n, O O\ncode O O\nand O O\no/p O O\n. O O\n\nOutput O O\n: O O\n\nmongoDB Name Name\noutput O O\nas O O\nimage Name Name\n\nExcel Name Name\n: O O\n\nExcel Name Name\ndata O O\nas O O\nimage Name Name\n\n} Name Name\n\nI O O\nhave O O\na O O\nSilverlight Name Name\n4 Name Name\napp O O\nusing O O\nPrism Name Name\n2.2 Name Name\nand O O\nI O O\nhave O O\na O O\nfew O O\nmodules O O\nthat O O\nI O O\nam O O\nloading O O\non O O\ndemand O O\nby O O\ndefining O O\nthem O O\nas O O\nondemand Name Name\nin O O\nthe O O\nmodule O O\ncatalog O O\n( O O\nvia O O\na O O\nxaml Name Name\nfile O O\n) O O\nand O O\nthen O O\nusing O O\nthe O O\nModuleManager Name Name\nto O O\nrequest O O\nthe O O\nmodule O O\nbe O O\ndownloaded O O\n\nIs O O\nthere O O\na O O\nmechanism O O\nin O O\nPrism Name Name\nto O O\ndetermine O O\nwhen O O\nthe O O\nmodule O O\ndownload O O\nis O O\ncompleted O O\nand O O\nget O O\nto O O\ndownload O O\nprogress O O\nevents O O\n? O O\n\nThere O O\nwas O O\na O O\nthread O O\non O O\nthe O O\nprism Name Name\ncodeplex Name Name\nsite O O\nbut O O\nnone O O\nof O O\nthe O O\nsuggestions O O\nseemed O O\nto O O\npan O O\nout O O\nfor O O\nthe O O\nfolks O O\nhaving O O\nthe O O\ndiscussion O O\n\nhttp://compositewpf.codeplex.com/Thread/View.aspx?ThreadId=47957 O O\n\nthanks O O\n\nMichael O O\n\nIt O O\nturns O O\nout O O\nthat O O\nthe O O\nsolution O O\nprovided O O\nin O O\nthe O O\nprism Name Name\ndiscussion O O\non O O\ncodeplex Name Name\nworked O O\nlike O O\na O O\ncharm O O\n\nhttp://compositewpf.codeplex.com/Thread/View.aspx?ThreadId=47957 O O\n\nI O O\ncreated O O\na O O\ncustom O O\nFileDownloader Name Name\ncalled O O\nFileDownloaderWithProgress Name Name\n. O O\n\nI O O\nwanted O O\nto O O\nsubclass O O\nthe O O\nexisting O O\none O O\nin O O\nPrism Name Name\nbut O O\nthe O O\nWebClient Name Name\nthat O O\nfires O O\nthe O O\nDownloadProgressChanged Name Name\nevent O O\nwas O O\nprivate Name Name\n. O O\n\nSo O O\nI O O\nhad O O\nto O O\ncreate O O\nmy O O\nown O O\nby O O\nimplementing O O\nIFileDownloader Name Name\n. O O\n\nIn O O\nthe O O\nDownloadProgressChanged Name Name\nevent O O\nhandler O O\nin O O\nthe O O\nFileDownloaderWithProgress Name Name\nclass O O\n- O O\nI O O\npublish O O\na O O\nPrism Name Name\nevent O O\nthat O O\nincludes O O\nthe O O\n% O O\ncomplete O O\nand O O\nthe O O\nmodule O O\nname O O\nthat O O\nwas O O\ndownloaded O O\n. O O\n\nBelow O O\nis O O\nmy O O\ncode O O\n. O O\n\nIts O O\nan O O\nMVC Name Name\nproject O O\non O O\nasp.net Name Name\n. O O\n\nCa O O\nn't O O\nfind O O\nout O O\nwhat O O\nis O O\nthe O O\nproblem O O\n! O O\n\nCreate Name Name\n, O O\nUpdate Name Name\nand O O\nRetrieve Name Name\noperations O O\nwork O O\nsuccessfully O O\nbut O O\ndo O O\nn't O O\nknow O O\nwhy O O\ndelete Name Name\noperation O O\nis O O\nnot O O\nworking O O\n. O O\n\nCode O O\n: O O\n\nController O O\nCode O O\n: O O\n\nError O O\nShowing O O\n: O O\n\nDELETE O O\nhttp://localhost:1693/Product/Delete?id=16 O O\n404 O O\n( O O\nNot O O\nFound O O\n) O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nYou O O\nshould O O\ncall O O\nthe O O\nURL O O\nlike O O\n/Product O O\nwithout O O\nmentioning O O\nDelete Name Name\nin O O\nthe O O\nURL O O\n, O O\nASP.Net Name Name\nWebAPI Name Name\nwill O O\ntake O O\ncare O O\nabout O O\ncalling O O\nDelete Name Name\nmethod O O\n, O O\nwhen O O\nyou O O\ncall O O\n.delete Name Name\non O O\n$http Name Name\n\nAs O O\nthe O O\nquestion O O\nsuggests O O\ni O O\ncannot O O\nseem O O\nto O O\nconfigure O O\nfoo-tables Name Name\n, O O\neven O O\nin O O\nthe O O\nmost O O\nbasic O O\nway O O\n- O O\n3 O O\ncolumns Name Name\n, O O\nlast O O\ncolumn Name Name\nis O O\nthe O O\ntoggle O O\nwhich O O\nshows O O\nthe O O\ndetail O O\nrow Name Name\n. O O\n\nMy O O\nmarkup O O\ncode O O\nis O O\nthus O O\n: O O\n\n$('.footable').footable({}) Name Name\n; Name Name\n\nI O O\nhave O O\nan O O\nexample O O\ntemplate O O\nfrom O O\nwhich O O\ni O O\ngot O O\nhis O O\ncode O O\nwhich O O\nworks O O\nperfectly O O\n- O O\nbut O O\nin O O\nthe O O\nactual O O\napp O O\nim O O\nbuilding O O\nthe O O\nthird O O\nrow Name Name\nwhich O O\nshould O O\nbe O O\nhidden O O\nuntil O O\ntoggled O O\nis O O\nun-rendered O O\nand O O\nshows O O\nas O O\na O O\nthird O O\ncolumn Name Name\n. O O\n\nMy O O\nsetup O O\nis O O\nas O O\nfollows O O\n: O O\n\nFooTable Name Name\n- O O\nVersion O O\n: O O\n2.0.3 Name Name\n\njQuery-1.11.1 Name Name\n\njQuery Name Name\nUI O O\n- O O\nv1.11.0 Name Name\n- Name Name\n2014-06-26 Name Name\n\nChrome Name Name\n: O O\nVersion O O\n46.0.2490.80 Name Name\nm Name Name\n\nAny O O\npointers O O\nappreciated O O\n- O O\nthanks O O\nin O O\nadvance O O\n. O O\n\nBTW O O\ni O O\nhave O O\nthe O O\ncorrect O O\nfootables Name Name\ncss Name Name\nfile O O\nreferenced O O\nin O O\nmy O O\napp O O\n( O O\nnot O O\nshown O O\nin O O\ncode O O\nsnippet O O\nabove O O\n) O O\n\nFound O O\nthe O O\nsolution O O\nhere O O\n: O O\n\nfootable Name Name\nin O O\nbootstrap Name Name\n3 Name Name\nnot O O\ninitializing O O\n\n( O O\nso O O\nplease O O\nstop O O\nthe O O\nstampede O O\nto O O\nanswer O O\n;¬) O O\n) O O\n\nThanks O O\n\nSynopsis O O\n\nI O O\nwant O O\nto O O\nbuild O O\na O O\ncustom O O\ncontrol O O\nwhich O O\ndisplays O O\nevents O O\nin O O\na O O\ncalendar Name Name\n. O O\n\nHere O O\nis O O\nthe O O\ndraft O O\n: O O\n\nThe O O\nConcept O O\n\nThe O O\nbottom O O\nleft O O\nbox Name Name\nis O O\nvertically O O\nscrollable O O\n. O O\n\nThe O O\nbottom O O\nright O O\nbox Name Name\nscrollable O O\nin O O\nboth O O\ndirections O O\n. O O\n\nIt O O\n's O O\npossible O O\nto O O\nmove O O\nthe O O\nevent Name Name\nviews Name Name\naround O O\n. O O\n\nIf O O\nthey O O\ncome O O\nnear O O\nthe O O\nbounds O O\nduring O O\ndragging O O\nthe O O\nview O O\nauto-scrolls O O\nin O O\nthat O O\ndirection O O\n. O O\n\nThe O O\nscroll Name Name\narea Name Name\nis O O\nfinite O O\naccording O O\nto O O\nthe O O\nearliest O O\nand O O\nlatest O O\nevent O O\nin O O\na O O\ndatabase O O\nor O O\na O O\ncertain O O\nmaximum O O\n. O O\n\nBut O O\nif O O\nthe O O\nuser O O\ncontinues O O\nscrolling O O\nthe O O\nscroll Name Name\narea Name Name\ngrows O O\naccordingly O O\nand O O\ncollapses O O\nif O O\nthe O O\nuser O O\nscrolls O O\nback O O\nand O O\ndid O O\nnot O O\ncreate O O\na O O\nnew O O\nevent O O\n. O O\n\nThis O O\n\" O O\nJuly O O\n2011 O O\n\" O O\nbutton Name Name\nat O O\nthe O O\nbottom O O\nacts O O\nas O O\nscroller Name Name\n. O O\n\nIf O O\nthe O O\nuser O O\npulls O O\nit O O\nbeyond O O\nthe O O\nbounds O O\nof O O\nthe O O\nscroll Name Name\narea Name Name\n, O O\nit O O\ngrows O O\naccordingly O O\n. O O\n\nThe O O\nmonth O O\nname O O\nin O O\nthe O O\nheader O O\nstays O O\nalways O O\nat O O\nthis O O\nposition O O\nuntil O O\nthe O O\nnext O O\nmonth O O\nmoves O O\nin O O\n, O O\nso O O\nit O O\n's O O\na O O\nlong O O\ncell Name Name\nwhich O O\nspans O O\nover O O\nthe O O\nday O O\ncells Name Name\nof O O\nthe O O\nmonth O O\nwith O O\na O O\nfloating O O\ncaption O O\n. O O\n\nThe O O\nheader Name Name\nrows Name Name\nand O O\ncolumns Name Name\nare O O\nalways O O\nvisible O O\n. O O\n\nThe O O\nQuestion O O\n\nSince O O\nI O O\n'm O O\nonly O O\nslightly O O\nfamiliar O O\nwith O O\nthe O O\ncapabilities O O\nof O O\nCappuccino Name Name\nor O O\nCocoa Name Name\n's O O\ncontrol O O\nclasses O O\n: O O\nWhere O O\ncan O O\nI O O\nmake O O\ndirect O O\nuse O O\nof O O\nCappuccino Name Name\nor O O\nCocoa Name Name\nclasses O O\n, O O\nwhere O O\nis O O\nit O O\nreasonable O O\nto O O\nsubclass O O\nCappuccino/Cocoa Name Name\ncontrols O O\nand O O\nwhere O O\ndo O O\nI O O\nhave O O\nto O O\nwrite O O\ncustom O O\ncontrols O O\nfrom O O\nscratch O O\n? O O\n\nEdit O O\n: O O\nMy O O\nThoughts O O\n\nI O O\nthink O O\nits O O\nreasonable O O\ndividing O O\nthe O O\ncontrol O O\nwith O O\na O O\nSplitView Name Name\nwith O O\na O O\nvertical Name Name\ndivider Name Name\n. O O\n\nI O O\ncould O O\nuse O O\na O O\nTableView Name Name\nfor O O\nthe O O\nleft O O\nheader Name Name\ncolumn Name Name\nin O O\nthe O O\nleft O O\nsubview O O\n. O O\n\nAnd O O\nI O O\ncould O O\nsynchronize O O\nthe O O\nvertical O O\nscrolling O O\nwith O O\nwhat O O\nhappens O O\non O O\nthe O O\nright O O\nside O O\n. O O\n\nBut O O\nI O O\n'm O O\nnot O O\nso O O\nsure O O\nabout O O\nthe O O\nview Name Name\non O O\nthe O O\nright O O\nside O O\n. O O\n\nI O O\nthought O O\nabout O O\nTableView Name Name\nbut O O\nI O O\nwould O O\nactually O O\nonly O O\nneed O O\nthe O O\ncells Name Name\nas O O\na O O\nbackground Name Name\ngrid Name Name\n. O O\n\nThus O O\n, O O\nI O O\nguess O O\n, O O\nit O O\nwould O O\nbe O O\ndifficult O O\nto O O\nhave O O\ntwo O O\nheader Name Name\nrows Name Name\nand O O\nto O O\nimplement O O\nthe O O\ndesired O O\nscrolling O O\nbehavior O O\n. O O\n\nSo O O\nthe O O\nbest O O\nway O O\nis O O\nprobably O O\nto O O\ncreate O O\na O O\ncompletely O O\nnew O O\ncustom O O\nview O O\n. O O\n\nBut O O\nthen O O\nagain O O\nthe O O\nquestion O O\n: O O\nWhere O O\nis O O\nit O O\nreasonable O O\nto O O\nsubclass O O\nCappuccino Name Name\nresp O O\n. O O\n\nCocoa Name Name\ncontrols O O\nand O O\nwhere O O\ndo O O\nI O O\nhave O O\nto O O\nwrite O O\ncustom O O\ncontrols O O\nfrom O O\nscratch O O\n? O O\n\nFor O O\nthe O O\ncalendar Name Name\nview O O\nit O O\nlooks O O\nsufficiently O O\ndifferent O O\nfrom O O\na O O\ntable Name Name\nview O O\nthat O O\nit O O\nmight O O\nbe O O\neasier O O\nto O O\njust O O\nwrite O O\nit O O\nfrom O O\nscratch O O\n. O O\n\nPerhaps O O\nstart O O\nwith O O\na O O\nbare O O\nCPView Name Name\nand O O\ndraw O O\nthe O O\nbackground Name Name\nin O O\nits O O\ndrawRect Name Name\n: O O\nmethod O O\n, O O\nthen O O\ncreate O O\na O O\nCPControl Name Name\nsubclass O O\nfor O O\nthe O O\nevents O O\n. O O\n\nIn O O\nits O O\ndrawRect Name Name\nrender O O\nits O O\nborders Name Name\nand O O\nbackground Name Name\n, O O\nor O O\nuse O O\na O O\nCPBox Name Name\nwith O O\nsetBackgroundColor Name Name\n: Name Name\n. O O\n\nThe O O\ntext Name Name\nis O O\nbest O O\ndrawn O O\nwith O O\nlabel O O\nsubviews O O\n. O O\n\nReact O O\nto O O\nmouseDown Name Name\nand O O\nso O O\non O O\nto O O\nimplement O O\ndrag O O\nand O O\ndrop O O\n, O O\ndouble O O\nclick O O\nevents Name Name\nand O O\nwhat O O\nelse O O\nyou O O\nmight O O\nwant O O\n. O O\n\nThen O O\nput O O\nthe O O\nwhole O O\ncalendar Name Name\nview O O\nin O O\na O O\nCPScrollView Name Name\n. O O\n\nSynchronise O O\nits O O\nvertical O O\nscrolling O O\nwith O O\nthe O O\nscroll O O\nview O O\non O O\nthe O O\nleft O O\n- O O\nuse O O\na O O\nCPTableView Name Name\nthere O O\n. O O\n\nScrolling O O\nis O O\nfairly O O\neasy O O\nwith O O\na O O\nCPScrollView Name Name\n: O O\njust O O\ncall O O\nscrollToPoint Name Name\n: Name Name\non O O\nthe O O\ncontent O O\nview O O\n. O O\n\nYou O O\nwill O O\nneed O O\nto O O\nexpand O O\nthe O O\ncontent O O\nview O O\nsize O O\ndynamically O O\nto O O\nallow O O\n' O O\ninfinite O O\n' O O\nscrolling O O\n. O O\n\nMaybe O O\nsimply O O\nalways O O\nmake O O\nthe O O\ncontent O O\nview O O\nsize O O\nthe O O\nminimum O O\nof O O\nthe O O\nsize O O\nof O O\nits O O\nevents O O\nand O O\nthe O O\ncurrent O O\nscroll O O\nposition O O\n+ O O\nX Name Name\n( O O\nthe O O\nX Name Name\ngiving O O\nthe O O\nuser O O\nsome O O\ndistance O O\nto O O\nscroll O O\nbefore O O\nyou O O\nhave O O\nto O O\nresize O O\nagain O O\n) O O\n. O O\n\nIn O O\na O O\nnutshell O O\n, O O\nsubclass O O\nCPView Name Name\nand O O\nCPControl Name Name\n- O O\nCPView Name Name\nwhen O O\nthere O O\nis O O\nno O O\ninteraction O O\n, O O\nand O O\nCPControl Name Name\nwhen O O\nthere O O\nis O O\n. O O\n\nto O O\ndisplay O O\nthe O O\nname O O\nof O O\nall O O\nthe O O\ncandidates O O\nwho O O\ngot O O\nbelow O O\n40 O O\nin O O\nexactly O O\n2 O O\nsubjects O O\nusing O O\nsql Name Name\n\ndegree(degcode,name,subject) Name Name\n\ncandidate(seatno,degcode,name) Name Name\n\nmarks(seatno,dedcode,mark) Name Name\n\nYour O O\nquery O O\ncan O O\nbe O O\nlike O O\nbelow O O\n- O O\n\nIf O O\nit O O\ndoes O O\nnot O O\nwork O O\nfor O O\nyou O O\nthen O O\ncan O O\ncreate O O\na O O\nsqlfiddle Name Name\nwith O O\ndummy O O\ndata O O\nfor O O\nmore O O\nclairty O O\nso O O\nthat O O\nI O O\ncan O O\nmodify O O\nquery O O\nas O O\nper O O\nyour O O\nrequirement O O\n. O O\n\nI O O\nam O O\nmaking O O\nan O O\nandroid Name Name\napplication O O\n. O O\n\nI O O\nhave O O\na O O\nTextField Name Name\nand O O\na O O\nbutton Name Name\n. O O\n\nBased O O\non O O\nthe O O\nvalue O O\nof O O\nthe O O\ntextfield Name Name\n, O O\nas O O\nsoon O O\nas O O\nthe O O\nuser O O\nclicks O O\nthe O O\nbutton Name Name\nI O O\nwant O O\nto O O\nmake O O\nsomething O O\n. O O\n\nI O O\nhave O O\nthe O O\ncode O O\n: O O\n\nThis O O\nhowever O O\ndoes O O\nn't O O\ncompile O O\n, O O\nsaying O O\n\" O O\nCannot O O\nrefer O O\nto O O\na O O\nnon-final O O\nvariable O O\nvalue O O\ninside O O\nan O O\ninner O O\nclass O O\ndefined O O\nin O O\na O O\ndifferent O O\nmethod O O\n\" O O\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\nfix O O\nthis O O\n? O O\n\nThanks O O\na O O\nlot O O\n\nUse O O\n\nfinal Name Name\nString Name Name\nvalue Name Name\n= Name Name\net.getText().toString() Name Name\n; Name Name\n\nand O O\nthen O O\nuse O O\n, O O\n\nIf O O\nyou O O\nwant O O\nto O O\ncompare O O\nthe O O\nvalue O O\nof O O\na O O\nstring Name Name\nyou O O\nshould O O\nuse O O\nthe O O\n\" O O\nequals Name Name\n\" O O\nmethod O O\ninstead O O\nof O O\n\" O O\n= O O\n\" O O\n. O O\n\nThe O O\ncode O O\nwill O O\nlook O O\nlike O O\nthis O O\n: O O\n\nI O O\nhave O O\nmy O O\nlinq Name Name\ncode O O\nformatted O O\nlike O O\n: O O\n\nIn O O\nthe O O\nfollowing O O\ncode O O\nhow O O\ndo O O\nI O O\nadd O O\nanother O O\nDoor Name Name\nthat O O\nis O O\nthe O O\nsame O O\n\" O O\nlevel O O\n\" O O\nas O O\ntreasure Name Name\n? O O\n\nEverything O O\nI O O\nhave O O\ntried O O\nkeeps O O\nadding O O\nit O O\nas O O\nthe O O\nsame O O\nlevel O O\nas O O\ncard Name Name\n. O O\n\nHere O O\nis O O\nwhat O O\nI O O\nhave O O\n: O O\n\nYou O O\nneed O O\nto O O\ncreate O O\nthe O O\nDeck Name Name\nelement O O\nfirst O O\n: O O\n\nThen O O\nadd O O\nboth O O\nthe O O\ntreasure Name Name\n( O O\nwhich O O\ni O O\n've O O\ntaken O O\nthe O O\nliberty O O\nof O O\nrenaming O O\nfrom O O\nroot Name Name\nto O O\ntreasure Name Name\n) O O\nand O O\nthe O O\ndoor Name Name\nto O O\nit O O\n: O O\n\nI O O\nam O O\ntrying O O\nto O O\nmake O O\nthe O O\nwidth O O\nof O O\nxeditable Name Name\ntextfield Name Name\nincrease O O\nor O O\ndecrease O O\nwith O O\nthe O O\ninput O O\ntext O O\n. O O\n\nI O O\ntried O O\nthe O O\nfollowing O O\ncode O O\nbut O O\nno O O\nresult O O\n. O O\n\nAfter O O\na O O\nlong O O\nresearch O O\n, O O\nI O O\nfound O O\nthe O O\nsolution O O\nof O O\nmy O O\nproblem O O\n. O O\n\nalthough O O\nit O O\nseemed O O\nthat O O\nno O O\none O O\nactually O O\nbothered O O\nmy O O\nproblem O O\nlol O O\n. O O\n\nThe O O\nfollowing O O\ncode O O\nexecutes O O\nfine O O\nin O O\nFirefox Name Name\nand O O\nChrome Name Name\n, O O\nbut O O\ngives O O\nan O O\nerror O O\n: O O\n\nwhen O O\nexecuted O O\nin O O\nInternet Name Name\nExplorer Name Name\n. O O\n\n( O O\nI O O\nwould O O\nhave O O\nthought O O\nthe O O\nline O O\nafter O O\nthe O O\none O O\nindicated O O\nwould O O\nbe O O\nmore O O\nlikely O O\nto O O\nreturn O O\nthe O O\nerror O O\nbut O O\nthe O O\ndebugger Name Name\nsays O O\nthe O O\nrun-time O O\nerror O O\nis O O\nat O O\nthe O O\nline O O\nindicated O O\n) O O\n\nAny O O\nideas O O\nwhy O O\n? O O\n\nI O O\n've O O\njust O O\nfound O O\na O O\nsolution O O\nfor O O\nthis O O\n. O O\n\nMake O O\nthe O O\nencoding O O\ntype O O\nus-ascii Name Name\n( O O\nencoding='us-ascii' Name Name\n) O O\nin O O\nthe O O\nxml Name Name\nfile O O\n. O O\n\nIt O O\nsolved O O\nmy O O\nproblem O O\n. O O\n\nTry O O\nsomething O O\nlike O O\nthis O O\n( O O\nas O O\nusual O O\n, O O\nIE Name Name\ndoes O O\nthings O O\ndiferently O O\n) O O\n( O O\ntake O O\nfrom O O\nhttp://msdn.microsoft.com/en-us/library/ms534370(VS.85).aspx O O\n) O O\n\nhow O O\ncan O O\ninteract O O\nwith O O\nmultiple O O\nconsole Name Name\nwindows Name Name\n, O O\nfrom O O\none O O\nnode.js Name Name\nscript O O\n? O O\n\nso O O\nfar O O\ni O O\nhave O O\nresearched O O\na O O\nbit O O\n, O O\nand O O\nnot O O\nhave O O\nfound O O\nanything O O\nthat O O\ncovers O O\nmy O O\ncase O O\n. O O\n\nWhat O O\ni O O\nwant O O\nto O O\naccomplish O O\nis O O\nto O O\nhave O O\none O O\nmain O O\nconsole Name Name\nwindow Name Name\n, O O\nwhich O O\nit O O\nreads O O\nmy O O\ninput O O\n, O O\n\nand O O\nit O O\nwould O O\nredirect O O\nits O O\noutput O O\nto O O\nanother O O\nconsole Name Name\nwindow Name Name\nnamed O O\nas O O\nLogger Name Name\nwhich O O\nshows O O\nthe O O\nstdout Name Name\nof O O\nthe O O\naction O O\nthat O O\nthe O O\nuser O O\nselected O O\n, O O\nbut O O\nkeeps O O\nthe O O\nmain O O\n\" O O\nselect O O\naction O O\n\" O O\nconsole Name Name\nwindow Name Name\nclean O O\n. O O\n\nwell O O\ni O O\nmanage O O\nto O O\nfind O O\na O O\nway O O\naround O O\nit O O\n, O O\nsince O O\ni O O\nwanted O O\nto O O\nstay O O\nwith O O\nnode.js Name Name\nall O O\nthe O O\nway O O\n. O O\n\nstart.js Name Name\n\nlogger.js Name Name\n\nstartAdminInterface.js Name Name\n\nbottom O O\n, O O\nline O O\nits O O\na O O\nworkaround O O\nnot O O\nexactly O O\nwhat O O\ni O O\nwas O O\nafter O O\n, O O\nput O O\ni O O\nsaw O O\npotential O O\n, O O\non O O\nlogger.js Name Name\nit O O\ncould O O\nlisten O O\nfrom O O\nmultiple O O\nsources O O\n, O O\nwhich O O\nis O O\nan O O\nenormous O O\nplus O O\nin O O\nthe O O\napplication O O\nthat O O\ni O O\n'm O O\nbuilding O O\n. O O\n\nI O O\nam O O\nrunning O O\nselenium Name Name\ntests O O\nusing O O\nTestNG Name Name\nprogramatically O O\n. O O\n\nI O O\nwant O O\nto O O\nrun O O\ntest O O\nmethods O O\nin O O\nsequence O O\nthat O O\ni O O\nmention O O\n. O O\n\nIts O O\nlike O O\nattribute O O\npreserve-order Name Name\n= Name Name\n\" Name Name\ntrue Name Name\n\" Name Name\nif O O\nwe O O\nuse O O\nfor O O\nTestNG.XML Name Name\n. O O\n\nSimilar O O\nfunctionality O O\nhow O O\ncan O O\ni O O\nachive O O\nit O O\nwithout O O\nusing O O\nTestNG.XMl Name Name\n. O O\n\nsetTestNames Name Name\nis O O\nnot O O\nworking O O\n\nA.class Name Name\nis O O\nhaving O O\nclass O O\nlevel O O\n@Test Name Name\nspecified Name Name\n. O O\n\nSo O O\nall O O\nmethods O O\nin O O\nthat O O\nclass O O\nare O O\ntestcases O O\n. O O\n\nSo O O\nTestng O O\nexecuting O O\nall O O\nmethods O O\nin O O\nA Name Name\n. O O\nI O O\nwant O O\nto O O\nrun O O\nin O O\nsequence O O\nas O O\nthey O O\nappear O O\nin O O\nthe O O\nclass O O\n. O O\n\nIn O O\ntestNg Name Name\nyou O O\ncan O O\nuse O O\n\nand O O\nthem O O\nchange O O\nthis O O\nto O O\nall O O\nthe O O\nmethods O O\nto O O\nkeep O O\nthe O O\norder O O\nyou O O\nwant O O\nlike O O\n\nAnother O O\nsolution O O\nwould O O\nbe O O\nthe O O\nuse O O\nof O O\n\nI O O\nsearched O O\nTestNG Name Name\ndocs O O\nand O O\nI O O\ncannot O O\nsee O O\nan O O\neasy O O\nway O O\nto O O\ndo O O\nwhat O O\nyou O O\nwant O O\nusing O O\nannotatios O O\n.. O O\n. O O\n\nWithout O O\na O O\ntestng.xml Name Name\n, O O\nthe O O\neasiest O O\nway O O\nto O O\ndo O O\nthis O O\nis O O\nprobably O O\nto O O\nimplement O O\nyour O O\nown O O\nIMethodInterceptor Name Name\n. O O\n\nAre O O\nmodal Name Name\nwindows/dialogs Name Name\nconsidered O O\na O O\ngood O O\npractice O O\nfor O O\nwebsites O O\n? O O\n\nOne O O\nof O O\nthe O O\nthings O O\nthat O O\nconcerns O O\nme O O\nabout O O\nusing O O\na O O\nmodal Name Name\nwindow Name Name\nis O O\nthat O O\nit O O\nis O O\nso O O\nmuch O O\nlike O O\na O O\npop-up Name Name\nwindow Name Name\nand O O\nit O O\ncould O O\ncause O O\nuser O O\nfrustration O O\nor O O\ncause O O\nusers O O\nto O O\nsimply O O\nclose O O\nit O O\nbecause O O\nit O O\n's O O\nintrusive O O\n. O O\n\nDo O O\nyou O O\nknow O O\nof O O\nany O O\nstudies O O\nthat O O\ntalk O O\nabout O O\nuser O O\npreferences O O\nand O O\nuse O O\nrates O O\n? O O\n\nAre O O\nthere O O\nany O O\naccessibility O O\nissues O O\nbeyond O O\nhaving O O\nthe O O\na O O\nmodal Name Name\nwindow Name Name\nlink O O\nload O O\nthe O O\ncontent O O\nin O O\na O O\nnew O O\npage O O\nwhen O O\nJavaScript Name Name\nis O O\nturned O O\noff O O\n? O O\n\nDo O O\nyou O O\nlike O O\nsites O O\nor O O\nweb O O\napps O O\nthat O O\nuse O O\nmodal Name Name\nwindows Name Name\n? O O\n\nWhy O O\nor O O\nwhy O O\nnot O O\n? O O\n\nWhat O O\nare O O\ngood O O\nand O O\nbad O O\npractices O O\nfor O O\nimplementing O O\nmodal Name Name\nwindows Name Name\n? O O\n\nI O O\nknow O O\nmodals Name Name\nare O O\nprobably O O\nmost O O\noften O O\nused O O\nwhen O O\ndisplaying O O\npictures Name Name\nor O O\ngalleries Name Name\n, O O\nbut O O\nwhat O O\nare O O\nsome O O\nother O O\npractical O O\nuse O O\ncases O O\n? O O\n\nDo O O\nyou O O\nuse O O\nthem O O\non O O\nyour O O\nsite O O\nand O O\nwhat O O\nlead O O\nyou O O\nto O O\nyour O O\ndecision O O\n? O O\n\nFrom O O\na O O\npractice O O\nstandpoint O O\n- O O\nexcluding O O\naccessibility O O\n- O O\nmodal Name Name\nwindows Name Name\nprovide O O\nan O O\nalternative O O\nthat O O\nare O O\nless O O\nstartling O O\nas O O\n, O O\nsay O O\n, O O\ndialog Name Name\nboxes Name Name\nand O O\nfeel O O\nless O O\nintrusive O O\nthan O O\npop-up Name Name\nwindows Name Name\n. O O\n\nThey O O\nusually O O\nhave O O\na O O\nmore O O\ncohesive O O\nfeel O O\nto O O\nthe O O\nsite O O\nthan O O\neither O O\nof O O\nthe O O\ntwo O O\naforementioned O O\nmethod O O\n. O O\n\nAside O O\nfrom O O\npictures Name Name\nor O O\nmedia O O\n, O O\nI O O\n've O O\nused O O\nmodal Name Name\ndialogs Name Name\nto O O\nserve O O\nthe O O\nsame O O\npurpose O O\nas O O\ndialog Name Name\nboxes Name Name\n- O O\nto O O\nget O O\nthe O O\nuser O O\nto O O\ngive O O\nsome O O\nform O O\nof O O\nrequired O O\ninput O O\n, O O\nor O O\nto O O\nacknowledge O O\nsomething O O\nbefore O O\nletting O O\nthem O O\ninteract O O\nwith O O\nthe O O\nsite O O\nagain O O\n. O O\n\nFrom O O\na O O\npurely O O\naccessible O O\nstandpoint O O\n, O O\nthey O O\nare O O\nn't O O\nso O O\ngreat O O\n. O O\n\nThey O O\ntypically O O\nrequire O O\nJavaScript Name Name\n, O O\nand O O\n, O O\nbecause O O\nof O O\nthe O O\nway O O\nthat O O\nmodals Name Name\nare O O\nmanaged O O\nwith O O\nrespect O O\nto O O\nthe O O\nDOM O O\n, O O\nscreen O O\nreaders O O\nwill O O\nnot O O\ninterpret O O\nthem O O\nwell O O\n. O O\n\nTo O O\ncombat O O\nthis O O\n, O O\nit O O\n's O O\nalways O O\na O O\ngood O O\nidea O O\nto O O\ndegrade O O\ngracefully O O\n- O O\none O O\nsuggestion O O\nis O O\nto O O\ntake O O\nthe O O\ncontent O O\nof O O\nthe O O\nmodal Name Name\ndialog Name Name\nand O O\nplace O O\nit O O\non O O\na O O\npage O O\n. O O\n\nWhenever O O\nthe O O\nmodal Name Name\ndialog Name Name\nshould O O\nappear O O\n, O O\nhave O O\nthe O O\ncurrent O O\npage O O\nredirect O O\nto O O\nthe O O\n' O O\nmodal Name Name\npage Name Name\n' O O\n, O O\nget O O\nthe O O\nuser O O\n's O O\ninput O O\n, O O\nand O O\nreturn O O\nto O O\nthe O O\npage O O\nit O O\nwas O O\non O O\n. O O\n\nFinally O O\n, O O\nas O O\nfar O O\nas O O\nmy O O\npersonal O O\nopinions O O\nare O O\nconcerned O O\n, O O\nI O O\ndo O O\nn't O O\nmind O O\nmodal Name Name\nwindows Name Name\n. O O\n\nI O O\nthink O O\nthat O O\n, O O\nwhen O O\nused O O\ncorrectly O O\n, O O\nthey O O\nprovide O O\na O O\ndecent O O\nexperience O O\n- O O\nif O O\nsomething O O\nhas O O\nto O O\nget O O\nmy O O\nattention O O\n, O O\nthen O O\nI O O\n'd O O\nrather O O\nit O O\ndo O O\nso O O\nwithout O O\nredirecting O O\nme O O\nfrom O O\nthe O O\npage O O\n, O O\nshowing O O\nan O O\nugly O O\noperating O O\nsystem O O\nthemed O O\ndialog Name Name\n, O O\nor O O\na O O\npop-up Name Name\n( O O\nwhich O O\nmy O O\nbrowser Name Name\nwill O O\nlikely O O\nblock O O\n, O O\nanyway O O\n) O O\n. O O\n\nI O O\nguess O O\n, O O\nto O O\nsum O O\nit O O\nup O O\n, O O\nif O O\nI O O\nhad O O\nto O O\nchoose O O\nhow O O\nI O O\n'd O O\nlike O O\nto O O\nbe O O\ninterrupted O O\n, O O\nthen O O\nI O O\n'd O O\nchoose O O\na O O\nmodal Name Name\ndialog Name Name\n. O O\n\nIt O O\nseems O O\nas O O\nthough O O\nmany O O\nconfuse O O\nmodal Name Name\nwindow Name Name\nwith O O\na O O\nlayered Name Name\npanel Name Name\n. O O\n\nA O O\ndialog Name Name\nbox Name Name\ncan O O\nbe O O\na O O\nmodal Name Name\nwindow Name Name\nand O O\na O O\npop-up Name Name\nis O O\na O O\nmodal Name Name\nwindow Name Name\n. O O\n\nA O O\nlayered Name Name\npanel Name Name\nis O O\nnot O O\na O O\nwindow Name Name\n, O O\nbut O O\nhas O O\nthe O O\nappearance O O\nof O O\na O O\npop-up Name Name\nor O O\ndialog Name Name\nbox Name O\n. O O\n\nIt O O\nis O O\nmodal Name Name\nin O O\nthe O O\nsense O O\nthat O O\nthe O O\nunderlying O O\nlayers O O\nare O O\nunavailable O O\n. O O\n\nModal Name Name\nwindow Name Name\nare O O\npopular O O\non O O\nweb O O\nsites O O\nbecause O O\nthey O O\nare O O\nimmune O O\nto O O\npop-up Name Name\nblockers O O\n. O O\n\nModal Name Name\nwindows Name Name\nwere O O\ndesigned O O\nto O O\nobtain O O\ninformation O O\nor O O\nuser O O\naction O O\nthat O O\nthe O O\nunderlying O O\napplication O O\nrequires O O\nto O O\ncontinue O O\n. O O\n\nNon-modal Name Name\nwindows Name Name\nallow O O\nthe O O\nuser O O\nto O O\nswitch O O\nback O O\nand O O\nforth O O\nbetween O O\nthe O O\nwindow Name Name\nand O O\nthe O O\nunderlying O O\napplication O O\n. O O\n\nA O O\ngood O O\nuse O O\nfor O O\na O O\nnon-modal O O\nwindow Name Name\nmight O O\nbe O O\nscreen O O\nhelp O O\nor O O\na O O\ntutorial O O\n, O O\nwhere O O\nthe O O\nuser O O\nneeds O O\na O O\nreference O O\ntool O O\nand O O\naccess O O\nto O O\nthe O O\nunderlying O O\napplication O O\n. O O\n\nIMHO O O\n, O O\nmodal Name Name\nwindows Name Name\nwere O O\ndesigned O O\nfor O O\na O O\nnarrow O O\nspecific O O\npurpose O O\nand O O\nare O O\nused O O\ninappropriately O O\na O O\nlot O O\nof O O\nthe O O\ntime O O\nnow O O\n. O O\n\nJust O O\nbecause O O\nyou O O\ncan O O\ndo O O\nsomething O O\ndoes O O\nn't O O\nmean O O\nyou O O\nshould O O\n! O O\n\n:-) O O\n\nI O O\nhave O O\na O O\nWSDL Name Name\nfile O O\nlocated O O\nunder O O\nsrc Name Name\n\\main\\resources\\wsdl\\ Name Name\nfolder O O\nand O O\nit O O\nis O O\nhaving O O\nmultiple O O\noperations O O\ndefined O O\nwithin O O\nit O O\n. O O\n\nMy O O\napplication O O\nis O O\nrunning O O\non O O\nWeblogic Name Name\n12C Name Name\nserver Name Name\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nexpose O O\nthe O O\nSOAP O O\nweb-service O O\nusing O O\nApache Name Name\nCammel Name Name\n( O O\nversion O O\n: O O\n2.18.3 Name Name\n) O O\nwith O O\nJava Name Name\nDSL O O\n- O O\n\nI O O\nhave O O\nwritten O O\nbelow O O\ncode O O\nunder O O\nconfiguration Name Name\nmethod O O\nof O O\nmy O O\nRouteBuilder Name Name\nclass O O\n- O O\n\nWhile O O\nI O O\n'm O O\ndeploying O O\nthe O O\napplication O O\n, O O\nit O O\nis O O\nthrowing O O\nbelow O O\nexception Name Name\n- O O\n\npom.xml Name Name\n\nStep O O\n1 O O\n: O O\nGenerate O O\nthe O O\nservice O O\nfrom O O\nyour O O\nwsdl Name Name\nusing O O\nwsdl2java Name Name\ncommand O O\nor O O\nyour O O\nchoice O O\nof O O\nIDE Name Name\n. O O\n\nStep O O\n2 O O\n: O O\nHave O O\nthat O O\nin O O\nyour O O\ncode O O\nclasspath O O\n\nStep O O\n3 O O\n: O O\nMention O O\nthe O O\nclass O O\nname O O\nand O O\nendpoint O O\nnames O O\nin O O\nthe O O\nabove O O\npiece O O\nof O O\ncode O O\n\nThere O O\nare O O\nmany O O\nquestions O O\nin O O\nthis O O\ncommunity O O\nfor O O\nopening O O\nthe O O\nwindow O O\nView O O\non O O\na O O\nclick O O\nof O O\na O O\nbutton Name Name\njust O O\nwe O O\nneed O O\nto O O\ncreate O O\nthe O O\ninstance O O\nof O O\nthe O O\nview O O\nand O O\nuse O O\n.Show Name Name\nand O O\nsome O O\nquestion O O\nare O O\nbased O O\non O O\nusing O O\nUser Name Name\nControl Name Name\nin O O\nWindow O O\nView O O\n. O O\n\nI O O\nam O O\nfollowing O O\nMVVM Name Name\npattern O O\nto O O\ncreate O O\na O O\nWPF Name Name\napplication O O\n, O O\nin O O\nthe O O\nViews O O\nI O O\ncreated O O\na O O\nfile O O\ncalled O O\nSalesView.xaml Name Name\nwhich O O\nis O O\na O O\nUser Name Name\nControl(WPF) Name Name\nview O O\nand O O\nby O O\ndefault O O\nI O O\nset O O\nthe O O\nDashboard.xaml Name Name\nfrom O O\nthe O O\nApp.xaml Name Name\nwhich O O\nis O O\nWindow O O\nView O O\nand O O\nthe O O\nproject O O\nstructure O O\nis O O\nsome O O\nthing O O\nlike O O\nthis O O\n: O O\n\nMy O O\nrequirement O O\nis O O\nthat O O\nI O O\nhave O O\na O O\nbutton Name Name\nin O O\nDashboard.xaml Name Name\non O O\nclick O O\nof O O\nthis O O\nbutton Name Name\nI O O\nwant O O\nto O O\nopen O O\na O O\nSalesView.xaml Name Name\nwhich O O\nis O O\na O O\nUser Name Name\nControl(WPF) Name Name\nview O O\nnot O O\na O O\nwindow O O\nView O O\n. O O\n\nIt O O\nseems O O\nlike O O\nyou O O\nneed O O\nsome O O\nshort O O\nof O O\nshell Name Name\nfor O O\nhosting O O\nyour O O\nuser O O\ncontrols O O\n. O O\n\nSimplest O O\nway O O\nis O O\nto O O\nput O O\nthem O O\non O O\nmain O O\nwindow O O\nas O O\ncontent O O\ninstead O O\nof O O\na O O\nprevious O O\none O O\n. O O\n\nOr O O\nuse O O\nsome O O\nframework O O\nlike O O\nPrism Name Name\n. O O\n\nNormally O O\nhow O O\nI O O\nwould O O\ndo O O\nit O O\n, O O\nI O O\nwould O O\ncreate O O\na O O\nclass O O\nthat O O\nis O O\ncontroller/view Name Name\nmanager Name Name\n. O O\n\nAnd O O\nthen O O\npass O O\nin O O\nto O O\nit O O\nmy O O\nview Name Name\nand O O\nvm O O\n, O O\nthen O O\nthe O O\nclass O O\nwould O O\nbind O O\nit O O\nand O O\nput O O\nit O O\ninto O O\nthe O O\nhosting O O\nwindow O O\n. O O\n\nUsage O O\nsample O O\n: O O\n\nHere O O\nis O O\nan O O\nexample O O\nof O O\nthree O O\nforms O O\nwith O O\nthe O O\nsame O O\nrepeated O O\ninstance O O\nand O O\nno O O\nunique O O\nidentifier O O\n: O O\n\nHow O O\ncan O O\nI O O\nattach O O\na O O\ndifferent O O\nconsole.log Name Name\nor O O\nany O O\nmessage O O\ntriggered O O\nby O O\na O O\nclick O O\nto O O\neach O O\nof O O\nthese O O\nbuttons Name Name\n? O O\n\nI O O\nam O O\ntargeting O O\nthese O O\nbuttons Name Name\nso O O\nfar O O\nwith O O\na O O\njQuery Name Name\nDom Name Name\nselector Name Name\n$(\"form[action='/haters']\") Name Name\n\nI O O\nposted O O\non O O\ncodepen Name Name\nalso O O\n: O O\nhttp://codepen.io/marc313/pen/uphiv O O\n\nPlease O O\nand O O\nthanks O O\n! O O\n\nWhile O O\nyou O O\ncould O O\nbind O O\nto O O\neach O O\nbutton Name Name\nindividually O O\n, O O\nas O O\nin O O\nDeryck O O\n's O O\nanswer O O\n, O O\noften O O\ntimes O O\nsuch O O\npractice O O\nleads O O\nto O O\nduplicate O O\ncode O O\n. O O\n\nIts O O\nlikely O O\nyour O O\nactual O O\nuse O O\ncase O O\nis O O\nn't O O\nto O O\nlog O O\n3 O O\ndifferent O O\nthings O O\nto O O\nthe O O\nconsole Name Name\nwhen O O\n3 O O\nbuttons Name Name\nare O O\nclicked O O\n. O O\n\nParticularly O O\nif O O\nthese O O\n3 O O\nbuttons Name Name\ndo O O\nsimilar O O\nactions O O\nor O O\nif O O\nthey O O\nact O O\non O O\nthe O O\nsame O O\nset O O\nof O O\ndata O O\n, O O\nits O O\noften O O\nmuch O O\nmore O O\nclean O O\nto O O\ndo O O\nsomething O O\nlike O O\nthis O O\n: O O\n\njQuery Name Name\n\nMarkup O O\n\nReference O O\n\nOn O O\ncalling O O\n.on() Name Name\nfor O O\nevent O O\nbinding O O\n\nEach O O\nitem O O\nin O O\na O O\nset O O\nwill O O\nhave O O\nan O O\nindex Name Name\nnumber O O\nand O O\nyou O O\ncan O O\nuse O O\nthat O O\nto O O\nidentify O O\nthem O O\n. O O\n\njQuery Name Name\n: O O\n\nThe O O\n.eq() Name Name\nmethod O O\nmeans O O\n\" O O\nequals O O\n\" O O\nand O O\nrefers O O\nto O O\nthe O O\nindex O O\nnumber O O\nfor O O\nthe O O\nselector Name Name\nyou O O\nchose O O\nin O O\n$('input[type=submit']) Name Name\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\ndo O O\nthat O O\nsystemically O O\n, O O\nyou O O\ncan O O\nput O O\nthat O O\ninto O O\na O O\nfor() Name Name\nor O O\nwhile() Name Name\nloop O O\n. O O\n\nOf O O\ncourse O O\n, O O\nyou O O\nwould O O\nreplace O O\neq(0) Name Name\nwith O O\nwhatever O O\nnumber O O\nyou O O\nwant O O\nto O O\nuse O O\nto O O\nidentify O O\nthe O O\nbutton Name Name\n( O O\nstarting O O\nfrom O O\n0 Name Name\nbeing O O\nthe O O\nfirst O O\nelement O O\nin O O\nthe O O\nset Name Name\n, O O\nnot O O\ngreater O O\nthan O O\n$('input[type=submit]').length) Name Name\n. O O\n\nHere O O\n's O O\na O O\nfork O O\nof O O\nyour O O\nCodePen Name Name\nto O O\nsee O O\nit O O\nin O O\naction O O\nwith O O\nalert() Name Name\n\nThe O O\ndefault O O\nbehaviour O O\nfor O O\nediting O O\na O O\ncell Name Name\nis O O\ndouble O O\nclicking O O\nit O O\n, O O\nbut O O\ni O O\nwant O O\nto O O\nshow O O\nto O O\nthe O O\nuser O O\nthat O O\n, O O\nthere O O\nis O O\na O O\nlist Name Name\nthey O O\ncan O O\nselect O O\nfrom O O\n, O O\n( O O\nsome O O\nof O O\nmy O O\ncolumns Name Name\nhave O O\nonly O O\none O O\nvalue O O\n, O O\nand O O\nis O O\nnot O O\neditable O O\n) O O\n, O O\nso O O\ni O O\nopened O O\npersistent Name Name\neditor Name Name\n, O O\nbut O O\nit O O\n's O O\ntoo O O\nslow O O\nif O O\nthere O O\nare O O\ntoo O O\nmany O O\nrows Name Name\n. O O\n\nso O O\ni O O\nturned O O\nto O O\nreimplementing O O\nthe O O\nmousePressEvent Name Name\nand O O\nshow O O\nthe O O\ncombobox Name Name\nwhen O O\nuser O O\nright O O\nclick O O\non O O\nthe O O\ncell Name Name\n, O O\nbut O O\nwithout O O\nany O O\nvisual O O\ncue O O\nto O O\ntell O O\nthem O O\nwhich O O\ncell Name Name\ncan O O\nbe O O\nright O O\nclicked O O\non O O\n. O O\n\n( O O\ni O O\nknow O O\nmaybe O O\ni O O\ncan O O\nchange O O\nbg O O\ncolor O O\nof O O\nthat O O\ncell Name Name\n) O O\n\nbut O O\ncan O O\ni O O\nachieve O O\nsomething O O\nlike O O\nthis O O\n? O O\n\ndrawing O O\na O O\nblack O O\ntriangle Name Name\nat O O\nthe O O\nlower O O\nright O O\ncolor O O\nof O O\nthe O O\ncell Name Name\nto O O\nindicate O O\nthat O O\nit O O\ncan O O\nbe O O\nright O O\nclicked O O\non O O\n? O O\n\nlike O O\nthis O O\nimage Name Name\nfrom O O\nexcel Name Name\n? O O\n\nYou O O\ncould O O\nuse O O\na O O\nQStyleItemDelegate Name Name\n, O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nI O O\n'm O O\ntrying O O\nto O O\nuse O O\nPOS Name Name\ntagger Name Name\nin O O\nMaven Name Name\nproject O O\n. O O\n\nI O O\ngot O O\nthis O O\nerror O O\ninfo O O\n. O O\n\nThe O O\nversion O O\nof O O\nPOS Name Name\ntagger Name Name\nis O O\n3.7.0 Name Name\n, O O\nand O O\nusing O O\neclipse Name Name\n. O O\n\nI O O\ntried O O\nto O O\nedit O O\nthe O O\npom.xml Name Name\n, O O\nbut O O\nthe O O\nversion O O\nis O O\nreally O O\nold O O\nand O O\nca O O\nn't O O\nwork O O\n.. O O\n. O O\n\nI O O\n'm O O\nwondering O O\nhow O O\nI O O\ncan O O\ncheck O O\nwhich O O\nmodules O O\nI O O\nneed O O\nto O O\nload O O\nin O O\nmy O O\nmodules O O\narray Name Name\n( O O\nconfig/modules.config.php Name Name\n) O O\n. O O\n\nThe O O\nautoloader Name Name\ndoes O O\nnot O O\nseem O O\nto O O\nload O O\nall O O\nwhich O O\nwere O O\ninstalled O O\nusing O O\ncomposer Name Name\nor O O\nsome O O\nare O O\nalready O O\nincluded O O\nin O O\nZF3 Name Name\nitself O O\nand O O\nthey O O\nconflict O O\nwhen O O\nit O O\ntries O O\nto O O\nload O O\nthem O O\nagain O O\n. O O\n\nAll O O\nmodules O O\nwhich O O\nyou O O\ninstall O O\nusing O O\ncomposer Name Name\nshould O O\nbe O O\nregistered O O\nin O O\nautoloader Name Name\n. O O\n\nBut O O\nthe O O\nproblem O O\n, O O\nthe O O\nmodules O O\nis O O\nregistered O O\nin O O\nconfig/modules.config.php Name Name\nor O O\nnot O O\n. O O\n\nIf O O\nyou O O\nuse O O\nZend Name Name\nComponent Name Name\nInstaller Name Name\n, O O\nyou O O\ndo O O\nn't O O\nneed O O\nto O O\nthink O O\nthe O O\nZend Name Name\nModules O O\nmust O O\nbe O O\nloaded O O\nin O O\nmodules.config.php Name Name\nor O O\nnot O O\n. O O\n\nBecause O O\nZend Name Name\nComponent Name Name\nInstaller Name Name\nwill O O\nprompt O O\nyou O O\nto O O\ninject O O\nthe O O\nmodule O O\nin O O\nmodules O O\nconfiguration O O\n( O O\nconfig/modules.config.php Name Name\n) O O\nor O O\nnot O O\nwhile O O\ninstall O O\nit O O\nusing O O\ncomposer Name Name\n. O O\n\nThis O O\nvery O O\nhelpful O O\nfeature O O\n. O O\n\nIt O O\nworks O O\nby O O\nread O O\nextra.zf.component Name Name\nkey O O\nin O O\ncomposer.json Name Name\nfrom O O\ninstalled O O\nmodule O O\n. O O\n\nHere O O\nis O O\nthe O O\nsample O O\nfrom O O\nZend Name Name\nForm Name Name\n. O O\n\nWhile O O\nyou O O\nadd O O\nZend Name Name\n\\\\Form Name Name\nto O O\ncomposer.json Name Name\n, O O\nthen O O\nrun O O\ncomposer Name Name\nupdate Name Name\n, O O\ncomposer Name Name\nwill O O\nprompt O O\nyou O O\nto O O\ninject O O\nthis O O\nmodule O O\nto O O\nconfig/modules.config.php Name Name\nor O O\nnot O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nuse O O\nZend Name Name\nComponent Name Name\nInstaller Name Name\n, O O\nI O O\nthink O O\nyou O O\ncan O O\ncheck O O\nextra.zf.component Name Name\nkey O O\nin O O\ncomposer.json Name Name\nfrom O O\ninstalled O O\nmodule O O\n. O O\n\nAnd O O\nadd O O\nit O O\nmanually O O\nto O O\nyour O O\nconfig/modules.config.php Name Name\n. O O\n\nFYI O O\n, O O\nif O O\nyour O O\napplication O O\nusing O O\nZend Name Name\nSkeleton Name Name\nApplication Name Name\n, O O\nit O O\nhas O O\nuse O O\nZend Name Name\nComponent Name Name\nInstaller Name Name\n. O O\n\nHttpSession Name Name\ncannot O O\nbe O O\nresolved O O\nto O O\na O O\ntype O O\nin O O\njsf Name Name\nlogout O O\n\nI O O\nwanted O O\nto O O\ncreate O O\na O O\ntwo O O\ncountdown O O\ntimer O O\nthat O O\nwill O O\nrun O O\nat O O\nthe O O\nsame O O\ntime O O\nin O O\none O O\nandroid Name Name\napplication O O\nusing O O\nchronometer Name Name\n. O O\n\nis O O\nit O O\npossible O O\n? O O\n\nif O O\nyou O O\nhave O O\nsome O O\ntutorials O O\nplease O O\ncomment O O\nit O O\nin O O\nhere O O\nI O O\nwill O O\ngladly O O\nappreciate O O\nit O O\n. O O\n\nthank O O\nyou O O\n:) O O\n\nI O O\n'm O O\ninvestigating O O\nthe O O\nuse O O\nof O O\nNodaTime Name Name\nLocalDate Name Name\nto O O\nreplace O O\nour O O\nexisting O O\nuse O O\nof O O\nof O O\nthe O O\nBCL Name Name\nDateTime/DateTimeOffset Name Name\nclasses O O\n. O O\n\nWe O O\nhave O O\nrun O O\ninto O O\na O O\nnumber O O\nof O O\ntimezone O O\nrelated O O\nissues O O\nwith O O\nour O O\ncode O O\ndue O O\nto O O\nour O O\nmisunderstanding O O\nof O O\nthe O O\narguably O O\nambiguous O O\nbehavior O O\nof O O\nDateTime Name Name\n. O O\n\nTo O O\nfully O O\nleverage O O\nNodaTime Name Name\nI O O\nwant O O\nto O O\nbe O O\nable O O\nto O O\nsend O O\nand O O\nreceive O O\ndates O O\nfrom O O\nour O O\nASP.NET Name Name\nWeb Name Name\nAPI Name Name\n2 Name Name\nweb O O\nservices O O\nof O O\nthe O O\nform O O\nYYYY-MM-DD Name Name\n. O O\n\nI O O\nhave O O\nhad O O\nsuccess O O\nin O O\nproperly O O\nserializing O O\nLocalDate Name Name\nto O O\nYYYY-MM-DD Name Name\n. O O\n\nHowever O O\nI O O\nam O O\nunable O O\nto O O\ndeserialize O O\na O O\ndate O O\nquery O O\nparameter O O\nto O O\na O O\nLocalDate Name Name\n. O O\n\nThe O O\nLocateDate Name Name\nis O O\nalways O O\n1970-01-01 Name Name\n. O O\n\nHere O O\nis O O\nmy O O\ncurrent O O\nprototype O O\ncode O O\n( O O\nsome O O\ncode O O\nremoved O O\nfor O O\nclarity O O\n) O O\n: O O\n\nPeopleController.cs Name Name\n\nGlobal.asax.cs Name Name\n\nI O O\nexecute O O\nthe O O\nweb O O\nservice O O\nvia O O\n\nHowever O O\n, O O\nwhat O O\nis O O\nreturned O O\nis O O\nJanuary Name Name\n1 Name Name\n, Name Name\n1970 Name Name\n. O O\n\nStepping O O\ninto O O\nthe O O\ncode O O\nI O O\nconfirm O O\nthat O O\nbirthday Name Name\nis O O\nset O O\nto O O\n1970-01-01 Name Name\n. O O\n\nHow O O\ncan O O\nI O O\nconfigure O O\nthe O O\nserialization O O\nsuch O O\nthat O O\nthe O O\ndate O O\nspecified O O\nin O O\nthe O O\nURL O O\nas O O\na O O\nquery O O\nparameter O O\n( O O\nor O O\npath O O\nelement O O\n) O O\ncan O O\nbe O O\nproperly O O\nserialized O O\ninto O O\na O O\nNodaTime Name Name\nLocalDate Name Name\n? O O\n\nThanks O O\nto O O\nthis O O\nvery O O\nhelpful O O\narticle O O\nfrom O O\nMicrosoft Name Name\n, O O\nI O O\nwas O O\nable O O\nto O O\nfind O O\nthe O O\nsolution O O\nusing O O\na O O\ncustom O O\nmodel Name Name\nbinder Name Name\n. O O\n\nAdd O O\nthis O O\nclass O O\nto O O\nyour O O\nproject O O\n: O O\n\nThen O O\nchange O O\nyour O O\ncontroller O O\nmethod O O\nto O O\nuse O O\nit O O\n. O O\n\nThe O O\narticle O O\nalso O O\nmentions O O\nother O O\nways O O\nto O O\nregister O O\nmodel Name Name\nbinders Name Name\n. O O\n\nNote O O\nthat O O\nsince O O\nyour O O\nmethod O O\nreturns O O\na O O\nLocalDate Name Name\n, O O\nyou O O\n'll O O\nstill O O\nneed O O\nthe O O\nNoda Name Name\nTime Name Name\nserialziation Name Name\nfor O O\nJson.net Name Name\n, O O\nas O O\nthat O O\nends O O\nup O O\ngetting O O\nused O O\nin O O\nthe O O\nbody O O\nfor O O\nthe O O\nreturn O O\nvalue O O\n. O O\n\nI O O\nhave O O\na O O\nUITableView Name Name\nthat O O\nis O O\nnever O O\nconsistent O O\n. O O\n\nThis O O\ntable Name Name\nview Name Name\nhas O O\n2 O O\nsections O O\n. O O\n\nI O O\nhave O O\ncreated O O\n2 O O\nUIButtons Name Name\n, O O\nthey O O\nboth O O\nare O O\npractically O O\nthe O O\nsame O O\nimage Name Name\n, O O\nbut O O\none O O\nis O O\ngrey Name Name\nand O O\none O O\nis O O\nred Name Name\n. O O\n\nEvery O O\nrow O O\nin O O\nthe O O\nUITableView Name Name\nis O O\nsupposed O O\nto O O\nhave O O\nthe O O\ngrey Name Name\nbutton Name Name\nwhen O O\nthe O O\nUITableView Name Name\nfirst O O\nloads O O\n, O O\nand O O\nthen O O\nif O O\na O O\nuser O O\ntaps O O\na O O\nbutton Name Name\nthen O O\nit O O\nswitches O O\nto O O\nthe O O\nred Name Name\nversion O O\nof O O\nthe O O\nbutton Name Name\n. O O\n\nFor O O\nsome O O\nreason O O\n, O O\nabout O O\n80% O O\nof O O\nthe O O\ntime O O\nwhen O O\nI O O\nload O O\nthe O O\nview O O\ncontroller O O\nwith O O\nthis O O\nUITableView Name Name\non O O\nmy O O\niPhone Name Name\n, O O\nthe O O\nfirst O O\n2 O O\nrows Name Name\nin O O\nthe O O\nfirst O O\nsection O O\nwill O O\nnot O O\nhave O O\na O O\nbutton Name Name\n. O O\n\nWhat O O\n's O O\nweird O O\nis O O\nif O O\nI O O\ntap O O\nmy O O\nfinger O O\nwhere O O\nthe O O\nbutton Name Name\nis O O\nsupposed O O\nto O O\nbe O O\n2 O O\nthings O O\nhappen O O\n: O O\n\nThe O O\nfunctionality O O\nattached O O\nto O O\nthe O O\nbutton Name Name\nworks O O\nand O O\nNSLogs Name Name\nin O O\nthe O O\nconsole Name Name\nin O O\nxcode Name Name\n. O O\n\nThe O O\nred O O\nbutton Name Name\nappears O O\n. O O\n\nSo O O\nit O O\n's O O\nlike O O\nthe O O\ngrey Name Name\nbutton Name Name\nis O O\nthere O O\n, O O\nit O O\n's O O\njust O O\ninvisible O O\n. O O\n\nThis O O\ndoes O O\nn't O O\nwork O O\nbecause O O\nif O O\na O O\nuser O O\nsees O O\n2 O O\nrows Name Name\nwithout O O\na O O\nbutton Name Name\nthey O O\nare O O\ngoing O O\nto O O\nthink O O\nsomething O O\nis O O\nbroken O O\nor O O\nthat O O\nthey O O\nca O O\nn't O O\ntap O O\non O O\nthat O O\nrow Name Name\n. O O\n\nAlso O O\n, O O\nif O O\nI O O\nscroll O O\nto O O\nthe O O\nvery O O\nbottom O O\nof O O\nmy O O\nUITableView Name Name\n, O O\nand O O\nthen O O\nscroll O O\nback O O\nup O O\nagain O O\n, O O\nthe O O\ninvisible O O\ngrey Name Name\nbuttons Name Name\nwill O O\nmagically O O\nappear O O\nlike O O\nthey O O\nwere O O\nthere O O\nthe O O\nwhole O O\ntime O O\n. O O\n\nHere O O\nare O O\nthe O O\nfirst O O\n3 O O\nmethod O O\nimplementations O O\nthat O O\nare O O\ninvolved O O\nin O O\ncreating O O\nmy O O\nUITableView Name Name\n: O O\n\nAnd O O\nthen O O\nhere O O\nis O O\nmy O O\ncellForRowAtIndexPath Name Name\nmethod O O\nimplementation O O\nwhich O O\ndoes O O\nmost O O\nof O O\nthe O O\nwork O O\nin O O\ncreating O O\nthe O O\nUITableView Name Name\nand O O\nwhich O O\nactually O O\ncreates O O\nthe O O\nUIButton Name Name\nsettings O O\nfor O O\neach O O\nrow Name Name\n. O O\n\nThe O O\nif Name Name\nelse Name O\nstatement O O\nreally O O\nhas O O\n2 O O\nsets O O\nof O O\nnearly O O\nidentical O O\ncode O O\n, O O\nthe O O\nonly O O\ndifference O O\nis O O\none O O\nis O O\nfor O O\nsection O O\n1 O O\nof O O\nthe O O\ntable Name Name\nview Name Name\nand O O\nthe O O\nother O O\nis O O\nfor O O\nsection O O\n2 O O\n: O O\n\nI O O\nhave O O\nnot O O\nincluded O O\nthe O O\nfull O O\nmethod O O\nimplementations O O\nthat O O\nthese O O\n2 O O\nstatements O O\ntrigger O O\nbecause O O\nthey O O\nonly O O\nhandle O O\nthe O O\nfunctionality O O\nattached O O\nto O O\neach O O\nbutton Name Name\n, O O\nand O O\nmost O O\nlikely O O\nhave O O\nnothing O O\nto O O\ndo O O\nwith O O\nthis O O\nissue O O\n, O O\nbut O O\nI O O\nwill O O\npost O O\nthem O O\nhere O O\nanyways O O\n. O O\n\nThese O O\n2 O O\nstatements O O\ncan O O\nbe O O\nfound O O\nin O O\nthe O O\nif Name Name\nelse Name Name\nfor O O\ncellForRowAtIndexPath Name Name\nand O O\nhandle O O\nthe O O\ntouch O O\nevents O O\nfor O O\nthe O O\n2 O O\nsections O O\nof O O\nthe O O\ntable Name Name\nview Name Name\n: O O\n\nI O O\nsee O O\nthe O O\npattern O O\nof O O\ntrying O O\nto O O\nset O O\nup O O\na O O\ncustom O O\nUITableViewCell Name Name\nfrom O O\nwithin O O\ntableView:cellForRowAtIndexPath Name Name\n: Name Name\nquite O O\na O O\nlot O O\n. O O\n\nThe O O\ntrouble O O\nis O O\nthat O O\nI O O\nbelieve O O\nit O O\nto O O\nbe O O\nthe O O\nwrong O O\nplace O O\nto O O\ndo O O\nit O O\n. O O\n\nIf O O\nyou O O\n're O O\nreally O O\nonly O O\nusing O O\na O O\nbuilt-in O O\nUITableViewCell Name Name\n, O O\nthen O O\nit O O\n's O O\nthe O O\nright O O\nplace O O\n; O O\nfor O O\ncustom O O\ncells Name Name\n, O O\nit O O\n's O O\nnot O O\n. O O\n\nI O O\n'd O O\nrecommend O O\nmaking O O\na O O\nUITableViewCell Name Name\nsubclass O O\nwith O O\na O O\n\" O O\nsetup Name Name\n\" O O\nmethod O O\nthat O O\ntakes O O\nan O O\nobject O O\nand O O\nuses O O\nthat O O\nobject O O\nto O O\nset O O\nup O O\nthe O O\ncell Name Name\n's O O\nUI O O\n. O O\n\nFor O O\ninstance O O\n, O O\ntake O O\nsection O O\n0 O O\nfrom O O\nyour O O\nUITableView Name Name\n. O O\n\nI O O\n'd O O\ndo O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nThis O O\nway O O\n, O O\nyou O O\ncan O O\nset O O\nup O O\nthe O O\ncell Name Name\n's O O\nlayout O O\nas O O\nwell O O\nas O O\nimages Name Name\nfor O O\nthe O O\nbutton Name Name\nin O O\nIB Name Name\n, O O\nrather O O\nthan O O\ncode O O\n. O O\n\nThis O O\nalso O O\nmakes O O\nthe O O\ncode O O\na O O\nlot O O\neasier O O\nto O O\nread O O\n( O O\nand O O\nre-read O O\n6 O O\nmonths O O\nlater O O\n! O O\n) O O\n. O O\n\nAlso O O\n, O O\nunless O O\nthe O O\n2 O O\ncells Name Name\n( O O\nsection O O\n0 O O\nand O O\nsection O O\n1) O O\nare O O\nreally O O\ninterchangeable O O\n, O O\nI O O\n'd O O\nrecommend O O\ntwo O O\ndifferent O O\nsubclasses O O\nof O O\nUITableViewCell Name Name\nto O O\ngive O O\nyou O O\ngreater O O\ncontrol O O\n, O O\nrather O O\nthan O O\ntrying O O\nto O O\nforce O O\none O O\nto O O\nact O O\nlike O O\nthe O O\nother O O\nor O O\nvice O O\nversa O O\n. O O\n\nThen O O\n, O O\nyou O O\nsimply O O\nassign O O\ndifferent O O\nidentifiers O O\nand O O\nrecycle O O\nthe O O\nappropriate O O\ntype O O\n. O O\n\nI O O\nimplemented O O\ndeep O O\nlink O O\nin O O\nmy O O\nandroid Name Name\napp O O\n. O O\n\nWhenever O O\nI O O\nclicked O O\nthe O O\nshare O O\nlink O O\nits O O\nopen O O\nmy O O\napp O O\nperfectly O O\n. O O\n\nMy O O\nproblem O O\nis O O\ncopy O O\nthe O O\nshare O O\nlink O O\nand O O\npaste O O\nthe O O\nchrome Name Name\nbrowser Name Name\nit O O\ndoes O O\nn't O O\nopen O O\nmy O O\napp O O\n. O O\n\nSorry O O\nfor O O\nmy O O\nbad O O\nenglish O O\n. O O\n\nYou O O\nneed O O\nto O O\nactually O O\nclick O O\non O O\na O O\nlink O O\npointing O O\nto O O\nthat O O\nURL O O\nto O O\ntrigger O O\nthe O O\ndeep-link O O\nIntent Name Name\n, O O\nwriting O O\nthe O O\nURL O O\nmanually O O\ndoes O O\nn't O O\ntrigger O O\nit O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nturn O O\na O O\nlist Name Name\nlike O O\nthis O O\n\ninto O O\na O O\nlist Name Name\nof O O\ntuples Name Name\nrepresenting O O\nconsecutive O O\nranges O O\nlike O O\nthis O O\n: O O\n\nIs O O\nthere O O\na O O\ncompact O O\nway O O\nto O O\ndo O O\nthis O O\nin O O\nHaskell Name Name\n? O O\n\nThis O O\nseems O O\npretty O O\ncompact O O\n: O O\n\nSure O O\n: O O\n\nI O O\nam O O\nwondering O O\nif O O\nthis O O\nis O O\npossible O O\nand O O\nmaybe O O\nsome O O\ncode O O\nexamples O O\nif O O\nit O O\nis O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nhave O O\nthe O O\npresenter O O\nduring O O\na O O\nlive O O\naddress O O\nbe O O\nable O O\nto O O\nhit O O\na O O\nbutton Name Name\nwhen O O\nhe O O\nis O O\naway O O\n. O O\n\nThis O O\nbutton Name Name\nwill O O\nthen O O\ntrigger O O\na O O\njpg Name Name\nor O O\nsome O O\nkind O O\nof O O\nimage Name Name\non O O\nthe O O\nclients Name Name\nside O O\nthat O O\nsays O O\nhe O O\nis O O\ncurrently O O\naway O O\nand O O\nto O O\nalso O O\nhave O O\nit O O\nmute O O\nthe O O\npresenter O O\n's O O\nmicrophone Name Name\n? O O\n\nAnyone O O\nhave O O\nany O O\nideas O O\nhow O O\nthis O O\nwould O O\nbe O O\npossible O O\nin O O\nFMIS Name Name\n4 Name Name\nand O O\nAS3 Name Name\n? O O\n\nYes O O\n, O O\nthis O O\nis O O\ndo-able O O\n. O O\n\nThere O O\n's O O\na O O\nbit O O\nof O O\ncode O O\nto O O\nwrite O O\n. O O\n\nHere O O\n's O O\na O O\nbreak O O\ndown O O\n: O O\n\nClient Name Name\nfor O O\npresenter O O\nmakes O O\na O O\nNetConnection Name Name\nand O O\nthen O O\npublishes O O\na O O\nNetStream Name Name\nto O O\nFMS Name Name\n. O O\n\nWhen O O\npresenter O O\nhits O O\naway O O\nbutton Name Name\n: O O\n\nPresenter O O\n's O O\nclient Name Name\nsets O O\nmicrophone Name Name\ngain O O\nto O O\n0 Name Name\n\nPresenter O O\n's O O\nclient Name Name\nuses O O\nNetStream.send() Name Name\nto O O\nsend O O\na O O\nmessage O O\nto O O\nall O O\nsubscribing O O\nclients Name Name\n. O O\n\nThe O O\nmessage O O\nis O O\nbasically O O\nthe O O\nname O O\nof O O\na O O\nfunction O O\nand O O\nsome O O\narguments O O\nthat O O\nall O O\nsubscribing O O\nclients Name Name\nshould O O\nexecute O O\n. O O\n\nIn O O\nthis O O\ncase O O\n, O O\nthe O O\nfunction O O\nwould O O\ndisplay/hide O O\nthe O O\n\" O O\naway O O\n\" O O\nimage Name Name\n. O O\n\nthen O O\ndo O O\nthe O O\nreverse O O\nwhen O O\nthe O O\npresenter O O\nreturns O O\n\n[ O O\nEdit O O\n] O O\n\nAdding O O\nsome O O\ncode O O\nto O O\nclarify O O\nhow O O\nto O O\nuse O O\nNetStream.send() Name Name\n: O O\n\nThe O O\npresenter O O\ncode O O\n: O O\n\nThe O O\nsubscriber O O\ncode O O\n\nWhen O O\ncreating O O\nthe O O\nNetStream Name Name\n, O O\nuse O O\nthe O O\nclient Name Name\nproperty O O\nso O O\nit O O\nknows O O\nwhere O O\nto O O\nfind O O\nthe O O\nfunction O O\n\" O O\ntoggleAwayImageDisplay Name Name\n\" O O\nwe O O\nspecified O O\nabove O O\n: O O\n\nI O O\nhave O O\njoomla Name Name\n2.5 Name Name\nwhich O O\nlog O O\nmany O O\ndeprecated O O\nwarnings O O\nlike O O\nError::raiseNotice() O O\nis O O\ndeprecated O O\n. O O\n\nSo O O\nI O O\nresult O O\nwidth O O\na O O\nbig O O\nlog Name Name\nfile O O\n. O O\n\nCan O O\nI O O\nturn O O\noff O O\nthis O O\noption O O\n, O O\nand O O\nlog O O\njust O O\nmy O O\nown O O\nexceptions Name Name\n? O O\n\nYou O O\ncan O O\nalways O O\nplace O O\nan O O\nerror O O\nreporting O O\ncondition O O\nin O O\nyour O O\nindex.php Name Name\nlike O O\n: O O\n\nerror_reporting Name Name\n( Name Name\nE_ALL Name Name\n^ Name Name\nE_DEPRECATED Name Name\n) Name Name\n; Name Name\n\nFor O O\nmore O O\ninfo O O\n: O O\nhttp://php.net/manual/en/function.error-reporting.php O O\n\nOr O O\nyou O O\ncan O O\nedit O O\nerror.php Name Name\nin O O\nyour O O\njoomla Name Name\ndirectory O O\n, O O\nand O O\n\ndisable O O\nthis O O\nfunction O O\nto O O\nraise O O\ndeprecated O O\nwarnings O O\n.. O O\n. O O\n\nHere O O\nis O O\nthe O O\nstructure O O\nof O O\nmy O O\ndatabase O O\n: O O\n\ni O O\nhave O O\ntextbox1 Name Name\nand O O\ntextbox2 Name Name\nand O O\n8 O O\ncheckboxes Name Name\nin O O\nmy O O\nASP.NET Name Name\n( O O\nVB.NET Name Name\n) O O\nwebform O O\n. O O\n\ni O O\nwant O O\nto O O\nretrieve O O\nthe O O\nseats O O\non O O\nthe O O\nparticular O O\ndates O O\nmeans O O\nif O O\ni O O\nenter O O\n11/12/2010 Name Name\nin O O\ntextbox1 Name Name\nthen O O\nin O O\ntextbox2 Name Name\nthe O O\noutput O O\nwould O O\nbe O O\nfrom O O\nseat_select Name Name\ncolumn Name Name\n, O O\nlet O O\nsay O O\n( Name Name\n1 Name Name\n, Name Name\n2 Name Name\n, Name Name\n3) Name Name\nwhere O O\ndate O O\nwould O O\nbe O O\n11/12/2010 Name Name\n\nIf O O\ni O O\nenter O O\n13/12/2010 Name Name\nin O O\ntextbox1 Name Name\nthen O O\nin O O\ntextbox2 Name Name\nthe O O\noutput O O\nwould O O\nbe O O\n1 Name Name\n, Name Name\n2 Name Name\n\nHow O O\nto O O\ndo O O\nthis O O\nin O O\nVB.NET Name Name\n? O O\n\nMarkup O O\n: O O\n\nCode-behind O O\n( O O\nC# Name Name\n) O O\n- O O\nformatting O O\non O O\npresentation O O\nlayer O O\n: O O\n\nDo O O\nn't O O\nforget O O\nto O O\nadd O O\nthe O O\nreference O O\nto O O\nSystem.Data.DataSetExtensions.dll Name Name\n, O O\nSystem.Core.dll Name Name\n. O O\n\nCode-behind O O\n( O O\nC# Name Name\n) O O\n- O O\nformatting O O\non O O\ndata O O\nlayer O O\n: O O\n\nyou O O\ncan O O\nuse O O\nthe O O\nfollowing O O\nquery O O\nto O O\nreturn O O\nyou O O\na O O\ncomma O O\nseparate O O\nlist Name Name\nof O O\nseat_select Name Name\nand O O\nthen O O\nuse O O\nlinq Name Name\nto O O\ndo O O\na O O\ndistinct O O\non O O\nthe O O\nreturned O O\ndata O O\n. O O\n\nIn O O\nmy O O\napp O O\n, O O\nI O O\nwant O O\nto O O\nget O O\nsurvey O O\nanswers O O\nfrom O O\nthe O O\nuser O O\n. O O\n\nSo O O\n, O O\nI O O\n've O O\ndecided O O\nput O O\nsmiley O O\nimages Name Name\nto O O\nact O O\nas O O\na O O\nradio Name Name\nbuttons Name Name\n. O O\n\nIs O O\nit O O\npossible O O\non O O\nandroid Name Name\n? O O\n\nFor O O\nexample O O\n, O O\nI O O\nwill O O\nshow O O\nsmiley O O\nimages Name Name\nwhen O O\nuser O O\ntouches O O\nthe O O\nimage Name Name\nand O O\nit O O\nwill O O\nbe O O\nactivated O O\nlike O O\na O O\nradio Name Name\nbutton Name Name\n. O O\n\nAt O O\na O O\ntime O O\n, O O\nthey O O\nwill O O\nbe O O\nallowed O O\nto O O\nonly O O\nchoose O O\none O O\n. O O\n\nIf O O\nanyone O O\ncould O O\nguide O O\nme O O\n, O O\nI O O\nwould O O\nappreciate O O\nit O O\n. O O\n\nExample O O\n: O O\n\nThanks O O\nin O O\nadvance O O\n! O O\n\nThis O O\nquestion O O\nhas O O\nbeen O O\nanswered O O\nbefore O O\nBelow O O\nis O O\nfrom O O\n@Benito O O\n-Bertoli O O\n\nRadioButton Name Name\n- O O\nhow O O\nto O O\nuse O O\na O O\ncustom O O\ndrawable Name Name\n? O O\n\nGive O O\nyour O O\nradiobutton Name Name\na O O\ncustom O O\nstyle Name Name\n: O O\n\ncustom_btn_radio.xml Name Name\n\nReplace O O\nthe O O\ndrawables Name Name\nwith O O\nyour O O\nown O O\n. O O\n\nI O O\nmight O O\nbe O O\na O O\nbit O O\nlate O O\n. O O\n\nUse O O\nandroid:button Name Name\n\" Name Name\n@btmImage Name Name\nlink Name Name\n\" Name Name\n\nI O O\nwant O O\nto O O\nadd O O\na O O\ncustom O O\nVF Name Name\ncomponent O O\nto O O\ndisplay O O\nthe O O\nbatch Name Name\njob Name Name\ndetails O O\nin O O\na O O\npageblock Name Name\ntable Name Name\n. O O\n\nHowever O O\nmy O O\ncomponent O O\naint O O\nsaving O O\n, O O\nit O O\nsays O O\n: O O\nError O O\nError O O\n: O O\nRead O O\nonly O O\nproperty O O\n' O O\nc:batchDetailsComponent.BatchJobDetails O O\n' O O\n\nPlease O O\nhelp O O\n. O O\n\nThis O O\nis O O\nthe O O\nvisualforce Name Name\ncomponent O O\n: O O\n\nVF Name Name\nPage O O\n: O O\n\nController O O\n: O O\n\nYou O O\nneed O O\nto O O\nset O O\nthe O O\naccess Name Name\nfor O O\nyour O O\ncomponent O O\nto O O\nglobal Name Name\n. O O\n\nLike O O\nthis O O\n: O O\n<apex:component Name Name\naccess=\"global\" Name Name\ncontroller=\"BatchOpportunityDetailsExtension\"> Name Name\n\nI O O\nam O O\ntrying O O\nto O O\nintegrate O O\nHadoop Name Name\nand O O\nMongo Name Name\n. O O\n\nI O O\ndownloaded O O\nthe O O\nmongo-hadoop Name Name\nfiles O O\nfrom O O\ngit Name Name\nand O O\ntrying O O\nto O O\nbuilt O O\njar Name Name\nfiles O O\nby O O\nusing O O\nbelow O O\n. O O\n\nBut O O\ni O O\n'm O O\ngetting O O\nbelow O O\nerror O O\n\ncan O O\nanyone O O\ntell O O\nhow O O\nto O O\nfix O O\nthis O O\nissue O O\n\nAre O O\nyou O O\nsure O O\nthat O O\nhave O O\nnetwork O O\nconnection O O\n? O O\n\nTry O O\nthis O O\nin O O\nconsole Name Name\nfor O O\ncheck O O\nif O O\nnetwork O O\nis O O\nOK O O\n: O O\n\n$ Name Name\nwget Name Name\nhttps://repo1.maven.org/maven2/org/apache/commons/commons-math3/3.4.1/commons-math3-3.4.1.jar Name Name\n\nMy O O\nfirewall Name Name\nwas O O\nblocking O O\nthe O O\nconnection O O\n. O O\n\nSo O O\ni O O\ndisabled O O\nthe O O\nfirewall Name Name\nand O O\nrestarted O O\nthe O O\nVM Name Name\n. O O\n\nNow O O\nit O O\n's O O\nworking O O\nperfectly O O\n\nI O O\nremoved O O\nLaravel Name Name\n's O O\nscaffolding O O\nwith O O\nthe O O\ncommand O O\nphp Name Name\nartisan Name Name\nfresh Name Name\n. O O\n\nI O O\nread O O\nthe O O\nAuth O O\nmiddleware Name Name\ndocumentation O O\n, O O\nbut O O\nit O O\ndid O O\nn't O O\ntalk O O\nabout O O\na O O\nspecific O O\nfeature O O\n, O O\nthe O O\npassword-reset Name Name\n. O O\n\nIt O O\nonly O O\nexplains O O\nits O O\nuse O O\nwith O O\nthe O O\nscaffolding O O\n, O O\nbut O O\nnot O O\nif O O\nI O O\nremoved O O\nit O O\n. O O\n\nThere O O\nis O O\nchapter O O\n\" O O\nManuel O O\nauthentication O O\n\" O O\nfor O O\ncommon O O\nauthentication O O\nmethods O O\n, O O\nsuch O O\nas O O\n\" O O\ndetermining O O\nif O O\na O O\nuser O O\nis O O\nauthenticated O O\n\" O O\n, O O\nbut O O\nnothing O O\nabout O O\npassword-reset Name Name\n. O O\n\nOther O O\npoint O O\n, O O\ndoes O O\nthis O O\nmiddleware Name Name\nneed O O\nspecific O O\nrows Name Name\nin O O\nthe O O\nDB O O\ntables Name Name\nI O O\ncreated O O\nwith O O\nmigrations O O\n? O O\n\nEspecially O O\n\" O O\nusers Name Name\n\" O O\nand O O\n\" O O\npassword_resets Name Name\n\" O O\ntables Name Name\nconfigured O O\nin O O\nthe O O\napp Name Name\n\\config\\auth.php Name Name\nfile O O\n. O O\n\nThis O O\nproblem O O\nmay O O\nseem O O\nsimple O O\n, O O\nbut O O\nI O O\ndid O O\nn't O O\nfind O O\nany O O\nclue O O\nin O O\nthe O O\ndocumentation O O\n. O O\n\nThanks O O\nfor O O\nhelp O O\n! O O\n\nI O O\nseem O O\nto O O\nbe O O\nhaving O O\nan O O\nissue O O\nwhen O O\nupdating O O\nrecords O O\non O O\na O O\nspecific O O\ntable Name Name\n. O O\n\nFor O O\nreference O O\nhere O O\nis O O\nan O O\nexample O O\nof O O\nthe O O\nquery O O\nthat O O\nthrows O O\nan O O\nerror O O\n: O O\n\nI O O\nam O O\nable O O\nto O O\ninsert O O\n, O O\ndelete O O\nand O O\nquery O O\nrows Name Name\n, O O\nas O O\nwell O O\nas O O\nupdate O O\nother O O\ncolumns Name Name\nhowever O O\nwhenever O O\ntrying O O\nto O O\nupdate O O\nthe O O\nCustomerID Name Name\nfield O O\n( O O\nint Name Name\n, O O\nnon-null Name Name\n) O O\nit O O\nthrows O O\nan O O\nerror O O\nsaying O O\n: O O\n\nI O O\nhave O O\nall O O\nrights O O\nto O O\nboth O O\nthe O O\ndatabase O O\nand O O\ntable Name Name\nhowever O O\nwhile O O\ntrying O O\nto O O\nupdate O O\nthe O O\nCustomerID Name Name\ncolumn Name Name\non O O\nany O O\nrows Name Name\n, O O\never O O\nwhen O O\nRevision Name Name\nis O O\nn't O O\neven O O\nin O O\nthe O O\nquery O O\nI O O\nget O O\nthe O O\nsame O O\nerror O O\n. O O\n\nI O O\nlooked O O\naround O O\na O O\ngreat O O\ndeal O O\ninto O O\nthe O O\nissue O O\nusing O O\na O O\nregex O O\nin O O\nmy O O\nphp Name Name\ncode O O\nto O O\nremove O O\nall O O\nnon-printable O O\ncharacters O O\nhowever O O\neven O O\nwhen O O\nrunning O O\nthe O O\nquery O O\nfrom O O\nphpMyAdmin Name Name\nthe O O\nsame O O\nerror O O\nis O O\nthrown O O\n. O O\n\nIf O O\nanyone O O\nhas O O\ninsight O O\ninto O O\nthis O O\nerror O O\nit O O\nwould O O\nbe O O\ngreatly O O\nappreciated O O\n. O O\n\nTable Name Name\ndescription O O\n: O O\n\nYou O O\nmay O O\npossibly O O\nencounter O O\nthis O O\nif O O\nyou O O\nhave O O\nan O O\nupdate O O\ntrigger O O\nfiring O O\noff O O\nwhich O O\nis O O\nreferencing O O\na O O\ncolumn Name Name\nthat O O\ndoes O O\nnot O O\nexist O O\n. O O\n\nMay O O\nbe O O\nthe O O\noffending O O\ntrigger O O\nis O O\nnot O O\neven O O\ntrying O O\nto O O\nread/write O O\nto O O\nthis O O\ntable Name Name\n! O O\n\nAs O O\nsuch O O\n, O O\nthat O O\ncolumn Name Name\nmay O O\nnot O O\nexist O O\nwhere O O\nit O O\nis O O\ntrying O O\nto O O\nreference O O\nit O O\n. O O\n\nFurther O O\n, O O\nyou O O\ncould O O\nkick O O\noff O O\na O O\ncascade O O\nof O O\nsuch O O\ntriggers O O\n, O O\nand O O\nhave O O\nthis O O\nburied O O\nmore O O\nthan O O\none O O\nlayer O O\ndeep O O\n. O O\n\nTo O O\nshow O O\ntriggers O O\n: O O\n\nhttp://dev.mysql.com/doc/refman/5.7/en/show-triggers.html O O\n\nTo O O\nmodify O O\nthem O O\n: O O\n\nhttp://dev.mysql.com/doc/refman/5.7/en/trigger-syntax.html O O\n\nUITableViewStyleGrouped Name Name\ndoes O O\nnot O O\nhave O O\nrounded O O\ncorners O O\nlike O O\nin O O\niOS Name Name\nversions O O\n<= O O\n6 Name Name\n. O O\n\nIs O O\nanyone O O\nhaving O O\nsame O O\nproblem O O\nin O O\niOS Name Name\n7 Name Name\n? O O\n\nMy O O\nUITableView Name Name\nis O O\nall O O\nwritten O O\nin O O\ncode O O\nas O O\nit O O\nis O O\ncomplex O O\n. O O\n\nI O O\nhave O O\nhad O O\na O O\nlook O O\nat O O\nall O O\nthe O O\nchanges O O\nand O O\nguidelines O O\nand O O\nI O O\ncannot O O\nsee O O\nany O O\nmention O O\nof O O\nchange O O\nto O O\nthe O O\ncell Name Name\nappearance O O\n. O O\n\nWhere O O\ndid O O\nthe O O\ncorners O O\ngo O O\n? O O\n\niOS Name Name\n7 Name Name\nis O O\nBorderless O O\n. O O\n\nRounded O O\ncorners O O\nare O O\nno O O\nlonger O O\navailable O O\nin O O\niOS Name Name\n7 Name Name\n. O O\n\nApple Name Name\nremoved O O\nthis O O\nfeature O O\n. O O\n\nI O O\nam O O\ncurrently O O\nworking O O\nwith O O\niOS Name Name\n7 Name Name\nand O O\nhad O O\na O O\ndiscussion O O\nwith O O\napple Name Name\nsupport O O\nguys O O\n. O O\n\nThey O O\nconfirmed O O\nthat O O\nthis O O\nis O O\nno O O\nmore O O\nsupported O O\n. O O\n\nYou O O\ncan O O\nsee O O\nthe O O\nSettings Name Name\napp O O\nfor O O\nan O O\nexample O O\n— O O\nthe O O\ntable Name Name\nview O O\nthere O O\nis O O\ngroup O O\nstyle O O\n. O O\n\nNow O O\nthis O O\nis O O\nexample O O\nlist Name Name\n: O O\n\nWhat O O\ni O O\nwant O O\nis O O\ngetting O O\nthe O O\nlist Name Name\ncount O O\nat O O\nthis O O\nmain O O\nlist Name Name\n( O O\ndblWordFreqByCluster Name Name\n) O O\n. O O\n\nWhich O O\nmeans O O\ngetting O O\ncount O O\nof O O\nList Name Name\n<KeyValuePair<string, Name Name\ndouble>> Name Name\nlists Name Name\n. O O\n\nI O O\ncan O O\ncount O O\nthem O O\nvia O O\nmaking O O\nforeach Name Name\niteration O O\nwhich O O\ni O O\ndo O O\nn't O O\nwant O O\nto O O\nbecause O O\ni O O\nsuppose O O\nthat O O\nwould O O\ncause O O\nunnecessary O O\nperformance O O\nloss O O\n. O O\n\nUsing O O\nLINQ Name Name\nyou O O\ncould O O\ndo O O\n\nHowever O O\n, O O\nthat O O\nis O O\nn't O O\nmuch O O\ndifferent O O\nthan O O\nusing O O\na O O\nforeach Name Name\nloop O O\n, O O\nbut O O\nit O O\nwould O O\nbe O O\nless O O\nverbose O O\nand O O\njust O O\nas O O\neasy O O\nto O O\nread O O\n. O O\n\nA O O\nsimple O O\n: O O\n\nShould O O\nwork O O\n.. O O\n. O O\n\nEdited O O\n: O O\nI O O\nthought O O\nit O O\nwas O O\njava Name Name\n;) O O\n\nI O O\n'm O O\ntrying O O\nto O O\nadd O O\nthe O O\nability O O\nto O O\ncomplete O O\na O O\ntodo O O\nitem O O\nby O O\npatching O O\nin O O\n:complete Name Name\nmethod O O\n. O O\n\nIs O O\nit O O\npossible O O\nto O O\nuse O O\na O O\ncheckbox Name Name\nfor O O\nthis O O\nrather O O\nthan O O\nthe O O\nlink_to Name Name\nI O O\nhave O O\nbelow O O\n? O O\n\nI O O\nwould O O\nvery O O\nmuch O O\nlike O O\na O O\ncheckbox Name Name\nso O O\nit O O\nfeels O O\nlike O O\nthe O O\ntask O O\nis O O\nticked O O\noff O O\n. O O\n\nMy O O\nView O O\n\nMy O O\nController O O\n\nMy O O\nResources O O\n\nEDIT O O\n: O O\n\nI O O\nhave O O\ngone O O\nabout O O\nthis O O\nanother O O\nway O O\nbut O O\nnow O O\nface O O\na O O\ndifferent O O\nproblem O O\n.. O O\n. O O\n\nI O O\nhave O O\nmigrated O O\na O O\n:completed Name Name\nboolean Name Name\n, O O\nI O O\nthen O O\nadded O O\nit O O\nto O O\nmy O O\nform Name Name\nlike O O\nso O O\n( O O\nsimple_form Name Name\n) O O\n\nThis O O\nallows O O\nme O O\nto O O\nupdate O O\ncompleted O O\n, O O\nnot O O\ncompleted O O\n. O O\n\nBut O O\nhow O O\ndo O O\nI O O\nget O O\nthis O O\nto O O\nshow O O\nin O O\nmy O O\nview O O\n? O O\n\nI O O\ndo O O\nn't O O\nwant O O\nto O O\nhave O O\nto O O\nclick O O\ninto O O\neach O O\ntodo(edit) O O\nI O O\nwant O O\nto O O\ndo O O\nit O O\nfrom O O\nthe O O\nindex O O\nbut O O\nnot O O\nsure O O\nhow O O\nto O O\ngo O O\nabout O O\nthis O O\n? O O\n\nFrom O O\na O O\nRESTful Name Name\nstandpoint O O\nthere O O\nis O O\nno O O\nneed O O\nfor O O\nan O O\nadditional O O\nroute O O\nhere O O\n. O O\n\nInstead O O\nyour O O\nwould O O\nsimply O O\nsend O O\na O O\nPATCH Name Name\nrequest O O\nto O O\nthe O O\nnormal O O\nmember O O\nroute O O\n: O O\n\nAlso O O\nyou O O\nwant O O\nto O O\ndo O O\nit O O\nlike O O\na O O\nreal O O\nrockstar O O\nyou O O\nmight O O\nwant O O\nto O O\nuse O O\na O O\nenum Name Name\ninstead O O\nof O O\na O O\nboolean Name Name\n: O O\n\nThis O O\nlets O O\nyou O O\nsetup O O\nmany O O\nstates O O\nwithout O O\ncreating O O\nseveral O O\nboolean Name Name\ncolumns Name Name\nand O O\ngives O O\nyou O O\na O O\nbunch O O\nof O O\nfunctionality O O\nalmost O O\nfor O O\nfree O O\n. O O\n\nTo O O\nset O O\nthis O O\nup O O\non O O\nthe O O\nview O O\nside O O\nyou O O\ncould O O\nsimply O O\ncreate O O\na O O\nform Name Name\nfor O O\neach O O\nelement O O\n: O O\n\nWe O O\ncould O O\nuse O O\na O O\nclassical O O\nsubmit O O\nbutton Name Name\nhere O O\nbut O O\nto O O\ngive O O\na O O\ngood O O\nUX O O\nwe O O\nwant O O\nto O O\nuse O O\najax Name Name\n. O O\n\nHaving O O\na O O\nform Name Name\nelement O O\ngives O O\nus O O\nthe O O\nperfect O O\nfoundation O O\nsince O O\nwe O O\ncan O O\nsimply O O\nenhance O O\nits O O\nbehavior O O\n: O O\n\nI O O\nhave O O\na O O\nlarge O O\nfile O O\nof O O\nmeasurements O O\nwith O O\n3-second O O\nperiod O O\n( O O\nhere O O\nis O O\na O O\nsmall O O\npart O O\nof O O\nit O O\n) O O\n. O O\n\nI O O\nmade O O\ntime O O\nserie O O\n: O O\n\nOn O O\nthe O O\nnext O O\nstep O O\nI O O\nneed O O\nconvert O O\nit O O\nto O O\nthe O O\ntime O O\nseries O O\nwith O O\n3 O O\nminutes O O\nupdate O O\ninterval O O\n, O O\nwhere O O\nvalues O O\nmust O O\nbe O O\nthe O O\naverages O O\n. O O\n\nWhat O O\nis O O\nthe O O\nsimplest O O\nway O O\nto O O\ndo O O\nthis O O\n? O O\n\nYou O O\ncan O O\nuse O O\nthe O O\nperiod.apply Name Name\nfrom O O\nthe O O\nxts Name Name\npackage O O\n\nThe O O\nsecond O O\nargument O O\nto O O\nperiod.apply Name Name\nis O O\na O O\nvector Name Name\nof O O\nthe O O\nrow Name Name\nnumbers O O\nof O O\nthe O O\nend O O\nof O O\neach O O\n3 O O\nminute O O\nperiod O O\n. O O\n\nendpoints Name Name\n( Name Name\ndat Name Name\n, Name Name\n\" Name Name\nminutes Name Name\n\" Name Name\n, Name Name\n3) Name Name\ncalculates O O\nthat O O\nfor O O\nyou O O\n. O O\n\nIf O O\nyou O O\nwant O O\nthe O O\ntimestamps O O\nto O O\nbe O O\n\" O O\nrounded O O\n\" O O\ninstead O O\nof O O\nbeing O O\nthe O O\nlast O O\ntimestamp O O\nof O O\neach O O\nperiod O O\n, O O\nyou O O\ncan O O\nuse O O\nalign.time Name Name\n, O O\nbut O O\nalign.time Name Name\nrequires O O\nthat O O\nthe O O\nobject O O\nis O O\nan O O\nxts Name Name\n, O O\nso O O\nyou O O\n'd O O\nhave O O\nto O O\nconvert O O\nto O O\nxts Name Name\nfirst O O\n. O O\n\nUse O O\naggregate.zoo Name Name\n: O O\n\nNote O O\nthat O O\ndec Name Name\n=\".\" Name Name\nand O O\nindex Name Name\n= Name Name\n1 Name Name\nare O O\nused O O\nby O O\ndefault O O\nin O O\nread.zoo Name Name\nso O O\nthey O O\ncould O O\nbe O O\nomitted O O\nfrom O O\nthe O O\nread.zoo Name Name\nline O O\n. O O\n\nI O O\ncreated O O\nan O O\nAPI O O\nusing O O\nthe O O\nrails-api Name Name\ngem O O\nand O O\nI O O\nhave O O\nan O O\nclient O O\napp O O\nbased O O\non O O\nangular Name Name\nin O O\nwhich O O\nI O O\nuse O O\nng-resource Name Name\n. O O\n\nI O O\ndo O O\nthink O O\nthat O O\nthe O O\nrequest O O\nI O O\nsend O O\nto O O\nmy O O\nAPI O O\nshould O O\nbe O O\nmore O O\nlike O O\n{ Name Name\npost=> Name Name\n{ Name Name\n\"kind\"=>\"GGG\" Name Name\n} Name Name\n} Name Name\nand O O\nnot O O\n{ Name Name\n\"kind\"=>\"GGG\" Name Name\n} Name Name\nof O O\nI O O\nhave O O\nto O O\nfind O O\na O O\nway O O\nfor O O\nmy O O\napi O O\nto O O\nwork O O\nwith O O\nthe O O\nrequest O O\nI O O\nsend O O\nnow O O\n. O O\n\nFor O O\nnow O O\nI O O\n'm O O\nstuck O O\nwith O O\n400 O O\nBad O O\nRequest O O\nerrors O O\nand O O\nI O O\nca O O\nn't O O\nfind O O\nout O O\nhow O O\nto O O\nfix O O\nit O O\n. O O\n\nHere O O\nis O O\nmy O O\nrails Name Name\ncontroller O O\n: O O\n\nHere O O\nis O O\nmy O O\nangular Name Name\ncontroller O O\n: O O\n\nHere O O\nis O O\nmy O O\nangular Name Name\nfactory O O\n: O O\n\nIn O O\nmy O O\nlogs Name Name\nI O O\nhave O O\n: O O\n\n- O O\n\nChange O O\nthe O O\nfollowing O O\ncode O O\n: O O\n\nTo O O\nbe O O\n: O O\n\nAnd O O\nyou O O\nproblem O O\nwill O O\nbe O O\nfixed O O\n. O O\n\nYes O O\n, O O\nit O O\nhas O O\nbeen O O\nasked O O\nbefore O O\nand O O\ni O O\nhave O O\nfollowed O O\nthe O O\nadvice O O\nhere O O\nand O O\nput O O\nmy O O\ndeclerations O O\nat O O\nthe O O\ntop O O\nstill O O\nnot O O\nworking O O\n. O O\n\nnote O O\nthe O O\nlogic O O\nof O O\nthe O O\ncode O O\nis O O\ncorrect O O\nas O O\nit O O\nwas O O\nworking O O\non O O\nanother O O\nmachine O O\n, O O\nits O O\nthe O O\ncompiler Name Name\nthat O O\nis O O\nnot O O\nhappy O O\nwith O O\nthe O O\nlayout O O\n\nThe O O\ncompiler Name Name\ncomplains O O\nbecause O O\nassert Name Name\nis O O\nnot O O\na O O\ndeclaration O O\n. O O\n\nYou O O\n'll O O\nneed O O\nto O O\nmove O O\nthe O O\nassert Name Name\nso O O\nthat O O\nit O O\ncomes O O\nafter O O\nthe O O\ndeclarations O O\n. O O\n\nUsing O O\na O O\nC Name Name\ncompiler Name Name\nthat O O\nsupported O O\na O O\nstandard O O\nmore O O\nrecent O O\nthat O O\nC89 Name Name\nwould O O\nbe O O\na O O\ngood O O\nmove O O\n. O O\n\nI O O\n've O O\ncreated O O\na O O\nbash Name Name\nscript O O\nto O O\nfind O O\ndollar O O\nwords O O\n. O O\n\nFor O O\nthose O O\nof O O\nyou O O\nwho O O\ndo O O\nn't O O\nknow O O\n, O O\na O O\ndollar O O\nword O O\nis O O\na O O\nword O O\nwhose O O\nvalues O O\nof O O\ntheir O O\nletters O O\nadd O O\nup O O\nto O O\n100 O O\nwhen O O\nA Name Name\nis O O\ngiven O O\na O O\nvalue O O\nof O O\n1 Name Name\n, O O\nB Name Name\nis O O\ngiven O O\na O O\nvalue O O\nof O O\n2 Name Name\n, O O\nC Name Name\nis O O\n3 Name Name\n, O O\nand O O\nall O O\nthe O O\nway O O\nto O O\nZ Name Name\nis O O\n26 Name Name\n. O O\n\nI O O\nam O O\nnew O O\nto O O\nprogramming O O\n, O O\nso O O\nI O O\n've O O\ncreated O O\na O O\nvery O O\ncrude O O\nscript O O\nthat O O\n'll O O\ndo O O\nthis O O\nkind O O\nof O O\nthing O O\n, O O\nbut O O\nit O O\n's O O\nnot O O\nworking O O\nas O O\nfast O O\nas O O\nI O O\nwould O O\nexpect O O\n. O O\n\nSomething O O\nin O O\nmy O O\ncode O O\nis O O\nslowing O O\nit O O\ndown O O\n, O O\nbut O O\nI O O\ndo O O\nn't O O\nknow O O\nwhat O O\n. O O\n\nThis O O\nis O O\nmy O O\ncode O O\n. O O\n\nI O O\ncan O O\nonly O O\nspeculate O O\nthat O O\nit O O\nhas O O\nsomething O O\nto O O\ndo O O\nwith O O\nthe O O\nwhile Name Name\nloops O O\n, O O\nor O O\nwith O O\nhow O O\nit O O\nis O O\nconstantly O O\nwriting O O\nthe O O\nvalue O O\nof O O\n$line Name Name\nto O O\na O O\nfile O O\n. O O\n\nI O O\n've O O\ncreated O O\na O O\nscript O O\nbefore O O\nthat O O\nadds O O\nnumbers O O\nto O O\ngenerate O O\nthe O O\nFibonacci O O\nsequence O O\n, O O\nand O O\nit O O\ndoes O O\nit O O\nalmost O O\ninstantaneously O O\n. O O\n\nSo O O\nmy O O\nquestion O O\nis O O\n, O O\nwhat O O\nare O O\nsome O O\nways O O\nto O O\nhelp O O\nmy O O\ncode O O\nrun O O\nmore O O\nefficiently O O\n? O O\n\nApologies O O\nif O O\nthis O O\nbelongs O O\non O O\ncodereview Name Name\n. O O\n\nAny O O\nhelp O O\nis O O\nhighly O O\nappreciated O O\n. O O\n\nThanks O O\n\nEdit O O\n: O O\n\nAlthough O O\nI O O\naccepted O O\nGordan O O\nDavisson O O\n's O O\nAnswer O O\n, O O\nthe O O\nother O O\nones O O\nare O O\njust O O\nas O O\ngood O O\nif O O\nyou O O\nwant O O\nto O O\ndo O O\nthis O O\n. O O\n\nI O O\n'd O O\nrecommend O O\nreading O O\neveryone O O\nelse O O\n's O O\nanswer O O\nbefore O O\ngiving O O\nthis O O\na O O\ntry O O\n. O O\n\nAlso O O\n, O O\nas O O\nnumerous O O\nusers O O\nhave O O\npointed O O\nout O O\n, O O\nbash Name Name\nis O O\nnot O O\na O O\ngood O O\nlanguage O O\nto O O\nbe O O\nusing O O\nfor O O\nthis O O\n. O O\n\nAgain O O\n, O O\nThanks O O\nto O O\neveryone O O\nfor O O\nyour O O\nsuggestions O O\n. O O\n\nAs O O\n@thatotherguy O O\npointed O O\nout O O\nin O O\na O O\ncomment O O\n, O O\nthere O O\nare O O\ntwo O O\nbig O O\nproblems O O\nhere O O\n. O O\n\nFirst O O\n, O O\nthe O O\nway O O\nyou O O\n're O O\nreading O O\nlines O O\nfrom O O\nthe O O\nfile O O\nreads O O\nthe O O\nentire O O\nfile O O\nevery O O\nline O O\n. O O\n\nThat O O\nis O O\n, O O\nto O O\nread O O\nthe O O\nfirst O O\nline O O\nyou O O\nrun O O\nsed Name Name\n-n Name Name\n\" Name Name\n1 Name Name\n\" Name Name\np Name Name\nWords.txt Name Name\n, O O\nwhich O O\nreads O O\nthe O O\nentire O O\nfile O O\nand O O\nprints O O\nonly O O\nthe O O\nfirst O O\nline O O\n; O O\nthen O O\nyou O O\nrun O O\nsed Name Name\n-n Name Name\n\" Name Name\n2 Name Name\n\" Name Name\np Name Name\nWords.txt Name Name\n, O O\nwhich O O\nreads O O\nthe O O\nentire O O\nfile O O\nagain O O\nand O O\nprints O O\nonly O O\nthe O O\nsecond O O\nline O O\n; O O\netc O O\n. O O\n\nTo O O\nfix O O\nthis O O\nuse O O\na O O\nwhile Name Name\nread O O\nloop O O\n: O O\n\nNote O O\nthat O O\nif O O\nanything O O\ninside O O\nthe O O\nloop O O\ntries O O\nto O O\nread O O\nfrom O O\nstandard O O\ninput O O\n, O O\nit O O\n'll O O\nsteal O O\nsome O O\nof O O\nthe O O\ninput O O\nfrom O O\nWords.txt Name Name\n. O O\n\nIn O O\nthat O O\ncase O O\nyou O O\ncan O O\nsend O O\nthe O O\nfile O O\nover O O\nFD O O\n#3 O O\ninstead O O\nof O O\nstandard O O\ninput O O\nwith O O\nwhile Name Name\nread Name Name\n-u3 Name O\n.. Name Name\n. Name Name\ndone Name Name\n3 Name Name\n< Name Name\nWords.txt Name Name\n. O O\n\nThe O O\nsecond O O\nproblem O O\nis O O\nthis O O\nbit O O\n: O O\n\nwhich O O\n.. O O\ncreates O O\n3 O O\nsubprocesses O O\n( O O\necho Name Name\n, O O\ngrep Name Name\n, O O\nand O O\nwc Name Name\n) O O\n, O O\nwhich O O\nis O O\nn't O O\ntoo O O\nbad O O\nexcept O O\nthat O O\nthis O O\nruns O O\n26 O O\ntimes O O\nfor O O\neach O O\nand O O\nevery O O\nword O O\nin O O\nthe O O\nfile O O\n. O O\n\nCreating O O\nprocesses O O\nis O O\nexpensive O O\ncompared O O\nto O O\nmost O O\nshell Name Name\noperations O O\n, O O\nso O O\nyou O O\nshould O O\ndo O O\nyour O O\nbest O O\nto O O\navoid O O\nit O O\nespecially O O\nin O O\nloops O O\nthat O O\nrun O O\nmany O O\nmany O O\ntimes O O\n. O O\n\nTry O O\nthis O O\ninstead O O\n: O O\n\nThis O O\nworks O O\nby O O\nreplacing O O\nall O O\ncharacters O O\nthat O O\nare O O\nn't O O\n${letter[i]} Name Name\nwith O O\n\"\" O O\n, O O\nthen O O\nlooking O O\nat O O\nthe O O\nlength O O\nof O O\nthe O O\nresulting O O\nstring Name Name\n. O O\n\nThe O O\nparsing O O\nhappens O O\nentirely O O\nin O O\nthe O O\nshell Name Name\nprocess O O\n, O O\nso O O\nit O O\nshould O O\nbe O O\nmuch O O\nfaster O O\n. O O\n\nGiven O O\n: O O\n\n( O O\ni.e O O\n. O O\n, O O\nthe O O\n370,101 O O\nword O O\nfile O O\nlinked O O\nHERE O O\n) O O\n\nIn O O\nBash Name Name\nalone O O\n, O O\nstart O O\nwith O O\na O O\nloop O O\nthat O O\nreads O O\nthe O O\nfile O O\nline O O\nby O O\nline O O\n: O O\n\nTo O O\ncount O O\nthe O O\nlines O O\nalone O O\nin O O\nBash Name Name\n( O O\nsame O O\nfile O O\n) O O\ntakes O O\nover O O\n7.8 O O\nseconds O O\non O O\nmy O O\ncomputer O O\n. O O\n\nwc Name Name\nin O O\ncomparison O O\nexecutes O O\nin O O\nmicroseconds O O\n. O O\n\nSo O O\nthe O O\nBash Name Name\nversion O O\nis O O\ngoing O O\nto O O\ntake O O\na O O\nwhile O O\n. O O\n\nOnce O O\nyou O O\nhave O O\nthe O O\nfile O O\nword O O\nby O O\nword O O\n, O O\nyou O O\ncan O O\nread O O\neach O O\nword O O\ncharacter O O\nby O O\ncharacter O O\nand O O\nfind O O\nthe O O\nindex O O\nof O O\nthat O O\ncharacter O O\nin O O\na O O\nstring Name Name\nof O O\nthe O O\nalphabet O O\n: O O\n\nPrints O O\n: O O\n\nThat O O\ntakes O O\nabout O O\n1:55 O O\non O O\nthe O O\n370,101 O O\nword O O\nfile O O\n. O O\n\nAs O O\na O O\ncomparison O O\n, O O\nconsider O O\nthe O O\nsame O O\nfunction O O\nin O O\nPython Name Name\n: O O\n\nFar O O\neasier O O\nto O O\nunderstand O O\nand O O\nexecutes O O\nin O O\n580 O O\nms O O\n. O O\n\nBash Name Name\nis O O\ngreat O O\nfor O O\ngluing O O\ntogether O O\ndifferent O O\ntools O O\n. O O\n\nIs O O\nis O O\nnot O O\nthat O O\ngreat O O\nat O O\nlarge O O\nprocessing O O\ntasks O O\n. O O\n\nUse O O\nawk Name Name\nperl Name Name\npython Name Name\nruby Name Name\netc O O\nfor O O\nlarger O O\ntasks O O\n. O O\n\nEasier O O\nto O O\nwrite O O\n, O O\nread O O\n, O O\nunderstand O O\nand O O\nfaster O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nmatch O O\na O O\nregex O O\nstring Name Name\nagainst O O\na O O\ndata O O\nfile O O\nin O O\nperl Name Name\n, O O\nbut O O\nit O O\nconstantly O O\nkeeps O O\nskipping O O\nthe O O\nexact O O\nline O O\nthat O O\nI O O\n'm O O\nheading O O\nfor O O\n.. O O\n. O O\nwhat O O\ncan O O\npossibly O O\nbe O O\nwrong O O\nhere O O\n? O O\n\nMy O O\nfile O O\nsays O O\n: O O\n\nI O O\n'm O O\ngoing O O\nfor O O\nthe O O\nclass O O\n\" Name Name\nlydskrift Name Name\n\" Name Name\nline O O\n, O O\nso O O\nI O O\ntried O O\nto O O\ngrab O O\nits O O\ncontent O O\nin O O\nmultiple O O\nways O O\nuntil O O\nI O O\nended O O\nup O O\ntrying O O\nto O O\nmatch O O\njust O O\neverything O O\nlike O O\nso O O\n: O O\n\nSurprisingly O O\nit O O\nkeeps O O\ngiving O O\nme O O\nthis O O\n: O O\n\nInterestingly O O\nenough O O\n, O O\nit O O\nmatches O O\nall O O\nfour O O\nlines O O\nif O O\nI O O\nput O O\nthem O O\nin O O\na O O\nDATA O O\narea O O\ninside O O\nthe O O\nsame O O\nperl Name Name\nfile O O\n! O O\n\nBut O O\nthat O O\n's O O\nnot O O\nwhat O O\nI O O\nwant O O\n, O O\nso O O\nwhat O O\nmakes O O\nthe O O\ndifference O O\nhere O O\n? O O\n\nTo O O\nbuild O O\non O O\nmu O O\nis O O\ntoo O O\nshort O O\n's O O\nsolution O O\n, O O\nthis O O\nis O O\nhow O O\nI O O\n'd O O\nwrite O O\nit O O\n: O O\n\nor O O\n, O O\nif O O\nyou O O\nalso O O\nwant O O\nto O O\nskip O O\nlines O O\nconsisting O O\nonly O O\nof O O\nwhitespace Name Name\n: O O\n\nFirst O O\nof O O\nall O O\n, O O\nI O O\nthink O O\nyour O O\nfile O O\nhas O O\none O O\nmore O O\nline O O\nat O O\nthe O O\ntop O O\nthat O O\nyou O O\n're O O\nnot O O\nincluding O O\n. O O\n\nThe O O\nreason O O\nfor O O\nmy O O\nsuspicion O O\nis O O\nbelow O O\n. O O\n\nYour O O\nproblem O O\nis O O\nn't O O\nthe O O\nregex O O\n, O O\nyour O O\nproblem O O\nis O O\nthat O O\n<FILE> Name Name\nreads O O\na O O\nline O O\neach O O\ntime O O\nyou O O\ncall O O\nit O O\n. O O\n\nSo O O\nevery O O\nrun O O\nthrough O O\nyour O O\nloop O O\nreads O O\none O O\nline O O\nin O O\nthe O O\nwhile( Name Name\n< Name Name\nFILE Name Name\n> Name Name\n) Name Name\nand O O\nthen O O\nanother O O\none O O\nin O O\nthe O O\nif( Name Name\n< Name Name\nFILE Name Name\n> Name Name\n= Name Name\n~ Name Name\nm/ Name Name\n(.+)/) Name Name\n. O O\n\nYour O O\nif Name Name\nshould O O\nbe O O\njust O O\nthis O O\n: O O\n\nso O O\nthat O O\nit O O\nuses O O\nthe O O\ndefault O O\n$_ Name Name\nvariable O O\nthat O O\nthe O O\nwhile(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1) Name Name\nwill O O\nbe O O\npopulating O O\n. O O\n\nFurthermore O O\n, O O\nyour O O\nwhile Name Name\nloop O O\nis O O\ndoing O O\na O O\nlot O O\nmore O O\nwork O O\nthan O O\nit O O\nhas O O\nto O O\n, O O\nyou O O\ncould O O\njust O O\ndo O O\nthis O O\n: O O\n\nor O O\neven O O\nthis O O\n: O O\n\nIf O O\nyou O O\n're O O\ntrying O O\nto O O\nskip O O\nblank O O\nlines O O\n, O O\nthen O O\nmaybe O O\nthis O O\n: O O\n\nI O O\n'm O O\ntrying O O\nto O O\nupload O O\na O O\nvideo Name Name\nwhile O O\nusing O O\nLaravel Name Name\n. O O\n\nThough O O\nuploading O O\nimages Name Name\nwork O O\nfine O O\nfor O O\nme O O\nwhen O O\nI O O\nchange O O\nmy O O\ncontroller O O\nline O O\n\nto O O\n: O O\n\nI O O\nonly O O\nsee O O\nuploaded O O\nwritten O O\non O O\na O O\nnew O O\npage O O\n, O O\nbut O O\nno O O\nvideo Name Name\n. O O\n\nController O O\n: O O\n\nRoutes O O\n: O O\n\nView O O\n: O O\n\nYou O O\ncan O O\ntry O O\nlike O O\nthis O O\n: O O\n\nController O O\n: O O\n\nphp.ini Name Name\nfiles O O\ncontains O O\nsome O O\nlimits O O\nthat O O\nmight O O\naffect O O\nthis O O\n. O O\n\nTry O O\nchanging O O\nthese O O\nto O O\nhigh O O\nenough O O\nvalues O O\n: O O\n\nI O O\n'm O O\nsure O O\nthis O O\nquestion O O\nhas O O\nbeen O O\nasked O O\nbefore O O\n, O O\nbut O O\nI O O\n'm O O\nunable O O\nto O O\nfind O O\nit O O\n. O O\n\nI O O\nhave O O\na O O\nbunch O O\nof O O\nlist Name Name\nelements O O\nlike O O\nso O O\n: O O\n\nI O O\nwant O O\nto O O\nwrap O O\neach O O\ngroup O O\nin O O\na O O\n<ul></ul> Name Name\nelement O O\n. O O\n\nHow O O\ndo O O\nI O O\ndo O O\nthat O O\n? O O\n\nThis O O\nis O O\nwhat O O\nI O O\n've O O\ntried O O\n, O O\nbut O O\nit O O\nonly O O\nmatches O O\nthe O O\nindividual O O\nelements O O\n: O O\n\n/<li Name Name\n[^>]*>.*<\\/li>/g Name Name\n\nhttps://regex101.com/r/KXEkJz/1 O O\n\nAnd O O\nif O O\nI O O\ndo O O\n/<li Name Name\n[^>]*>[\\s\\S]*<\\/li>/g Name Name\n, O O\nit O O\nproduces O O\none O O\ngiant O O\nmatch O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\ngroup O O\nthem O O\nby O O\nnew Name Name\nlines Name Name\n, O O\ntry O O\nsomething O O\nlike O O\nthis O O\n: O O\n\n( Name Name\n<li Name Name\n[^>]*>.*<\\/li> Name Name\n\\n? Name Name\n) Name Name\n+ Name Name\n\nThe O O\nonly O O\ndifference O O\nbetween O O\nit O O\nand O O\nyours O O\nis O O\nthat O O\nit O O\ntries O O\nto O O\ncapture O O\nmultiple O O\n<li> Name Name\nobjects O O\nand O O\ndoes O O\nn't O O\nmind O O\nif O O\nthere O O\nis O O\na O O\nnew Name Name\nline Name Name\n. O O\n\nIf O O\nthere O O\n's O O\na O O\nnew Name Name\nline Name Name\nfollowed O O\nby O O\nsomething O O\ndifferent O O\nthough O O\n, O O\nit O O\nstops O O\nmatching O O\n. O O\n\nI O O\nam O O\nhaving O O\nproblem O O\nin O O\npopulating O O\ndata O O\nfrom O O\na O O\ntable Name Name\nin O O\none O O\nscreen O O\nto O O\na O O\nText Name Name\nField Name Name\nin O O\nthe O O\nother O O\nscreen O O\n. O O\n\nI O O\nhave O O\ntwo O O\nclasses O O\nFirstClass Name Name\ncontaining O O\na O O\ntextbox Name Name\nand O O\na O O\nbutton Name Name\n. O O\n\nOn O O\npressing O O\na O O\nbutton Name Name\na O O\nsecond O O\nwindow Name Name\nis O O\nopened O O\ncontaining O O\na O O\nTable Name Name\nof O O\nvalues O O\n. O O\n\nAs O O\nthe O O\nuser O O\ndouble O O\nclicks O O\na O O\nrow Name Name\nthe O O\nvalue O O\nof O O\nthe O O\nsecond O O\ncolumn Name Name\nof O O\nthe O O\nrow Name Name\nshould O O\nbe O O\ninserted O O\ninto O O\nthe O O\ntextbox Name Name\nof O O\nthe O O\nFirstClass Name Name\n. O O\n\nCode O O\nof O O\nboth O O\nthe O O\nclasses O O\nis O O\nattached O O\n. O O\n\nThanking O O\nyou O O\nin O O\nanticipation O O\n. O O\n\nThe O O\nquick O O\nand O O\neasy O O\nway O O\n( O O\nbut O O\nit O O\nintroduces O O\ncoupling O O\nbetween O O\nthe O O\n2 O O\nclasses O O\n) O O\nwould O O\nbe O O\nto O O\npass O O\nuserNameFld Name Name\nto O O\nyour O O\nshowDialog Name Name\nmethod O O\nand O O\nmake O O\nit O O\na O O\nmember O O\nof O O\nTableClass Name Name\n. O O\n\nYou O O\ncan O O\nthen O O\nchange O O\nits O O\nvalue O O\nfrom O O\nthe O O\nTableClass Name Name\nclass O O\n. O O\n\nA O O\nbetter O O\nway O O\nwould O O\nbe O O\nto O O\nbind O O\nthe O O\nvalue O O\nof O O\nuserNameFld Name Name\nto O O\nvalue Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nprogrammatically O O\nfire O O\na O O\nkey O O\nevent O O\nto O O\ngo O O\nleft O O\nin O O\na O O\ntext Name Name\nbox Name Name\n, O O\nbut O O\nnot O O\nhaving O O\nany O O\nluck O O\n. O O\n\nThe O O\ninput O O\nelement O O\nhas O O\nfocus O O\nand O O\nthe O O\ncursor Name Name\nis O O\nat O O\nthe O O\nend O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nget O O\nthe O O\ncursor Name Name\nto O O\nmove O O\nleft O O\none O O\nstep O O\n- O O\nbefore O O\nthe O O\nletter O O\n\" Name Name\nF Name Name\n\" Name Name\n* O O\nprogrammatically O O\nby O O\nfiring O O\na O O\nKeyboard Name Name\nevent O O\n( O O\nkeydown/keyup/keypress O O\n) O O\nwith O O\nthe O O\ncorresponding O O\nkeystroke O O\n← O O\nor O O\n→ O O\ntargeted O O\nat O O\nthe O O\ninput Name Name\nbox Name Name\n. O O\n\nABCDEF| O O\n\nHere O O\n's O O\nthe O O\ncode O O\nso O O\nfar O O\n: O O\n\nHTML Name Name\n\nJavascript Name Name\n\nSaved O O\na O O\nquick O O\ndemo O O\non O O\njsfiddle Name Name\nif O O\nyou O O\nwant O O\nto O O\nsee O O\nthe O O\nwhole O O\ncode O O\n- O O\nhttp://jsfiddle.net/Vsafv/ O O\n\nI O O\nam O O\nnot O O\ninterested O O\nin O O\nmaking O O\nthis O O\ncross-browser Name Name\n( O O\njust O O\nget O O\nit O O\nworking O O\nin O O\nChrome Name Name\n) O O\n. O O\n\nThanks O O\nfor O O\nany O O\nhelp O O\n. O O\n\nAnd O O\nfor O O\nthose O O\nnot O O\nviewing O O\njQuery Name Name\nas O O\nthe O O\nsolution O O\nto O O\neverything O O\n:) O O\n\nFrom O O\nhttp://blog.josh420.com/archives/2007/10/setting-cursor-position-in-a-textbox-or-textarea-with-javascript.aspx O O\n\nwhere O O\n\" Name Name\ninput Name Name\n\" Name Name\nis O O\nyour O O\ntextarea Name Name\n\n37 Name Name\n- O O\nleft O O\n\n38 Name Name\n- O O\nup O O\n\n39 Name Name\n- O O\nright O O\n\n40 Name Name\n- O O\ndown O O\n\nSo O O\nwhen O O\nyou O O\nrecord O O\nyour O O\n\" O O\nevents O O\n\" O O\nyou O O\nrecord O O\nthe O O\nvalues O O\nfor O O\nthe O O\nkeys O O\npressed O O\n. O O\n\nI O O\n'm O O\nsure O O\nyou O O\nalready O O\nfigured O O\nout O O\na O O\nway O O\nto O O\ndo O O\nthis O O\nbut O O\njust O O\nin O O\ncase O O\n, O O\nhere O O\n's O O\nan O O\nidea O O\nof O O\nhow O O\ni O O\nwould O O\ntackle O O\nit O O\n: O O\n\nHope O O\nthis O O\nhelps O O\n\nI O O\nneed O O\nto O O\nget O O\nthe O O\nbounding Name Name\nbox Name Name\n( O O\nin O O\nscene O O\nspace O O\n) O O\nof O O\nQGraphicsItems Name Name\nthat O O\nhave O O\nthe O O\nQGraphicsItem::ItemIgnoresTransformations Name Name\nflag O O\nset O O\n. O O\n\nAccording O O\nto O O\nthe O O\ndocs O O\n, O O\nyou O O\nneed O O\nto O O\nuse O O\nQGraphicsItem::deviceTransform() Name Name\nto O O\ndo O O\nthat O O\n. O O\n\nI O O\ntried O O\nthis O O\n: O O\n\nBut O O\nsomething O O\nis O O\nwrong O O\n, O O\nthe O O\nbounding Name Name\nboxes Name Name\nappear O O\nsmaller O O\nand O O\nfar O O\nto O O\nthe O O\nright O O\nof O O\nthe O O\nitems Name Name\n.. O O\n. O O\n\nJust O O\nfigured O O\nit O O\nout O O\n, O O\nQGraphicsView::viewportTransform() Name Name\ndoc O O\nsays O O\n\" O O\nReturns O O\na O O\nmatrix Name Name\nthat O O\nmaps O O\nviewport Name Name\ncoordinates O O\nto O O\nscene O O\ncoordinates O O\n\" O O\n, O O\nbut O O\nin O O\nfact O O\nit O O\nreturns O O\nthe O O\nscene O O\nto O O\nviewport Name Name\ntransform O O\n. O O\n\nInverting O O\nvp_trans Name Name\nin O O\nthe O O\nlast O O\nstep O O\nfixed O O\nmy O O\nproblem O O\n. O O\n\nIn O O\nversion O O\n2.0.4 Name Name\nof O O\nTwitter Name Name\nBootstrap Name Name\nI O O\nadded O O\na O O\nbox Name Name\nshadow Name Name\nto O O\nmy O O\nnav-bar Name Name\nand O O\nit O O\nworked O O\ngreat O O\n. O O\n\n( O O\nsee O O\nthe O O\nimage Name Name\nbelow O O\n) O O\n\nI O O\nrecently O O\nupgraded O O\nto O O\nversion O O\n2.2.1 Name Name\nand O O\ntried O O\ndoing O O\nthe O O\nsame O O\nbut O O\nI O O\nfail O O\nto O O\nsee O O\nthe O O\nbox Name Name\nshadow Name Name\nbelow O O\nmy O O\nnavbar Name Name\n. O O\n\nHere O O\nis O O\nmy O O\ncurrent O O\nstyle O O\n: O O\n\nAny O O\nideas O O\nwhy O O\nthe O O\ndrop Name Name\nshadow Name Name\nis O O\nn't O O\nappearing O O\nin O O\n2.2.1 Name Name\n? O O\n\nIn O O\nthe O O\nbug O O\nreported O O\n, O O\nthe O O\npossible O O\nsolution O O\nwould O O\nbe O O\n: O O\n\nAnd O O\nthe O O\nlatest O O\nversion O O\n2.1.2-WIP Name Name\nhas O O\nthis O O\ncode O O\n: O O\n\nI O O\nneed O O\nto O O\nlimit O O\nthe O O\nradius Name Name\nof O O\nthe O O\ngreat O O\ncircle O O\nproblem O O\n. O O\n\nThe O O\ncircle O O\nwill O O\nextend O O\nuntil O O\nit O O\nhits O O\nanother O O\nitem O O\n. O O\n\nI O O\nneed O O\nit O O\nto O O\nlimit O O\nthe O O\nrange O O\nof O O\nthe O O\ncircle O O\nto O O\n5 Name Name\nmiles Name Name\n\nHere O O\nis O O\nmy O O\ncode O O\n\nFirst O O\n, O O\nit O O\nis O O\nsurprising O O\nyou O O\nuse O O\na O O\nfunction O O\nthat O O\nreturns O O\na O O\nradius Name Name\nin O O\nkm O O\n, O O\nand O O\nthen O O\nwant O O\nto O O\nlimit O O\nit O O\nto O O\n5 Name Name\nmiles Name Name\n. O O\n\nYou O O\nshould O O\nmake O O\nup O O\nyour O O\nmind O O\n: O O\neither O O\nwrite O O\nthe O O\nfunction O O\nto O O\nreturn O O\nmiles O O\nand O O\nadd O O\nthe O O\nlimit O O\nin O O\nmiles O O\n, O O\nor O O\nleave O O\nthe O O\nfunction O O\nas-is O O\nand O O\nlimit O O\nit O O\nby O O\nkm O O\n( O O\n8 Name Name\nkm Name Name\nis O O\nroughly O O\n5 Name Name\nmiles Name Name\n) O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\nuse O O\nmiles O O\n, O O\nthen O O\nchange O O\nthis O O\nline O O\n: O O\n\nto O O\n: O O\n\nand O O\nreplace O O\n: O O\n\nby O O\n: O O\n\nAlternatively O O\n, O O\nif O O\nyou O O\nwant O O\nto O O\nstick O O\nto O O\nkm O O\n, O O\nthen O O\nonly O O\nreplace O O\n: O O\n\nby O O\n: O O\n\nWhen O O\nI O O\ninstall O O\nthe O O\nmodule O O\nusing O O\npip Name Name\ninstall Name Name\nmodule_name Name Name\n, O O\nI O O\nam O O\nable O O\nto O O\nsee O O\nthe O O\nsize O O\nof O O\neither O O\nwheel O O\nor O O\nthe O O\npackage O O\n. O O\n\nso O O\nthe O O\nquestion O O\nis O O\n, O O\nis O O\nit O O\npossible O O\nto O O\nknow O O\njust O O\nthe O O\nsize O O\nof O O\neach O O\nmodule O O\n? O O\n\nsomething O O\nlike O O\nthis O O\n. O O\n\nI O O\nwant O O\nto O O\nknow O O\nestimated O O\nsize O O\nof O O\nthe O O\ndistribution O O\nso O O\nthat O O\nI O O\ncan O O\nremove O O\nthem O O\nfrom O O\nwinpython Name Name\ndistribution O O\n. O O\n\nI O O\nknow O O\nthis O O\nis O O\nvague O O\nbut O O\nthis O O\nis O O\nwhat O O\nI O O\nwanted O O\n: O O\n\nor O O\nyou O O\ncan O O\nget O O\nlist Name Name\nat O O\n: O O\n\nhttp://hastebin.com/qiconesoje.apache O O\n\nIf O O\nyou O O\n're O O\nin O O\nvirtualenv Name Name\n, O O\nyou O O\ncan O O\nuse O O\nfirst O O\noption O O\nto O O\nget O O\nmore O O\n: O O\n\nI O O\nhave O O\na O O\narray Name Name\nnow O O\ni O O\nwant O O\nto O O\ncreate O O\na O O\ncopy O O\nof O O\nthat O O\narray Name Name\nso O O\nthat O O\ni O O\ncan O O\nretain O O\nthe O O\nprevious O O\nvalue O O\nof O O\nmy O O\narray Name Name\nif O O\ni O O\nwant O O\nto O O\n; O O\n\nI O O\ntried O O\nsomething O O\nlike O O\nthis O O\n\nBut O O\nit O O\ngiving O O\nme O O\na O O\nnull O O\npointer O O\nexception O O\ni.e O O\n. O O\n\nPlease O O\nsuggest O O\nme O O\nhow O O\ncould O O\ni O O\ndo O O\nthis O O\nnow O O\n\nVery O O\nsimple O O\nTry O O\nthis O O\n\nAs O O\nthe O O\nexception Name Name\nstands O O\nyou O O\nhave O O\nnot O O\nallocate O O\nmemory O O\nfor O O\nthe O O\ndestination O O\n. O O\n\nBefore O O\nSystem.arrayCopy Name Name\ncall O O\n\nif O O\nsecondArray Name Name\nis O O\nof O O\nthe O O\nString Name Name\ntype O O\n. O O\n\nOtherwise O O\nyou O O\nhave O O\nto O O\nchange O O\nit O O\naccordingly O O\n\nI O O\nwant O O\nto O O\nConvert O O\nMy O O\nData Name Name\nTable Name Name\nto O O\nXML Name Name\n. O O\n\nI O O\nHave O O\ntwo O O\ndata Name Name\nTable Name Name\nSimilar O O\nlike O O\nthis O O\n. O O\n\nI O O\nwant O O\nto O O\nconvert O O\nsimilar O O\nlike O O\nthis O O\n. O O\n\nI O O\nHave O O\ntried O O\nBelow O O\n, O O\nbut O O\nI O O\nneed O O\nto O O\ndo O O\nthis O O\nwith O O\nlooping O O\nwith O O\ndatatable Name Name\nselect O O\nstatement O O\nfor O O\nrefid Name Name\n. O O\n\ncan O O\nanyone O O\nplease O O\nhelp O O\nme O O\non O O\nthis O O\n. O O\n\nI O O\nhope O O\nit O O\nwill O O\nhelp O O\nyou O O\n\nYou O O\ncan O O\nuse O O\nthe O O\nwriteXML Name Name\nmethod O O\nto O O\nsave O O\nit O O\nas O O\nXML Name Name\nHere O O\nis O O\nuseful O O\nlink O O\nhttp://msdn.microsoft.com/en-us/library/system.data.datatable.writexml.aspx O O\n\nI O O\ntried O O\nusing O O\nthe O O\nregex.syntax Name Name\nmodule O O\nto O O\naccess O O\nthe O O\nindividual O O\ntokens O O\nof O O\na O O\nparsed O O\nregular O O\nexpression O O\nwithout O O\nsuccess O O\n: O O\nthe O O\nonly O O\nthing O O\nI O O\n'm O O\nable O O\nto O O\noutput O O\nis O O\na O O\nsimplified/optimized O O\nversion O O\nof O O\nthe O O\nregex Name Name\n. O O\n\nCode O O\n: O O\n\nOutput O O\n: O O\n\nCan O O\nsomeone O O\ngive O O\nme O O\na O O\nsimple O O\nexample O O\nof O O\nhow O O\nto O O\ntraverse O O\nand O O\noutput O O\nits O O\nparse O O\ntree Name Name\n? O O\n\nThe O O\nParse Name Name\nfunction O O\nyou O O\n're O O\ncalling O O\nis O O\nright O O\n. O O\n\nWhen O O\nyou O O\ncall O O\nfmt.Println(p) Name Name\n, O O\nthe O O\nparse O O\ntree Name Name\nis O O\nbeing O O\nconverted O O\nto O O\na O O\nstring Name Name\n, O O\nwhich O O\nis O O\nwhy O O\nthe O O\noutput O O\nyou O O\n're O O\nseeing O O\nis O O\njust O O\nan O O\nequivalent O O\nregexp Name Name\n. O O\n\nThe O O\nreturn O O\nvalue O O\nof O O\nParse Name Name\nis O O\na O O\npointer Name Name\nto O O\na O O\nsyntax.Regexp Name Name\nstruct O O\n. O O\n\nTo O O\ntraverse O O\nthe O O\nreturned O O\nparse O O\ntree Name Name\nyou O O\nwant O O\nto O O\nlook O O\nat O O\nthe O O\nSub Name Name\nfield O O\nof O O\nthe O O\nreturned O O\nstruct Name Name\nwhich O O\nlists O O\nall O O\nthe O O\nsubexpressions O O\n( O O\na O O\nslice O O\nof O O\npointers Name Name\nto O O\nsyntax.Regexp Name Name\nstructs Name Name\n) O O\n. O O\n\nFor O O\nexample O O\n: O O\n\nSee O O\nthe O O\nsyntax O O\npackage O O\nreference O O\nfor O O\nmore O O\nfields O O\nworth O O\ninspecting O O\n: O O\nOp Name Name\nand O O\nRune Name Name\nare O O\nmajor O O\nones O O\n. O O\n\nI O O\nhave O O\nproblem O O\nwith O O\nevent O O\nin O O\nJava Name Name\n. O O\n\nI O O\nhave O O\ngot O O\ntwo O O\njade Name Name\n's O O\nclass O O\n: O O\n\nFirst O O\nclass O O\n\nSecond O O\nclass O O\n\nProblem O O\nis O O\nthat O O\nwhen O O\nI O O\nclick O O\nAdd O O\nin O O\ngui O O\ni O O\nwant O O\nto O O\nview O O\n\" O O\nit O O\nis O O\nwork O O\n\" O O\n. O O\n\nWhy O O\nit O O\ndoes O O\nn't O O\nwork O O\n? O O\n\nI O O\ndo O O\nn't O O\nknow O O\nJade Name Name\nbut O O\nin O O\nyour O O\ncode O O\n, O O\nvar Name Name\nis O O\nset O O\nto O O\ntrue Name Name\nwhen O O\nthe O O\nadd O O\nbutton Name Name\nis O O\nclicked O O\n. O O\n\nIf O O\nyou O O\nput O O\na O O\nSystem.out.println(\"something\") Name Name\nafter O O\nthe O O\nline O O\nvar Name Name\n= Name Name\ntrue Name Name\nin O O\nthe O O\nsecond O O\nclass O O\nyou O O\nwill O O\nsee O O\nthat O O\nit O O\nhappens O O\nas O O\nexpected O O\nwhen O O\nyou O O\nclick O O\nthe O O\nbutton Name Name\n. O O\n\nIf O O\nyou O O\nchange O O\nthe O O\nfirst O O\nclass O O\nlike O O\nthis O O\n: O O\n\nyou O O\nwill O O\nalso O O\nsee O O\nthat O O\nvar Name Name\nis O O\nstill O O\nfalse Name Name\nwhen O O\nthat O O\ncondition O O\nis O O\ntested O O\nbecause O O\nyou O O\nhave O O\nnot O O\nhad O O\ntime O O\nto O O\nclick O O\nthe O O\nadd O O\nbutton Name Name\nyet O O\n. O O\n\nThe O O\nproper O O\nway O O\nto O O\nhandle O O\nthis O O\nwould O O\nbe O O\nto O O\nhave O O\nthe O O\nfirst O O\nclass O O\nlisten O O\nto O O\nthe O O\nsecond O O\nclass O O\nso O O\nthat O O\nit O O\ngets O O\nalerted O O\nwhen O O\nthe O O\nbutton Name Name\nis O O\nclicked O O\nand O O\nruns O O\nsomething O O\nappropriate O O\nwhen O O\nthat O O\nhappens O O\n. O O\n\nIm O O\nsimply O O\ntrying O O\nto O O\nupload O O\nthis O O\nimage Name Name\nto O O\niCloud Name Name\n. O O\n\nIt O O\nkeeps O O\ngiving O O\nme O O\nthe O O\nerror O O\n\" O O\nThe O O\noperation O O\ncould O O\nn't O O\nbe O O\ncompleted O O\n. O O\nOperation O O\nnot O O\npermitted O O\n\" O O\n. O O\n\nI O O\ntook O O\nthis O O\ncode O O\nright O O\nout O O\nof O O\nthe O O\nDocument O O\nBased O O\nApp O O\nProgramming O O\nGuide O O\nand O O\nI O O\nbelieve O O\nI O O\n've O O\nset O O\nall O O\nmy O O\ncertificates O O\n, O O\nidentifiers O O\n, O O\nprofiles O O\n, O O\nand O O\nentitlements O O\ncorrectly O O\n. O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\nmuch O O\nappreciated O O\n. O O\n\nThis O O\nis O O\ninsanely O O\nfrustrating O O\n. O O\n\nWelcome O O\nto O O\niCloud Name Name\n. O O\n\nYou O O\n'll O O\nget O O\nused O O\nto O O\nthat O O\nfeeling O O\nafter O O\na O O\nwhile O O\n. O O\n\nIn O O\nthe O O\nmeantime O O\nthough O O\n, O O\nyou O O\nhave O O\nother O O\nproblems O O\n. O O\n\nThis O O\nis O O\nnot O O\ngoing O O\nto O O\ngive O O\nyou O O\na O O\nvalid O O\nURL O O\n, O O\nwhich O O\nis O O\ngoing O O\nto O O\nbe O O\na O O\nproblem O O\n. O O\n\nWhat O O\nyou O O\nneed O O\nis O O\n: O O\n\nThat O O\nwill O O\ngive O O\nyou O O\na O O\nvalid O O\nfile:// Name Name\nURL Name Name\n. O O\n\nBelow O O\nare O O\nmy O O\nconfiguration O O\n\ninputFromKafka Name Name\ngoes O O\nthrough O O\ntransformation O O\nbelow O O\n\nThe O O\nprint Name Name\nstatement O O\nfrom O O\nabove O O\nprints O O\nonly O O\ntwo O O\nconsistent O O\nheaders Name Name\nregardless O O\n\nKAFKA Name Name\nMessage Name Name\nHeaders Name Name\n{ Name Name\nid Name Name\n= Name Name\n9c8f09e6-4b28-5aa1-c74c-ebfa53c01ae4 Name Name\n, Name Name\ntimestamp Name Name\n= Name Name\n1437066957272} Name O\n\nWhile O O\nSending O O\na O O\nKafka Name Name\nmessage O O\nsome O O\nheaders Name Name\nwere O O\npassed O O\nincluding O O\nKafkaHeaders.MESSAGE_KEY Name Name\nbut O O\nI O O\nam O O\nnot O O\ngetting O O\nback O O\nthat O O\neither O O\n, O O\nwondering O O\nif O O\nthere O O\nis O O\naway O O\nto O O\naccomplish O O\nthis O O\n? O O\n\nUnfortunately O O\nit O O\ndoes O O\nn't O O\nwork O O\nthat O O\nway O O\n.. O O\n. O O\n\nThe O O\nProducer O O\npart O O\n( O O\nKafkaProducerMessageHandler Name Name\n) O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nAs O O\nyou O O\nsee O O\nwe O O\ndo O O\nn't O O\nsend O O\nany O O\nmessageHeaders Name Name\nto O O\nthe O O\nKafka Name Name\ntopic O O\n. O O\n\nOnly O O\npayload O O\nand O O\nexactly O O\nunder O O\nthat O O\nmessageKey Name Name\nas O O\nit O O\nspecified O O\nby O O\nKafka Name Name\nprotocol O O\n. O O\n\nFrom O O\nother O O\nside O O\nthe O O\nConsumer O O\nside O O\n( O O\nKafkaHighLevelConsumerMessageSource Name Name\n) O O\ndoes O O\nthis O O\nlogic O O\n: O O\n\nAs O O\nyou O O\nsee O O\nwe O O\ndo O O\nn't O O\ncare O O\nhere O O\nabout O O\nmessageKey Name Name\n. O O\n\nThe O O\nKafkaMessageDrivenChannelAdapter Name Name\n( Name Name\n<int-kafka:message-driven-channel-adapter> Name Name\n) Name Name\nis O O\nfor O O\nyou O O\n! O O\n\nIt O O\ndoes O O\nthis O O\nbefore O O\nsending O O\nthe O O\nmessage O O\nto O O\nthe O O\nchannel O O\n: O O\n\nAs O O\nstated O O\nbefore O O\nthere O O\n's O O\nno O O\nconcept O O\nof O O\nmessage O O\nheaders Name Name\nin O O\nKafka Name Name\n. O O\n\nBecause O O\nI O O\nstruggled O O\nwith O O\nthat O O\nsame O O\nproblem O O\nin O O\nthe O O\npast O O\nI O O\n've O O\ncompiled O O\na O O\nsmall O O\nlibrary O O\nthat O O\nhelps O O\ntackle O O\nthis O O\nissue O O\n. O O\n\nIt O O\nmay O O\ncome O O\nhandy O O\nto O O\nyou O O\n. O O\n\nI O O\nam O O\nbuilding O O\na O O\ncalculator Name Name\nwith O O\nflexbox Name Name\n. O O\n\nI O O\nwant O O\none O O\nof O O\nits O O\nkeys O O\ntwice O O\nthe O O\nheight Name Name\nand O O\nanother O O\nkey O O\ntwice O O\nthe O O\nwidth Name Name\n. O O\n\nI O O\ngoogled O O\nmuch O O\nabout O O\nit O O\nbut O O\ncould O O\nn't O O\nfind O O\nboth O O\ncases O O\ntogether O O\n. O O\n\nFor O O\ntwice O O\nheight Name Name\nkey O O\n, O O\nonly O O\nanswers O O\nI O O\nfound O O\nwas O O\nto O O\nmake O O\nflex-direction Name Name\nas O O\ncolumn Name Name\n. O O\n\nBut O O\nin O O\nthat O O\ncase O O\nI O O\nwill O O\nnot O O\nbe O O\nable O O\nto O O\nmake O O\ndouble O O\nwidth Name Name\nkey O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n( O O\non O O\ncodepen.io Name Name\n) O O\n. O O\n\nPlease O O\nhelp O O\n. O O\n\nThere O O\nis O O\nn't O O\na O O\ngeneric O O\nanswer O O\nI O O\ncan O O\ncome O O\nup O O\nwith O O\n, O O\nbut O O\nthis O O\nis O O\nas O O\nclose O O\nas O O\nI O O\ncan O O\nget O O\n. O O\n\nI O O\nhave O O\nmodified O O\nyour O O\ncode O O\nto O O\nuse O O\nfloating O O\ninstead O O\nof O O\nthe O O\nflexbox Name Name\nlayout O O\nmodel O O\n. O O\n\nThis O O\nis O O\nless O O\nmodern O O\n, O O\nbut O O\nseems O O\nto O O\nbe O O\na O O\nviable O O\nworkaround O O\nto O O\nthis O O\nparticular O O\nproblem O O\n, O O\nwith O O\nlittle O O\nto O O\nno O O\nnegative O O\neffects O O\n. O O\n\nhttps://codepen.io/anon/pen/VjOKGX O O\n\nWrap O O\nthe O O\nuneven O O\nkeys Name Name\nin O O\ntheir O O\nown O O\nflex Name Name\ncontainers Name O\nand O O\ngo O O\nfrom O O\nthere. O O\n. O O\n\nRevised O O\nCodepen Name Name\n( O O\nwith O O\ncompiled O O\nCSS Name Name\n) O O\n\nNotes O O\n: O O\n\nInclude O O\npadding Name Name\nand O O\nborders Name Name\nin O O\nwidth Name Name\n/ O O\nheight Name Name\ncalculations O O\n. O O\n\nWrap O O\nuneven O O\nkeys O O\nin O O\na O O\nseparate O O\nflex Name Name\ncontainer Name Name\n( O O\nwith O O\ndefaults O O\nflex-direction Name Name\n: Name Name\nrow Name Name\nand O O\nflex-wrap Name Name\n: Name Name\nnowrap Name Name\n) O O\n\nWrap O O\nlong O O\nkey Name Name\nin O O\na O O\nseparate O O\nflex Name Name\ncontainer Name Name\nwith O O\nwrapping O O\nenabled O O\n( O O\nand O O\ntake O O\nenough O O\nsiblings O O\nto O O\ncreate O O\nequal O O\nheight Name Name\nwith O O\ntall O O\nkey Name Name\n) O O\n. O O\n\nForce O O\nthree O O\nkeys Name Name\nper O O\nrow Name Name\nmax O O\n. O O\n\nMake O O\nlong O O\nkey Name Name\ntwice O O\nthe O O\nwidth Name Name\nof O O\nsiblings O O\n. O O\n\n( O O\nDid O O\nn't O O\nuse O O\nsimpler O O\nlong Name Name\nclass O O\nselector O O\ndue O O\nto O O\nweaker O O\nspecificity O O\n. O O\n) O O\n\nWrap O O\ntall O O\nkey Name Name\nin O O\na O O\nseparate O O\nflex Name Name\ncontainer Name Name\nwith O O\nvertical O O\norientation O O\n. O O\n\nMake O O\ntall O O\nkey Name Name\nconsume O O\nall O O\navailable O O\nwidth Name Name\nand O O\nheight Name Name\nof O O\ncontainer Name Name\n. O O\n\nUPDATE O O\n\nFrom O O\nthe O O\ncomments O O\n: O O\n\nQuestion O O\n#1 O O\n: O O\n\nThe O O\nkeys Name Name\nin O O\nthe O O\nfirst O O\nsub-section O O\ncontainer O O\n( O O\ncontaining O O\n.long Name Name\n) O O\nare O O\nsized O O\nwith O O\nflex Name Name\n: Name Name\n1 Name Name\n0 Name Name\n33.33 Name Name\n% Name Name\n. O O\n\nThis O O\nis O O\nshorthand O O\nfor O O\nflex-grow Name Name\n: Name Name\n1 Name Name\n, O O\nflex-shrink Name Name\n: Name Name\n0 Name Name\n, O O\nand O O\nflex-basis Name Name\n: Name Name\n33.33 Name Name\n% Name Name\n. O O\n\nFor O O\nthe O O\n.long Name Name\nkey Name Name\nwe O O\nare O O\nsimply O O\noverriding O O\nthe O O\nflex-basis Name Name\ncomponent O O\nwith O O\n66.67 Name Name\n% Name Name\n. O O\n\n( O O\nthere O O\n's O O\nno O O\nneed O O\nto O O\nre-declare O O\nthe O O\nother O O\ntwo O O\ncomponents O O\n) O O\n. O O\n\nAlso O O\n, O O\nthere O O\n's O O\nreally O O\nno O O\ndifference O O\nin O O\nthis O O\ncase O O\nbetween O O\nwidth Name Name\nand O O\nflex-basis Name Name\n, O O\nbut O O\nsince O O\nwe O O\n're O O\noverriding O O\nflex-basis Name Name\n, O O\nI O O\nused O O\nflex-basis Name Name\n. O O\n\nUsing O O\nwidth Name Name\nwould O O\nleave O O\nthe O O\noriginal O O\nflex-basis Name Name\n: Name Name\n33.33 Name Name\n% Name Name\nintact O O\n, O O\ncreating O O\ntwo O O\nwidth Name Name\nrules O O\nwhich O O\nmay O O\n, O O\ntherefore O O\n, O O\nfail O O\nto O O\nexpand O O\nthe O O\n.long Name Name\nkey Name Name\n, O O\ndepending O O\non O O\nwhich O O\nrule O O\nprevails O O\nin O O\nthe O O\ncascade O O\n. O O\n\nFor O O\na O O\ncomplete O O\nexplanation O O\nof O O\nflex-basis Name Name\nvs O O\n. O O\nwidth Name Name\n, O O\nsee O O\nWhat O O\nare O O\nthe O O\ndifferences O O\nbetween O O\nflex-basis Name Name\nand O O\nwidth Name Name\n? O O\n\nQuestion O O\n#2 O O\n: O O\n\nBecause O O\nthe O O\ninitial O O\nvalue O O\nof O O\nthe O O\nflex-grow Name Name\ncomponent O O\nis O O\n0 Name Name\n( O O\nsource O O\n) O O\n. O O\n\nThe O O\nfollowing O O\nquery O O\n\nreturns O O\nthe O O\nerror O O\n: O O\n\nWhy O O\ncant O O\nthe O O\nsubquery O O\nuse O O\nthe O O\nvariable O O\nfrom O O\nthe O O\nparent O O\nquery O O\nin O O\nthis O O\ncase O O\n? O O\n\nI O O\nhave O O\ntried O O\nvarious O O\ncombinations O O\nto O O\ntry O O\nand O O\nfix O O\nthis O O\n, O O\nbut O O\nhave O O\nhad O O\nno O O\nluck O O\nso O O\nfar O O\n. O O\n\nYou O O\nshould O O\nconsider O O\nthe O O\nfollowing O O\npart O O\nof O O\nthe O O\nselect O O\nas O O\nif O O\nyou O O\n're O O\ndefining O O\nanother O O\nTable Name Name\n( O O\nthat O O\nyou O O\ncall O O\nx Name Name\n) O O\n: O O\n\nwhen O O\nthis O O\nTable Name Name\nis O O\ndefined O O\n, O O\nwhich O O\na.Lat Name Name\nshould O O\nbe O O\nused O O\n? O O\n\nThe O O\nway O O\nto O O\nfix O O\nit O O\nis O O\nhave O O\nthe O O\n\" O O\nouter Name Name\n\" O O\nquery O O\nrun O O\n, O O\nand O O\nuse O O\nits O O\nresults O O\nwhen O O\nyou O O\nrun O O\nthe O O\nsecond O O\nquery O O\non O O\nAWE_Propvids Name Name\n. O O\n\nIt O O\nshould O O\nlook O O\nsomething O O\nlike O O\n: O O\n\nQ O O\n: O O\nWhy O O\ncant O O\nthe O O\nsubquery O O\nuse O O\nthe O O\nvariable O O\nfrom O O\nthe O O\nparent O O\nquery O O\nin O O\nthis O O\ncase O O\n? O O\n\nA O O\n: O O\nBecause O O\nthat O O\nsubquery O O\nis O O\nan O O\ninline O O\nview O O\n. O O\n\nMySQL Name Name\nwill O O\nrun O O\nthat O O\nquery O O\nand O O\ncreate O O\na O O\ntemporary O O\ntable Name Name\n, O O\nthe O O\n\" O O\nderived Name Name\ntable Name Name\n\" O O\n( O O\nas O O\nMySQL Name Name\ncalls O O\nit O O\n) O O\nis O O\na O O\nrow Name Name\nsource O O\nfor O O\nthe O O\nouter O O\nquery O O\n. O O\n\nThe O O\ninline O O\nview O O\nquery O O\nhas O O\nto O O\nbe O O\nrun O O\nbefore O O\nthe O O\nquery O O\nthat O O\nreferences O O\nit O O\n. O O\n\nA O O\ncorrelated O O\nsubquery O O\ncan O O\nbe O O\nused O O\nin O O\na O O\nWHERE Name Name\nclause O O\n, O O\na O O\nHAVING Name Name\nclause O O\n, O O\nan O O\nIN Name Name\nclause O O\n, O O\nor O O\nin O O\nthe O O\nSELECT Name Name\nlist Name Name\n, O O\nbut O O\nit O O\nis O O\nn't O O\nvalid O O\nin O O\nthe O O\nFROM Name Name\nclause O O\n, O O\nas O O\nan O O\ninline O O\nview O O\nquery O O\n. O O\n\nI O O\nhave O O\na O O\npanel Name Name\nthat O O\ncontains O O\na O O\ncheckboxTree Name Name\n, O O\nI O O\npopulate O O\nthe O O\ntree Name Name\nwhen O O\nopen O O\nthe O O\npanel Name Name\n, O O\nthe O O\nproblem O O\nis O O\nwhen O O\ni O O\nhave O O\nto O O\nmuch O O\nitems O O\nto O O\nbe O O\nselected O O\nin O O\nthe O O\ncheckboxtree Name Name\n( O O\nabout O O\n4000 O O\n) O O\nthe O O\npanel Name Name\ntake O O\na O O\nlong O O\ntime O O\nto O O\nopen O O\n. O O\n\nthis O O\nis O O\nmy O O\ncode O O\n: O O\n\ncheckBoxTree.getCheckBoxTreeSelectionModel().setDigIn(true) Name Name\n; Name Name\n\nany O O\nsuggestions O O\nwill O O\nbe O O\nwelcomed O O\n:) O O\n, O O\n\nNow O O\nthat O O\nthe O O\nJQM Name Name\n1.1 Name Name\nRC Name Name\nis O O\nout O O\n, O O\nI O O\nwould O O\nlike O O\nto O O\nmigrate O O\nmy O O\n1.0 Name Name\nmobile O O\napp O O\nto O O\nthis O O\n1.1 Name Name\nversion O O\n. O O\n\nHow O O\ncan O O\nI O O\ndo O O\nthat O O\n? O O\n\nDo O O\nI O O\nhave O O\nto O O\nreplace O O\nevery O O\nfile O O\nor O O\njust O O\nsome O O\nspecific O O\nfiles O O\n? O O\n\nWhat O O\nshould O O\nbe O O\nmy O O\nmigration O O\npath O O\n? O O\n\nEdit O O\n: O O\nI O O\nplan O O\nto O O\nuse O O\nmy O O\napp O O\nusing O O\nPhoneGap Name Name\n, O O\nwhich O O\nmeans O O\n, O O\nthat O O\nI O O\nwill O O\nwant O O\nto O O\nhave O O\nall O O\nresources O O\nlocally O O\n, O O\nso O O\nno O O\nexternal O O\nreferences O O\n. O O\n\nAdjust O O\nyour O O\njqm Name Name\ncss Name Name\nand O O\njs Name Name\nreferences O O\n. O O\n\nAlso O O\n, O O\nyou O O\n'll O O\nneed O O\njquery Name Name\n1.7.1 Name Name\n\nI O O\nhave O O\na O O\nsmall O O\nissue O O\nbut O O\nI O O\nhave O O\nbeen O O\nbattling O O\nfor O O\ntwo O O\ndays O O\nnow O O\nto O O\nresolve O O\nit O O\n. O O\n\nI O O\nhave O O\nrecently O O\nrecreated O O\na O O\nnew O O\ncategory O O\n( O O\nwww.site.co.za/mens-clothing-3 O O\n) O O\nwhich O O\nis O O\npopulated O O\nand O O\nworking O O\n. O O\n\nI O O\nwant O O\nto O O\nredirect O O\n( O O\nwww.site.co.za/mens-clothing O O\n) O O\nto O O\nthe O O\nnew O O\ncategory O O\n( O O\nwww.site.co.za/mens-clothing-3 O O\n) O O\n. O O\n\nI O O\nhave O O\ntried O O\nimplementing O O\nthe O O\nfollowing O O\nin O O\nthe O O\nhtacess Name Name\nfile O O\n, O O\nbut O O\nnothing O O\nhappens O O\n. O O\n\nThe O O\nold O O\ncategory O O\nlinks O O\n( O O\nmens-clothing O O\n) O O\ngoes O O\nobviosuly O O\nnow O O\nto O O\na O O\n404 O O\nand O O\nit O O\nis O O\nstill O O\nbeing O O\npicked O O\nup O O\nby O O\nGoogle Name Name\n( O O\nmain O O\nconcern O O\n) O O\n. O O\n\nMy O O\nhtaccess Name Name\nrule O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nYou O O\ncould O O\nuse O O\nmagento Name Name\nurl O O\nredirect O O\ninstead O O\n\nhttp://www.magentocommerce.com/wiki/modules_reference/english/mage_adminhtml/urlrewrite/index O O\n\n:) O O\n\nCan O O\ni O O\nachieve O O\na O O\nmany-to-many O O\nrelationship O O\nwithout O O\nusing O O\na O O\njunction O O\ntable Name Name\nwith O O\nthe O O\nbelow O O\n2 O O\ntables Name Name\n? O O\n\nAirports Name Name\ntable Name Name\n: O O\n\nAeroplanes Name Name\nTable Name Name\n\nIf O O\nnot O O\nthen O O\nwhy O O\n? O O\n\nWell O O\n, O O\nyes O O\nyou O O\ncan O O\n, O O\nbut O O\nyou O O\nshouldn't O O\n! O O\n\nWithout O O\nan O O\nextra O O\nrelation O O\n, O O\nyou O O\nwould O O\nneed O O\na O O\ncopy O O\nof O O\nthe O O\nwhole O O\nentry O O\n. O O\n\nSo O O\nin O O\nyour O O\ncase O O\n: O O\nevery O O\nairport Name Name\nhas O O\nzero O O\n( O O\nor O O\none O O\n) O O\nor O O\nmore O O\nplanes Name Name\n. O O\n\nAnd O O\nevery O O\nplane Name Name\nwas O O\nat O O\none O O\nor O O\nmore O O\nairports Name Name\n. O O\n\nWhen O O\nsaving O O\nthis O O\nin O O\none O O\nrelation O O\nyour O O\ndata O O\nwill O O\nlook O O\nlike O O\nthis O O\n: O O\n\n( O O\nand O O\nsimilar O O\nfor O O\nthe O O\nareoplanes Name Name\ntable Name Name\n) O O\n\nThis O O\nwould O O\ncause O O\nsome O O\nproblems O O\nin O O\nyour O O\nDB O O\n: O O\n\nThe O O\nPrimary O O\nKey O O\nfor O O\nairport Name Name\nis O O\nn't O O\nunique O O\nanymore O O\n\nYou O O\nwill O O\nneed O O\nto O O\nmaintain O O\na O O\nlot O O\nof O O\ncopies O O\nof O O\nyour O O\ndata O O\nand O O\nmake O O\nsure O O\nthat O O\nyou O O\nupdate O O\nall O O\nof O O\nthem O O\n! O O\n\nSo O O\nthe O O\nbetter O O\ntable Name Name\ndesign O O\nin O O\nyour O O\nscenario O O\nwould O O\nbe O O\n\nWhere O O\nin O O\nairports_and_planes Name Name\n: O O\n\nboth O O\nfields O O\nare O O\nforeign O O\nkeys O O\nto O O\ntheir O O\nrepsective O O\ntables Name Name\n\nboth O O\nfields O O\nform O O\nthe O O\nprimary O O\nkey O O\ntogether O O\n! O O\n\nWe O O\n're O O\nhosting O O\nthe O O\nscript O O\nin O O\nout O O\napp O O\n. O O\n\nOn O O\nexceptions/crashes Name Name\n, O O\nwe O O\n'd O O\nlike O O\nto O O\nsee O O\nthe O O\nline O O\nnumber O O\nin O O\nthe O O\nstacktrace O O\n. O O\n\nI O O\nca O O\nn't O O\nfind O O\nif O O\nthere O O\nis O O\na O O\nsetting O O\nto O O\ninclude O O\ndebug O O\ninfo O O\nwhen O O\nsetting O O\nup O O\nthe O O\nCSScript Name Name\ncompiler Name Name\n? O O\n\nI O O\nbelieve O O\nyou O O\nmean O O\nCS-Script Name Name\n( O O\nif O O\nnot O O\nplease O O\ncorrect O O\nme O O\n) O O\n. O O\n\nI O O\nam O O\nnot O O\nsure O O\nhow O O\nyou O O\nare O O\ncalling O O\nit O O\nbut O O\nI O O\ndid O O\nfind O O\nthis O O\ncommand Name Name\nline Name Name\ndocumentation O O\n( O O\nit O O\nseems O O\nthat O O\nthe O O\nposition O O\nin O O\ntheir O O\nhelp O O\nfile O O\nis O O\nnot O O\nreflected O O\nin O O\ntheir O O\nURL O O\n, O O\nyou O O\nneed O O\nto O O\nnavigate O O\nto O O\nOverview O O\n-> O O\nCommand-line O O\ninterface O O\n) O O\n. O O\n\nWith O O\n.net Name Name\nthe O O\nline O O\nnumber O O\nis O O\nincluded O O\nin O O\nthe O O\nstack O O\ntrace O O\nif O O\nyou O O\nhave O O\na O O\ncorresponding O O\n.pdb Name Name\nfile O O\nand O O\nthe O O\nline O O\nnumber O O\nwill O O\nalso O O\nbe O O\ncorrect O O\nif O O\nthere O O\nis O O\nno O O\noptimization O O\ndone O O\nat O O\ncompile O O\ntime O O\n( O O\nthis O O\nshould O O\nnot O O\nbe O O\na O O\nproblem O O\nfor O O\nCS-Script Name Name\n) O O\n. O O\n\nIn O O\nthe O O\ndocumentation O O\nfor O O\ncscs.exe Name Name\nthere O O\nis O O\na O O\nswitch O O\n/dbg Name Name\nor O O\n/d Name Name\n. O O\n\nWhen O O\nyou O O\ninclude O O\nthis O O\nswitch O O\nthe O O\ncorresponding O O\n.pdb Name Name\nfile O O\nwill O O\nbe O O\nincluded O O\nwith O O\nyour O O\n.exe Name Name\n( O O\nor O O\nwith O O\nthe O O\n.dll Name Name\nif O O\nbuilding O O\na O O\nlibrary O O\n) O O\n. O O\n\nOnce O O\nyou O O\nhave O O\nboth O O\nfiles O O\nline O O\nnumbers O O\nwill O O\nnow O O\nbe O O\navailable O O\nin O O\nthe O O\nstack O O\ntrace O O\nof O O\nany O O\ngiven O O\nexception Name Name\nthat O O\nhits O O\nan O O\noperation O O\nin O O\nthat O O\nassembly O O\n. O O\n\nAssume O O\nwe O O\nhave O O\na O O\nfile O O\ncalled O O\nTest.cs Name Name\nwith O O\nsome O O\ntest O O\ncode O O\n: O O\n\nThis O O\nwill O O\noutput O O\n2 O O\nfiles O O\n: O O\n\nTest.exe Name Name\n\nTest.pdb Name Name\n\nHere O O\nis O O\nthe O O\nsample O O\ncontent O O\nof O O\nTest.cs Name Name\n, O O\nwhen O O\nyou O O\nexecute O O\nit O O\nyou O O\nwill O O\nsee O O\nthe O O\nline O O\nnumbers O O\n. O O\n\nFor O O\nExecuting O O\ninline O O\n\nThis O O\nshould O O\nalso O O\nbe O O\npossible O O\nwith O O\nthe O O\nDebugBuild Name Name\nflag O O\nin O O\nthe O O\nEvaluatorConfig Name Name\nsection O O\nset O O\nto O O\ntrue Name Name\n. O O\n\nIn O O\nmy O O\nexample O O\nbelow O O\nyou O O\nwill O O\nget O O\neverything O O\nexpected O O\nBUt O O\nwhen O O\nusing O O\nLoadCode Name Name\nit O O\nuses O O\na O O\ntemporary O O\nfile O O\nname O O\nso O O\nthe O O\nfile O O\nname O O\nlooks O O\nfunny O O\nalthough O O\nthe O O\nline O O\nnumber O O\nis O O\ncorrect O O\n. O O\n\nThere O O\nare O O\nalso O O\nLoadXXX Name Name\ncommands O O\nfor O O\nloading O O\none O O\nor O O\nmore O O\nfiles O O\nwhich O O\nwill O O\ngive O O\na O O\nprettier O O\nstack O O\ntrace O O\nas O O\nthe O O\nfile O O\nname O O\nis O O\nnow O O\nknown O O\n. O O\n\nI O O\ndid O O\ntest O O\nthis O O\nall O O\nto O O\nensure O O\nthat O O\nit O O\ndoes O O\nwork O O\n. O O\n\nIf O O\nyou O O\nhave O O\nproblems O O\njust O O\nlet O O\nme O O\nknow O O\n. O O\n\nI O O\nhave O O\ncells O O\nthat O O\nhave O O\nan O O\nif Name Name\nstatement O O\nlinked O O\nto O O\na O O\ndifferent O O\nsheet O O\nusing O O\nimportrange O O\n. O O\n\nHowever O O\n, O O\nwhen O O\nthe O O\nstatus O O\nchanges O O\nto O O\n\" Name Name\nYES Name Name\n\" Name Name\non O O\nmy O O\nsheet O O\n, O O\nthe O O\nonedit Name Name\nscript O O\nwhich O O\nlogs O O\ntime O O\nand O O\ndate O O\ndoes O O\nnot O O\nrun O O\n. O O\n\nHowever O O\nwhen O O\nI O O\nmanually O O\ntype O O\n\" Name Name\nYES Name Name\n\" Name Name\nthe O O\nscript O O\nsuccessfully O O\nlogs O O\ntime O O\nand O O\ndate O O\n. O O\n\nIs O O\nthere O O\na O O\nworkaround O O\nor O O\nan O O\nalternative O O\nto O O\nonEdit Name Name\nto O O\nmake O O\nthis O O\nwork O O\n? O O\n\nOnEdit Name Name\ntrigger O O\ndoes O O\nn't O O\ncare O O\nif O O\nvalue O O\n, O O\nreturned O O\nby O O\nformula O O\n, O O\nchanges O O\n. O O\n\nIt O O\nwill O O\nreact O O\nonly O O\nif O O\ndifferent O O\nvalue O O\nor O O\nformula O O\nwill O O\nbe O O\nentered O O\n. O O\n\nYou O O\nmay O O\nuse O O\nTime-driven O O\ntriggers O O\n. O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\ncontent O O\nbelow O O\nin O O\na O O\nfile O O\n: O O\n\nI O O\nhave O O\nuse O O\nvim Name Name\n/text Name Name\n\\n[\\t].\\n[\\t] Name Name\nand O O\nthe O O\n\" O O\ntext Name Name\n\" O O\nword O O\nand O O\nthe O O\nleft O O\nparentheses O O\nwas O O\nhighlighted O O\n. O O\n\nBut O O\nwhen O O\nI O O\nuse O O\negrep Name Name\n' Name Name\ntext Name Name\n\\n[\\t].\\n[\\t] Name Name\n' Name Name\nthere O O\nis O O\nNO O O\noutput O O\n. O O\n\nJust O O\nwondering O O\nhow O O\ncan O O\nI O O\ngrep Name Name\nuntil O O\nthe O O\nright Name Name\nparentheses Name Name\n. O O\n\nThank O O\nyou O O\n. O O\n\nInstead O O\nof O O\negrep Name Name\nyou O O\ncan O O\nuse O O\nsed Name Name\n. O O\n\nsed Name Name\n-n Name Name\n' Name Name\n/ Name Name\n^ Name Name\ntext/ Name Name\n, Name Name\n/ Name Name\n^($/p Name Name\n' Name Name\nyourfile Name Name\nwill O O\nprint O O\nall O O\nlines O O\nstarting O O\nfrom O O\nwhere O O\ntext Name Name\nis O O\nfound O O\nuntil O O\nthe O O\n( Name Name\nis O O\nfound O O\nat O O\nthe O O\nbeginning O O\nof O O\na O O\nline O O\n. O O\n\nIf O O\nyou O O\nknow O O\nhow O O\nlong O O\nthe O O\nsample O O\nis O O\ngoing O O\nto O O\nbe O O\n, O O\nyou O O\ncan O O\nuse O O\nthe O O\nAfter O O\nflag O O\n, O O\nusing O O\n-AN Name Name\nwhere O O\nN Name Name\nis O O\nthe O O\nnumber O O\nof O O\nlines O O\nafter O O\nthe O O\nmatch O O\nyou O O\nwant O O\nto O O\ngrab O O\n. O O\n\nis O O\nthere O O\nany O O\nfree O O\ntool O O\nto O O\nread O O\nexcel Name Name\nwithout O O\nusing O O\nExcel Name Name\nInterop Name Name\n. O O\n\nI O O\nam O O\ncreating O O\na O O\nwebsite O O\nusing O O\nVisual Name Name\nstudio Name Name\n2010 Name Name\n, O O\nand O O\nI O O\nam O O\nusing O O\nc# Name Name\nand O O\nasp Name Name\n. O O\n\nI O O\ncant O O\ninstall O O\nany O O\nsoftware O O\non O O\nserver Name Name\nso O O\nI O O\nwant O O\nto O O\nuse O O\nsome O O\nthird O O\nparty O O\nfree O O\ntool O O\n. O O\n\nI O O\nread O O\nthe O O\nfile O O\nand O O\nhave O O\nto O O\nuse O O\nthe O O\ncontents O O\nto O O\nupdate O O\nthe O O\ndb O O\n, O O\n. O O\n\nI O O\nwant O O\nto O O\nread O O\nBoth O O\nXLSX Name Name\nand O O\nXLS Name Name\nNeed O O\nsome O O\nsuggestions O O\nfor O O\nthat O O\n. O O\n\nThanks O O\n\nThere O O\nare O O\nmany O O\noptions O O\nto O O\nread/edit/create O O\nExcel Name Name\nfiles O O\nwithout O O\nInterop Name Name\n: O O\n\nMS Name Name\nprovides O O\nthe O O\nfree O O\nOpenXML Name Name\nSDK Name Name\nV Name Name\n2.0 Name Name\n- O O\nsee O O\nhttp://msdn.microsoft.com/en-us/library/bb448854%28office.14%29.aspx O O\n( O O\nXLSX Name Name\nonly O O\n) O O\n\nThis O O\ncan O O\nread+write O O\nMS Name Name\nOffice Name Name\nfiles O O\n( O O\nincluding O O\nExcel Name Name\n) O O\n. O O\n\nAnother O O\nfree O O\noption O O\nsee O O\nhttp://www.codeproject.com/KB/office/OpenXML.aspx O O\n( O O\nXLSX Name Name\nonly O O\n) O O\n\nIF O O\nyou O O\nneed O O\nmore O O\nlike O O\nhandling O O\nolder O O\nExcel Name Name\nversions O O\n( O O\nlike O O\nXLS Name Name\n, O O\nnot O O\nonly O O\nXLSX Name Name\n) O O\n, O O\nrendering O O\n, O O\ncreating O O\nPDFs Name Name\n, O O\nformulas O O\netc O O\n. O O\n\nthen O O\nthere O O\nare O O\ndifferent O O\nfree O O\nand O O\ncommercial O O\nlibraries O O\nlike O O\nClosedXML Name Name\n( O O\nfree O O\n, O O\nXLSX Name Name\nonly O O\n) O O\n, O O\nEPPlus Name Name\n( O O\nfree O O\n, O O\nXLSX Name Name\nonly O O\n) O O\n, O O\nAspose.Cells Name Name\n, O O\nSpreadsheetGear Name Name\n, O O\nLibXL Name Name\nand O O\nFlexcel Name Name\netc O O\n. O O\n\nBTW O O\n: O O\nInterop Name Name\nis O O\nnot O O\nsupported O O\nin O O\nsever-scenarios O O\nby O O\nMS Name Name\n. O O\n\nI O O\nused O O\nExcelDataReader Name Name\non O O\na O O\nrecent O O\nproject O O\n, O O\nworked O O\ngreat O O\nfor O O\nreading O O\nthe O O\nXLS/XLSX Name Name\nfiles O O\n. O O\n\nExcel Name Name\nData Name Name\nReader Name Name\n\nCan O O\nsomeone O O\nexplain O O\nme O O\nwhy O O\nthis O O\nis O O\nhappening O O\n? O O\n\nSilverlight Name Name\n4 Name Name\napplication O O\nusing O O\nWCF Name Name\nRia Name Name\nServices Name Name\n\nSL Name Name\napp O O\ncalls O O\nStartLongOperation Name Name\n[ Name Name\nInvoke Name Name\n] Name Name\noperation O O\n. O O\n\nDue O O\nto O O\nsynchronization O O\nissues O O\nwith O O\nexternal O O\ncomponents O O\nthere O O\nis O O\na O O\nThread.Sleep Name Name\n( Name Name\n30 Name Name\n* Name Name\n1000 Name Name\n) Name Name\nin O O\nthe O O\nserver-side Name Name\ncode O O\n. O O\n\nSL Name Name\napp O O\ncalls O O\nGetStatus Name Name\n( O O\nstandard O O\nquery O O\n) O O\noperation O O\n. O O\n\nThese O O\ncalls O O\nappear O O\nto O O\nbe O O\nblocked O O\nserver-side Name Name\nand O O\nare O O\nwaiting O O\nfor O O\nthe O O\nStartLongOperation Name Name\nto O O\ncomplete O O\n. O O\n\nWhy O O\n? O O\n? O O\n\nI O O\nwas O O\nassuming O O\nthat O O\nserverside Name Name\n, O O\nthe O O\nStartLongOperation Name Name\nruns O O\nan O O\na O O\nworker O O\nthread O O\nand O O\neach O O\ncall O O\nto O O\nGetStatus Name Name\nwould O O\nrun O O\non O O\na O O\nseperate O O\nworker O O\nthread O O\n. O O\n\nClient-side Name Name\nthe O O\ncalls O O\nare O O\nasync O O\nso O O\nSL Name Name\nfires O O\noff O O\nthe O O\nStartLongOperation Name Name\nand O O\nthen O O\ncontinues O O\nto O O\npoll O O\nthe O O\nGetStatus Name Name\n. O O\n\nBut O O\nthe O O\nGetStatusCompleted Name Name\ndoes O O\nn't O O\nget O O\nfired O O\nuntil O O\nthe O O\nStartLongOperation Name Name\nhas O O\ncompleted O O\n. O O\n\nSince O O\nall O O\nSilverlight Name Name\nnetwork O O\ncommunication O O\nhappens O O\non O O\nthe O O\nUI O O\nthread O O\n, O O\nonly O O\none O O\nWCF Name Name\ncall O O\ncan O O\nhappen O O\nat O O\na O O\ntime O O\n. O O\n\nMeaning O O\nyour O O\nStartLongOperation Name Name\nhas O O\nto O O\ncomplete O O\n, O O\nand O O\nthen O O\nthe O O\nclient Name Name\nwill O O\nstart O O\nthe O O\nGetStatus Name Name\ncall O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\ntest O O\nthis O O\nbehavior O O\n, O O\nfire O O\nup O O\nFiddler Name Name\n. O O\n\nYou O O\nwill O O\nfind O O\nthat O O\nSilverlight Name Name\nwill O O\nnot O O\nsend O O\nan O O\nHTTP O O\nrequest O O\nto O O\nthe O O\nGetStatus Name Name\nmethod O O\nuntil O O\nit O O\nfirst O O\ngets O O\na O O\nStartLongOperation Name Name\nresponse O O\nfrom O O\nthe O O\nserver Name Name\n. O O\n\nSo O O\nthe O O\nproblem O O\nis O O\nn't O O\nserver-side Name Name\n. O O\n\nIt O O\n's O O\na O O\nlimitation O O\nof O O\nSilverlight Name Name\n. O O\n\nI O O\nwant O O\nto O O\nretrieve O O\ntwo O O\ncolumns Name Name\nfrom O O\ndatabase O O\nnamely O O\nsystem_name Name Name\nand O O\narrival_time Name Name\nand O O\ndisplay O O\nthese O O\nin O O\ntabular O O\nformat O O\n. O O\n\nNow O O\nalong O O\nwith O O\nthese O O\ntwo O O\ncolumns Name Name\n, O O\nI O O\nwant O O\nto O O\ndisplay O O\na O O\nthird O O\ncolumn Name Name\nwhich O O\nwill O O\nrepresent O O\nthe O O\nnumber O O\nof O O\ntimes O O\nsystem_name Name Name\nappears O O\nin O O\nthe O O\ntable Name Name\n. O O\n\nI O O\n'm O O\nusing O O\nsql Name Name\nserver Name Name\n2012 Name Name\nand O O\nfor O O\ndisplay O O\nI O O\nuse O O\nJSP Name Name\nAND O O\nJSTL Name Name\n. O O\n\nI O O\ntried O O\nto O O\nwrite O O\ncode O O\nfor O O\ndisplaying O O\ntwo O O\ncolumns Name Name\n, O O\nbut O O\nthe O O\noutput O O\nshows O O\nonly O O\nthe O O\nlast O O\ndata O O\nentries O O\n. O O\n\nThe O O\njava Name Name\ncode O O\nis O O\n: O O\n\nJsp Name Name\ncode O O\nis O O\n: O O\n\nI O O\nhave O O\nan O O\nevent Name Name\nlistener Name Name\non O O\na O O\nbutton Name Name\n. O O\n\nThe O O\nbutton Name Name\nis O O\ninside O O\ndiv Name Name\ndiv1 Name Name\n. O O\n\nWhen O O\nI O O\nclick O O\non O O\nanother O O\nbutton Name Name\n, O O\nI O O\nmake O O\nthe O O\ndiv1 Name Name\nposition:absolute Name Name\n. O O\n\nHowever O O\n, O O\nthe O O\nevent Name Name\nlistener Name Name\non O O\nthe O O\nbutton Name Name\ndisappears O O\n. O O\n\nWhen O O\nI O O\nclick O O\non O O\nthe O O\nbutton Name Name\n, O O\nnothing O O\nhappens O O\n. O O\n\nDoes O O\nanyone O O\nknow O O\nwhy O O\nthis O O\nis O O\nhappening O O\nor O O\nhow O O\nI O O\ncan O O\ndebug O O\nit O O\n? O O\n\nI O O\nhave O O\na O O\ndirectory O O\non O O\nnetwork O O\ndrive O O\nwith O O\nmillion O O\nof O O\nfiles O O\n. O O\n\nIf O O\nI O O\ntry O O\nto O O\nread O O\nit O O\nwith O O\n\nit O O\nwill O O\ntake O O\na O O\nlot O O\nof O O\ntime O O\nuntil O O\nresulting O O\narray Name Name\nwill O O\nbe O O\nfilled O O\nwith O O\nfiles Name Name\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nreceive O O\nfiles Name Name\nby O O\none O O\nand O O\nprintout O O\na O O\nprogress O O\n. O O\n\nHow O O\ncan O O\nI O O\ndo O O\nthis O O\nin O O\nJava Name Name\n? O O\n\nYou O O\nmight O O\ntry O O\nwith O O\nDirectoryStream Name Name\n: O O\n\nYou O O\ncan O O\nalso O O\nmake O O\nthe O O\nDirectoryStream Name Name\nfilter O O\nfiles Name Name\nfor O O\nyou O O\nif O O\nyou O O\nneed O O\nto O O\n: O O\nall O O\nyou O O\nneed O O\nto O O\ndo O O\nis O O\nadd O O\na O O\nparameter O O\nto O O\nthe O O\nFiles.newDirectoryStream Name Name\ncall O O\n: O O\n\nYou O O\ncan O O\nuse O O\nthe O O\nNIO.2 Name Name\nAPI O O\n: O O\n\nHow O O\ncan O O\nI O O\niterate O O\nthrough O O\neach O O\nof O O\nthese O O\nhidden O O\nfields O O\nand O O\nchange O O\neach O O\none O O\n's O O\nvalue O O\nwith O O\nJQuery Name Name\n? O O\n\nYou O O\ncan O O\ndo O O\nit O O\nby O O\ncombining O O\n:hidden Name Name\nselector O O\nand O O\nattribute O O\nstarts O O\nwith O O\nselector O O\n, O O\n\nDEMO O O\n\nTo O O\nmake O O\nsure O O\nthat O O\nthe O O\nID O O\nnot O O\nchange O O\nuse O O\nalso O O\nthe O O\nClientIDMode Name Name\n= Name Name\n\" Name Name\nStatic Name Name\n\" Name Name\non O O\neach O O\ncontrol O O\n. O O\n\nThe O O\nID O O\ncan O O\nchange O O\nif O O\nyou O O\nplace O O\nthat O O\ncode O O\non O O\nany O O\npage O O\nthat O O\nuse O O\nany O O\nmaster O O\npage O O\n, O O\nor O O\nis O O\ninside O O\nany O O\ncustom O O\ncontrol O O\n. O O\n\nSo O O\nyour O O\ncontrol O O\nmust O O\nbe O O\n: O O\n\nI O O\n'm O O\nfacing O O\nan O O\nissue O O\ninstalling O O\nangular-cli Name Name\nlocally O O\n. O O\n\nI O O\n'm O O\non O O\nUbuntu Name Name\n16.04.2 Name Name\nLTS Name Name\nwith O O\nfollowing O O\nversions O O\nof O O\nnode.js Name Name\nand O O\nnpm Name Name\n: O O\n\nI O O\ntried O O\nto O O\ninstall O O\nangluar-cli Name Name\nusing O O\nthe O O\nfollowing O O\ncommand O O\n: O O\n\nthis O O\nworked O O\nfine O O\nand O O\ncompleted O O\nwith O O\nfollowing O O\nwarnings O O\n: O O\n\nNow O O\nwhen O O\nI O O\n'm O O\ntrying O O\n' O O\nng Name Name\n' O O\ncommand O O\n: O O\n\nnpm Name Name\ninstall Name Name\n@angular Name Name\n/cli Name Name\n@latest Name Name\n\nwill O O\nnot O O\ninstall O O\nangular-cli Name Name\nglobally O O\nbut O O\nit O O\nworks O O\nfor O O\nyou O O\nuser O O\n. O O\n\nI O O\nresolve O O\nthis O O\nproblem O O\nby O O\nlearning O O\nthis O O\narticle O O\n: O O\n\nFixing O O\nnpm Name Name\npermissions O O\n\nI O O\n'm O O\ncreating O O\na O O\nword O O\ngame O O\nin O O\nJava Name Name\nfor O O\npractice O O\n. O O\n\nI O O\n've O O\ngot O O\na O O\ntxt Name Name\nfile O O\ncontaining O O\nall O O\nthe O O\nfour-letter O O\nwords O O\nin O O\nthe O O\nEnglish O O\nlanguage O O\n. O O\n\nThey O O\nare O O\nlength-delimited O O\n, O O\ni.e O O\n. O O\nevery O O\n4th O O\ncharacter O O\nstarting O O\nfrom O O\nthe O O\n1st O O\nis O O\nthe O O\nfirst O O\nletter O O\nof O O\na O O\nword O O\n. O O\n\nWhat O O\nis O O\na O O\ngood O O\nway O O\nto O O\ngo O O\nabout O O\nchecking O O\nto O O\nsee O O\nif O O\na O O\nword O O\nexists O O\nin O O\nthe O O\ndictionary Name Name\n? O O\n\nYou O O\ncan O O\nread O O\nthe O O\nfile O O\ninto O O\na O O\nTreeSet Name Name\nthen O O\nuse O O\nthe O O\ncontains Name Name\nmethod O O\n. O O\n\nFor O O\na O O\nSet Name Name\ncontains O O\nruns O O\nin O O\nconstant O O\ntime O O\n. O O\n\nI O O\nhave O O\nadded O O\na O O\n.toUpperCase() Name Name\nconversion O O\nso O O\nthat O O\nthere O O\nare O O\nno O O\ncase O O\nrelated O O\nissues O O\n, O O\nthis O O\ncan O O\neasily O O\nbe O O\na O O\n.toLowerCase() Name Name\nalso O O\n. O O\n\nI O O\n'd O O\nlike O O\nto O O\nsum O O\nminutes O O\nup O O\nin O O\nExcel Name Name\n, O O\nand O O\nshow O O\nthe O O\nresulting O O\nhours O O\n. O O\n\nCurrently O O\nif O O\nfor O O\nexample O O\n, O O\nI O O\nsum O O\n0.45 Name Name\n+ Name Name\n0.45 Name Name\n, O O\nI O O\nget O O\n90 Name Name\n. O O\n\nI O O\nshould O O\nget O O\n1.30 Name Name\n. O O\n\nIs O O\nthis O O\npossible O O\n? O O\n\nYou O O\nneed O O\nTimeSerial Name Name\n: O O\n\nAs O O\ni O O\nmentioned O O\non O O\nthe O O\nquestion O O\ntitle O O\n, O O\nI O O\nwant O O\nto O O\nknow O O\nthe O O\nbest O O\napproach O O\nto O O\nget O O\nthis O O\nto O O\nwork O O\nand O O\ni O O\n'll O O\nneed O O\nand O O\nexample O O\n( O O\nvery O O\nsimple O O\none O O\nas O O\nthe O O\nfollow O O\n: O O\n) O O\n\nLet O O\n's O O\nsay O O\ni O O\nhave O O\nan O O\nAPI Name Name\nwhich O O\nhas O O\n1 O O\ncontroller O O\nand O O\n1 O O\naction O O\nfor O O\nexample O O\nsimplicity O O\n\nand O O\ninside O O\nthe O O\nindex O O\naction O O\ni O O\nhave O O\n\nThen O O\ni O O\nhave O O\nanother O O\nrails Name Name\napp O O\nwhich O O\nwill O O\nwork O O\nfor O O\nfront-end O O\nrendering O O\n\nHow O O\ncan O O\ni O O\npass O O\nthis O O\n@date O O\nas O O\nJSON Name Name\nfrom O O\nthe O O\nAPI Name Name\nto O O\nthe O O\nother O O\napp O O\nto O O\nrender O O\nit O O\n? O O\n\nShould O O\ni O O\nhave O O\nsame O O\ncontroller O O\non O O\nthe O O\nother O O\napp O O\n? O O\n\nHow O O\ncan O O\ni O O\nconnect O O\nand O O\nsend O O\nhttp O O\nrequest Name Name\nand O O\nreceive O O\nresponse O O\n? O O\n\nThanks O O\nin O O\nadvance O O\n\nFor O O\nsuch O O\na O O\nsimple O O\nexample O O\n, O O\nyou O O\ncan O O\ndo O O\nsomething O O\nas O O\nsimple O O\nas O O\n: O O\n\nHowever O O\n, O O\nyou O O\n're O O\nmost O O\nlikely O O\ngoing O O\nto O O\nwant O O\nto O O\ndeal O O\nwith O O\nmore O O\ncomplicated O O\nJSON Name Name\nresponses O O\n, O O\nso O O\nbefore O O\nlong O O\nyou O O\n'll O O\nprobably O O\nwant O O\nto O O\nuse O O\nsomething O O\nlike O O\nthe O O\nJbuilder Name Name\ngem O O\nor O O\nActiveModel Name Name\nSerializers Name Name\n( O O\nmy O O\npreferred O O\napproach O O\n) O O\n. O O\n\nOn O O\nthe O O\nother O O\nend O O\n, O O\nyour O O\nfront-end O O\nwill O O\nneed O O\nto O O\nmake O O\nan O O\nHTTP Name Name\nGET Name Name\nrequest Name Name\n. O O\n\nLots O O\nof O O\nways O O\n( O O\nand O O\ngems O O\n) O O\nto O O\ndo O O\nthis O O\n, O O\nbut O O\none O O\ncommon O O\napproach O O\nis O O\njust O O\nto O O\nuse O O\nthe O O\nbuilt O O\nin O O\nNet::HTTP Name Name\nclass O O\n. O O\n\nIn O O\nyour O O\nsituation O O\n, O O\na O O\nbetter O O\napproach O O\nmight O O\nbe O O\nto O O\nuse O O\nthe O O\nActive Name Name\nResource Name Name\ngem O O\n. O O\n\nThis O O\ngem O O\nallows O O\nyou O O\nto O O\ncreate O O\nmodels O O\nthat O O\nare O O\nbacked O O\nby O O\na O O\nREST Name Name\nAPI Name Name\nrather O O\nthan O O\na O O\ndatabase O O\n. O O\n\nFor O O\nexample O O\n, O O\nif O O\nyour O O\nAPI Name Name\napp O O\nprovides O O\nbasic O O\nCreate-Read-Update-Destroy O O\nactions O O\nfor O O\na O O\nparticular O O\nmodel O O\n( O O\nlet O O\n's O O\ncall O O\nit O O\nWidget Name Name\n) O O\nat O O\nthe O O\nfollowing O O\nURLs O O\n: O O\n\nthen O O\nin O O\nyour O O\nfront-end O O\napp O O\nyou O O\ncould O O\ndeclare O O\nan O O\nActive Name Name\nResource Name Name\nlike O O\nthis O O\n: O O\n\nwhich O O\nwill O O\nauto-magically O O\naccess O O\nall O O\nof O O\nthose O O\nmethods O O\nin O O\nyour O O\nAPI Name Name\n, O O\nand O O\nbehave O O\nmuch O O\nlike O O\na O O\nregular O O\nActive Name Name\nRecord Name Name\nmodel O O\n. O O\n\nThat O O\nway O O\n, O O\nyou O O\nbasically O O\ndesign O O\nyour O O\nfront-end O O\napp O O\nlike O O\na O O\n\" O O\nnormal O O\n\" O O\nrails Name Name\napp O O\n, O O\nbut O O\nusing O O\nActiveResource-based O O\nmodels O O\nin O O\nplace O O\nof O O\nActiveRecord Name Name\n. O O\n\nI O O\nwould O O\nnote O O\n, O O\nhowever O O\n, O O\nthat O O\na O O\nmore O O\ncommon O O\nthing O O\nto O O\ndo O O\nthese O O\ndays O O\nwould O O\nbe O O\nto O O\nbuild O O\nyour O O\nAPI O O\nin O O\nRails Name Name\n, O O\nand O O\nbuild O O\nyour O O\nfront-end O O\nwith O O\nclient-side O O\nJavascript Name Name\n, O O\nusing O O\nsomething O O\nlike O O\nJQuery Name Name\nor O O\nAngular Name Name\nto O O\nmake O O\nrequests O O\nfrom O O\nthe O O\nAPI Name Name\n. O O\n\nI O O\n'm O O\nnot O O\nsure O O\nwhat O O\nyou O O\n're O O\ngaining O O\nby O O\nsplitting O O\nAPI O O\nand O O\nfront-end O O\n, O O\nwhere O O\nboth O O\nof O O\nthem O O\nare O O\nRails Name Name\napps O O\n- O O\nunless O O\nyou O O\n've O O\ngot O O\na O O\ncompelling O O\nreason O O\n, O O\nI O O\n'd O O\njust O O\nbuild O O\none O O\nRails Name Name\napp O O\nthat O O\nhandles O O\nboth O O\nAPI Name Name\nand O O\nfront-end O O\n, O O\nor O O\nbuild O O\na O O\nRails Name Name\nAPI Name Name\n+ O O\nAngular Name Name\n( O O\nor O O\nsimilar O O\n) O O\nfront-end O O\n. O O\n\nI O O\nam O O\nable O O\nto O O\nset O O\nup O O\nAWS Name Name\nWorkMail Name Name\nto O O\nreceive O O\nand O O\nsend O O\nemail O O\nusing O O\ncustom O O\ndomain O O\ne.g O O\n. O O\njohn@mycompany.com Name Name\n\nNow O O\nI O O\n'd O O\nlike O O\nto O O\nallow O O\nour O O\nusers O O\nto O O\nlogin O O\nand O O\naccess O O\nemails O O\nat O O\nhttps://mail.mycompany.com O O\n( O O\ninstead O O\nof O O\nthe O O\nAWS Name Name\nprovided O O\naccess O O\nurl O O\nhttps://mycompany.awsapps.com O O\n) O O\n. O O\n\nThe O O\ndocument O O\nI O O\ncan O O\nfind O O\nseems O O\nonly O O\nhandle O O\nmy O O\nfirst O O\ncase O O\n( O O\nwhich O O\nis O O\nalready O O\ndone O O\n) O O\n. O O\n\nThanks O O\n\nCreate O O\na O O\nsub-domain O O\n\" O O\nmail.mycompany.com Name Name\n\" Name Name\nand O O\nredirect O O\nit O O\nto O O\n\" O O\nmycompany.awsapps.com Name Name\n\" O O\n. O O\n\nI O O\nresolved O O\nthis O O\nby O O\nusing O O\nthe O O\nbuilt-in O O\nCloudFront Name Name\ninterface O O\n. O O\n\nI O O\nadmit O O\nthe O O\ndocumentation O O\non O O\nthis O O\nis O O\npretty O O\npoor O O\n, O O\nbut O O\nthe O O\naim O O\nbehind O O\nit O O\nis O O\nto O O\nget O O\npeople O O\nto O O\npay O O\nfor O O\nthis O O\nredirection O O\n. O O\n\nTo O O\nhave O O\nyour O O\nmywebmail.mydomain.com Name Name\nmapped O O\ninto O O\nmyaws.awsapps.com/workmail Name Name\nthen O O\nplease O O\nfollow O O\nthe O O\nsteps O O\nbelow O O\n: O O\n\n1) O O\nYou O O\nmight O O\nhave O O\ndone O O\nthis O O\nstep O O\nalready O O\n: O O\nOn O O\nyour O O\nDNS O O\nserver O O\n( O O\nwhere O O\nthat O O\nis O O\n) O O\n, O O\ncreate O O\na O O\nCNAME O O\nto O O\nmap Name Name\nmywebmail.mydomain.com Name Name\ninto O O\nmyaws.awsapps.com Name Name\n\n2) O O\nLogin O O\ninto O O\nyour O O\nCloudFront Name Name\ninterface O O\nhttps://console.aws.amazon.com/cloudfront/ O O\n\n3) O O\nClick O O\non O O\n\" O O\nCreate O O\nDistribution O O\n\" O O\n\n4) O O\nOn O O\nthe O O\nOrigin-Domain O O\nput O O\nmyaws.awsapps.com Name Name\n\n5) O O\nOn O O\nthe O O\nOrigin-URI O O\nput O O\n/workmail Name Name\n\n6 O O\n) O O\nAdjust O O\nthe O O\nsetting O O\nto O O\nwhat O O\nyou O O\nlike O O\nsuch O O\nas O O\nredirecting O O\nfrom O O\nHTTP O O\ninto O O\nHTTPS O O\nor O O\nuse O O\nas-is O O\netc O O\n. O O\n\n7 O O\n) O O\nScroll O O\ndown O O\nto O O\nthe O O\nCNAME O O\nand O O\nenter O O\nthe O O\naliases O O\nyou O O\nneed O O\n, O O\nfor O O\nthis O O\nexample O O\nyou O O\nneed O O\nto O O\nput O O\nin O O\nmywebmail.mydomain.com Name Name\n\n8 O O\n) O O\nSave O O\n\n9 O O\n) O O\nNotice O O\nthat O O\nthis O O\nmight O O\ntake O O\na O O\nwhile O O\nto O O\nget O O\ncreated O O\n, O O\nmine O O\ntook O O\nabout O O\n30 O O\nminutes O O\nto O O\ncomplete O O\n, O O\nalso O O\nevery O O\ntime O O\nI O O\nneeded O O\nto O O\nedit O O\nsomething O O\nit O O\nwould O O\ntake O O\naround O O\n10-20 O O\nminutes O O\nto O O\ncomplete O O\n. O O\n\n10 O O\n) O O\nOnce O O\ndone O O\n, O O\nbrowse O O\nyour O O\nmywebmail.mydomain.com O O\n, O O\nyour O O\nCNAME O O\non O O\nyour O O\noriginal O O\nDNS O O\n( O O\nstep O O\n1 O O\nabove O O\n) O O\nshould O O\nask O O\nyour O O\nbrowser Name Name\nto O O\nredirect O O\nand O O\nthen O O\nwith O O\nAWS Name Name\nCloundFront Name Name\nsetting O O\nit O O\nwould O O\nadd O O\nthe O O\nURI O O\nafterwards O O\n, O O\n\n1 O O\n1) O O\nIf O O\nyou O O\nget O O\na O O\nblank O O\npage Name Name\n, O O\nthen O O\ncheck O O\nyour O O\nheaders O O\n, O O\nin O O\nparticular O O\n( O O\n? O O\norganization O O\n= O O\nYourDomainName O O\n) O O\n, O O\nyou O O\nmight O O\nneed O O\nto O O\nmanually O O\nadd O O\nit O O\nthere O O\nfrom O O\nthe O O\nbehaviours O O\nmenu Name Name\nof O O\nthe O O\nitem O O\nyou O O\ncreated O O\nabove O O\n. O O\n\nI O O\nhope O O\nthis O O\nhelps O O\n\nKind O O\nRegards O O\n\nHeider O O\nSati O O\n\nI O O\nwas O O\nwondering O O\nif O O\nsomething O O\nlike O O\nthis O O\n, O O\nis O O\nsafe O O\nin O O\nZend Name Name\n: O O\n\nI O O\n'm O O\nnot O O\nchecking O O\nthe O O\ncontent O O\nof O O\n$postid Name Name\nis O O\nhere O O\n. O O\n\nZend Name Name\ndoes O O\nthis O O\nautomatically O O\nwhen O O\nyou O O\nmake O O\nqueries O O\nlike O O\nthis O O\n: O O\n\nBut O O\nI O O\ndo O O\nn't O O\nlike O O\nthis O O\nway O O\nof O O\nworking O O\n, O O\njust O O\nwriting O O\nqueries O O\nis O O\nmuch O O\nfaster O O\nfor O O\nme O O\n. O O\n\nSo O O\nshould O O\nI O O\nbe O O\nmanually O O\nescaping O O\nor O O\nis O O\nthis O O\ndone O O\nfor O O\nme O O\n? O O\n\nAnd O O\nwhat O O\nare O O\nthe O O\neasiest O O\nways O O\nto O O\ndo O O\nthis O O\n? O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nwant O O\nto O O\nuse O O\nZend_Db_Select Name Name\nyou O O\ncan O O\ndo O O\n: O O\n\nWhere O O\nthe O O\n2nd O O\nparam O O\nis O O\nan O O\narray Name Name\nof O O\nvalues O O\nto O O\nbe O O\ndropped O O\ninto O O\nthe O O\nplaceholders O O\n. O O\n\nSee O O\n: O O\nhttp://framework.zend.com/manual/en/zend.db.statement.html O O\n\nZend Name Name\ncannot O O\nbe O O\nescaping O O\nyour O O\nvariable O O\nbecause O O\nit O O\nnever O O\nsees O O\nit O O\n. O O\n\nYour O O\nvariable O O\nis O O\nbeing O O\nappended O O\nto O O\na O O\nstring Name Name\n, O O\nand O O\nthe O O\n$ Name Name\ndb->query Name Name\nmethod O O\ngets O O\nto O O\nsee O O\nthe O O\nstring Name Name\nas O O\na O O\nwhole O O\n. O O\n\nI O O\ndo O O\nn't O O\nthink O O\nthat O O\nthe O O\nquery() Name Name\nmethod O O\ndoes O O\nany O O\nsanitization O O\nanyway O O\n. O O\n\nI O O\nhave O O\na O O\nfolder O O\nthat O O\ncontains O O\nmultiple O O\nsub-directories O O\n\nThe O O\nversion O O\nformat O O\nis O O\n[ Name Name\nmajor Name Name\n] Name Name\n. Name Name\n[ Name Name\nminor Name Name\n] Name Name\n. Name Name\n[ Name Name\nupdate Name Name\n] Name Name\n[ Name Name\nphase Name Name\n] Name Name\n[ Name Name\nbuild Name Name\n] Name Name\n, O O\nlike O O\n1.0.0d0 Name Name\n. O O\n\nAnd O O\nvalid O O\nphases O O\nare O O\nd(ev) Name Name\n, O O\na(lpha) Name Name\n, O O\nb(eta) Name Name\n, O O\nf(inal) Name Name\n, O O\nplease O O\nnote O O\nd Name Name\n< O O\na Name Name\n< O O\nb Name Name\n< O O\nf Name Name\n. O O\n\nI O O\n'd O O\nlike O O\nto O O\nget O O\nthe O O\nlatest O O\nversion O O\nnumber O O\nwhich O O\nis O O\n16.0.0a2 Name Name\nusing O O\nbatch Name Name\nscript Name Name\n. O O\n\nI O O\nwrite O O\nsuch O O\ncodes O O\n, O O\nbut O O\ndoes O O\nn't O O\nwork O O\n, O O\nbecause O O\nthe O O\nsub-directories O O\nare O O\nsorted O O\nby O O\nalphabetical O O\norder O O\n. O O\n\nSo O O\nit O O\nwill O O\ngive O O\na O O\nresult O O\n16.0.0d24 Name Name\n. O O\n\nThe O O\nfollowing O O\nscript O O\ndoes O O\nwhat O O\nyou O O\nwant O O\n: O O\n\nThe O O\nbasic O O\nconcept O O\nis O O\nto O O\nadapt O O\nthe O O\nversion O O\nnumbers O O\nso O O\nthat O O\n( O O\nalpha O O\n- O O\n) O O\nnumeric O O\nsorting O O\nprovides O O\nthe O O\nsame O O\nresult O O\nas O O\nalphabetic O O\nsorting O O\n. O O\n\nThis O O\ncan O O\nbe O O\nachieved O O\nby O O\nadding O O\na O O\ngreat O O\nnumber O O\nto O O\nevery O O\nnumeric O O\npart O O\nof O O\nthe O O\nversion O O\nnumbers O O\nso O O\nthat O O\neach O O\none O O\nalways O O\nhas O O\ngot O O\nthe O O\nsame O O\nnumber O O\nof O O\ndigits O O\n. O O\n\nIn O O\naddition O O\n, O O\nsince O O\nthe O O\npriority O O\nof O O\nthe O O\nphase O O\nfigure O O\nis O O\nnot O O\nof O O\nalphabetical O O\norder O O\n, O O\nadequate O O\nreplacements O O\nare O O\ndone O O\n. O O\n\nThe O O\ncore O O\nidea O O\nis O O\ntaken O O\nfrom O O\nthis O O\nanswer O O\nand O O\nis O O\ncredited O O\nto O O\nAacini O O\n. O O\n\nSimilar O O\ncode O O\nto O O\nthe O O\none O O\nposted O O\nby O O\naschipfl O O\n. O O\n\nSame O O\nvalue O O\npadding O O\napproach O O\nfor O O\neach O O\nsegment O O\n, O O\njust O O\na O O\ndifferent O O\nhandling O O\nof O O\nname O O\nsplitting O O\nand O O\nvalue O O\npadding O O\n. O O\n\nDoes O O\nanyone O O\nknow O O\nhow O O\nto O O\nuse O O\na O O\n\" O O\nlike Name Name\n\" O O\nor O O\n\" O O\ncontains Name Name\n\" O O\nfunction O O\nin O O\nAmpscript Name Name\n? O O\n\nExample O O\n: O O\nGetContent O O\nwhere O O\nname O O\ncontains O O\n\" Name Name\nLOY Name Name\n\" Name Name\n\nPerhaps O O\nyou O O\n're O O\nlooking O O\nfor O O\nthe O O\nIndexOf() Name Name\nfunction O O\n? O O\n\nBTW O O\n, O O\nthere O O\nare O O\nmany O O\nmore O O\npeople O O\nanswering O O\nSFMC O O\nquestions O O\nover O O\nat O O\nthe O O\ndedicated O O\nSF Name Name\nsite O O\n: O O\nhttp://salesforce.stackexchange.com O O\n\nI O O\nwant O O\nto O O\nmake O O\na O O\nsearch O O\nfunction O O\nto O O\nmy O O\nandroid Name Name\napp O O\n. O O\n\nI O O\nwant O O\nthe O O\nthings O O\nthat O O\nyou O O\nare O O\ngoing O O\nto O O\nsearch O O\nfrom O O\nin O O\nthe O O\napp O O\n, O O\nnot O O\na O O\ndatabase O O\nor O O\nsomething O O\nlike O O\nthat O O\n! O O\n\n:) O O\nSo O O\nyeah O O\n, O O\nmaby O O\nsomeone O O\ncould O O\nlink O O\nme O O\na O O\ntutorial O O\nor O O\nsomething O O\n? O O\n\n:) O O\n\nThanks O O\n! O O\n\n( O O\nREALLY O O\nsorry O O\nfor O O\nbad O O\nenglish O O\n! O O\n) O O\n\nYou O O\nshould O O\nlook O O\nat O O\nthis O O\ntutorial O O\n: O O\n\nsearching O O\nemployees O O\n\nand O O\nthis O O\none O O\nfrom O O\nandroid Name Name\ndeveloper Name Name\nsite Name Name\n\n( O O\nI O O\ndo O O\nhope O O\nmy O O\nquestion O O\nstill O O\nfits O O\ninto O O\nwhat O O\nis O O\nallowed O O\nto O O\nask O O\nhere O O\n) O O\n\nHaving O O\nsuccessfully O O\ndeveloped O O\nand O O\ndeployed O O\niPhone Name Name\napplications O O\nusing O O\nMonoTouch Name Name\n, O O\nI O O\nwas O O\nlooking O O\nfor O O\nways O O\nto O O\ndo O O\nit O O\nfor O O\nOS Name Name\nX Name Name\n, O O\ntoo O O\n. O O\n\nWhat O O\nI O O\nfound O O\nwas O O\nMonoMac Name Name\n( O O\nalso O O\non O O\nGithub Name Name\n) O O\nwhich O O\nlooks O O\npromising O O\nto O O\nme O O\n. O O\n\nSince O O\nmost O O\nstuff O O\nseems O O\nto O O\nbe O O\nfrom O O\n2010/2011 O O\nI O O\n'm O O\nunsure O O\nwhether O O\nthis O O\nis O O\nstill O O\nup-to-date O O\n. O O\n\nMy O O\nquestions O O\ntherefore O O\nare O O\n: O O\n\nAre O O\nthere O O\nany O O\nreal-world O O\napplications O O\nout O O\nthere O O\nthat O O\nwere O O\nrecently O O\nsuccessfully O O\nsubmitted O O\nto O O\nthe O O\nMac Name Name\nOS Name Name\nX Name Name\nAppStore Name Name\n? O O\n\nWould O O\nyou O O\nrecommend O O\nusing O O\nit O O\nfor O O\ncommercial O O\nprojects O O\nnowadays O O\n? O O\n\nAre O O\nthere O O\nany O O\nworking O O\nalternatives O O\n? O O\n\n( O O\nbeside O O\nlearning O O\nObjective Name Name\nC Name Name\n, O O\nwhich O O\nI O O\n'm O O\ncurrently O O\ndoing O O\n) O O\n\nI O O\nstumbled O O\nupon O O\nan O O\ninteresting O O\nbehavior O O\nin O O\nthe O O\nTrackbar Name Name\nWinforms Name Name\ncontrol O O\n. O O\n\nOn O O\na O O\nhorizontal O O\ntrackbar Name Name\n, O O\nthe O O\nleft/right O O\narrow O O\nkeys O O\nwork O O\nas O O\nexpected O O\n. O O\n\n( O O\nLeft O O\narrow O O\nmoves O O\nthe O O\nslider Name Name\nto O O\nthe O O\nleft O O\nand O O\ndecreases O O\nthe O O\nvalue O O\n, O O\nright O O\narrow O O\ndoes O O\nthe O O\nopposite O O\n) O O\n\nIt O O\nis O O\nalso O O\npossible O O\nto O O\nmanipulate O O\nthe O O\nslider Name Name\nusing O O\nthe O O\nup/down O O\narrow O O\nkeys O O\nand O O\nPageUp/PageDown O O\n. O O\n\nHowever O O\n, O O\nthe O O\nbehavior O O\nseem O O\ncounter-intuitive O O\n: O O\narrow O O\nup O O\nand O O\npage O O\nup O O\nmove O O\nthe O O\nslider Name Name\nto O O\nthe O O\nleft O O\nand O O\nconsequently O O\ndecrease O O\nthe O O\nvalue O O\n. O O\n\nArrow O O\ndown O O\nand O O\npage O O\ndown O O\nmove O O\nthe O O\nslider Name Name\nto O O\nthe O O\nright O O\nand O O\nincrease O O\nthe O O\nvalue O O\n. O O\n\nWhen O O\nusing O O\na O O\nvertical O O\ntrackbar Name Name\n, O O\nup/down O O\nkeys O O\nwork O O\nas O O\nexpected O O\nbut O O\narrow O O\nleft O O\n= O O\nincrease O O\nand O O\narrow O O\nright O O\n= O O\ndecrease O O\n. O O\n\nThis O O\nis O O\nthe O O\ndefault O O\nbehavior O O\nin O O\nC# Name Name\nWinforms Name Name\n, O O\nand O O\napparently O O\nin O O\nnative O O\nWindows Name Name\n. O O\n\n( O O\nNot O O\nsure O O\nabout O O\nthe O O\nlatter O O\n, O O\nthe O O\nslider Name Name\nfor O O\nUAC Name Name\ndoes O O\nwork O O\nthis O O\nway O O\n) O O\n\nIn O O\nWPF Name Name\nthe O O\nslider Name Name\ncontrol O O\nworks O O\n\" O O\nproperly O O\n\" O O\ni.e O O\n. O O\nthe O O\nvalue O O\nincreases O O\nwith O O\narrow O O\nup O O\n, O O\narrow O O\nright O O\nund O O\nPgUp O O\n. O O\n\nAlso O O\nthe O O\nslider Name Name\nin O O\nInternet Name Name\nExplorer Name Name\nPrivacy O O\nsettings O O\nworks O O\nproperly O O\n. O O\n\nNot O O\nsure O O\nwhy O O\n, O O\nbut O O\nI O O\nsuspect O O\na O O\ncustom O O\nhandling O O\nof O O\nthe O O\nkeys O O\n. O O\n\nFrom O O\nan O O\nergonomics O O\nstandpoint O O\n, O O\nit O O\nis O O\nclear O O\nthat O O\nup O O\n, O O\nright O O\n, O O\nforward O O\nand O O\nclockwise O O\nmanipulation O O\nof O O\nanything O O\nis O O\nsupposed O O\nto O O\nincrease O O\nthe O O\nvalue O O\n. O O\n\n( O O\nThis O O\nnothing O O\nnew O O\n, O O\ncompare O O\nA O O\nGuide O O\nto O O\nHuman O O\nFactors O O\nand O O\nErgonomics O O\n, O O\nSecond O O\nEdition O O\nPage O O\n100 O O\n) O O\n\nNow O O\nto O O\nmy O O\nQuestion O O\n: O O\nDoes O O\nanyone O O\nknow O O\nwhy O O\nthis O O\nis O O\nthe O O\nway O O\nit O O\nis O O\n? O O\n\nI O O\n'm O O\nstrongly O O\ninclined O O\nto O O\nthink O O\nthis O O\nbehavior O O\nwas O O\nchosen O O\nto O O\nkeep O O\nthe O O\ntrackbar Name Name\ncontrol Name Name\nconsistent O O\nwith O O\nthe O O\nscrollbar Name Name\ncontrol Name Name\n. O O\n\nThese O O\ntwo O O\ncontrols O O\nhave O O\nvery O O\nmuch O O\nin O O\ncommon O O\n( O O\ntheir O O\nthumb O O\ncan O O\nbe O O\nmoved O O\nby O O\n\" O O\nline O O\n\" O O\nor O O\n\" O O\npage O O\n\" O O\nincrements O O\n, O O\nboth O O\ncontrols O O\ncan O O\nbe O O\nlaid O O\nout O O\nhorizontally O O\nor O O\nvertically O O\n, O O\nboth O O\nuse O O\nWM_HSCROLL Name Name\nand O O\nWM_VSCROLL Name Name\nto O O\nnotify O O\ntheir O O\nparent O O\nwhen O O\nthe O O\nthumb O O\nposition O O\nchanges O O\n) O O\n. O O\n\nFrom O O\nthe O O\ncontrol O O\n's O O\npoint O O\nof O O\nview O O\n, O O\nthe O O\nthumb O O\ncan O O\nmove O O\n\" O O\nup O O\n\" O O\nor O O\n\" O O\ndown O O\n\" O O\n( O O\n\" O O\nleft O O\n\" O O\nor O O\n\" O O\nright O O\n\" O O\nrespectively O O\n) O O\n. O O\n\nThe O O\nkeyboard Name Name\nnavigation O O\nfor O O\nscrollbars Name Name\nused O O\nLeft O O\nand O O\nUp O O\nfor O O\nupwards O O\n( O O\nleftwards O O\n) O O\nmovement O O\n, O O\nas O O\nwell O O\nas O O\nRight O O\nand O O\nDown O O\nfor O O\ndownwards O O\n( O O\nrightwards O O\n) O O\nmovement O O\n. O O\n\nIt O O\nmust O O\nhave O O\nmade O O\nsense O O\nfor O O\nthe O O\ntrackbar Name Name\ncontrol Name Name\nto O O\nfollow O O\nthe O O\nsame O O\nconventions O O\n, O O\nso O O\ndevelopers O O\nused O O\nto O O\nthe O O\nscrollbar Name Name\ncontrol Name Name\n's O O\nimplementation O O\ncould O O\napply O O\nthe O O\nsame O O\nprinciples O O\nto O O\nthe O O\ntrackbar Name Name\ncontrol Name Name\n. O O\n\nI O O\n'm O O\nexperimenting O O\nwith O O\nOrientDB Name Name\nand O O\nI O O\nwould O O\nlike O O\nto O O\nmodel O O\na O O\nnon O O\ndisjunctive O O\ninheritance O O\n. O O\n\nFor O O\nexample O O\n: O O\n\n- O O\nthere O O\nare O O\nPerson Name Name\n\n- O O\na O O\nStudent Name Name\nis O O\na O O\nPerson Name Name\n\n- O O\na O O\nWorker Name Name\nis O O\na O O\nPerson Name Name\n\n- O O\n\" Name Name\nAlberto Name Name\n\" Name Name\nis O O\nboth O O\na O O\nStudent Name Name\nand O O\nWorker Name Name\n. O O\n\nIs O O\nit O O\npossible O O\nto O O\nmodel O O\nthis O O\nsituation O O\nwith O O\nonly O O\nthe O O\nthree O O\nclasses O O\nI O O\ndefined O O\n( O O\nStudent Name Name\n, O O\nWorker Name Name\n, O O\nPerson Name Name\n) O O\nor O O\nshall O O\nI O O\nintroduce O O\na O O\nnew O O\nclass O O\nWorkingStudent Name Name\n, O O\nextending O O\nboth O O\nWorker Name Name\nand O O\nStudent Name Name\n, O O\ncontaining O O\n\" Name Name\nAlberto Name Name\n\" Name Name\n? O O\n\nI O O\nsuppose O O\na O O\nvertex Name Name\ncannot O O\nbe O O\ninstance O O\nof O O\nmore O O\nthan O O\none O O\nclass O O\nsince O O\nthe O O\nsystem O O\nwould O O\nnot O O\nknow O O\nin O O\nwhich O O\ncluster Name Name\nto O O\nput O O\nit O O\nbut O O\nI O O\nhave O O\nn't O O\nfound O O\nan O O\nexplicit O O\nanswer O O\nto O O\nmy O O\nquestion O O\n, O O\nyet O O\n. O O\n\nCheers O O\n, O O\n\nAlberto O O\n( O O\nthe O O\nworking O O\nstudent O O\n:-) O O\n) O O\n\nI O O\nthink O O\nyou O O\nmay O O\ntrying O O\nto O O\nsolve O O\nthis O O\nthe O O\nwrong O O\nway O O\n. O O\n\nFor O O\ninstance O O\n, O O\nAlberto Name Name\nwill O O\npresumably O O\nalways O O\nbe O O\na O O\nPerson Name Name\n. O O\n\nBut O O\nwhen O O\nAlberto Name Name\ngraduates O O\n, O O\nhe O O\nwill O O\nno O O\nlonger O O\nbe O O\na O O\nStudent Name Name\n. O O\n\nIn O O\nfact O O\n, O O\nhe O O\nmight O O\nalso O O\nlose O O\nhis O O\njob O O\nand O O\nno O O\nlonger O O\nbe O O\na O O\nWorker Name Name\n. O O\n\nMoving O O\nhim O O\nfrom O O\none O O\nclass O O\nto O O\nanother O O\nis O O\na O O\nconsiderable O O\nissue O O\n. O O\n\nI O O\n'd O O\ncreate O O\nseparate O O\n, O O\nsmaller O O\nnodes O O\nof O O\nWorker Name Name\nand O O\nStudent Name Name\n. O O\n\nThen O O\ncreate O O\nedges O O\nfrom O O\nPerson Name Name\nto O O\nWorker Name Name\n, O O\nor O O\nPerson Name Name\nto O O\nStudent Name Name\n. O O\n\nThe O O\nedge O O\ncan O O\nbe O O\nnamed O O\n\" O O\nIs O O\nA O O\n\" O O\n. O O\n\nNow O O\n, O O\nit O O\nis O O\nvery O O\neasy O O\nto O O\nadd O O\nnew O O\ncategories O O\n, O O\nfor O O\ninstance O O\n\" O O\nParent O O\n\" O O\nor O O\n\" O O\nSpouse O O\n\" O O\n, O O\nwithout O O\nhaving O O\nto O O\nworry O O\nabout O O\nchanging O O\nyour O O\nclass O O\ninheritance O O\n. O O\n\nOne O O\nof O O\nthe O O\nfantastic O O\nadvantages O O\nof O O\na O O\nGraph Name Name\ndatabase Name Name\n.. O O\n. O O\n\nin O O\nOrientDb Name Name\na O O\nvertex Name Name\ncan O O\nbe O O\nan O O\ninstance O O\nof O O\nmultiple O O\nclass O O\n. O O\n\nUse O O\nthis O O\ncommand O O\n\nKind O O\nregards O O\n. O O\n\nI O O\nam O O\ngetting O O\na O O\nNet::SMTPAuthenticationError Name Name\nboth O O\non O O\nmy O O\ndevelopment O O\n( O O\nlocal O O\n) O O\nenv O O\nas O O\nwell O O\nas O O\nwhen O O\nI O O\nhost O O\non O O\nHeroku Name Name\n, O O\nwhen O O\nI O O\ntry O O\nto O O\nsend O O\nmails O O\nfrom O O\nmy O O\nrails Name Name\napplication O O\n. O O\n\nThis O O\nstarted O O\nafter O O\nsending O O\nthe O O\nfirst O O\ncouple O O\nof O O\nemail O O\n( O O\n2 O O\nmails O O\nto O O\nbe O O\nspecific O O\n) O O\n. O O\n\nAll O O\nresearch O O\nso O O\nfar O O\nmade O O\nme O O\nthink O O\nthat O O\nthis O O\nshould O O\ncould O O\nbe O O\ndue O O\nto O O\nhaving O O\na O O\n2-factor O O\nauth O O\nenabled O O\non O O\nthe O O\ngmail Name Name\naccount O O\n, O O\nbut O O\nwhen O O\nI O O\nchecked O O\nthe O O\naccount O O\n, O O\n2-factor O O\nautt O O\nwas O O\nnot O O\nenabled O O\n. O O\n\nbelow O O\nis O O\nmy O O\nsmtp O O\nsetting O O\nboth O O\nin O O\nconfig/development.rb Name Name\nand O O\nconfig/production.rb Name Name\n: O O\n\nMy O O\nmailer O O\nis O O\nset O O\nup O O\nas O O\nfollow O O\n: O O\n\nOn O O\ncalling O O\nPushWatir::StackoMailer.success_mail.deliver_now Name Name\n! Name Name\n, O O\nI O O\nget O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\nWhat O O\ncould O O\nbe O O\ncausing O O\nthis O O\n? O O\n\nHow O O\ncan O O\nI O O\nmake O O\nthis O O\nwork O O\n? O O\n\nBig O O\nthanks O O\nfor O O\nresponses O O\n\nOne O O\nof O O\nthe O O\nsolutions O O\nthat O O\nworked O O\nfor O O\nme O O\nis O O\nby O O\nallowing O O\n\" O O\nless O O\nsecure O O\napps O O\n\" O O\nfrom O O\nmy O O\ngoogle Name Name\naccount O O\n. O O\n\nSteps O O\nto O O\ndo O O\nthis O O\nare O O\nas O O\nfollow O O\n: O O\n- O O\n\nFrom O O\nyour O O\nGoogle Name Name\nAccount O O\nsettings O O\n, O O\nfind O O\n\" O O\nSign O O\nIn O O\n& O O\nSecurity O O\n\" O O\n-> O O\n\" O O\nAllow O O\nless O O\nsecure O O\napps O O\n\" O O\n, O O\nenable O O\nit O O\n. O O\n\nReference O O\n- O O\nhttps://support.google.com/accounts/answer/6010255 O O\n\nI O O\nam O O\ncurrently O O\nbuilding O O\na O O\nmodule O O\nfor O O\nan O O\necommerce O O\nwebsite O O\n( O O\nLemonstand Name Name\n) O O\n. O O\n\nMy O O\nshop O O\nsells O O\nboth O O\nnormal O O\nbooks O O\nand O O\nebooks O O\n, O O\nand O O\ncharge O O\ndifferent O O\nrates O O\nof O O\nfor O O\nshipping O O\nbased O O\non O O\nthe O O\nsubtotal O O\nof O O\nall O O\nitems O O\nin O O\nthe O O\ncart O O\n( O O\n$7 O O\nshipping O O\ncost O O\nfor O O\nsubtotal O O\nof O O\nless O O\nthan O O\n$20 O O\n, O O\n$14 O O\nshipping O O\ncost O O\nfor O O\nbetween O O\n$20 O O\nand O O\n$ O O\n50 O O\n.. O O\netc O O\n) O O\n. O O\n\nCurrently O O\nthe O O\nwebsite O O\njust O O\nuses O O\nthe O O\nsubtotal O O\nof O O\nall O O\nitems O O\nin O O\nthe O O\ncart O O\nto O O\ndetermine O O\nwhich O O\nrate O O\nshould O O\nbe O O\napplied O O\n. O O\n\nThe O O\nproblem O O\nis O O\n, O O\nI O O\nwant O O\nonly O O\nthe O O\nsubtotal O O\nof O O\nnormal O O\nbooks O O\nto O O\nbe O O\nused O O\nfor O O\ncalculating O O\nshipping O O\n, O O\nbecause O O\nobviously O O\nebooks O O\ndo O O\nn't O O\nneed O O\nshipping O O\n. O O\n\nLemonstand Name Name\nplatform O O\nhas O O\nsome O O\nbuilt_in O O\nfunctions O O\nthat O O\nI O O\n'm O O\nusing O O\nto O O\nhelp O O\nwith O O\nthis O O\n. O O\n\nupdate_shipping_quote Name Name\nfunction O O\nis O O\ncalled O O\njust O O\nbefore O O\nshipping O O\ncost O O\nis O O\ncalculated O O\n. O O\n\nIt O O\nwill O O\nbe O O\nused O O\nto O O\nchange O O\nthe O O\nsubtotal O O\nof O O\ncart O O\nitems O O\nso O O\nthat O O\nshipping O O\ncost O O\ncan O O\nbe O O\ncalculated O O\nusing O O\nthe O O\nsubtotal O O\nof O O\nnon-ebooks O O\ninstead O O\n. O O\n\nHere O O\nis O O\nthe O O\nAPI Name Name\ndocumentation O O\nfor O O\nthe O O\nfunction O O\n: O O\nhttps://v1.lemonstand.com/api/event/shop:onupdateshippingquote/ O O\n\nHere O O\nis O O\nthe O O\nbit O O\nof O O\ncode O O\nthat O O\n's O O\ngiving O O\nme O O\ntrouble O O\n. O O\n\nI O O\nwant O O\nto O O\nknow O O\nif O O\nthe O O\nvalue O O\nI O O\nget O O\nat O O\nthe O O\nend O O\n($non_ebook_subtotal) Name Name\nactually O O\ncontains O O\nthe O O\nvalue O O\nit O O\n's O O\nsupposed O O\nto O O\n. O O\n\nIf O O\nanyone O O\ncan O O\ncome O O\nup O O\nwith O O\na O O\nbetter O O\nmethod O O\nfor O O\ndoing O O\nwhat O O\nI O O\n'm O O\ntrying O O\nto O O\ndo O O\n, O O\nplease O O\nshare O O\n. O O\n\npublic Name Name\nfunction Name Name\nupdate_shipping_quote Name Name\n( Name Name\n$shipping_option Name Name\n, Name Name\n$params Name Name\n) Name Name\n{ Name Name\n\nThanks O O\n\nI O O\nwant O O\nto O O\nexecute O O\na O O\nfunction O O\nthat O O\nis O O\nsent O O\nover O O\nAJAX Name Name\nrequest Name Name\nfrom O O\nthe O O\nserver Name Name\n. O O\n\nThe O O\nfunction O O\nbody O O\nis O O\nn't O O\nin O O\nthe O O\ncalling O O\npage O O\n. O O\n\nFor O O\nexample O O\n: O O\n( O O\nthe O O\ncomplete O O\ncode O O\nis O O\ngiven O O\nbelow O O\n) O O\n\n1.calling O O\nPHP Name Name\nscript O O\n: O O\n\n2.ajax_js2.php Name Name\nscript O O\n: O O\n\nI O O\nknow O O\nputting O O\nthe O O\nfunction O O\ndefinition O O\nof O O\n\" O O\ntest Name Name\n\" O O\nin O O\nthe O O\ncalling O O\nscript O O\nwill O O\ndo O O\n. O O\n\nBut O O\nI O O\nwant O O\nto O O\nkeep O O\nit O O\nin O O\nthe O O\nsecond O O\nscript.What O O\nshould O O\nI O O\ndo O O\n? O O\n\nThe O O\nserver Name Name\nreturns O O\nthe O O\nspan Name Name\nas O O\na O O\nresponse O O\nto O O\nthe O O\nclient Name Name\n. O O\n\nWhile O O\nclicking O O\nupon O O\nthe O O\nspan Name Name\n\" Name Name\nTest Name Name\nAJAX Name Name\n\" Name Name\nthe O O\nfunction O O\nshould O O\nbe O O\ncalled O O\n. O O\n\n<script> Name Name\ntags O O\ninserted O O\ninto O O\nthe O O\nDOM Name Name\nwill O O\nnot O O\nbe O O\nexecuted O O\n, O O\nunless O O\nyou O O\nrun O O\neval() Name Name\n. O O\n\nRead O O\nmore O O\nhere O O\n: O O\nCan O O\nscripts O O\nbe O O\ninserted O O\nwith O O\ninnerHTML Name Name\n? O O\n\nSo O O\nin O O\nyour O O\ncase O O\n, O O\ntest() Name Name\nwill O O\nbe O O\nundefined O O\nwhen O O\nyou O O\ntry O O\nto O O\nclick O O\non O O\nthe O O\nspan Name Name\nbecause O O\nthe O O\nscript O O\ncode O O\nhas O O\nnot O O\nbeen O O\nexecuted O O\n( O O\nthus O O\nnever O O\ndefined O O\nthe O O\ntest Name Name\nfunction O O\n) O O\n. O O\n\nYou O O\ncan O O\nget O O\naround O O\nit O O\nusing O O\nsomething O O\nlike O O\nthis O O\n( O O\nafter O O\nthe O O\nDOM O O\ninjection O O\n) O O\n: O O\n\n( O O\np.s O O\n. O O\n\neval Name Name\nis O O\nnot O O\nevil O O\n) O O\n\nI O O\nam O O\nfrom O O\nbrazil O O\nand O O\nim O O\ntrying O O\nto O O\ngenerate O O\na O O\nkeystore Name Name\nand O O\nafter O O\ngoing O O\nto O O\nthe O O\nbin Name Name\nof O O\nmy O O\njre7/bin Name Name\nin O O\nhere O O\nits O O\n\" O O\nC:\\Program Name Name\nFiles Name Name\n\\Java\\jdk1.7.0_51\\bin Name Name\n\" O O\ni O O\ntry O O\nto O O\nrun O O\nthis O O\ncode O O\n: O O\n\nBut O O\nit O O\nis O O\nasking O O\nme O O\nfor O O\na O O\npassword O O\nafter O O\nthat O O\nand O O\ni O O\ncant O O\ntype O O\nanything O O\nlike O O\n, O O\ni O O\npressed O O\nall O O\nthe O O\nkeyboard Name Name\nkeys O O\nand O O\nnothing O O\nwas O O\nwriten O O\nall O O\ni O O\ncan O O\ndo O O\nis O O\npress O O\nenter O O\nand O O\nthe O O\nkey O O\nis O O\nnot O O\ngenerated O O\n.. O O\n. O O\nHas O O\nanyone O O\never O O\nwent O O\nthrough O O\nthis O O\n? O O\n\nIn O O\nportuguese O O\nhe O O\nasks O O\nme O O\nfor O O\n: O O\n\" O O\nInforme O O\na O O\nsenha O O\nda O O\nárea O O\nde O O\narmazenamento O O\nde O O\nchaves O O\n: O O\n\" O O\n\nYou O O\nhave O O\nto O O\ntype O O\npassword O O\n, O O\nwhich O O\nwill O O\nbe O O\nused O O\nto O O\nencrypt O O\nthe O O\nkey Name Name\nstore Name Name\nand O O\nthen O O\nconfirm O O\nit O O\n. O O\n\nPasswords O O\nare O O\nnot O O\nshadowed O O\nto O O\nthe O O\nconsole Name Name\n, O O\nso O O\nit O O\nlooks O O\nempty O O\nfor O O\nyou O O\n. O O\n\nYou O O\nmay O O\nspecify O O\npassword O O\nin O O\nthe O O\ncommand Name Name\nline Name Name\nitself O O\nwith O O\nstorepass Name Name\nand O O\nkeypass Name Name\nparametrs O O\n\nstorepass Name Name\nis O O\nthe O O\npassword O O\nto O O\nencrypt O O\nthe O O\nwhole O O\nkey O O\nstore O O\n, O O\nand O O\nkeypass Name Name\nis O O\nused O O\nto O O\nencrypt O O\nthe O O\nkey O O\nentry O O\n. O O\n\nTheir O O\nvalues O O\ndo O O\nnot O O\nhave O O\nto O O\nbe O O\nthe O O\nsame O O\n. O O\n\nif O O\nin O O\ndebug O O\nmode O O\nuse O O\nandroid Name Name\n\nI O O\nhope O O\nit O O\nhelped O O\nyou O O\n\nSo O O\nI O O\nstart O O\nmy O O\nthread Name Name\nlike O O\nthis O O\n: O O\n\nAnd O O\nthis O O\nfunction O O\nhas O O\na O O\nloop O O\nthat O O\nneeds O O\nto O O\nexecute O O\nonce O O\na O O\nsecond O O\n: O O\n\nHow O O\ndo O O\nI O O\nmake O O\nthis O O\nthread Name Name\nsleep O O\nwithout O O\npausing O O\nmy O O\nmain O O\nthread Name Name\n? O O\n\nRef O O\n: O O\nhttps://msdn.microsoft.com/en-us/library/d00bd51t(v=vs.110).aspx O O\n\nAccording O O\nto O O\nMSDN Name Name\n, O O\nThread.Sleep Name Name\npauses O O\nthe O O\ncurrent O O\nthread Name Name\nfor O O\na O O\ngiven O O\namount O O\nof O O\ntime O O\n, O O\ni.e O O\n. O O\nthe O O\nthread Name Name\nin O O\nwhich O O\nthe O O\ncurrent O O\nfunction O O\nis O O\nrun Name Name\n. O O\n\nIn O O\nNodeJS Name Name\nHapi Name Name\n, O O\nhow O O\ndo O O\nI O O\nforward O O\na O O\nroute O O\nto O O\nanother O O\nroute O O\n, O O\nwithout O O\nan O O\nHTTP O O\nredirect O O\n? O O\n\nFor O O\nexample O O\n, O O\nI O O\nwant O O\nroot O O\nrequest Name Name\n('/') Name Name\nto O O\nget O O\nthe O O\nindex.html Name Name\nfrom O O\nmy O O\nstatic O O\nroutes O O\nhandler O O\n. O O\n\nSo O O\n/ Name Name\nwill O O\nget O O\nthe O O\nsame O O\nreply O O\nas O O\n/public/index.html Name Name\n. O O\n\nAs O O\nfar O O\nas O O\nI O O\nknow O O\nthere O O\n's O O\nno O O\nsuch O O\nfunctionality O O\ninside O O\nthe O O\nhandler O O\nfunction O O\nof O O\na O O\nroute O O\n. O O\n\nThe O O\nway O O\nto O O\ndo O O\nthis O O\nin O O\nHapi Name Name\nis O O\nby O O\nusing O O\na O O\nserver Name Name\nextension O O\n: O O\n\nI O O\nhave O O\na O O\nunique O O\nneed O O\nwhere O O\nI O O\nneed O O\nto O O\nperform O O\nreleases O O\nfrom O O\nTeam Name Name\nServices Name Name\nusing O O\na O O\nRelease O O\nPipeline O O\nand O O\nartifacts O O\nthat O O\nhave O O\nbeen O O\ncreated O O\nin O O\na O O\nprevious O O\nexternal O O\nbuild O O\n. O O\n\nI O O\nhave O O\nthe O O\nartifacts O O\nthat O O\nwere O O\ncreated O O\n, O O\ndacpacs Name Name\nand O O\nwebsites O O\nect O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\ndeploy O O\nthese O O\nitems O O\nusing O O\nthe O O\nfeatures O O\nin O O\nrelease O O\nPipelines O O\nbut O O\nartifact O O\nsources O O\nonly O O\ncome O O\nfrom O O\na O O\nbuild O O\nor O O\nsome O O\nother O O\nversion O O\ncontrol O O\n. O O\n\nMy O O\napproach O O\n( O O\nhack O O\n) O O\nwas O O\nto O O\nuse O O\na O O\nbuild O O\nto O O\ncopy O O\nthe O O\nexternal O O\nfiles O O\nand O O\npublish O O\nthem O O\ninto O O\nthe O O\nartifact O O\ncontainer O O\nfor O O\nthe O O\nbuild O O\n. O O\n\nI O O\ncould O O\nthen O O\nuse O O\nthe O O\nrelease O O\npipelines O O\nto O O\ndo O O\nmy O O\nreleases O O\n. O O\n\nBut O O\n. O O\n. O O\n\nBuild O O\ncopy O O\ntasks O O\nonly O O\nseem O O\nto O O\nwork O O\nwith O O\npaths O O\ninto O O\na O O\nrepo O O\n. O O\n\nMy O O\nfall O O\nback O O\nwill O O\nbe O O\nto O O\nuse O O\nthe O O\nrelease O O\npipeline O O\nand O O\npowershell Name Name\nto O O\ndo O O\nthe O O\nreleases O O\nwith O O\nthese O O\nexternally O O\ncreated O O\nartifacts O O\n. O O\n\nI O O\nwould O O\nsure O O\nlike O O\nto O O\navoid O O\nthis O O\nsince O O\nthere O O\nis O O\nnice O O\ncapability O O\nin O O\nthe O O\nrelease O O\npipeline O O\ntasks O O\n. O O\n\nThis O O\nis O O\na O O\ncompliance O O\nrequirement O O\nmy O O\nfirm O O\nhas O O\nwhich O O\nresults O O\nin O O\nthe O O\nrather O O\ncrazy O O\npost O O\n. O O\n\nAny O O\nhelp O O\nwould O O\nreally O O\nbe O O\nappreciated O O\n. O O\n\nYou O O\ncan O O\nuse O O\nCopy O O\nFiles O O\ntask O O\nand O O\nPublish O O\nBuild O O\nArtifacts O O\ntask O O\nfor O O\nyour O O\nbuild O O\ndefinition O O\n. O O\n\nCopy O O\nFiles O O\ntask O O\n\nSource O O\nFolder O O\n: O O\nyou O O\ncan O O\nspecify O O\nthe O O\nfolder O O\nwhich O O\nhas O O\nyour O O\nexternal O O\nbuild O O\nartifacts O O\n. O O\n\nSuch O O\nas O O\nC:\\project\\a Name Name\n. O O\n\nContents O O\n: O O\nyou O O\ncan O O\nuse O O\nwildcards O O\nto O O\nspecify O O\nwhich O O\nfiles O O\nto O O\ncopy O O\n. O O\n\nSuch O O\nas O O\n**\\* Name Name\n.dll Name Name\n, O O\nthis O O\nwill O O\ncopy O O\nall O O\n* Name Name\n.dll Name Name\nfiles O O\nin O O\nC:\\project\\a Name Name\nand O O\nit O O\n's O O\nsubfilder O O\n. O O\n\nTarget O O\nFolder O O\n: O O\nwhere O O\nyou O O\nwant O O\nto O O\ncopy O O\nthese O O\nfiles O O\n. O O\n\nUsually O O\nit O O\n's O O\n$(build.artifactstagingdirectory) Name Name\n. O O\n\nPublish O O\nBuild O O\nArtifacts O O\ntask O O\n\nPath O O\nto O O\nPublish O O\n: O O\nset O O\nas O O\nthe O O\nsame O O\nwith O O\nTarget O O\nfolder O O\nin O O\nCopy O O\nfiles O O\ntask O O\n. O O\n\nSuch O O\nas O O\n$(build.artifactstagingdirectory) Name Name\n. O O\n\nNote O O\n: O O\nCopy O O\nfiles O O\ntask O O\nwill O O\nfind O O\nthe O O\nsource O O\nfolder O O\nin O O\nthe O O\nmachine O O\nwhere O O\nthe O O\nprivate O O\nagent O O\nis O O\nlocated O O\n. O O\n\nI O O\nhave O O\na O O\nURL O O\nlike O O\n: O O\n\nThe O O\nhash O O\nwill O O\nautomatically O O\nopen O O\na O O\nspecific O O\ntab Name Name\non O O\nthe O O\npage Name Name\n. O O\n\nI O O\nneed O O\nto O O\nwork O O\nwith O O\na O O\n_GET Name Name\nvariable O O\n, O O\nand O O\nthe O O\nURL O O\nis O O\nlike O O\n: O O\n\nThen O O\non O O\nthe O O\npage Name Name\n, O O\nI O O\nhave O O\n: O O\n\nbut O O\n... O O\nI O O\nam O O\ngetting O O\nan O O\nundefined O O\nindex O O\nerror O O\n. O O\n\nHow O O\ndo O O\nI O O\nget O O\nPHP Name Name\nto O O\nrecognize O O\nthe O O\nvariable O O\n? O O\n\nAnything O O\nafter O O\nthe O O\nhash O O\nis O O\nnot O O\nsent O O\nto O O\nthe O O\nserver Name Name\n. O O\n\nRegardless O O\n, O O\nyou O O\nshould O O\nprobably O O\nformat O O\nyour O O\nurl O O\nso O O\nyou O O\nsend O O\nthe O O\nGET O O\nparameters O O\ncorrectly O O\n. O O\n\nhttp://www.example.com/page.php#tabname?color=red O O\n\nshould O O\nbe O O\n\nhttp://www.example.com/page.php?color=red#tabname O O\n\nYou O O\nneed O O\nto O O\nput O O\nthe O O\nquery O O\nstring Name Name\nbefore O O\nthe O O\nhash O O\n: O O\n\nI O O\nhave O O\na O O\ndll Name Name\nand O O\nheader Name Name\nfiles O O\nbut O O\nnothing O O\nelse O O\n, O O\nand O O\nI O O\nwant O O\nto O O\nuse O O\nthe O O\nlibrary O O\n's O O\nfunctionality O O\nin O O\na O O\nC# Name Name\nproject O O\n. O O\n\nI O O\ncould O O\nnot O O\nuse O O\n\" O O\nDllImport Name Name\n\" O O\nbecause O O\nthe O O\nfunctions O O\nI O O\nwanted O O\nto O O\nuse O O\nreturn O O\nan O O\nobject O O\nwhose O O\nclass O O\nalso O O\nis O O\nof O O\nthe O O\nlibrary O O\n. O O\n\nThe O O\nwrapper O O\nexamples O O\nI O O\nfound O O\ninclude O O\nthe O O\nexamples O O\nwhich O O\nare O O\nwritten O O\nby O O\nknowing O O\nthe O O\nbody O O\nof O O\nthe O O\nheaders Name Name\n, O O\nbut O O\nI O O\ndo O O\nnot O O\nhave O O\nsource O O\nfiles O O\n. O O\n\nHow O O\ncan O O\nI O O\nuse O O\nthe O O\ndll Name Name\nand O O\nheader Name Name\nfiles O O\n? O O\n\nI O O\nwill O O\nbe O O\nthankful O O\nif O O\nanyone O O\ncan O O\nhelp O O\nme O O\n. O O\n\nI O O\nam O O\nprinting O O\nexcel Name Name\nlike O O\nthis O O\n: O O\n\nThe O O\ncontent O O\nis O O\nplain O O\nhtml Name Name\n. O O\n\nThe O O\nproblem O O\n, O O\nwhen O O\nI O O\ndownload O O\nthis O O\n, O O\nI O O\nget O O\nan O O\ninitial O O\nconfirmation Name Name\nbox Name Name\nwritten O O\n\nThe O O\nfile O O\nyou O O\nare O O\ntrying O O\nto O O\nopen O O\n' Name Name\nFile_name.xls Name Name\n' O O\n, O O\nis O O\nin O O\na O O\ndifferent O O\nformat O O\nthan O O\nspecified O O\nby O O\nthe O O\nfile O O\nextension O O\n. O O\n\nVerified O O\nthat O O\nthe O O\nfile O O\nis O O\nnot O O\ncorrupted O O\nand O O\nis O O\nfrom O O\na O O\ntrusted O O\nsource O O\nbefore O O\nopening O O\nthe O O\nfile. O O\n. O O\nDo O O\nyou O O\nwant O O\nto O O\nopen O O\nthe O O\nfile O O\nnow O O\n? O O\n\nWhen O O\nI O O\ndo O O\n' O O\nyes O O\n' O O\n, O O\nI O O\nget O O\nthis O O\n. O O\n\nBit O O\nstrange O O\n, O O\nany O O\ninput O O\nhere O O\nfriends O O\nplease O O\n? O O\n\nI O O\nalways O O\nuse O O\ncontent O O\ntype Name Name\n= Name Name\n\" Name Name\napplication/ms Name Name\n-excel Name Name\n\" Name Name\n\nWell O O\n, O O\nthis O O\none O O\nsuddenly O O\ngot O O\nsolved O O\n, O O\nI O O\ndo O O\nn't O O\nknow O O\nhow O O\n. O O\n\nThis O O\nis O O\nwhat O O\nI O O\ndid O O\n. O O\n\nI O O\ncopied O O\nand O O\npasted O O\ncodes O O\nof O O\na O O\ndifferent O O\npage Name Name\nwhere O O\nthe O O\nexcel Name Name\nthing O O\nwas O O\nworking O O\n. O O\n\nThen O O\n, O O\nI O O\nchanged O O\nthe O O\nvariables O O\nmanually O O\nto O O\nadapt O O\nthis O O\nwith O O\nthe O O\n2nd O O\npage Name Name\n. O O\n\nAfter O O\nsome O O\nhit O O\nand O O\ntry O O\n, O O\nit O O\nsuddenly O O\nworked O O\n. O O\n\nThanks O O\nfor O O\nall O O\nthe O O\nanswers O O\nanyway O O\n. O O\n\nPS O O\n. O O\n\nBy O O\nsolved O O\n, O O\nI O O\nmean O O\nthat O O\nexcel Name Name\nis O O\nnot O O\ncrushing O O\nanymore O O\n, O O\nthough O O\nI O O\nam O O\nstill O O\ngetting O O\nthe O O\nconfirm Name Name\nbox Name Name\nabout O O\nincorrect O O\nformat O O\n. O O\n\nScreen O O\nShot O O\nI O O\nam O O\ndeveloping O O\nan O O\napplication O O\nusing O O\nXamarin Name Name\nForms Name Name\nin O O\nVisual Name Name\nStudio Name Name\n2013 Name Name\n. O O\n\nI O O\nhave O O\nmanaged O O\nto O O\nchange O O\nthe O O\nHeader Name Name\nBackground Name Name\ncolor Name Name\nfor O O\nAndroid Name Name\nbut O O\nI O O\nam O O\nfailing O O\nto O O\ndo O O\nthe O O\nsame O O\nfor O O\nWindows Name Name\nproject O O\n. O O\n\nIt O O\ncomes O O\nwith O O\nthe O O\nDefault O O\nDark O O\ntheme O O\n. O O\n\nPlease O O\nAssist O O\nme O O\n. O O\n\nThank O O\nYou O O\n\nYour O O\nquestion O O\nis O O\nnot O O\nvery O O\nclear O O\nto O O\nme O O\n, O O\nbut O O\nI O O\nthink O O\nthat O O\nthis O O\nis O O\nwhat O O\nyou O O\nmean O O\n. O O\n\nWith O O\n\" O O\nHeader Name Name\nBackground Name Name\ncolor Name Name\n\" O O\nI O O\nthink O O\nyou O O\nmean O O\nthe O O\nbackground Name Name\ncolor Name Name\nof O O\nthe O O\ntitle O O\nof O O\na O O\npage O O\n. O O\n\nThis O O\nis O O\nthe O O\ncode O O\nI O O\nuse O O\nin O O\nmy O O\nXamarin.Forms Name Name\napplication O O\n. O O\n\nThe O O\ncode O O\nworks O O\non O O\nAndroid Name Name\n, O O\niOS Name Name\nand O O\nUWP Name Name\n. O O\n\nYou O O\ncan O O\nspecify O O\nthe O O\ncolor O O\nof O O\nthe O O\nbackground Name Name\ncolor Name Name\non O O\nevery O O\npage Name Name\n. O O\n\nThis O O\nis O O\nmy O O\ncode O O\n: O O\n\nIt O O\ndoes O O\nn't O O\nwork O O\n. O O\n\nWhen O O\nI O O\ndebug O O\nit O O\n( O O\ntrying O O\nto O O\nsearch O O\na O O\nnumber O O\nthat O O\nappears O O\nin O O\nan O O\narray Name Name\n) O O\n, O O\nI O O\nsee O O\nthat O O\nit O O\ngoes O O\ninto O O\nthe O O\nline O O\nof O O\n' O O\nreturn Name Name\nsize Name Name\n' O O\n, O O\nwhich O O\nit O O\nshould O O\ndo O O\n( O O\nside O O\nquestion O O\n- O O\nis O O\nthere O O\na O O\nway O O\nto O O\nput O O\nline O O\nnumbers O O\nin O O\nthe O O\ncode. O O\n. O O\n) O O\nbut O O\nthen O O\nit O O\nkeeps O O\ngoing O O\nto O O\nthe O O\nlast O O\nline O O\nand O O\nreturns O O\n-1 Name Name\n. O O\n\nHow O O\ncome O O\nI O O\nhave O O\na O O\nreturn Name Name\nand O O\nit O O\ndoes O O\nn't O O\ngo O O\nout O O\nof O O\nthe O O\nfunction O O\n? O O\n\nI O O\nfirst O O\ntried O O\nnot O O\nto O O\nput O O\nany O O\nreturn Name Name\nin O O\nthe O O\nend O O\nbecause O O\nI O O\nam O O\nnot O O\nsupposed O O\nto O O\nreach O O\nto O O\nthe O O\nend O O\n, O O\nbut O O\nthe O O\ncompiler Name Name\nsays O O\n\" O O\ncontrol O O\nreaches O O\nend O O\nof O O\nnon-void O O\nfunction O O\n\" O O\nso O O\nI O O\nadded O O\nthe O O\nlast O O\nreturn Name Name\n, O O\nbut O O\nobviously O O\nit O O\nis O O\nnot O O\nthe O O\nright O O\nthing O O\nto O O\ndo. O O\n. O O\n\nThanks O O\n\nYou O O\nshould O O\nreturn O O\nthe O O\nresults O O\nof O O\nthe O O\nrecursive O O\ncall O O\n\nReplaced O O\nrecursive O O\ncall O O\nto O O\n: O O\n\nCurrently O O\n, O O\nyou O O\nare O O\njust O O\ncalling O O\nthe O O\nfunction O O\nand O O\nignoring O O\nthe O O\nreturn O O\nvalue O O\n. O O\n\nIt O O\nis O O\nactually O O\nthe O O\nparent O O\ngoing O O\ninto O O\nreturn O O\n-1 Name Name\n\nIf O O\nyou O O\ngoto O O\nblgz.co Name Name\non O O\nfirefox Name Name\non O O\na O O\nmac Name Name\n, O O\nthe O O\nright O O\nside O O\nbar Name Name\nis O O\nsitting O O\non O O\ntop O O\nof O O\nthe O O\nmain O O\ncontent O O\n. O O\n\nIt O O\nworks O O\non O O\nfirefox Name Name\non O O\nwindows Name Name\n, O O\njust O O\nthe O O\nmac Name Name\nversion O O\n. O O\n\nI O O\nca O O\nn't O O\npinpoint O O\nwhat O O\nthe O O\nproblem O O\nis O O\n. O O\n\n=( O O\nAny O O\nhelp O O\nplease O O\n. O O\n\nreformat O O\nthe O O\ndiv Name Name\nhierarchy O O\nlike O O\nthis O O\n: O O\n\nand O O\nfloat O O\nthem O O\nall O O\nleft O O\n. O O\n\nthe O O\nissue O O\nis O O\nthat O O\nthe O O\n#content Name Name\n-inner Name Name\nis O O\nnow O O\ninside O O\n#content Name Name\nand O O\nas O O\nI O O\nunderstood O O\n, O O\nthe O O\nsidebar-second Name Name\nshould O O\nfloat O O\nto O O\nthe O O\n#content Name Name\n-inner Name Name\n. O O\n\nhowever O O\n, O O\nthe O O\nstructure O O\nof O O\ndivs Name Name\nseems O O\nto O O\nme O O\ntoo O O\nmuch O O\ncomplicated O O\nfor O O\nsuch O O\na O O\nsimple O O\nlayout. O O\n. O O\n\nUsing O O\ncore O O\ndata O O\n, O O\ndata O O\nis O O\nbeing O O\nfetched O O\nproperly O O\nand O O\nshown O O\nproperly O O\n, O O\nissue O O\nis O O\nwith O O\nthe O O\nsearch O O\nthat O O\nit O O\ndoes O O\nnot O O\nfilter O O\nthe O O\nresults O O\n, O O\nwhatever O O\nI O O\ntype O O\nin O O\nthe O O\nsearch Name Name\nbar Name Name\n, O O\nit O O\ndoes O O\nshow O O\nthe O O\nsame O O\ntable Name Name\nview O O\nwith O O\nsame O O\ndata O O\nin O O\nthe O O\nfiltered O O\nresults. O O\n. O O\n\nFetching O O\ndata O O\nfrom O O\ncore O O\ndata O O\n: O O\n\nSearch Name Name\nbar Name Name\nimplementation O O\n: O O\n\nHow O O\nto O O\nresolve O O\nthis O O\nissue O O\n? O O\n\nJust O O\nmake O O\ncode O O\nclear O O\nbefore O O\nand O O\ndefine O O\nevery O O\nmethods O O\n, O O\nyou O O\nare O O\njust O O\nsetting O O\npredicate O O\n, O O\nnot O O\nfiring O O\nquery O O\nfor O O\nit O O\n. O O\n\njust O O\nmake O O\nseparate O O\nmethod O O\nand O O\njust O O\npass O O\nsearch Name Name\ntext Name Name\nas O O\nparameter O O\nto O O\nthat O O\nmethod O O\nfor O O\npredicate O O\nand O O\nfire O O\nfetch O O\nquery O O\nthen O O\nreload O O\ntable Name Name\n. O O\n\nI O O\n'm O O\nbuilding O O\na O O\nform Name Name\nthat O O\nlet O O\nthe O O\nuser O O\nenter O O\ndatabase O O\nconnection O O\nparameters O O\n. O O\n\nOnce O O\nthe O O\nparameters O O\nare O O\ntyped O O\n\nthe O O\nuser O O\ncan O O\ntest O O\n( O O\nbtnTester Name Name\n) O O\nif O O\nconnection O O\ncan O O\nbe O O\nestablished O O\nwith O O\nits O O\nparameters O O\n. O O\n\nIn O O\nall O O\ncases O O\n, O O\na O O\nmessage O O\nis O O\nproduced O O\nfor O O\nthe O O\nuser O O\n. O O\n\nHere O O\nthe O O\nexample O O\nof O O\na O O\nfailed O O\nconnection O O\nattempt O O\nfrom O O\nbacking Name Name\nbean Name Name\ncode O O\n: O O\n\nHere O O\nis O O\nthe O O\nform O O\ncode O O\n. O O\n\nI O O\n'd O O\nlike O O\nthe O O\nmessage O O\nto O O\nappear O O\nin O O\na O O\np:message Name Name\n. O O\n\nUnfortunately O O\n, O O\nnothing O O\nhappen O O\n. O O\n\nNo O O\nmessage O O\n( O O\nconnection O O\nsuccessful O O\nor O O\nnot O O\n) O O\nis O O\ndisplayed O O\nafter O O\nthe O O\nbutton Name Name\n:\\ O O\n\nEven O O\nwith O O\nthe O O\nglobal Name Name\nattribute O O\nset O O\nto O O\nfalse Name Name\nor O O\ntrue Name Name\n. O O\n\nWhat O O\nam O O\nI O O\nmissing O O\n? O O\n\nI O O\nuse O O\na O O\ngrowl Name Name\ninstead O O\nof O O\na O O\nmessage O O\nfor O O\nsolving O O\nmy O O\nproblem O O\n. O O\n\nHere O O\n\" O O\nfor O O\n\" O O\nattribute O O\nwo O O\nn't O O\nwork O O\nfor O O\np:message Name Name\nuse O O\np:messages Name Name\ninstead O O\n. O O\n\nI O O\nhave O O\ninferred O O\nfrom O O\nmy O O\nsearches O O\nthat O O\nthe O O\nURI O O\nfor O O\na O O\nGoogle Name Name\nCalendar Name Name\nfeed O O\nthat O O\nlimits O O\nthe O O\ndate O O\nrange O O\nshould O O\ninclude O O\ntimeMin Name Name\nand O O\ntimeMax Name Name\nand O O\nshould O O\nalso O O\ninclude O O\nsingleEvents Name Name\nand O O\norderBy Name Name\n. O O\n\nThis O O\nis O O\nthe O O\nURI O O\nthat O O\nI O O\n've O O\nconstructed O O\n: O O\n\nhttps://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 O O\n\nRegardless O O\nof O O\nwhat O O\nquery O O\nparameters O O\nI O O\nput O O\nafter O O\nthe O O\nprojection O O\nvalue O O\n, O O\nI O O\nstill O O\nget O O\nback O O\nall O O\nevents O O\ndating O O\nfrom O O\n8/2008 O O\nthrough O O\nwhatever O O\nfuture O O\ndates O O\nI O O\nhave O O\nin O O\nthe O O\ncalendar Name Name\n. O O\n\nI O O\nreally O O\nam O O\n\" O O\nconstructing O O\n\" O O\nthis O O\nbased O O\non O O\nvery O O\nlittle O O\nknowledge O O\n. O O\n\nCan O O\nanyone O O\nset O O\nme O O\nstraight O O\n, O O\nplease O O\n? O O\n\nMastoll O O\n, O O\nI O O\nthink O O\nyou O O\nare O O\nusing O O\ncalendar Name Name\nv3 Name Name\n, O O\nis O O\nthat O O\nright O O\n? O O\n\nYou O O\nmay O O\ntry O O\n: O O\n\nhttps://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& O O\n\nYou O O\ncan O O\ntry O O\nusing O O\nstart-min Name Name\nand O O\nstart-max Name Name\ninstead O O\nof O O\ntimeMin Name Name\nand O O\ntimeMax Name Name\n. O O\n\nThis O O\nis O O\nthe O O\nparameter O O\nfor O O\ncalendar Name Name\nv2 Name Name\n, Name Name\nI O O\ndo O O\nn't O O\nwhy O O\n, O O\nbut O O\nv2 Name Name\nparameter O O\nworks O O\nfor O O\npublic O O\ncalendar Name Name\n. O O\n\nYou O O\ncan O O\nalso O O\nadd O O\nthe O O\nfutureevents Name Name\n= Name Name\ntrue Name Name\nparameter O O\n. O O\n\nFor O O\nthe O O\ndetails O O\ninformation O O\nfor O O\nv2 Name Name\n, O O\nplease O O\nrefer O O\nto O O\nthe O O\nfollowing O O\n: O O\n\nhttps://developers.google.com/google-apps/calendar/v2/reference?hl=de&csw=1#Parameters O O\n\nIt O O\nalso O O\ntook O O\nme O O\nquite O O\nsome O O\ntrials O O\nand O O\nerrors O O\nto O O\nrealize O O\nthat O O\noffset Name Name\nis O O\nactually O O\nmandatory O O\n, O O\nnot O O\noptional O O\n, O O\nas O O\ndocumented O O\nin O O\n\nhttps://developers.google.com/google-apps/calendar/concepts O O\n\nTry O O\nto O O\nadd O O\n\" Name Name\nZ Name Name\n\" Name Name\nto O O\nthe O O\nend O O\nof O O\nyour O O\nURL O O\n: O O\n\nhttps://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 O O\n\nGiven O O\nan O O\nXML Name Name\nfile O O\nof O O\nofferings O O\nthat O O\nis O O\nthen O O\nloaded O O\ninto O O\na O O\nclass O O\ncalled O O\nOfferings Name Name\nvia O O\nJAXB Name Name\n. O O\n\nThis O O\nclass O O\nhas O O\nthe O O\nfollowing O O\n: O O\n\nName Name Name\n, O O\nPrice Name Name\nsub-Class O O\n, O O\nModifiers Name Name\n, O O\nOrdering O O\nRules O O\netc O O\n. O O\n\nI O O\nthen O O\ncreate O O\nan O O\norder O O\nand O O\nwithin O O\nthat O O\norder O O\n\nOrder Name Name\n\nOrder Name Name\nItem Name Name\n\nOffering Name Name\n\nThe O O\nOffering Name Name\nand O O\nModifiers Name Name\nare O O\nclasses O O\nwith O O\nJAXB Name Name\nalready O O\nwhich O O\nI O O\nonly O O\nwant O O\nto O O\npush O O\npart O O\nof O O\nthe O O\nXML Name Name\n. O O\n\nHow O O\nwould O O\nI O O\nchange O O\nthe O O\nanotations O O\nsuch O O\nthat O O\nonly O O\npart O O\nof O O\nthe O O\nelements O O\nare O O\nsent O O\n? O O\n\nFor O O\nexample O O\nnot O O\nthe O O\noffering Name Name\n-> O O\nmodifiers Name Name\n? O O\n\nUse O O\n@XmlTransient Name Name\ninstead O O\nof O O\nthe O O\n@XmlElement Name Name\ntag O O\n. O O\n\nI O O\nhave O O\ndownloaded O O\nthis O O\ntwitter Name Name\nsource O O\ncode O O\n\nhttp://www.silverlightshow.net/items/Silvester-A-Silverlight-Twitter-Widget.aspx O O\n\nAfter O O\nopening O O\nin O O\nVS Name Name\n2010 Name Name\nand O O\nsetting O O\nthe O O\nweb O O\nproject O O\nas O O\nstartup O O\nI O O\nrun O O\nit O O\nin O O\nIE Name Name\n9 Name Name\nbut O O\nthen O O\nIE Name Name\n9 Name Name\nasks O O\nme O O\nto O O\ninstall O O\nsilverlight Name Name\nI O O\nsaid O O\nOK O O\nat O O\nthe O O\nend O O\nit O O\nsays O O\nit O O\ncannot O O\ninstall O O\nbecause O O\nit O O\n's O O\nalready O O\ninstalled O O\nso O O\nin O O\nthe O O\nend O O\nI O O\ncannot O O\nrun O O\nthe O O\napp O O\n. O O\n\nIs O O\nthis O O\nclearly O O\na O O\nbug O O\n? O O\n\nIs O O\nit O O\npossible O O\nto O O\nfix O O\nthis O O\nas O O\nthis O O\napp O O\nwas O O\ndeveloper O O\nmaybe O O\nin O O\nolder O O\nversion O O\nof O O\nsilverlight Name Name\n? O O\n\nTry O O\ndownloading O O\nthe O O\nvery O O\nlatest O O\n( O O\nFeb O O\n201 O O\n1) O O\ndeveloper O O\nruntime O O\nfor O O\nSilverlight Name Name\n4 Name Name\nwhich O O\nis O O\nfound O O\nhere O O\n. O O\n\nhttp://ie.microsoft.com/testdrive/Browser/ActiveXFiltering/About.html O O\n\nWe O O\n've O O\nseen O O\nthis O O\ncode O O\naround O O\nthe O O\nnet O O\nat O O\none O O\npoint O O\nor O O\nanother O O\nand O O\nhas O O\nproven O O\nto O O\nwork O O\nperfectly O O\nfine O O\n; O O\nhowever O O\n, O O\non O O\nmy O O\nWindows Name Name\n10 Name Name\nmachine O O\n, O O\nthough O O\nit O O\nmay O O\ncompile O O\n, O O\nthere O O\nis O O\nno O O\naudio O O\nto O O\nspeak O O\nof O O\nonce O O\nrunning O O\n. O O\n\nOn O O\nWindows Name Name\n7 Name Name\nit O O\nwas O O\nworking O O\nperfectly O O\n, O O\nbut O O\nonce O O\nI O O\nmoved O O\nto O O\nWindows Name Name\n10 Name Name\n, O O\nthere O O\nis O O\nno O O\naudio O O\nand O O\nI O O\nhave O O\nnot O O\nbeen O O\nable O O\nto O O\nfind O O\na O O\nsolution O O\nfor O O\nmonths O O\n. O O\n\nDoes O O\nany O O\none O O\nhave O O\nany O O\nidea O O\nwhy O O\nthis O O\ndoes O O\nnot O O\nwish O O\nto O O\nwork O O\non O O\nWindows Name Name\n10 Name Name\n? O O\n\nIs O O\nthere O O\na O O\nsimple O O\nsettings O O\nchange O O\nthat O O\nneeds O O\nto O O\nbe O O\nmade O O\nthat O O\nI O O\n'm O O\nnot O O\naware O O\nof O O\n? O O\n\nThank O O\nyou O O\n! O O\n\nI O O\nam O O\ntrying O O\nto O O\ndeploy O O\nand O O\ntest O O\na O O\nUniversal Name Name\nWindows Name Name\nApp Name Name\nto O O\na O O\nSurface Name Name\nPro Name Name\n3 Name Name\ndirectly O O\nfrom O O\nVisual Name Name\nStudio Name Name\n2013 Name Name\n( O O\nUpdate Name Name\n4) Name Name\nand O O\nI O O\nam O O\nunable O O\nto O O\nlaunch O O\nthe O O\nApp O O\n( O O\nby O O\nhitting O O\nF O O\n5) O O\n. O O\n\nI O O\nam O O\nrunning O O\ninto O O\nthe O O\nfollowing O O\nerror O O\nand O O\nnot O O\nable O O\nto O O\nfind O O\na O O\nfix O O\nto O O\nit O O\n. O O\n\nThere O O\nare O O\na O O\nbunch O O\nof O O\nsolutions O O\nof O O\nDEP0700 O O\nerrors O O\nonline O O\n, O O\nbut O O\nnone O O\nof O O\nthem O O\nwork O O\nfor O O\nthe O O\nspecific O O\nsub-error O O\nmessage O O\nCannot O O\nmap O O\nthe O O\nserial O O\nwell-known O O\ndevice O O\nname O O\nto O O\na O O\ndevice O O\ninterface O O\nGUID O O\n( O O\nblah O O\nblah O O\nblah O O\n) O O\n\nHere O O\nis O O\nthe O O\nerror O O\nthat O O\nI O O\nam O O\nseeing O O\n\nHave O O\nyou O O\ndeclared O O\nany O O\nserial O O\ncommunication O O\nin O O\nyour O O\nAppxManifest Name Name\nfile O O\n? O O\n\nIf O O\nyour O O\nother O O\napps O O\nwork O O\n, O O\nyour O O\nissue O O\nmight O O\nbe O O\nbecause O O\nopening/editing O O\nApxManifest Name Name\nfile O O\nin O O\nthe O O\ndesigner Name Name\n. O O\n\nTry O O\nmaking O O\na O O\nnew O O\nsolution O O\n, O O\nand O O\nedit O O\nthe O O\nmanifest Name Name\nthrough O O\nonly O O\nthrough O O\nXML Name Name\nEditor Name Name\n, O O\nif O O\nrequired O O\n& O O\ndo O O\nnot O O\nopen O O\nwith O O\nthe O O\ndesigner Name Name\n. O O\n\nReference O O\nfor O O\nmore O O\ninformation O O\n: O O\n\nhttp://ms-iot.github.io/content/en-US/win10/samples/SerialSample.htm O O\n\n\" O O\nVisual Name Name\nStudio Name Name\n2015 Name Name\nhas O O\na O O\nknown O O\nbug O O\nin O O\nthe O O\nManifest Name Name\nDesigner Name Name\n( O O\nthe O O\nvisual Name Name\neditor Name Name\nfor O O\nappxmanifest Name Name\nfiles O O\n) O O\nthat O O\naffects O O\nthe O O\nserialcommunication O O\ncapability O O\n. O O\n\nIf O O\n\nyour O O\nappxmanifest Name Name\nadds O O\nthe O O\nserialcommunication O O\ncapability O O\n, O O\nmodifying O O\nyour O O\nappxmanifest Name Name\nwith O O\nthe O O\ndesigner Name Name\nwill O O\ncorrupt O O\nyour O O\nappxmanifest Name Name\n( O O\nthe O O\nDevice O O\nxml Name Name\nchild O O\nwill O O\nbe O O\nlost O O\n) O O\n. O O\n\nYou O O\ncan O O\nworkaround O O\nthis O O\nproblem O O\nby O O\nhand O O\neditting O O\nthe O O\nappxmanifest Name Name\nby O O\nright-clicking O O\nyour O O\nappxmanifest Name Name\nand O O\nselecting O O\nView O O\nCode O O\nfrom O O\nthe O O\ncontext O O\nmenu Name Name\n. O O\n\" O O\n\nI O O\nhave O O\na O O\nreally O O\nsimple O O\nbit O O\nof O O\ncode O O\nthat O O\nI O O\n'm O O\ntrying O O\nto O O\nin O O\nMs Name Name\nAccess Name Name\n2010 Name Name\n. O O\n\nI O O\nwant O O\na O O\ncontrol O O\non O O\na O O\nform Name Name\nto O O\nopen O O\na O O\nword Name Name\ndocument O O\n. O O\n\nI O O\n've O O\ntried O O\nseveral O O\nthings O O\nbut O O\nthe O O\nsimplest O O\npiece O O\nof O O\ncode O O\nI O O\n've O O\ncobbled O O\ntogether O O\nis O O\nas O O\nfollows O O\n: O O\n\nThis O O\ncompiles O O\nbut O O\nwhen O O\nI O O\nrun O O\nit O O\nwithout O O\nWord Name Name\nbeing O O\nopen O O\nI O O\nget O O\n\" O O\nrun O O\ntime O O\n429 O O\nerror O O\n: O O\nactivex O O\ncomponent O O\nca O O\nn't O O\ncreate O O\nobject O O\n. O O\n\nWith O O\nWord Name Name\nopen O O\nI O O\nget O O\na O O\nnew O O\ndocument O O\nopening O O\n. O O\n\nI O O\nhave O O\ntried O O\nupdating O O\nreferences O O\nto O O\nADO Name Name\n6.0 Name Name\nto O O\nno O O\navail O O\n. O O\n\nI O O\n'm O O\nnew O O\nto O O\nVBA Name Name\nso O O\nany O O\nhelp O O\nappreciated O O\n. O O\n\nYou O O\ncan O O\ngenerally O O\nopen O O\na O O\nfile O O\nwith O O\nthe O O\nregistered O O\napplication O O\nwith O O\nFollowHyperlink Name Name\n. O O\n\nOtherwise O O\n, O O\nyou O O\ncan O O\nuse O O\nCreateObject Name Name\nwhen O O\nWord Name Name\nis O O\nnot O O\nrunning O O\n. O O\n\nI O O\nwant O O\nvim Name Name\nto O O\nstart O O\nhighlighting O O\nmatches O O\nright O O\naway O O\nas O O\nI O O\ntype O O\nafter O O\ntyping O O\n' O O\n/ O O\n' O O\n. O O\n\nBut O O\nthat O O\nhighlight O O\ncolor O O\nshould O O\nbe O O\ndifferent O O\nfrom O O\nthe O O\ncolor O O\nof O O\nthe O O\nexisting O O\nmatches O O\n. O O\n\nExample O O\n, O O\nI O O\nhave O O\nthe O O\nfollowing O O\ntext O O\n: O O\n\nfoo Name Name\nbar Name Name\nbaz Name Name\n\nAfter O O\nthe O O\nend O O\nof O O\nthis O O\nsequence O O\n: O O\n\n( O O\nNote O O\nthat O O\nthis O O\nsequence O O\nwas O O\ntyped O O\nin O O\nnormal O O\nmode O O\nand O O\nno O O\n<return> O O\nwas O O\npressed O O\nat O O\nthe O O\nend O O\nof O O\nthe O O\nsequence O O\n) O O\n\nfoo Name Name\nshould O O\nbe O O\nhighlighted O O\nwith O O\none O O\ncolor O O\n( O O\ncall O O\nit O O\n\" O O\nfound O O\nmatch O O\n\" O O\ncolor O O\n) O O\nand O O\nbar O O\nshould O O\nbe O O\nhighlighted O O\nwith O O\nanother O O\ncolor O O\n( O O\nthe O O\nincremental O O\nsearch O O\ncolor O O\n) O O\n. O O\n\nYou O O\ncannot O O\ndo O O\nthis O O\nwith O O\nthe O O\nbuilt-in O O\nsearch O O\n. O O\n\nVim Name Name\nwill O O\nalways O O\nhighlight O O\nthe O O\nnext O O\nmatch O O\nwith O O\nIncSearch Name Name\n, O O\nand O O\nall O O\nother O O\nmatches O O\n( O O\nof O O\nthe O O\nsame O O\n, O O\ncurrently O O\ntyped O O\npattern O O\n) O O\nwith O O\nthe O O\nSearch Name Name\nhighlight O O\ngroup O O\n( O O\nassuming O O\nyou O O\nhave O O\n:set Name Name\nhlsearch Name Name\nincsearch Name Name\n) O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\nkeep O O\nthe O O\nprevious O O\nmatch O O\n, O O\nyou O O\nhave O O\nto O O\ndefine O O\nyour O O\nown O O\nhighlighting O O\n, O O\ne.g O O\n. O O\nlike O O\nthis O O\n( O O\nin O O\nthe O O\ncurrent O O\nwindow Name Name\nonly O O\n) O O\n: O O\n\nplugin Name Name\nrecommendations O O\n\nIf O O\nyou O O\nneed O O\nmore O O\nthan O O\none O O\nconcurrent O O\nmatch O O\n, O O\nand O O\na O O\nmore O O\nrobust O O\nimplementation O O\nthat O O\ncovers O O\nall O O\nwindows Name Name\nand O O\ntabs Name Name\n( O O\nand O O\na O O\nlot O O\nof O O\nextra O O\nfeatures O O\n) O O\n, O O\nhave O O\na O O\nlook O O\nat O O\nmy O O\nMark Name Name\nplugin Name Name\n. O O\n\n( O O\nThe O O\nplugin Name Name\npage Name Name\nhas O O\nlinks O O\nto O O\nalternative O O\nplugins Name Name\n. O O\n) O O\n\nThe O O\nexplanation O O\n: O O\n\nWorking O O\nwith O O\ntwo O O\ninput O O\nstreams O O\nstreams O O\n, O O\nboth O O\nuse O O\ngetline() Name Name\nto O O\ncapture O O\nthe O O\nuser O O\ninput O O\n. O O\n\nThe O O\nfirst O O\ngetline() Name Name\nis O O\ncalled O O\nin O O\nthe O O\nuserStringPrompt() Name Name\nfunction O O\n: O O\n\nThat O O\nsets O O\na O O\nstring Name Name\nthat O O\nthe O O\nprogram O O\nwill O O\nuse O O\nlater O O\nto O O\nperform O O\nfunctions O O\n, O O\nlike O O\ncount O O\nits O O\nconsonants O O\n, O O\nits O O\nvowels O O\n, O O\netc O O\n. O O\n\nThe O O\nsecond O O\ninput O O\nis O O\nused O O\nin O O\nthe O O\nmenu O O\nselection O O\n( O O\nchoose O O\nwhat O O\nfunction/method O O\nto O O\nperform O O\non O O\nthe O O\nabove O O\nstring Name Name\n) O O\n: O O\n\nThis O O\ntakes O O\nin O O\na O O\nuser O O\ninput O O\n: O O\nA Name Name\n, O O\nB Name Name\n, O O\nC Name Name\n, O O\nD Name Name\n, O O\nE Name Name\nand O O\nperforms O O\nan O O\naction O O\n. O O\n\nFor O O\nexample O O\n, O O\nif O O\na O O\nuser O O\ninputs O O\ninto O O\nthe O O\nfirst O O\ninput O O\nstream O O\n: O O\n\nand O O\nthen O O\nenter O O\n\" O O\nA Name Name\n\" O O\nin O O\nthe O O\nsecond O O\ninput O O\nstream O O\n, O O\nit O O\nshould O O\ncount O O\nthe O O\nvowels O O\nin O O\nhello Name Name\n, O O\nthen O O\nreturn O O\nthe O O\nnumber O O\nfrom O O\nthe O O\ncalculation O O\n, O O\ne.g O O\n. O O\n2 Name Name\n\nThe O O\nissue O O\n: O O\n\nThe O O\nprogram O O\nfunctions O O\ncorrectly O O\nwhen O O\nthe O O\ninput O O\nin O O\nuserStringPrompt Name Name\nis O O\nwithout O O\nspaces Name Name\n. O O\n\nFor O O\nexample O O\n, O O\nHello Name Name\nworks O O\n, O O\nbut O O\nHello Name Name\nWorld Name Name\nwould O O\nbreak O O\nthe O O\napplication O O\nand O O\ncause O O\na O O\nforce O O\nclose O O\n. O O\n\nI O O\n'm O O\nnot O O\nsure O O\nwhy O O\n, O O\nsince O O\nI O O\nam O O\ncapturing O O\nthe O O\nstream O O\nwith O O\ngetline(cin, Name Name\nstring) Name Name\n. O O\n\nThe O O\nentire O O\ncode O O\n: O O\n\nAny O O\nguidance/hints O O\nwould O O\nbe O O\ngreatly O O\nappreciated O O\n. O O\n\nI O O\n'm O O\nabsolutely O O\nconfused O O\n. O O\n\nI O O\nguess O O\nyour O O\nprogram O O\nis O O\nnot O O\ncrushing O O\n, O O\nit O O\n's O O\njust O O\nnormally O O\nexits O O\n. O O\n\nwhich O O\nis O O\nok O O\n, O O\nno O O\nerror O O\ncode O O\nreturned O O\n. O O\n\nWhen O O\nyou O O\nrun O O\nyour O O\nprogram O O\nit O O\nasks O O\nfor O O\ninput O O\n, O O\ndo O O\nits O O\nwork O O\nand O O\nbecause O O\nthere O O\nis O O\nno O O\nmore O O\nwork O O\nfor O O\nit O O\n- O O\nexits O O\n. O O\n\nTo O O\nsee O O\nthe O O\noutput O O\nyou O O\ncan O O\ndo O O\none O O\nof O O\nthe O O\nfollowing O O\n: O O\n\nTry O O\nto O O\nrun O O\nit O O\nwith O O\nCtrl O O\n+ O O\nF5 O O\nin O O\nVS Name Name\n, O O\nit O O\nwill O O\nadd O O\npause Name Name\ncommand O O\nto O O\nthe O O\nend O O\n. O O\n\nAnother O O\nway O O\nto O O\nrun O O\nit O O\nis O O\nto O O\nopen O O\ncommand Name Name\nline Name Name\nand O O\nrun O O\nit O O\nfrom O O\nthere O O\n. O O\n\nAlso O O\nin O O\nyour O O\ncase O O\nI O O\nguess O O\nthe O O\nproblem O O\nis O O\nin O O\nbreak Name Name\nstatements O O\n. O O\n\nWhen O O\nyou O O\nchoose O O\nwhat O O\nto O O\ndo O O\nwith O O\nthe O O\nstring Name Name\nyou O O\nbreak O O\nyour O O\nloop O O\n( O O\nwhich O O\nshould O O\nrun O O\nwhile O O\nuser O O\nenters O O\ne Name Name\n) O O\n. O O\n\nRemove O O\nall O O\nbreaks Name Name\nand O O\nit O O\nwill O O\nbe O O\nfine O O\n. O O\n\nIN O O\nmy O O\nprogram O O\n, O O\nI O O\nam O O\nsetting O O\nthe O O\nconstraints O O\nfor O O\nmy O O\nview O O\nusing O O\nnslayoutconstraints.the Name Name\nview O O\nconsists O O\nof O O\na O O\ntableview Name Name\n, O O\ncollectionview Name Name\nand O O\na O O\nmain Name Name\nview.When Name Name\nthe O O\nview O O\nis O O\nloaded O O\n, O O\nthe O O\napp O O\ncrashes O O\nwith O O\nthe O O\nfollowing O O\nerror O O\n\n*** O O\nFirst O O\nthrow O O\ncall O O\nstack Name Name\n: O O\n\n( O O\n0x27126d67 O O\n0x34c61c77 O O\n0x27047237 O O\n0x2704701b O O\n0xe1333 O O\n0xe0bc1 O O\n0x1c6ca7 O O\n0x1d24e1 O O\n0x9b59cb O O\n0x9b59b7 O O\n0x9b9411 O O\n0x270ecc41 O O\n0x270eb361 O O\n0x27038981 O O\n0x27038793 O O\n0x2e3e8051 O O\n0x2a62a981 O O\n0x1d72b5 O O\n0x351fdaaf O O\n) O O\n\nlibc++ O O\nabi.dylib O O\n: O O\nterminating O O\nwith O O\nuncaught O O\nexception O O\nof O O\ntype O O\nNSException O O\n\nThe O O\nvalue O O\nof O O\nthe O O\ntableview Name Name\nis O O\n\" O O\nNIL Name Name\n\" O O\n\nThis O O\ndictionary Name Name\nis O O\nused O O\nto O O\nset O O\nthe O O\nheight O O\nconstraint O O\nin O O\nthe O O\ntableview Name Name\nas O O\nbelow O O\n\nWhy O O\nis O O\nit O O\nthat O O\nthe O O\nvalue O O\nof O O\ntableview Name Name\nis O O\nnil O O\n? O O\nThis O O\ntablview Name Name\nis O O\nan O O\nIBOUTLET Name Name\nfrom O O\nstoryboard.When Name Name\ni O O\nallocate O O\nmemory O O\nprogramatically O O\nthe O O\ncode O O\nruns.but O O\nthe O O\ntableview Name Name\nis O O\nnot O O\nloaded O O\nwith O O\ndata.Can O O\nanyone O O\nget O O\nme O O\nthe O O\nreason O O\n? O O\n\nThank O O\nyou O O\nin O O\nadvance O O\n\nMake O O\nsure O O\nyou O O\n're O O\nnot O O\ncalling O O\nthis O O\ntoo O O\nearly O O\nand O O\nthe O O\ntable Name Name\nview Name Name\nhas O O\nnot O O\nyet O O\nbeen O O\ncreated O O\n. O O\n\nPerhaps O O\nyou O O\nare O O\nexecuting O O\nthis O O\ncode O O\nin O O\n\" O O\nviewDidLoad Name Name\n\" O O\n, O O\nmaybe O O\ntry O O\nviewWillAppear Name Name\n, O O\nor O O\nviewDidLayoutSubviews Name Name\n. O O\n\nPlease O O\nensure O O\nyou O O\n're O O\nsynthesizing O O\ncorrectly O O\nto O O\nthat O O\nproperty O O\n. O O\n\nI O O\nhave O O\nset O O\na O O\nerror O O\nmessage O O\nwhere O O\nif O O\nis O O\nredirected O O\nto O O\nthis O O\nlogin O O\ncontroller O O\nthen O O\nshows O O\nthis O O\nmessage O O\nbelow O O\n. O O\n\nUsing O O\nthe O O\nuser_agent Name Name\nlibrary O O\nwhich O O\nI O O\nhave O O\nauto O O\nloaded O O\n. O O\n\nQuestion O O\n: O O\nI O O\nwould O O\nlike O O\nto O O\nknow O O\nif O O\npossible O O\nto O O\nignore O O\nmessage O O\nif O O\nredirected O O\nfrom O O\nmy O O\nlogout O O\ncontroller O O\n. O O\n\nTry O O\nsomething O O\nlike O O\n: O O\n\nThis O O\nshould O O\nwork O O\n, O O\nit O O\ncan O O\nbe O O\noptimized O O\na O O\nlittle O O\nbut O O\nthis O O\ngive O O\nyou O O\nthe O O\nidea O O\n. O O\n\nThe O O\nif O O\nstatement O O\nshould O O\nevaluate O O\nto O O\ntrue Name Name\non O O\nall O O\nreferrers O O\nexcept O O\nfrom O O\nones O O\nthat O O\ncome O O\nfrom O O\nwhatever O O\nthe O O\nurl O O\nis O O\nof O O\nyour O O\nlogout O O\npage O O\n. O O\n\nDoes O O\nthis O O\nmake O O\nsense O O\n? O O\n\nI O O\nwant O O\nto O O\nget O O\nthe O O\nBrowser Name Name\ncookies O O\nusing O O\nJavaScript.I Name Name\ntried O O\nthe O O\nbelow O O\ncode O O\n, O O\nbut O O\ni O O\nam O O\nnot O O\ngetting O O\nthe O O\ncross O O\ndomain O O\ncookies O O\n. O O\n\nHere O O\nis O O\nthe O O\ncode O O\n: O O\n\nDoes O O\nanybody O O\nsolve O O\nthis O O\n. O O\n\nIn O O\nmost O O\nsituations O O\n, O O\nyou O O\ncannot O O\nread O O\ncross O O\ndomain O O\ncookies O O\n, O O\nfor O O\nsecurity O O\nreasons O O\n. O O\n\nEach O O\ncookie O O\nhas O O\na O O\ndomain O O\nof O O\ndefinition O O\n, O O\nand O O\nyour O O\nbrowser Name Name\nreads O O\nthose O O\nto O O\ndecide O O\nwhich O O\ncookies O O\nyou O O\ncan O O\nread O O\naccording O O\nto O O\nwhich O O\ndomain O O\nyou O O\n're O O\non O O\n. O O\n\nIf O O\nyou O O\nhave O O\ncontrol O O\nof O O\nboth O O\ndomains O O\n, O O\nyou O O\ncan O O\nmodify O O\ncookie O O\nsettings O O\non O O\ndomain O O\nB Name Name\nto O O\nallow O O\nthem O O\nto O O\nbe O O\nread O O\nby O O\ndomain O O\nA Name Name\n, O O\nor O O\ncode O O\na O O\ncookie O O\ngetter O O\nto O O\nget O O\nthe O O\nvalues O O\n. O O\n\nBe O O\ncreative O O\n! O O\n\nI O O\n'm O O\nusing O O\nthe O O\nClean Name Name\nURLs Name Name\nPlugin O O\nand O O\nI O O\nend O O\nup O O\nhaving O O\nredundant O O\nfiles O O\nin O O\nmy O O\n/out/ Name Name\ndirectory O O\nafter O O\ndocpad Name Name\ngenerate Name Name\n--env Name Name\nstatic Name Name\n: O O\none O O\ncontent.html Name Name\nand O O\nthe O O\nsame O O\nin O O\n/content/index.html Name Name\n\nI O O\nsuppose O O\nthat O O\n's O O\na O O\nwrong O O\nbehaviour O O\n? O O\n\nDoes O O\nit O O\nresult O O\nbecause O O\ndocpad Name Name\nrun Name Name\ncreates O O\nthe O O\nfiles O O\nfor O O\nthe O O\nnon O O\nstatic O O\nbehavious O O\n, O O\nand O O\ndocpad Name Name\ngenerate Name Name\n--env Name Name\nstatic Name Name\nthe O O\nother O O\nones O O\nafterwards O O\n? O O\n\nTo O O\nanswer O O\nmy O O\nown O O\nquestion O O\n: O O\n\nI O O\nwas O O\nlooking O O\nat O O\na O O\nfile O O\nwhere O O\nsomething O O\nwent O O\nwrong O O\n. O O\n\nNow O O\nthere O O\nare O O\nstill O O\nthe O O\nredundant O O\nhtml Name Name\nfiles O O\nat O O\nfirst O O\nsight O O\n, O O\nbut O O\nthe O O\nones O O\nin O O\nthe O O\nroot O O\nredirect O O\nto O O\nthe O O\nothers O O\n. O O\n\nSo O O\nall O O\ngood O O\n. O O\n\nWhen O O\nI O O\nlooked O O\nbefore O O\nfor O O\nsome O O\nreasons O O\nI O O\ncaught O O\na O O\nstrange O O\nglitch O O\n. O O\n\nBasically O O\nno O O\nusers O O\nwith O O\niOS Name Name\n6 Name Name\nshould O O\nbe O O\nable O O\nto O O\ndownload O O\nthe O O\napps O O\n. O O\n\nThat O O\n's O O\nit O O\n. O O\n\nI O O\nalso O O\nwant O O\nto O O\nuse O O\niOS Name Name\n7 Name Name\nsdk Name Name\n. O O\n\nHow O O\ndo O O\nI O O\ndo O O\nso O O\n? O O\n\nPut O O\nit O O\non O O\nthe O O\nmain O O\nscreenshot O O\n. O O\n\n\" O O\nOnly O O\nsupports O O\nIOS Name Name\n7 Name Name\n\" O O\n. O O\n\n1.Open O O\nyour O O\nproject O O\nin O O\nXcode Name Name\n5.0 Name Name\n\n2.Select O O\nproject->Targets->your O O\nproject->Search O O\nFor O O\nIOS Name Name\nDeployment O O\nTarget O O\nand O O\nchange O O\nit O O\nto O O\n\" O O\n7.0 Name Name\n\" O O\n\n3.Also O O\nyour O O\nBase Name Name\nSDK Name Name\nwill O O\nbe O O\nLatest O O\nios Name Name\n( O O\nIOS Name Name\n7.0 Name Name\n) O O\nby O O\ndefault O O\n. O O\n\n( O O\nCheck O O\nthis O O\nin O O\nproject->Targets->your O O\nproject->Build O O\nSettings->Base Name Name\nSDK Name Name\n. O O\n) O O\n\nThats O O\nit.then O O\nnobody O O\nwith O O\nios Name Name\n6 Name Name\nwill O O\nbe O O\nable O O\nto O O\ndownload O O\nyour O O\napp O O\n:) O O\ncool. O O\n. O O\n\nMy O O\ncase O O\nvalue O O\ntext O O\nis O O\nalways O O\nbe O O\nequals O O\nto O O\nthe O O\nrelevant O O\nOSResultStruct Name Name\nin O O\nthe O O\ncode O O\nfor O O\n\" O O\nThe O O\nway O O\ni O O\nhave O O\nit O O\nimplemented O O\nnow O O\nand O O\nis O O\nworking O O\n\" O O\n.So O O\nfor O O\nexample O O\nif O O\nthe O O\ncase O O\nis O O\nosedition O O\nthen O O\nthe O O\nproperty O O\nis O O\nOSResultStruct.OSEdition Name Name\n. O O\n\nIs O O\nit O O\npossible O O\nto O O\ndo O O\nsomething O O\nlike O O\nthe O O\nline O O\nof O O\ncode O O\nbelow O O\n? O O\n\nIf O O\nso O O\nthen O O\ni O O\ncan O O\nreplace O O\nmy O O\nswitch O O\nstatement O O\nwith O O\none O O\nline O O\nof O O\ncode O O\n. O O\n\nThe O O\nway O O\ni O O\nhave O O\nit O O\nimplimented O O\nnow O O\nand O O\nis O O\nworking O O\n\nTry O O\nReflection O O\n: O O\n- O O\n\nFor O O\na O O\nmore O O\ngeneric O O\napproach O O\n: O O\n- O O\n\nDefine O O\nan O O\nextension O O\nclass O O\n: O O\n- O O\n\nUse O O\nit O O\nfor O O\nany O O\ninstantiable O O\ntype O O\nas O O\nfollows O O\n: O O\n- O O\n\nYou O O\ncan O O\nuse O O\nreflection O O\n- O O\nget O O\nproperty O O\naccessor O O\n( O O\nType.GetProperty Name Name\n) O O\nby O O\nname O O\n( O O\nyou O O\n'll O O\nneed O O\nto O O\nspecify O O\nIgnoreCase Name Name\nwhen O O\ngetting O O\none O O\nas O O\nyour O O\nnames O O\nseem O O\nto O O\nbe O O\nall O O\nlower O O\ncase O O\n) O O\nand O O\nthan O O\nGetValue Name Name\nof O O\nproperty O O\nusing O O\naccessor O O\n. O O\n\nI O O\nwant O O\nto O O\nknow O O\nthat O O\n, O O\nwhen O O\nI O O\nclick O O\non O O\nnext O O\nbutton Name Name\nthan O O\nid Name Name\n= Name Name\n\" Name Name\nupper1 Name Name\n\" Name Name\nbecome O O\nid Name Name\n= Name Name\n\" Name Name\nupper2 Name Name\n\" Name Name\nand O O\nid Name Name\n= Name Name\n\" Name Name\nupper2 Name Name\n\" Name Name\nbecome O O\nid Name Name\n= Name Name\n\" Name Name\nupper3 Name Name\n\" Name Name\nand O O\nid Name Name\n= Name Name\n\" Name Name\nupper3 Name Name\n\" Name Name\nbecome O O\nid Name Name\n= Name Name\n\" Name Name\nupper1 Name Name\n\" Name Name\nand O O\nso O O\non O O\n. O O\n\n$('#next') Name Name\n.click Name Name\n( Name Name\nfunction() Name Name\n{ Name Name\n\nWith O O\njQuery Name Name\n, O O\nyou O O\nmay O O\nuse O O\n: O O\n\nYou O O\nwill O O\nneed O O\nto O O\nput O O\nthe O O\ncode O O\ninside O O\na O O\nblock O O\nthat O O\nwaits O O\nfor O O\nthe O O\npage Name Name\nto O O\nload O O\nlike O O\n: O O\n\nThe O O\nuse O O\nof O O\nattr Name Name\nallows O O\nto O O\nset O O\na O O\nnew O O\nid Name Name\nto O O\neach O O\nof O O\nthe O O\nformer O O\nid Name Name\n' Name Name\ns Name Name\n. O O\n\nCheck O O\nthe O O\njsFiddle Name Name\n. O O\n\nAlso O O\n, O O\nas O O\nnoted O O\nby O O\nother O O\npeople O O\n, O O\nthis O O\nwould O O\nbe O O\nbetter O O\ndone O O\nby O O\nhaving O O\nfixed O O\nid Name Name\n's O O\nand O O\nchanging O O\nclasses O O\nthat O O\ndefined O O\nthe O O\nattributes O O\nto O O\nrotate O O\n. O O\n\nYou O O\nmay O O\ndo O O\nsomething O O\nlike O O\nthis O O\nthat O O\nmay O O\nwork O O\nwith O O\nany O O\nnumber O O\nof O O\nelement O O\nwith O O\nany O O\nIDs Name Name\n: O O\n\nThe O O\nquestion O O\nI O O\nwant O O\nto O O\nask O O\nis O O\nthus O O\n: O O\n\nIs O O\ncasting O O\ndown O O\nthe O O\ninheritance O O\ntree Name Name\n( O O\nie O O\n. O O\ntowards O O\na O O\nmore O O\nspecialiased O O\nclass O O\n) O O\nfrom O O\ninside O O\nan O O\nabstract O O\nclass O O\nexcusable O O\n, O O\nor O O\neven O O\na O O\ngood O O\nthing O O\n, O O\nor O O\nis O O\nit O O\nalways O O\na O O\npoor O O\nchoice O O\nwith O O\nbetter O O\noptions O O\navailable O O\n? O O\n\nNow O O\n, O O\nthe O O\nexample O O\nof O O\nwhy O O\nI O O\nthink O O\nit O O\ncan O O\nbe O O\nused O O\nfor O O\ngood O O\n. O O\n\nI O O\nrecently O O\nimplemented O O\nBencoding O O\nfrom O O\nthe O O\nBitTorrent Name Name\nprotocol O O\nin O O\nC# Name Name\n. O O\n\nA O O\nsimple O O\nenough O O\nproblem O O\n, O O\nhow O O\nto O O\nrepresent O O\nthe O O\ndata O O\n. O O\n\nI O O\nchose O O\nto O O\ndo O O\nit O O\nthis O O\nway O O\n, O O\n\nWe O O\nhave O O\nan O O\nabstract Name Name\nBItem Name Name\nclass O O\n, O O\nwhich O O\nprovides O O\nsome O O\nbasic O O\nfunctionality O O\n, O O\nincluding O O\nthe O O\nstatic Name Name\nBItem Name Name\nDecode(string) Name Name\nthat O O\nis O O\nused O O\nto O O\ndecode O O\na O O\nBencoded O O\nstring Name Name\ninto O O\nthe O O\nnecessary O O\nstructure O O\n. O O\n\nThere O O\nare O O\nalso O O\nfour O O\nderived O O\nclasses O O\n, O O\nBString Name Name\n, O O\nBInteger Name Name\n, O O\nBList Name Name\nand O O\nBDictionary Name Name\n, O O\nrepresenting O O\nthe O O\nfour O O\ndifferent O O\ndata O O\ntypes O O\nthat O O\nbe O O\nencoded O O\n. O O\n\nNow O O\n, O O\nhere O O\nis O O\nthe O O\ntricky O O\npart O O\n. O O\n\nBList Name Name\nand O O\nBDictionary Name Name\nhave O O\nthis[int] Name Name\nand O O\nthis[string] Name Name\naccessors O O\nrespectively O O\nto O O\nallow O O\naccess O O\nto O O\nthe O O\narray-like Name Name\nqualities O O\nof O O\nthese O O\ndata O O\ntypes O O\n. O O\n\nThe O O\npotentially O O\nhorrific O O\npart O O\nis O O\ncoming O O\nnow O O\n: O O\n\nWell O O\n, O O\nyou O O\nget O O\nthe O O\npicture O O\n.. O O\n. O O\nOuch O O\n, O O\nthat O O\n's O O\nhard O O\non O O\nthe O O\neyes O O\n, O O\nnot O O\nto O O\nmention O O\nthe O O\nbrain O O\n. O O\n\nSo O O\n, O O\nI O O\nintroduced O O\nsomething O O\nextra O O\ninto O O\nthe O O\nabstract O O\nclass O O\n: O O\n\nNow O O\nwe O O\ncould O O\nrewrite O O\nthat O O\nold O O\ncode O O\nas O O\n: O O\n\nWow O O\n, O O\nhey O O\npresto O O\n, O O\nMUCH O O\nmore O O\nreadable O O\ncode O O\n. O O\n\nBut O O\ndid O O\nI O O\njust O O\nsell O O\npart O O\nof O O\nmy O O\nsoul O O\nfor O O\nimplying O O\nknowledge O O\nof O O\nsubclasses O O\ninto O O\nthe O O\nabstract O O\nclass O O\n? O O\n\nEDIT O O\n: O O\nIn O O\nresponse O O\nto O O\nsome O O\nof O O\nthe O O\nanswers O O\ncoming O O\nin O O\n, O O\nyou O O\n're O O\ncompletely O O\noff O O\ntrack O O\nfor O O\nthis O O\nparticular O O\nquestion O O\nsince O O\nthe O O\nstructure O O\nis O O\nvariable O O\n, O O\nfor O O\ninstance O O\nmy O O\nexample O O\nof O O\ntorrent[\"info\"][\"files\"][0][\"length\"] Name Name\nis O O\nvalid O O\n, O O\nbut O O\nso O O\nis O O\ntorrent[\"announce-list\"][0][0] Name Name\n, O O\nand O O\nboth O O\nwould O O\nbe O O\nin O O\n90% O O\nof O O\ntorrent Name Name\nfiles O O\nout O O\nthere O O\n. O O\n\nGenerics O O\nis O O\nn't O O\nthe O O\nway O O\nto O O\ngo O O\n, O O\nwith O O\nthis O O\nproblem O O\natleast O O\n:( O O\n. O O\n\nHave O O\na O O\nclick O O\nthrough O O\nto O O\nthe O O\nspec O O\nI O O\nlinked O O\n, O O\nit O O\n's O O\nonly O O\n4 O O\nsmall O O\ndot-points O O\nlarge O O\n. O O\n\nThe O O\nway O O\nI O O\nsee O O\nit O O\n, O O\nnot O O\nall O O\nBItems Name Name\nare O O\ncollections O O\n, O O\nthus O O\nnot O O\nall O O\nBItems Name Name\nhave O O\nindexers O O\n, O O\nso O O\nthe O O\nindexer O O\nshould O O\nn't O O\nbe O O\nin O O\nBItem Name Name\n. O O\n\nI O O\nwould O O\nderive O O\nanother O O\nabstract O O\nclass O O\nfrom O O\nBItem Name Name\n, O O\nlet O O\n's O O\nname O O\nit O O\nBCollection Name Name\n, O O\nand O O\nput O O\nthe O O\nindexers O O\nthere O O\n, O O\nsomething O O\nlike O O\n: O O\n\nand O O\nmake O O\nBList Name Name\nand O O\nBDictionary Name Name\ninherit O O\nfrom O O\nBCollection Name Name\n. O O\n\nOr O O\nyou O O\ncould O O\ngo O O\nthe O O\nextra O O\nmile O O\nand O O\nmake O O\nBCollection Name Name\na O O\ngeneric O O\nclass O O\n. O O\n\nYou O O\nreally O O\nshould O O\nnot O O\naccess O O\nany O O\nderived O O\nclasses O O\nfrom O O\nthe O O\nbase O O\nclass O O\nas O O\nit O O\npretty O O\nmuch O O\nbreaks O O\nthe O O\nidea O O\nof O O\nOOP O O\n. O O\n\nReadibility O O\ncertainly O O\ngoes O O\na O O\nlong O O\nway O O\n, O O\nbut O O\nI O O\nwould O O\nn't O O\ntrade O O\nit O O\nfor O O\nreusability O O\n. O O\n\nConsider O O\nthe O O\ncase O O\nwhen O O\nyou O O\n'll O O\nneed O O\nto O O\nadd O O\nanother O O\nsubclass O O\n- O O\nyou O O\n'll O O\nalso O O\nneed O O\nto O O\nupdate O O\nthe O O\nbase O O\nclass O O\naccordingly O O\n. O O\n\nThe O O\nMacro Name Name\nExcel Name Name\npointe O O\nin O O\nCognos Name Name\n8 Name Name\nCube Name Name\n. O O\n\nThe O O\ncube Name Name\nis O O\npublished O O\nin O O\nthe O O\nserver Name Name\nof O O\nthe O O\ncompany O O\n. O O\n\nI O O\nwant O O\nto O O\nmake O O\nthese O O\nprocess O O\nlocal O O\n. O O\n\nPlease O O\ncheck O O\nand O O\nadvice O O\n\nNOTE-Cognos Name Name\n8 Name Name\nis O O\nunsupported O O\n- O O\nhighly O O\nsuggest O O\nyou O O\nupgrade O O\nto O O\n10 Name Name\nas O O\nsoon O O\nas O O\nfeasible O O\n. O O\n\nTo O O\nclarify O O\n- O O\nyou O O\nwant O O\nto O O\nbuild O O\nthis O O\ncube Name Name\nlocally O O\n? O O\n\nOn O O\nyour O O\ndesktop Name Name\n? O O\n\nDepending O O\non O O\nsize O O\nand O O\nstructure O O\nit O O\ncan O O\ntake O O\nup O O\nall O O\nyour O O\nlocal O O\nresources O O\n. O O\n\nI O O\nsuggest O O\nthis O O\n- O O\n\n1 O O\n. O O\n\nBuild O O\nthe O O\ncube O O\non O O\nthe O O\nserver Name Name\nand O O\ncopy O O\nit O O\nto O O\nyour O O\ndestination O O\n. O O\n\nd:\\Cognos\\PowerCubes\\Build Name Name\n, O O\nthen O O\nto O O\npublish O O\nthem O O\n- O O\ncopy O O\nthem O O\nto O O\nanother O O\ndirectory O O\nd:\\Cognos\\PowerCubes\\Live Name Name\n\nuse O O\nthe O O\nwindows Name Name\ncopy O O\ncommand O O\ni.e O O\n. O O\n\ncopy Name Name\nd:\\Cognos\\PowerCubes\\Build\\yourcube.mdc Name Name\nd:\\Cognos\\PowerCubes\\Live Name Name\n/Y Name Name\n/B Name Name\n\nLocal O O\n- O O\nbuild O O\nthe O O\ncube Name Name\nusing O O\ntask Name Name\nscheduler Name Name\non O O\nyour O O\nlocal O O\nmachine O O\n. O O\n\nHTH O O\n\nActually O O\nI O O\nbuild O O\nmycube.mdc Name Name\nlocally O O\nbut O O\nthe O O\npublish O O\nis O O\nin O O\nserver Name Name\n. O O\n\nI O O\nwant O O\nthe O O\ndiffrents O O\nsteps O O\nto O O\ntake O O\nto O O\npublish O O\nthe O O\ncube Name Name\nlocally O O\n.Hence O O\n, O O\naccess O O\nto O O\ncube Name Name\nthrough O O\nmacro Name Name\nexcel Name Name\n. O O\n\nAs O O\nan O O\nentity O O\nclass O O\n, O O\nI O O\nwant O O\nto O O\nadd O O\nan O O\nattributes O O\nat O O\nrun-time O O\n, O O\nhow O O\nshould O O\nI O O\ndo O O\n? O O\n\nWhat O O\nneeds O O\nto O O\nsee O O\nthe O O\nattributes O O\n? O O\n\nIf O O\nit O O\nis O O\nthings O O\nlike O O\ndata-binding O O\netc O O\n, O O\nTypeDescriptor Name Name\nshould O O\nwork O O\n: O O\n\nThis O O\nonly O O\naffects O O\nSystem.ComponentModel Name Name\nusage O O\n( O O\nnot O O\ndirect O O\nreflection O O\n) O O\n, O O\nbut O O\nthat O O\nis O O\noften O O\nenough O O\n- O O\nfor O O\nexample O O\n, O O\nyou O O\ncan O O\nassociate O O\na O O\nTypeConverter Name Name\nvia O O\nthe O O\nabove O O\n. O O\n\nIf O O\nby O O\n\" O O\nattributes O O\n\" O O\nyou O O\nmean O O\n\" O O\nproperties O O\n\" O O\n, O O\nthen O O\n( O O\nagain O O\n, O O\nas O O\nfar O O\nas O O\ndata-binding O O\nis O O\nconcerned O O\n) O O\nTypeDescriptor Name Name\nalso O O\nhas O O\npotential O O\nthere O O\n- O O\nbut O O\nit O O\nis O O\nnon-trivial O O\n; O O\nyou O O\nneed O O\nto O O\neither O O\nimplement O O\nICustomTypeDescriptor Name Name\non O O\nthe O O\nobject O O\n, O O\nor O O\nto O O\nwrite O O\na O O\nCustomTypeDescriptor Name Name\nfor O O\nthe O O\ntype O O\n- O O\nand O O\nin O O\neither O O\ncase O O\n, O O\nyou O O\nneed O O\nto O O\nwrite O O\nyour O O\nown O O\nPropertyDescriptor Name Name\nimplementation O O\n( O O\noften O O\ntalking O O\nto O O\na O O\nper-instance O O\ndictionary Name Name\netc O O\n) O O\n. O O\n\nThis O O\nwill O O\nget O O\nused O O\nby O O\nanything O O\nthat O O\nuses O O\n: O O\n\nAgain O O\n, O O\nthis O O\ncovers O O\na O O\nwide O O\nrange O O\nof O O\ndata-binding O O\nand O O\nsimilar O O\nscenarios O O\n. O O\n\nFor O O\nan O O\nexample O O\nof O O\nthis O O\n, O O\nsee O O\nhere O O\n- O O\nit O O\nis O O\nfar O O\nfrom O O\ntrivial O O\n, O O\nhowever O O\n. O O\n\nThe O O\nexample O O\nusage O O\n( O O\nfrom O O\nthe O O\nlink O O\n) O O\nadds O O\ntwo O O\nproperties O O\nat O O\nruntime O O\n: O O\n\nUse O O\na O O\nhashtable Name Name\nto O O\nstore O O\nyour O O\nattributes O O\n. O O\n\nIf O O\nyou O O\nwant O O\nmore O O\nruntime O O\nflexibility O O\n, O O\nyou O O\nmight O O\ntry O O\nRuby Name Name\nor O O\nsome O O\nother O O\ninterpreted O O\nlanguage O O\n. O O\n\nI O O\n'm O O\nconstrained O O\nto O O\nwriting O O\nC++11 Name Name\ncode O O\n, O O\nbut O O\nI O O\nwant O O\nto O O\nuse O O\nstd::cbegin() Name Name\n. O O\n\nSo O O\n, O O\nI O O\n'm O O\nlooking O O\nat O O\nGCC Name Name\n5.4.0 Name Name\n' O O\ns O O\nimplementation O O\n, O O\nin O O\n/usr/include/c Name Name\n++ Name Name\n/5/bits/range_access.h Name Name\non O O\nmy O O\nsystem O O\n, O O\nthinking O O\nI O O\nmight O O\nwrite O O\nsomething O O\nsimilar O O\n, O O\nand O O\nI O O\nsee O O\n: O O\n\nis O O\nthat O O\nall O O\nthere O O\nis O O\nto O O\nit O O\n? O O\n\nAm O O\nI O O\nmissing O O\nsomething O O\n? O O\n\nIf O O\nthat O O\n's O O\nit O O\n, O O\nhow O O\ncome O O\nit O O\nwas O O\nn't O O\npart O O\nof O O\nC++11 Name Name\nlike O O\nstd::begin() Name Name\n? O O\n\nNo O O\n, O O\nthat O O\ncovers O O\nit O O\n. O O\n\nAlthough O O\na O O\nsmall O O\nfunction O O\ncan O O\nbe O O\nadded O O\nto O O\nthe O O\nstandard O O\nwith O O\na O O\nrelatively O O\nsmall O O\namount O O\nof O O\neffort O O\n, O O\ntime O O\nis O O\nfinite O O\nand O O\nthe O O\ncommittee O O\ndoes O O\nn't O O\nhave O O\nunlimited O O\nresource O O\n. O O\n\nAnother O O\nexample O O\nof O O\na O O\nreasonably O O\nuseful O O\nand O O\ntrivial O O\nfunction O O\nthat O O\nwas O O\nomitted O O\nuntil O O\nC++14 Name Name\nis O O\nstd::make_unique Name Name\n. O O\n\nThings O O\nimprove O O\nover O O\ntime O O\n. O O\n\nYes O O\n. O O\n\nNot O O\nthat O O\nI O O\n'm O O\naware O O\nof O O\n. O O\n\nThe O O\nglobal O O\ntemplates O O\nseem O O\nto O O\nhave O O\nbeen O O\npart O O\nof O O\nthe O O\noriginal O O\nproposal O O\nas O O\nan O O\nalternative O O\nto O O\nthe O O\nmember O O\nfunctions O O\n, O O\nbut O O\nthe O O\nproposal O O\npreferred O O\nto O O\nonly O O\nprovide O O\nthe O O\nmember O O\nfunctions O O\nin O O\nfavour O O\nof O O\nproviding O O\neither O O\njust O O\nthe O O\nglobal O O\ntemplates O O\n, O O\nor O O\nboth O O\nthe O O\ntemplates O O\nand O O\nmembers O O\n. O O\n\n( O O\nAssuming O O\nthis O O\nis O O\nthe O O\noriginal O O\nproposal O O\n: O O\nN167 O O\n4) O O\n. O O\n\nThe O O\ncommittee O O\nchose O O\nto O O\ninclude O O\nthe O O\nmember O O\nfunction O O\nalternative O O\nin O O\nC++11 Name Name\n, O O\nand O O\nthe O O\ntemplate O O\nnot O O\nuntil O O\nC++ Name Name\n14 Name Name\n. O O\n\nI O O\n'm O O\nnot O O\npart O O\nof O O\nthe O O\ncommittee O O\n, O O\nand O O\ncannot O O\nspeak O O\nfor O O\nthem O O\n, O O\nbut O O\nmy O O\nguess O O\nis O O\nthat O O\nthe O O\nattitude O O\nof O O\nthe O O\nproposal O O\nmay O O\nhave O O\naffected O O\nthe O O\ndecision O O\n: O O\n\nHere O O\nis O O\nthe O O\ndevelopment O O\nfor O O\nthe O O\nC++ Name Name\nStandard Name Name\nLibrary Name Name\nDefect O O\nReport O O\nissue O O\n( O O\n2128 O O\n) O O\nwhere O O\nthe O O\ntemplate O O\nversions O O\nwere O O\ndecided O O\nto O O\nbe O O\nadopted O O\ninto O O\nC++14 Name Name\nafter O O\nall O O\n. O O\n\nI O O\nca O O\nn't O O\nfind O O\nthe O O\nappropriate O O\nregex O O\nto O O\nextract O O\nonly O O\nfloats Name Name\nfrom O O\na O O\nstring Name Name\n. O O\n\nConsider O O\nthe O O\nfollowing O O\nstring Name Name\n: O O\n\nI O O\nwant O O\nto O O\nextract O O\n2.1 Name Name\n, O O\nI O O\ntried O O\nthe O O\nfollowing O O\nbut O O\nthis O O\ngives O O\nme O O\nintegers Name Name\nand O O\nfloats Name Name\n: O O\n\ni O O\nthen O O\ntried O O\nusing O O\nis_float Name Name\nto O O\ncheck O O\nfor O O\nfloats Name Name\nbut O O\nthis O O\nalso O O\nreturns O O\nthe O O\nintegers Name Name\nfor O O\nsome O O\nreason O O\n. O O\n\nAny O O\nideas O O\n? O O\n\nthanks O O\n\nConsider O O\nthis O O\nsimple O O\nexample O O\n: O O\n\nMatches O O\n\" O O\none O O\nor O O\nmore O O\ndigits O O\n, O O\nfollowed O O\nby O O\nexactly O O\none O O\nfull O O\nstop O O\nand O O\nagain O O\none O O\nor O O\nmore O O\ndigits O O\n\" O O\n. O O\n\nThe O O\noutput O O\nobviously O O\nis O O\n: O O\n\nYour O O\nregex O O\nmatches O O\nfloat Name Name\nand O O\nintegers Name Name\n, O O\nand O O\neven O O\nstrings Name Name\nconsisting O O\nof O O\njust O O\ncommas O O\n. O O\n\n[0-9,]+ Name Name\n- O O\n1 O O\nor O O\nmore O O\ndigits O O\nor O O\n, Name Name\n\n(?:\\. Name Name\n[ Name Name\n0-9 Name Name\n] Name Name\n*) Name Name\n? Name Name\n- O O\none O O\nor O O\nzero O O\nsequences O O\nof O O\n. Name Name\n+ O O\nzero O O\nor O O\nmore O O\ndigits O O\n. O O\n\nYou O O\nneed O O\n\nThat O O\nwill O O\nmatch O O\n1+ O O\ndigits O O\n, O O\n. Name Name\nand O O\n1+ O O\ndigits O O\n. O O\n\nOr O O\n, O O\nto O O\nalso O O\nmatch O O\nnegative O O\nand O O\npositive O O\nfloats Name Name\n, O O\nadd O O\nan O O\noptional O O\n- Name Name\nat O O\nthe O O\nbeginning O O\n: O O\n\nDetails O O\n\n- Name Name\n? Name Name\n- O O\none O O\nor O O\nzero O O\nhyphens O O\n( O O\n? Name Name\nmeans O O\nmatch O O\none O O\nor O O\nzero O O\noccurrences O O\n) O O\n\n\\d+ Name Name\n- O O\none O O\nor O O\nmore O O\ndigits O O\n( O O\n+ Name Name\nmeans O O\nmatch O O\none O O\nor O O\nmore O O\noccurrences O O\n, O O\n\\d Name Name\nmatches O O\na O O\ndigit O O\nchar Name Name\n) O O\n\n\\ Name Name\n. Name Name\n- O O\na O O\nliteral O O\ndot O O\n( O O\nsince O O\na O O\ndot O O\nin O O\na O O\nregex O O\nis O O\na O O\nspecial O O\nmetacharacter O O\n, O O\nit O O\nshould O O\nbe O O\nescaped O O\nto O O\ndenote O O\na O O\nliteral O O\ndot O O\n) O O\n\n\\d+ Name Name\n- O O\none O O\nor O O\nmore O O\ndigits O O\n\nPHP Name Name\ndemo O O\n: O O\n\nA O O\nbonus O O\nregex O O\nthat O O\nwill O O\nalso O O\nmatch O O\nonly O O\nfloat Name Name\nnumbers O O\nwith O O\noptional O O\nexponent O O\n( O O\na O O\nvariant O O\nof O O\nthe O O\nregex O O\nat O O\nregular-expressions.info O O\n) O O\n: O O\n\nHere O O\n, O O\nyou O O\ncan O O\nsee O O\nthat O O\nan O O\noptional O O\n+ Name Name\nor O O\n- Name Name\nis O O\nmatched O O\nfirst O O\n( O O\n[ Name Name\n-+ Name Name\n] Name Name\n?) Name Name\n, O O\nthen O O\nthe O O\nsame O O\npattern O O\nas O O\nabove O O\nis O O\nused O O\n, O O\nthen O O\ncomes O O\nan O O\noptional O O\nnon-capturing O O\ngroup O O\n( Name Name\n? Name Name\n: Name Name\n.. Name Name\n. Name Name\n) Name Name\n? Name Name\nthat O O\nmatches O O\n1 O O\nor O O\n0 O O\noccurrences O O\nof O O\nthe O O\nfollowing O O\nsequence O O\n: O O\ne Name Name\nor O O\nE Name Name\n( O O\nsince O O\n/i Name Name\nis O O\na O O\ncase O O\ninsensitive O O\nmodifier O O\n) O O\n, O O\n[ Name Name\n-+ Name Name\n] Name Name\n? Name Name\nmatches O O\nan O O\noptional O O\n+ Name Name\nor O O\n- Name Name\n, O O\nand O O\n\\d+` Name Name\nmatches O O\n1+ O O\ndigits O O\n. O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\nvector Name Name\n: O O\n\nAll O O\nits O O\nvalues O O\nare O O\nbetween O O\n1 Name Name\nand O O\nn Name Name\n( O O\nin O O\nthis O O\ncase O O\n, O O\n3) Name Name\nand O O\ndenote O O\ndifferent O O\noptions O O\n. O O\n\nI O O\nwant O O\nto O O\ncreate O O\na O O\nmatrix Name Name\nof O O\nsize O O\nsize(y, Name Name\n1) Name Name\nx O O\nn Name Name\nwhose O O\nrows Name Name\ncorrepond O O\nto O O\ny Name Name\nvalues O O\n: O O\n\nOne O O\nway O O\nto O O\ndo O O\nthis O O\nwould O O\nbe O O\n\nIs O O\nthere O O\na O O\nbetter O O\nway O O\nto O O\ndo O O\nthis O O\n, O O\nmaybe O O\nin O O\na O O\nsingle O O\nexpression O O\n? O O\n\nBasically O O\n, O O\nwhat O O\nI O O\nneed O O\nis O O\nto O O\ngenerate O O\na O O\nmatrix Name Name\nwith O O\nboolean Name Name\npredicate O O\n( Name Name\ni Name Name\n, Name Name\nj Name Name\n) Name Name\n=> Name Name\nj Name Name\n== Name Name\ny(i) Name Name\n. O O\n\nYou O O\ncan O O\ntry O O\nthis O O\nif O O\na Name Name\nis O O\na O O\ncolumn O O\nvector Name Name\n\nand O O\nthis O O\nif O O\nit O O\nis O O\na O O\nrow O O\nvector Name Name\n\nIn O O\nOctave Name Name\n( O O\nat O O\nleast O O\nas O O\nof O O\n3.6.3 Name Name\n, O O\nnot O O\nsure O O\nwhen O O\nit O O\nwas O O\nintroduced O O\n) O O\n, O O\nyou O O\ncan O O\nuse O O\nbroadcasting O O\nto O O\ndo O O\nthis O O\nextremely O O\neasily O O\n. O O\n\nIt O O\nworks O O\nlike O O\nthis O O\n: O O\n\n( O O\nif O O\ny Name Name\nis O O\na O O\nrow O O\nmatrix Name Name\n, O O\nyou O O\nneed O O\nto O O\ntranspose O O\nit O O\nfirst O O\n- O O\nif O O\nyou O O\nwant O O\nto O O\nhave O O\nY Name Name\ntransposed O O\ninstead O O\n, O O\nuse O O\ny==(1:3)') Name Name\n\nI O O\nhave O O\na O O\ncustom O O\nweb O O\ncontrol Name Name\nhaving O O\ntwo O O\nlabels Name Name\n. O O\n\nOn O O\nthe O O\ndisplay O O\npage Name Name\nI O O\nwant O O\nto O O\nmodify O O\nthe O O\ntext Name Name\nof O O\none O O\nof O O\nthe O O\nlabels Name Name\ndepending O O\non O O\na O O\ncondition O O\n. O O\n\nHow O O\nto O O\nachieve O O\n? O O\n\nThe O O\nanswer O O\ndepends O O\non O O\nhow O O\nyour O O\ncontrol Name Name\nin O O\ndefined O O\n. O O\n\nIf O O\nthe O O\nlabel Name Name\nis O O\npublic Name Name\nyou O O\nsimply O O\naccess O O\nthe O O\nlabel Name Name\nthrough O O\nthe O O\ncontrol Name Name\ninstance O O\n\nIf O O\nit O O\nprivate Name Name\nyou O O\nwill O O\nneed O O\na O O\npublic Name Name\nmethod O O\nin O O\nthe O O\ncontrol Name Name\nto O O\nchange O O\nthe O O\ntext Name Name\n, O O\ne.g O O\n. O O\n\nand O O\nthen O O\ncall O O\nthe O O\nmethod O O\n\nI O O\nwould O O\nlike O O\nto O O\nrename O O\nall O O\nthe O O\njpg Name Name\nfiles O O\nin O O\na O O\nfolder O O\nto O O\nuniform O O\nconvention O O\nlike O O\nPicture00000001.jpg Name Name\nwhere O O\n00000001 Name Name\nis O O\na O O\ncounter O O\n. O O\n\nIt O O\nwould O O\nbe O O\na O O\nwalk O O\nin O O\nthe O O\npark O O\nin O O\nC# Name Name\nbut O O\nI O O\nwould O O\nthink O O\nthis O O\nis O O\nthe O O\nkind O O\nof O O\nbread O O\nand O O\nbutter O O\nstuff O O\nthat O O\nPowerShell Name Name\nwas O O\nmade O O\nfor O O\n. O O\n\nI O O\n'm O O\nguessing O O\nsomething O O\nlike O O\n\nBut O O\nbefore O O\nI O O\nhit O O\nthe O O\ngas O O\non O O\nthis O O\nI O O\nwould O O\nlike O O\nto O O\n1) O O\nformat O O\nthe O O\ncounter O O\n, O O\nand O O\n2) O O\nhave O O\nsome O O\nsense O O\nthat O O\nthis O O\nis O O\nin O O\nfact O O\neven O O\na O O\ngood O O\nidea O O\n. O O\n\nIf O O\nthis O O\nsounds O O\nmore O O\nlike O O\nOCD O O\nthan O O\na O O\ngood O O\nidea O O\nplease O O\nspeak O O\nup O O\n. O O\n\nTry O O\nthis O O\nto O O\nget O O\nthe O O\nFilenameWithOutExtension Name Name\n\n$ Name Name\nf.DirectoryName Name Name\n+ Name Name\n\" Name Name\n\\ Name Name\n\" Name Name\n+ Name Name\n$ Name Name\nf.BaseName Name Name\n\nYou O O\ncan O O\ndo O O\nthis O O\nfairly O O\nsimply O O\nin O O\nPowerShell Name Name\n: O O\n\nIf O O\nyou O O\n're O O\nlooking O O\nfor O O\nthe O O\n\" O O\nbasename O O\n\" O O\nand O O\nif O O\nyou O O\n're O O\non O O\nPowerShell Name Name\n2.0 Name Name\njust O O\nuse O O\nthe O O\nBasename Name Name\nproperty O O\nthat O O\nPowerShell Name Name\nadds O O\nto O O\neach O O\nFileInfo Name Name\nobject O O\n: O O\n\nNote O O\nthat O O\non O O\nPowerShell Name Name\n1.0 Name Name\n, O O\nthe O O\nPowerShell Name Name\nCommunity O O\nExtensions O O\nadds O O\nthis O O\nsame O O\nBasename Name Name\nproperty O O\n. O O\n\nIf O O\nthe O O\nintent O O\nis O O\nto O O\nappend O O\na O O\ncounter O O\nstring Name Name\nto O O\nthe O O\nfile O O\n's O O\nbasename O O\nduring O O\nthe O O\nrename O O\noperation O O\nthen O O\ntry O O\nthis O O\n: O O\n\nI O O\nhave O O\nattached O O\njoomla Name Name\n's O O\nMenu Name Name\nmodule O O\nin O O\nmy O O\ntemplate O O\n. O O\n\nBut O O\nI O O\nneeded O O\nit O O\nto O O\nload O O\nin O O\nfooter Name Name\nposition O O\nat O O\nthe O O\nsame O O\ntime O O\n. O O\n\nSo O O\nthat O O\nif O O\nI O O\nadd O O\nanother O O\nmenu Name Name\nit O O\nshould O O\nbe O O\nget O O\nadded O O\nin O O\nboth O O\nthe O O\npositions O O\nin O O\nHeader Name Name\nand O O\nin O O\nthe O O\nfooter Name Name\n.. O O\n. O O\nWhat O O\ni O O\nwant O O\nto O O\ndo O O\nto O O\nload O O\na O O\nmenu Name Name\nmodule O O\nto O O\ntwo O O\ndifferent O O\npositions O O\nin O O\na O O\npage Name Name\n, O O\nin O O\nheader Name Name\nand O O\nin O O\nfooter Name Name\n. O O\n\nI O O\nhad O O\ntried O O\nto O O\nadd O O\nmultiple O O\npositions O O\nin O O\nadministrator O O\nsection O O\nfor O O\na O O\nmenu Name Name\nmodule O O\n.. O O\n. O O\n\nscreen O O\nshots O O\nare O O\nas O O\nfollows O O\n\nFor O O\nlatest O O\nversion O O\n. O O\n\nJoomla3.x Name Name\n: O O\n\nGet O O\nall O O\nthe O O\nmodules O O\nby O O\ntemplate O O\nposition O O\n( O O\nreplace O O\nposition O O\nwith O O\nyour O O\ntemplate O O\nposition O O\n) O O\n: O O\n\nOther O O\nSolution O O\n: O O\nyou O O\ncan O O\ndefine O O\nposition O O\nin O O\nthe O O\ntemplate O O\nand O O\nassign O O\nmodule O O\nto O O\nthat O O\nposition O O\n\nSteps O O\n: O O\n\n1.Customize O O\ntemplateDetails.xml Name Name\nfile O O\nadd O O\nnewposition O O\n\n2.create O O\nposition O O\nin O O\nindex Name Name\nfile O O\nof O O\ntemplate O O\nin O O\ntemplates/your_template/index.php Name Name\n\nIf O O\nI O O\nunderstand O O\ncorrectly O O\n, O O\nyou O O\nshould O O\nsimply O O\nbe O O\nable O O\nto O O\nduplicate O O\nyour O O\nmenu Name Name\nmodule O O\n( O O\nin O O\nextensions->modules O O\n) O O\nand O O\nadd O O\nthe O O\nduplicate O O\nmodule O O\nto O O\na O O\nmodule O O\nposition O O\nin O O\nthe O O\nfooter Name Name\nof O O\nyour O O\ntemplate O O\n. O O\n\nIf O O\nthere O O\nis O O\nno O O\nmodule O O\nposition O O\nin O O\nthe O O\nfooter Name Name\n, O O\nyou O O\nadd O O\none O O\nto O O\nthe O O\n- O O\nlist Name Name\nin O O\ntemplateDetails.xml Name Name\n, O O\nand O O\nadd O O\nit O O\nto O O\nindex.php Name Name\nin O O\nyour O O\ntemplate O O\n, O O\nlike O O\n: O O\n\nPYTHON Name Name\n3.3 Name Name\n\nI O O\nhave O O\nmy O O\nHDD Name Name\npartitioned O O\nwith O O\nprogrammes O O\non O O\n\" Name Name\nC Name Name\n\" Name Name\nand O O\ndata O O\non O O\n\" Name Name\nD Name Name\n\" Name Name\none O O\nNTFS O O\nand O O\nthe O O\nother O O\nfat32 O O\n. O O\n\nI O O\n've O O\ndownloaded O O\nexamples O O\nof O O\ncode O O\nfrom O O\none O O\nof O O\nthe O O\npopular O O\nmanuals O O\nonto O O\n\" Name Name\nD Name Name\n\" Name Name\n. O O\n\nRunning O O\nsys.path Name Name\ndoes O O\nnot O O\nshow O O\nthese O O\n. O O\n\nI O O\n've O O\nlooked O O\n, O O\nbut O O\ncannot O O\nfind O O\nthe O O\nsys.path Name Name\nfile O O\nto O O\npermanently O O\nadd O O\nmy O O\n\" O O\npath O O\n\" O O\n. O O\n\nI O O\ncan O O\nhave O O\nthe O O\nsys.path Name Name\ncome O O\nup O O\nin O O\nIDLE Name Name\n, O O\nbut O O\nmaking O O\nchanges O O\nhere O O\nare O O\nonly O O\ntemporary O O\nI O O\nbelieve O O\n. O O\n\nIt O O\nis O O\na O O\nsmall O O\nirritation O O\nto O O\nhave O O\nto O O\n\" O O\ngo O O\nlooking O O\n\" O O\neach O O\ntime O O\n. O O\n\nI O O\n'd O O\nreally O O\nappreciate O O\nsome O O\ncomments O O\n, O O\nand O O\napologize O O\nif O O\nthis O O\nhas O O\nalready O O\nbeen O O\nanswered O O\nsomewhere O O\nelse O O\n. O O\n\nFor O O\ninstance O O\n, O O\nto O O\nadd O O\nthe O O\ndirectory O O\n/home/me/mypy Name Name\nto O O\nthe O O\npath O O\n, O O\njust O O\ndo O O\n: O O\n\nsource O O\n: O O\nhttp://www.johnny-lin.com/cdat_tips/tips_pylang/path.html O O\n\nYou O O\ncan O O\nmodify O O\nthe O O\nenvironment O O\nvariable O O\nPYTHONPATH Name Name\nto O O\nadjust O O\nthe O O\ndefault O O\npath O O\nPython Name Name\nlooks O O\nfor O O\nmodules O O\nwhen O O\nimporting O O\n. O O\n\nso O O\nI O O\nam O O\ndeveloping O O\na O O\ngoogle Name Name\nchrome Name Name\nextension O O\nfor O O\nmy O O\nchromebook Name Name\n. O O\n\nThe O O\nidea O O\nis O O\nto O O\nmake O O\na O O\n\" O O\nmagnifying O O\n\" O O\ntype O O\nof O O\neffect O O\nwherever O O\nthe O O\nmouse Name Name\ngoes O O\non O O\nthe O O\ncurrent O O\nwebpage O O\nin O O\norder O O\nto O O\nzoom O O\nin O O\non O O\ntext/images Name Name\nor O O\nwhatever O O\nthe O O\nmouse Name Name\nhovers O O\n. O O\n\nI O O\nhave O O\nthe O O\ncode O O\nfor O O\nthis O O\neffect O O\nworking O O\non O O\na O O\nwebpage O O\n, O O\nit O O\ndoes O O\nexactly O O\nwhat O O\nI O O\nwant O O\n. O O\n\nWhere O O\nI O O\n'm O O\nconfused O O\nis O O\nhow O O\nto O O\nintegrate O O\nthis O O\nto O O\na O O\nchrome Name Name\nextension O O\n. O O\n\nI O O\nwould O O\nwant O O\nan O O\nextension O O\nlike O O\nbutton Name Name\nto O O\nshow O O\nup O O\nin O O\nthe O O\nupper O O\nright O O\ncorner O O\nof O O\nthe O O\nchrome Name Name\nbrowser Name Name\nand O O\nthen O O\nyou O O\ncan O O\nclick O O\nit O O\nand O O\nthen O O\na O O\n\" O O\nbox Name Name\nor O O\nmagnifying Name Name\nglass Name Name\n\" O O\nwould O O\nappear O O\nand O O\nthen O O\nyou O O\ncould O O\nclick O O\nand O O\ndrag O O\nit O O\naround O O\nthe O O\npage Name Name\n. O O\n\nThe O O\nbox Name Name\nwould O O\ngo O O\naway O O\nif O O\nyou O O\nclicked O O\nthe O O\nextension O O\nbutton Name Name\nagain O O\n. O O\n\nThis O O\nis O O\nwhat O O\nI O O\nknow O O\nafter O O\na O O\nbit O O\nof O O\nonline O O\nsearching O O\n.. O O\n. O O\n\n- O O\nI O O\nneed O O\na O O\nmanifest.json Name Name\nfile O O\n, O O\nmy O O\ncurrent O O\nfile O O\nlooks O O\nlike O O\nthis O O\n.. O O\n. O O\n\n} O O\n\nI O O\n've O O\ntried O O\na O O\nfew O O\ndifferent O O\nthings O O\n, O O\nbut O O\ni O O\n'm O O\nsure O O\nI O O\nhave O O\na O O\nfew O O\nthings O O\nthat O O\nI O O\ndo O O\nn't O O\nneed O O\n. O O\n\nAlso O O\nyou O O\ncan O O\ngo O O\nto O O\nhttp://www.supertecho.com/background.html O O\nin O O\norder O O\nto O O\nsee O O\nwhat O O\nthe O O\ncurrent O O\ncode O O\nis O O\nfor O O\nmy O O\nmagnification O O\nidea O O\n. O O\n\nI O O\nhave O O\na O O\npopup.html Name Name\nfile O O\nbut O O\nI O O\n'm O O\nnot O O\nsure O O\nif O O\nthe O O\npopup.html Name Name\nor O O\nthe O O\nbackground.html Name Name\ncode O O\nwould O O\nbe O O\nmore O O\nnecessary O O\nor O O\nnot O O\n( O O\nor O O\nmaybe O O\nboth O O\nis O O\nneeded O O\n) O O\n. O O\n\nLet O O\nme O O\nknow O O\nif O O\nI O O\nam O O\nunclear O O\nabout O O\nthings O O\nand O O\nI O O\nwill O O\nclarify O O\n! O O\n\nThanks O O\na O O\nlot O O\nin O O\nadvance O O\n:-) O O\n\nThe O O\nmagnifying O O\neffect O O\ncode O O\nshould O O\nbe O O\na O O\ncontent O O\nscript O O\n, O O\nrunning O O\nin O O\nthe O O\nDOM O O\nof O O\nthe O O\nbrowsed O O\npages Name Name\n( O O\neffectively O O\ninjected O O\ninto O O\neach O O\npage Name Name\n) O O\n. O O\n\nSee O O\nhttp://code.google.com/chrome/extensions/content_scripts.html O O\n\nI O O\nwant O O\nto O O\nsend O O\ninformation O O\nof O O\n1 O O\nvariable O O\nwith O O\njavascript Name Name\ninto O O\nPHP Name Name\n. O O\n\nSo O O\n, O O\ni O O\nused O O\nthis O O\ncode O O\n( O O\nin O O\nindex.php Name Name\n) O O\n: O O\n\nBut O O\ni O O\nsee O O\nthis O O\nerror O O\n: O O\n\nWhat O O\ncan O O\ni O O\ndo O O\n? O O\n\nalso O O\n, O O\nIn O O\nusing O O\njQuery Name Name\n, O O\nyou O O\ndid O O\nn't O O\nclosed O O\nthe O O\ntag O O\n: O O\n\nclose O O\nlike O O\nthis O O\nand O O\nuse O O\nthis O O\ncode O O\n: O O\n\n$name Name Name\nis O O\nnot O O\ndefined O O\n. O O\n\nYou O O\nhave O O\nthe O O\necho Name Name\noutside O O\nof O O\nthe O O\nif O O\nstatement O O\n, O O\nmove O O\nit O O\ninside O O\nthe O O\nbraces O O\n. O O\n\nAlso O O\n, O O\nyou O O\npost O O\nto O O\nsubmit.php Name Name\nbut O O\nthis O O\ncode O O\nis O O\nfor O O\nphp Name Name\n.. Name Name\n. Name Name\nso Name Name\nyou Name Name\nneed O O\nto O O\nfix O O\nthat O O\n, O O\ntoo O O\n. O O\n\nFor O O\nhighcharts Name Name\n, O O\nI O O\nneed O O\nto O O\ngenerate O O\nparse O O\ndata O O\nin O O\norder O O\nto O O\ngenerate O O\nseries O O\n. O O\n\nThe O O\ndata O O\nfrom O O\nAPI Name Name\nlooks O O\nlike O O\nthis O O\n: O O\n\nFirst O O\n, O O\nthe O O\nuser O O\nhave O O\nto O O\nselect O O\na O O\nteam O O\nand O O\nplayers O O\n, O O\nbut O O\nsometimes O O\nthere O O\nis O O\nno O O\nresult O O\n. O O\n\nFor O O\nexample O O\n, O O\nfor O O\nthe O O\ndate O O\nXX Name Name\n, O O\nI O O\nselected O O\n4 O O\nteam O O\nID Name Name\nbut O O\nthe O O\nAPI Name Name\nreturns O O\nonly O O\n2 O O\nof O O\nthem O O\n. O O\n\nI O O\nhave O O\nto O O\ntake O O\nthis O O\nin O O\nconsideration O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\ndifferent O O\ntypes O O\nof O O\nseries O O\n, O O\nthe O O\nfirst O O\none O O\nrepresents O O\nall O O\nthe O O\nteam O O\nscores O O\n, O O\nthe O O\nsecond O O\none O O\nall O O\nthe O O\nplayers O O\nscores O O\n, O O\nand O O\nthe O O\nother O O\nfor O O\nthe O O\nscore O O\neach O O\nteam O O\ndid O O\n. O O\n\nSo O O\nthere O O\nare O O\nmany O O\ngraphs Name Name\n. O O\n\nI O O\n'm O O\nusing O O\nAmpserand.js Name Name\n, O O\nthe O O\nthe O O\nmodel O O\nis O O\nthe O O\nsame O O\nbut O O\nhe O O\nis O O\ncalled O O\nas O O\nmuch O O\ntime O O\nas O O\nthe O O\nnumber O O\nof O O\nteams O O\nselected O O\nin O O\nthe O O\nform O O\n. O O\n\nI O O\ndid O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nI O O\nhave O O\na O O\nproblem O O\nwith O O\nthe O O\nseries O O\ngenerated O O\nwhen O O\nthere O O\nis O O\nno O O\nresult O O\nfor O O\na O O\nteam O O\nin O O\nthe O O\napi Name Name\n's O O\nresult O O\n. O O\n\nAn O O\nusable O O\narray Name Name\nshould O O\nbe O O\nlike O O\nthis O O\nfor O O\nexample O O\n: O O\n\nMoreover O O\n, O O\nthe O O\ncode O O\nlooks O O\nredundant O O\n, O O\nis O O\nthere O O\na O O\ntrick O O\nwith O O\nsome O O\nArray Name Name\nfunction O O\nto O O\ndo O O\nthat O O\nmore O O\neasily O O\n? O O\n\nThanks O O\nin O O\nadvance O O\n, O O\nbig O O\nproblem O O\nfor O O\nme O O\nhere O O\n! O O\n\nDoes O O\nyour O O\ncode O O\nwork O O\nfor O O\nyou O O\n? O O\n\nI O O\njust O O\ntried O O\nthis O O\n: O O\nhttp://jsfiddle.net/ma50685a/5/ O O\n- O O\nlooks O O\nstrange O O\n. O O\n\nAnyway O O\n, O O\nI O O\nwould O O\nsuggest O O\nto O O\nimprove O O\na O O\nbit O O\nyour O O\nif-else Name Name\nstatements O O\n, O O\nfor O O\nexample O O\n: O O\n\nThis O O\ncan O O\nbe O O\nmade O O\nas O O\none O O\nfunction O O\n: O O\n\nNow O O\nsimply O O\n: O O\n\nNote O O\n: O O\nCode O O\nis O O\nnot O O\ntested O O\n, O O\nbecause O O\nI O O\ncould O O\nn't O O\nsetup O O\nworking O O\ndemo O O\naccording O O\nto O O\nthe O O\ninfo O O\nyou O O\nprovided O O\n, O O\nsorry O O\n. O O\n\nOkay O O\n, O O\nso O O\nI O O\n'm O O\nrunning O O\na O O\nsmall O O\ntest O O\nwebserver Name Name\non O O\nmy O O\nprivate O O\nnetwork O O\n. O O\n\nI O O\n've O O\ngot O O\na O O\nmachine O O\nrunning O O\nWindows Name Name\n2000 Name Name\nPro Name Name\n, O O\nand O O\nI O O\n'm O O\ntrying O O\nto O O\nrun O O\nan O O\nASP.NET Name Name\napp O O\nthrough O O\nIIS Name Name\n. O O\n\nI O O\nwrote O O\nit O O\nso O O\nthat O O\nthe O O\nwebpage O O\nwould O O\nuse O O\nthe O O\nregistry O O\nto O O\nstore O O\ncertain O O\nsettings O O\n( O O\nconnection O O\nstrings Name Name\n, O O\npotentially O O\nvolatile O O\nlocations O O\nof O O\nother O O\nweb O O\nservices O O\n, O O\npaths O O\nin O O\nthe O O\nlocal O O\nfilesystem O O\nwhere O O\ncertain O O\ninformation O O\nis O O\nstored O O\netc O O\n.. O O\n. O O\n) O O\nOf O O\ncourse O O\n, O O\nit O O\nworked O O\nfine O O\nwhen O O\ntesting O O\nwith O O\nVStudio.NET Name Name\n2005 Name Name\n, O O\nbecause O O\nthe O O\nuser O O\nrunning O O\nthe O O\napp O O\nhas O O\nelevated O O\nprivileges O O\n. O O\n\nHowever O O\n, O O\nrunning O O\nit O O\non O O\nIIS Name Name\nI O O\nget O O\na O O\n\" O O\nAccess O O\nto O O\nthe O O\nregistry O O\nkey O O\n' O O\nHKEY_LOCAL_MACHINE\\Software O O\n' O O\nis O O\ndenied O O\n. O O\n\" O O\n, O O\nwhich O O\nsuggests O O\nthe O O\nIIS Name Name\nuser O O\ndoes O O\nn't O O\nhave O O\nread O O\naccess O O\nto O O\nthat O O\npart O O\nof O O\nthe O O\nregistry O O\n( O O\nI O O\nonly O O\ndo O O\nreads O O\nthrough O O\nthe O O\nwebsite O O\nitself O O\n, O O\nnever O O\nwrites O O\n) O O\n. O O\n\nI O O\nwas O O\nlike O O\n\" O O\nokay O O\n, O O\nsimple O O\nenough O O\n, O O\nI O O\n'll O O\njust O O\ngo O O\ngive O O\nthat O O\nuser O O\nrights O O\nto O O\nthat O O\npart O O\nof O O\nthe O O\nregistry O O\nthrough O O\nregedit Name Name\n. O O\n\" O O\n\nThe O O\nproblem O O\nis O O\n, O O\nI O O\ndo O O\nn't O O\nsee O O\nan O O\noption O O\nanywhere O O\nin O O\nregedit Name Name\nto O O\nchange O O\nsecurity O O\nsettings O O\n.. O O\n. O O\nat O O\nall O O\n. O O\n\nWhich O O\ngot O O\nme O O\nthinking O O\n.. O O\n. O O\n\nI O O\ndo O O\nn't O O\nthink O O\nI O O\n've O O\never O O\nactually O O\nhad O O\nto O O\nchange O O\nsecurity O O\nsettings O O\nfor O O\nregistry O O\nhives/keys O O\nbefore O O\n, O O\nand O O\nI O O\ndo O O\nn't O O\nthink O O\nI O O\nknow O O\nhow O O\nto O O\ndo O O\nit O O\n. O O\n\nHalf O O\nan O O\nhour O O\nof O O\nsearching O O\nthe O O\nweb O O\nlater O O\n, O O\nI O O\nhave O O\nn't O O\nfound O O\nany O O\nusable O O\ninformation O O\non O O\nthis O O\nsubject O O\n. O O\n\nWhat O O\nI O O\n'm O O\nwondering O O\nis O O\n.. O O\n. O O\nhow O O\nDO O O\nyou O O\nchange O O\nsecurity O O\nrights O O\nto O O\nportions O O\nof O O\nthe O O\nregistry O O\n? O O\n\nI O O\n'm O O\nstumped O O\n, O O\nand O O\nit O O\nseems O O\nmy O O\nability O O\nto O O\nfind O O\nthe O O\nanswer O O\non O O\nGoogle Name Name\nis O O\nfailing O O\nme O O\nutterly O O\n.. O O\n. O O\nand O O\nsince O O\nI O O\njust O O\nsigned O O\nup O O\nhere O O\n, O O\nI O O\nfigured O O\nI O O\n'd O O\nsee O O\nif O O\nanyone O O\nhere O O\nknew O O\n. O O\n\n=) O O\n\nOh O O\n, O O\nlet O O\nme O O\ntry O O\nthat O O\n! O O\n\nI O O\ndid O O\nn't O O\nrealize O O\nyou O O\ncould O O\nremotely O O\nconnect O O\nto O O\nanother O O\nregistry O O\n. O O\n\n( O O\nEDIT O O\n: O O\nI O O\nwas O O\nwrong O O\n, O O\nit O O\ndid O O\nwork O O\n.. O O\n. O O\nit O O\njust O O\ntook O O\nseveral O O\nminutes O O\nto O O\nrespond O O\nto O O\nmy O O\nrequest O O\nto O O\nchange O O\npermissions O O\nremotely O O\n) O O\n\nThe O O\nremote O O\nconnection O O\nidea O O\ndid O O\nit O O\n! O O\n\nYou O O\n're O O\ngood O O\n! O O\n\nThanks O O\nso O O\nmuch O O\nfor O O\nyour O O\nhelp O O\n! O O\n\nI O O\nnever O O\nrealized O O\nyou O O\ncould O O\nremote O O\nconnect O O\nwith O O\nRegEdit Name Name\n.. O O\n. O O\nyou O O\nlearn O O\nsomething O O\nnew O O\nevery O O\nday O O\n, O O\nthey O O\nsay O O\n! O O\n\n=) O O\nThanks O O\nagain O O\nfor O O\nyour O O\nassistance O O\n! O O\n\n=) O O\n\nOn O O\nanother O O\nnote O O\nthough O O\n, O O\nabout O O\ncopying O O\nthe O O\nXP Name Name\nversion O O\nof O O\nRegEdit Name Name\nto O O\nWindows Name Name\n2000 Name Name\n.. O O\n. O O\nis O O\nthat O O\nsafe O O\n? O O\n\nI O O\nfigured O O\nthey O O\nwould O O\nbe O O\ncoded O O\nin O O\nsuch O O\na O O\nway O O\nas O O\nto O O\nbe O O\nincompatible O O\n.. O O\n. O O\nbut O O\nI O O\ncould O O\nbe O O\nassuming O O\ntoo O O\nmuch O O\n. O O\n\n=) O O\n\nIf O O\nyour O O\nhaving O O\ntouble O O\nwith O O\nRegEdit Name Name\nin O O\nWindows Name Name\n2000 Name Name\nyou O O\ncan O O\ntry O O\nthe O O\nfollowing O O\n: O O\n\nCopy O O\nthe O O\nWindows Name Name\nXP Name Name\nRegEdt32.exe Name Name\nto O O\nthe O O\nWindows Name Name\n2000 Name Name\nMachine O O\n\nUsing O O\na O O\nWindows Name Name\nXP Name Name\nMachine O O\n, O O\nconnect O O\nto O O\nthe O O\nWindows Name Name\n2000 Name Name\nregistry O O\nremotely O O\n: O O\nFile O O\n> O O\nConnect O O\nNetwork O O\nRegistry O O\n\nI O O\nam O O\nusing O O\nthe O O\nfollowing O O\ncode O O\nfor O O\nuploading O O\npicture Name Name\nfrom O O\nandroid Name Name\navd Name Name\n. O O\n\nbut O O\nthis O O\ncode O O\nadds O O\nfew O O\nextra O O\nheader O O\ninfo O O\ninto O O\nthe O O\nfile O O\n. O O\n\nlike O O\nfollowing O O\n\n--* O O\n\nContent-Disposition Name Name\n: Name Name\nform-data Name Name\n; Name Name\nname Name Name\n= Name Name\n\" Name Name\nvalue1 Name Name\n\" Name Name\n; Name Name\n\ntest O O\n\n--* O O\n\nContent-Disposition Name Name\n: Name Name\nform-data Name Name\n; Name Name\nname Name Name\n= Name Name\n\" Name Name\nvalue2 Name Name\n\" Name Name\n; Name Name\n\nparam O O\n\n--* O O\n\nContent-Disposition Name Name\n: Name Name\nform-data Name Name\n; Name Name\nname Name Name\n= Name Name\n\" Name Name\nfile Name Name\n\" Name Name\n; Name Name\nfilename Name Name\n= Name Name\n\" Name Name\n1.jpg Name Name\n\" O O\n\nContent-Type O O\n: O O\nimage/jpeg Name Name\n\ntherefore O O\nwhen O O\nthe O O\nfile O O\nstored O O\ninto O O\nthe O O\nserver Name Name\n, O O\nit O O\ncan O O\nnot O O\nbe O O\nopened O O\nas O O\nJPEG Name Name\nImage O O\n. O O\n\nI O O\nhave O O\nfound O O\nthat O O\nthe O O\noptions O O\nobject O O\nis O O\nresponsible O O\nfor O O\nadding O O\nthose O O\nextra O O\nheader O O\ninfo O O\n. O O\n\ni O O\ntried O O\nwithout O O\nthe O O\noptions O O\nobject O O\nby O O\nassigning O O\nnull Name Name\n. O O\n\nbut O O\nstill O O\nthere O O\nare O O\nfew O O\nextra O O\ninfo O O\ninto O O\nthe O O\nfile O O\n. O O\n\nLooking O O\nforward O O\nfor O O\nsuggestions O O\nto O O\nupload O O\nfile O O\nwithout O O\nany O O\nextra O O\ninfo O O\nwithin O O\nthe O O\nfile O O\n. O O\n\nWell O O\nif O O\nyou O O\ntake O O\nout O O\nthese O O\nlines O O\n: O O\n\nyou O O\nwo O O\nn't O O\nsee O O\n: O O\n\nanymore O O\n. O O\n\nHowever O O\nyou O O\nwill O O\nstill O O\nsee O O\n: O O\n\nas O O\nthe O O\nweb Name Name\nserver Name Name\nneeds O O\nto O O\nknow O O\nhow O O\nto O O\nhandle O O\nthe O O\nincoming O O\nfile O O\n. O O\n\nI O O\nbelieve O O\nthe O O\nproblem O O\nto O O\nbe O O\non O O\nthe O O\nweb Name Name\nserver Name Name\nend O O\ni.e O O\n. O O\nthe O O\nscript O O\nthat O O\nreceives O O\nthe O O\nfile O O\n. O O\n\ntry O O\n\nand O O\nwhat O O\ndo O O\nthese O O\nmean O O\n? O O\n\nin O O\nthe O O\n.jjt Name Name\nfile.I O O\ncould O O\nn't O O\neven O O\nmake O O\nany O O\nunderstand O O\nof O O\nit O O\n.. O O\n. O O\n\n` O O\n\njjtThis.setName() Name Name\n; O O\n\njjtThis.type Name Name\n; O O\n\njjtThis.setLength() Name Name\n; O O\n\njjtThis.correlationName Name Name\n; O O\n\njjtThis.setScale() Name Name\n; O O\n\njjtThis.setPrecision() Name Name\n; O O\n\njjtThis.add() Name Name\n; O O\n\njjtThis.tableName Name Name\n; O O\n\njjtThis.name Name Name\n; O O\n\njjtThis.position Name Name\n; O O\n\njjtThis.length Name Name\n; O O\n\n.. O O\n. O O\n\n` O O\n\nwhat O O\ndo O O\nthese O O\nmethods O O\nand O O\nfields O O\nof O O\njjtThis Name Name\ncome O O\nfrom O O\n? O O\nwhy O O\nI O O\ncan O O\nn't O O\nfigure O O\nout O O\nthe O O\nmeanings O O\nof O O\nthese O O\nthings O O\n?.. O O\n. O O\n\nIt O O\nrefers O O\nto O O\nthe O O\ncurrent O O\nnode O O\n. O O\n\nSee O O\nthe O O\ndocumentation O O\nhttps://javacc.java.net/doc/JJTree.html O O\nfor O O\nmore O O\ndetail O O\n. O O\n\n\n"
  },
  {
    "path": "code/Attentive_BiLSTM/auxilary_inputs_ner/segmenter_pred/segmenter_pred_train.txt",
    "content": "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\nfollowing O O\nquery O O\nneeds O O\nto O O\nbe O O\nadjusted O O\n, O O\nbut O O\nI O O\ndont O O\nknow O O\nhow O O\n\nSQLFIDDLE Name Name\n: O O\nhttp://sqlfiddle.com/#!9/11093 O O\n\nYou O O\nare O O\nvery O O\nclose O O\n. O O\n\nJust O O\nadd O O\na O O\nwhere Name Name\nclause O O\n: O O\n\nA O O\nmore O O\ntraditional O O\napproach O O\nuses O O\nNOT Name Name\nEXISTS Name Name\n: O O\n\nHere O O\nis O O\na O O\nSQL Name Name\nFiddle Name Name\nillustrating O O\nthat O O\nthe O O\nfirst O O\nworks O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nmake O O\na O O\nlittle O O\nchat O O\nprogram O O\nafter O O\nreading O O\nBeej O O\n's O O\nguide O O\nto O O\nprogramming O O\n. O O\n\nAnd O O\nthen O O\nI O O\nwas O O\nthinking O O\nabout O O\nthe O O\nbasics O O\nof O O\nthe O O\nprogram O O\nitself O O\n, O O\nand O O\nI O O\ndo O O\nn't O O\nknow O O\nhow O O\nto O O\nprint O O\noutput O O\nof O O\nrecv() Name Name\nand O O\nget O O\ninput O O\nfor O O\nsend() Name Name\nat O O\nthe O O\nsame O O\ntime O O\n, O O\nbecause O O\nthe O O\nclient O O\ncan O O\nalways O O\nwrite O O\nsomething O O\nand O O\nsend O O\n, O O\nbut O O\nhow O O\nis O O\nit O O\npossible O O\nto O O\nalso O O\nprint O O\nsomething O O\nwhile O O\nhe O O\n's O O\ntrying O O\nto O O\ninput O O\n? O O\n\nI O O\nthought O O\nabout O O\nthreads O O\n, O O\nand O O\nI O O\nlearned O O\na O O\nlittle O O\nbit O O\nabout O O\nthem O O\n, O O\nand O O\nI O O\ncreated O O\n2 O O\nsimple O O\nthreads O O\n: O O\nThe O O\nfirst O O\none O O\n, O O\nprints O O\na O O\nsentence O O\nevery O O\n3 O O\nseconds O O\n, O O\nand O O\nthe O O\nsecond O O\none O O\nget O O\ninput O O\n, O O\nthis O O\nlittle O O\nprogram O O\nof-course O O\nhad O O\na O O\nlot O O\nof O O\nissues O O\n, O O\nfor O O\nex O O\n. O O\n\nif O O\nyou O O\nstarted O O\ntyping O O\n, O O\nand O O\nthe O O\nother O O\nthread O O\nneeds O O\nto O O\nprint O O\nsomething O O\n, O O\nit O O\nwill O O\nsimply O O\ntake O O\nwhat O O\nyou O O\nwrote O O\n, O O\nand O O\nprint O O\nit O O\nwith O O\nitself O O\noutput O O\n. O O\n\nHere O O\nis O O\nthe O O\ncode O O\n, O O\nI O O\ntried O O\nto O O\nrecreate O O\nit O O\n, O O\nI O O\nhope O O\nyou O O\nguys O O\ncan O O\nhelp O O\nme O O\n. O O\n. O O\n\nYou O O\nhave O O\nundefined O O\nbehavior O O\nin O O\nyour O O\ncode O O\n: O O\nYou O O\nhaven O O\nan O O\nuninitialized O O\npointer O O\ninput Name Name\nin O O\ngetinput Name Name\n. O O\n\nUninitialized O O\n( O O\nnon-static Name Name\n) O O\nlocal O O\nvariables O O\nhave O O\nan O O\nindeterminate O O\nvalue O O\n, O O\nand O O\nit O O\nwill O O\nseem O O\nto O O\nbe O O\nrandom O O\n. O O\n\nAs O O\nthe O O\nvalue O O\nis O O\nindeterminate O O\n( O O\nand O O\nseemingly O O\nrandom O O\n) O O\nthe O O\nscanf Name Name\ncall O O\nwill O O\nwrite O O\nto O O\nsome O O\nunknown O O\nplace O O\nin O O\nmemory O O\n, O O\noverwriting O O\nwhatever O O\nwas O O\nthere O O\n. O O\n\nYou O O\ncould O O\neasily O O\nsolve O O\nthis O O\nby O O\nmaking O O\ninput Name Name\nan O O\narray Name Name\n. O O\n\nI O O\nhave O O\na O O\nC# Name Name\n/.NET Name Name\napplication O O\nthat O O\n, O O\nin O O\nmultiple O O\nthreads O O\n( O O\ni.e O O\n. O O\nconcurrently O O\n, O O\n6 O O\nthreads O O\n) O O\n, O O\ntries O O\nto O O\nperform O O\nfollowing O O\nupdate O O\n: O O\n\nThis O O\nis O O\npiece O O\nof O O\ncode O O\nis O O\nrun O O\nin O O\nthe O O\ntransaction O O\n. O O\n\nBoth O O\ntables O O\nhave O O\n3+mio O O\nrecords O O\n. O O\n\nClustered O O\nkey O O\nis O O\non O O\nthe O O\n[ O O\nId Name Name\n] O O\nfield O O\n, O O\nthere O O\nare O O\nsome O O\nnon-clustered O O\nindexes O O\nas O O\nwell O O\n. O O\n\nFunny O O\nthing O O\nis O O\nthat O O\nI O O\nmanually O O\nchecked O O\nand O O\nin O O\nmy O O\nparticular O O\nexample O O\nwith O O\n3+mio O O\nrecords O O\ncWrh Name Name\n. O O\n\n[ O O\nOptions O O\n] O O\nand O O\ncStg Name Name\n. O O\n\n[ O O\nOptions O O\n] O O\nare O O\nalways O O\nthe O O\nsame O O\nso O O\nin O O\nthe O O\nend O O\nthe O O\nupdate O O\nwould O O\nnot O O\nbe O O\nnecessary O O\n. O O\n\nI O O\n'm O O\nattaching O O\nthe O O\ndeadlog O O\ngraph Name Name\n, O O\nredacted O O\nvalues O O\nsay O O\nDB.wrh.Cars Name Name\n: O O\n\nDeadlock O O\ngraph Name Name\n\nYes O O\n, O O\nin O O\nthis O O\nparticular O O\nexample O O\nconcurrency O O\nis O O\nnot O O\nreally O O\nadding O O\nany O O\nvalue O O\n, O O\nbut O O\nthis O O\nis O O\nthe O O\n\" Name Name\nReset Name Name\n\" Name Name\nquery O O\n; O O\nthe O O\n\" Name Name\nRecalculate Name Name\n\" Name Name\nquery O O\nwhich O O\ndoes O O\nsome O O\n[ O O\nOptions O O\n] O O\ncalculation O O\nin O O\nC# Name Name\n, O O\nbulk O O\ninserts O O\nback O O\ninto O O\nSQL Name Name\nand O O\nupdates O O\nlater O O\nin O O\na O O\nconcurrent O O\nmode O O\nspeeds O O\nup O O\nthe O O\nthing O O\nsignificantly O O\n. O O\n\nI O O\nwould O O\njust O O\nlike O O\nto O O\nstick O O\nto O O\nthis O O\nconcurrent O O\napproach O O\nregardless O O\nof O O\nthe O O\ntask O O\n( O O\nsimple O O\nreset O O\nvs O O\nCPU Name Name\nintensive O O\nwork O O\n) O O\nif O O\npossible O O\n. O O\n\nAny O O\nsuggestion O O\nhow O O\nto O O\nwork O O\naround O O\nthe O O\ndeadlock O O\nis O O\nappreciated O O\n. O O\n\nAs O O\nsuggested O O\nby O O\n@KamranFarzami O O\n, O O\nthe O O\nanswer O O\nby O O\n@Grantly O O\nsolved O O\nmy O O\nproblem O O\n. O O\n\nThe O O\npoint O O\nfor O O\nanswering O O\nthis O O\nquestion O O\ngoes O O\nto O O\nthem O O\n. O O\n\nTransaction O O\nIsolation O O\nLevel O O\nof O O\nSNAPSHOT O O\nprevents O O\ndeadlocks O O\nfrom O O\nocurring O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\naccomplish O O\nthe O O\nfollowing O O\nand O O\nI O O\ndo O O\nn't O O\nknow O O\nwhy O O\nI O O\nam O O\nstruggling O O\n. O O\n\nCreate O O\na O O\nnew O O\nfiddle O O\nthat O O\ncontains O O\na O O\nbutton Name Name\nwith O O\nthe O O\ntext O O\n\" Name Name\nx2 Name Name\n\" Name Name\nand O O\nthe O O\nnumber O O\n1 Name Name\nlike O O\nthis O O\n: O O\n\n1 Name Name\nx2 Name Name\n\nUse O O\nJavascript Name Name\nto O O\nmake O O\nit O O\nso O O\nthat O O\neach O O\ntime O O\nthe O O\nbutton Name Name\nis O O\nclicked O O\n, O O\nthe O O\nnumber O O\nabove O O\nthe O O\nx2 Name Name\nbutton Name Name\nwill O O\ndouble O O\n. O O\n\nSend O O\nme O O\nthe O O\nlink O O\nto O O\nthe O O\nfiddle Name Name\n. O O\n\nHere O O\nis O O\nwhat O O\nI O O\nhave O O\nthus O O\nfar O O\n. O O\n\nI O O\nknow O O\nI O O\nam O O\ntargeting O O\nthe O O\nbutton Name Name\nvia O O\nJS Name Name\nbut O O\nI O O\ncannot O O\nfigure O O\nout O O\nhow O O\nto O O\nreturn O O\nthe O O\nupdated O O\nvalue O O\nwhen O O\nthe O O\nx2 Name Name\nbutton Name Name\nis O O\nclicked O O\n. O O\n\nTry O O\nthis O O\n: O O\n\nLook O O\nat O O\nwhat O O\nthis O O\ncode O O\nis O O\ndoing O O\n: O O\n\nYou O O\nare O O\nmultiplying O O\nan O O\nelement O O\nby O O\ntwo O O\n, O O\nyou O O\nare O O\nNOT O O\nreading O O\nthe O O\ntext O O\n. O O\n\nYou O O\nwant O O\nto O O\nuse O O\ninnerHTML Name Name\nor O O\ntextContent Name Name\n. O O\n\nThat O O\nreturns O O\na O O\nstring Name Name\n, O O\nso O O\nyou O O\nwant O O\nto O O\nuse O O\nparseInt() Name Name\nor O O\nparseFloat() Name Name\n. O O\n\nIf O O\nwe O O\noverride O O\nparent O O\nclass O O\n's O O\nmethod O O\n, O O\nwe O O\ncan O O\nuse O O\nsuper() Name Name\nto O O\navoid O O\nmention O O\nof O O\nparent O O\nclass O O\n's O O\nname O O\n- O O\nthat O O\n's O O\nclear O O\n. O O\n\nBut O O\nwhat O O\nabout O O\ncase O O\n, O O\nwhen O O\nwe O O\njust O O\nuse O O\nin O O\nsubclass O O\nsome O O\nfunction O O\ndefined O O\nin O O\nparent O O\nclass O O\n? O O\n\nWhat O O\nis O O\npreferable O O\nway O O\n: O O\nto O O\nuse O O\nsuper().parent_method() Name Name\nor O O\nself.parent_method() Name Name\n? O O\n\nOr O O\nthere O O\n's O O\nno O O\ndifference O O\n? O O\n\nactually O O\nsuper() Name Name\nis O O\nnot O O\nsyntactic O O\nsugar O O\n, O O\nits O O\npurpose O O\nis O O\nto O O\ninvoke O O\nparent O O\nimplementation O O\nof O O\na O O\ncertain O O\nmethod O O\n. O O\n\nYou O O\nhave O O\nto O O\nuse O O\nsuper() Name Name\nwhen O O\nyou O O\nwant O O\nto O O\noverride O O\na O O\nparent O O\nmethod O O\n, O O\nyou O O\ndo O O\nn't O O\nhave O O\nto O O\nuse O O\nsuper() Name Name\nwhen O O\ninstead O O\nyou O O\nwant O O\nto O O\noverwrite O O\na O O\nmethod O O\n. O O\n\nThe O O\ndifference O O\nis O O\nthat O O\nin O O\nthe O O\nfirst O O\ncase O O\nyou O O\nwant O O\nto O O\nadd O O\nextra O O\nbehavior O O\n( O O\naka O O\ncode O O\nexecution O O\n) O O\nbefore O O\nor O O\nafter O O\nthe O O\noriginal O O\nimplementation O O\n, O O\nin O O\nthe O O\nsecond O O\nyou O O\nwant O O\na O O\ncompletely O O\ndifferent O O\nimplementation O O\n. O O\n\nYou O O\nca O O\nn't O O\nuse O O\nself.method_name() Name Name\nin O O\nan O O\noverride O O\n, O O\nthe O O\nresult O O\nwill O O\nbe O O\na O O\nrecursion O O\nerror O O\n! O O\n\n( O O\nRuntimeError O O\n: O O\nmaximum O O\nrecursion O O\ndepth O O\nexceeded O O\n) O O\n\nExample O O\n: O O\n\nGiven O O\na O O\nbase O O\nclass O O\nA Name Name\n, O O\nwith O O\na O O\nmethod O O\nm Name Name\n, O O\nB Name Name\nextends O O\nA Name Name\nby O O\noverriding O O\nm Name Name\n, O O\nC Name Name\nextends O O\nA Name Name\nby O O\noverwriting O O\nm Name Name\n, O O\nand O O\nD Name Name\ngenerates O O\nan O O\nerror O O\n! O O\n\nEDIT O O\n: O O\n\nI O O\njust O O\nrealized O O\nthat O O\nyou O O\nactually O O\nhave O O\n2 O O\ndifferent O O\nmethods O O\n( O O\ntest_a Name Name\nand O O\ntest_b Name Name\n) O O\n. O O\n\nMy O O\nanswer O O\nis O O\nstill O O\nvalid O O\n, O O\nbut O O\nregarding O O\nyour O O\nspecific O O\nscenario O O\n: O O\n\nyou O O\nshould O O\nuse O O\nself.test_a() Name Name\nunless O O\nyou O O\noverride/overwrite O O\nthat O O\nmethod O O\nin O O\nyour O O\nclass O O\nB Name Name\nand O O\nyou O O\nwant O O\nto O O\nexecute O O\nthe O O\noriginal O O\nimplementation. O O\n. O O\nso O O\nwe O O\ncan O O\nsay O O\nthat O O\ncalling O O\nsuper().test_a() Name Name\nor O O\nself.test_a() Name Name\nit O O\n's O O\nthe O O\nsame O O\ngiven O O\nthat O O\nyou O O\n'll O O\nnever O O\noverride/overwrite O O\nthe O O\noriginal O O\ntest_a() Name Name\nin O O\nyour O O\nsubclasses. O O\n. O O\nhowever O O\nis O O\na O O\nnonsense O O\nto O O\nuse O O\nsuper() Name Name\nif O O\nnot O O\nfor O O\nan O O\noverride/overwrite O O\n\nUsually O O\nyou O O\nwill O O\nwant O O\nto O O\nuse O O\nself.test_a() Name Name\nto O O\ncall O O\nan O O\ninherited O O\nmethod O O\n. O O\n\nHowever O O\n, O O\nin O O\nsome O O\nrare O O\nsituations O O\nyou O O\nmight O O\nwant O O\nto O O\nuse O O\nsuper().test_a() Name Name\neven O O\nthough O O\nit O O\nseems O O\nto O O\ndo O O\nthe O O\nsame O O\nthing O O\n. O O\n\nThey O O\n're O O\nnot O O\nequivalent O O\n, O O\neven O O\nthough O O\nthey O O\nhave O O\nthe O O\nsame O O\nbehavior O O\nin O O\nyour O O\nexample O O\n. O O\n\nTo O O\nexplore O O\nthe O O\ndifferences O O\n, O O\nlets O O\nmake O O\ntwo O O\nversions O O\nof O O\nyour O O\nB Name Name\nclass O O\n, O O\none O O\nwith O O\neach O O\nkind O O\nof O O\ncall O O\n, O O\nthen O O\nmake O O\ntwo O O\nC Name Name\nclasses O O\nthat O O\nfurther O O\nextend O O\nthe O O\nB Name Name\nclasses O O\nand O O\noverride O O\ntest_a Name Name\n: O O\n\nWhen O O\nyou O O\ncall O O\nthe O O\ntest_b() Name Name\nmethod O O\non O O\nC1 Name Name\nand O O\nC2 Name Name\ninstances O O\nyou O O\n'll O O\nget O O\ndifferent O O\nresults O O\n, O O\neven O O\nthough O O\nB1 Name Name\nand O O\nB2 Name Name\nbehave O O\nthe O O\nsame O O\n: O O\n\nThis O O\nis O O\nbecause O O\nthe O O\nsuper() Name Name\ncall O O\nin O O\nB2.test_b Name Name\ntells O O\nPython Name Name\nthat O O\nyou O O\nwant O O\nto O O\nskip O O\nthe O O\nversion O O\nof O O\ntest_a Name Name\nin O O\nany O O\nmore O O\nderived O O\nclass O O\nand O O\nalways O O\ncall O O\nan O O\nimplementation O O\nfrom O O\na O O\nparent O O\nclass O O\n. O O\n\n( O O\nActually O O\n, O O\nI O O\nsuppose O O\nit O O\ncould O O\nbe O O\na O O\nsibling O O\nclass O O\nin O O\na O O\nmultiple O O\ninheritance O O\nsituation O O\n, O O\nbut O O\nthat O O\n's O O\ngetting O O\neven O O\nmore O O\nobscure O O\n. O O\n) O O\n\nLike O O\nI O O\nsaid O O\nat O O\nthe O O\ntop O O\n, O O\nyou O O\nusually O O\nwant O O\nto O O\nallow O O\na O O\nmore-derived O O\nclass O O\nlike O O\nthe O O\nCs Name Name\nto O O\noverride O O\nthe O O\nbehavior O O\nof O O\nthe O O\ninherited O O\nmethods O O\nyou O O\n're O O\ncalling O O\nin O O\nyour O O\nless-derived O O\nclass O O\n. O O\n\nThat O O\nmeans O O\nthat O O\nmost O O\nof O O\nthe O O\ntime O O\nusing O O\nself.whatever Name Name\nis O O\nthe O O\nway O O\nto O O\ngo O O\n. O O\n\nYou O O\nonly O O\nneed O O\nto O O\nuse O O\nsuper Name Name\nwhen O O\nyou O O\n're O O\ndoing O O\nsomething O O\nfancy O O\n. O O\n\nI O O\n'd O O\nlike O O\nto O O\nchange O O\nan O O\nobject O O\n's O O\nparameter O O\n, O O\nbut O O\nI O O\nlike O O\nto O O\ndecide O O\nlater O O\nabout O O\nwhat O O\n's O O\nthe O O\nparameter O O\nthat O O\nshould O O\nchange O O\n. O O\n\nI O O\n'm O O\nthinking O O\nto O O\nmake O O\na O O\nfunction O O\nfor O O\nthat O O\n, O O\nbut O O\ndo O O\nn't O O\nknow O O\nhow O O\n. O O\n\nHere O O\n's O O\na O O\nsample O O\n: O O\n\nHow O O\nto O O\nmake O O\na O O\nfunction O O\nthat O O\nreturns O O\nwhat O O\n's O O\nthe O O\nparameter O O\nof O O\nan O O\nobject O O\nthat O O\nneeds O O\nto O O\nbe O O\nchanged O O\n? O O\n\nAlternatively O O\n, O O\nhow O O\nto O O\nchoose O O\nwhich O O\nparameter O O\nto O O\nchange O O\n? O O\n\n( O O\nI O O\n.. O O\nthought O O\nabout O O\nswitch Name Name\nstatement O O\n. O O\n\nIs O O\na O O\ngood O O\ndirection O O\n? O O\n) O O\n\nI O O\n'm O O\npretty O O\nsure O O\nthat O O\n's O O\nsomething O O\nthat O O\nhas O O\nalready O O\nbeen O O\ndiscussed O O\non O O\ninternet O O\n. O O\n\nI O O\n've O O\nread O O\neverything O O\nabout O O\nfunctions O O\nand O O\ncould O O\nn't O O\nfind O O\nthe O O\nsolution O O\n, O O\nso O O\nI O O\nguess O O\nI O O\n'm O O\nsearching O O\nusing O O\nwrong O O\nkeywords O O\n. O O\n\nIf O O\nCarinherits Name Name\nfrom O O\nNSObject Name Name\nyou O O\nget O O\nkey-value-coding O O\nfor O O\nfree O O\nand O O\ncan O O\nchange O O\nthe O O\nvalue O O\nwith O O\nsetValue:forKey Name Name\n\nYou O O\ndo O O\nn't O O\nneed O O\nto O O\ncreate O O\na O O\nfunction O O\nyou O O\ncan O O\nuse O O\nKVC O O\nlike O O\nthis O O\nafter O O\nyou O O\ninherit O O\nfrom O O\nNSObject Name Name\n, O O\nor O O\nyou O O\ncan O O\nmake O O\na O O\nnew O O\nfunc O O\nthat O O\nguards O O\nagain O O\nbad O O\nproperty O O\nnames O O\n. O O\n\nKeep O O\nin O O\nmind O O\nthat O O\nthis O O\ncode O O\nwill O O\ncrash O O\nif O O\nyou O O\nenter O O\nbad O O\nproperty O O\nnames O O\n. O O\n\nHope O O\nthis O O\nanswers O O\nyour O O\nquestion O O\n. O O\n\nI O O\nhave O O\nbeen O O\nusing O O\nhaskell Name Name\nfor O O\na O O\nwhile O O\nnow O O\n. O O\n\nI O O\nunderstand O O\nmost/some O O\nof O O\nthe O O\nconcepts O O\nbut O O\nI O O\nstill O O\ndo O O\nnot O O\nunderstand O O\n, O O\nwhat O O\nexactly O O\ndoes O O\nhaskells Name Name\ntype O O\nsystem O O\nallow O O\nme O O\nto O O\ndo O O\nthat O O\nI O O\ncannot O O\ndo O O\nin O O\nanother O O\nstatically O O\ntyped O O\nlanguage O O\n. O O\n\nI O O\njust O O\nintuitively O O\nknow O O\nthat O O\nhaskells Name Name\ntype O O\nsystem O O\nis O O\nbetter O O\nin O O\nevery O O\nimaginable O O\nway O O\ncompared O O\nto O O\nthe O O\ntype O O\nsystem O O\nin O O\nC Name Name\n, O O\nC++ Name Name\nor O O\njava Name Name\n, O O\nbut O O\nI O O\nca O O\nn't O O\nexplain O O\nit O O\nlogically O O\n, O O\nprimarily O O\nbecause O O\nof O O\na O O\nlack O O\nof O O\nin O O\ndepth O O\nknowledge O O\nabout O O\nthe O O\ndifferences O O\nin O O\ntype O O\nsystems O O\nbetween O O\nhaskell Name Name\nand O O\nother O O\nstatically O O\ntyped O O\nlanguages O O\n. O O\n\nCould O O\nsomeone O O\ngive O O\nme O O\nexamples O O\nof O O\nhow O O\nhaskells Name Name\ntype O O\nsystem O O\nis O O\nmore O O\nhelpful O O\ncompared O O\nto O O\na O O\nlanguage O O\nwith O O\na O O\nstatic Name Name\ntype O O\nsystem O O\n. O O\n\nExamples O O\n, O O\nthat O O\nare O O\nterse O O\nand O O\ncan O O\nbe O O\nsuccinctly O O\nexpressed O O\nwould O O\nbe O O\nnice O O\n. O O\n\nThe O O\nHaskell Name Name\ntype O O\nsystem O O\nhas O O\na O O\nnumber O O\nof O O\nfeatures O O\nwhich O O\nall O O\nexist O O\nin O O\nother O O\nlanguages O O\n, O O\nbut O O\nare O O\nrarely O O\ncombined O O\nwithin O O\na O O\nsingle O O\n, O O\nconsistent O O\nlanguage O O\n: O O\n\nit O O\nis O O\na O O\nsound O O\n, O O\nstatic Name Name\ntype O O\nsystem O O\n, O O\nmeaning O O\nthat O O\na O O\nnumber O O\nof O O\nerrors O O\nare O O\nguaranteed O O\nnot O O\nto O O\nhappen O O\nat O O\nruntime O O\nwithout O O\nneeding O O\nruntime O O\ntype O O\nchecks O O\n( O O\nthis O O\nis O O\nalso O O\nthe O O\ncase O O\nin O O\nCaml Name Name\n, O O\nSML Name Name\nand O O\nalmost O O\nthe O O\ncase O O\nin O O\nJava Name Name\n, O O\nbut O O\nnot O O\nin O O\n, O O\nsay O O\n, O O\nLisp Name Name\n, O O\nPython Name Name\n, O O\nC Name Name\n, O O\nor O O\nC++ Name Name\n) O O\n; O O\n\nit O O\npeforms O O\nstatic Name Name\ntype O O\nreconstruction O O\n, O O\nmeaning O O\nthat O O\nthe O O\nprogrammer O O\ndoes O O\nn't O O\nneed O O\nto O O\nwrite O O\ntypes O O\nunless O O\nhe O O\nwants O O\nto O O\n, O O\nthe O O\ncompiler Name Name\nwill O O\nreconstruct O O\nthem O O\non O O\nits O O\nown O O\n( O O\nthis O O\nis O O\nalso O O\nthe O O\ncase O O\nin O O\nCaml Name Name\nand O O\nSML Name Name\n, O O\nbut O O\nnot O O\nin O O\nJava Name Name\nor O O\nC Name Name\n) O O\n; O O\n\nit O O\nsupports O O\nimpredicative O O\npolymorphism O O\n( O O\ntype O O\nvariables O O\n) O O\n, O O\neven O O\nat O O\nhigher O O\nkinds O O\n( O O\nunlike O O\nCaml Name Name\nand O O\nSML Name Name\n, O O\nor O O\nany O O\nother O O\nproduction-ready O O\nlanguage O O\nknown O O\nto O O\nme O O\n) O O\n; O O\n\nit O O\nhas O O\ngood O O\nsupport O O\nfor O O\noverloading O O\n( O O\ntype O O\nclasses O O\n) O O\n( O O\nunlike O O\nCaml Name Name\nand O O\nSML Name Name\n) O O\n. O O\n\nWhether O O\nany O O\nof O O\nthose O O\nmake O O\nHaskell Name Name\na O O\nbetter O O\nlanguage O O\nis O O\nopen O O\nto O O\ndiscussion O O\n— O O\nfor O O\nexample O O\n, O O\nwhile O O\nI O O\nhappen O O\nto O O\nlike O O\ntype O O\nclasses O O\na O O\nlot O O\n, O O\nI O O\nknow O O\nquite O O\na O O\nfew O O\nCaml Name Name\nprogrammers O O\nwho O O\nstrongly O O\ndislike O O\noverloading O O\nand O O\nprefer O O\nto O O\nuse O O\nthe O O\nmodule O O\nsystem O O\n. O O\n\nOn O O\nthe O O\nother O O\nhand O O\n, O O\nthe O O\nHaskell Name Name\ntype O O\nsystem O O\nlacks O O\na O O\nfew O O\nfeatures O O\nthat O O\nother O O\nlanguages O O\nsupport O O\nelegantly O O\n: O O\n\nit O O\nhas O O\nno O O\nsupport O O\nfor O O\nruntime O O\ndispatch O O\n( O O\nunlike O O\nJava Name Name\n, O O\nLisp Name Name\n, O O\nand O O\nJulia Name Name\n) O O\n; O O\n\nit O O\nhas O O\nno O O\nsupport O O\nfor O O\nexistential O O\ntypes O O\nand O O\nGADTs O O\n( O O\nthese O O\nare O O\nboth O O\nGHC O O\nextensions O O\n) O O\n; O O\n\nit O O\nhas O O\nno O O\nsupport O O\nfor O O\ndependent O O\ntypes O O\n( O O\nunlike O O\nCoq Name Name\n, O O\nAgda Name Name\nand O O\nIdris Name Name\n) O O\n. O O\n\nAgain O O\n, O O\nwhether O O\nany O O\nof O O\nthese O O\nare O O\ndesirable O O\nfeatures O O\nin O O\na O O\ngeneral-purpose O O\nprogramming O O\nlanguage O O\nis O O\nopen O O\nto O O\ndiscussion O O\n. O O\n\nOne O O\nmajor O O\ndifference O O\nbetween O O\nHaskell Name Name\n's O O\ntype O O\nsystem O O\nand O O\nthat O O\nof O O\nmost O O\nOO O O\nlanguages O O\nis O O\nthat O O\nthe O O\nability O O\nfor O O\na O O\nfunction O O\nto O O\nhave O O\nside O O\neffects O O\nis O O\nrepresented O O\nby O O\na O O\ndata O O\ntype O O\n( O O\na O O\nmonad Name Name\nsuch O O\nas O O\nIO Name Name\n) O O\n. O O\n\nThis O O\nallows O O\nyou O O\nto O O\nwrite O O\npure O O\nfunctions O O\nthat O O\nthe O O\ncompiler Name Name\ncan O O\nverify O O\nare O O\nside-effect-free O O\nand O O\nreferentially O O\ntransparent O O\n, O O\nwhich O O\ngenerally O O\nmeans O O\nthat O O\nthey O O\n're O O\neasier O O\nto O O\nunderstand O O\nand O O\nless O O\nprone O O\nto O O\nbugs O O\n. O O\n\nIt O O\n's O O\npossible O O\nto O O\nwrite O O\nside-effect-free O O\ncode O O\nin O O\nother O O\nlanguages O O\n, O O\nbut O O\nyou O O\ndo O O\nn't O O\nhave O O\nthe O O\ncompiler Name Name\n's O O\nhelp O O\nin O O\ndoing O O\nso O O\n. O O\n\nHaskell Name Name\nmakes O O\nyou O O\nthink O O\nmore O O\ncarefully O O\nabout O O\nwhich O O\nparts O O\nof O O\nyour O O\nprogram O O\nneed O O\nto O O\nhave O O\nside O O\neffects O O\n( O O\nsuch O O\nas O O\nI/O Name Name\nor O O\nmutable Name Name\nvariables O O\n) O O\nand O O\nwhich O O\nparts O O\nshould O O\nbe O O\npure O O\n. O O\n\nAlso O O\n, O O\nalthough O O\nit O O\n's O O\nnot O O\nquite O O\npart O O\nof O O\nthe O O\ntype O O\nsystem O O\nitself O O\n, O O\nthe O O\nfact O O\nthat O O\nfunction O O\ndefinitions O O\nin O O\nHaskell Name Name\nare O O\nexpressions O O\n( O O\nrather O O\nthan O O\nlists O O\nof O O\nstatements O O\n) O O\nmeans O O\nthat O O\nmore O O\nof O O\nthe O O\ncode O O\nis O O\nsubject O O\nto O O\ntype-checking O O\n. O O\n\nIn O O\nlanguages O O\nlike O O\nC++ Name Name\nand O O\nJava Name Name\n, O O\nit O O\n's O O\noften O O\npossible O O\nto O O\nintroduce O O\nlogic O O\nerrors O O\nby O O\nwriting O O\nstatements O O\nin O O\nthe O O\nwrong O O\norder O O\n, O O\nsince O O\nthe O O\ncompiler Name Name\ndoes O O\nn't O O\nhave O O\na O O\nway O O\nto O O\ndetermine O O\nthat O O\none O O\nstatement O O\nmust O O\nprecede O O\nanother O O\n. O O\n\nFor O O\nexample O O\n, O O\nyou O O\nmight O O\nhave O O\none O O\nline O O\nthat O O\nmodifies O O\nan O O\nobject O O\n's O O\nstate O O\n, O O\nand O O\nanother O O\nline O O\nthat O O\ndoes O O\nsomething O O\nimportant O O\nbased O O\non O O\nthat O O\nstate O O\n, O O\nand O O\nit O O\n's O O\nup O O\nto O O\nyou O O\nto O O\nensure O O\nthat O O\nthese O O\nthings O O\nhappen O O\nin O O\nthe O O\ncorrect O O\norder O O\n. O O\n\nIn O O\nHaskell Name Name\n, O O\nthis O O\nkind O O\nof O O\nordering O O\ndependency O O\ntends O O\nto O O\nbe O O\nexpressed O O\nthrough O O\nfunction O O\ncomposition O O\n— O O\ne.g O O\n. O O\nf Name Name\n( Name Name\ng Name Name\nx Name O\n) Name Name\nmeans O O\nthat O O\ng Name Name\nmust O O\nrun O O\nfirst O O\n— O O\nand O O\nthe O O\ncompiler Name Name\ncan O O\ncheck O O\nthe O O\nreturn O O\ntype O O\nof O O\ng Name Name\nagainst O O\nthe O O\nargument O O\ntype O O\nof O O\nf Name Name\nto O O\nmake O O\nsure O O\nyou O O\nhave O O\nn't O O\ncomposed O O\nthem O O\nthe O O\nwrong O O\nway O O\n. O O\n\nhttps://www.youtube.com/watch?v=XPpsI8mWKmg O O\n\nThis O O\nvideo Name Name\nhas O O\nclosed O O\ncaptions O O\n. O O\n\nHowever O O\n, O O\nresponse O O\nalways O O\nreturns O O\nisCC Name Name\n= Name Name\nfalse Name Name\n. O O\n\nIt O O\nhappens O O\nwith O O\nmore O O\nvideos Name Name\nas O O\nwell O O\n. O O\n\nCan O O\nanyone O O\ntell O O\nme O O\nwhy O O\n? O O\n\nhttps://developers.google.com/youtube/v3/docs/captions O O\n\nThis O O\nis O O\nthe O O\nresponse O O\n: O O\n\nThank O O\nyou O O\n. O O\n\nI O O\ntried O O\nto O O\nset O O\nclosed O O\ncaptions O O\nfor O O\nmy O O\nown O O\nvideo Name Name\nand O O\ngot O O\nthe O O\nsame O O\nresult O O\n. O O\n\nI O O\nbelieve O O\nthat O O\nin O O\nthe O O\nplayer O O\n, O O\nthe O O\n\" O O\nCC Name Name\n\" O O\nyou O O\nsee O O\nis O O\nactually O O\nreferring O O\nto O O\nsubtitles O O\n. O O\n\nThere O O\n's O O\nan O O\nimportant O O\ndistinction O O\nbetween O O\nsubtitles O O\nand O O\nclosed O O\ncaptioning O O\n( O O\nsee O O\nhere O O\nand O O\nhere O O\n) O O\n. O O\n\n. O O\n. O O\n\nTherefore O O\n, O O\nI O O\nbelieve O O\nisCC Name Name\nwill O O\nonly O O\nbe O O\ntrue O O\nfor O O\nvideos Name Name\nthat O O\ninclude O O\nthis O O\nkind O O\nof O O\ncaptioning O O\nintended O O\nfor O O\npeople O O\nwho O O\nmight O O\nnot O O\nbe O O\nable O O\nto O O\nhear O O\nwhat O O\n's O O\nhappening O O\nin O O\nthe O O\nvideo Name Name\n, O O\nas O O\nopposed O O\nto O O\njust O O\ngeneral O O\ncaptions O O\nthat O O\npeople O O\ncan O O\nput O O\nonto O O\ntheir O O\nvideos Name Name\n. O O\n\nI O O\nthink O O\nthat O O\nin O O\nalmost O O\nall O O\ncases O O\n, O O\nonly O O\nhigh O O\nquality O O\n, O O\npaid O O\nmovies O O\non O O\nYouTube Name Name\nwill O O\nhave O O\nthese O O\nkinds O O\nof O O\ncaptions O O\n. O O\n\nIn O O\nthat O O\nsense O O\n, O O\nthe O O\nisCC Name Name\nproperty O O\nworks O O\nthe O O\nway O O\nit O O\n's O O\nsupposed O O\nto O O\n. O O\n\nI O O\nthink O O\nthe O O\nproblem O O\nmight O O\nbe O O\nin O O\nyour O O\nsyntax O O\n: O O\n\nor O O\nmaybe O O\n\nI O O\ndont O O\nhave O O\nmuch O O\nexperience O O\nwith O O\nthe O O\nyoutube Name Name\napi Name Name\nbut O O\nchecking O O\nout O O\nthe O O\ndocumentation O O\nI O O\nfound O O\ncode O O\nabove O O\n. O O\n\nI O O\nam O O\nlearning O O\nCollection Name Name\nFramework Name Name\non O O\nthis O O\nwebsite O O\n: O O\nhttp://way2java.com/collections/hashtable-about/ O O\n. O O\n\nAfter O O\nreading O O\nall O O\nthe O O\nmethods O O\nof O O\nHashtable Name Name\nI O O\nsee O O\ntwo O O\nmethods O O\nto O O\naccess O O\nthe O O\ntable O O\n's O O\nkeys O O\n: O O\n\nSet Name Name\nkeys() Name Name\n: O O\nReturns O O\na O O\nSet Name Name\nobject O O\ncontaining O O\nall O O\nthe O O\nkeys O O\n\nSet Name Name\nkeySet() Name Name\n: O O\nReturns O O\na O O\nSet Name Name\nobject O O\ncontaining O O\nall O O\nthe O O\nkeys O O\nof O O\nHashtable Name Name\n. O O\n\nOne O O\nsimilarity O O\nis O O\nHashtable Name Name\nand O O\nSet Name Name\ndoes O O\nnot O O\nallow O O\nduplicates O O\n. O O\n\nAdding O O\nand O O\nremoving O O\nelements O O\nin O O\nSet Name Name\nalso O O\nreflects O O\nin O O\nHashtable Name Name\n\nBoth O O\nof O O\nthem O O\nreturn O O\na O O\nSet Name Name\nobject O O\n. O O\n\nI O O\ndo O O\nn't O O\nsee O O\nthe O O\ndifferent O O\nbetween O O\nthem O O\n. O O\n\nAnyone O O\ncan O O\ntell O O\nme O O\nabout O O\nthis O O\n? O O\n\nkeys() Name Name\ndoes O O\nn't O O\nreturn O O\na O O\nSet Name Name\n, O O\nit O O\nreturns O O\nan O O\nEnumeration<K> Name Name\n. O O\n\nHashtable Name Name\nis O O\na O O\nvery O O\nlegacy O O\nclass O O\nno O O\nlonger O O\nrecommended O O\nfor O O\nuse O O\n. O O\n\nIt O O\nis O O\nreplaced O O\nby O O\nHashMap Name Name\n, O O\nor O O\nConcurrentHashMap Name Name\n† O O\n. O O\n\nIt O O\nexisted O O\nbefore O O\nthe O O\nJCF Name Name\ndid O O\n, O O\ntherefore O O\nthe O O\nstandard O O\nway O O\nto O O\nget O O\nto O O\nthe O O\nkeys Name Name\nat O O\nthe O O\nstart O O\nwas O O\nthrough O O\nan O O\nEnumeration Name Name\n- O O\nthe O O\noriginal O O\nJava Name Name\ninterface O O\nfor O O\nmoving O O\nthrough O O\na O O\ncollection O O\nof O O\nobjects O O\n. O O\n\nThen O O\ncame O O\nJava Name Name\n1.2 Name Name\n, O O\nand O O\nthe O O\nJCF Name Name\n. O O\n\nHashtable Name Name\nwas O O\nretrofitted O O\nfor O O\nthe O O\nMap O O\ninterface O O\nwith O O\nthe O O\nkeySet() Name Name\nmethod O O\nthat O O\nreturned O O\na O O\nSet Name Name\n( O O\nalso O O\nintroduced O O\nwith O O\nthe O O\nJCF Name Name\n) O O\n. O O\n\nThe O O\nkeys Name Name\nmethod O O\nwas O O\nretained O O\nfor O O\nlegacy O O\ncompatibility O O\nreasons O O\n. O O\n\nThe O O\nSet Name Name\nreturned O O\nfrom O O\nthe O O\nnew O O\nmethod O O\nachieves O O\ntwo O O\nthings O O\n: O O\n\nconveys O O\nintent O O\n- O O\nit O O\nreinforces O O\nthe O O\nfact O O\nthat O O\nthe O O\nkeys O O\nof O O\na O O\nHashtable Name Name\nare O O\na O O\nmathematical O O\nset O O\n\nimplements O O\nIterable Name Name\n<T>, Name Name\nwhich O O\nreplaces O O\nEnumerable<T> Name Name\n\n† O O\nFrom O O\nthe O O\nHashtable Name Name\ndocumentation Name Name\n: O O\n\nThe O O\nmethod O O\nkeys() Name Name\nin O O\nHashtable Name Name\nactually O O\nreturn O O\nEnumeration Name Name\nof O O\nkeys O O\n: O O\n\nReturns O O\nan O O\nenumeration Name Name\nof O O\nthe O O\nkeys O O\nin O O\nthis O O\nhashtable Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nupdate O O\na O O\nrecord O O\nin O O\nmongoDb Name Name\n. O O\n\nBut O O\ni O O\nam O O\ngetting O O\nan O O\nerror O O\n\nHere O O\ni O O\ndont O O\nknow O O\nhow O O\nto O O\nupdate O O\n. O O\n\nMay O O\nbe O O\ni O O\nam O O\nfollowing O O\nthe O O\nwrong O O\nsyntax O O\nfor O O\nupdate O O\n. O O\n\nCould O O\nanyone O O\nlend O O\na O O\nhelping O O\nhand O O\n? O O\n\nHere O O\ni O O\nam O O\nusing O O\nupsert O O\nbecause O O\nif O O\nrecord O O\nnot O O\nfound O O\nfor O O\nupdate O O\nthen O O\nit O O\nwill O O\ninsert O O\na O O\nnew O O\nrecord O O\n. O O\n\nYou O O\nare O O\nmissing O O\n{ Name Name\nin O O\nyour O O\nupdate O O\ndocument O O\n. O O\n\n{ Name Name\n\" Name Name\n$set Name Name\n\" Name Name\n: Name Name\nstudent_record} Name Name\n. O O\n\nAlso O O\nyou O O\nneed O O\nto O O\nconvert O O\n\" O O\nstudent_grade Name Name\n\" O O\nto O O\nfloat Name Name\n. O O\n\nBy O O\ndefault O O\nupsert Name Name\n: Name Name\nFalse Name Name\nso O O\nyou O O\ndo O O\nn't O O\nneed O O\nto O O\nspecify O O\n. O O\n\nYour O O\nif O O\nstatement O O\ncan O O\nby O O\nsimplify O O\nas O O\n: O O\nif Name Name\nflag.lower() Name Name\n== Name Name\n' Name Name\ny Name Name\n' Name Name\n: Name Name\n\nLast O O\nand O O\nnot O O\nleast O O\nthe O O\nupdate Name Name\nmethod O O\nis O O\ndeprecated O O\n. O O\n\nYou O O\nshould O O\nuse O O\nthe O O\nnew O O\nAPI O O\n. O O\n\nupdate_one O O\n\nI O O\n'm O O\nusing O O\nRails Name Name\n1.2.3 Name Name\non O O\na O O\nproject O O\n. O O\n\n( O O\nUpgrading O O\nrails Name Name\nis O O\nnot O O\nan O O\noption O O\n) O O\n. O O\n\nI O O\n've O O\ncreated O O\na O O\nsimple O O\ntest O O\nweb-service O O\nusing O O\nRails Name Name\n. O O\n\nI O O\n've O O\ntested O O\nusing O O\nthe O O\nRails Name Name\ninvoke O O\nscaffold O O\n. O O\n\nIt O O\nseems O O\nto O O\ngenerate O O\nthe O O\nresponse O O\nwith O O\nno O O\nproblems O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nsetup O O\na O O\nclient Name Name\nvia O O\n.NET Name Name\n. O O\n\nI O O\n've O O\ncreated O O\nan O O\nASP.NET Name Name\nWeb O O\nApp O O\nproject O O\nin O O\nC# Name Name\n. O O\n\nI O O\nam O O\nadding O O\na O O\n\" O O\nWeb O O\nReference O O\n\" O O\n, O O\nadd O O\nthe O O\nReference O O\nURL O O\ninto O O\nthe O O\nURL O O\nfield O O\nof O O\nthe O O\nwizard Name Name\n, O O\n\nthen O O\nI O O\nreceive O O\nan O O\nerror O O\nfrom O O\nthe O O\nwizard Name Name\n: O O\n\nMy O O\ncode O O\nis O O\n: O O\n\nAre O O\nthere O O\nany O O\nknown O O\nissues O O\nbetween O O\nActionWebService Name Name\nand O O\n.NET Name Name\nor O O\nam O O\nI O O\ndoing O O\nsomething O O\nwrong O O\n? O O\n\nIs O O\nmy O O\nURL O O\ncorrect O O\nfor O O\na O O\nrails Name Name\nweb-service O O\n? O O\n\nThis O O\nhas O O\nprobably O O\nbeen O O\nanswered O O\nelsewhere O O\n, O O\nbut O O\nsince O O\nthis O O\nquestion O O\npops O O\nup O O\nwhen O O\nsearching O O\ngoogle Name Name\nfor O O\nactionwebservice Name Name\nand O O\nget O O\nrequests O O\n, O O\nI O O\nthought O O\nI O O\nwould O O\nanswer O O\nit O O\nhere O O\n. O O\n\nBy O O\ndefault O O\nAWS Name Name\nrefuses O O\nnon-POST Name Name\nrequests O O\n. O O\n\nSpecifically O O\nit O O\nhas O O\ncode O O\nin O O\naction_controller_dispatcher.rb Name Name\nthat O O\nreads O O\n: O O\n\nBasically O O\nyou O O\nhave O O\nto O O\neither O O\nset O O\nup O O\nthe O O\nrequest O O\nto O O\nPOST Name Name\nthe O O\nrequest O O\ninstead O O\nof O O\nGETting Name Name\nit O O\n. O O\n\nOr O O\nyou O O\nhave O O\nto O O\noverride O O\nAWS Name Name\n's O O\nhandling O O\nof O O\nGET Name Name\nrequests O O\n. O O\n\n( O O\nYou O O\nmight O O\ntry O O\nediting O O\nthe O O\ncode O O\ninside O O\nthe O O\ngem O O\n, O O\nbut O O\n( O O\n1) O O\nthat O O\nwill O O\nget O O\noverwritten O O\nwhen O O\nyou O O\nupdate O O\nthe O O\ngem O O\nand O O\n( O O\n2) O O\nI O O\n'm O O\nnot O O\nsure O O\nhow O O\ngood O O\nan O O\nidea O O\nthat O O\nis O O\nin O O\ngeneral O O\nand O O\n( O O\n3) O O\nI O O\n've O O\nnever O O\ntried O O\nit O O\n. O O\n\nThe O O\nformer O O\nis O O\nlikely O O\nmore O O\nappropriate O O\nif O O\nyou O O\nhave O O\ncontrol O O\nof O O\nthe O O\ncode O O\ngenerating O O\nthe O O\nrequest O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\n, O O\nZack O O\nChandler O O\nhad O O\na O O\nworkaround O O\n( O O\nfor O O\nQuickBooks Name Name\n's O O\nconnection O O\nto O O\na O O\nweb-service O O\n, O O\nbut O O\nit O O\nshould O O\nwork O O\nin O O\nany O O\ncase O O\n) O O\n, O O\nhere O O\n. O O\n\nI O O\n'm O O\nquoting O O\nit O O\nbelow O O\nin O O\ncase O O\nthe O O\nurl O O\nchanges O O\n. O O\n\nObviously O O\nthe O O\ncode O O\ninside O O\nthe O O\ndispatch_web_service_request Name Name\nmethod O O\nis O O\nQuickBooks Name Name\nspecific O O\n, O O\nbut O O\nyou O O\nshould O O\nget O O\nthe O O\nidea O O\n. O O\n\nHope O O\nthis O O\nhelps O O\n, O O\nand O O\nI O O\nhope O O\nZack O O\ndoes O O\nn't O O\nmind O O\nme O O\nreposting O O\n. O O\n\nthe O O\nproblem O O\nis O O\nI O O\ngot O O\nlarge O O\ntext O O\nfile O O\n. O O\n\nLet O O\nit O O\nbe O O\n\nI O O\nneed O O\nto O O\ncompare O O\nevery O O\n3rd O O\nsymbol O O\nin O O\nthis O O\ntext O O\nwith O O\nvalue O O\n( O O\ne.g O O\n. O O\n' Name Name\nc' Name Name\n) O O\nand O O\nif O O\ntrue Name Name\n, O O\nI O O\nwant O O\nto O O\nadd O O\n1 Name Name\nto O O\ncounter O O\ni Name Name\n. O O\n\nI O O\nthought O O\nto O O\nuse O O\ngrep Name Name\nbut O O\nit O O\nseems O O\nthis O O\nfunction O O\nwould O O\nn't O O\nsuite O O\nfor O O\nmy O O\npurpose O O\n. O O\n\nSo O O\nI O O\nneed O O\nyour O O\nhelp O O\nor O O\nadvice O O\n. O O\n\nMore O O\nthan O O\nthat O O\n, O O\nI O O\nwant O O\nto O O\nextract O O\ncertain O O\nvalues O O\nfrom O O\nthis O O\nstring Name Name\nto O O\na O O\nvector Name Name\n. O O\n\n4 O O\nexample O O\n, O O\ni O O\nwant O O\nto O O\nextract O O\n4:10 Name Name\nsymbols O O\n, O O\ne.g O O\n. O O\n\nThank O O\nyou O O\nin O O\nadvance O O\n. O O\n\nP.S O O\n. O O\n\nI O O\nknow O O\nit O O\n's O O\nnot O O\nthe O O\nbest O O\nidea O O\nto O O\nwrite O O\nscript O O\ni O O\nneed O O\nin O O\nR Name Name\n, O O\nbut O O\nI O O\n'm O O\ncurious O O\nif O O\nits O O\npossible O O\nto O O\nwrite O O\nit O O\nin O O\nan O O\nadequate O O\nway O O\n. O O\n\nEdited O O\nto O O\nprovide O O\na O O\nsolution O O\nthat O O\n's O O\nfast O O\nfor O O\nmuch O O\nlarger O O\nstrings Name Name\n: O O\n\nIf O O\nyou O O\nhave O O\na O O\nvery O O\nlong O O\nstring Name Name\n( O O\non O O\nthe O O\norder O O\nof O O\nmillions O O\nof O O\nnucleotides O O\n) O O\n, O O\nthe O O\nlookbehind O O\nassertion O O\nin O O\nmy O O\noriginal O O\nanswer O O\n( O O\nbelow O O\n) O O\nis O O\ntoo O O\nslow O O\nto O O\nbe O O\npractical O O\n. O O\n\nIn O O\nthat O O\ncase O O\n, O O\nuse O O\nsomething O O\nmore O O\nlike O O\nthe O O\nfollowing O O\n, O O\nwhich O O\n: O O\n( O O\n1) O O\nsplits O O\nthe O O\nstring Name Name\napart O O\nbetween O O\nevery O O\ncharacter Name Name\n; O O\n( O O\n2) O O\nuses O O\nthe O O\ncharacters Name Name\nto O O\nfill O O\nup O O\na O O\nthree O O\nrow Name Name\nmatrix Name Name\n; O O\nand O O\nthen O O\n( O O\n3) O O\nextracts O O\nthe O O\ncharacters Name Name\nin O O\nthe O O\n3rd O O\nrow Name Name\nof O O\nthe O O\nmatrix Name Name\n. O O\n\nThis O O\ntakes O O\non O O\nthe O O\norder O O\nof O O\n0.2 O O\nseconds O O\nto O O\nprocess O O\na O O\n3-million O O\ncharacter O O\nlong O O\nstring Name Name\n. O O\n\nOriginal O O\nanswer O O\n: O O\n\nI O O\nmight O O\nuse O O\nsubstr() Name Name\nin O O\nboth O O\ncases O O\n. O O\n\nCompare O O\nevery O O\nthird O O\ncharacter Name Name\nwith O O\n\" Name Name\nc Name Name\n\" Name Name\n: O O\n\nExtract O O\ncharacters Name Name\n4 Name Name\nto O O\n10 Name Name\n: O O\n\nI O O\ninstall O O\nckeditor Name Name\nand O O\nconfiguration O O\nfile O O\nhow O O\nit O O\nis O O\ndescribe O O\nthere O O\n. O O\n\nbut O O\nwhen O O\nI O O\ntry O O\nto O O\nedit O O\nor O O\ncreate O O\nHTML Name Name\nfile O O\nin O O\nalfresco Name Name\n, O O\nthe O O\ncontent O O\narea O O\nis O O\nempty O O\n( O O\nblank O O\n) O O\nand O O\nI O O\nca O O\nn't O O\nedit O O\nanything O O\n. O O\n\nWhat O O\nis O O\nthe O O\nproblem O O\n? O O\n? O O\n\nHelp O O\nplease O O\n! O O\n\n:( O O\n\nWhat O O\nI O O\ndid O O\n: O O\n\n1) O O\nI O O\ndownloaded O O\nckeditor-forms-master Name Name\nfrom O O\ngithub Name Name\n\n2) O O\nIn O O\ncmd Name Name\nfrom O O\nparent O O\nfolder O O\nckeditor-forms-master O O\nI O O\nexecute O O\nthese O O\ncommands O O\n\nant Name Name\nclean Name Name\ndist-jar Name Name\n\nant Name Name\n-Dtomcat.home Name Name\n= Name Name\nC:/Alfresco/tomcat Name Name\nclean Name Name\ndist-jar Name Name\nhotcopy-tomcat-jar Name Name\n\nBoth O O\nwere O O\nsuccessfully O O\nexecuted O O\n. O O\n\nRestarted O O\nthe O O\nalfresco Name Name\ntomcat Name Name\nserver Name Name\n. O O\n\nNow O O\nwhen O O\nI O O\ncreate/edit O O\nHTML Name Name\nfile O O\nthe O O\ncontext O O\narea O O\nis O O\nblank O O\n.. O O\n. O O\n\nalfresco Name Name\nversion O O\n4.2.f Name Name\n. O O\n\nbrowser Name Name\ngoogle Name Name\nchrome Name Name\n\nI O O\n've O O\nbeen O O\ntrying O O\nto O O\nlearn O O\nSencha Name Name\nTouch Name Name\nand O O\nI O O\n'm O O\nstuck O O\non O O\nsomething O O\nthat O O\nis O O\nprobably O O\npretty O O\nobvious O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nupdate O O\na O O\ntabPanel Name Name\nwith O O\na O O\nbutton Name Name\nevent O O\n. O O\n\nI O O\n'd O O\nlike O O\nfor O O\na O O\ntap O O\non O O\nthe O O\nfirst O O\nbutton Name Name\nto O O\nload O O\n' O O\nmaptestPanel Name Name\n' O O\nin O O\nthe O O\nsame O O\npanel Name Name\n. O O\n\nThis O O\nis O O\na O O\nmap Name Name\nloaded O O\nfrom O O\nits O O\nown O O\njs Name Name\nfile O O\n. O O\n\nThe O O\nmap Name Name\npanel Name Name\nlooks O O\nok O O\nby O O\nitself O O\n: O O\n\nBut O O\nI O O\n'm O O\nnot O O\nseeing O O\nhow O O\nto O O\nproperly O O\nplace O O\nit O O\nin O O\nthe O O\ntabPanel Name Name\n\nThe O O\ncode O O\nis O O\n: O O\n\nThanks O O\nfor O O\nany O O\nadvice O O\nor O O\na O O\nsteer O O\nin O O\nthe O O\nright O O\ndirection O O\n. O O\n\nI O O\nonly O O\nknow O O\n\" O O\nclassic O O\n\" O O\nsencha Name Name\n, O O\nbut O O\nthis O O\nshould O O\nwork O O\nthe O O\nsame O O\nway O O\n: O O\nSo O O\nyou O O\ncould O O\njust O O\nadd O O\nthe O O\nmapPanel Name Name\n( O O\nbut O O\nhidden O O\n) O O\nto O O\nyour O O\ntabPanel Name Name\n, O O\nand O O\nin O O\nthe O O\nbutton Name Name\nhandler O O\nshow O O\nit O O\nwhile O O\nhiding O O\nthe O O\nbutton Name Name\npanel O O\n. O O\n\nBesides O O\n, O O\nspeaking O O\nof O O\nlayouts O O\n, O O\nI O O\ndo O O\nn't O O\nthink O O\nyou O O\nneed O O\nto O O\nprecise O O\nlayout Name Name\n: O O\n' O O\ncard O O\n' O O\nin O O\ntabPanel Name Name\nsince O O\nit O O\nuses O O\na O O\ncard O O\nlayout Name Name\nby O O\ndefinition O O\n\nThere O O\n's O O\nseveral O O\nthings O O\nyou O O\nneed O O\nto O O\ndo O O\nto O O\nfix O O\nup O O\nthat O O\ncode O O\n: O O\n\n1) O O\n' O O\nMaps Name Name\n' O O\nhas O O\nno O O\nlayout Name Name\n. O O\n\nSince O O\nit O O\nhas O O\na O O\nsingle O O\nchild O O\nitem O O\n, O O\nlayout Name Name\n: O O\n' O O\nfit Name Name\n' O O\nwould O O\nbe O O\nappropriate O O\nhere O O\n. O O\n\n2) O O\nOnly O O\nuse O O\nfullscreen Name Name\non O O\nthe O O\noutermost O O\nitem O O\n, O O\nyou O O\ndo O O\nn't O O\nwant O O\nthe O O\nother O O\nitems O O\nto O O\nbe O O\nfullscreen Name Name\nsince O O\nthey O O\nare O O\nchild O O\nitems O O\nof O O\nother O O\ncontainers O O\n. O O\n\n3) O O\nTo O O\ndynamically O O\nadd O O\nitems O O\nto O O\na O O\ncontainer O O\n, O O\nuse O O\nthe O O\nadd() Name Name\nmethod O O\non O O\ncontainer O O\n. O O\n\nYou O O\n'll O O\nalso O O\nneed O O\nto O O\ncall O O\ndoLayout() Name Name\nto O O\ntrigger O O\na O O\nlayout Name Name\nfor O O\nthe O O\ncontainer O O\n. O O\n\nHowever O O\n, O O\nin O O\nthis O O\ncase O O\nI O O\ndo O O\nn't O O\nsee O O\nwhy O O\nyou O O\n're O O\nadding O O\nthe O O\nmap Name Name\nto O O\na O O\npanel Name Name\n, O O\nit O O\ndoes O O\nn't O O\ngive O O\nyou O O\nany O O\nextra O O\nfunctionality O O\n. O O\n\nInstead O O\n, O O\nI O O\nwould O O\nadd O O\nthe O O\nmap Name Name\ndirectly O O\nto O O\nthe O O\nbtnPanel Name Name\n. O O\n\n4) O O\nThe O O\nbtnPanel Name Name\nhas O O\nno O O\nlayout Name Name\neither O O\n, O O\nso O O\nyou O O\n'll O O\nneed O O\nto O O\nchoose O O\nan O O\nappropriate O O\nlayout Name Name\nthere O O\nas O O\nwell O O\n, O O\npossibly O O\nthe O O\nvbox O O\nlayout Name Name\n. O O\n\nI O O\nhave O O\nalready O O\nread O O\nsome O O\nquestions O O\nabout O O\nkinesis Name Name\nshard Name Name\nand O O\nmultiple O O\nconsumers Name Name\nbut O O\nI O O\nstill O O\ndo O O\nn't O O\nunderstand O O\nhow O O\nit O O\nworks O O\n. O O\n\nMy O O\nuse O O\ncase O O\n: O O\nI O O\nhave O O\na O O\nkinesis Name Name\nstream Name Name\nwith O O\njust O O\none O O\nshard Name Name\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nconsume O O\nthis O O\nshard Name Name\nusing O O\ndifferent O O\nlambda O O\nfunction O O\n, O O\neach O O\nof O O\nthem O O\nindependently O O\n. O O\n\nIt O O\n's O O\nlike O O\nthat O O\neach O O\nlambda O O\nfunction O O\nwill O O\nhave O O\nit O O\n's O O\nown O O\nshard Name Name\niterator O O\n. O O\n\nIs O O\nit O O\npossible O O\n? O O\n\nSet O O\nmultiple O O\nlambda O O\nconsumers Name Name\n( O O\nstream Name Name\nbased O O\n) O O\nreading O O\nfrom O O\nthe O O\nsame O O\nstream/shard Name Name\n? O O\n\nYes O O\n, O O\nno O O\nproblem O O\nwith O O\nthis O O\n! O O\n\nThe O O\nnumber O O\nof O O\nshards Name Name\ndoes O O\nn't O O\nlimit O O\nthe O O\nnumber O O\nof O O\nconsumers Name Name\na O O\nstream Name Name\ncan O O\nhave O O\n. O O\n\nIn O O\nyou O O\ncase O O\n, O O\nit O O\nwill O O\njust O O\nlimit O O\nthe O O\nnumber O O\nof O O\nconcurrent O O\ninvocations O O\nof O O\neach O O\nlambda O O\n. O O\n\nThis O O\nmeans O O\nthat O O\nfor O O\neach O O\nconsumers Name Name\n, O O\nyou O O\ncan O O\nonly O O\nhave O O\nthe O O\nnumber O O\nof O O\nshards Name Name\nof O O\nconcurrent O O\nexecutions O O\n. O O\n\nSeethis O O\ndoc O O\nfor O O\nmore O O\ndetails O O\n. O O\n\nThis O O\nis O O\nmy O O\nenum Name Name\n\nAnd O O\ni O O\nhave O O\na O O\nEnumDropDownListFor Name Name\nfor O O\nit O O\n\nAnd O O\nas O O\ndefault O O\n( O O\nwhen O O\npage O O\nhad O O\nbeen O O\nloaded O O\n) O O\ni O O\nsee O O\nEmployee Name Name\nin O O\nthis O O\nform.But O O\ni O O\nwant O O\nto O O\nsee O O\nfirstly O O\nEvaluation.My Name Name\nfirst O O\ndecision O O\nwas O O\nchanging O O\nenum Name Name\nquery O O\nto O O\n\nBut O O\nit O O\nwas O O\nbad O O\ndecision O O\nfor O O\nwhole O O\nproject O O\n( O O\nbut O O\nworking O O\n) O O\n.So O O\nhow O O\neasly O O\ni O O\ncan O O\nset O O\nanother O O\ndefault O O\n? O O\nAny O O\nideas O O\n? O O\n\nI O O\nam O O\ntrying O O\nto O O\nset O O\nup O O\nthis O O\nSlideshow Name Name\non O O\nmy O O\nwebsite O O\n. O O\n\nBut O O\nfor O O\nsome O O\nreason O O\nis O O\nnot O O\nworking O O\n, O O\neven O O\nthough O O\nI O O\ndouble O O\nchecked O O\nendless O O\ntimes O O\n. O O\n\nhttp://jsfiddle.net/2VQ9A/ O O\n\nIt O O\nonly O O\nseems O O\nto O O\nbe O O\nworking O O\non O O\njsfiddle Name Name\n, O O\nits O O\nlike O O\nits O O\nnot O O\nbeing O O\nrecognized O O\nby O O\nmy O O\nbrowser Name Name\nor O O\nsomething O O\nweird O O\n. O O\n\nThis O O\nmight O O\nbe O O\nsilly O O\nquestion O O\nand O O\na O O\nsimple O O\nanswer O O\n. O O\n\nThis O O\nis O O\nmy O O\nfirst O O\ntime O O\nworking O O\nwith O O\nJavascript Name Name\n. O O\n\nI O O\n'll O O\nappreciate O O\nany O O\nhelp O O\n:) O O\n! O O\n\ninclude O O\nthese O O\nfiles O O\n\nIt O O\nis O O\nworking O O\nin O O\nfiddle Name Name\nmeans O O\ndefinetely O O\nthese O O\nare O O\nthe O O\nprobme.Try O O\nto O O\ninclude O O\n\nCheck O O\non O O\nyou O O\npage O O\nthat O O\nyou O O\nadded O O\nthe O O\njquery Name Name\nfiles O O\nlike O O\n: O O\n\nor O O\nadd O O\nthese O O\nfiles O O\nby O O\nany O O\nCDN O O\nlike O O\nGoogle Name Name\nor O O\nMicrosoft Name Name\n\nAlso O O\nAdd O O\nyou O O\ncode O O\nafter O O\nadding O O\nthe O O\nabove O O\nfiles O O\n\nlike O O\n: O O\n\nI O O\nhave O O\nan O O\nexisting O O\ntable Name Name\ncalled O O\ntemp_09.jwn Name Name\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nadd O O\na O O\nnew O O\ncolumn Name Name\ncalled O O\ncobrand_bank_id Name Name\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nwhere O O\nI O O\ncan O O\nskip O O\nthe O O\nALTER Name Name\nTABLE Name Name\nstep O O\nbelow O O\nand O O\njust O O\ndirectly O O\nwrite O O\nthe O O\ninsert Name Name\ninto O O\nstatement O O\n? O O\n\nNo O O\n, O O\nyou O O\nhave O O\nto O O\nadd O O\nthe O O\ncolumn Name Name\nfirst O O\n. O O\n\nSchema-less O O\ndatabases O O\n( O O\nNoSQL Name Name\n) O O\ncan O O\nsupport O O\nthis O O\n, O O\nbut O O\nan O O\nRDBMS Name Name\nneeds O O\nto O O\nhave O O\nits O O\nscheme O O\naltered O O\n. O O\n\nIt O O\n's O O\nkind O O\nof O O\nlike O O\nsaying O O\n, O O\n\" O O\nI O O\nbought O O\nthese O O\nnew O O\nshoes O O\nand O O\nI O O\nneed O O\na O O\nbin O O\nto O O\nstore O O\nthem O O\n, O O\nif O O\nI O O\njust O O\ntoss O O\nthem O O\nin O O\nthe O O\ncorner O O\nwill O O\na O O\nbin O O\nappear O O\n? O O\n\" O O\n\nNo O O\n, O O\nyou O O\nhave O O\nto O O\nget O O\nthe O O\nbin Name Name\nfirst O O\n. O O\n\nThere O O\nare O O\nseveral O O\noptions O O\nto O O\nachieve O O\nschema O O\nflexibility O O\nin O O\nan O O\n( O O\nSQL Name Name\n- O O\n) O O\nRDBMS Name Name\n: O O\n\n1 O O\n. O O\nuse O O\na O O\nEntity O O\n– O O\nattribute O O\n– O O\nvalue O O\nmodel O O\n\n2 O O\n. O O\nstore O O\na O O\nJSON Name Name\ndocument O O\n\nDepending O O\non O O\nyour O O\nuse O O\ncase O O\n, O O\ndata O O\nvolume O O\netc O O\n. O O\n\na O O\nnosql Name Name\ndb O O\ncould O O\nbe O O\nthe O O\nbetter O O\nchoice O O\n. O O\n\nBut O O\nsometimes O O\nyou O O\nneed O O\nonly O O\none O O\nor O O\na O O\nfew O O\ntables Name Name\nto O O\nbe O O\nschema-flexible O O\nand O O\nyour O O\nother O O\ndata O O\nis O O\nrelational O O\n. O O\n\nSome O O\nSQL Name Name\nRDBMS Name Name\nsupport O O\nschema O O\nflexible O O\ntables Name Name\n, O O\nE.g O O\n. O O\nSAP Name Name\nHANA Name Name\n( Name Name\n\" Name Name\nCREATE Name Name\nTABLE Name Name\n.. Name Name\n. Name Name\nWITH Name Name\nSCHEMA Name Name\nFLEXIBILITY Name Name\n.. Name Name\n. Name Name\n\" Name Name\n) Name Name\n. O O\n\nInternet O O\nis O O\nnot O O\nworking O O\nin O O\nmy O O\nvirtual Name Name\nmachine Name Name\n( O O\nCentOS Name Name\n7 Name Name\n) O O\n\nI O O\ndo O O\nn't O O\nknow O O\nwhere O O\nto O O\nstart O O\n.. O O\n. O O\n\nmachine O O\nhas O O\ntwo O O\nnetwork Name Name\nadapter Name Name\n, O O\nNAT O O\nand O O\nHost O O\n\nI O O\ncan O O\nping O O\namong O O\nvirtual Name Name\nmachines Name Name\nsuch O O\nas O O\n\" Name Name\nping Name Name\nslave1 Name Name\n\" Name Name\n\" Name Name\nping Name Name\nslave2 Name Name\n\" Name Name\n... O O\n. O O\nit O O\nworks O O\njust O O\nfine O O\n\nping Name Name\n8.8.8.8 Name Name\n\n-> O O\nPING O O\n8.8.8.8 O O\n( O O\n8.8.8.8 O O\n) O O\n56(84) O O\nbytes O O\nof O O\ndata O O\n. O O\n\nafter O O\nthis O O\nmessage O O\n, O O\nnothing O O\ncomes O O\nout. O O\n. O O\n\nping Name Name\ngoogle.com Name Name\n\n-> O O\nno O O\nany O O\nmessage O O\ncomes O O\nout O O\nfor O O\na O O\nwhile O O\nand O O\nit O O\nsays O O\n\" O O\nping O O\n: O O\nunkown O O\nhost O O\ngoogle.com O O\n\" O O\n\nenp0s3 Name Name\n-> Name Name\nNAT(on) Name Name\n\n-> O O\ninet O O\n10.0.2.15 O O\n\n-> O O\nnetmask O O\n255.255.255.0 O O\n\nenp0s8 Name Name\n-> Name Name\nhost(on) Name Name\n\n-> O O\n192.168.56.101 O O\n\nWhere O O\nshould O O\nI O O\nstart O O\nto O O\nfigure O O\nit O O\nout O O\n? O O\n\nPlease O O\nI O O\nam O O\nspending O O\nmore O O\nthan O O\n17 O O\nhours O O\nfor O O\nthis O O\n.. O O\n. O O\n\nThe O O\nNetwrok Name Name\nadaptateur Name Name\nmust O O\nbe O O\n: O O\n\nEnabled O O\n\nAttached O O\nto O O\nBridge Name Name\nAdapter Name O\n\nThen O O\nin O O\nthe O O\nvirtual Name Name\nmachine Name Name\n, O O\nopen O O\nthe O O\nNetwork O O\nConnections O O\nconfiguration O O\nand O O\nconfigure O O\nto O O\nObtain O O\nan O O\nIP O O\naddress O O\nautomatically O O\nand O O\nObtain O O\nDNS Name Name\nserver Name Name\naddress O O\nautomatically O O\n\nhow O O\nto O O\ndo O O\nlogin O O\nand O O\nregister O O\nwith O O\nPHP Name Name\nand O O\nMySQL Name Name\nin O O\nfragment O O\n? O O\n\nI O O\nneed O O\nsample O O\ncode O O\n, O O\nhope O O\nsomeone O O\ncan O O\nhelp O O\nme O O\n\nhere O O\nis O O\nmy O O\nloginfragment Name Name\ncode O O\n: O O\n\nand O O\nhere O O\nis O O\nmy O O\nloginlayout Name Name\n: O O\n\nI O O\n'm O O\nnew O O\nto O O\nandroid Name Name\nso O O\nI O O\nreally O O\ndo O O\nn't O O\nknow O O\nhow O O\nto O O\ndo O O\nthat O O\n. O O\n\nI O O\nalready O O\ndevelop O O\nlogin O O\nand O O\nregister O O\nwith O O\nPHP Name Name\nand O O\nMySQL Name Name\nby O O\nfollowing O O\ntutorials O O\n, O O\nbut O O\nit O O\nuses O O\nactivity Name Name\n. O O\n\nYou O O\nasked O O\nkind O O\nof O O\nan O O\ninvolved O O\nquestion O O\n, O O\nespecially O O\nwithout O O\nbeing O O\nable O O\nto O O\nsee O O\nyour O O\nserver Name Name\nside O O\ncode O O\n. O O\n\nSince O O\nyou O O\nmentioned O O\nneeding O O\nsource O O\ncode O O\n, O O\nhere O O\nis O O\nthe O O\nofficial O O\nAndroid Name Name\nDevelopers O O\ntraining O O\nwith O O\nsource O O\ncode O O\nexamples O O\n, O O\nhttp://developer.android.com/training/basics/network-ops/connecting.html O O\n\nI O O\n'll O O\ncopy O O\nthe O O\nrelevant O O\ncode O O\nin O O\nhere O O\n, O O\n\nHaving O O\ndone O O\nthis O O\na O O\nfew O O\ntimes O O\n, O O\nthough O O\n, O O\nI O O\n'd O O\nlike O O\nto O O\npoint O O\nout O O\nsome O O\nthings O O\nthat O O\nwill O O\nlikely O O\nbite O O\nyou O O\nwhen O O\nyou O O\ntry O O\nto O O\nimplement O O\nthis O O\n\nAndroid Name Name\nrequires O O\nyou O O\nto O O\ndo O O\nanything O O\nthat O O\ncalls O O\na O O\nweb O O\nserver Name Name\nin O O\na O O\nbackground O O\nthread O O\n. O O\n\nhttp://developer.android.com/training/multiple-threads/index.html O O\n\nYou O O\nare O O\nprobably O O\ngoing O O\nto O O\nneed O O\nsome O O\nkind O O\nof O O\nauthentication O O\n, O O\nespecially O O\nif O O\nPHP Name Name\nside O O\nyou O O\nused O O\ne.g O O\n. O O\nDrupal Name Name\n. O O\n\nI O O\nwould O O\nfind O O\nout O O\nif O O\nyour O O\nPHP Name Name\nframework O O\nrequires O O\ne.g O O\n. O O\nSession O O\nauth O O\nwith O O\na O O\nCRLF Name Name\ntoken O O\nor O O\nOAuth O O\nor O O\na O O\nsimilar O O\nscheme O O\n. O O\n\nAuthentication O O\nwill O O\ninvolve O O\nthree O O\nsteps O O\n: O O\n\n** O O\nSign O O\nin O O\n\n** O O\nRetrieve O O\na O O\ncookie O O\nor O O\ntoken O O\n\n** O O\nSend O O\nthe O O\ntoken O O\nin O O\nalong O O\nwith O O\nyour O O\ncontent O O\nin O O\nyour O O\nheaders O O\n\nFinally O O\nyou O O\nare O O\ngoing O O\nto O O\nneed O O\nsome O O\nsort O O\nof O O\ndata O O\nencapsulation O O\nlayer O O\n. O O\n\nI O O\nlike O O\nJSON Name Name\n, O O\nsome O O\nfolks O O\nlike O O\nXML Name Name\n. O O\n\nThe O O\nGSON Name Name\nlibrary O O\n, O O\nwhich O O\nyou O O\ncan O O\nlearn O O\nmore O O\nabout O O\nhere O O\n, O O\nhttps://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/Gson.html O O\n, O O\nis O O\nthe O O\nmost O O\nuser O O\nand O O\nbeginner O O\nfriendly O O\nJSON Name Name\nlibrary O O\nI O O\nknow O O\nof O O\n. O O\n\nIn O O\npractice O O\nI O O\nusually O O\nuse O O\nAndroid Name Name\n's O O\nbuilt-in O O\nJSONArray Name Name\nand O O\nJSONObject Name Name\nthough O O\n. O O\n\nHere O O\nis O O\ngood O O\nexample O O\nfor O O\nthe O O\n\nhttp://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/ O O\n\nOverall O O\nsteps O O\nto O O\ndo O O\n: O O\n\nCreate O O\nWeb-service O O\nfor O O\nlogin O O\nin O O\nPHP Name Name\n\nCall O O\nthat O O\nWeb-service O O\nform O O\nandroid Name Name\nFragment Name Name\n\nGet O O\nresponse O O\nand O O\nparse O O\nit O O\n\nShow O O\nthe O O\nResult O O\nto O O\nUser O O\n\nsee O O\nthis O O\nlink O O\nfor O O\nworking O O\nwith O O\nFragments Name Name\n\nI O O\nam O O\ntrying O O\nto O O\nuse O O\nrich Name Name\ntext Name Name\nin O O\na O O\nQComboBox Name Name\nbut O O\nit O O\ndoes O O\nnot O O\nsupport O O\nit O O\n. O O\n\nPerhaps O O\nI O O\nshould O O\nwrite O O\na O O\nsubclass O O\n? O O\n\nBut O O\nI O O\nam O O\nunsure O O\non O O\nwhat O O\nI O O\nwould O O\nneed O O\nto O O\noverride O O\nas O O\nI O O\nhave O O\nnever O O\ndone O O\nanything O O\nlike O O\nthis O O\nbefore O O\n. O O\n\nPlease O O\nhelp O O\n. O O\n\nThanks O O\n! O O\n\nI O O\nthink O O\ncustom O O\ndelegate O O\nclass O O\nis O O\nthe O O\nanswer O O\n. O O\n\nThe O O\nsolution O O\nis O O\nto O O\nsimply O O\nreplace O O\nstandard O O\ndrawing O O\nroutine O O\nwith O O\nyour O O\nown O O\n( O O\nusing O O\ni.e O O\n. O O\nQLabel Name Name\n) O O\n. O O\n\nThere O O\nwas O O\na O O\nsimilar O O\nquestion O O\nhere O O\n: O O\nQListView/QListWidget Name Name\nwith O O\ncustom O O\nitems O O\nand O O\ncustom O O\nitem O O\nwidgets Name Name\n\nWhen O O\nvalidating O O\nan O O\nXML Name Name\nDOMDocument Name Name\nwith O O\na O O\nscheme O O\n: O O\n\nI O O\nget O O\na O O\nwarning O O\nmessage O O\nlike O O\n: O O\n\nWarning O O\n: O O\nDOMDocument::schemaValidate() Name Name\n: O O\nElement O O\n' O O\nfoo Name Name\n' O O\n: O O\nThis O O\nelement O O\nis O O\nnot O O\nexpected O O\n. O O\n\nExpected O O\nis O O\none O O\nof O O\n( O O\n{url}foo Name Name\n, Name O\n{url}bar Name Name\n) O O\n. O O\n\nWhat O O\nis O O\nthe O O\ndifference O O\nbetween O O\n' O O\nfoo Name Name\n' O O\nand O O\n'{url}foo' Name Name\nand O O\nhow O O\nto O O\nfix O O\nthis O O\nwarning O O\n? O O\n\nThe O O\nnotation O O\n{url}foo Name Name\nis O O\nused O O\nto O O\nrefer O O\nto O O\nan O O\nexpanded O O\nname O O\nwhose O O\nnamespace O O\npart O O\nis O O\nurl Name Name\nand O O\nwhose O O\nlocal O O\nname O O\npart O O\nis O O\nfoo Name Name\n. O O\n\nIt O O\n's O O\nsometimes O O\nreferred O O\nto O O\nas O O\n' O O\nClark O O\nnotation O O\n' O O\nfor O O\nJames O O\nClark O O\n, O O\nwho O O\npromoted O O\nit O O\n. O O\n\nWhen O O\nthis O O\nnotation O O\nis O O\nin O O\nuse O O\n, O O\nunqualified O O\nnames O O\nare O O\nsometimes O O\nreferred O O\nto O O\nusing O O\nthe O O\nnotation O O\n{}foo Name Name\nand O O\nsometimes O O\n( O O\nas O O\nin O O\nyour O O\nerror O O\nmessage O O\n) O O\nusing O O\nthe O O\nnotation O O\nfoo Name Name\n. O O\n\nThe O O\nerror O O\nmessage O O\nis O O\ntelling O O\nyou O O\nthat O O\nit O O\nhas O O\nfound O O\nan O O\nelement O O\nwith O O\nthe O O\nunqualified O O\nname O O\nfoo Name Name\n, O O\nat O O\na O O\nlocation O O\nwhere O O\nit O O\nwas O O\nexpecting O O\na O O\nnamespace-qualfied O O\nelement O O\nnamed O O\neither O O\nfoo Name Name\nor O O\nbar Name Name\nin O O\nthe O O\nnamespace O O\nurl Name Name\n. O O\n\nProbable O O\ncause O O\n: O O\nthe O O\nXML Name Name\ninstance O O\nlacks O O\na O O\nrequired O O\nnamespace O O\ndeclaration O O\n. O O\n\nHow O O\nto O O\nclassify O O\nstrings Name Name\nusing O O\nr Name Name\n\nMy O O\ntext Name Name\nfile O O\nis O O\nsuch O O\na O O\nstructure O O\n. O O\n\nI O O\nwant O O\nto O O\ndistinguish O O\nday O O\n/ O O\nmonth O O\n/ O O\nyear O O\n. O O\n\nI O O\nknow O O\nthere O O\nare O O\ncommands O O\n. O O\n\n\" O O\nstrsplit Name Name\n\" O O\n, O O\n\" O O\nstr_split Name Name\n\" O O\n\nBut O O\nI O O\ndo O O\nnot O O\nknow O O\nhow O O\nto O O\nwrite O O\nday O O\n/ O O\nmonth O O\n/ O O\nyear O O\n. O O\n\nIf O O\nyou O O\ncategorize O O\nit O O\n, O O\nthe O O\ndata O O\nis O O\nnot O O\nwhat O O\nI O O\nwant O O\n. O O\n\nWhat O O\nshould O O\nI O O\ndo O O\n? O O\n\nI O O\nwould O O\nappreciate O O\nit O O\nif O O\nyou O O\ncould O O\nanswer O O\nme O O\n. O O\n\nYou O O\nneed O O\nto O O\nspecify O O\na O O\npattern O O\nfor O O\ndates O O\nmore O O\ncompletely O O\n. O O\n\nstringr Name Name\nand O O\nrebus Name Name\npackages O O\nare O O\nreally O O\nhelpful O O\nand O O\nintuitive O O\n. O O\n\nI O O\nwant O O\nto O O\nmove O O\nmy O O\nMVC Name Name\napplication O O\nfrom O O\nAzure Name Name\nto O O\nan O O\nin-house O O\nserver Name Name\n. O O\n\nHow O O\ndo O O\nI O O\nexport O O\nthe O O\nSSL O O\ncertificate O O\nassociated O O\nwith O O\nthe O O\nApp O O\nto O O\ninstall O O\nit O O\non O O\nthe O O\nlocal O O\nserver Name Name\n? O O\n\nIs O O\nit O O\nat O O\nall O O\npossible O O\n? O O\n\nNO O O\n. O O\n\nThere O O\nis O O\nno O O\nway O O\nto O O\nget O O\ncertificate O O\nout O O\nof O O\nWindows Name Name\nAzure Name Name\n. O O\n\nQuestion O O\nis O O\nhow O O\nit O O\n( O O\nthe O O\ncertificate O O\n) O O\nappeared O O\nin O O\nthe O O\nAzure Name Name\nat O O\nfirst O O\nplace O O\n. O O\n\nIt O O\nwas O O\ncertainly O O\nnot O O\nuploaded O O\nby O O\nMicrosoft Name Name\npeople O O\nor O O\nsome O O\nmagic O O\n. O O\n\nIt O O\nis O O\na O O\ndeveloper O O\nwho O O\npacked O O\nthe O O\ndeployment O O\npackage O O\nto O O\ninclude O O\nthe O O\ncertificate O O\nreference O O\n( O O\nthumbprint O O\n) O O\nand O O\nservice O O\nadministrator O O\n( O O\nor O O\nco-admin O O\n) O O\nwho O O\nuploaded O O\nthe O O\noriginal O O\ncertificate O O\nin O O\nthe O O\nAzure Name Name\n. O O\n\nSo O O\ncontact O O\nthat O O\npeople O O\n( O O\nwhom O O\nmight O O\nbe O O\njust O O\nyou O O\n? O O\n) O O\n\nand O O\nask O O\nfor O O\nthe O O\noriginal O O\ncertificate O O\n. O O\n\nIf O O\ncertificate O O\nis O O\nlost O O\n, O O\ncontact O O\nthe O O\noriginal O O\nissuer O O\n( O O\ncertification O O\nauthority O O\n) O O\nfor O O\na O O\ncopy O O\n, O O\nif O O\nyou O O\nwere O O\nthe O O\none O O\nto O O\noriginally O O\nrequested O O\n. O O\n\nIf O O\nyou O O\ndid O O\nnot O O\noriginally O O\nrequested O O\nthe O O\ncertificate O O\n, O O\nthere O O\nmight O O\nhave O O\nbeen O O\na O O\nreason O O\nbehind O O\nthat O O\n. O O\n\nGiven O O\nan O O\narray Name Name\n, O O\nI O O\nneed O O\nto O O\nfind O O\nthe O O\nindices O O\nof O O\nnearest O O\nnon-coprime O O\nnumber O O\n( O O\ni.e O O\n. O O\nGCD(Ai, Name Name\nAj) Name Name\n> Name Name\n1 Name Name\n, Name Name\nfor Name Name\nany Name Name\nAi Name Name\nand Name Name\nAj Name Name\nin Name Name\nthe Name Name\narray Name Name\n, Name Name\ni Name Name\n!= Name Name\nj Name Name\n) O O\nExample O O\n, O O\nlet O O\nthe O O\narray Name Name\nbe O O\n\nThe O O\nanswer O O\nwill O O\nbe O O\n\nI O O\n've O O\nwritten O O\nthis O O\nbrute O O\nforce O O\ncode O O\n( O O\nwhich O O\nis O O\nO(n^2)) O O\nusing O O\nBinary Name Name\nGCD Name Name\nmethod O O\n, O O\nwhich O O\nis O O\nnot O O\nvery O O\nefficient O O\n. O O\n\nI O O\n'm O O\nwondering O O\nif O O\nthere O O\n's O O\na O O\nfaster O O\nway O O\nto O O\ndo O O\nthis O O\n. O O\n\nParticularly O O\nin O O\nO(NlogN) O O\n\nIf O O\nyou O O\nknow O O\nyour O O\nmax O O\nvalue O O\nfor O O\nyour O O\nnumbers O O\nand O O\ncan O O\nafford O O\nto O O\nkeep O O\na O O\nlist Name Name\nof O O\nprimes O O\n, O O\nthen O O\nfactoring O O\nthem O O\nmay O O\nbe O O\na O O\nbetter O O\nsolution O O\nfor O O\nthe O O\naverage/random O O\ncase O O\n. O O\n\nOtherwise O O\n, O O\nworst O O\ncase O O\ncomplexity O O\n, O O\nit O O\n's O O\nstill O O\nO(N*N) O O\n- O O\nthink O O\n\" O O\nall O O\nof O O\nthem O O\nare O O\nprimes O O\n\" O O\nfor O O\nthe O O\nworst O O\ncase O O\n. O O\n\nApproach O O\n: O O\n\nfactor O O\nthem O O\nand O O\nstore O O\na O O\nMapxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1[N] Name Name\n+ O O\nint O O\nclosestNeigh[] O O\n\ntake O O\na O O\nfactor O O\nand O O\nO(N) O O\ndetermine O O\nfor O O\neach O O\nof O O\nthem O O\nthe O O\nclosest O O\nthat O O\ncontain O O\nthat O O\nfactor O O\n( O O\nprefix/sufix O O\nsums O O\nwill O O\nbe O O\ninvolved O O\n) O O\n\neliminate O O\nthat O O\nfactor O O\nfrom O O\nall O O\nthe O O\nfactor O O\nmaps O O\n\ntake O O\nthe O O\nnext O O\nfactor O O\n. O O\n\nAdjust O O\nthe O O\nclosest O O\nneighbor O O\nindex O O\nonly O O\nif O O\nnew O O\none O O\nis O O\nclosest O O\n. O O\n\nThis O O\nmay O O\nbring O O\nsome O O\n\" O O\nrelief O O\n\" O O\non O O\nthe O O\nline O O\nof O O\nO Name Name\n( Name Name\nN* Name Name\n<num_distict_factors> Name Name\n) Name Name\n, O O\nbut O O\nagain O O\nif O O\n<num_distict_factors> Name Name\n== Name Name\nN Name Name\n( O O\nall O O\nprimes O O\n) O O\n, O O\nthen O O\nit O O\nis O O\nstill O O\nO(N*N) O O\n\nIf O O\nyou O O\nare O O\nwilling O O\nto O O\nget O O\ninto O O\nfactorization O O\n, O O\none O O\ncould O O\ntraverse O O\nthe O O\nlist Name Name\n, O O\nonce O O\nfrom O O\nthe O O\nleft O O\n, O O\nfactoring O O\neach O O\nnumber O O\n, O O\nhashing O O\nthe O O\nindex O O\nof O O\neach O O\nnew O O\nprime O O\n( O O\nwith O O\nthe O O\nprime O O\nas O O\nthe O O\nkey O O\n) O O\n, O O\nupdating O O\nthe O O\nindex O O\nof O O\neach O O\nprime O O\nalready O O\nseen O O\n, O O\nand O O\n, O O\nof O O\ncourse O O\n, O O\nnoting O O\nthe O O\nnearest O O\nseen O O\nprime O O\n. O O\n\nSince O O\nthis O O\ntraversal O O\nwould O O\nmiss O O\nthe O O\nnearest O O\non O O\nthe O O\nright O O\n, O O\nconduct O O\nanother O O\ntraversal O O\nfrom O O\nthe O O\nright O O\nto O O\nupdate O O\nany O O\nnearer O O\nshared O O\nprime O O\n, O O\nusing O O\nthe O O\nfactor O O\nlists Name Name\nalready O O\nsaved O O\n. O O\n\nI O O\njust O O\nread O O\nany O O\nimage Name Name\nand O O\ncould O O\nnot O O\nget O O\nthe O O\ncorrect O O\ncolors O O\n. O O\n\nI O O\n've O O\ntried O O\nseveral O O\nimages Name Name\nwith O O\nseveral O O\nformats O O\n. O O\n\nPlease O O\nadvice O O\nhow O O\nto O O\nreceive O O\nthe O O\ncorrect O O\ncolors O O\nin O O\nWriteableBitmap.GetPixels() Name Name\n\nIn O O\nthe O O\nfollowing O O\nexample O O\n, O O\nI O O\njust O O\ncloned O O\nthe O O\nimage Name Name\nby O O\nreading O O\nout O O\nthe O O\nsource O O\npixel O O\nby O O\npixel O O\nand O O\nputting O O\nthis O O\npixel O O\nto O O\nthe O O\nnew O O\nwriteablebitmap Name Name\non O O\nsame O O\nposition O O\n. O O\n\nLike O O\ncloning O O\n. O O\n\nThere O O\nis O O\na O O\nfault O O\nin O O\nthe O O\nWriteablebitmap Name Name\nEx O O\ncompiled O O\n/ O O\ndownloadable O O\nversion O O\n1.0.2 Name Name\n( O O\nothers O O\nversion O O\nuntil O O\nV Name Name\n1.0.5 Name Name\nuntested O O\n) O O\n. O O\n\nBy O O\nusing O O\nthe O O\nsourcecode O O\nof O O\nwriteablebitmapex Name Name\nVersion O O\n1.0.5 Name Name\n, O O\nthe O O\nmethod O O\nworks O O\nas O O\nit O O\nshould O O\n. O O\n\nI O O\nhave O O\none O O\ntable Name Name\nand O O\ni O O\nam O O\niterating O O\ntr Name Name\non O O\nclick O O\nof O O\nbutton Name Name\n\nThis O O\nis O O\npage Name Name\nX Name Name\n\nI O O\nwant O O\nthe O O\nall O O\niterated O O\ntr Name Name\nto O O\nbe O O\nin O O\nnew O O\npage Name Name\nY Name Name\n. O O\n\nHere O O\nis O O\nmy O O\ncontroller O O\n. O O\n\nI O O\nam O O\nvery O O\nnew O O\nin O O\nangular Name Name\nso O O\nmy O O\nbad O O\nif O O\ncode O O\nis O O\nnot O O\nas O O\nper O O\nstandard O O\n\nAdd O O\ndeveloper O O\nto O O\nthe O O\n$rootScope Name Name\nand O O\npass O O\nthat O O\nvalue O O\nto O O\nyour O O\nlocal O O\nscope O O\n\nAnd O O\non O O\nsecond O O\npage O O\nuse O O\nthis O O\n$rootScope Name Name\nto O O\npopulate O O\nlocal O O\n$scope Name Name\nand O O\nadd O O\nnew O O\nones O O\nto O O\nit O O\n, O O\nit O O\nwill O O\nbe O O\nalso O O\naccessible O O\nto O O\nfirst O O\none O O\n. O O\n\nHere O O\nis O O\na O O\nlittle O O\nexample O O\non O O\njsfiddle Name Name\nhttp://jsfiddle.net/ae8neq3k/ O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\nmultidimensional O O\narray Name Name\ncalled O O\n$responses Name Name\nand O O\nit O O\nlooks O O\nlike O O\nthis O O\nwhen O O\nI O O\ndo O O\na O O\nprint_r Name Name\n\nMy O O\nforeach Name Name\nloop O O\nlooks O O\nlike O O\nthis O O\nbut O O\nit O O\n's O O\nnot O O\nworking O O\n: O O\n\nI O O\nwould O O\nlike O O\nto O O\nget O O\nan O O\noutput O O\nlike O O\nthis O O\nwhen O O\nI O O\ndo O O\na O O\nprint_r($output) Name Name\n\nSeems O O\nlike O O\na O O\nsimple O O\ntransformation O O\nto O O\nme O O\n: O O\n\nYou O O\ncan O O\ntry O O\nthis O O\n: O O\n\nIf O O\nit O O\ndoes O O\nn't O O\nwork O O\n, O O\nplease O O\ndo O O\na O O\n\" O O\nvar_dump Name Name\n\" O O\non O O\n\" O O\n$responses Name Name\n\" O O\ninstead O O\nof O O\n\" O O\nprint_r Name Name\n\" O O\nbecause O O\nwe O O\ndid O O\nn't O O\nview O O\nhow O O\nthis O O\nvariable O O\nis O O\nexactly O O\ndefined O O\n. O O\n\nI O O\nhave O O\ncreated O O\na O O\ncustom O O\niterator O O\n, O O\ninheriting O O\nfrom O O\nthere O O\niter Name Name\nclass O O\nin O O\nthe O O\niterators Name Name\npackage O O\n. O O\n\nThe O O\niterator O O\nand O O\nits O O\nmethods O O\nare O O\nnot O O\nexported O O\nfrom O O\nthe O O\npackage O O\n. O O\n\nHere O O\nis O O\nthe O O\niterator O O\nand O O\na O O\ntest O O\nfunction O O\nin O O\na O O\nscript O O\nthat O O\nis O O\nreproducible O O\nand O O\nrunnable O O\n, O O\nthe O O\niterator O O\nis O O\ncalled O O\npairsRef Name Name\n: O O\n\nHowever O O\n, O O\nI O O\nwant O O\nto O O\nuse O O\nthis O O\niterator O O\nto O O\ndo O O\nforeach O O\nloops O O\nin O O\na O O\npackage O O\nof O O\nmine O O\n. O O\n\nIf O O\nI O O\nput O O\nTest2 Name Name\nin O O\na O O\npackage O O\n( O O\nexported O O\n) O O\n, O O\nand O O\nI O O\nhave O O\nall O O\nthe O O\nother O O\nfunctions O O\nin O O\nthe O O\npackage O O\n( O O\nunexported O O\n) O O\n, O O\nand O O\nI O O\nhave O O\nthe O O\npackage O O\nnamespace O O\nimport O O\nBiostrings Name Name\n, O O\niterators Name Name\n, O O\nand O O\nforeach Name Name\n. O O\n\nIt O O\ndoes O O\nnot O O\nwork O O\n. O O\n\nWith O O\na O O\nfresh O O\nR Name Name\nsession O O\n, O O\nloading O O\nthe O O\npackage O O\n, O O\nand O O\nthe O O\nrunning O O\n: O O\n\nResults O O\nin O O\nan O O\nerror O O\n: O O\n\" O O\nError O O\nin O O\n{ O O\n: O O\nattempt O O\nto O O\napply O O\nnon-function O O\n\" O O\n\nIs O O\nthis O O\nbecause O O\nthe O O\ncustom O O\niterator O O\nis O O\ninternal O O\nto O O\nthe O O\npackage O O\n? O O\n\nAny O O\nhelp O O\nor O O\nsuggestions O O\nare O O\ngreatly O O\nappreciated O O\n. O O\n\n[ O O\nEDIT O O\n] O O\n- O O\nIf O O\nI O O\nexport O O\nthe O O\niterator O O\nand O O\nit O O\n's O O\nfunctions O O\nfrom O O\nthe O O\npackage O O\n. O O\n\nThen O O\nall O O\nworks O O\nfine O O\n. O O\n\nBut O O\nI O O\ndo O O\nn't O O\nnecessarily O O\nwant O O\nto O O\nexport O O\niterators O O\nof O O\nthe O O\npackage O O\n. O O\n\nThanks O O\n, O O\n\nBen O O\n. O O\n\nIn O O\norder O O\nfor O O\nit O O\nto O O\nwork O O\ninside O O\nthe O O\npackage O O\n, O O\nthe O O\nmethod O O\nnextElem Name Name\nmust O O\nbe O O\nimported O O\nfrom O O\niterators Name Name\n, O O\nand O O\nthen O O\nthe O O\nadditional O O\nmethod O O\nunique O O\nto O O\nthe O O\npackage O O\n, O O\nexported O O\n, O O\nsuch O O\nthat O O\nit O O\nis O O\nvisible O O\nto O O\nthe O O\nfunctions O O\nin O O\nthe O O\nforeach Name Name\npackage O O\nnamespace O O\n. O O\n\nFor O O\nexample O O\nI O O\nhave O O\nthe O O\nfollowing O O\ndata O O\nin O O\nMongoDB Name Name\n: O O\n\nNow O O\nI O O\nwant O O\nto O O\nquery O O\n\" O O\nSUM O O\nthe O O\nnumber O O\nof O O\nincoming O O\nbetween O O\n11 Name Name\n- Name Name\n12 Name Name\n\" O O\n( O O\nthe O O\nresult O O\nshould O O\nbe O O\n500 Name Name\n) O O\n, O O\nhow O O\ncould O O\nI O O\ndo O O\nthis O O\nusing O O\nMongo Name Name\nShell Name Name\n? O O\n\nAs O O\nllovet O O\nsuggested O O\n, O O\nthe O O\naggregation Name Name\nframework O O\nis O O\nthe O O\nway O O\nto O O\ngo O O\n. O O\n\nHere O O\n's O O\nwhat O O\nyour O O\nquery O O\nwould O O\nlook O O\nlike O O\n: O O\n\nYou O O\ncan O O\nalso O O\nshape O O\nthe O O\nresulting O O\ndocument O O\nto O O\nonly O O\ncontain O O\nthe O O\nsum O O\nby O O\nadding O O\na O O\n$project Name Name\noperator O O\nat O O\nthe O O\nend O O\nof O O\nthe O O\npipeline O O\n, O O\nlike O O\nso O O\n: O O\n\nI O O\nhave O O\nbeen O O\nworking O O\non O O\na O O\nproject O O\nthat O O\nrequires O O\nJSON Name Name\nfor O O\ngetting O O\ndata O O\nfrom O O\na O O\nlarge O O\njson Name Name\nfile O O\n, O O\nbut O O\nI O O\nran O O\ninto O O\na O O\nproblem O O\nwhen O O\ntrying O O\nto O O\nget O O\na O O\njson Name Name\nstring Name Name\nusing O O\na O O\nmethod O O\n. O O\n\nthe O O\nmethod O O\nfor O O\ngetting O O\nthe O O\nID O O\nworks O O\nI O O\nhave O O\ntested O O\nthis O O\nmultiple O O\ntimes O O\n. O O\n\nWhen O O\nI O O\nenter O O\nint O O\nhe O O\nID O O\nas O O\na O O\nstring Name Name\nit O O\nalso O O\nworks O O\nprefectly O O\nbut O O\nwhen O O\nI O O\nuse O O\nthe O O\nmethod O O\nto O O\nget O O\nthe O O\njsonString Name Name\nit O O\nstops O O\nworking O O\nand O O\ngives O O\na O O\nnullpoiterexeption O O\n\nThis O O\nis O O\nthe O O\njson Name Name\nstring Name Name\nI O O\nam O O\ntrying O O\nto O O\nget O O\ninfo O O\n{ Name Name\n\"W1121000-00002\": Name Name\n{ Name Name\n\"clnt\":1023 Name Name\n, Name Name\n\"srvr\":870 Name Name\n} Name Name\n} Name Name\nand O O\nI O O\nam O O\ntrying O O\nto O O\nget O O\nthe O O\nclnt Name Name\nvalue O O\nout O O\nof O O\nthat O O\nstring Name Name\n. O O\n\nI O O\nam O O\nusing O O\nPyhton3.4.1 Name Name\nand O O\nwin7 Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nreading O O\na O O\ntxt Name Name\nfile O O\nexported O O\nfrom O O\na O O\nsoftware O O\n. O O\n\nit O O\nseems O O\nthat O O\npython Name Name\ncannot O O\nread O O\nthis O O\ntext Name Name\nfile O O\n. O O\n\nBut O O\nI O O\nfound O O\nif O O\nI O O\nopen O O\nthe O O\ntext Name Name\nfile O O\nby O O\nnotepad Name Name\nand O O\nadd O O\na O O\nspace O O\nin O O\nany O O\nplace O O\nand O O\nsave O O\nit O O\n, O O\nthe O O\npython Name Name\nworks O O\nwell O O\nthen O O\n. O O\n\nI O O\ntried O O\nthe O O\nsame O O\ncode O O\nand O O\nsame O O\nfile O O\non O O\nmy O O\nmac Name Name\n, O O\nit O O\nhas O O\nthe O O\nsame O O\nproblem O O\nas O O\nin O O\nwindows Name Name\n. O O\n\nFor O O\noriginal O O\ntext Name Name\nfile O O\n, O O\nnot O O\nworking O O\n, O O\nopen O O\nand O O\nsaved O O\nin O O\nwindows Name Name\nnotepad Name Name\n, O O\nworking O O\n, O O\n\nopen O O\nans O O\nsaved O O\nin O O\nmac Name Name\ntextedit Name Name\n, O O\nnot O O\nworking O O\n. O O\n\nI O O\nam O O\ndoubting O O\nthe O O\noriginal O O\ncoding O O\nof O O\nthe O O\ntext Name Name\nfile O O\nmight O O\nnot O O\nbe O O\nright O O\n. O O\n\nThanks O O\n\nPython Name Name\ncode O O\n\nShell Name Name\n\nPlus O O\n, O O\nthe O O\nerror O O\nbelow O O\nis O O\nthe O O\nsame O O\ncode O O\nreported O O\non O O\nmy O O\nmac(Python3.4.1,OS10.9) Name Name\n\nWhen O O\nyou O O\nsave O O\nthe O O\nfile O O\nin O O\nNotepad Name Name\n, O O\nthe O O\nfile O O\nis O O\nreencoded O O\nto O O\nbe O O\nsaved O O\nas O O\nyour O O\ndefault O O\nfile O O\nencoding O O\nfor O O\nyour O O\nWindows Name Name\ninstallation O O\n. O O\n\nNotepad Name Name\nauto-detected O O\nthe O O\nencoding O O\nwhen O O\nit O O\nopened O O\nthe O O\nfile O O\n, O O\nhowever O O\n. O O\n\nPython Name Name\nopens O O\nfile O O\nusing O O\nthat O O\nsame O O\nsystem O O\nencoding O O\n, O O\nby O O\ndefault O O\n, O O\nwhich O O\nis O O\nwhy O O\nyou O O\ncan O O\nnow O O\nopen O O\nthe O O\nfile O O\n. O O\n\nQuoting O O\nthe O O\nopen() Name Name\nfunction O O\ndocumentation O O\n: O O\n\nYou O O\n'll O O\nhave O O\nto O O\nexplicitly O O\nspecify O O\nthe O O\ncorrect O O\nencoding O O\nfor O O\nthe O O\nfile O O\nif O O\nyou O O\nwanted O O\nto O O\nopen O O\nit O O\ndirectly O O\nin O O\nPython Name Name\n: O O\n\nI O O\nused O O\n' Name Name\nutf-8-sig Name Name\n' Name Name\nas O O\nan O O\nexample O O\nhere O O\n, O O\nas O O\nthat O O\nis O O\na O O\nfile O O\nencoding O O\nthat O O\nNotepad Name Name\ncan O O\nauto-detect O O\n. O O\n\nIt O O\ncould O O\nwell O O\nbe O O\nthat O O\nthe O O\nencoding O O\nis O O\nUTF-16 Name Name\nor O O\nplain O O\nUTF-8 Name Name\nor O O\nany O O\nnumber O O\nof O O\nother O O\nencodings O O\n, O O\nhowever O O\n. O O\n\nIf O O\nyou O O\nthink O O\nthat O O\nthe O O\npage O O\nis O O\nencoded O O\nwith O O\na O O\nspecific O O\nANSI O O\ncodepage O O\nyou O O\nstill O O\nhave O O\nto O O\nname O O\nthe O O\nexact O O\ncodepage O O\n. O O\n\nYour O O\nsystem O O\nis O O\nconfigured O O\nto O O\nuse O O\ncode O O\npage O O\n936 O O\n( O O\nGBK O O\n) O O\nbut O O\nthat O O\nis O O\nnot O O\nthe O O\ncorrect O O\nencoding O O\nfor O O\nthis O O\nfile O O\n. O O\n\nSee O O\nthe O O\ncodecs Name Name\nmodule O O\nfor O O\na O O\nlist O O\nof O O\nsupported O O\nencodings O O\n. O O\n\nCompile O O\nthe O O\nfollowing O O\nclass O O\n\nusing O O\ngcc Name Name\n-fdump-class-hierarchy Name Name\n. O O\n\ngcc Name Name\nemits O O\n\nWhat O O\nis O O\nthe O O\nsignificance O O\nof O O\n\" O O\nnearly-empty O O\n\" O O\n? O O\n\nWhat O O\ndoes O O\nit O O\nmean O O\n? O O\n\nI O O\nsuppose O O\nit O O\n's O O\nto O O\ndifferentiate O O\nit O O\nfrom O O\n\" O O\nempty O O\n\" O O\n, O O\nwhich O O\nis O O\nwhat O O\nyou O O\nget O O\nif O O\ncompile O O\na O O\nclass O O\nwith O O\nno O O\nmembers O O\nat O O\nall O O\n. O O\n\n\" O O\nnearly-empty O O\n\" O O\nseems O O\nto O O\nmean O O\nit O O\nhasa O O\nvtable Name Name\nand O O\nnothing O O\nelse O O\n. O O\n\nThe O O\nC++ Name Name\nABI O O\nprovides O O\na O O\ndefinition O O\nof O O\n\" O O\nnearly O O\nempty O O\n\" O O\nclasses O O\nand O O\nan O O\ninteresting O O\ndiscussion O O\nof O O\nhow O O\nthey O O\naffect O O\nvtable Name Name\nconstruction O O\n: O O\n\nI O O\nran O O\nacross O O\nthis O O\nwhile O O\nresearching O O\nthe O O\neffect O O\nof O O\nnearly O O\nempty O O\nvirtual O O\nbases O O\non O O\nobject O O\nsize O O\n, O O\nvtable Name Name\nsize O O\n, O O\nand O O\nvirtual O O\ncall O O\noverhead O O\n. O O\n\nI O O\nuse O O\nNSJSONSerialization Name Name\nto O O\ncall O O\na O O\nlogin O O\nurl O O\nwhich O O\nreturns O O\na O O\nJSON Name Name\nobject O O\n. O O\n\nThis O O\nobj O O\nhas O O\n3 O O\nprops O O\n: O O\ndata Name Name\nis O O\nobj O O\n, O O\nsuccess Name Name\nis O O\nboolean Name Name\n( O O\nNOT O O\nString Name Name\n, O O\nindicates O O\nlogin O O\nsuccess O O\nor O O\nnot O O\n) O O\n, O O\ntimeout Name Name\nis O O\nnumber Name Name\n( O O\nNOT O O\nString Name Name\n) O O\n. O O\n\nThe O O\nproblem O O\nis O O\nthe O O\nsuccess Name Name\nand O O\ntimeout Name Name\n's O O\nvalues O O\nare O O\nnull Name Name\n. O O\n\nThe O O\ndata Name Name\nis O O\nfine O O\n. O O\n\nI O O\ntested O O\nthis O O\nurl O O\nfrom O O\nhtml Name Name\nfile O O\nrequiring O O\n, O O\nit O O\nworks O O\nfine O O\n. O O\n\nWhat O O\n's O O\nthe O O\nproblem O O\n? O O\n\nhttp://screencast.com/t/chDMshKPl O O\n\nI O O\n'm O O\nusing O O\nthe O O\nfollowing O O\nin O O\nmy O O\nCSS Name Name\nto O O\nforce O O\na O O\nvertical O O\nscrollbar Name Name\nin O O\nFirefox Name Name\n: O O\n\nDoes O O\nthis O O\ntechnique O O\nwork O O\nin O O\nSafari Name Name\nand O O\nOpera Name Name\n? O O\n\nSome O O\npeople O O\nsay O O\nit O O\ndoes O O\nand O O\nsome O O\nsay O O\notherwise O O\n. O O\n\nThis O O\n: O O\n\nworks O O\nin O O\nOpera Name Name\n11.01 Name Name\nand O O\nSafari Name Name\n5.0.3 Name Name\nfor O O\nWindows Name Name\n, O O\nbut O O\nthis O O\n: O O\n\ndoes O O\nn't O O\nwork O O\nin O O\nOpera Name Name\nand O O\nworks O O\nfor O O\nthe O O\nrest O O\n. O O\n\nThe O O\nCSS Name Name\nrule O O\noverflow-y Name Name\n: Name Name\nscroll Name O\nworks O O\nfor O O\nme O O\nin O O\n: O O\n\nOpera Name Name\n10.10 Name Name\n\nGoogle Name Name\nChrome Name Name\n3.0.195.38 Name Name\n\nMozilla Name Name\nFirefox Name Name\n3.5.6 Name Name\n\nand O O\nobviously O O\nall O O\nversions O O\nof O O\nMicrosoft Name Name\nInternet Name Name\nExplorer Name Name\nwhere O O\nthe O O\nscrollbar Name Name\nis O O\nalways O O\nshown O O\n. O O\n\nSafari Name Name\nand O O\nGoogle Name Name\nChrome Name Name\nare O O\nusing O O\nthe O O\nsame O O\nview O O\nengine O O\n, O O\nso O O\nchances O O\nare O O\nit O O\nworks O O\nin O O\nSafari Name Name\nas O O\nwell O O\n:) O O\n\nI O O\n'm O O\nnew O O\nin O O\nKendo Name Name\nUI Name Name\n& O O\nCodeigniter Name Name\n. O O\n\nI O O\nhave O O\ntrouble O O\nwith O O\nKendo Name Name\nUI Name Name\nwhen O O\ni O O\ntrying O O\nto O O\nread O O\ndata O O\nfrom O O\ncodeigniter Name Name\ncontroller O O\n. O O\n\nI O O\ncan O O\nsee O O\njson Name Name\ndata O O\n, O O\nwhich O O\nis O O\nreturn O O\nfrom O O\ncontroller O O\n, O O\nbut O O\nit O O\nnot O O\ndisplay O O\nat O O\nKendo Name Name\nUI Name Name\ngrid O O\n. O O\n\nBelow O O\nis O O\nsome O O\nscreen O O\nshoot O O\nwhen O O\ni O O\n'm O O\ndebug O O\n. O O\n\nHere O O\nis O O\nscreen O O\nshot O O\nerror O O\nhttp://prntscr.com/5bmn3n O O\n\nHere O O\nis O O\nscreen O O\nshot O O\ndata O O\ni O O\nrecived O O\nhttp://prntscr.com/5bmne5 O O\n\nHere O O\nis O O\nscreen O O\nshot O O\nKendo Name Name\nUI Name Name\ncode O O\n: O O\nprntscr.com/5bmnib O O\n\nAnd O O\nhere O O\nis O O\nscreen O O\nshot O O\nmy O O\ncontroller O O\ncode O O\n: O O\nprntscr.com/5bmnni O O\n\nHope O O\nyou O O\ncan O O\nhelp O O\n\nPlease O O\n, O O\ntry O O\nto O O\nadd O O\n\nAlso O O\n, O O\nplease O O\nhave O O\nin O O\nmind O O\nthat O O\n\" O O\njsonp Name Name\n\" O O\nis O O\nrequired O O\nfor O O\ncross-domain O O\nrequests O O\n! O O\n\nI O O\nam O O\nworking O O\non O O\nan O O\nMVC5 Name Name\napplication O O\n. O O\n\nI O O\nam O O\nhaving O O\na O O\nproblem O O\ngetting O O\nthe O O\nserver-side Name Name\nvalidation O O\nof O O\nnumber O O\nfields O O\nto O O\nwork O O\nfor O O\nthe O O\nspecific O O\nculture O O\n( O O\nde-CH Name Name\n) O O\n. O O\n\nIt O O\nreally O O\nfeels O O\nlike O O\nit O O\nis O O\ndefaulting O O\nto O O\nthe O O\nstandard O O\nGerman O O\nformat O O\n. O O\n\nI O O\nhave O O\nset O O\nthe O O\nweb.config Name Name\nglobalization O O\n: O O\n\nI O O\nam O O\nnot O O\nusing O O\nany O O\nresource O O\nfiles O O\n, O O\nso O O\nfrom O O\nwhat O O\nI O O\nunderstand O O\nthe O O\nuiCulture Name Name\ndoes O O\nnot O O\ncome O O\ninto O O\nplay O O\n. O O\n\nThe O O\nclient Name Name\nis O O\nusing O O\njquery.globalize Name Name\nand O O\ncorrectly O O\nloading O O\nand O O\nusing O O\nthe O O\nde-CH Name Name\nculture O O\n. O O\n\nreports O O\nthe O O\nproper O O\nculture O O\nof O O\n' Name Name\nde-CH Name Name\n' Name Name\non O O\nboth O O\nmachines O O\n. O O\n\nLocally O O\nit O O\nvalidates O O\n100.00 Name Name\nas O O\ncorrect O O\n, O O\nbut O O\non O O\nthe O O\nserver Name Name\nit O O\nsays O O\nthat O O\nis O O\nnot O O\na O O\nnumber O O\n. O O\n\nAll O O\nof O O\nthis O O\nworks O O\nproperly O O\non O O\nmy O O\nlocal O O\nWin7 Name Name\nIIS7 O O\ninstance O O\n. O O\n\nThough O O\nwhen O O\nwe O O\ninstall O O\nit O O\non O O\nthe O O\nclient Name Name\nWin8 Name Name\nserver Name Name\nit O O\ndoes O O\nnot O O\nwork O O\nanymore O O\n. O O\n\nThe O O\nclient-side Name Name\nis O O\nvalidating O O\nnumbers O O\nproperly O O\nfor O O\nthe O O\nde-CH Name Name\nculture O O\n' Name Name\n0.00 Name Name\n' Name Name\n, O O\nbut O O\nthe O O\nserver Name Name\nrejects O O\nthem O O\nas O O\ninvalid O O\n. O O\n\nThe O O\nDate O O\nformats O O\nARE O O\nhowever O O\nworking O O\n, O O\nwhich O O\njust O O\nadds O O\nto O O\nthe O O\nconfusion O O\n. O O\n\nThis O O\nis O O\nwhere O O\nI O O\nwonder O O\nif O O\nit O O\nis O O\nsomehow O O\nfalling O O\nback O O\nto O O\nde-DE Name Name\nwhere O O\nthe O O\ndate O O\nformats O O\nare O O\nthe O O\nsame O O\nbut O O\nthe O O\nnumber O O\nformat O O\nis O O\n' Name Name\n0 Name Name\n, Name Name\n00 Name Name\n' Name Name\n. O O\n\nDoes O O\na O O\nserver Name Name\nhave O O\nto O O\nhave O O\na O O\nspecific O O\nculture O O\nenabled/installed O O\n? O O\n\nOr O O\nany O O\nother O O\nideas O O\nto O O\ncheck O O\n? O O\n\nFinally O O\nwe O O\nfigured O O\nout O O\nthe O O\nproblem O O\n. O O\n\nApparently O O\nthere O O\nare O O\nregistry O O\nsettings O O\nfor O O\nthe O O\nculture O O\non O O\nthe O O\nserver Name Name\nthat O O\nwere O O\nset O O\nto O O\nde-AT Name Name\n. O O\n\nThese O O\nsomehow O O\nwere O O\nbeing O O\nhonored O O\nabove O O\nthe O O\nWeb.Config Name Name\nsettings O O\n. O O\n\nI O O\nneed O O\nto O O\nsomehow O O\nextract O O\nplain O O\nHTTP O O\nrequest O O\nmessage O O\nfrom O O\na O O\nRequest Name Name\nobject O O\nin O O\nScrapy Name Name\n( O O\nso O O\nthat O O\nI O O\ncould O O\n, O O\nfor O O\nexample O O\n, O O\ncopy/paste O O\nthis O O\nrequest O O\nand O O\nrun O O\nfrom O O\nBurp Name Name\n) O O\n. O O\n\nSo O O\ngiven O O\na O O\nscrapy.http.Request Name Name\nobject O O\n, O O\nI O O\nwould O O\nlike O O\nto O O\nget O O\nthe O O\ncorresponding O O\nrequest O O\nmessage O O\n, O O\nsuch O O\nas O O\ne.g O O\n. O O\n\nClearly O O\nI O O\nhave O O\nall O O\nthe O O\ninformation O O\nI O O\nneed O O\nin O O\nthe O O\nRequest Name Name\nobject O O\n, O O\nhowever O O\ntrying O O\nto O O\nreconstruct O O\nthe O O\nmessage O O\nmanually O O\nis O O\nerror-prone O O\nas O O\nI O O\ncould O O\nmiss O O\nsome O O\nedge O O\ncases O O\n. O O\n\nMy O O\nunderstanding O O\nis O O\nthat O O\nScrapy Name Name\nfirst O O\nconverts O O\nthis O O\nRequest Name Name\ninto O O\nTwisted Name Name\nobject O O\n, O O\nwhich O O\nthen O O\nwrites O O\nheaders O O\nand O O\nbody O O\ninto O O\na O O\nTCP O O\ntransport O O\n. O O\n\nSo O O\nmaybe O O\nthere O O\n's O O\naway O O\nto O O\ndo O O\nsomething O O\nsimilar O O\n, O O\nbut O O\nwrite O O\nto O O\na O O\nstring Name Name\ninstead O O\n? O O\n\nUPDATE O O\n\nI O O\ncould O O\nuse O O\nthe O O\nfollowing O O\ncode O O\nto O O\nget O O\nHTTP O O\n1.0 Name Name\nrequest O O\nmessage O O\n, O O\nwhich O O\nis O O\nbased O O\non O O\nhttp.py Name Name\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\ndo O O\nsomething O O\nsimilar O O\nwith O O\nHTTP O O\n1.1 Name Name\nrequests O O\n/ O O\nhttp11.py Name Name\n, O O\nwhich O O\nis O O\nwhat O O\n's O O\nactually O O\nbeing O O\nsent O O\n? O O\n\nI O O\nwould O O\nobviously O O\nlike O O\nto O O\navoid O O\nduplicating O O\ncode O O\nfrom O O\nScrapy/Twisted Name Name\nframeworks O O\nas O O\nmuch O O\nas O O\npossible O O\n. O O\n\nAs O O\nscrapy Name Name\nis O O\nopen O O\nsource O O\nand O O\nalso O O\nhas O O\nplenty O O\nof O O\nextension O O\npoints O O\n, O O\nthis O O\nshould O O\nbe O O\ndoable O O\n. O O\n\nThe O O\nrequests O O\nare O O\nfinally O O\nassembled O O\nand O O\nsent O O\nout O O\nin O O\nscrapy/core/downloader/handlers/http11.py Name Name\nin O O\nScrapyAgent.download_request Name Name\n( O O\nhttps://github.com/scrapy/scrapy/blob/master/scrapy/core/downloader/handlers/http11.py#L270 O O\n) O O\n\nIf O O\nyou O O\nplace O O\nyour O O\nhook O O\nthere O O\nyou O O\ncan O O\ndump O O\nthe O O\nrequest O O\ntype O O\n, O O\nrequest O O\nheaders O O\n, O O\nand O O\nrequest O O\nbody O O\n. O O\n\nTo O O\nplace O O\nyour O O\ncode O O\nthere O O\nyou O O\ncan O O\neither O O\ntry O O\nmonkey O O\npatching O O\nScrapyAgent.download_request Name Name\nor O O\nto O O\nsubclass O O\nScrapyAgent Name Name\nto O O\ndo O O\nthe O O\nrequest O O\nlogging O O\n, O O\nthen O O\nsubclass O O\nHTTP11DownloadHandler Name Name\nto O O\nuse O O\nyour O O\nScrapy Name Name\nAgent O O\nand O O\nthen O O\nset O O\nHTTP11DownloadHandler Name Name\nas O O\nnew O O\nDOWNLOAD_HANDLER Name Name\nfor O O\nhttp O O\n/ O O\nhttps O O\nrequests O O\nin O O\nyour O O\nproject O O\n's O O\nsettings.py Name Name\n( O O\nfor O O\ndetails O O\nsee O O\n: O O\nhttps://doc.scrapy.org/en/latest/topics/settings.html#download-handlers O O\n) O O\n\nIn O O\nmy O O\nopinion O O\nthis O O\nis O O\nthe O O\nclosest O O\nyou O O\ncan O O\nget O O\nto O O\nlogging O O\nthe O O\nrequests O O\ngoing O O\nout O O\nwithout O O\nusing O O\na O O\npacket O O\nsniffer O O\nor O O\na O O\nlogging O O\nproxy O O\n( O O\nwhich O O\nmight O O\nbe O O\na O O\nbit O O\noverkill O O\nfor O O\nyour O O\nscenario O O\n) O O\n. O O\n\nFrom O O\nthe O O\ndocumentation O O\n: O O\n\n\" O O\nAssigning O O\nto O O\nsize O O\n, O O\nwidth O O\nor O O\nheight O O\nchanges O O\nthe O O\ndimensions O O\nof O O\nthe O O\nrectangle O O\n\" O O\n. O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\ncircle Name Name\n, O O\nassign O O\na O O\nnew O O\nattribute O O\nbut O O\nno O O\nchanges O O\ncan O O\nbe O O\nseen O O\nin O O\ncircle Name Name\n. O O\n\nWhat O O\nam O O\ni O O\ndoing O O\nwrong O O\n? O O\n\nYou O O\ndraw O O\nthe O O\ncircle Name Name\non O O\nthe O O\nscreen Name Name\nsurface O O\n. O O\n\nEvery O O\ndrawing O O\nfunction O O\nthen O O\nreturns O O\na O O\nRect Name Name\n, O O\nbut O O\n: O O\n\nTo O O\nactually O O\nchange O O\nthe O O\ncircle Name Name\non O O\nthe O O\nscreen Name Name\n, O O\nyou O O\nhave O O\nto O O\nerase O O\nit O O\nfirst O O\n( O O\ndraw O O\nsomething O O\nabove O O\nit O O\n) O O\n, O O\nthen O O\ndraw O O\na O O\nnew O O\ncircle Name Name\nin O O\nthe O O\nsize O O\nyou O O\nwant O O\n. O O\n\nHere O O\n's O O\na O O\nsimple O O\nexample O O\n: O O\n\nI O O\nam O O\nattempting O O\nto O O\nup-sample O O\nan O O\nicosahedron O O\nin O O\nMATLAB Name Name\nby O O\nadding O O\nnew O O\nvertices O O\nat O O\nthe O O\nmid-points O O\nof O O\neach O O\nedge O O\nand O O\nrecomputing O O\nthe O O\nfaces O O\n. O O\n\nI O O\n've O O\nmanaged O O\nto O O\nplace O O\nthe O O\nnew O O\nvertices O O\n, O O\nbut O O\nI O O\nca O O\nn't O O\nfigure O O\nout O O\nhow O O\nto O O\nrecompute O O\nthe O O\nnew O O\nfaces O O\n. O O\n\nI O O\nwant O O\neach O O\nvertex O O\nto O O\nconnect O O\nto O O\nits O O\nclosest O O\nneighbours O O\nto O O\nform O O\na O O\nnew O O\n, O O\nup-sampled O O\nicosahedron O O\n. O O\n\nSample O O\ndata O O\n: O O\n\nCode O O\n: O O\n\nFor O O\na O O\ntriangle O O\n{ O O\n1 Name Name\n, O O\n2 Name Name\n, O O\n3} Name Name\n, O O\nsubdividing O O\nwill O O\ncreate O O\n3 O O\nnew O O\nvertices O O\n{ O O\na Name Name\n, O O\nb Name Name\n, O O\nc} Name Name\n: O O\n\nIt O O\nwill O O\nalso O O\ncreate O O\n4 O O\nnew O O\nfaces O O\n: O O\n\nYour O O\ncode O O\ncreates O O\nthe O O\ncoordinates O O\nof O O\nthe O O\nnew O O\nvertices O O\nin O O\nV Name Name\nsuch O O\nthat O O\nthe O O\na Name Name\nvertices O O\nfor O O\nall O O\nof O O\nthe O O\ntriangles O O\ncome O O\nfirst O O\n, O O\nfollowed O O\nby O O\nthe O O\nc Name Name\nvertices O O\n, O O\nand O O\nthen O O\nthe O O\nb Name Name\nvertices O O\n. O O\n\nFirst O O\nlet O O\n's O O\ngenerate O O\nthe O O\nindices O O\nof O O\nthese O O\nvertices O O\n. O O\n\nThe O O\nnew O O\nindices O O\nstart O O\nfrom O O\nsize(S.vertices)+1 Name Name\nand O O\nthere O O\nare O O\na O O\ntotal O O\nof O O\n3*size(S.faces) Name Name\nof O O\nthem O O\n. O O\n\nLet O O\n's O O\nalso O O\ngroup O O\nthe O O\nnew O O\nvertices O O\nfor O O\na O O\neach O O\nexisting O O\nface O O\ntogether O O\n. O O\n\nThis O O\ngives O O\nus O O\nall O O\nof O O\nthe O O\nnew O O\n[ Name Name\na Name Name\nb Name Name\nc Name Name\n] Name Name\nfaces O O\n( O O\nactually O O\n, O O\nin O O\n[ Name Name\na Name Name\nc Name Name\nb Name Name\n] Name Name\norder O O\n) O O\nin O O\nVx(f,:) Name Name\nwith O O\nthe O O\na Name Name\nvertices O O\nin O O\nVx(:,1) Name Name\n, O O\nthe O O\nb Name Name\nvertices O O\nin O O\nVx(:,3)<- Name Name\n- O O\nnot O O\n2 Name Name\n! O O\n, O O\nand O O\nthe O O\nc Name Name\nvertices O O\nin O O\nVx(:,2) Name Name\n. O O\n\nNow O O\nwe O O\nneed O O\nto O O\ncreate O O\nthe O O\nother O O\n3 O O\nnew O O\nfaces O O\nfor O O\neach O O\nexisting O O\nface O O\n. O O\n\nYou O O\ncan O O\ndo O O\nthis O O\nusing O O\ncat Name Name\n, O O\npermute Name Name\nand O O\nreshape Name Name\n, O O\nbut O O\nit O O\ngets O O\nreally O O\nugly O O\nand O O\nincomprehensible O O\n. O O\n\nSince O O\nwe O O\n've O O\nonly O O\ngot O O\n9 O O\nvertices O O\nthat O O\ngo O O\ninto O O\nthese O O\nfaces O O\n, O O\nit O O\n's O O\neasier O O\nto O O\njust O O\nplug O O\nthem O O\nin O O\nmanually O O\nto O O\ncreate O O\na O O\nm Name Name\nx Name Name\n9 Name Name\nmatrix Name Name\nand O O\nthen O O\nreshape Name Name\ninto O O\nm*3 Name Name\nx Name Name\n3 Name Name\n: O O\n\nNow O O\nall O O\nthat O O\n's O O\nleft O O\nis O O\nupdating O O\nS Name Name\n: O O\n\nSo O O\nat O O\nthis O O\npoint O O\nI O O\nam O O\nrunning O O\nthe O O\napp O O\nby O O\nthe O O\ncommand O O\n: O O\nnodemon Name Name\nserver.js Name Name\n, O O\nI O O\ndid O O\nnot O O\ndeploy O O\n. O O\n\nI O O\ncreated O O\na O O\nBitnami Name Name\npowered O O\ncompute Name Name\nengine Name Name\nmachine O O\nthat O O\nhas O O\nMongoDB Name Name\ninstalled O O\n, O O\nand O O\nit O O\nworks O O\nwhen O O\nI O O\nlog O O\nin O O\nto O O\nit O O\n. O O\n\nFrom O O\nmy O O\nnodejs Name Name\nApp O O\nengine O O\nI O O\nconnect O O\nlike O O\nthis O O\n: O O\n\nThe O O\nerror O O\nI O O\nget O O\nis O O\n: O O\n\nI O O\ntried O O\nssh-ing O O\ninto O O\nthe O O\ncompute Name Name\nengine Name Name\nand O O\nI O O\ndid O O\nthe O O\nfollowing O O\n: O O\n\nadding O O\nperimision O O\nfor O O\nport Name Name\n27017 O O\n: O O\n\ngcloud Name Name\ncompute Name Name\nfirewall-rules Name Name\ncreate Name Name\nallow-mongodb Name Name\n--allow Name Name\ntcp:27017 Name Name\n\nIt O O\nsaid O O\nit O O\nalready O O\nexist O O\n. O O\n\nI O O\nchanged O O\nin O O\nmongodb.config Name Name\nin O O\nbind_ip Name Name\nto O O\n0.0.0.0 Name Name\n. O O\n\nStill O O\nnothing O O\n. O O\n\nThis O O\nis O O\nvery O O\nfrustating O O\n, O O\nif O O\nyou O O\nhave O O\nany O O\nidea O O\nI O O\nwould O O\nvery O O\nmuch O O\napreciate O O\nit O O\n. O O\n\nAs O O\na O O\nmention O O\n, O O\nI O O\ndo O O\nnot O O\nhave O O\na O O\nlot O O\nof O O\nexperience O O\nwith O O\nthis O O\n, O O\nso O O\nplease O O\nbe O O\nexplicit O O\n. O O\n\nI O O\nusually O O\ndo O O\nthis O O\n: O O\n\nI O O\nhope O O\nhelped O O\n. O O\n\nI O O\nneed O O\nto O O\ncreate O O\na O O\nvirtual Name Name\nprinter Name Name\nthat O O\n' O O\nshreds O O\n' O O\n\nBasically O O\nhere O O\nis O O\nmy O O\nproblem O O\n. O O\n\nI O O\nhave O O\na O O\nsoftware O O\nprogram O O\nthat O O\nneeds O O\nto O O\n' O O\nprint O O\n' O O\na O O\nfile O O\nbefore O O\nit O O\nwill O O\nsave O O\nit O O\n. O O\n\nI O O\nwant O O\nto O O\nbe O O\nable O O\nto O O\nprint O O\nto O O\nmy O O\nshredder O O\nso O O\nthat O O\nit O O\nsaves O O\nthe O O\ndocument O O\n, O O\nbut O O\nI O O\ndo O O\nn't O O\nactually O O\nwant O O\nthe O O\ndocument O O\nprinted O O\n. O O\n\nSo O O\nI O O\nneed O O\nto O O\nprint O O\nto O O\na O O\nprogram O O\nthat O O\nsecurely O O\ndeletes O O\nthe O O\ndocument O O\nand O O\nshows O O\nas O O\na O O\ndriver Name Name\nin O O\nWindows Name Name\n. O O\n\nHow O O\nwould O O\nI O O\ngo O O\nabout O O\ndoing O O\nthis O O\nin O O\nC# Name Name\nof O O\nVB.Net Name Name\n? O O\n\nNo O O\nneed O O\nto O O\nwrite O O\ncode O O\nfor O O\nthis O O\njust O O\nprint O O\nto O O\nnul Name Name\n. O O\n\nThis O O\nhas O O\nworked O O\nsince O O\nDOS Name Name\n. O O\n\nJust O O\ncreate O O\na O O\nnew O O\nprinter Name Name\n, O O\nprinting O O\nto O O\na O O\nlocal O O\nport Name Name\n, O O\nand O O\nput O O\nnul Name Name\nin O O\nthere O O\nfor O O\nthe O O\nport Name Name\nname O O\n. O O\n\nhttp://www.markmmanning.com/blog/2009/01/creating-fake-printer-devnull-for.html O O\n\nI O O\n'm O O\ngenerating O O\nPDF Name Name\nfiles O O\nusing O O\nan O O\nold O O\nlibrary O O\nof O O\niText Name Name\non O O\nUnix Name Name\n. O O\n\nEverything O O\nis O O\ngoing O O\nfine O O\n, O O\nbut O O\nmy O O\nexploitation O O\nteam O O\nhas O O\njust O O\ncontacted O O\nme O O\ntelling O O\nthey O O\nare O O\nhaving O O\nstorage O O\ntroubles O O\nwith O O\nsome O O\ntemp Name Name\nfiles O O\n. O O\n\nAfter O O\na O O\ndiscussion O O\n, O O\nthey O O\nindicate O O\nme O O\na O O\nlot O O\nof O O\n\" Name Name\nAcroaxxxxx Name Name\n\" Name Name\nfiles O O\nare O O\ncreated O O\nunder O O\n/tmp Name Name\nfolder O O\n. O O\n\nI O O\n'm O O\nchecking O O\nit O O\nand O O\nthe O O\nfiles O O\nare O O\nthe O O\nsame O O\nI O O\ngenerate O O\nwith O O\nmy O O\napplication O O\n, O O\nbut O O\nmy O O\ncode O O\nis O O\nnot O O\nhandling O O\nthis O O\n. O O\n\nMy O O\nquestion O O\nis O O\nquite O O\nsimple O O\n: O O\ncan O O\nI O O\nmodify O O\nor O O\nadd O O\nsomething O O\nto O O\nmy O O\ncode O O\nto O O\nindicate O O\nto O O\niText Name Name\nto O O\ndelete O O\nthe O O\ntmp Name Name\nfile O O\ncreated O O\nduring O O\nthe O O\nprocess O O\n? O O\n\nThnks O O\n! O O\n\nThis O O\nworks O O\n\napache_setenv Name Name\n( Name Name\n'sessionID' Name Name\n, Name Name\nsession_id() Name Name\n, Name Name\nTRUE Name Name\n) Name Name\n\nBUT O O\n\nit O O\nonly O O\nmakes O O\nsessionID Name Name\nappear O O\non O O\nGETs Name Name\nof O O\nPHP Name Name\nfiles O O\nwhich O O\nset O O\nthe O O\nvariable O O\n. O O\n\nI O O\nwould O O\nlike O O\nthe O O\nsessionID Name Name\nto O O\nappear O O\non O O\nall O O\nGETs Name Name\nincluding O O\njs Name Name\n, O O\njpg Name Name\n, O O\ngif Name Name\netc O O\nreferred O O\nfrom O O\nthe O O\nPHP Name Name\nfile O O\n. O O\n\ni.e O O\n. O O\nall O O\nthe O O\nfiles O O\nin O O\nthe O O\nPHP Name Name\nfile O O\n. O O\n\nI O O\nthought O O\nthat O O\nby O O\nsetting O O\nan O O\napache Name Name\nenvironment O O\nvariable O O\nthe O O\nvariable O O\nscope O O\nwould O O\nmake O O\nit O O\navailable O O\nfor O O\nevery O O\nGET Name Name\nfrom O O\nthe O O\nPHP Name Name\nfile O O\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\ndo O O\nthis O O\n? O O\n\np.s O O\n. O O\nI O O\ntried O O\nsetting O O\napache Name Name\nnote Name Name\nfirst O O\nand O O\nthat O O\nreturns O O\nexactly O O\nthe O O\nsame O O\n. O O\n\nGetting O O\n\" O O\nGateway O O\nerror O O\n: O O\nUnable O O\nto O O\nread O O\nresponse O O\nor O O\nresponse O O\nis O O\nempty O O\n\" O O\nwhen O O\nI O O\ntry O O\nto O O\npost O O\npayments O O\nto O O\nauthorize.net Name Name\n. O O\n\nAuthorize.net Name Name\ncannot O O\nsee O O\nanything O O\ncoming O O\nthrough O O\n, O O\nhost O O\nprovider O O\nsays O O\nno O O\nissues O O\non O O\ntheir O O\nend O O\n. O O\n\nI O O\nam O O\nusing O O\nthe O O\nAuthorize.net Name Name\npayment O O\ntype O O\n\nI O O\nhave O O\nverified O O\nmy O O\nAPI Name Name\nlogin Name Name\nand O O\ntrans Name Name\nID Name Name\nin O O\ndefault O O\n, O O\nwebsite O O\n, O O\nand O O\nstore O O\nview O O\n\nI O O\nhave O O\ninstalled O O\ncURL Name Name\nSSL Name Name\n\nI O O\nhave O O\nverified O O\nno O O\nfirewalls Name Name\nare O O\nblocking O O\nconnections O O\n. O O\n\nI O O\nam O O\nnot O O\nin O O\ntestmode O O\n\ndebugging O O\nis O O\non O O\n, O O\nand O O\nresults O O\nare O O\nbelow O O\n. O O\n\nBelow O O\nis O O\nthe O O\noutput O O\nfrom O O\nthe O O\nexception.log Name Name\nfile O O\n\ni O O\nthink O O\nyou O O\nenabled O O\nTest O O\nMode O O\nin O O\nSystem->Configuration->PaymentMethods Name Name\n\nTurns O O\nout O O\nthere O O\nwas O O\nan O O\nissue O O\nwith O O\nmy O O\nnameservers Name Name\nat O O\nmy O O\nhost O O\n. O O\n\nI O O\nfigured O O\nthis O O\nout O O\nusing O O\ninformation O O\nhere O O\n: O O\nhttp://www.magentocommerce.com/boards/viewthread/50611/ O O\n( O O\nthe O O\nreferenced O O\nthread O O\ncan O O\nbe O O\nviewed O O\nin O O\nthe O O\ninternet O O\narchive O O\n, O O\nhere O O\nhttps://web.archive.org/web/20150315055800/http://www.magentocommerce.com/boards/viewthread/50611 O O\n) O O\n\nAfter O O\nthat O O\nI O O\nreceived O O\nan O O\nerror O O\nmessage O O\nassociated O O\nwith O O\na O O\nblocked O O\nIP O O\n. O O\n\nI O O\nadded O O\nmy O O\nnew O O\nip O O\nat O O\naccounts.authorize.net O O\nin O O\nTools Name Name\n( O O\ntop O O\nmenu Name Name\n) O O\n> O O\nFraud O O\nSuite O O\n( O O\nleft O O\nmenu Name Name\n) O O\n> O O\nAuthorized O O\nAIM O O\nip O O\naddresses O O\n( O O\nbody O O\n, O O\nsecond O O\nto O O\nlast O O\nitem O O\n) O O\n. O O\n\nI O O\n'm O O\ndoing O O\na O O\ndatabase O O\nproject O O\nfor O O\nuniversity O O\nand O O\nI O O\n'm O O\nhaving O O\na O O\nproblem O O\nin O O\nhere O O\n. O O\n\nI O O\nreceive O O\nfrom O O\na O O\nprevious O O\npage O O\nan O O\nid O O\nas O O\n$_POST['ids'] Name Name\nand O O\nin O O\nthe O O\nform O O\nI O O\nsend O O\nthat O O\nsame O O\nvalue O O\nin O O\na O O\nhidden O O\nfield O O\nso O O\nit O O\ncan O O\ndo O O\na O O\nsort O O\nof O O\na O O\ncicle O O\n. O O\n\nBut O O\nwhen O O\nI O O\nclick O O\nthe O O\nsubmit O O\nbutton Name Name\nI O O\ngot O O\na O O\nlot O O\nof O O\nerrors O O\non O O\n$service_info Name Name\nand O O\nno O O\ninformation O O\nis O O\nloaded O O\non O O\nthe O O\npage O O\n. O O\n\nI O O\ntried O O\ndo O O\nvar_dump() Name Name\neverything O O\nand O O\nI O O\njust O O\nca O O\nn't O O\nfind O O\nwhat O O\nis O O\nthe O O\nproblem O O\nin O O\nhere O O\n. O O\n\nchange O O\ninside O O\nyour O O\nform O O\nthis O O\ninput O O\nhidden O O\nyou O O\ncreated O O\n: O O\n\nto O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nechoing O O\nthis O O\nvalue O O\n, O O\n$_POST['ids'] Name Name\nwo O O\nn't O O\nbe O O\nget O O\nany O O\nvalue O O\npassed O O\nfrom O O\nform Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nquery O O\nthe O O\nlatest O O\ninsert O O\nmade O O\nto O O\nthe O O\ntable Name Name\n, O O\nAzure Name Name\nMobile Name Name\nService Name Name\nadds O O\nby O O\ndefault O O\nthe O O\n__createdAt Name Name\ncolumn Name Name\n. O O\n\nSo O O\n, O O\nI O O\nam O O\nplanning O O\nto O O\nsort O O\nthe O O\ntable Name Name\naccording O O\nto O O\nthat O O\nspecific O O\ncolumn Name Name\n, O O\nsince O O\n__createdAt Name Name\nis O O\na O O\nsystem O O\nproperty O O\n. O O\n\nI O O\nthought O O\nof O O\nadding O O\nit O O\nto O O\nmy O O\ntable Name Name\nmodel O O\n. O O\n\nNow O O\nmy O O\nquestion O O\nis O O\n: O O\nhow O O\nto O O\nquery O O\nthis O O\nin O O\nC# Name Name\n? O O\n\nYou O O\ncan O O\nhave O O\na O O\nproperty O O\nin O O\nyour O O\nmodel O O\nthat O O\ntracks O O\nthe O O\n__createdAt Name Name\ncolumn Name Name\n, O O\nand O O\nsort O O\nbased O O\non O O\nthat O O\n: O O\n\nAnd O O\non O O\nthe O O\ncode O O\n: O O\n\nHi O O\nall O O\nthis O O\nis O O\nmy O O\nfirst O O\nquestion O O\nhere O O\n, O O\nI O O\n'm O O\nvery O O\nnew O O\nto O O\nHaskell Name Name\nand O O\nI O O\nneed O O\nto O O\ndo O O\na O O\nHaskell Name Name\nfunction O O\nwhich O O\ntakes O O\na O O\nTree Name Name\nand O O\nreturns O O\na O O\nlist Name Name\nof O O\nthe O O\nelements O O\nin O O\nits O O\nnode O O\nin O O\na O O\npreorder O O\ntraversal O O\nbut O O\nI O O\nca O O\nn't O O\nget O O\nit O O\nto O O\nwork O O\n. O O\n\nMy O O\nTree Name Name\ndefinition O O\nis O O\nthe O O\nfollowing O O\n: O O\n\nand O O\nthe O O\npreorder Name Name\nfunction O O\nis O O\n: O O\n\nIn O O\nadvance O O\nthank O O\nyou O O\nvery O O\nmuch O O\nfor O O\nyour O O\nhelp O O\n:) O O\n\nI O O\nhave O O\na O O\nListView Name Name\nin O O\nmy O O\nWindows Name Name\nStore Name Name\nApp O O\n, O O\nwhich O O\nselects O O\na O O\ntemplate O O\nthrough O O\ndataTemplateSelector Name Name\n. O O\n\nIn O O\nthe O O\nItemTemplate Name Name\nof O O\nListView Name Name\n, O O\ni O O\nhave O O\nan O O\nimage Name Name\n. O O\n\nI O O\ndo O O\nn't O O\nwant O O\nto O O\nfix O O\nthe O O\nheight Name Name\nand O O\nwidth Name Name\nof O O\nthe O O\nimage Name Name\n, O O\ni O O\nwant O O\nto O O\nallow O O\nit O O\nto O O\nadjust O O\nitself O O\nwith O O\nthe O O\nspace O O\navailable O O\n. O O\n\nSo O O\nthe O O\nimage Name Name\ncan O O\nbe O O\ndisplayed O O\nbigger O O\nin O O\nbig O O\nscreen O O\nsize O O\n. O O\n\nFollowing O O\nis O O\nmy O O\nListView Name Name\nXAML Name Name\n: O O\n\nI O O\nhave O O\nset O O\nVerticalContentAlignment Name Name\nto O O\nStretch O O\n, O O\nthis O O\nstretches O O\nmy O O\nListViewItem Name Name\nto O O\nthe O O\nsize O O\nof O O\nListView Name Name\n, O O\nbut O O\nthe O O\nproblem O O\nis O O\nwhen O O\nthe O O\nimage Name Name\ninside O O\nthe O O\nItem Name Name\nis O O\nbigger O O\n, O O\nit O O\nincreases O O\nthe O O\nsize O O\nof O O\nListViewItem Name Name\nlarger O O\nthan O O\nListView Name Name\n. O O\n\nI O O\nhave O O\nalso O O\ntried O O\nsetting O O\nthe O O\nheight Name Name\nof O O\nListViewItem Name Name\nin O O\nthe O O\nabove O O\ncode O O\nby O O\nadding O O\n\nFollowing O O\nis O O\nthe O O\ncode O O\nof O O\nmy O O\nItemTemplate Name Name\n, O O\nwhich O O\nis O O\nbeing O O\nselected O O\nthrough O O\nItemTemplateSelector Name Name\n, O O\n\nThe O O\nGrid Name Name\nat O O\nRow O O\nNumber O O\n1 Name Name\n<Grid Name Name\nGrid.Row=\"1\" Name Name\n> Name Name\n, O O\ncontains O O\nthe O O\nimage Name Name\nwhich O O\nmakes O O\nthe O O\nheight Name Name\ngo O O\nlarger O O\nthan O O\nthe O O\nListView Name Name\n. O O\n\nI O O\nwant O O\nto O O\nallow O O\nthis O O\nGrid Name Name\nto O O\nstretch O O\nitself O O\nto O O\nthe O O\nsize O O\nof O O\nits O O\nparent O O\n. O O\n\nBut O O\nnot O O\ncross O O\nthe O O\nsize O O\nof O O\nits O O\nparent O O\n. O O\n\nin O O\nother O O\nword O O\n, O O\ni O O\nsimply O O\nwant O O\nto O O\nbind O O\nits O O\nheight Name Name\nto O O\nits O O\nparent O O\n. O O\n\nPlease O O\nhelp O O\nme O O\nout O O\n, O O\ni O O\nam O O\nstuck O O\nhere O O\n. O O\n\nI O O\nhave O O\nmanaged O O\nto O O\nsolve O O\nthis O O\nin O O\nmy O O\nown O O\nproject O O\nby O O\nbinding O O\nthe O O\nHeight Name Name\nof O O\nthe O O\nGrid Name Name\nin O O\nthe O O\nDataTemplate Name Name\nto O O\nthe O O\nActualHeight Name Name\nof O O\nthe O O\nListView Name Name\n. O O\n\nI O O\ndoes O O\nnot O O\nseem O O\nto O O\nwork O O\nif O O\nthe O O\nbinding O O\nis O O\nin O O\nthe O O\nListView.ItemContainerStyle Name Name\nstyle O O\nas O O\na O O\nsetter O O\n. O O\n\nhave O O\nyou O O\ntried O O\nto O O\nchange O O\nthe O O\nRow Name Name\nDefinition Name Name\napplied O O\nfor O O\nthat O O\nimage O O\nto O O\n' O O\nAuto Name Name\n' O O\n? O O\n\ntry O O\nthis O O\n\nSince O O\nthere O O\nis O O\nno O O\nOrderAmount Name Name\ntype O O\ncolumn Name Name\n, O O\nI O O\nam O O\nassuming O O\nwhat O O\nyou O O\nneed O O\nis O O\nmaximum O O\nnumber O O\nof O O\norders O O\n. O O\n\nLet O O\n's O O\nsay O O\nyour O O\nworking O O\non O O\na O O\nproduct O O\n, O O\nand O O\nyou O O\nrealise O O\nthat O O\nsome O O\nof O O\nthe O O\ncode O O\nis O O\ngeneral O O\nenough O O\nto O O\nbe O O\nextracted O O\nout O O\nto O O\na O O\ngem Name Name\n. O O\n\nSo O O\nyou O O\ncreate O O\na O O\nnew O O\nproject O O\n, O O\nbuild O O\nthe O O\ngem O O\n, O O\npublish O O\nit O O\nto O O\nRubygems Name Name\n, O O\nand O O\nthen O O\nreference O O\nit O O\nin O O\nyour O O\nmain O O\nproject O O\n's O O\nGemfile Name Name\n. O O\n\nThen O O\nyou O O\ndiscover O O\na O O\nsmall O O\nbug O O\nwith O O\nhow O O\nthe O O\ngem Name Name\ninteracts O O\nwith O O\nyour O O\nproduct O O\n. O O\n\nEach O O\ntime O O\nyour O O\nmake O O\na O O\nfix O O\n, O O\nbuilding O O\nand O O\ninstalling O O\nthe O O\ngem Name Name\nlocally O O\ncan O O\ntake O O\nabout O O\n15 O O\nseconds O O\n. O O\n\nHow O O\ndo O O\nyou O O\nminimise O O\nthis O O\nto O O\nhave O O\na O O\nquick O O\ndevelop/test O O\ncycle O O\n? O O\n\n( O O\nAlso O O\nit O O\nseems O O\nthat O O\nthe O O\nlocally O O\nbuilt O O\ngem Name Name\n's O O\nversion O O\nnumber O O\ncould O O\ncontradict O O\nwith O O\nwhat O O\nyou O O\n've O O\npushed O O\nto O O\nRubygems Name Name\n, O O\nleading O O\nto O O\nconfusion O O\n. O O\n) O O\n\nAny O O\nbest O O\npractice O O\nguides O O\non O O\nthis O O\nsubject O O\n? O O\n\nbundler Name Name\ndoes O O\nn't O O\njust O O\nknow O O\nhow O O\nto O O\nget O O\ngems Name Name\nfrom O O\nrubygems Name Name\n. O O\n\nYou O O\ncould O O\npoint O O\nit O O\nat O O\na O O\ngit Name Name\nrepository O O\n\nor O O\n, O O\nmuch O O\nmore O O\nconveniently O O\nin O O\nthis O O\ncase O O\n\nwhere O O\nthe O O\npath O O\noption O O\npoints O O\nto O O\nthe O O\nfolder O O\nwith O O\nthe O O\ngem Name Name\n's O O\nsource O O\n\nThere O O\nare O O\ntwo O O\nfiles O O\nthat O O\nI O O\nam O O\nable O O\nto O O\nmodify O O\n\nheader.tpl Name Name\nand O O\nproduct.tpl Name Name\n\nI O O\ndo O O\nnot O O\nhave O O\naccess O O\nto O O\nany O O\nof O O\nthe O O\ncontroller O O\nor O O\nmodel O O\nfiles O O\n\nFor O O\nSEO O O\npurposes O O\nI O O\nam O O\ntrying O O\nto O O\nmodifiy O O\nthe O O\nfollowing O O\nmeta O O\ndata O O\nwhile O O\non O O\na O O\nproduct O O\npage O O\n. O O\n\nCurrently O O\n$description Name Name\ndoes O O\nnot O O\nhave O O\nany O O\noutput O O\n. O O\n\nHowever O O\non O O\nmy O O\nproduct.tpl Name Name\nI O O\nhave O O\na O O\nvariable O O\n<?php Name Name\necho Name Name\n$heading_title Name O\n?> Name Name\nwhich O O\nis O O\nessentially O O\nthe O O\ntext O O\nthat O O\nI O O\nwould O O\nlike O O\nto O O\nhave O O\nin O O\nthe O O\nheader O O\nmeta O O\ndata O O\n. O O\n\nIs O O\nthis O O\neven O O\npossible O O\nto O O\nachieve O O\nwithout O O\naccessing O O\nthe O O\nmodel/controller O O\nor O O\nam O O\nI O O\njust O O\nwasting O O\nmy O O\ntime O O\n? O O\n\nAs O O\nnoted O O\nin O O\nthe O O\ncomments O O\n: O O\nOnce O O\nsomething O O\nhas O O\nbeen O O\nsent O O\nto O O\nthe O O\nbrowser Name Name\n( O O\nor O O\nany O O\nother O O\noutput O O\n) O O\n, O O\nit O O\nis O O\nimpossible O O\nto O O\nchange O O\nit O O\nserver-side Name Name\n. O O\n\nThe O O\nbest O O\nsolution O O\n, O O\nif O O\nyou O O\nare O O\nable O O\nto O O\nedit O O\nthe O O\ncontents O O\nof O O\nthe O O\nheader O O\nwith O O\npreg_replace() Name Name\netc O O\n, O O\nis O O\nto O O\nsimply O O\nset O O\nthe O O\nvariable O O\nbefore O O\nincluding O O\nthe O O\nheader O O\n. O O\n\nSo O O\nthat O O\ninstead O O\nof O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nYou O O\nmove O O\nall O O\nof O O\nthe O O\nprocessing O O\nbefore O O\nyou O O\nstart O O\nto O O\noutput O O\nanything O O\nto O O\nthe O O\nbrowser Name Name\n, O O\nwhich O O\ncompletely O O\neliminates O O\nthe O O\nparadox O O\nof O O\nhaving O O\nto O O\nchange O O\nsomething O O\nyou O O\n've O O\nalready O O\nsent O O\n. O O\n\nWhich O O\nshould O O\nleave O O\nyou O O\nwith O O\na O O\ncode O O\nlooking O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nIt O O\nalso O O\nhas O O\nthe O O\nadded O O\nbenefit O O\nof O O\nmaking O O\nyour O O\nPHP Name Name\ncode O O\nmuch O O\nsimpler O O\nto O O\nread O O\n, O O\nand O O\nthus O O\neasier O O\nto O O\nmaintain O O\nin O O\nthe O O\nlong O O\nrun O O\n. O O\n\nEven O O\non O O\nthis O O\nsmall O O\ncode O O\nsample O O\n, O O\nyou O O\ncan O O\nsee O O\nthe O O\ndifference O O\na O O\nproper O O\nseperation O O\nof O O\nconcerns O O\ndoes O O\n. O O\n\nThe O O\nnot O O\nso O O\npretty O O\nbut O O\nfunctional O O\nsolution O O\n\nI O O\nhave O O\nthis O O\ncode O O\nin O O\na O O\n.html.erb Name Name\nfile O O\n: O O\n\nThis O O\nis O O\nworking O O\ncorrectly O O\n, O O\nand O O\nI O O\ncan O O\naccess O O\nthe O O\n@consumer Name Name\n.name Name Name\ncorrectly O O\n. O O\n\nHowever O O\n, O O\nif O O\nI O O\nchange O O\nthis O O\nto O O\n: O O\n\nWhere O O\nfacebook_consumer.js Name Name\nlooks O O\nlike O O\nthis O O\n: O O\n\nIt O O\nwill O O\ndump O O\nthis O O\n: O O\n\nYou O O\nliked O O\n<%= Name Name\n@consumer.name Name Name\n%> Name Name\n. O O\n\nI O O\nhave O O\ntried O O\nsaving O O\nthe O O\nfile O O\nas O O\njs.erb Name Name\n, O O\nbut O O\nthen O O\nit O O\nseems O O\nit O O\ndoes O O\nn't O O\nknow O O\nwhat O O\n@consumer Name Name\nis O O\n. O O\n\nAny O O\nthoughts O O\non O O\nwhat O O\nis O O\nthe O O\nbest O O\napproach O O\n? O O\n\nYou O O\nca O O\nn't O O\ninline O O\nRuby Name Name\ncode O O\ninto O O\n.js Name Name\nfiles O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\nuse O O\nRuby Name Name\ncode O O\n, O O\nyou O O\nneed O O\nto O O\ncreate O O\na O O\n.js.erb Name Name\nfile O O\nand O O\nthen O O\nrender O O\na O O\npartial O O\ninside O O\nof O O\nthat O O\n. O O\n\nYour O O\nbest O O\nbet O O\nis O O\nprobably O O\nto O O\ncreate O O\nan O O\napp-wide O O\nJS Name Name\nobject O O\nto O O\nstore O O\nvalues O O\nyou O O\nneed O O\n. O O\n\nAt O O\nthe O O\ntop O O\nof O O\nthe O O\npage O O\n, O O\nyou O O\ncan O O\nadd O O\nelements O O\nto O O\nthis O O\nobject O O\n, O O\nand O O\nthey O O\nwill O O\nbe O O\navailable O O\nto O O\nyour O O\nlinked O O\nscripts O O\n. O O\n\nThis O O\nis O O\na O O\nmulti O O\nthreaded O O\nscenario O O\n. O O\n\nThe O O\nmain O O\nthread O O\nhandles O O\nthe O O\napplication O O\nand O O\nUI O O\nevents O O\n, O O\nand O O\nit O O\nstarts O O\nup O O\na O O\nnew O O\nthread O O\nto O O\ndo O O\nsome O O\nbackground O O\noperations O O\n. O O\n\nThe O O\n\" O O\nbackground O O\n\" O O\nthread O O\nloads O O\nthe O O\ndata O O\nfrom O O\nfiles O O\ninto O O\na O O\ndata-table O O\nof O O\na O O\nstrongly-typed O O\ndataset O O\n. O O\n\nThe O O\nDataGridView Name Name\nis O O\nbound O O\nto O O\nthat O O\nDataTable Name Name\n. O O\n\nOnce O O\nthe O O\ndata O O\nis O O\nready O O\n, O O\nthe O O\n\" O O\nbackground O O\n\" O O\nthread O O\ninvokes O O\nthe O O\nrefresh() Name Name\nfunction O O\nof O O\nthe O O\nDataGridView Name Name\non O O\nthe O O\nform O O\n. O O\n\nIf O O\nthere O O\nare O O\nmore O O\nlines O O\nthen O O\nwhat O O\nfits O O\non O O\none O O\nscreen Name Name\nand O O\nthe O O\nvertical Name Name\nscrollbar Name Name\nis O O\nto O O\nappear O O\n: O O\nthe O O\ngrid Name Name\ncrashes O O\n. O O\n\nThe O O\nnew O O\ndatalines Name Name\nare O O\nalways O O\ndisplayed O O\n. O O\n\nError O O\nonly O O\noccurs O O\nif O O\nthere O O\nare O O\nenough O O\nlines O O\nto O O\ndisplay O O\nthe O O\nscrollbar Name Name\n( O O\nsee O O\nimage Name Name\nbelow O O\n) O O\n. O O\n\nI O O\nuse O O\n.NET Name Name\n3.5 Name Name\n. O O\n\nIn O O\nWindows Name Name\nXP Name Name\nit O O\ncrashes O O\nthe O O\nwhole O O\napplication O O\n. O O\n\nOn O O\nWin Name Name\n7 Name Name\n( O O\n64 Name Name\nbit Name Name\n) O O\nonly O O\nthe O O\ngrid Name Name\nbecomes O O\nunresponsive O O\n, O O\nbut O O\nonce O O\nI O O\nresize O O\nthe O O\nwindow Name Name\nthe O O\nscrollbar Name Name\nappears O O\nand O O\nall O O\nis O O\nfine O O\n. O O\n\nThe O O\nrelevant O O\nparts O O\nof O O\nthe O O\ncode O O\nare O O\nattached O O\nbelow O O\n. O O\n\nGrid O O\nrefresh Name Name\noperation O O\nin O O\nthe O O\nform O O\n's O O\n.cs Name Name\nfile O O\n: O O\n\nThe O O\nupdate O O\npart O O\nin O O\nthe O O\n\" O O\nbackground O O\n\" O O\nthread O O\n: O O\n\nThe O O\nobjects O O\nrelated O O\nto O O\nthe O O\n\" O O\nbackground O O\n\" O O\nthread O O\nhave O O\na O O\ndirect O O\nreference O O\nto O O\nthe O O\nDataSet Name Name\n( O O\nUiDataSource Name Name\n) O O\n. O O\n\nThe O O\nDataTable Name Name\n( O O\nCurrentSamples Name Name\n) O O\nis O O\nupdated O O\nin O O\nthe O O\nfollowing O O\nmanner O O\n: O O\n\nDataGridView Name Name\noptions O O\n: O O\n\nIf O O\nI O O\nmade O O\na O O\nmistake O O\nsomewhere O O\nplease O O\npoint O O\nit O O\nout O O\nto O O\nme O O\n. O O\n\n@ChrisF O O\n: O O\n\nI O O\ntried O O\nremoving O O\nthe O O\nrefresh() Name Name\nstatement O O\n, O O\nas O O\nI O O\nam O O\ndoing O O\npretty O O\nmuch O O\nthe O O\nsame O O\nwhat O O\nu O O\nsuggested O O\n. O O\n\nThe O O\nonly O O\ndifference O O\nis O O\nthe O O\ndatabinding O O\n, O O\nit O O\nlooks O O\nlike O O\n: O O\n\nAnd O O\nI O O\nupdate O O\nthe O O\ndataTable Name Name\nin O O\na O O\nsimilar O O\nway O O\n, O O\nbut O O\nfrom O O\nanother O O\nthread O O\n. O O\n\nBut O O\nthe O O\nnew O O\ndata O O\nlines O O\ndo O O\nnot O O\nappear O O\nuntil O O\nI O O\n, O O\nsay O O\n, O O\nresize O O\nthe O O\nwindow Name Name\n. O O\n\nWhich O O\nraises O O\nthe O O\nquestion O O\nhow O O\nI O O\ncan O O\nproperly O O\nupdate O O\nthe O O\ndataTable Name Name\nfrom O O\nanother O O\nthread O O\n? O O\n\nI O O\n'm O O\nguessing O O\nthe O O\nproblem O O\nhas O O\nto O O\ndo O O\nwith O O\nhow O O\nWinForms Name Name\nworks O O\ninside O O\nthe O O\nSTA O O\nmodel O O\nfor O O\nthreading O O\n. O O\n\nBasically O O\n, O O\nthe O O\nDataTable Name Name\nyou O O\n're O O\naccessing O O\nis O O\nlocated O O\nsomewhere O O\n, O O\nand O O\nthat O O\nis O O\nprobably O O\ninside O O\nthe O O\nform O O\nwe O O\nsee O O\nabove O O\n. O O\n\nSo O O\n, O O\nwhen O O\nyou O O\nupdate O O\nthe O O\nDataTable Name Name\nfrom O O\nanother O O\nthread O O\n, O O\nwhich O O\nthread O O\ngets O O\nthe O O\nevents O O\nneeded O O\nfor O O\nbinding O O\n? O O\n\nLikely O O\nthe O O\nthread O O\nyou O O\nupdate O O\nit O O\nfrom O O\n, O O\nand O O\nthe O O\nform O O\n's O O\nthread O O\nis O O\nnot O O\naware O O\nof O O\nthe O O\nchanges O O\nbeing O O\nmade O O\n. O O\n\nSo O O\n, O O\nyou O O\nsimply O O\nneed O O\nto O O\ninvoke O O\nany O O\ncalls O O\nto O O\nDataTable Name Name\nonto O O\nthe O O\nform O O\nitself O O\n, O O\nso O O\nit O O\nreceives O O\nthe O O\nevents O O\nproperly O O\n: O O\n\nIt O O\nseems O O\nbackwards O O\n, O O\nbut O O\nkeep O O\nin O O\nmind O O\nin O O\nan O O\n\" O O\nenterprise O O\n\" O O\nsituation O O\n, O O\nyou O O\n'd O O\nprobably O O\nbe O O\naccessing O O\nthat O O\ndataset O O\nby O O\nmultiple O O\nadapters O O\n. O O\n\nSo O O\n, O O\nyour O O\nupdate O O\nthread O O\nwould O O\nhave O O\nan O O\nadapter O O\nto O O\nitself O O\n, O O\nand O O\nyour O O\nGUI O O\nwould O O\nhave O O\nits O O\nown O O\nalso O O\n. O O\n\nThe O O\nother O O\nsolution O O\nwould O O\nbe O O\nto O O\nuse O O\na O O\nBindingList Name Name\n, O O\nwhich O O\nI O O\nbelieve O O\nhas O O\nthread O O\ncompatibility O O\nfor O O\nthis O O\ntype O O\nof O O\nsituation O O\n, O O\nbut O O\ndo O O\nn't O O\nquote O O\nme O O\non O O\nthat O O\n. O O\n\nFor O O\nextra O O\ncredit O O\n, O O\nthis O O\ncould O O\nalso O O\nexplain O O\nyour O O\nproblem O O\nbefore O O\nwith O O\ncrashing O O\n. O O\n\nBy O O\naccessing O O\nthe O O\nDataGridView Name Name\nfrom O O\nthe O O\nbackground O O\nthread O O\n, O O\nyou O O\nhad O O\ncross-thread O O\noperations O O\ngoing O O\non O O\n. O O\n\nI O O\nwould O O\nn't O O\ncall O O\n: O O\n\nThese O O\nwill O O\ntake O O\nprogressively O O\nlonger O O\nand O O\nlonger O O\nas O O\nthe O O\ndata O O\nset O O\ngets O O\nlarger O O\nand O O\nlarger O O\n. O O\n\nI O O\n've O O\nwritten O O\nan O O\napplication O O\nthat O O\nuses O O\na O O\nDataGridView Name Name\nto O O\ndisplay O O\nmp3 Name Name\nfile O O\ninformation O O\n. O O\n\nI O O\nset O O\nthe O O\nDataSource Name Name\nof O O\nthe O O\nDataGridView Name Name\nto O O\na O O\nDataTable Name Name\n: O O\n\nand O O\nthen O O\nsimply O O\nadd O O\nthe O O\nnew O O\ninformation O O\nto O O\nthe O O\nDataTable Name Name\n: O O\n\nThis O O\nautomatically O O\nupdates O O\nthe O O\nDataGridView Name Name\n. O O\n\nfind O O\n3rd O O\ntd Name Name\nin O O\ntr Name Name\nwhere O O\nclass O O\ncontains O O\nzebra O O\n\nThe O O\nphoto O O\nshows O O\nwhat O O\nI O O\n'm O O\nworking O O\nwith O O\n. O O\n\nFor O O\neach O O\nof O O\nthe O O\n4 O O\nanimals O O\n, O O\nI O O\nneed O O\nto O O\nselect O O\nthe O O\nassociated O O\nquantity O O\n( O O\nwhich O O\nis O O\nalways O O\nthe O O\n3rd O O\ntd Name Name\nin O O\nthe O O\ntr Name Name\n) O O\n. O O\n\nIn O O\nthe O O\nhtml Name Name\nbelow O O\n, O O\nyou O O\ncan O O\nsee O O\nzebra Name Name\nhas O O\nquantity O O\n1 Name Name\n, O O\nand O O\nlion Name Name\nhas O O\nquantity O O\n1 Name Name\n. O O\n\nI O O\nhave O O\nbeen O O\nunsuccessful O O\nfinding O O\nby O O\nclass O O\n. O O\n\nMaybe O O\nyou O O\ntell O O\nme O O\nwhy O O\n. O O\n\nIs O O\nit O O\nbecause O O\nof O O\nthe O O\nspace O O\nin O O\nthe O O\nstring Name Name\n? O O\n\nA O O\nsimple O O\nxpath Name Name\nwo O O\nn't O O\nwork O O\nbecause O O\nthe O O\ntr Name Name\ntags O O\nchange O O\ndepending O O\non O O\nuser O O\ninputs O O\non O O\nthe O O\nprior O O\npage Name Name\n. O O\n\nI O O\n've O O\nalso O O\ntried O O\nto O O\nselect O O\nby O O\nxpath Name Name\nwith O O\ncontains O O\nmethod O O\nto O O\nno O O\navail O O\n. O O\n\nMaybe O O\nI O O\n'm O O\njust O O\nnot O O\ndoing O O\nit O O\nright O O\n. O O\n\nYes O O\nyou O O\ncannot O O\nuse O O\nclassName Name Name\nlocator O O\nwhen O O\nthere O O\nis O O\na O O\nspace O O\nin O O\nthe O O\nName O O\ninstead O O\nyou O O\nhave O O\nto O O\nuse O O\ncssselector Name Name\nor O O\nxpath Name Name\n. O O\n\nline_item Name Name\nZebra Name Name\nare O O\ntwo O O\nclasses O O\nof O O\nthe O O\nsame O O\nWebElement Name Name\n. O O\n\nYou O O\ncan O O\nfind O O\nby O O\nclassName Name Name\nonly O O\nwith O O\none O O\nof O O\nthem O O\n\nIf O O\nyou O O\nwant O O\nall O O\nthe O O\nanimals O O\nyou O O\ncan O O\nuse O O\nline_item Name Name\nclass O O\n. O O\n\nThat O O\nwill O O\ngive O O\nyou O O\nall O O\nthe O O\nanimals O O\n\nanimals Name Name\nnow O O\nholds O O\nlist O O\nof O O\nthe O O\nfour O O\nelements O O\nwith O O\nclass O O\nline_item Name Name\n. O O\n\nTo O O\nget O O\nthe O O\nthird O O\n<td> Name Name\nin O O\neach O O\none O O\nyou O O\ncan O O\nuse O O\nthe O O\nWebElements Name Name\nin O O\nthe O O\nlist O O\n\nI O O\nunderstand O O\nthat O O\na O O\nservice O O\ncan O O\nrun O O\nin O O\ntwo O O\nmodes O O\n, O O\nstarted O O\nand O O\nbound O O\n. O O\n\nWhat O O\nI O O\ndo O O\nn't O O\nquite O O\nunderstand O O\nfrom O O\nthe O O\ndeveloper O O\ndocs O O\nor O O\nother O O\nquestions O O\non O O\nthis O O\nsite O O\n, O O\nis O O\nwhether O O\na O O\nservice O O\nrunning O O\nas O O\nboth O O\nstarted O O\nand O O\nbound O O\nwill O O\nexit O O\nwhen O O\nthe O O\nlast O O\ncomponent O O\nunbinds O O\nfrom O O\nit O O\n? O O\n\nIf O O\nsomething O O\ncalled O O\nstartService() Name Name\non O O\nthe O O\nService Name Name\n, O O\nit O O\nwill O O\nremain O O\nrunning O O\n, O O\nregardless O O\nof O O\nwhat O O\nbindService() Name Name\nand O O\nunbindService() Name Name\ncalls O O\nmay O O\nhave O O\ngone O O\non O O\n. O O\n\nEventually O O\n, O O\nAndroid Name Name\nwill O O\nstop O O\nthe O O\nservice O O\n, O O\nor O O\nthe O O\nuser O O\nwill O O\nkill O O\nthe O O\nservice O O\n, O O\nbut O O\nneither O O\nwill O O\nhappen O O\nimmediately O O\nupon O O\nthe O O\nlast O O\nunbindService() Name Name\n. O O\n\nExample O O\nbuild.gradle Name Name\n: O O\n\nMy O O\nplugin O O\n: O O\n\nMy O O\ncustom O O\ntask O O\n: O O\n\nI O O\nwant O O\nto O O\nchange O O\napplicationId Name Name\nbefore O O\nbuild O O\ntask O O\n. O O\n\nAs O O\nyou O O\ncan O O\nsee O O\n, O O\nI O O\ntried O O\nto O O\ndo O O\nit O O\nvia O O\nproperty O O\n, O O\nbut O O\nit O O\ndoes O O\nn't O O\nwork O O\n. O O\n\nHow O O\ncan O O\nI O O\nmanage O O\nthis O O\ncase O O\n? O O\n\nIt O O\ndoes O O\nnot O O\nwork O O\nbecause O O\nconfig Name Name\nis O O\nresolved O O\nduring O O\nconfiguration O O\nphase O O\nand O O\ntask O O\nis O O\nexecuted O O\nduring O O\nexecution O O\nphase O O\n( O O\nafter O O\n) O O\n. O O\n\nYou O O\ncan O O\nadd O O\nproperty O O\nin O O\nplugin O O\napply Name Name\nmethod O O\nas O O\nan O O\nalternative O O\n. O O\n\nI O O\nthink O O\nit O O\nshould O O\nalso O O\nwork O O\nin O O\ntask O O\nconstructor O O\n, O O\nbut O O\nI O O\n'm O O\nnot O O\n100% O O\nsure O O\n. O O\n\nIt O O\nlooks O O\nlike O O\na O O\nsimple O O\ntask O O\n, O O\nbut O O\nca O O\nn't O O\nget O O\nit O O\nworking O O\n. O O\n\nI O O\nneed O O\nto O O\nre-order O O\ndivs Name Name\nfor O O\ntablets O O\n, O O\nwhich O O\nare O O\n100% Name Name\nwidth Name Name\n. O O\n\nPlease O O\ntake O O\na O O\nlook O O\nat O O\nthe O O\nfollowing O O\nfiddle Name Name\nto O O\nsee O O\nwhat O O\nI O O\nmean O O\n. O O\n\nOriginal O O\nreference O O\n: O O\n\nhttp://getbootstrap.com/css/#grid-column-ordering O O\n\nThere O O\nis O O\na O O\nhack O O\naround O O\nthat O O\nif O O\nyou O O\ndo O O\nn't O O\nwant O O\nto O O\ndo O O\nit O O\nmobile Name Name\nfirst O O\n: O O\n\nIts O O\ndoable O O\nif O O\nyou O O\nthink O O\nmobile Name Name\nfirst O O\n. O O\n\nPlace O O\nthe O O\ndivs Name Name\nin O O\nthe O O\norder O O\nyou O O\nwant O O\nthem O O\nto O O\nappear O O\nin O O\nsmall O O\nviewports O O\nand O O\nthen O O\nreorder O O\nthem O O\nfor O O\nlarger O O\nviewports O O\n. O O\n\nI O O\nwas O O\nhaving O O\na O O\nlittle O O\nproblem O O\n. O O\n\nMy O O\nscript O O\nworks O O\nfine O O\nin O O\nLinux Name Name\nUbuntu Name Name\n\nWhen O O\nit O O\ncame O O\nto O O\nWindows Name Name\nI O O\nfell O O\nshort O O\n. O O\n\nmy O O\nscript O O\nuses O O\nimport Name Name\nargparse Name Name\nso O O\nI O O\nneed O O\nto O O\npass O O\narguments O O\nvia O O\ncmd Name Name\nbut O O\nI O O\nwas O O\ngetting O O\nerrors O O\n. O O\n\nI O O\nfigured O O\nout O O\nthe O O\nanswer O O\nwhile O O\ntyping O O\nthis O O\n. O O\n\nFor O O\nanyone O O\nlooking O O\nfor O O\nanswers O O\nyou O O\njust O O\ndo O O\nthis O O\n: O O\n\nFor O O\nme O O\nit O O\nwas O O\nsomething O O\nthat O O\nhad O O\nto O O\ndo O O\nwith O O\ntoying O O\nwith O O\narchives O O\n\nThis O O\naction O O\nwill O O\ncompress O O\ntest1.txt Name Name\nin O O\nArchive.zip Name Name\n\nI O O\nfeel O O\nstupid O O\nto O O\nthink O O\nthat O O\nthere O O\nis O O\na O O\nbig O O\ndifference O O\nbetween O O\ncommand Name Name\nline Name Name\nin O O\nWindows Name Name\nand O O\nLinux Name Name\nwhen O O\nhandling O O\npython Name Name\n. O O\n\nKeep O O\nin O O\nmind O O\nto O O\nknow O O\nwhere O O\nyour O O\narguments O O\nshould O O\nbe O O\n* O O\n\nI O O\nChanged O O\nthe O O\nplaces O O\nbetween O O\n-c Name Name\nand O O\nthe O O\nname O O\nof O O\nthe O O\narchive O O\nby O O\nmistake O O\n\nand O O\nI O O\nwas O O\ntyping O O\npython3 Name Name\ninstead O O\nof O O\npython Name Name\nfor O O\na O O\nwhile O O\nlike O O\nan O O\nidiot O O\n. O O\n\nSo O O\nthe O O\nbiggest O O\ndifference O O\nis O O\npython3 Name Name\nfor O O\nLinux Name Name\nand O O\npython Name Name\nfor O O\nWindows Name Name\n. O O\n\nIs O O\nthere O O\nanything O O\nelse O O\ndifferent O O\nbetween O O\nLinux Name Name\nand O O\nWindows Name Name\nwhen O O\nhandling O O\npython Name Name\nscripts O O\n? O O\n\nturned O O\nout O O\neverything O O\nis O O\nhere O O\n: O O\nhttps://docs.python.org/3.3/using/windows.html O O\n\nand O O\nhere O O\n: O O\nhttps://docs.python.org/3.3/using/unix.html O O\n\nAnyone O O\ninterested O O\ncheck O O\nthose O O\nlinks O O\nto O O\nget O O\na O O\nbetter O O\nidea O O\nthere O O\nwas O O\nno O O\nneed O O\nfor O O\nmy O O\nquestion O O\nafter O O\nall O O\n:( O O\n\nI O O\n'm O O\nhaving O O\na O O\nproblem O O\ndisplaying O O\nan O O\nerror O O\nmessage O O\nusing O O\nbeans Name Name\n. O O\n\nThis O O\nis O O\nwhat O O\ni O O\n'm O O\ntrying O O\nto O O\ndo O O\non O O\na O O\nlogin O O\npage O O\n: O O\n\nget O O\nemail O O\n, O O\npassword O O\nand O O\nrole O O\nof O O\na O O\nuser O O\nand O O\nusing O O\nbeans Name Name\ncheck O O\nit O O\nagainst O O\nthe O O\ndatabase O O\nfor O O\nvalidation O O\n. O O\n\nif O O\nin O O\ncase O O\nthere O O\nare O O\nany O O\nerrors O O\n, O O\nit O O\nis O O\nadded O O\nto O O\nthe O O\nerror O O\nbean Name Name\nand O O\ndisplayed O O\nto O O\nuser O O\n. O O\n\nCurrently O O\n, O O\ni O O\n'm O O\njust O O\ntesting O O\nif O O\nthe O O\nuser O O\nenters O O\nemail O O\nor O O\nnot O O\n. O O\n\nThe O O\nproblem O O\nthat O O\ni O O\n'm O O\ngetting O O\nis O O\n: O O\neverytime O O\ni O O\nturn O O\noff O O\ntomcat Name Name\nand O O\nrerun O O\nit O O\n, O O\nfirst O O\ntime O O\ni O O\ndont O O\nenter O O\nthe O O\nemail O O\nin O O\nthe O O\nemail O O\nfield O O\n, O O\nthe O O\nerror O O\nis O O\ndisplayed O O\n. O O\n\nAfter O O\nthat O O\nif O O\ni O O\nonce O O\nentered O O\na O O\nvalue O O\nin O O\nthe O O\nemail O O\nfield O O\n. O O\n\nThe O O\nerror O O\nmessage O O\nwill O O\nnever O O\nshow O O\nagain O O\n( O O\nofcourse O O\nwhen O O\ni O O\ndont O O\nenter O O\nemail O O\nin O O\nemail O O\nfield O O\n) O O\n\nHere O O\nis O O\nmy O O\ncode O O\n: O O\n\ndoLogin.jsp Name Name\n\nformError.java Name Name\n\nvalidate Name Name\nfunction O O\n\nI O O\n'm O O\nnew O O\nto O O\nBeans Name Name\nand O O\ncurrently O O\nlearning O O\n. O O\n\nI O O\ntried O O\nchanging O O\nthe O O\nfunction O O\nnames O O\nlike O O\naddGenError Name Name\ninstead O O\nof O O\nsetGenError Name Name\nand O O\nit O O\nthe O O\nbehavior O O\nwas O O\nthe O O\nsame O O\n. O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\nappreciated O O\n. O O\n\nThis O O\nis O O\nthe O O\nissue O O\n: O O\n\nwhile O O\nsending O O\nform O O\ndata O O\n, O O\ni O O\n'm O O\nusing O O\nthe O O\nbean Name Name\nid O O\n: O O\nloginFormData Name Name\nwhich O O\nis O O\nset O O\nto O O\nsession O O\nscope O O\n. O O\n\nAfter O O\nchanging O O\nit O O\nto O O\nrequest O O\n, O O\ni O O\ngot O O\nmy O O\ndesired O O\nfunctionality O O\n. O O\n\nChanged O O\ncode O O\n: O O\n\nI O O\nneed O O\nto O O\ncheck O O\na O O\nfolder O O\nfor O O\na O O\nfile O O\n, O O\nif O O\nit O O\nexists O O\ndelete O O\nit O O\nan O O\nreplace O O\nit O O\nwith O O\nan O O\nupdated O O\nversion O O\n, O O\nor O O\nif O O\nthe O O\nfile O O\ndoes O O\nn't O O\ndelete O O\nthen O O\nit O O\nwill O O\ncopy O O\nthe O O\nfile O O\nfrom O O\na O O\npath O O\ninto O O\nthe O O\nindividuals O O\npersonal O O\ndrive O O\n\nMy O O\nCode O O\n: O O\n\nWhat O O\nHappens O O\n: O O\n\nThe O O\ncode O O\nexecutes O O\nand O O\ndeletes O O\nthe O O\nexisting O O\nfile O O\nas O O\nexpected O O\n, O O\nbut O O\nit O O\nappears O O\nto O O\nbe O O\nfailing O O\non O O\nthe O O\ncopy O O\nand O O\npaste O O\npart O O\n. O O\n\nError O O\n: O O\n\nThe O O\ndebug O O\nthat O O\ncomes O O\nup O O\nis O O\n: O O\n\nBare O O\nbones O O\n: O O\n\nYou O O\nhave O O\nn't O O\nsaid O O\nwhich O O\nline O O\nis O O\nthrowing O O\nthe O O\nerror O O\n, O O\nbut O O\nI O O\nnoticed O O\nthat O O\nyou O O\ndo O O\nn't O O\nseem O O\nto O O\nhave O O\ninstantiated O O\na O O\nnew O O\nFileSystemObject Name Name\n: O O\n\nthen O O\nuse O O\nthe O O\nfso Name Name\nreference O O\nto O O\ncopy O O\nyour O O\nfile O O\n\nThe O O\nmethod O O\nabove O O\nused O O\n\" O O\nLate O O\nbinding O O\n\" O O\nto O O\ninterrogate O O\nthe O O\nregistry O O\nfor O O\nScripting.FileSystemObject Name Name\n\nYou O O\ncan O O\nalso O O\nuse O O\nearly O O\nbinding O O\nand O O\nreference O O\nthe O O\nMicrosoft Name Name\nScripting Name Name\nRuntime Name Name\ndirectly O O\nand O O\navoid O O\nthe O O\nuse O O\nof O O\nCreateObject Name Name\n\nThis O O\nis O O\ndetailed O O\nin O O\nthis O O\nStack Name Name\nOverflow Name Name\nanswer O O\n: O O\n\nhttps://stackoverflow.com/a/3236348/491557 O O\n\nI O O\nwas O O\ntrying O O\nto O O\ngo O O\nabout O O\nmaking O O\nthe O O\nactions O O\nfor O O\na O O\nUITableViewCell Name Name\noverlap O O\nthe O O\ncontent O O\nof O O\nthe O O\ncell O O\n, O O\nlike O O\nin O O\nthe O O\nNational Name Name\nGeographic Name Name\napp O O\n: O O\n\ntable Name Name\nview O O\n\ntable Name Name\nview O O\nwhen O O\nswiped O O\n\nI O O\ntried O O\nusing O O\na O O\nlistener O O\non O O\nthe O O\ncontentView Name Name\nof O O\nthe O O\ncell O O\nto O O\ntrack O O\nthe O O\nframe O O\nand O O\nkeep O O\nit O O\nconstant O O\n, O O\nbut O O\nI O O\nwas O O\nunable O O\nto O O\nget O O\nthat O O\nto O O\nwork O O\n( O O\nalthough O O\nit O O\n's O O\npossible O O\nit O O\nwould O O\n, O O\nI O O\n'm O O\nkinda O O\nnew O O\nto O O\niOS Name Name\n) O O\n. O O\n\nIf O O\nanyone O O\nhas O O\nany O O\nsuggestions O O\nfor O O\ncreating O O\na O O\nsimilar O O\neffect O O\n, O O\nthey O O\nwould O O\nbe O O\nmuch O O\nappreciated O O\n! O O\n\nu O O\ncan O O\nmake O O\nyour O O\nown O O\ncustom O O\ncell O O\nand O O\nadd O O\na O O\ndelete O O\nbutton Name Name\nand O O\nswipe O O\ngestures O O\nto O O\nmake O O\nlike O O\nbutton Name Name\noverlap O O\nthe O O\ncontents O O\nof O O\nthe O O\ncell O O\nfor O O\nexample O O\n, O O\ntry O O\nit O O\nout O O\nyourself O O\n, O O\nfirst O O\ncreate O O\na O O\nsample O O\nproject O O\nwith O O\nsingle O O\nview O O\napp O O\n, O O\nand O O\nproceed O O\n\nsubclass O O\nthe O O\ntabview Name Name\ncell O O\nwith O O\nxib Name Name\noption O O\nselected O O\nand O O\nname O O\nit O O\nsomething O O\nlike O O\nCustomCell Name Name\n, O O\nand O O\nin O O\nCustomCell.swift Name Name\nclass O O\npast O O\nbelow O O\ncode O O\n\nand O O\nmake O O\nsure O O\nthe O O\ntableview Name Name\ncell O O\nheight Name Name\nto O O\nbe O O\nof O O\n100pt Name Name\nand O O\nin O O\nview O O\ncontroller O O\nset O O\nup O O\na O O\ntableview Name Name\nin O O\nstoryboard Name Name\nwith O O\ndatasource O O\nand O O\ndelegate O O\nand O O\nimplement O O\nthe O O\nrequired O O\ndelegate O O\nand O O\ndatasource O O\nmethods O O\n\nBear O O\nwith O O\nme O O\n, O O\nthis O O\nis O O\nmy O O\nfirst O O\ntime O O\ncoding O O\nor O O\nusing O O\nstackoverflow Name Name\n. O O\n\nI O O\n've O O\nbeen O O\nsearching O O\nthrough O O\nthe O O\nGoogle Name Name\ndocumentation O O\nand O O\nvarious O O\nsearch Name Name\nengines Name Name\nlooking O O\nfor O O\nan O O\nanswer O O\nand O O\nsomeone O O\ntold O O\nme O O\nto O O\ntry O O\nhere O O\n. O O\n\nI O O\nhave O O\na O O\nshared O O\nspreadsheet Name Name\nin O O\nGoogle Name Name\ndriver Name Name\nand O O\nI O O\n'm O O\ntrying O O\nto O O\nwrite O O\na O O\nscript O O\nthat O O\nprevents O O\nany O O\nother O O\nuser O O\nbut O O\nmyself O O\nfrom O O\nadding O O\n, O O\ndeleting O O\nor O O\nupdating O O\na O O\ncolumn Name Name\n. O O\n\nThis O O\nis O O\nwhat O O\nI O O\nhave O O\nso O O\nfar O O\n: O O\n\nI O O\nca O O\nn't O O\nseem O O\nto O O\ncheck O O\nthe O O\nevent Name Name\ntype O O\nfor O O\nthose O O\nthree O O\ncases O O\n.. O O\n. O O\nAlso O O\n, O O\nonce O O\nI O O\nknow O O\nthat O O\nI O O\ncan O O\ncheck O O\nthe O O\nevent Name Name\nfor O O\nadd O O\n, O O\nupdate O O\nor O O\nmove O O\n, O O\nhow O O\ndo O O\nI O O\nstop O O\nthe O O\nuser O O\nfrom O O\nactually O O\ndoing O O\nit O O\n? O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\nmuch O O\nappreciated O O\n. O O\n\nSorry O O\nagain O O\nfor O O\nbeing O O\nso O O\nlost O O\n. O O\n\nIn O O\na O O\nshared O O\nspreadsheet Name Name\nto O O\nprevents O O\nany O O\nother O O\nuser O O\nbut O O\nmyself O O\nfrom O O\nadding O O\n, O O\ndeleting O O\nor O O\nupdating O O\na O O\ncolumn Name Name\nyou O O\ndo O O\nn't O O\nneed O O\na O O\nscript O O\n. O O\n\nWhen O O\nyou O O\nsay O O\nprevent O O\nthem O O\nupdating O O\na O O\ncolumn Name Name\nthat O O\nimplies O O\nyou O O\ndo O O\nn't O O\nwant O O\nthem O O\nto O O\nhave O O\nwrite O O\naccess O O\n. O O\n\nEither O O\nthis O O\nis O O\nto O O\na O O\nparticular O O\ncolumn Name Name\nor O O\nto O O\nany O O\ncolumn Name Name\n. O O\n\nYou O O\ncan O O\nset O O\nprotection O O\nto O O\none O O\nof O O\nview O O\nonly O O\n, O O\ncomment O O\nonly O O\nto O O\n; O O\n\nthe O O\nentire O O\nspreadsheet Name Name\n\nindividual O O\nsheets Name Name\nor O O\n\nareas O O\nwithin O O\na O O\nsheet Name Name\n\nIf O O\nyou O O\ndo O O\nany O O\nof O O\nthese O O\nthey O O\nwill O O\nnot O O\nbe O O\nable O O\nto O O\ndelete O O\nthe O O\ncolumn Name Name\neither O O\n. O O\n\nReading O O\nyour O O\ncode O O\n, O O\nthe O O\nline O O\n; O O\n\nImplies O O\nyou O O\nwant O O\nto O O\ncheck O O\nif O O\nthey O O\nhave O O\nmodified O O\nyour O O\nsheet Name Name\non O O\na O O\nrow Name Name\nbasis O O\n. O O\n\nTo O O\nprevent O O\nthem O O\ninserting O O\nor O O\ndeleting O O\na O O\nrow Name Name\n, O O\n\ncreate O O\na O O\nblank O O\ncolumn Name Name\n\nprotect O O\nthe O O\ncolumn Name Name\nfrom O O\nediting O O\n\nhide O O\nthe O O\ncolumn Name Name\n\nIf O O\nanyone O O\ntries O O\nto O O\nadd O O\nor O O\ndelete O O\na O O\nrow Name Name\n, O O\nthis O O\nwill O O\nspan O O\nthe O O\nhidden O O\nprotected O O\ncolumn O O\nand O O\nthey O O\nwill O O\nget O O\nan O O\nerror O O\nmessage O O\ntelling O O\nthem O O\nthis O O\n. O O\n\nNow O O\nthe O O\nonly O O\nonEdit(e) Name Name\nyou O O\nwill O O\ndetect O O\nwith O O\nbe O O\nthe O O\nediting O O\nof O O\na O O\ncell Name Name\nor O O\ngroup O O\nof O O\ncells Name Name\n. O O\n\nNote O O\nthat O O\nadding/deleting O O\nrows Name Name\nwill O O\nnot O O\ntrigger O O\nonEdit() Name Name\n, O O\nthey O O\nwill O O\ntrigger O O\nonChange() Name Name\n. O O\n\nWithin O O\nthis O O\nthere O O\nis O O\nspecific O O\nway O O\nto O O\ntell O O\nwhether O O\na O O\nrow O O\nhas O O\nbeen O O\ndeleted O O\nor O O\ninserted O O\n. O O\n\nonEdit(e) Name Name\nwill O O\nallow O O\nyou O O\nto O O\nlook O O\nat O O\nthe O O\nrange O O\nthat O O\nhas O O\nbeen O O\naffected O O\n, O O\nyou O O\ncan O O\ncross O O\ncheck O O\nthis O O\nwith O O\nyour O O\nspreadsheets Name Name\nparameters O O\n, O O\n\nIt O O\nwas O O\nnot O O\nclear O O\nto O O\nme O O\nform O O\nyour O O\nquestion O O\nand O O\ncode O O\nwhat O O\nexactly O O\nyou O O\nwanted O O\nto O O\ndo O O\n. O O\n\nIf O O\nI O O\nhave O O\nmisunderstood O O\nplease O O\nexplain O O\nand O O\nI O O\nwill O O\namend O O\nmy O O\nhelp O O\n. O O\n\nAssuming O O\nthis O O\nis O O\nstill O O\nof O O\ninterest O O\nand O O\nnot O O\ntoo O O\nlate O O\na O O\nreply O O\n. O O\n\nI O O\nhave O O\na O O\ndatabase O O\n: O O\n\nhttp://d.pr/86DH+ O O\n\nI O O\nwant O O\nto O O\ndivide O O\nall O O\nnumbers O O\nin O O\nprice O O\ncolumn Name Name\nwith O O\n1.2 Name Name\nat O O\nonce O O\n. O O\n\nIt O O\nis O O\npossible O O\n? O O\n\nUse O O\nthis O O\n: O O\n\nI O O\nhave O O\na O O\nAngular Name Name\ndirective O O\nto O O\nbuild O O\na O O\ntable Name Name\nwith O O\nbootstrap Name Name\ntable Name Name\n. O O\n\nThis O O\ntable Name Name\nhas O O\na O O\n\" O O\nformatter O O\n\" O O\nfor O O\neach O O\ncolumn Name Name\n, O O\nto O O\nrender O O\nthe O O\nHTML Name Name\ndata O O\nof O O\na O O\ncolumn Name Name\n, O O\nrow Name Name\nby O O\nrow Name Name\n. O O\n\nThe O O\nformatter O O\nmust O O\nreturn O O\na O O\nHTML Name Name\n, O O\nand O O\nin O O\nmy O O\ncase O O\n, O O\nmy O O\nHTML Name Name\nis O O\nreturning O O\ncontaining O O\na O O\nngClick Name Name\n. O O\n\nBut O O\nthis O O\nngClick Name Name\nis O O\nn't O O\nworking O O\n, O O\nbecause O O\nangular Name Name\nhas O O\nn't O O\ncompiled O O\nit O O\n. O O\n\nHow O O\ncan O O\nI O O\nwatch/monitor O O\ntable Name Name\nDOM O O\nchanges O O\nto O O\nforce O O\nangular Name Name\nto O O\nprocesss/compile O O\nit O O\ndirectives O O\nafter O O\nthe O O\nchanges O O\n? O O\n\nI O O\nwas O O\ntrying O O\nthis O O\n, O O\nbut O O\nwithout O O\nsuccess O O\n: O O\n\nAnother O O\npossible O O\nproblem O O\nis O O\nthat O O\nI O O\ncannot O O\ncompile O O\nmore O O\nthan O O\n1 O O\ntime O O\nan O O\nelement O O\n. O O\n\nIf O O\nI O O\ndo O O\nthis O O\n, O O\nfor O O\nexample O O\n, O O\na O O\nng-click Name Name\nwill O O\nbe O O\nexecuted O O\ntwice O O\n. O O\n\nI O O\nhave O O\na O O\nworking O O\ncode O O\nwith O O\na O O\nDatagrid Name Name\nas O O\nthe O O\nmain O O\ncontrol O O\n. O O\n\nI O O\nused O O\na O O\nDatagrid Name Name\nas O O\nit O O\nis O O\nvery O O\neasy O O\nto O O\nbind O O\ndata O O\ninto O O\nit O O\n. O O\n\nMy O O\ncode O O\nrequires O O\nmoving O O\ncells Name Name\ninto O O\nother O O\ncolumns Name Name\nso O O\nI O O\nalways O O\nneed O O\nto O O\ncheck O O\nwhich O O\ncell Name Name\nI O O\nam O O\non O O\nwhen O O\nthe O O\nmouse Name Name\nis O O\nclicked O O\n, O O\nas O O\nwell O O\nas O O\nwhen O O\nit O O\nis O O\nreleased O O\n. O O\n\nMy O O\ncurrent O O\nimplementation O O\nis O O\nworking O O\nas O O\nexpected O O\n. O O\n\nHowever O O\n, O O\nthe O O\nway O O\nI O O\ncheck O O\nfor O O\nthe O O\nrow Name Name\nand O O\ncell Name Name\nis O O\nthrough O O\nthe O O\nVIEW Name Name\n's O O\ncode-behind O O\n. O O\n\nMy O O\nproject O O\nleader O O\nis O O\nlooking O O\nfor O O\nan O O\nalternative O O\nto O O\nhave O O\nthis O O\ndone O O\nthru O O\nbinding O O\nas O O\nhe O O\nwants O O\nto O O\nkeep O O\nthe O O\nVIEW Name Name\n's O O\ncode-behind O O\nas O O\nclean O O\nas O O\npossible O O\n. O O\n\nI O O\nhave O O\ntried O O\nall O O\nI O O\ncould O O\nbut O O\nI O O\nca O O\nn't O O\nfind O O\nproperties O O\nwhich O O\nwould O O\ngive O O\nme O O\nboth O O\nthe O O\ncells Name Name\ncolumn Name Name\nand O O\nrow Name Name\nindex O O\n. O O\n\nPlease O O\nsee O O\nthe O O\ncode O O\nbelow O O\n. O O\n\n( O O\nOmitted O O\nsome O O\nof O O\nthe O O\ncolumns Name Name\nas O O\nit O O\nwould O O\nexceed O O\nthe O O\nlimit O O\n. O O\n) O O\n\nthe O O\nXAML Name Name\n: O O\n\nthe O O\ncode-behind O O\n\nEDIT O O\n\nI O O\nproceeded O O\nto O O\nmultibind O O\nthe O O\ndatagridcell Name Name\n's O O\ncolumn Name Name\nand O O\ndatacontext Name Name\nproperties O O\nas O O\nparameters O O\nfor O O\nmy O O\ncommand Name Name\n. O O\n\nAn O O\noption O O\nI O O\nstarted O O\nbefore O O\nbut O O\nset O O\naside O O\ndue O O\nto O O\ntime O O\nconstraints O O\n. O O\n\nInstead O O\nof O O\nlooking O O\nfor O O\nthe O O\ndatagridrow Name Name\n's O O\nindex O O\n, O O\nI O O\nused O O\nthe O O\ndatacontext Name Name\nto O O\ncompare O O\nto O O\nmy O O\nviewmodel Name Name\n. O O\n\nDid O O\nthe O O\ntrick O O\n. O O\n\nAlternative O O\nwould O O\nbe O O\nto O O\nwork O O\nwith O O\nproperties O O\nDataGrid Name Name\nalready O O\nprovides O O\nto O O\nyou O O\nand/or O O\nto O O\ndefine O O\nfew O O\nother O O\nattached O O\nproperties O O\nsupporting O O\nyou O O\nto O O\nget O O\nthe O O\njob O O\ndone O O\n. O O\n\nI O O\nwould O O\ntry O O\nto O O\nwork O O\nwith O O\nproperties O O\nlike O O\nSelectedItem Name Name\n, O O\nSelectedValue Name Name\n, O O\nCurrentItem Name Name\n, O O\nCurrentCell Name Name\n. O O\n\nFuthermore O O\nif O O\na O O\nbehavior O O\ncouldnt O O\nbe O O\nhandled O O\nwith O O\nthose O O\nproperties O O\nfrom O O\nabove O O\nI O O\nwould O O\ncreate O O\nan O O\nattached O O\nproperty O O\nand O O\nuse O O\na O O\nstyle O O\nfor O O\ncells Name Name\nwith O O\ntriggers O O\nchanging O O\nthe O O\nattached O O\nproperty O O\n. O O\n\nBinding O O\nwill O O\ntransmit O O\nall O O\nthe O O\nchanges O O\nfrom O O\nthe O O\nattached O O\nproperty O O\nto O O\nthe O O\nViewModel Name Name\n. O O\n\nIn O O\nthe O O\nend O O\nyou O O\nwill O O\nhave O O\njust O O\ncommunication O O\nbetween O O\nViewModel Name Name\nand O O\nView Name Name\n. O O\n\nHere O O\nare O O\nfew O O\nlinks O O\n: O O\n\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid%28v=vs.110%29.aspx O O\n\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid.currentitem%28v=vs.110%29.aspx O O\n\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selectedvalue%28v=vs.110%29.aspx O O\n\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selecteditem%28v=vs.110%29.aspx O O\n\nThey O O\nshould O O\nbe O O\nall O O\nbindable O O\n\nEdit O O\n: O O\n\nLink O O\nto O O\nMSDN Name Name\nMultiBinding Name Name\nPage O O\n: O O\n\nhttp://msdn.microsoft.com/en-us/library/system.windows.data.multibinding%28v=vs.110%29.aspx O O\n\nThe O O\ngeneral O O\nway O O\nto O O\nachieve O O\nyour O O\nrequirement O O\nis O O\nto O O\nimplement O O\nan O O\nICommand Name Name\ntype O O\nAttached O O\nProperty O O\nfor O O\neach O O\nevent O O\nthat O O\nyou O O\nwant O O\nto O O\nreplace O O\n. O O\n\nThe O O\nbasic O O\nidea O O\nis O O\nthis. O O\n. O O\nadd O O\nan O O\nICommand Name Name\nAttached O O\nProperty O O\nwith O O\na O O\nPropertyChangedCallback Name Name\nhandler O O\n. O O\n\nIn O O\nthis O O\nhandler O O\n( O O\nwhich O O\nwill O O\nbe O O\ncalled O O\nwhen O O\nan O O\nICommand Name Name\nis O O\ndata O O\nbound O O\nto O O\nthis O O\nproperty O O\n) O O\n, O O\nattach O O\na O O\nhandler O O\nto O O\nthe O O\nevent O O\nthat O O\nyou O O\nwant O O\nto O O\nhandle O O\n. O O\n\nThen O O\n, O O\nwhen O O\nthat O O\nevent O O\nis O O\ncalled O O\n, O O\njust O O\nexecute O O\nthe O O\nICommand Name Name\ninstance O O\n. O O\n\nSo O O\nyou O O\ncan O O\nhandle O O\nthe O O\nevent O O\nin O O\nyour O O\nview O O\nmodel O O\nvia O O\nthe O O\nICommand Name Name\ninstance O O\n. O O\n\nHere O O\nis O O\nan O O\nexample O O\nusing O O\nthe O O\nPreviewKeyDown Name Name\nevent O O\n: O O\n\n@Value Name Name\nhas O O\ngot O O\nthe O O\ncorrect O O\nvalue O O\nwhen O O\nused O O\nin O O\ninsert O O\nstatement O O\n. O O\n\nBut O O\n, O O\n@AID Name Name\n( O O\nwhich O O\nis O O\nset O O\nto O O\n@Value Name Name\n) O O\nalways O O\ngives O O\n0 Name Name\nwhen O O\nthis O O\nstored O O\nprocedure O O\nis O O\ncalled O O\nusing O O\nphp Name Name\n. O O\n\nWhat O O\nam O O\nI O O\ndoing O O\nwrong O O\nhere O O\n? O O\n\nIt O O\nit O O\nsomething O O\nto O O\ndo O O\nwith O O\ncalling O O\nstored O O\nprocedure O O\ninside O O\nanother O O\nstored O O\nprocedure O O\n? O O\n\nI O O\nhave O O\na O O\nsubscribe O O\nbutton Name Name\nin O O\nthe O O\nabout O O\nus O O\nsection O O\nin O O\nmy O O\napp O O\n. O O\n\nOn O O\npressing O O\n, O O\na O O\nsmall O O\nwindow Name Name\nappears O O\nasking O O\nfor O O\nemail O O\nfrom O O\na O O\nuser O O\n. O O\n\nOnce O O\nthe O O\nuser O O\nenters O O\nhis O O\nemail O O\nwhere O O\ncould O O\nI O O\nstore O O\nall O O\nthe O O\nemails O O\nfrom O O\nthe O O\nusers O O\n? O O\n\nHow O O\ndoes O O\nemail O O\nsubscription O O\nis O O\nimplemented O O\nin O O\nAndroid Name Name\n? O O\n\nI O O\n'm O O\ntotally O O\nnew O O\nto O O\nit O O\n, O O\nso O O\nplease O O\nbe O O\ndetailed O O\n\nI O O\nthink O O\nyou O O\nwould O O\nneed O O\na O O\nserver Name Name\nwhere O O\nyou O O\ncan O O\nstore O O\nin O O\na O O\nDB O O\nthe O O\nemails O O\nthe O O\nclients Name Name\n( O O\ni.e O O\n. O O\nthe O O\napps O O\n) O O\nsend O O\nyou O O\n. O O\n\nOr O O\nsince O O\nit O O\n's O O\nsuch O O\na O O\nsimple O O\nthing O O\nthat O O\nyou O O\nhave O O\nto O O\nstore O O\n( O O\na O O\nstring Name Name\n) O O\n, O O\nwhat O O\nyou O O\ncould O O\ndo O O\nis O O\nget O O\nthem O O\nto O O\nsend O O\nan O O\nemail O O\nto O O\nyou O O\n, O O\nand O O\nthen O O\nvoila O O\n, O O\nyou O O\nhave O O\nthe O O\naddresses O O\nyou O O\nneed O O\n. O O\n\nEDIT O O\n: O O\n\nTry O O\nparse O O\n, O O\nit O O\n's O O\na O O\ncloud O O\nserver Name Name\nfree O O\nand O O\neasy O O\nto O O\nuse O O\n. O O\n\nI O O\nhave O O\nan O O\nexcel Name Name\nsheet O O\n\" O O\nTest.xlsx Name Name\n\" O O\nin O O\nwhich O O\nsome O O\nof O O\nthe O O\ncell Name Name\nvalues O O\nhas O O\nbeen O O\nreferenced O O\nfrom O O\nanother O O\nexcel Name Name\nsheet O O\nusing O O\nformula O O\n\"='C:[Sample.xlsx]Sheet1'!B14\" Name Name\n. O O\n\nI O O\ndid O O\nopen O O\nSmaple.xlsx Name Name\n, O O\nchange O O\nthe O O\nvalue O O\nof O O\nthe O O\ncell Name Name\nB14 Name Name\nin O O\nsheet Name Name\n1 Name Name\n, O O\nsave O O\nit O O\nand O O\nclose O O\n. O O\n\nBut O O\nI O O\ndid O O\nnot O O\nsee O O\nthe O O\nvalues O O\nin O O\nthe O O\nTest.xlsx Name Name\nupdate O O\nunless O O\nI O O\ndouble O O\nclick O O\non O O\nthe O O\ncell Name Name\nwhere O O\nthe O O\nformula O O\nhas O O\nbeen O O\nreferenced O O\nto O O\n. O O\n\nI O O\nhave O O\ntried O O\nwith O O\n\" O O\nExcel Name Name\nOptions-> O O\nAdvanced O O\n->General O O\nand O O\nun-checking O O\nAsk O O\nto O O\nupdate O O\nautomatic O O\nlink O O\n\" O O\nCan O O\nsomeone O O\nhelp O O\nme O O\nwith O O\nthe O O\nissue O O\n? O O\n\ni O O\nwant O O\nto O O\nuse O O\na O O\nvaiable O O\nin O O\nthe O O\nmain Name Name\nclass O O\nfrom O O\nReveiveSMS.class Name Name\n. O O\n\nThis O O\nis O O\nmy O O\ncode O O\nof O O\nReceiveSMS.class Name Name\nand O O\ni O O\nwant O O\nto O O\nuse O O\nmessageBody Name Name\nin O O\nthe O O\nmain Name Name\n. O O\n\nHelp O O\nme O O\nhow O O\ncan O O\ni O O\ndo O O\nit O O\n. O O\n\nthanks O O\n\nYou O O\ncan O O\nput O O\nmessageBody Name Name\nin O O\nSharedPreferences Name Name\n. O O\n\nIn O O\nReceiveSMS Name Name\nclass O O\n: O O\n\nIn O O\nyour O O\nmain Name Name\nclass O O\n: O O\n\nI O O\nrecently O O\nswitched O O\npython Name Name\ndistributions O O\nto O O\nAnaconda Name Name\nfrom O O\nContinuum O O\nAnalytics O O\n. O O\n\nAfter O O\ninstalling O O\nPython Name Name\n3.3 Name Name\n, O O\nI O O\ncreated O O\na O O\nbuild O O\nsystem O O\nfor O O\nuse O O\nwith O O\nSublime Name Name\n( O O\n3) Name Name\n: O O\n\nIt O O\nruns O O\nscripts O O\nfine O O\n, O O\nexcept O O\nfor O O\nthe O O\nfact O O\nthat O O\noutput O O\nis O O\nonly O O\nprinted O O\nupon O O\ncompletion O O\nof O O\nthe O O\nbuild O O\n. O O\n\nHow O O\ncan O O\nI O O\nenable O O\nnormal O O\n( O O\nlive O O\n) O O\nprinting O O\n? O O\n\nIt O O\n's O O\npossible O O\nthat O O\nyou O O\nneed O O\nto O O\nrun O O\nthe O O\nscript O O\nin O O\n\" O O\nunbuffered O O\n\" O O\nmode O O\nvia O O\nthe O O\n-u Name Name\nflag O O\n. O O\n\nThis O O\nsolution O O\nis O O\nn't O O\nspecific O O\nto O O\nAnaconda Name Name\n, O O\nbut O O\nmay O O\nstill O O\nbe O O\nthe O O\nissue O O\n. O O\n\nI O O\n've O O\nmodified O O\na O O\nVBA Name Name\nmacro O O\nof O O\nMS Name Name\nOutlook Name Name\nthat O O\nsomeone O O\nin O O\nour O O\norganization O O\nwas O O\nusing O O\n. O O\n\nI O O\nwant O O\nto O O\nhave O O\nit O O\nsigned O O\nwith O O\nour O O\norganization O O\n's O O\ncertificate O O\n. O O\n\nNot O O\na O O\nself-cert O O\n. O O\n\nNot O O\nmy O O\npersonal O O\ncert O O\n. O O\n\nA O O\ncert O O\nset O O\nup O O\nby O O\nthe O O\norganization O O\nfor O O\njust O O\nthis O O\npurpose O O\n. O O\n\nWe O O\n'll O O\ncall O O\nit O O\n\" O O\nMy_Org_VBA_Macro_Cert Name Name\n\" O O\n. O O\n\nMy_Org_VBA_Macro_Cert Name Name\nhas O O\nbeen O O\ncreated O O\n. O O\n\nIt O O\nhas O O\nbeen O O\ninstalled O O\nin O O\nvia O O\nthe O O\nMMC Name Name\ncertificate O O\nsnap-in O O\ninto O O\nthe O O\nsame O O\nlocation O O\nthat O O\nmy O O\npersonal O O\ndigital O O\nsignature O O\ncerts O O\nare O O\nlocated O O\n. O O\n\nAfter O O\nrebooting O O\n, O O\nI O O\nopen O O\nup O O\nthe O O\nVBA Name Name\nproject O O\nand O O\ngo O O\nto O O\nTools->Digital O O\nSignature O O\n. O O\n\nI O O\npress O O\nthe O O\nChoose O O\nbutton Name Name\nbut O O\nonly O O\nmy O O\nown O O\ndigital O O\nsignature O O\ncerts O O\nshow O O\nup O O\nin O O\nthe O O\nlist O O\nto O O\nchoose O O\nfrom O O\n. O O\n\nMy_Org_VBA_Macro_Cert Name Name\ndoes O O\nnot O O\nshow O O\nup O O\n. O O\n\nAre O O\nthere O O\ncertain O O\nsettings O O\nor O O\nvalues O O\nyou O O\nhave O O\nto O O\nset O O\nwhen O O\nyou O O\ncreate O O\nthe O O\nCert O O\nthat O O\ndetermine O O\nwhether O O\nit O O\nwill O O\nshow O O\nup O O\nin O O\nthe O O\nlist O O\nof O O\ncerts O O\nto O O\nchoose O O\nfrom O O\n? O O\n\nI O O\ndo O O\nn't O O\nknow O O\nenough O O\nabout O O\ncreating O O\na O O\ncert O O\nto O O\nbe O O\nmore O O\nspecific O O\non O O\nthis O O\npoint O O\n. O O\n\nMicrosoft Name Name\nVBA Name Name\nversion O O\n7.1 Name Name\n\nMicrosoft Name Name\nOutlook Name Name\n2013 Name Name\n\nAll O O\nthe O O\narticles O O\nI O O\n've O O\nfound O O\ndeal O O\nwith O O\nself O O\ncert O O\nor O O\nonly O O\ncover O O\nhow O O\nto O O\ndo O O\nthe O O\nsigning O O\nwith O O\na O O\ncert O O\nthat O O\nshows O O\nup O O\nin O O\nthe O O\nlist O O\n. O O\n\nThey O O\nall O O\ngloss O O\nover O O\nhow O O\nto O O\ninstall O O\nthe O O\ncert O O\nso O O\nit O O\nshows O O\nup O O\nin O O\nthe O O\nlist O O\nand O O\nwhat O O\nvalues O O\nit O O\nhas O O\nto O O\nhave O O\nto O O\ndo O O\nso O O\n. O O\n\nI O O\nwish O O\nto O O\nreplace O O\nall O O\ndivs Name Name\nwith O O\nthe O O\nclass O O\ndata-item Name Name\nwith O O\nthe O O\nattribute O O\ndata-variable O O\nof O O\nthe O O\nitem O O\nwith O O\nthis O O\nclass O O\n\nIE O O\n: O O\n\nShould O O\nbecome O O\n\nCode O O\nI O O\nwant O O\nto O O\nuse O O\n: O O\n\nwhere O O\nel Name Name\nis O O\na O O\njquery Name Name\nobject O O\ncontaining O O\nthe O O\nhtml Name Name\nI O O\nwish O O\nto O O\nparse O O\n\nDEMO O O\n\nUPD O O\n: O O\nYou O O\ncan O O\nuse O O\nfunction O O\nas O O\nargument O O\nto O O\nreplaceWith Name Name\n( O O\nthx O O\n@Barmar O O\n) O O\n\nThe O O\nargument O O\nto O O\nreplaceWith Name Name\ncan O O\nbe O O\na O O\nfunction O O\n. O O\n\nWhen O O\nit O O\n's O O\ncalled O O\n, O O\nthis O O\nwill O O\nbe O O\nthe O O\nelement O O\nthat O O\n's O O\nbeing O O\nreplaced O O\n. O O\n\nThe O O\nreturn O O\nvalue O O\nwill O O\nbe O O\nused O O\nas O O\nthe O O\nreplacement O O\n. O O\n\nI O O\nkept O O\ngetting O O\nthis O O\nissue O O\nafter O O\ninstalling O O\nthis O O\npackage O O\nbelow O O\n\nhttps://github.com/vinkla/instagram O O\n\ninto O O\nmy O O\nLaravel Name Name\n5.1 Name Name\nproject O O\n. O O\n\nI O O\nfollowed O O\neverything O O\nin O O\nthe O O\ninstruction O O\n. O O\n\nI O O\nam O O\non O O\nMac Name Name\nOS Name Name\nX Name Name\n, O O\nPHP Name Name\n7.1 Name Name\n, O O\nLaravel Name Name\n5.1 Name Name\n\nDid O O\nI O O\nforget O O\nsomething O O\n? O O\n\nHow O O\nwould O O\none O O\ngo O O\nabout O O\nand O O\ndebug O O\nthis O O\nfurther O O\n? O O\n\nI O O\n'm O O\nopen O O\nto O O\nany O O\nsuggestions O O\nat O O\nthis O O\nmoment O O\n. O O\n\nAny O O\nhints/suggestions O O\n/ O O\nhelps O O\non O O\nthis O O\nbe O O\nwill O O\nbe O O\nmuch O O\nappreciated O O\n! O O\n\nYou O O\ncould O O\nchange O O\napp Name Name\n\\Exceptions\\Handler.php Name Name\nto O O\nnot O O\nhave O O\nthe O O\ntype O O\ndeclaration O O\nException Name Name\nand O O\nhandle O O\nsome O O\nlogic O O\nwithin O O\nit O O\nto O O\nconvert O O\nthe O O\nError O O\nto O O\nan O O\nException Name Name\n. O O\n\nIt O O\nlooks O O\nlike O O\nthis O O\nis O O\na O O\nknown O O\nissue O O\nin O O\nlaravel Name Name\n5.2 Name Name\n<= O O\nwith O O\nphp Name Name\n7 Name Name\n. O O\nhttps://github.com/laravel/framework/issues/9650 O O\n\nfrom O O\n: O O\n\nto O O\n: O O\n\nYou O O\nwill O O\nmost O O\nlikely O O\nneed O O\nto O O\ndo O O\nthe O O\nsame O O\nthing O O\nwith O O\nthe O O\nHandler O O\nrender Name Name\nmethod O O\n. O O\n\nIt O O\nseems O O\nto O O\nbe O O\na O O\nbug O O\nin O O\nLaravel Name Name\n. O O\n\nDo O O\nyou O O\nhave O O\nthe O O\nlast O O\nrelease O O\nof O O\nLaravel Name Name\n5.1 Name Name\n? O O\n\nFor O O\nhelping O O\ndebug O O\n, O O\nyou O O\nmight O O\ngo O O\nto O O\nthe O O\nvendor/Illuminate/Foundation/Bootstrap/HandleExceptions O O\n@handleException O O\nand O O\nadd O O\n\ndd($e) Name Name\nat O O\nthe O O\nfirst O O\nline O O\nof O O\nmethod O O\n. O O\n\nEx O O\n: O O\n\nWe O O\nhave O O\ndeveloped O O\nWord O O\nPuzzle O O\nGame O O\nfor O O\nandroid Name Name\n. O O\n\nThe O O\nsize O O\nis O O\ngreater O O\nthan O O\n20 O O\nMB O O\nbecause O O\nwe O O\nhave O O\ndeveloped O O\ngame O O\nwith O O\nthe O O\nhelp O O\nof O O\nUnity Name Name\ngame O O\nengine O O\n. O O\n\nEven O O\nblank O O\nproject O O\nwill O O\ntake O O\napprox O O\n10 O O\nMB O O\nfor O O\nAPK Name Name\nin O O\nUnity Name Name\n. O O\n\nYour O O\nadvise O O\nwould O O\nbe O O\nhelpful O O\n. O O\n\nHave O O\nyou O O\nchecked O O\nthis O O\n? O O\n\nhttps://docs.unity3d.com/Manual/ReducingFilesize.html O O\n\nI O O\n'm O O\nafraid O O\nyou O O\nwo O O\nn't O O\nfind O O\nmore O O\n. O O\n\nThere O O\nwill O O\nalways O O\nbe O O\na O O\nminimal O O\nsize O O\n, O O\neven O O\nfor O O\nan O O\nempty O O\nproject O O\n, O O\nbecause O O\nyou O O\n're O O\nembedding O O\nmono Name Name\n, O O\nunity Name Name\nengine O O\n, O O\netc O O\n.. O O\n. O O\n\nIf O O\nyou O O\nwant O O\ntotal O O\ncontrol O O\n, O O\nthe O O\nquestion O O\nyou O O\nshould O O\nask O O\nyourself O O\nis O O\n: O O\n\n\" O O\nDo O O\nI O O\nreally O O\nneed O O\nUnity Name Name\nfor O O\na O O\nword O O\npuzzle O O\n? O O\n\" O O\n\nIf O O\nyour O O\ngame O O\nis O O\nmade O O\nmostly O O\nwith O O\nscripts O O\n, O O\nyou O O\ncould O O\nmaybe O O\nconvert O O\nit O O\nto O O\na O O\nnative O O\napp O O\n? O O\n\nTry O O\nuse O O\nthe O O\ndocumentation O O\nManual O O\non O O\nReducing O O\nthe O O\nfile O O\nsize O O\nof O O\nyour O O\nbuild O O\n. O O\n\nAlso O O\nthis O O\nforum O O\npost O O\ncould O O\nhelp O O\nyou O O\n. O O\n\nOtherwise O O\na O O\nsimple O O\nGoogle Name Name\nsearch O O\nwill O O\ngive O O\nyou O O\nmany O O\nresults O O\n. O O\n\nIn O O\nmy O O\nusers O O\ncontroller O O\nI O O\nam O O\ntrying O O\nto O O\nput O O\nin O O\nplace O O\nthe O O\nremember O O\nme O O\nfunctionality O O\non O O\nlogin O O\n. O O\n\nIT O O\nseems O O\npretty O O\nsimple O O\nset O O\na O O\ncookie O O\nlook O O\nfor O O\nthe O O\ncookie O O\nwhen O O\nthe O O\nuser O O\nvisits O O\nthe O O\nlogin O O\npage O O\nand O O\nif O O\nit O O\nexists O O\nlog O O\nthem O O\nin O O\n. O O\n\nHowever O O\n, O O\nCake Name Name\nis O O\nnot O O\nsaving O O\nthe O O\ncookie O O\n, O O\nat O O\nleast O O\nnot O O\nthat O O\nI O O\ncan O O\nsee O O\n, O O\nand O O\nwhen O O\nI O O\nrevisit O O\nthe O O\npage O O\nI O O\nam O O\nnot O O\nauto O O\nlogged O O\nin O O\n. O O\n\nTo O O\ntest O O\nthis O O\nI O O\nhave O O\nthe O O\nfollowing O O\ncode O O\n: O O\n\nNow O O\nright O O\nafter O O\nI O O\nset O O\nthis O O\ncookie O O\nI O O\ncan O O\nplace O O\na O O\n$this->cookie->read('Auth.User') Name Name\n; Name Name\nand O O\nget O O\nthe O O\nvalue O O\nof O O\nthis O O\ncookie O O\n, O O\nhowever O O\nit O O\ndoes O O\nnot O O\nshow O O\nup O O\nin O O\nthe O O\nbrowsers O O\n( O O\nChrome Name Name\n, O O\nFireFox Name Name\n) O O\ncookie O O\nlist Name Name\n. O O\n\nIf O O\nI O O\nuse O O\nplain O O\nPHP Name Name\ncookies O O\n, O O\nvia O O\nsetcookie() Name Name\nI O O\ncan O O\nsee O O\nthe O O\ncookie O O\nbut O O\nof O O\ncourse O O\nthe O O\nCake Name Name\nCookie O O\nread O O\ndoes O O\nnot O O\nwork O O\nwith O O\nthose O O\ncookies O O\n. O O\n\nWhat O O\nshould O O\nI O O\nlook O O\nfor O O\nto O O\nresolve O O\nthis O O\nissue O O\n? O O\n\nI O O\ndid O O\nfind O O\na O O\nwork O O\naround O O\n, O O\nbut O O\nI O O\ndo O O\nn't O O\nlike O O\nit O O\nbecause O O\nit O O\njust O O\nbypasses O O\nthe O O\nframework O O\n. O O\n\nI O O\nfound O O\nout O O\nhow O O\ncake Name Name\nis O O\ncreating O O\nthe O O\ncookies O O\nand O O\nfor O O\nthese O O\ncookies O O\nI O O\nuse O O\ncakes Name Name\ncookie O O\ncreation O O\nalgorithm O O\nin O O\nmy O O\ncode O O\nand O O\nuse O O\nsetcookie() Name Name\nto O O\ndo O O\nthe O O\nsetting O O\n. O O\n\nJust O O\nfor O O\nanyone O O\nelse O O\nthat O O\nmay O O\nwant O O\nor O O\nneed O O\nto O O\nuse O O\nthe O O\nwork O O\naround O O\n: O O\n\nNow O O\nyou O O\ncan O O\nuse O O\ncakes Name Name\ncookie O O\ncomponent O O\nto O O\nread O O\nthe O O\nvalue O O\n. O O\n\nThere O O\nis O O\nmore O O\nyou O O\nhave O O\nto O O\nchange O O\nif O O\nyour O O\nvalue O O\nis O O\nan O O\narray Name Name\n, O O\nread O O\nthrough O O\nthe O O\ncookie.php Name Name\ncode O O\nto O O\nsee O O\nwhat O O\nyou O O\nwould O O\nneed O O\nto O O\ndo O O\n. O O\n\nAlso O O\nI O O\nleft O O\nout O O\nthe O O\nencryption O O\nthat O O\ntoo O O\ncan O O\nbe O O\nfound O O\nin O O\nthe O O\ncookie.php Name Name\nand O O\nyour O O\napps O O\nsettings O O\n. O O\n\nFor O O\nthis O O\nissue O O\nI O O\ndo O O\nnot O O\nneed O O\narray Name Name\nvalues O O\nsince O O\nI O O\nam O O\nonly O O\nstore O O\nthe O O\nusers O O\nID Name Name\n. O O\n\nand O O\nI O O\ndid O O\nput O O\nin O O\nplace O O\nencryption O O\nunlike O O\nabove O O\n. O O\n\nI O O\nwould O O\nstill O O\nlike O O\nto O O\nknow O O\nwhy O O\nthe O O\ncomponent O O\nis O O\nnot O O\nworking O O\nthough O O\n. O O\n\nThe O O\nfollowing O O\nlogin O O\naction O O\nworks O O\nwell O O\nfor O O\nme O O\n: O O\n\nDoes O O\nit O O\nwork O O\non O O\nyour O O\nside O O\n? O O\n\nMy O O\nRails Name Name\napp O O\nbegan O O\nreturning O O\nfunky O O\nvalidation O O\nerror O O\nmessages O O\nof O O\nthis O O\nform O O\nupon O O\ncreate/save O O\nof O O\na O O\nmodel O O\n. O O\n\n{ Name Name\n{ Name Name\ncount Name Name\n} Name Name\n} Name Name\nerrors O O\nprohibited O O\nthis O O\n{ Name Name\n{ Name Name\nmodel Name Name\n} Name Name\n} Name Name\nfrom O O\nbeing O O\nsaved O O\n\nThere O O\nwere O O\nproblems O O\nwith O O\nthe O O\nfollowing O O\nfields O O\n: O O\n\n{ Name Name\n{ Name Name\nattribute Name Name\n} Name Name\n} Name Name\n{ Name Name\n{ Name Name\nmessage Name Name\n} Name Name\n} Name Name\n{ Name Name\n{ Name Name\nattribute Name Name\n} Name Name\n} Name Name\n{ Name Name\n{ Name Name\nmessage Name Name\n} Name Name\n} Name Name\n{ Name Name\n{ Name Name\nattribute Name Name\n} Name Name\n} Name Name\n{ Name Name\n{ Name Name\nmessage Name Name\n} Name Name\n} Name Name\n{ Name Name\n{ Name Name\nattribute Name Name\n} Name Name\n} Name Name\n{ Name Name\n{ Name Name\nmessage Name Name\n} Name Name\n} Name Name\n\nHas O O\nanyone O O\nelse O O\nexperienced O O\nanything O O\nlike O O\nthis O O\n? O O\n\nThanks O O\n\nYou O O\nprobably O O\nupgraded O O\nRuby Name Name\nto O O\na O O\nversion O O\nthat O O\ndoes O O\nnot O O\nwork O O\nwell O O\nwith O O\nyour O O\nversion O O\nof O O\nRails Name Name\n. O O\n\nI O O\nthink O O\nthat O O\nif O O\nyou O O\nuse O O\nRuby Name Name\n1.9 Name Name\nyou O O\nhave O O\nto O O\nat O O\nleast O O\nuse O O\nRails Name Name\n2.3.9 Name Name\nif O O\nI O O\n'm O O\nnot O O\nmistaken O O\n. O O\n\nHere O O\nis O O\na O O\nchangelog O O\nfor O O\nRails Name Name\n2.3.9 Name Name\n: O O\nruby-on-rails-2-3-9-released Name Name\n\nTo O O\nme O O\n, O O\nthe O O\nabove O O\ncode O O\nlooks O O\nnormal O O\n. O O\n\nHowever O O\n, O O\nI O O\n'm O O\nnew O O\nto O O\nC++ Name Name\nso O O\nI O O\nmay O O\nbe O O\nmissing O O\nsome O O\nnuance O O\n. O O\n\nI O O\n'm O O\ngetting O O\na O O\nbunch O O\nof O O\ncompiler Name Name\nerrors O O\nfrom O O\nit O O\n, O O\nsuch O O\nas O O\n: O O\n\nand O O\n\nWhat O O\ngives O O\n! O O\n\nThe O O\nerror O O\nis O O\nprobably O O\nin O O\nLudoCore/Singleton.h Name Name\nor O O\nsomething O O\nelse O O\nincluded O O\nearlier O O\n. O O\n\nMake O O\nsure O O\nyour O O\nclass O O\ndefinitions O O\nhave O O\n; Name Name\nsemicolons O O\nafter O O\nthem O O\nand O O\nall O O\nthat O O\n. O O\n\nQuick O O\ntest O O\n: O O\ncomment O O\nout O O\nthe O O\n#include Name Name\nand O O\nstick O O\na O O\ntemplate Name Name\n<class Name Name\nC> Name Name\nclass Name Name\nSingleton Name Name\n; Name Name\npredeclaration O O\nthere O O\ninstead O O\n. O O\n\nIf O O\nthe O O\ncompiler Name Name\nnow O O\ncomplains O O\nabout O O\nincomplete O O\ntypes O O\n, O O\nI O O\n'm O O\nright O O\n, O O\nand O O\nif O O\nnot O O\n, O O\npost O O\nmore O O\ndetails O O\n. O O\n\nHave O O\na O O\nlook O O\nin O O\nthe O O\nother O O\nheader O O\n( O O\nLudoCore/Singleton.h Name Name\n) O O\n. O O\n\nThe O O\nsecond O O\nerror O O\nimplies O O\nthat O O\nthe O O\nerror O O\nis O O\nbefore O O\nthe O O\nclass O O\nLudoTimer Name Name\ndeclaration O O\nat O O\nthe O O\ntop O O\n. O O\n\nMy O O\nguess O O\nis O O\nthat O O\nSingleton.h Name Name\ndefines O O\na O O\nclass O O\n, O O\nand O O\nthere O O\n's O O\na O O\nmissing O O\n' Name Name\n; Name Name\n' Name Name\nafter O O\nthat O O\nclass O O\ndefinition O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nget O O\nthe O O\ntotal O O\namount O O\nof O O\nVRAM Name Name\nmy O O\ngame O O\nis O O\ncurrently O O\nusing O O\n. O O\n\nI O O\nwant O O\nto O O\ndisplay O O\nthis O O\nin O O\nmy O O\ndebug O O\ninformation O O\n. O O\n\nWhen O O\nI O O\nwas O O\nusing O O\nthe O O\nVisual Name Name\nStudio Name Name\nGraphics Name Name\nAnalyzer Name Name\nI O O\ngot O O\nan O O\nidea O O\n. O O\n\nI O O\nfigured O O\nthat O O\nI O O\ncould O O\nget O O\nthe O O\namount O O\nof O O\nVRAM Name Name\nused O O\nby O O\nadding O O\nthe O O\nsize O O\nof O O\neach O O\nof O O\nthe O O\ngraphic O O\nobjects O O\nas O O\nseen O O\nin O O\nthe O O\nGraphics Name Name\nObject Name Name\nTable Name Name\n. O O\n\nUnfortunately O O\nI O O\nhave O O\nno O O\nidea O O\nhow O O\nto O O\nget O O\neach O O\nof O O\nthose O O\nobjects O O\n. O O\n\nIs O O\nthere O O\na O O\nsimple O O\nway O O\nto O O\nget O O\nthese O O\n? O O\n\nI O O\nactually O O\nfound O O\nan O O\neasier O O\nway O O\nto O O\ndo O O\nthis O O\n: O O\n\n.. O O\n. O O\n\nThis O O\ngets O O\nthe O O\ncurrently O O\nused O O\nVRAM Name Name\nfrom O O\nthe O O\ndefault O O\n( O O\nID Name Name\n0 Name Name\n) O O\nadapter Name Name\nand O O\nconverts O O\nit O O\nto O O\nmegabytes O O\n. O O\n\nNote O O\n: O O\nThis O O\ndoes O O\nrequire O O\nthe O O\nuse O O\nof O O\nthe O O\nwindows Name Name\n10 Name Name\nSDK Name Name\n\ni O O\nam O O\nusing O O\nccavenue Name Name\nin O O\nmy O O\nprestashop Name Name\nstore O O\nVersion O O\n1.2.5.0 Name Name\n. O O\n\nMy O O\nproblem O O\nis O O\nafter O O\nsuccessful O O\ncredit O O\ncard O O\ntransaction O O\n, O O\nwhen O O\ncoming O O\nback O O\nto O O\nwebsite O O\n, O O\nshopping O O\ncart O O\nitems O O\nare O O\nnot O O\nclearing O O\nand O O\nalso O O\norders O O\nare O O\nnot O O\nupdating O O\n. O O\n\nI O O\nam O O\nusing O O\nCCavenue Name Name\nPayment Name Name\nGateway Name Name\ndeveloped O O\nby O O\nbluezeal.in Name Name\n. O O\n\nIn O O\nmerchant O O\naccount O O\nsettings O O\nI O O\nhave O O\ngiven O O\nReturn O O\nPage O O\nURL O O\nas O O\nhttp://myshop Name Name\n/modules/ccavenue/validation.php Name Name\nwhere O O\nI O O\nam O O\nupdating O O\nmy O O\norder O O\ntable Name Name\n. O O\n\nAnd O O\nin O O\nccavenue.php Name Name\npage O O\nI O O\nhave O O\ngiven O O\nmy O O\nreturn O O\nurl O O\nas O O\n$Url Name Name\n= Name Name\n' Name Name\nhttp://'.htmlspecialchars($_SERVER['HTTP_HOST' Name Name\n) Name Name\n, Name Name\nENT_COMPAT Name Name\n, Name Name\n' Name Name\nUTF-8 Name Name\n' Name Name\n) Name Name\n.__PS_BASE_URI__ Name Name\n. Name Name\n' Name Name\nmodules/ccavenue/validation.php Name Name\n' Name Name\n. O O\n\nAfter O O\nsuccessful O O\ntransaction O O\nccavenue O O\nis O O\nnot O O\nreturning O O\nanything O O\nto O O\nmy O O\nvalidation.php Name Name\npage O O\n. O O\n\nIe O O\n, O O\nAuthDesc Name Name\n, O O\nOrder_Id Name Name\netc O O\n\nThis O O\nproblem O O\ngot O O\nsolved O O\nafter O O\nregenerating O O\nkey O O\nin O O\nmerchant O O\naccount O O\nsettings. O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nempty O O\na O O\ndirectory O O\nusing O O\nthe O O\nrm Name Name\nprogram O O\n. O O\n\nI O O\ncapture O O\na O O\npath O O\ninto O O\na O O\nvariable O O\nand O O\ngo O O\nto O O\nuse O O\nthis O O\nlike O O\nso O O\n: O O\n\nThere O O\ncertainly O O\nis O O\nsuch O O\na O O\ndirectory O O\nat O O\nthe O O\npath O O\n. O O\n\nWhen O O\nI O O\ntry O O\nthis O O\nmanually O O\n, O O\nwithout O O\na O O\nvariable O O\n, O O\nit O O\nworks O O\nas O O\nexpected O O\n. O O\n\nYou O O\n're O O\nusing O O\nfancy O O\nquotes O O\nin O O\nyour O O\nassignment O O\nof O O\nexport_folder_path Name Name\n. O O\n\nThese O O\nslanted O O\nUnicode O O\nquotes O O\nare O O\nnot O O\nrecognized O O\nas O O\nquotes O O\nby O O\nbash Name Name\n, O O\nand O O\nare O O\ntherefore O O\ntreated O O\nas O O\nliterals O O\n. O O\n\nThis O O\nis O O\nusually O O\ndue O O\nto O O\ncopypasting O O\nfrom O O\nblogs O O\n, O O\nor O O\nusing O O\nan O O\neditor Name Name\nor O O\nOS O O\nnot O O\nintended O O\nfor O O\nprogrammers O O\nsuch O O\nas O O\nWord Name Name\nor O O\nmacOS Name Name\n. O O\n\nReplace O O\nthem O O\nwith O O\nregular O O\nASCII O O\ndouble O O\nquotes O O\nin O O\nyour O O\nscript O O\n, O O\nand O O\ndisable O O\n\" O O\nsmart O O\nquotes O O\n\" O O\nin O O\nyour O O\neditor Name Name\nor O O\nOS O O\n. O O\n\nIf O O\nyou O O\nare O O\nsure O O\nabout O O\nremoving O O\nthe O O\ndirectory O O\nalong O O\nwith O O\nits O O\ncontents O O\n, O O\nI O O\nwould O O\nadvise O O\nthis O O\n: O O\n\nThe O O\ndouble O O\nquotes O O\nwill O O\ntake O O\ncare O O\nof O O\nany O O\nspaces O O\nin O O\nthe O O\nname O O\nof O O\nthe O O\ndirectory O O\n. O O\n\nHad O O\na O O\nbit O O\nof O O\na O O\n\" O O\nis O O\nthis O O\nreal O O\nlife O O\nmoment O O\n\" O O\n. O O\n\nWhy O O\nare O O\nwe O O\nnaming O O\nmutators O O\nwith O O\nget O O\nand O O\nset O O\nprefixes O O\n: O O\n\nIt O O\nwould O O\njust O O\nas O O\neasy O O\nand O O\nunderstandable O O\nto O O\njust O O\ndo O O\n\nmyMember Name Name\n( O O\nmyMember Name Name\nMember Name Name\n) O O\n\nas O O\nsetMyMember Name Name\nand O O\ngetMyMember Name Name\n\nIs O O\nthere O O\na O O\nhistorical O O\nreason O O\nwhy O O\nJava Name Name\nhas O O\nthis O O\nstyle O O\n? O O\n\nThe O O\nget* O O\nand O O\nset* O O\nstyle O O\nof O O\nnaming O O\nis O O\nspecified O O\nin O O\nthe O O\nJavaBeans Name Name\nspecification O O\n, O O\nand O O\nsome O O\nlibraries O O\nusing O O\nreflection O O\nexpect O O\nthis O O\nstyle O O\nto O O\nbe O O\nused O O\n. O O\n\nFor O O\nexample O O\n, O O\nJackson Name Name\nmapper Name Name\ncan O O\nserialize O O\na O O\njava Name Name\nobject O O\nusing O O\nthe O O\nget/setters O O\nto O O\nJSON Name Name\nwithout O O\nany O O\nadditional O O\nannotations O O\n; O O\nif O O\nyou O O\nuse O O\na O O\ndifferent O O\nnaming O O\nstyle O O\n, O O\nyou O O\nhave O O\nto O O\ntell O O\nit O O\nwhere O O\nyour O O\nproperties O O\nare O O\n. O O\n\nNote O O\nthat O O\nsome O O\nother O O\nprogramming O O\nlanguages O O\nuse O O\ndifferent O O\nstyles O O\n. O O\n\nPerl Name Name\nlibraries O O\n, O O\nfor O O\nexample O O\n, O O\noften O O\nuse O O\na O O\n->someProperty() Name Name\ngetter O O\nand O O\n->someProperty($newValue) Name Name\nsetter O O\n. O O\n\nI O O\nam O O\nfollowing O O\nthe O O\nBasic O O\nSingle-Row O O\nTile O O\nSource O O\nCollection O O\nexample O O\nwith O O\nthe O O\nsame O O\nconfigurations O O\nand O O\ntile O O\nsources O O\nas O O\nmentioned O O\nin O O\nthe O O\nexample O O\n. O O\n\nI O O\nam O O\nnow O O\ntrying O O\nto O O\nadd O O\noverlays Name Name\non O O\nthe O O\nfirst O O\nand O O\nsecond O O\nimage Name Name\nbut O O\nhaving O O\ntrouble O O\ndoing O O\nit O O\n. O O\n\nThe O O\nfirst O O\noverlay Name Name\nshould O O\nhave O O\nbeen O O\npositioned O O\non O O\ntop O O\nof O O\nthe O O\nfirst O O\nimage Name Name\nand O O\nthe O O\nsecond O O\noverlay Name Name\nshould O O\nhave O O\nbeen O O\nplaced O O\non O O\nthe O O\nsecond O O\nimage Name Name\nbut O O\nits O O\nnot O O\nhappening O O\nthat O O\nway. O O\n. O O\n\nI O O\nam O O\nadding O O\nthe O O\noverlays Name Name\ncollection O O\nto O O\nthe O O\ntileSources Name Name\ncollection O O\n. O O\n\nAre O O\nthe O O\noverlays Name Name\nnot O O\nindependent O O\nfor O O\ndifferent O O\npages O O\n? O O\n\nAlso O O\n, O O\nI O O\nget O O\nthe O O\nbelow O O\nerror O O\nin O O\nconsole Name Name\nafter O O\nadding O O\nthe O O\noverlays O O\n, O O\nI O O\ndo O O\nnot O O\nunderstand O O\nhow O O\nI O O\ncan O O\nuse O O\nTiledImage.imageToViewportRectangle Name Name\nin O O\nsuch O O\nbasic O O\ninitialization O O\nof O O\nthe O O\nplugin Name Name\n. O O\n\n. O O\n\nCodepen Name Name\nexample O O\nURL O O\n: O O\nhttps://codepen.io/hussainb/pen/QQPPvL O O\n\nCodepen Name Name\nCode O O\n: O O\n\nhtml Name Name\n: O O\n\ncss Name Name\n: O O\n\nJavascript Name Name\n: O O\n\nLooks O O\nlike O O\nthis O O\nis O O\na O O\nbug O O\nwith O O\nOpenSeadragon Name Name\n! O O\n\nHere O O\n's O O\nthe O O\nissue O O\nticket O O\n: O O\n\nhttps://github.com/openseadragon/openseadragon/issues/1412 O O\n\nYou O O\ncan O O\nwork O O\naround O O\nit O O\nby O O\nstoring O O\nyour O O\noverlays Name Name\nseparately O O\nand O O\nadding O O\nthem O O\nafter O O\nthe O O\nimages Name Name\nhave O O\nopened O O\n, O O\nsomething O O\nlike O O\nso O O\n( O O\nassuming O O\nyou O O\n've O O\nalready O O\ncreated O O\na O O\nviewer Name Name\n) O O\n: O O\n\nYou O O\ncan O O\nsee O O\nthis O O\nin O O\naction O O\nhere O O\n: O O\n\nhttps://codepen.io/iangilman/pen/aqgzJZ O O\n\nSome O O\ndata O O\nI O O\nhave O O\nto O O\nplot O O\nhave O O\ncoordinates O O\nsuch O O\nas O O\n( Name Name\n20 Name Name\n, Name Name\n0 Name Name\n) Name Name\n, O O\n( Name Name\n10 Name Name\n, Name Name\n0 Name Name\n) Name Name\n, O O\netc O O\n.. O O\n. O O\nBasically O O\nsome O O\nof O O\nthe O O\npoints O O\nbelong O O\nto O O\nthe O O\nx-axis O O\n. O O\n\nThe O O\nproblem O O\nis O O\n, O O\nthese O O\npoints O O\nare O O\nhidden O O\nby O O\nthe O O\naxis O O\n; O O\ni.e O O\n. O O\nthe O O\nmarkers O O\nare O O\nbehind O O\nthe O O\nline O O\nand O O\ntherefore O O\ncannot O O\nbe O O\nseen O O\nproperly O O\n. O O\n\nHere O O\nis O O\nan O O\nexample O O\nof O O\nmy O O\nfigure O O\n: O O\nhttp://i.stack.imgur.com/FNcob.png O O\n\nDoes O O\nanybody O O\nhave O O\nan O O\nidea O O\nto O O\nsolve O O\nthis O O\nproblem O O\n? O O\n\nI O O\nam O O\nrunning O O\nout O O\nof O O\nidea O O\n.. O O\n. O O\n\nThanks O O\n. O O\n\nViktor O O\n\nMatplotlib Name Name\n\" O O\nsnaps O O\n\" O O\nplot O O\nlimits O O\nto O O\n\" O O\nwhole O O\n\" O O\n( O O\nfactors O O\nof O O\n2 Name Name\n, O O\n5 Name Name\n, O O\n10 Name Name\n, O O\n100 Name Name\n, O O\netc O O\n) O O\nnumbers O O\n, O O\nby O O\ndefault O O\n. O O\n\nThis O O\noften O O\nmeans O O\nthat O O\nyour O O\ndata O O\nmay O O\nwind O O\nup O O\non O O\nthe O O\nboundary O O\nof O O\nthe O O\nplot O O\n. O O\n\nax.margins Name Name\nallows O O\nyou O O\nto O O\nadd O O\na O O\npadding O O\nfactor O O\nbefore O O\nthis O O\nautoscaling O O\nfor O O\nthe O O\nplot O O\nis O O\ncalculated O O\n. O O\n\nIt O O\n's O O\na O O\nquick O O\nway O O\nto O O\navoid O O\nthe O O\nproblem O O\nof O O\npoints O O\non O O\nthe O O\nplot O O\nboundary O O\n. O O\n\nAs O O\na O O\nquick O O\nexample O O\nof O O\nthe O O\nproblem O O\n: O O\n\nAnd O O\nan O O\neasy O O\nsolution O O\n: O O\n\nI O O\nhave O O\na O O\ntable Name Name\nof O O\ndata O O\nthat O O\ngoes O O\nquite O O\nsome O O\ntime O O\nback O O\n, O O\nbut O O\nI O O\nonly O O\nwant O O\nto O O\nresults O O\nin O O\nmy O O\nquery O O\nfor O O\nthe O O\nlast O O\n13 O O\nweeks O O\n. O O\n\nThere O O\nis O O\na O O\ndate O O\ncolumn Name Name\nin O O\nthat O O\ntable Name Name\n. O O\n\nI O O\ncan O O\nuse O O\n\nto O O\nget O O\nthe O O\ndate O O\nof O O\n13 O O\nweeks O O\nback O O\nas O O\na O O\nseparate O O\nquery O O\n- O O\nbut O O\nI O O\nam O O\nhaving O O\ntrouble O O\nlinking O O\nthat O O\ninto O O\nthe O O\ninitial O O\nselect O O\nto O O\nonly O O\nreturn O O\nme O O\nthe O O\nlast O O\n13 O O\nweeks O O\nof O O\ndata O O\n. O O\n\nI O O\nhave O O\nused O O\nthat O O\nquery O O\nas O O\nthe O O\ndata O O\nshould O O\nrefresh O O\nevery O O\nday O O\nto O O\ngo O O\nback O O\n13 O O\nweeks O O\nto O O\nthat O O\ndate O O\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nI O O\ncan O O\ndo O O\nthat O O\n? O O\n\nThanks O O\nin O O\nadvance O O\n\nI O O\n'm O O\na O O\nbit O O\nconfused O O\non O O\nwhat O O\nyour O O\nissue O O\nis O O\n. O O\n\nYou O O\nshould O O\nbe O O\nable O O\nto O O\nuse O O\nthe O O\ndateadd() Name Name\nin O O\nyour O O\nwhere Name Name\nclause O O\n: O O\n\nThis O O\nshould O O\nbe O O\nwhat O O\nyou O O\nare O O\nlooking O O\nfor O O\n: O O\n\nI O O\nwant O O\nto O O\nbuild O O\na O O\nspecific O O\nnodejs Name Name\nas O O\na O O\nstatic O O\nlibrary O O\nwithout O O\nsome O O\ninternal O O\nmodule O O\nlike O O\nchild_process Name Name\ndns Name Name\netc O O\n. O O\n\nIs O O\nthere O O\na O O\nconfigurable O O\nway O O\nto O O\ngo O O\nabout O O\nthis O O\n? O O\n\nRemove O O\nthe O O\nmodules O O\nyou O O\ndo O O\nn't O O\nwant O O\nfrom O O\nnode.gyp Name Name\n, O O\nremove O O\nthe O O\n.js Name Name\nfiles O O\nfrom O O\nthe O O\nlib Name Name\nfolder O O\n, O O\nremove O O\nthem O O\nfrom O O\nthe O O\nbuiltinLibs Name Name\narray Name Name\nin O O\nlib/internal/module.js Name Name\nthen O O\nbuild O O\nit O O\n. O O\n\nBe O O\naware O O\nthat O O\nthese O O\nmodules O O\nare O O\nused O O\nin O O\ntests O O\nand O O\nbenchmarks O O\n, O O\nand O O\nfor O O\nexample O O\nwith O O\nchild_proccess Name Name\n, O O\nin O O\nlib/internal/v8_prof_polyfill.js Name Name\nand O O\nlib/internal/cluster/master.js Name Name\n\nLet O O\nme O O\ncommence O O\nby O O\nstating O O\nmy O O\nobjective O O\n: O O\nI O O\nam O O\nattempting O O\nto O O\ncompare O O\ntwo O O\n13-bit O O\nintegers Name Name\n: O O\n> Name Name\n, O O\n< Name Name\n, O O\nand O O\n= Name Name\n; O O\nI O O\nhave O O\nto O O\ndo O O\nthis O O\ncalculation O O\ntrillions O O\nof O O\ntimes O O\n, O O\nso O O\nit O O\nis O O\nimperative O O\nthat O O\nI O O\noptimize O O\nit O O\nas O O\nmuch O O\nas O O\npossible O O\n. O O\n\nMy O O\nprogram O O\ncurrently O O\nutilizes O O\nPython Name Name\n2.7 Name Name\nand O O\npyopencl Name Name\nto O O\nachieve O O\nthis O O\ncalculation O O\n. O O\n\nI O O\nam O O\naveraging O O\nabout O O\n800 O O\nGFlops O O\nout O O\nof O O\nmy O O\nATI Name Name\nRadeon Name Name\n6870 Name Name\nwhich O O\nis O O\nfine O O\nfor O O\nnow O O\n. O O\n\nSo O O\nhere O O\nis O O\nmy O O\nquestion O O\n: O O\nIf O O\ninstead O O\nof O O\ncaring O O\nout O O\nthe O O\n<, Name Name\n>, Name Name\nand O O\n= Name Name\noperators O O\non O O\n4 O O\nbyte O O\nfloats Name Name\n(as O O\nI O O\nam O O\ndoing O O\nnow), O O\nI O O\nwrote O O\nbitwise O O\nfunctions O O\nto O O\nhandle O O\nthe O O\n<, Name Name\n> Name Name\n, O O\nand O O\n= Name Name\n, O O\nand O O\nI O O\nwas O O\nable O O\nto O O\nprocess O O\n2 O O\n- O O\n13 O O\nbits O O\nobjects O O\nat O O\na O O\ntime O O\n, O O\nwould O O\nthis O O\nincrease O O\nmy O O\nspeed O O\n? O O\n\nOr O O\ndoes O O\nC Name Name\nalready O O\nhave O O\nthe O O\nmost O O\nefficient O O\nway O O\nof O O\nfinding O O\n<, Name Name\nand O O\n> Name Name\n, O O\nand O O\n= Name Name\n( O O\nobviously O O\n) O O\nfor O O\nfloats Name Name\n? O O\n\nI O O\nHave O O\na O O\nmodels O O\nlike O O\nthis O O\n: O O\n\nthere O O\nis O O\nsome O O\nquery O O\nthat O O\ni O O\nwant O O\nthe O O\norm O O\nform O O\n: O O\n\nand O O\nat O O\nlast O O\ndo O O\nu O O\nknow O O\nany O O\ngood O O\nrefrence O O\nfor O O\norm O O\n\nthx O O\nfor O O\nhelp O O\n\nI O O\n'm O O\nassuming O O\nthe O O\ngroup Name Name\nby Name Name\nis O O\nfor O O\nordering O O\n. O O\n\nIf O O\nyou O O\nreally O O\nwant O O\ngroup_by Name Name\nlook O O\nat O O\naggregates O O\nand O O\nannotate O O\nin O O\ndjango Name Name\n. O O\n\nMy O O\nguess O O\nof O O\nwhat O O\nyou O O\nare O O\nlooking O O\nfor O O\nis O O\n: O O\n\n1 O O\n: O O\nGet O O\nthe O O\nperson O O\nrecord O O\n- O O\nselect Name Name\nperson_name Name Name\nfrom Name Name\nPerson Name Name\n\n2 O O\n: O O\nselect Name Name\n* Name Name\nfrom Name Name\nPerson Name Name\n, Name Name\nCar Name Name\nwhere Name Name\ncar_owner Name Name\n= Name Name\nperson_id Name Name\n\nGet O O\nthe O O\ncars Name Name\nbelonging O O\nto O O\nthe O O\nperson Name Name\n\n3 O O\n: O O\nselect Name Name\n* Name Name\nfrom Name Name\nPerson Name Name\n, Name Name\nCar Name Name\ngroup_by(person_name) Name Name\n\nGet O O\nlist Name Name\nof O O\ncars Name Name\nsorted O O\nby O O\nowner Name Name\n\n4 O O\n: O O\nselect Name Name\n* Name Name\nfrom Name Name\nPerson Name Name\n, Name Name\nCar Name Name\nwhere Name Name\nname Name Name\nlike Name Name\n%x% Name Name\ngroup_by(person_name) Name Name\nhaving Name Name\ncar_id Name Name\n>= Name Name\n2 Name Name\n\nList Name Name\nof O O\ncars Name Name\nwith O O\nsearch O O\ncriteria O O\n\nCars Name Name\nand O O\ntheir O O\nOwners Name Name\n\nHere O O\n's O O\nwhat O O\nI O O\nintend O O\nto O O\ndo O O\n. O O\n\nRequest O O\nhttps://reqres.in/api/users/2 O O\n\nWhich O O\nsends O O\na O O\nresponse O O\nas O O\nfollows O O\n. O O\n\nNow O O\n, O O\nI O O\nwanna O O\ngrab O O\nthe O O\navatar O O\nurl O O\nand O O\nmake O O\nanother O O\nrequest O O\n, O O\nwhich O O\ngives O O\nme O O\nthe O O\nimage Name Name\nbinary Name Name\n. O O\n\nAt O O\nthe O O\nend O O\nof O O\nthis O O\n, O O\nwhat O O\nI O O\nwant O O\nas O O\noutput O O\nis O O\nan O O\nObservable Name Name\nthat O O\ngives O O\nme O O\nthis O O\ndata O O\n. O O\n\nHere O O\n's O O\nhow O O\nI O O\napproached O O\nbut O O\nca O O\nn't O O\nfinish O O\nit O O\n. O O\n\nBasically O O\n, O O\nis O O\nthere O O\nany O O\nway O O\nto O O\nhave O O\na O O\nstructure O O\nlike O O\nthis O O\n, O O\n\nWhich O O\nthen O O\ngets O O\nresolved O O\nto O O\nmy O O\nfinal O O\ndata O O\n? O O\n\nYou O O\ndo O O\nn't O O\nneed O O\nto O O\nuse O O\nswitchMap Name Name\nfor O O\nthis O O\nand O O\nuse O O\nconcatMap Name Name\nor O O\nmergeMap Name Name\ninstead O O\n: O O\n\nI O O\nwould O O\nlike O O\nmy O O\npage O O\nto O O\npop-up O O\na O O\nwindow Name Name\nthat O O\ncontains O O\na O O\nform Name Name\n. O O\n\nWhen O O\nthe O O\nform Name Name\nis O O\nfilled O O\nout O O\nand O O\nSubmit O O\nis O O\nclicked O O\n, O O\nI O O\nwould O O\nlike O O\nthe O O\npop-up Name Name\nto O O\nremain O O\non O O\ntop O O\nof O O\nthe O O\npage Name Name\nwith O O\nnew O O\ndata O O\nloaded O O\ninto O O\nit O O\n. O O\n\nWhenever O O\nI O O\ntry O O\nthis O O\nso O O\nfar O O\n, O O\nwhen O O\nI O O\nclick O O\non O O\nthe O O\nsubmit O O\nbutton Name Name\nin O O\nmy O O\npop-up Name Name\n, O O\nthe O O\npop-up Name Name\neither O O\ncloses O O\n, O O\nif O O\nI O O\nhave O O\ntarget Name Name\n= Name Name\n\" Name Name\n_self Name Name\n\" Name Name\n, O O\nor O O\nthe O O\ncontains O O\nof O O\nthe O O\npop-up Name Name\ngo O O\ninto O O\na O O\nnew O O\ntab Name Name\nthat O O\nthe O O\nbrowser Name Name\nopens O O\n. O O\n\nI O O\nhave O O\nyet O O\nto O O\nfind O O\na O O\nsolution O O\nthat O O\nallows O O\nthe O O\npop-up Name Name\nto O O\nstay O O\nup O O\nwhen O O\ncoming O O\nfrom O O\nthis O O\nAJAX Name Name\npop-up Name Name\nfunction O O\n( O O\nlisted O O\nbelow O O\n) O O\n. O O\n\nI O O\ncould O O\ndo O O\na O O\nstandard O O\nnon-AJAX Name Name\npopup Name Name\n, O O\nbut O O\nthen O O\nif O O\na O O\nuser O O\nclicks O O\non O O\nthe O O\npage Name Name\nthe O O\npop-up Name Name\ncame O O\nfrom O O\n, O O\nthe O O\npop-up Name Name\ngoes O O\nunderneath O O\nthe O O\nmain O O\npage Name Name\n, O O\nwhich O O\nis O O\nn't O O\nsomething O O\nI O O\nwant O O\nat O O\nall O O\n. O O\n\nHere O O\nis O O\nthe O O\npage Name Name\nwhere O O\nmy O O\npop-up Name Name\ncomes O O\nfrom O O\n\nSo O O\n, O O\nthis O O\nis O O\nthe O O\ncurrent O O\ngraph Name Name\nand O O\nform Name Name\npop-up Name Name\n. O O\n\nIt O O\nis O O\nin O O\nthe O O\nform O O\nof O O\na O O\nJSP Name Name\nbacked O O\nby O O\na O O\nservlet Name Name\n. O O\n\nThe O O\nfirst O O\npart O O\nof O O\nthe O O\nheader Name Name\ngets O O\nall O O\nthe O O\nparameters O O\nand O O\nthen O O\nzoomPlot.generatePlot() Name Name\ncreates O O\nthe O O\nplot Name Name\nand O O\nsaves O O\nit O O\nas O O\na O O\n.png Name Name\n. O O\n\nThe O O\nbody O O\ndisplays O O\nthe O O\n.png Name Name\ngraph Name Name\nand O O\nthen O O\nalso O O\nshows O O\nthe O O\nform Name Name\n. O O\n\nWhen O O\none O O\nsubmits O O\nthe O O\nform Name Name\n, O O\nthe O O\nsame O O\nthing O O\nhappens O O\nagain O O\n. O O\n\nThe O O\nfirst O O\ntime O O\n, O O\nthis O O\npop-up Name Name\nis O O\ndisplayed O O\n, O O\nthe O O\nplot Name Name\nuses O O\ndefault O O\nvalues O O\n. O O\n\nI O O\n'm O O\nnot O O\nreally O O\nsure O O\nhow O O\nto O O\nconvert O O\nthis O O\nto O O\nan O O\nAJAX Name Name\nrequest Name Name\n, O O\nso O O\nif O O\nanyone O O\nhas O O\nany O O\ngood O O\nideas O O\n, O O\nplease O O\nlet O O\nme O O\nknow O O\n. O O\n\nI O O\n'd O O\nlike O O\nto O O\nrecycle O O\nas O O\nmuch O O\nas O O\nI O O\ncan O O\n. O O\n\nUse O O\nAJAX Name Name\nto O O\nsubmit O O\nthe O O\nform Name Name\n. O O\n\nIn O O\nyour O O\ninit O O\ncode O O\n: O O\n\nElsewhere O O\n: O O\n\nThere O O\nare O O\nmany O O\nways O O\nI O O\nwould O O\ndo O O\nit O O\n: O O\n\n1 O O\n: O O\nA O O\nform Name Name\nand O O\nan O O\nIframe Name Name\n\nTarget O O\nthe O O\nform Name Name\nto O O\nthe O O\niframe Name Name\n: O O\n\nVisually O O\nhide O O\nthe O O\niframe Name Name\nwith O O\nCSS Name Name\non O O\ninitial O O\nload O O\n. O O\n\nYou O O\nshould O O\nvisibility Name Name\n: Name Name\nhidden Name Name\n; Name Name\ninstead O O\nof O O\ndisplay Name Name\n: Name O\nnone Name Name\n; Name Name\nbecause O O\nthe O O\nlatter O O\ndestroys O O\nan O O\nelement O O\nfrom O O\nthe O O\nDOM Name Name\n. O O\n\nPrevent O O\ndefault O O\nsubmission O O\nof O O\nthe O O\nform O O\n. Name Name\n\nWhen O O\nthe O O\nform Name Name\nis O O\nsubmitted O O\n( O O\nwith O O\nAJAX Name Name\n) O O\n, O O\nhide O O\nthe O O\nform Name Name\nand O O\nshow O O\nthe O O\niframe Name Name\n. O O\n\nThe O O\ndialog Name Name\nwould O O\nstill O O\nbe O O\nopen O O\n. O O\n\n2 O O\n: O O\nA O O\nform Name Name\nwith O O\nAJAX Name Name\n\nWrap O O\nthe O O\nform Name Name\nin O O\na O O\ndiv Name Name\nlike O O\nthis O O\n: O O\n\nThen O O\nuse O O\nAJAX Name Name\nto O O\nsubmit O O\nthe O O\nform Name Name\nand O O\nshow O O\nresults O O\nin O O\nthe O O\n#results Name Name\n-container Name Name\n\nNOTE O O\n: O O\n\nI O O\n'm O O\ntrying O O\nto O O\nexplain O O\nthe O O\nprocess O O\nso O O\nthat O O\nyou O O\n'll O O\nbe O O\nable O O\nto O O\nimplement O O\nyour O O\nown O O\nlogin Name Name\n. O O\n\nDO O O\nNOT O O\nFORGET O O\nto O O\nprevent O O\ndefault O O\nsubmission O O\nof O O\nthe O O\nform Name Name\nin O O\nany O O\nof O O\nthe O O\nabove O O\nexamples O O\n! O O\n\nSince O O\nyou O O\nuse O O\njQuery Name Name\n, O O\nit O O\n's O O\nlike O O\nthis O O\n: O O\n\nPS O O\n: O O\nYour O O\nsnippet O O\nis O O\nnot O O\nfunctioning O O\nproperly O O\n. O O\n\n:::EDIT:: O O\n: O O\n\nPrevent O O\ndefault O O\nsubmission O O\nof O O\nthe O O\nform Name Name\n\nSend O O\na O O\nPOST Name Name\nrequest O O\non O O\nsubmit O O\nto O O\nyour O O\nserver Name Name\n\nRespond O O\nwith O O\nthe O O\nnew O O\ngraph Name Name\nimage Name Name\nurl O O\nfrom O O\nthe O O\nserver Name Name\n\nReplace O O\nthe O O\nold O O\ngraph Name Name\nimage Name Name\nsrc Name Name\nwith O O\nthe O O\nnew O O\none O O\n\nCan O O\nyou O O\nadd O O\nmore O O\ncode O O\nto O O\nyour O O\nquestion O O\nso O O\nI O O\ncan O O\nhelp O O\nout O O\n? O O\n\nEspecially O O\nyour O O\ncurrent O O\nJavaScript Name Name\n. O O\n\nThe O O\nassignment O O\nis O O\nto O O\ndevelop O O\na O O\nmonitor O O\n, O O\nby O O\nthe O O\nname O O\nof O O\nmatchmaker Name Name\n. O O\n\nWe O O\nhave O O\na O O\nroutine O O\n: O O\nself() Name Name\n; O O\nthat O O\nreturns O O\nthe O O\nthread O O\n's O O\nid Name Name\n. O O\n\nThe O O\nmatchmaker Name Name\nmethod O O\nmust O O\ndo O O\nthe O O\nfollowing O O\n: O O\n\nThreads O O\nthat O O\ncall O O\nthis O O\nroutine O O\n\" Name Name\ntrade Name Name\n\" Name Name\ntids Name Name\n. O O\n\nWhen O O\na O O\nthread O O\nA O O\ncalls O O\nmake_match() Name Name\nand O O\na O O\nvalue O O\nB Name Name\nis O O\nreturned O O\n, O O\nthis O O\nmeans O O\nthat O O\nthat O O\nthread O O\nID Name Name\nB Name Name\nalso O O\ncalled O O\nthe O O\nmake_match Name Name\nroutine O O\n. O O\n\nFor O O\na O O\npair O O\nto O O\nbe O O\npossible O O\nmake_match() Name Name\ncan O O\nsend O O\nthe O O\nthread O O\nto O O\nsleep O O\n, O O\nat O O\nwill O O\n. O O\n\nFor O O\nthe O O\nmutex O O\nand O O\ncondition O O\nvariables O O\npthread.h Name Name\nmustbe O O\nused O O\n. O O\n\nThis O O\nis O O\nthe O O\ncode O O\nI O O\ncame O O\nup O O\nwith O O\nbut O O\nbecause O O\nthis O O\nis O O\na O O\nwritten O O\nassignment O O\nI O O\ncannot O O\nevaluate O O\nit O O\n's O O\ncorrectness O O\n. O O\n\nI O O\nwould O O\nlike O O\nsome O O\nfeedback O O\non O O\nwether O O\nthis O O\ncould O O\nwork O O\nor O O\nnot O O\n. O O\n\nThank O O\nyou O O\nin O O\nadvance O O\n. O O\n\nI O O\nam O O\nusing O O\nRg.Plugins.Popup Name Name\nfor O O\na O O\nsimple O O\nconfirmation O O\npopup Name Name\nbefore O O\ndeleting O O\nan O O\nitem O O\nfrom O O\nthe O O\nlist O O\nlike O O\n\" Name Name\nAre Name Name\nyou Name Name\nsure Name Name\nyou Name Name\nwant Name Name\nto Name Name\ndelete Name Name\nItem1 Name Name\nfrom Name Name\nthe Name Name\nlist Name Name\n? Name Name\n\" Name Name\n. O O\n\nI O O\nneed O O\nto O O\nknow O O\nhow O O\nto O O\npause O O\nthe O O\ndeleting Name Name\nmethod O O\ntill O O\nit O O\ngets O O\nthe O O\nconfirmation O O\nfrom O O\nthe O O\npopup Name Name\n. O O\n\nYou O O\ncan O O\nuse O O\nTaskCompletionSource Name Name\n\nFor O O\nexample O O\n, O O\ncreate O O\nPopupAlert Name Name\npage O O\nwith O O\nan O O\nasync Name Name\nShow Name Name\nmethod O O\n: O O\n\nAnd O O\n, O O\nusage O O\nwould O O\nlook O O\nlike O O\n\nWhy O O\nnot O O\nleverage O O\nMessagingCenter Name Name\nto O O\ncall O O\na O O\nmethod O O\nwhich O O\nwill O O\nremove O O\nsaid O O\nitem Name Name\n? O O\n\nYou O O\ncould O O\nsubscribe O O\nto O O\nthe O O\nmessage O O\nwhen O O\ndisplaying O O\nthe O O\npopup Name Name\nand O O\nreceive O O\nit O O\nwhen O O\nthe O O\nconfirm O O\nbutton Name Name\nhas O O\nbeen O O\nclicked O O\n. O O\n\nI O O\nhave O O\nseveral O O\nmat Name Name\nfile O O\nlike O O\n: O O\nfirst.mat Name Name\n, O O\nsecond.mat Name Name\n, O O\nthird.mat Name Name\n,.. O O\n. O O\n\nall O O\nof O O\nthese O O\nfiles O O\nhave O O\nthe O O\nsame O O\ncontent O O\nlike O O\n: O O\nvariable1 Name Name\n<3400x1 Name Name\ndouble> Name Name\n, O O\nvariable2<1143x1 Name Name\ndouble> Name Name\n, O O\nvariable3<1141x1 Name Name\ndouble> Name Name\n, O O\n.. O O\n. O O\n\nall O O\nmat Name Name\nfiles O O\nhave O O\nthe O O\nsame O O\ncontent O O\nbut O O\nthe O O\nsize O O\nof O O\neach O O\nvariable O O\nin O O\neach O O\nmat Name Name\nfile O O\nis O O\ndifferent O O\n. O O\n\nI O O\nneed O O\nto O O\nconcatenate O O\nall O O\nsame O O\nvariables O O\nin O O\nall O O\nmat Name Name\nfiles O O\nin O O\norder O O\nto O O\nhave O O\njust O O\none O O\nmat Name Name\nfile O O\n. O O\n\ncan O O\nsomebody O O\ntell O O\nme O O\nwhat O O\ncan O O\nI O O\ndo O O\n? O O\nwhich O O\nfunction O O\nshould O O\nI O O\nuse O O\n? O O\n\nMany O O\nthanks O O\n. O O\n\nThere O O\nis O O\nno O O\nmatlab Name Name\nfunction O O\nto O O\ndo O O\nthis O O\n, O O\nyou O O\nneed O O\nto O O\nopen O O\nall O O\nindividual O O\nvectors Name Name\n, O O\ncombine O O\nthem O O\nin O O\nthe O O\nway O O\nyou O O\nwant O O\n, O O\nand O O\nsave O O\nthem O O\nback O O\nto O O\ndisk Name Name\n. O O\n\nSomething O O\nlike O O\nthis O O\n( O O\nuntested O O\n) O O\n: O O\n\nThanks O O\nall O O\nfor O O\nyour O O\nanswers O O\n, O O\nhere O O\nis O O\nthe O O\nfinal O O\ncode O O\nwhich O O\nis O O\nworking O O\ncorrectly O O\n. O O\n\nI O O\nam O O\nplaying O O\nwith O O\nthe O O\nnew O O\ngoogle Name Name\nexpansion O O\npack O O\nstuff O O\n, O O\nand O O\nthe O O\ngoogle O O\nlibrary O O\nproject O O\nfor O O\nthe O O\ndownloader O O\nhas O O\na O O\nspecial O O\nvalues-v9/styles.xml Name Name\nfile O O\nfor O O\nthe O O\nnotification Name Name\ntext O O\nproperties O O\n. O O\n\nThis O O\ncauses O O\nan O O\nerror O O\nwhen O O\nthe O O\napp O O\nthat O O\nis O O\nusing O O\nthe O O\nlibrary O O\nis O O\npreAPI9 Name Name\n.. O O\n. O O\nat O O\nleast O O\nfor O O\nme O O\n. O O\n\nIt O O\nis O O\nreferring O O\nto O O\nsome O O\nstyle O O\nstuff O O\nthat O O\nonly O O\nappeared O O\nin O O\napi9 Name Name\n. Name Name\n\nI O O\n've O O\ntried O O\nsetting O O\n\n<uses-sdk Name Name\nandroid:minSdkVersion=\"8\" Name Name\nandroid:targetSdkVersion=\"9\" Name Name\n/> Name Name\n\nin O O\nthe O O\nAndroidManifest.xml Name Name\nof O O\nthe O O\nmain O O\napp O O\n, O O\nbut O O\nthis O O\ndid O O\nn't O O\nhelp O O\n. O O\n\nI O O\nwould O O\n( O O\nnaively O O\n) O O\nhope O O\neclipse Name Name\nwould O O\njust O O\nignore O O\nthe O O\nerror O O\nif O O\nI O O\n'm O O\nbuilding O O\nfor O O\napi8 Name Name\n, Name Name\nand O O\nthen O O\nwhen O O\ndeployed O O\non O O\nthe O O\nmarket O O\nthe O O\nsystem O O\nwould O O\nuse O O\nthe O O\nvalues-9 Name Name\nstuff O O\nif O O\nthe O O\nphone O O\nwere O O\nat O O\nor O O\nabove O O\nthat O O\nlevel O O\n, O O\nbut O O\nit O O\ndoes O O\nn't O O\nseem O O\nto O O\nwork O O\nthat O O\nway O O\n. O O\n\nSo O O\n, O O\nI O O\n'm O O\nhoping O O\nI O O\n'm O O\nmissing O O\nsomething O O\ntrivial O O\nhere O O\n. O O\n\nbtw O O\n- O O\nhere O O\nare O O\nthe O O\nspecific O O\nerrors O O\n\nDescription O O\nResource O O\nPath O O\nLocation O O\nType O O\n\nerror O O\n: O O\nError O O\nretrieving O O\nparent O O\nfor O O\nitem O O\n: O O\nNo O O\nresource O O\nfound O O\nthat O O\nmatches O O\nthe O O\ngiven O O\nname O O\n' O O\nandroid:TextAppearance.StatusBar.EventContent.Title O O\n' O O\n. O O\n\nstyles.xml O O\n/Google O O\nPlay O O\nDownloader O O\nLibrary/res/values O O\n-v9 O O\nline O O\n4 O O\nAndroid O O\nAAPT O O\nProblem O O\n\nDescription O O\nResource O O\nPath O O\nLocation O O\nType O O\n\nerror O O\n: O O\nError O O\nretrieving O O\nparent O O\nfor O O\nitem O O\n: O O\nNo O O\nresource O O\nfound O O\nthat O O\nmatches O O\nthe O O\ngiven O O\nname O O\n' O O\nandroid:TextAppearance.StatusBar.EventContent.Title O O\n' O O\n. O O\n\nstyles.xml O O\n/Google O O\nPlay O O\nDownloader O O\nLibrary/res/values O O\n-v9 O O\nline O O\n4 O O\nAndroid O O\nAAPT O O\nProblem O O\n\nYes O O\n, O O\nI O O\n'm O O\ngetting O O\nthis O O\nalso O O\n. O O\n\nI O O\nposted O O\na O O\nrelated O O\nquestion O O\nhere O O\n: O O\n\nAndroid Name Name\napk Name Name\nexpansion Name Name\nfile O O\nlibs O O\nproblems O O\n\nI O O\n'm O O\nstumped O O\nto O O\nknow O O\nwhat O O\nto O O\ndo O O\n. O O\n\nUpdate O O\n: O O\n\nThis O O\nworked O O\nfor O O\nme O O\n. O O\n\nI O O\ndeleted O O\nthe O O\nvalues-v9 Name Name\nfolder O O\nand O O\nrebuilt O O\neverything O O\n. O O\n\nThe O O\nDownloadManager Name Name\nis O O\nnow O O\nworking O O\n. O O\n\nHow O O\n, O O\nI O O\ndo O O\nn't O O\nknow O O\n. O O\n\nI O O\n've O O\nfixed O O\nthis O O\nerror O O\nby O O\nbuilding O O\nthe O O\nproject O O\nwith O O\nthe O O\nfollowing O O\ncommands O O\n: O O\n\nThe O O\nfirst O O\ncommand O O\ntells O O\nto O O\nuse O O\nthe O O\nAndroid Name Name\n2.3.3 Name Name\ntoolchain O O\nfor O O\nbuiding O O\nthe O O\nproject O O\n. O O\n\nNote O O\nthat O O\nI O O\nstill O O\nhave O O\nandroid:minSdkVersion Name Name\n= Name Name\n\" Name Name\n8 Name Name\n\" Name Name\nin O O\nAndroidManifest.xml Name Name\n. O O\n\nYou O O\nshould O O\nnot O O\ndelete O O\nthe O O\nvalues-v9/ Name Name\nfolder O O\n. O O\n\nRemoving O O\nit O O\ncan O O\ncause O O\ndisplaying O O\nnotification Name Name\nwith O O\ndark Name Name\nfont Name Name\non O O\ndark Name Name\nbackground Name Name\n. O O\n\nI O O\nam O O\ncurrently O O\ntrying O O\nto O O\nadd O O\na O O\ntoolbar Name Name\nas O O\nthe O O\naction Name Name\nbar Name Name\nand O O\nI O O\nam O O\nhaving O O\ntrouble O O\ngetting O O\nanything O O\nbesides O O\nthe O O\nname O O\nof O O\nthe O O\napp O O\nto O O\ndisplay O O\n. O O\n\nI O O\nam O O\nadding O O\nthe O O\nToolbar Name Name\nfrom O O\nappcompat Name Name\nand O O\nhave O O\ncreated O O\nthe O O\nmenu Name Name\nxml Name Name\nfile O O\n. O O\n\nIs O O\nthere O O\na O O\nnecessary O O\nstep O O\nI O O\nneed O O\nto O O\ntake O O\nin O O\norder O O\nto O O\nlink O O\nthe O O\ntwo O O\n? O O\n\nHere O O\nis O O\nmy O O\nactivity Name Name\nxml Name Name\n: O O\n\nI O O\nam O O\nsure O O\nthe O O\ntoolbar Name Name\nis O O\nbeing O O\nadded O O\nto O O\nthe O O\nlayout O O\ncorrectly O O\nbecause O O\nI O O\nhave O O\nbeen O O\nable O O\nto O O\nchange O O\nits O O\nsize O O\nand O O\nthat O O\nhas O O\nbeen O O\nreflected O O\ncorrectly O O\nwhen O O\nit O O\nruns O O\n. O O\n\nHere O O\nis O O\nthe O O\nxml Name Name\nfor O O\nthe O O\nmenu Name Name\n: O O\n\nAnd O O\nthis O O\nis O O\nthe O O\nonly O O\nthing O O\nthat O O\nshows O O\nup O O\nin O O\nthe O O\naction Name Name\nbar Name Name\n: O O\n\nJust O O\nto O O\nbe O O\nclear O O\nI O O\nam O O\npretty O O\nmuch O O\nfollowing O O\nthis O O\ntutorial O O\nexactly O O\n: O O\n\nhttp://developer.android.com/training/appbar/index.html O O\n\nAny O O\nhelp O O\nis O O\nappreciated O O\n, O O\nthank O O\nyou O O\n! O O\n\nadd O O\nbelow O O\nmethod O O\nin O O\nyou O O\nactivity Name Name\n\ni O O\nhave O O\ncreated O O\na O O\nSLIDE O O\nUP O O\nanimation Name Name\non O O\nview O O\nand O O\ni O O\nam O O\nrepeating O O\nthis O O\nanimation Name Name\nagain O O\nonAnimationEnd Name Name\nbut O O\nmy O O\nonAnimationEnd Name Name\nfired O O\ntwice O O\n, O O\ni O O\nhave O O\nchecked O O\nit O O\nwith O O\ncounter Name Name\nat O O\nonAnimationEnd Name Name\n, O O\ni O O\nwill O O\npost O O\nmy O O\ncode O O\n, O O\nyou O O\ncan O O\ncheck O O\nthat O O\nthe O O\ncounter Name Name\nin O O\nonAnimationEnd Name Name\nwill O O\nincremented O O\ntwice O O\nat O O\nsame O O\ntime O O\n, O O\nI O O\nam O O\nstarting O O\nthe O O\nanimation Name Name\nagain O O\nin O O\nonAnimationEnd Name Name\nmethod O O\n, O O\nplease O O\nguide O O\nme O O\nwhere O O\ni O O\nam O O\ndoing O O\nwrong O O\n? O O\n\nIf O O\nyou O O\nwant O O\nyour O O\nanimation Name Name\nto O O\nplay O O\nonce O O\n, O O\nyou O O\nhave O O\nto O O\nremove O O\ntickerView.startAnimation(animSlideUp) Name Name\n; Name Name\nfrom O O\nthe O O\nonAnimationEnd Name Name\nMethod O O\n. O O\n\nAvoid O O\nusing O O\nxml Name Name\nanimations Name Name\n, O O\nit O O\n's O O\nmuch O O\neasier O O\nin O O\njava Name Name\ncode O O\n. O O\n\nIf O O\nyou O O\n're O O\ntrying O O\nto O O\nanimate O O\ntwo O O\nproperties O O\n: O O\n\nIn O O\nyour O O\ncase O O\n, O O\nyou O O\n're O O\nonly O O\nchanging O O\nthe O O\nscaleY Name Name\nvalue O O\nfrom O O\n1.0 Name Name\nto O O\n0 Name Name\n, O O\nso O O\nuse O O\nthis O O\n: O O\n\nLinearInterpolator Name Name\nis O O\nused O O\nby O O\ndefault O O\n. O O\n\nRepeat O O\nafter O O\nevery O O\n5 O O\nsec O O\n\nI O O\nmay O O\nfound O O\nthe O O\nsolution O O\n: O O\npost O O\nan O O\nrunnable O O\nto O O\nrestart O O\nthe O O\nanimation Name Name\n. O O\n\nIn O O\nyour O O\ncase O O\n, O O\nin O O\nOnAnimationEnd() Name Name\nfunction O O\n, O O\ncode O O\nlike O O\nthis O O\n: O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\nsee O O\nthe O O\npage O O\nin O O\nFirebug Name Name\nor O O\nother O O\nsoftware O O\nafter O O\nthe O O\ncontent O O\nof O O\na O O\ndiv Name Name\nhas O O\nbeen O O\nreplaced O O\nwith O O\najax Name Name\n? O O\n\nyes O O\n\nfirebug Name Name\nmarks O O\nthe O O\nchanged O O\ndiv Name Name\nin O O\nyellow Name Name\nand O O\nyou O O\ncan O O\nsee O O\nthe O O\nhtml Name Name\ndynamic O O\nupdates O O\nin O O\nthe O O\nhtml Name Name\nview O O\n\nSure O O\n, O O\nyou O O\ncan O O\ninspect O O\nthe O O\nDOM Name Name\nwith O O\nFireBug Name Name\nwhich O O\nalways O O\nshows O O\nthe O O\nDOM Name Name\nat O O\nits O O\nmost O O\nrecent O O\nstate O O\n( O O\nand O O\nof O O\ncourse O O\naccounts O O\nfor O O\nAJAX Name Name\nupdates O O\n) O O\n: O O\n\nI O O\nam O O\ntrying O O\nto O O\ncreate O O\na O O\nsimple O O\nOSX Name Name\napp O O\nthat O O\nhas O O\na O O\nsplit O O\nview O O\n( O O\ntop O O\nto O O\nbottom O O\n) O O\n. O O\n\nThe O O\nsecond O O\nview O O\nof O O\nsplit O O\nview O O\nis O O\na O O\nNSTabview Name Name\nhaving O O\nthree O O\ntabs Name Name\n. O O\n\nEverything O O\nlooks O O\nfine O O\nbut O O\nNSTabview Name Name\nis O O\nnot O O\nshowing O O\ntabs Name Name\nbars Name Name\n( O O\nit O O\nis O O\nnot O O\ntabless O O\n) O O\nhowever O O\nwhen O O\ni O O\nclick O O\naround O O\nit O O\nworks O O\nand O O\nswitch O O\nto O O\nother O O\ntabs Name Name\n. O O\n\nI O O\nhave O O\ncreated O O\nan O O\nimage Name Name\neditor O O\non O O\nQt Name Name\nbut O O\nI O O\nhave O O\nan O O\nissue O O\ndisplaying O O\nthe O O\nimage Name Name\non O O\nthe O O\ngraphicsView Name Name\n. O O\n\nWhen O O\nI O O\nopen O O\nthe O O\nimage Name Name\n, O O\nI O O\ncall O O\nfitInView Name Name\nso O O\nthat O O\nit O O\nfits O O\nnicely O O\nto O O\nthe O O\ngraphicsView Name Name\nand O O\nhere O O\nlies O O\nthe O O\nproblem O O\n: O O\nwhen O O\nI O O\nmaximize O O\nthe O O\nwindow Name Name\nthe O O\ngraphics O O\nview O O\nsize O O\nchanges O O\nsince O O\nI O O\nhave O O\nset O O\na O O\nhorizontal O O\nlayout O O\n, O O\nbut O O\nthe O O\nimage Name Name\ndoes O O\nn't O O\nchange O O\nsize O O\n. O O\n\nHere O O\nsome O O\nimages Name Name\nabout O O\nwhat O O\nI O O\n'm O O\ntalking O O\nabout O O\n: O O\n\nIf O O\nI O O\nopen O O\nthe O O\nfile O O\nwhen O O\nthe O O\nwindow Name Name\nis O O\nalready O O\nmaximized O O\n, O O\nit O O\n's O O\nall O O\ngood O O\n. O O\n\nHow O O\ncan O O\nI O O\ncall O O\nfitInView Name Name\nwhen O O\nthe O O\nwindow Name Name\nget O O\nmaximized O O\n? O O\n\nQuite O O\neasy O O\n, O O\njust O O\noverride O O\nthe O O\nresizeEvent Name Name\n. O O\n\nThis O O\nworking O O\ncode O O\nrelies O O\non O O\nQGraphicsView Name Name\nand O O\nQGraphicsScene Name Name\n, O O\nzoom O O\nworks O O\nas O O\nwell O O\n;) O O\n\nI O O\nwant O O\nto O O\nshare O O\nimages Name Name\nto O O\nInstagram Name Name\nfrom O O\nmy O O\nown O O\niOS Name Name\napp O O\nand O O\nI O O\nam O O\nusing O O\nKingfisher Name Name\nthroughout O O\nthe O O\nproject O O\nto O O\ndownload O O\nand O O\ncache O O\nimages Name Name\nand O O\nshow O O\nthem O O\nin O O\nUIImageViews Name Name\nbut O O\nthis O O\ntime O O\nI O O\nwant O O\nto O O\ndo O O\nsomething O O\na O O\nlittle O O\nbit O O\ndifferent O O\n. O O\n\nBasically O O\n, O O\nI O O\nam O O\ngetting O O\na O O\nresponse O O\nfrom O O\nan O O\nAPI O O\nwith O O\nthe O O\nurl O O\nof O O\nan O O\nimage Name Name\nand O O\nI O O\nwant O O\nto O O\n\nDownload O O\nthe O O\nimage Name Name\nto O O\nthe O O\nlibrary O O\nusing O O\nthe O O\nURL O O\n\nThere O O\nis O O\na O O\nbunch O O\nof O O\nquestions O O\non O O\nthis O O\nfor O O\nobjective-C Name Name\nusing O O\n\nbut O O\nI O O\nam O O\nusing O O\nSwift Name Name\n. O O\n\nRename O O\nit O O\nwith O O\n.igo Name Name\nextension O O\n( O O\ninstagram Name Name\nexclusive O O\n) O O\n\nNot O O\nsure O O\nhow O O\nto O O\ngo O O\nabout O O\nthis O O\n, O O\nwould O O\ndepend O O\non O O\nnumber O O\n1 O O\n. O O\n\nThen O O\nI O O\ncould O O\nshare O O\nit O O\ndoing O O\nsomething O O\nlike O O\n\nor O O\nI O O\ncould O O\ndo O O\nit O O\nusing O O\nthe O O\ninstagram Name Name\nhooks O O\n: O O\n\nDocumentation O O\non O O\nthis O O\nis O O\nscarce O O\nspecially O O\nfor O O\nSwift Name Name\n. O O\n\nHow O O\ncan O O\nI O O\ngo O O\nabout O O\nthis O O\n? O O\n\na O O\npush O O\nin O O\nthe O O\nright O O\ndirection O O\nis O O\nall O O\nI O O\nneed O O\n. O O\n\nIn O O\nmy O O\nnavigation Name Name\ncontroller Name Name\n, O O\nI O O\nhave O O\na O O\nUIBarButtonItem Name Name\nset O O\nto O O\nSystem O O\nitem O O\n\" Name Name\nAction Name Name\n\" Name Name\n. O O\n\nI O O\nthen O O\ncreated O O\nthe O O\nfollowing O O\nIBAction Name Name\ncode O O\n: O O\n\nThe O O\nexcludedActivityTypes Name Name\nlist Name Name\nis O O\na O O\ncomplete/exhaustive O O\nlist Name Name\nof O O\navailable O O\nUIActivityTypes Name Name\ngleaned O O\nfrom O O\ncode-complete O O\nor O O\ncommand-clicking O O\non O O\nUIActivity Name Name\ntype O O\nand O O\ngoing O O\nthrough O O\nthe O O\nresulting O O\nstruct Name Name\n. O O\n\nI O O\nuncomment O O\nthose O O\nI O O\nwish O O\nto O O\nexclude O O\n- O O\nbut O O\nleave O O\nthem O O\nin O O\nfor O O\nquick O O\nreference O O\nin O O\nthe O O\nfuture O O\n. O O\n\nThis O O\nwill O O\ngive O O\nyou O O\nthe O O\npopup Name Name\nyou O O\nwant O O\n. O O\n\nIt O O\nsounds O O\nlike O O\nyou O O\nalready O O\nknow O O\nhow O O\nto O O\nuse O O\nKingfisher Name Name\nand O O\nretrieving O O\nthe O O\nUIImage Name Name\nfrom O O\nthe O O\nURL O O\n. O O\n\nSo O O\nwhat O O\ni O O\n'm O O\nabout O O\nto O O\nprovide O O\nis O O\ninformation O O\nfor O O\nsaving O O\nthe O O\nimage Name Name\nto O O\nthe O O\ndocuments O O\ndirectory O O\nand O O\nretrieving O O\nit O O\nto O O\nshare O O\n. O O\n\nRetrieve O O\nthe O O\ncorrect O O\ndirectory O O\nURL O O\n\nSaving O O\nan O O\nimage Name Name\nto O O\nthat O O\ndirectory O O\n\nRetrieving O O\nan O O\nimage Name Name\nfrom O O\nthe O O\ndirectory O O\n\nSharing O O\nan O O\nimage Name Name\n\nHow O O\nto O O\nUse O O\n\nAnd O O\nas O O\nDFD O O\npointed O O\nout O O\n, O O\nyou O O\ncan O O\nexclude O O\ncertain O O\nitems O O\nfrom O O\nthe O O\nshare O O\nVC O O\nto O O\nonly O O\nallow O O\nwhat O O\nyou O O\nneed O O\n. O O\n\nIn O O\nour O O\napplication O O\nwe O O\nhave O O\na O O\nfew O O\nGDI+ Name Name\nobjects O O\nthat O O\nare O O\nused O O\noften O O\nin O O\nmany O O\ndifferent O O\ncontexts O O\n. O O\n\nThis O O\nincludes O O\nsome O O\ninstances O O\nof O O\nFont Name Name\n, O O\nSolidBrush Name Name\n( O O\nWhite Name Name\n, O O\nBlack. Name Name\n. O O\n) O O\n, O O\nsome O O\nPen. Name Name\n. O O\n\nFor O O\nthose O O\nobjects O O\nour O O\nstrategy O O\nso O O\nfar O O\nhas O O\nbeen O O\nto O O\nhold O O\nthem O O\nthrough O O\nwidely O O\nvisible O O\nstatic Name Name\nread-only O O\nfields O O\n. O O\n\nThis O O\navoids O O\nto O O\ncreate/dispose O O\nthem O O\nmillions O O\nof O O\ntime O O\n. O O\n\nWe O O\ntook O O\ncare O O\nof O O\nthread-safety O O\naccesses O O\non O O\nthese O O\nobject O O\nof O O\ncourse O O\n( O O\nthey O O\nare O O\njust O O\naccessed O O\nfrom O O\nthe O O\nUI O O\nthread O O\nbasically O O\n) O O\n. O O\n\nThere O O\nare O O\njust O O\na O O\nfew O O\nof O O\nthese O O\nGDI+ Name Name\nobjects O O\nhold O O\nfor O O\nthe O O\nlifetime O O\nof O O\nthe O O\napplication O O\n, O O\nsay O O\nlike O O\n200 O O\n. O O\n\nThe O O\nothers O O\nGDI+ Name Name\nobjects O O\n( O O\nthe O O\nones O O\nwith O O\nshort-life O O\n) O O\nare O O\nall O O\ndisposed O O\nasap O O\n. O O\n\nBut O O\nwe O O\nsometime O O\nget O O\nunexpected O O\nGDI+ Name Name\nresources O O\noutage O O\nexception Name Name\n, O O\nhopefully O O\nrarely O O\nenough O O\n. O O\n\nI O O\nam O O\nwondering O O\nif O O\nthese O O\nexceptions Name Name\ncould O O\ncome O O\nfrom O O\nthese O O\nfew O O\nGDI+ Name Name\nobjects O O\nhold O O\n, O O\nand O O\nif O O\nthis O O\nwould O O\nbe O O\na O O\nwiser O O\nstrategy O O\nto O O\ncreate/dispose O O\ntons O O\nof O O\nshort-life O O\nGDI+ Name Name\nobjects O O\ninstead O O\n. O O\n\nDoes O O\nanybody O O\nhave O O\nreal-world O O\nexperience O O\nand O O\nrelevant O O\nconclusions O O\nabout O O\ntheses O O\ntwo O O\nstrategies O O\n? O O\n\nCaching O O\nSystem.Drawing Name Name\nobjects O O\nis O O\na O O\nmistake O O\n. O O\n\nThey O O\nare O O\nvery O O\ncheap O O\nto O O\ncreate O O\n, O O\nvery O O\nexpensive O O\nto O O\nkeep O O\naround O O\n. O O\n\nThey O O\nare O O\nallocated O O\non O O\na O O\nspecial O O\nheap Name Name\nthat O O\nall O O\nprocesses O O\non O O\na O O\ndesktop Name Name\nneed O O\nto O O\nshare O O\n. O O\n\nThe O O\nheap Name Name\nsize O O\nis O O\nlimited O O\nto O O\n65535 O O\nobjects O O\n. O O\n\nCreating O O\nobjects O O\nlike O O\na O O\nbrush Name Name\nor O O\na O O\npen Name Name\ntakes O O\nroughly O O\na O O\nmicrosecond O O\n, O O\nminiscule O O\ncompared O O\nto O O\nthe O O\ncost O O\nof O O\nthe O O\noperation O O\nyou O O\nperform O O\nwith O O\nthem O O\n. O O\n\nThe O O\nonly O O\ndrawing O O\nobject O O\nthat O O\nis O O\nexpensive O O\nis O O\na O O\nFont Name Name\n. O O\n\nCreating O O\none O O\ninvolves O O\na O O\nsizable O O\nchunk O O\nof O O\noverhead O O\ntaken O O\nby O O\nthe O O\nfont Name Name\nmapper O O\n. O O\n\nBut O O\nthat O O\n's O O\nalready O O\nsolved O O\nby O O\n.NET Name Name\n, O O\nit O O\ncaches O O\nthem O O\n. O O\n\nOther O O\nthan O O\nhogging O O\nthe O O\nheap Name Name\nneedlessly O O\n, O O\nthe O O\nprogramming O O\nstyle O O\nis O O\ndangerous O O\n. O O\n\nIt O O\nis O O\nfar O O\ntoo O O\neasy O O\nto O O\nforget O O\nblindly O O\napplying O O\nthe O O\nusing O O\nstatement O O\n. O O\n\nThis O O\ncertainly O O\ncan O O\nget O O\nyou O O\ninto O O\ntrouble O O\n, O O\nyou O O\nare O O\nrelying O O\non O O\nthe O O\nfinalizer O O\nthread O O\nto O O\nrelease O O\nthem O O\nagain O O\n. O O\n\nIf O O\na O O\nprogram O O\ninvolves O O\nlots O O\nof O O\nheavy O O\npainting O O\nbut O O\nnot O O\nenough O O\nobject O O\nallocation O O\nto O O\ntrigger O O\na O O\nGC O O\nthen O O\nyou O O\nwill O O\nexhaust O O\nthe O O\nquota O O\nfor O O\nGDI Name Name\nobjects O O\n. O O\n\nWhich O O\nis O O\n10,000 O O\nobjects O O\nfor O O\na O O\nprocess O O\nby O O\ndefault O O\n. O O\n\nThis O O\nwill O O\ncrash O O\nyour O O\nprogram O O\n. O O\n\nDo O O\nnote O O\nthat O O\nthe O O\nSystem.Drawing Name Name\nclass O O\nwrappers O O\nare O O\nnot O O\nnearly O O\nbig O O\nenough O O\nto O O\ntrigger O O\na O O\nGC O O\nby O O\nthemselves O O\n, O O\n10000 O O\nof O O\nthem O O\nwill O O\nnot O O\nbe O O\nenough O O\nto O O\nget O O\nthe O O\nfinalizers O O\nto O O\nrun O O\nand O O\nrelease O O\nthe O O\nhandles O O\nagain O O\n. O O\n\nThe O O\nproblem O O\nis O O\nvery O O\neasy O O\nto O O\ndiagnose O O\n, O O\nyou O O\ncan O O\nuse O O\nTask Name Name\nManager Name Name\n. O O\n\nUse O O\nView Name Name\n+ O O\nSelect Name Name\nColumns Name Name\nand O O\ntick O O\n\" Name Name\nGDI Name Name\nObjects Name Name\n\" Name Name\n. O O\n\nMight O O\nas O O\nwell O O\ntick O O\n\" Name Name\nUSER Name Name\nObjects Name Name\n\" Name Name\n, O O\nanother O O\none O O\nthat O O\n's O O\nvery O O\neasily O O\nleaked O O\n. O O\n\nKeep O O\nan O O\neye O O\non O O\nthe O O\ndisplayed O O\ncounts O O\nfor O O\nyour O O\nprocess O O\nwhile O O\nyou O O\nare O O\nusing O O\nit O O\n. O O\n\nA O O\nsteadily O O\nclimbing O O\nnumber O O\nspells O O\ndoom O O\n. O O\n\nI O O\nhave O O\na O O\ncustom O O\nexperience O O\nbutton Name Name\nfor O O\nthe O O\npage Name Name\neditor Name Name\nin O O\nSitecore Name Name\nwhich O O\nreferences O O\na O O\ncustom O O\ncommand O O\n. O O\n\nWhat O O\nis O O\nthe O O\ncorrect O O\nway O O\nto O O\nopen O O\na O O\nSPEAK Name Name\ndialog Name Name\nfrom O O\nthis O O\ncontext O O\nand O O\nhow O O\nshould O O\nthe O O\nwidth/height Name Name\nof O O\nthe O O\ndialog Name Name\nbe O O\nset O O\n? O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\ncommand O O\ncode O O\n: O O\n\nand O O\nI O O\nam O O\nfinding O O\nthat O O\nthe O O\nsize O O\nof O O\nthe O O\ndialog Name Name\nbears O O\nno O O\nresemblance O O\nto O O\nthe O O\nwidth Name Name\nand O O\nheight Name Name\nparameters O O\npassed O O\nto O O\nSheerResponse.ShowModalDialog Name Name\n. O O\n\nI O O\nhave O O\nalso O O\ntried O O\npassing O O\nin O O\nvalues O O\nsuffixed O O\nwith O O\n\" O O\npx O O\n\" O O\nbut O O\nthis O O\ndoes O O\nnot O O\nhelp O O\n. O O\n\nThere O O\nis O O\nno O O\nout O O\nof O O\nthe O O\nbox O O\nability O O\nto O O\nset O O\nthe O O\nwidth Name Name\nand O O\nheight Name Name\nfor O O\nSPEAK-based Name Name\ndialogs Name Name\nin O O\nSitecore Name Name\n7.5 Name Name\n( O O\nit O O\n's O O\navailable O O\nin O O\n8.0 Name Name\n) O O\n\nHowever O O\n, O O\nyou O O\ncould O O\ncustomize O O\nthe O O\n\\sitecore\\shell\\Controls\\jQueryModalDialogs.html Name Name\nfile O O\n. O O\n\nJust O O\nfind O O\nand O O\nupdate O O\nthe O O\nfollowing O O\nif Name Name\nstatement O O\n: O O\n\nIn O O\nSitecore Name Name\n8.0 Name Name\na O O\nnew O O\nmethod O O\nhas O O\nbeen O O\nadded O O\n: O O\n\nYour O O\nSheerResponse.ShowModalDialog Name Name\n( Name Name\nurl Name Name\n, Name Name\n\" Name Name\n100 Name Name\n\" Name Name\n, Name Name\n\" Name Name\n200 Name Name\n\" Name Name\n, Name Name\nstring.Empty Name Name\n, Name Name\ntrue Name Name\n) Name Name\n; Name Name\nwill O O\nbe O O\n\nDescription O O\nof O O\nForceDialogSize Name Name\nproperty O O\n: O O\n\nWhen O O\ndesigning O O\nmy O O\nsoftware O O\n, O O\nI O O\nbegan O O\nwith O O\ninterfaces O O\nsince O O\nthis O O\nseems O O\nto O O\nbe O O\nthe O O\n\" O O\nstandard O O\n\" O O\n. O O\n\nThen O O\nI O O\nswitched O O\nto O O\nabstract O O\nclasses O O\nbecause O O\nthey O O\nseem O O\nbetter O O\nsuited O O\nto O O\nthe O O\nproblem O O\nat O O\nhand O O\n. O O\n\nHowever O O\nI O O\n'm O O\nnot O O\nsure O O\nif O O\nI O O\n've O O\nmissed O O\nout O O\non O O\nsome O O\nconsiderations O O\nwhen O O\nmaking O O\nthis O O\ndesign O O\nchoice O O\n. O O\n\nOther O O\nthan O O\ndomain O O\nspecific O O\nissues O O\nwhich O O\nI O O\nhave O O\nthought O O\nabout O O\nwhat O O\nare O O\nthe O O\nmore O O\ngeneral O O\nfactors O O\nto O O\nconsider O O\nwhen O O\nchoosing O O\nbetween O O\ninterfaces O O\nand O O\nabstracts O O\nclasses O O\n? O O\n\nIf O O\nyour O O\ninterface O O\nalso O O\nhas O O\nreasonable O O\ndefault O O\nbehavior O O\nfor O O\nat O O\nleast O O\nsome O O\nof O O\nthe O O\nfunctionality O O\n, O O\nyou O O\nmay O O\nwant O O\nto O O\nuse O O\nan O O\nabstract O O\nclass O O\nto O O\navoid O O\ncommon O O\nboilerplate O O\ncode O O\nin O O\nall O O\nof O O\nthe O O\nconcrete O O\nimplementations O O\n. O O\n\nOtherwise O O\n, O O\nuse O O\nan O O\ninterface O O\n. O O\n\nI O O\nfind O O\nthe O O\nbest O O\noption O O\nmost O O\nof O O\nthe O O\ntime O O\nis O O\nto O O\ndo O O\nboth O O\n. O O\n\nThat O O\nis O O\nnot O O\nalways O O\npossible O O\nwhen O O\nyou O O\nare O O\nrelying O O\non O O\nsomething O O\nhappening O O\nin O O\nthe O O\nbase O O\nclass O O\n. O O\n\nProviding O O\nboth O O\nan O O\nabstract O O\nbase O O\nclass O O\nand O O\nan O O\ninterface O O\nallows O O\nthe O O\ngreatest O O\nlatitude O O\nby O O\nimplementers O O\nof O O\nyour O O\nabstraction O O\n, O O\nagain O O\n, O O\nas O O\nlong O O\nas O O\nyou O O\ndo O O\nn't O O\nrequire O O\nsomething O O\nhappens O O\nby O O\nan O O\nimplementer O O\nof O O\nthe O O\ninterface O O\n. O O\n\nIf O O\nyou O O\nrequire O O\nthat O O\nsomething O O\nhappens O O\n, O O\nthen O O\nyou O O\ndo O O\nn't O O\nwant O O\nto O O\nprovide O O\nan O O\ninterface O O\nat O O\nall--and O O\nyou O O\nwould O O\nalso O O\nneed O O\nto O O\nmake O O\nsure O O\nthat O O\nyour O O\nbase O O\nclass O O\nensures O O\nthis O O\nrequired O O\naction O O\nto O O\nALWAYS O O\noccur O O\n.. O O\n. O O\n\nNegative O O\nto O O\ndoing O O\nboth O O\n: O O\nmore O O\ngoo O O\n. O O\n\nexample O O\npseudocode O O\n: O O\n\nNote O O\nthat O O\nin O O\nthis O O\nexample O O\n, O O\nsomeone O O\ncould O O\nmake O O\ntheir O O\nown O O\nclass O O\nthat O O\nimplements O O\nIVehicle Name Name\nand O O\nthen O O\npass O O\nit O O\nto O O\nanything O O\nthat O O\ntakes O O\nan O O\nIVehicle Name Name\n. O O\n\nThat O O\nobject O O\nwould O O\nNOT O O\nneed O O\nto O O\nbe O O\na O O\nchild O O\nof O O\nthe O O\nVehicle Name Name\nabstract O O\nclass O O\n. O O\n\nIf O O\n, O O\ntherefore O O\n, O O\nyou O O\nwere O O\nto O O\nexpect O O\nsomething O O\nspecific O O\nto O O\nhappen O O\nin O O\nthe O O\nPutCarInGear() Name Name\nmethod O O\n, O O\nit O O\n's O O\nquite O O\nlikely O O\nthat O O\nthat O O\nnew O O\nclass O O\nwould O O\nNOT O O\nfulfill O O\nthat O O\nexpectation O O\n. O O\n\nHowever O O\n, O O\nas O O\nlong O O\nas O O\nit O O\nnever O O\nmatters O O\nwhat O O\nimplementations O O\nof O O\nIVehicle Name Name\ndo O O\n, O O\nthen O O\nit O O\n's O O\nthe O O\nmost O O\nflexible O O\nabstraction O O\nto O O\nhave O O\nboth O O\nan O O\nabstract O O\nbase O O\nclass O O\nAND O O\nan O O\ninterface O O\n. O O\n\nI O O\ntrying O O\nto O O\nconvert O O\nencryption O O\ncode O O\nusing O O\nCryptoJS Name Name\naes256 Name Name\nfrom O O\n.net Name Name\nto O O\njavascript Name Name\n( O O\nCordova Name Name\n) O O\nbut O O\ni O O\ndo O O\nn't O O\nhave O O\nthe O O\nright O O\nresult O O\n. O O\n\n//.Net Name Name\nCode O O\n\n// O O\nCordova Name Name\nCode O O\n: O O\n\nI O O\ncan O O\nsuccessfully O O\nencode O O\nthe O O\nresulting O O\nBase64 Name Name\nstring Name Name\nand O O\ndecode O O\nthe O O\nmessage O O\n. O O\n\nWhat O O\nI O O\nalso O O\nneed O O\n, O O\nis O O\nthe O O\nsame O O\nencoding O O\nmethod O O\nwritten O O\nin O O\nJavascript(Cordova) Name Name\n. O O\n\nHere O O\nis O O\nwhat O O\nI O O\nhave O O\nso O O\nfar O O\n\nHowever O O\nthe O O\nresulting O O\nBase64 Name Name\nstring Name Name\ndoes O O\nnot O O\nmatch O O\nthe O O\none O O\ngenerated O O\nby O O\n.Net Name Name\n. O O\n\nAny O O\nideas O O\n? O O\n\nI O O\nhave O O\nmy O O\ndata.frame Name Name\nsample O O\n: O O\n\nI O O\nwant O O\nto O O\nstay O O\nonly O O\npairs O O\nlogged_in Name Name\nand O O\ndeauthorize Name Name\n( O O\nI O O\nneed O O\nit O O\nfor O O\ncalculation O O\ntime O O\nbetween O O\nlogs O O\nlogged_in Name Name\nand O O\ndeauthorize Name Name\n, O O\nbut O O\nsome O O\nlogs O O\nwas O O\nlost O O\n) O O\n. O O\n\nSo O O\nI O O\nwant O O\nmy O O\ntable Name Name\nafter O O\nsort O O\nlooks O O\nlike O O\n: O O\n\nThis O O\nis O O\na O O\nbase Name Name\nR Name Name\nsolution O O\nusing O O\nR Name Name\n's O O\nfactor O O\ncoercion O O\n. O O\n\nWe O O\nlocate O O\nthe O O\ninstances O O\nof O O\n\" Name Name\ndeauthorize Name Name\n\" Name Name\nby O O\nusing O O\nfactors O O\nto O O\nour O O\nadvantage O O\n. O O\n\nUsually O O\nthey O O\nare O O\na O O\npain O O\nbut O O\nin O O\nthis O O\ncase O O\nbeing O O\nable O O\nto O O\nquickly O O\nturn O O\nthe O O\nEventName Name Name\ncolumn Name Name\ninto O O\na O O\nseries O O\nof O O\n1 Name Name\n's O O\nand O O\n2 Name Name\n's O O\nhelps O O\nquicken O O\nthe O O\nsearch O O\n. O O\n\nCheck O O\nas.numeric(df$EventName) Name Name\nfor O O\nreference O O\n. O O\n\nWith O O\nthis O O\nindex O O\nwe O O\nthen O O\nneed O O\nto O O\nfind O O\ncases O O\nof O O\na O O\n1 Name Name\nfollowed O O\nby O O\na O O\n2 Name Name\n. O O\n\nAn O O\nefficient O O\nway O O\nto O O\ndo O O\nthat O O\nis O O\nto O O\nfind O O\nthe O O\ndifference O O\nof O O\neach O O\nelement O O\n. O O\n\ndiff(as.numeric(df$EventName)) Name Name\ndoes O O\nthat O O\nfor O O\nus O O\n. O O\n\nyou O O\ncan O O\nimagine O O\nwhich O O\nvalue O O\nof O O\nthat O O\nvector Name Name\nwill O O\ntarget O O\nthe O O\ncase O O\nwe O O\nare O O\nlooking O O\nfor O O\n, O O\n-1 Name Name\n. O O\n\nData O O\n\nPlease O O\nHelp O O\nme O O\n. O O\n\nI O O\n'm O O\nrunning O O\na O O\nface O O\nrecognition O O\ndetector O O\npython Name Name\nprogram O O\nthat O O\nwill O O\ndisplay O O\nthe O O\ndata O O\nfrom O O\nsqllite Name Name\nstudio Name Name\ndatabase O O\n.. O O\n. O O\n\nthat O O\nwas O O\nthe O O\nprogram O O\n\nthe O O\nerror O O\nwas O O\n\nAnd O O\ni O O\n'm O O\nusing O O\npython Name Name\n3.4 Name Name\nand O O\nopencv Name Name\n3.4 Name Name\n\nCan O O\nanyone O O\nhelp O O\nme O O\n?? O O\n? O O\n\nim O O\nnew O O\nin O O\npython Name Name\n. O O\n\nThank O O\nyou O O\nso O O\nmuch O O\n... O O\n. O O\n\nIndexing O O\nis O O\nzero-based O O\nin O O\nPython Name Name\n. O O\n\nThat O O\nmeans O O\n, O O\ncounting O O\nstarts O O\nfrom O O\n0 Name Name\nnot O O\n1 Name Name\n. O O\n\nTry O O\nchanging O O\nlines O O\n36 O O\nand O O\n38 O O\nto O O\n: O O\n\nHow O O\ncan O O\nI O O\ndo O O\nauthorization O O\nwith O O\nmy O O\nemail O O\nand O O\npassword O O\nwithout O O\ndialog Name Name\nbox Name Name\n? O O\n\nAnd O O\nhow O O\ncan O O\nI O O\ndo O O\nextend O O\naccess_token O O\n. O O\n\nFunction O O\ngetUser Name Name\nin O O\nPHP Name Name\nSDK Name Name\nalways O O\nreturn O O\n0 Name Name\n. O O\n\nI O O\nwant O O\ndo O O\npost O O\nfeed O O\non O O\nthe O O\nfan O O\ngroup O O\n's O O\nwall O O\nwith O O\ncronjob Name Name\n. O O\n\nI O O\ntry O O\nlike O O\nthat O O\n: O O\n\nIt O O\n's O O\nwork O O\n, O O\nbut O O\nwithin O O\nan O O\nhour O O\nand O O\nif O O\nI O O\nalready O O\nlogged O O\n\nAs O O\nsomeone O O\nwho O O\nis O O\nquite O O\nnew O O\nto O O\nSwift Name Name\nand O O\nCoreData Name Name\n, O O\nI O O\nam O O\nsure O O\nI O O\nam O O\ngoing O O\nabout O O\nthis O O\nthe O O\nwrong O O\nway O O\nand O O\nam O O\nhoping O O\nsomeone O O\nmight O O\nbe O O\nable O O\nto O O\nhelp O O\n. O O\n\nBackground O O\n: O O\nI O O\nam O O\ndownloading O O\nJSON Name Name\nover O O\nan O O\nAPI Name Name\n, O O\nand O O\ncaching O O\nthe O O\ncontent O O\nlocally O O\non O O\nan O O\niPad Name Name\nin O O\nCoreData Name Name\n. O O\n\nAs O O\npart O O\nof O O\nthe O O\nprocess O O\n, O O\nI O O\nneed O O\nto O O\ndownload O O\na O O\nsmall O O\nimage Name Name\nthumbnail Name Name\n, O O\nwhich O O\nI O O\nam O O\nalso O O\nstoring O O\nin O O\nCoreData Name Name\n( O O\nas O O\na O O\nTransformable Name Name\n) O O\n. O O\n\nI O O\nwas O O\ndoing O O\n: O O\nMy O O\noriginal O O\nimplementation O O\ndownloaded O O\nimages Name Name\nand O O\nsaved O O\nthem O O\nto O O\nCoreData Name Name\n, O O\nbut O O\nalthough O O\nit O O\nis O O\nbeing O O\ntriggered O O\nfrom O O\na O O\nbackground O O\nthread O O\n( O O\na O O\ncallback O O\nfollowing O O\nthe O O\nAPI Name Name\ncall O O\n) O O\n, O O\nthe O O\nactual O O\ndownloading O O\nof O O\nthe O O\nimages Name Name\nseems O O\nto O O\ncause O O\nthe O O\napp O O\nto O O\nhang O O\n: O O\n\nWhat O O\nI O O\nam O O\nnow O O\ndoing O O\n: O O\nI O O\nhave O O\nsince O O\nupdated O O\nmy O O\ncode O O\nto O O\nthe O O\nfollowing O O\n: O O\n\nI O O\nthen O O\ncall O O\nthe O O\ncode O O\nthus O O\n: O O\n\nDoing O O\nthis O O\n, O O\nI O O\ndo O O\nn't O O\nget O O\nany O O\nblocks O O\non O O\nthe O O\nmain O O\nthread O O\nthat O O\nI O O\nnotice O O\n. O O\n\nInspecting O O\nthe O O\nsqlite Name Name\nfile O O\nfrom O O\nthe O O\ndevice O O\n, O O\nit O O\nlooks O O\nas O O\nthough O O\nthe O O\ndata O O\nis O O\ngetting O O\nset O O\nproperly O O\n, O O\nbut O O\nthe O O\nimages Name Name\nare O O\nnot O O\nshowing O O\nup O O\nin O O\nthe O O\nUI O O\n. O O\n\nIs O O\nmy O O\nmethod O O\ncompletely O O\nwrong O O\n? O O\n\nIf O O\nnot O O\n, O O\nhow O O\ncan O O\nI O O\ninform O O\nthe O O\nUI O O\nthat O O\nthe O O\ncore Name Name\ndata Name Name\nmodel O O\nhas O O\nbeen O O\nupdated O O\nin O O\nsuch O O\na O O\nway O O\nthat O O\nwill O O\ncause O O\na O O\nrefresh O O\n? O O\n\nWhat O O\nfunction O O\ncan O O\nbe O O\ncalled O O\nto O O\nupdate O O\na O O\nspecific O O\nrow/cell Name Name\nof O O\na O O\ntable/uicollectionview Name Name\n? O O\n\nYour O O\nNSURLConnection Name Name\n's O O\ncallbacks O O\nare O O\nhappening O O\non O O\nthe O O\nmain O O\nqueue Name Name\n. O O\n\nThis O O\nis O O\none O O\nreason O O\nyour O O\napplication O O\nis O O\nlocking O O\nup O O\n. O O\n\nYour O O\nmanaged O O\nobject O O\ncontext O O\n, O O\nat O O\nleast O O\nin O O\nthe O O\ncode O O\nyou O O\nhave O O\nposted O O\n, O O\nis O O\nnot O O\nfollowing O O\nthe O O\nCore Name Name\nData Name Name\nconcurrency O O\nrules O O\n. O O\n\nYou O O\nhave O O\na O O\nchoice O O\nbetween O O\nthread O O\nconfinement O O\n( O O\nunfortunately O O\n, O O\nthe O O\ndefault O O\n, O O\nwhich O O\nis O O\nobsolete O O\n) O O\n, O O\nand O O\nqueue Name Name\nconfinement O O\n. O O\n\nWith O O\nthread O O\nconfinement O O\n, O O\nyou O O\ncan O O\nonly O O\nuse O O\na O O\nmanaged O O\nobject O O\ncontext O O\nfrom O O\nthe O O\nthread O O\nwhere O O\nit O O\nwas O O\ncreated O O\n. O O\n\nIf O O\nyou O O\ncreated O O\nyour O O\nmanaged O O\nobject O O\ncontext O O\non O O\nthe O O\nmain O O\nthread O O\n( O O\nor O O\nqueue Name Name\n) O O\n, O O\nyou O O\ncan O O\nonly O O\nuse O O\nit O O\nfrom O O\nthere O O\n- O O\nso O O\nany O O\nCore Name Name\nData Name Name\noperation O O\nyou O O\nperform O O\non O O\nthat O O\ncontext O O\nwill O O\nblock O O\nthe O O\nmain O O\nthread O O\n, O O\nand O O\nin O O\nturn O O\nthe O O\nUI O O\n. O O\n\nUsing O O\nqueue Name Name\nconfinement O O\n( O O\nalmost O O\n) O O\nany O O\noperation O O\non O O\nthe O O\nmanaged O O\nobject O O\ncontext O O\nmust O O\ngo O O\nthrough O O\neither O O\nthe O O\nperformBlock Name Name\n: Name Name\nor O O\nperformBlockAndWait Name Name\n: Name Name\nmethods O O\n. O O\n\nThe O O\nenqueued O O\nblock O O\nis O O\nexecuted O O\non O O\nthe O O\ncontext O O\n's O O\nserial O O\nqueue Name Name\n. O O\n\nThis O O\nis O O\nfar O O\nless O O\nfailure O O\nprone O O\nthan O O\nthread O O\nconfinement O O\nand O O\nhas O O\nbeen O O\nthe O O\nrecommended O O\npractice O O\nfor O O\nconcurrency O O\nsince O O\niOS Name Name\n5 Name Name\n. O O\n\nTypically O O\nthis O O\nwould O O\nbe O O\ndone O O\nusing O O\nan O O\nNSFetchedResultsController Name Name\n, O O\nwhich O O\nobserves O O\na O O\nmanaged O O\nobject O O\ncontext O O\nfor O O\nchanges O O\nrelevant O O\nto O O\nit O O\n's O O\nfetch O O\nrequest O O\n. O O\n\nOnce O O\nthe O O\ninitial O O\nfetch O O\npopulates O O\nthe O O\ncontroller O O\nit O O\nwill O O\nlisten O O\nfor O O\nchanges O O\nto O O\nthe O O\ncontext O O\nthat O O\naffect O O\nthe O O\nobjects O O\nspecified O O\nby O O\nthe O O\nfetch O O\nrequest O O\n. O O\n\nWhen O O\nrelevant O O\nchanges O O\noccur O O\nthe O O\ncontroller O O\ninforms O O\nit O O\n's O O\ndelegate O O\nthrough O O\ncallbacks O O\n. O O\n\nI O O\nwant O O\nto O O\ncopy O O\na O O\npart O O\nof O O\nBufferedImage Name Name\n, O O\nbut O O\nthe O O\ncopying O O\nform O O\nis O O\nnot O O\na O O\nsimple O O\nsquare O O\nbut O O\nrather O O\na O O\nsquare O O\nrotated O O\non O O\nsome O O\nangle O O\n. O O\n\nAs O O\nan O O\noutput O O\nI O O\nwant O O\nto O O\nget O O\nthe O O\nBufferedImage Name Name\nwith O O\nwidth O O\nand O O\nheight O O\nequals O O\nto O O\nthe O O\ncopying O O\nsquare O O\nsize O O\nand O O\ncontents O O\nfrom O O\nthe O O\ninitial O O\nimage Name Name\n, O O\nwhere O O\ncopying O O\nsquare O O\nintersects O O\nthe O O\ninitial O O\nimage Name Name\n. O O\n\nWhat O O\nis O O\nthe O O\nsimplest O O\nway O O\nto O O\ndo O O\nit O O\n? O O\n\nA O O\nsimple O O\napproach O O\nwould O O\nbe O O\nto O O\ncreate O O\na O O\nnew O O\nimage Name Name\nwith O O\nthe O O\ndesired O O\nsize O O\n, O O\ntransform O O\na O O\nGraphics2D Name Name\nof O O\nthis O O\nimage Name Name\naccording O O\nto O O\nthe O O\nselected O O\nsquare O O\nregion O O\n, O O\nand O O\nthen O O\nsimply O O\npaint O O\nthe O O\noriginal O O\nimage Name Name\ninto O O\nthis O O\ngraphics Name Name\n: O O\n\nControl O O\n' O O\nGridView1 Name Name\n' O O\nof O O\ntype O O\n' O O\nGridView Name Name\n' O O\nmust O O\nbe O O\nplaced O O\ninside O O\na O O\nform Name Name\ntag O O\nwith O O\nrunat Name Name\n= Name Name\nserver Name Name\n. O O\n\nWhen O O\nI O O\nexport O O\nthe O O\nGridview Name Name\nto O O\nExcel Name Name\n, O O\nI O O\nget O O\nan O O\nerror O O\nlike O O\nthis O O\n. O O\n\nCan O O\nyou O O\nhelp O O\nme O O\n? O O\n\nMy O O\ncode O O\nexample O O\nis O O\nas O O\nfollows O O\n. O O\n\nI O O\nthink O O\n, O O\nyou O O\ncan O O\nuse O O\nbelow O O\nthe O O\nexample O O\n. O O\n\n.aspx Name Name\nfile O O\ncontens O O\n\n.aspx.vb Name Name\nfile O O\ncontents O O\n\nThere O O\nare O O\ntwo O O\nviews Name Name\nin O O\nmy O O\napplication O O\n. O O\n\nAfter O O\nlaunching O O\nthe O O\napp O O\nI O O\nswitch O O\nthe O O\nview Name Name\nwith O O\nbutton Name Name\nlike O O\nthis O O\n: O O\n\nBut O O\nwhenever O O\ni O O\nswitch O O\nthe O O\nview Name Name\nthe O O\ncode O O\nabove O O\ninitialize O O\nthe O O\nview Name Name\n. O O\n\nI O O\nwant O O\nto O O\nmaintain O O\nprevious O O\nstatus O O\nof O O\nthe O O\nview Name Name\n. O O\n\nHow O O\ncan O O\nI O O\nsolve O O\nthis O O\nproblem O O\n? O O\n\nOn O O\nan O O\niPad Name Name\nthis O O\nwill O O\npresent O O\nthe O O\nsecond O O\nview Name Name\nmodally O O\n, O O\nas O O\ndictated O O\nby O O\nthe O O\nviews O O\nmodalTransitionStyle Name Name\n. O O\n\nSo O O\nthere O O\nyou O O\ncould O O\nget O O\nback O O\nto O O\nthe O O\noriginal O O\nby O O\ncalling O O\ndismissViewControllerAnimated:completion Name Name\n: O O\non O O\nthe O O\nnew O O\nViewController Name Name\n. O O\n\nOn O O\nthe O O\niPhone Name Name\nyou O O\ncan O O\nuse O O\na O O\nUINavigationController Name Name\nin O O\nyour O O\nstoryboard Name Name\nto O O\npush O O\nand O O\nthen O O\npop O O\nthe O O\nsecondViewController Name Name\n. O O\n\nAs O O\nlong O O\nas O O\nyou O O\nare O O\nusing O O\nthe O O\nstoryboard O O\n, O O\nyou O O\ncan O O\nset O O\nup O O\nthe O O\ntransition O O\nthere O O\nand O O\nthe O O\nperform O O\nit O O\nusing O O\n- O O\nperformSegueWithIdentifier:sender Name Name\n: Name Name\nfrom O O\nyour O O\nbutton Name Name\n. O O\n\nOr O O\nfor O O\nthat O O\nmatter O O\nyou O O\ncan O O\nconnect O O\nthe O O\nsegue Name Name\ndirectly O O\nto O O\nyour O O\nbutton Name Name\nin O O\nwhich O O\ncase O O\nthe O O\ntransition O O\nwill O O\nbe O O\nperformed O O\nwithout O O\nadditional O O\ncode O O\n. O O\n\ninstantiateViewControllerWithIdentifier Name Name\n: Name Name\nalways O O\nreturns O O\na O O\nnew O O\ninstance O O\nof O O\nan O O\nUIViewController Name Name\n. O O\n\nYou O O\nneed O O\nto O O\nkeep O O\na O O\nreference O O\nto O O\na O O\nprevious O O\none O O\nif O O\nyou O O\ndo O O\nn't O O\nwant O O\nto O O\ncreate O O\nit O O\nover O O\nand O O\nover O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nmake O O\nAvplayer Name Name\nresume O O\nfrom O O\nwhere O O\nit O O\nstopped O O\n, O O\nby O O\nmake O O\nglobal Name Name\nvalue O O\nof O O\ntype O O\nCMtime Name Name\nand O O\nstore O O\ncurrenttime Name Name\nthen O O\nuse O O\nit O O\nto O O\nresume O O\nfrom O O\nwhere O O\nit O O\nstopped O O\n\nMy O O\ncode O O\n: O O\n\nWhen O O\nI O O\ntry O O\nto O O\nuse O O\nseek(to:) Name Name\n\nnothing O O\nchanged O O\nit O O\nalso O O\nstart O O\nfrom O O\nbeginning O O\n! O O\n\nI O O\ntry O O\nto O O\nchange O O\ncurrenttime Name Name\nby O O\nusing O O\n\nI O O\ndid O O\nn't O O\nknow O O\nwhy O O\nit O O\nalways O O\nstart O O\nfrom O O\nbeginning O O\n\nI O O\nwas O O\nusing O O\nAVAudioPlayer Name Name\nand O O\nit O O\nwas O O\nmuch O O\neasier O O\nthan O O\nAVplayer Name Name\n\nbut O O\nbecause O O\nI O O\nneed O O\nto O O\nstream O O\nAudio O O\nI O O\nchange O O\nit O O\nto O O\nAVplayer Name Name\n\nI O O\nfound O O\na O O\nsolution O O\n, O O\n\nI O O\ngot O O\nseconds Name Name\nfrom O O\nCMtime Name Name\nusing O O\nthis O O\ncode O O\n, O O\nand O O\nadd O O\nit O O\non O O\nUnwind Name Name\nsegue Name Name\nfunction O O\n\n2.in O O\nviewdidload Name Name\nI O O\nuse O O\nthis O O\ncode O O\n\nit O O\n's O O\na O O\nsolution O O\nbut O O\nnot O O\na O O\nperfect O O\nsolution O O\n, O O\neverytime O O\nit O O\nre-download O O\na O O\naudio O O\nfile O O\nto O O\nresume O O\nit O O\n, O O\nthat O O\nmean O O\nIf O O\nI O O\nplay O O\na O O\nfile O O\nand O O\nthen O O\nI O O\nreturn O O\nto O O\ntableview O O\nthen O O\nreturn O O\nback O O\n, O O\nit O O\nwill O O\npurse O O\nand O O\nwait O O\nsome O O\nsecond O O\nthen O O\nplay O O\nit O O\nfrom O O\nwhere O O\nit O O\nstopped O O\n. O O\n\nI O O\nhave O O\na O O\ntable Name Name\ncell Name Name\nin O O\nmy O O\nxml Name Name\nfile O O\n, O O\nwhich O O\nhas O O\ntwo O O\nTextViews Name Name\n. O O\n\nNow O O\n, O O\ni O O\nwant O O\nto O O\ncreate O O\ncopies O O\nof O O\nthat O O\ncell Name Name\nand O O\nassign O O\nvalues O O\ninto O O\nthrough O O\nthe O O\njava Name Name\ncode O O\n. O O\n\nAll O O\nother O O\ncells Name Name\nshould O O\nhave O O\nthe O O\nsame O O\nproperty O O\nas O O\nthat O O\none O O\n. O O\n\n( O O\ncell Name Name\nbackground O O\ncolor O O\n, O O\nfont O O\ntype O O\n, O O\nfont O O\nsize O O\netc O O\n) O O\n. O O\n\nThat O O\ncell Name Name\nwill O O\nspan O O\nthe O O\nentire O O\nfirst O O\nrow Name Name\n, O O\nand O O\nthen O O\nthe O O\nresulting O O\nrow Name Name\nwill O O\nbe O O\nused O O\nto O O\ncreate O O\nmultiple O O\nrows Name Name\nafter O O\nthat O O\n. O O\n\nCan O O\nanyone O O\nhelp O O\nme O O\nachieve O O\nthe O O\nabove O O\n. O O\n\nI O O\n'm O O\nnew O O\nto O O\nandroid Name Name\nprogramming O O\n. O O\n\nThis O O\nis O O\nmy O O\npart O O\nof O O\nmy O O\nxml Name Name\nfile O O\n. O O\n\nWhen O O\nI O O\nrun O O\n.gradlew Name Name\ncreateCoverageReport Name Name\nI O O\nget O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\nBut O O\nwhen O O\nI O O\naccess O O\nthat O O\nindex.html Name Name\nit O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nI O O\ndo O O\nn't O O\nunderstand O O\nwhy O O\nits O O\ncrashing. O O\n. O O\nthe O O\nbuild O O\ngets O O\nto O O\nabout O O\n98% O O\nbefore O O\nthis O O\nfail O O\n. O O\n\nI O O\nhave O O\na O O\nnexus Name Name\n5 Name Name\nconnected O O\nrunning O O\n4.4. Name Name\n. O O\n\nmy O O\nbuild.gradle Name Name\nlooks O O\nlike O O\nthis O O\n: O O\n\nThe O O\napply O O\nplug-in O O\npart O O\ncauses O O\nthe O O\ntests O O\nto O O\nnot O O\nrun O O\n. O O\n\nLike O O\nBill O O\nsuggested O O\ngradle Name Name\n's O O\nlatest O O\nrelease O O\nhas O O\njacoco Name Name\npackaged O O\nwithin O O\nso O O\nit O O\nneed O O\nn't O O\nbe O O\napplied O O\nanymore O O\n. O O\n\nMy O O\ntests O O\nrecently O O\nbroke O O\nbecause O O\nof O O\nthis O O\n. O O\n\nRemoving O O\nthat O O\nline O O\nfixed O O\nmy O O\nissue O O\nand O O\nI O O\nget O O\nmy O O\nreports O O\nagain O O\n. O O\n\nCouple O O\nthings O O\n. O O\n\nTo O O\nfix O O\nyour O O\nfirst O O\nerror O O\n\" O O\nInstrumentation O O\nrun O O\nfailed O O\ndue O O\nto O O\n' O O\njava.lang.VerifyError O O\n' O O\n\" O O\n, O O\nupgrade O O\nyour O O\nbuild Name Name\ntools Name Name\nto O O\n21+ Name Name\n. O O\n\nThis O O\nis O O\na O O\nbug O O\nin O O\nthe O O\nandroid Name Name\nbuild Name Name\ntools Name Name\nthat O O\nthey O O\nhave O O\nfixed O O\n. O O\n\nHooray O O\n! O O\n\nYou O O\ndo O O\nn't O O\nhave O O\nto O O\napply O O\nthe O O\njacoco Name Name\nplugin O O\n, O O\nit O O\nis O O\npart O O\nof O O\nthe O O\nandroid Name Name\ngradle Name Name\nplugin O O\n. O O\n\nAll O O\nyou O O\nneed O O\nis O O\n' O O\ntestCoverageEnabled Name Name\ntrue Name Name\n' O O\nand O O\nit O O\nwill O O\ncreate O O\nyour O O\n.ec Name Name\nfile O O\n. O O\n\nApplying O O\nthe O O\nplugin O O\ndoes O O\nn't O O\nhurt O O\nas O O\nfar O O\nas O O\nI O O\nknow O O\n, O O\nbut O O\nit O O\n's O O\nhelpful O O\nto O O\nget O O\nyour O O\nmind O O\naround O O\nthe O O\nfact O O\nthat O O\njacoco Name Name\nis O O\nin O O\nthere O O\nalready O O\n. O O\n\nThe O O\noverride O O\nfor O O\n' O O\nreportsDir Name Name\n' O O\nmight O O\nnot O O\nwork O O\n, O O\nso O O\nyou O O\nshould O O\nalso O O\nlook O O\nfor O O\nyour O O\nreport O O\nin O O\n' O O\nbuild/outputs/reports/coverage/debug/index.html O O\n' O O\n. O O\n\nhow O O\nto O O\nmap O O\nclosest O O\ncraigslist Name Name\nsite O O\nfor O O\na O O\ngiven O O\naddress(zip) O O\n? O O\n\nor O O\nI O O\nwas O O\nthinking O O\nof O O\nmaking O O\nthat O O\nmapping O O\nmyself O O\nby O O\nlooking O O\nat O O\nthe O O\nlist O O\nof O O\ncraigslist Name Name\nsites O O\ncity-wise/state O O\n-wise O O\n. O O\n\nIndeed O O\n, O O\nI O O\nbelieve O O\nthe O O\nbest O O\nsolution O O\nis O O\nto O O\nget O O\na O O\nlist O O\nof O O\nCraigslist Name Name\nsites/cities O O\n, O O\nprebuild O O\na O O\nmapping O O\nof O O\ncities O O\nto O O\ncoordinates O O\nusing O O\nsome O O\ngeocoding Name Name\nAPI O O\n( O O\nTiny Name Name\nGeocoder Name Name\ncomes O O\nto O O\nmind O O\nbut O O\nYahoo Name Name\nand O O\nBing Name Name\noffer O O\ngood O O\nsolutions O O\ntoo O O\n) O O\n, O O\nand O O\nthen O O\nstoring O O\nit O O\nin O O\na O O\nway O O\nthat O O\nmakes O O\nsort-by-nearest O O\neasy O O\n( O O\nsay O O\n, O O\nMySQL Name Name\n's O O\ngeospatial O O\nextensions O O\nor O O\nMongoDB's Name Name\n) O O\n. O O\n\nI O O\ncame O O\nacross O O\na O O\nbug O O\nin O O\ncode O O\nthat O O\nis O O\nonly O O\nreproduced O O\nwhen O O\nthe O O\ncode O O\nis O O\nbuilt O O\nwith O O\noptimizations O O\nenabled O O\n. O O\n\nI O O\n've O O\nmade O O\na O O\nconsole Name Name\napp O O\nthat O O\nreplicates O O\nthe O O\nlogic O O\nfor O O\ntesting O O\n( O O\ncode O O\nbelow O O\n) O O\n. O O\n\nYou O O\n'll O O\nsee O O\nthat O O\nwhen O O\noptimization O O\nis O O\nenabled O O\n' O O\nvalue Name Name\n' O O\nbecomes O O\nnull Name Name\nafter O O\nexecution O O\nof O O\nthis O O\ninvalid O O\nlogic O O\n: O O\n\nThe O O\nfix O O\nis O O\nstraight O O\nforward O O\nand O O\nis O O\ncommented O O\nout O O\nbelow O O\nthe O O\noffending O O\ncode O O\n. O O\n\nBut O O\n.. O O\n. O O\n\nI O O\n'm O O\nmore O O\nconcerned O O\nthat O O\nI O O\nmay O O\nhave O O\ncome O O\nacross O O\na O O\nbug O O\nin O O\nthe O O\nassembler Name Name\nor O O\nperhaps O O\nsomeone O O\nelse O O\nhas O O\nan O O\nexplanation O O\nof O O\nwhy O O\nvalue Name Name\ngets O O\nset O O\nto O O\nnull Name Name\n. O O\n\nThe O O\nnormal O O\noutput O O\nshould O O\nbe O O\n: O O\n\nThe O O\nbuggy O O\noutput O O\nis O O\n: O O\n\nMy O O\nEnv O O\nis O O\na O O\nVM Name Name\nrunning O O\nWindows Name Name\nServer Name Name\n2003 Name Name\nR2 Name Name\nwith O O\n.NET Name Name\n3.5 Name Name\nSP1 Name Name\n. O O\n\nUsing O O\nVS2008 Name Name\nTeam O O\nSystem O O\n. O O\n\nThanks O O\n, O O\n\nBrian O O\n\nYes O O\n, O O\nyour O O\nexpression O O\nfatally O O\nconfuses O O\nthe O O\nJIT O O\noptimizer O O\n. O O\n\nThe O O\ngenerated O O\nmachine O O\ncode O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nThe O O\nbug O O\noccurs O O\nat O O\naddress Name Name\n41 Name Name\n, O O\nthe O O\noptimizer O O\nhas O O\nconcluded O O\nthat O O\nvalue Name Name\nwill O O\nalways O O\nbe O O\nnull Name Name\nso O O\nit O O\ndirectly O O\npasses O O\na O O\nnull Name Name\nto O O\nString.Concat() Name Name\n. O O\n\nFor O O\ncomparison O O\n, O O\nthis O O\nis O O\nthe O O\ncode O O\nthat O O\n's O O\ngenerated O O\nwhen O O\nJIT O O\noptimization O O\nis O O\nturned O O\noff O O\n: O O\n\nThe O O\ncode O O\ngot O O\nmoved O O\n, O O\nbut O O\ndo O O\nnote O O\nthat O O\nat O O\naddress Name Name\n5c Name Name\nit O O\nnow O O\nuses O O\nthe O O\nlocal O O\nvariable O O\n( O O\nvalue Name Name\n) O O\ninstead O O\nof O O\nnull Name Name\n. O O\n\nYou O O\ncan O O\nreport O O\nthis O O\nbug O O\nat O O\nconnect.microsoft.com O O\n. O O\n\nThe O O\nworkaround O O\nis O O\nsimple O O\n: O O\n\nThis O O\nbug O O\nseems O O\nto O O\nhave O O\nbeen O O\nfixed O O\nin O O\n.NET Name Name\n4 Name Name\n( O O\nbeta Name Name\n2) Name Name\n. O O\n\nHere O O\n's O O\nthe O O\noptimized O O\nx86 O O\ndisassembly O O\nfor O O\nthe O O\nbit O O\nnobugz O O\nhighlighted O O\n, O O\nabove O O\n: O O\n\nThe O O\nprogram O O\nalso O O\ndisplays O O\nthe O O\nexpected O O\noutput O O\nin O O\nboth O O\noptimized O O\nand O O\nunoptimized O O\nmodes O O\n. O O\n\nI O O\nam O O\nuse O O\nto O O\ndevelop O O\none O O\nweb O O\napp O O\nusing O O\nForge Name Name\nAPI Name Name\n. O O\n\nIt O O\n's O O\nworking O O\nwell O O\nand O O\ngood O O\n. O O\n\nAt O O\nthe O O\nsame O O\ntime O O\nam O O\nusing O O\ndesign O O\nautomation O O\nin O O\nforge Name Name\n. O O\n\nI O O\ncan O O\nable O O\nto O O\ncreate O O\nPackage O O\nand O O\nit O O\n's O O\nworking O O\nfine O O\n. O O\n\nI O O\nwill O O\nprocess O O\nthe O O\ndwg Name Name\nfile O O\nusing O O\nforge Name Name\napi Name Name\npreparing O O\nto O O\nviewer O O\n. O O\n\nI O O\ncan O O\nable O O\nto O O\nview O O\ndwg Name Name\nin O O\nbrowser Name Name\n. O O\n\nMy O O\nissue O O\nis O O\nI O O\nhave O O\nviewer O O\nclick O O\nevent O O\nthe O O\nevent O O\nclick O O\npopulate O O\nthe O O\nelement Name Name\nid Name Name\n. O O\n\nHowever O O\n, O O\nmy O O\npackage O O\nI O O\ncan O O\nget O O\nonly O O\nthe O O\nobject Name Name\nid Name Name\n. O O\n\nelement Name Name\nid Name Name\nand O O\nobject Name Name\nid Name Name\ntotally O O\ndifferent O O\n. O O\n\nWhat O O\nis O O\nthe O O\nconman Name Name\nid Name Name\neach O O\nobject O O\nclient O O\nand O O\nserver O O\nside O O\n. O O\n\nSummary O O\n: O O\nwhen O O\nuser O O\nclick O O\nthe O O\nobject O O\nin O O\nviewer O O\nI O O\nwant O O\nto O O\ncapture O O\nid O O\nand O O\nstore O O\nmy O O\nlocal O O\ndatabase O O\n. O O\n\nand O O\nusing O O\npackage O O\nI O O\nneed O O\nto O O\nprocess O O\nthe O O\nuser O O\nclicked O O\nobject O O\n. O O\n\nExample O O\n: O O\nwhen O O\nuser O O\nclick O O\nthe O O\ndrawing O O\nnumber O O\nin O O\nviewer O O\n. O O\n\nFrom O O\nthe O O\nnext O O\ntime O O\nI O O\nwant O O\nchange O O\nthe O O\ndrawing O O\nnumber O O\ndynamically O O\nusing O O\ncall O O\npackage O O\nfrom O O\nC# Name Name\ncode O O\n. O O\n\nFor O O\nan O O\nRVT Name Name\nfile O O\n, O O\none O O\neasy O O\nway O O\nto O O\nhandle O O\nthis O O\nis O O\nto O O\nextract O O\nthe O O\nForge Name Name\nexternalId Name Name\nfrom O O\nthe O O\nForge Name Name\nobject O O\nproperties O O\n. O O\n\nThat O O\nis O O\nequal O O\nto O O\nthe O O\nRevit O O\nelement O O\nUniqueId Name Name\nproperty O O\n. O O\n\nThe O O\nRvtMetaProp Name Name\nRevit Name Name\nadd-in O O\nmakes O O\nuse O O\nof O O\nthis O O\n. O O\n\nOh O O\n, O O\nnow O O\nI O O\njust O O\nfound O O\na O O\nbetter O O\n, O O\nmore O O\ncomplete O O\nand O O\nsuccinct O O\nexplanation O O\nof O O\nUnique O O\nIDs O O\nfor O O\nForge Name Name\nViewer Name Name\nElements O O\n: O O\n\nThe O O\nViewer Name Name\ngives O O\naccess O O\nto O O\nthree O O\ntypes O O\nof O O\nIDs O O\nwhen O O\ndealing O O\nwith O O\nRevit Name Name\nfiles O O\n: O O\n\ndbId Name Name\n: O O\nthis O O\nis O O\nviewer O O\nspecific O O\nand O O\nused O O\nto O O\nmanipulate O O\nelements O O\nwithin O O\nthe O O\nviewer O O\n, O O\nsuch O O\nas O O\nfor O O\nthe O O\n.getProperties() Name Name\nmethod O O\n. O O\n\nRevit Name Name\nElementID Name Name\n: O O\nexposed O O\nas O O\npart O O\nof O O\nthe O O\nName Name Name\nproperty O O\nin O O\nthe O O\nviewer O O\n. O O\n\nWhen O O\nyou O O\nselect O O\nsomething O O\n, O O\nthe O O\nProperty Name Name\npanel Name Name\ntitle O O\nis O O\nin O O\nthe O O\nform O O\nof O O\n' Name Name\nName Name Name\n[ Name Name\n12345 Name Name\n] Name Name\n' Name Name\n. O O\n\nYou O O\ncan O O\nparse O O\nthis O O\nname O O\nstring Name Name\nand O O\nextract O O\nthe O O\nelement Name Name\nid Name Name\n. O O\n\nRevit Name Name\nUniqueID Name Name\n: O O\nexposed O O\nas O O\nthe O O\nexternalId Name Name\nproperty O O\nin O O\nthe O O\n.getProperty() Name Name\nresponse O O\n. O O\n\nI O O\nwas O O\nsurprised O O\nthat O O\nthere O O\nis O O\nno O O\nstraightforward O O\nsolution O O\nto O O\nthis O O\nproblem O O\n. O O\n\nNothing O O\nI O O\nfound O O\non O O\nthe O O\nweb O O\nor O O\non O O\nSO Name Name\nseems O O\nto O O\nwork O O\n. O O\n\nFor O O\nexample O O\nI O O\nhave O O\nthis O O\nhtml Name Name\ncode O O\n: O O\n\nI O O\nwant O O\nto O O\nevoke O O\nsave O O\nas O O\ndialog Name Name\nwhen O O\nuser O O\nclicks O O\non O O\nthis O O\nimage Name Name\n, O O\ninstead O O\nopening O O\nthe O O\nimage Name Name\nin O O\nnew O O\nwindow Name Name\n, O O\nas O O\nit O O\n's O O\na O O\nformat O O\nunderstood O O\nby O O\nbrowser Name Name\n. O O\n\nThere O O\nmust O O\nbe O O\nat O O\nleast O O\nsome O O\njavascript Name Name\nto O O\ndo O O\nthe O O\ntask O O\n, O O\nor O O\n? O O\n\nYou O O\nabsolutely O O\ncannot O O\ndo O O\nit O O\non O O\nclient Name Name\nside O O\n, O O\nneither O O\nin O O\nHTML Name Name\n, O O\nnor O O\nJavascript Name Name\n, O O\nit O O\ncan O O\nonly O O\nbe O O\ndone O O\nby O O\nsending O O\nthe O O\ncorrect O O\nHTTP O O\nresponse O O\nheaders O O\nfrom O O\nserver Name Name\nside O O\n. O O\n\nI O O\nam O O\ngetting O O\nfollowing O O\nerror O O\nwhen O O\nhitting O O\nFEB Name Name\nREST Name Name\nAPI Name Name\nfor O O\ngetting O O\nrecord O O\n. O O\n\nI O O\nam O O\npassing O O\nAuthorization O O\nheader O O\nand O O\nusing O O\nget O O\nrequest O O\nusing O O\nfollowing O O\nURL O O\nand O O\nI O O\nam O O\nusing O O\nJava Name Name\nfor O O\ncalling O O\nthe O O\nREST Name Name\nAPI Name Name\n. O O\n\nIf O O\nI O O\nam O O\nhitting O O\nsame O O\nURL O O\nusing O O\npostman Name Name\n, O O\nit O O\nworks O O\nperfectly O O\n. O O\n\nURL O O\n: O O\nhttp://localhost/forms-basic/secure/org/data/f0720c16-d4b8-442f-8674-2d7fbdab8afc/F_Form1/8d4dfeed-aa11-45fc-a958-23d62d9328cc O O\n\nI O O\nhave O O\npassed O O\naccept O O\nheader O O\nas O O\napplication/atom Name Name\n+xml Name Name\nin O O\nthe O O\nrequest O O\nheader O O\n, O O\nand O O\nnow O O\nit O O\nis O O\nworking O O\nfine O O\n, O O\nwithout O O\nany O O\nissues O O\n. O O\n\nThere O O\nare O O\ntwo O O\nways O O\nto O O\nmake O O\ndrop Name Name\ndown Name Name\nlist Name Name\nin O O\nExcel Name Name\n: O O\n\nData Name Name\nvalidation Name Name\nlist Name Name\n\nCombobox Name Name\nform O O\ncontrol O O\n\nNow O O\nin O O\nmy O O\nproject O O\nI O O\nhave O O\nData Name Name\nvalidation Name Name\ndropdown Name Name\nlists Name Name\nwich O O\ncan O O\nbe O O\ntoo O O\nlong O O\nand O O\nI O O\nwant O O\nto O O\nadd O O\nsearch O O\nfunctionality O O\nfor O O\nit O O\n. O O\n\nI O O\n've O O\nfind O O\nsome O O\nsolutions O O\nbut O O\nonly O O\nfor O O\ncombobox Name Name\ncontrol O O\n, O O\nwhich O O\nnot O O\napplicable O O\nfor O O\nmy O O\nExcel Name Name\ndocument O O\n, O O\nbecause O O\ntheese O O\ndropdown Name Name\nlists Name Name\nshould O O\nbe O O\nrepeated O O\nin O O\neach O O\nrow Name Name\n: O O\n\nIs O O\nthere O O\nany O O\npossible O O\nsolution O O\nto O O\nadd O O\nsearch O O\nfunctionality O O\nto O O\ndatavalidation O O\ndropdown Name Name\nlist Name Name\n? O O\n\nI O O\n'm O O\ntrying O O\nto O O\nsend O O\nobjects O O\nretrieved O O\nby O O\nNHibernate Name Name\nover O O\nWCF Name Name\n, O O\nbut O O\nwhenever O O\na O O\nhave O O\na O O\nproperty O O\nof O O\nICollection Name Name\nI O O\nget O O\nan O O\nexception Name Name\n. O O\n\nWhen O O\nNHibernate Name Name\ngets O O\nthe O O\ndata O O\nfrom O O\nthe O O\ndatabase O O\nthis O O\nproperty O O\nis O O\nintitialized O O\nwith O O\nan O O\ninstance O O\nof O O\nPersistentGenericSet Name Name\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nI O O\ncan O O\nsend O O\na O O\nPersistentGenericSet Name Name\nover O O\nWCF Name Name\n? O O\n\n-or O O\n- O O\n\nIs O O\nthere O O\nsome O O\nway O O\nmaking O O\nNHibernate Name Name\ninitialize O O\nthese O O\nproperties O O\nwith O O\nanother O O\ntype O O\n? O O\n\nThe O O\nPersistentGenericSet Name Name\nis O O\npart O O\nof O O\nNHibernate Name Name\n( O O\nused O O\nto O O\ntrack O O\nchanges O O\nin O O\ncollections O O\n) O O\n. O O\n\nIt O O\nis O O\nbased O O\non O O\nthe O O\nISet Name Name\ninterface O O\nand O O\nclasses O O\nfrom O O\nIesi.Collections Name Name\n, O O\nwhich O O\nwas O O\nused O O\nto O O\nfill O O\na O O\ngap O O\nin O O\nthe O O\n.Net Name Name\nframework O O\nas O O\nthere O O\nis O O\nn't O O\na O O\nSet Name Name\ntype O O\n. O O\n\nI O O\nguess O O\nthat O O\nWCF Name Name\nhas O O\na O O\nproblem O O\nserializing O O\nthis O O\ntype O O\n. O O\n\nA O O\nquick O O\nfix O O\nis O O\nto O O\nchange O O\nyour O O\nNHibernate Name Name\nmappings O O\nto O O\nuse O O\na O O\nBag Name Name\ninstead O O\nof O O\na O O\nSet Name Name\n. O O\n\nThen O O\nyou O O\ncan O O\nuse O O\na O O\nnormal O O\nIList Name Name\n<T> Name Name\ninstead O O\nof O O\nSet<T> Name Name\nin O O\nyour O O\nclasses O O\nw O O\n. O O\n\nA O O\nbetter O O\nsolution O O\nis O O\nto O O\ncreate O O\na O O\nremote O O\nfacade O O\nwhich O O\nsends O O\nDTOs O O\nto O O\nyour O O\nWCF Name Name\nendpoints O O\n. O O\n\nThis O O\nwill O O\nallow O O\nyou O O\nto O O\nkeep O O\nthe O O\ninterface O O\nof O O\nyour O O\ninternal O O\ntypes O O\nseparate O O\nfrom O O\nthose O O\nexposed O O\nas O O\nremote O O\nservices O O\n. O O\n\nJimmy O O\nBogards O O\nAutomapper Name Name\nis O O\na O O\ngreat O O\ntool O O\nwhich O O\nwill O O\nhelp O O\nwith O O\nthe O O\nmapping O O\nprocess O O\n. O O\n\nEdit O O\n\nAfter O O\nre-reading O O\nthe O O\nproblem O O\nI O O\nhad O O\na O O\nlook O O\naround O O\nthe O O\nand O O\ncame O O\nacross O O\nthis O O\narticle O O\nwhich O O\ndescribes O O\na O O\nworkaround O O\nfor O O\nsending O O\nNHibernate Name Name\ncollections O O\nover O O\nWCF Name Name\n. O O\n\nDavid O O\nBrion O O\nhas O O\nwritten O O\na O O\ngood O O\nfollow O O\nup O O\narticle O O\n. O O\n\nI O O\nhave O O\nan O O\ninstaller O O\ncreated O O\nusing O O\nInstallshield Name Name\n2012 Name Name\nthat O O\ndepends O O\ngreatly O O\non O O\nthe O O\nvalue O O\nof O O\na O O\nRegistry O O\nkey O O\nwritten O O\nby O O\nsome O O\nother O O\napplication O O\ndeveloped O O\nin-house O O\n. O O\n\nI O O\nuse O O\nRegDBGetKeyValueEx Name Name\nInstallscript Name Name\nAPI Name Name\nto O O\nfetch O O\nthe O O\nvalue O O\n. O O\n\nThis O O\nvalue O O\nis O O\na O O\ndirectory O O\npath O O\nguaranteed O O\nto O O\nhave O O\na O O\ntrailing O O\nbackslash O O\n. O O\n\nThis O O\nvalue O O\nserves O O\nas O O\nthe O O\nTARGETDIR Name Name\nfor O O\nmy O O\ninstaller O O\n. O O\n\nThe O O\nissue O O\nis O O\nthat O O\nI O O\noften O O\nsee O O\na O O\nforeign O O\ncharacter Name Name\n( O O\nChinese O O\n, O O\nJapanese O O\nor O O\nKorean O O\n) O O\nappended O O\nto O O\nthe O O\nbackslash.This Name Name\ncauses O O\nmy O O\nTARGETDIR Name Name\nto O O\ncontain O O\nthe O O\nforeign O O\ncharacter Name Name\n. O O\n\nThis O O\npollutes O O\nmy O O\ninstallation O O\n. O O\n\nI O O\nfeel O O\nthis O O\nis O O\nsome O O\nbug O O\nwith O O\nInstallscript Name Name\nAPI Name Name\nwhich O O\nwrongly O O\ntranslates O O\nthe O O\nRegistry O O\nvalue O O\n. O O\n\nPlease O O\nprovide O O\nsome O O\ninputs O O\nso O O\nthat O O\nI O O\nmay O O\nfind O O\nthe O O\nroot-cause O O\nof O O\nthe O O\nissue O O\n. O O\n\nEDIT O O\n1 O O\n: O O\n\nThe O O\nother O O\napplication O O\nin O O\nquestion O O\nis O O\na O O\npurely O O\nANSI O O\napplication O O\nwith O O\nno O O\nsupport O O\nfor O O\nUnicode O O\n. O O\n\nThere O O\nis O O\nno O O\n#define Name Name\nUNICODE Name Name\nspecified O O\nanywhere O O\n. O O\n\nI O O\nalso O O\nchecked O O\nthe O O\ncompiler O O\nparameters O O\nand O O\nfound O O\nnothing O O\nrelated O O\nto O O\nUnicode O O\nspecified O O\n. O O\n\nThis O O\napplication O O\nreads O O\none O O\nRegistry O O\nkey O O\nand O O\nappends O O\na O O\nbackslash O O\nand O O\nupdates O O\nother O O\nkeys O O\n. O O\n\nOnce O O\nthis O O\noperation O O\nis O O\ndone O O\nmy O O\ninstaller O O\nfetches O O\nthe O O\nvalues O O\nwritten O O\n: O O\n\nThe O O\nvalues O O\nupdated O O\nin O O\nthe O O\nabove O O\ncode O O\nare O O\nthen O O\nwritten O O\nto O O\nregistry Name Name\n. O O\n\nThe O O\nInstallscript Name Name\ncode O O\nthat O O\nfetches O O\nthese O O\nvalues O O\nis O O\n: O O\n\nEDIT O O\n2 O O\n: O O\n\nThe O O\nway O O\nthe O O\nregistry Name Name\nvalue O O\nis O O\nset O O\nseems O O\nto O O\nbe O O\nwrong O O\n: O O\n\nI O O\nfeel O O\nthe O O\ncorrect O O\ncode O O\nshould O O\nhave O O\nbeen O O\n: O O\n\nIn O O\nsome O O\ncode O O\npages O O\nthe O O\ncurrency O O\nsymbol O O\nis O O\nthe O O\nsame O O\nbyte Name Name\nvalue O O\nin O O\nASCII O O\nas O O\nthe O O\nbackslash Name Name\n. O O\n\nIf O O\nyou O O\n're O O\nusing O O\nUnicode O O\nfunctions O O\nthis O O\nshould O O\nn't O O\nbe O O\nan O O\nissue O O\nthough O O\n. O O\n\nSee O O\nhttp://www.siao2.com/2005/09/17/469941.aspx O O\nfor O O\nmore O O\ninformation O O\n. O O\n\nWhen O O\nassigning O O\nthe O O\nRegistry O O\ndata O O\nto O O\nyour O O\nm_reqPath Name Name\nvariable O O\n, O O\nyou O O\nare O O\ntreating O O\nit O O\nas O O\nnull-terminated Name Name\ncharacter Name Name\ndata O O\n. O O\n\nHowever O O\n, O O\nstring Name Name\ndata O O\nread O O\nby O O\nRegQueryValueEx() Name Name\nis O O\nnot O O\nguaranteed O O\nto O O\nbe O O\nnull-terminated Name Name\n, O O\nif O O\nthe O O\noriginal O O\nwriter O O\nof O O\nthe O O\ndata O O\ndid O O\nnot O O\ninclude O O\none O O\n. O O\n\nThis O O\nis O O\nclearly O O\nstated O O\nin O O\nthe O O\ndocumentation O O\n. O O\n\nChances O O\nare O O\nthat O O\nthe O O\nstring Name Name\ndata O O\nyou O O\nare O O\nreading O O\nfrom O O\nthe O O\nRegistry O O\nis O O\nnot O O\nnull-terminated Name Name\n, O O\nso O O\nyou O O\nend O O\nup O O\ncopying O O\nrandom O O\ndata O O\nfrom O O\nthe O O\nend O O\nof O O\nyour O O\nbuffer Name Name\n. O O\n\nTo O O\naccount O O\nfor O O\nthat O O\npossibility O O\n, O O\nyou O O\nneed O O\nto O O\nallocate O O\nextra O O\nspace O O\nin O O\nyour O O\nbuffer Name Name\nand O O\nput O O\nyour O O\nown O O\nnull Name Name\nterminator O O\nat O O\nthe O O\nend O O\nof O O\nwhatever O O\ndata O O\nyou O O\nactually O O\nread O O\n. O O\n\nIf O O\nthe O O\ndata O O\nis O O\nproperly O O\nnull Name Name\nterminated O O\n, O O\nthen O O\nyour O O\nterminator O O\nwill O O\nsimply O O\nbe O O\nredundant O O\n. O O\n\nYou O O\nare O O\nalso O O\nleaking O O\nthe O O\nopened O O\nRegistry O O\nkey O O\nhandle O O\nif O O\nRegOpenKeyEx() Name Name\nsucceeds O O\nbut O O\nRegQueryValueEx() Name Name\nfails O O\n. O O\n\nTry O O\nthis O O\ninstead O O\n: O O\n\nTo O O\navoid O O\nthis O O\nissue O O\naltogether O O\n, O O\nuse O O\nRegGetValue() Name Name\ninstead O O\n, O O\nwhich O O\ndeals O O\nwith O O\nthe O O\nnull Name Name\nterminator O O\nfor O O\nyou O O\n: O O\n\nOr O O\n: O O\n\nA O O\nlot O O\nof O O\npositioning O O\nproblems O O\nseem O O\nto O O\nbe O O\neasily O O\nsolvable O O\nwith O O\nthe O O\nCSS Name Name\ndisplay Name Name\n: Name Name\ntable Name Name\nrule O O\n, O O\nso O O\nI O O\nthought O O\nI O O\n'd O O\ngive O O\nit O O\na O O\ntry O O\n. O O\n\nThe O O\nonly O O\nproblem O O\nis O O\nwhen O O\nI O O\ndo O O\n, O O\nthe O O\nfooter Name Name\ncompletely O O\ndisappears O O\nand O O\nI O O\ndo O O\nn't O O\nunderstand O O\nwhy O O\n. O O\n\nhtml Name Name\n: O O\n\ncss Name Name\nwith O O\nsass Name Name\n: O O\n\nI O O\n'm O O\ntrying O O\nto O O\ncopy O O\nan O O\nexample O O\nfrom O O\nthis O O\ncodepen Name Name\n: O O\n\nhttp://codepen.io/colintoh/pen/tGmDp O O\n\nbut O O\nthe O O\nfooter Name Name\njust O O\nis O O\nn't O O\nshowing O O\nup O O\n. O O\n\nHow O O\nwould O O\nyou O O\ngo O O\nabout O O\nfixing O O\nthis O O\n? O O\n\nedit O O\n: O O\n\nCSS Name Name\n: O O\n\nAnd O O\nI O O\n'm O O\nusing O O\nFirefox Name Name\nright O O\nnow O O\n. O O\n\nYou O O\nneed O O\nto O O\nadd O O\n\nTo O O\nyour O O\nfooter Name Name\n. O O\n\nOtherwise O O\nit O O\nwill O O\nonly O O\ntake O O\nup O O\nthe O O\nspace O O\nneeded O O\nto O O\nfit O O\nthe O O\ncontent O O\ninside O O\n. O O\n\nAlso O O\n, O O\nsome O O\nbrowsers Name Name\ndo O O\nnot O O\nallow O O\nfor O O\nempty O O\ndivs Name Name\n. O O\n\nAdd O O\nsome O O\ncontent O O\nto O O\nyour O O\nfooter Name Name\n, O O\nand O O\nit O O\nshould O O\nshow O O\nup O O\nin O O\nyour O O\nbrowser Name Name\n. O O\n\nJSFiddle Name Name\n: O O\nhttps://jsfiddle.net/rq9nm772/1/ O O\n\nI O O\nhave O O\nthe O O\nnext O O\nstrange O O\nproblem O O\n, O O\nI O O\n'm O O\ntrying O O\nto O O\nparse O O\nresponse O O\nwith O O\nJSON Name Name\ndata O O\nin O O\nbackground O O\n, O O\nbecause O O\nthere O O\n's O O\na O O\nlot O O\nof O O\ndata O O\nand O O\ncall O O\nit O O\nlike O O\nthis O O\n: O O\n\nAnd O O\nthe O O\nparseResponse() Name Name\nmethod O O\nis O O\nwritten O O\nlike O O\nthis O O\n: O O\n\nSo O O\nI O O\ndo O O\nn't O O\nknow O O\nhow O O\n, O O\nbut O O\nsomehow O O\nthe O O\ndata O O\nappeared O O\nin O O\nRecyclerView Name Name\nis O O\nthere O O\nbefore O O\nonPostExecute Name Name\nis O O\nshown O O\n, O O\nbecause O O\nin O O\npost O O\nexecute O O\nthe O O\nprogressbar Name Name\nshould O O\ngo O O\ninvisible O O\nand O O\nnotifydatasetchange Name Name\nshould O O\nalso O O\nappear O O\nthere O O\n. O O\n\nBut O O\ndata O O\nappears O O\nbefore O O\nthe O O\nprogressbar Name Name\ngoes O O\ninvisible O O\nand O O\nnotifyDataSetChange() Name Name\nfired O O\n, O O\nhelp O O\nme O O\nplease O O\n! O O\n\nAn O O\nAsyncTask Name Name\nthat O O\nreturns O O\nnothing O O\nfrom O O\ndoInBackground() Name Name\n( O O\nand O O\ndoes O O\nn't O O\ncommunicate O O\nwith O O\nonPostExecute() Name Name\nvia O O\nprivate O O\nmembers O O\n) O O\nis O O\nalways O O\nsuspicious O O\n. O O\n\nYou O O\nhave O O\na O O\nlot O O\nof O O\nside O O\neffects O O\nin O O\nyour O O\nAsyncTask Name Name\nand O O\nthat O O\nkind O O\nof O O\nstuff O O\nis O O\nhard O O\nto O O\ndebug O O\n. O O\n\nYou O O\nadd O O\nto O O\ncityList Name Name\nand O O\nactiveOrders Name Name\nfor O O\nexample O O\n, O O\nwithout O O\nshowing O O\nwhat O O\nthat O O\nactually O O\nis O O\n. O O\n\nPresumably O O\nthose O O\nare O O\nlists Name Name\nattached O O\nto O O\nsome O O\nAdapter Name Name\nand O O\nadding O O\nto O O\nthose O O\nmight O O\ntrigger O O\na O O\nView Name Name\nattached O O\nto O O\nthe O O\nAdapter Name Name\nto O O\nbe O O\nre-drawn O O\n. O O\n\nIf O O\nthat O O\nis O O\nthe O O\ncase O O\nyou O O\ncould O O\ntry O O\ncalling O O\nsetNotifyOnChange(false) Name Name\non O O\nmAdapter Name Name\n( O O\nto O O\ndelay O O\nupdates O O\nuntil O O\nyou O O\nmanually O O\ncall O O\nnotifyDataSetChanged() Name Name\nlater O O\n) O O\n. O O\n\nhttp://developer.android.com/reference/android/widget/ArrayAdapter.html#setNotifyOnChange(boolean) O O\n\nIn O O\ngeneral O O\n, O O\nif O O\nyour O O\nAsyncTask Name Name\ndoes O O\nn't O O\nreturn O O\nanything O O\nor O O\notherwise O O\n\" O O\ncommunicate O O\n\" O O\nwith O O\nonPostExecute() Name Name\nthere O O\nis O O\nlittle O O\npoint O O\nin O O\nhaving O O\nonPostExecute() Name Name\nin O O\nthe O O\nfirst O O\nplace O O\n. O O\n\nEven O O\nbetter O O\nwould O O\nbe O O\nnot O O\nto O O\nhave O O\nany O O\nside O O\neffect O O\nin O O\ndoInBackground() Name Name\nand O O\ninstead O O\nreturn O O\nthe O O\nparsed O O\ndata O O\nand O O\nonly O O\nadd O O\nit O O\nto O O\ncityList Name Name\nand O O\nactiveOrders Name Name\nin O O\nonPostExecute() Name Name\n. O O\n\nMulti-threading O O\nis O O\ntricky O O\nand O O\nAsyncTasks Name Name\nwhile O O\nappearing/attempting O O\nto O O\nmake O O\nit O O\neasier O O\n, O O\nhave O O\nmany O O\npitfalls O O\n. O O\n\nI O O\nhave O O\nattempted O O\nto O O\nanswer O O\na O O\nquestion O O\non O O\nthread O O\nsafety O O\nof O O\nAsyncTask Name Name\nhere O O\n\nI O O\ndo O O\nn't O O\nhave O O\nthe O O\nprivilege O O\nto O O\ncomment O O\n, O O\nso O O\nI O O\n'll O O\npost O O\nit O O\nhere O O\n: O O\n\nYou O O\ndo O O\nn't O O\nhappen O O\nto O O\nhave O O\nlisteners Name Name\non O O\nyour O O\nordersDatabase Name Name\n, O O\ncityList Name Name\nor O O\nactiveOrders Name Name\n? O O\n\nI O O\n'm O O\ntrying O O\nto O O\nwrite O O\na O O\nRewriteRule Name Name\nfor O O\nmy O O\n.htaccess Name Name\nfile O O\n. O O\n\nMy O O\nCondition O O\nis O O\nfollowing O O\n, O O\nForce O O\nAll O O\nuser O O\non O O\nmy O O\nwebsite O O\nto O O\nHTTP O O\nwith O O\nwww O O\nand O O\nforce O O\nsecure-email O O\nfolder O O\nto O O\nonly O O\nhttps O O\nwith O O\nwww O O\n. O O\n\nAny O O\nideas O O\non O O\nhow O O\nto O O\nwrite O O\nthis O O\nRewriteRule Name Name\n? O O\n\nYou O O\ncan O O\nuse O O\nsomething O O\nsimilar O O\nto O O\nthis O O\n( O O\nadapt O O\nit O O\nfor O O\nyour O O\nneed O O\n) O O\n: O O\n\nFYI O O\n: O O\nthis O O\nworks O O\nonly O O\nwith O O\nApache Name Name\nversion O O\n>= O O\n2.4 Name Name\nor O O\nelse O O\nyou O O\nhave O O\nto O O\nuse O O\nmod_rewrite Name Name\n\nmore O O\ndetails O O\ncan O O\nbe O O\nfound O O\nhere O O\nand O O\nhere O O\nto O O\nadapt O O\nthe O O\nrules O O\nabove O O\n. O O\n\nBut O O\nI O O\nhighly O O\nrecommend O O\nsetting O O\nall O O\nthe O O\nwebsite O O\nover O O\nHTTPS O O\n( O O\nHTTPS O O\nis O O\na O O\nrequirement O O\nfor O O\nmany O O\nnew O O\nbrowser Name Name\nfeatures O O\n, O O\nparticularly O O\nthose O O\nrequired O O\nfor O O\nProgressive O O\nWeb O O\nApps O O\n) O O\n\nI O O\nhave O O\ndefined O O\na O O\ncouple O O\nof O O\ntype O O\nsynonyms O O\nas O O\nfollows O O\n: O O\n\nIn O O\naddition O O\nI O O\nhave O O\ndefined O O\nthe O O\nfollowing O O\ntype O O\nand O O\ntype O O\nsynonym O O\n: O O\n\nFinally O O\n, O O\nthe O O\nfollowing O O\nfunction O O\nto O O\nconstruct O O\na O O\ngraph Name Name\n: O O\n\nIn O O\nthe O O\nabove O O\nfunction O O\n, O O\na O O\nlist O O\nof O O\ntuples Name Name\nis O O\nprovided O O\nwhere O O\nthe O O\nfirst O O\nelement O O\nof O O\nthe O O\ntuple Name Name\nis O O\nanother O O\ntuple Name Name\nand O O\nthe O O\nsecond O O\na O O\nlist Name Name\n, O O\nas O O\nper O O\nthe O O\nfunctions O O\ntype O O\nsignature O O\n. O O\n\nI O O\nam O O\nnew O O\nto O O\nHaskell Name Name\nso O O\nam O O\nhaving O O\nsome O O\ndifficulty O O\nin O O\ndeciphering O O\nthe O O\nfollowing O O\nerror O O\nmessages O O\n: O O\n\nI O O\nhave O O\nconcluded O O\nthat O O\nthere O O\nare O O\ntype O O\nmismatches O O\nbut O O\nam O O\nnot O O\nclear O O\nhow O O\nso O O\n, O O\ngiven O O\nthe O O\ntypes O O\nI O O\nhave O O\ndefined O O\nand O O\nthe O O\nfunctions O O\ntype O O\nsignature O O\n. O O\n\nOf O O\ncourse O O\n, O O\nthis O O\nis O O\na O O\nuseful O O\nexercise O O\nto O O\ndo O O\n, O O\nand O O\nas O O\na O O\nresult O O\nof O O\nmaking O O\nthis O O\nmistake O O\nyou O O\n've O O\nlearned O O\nto O O\nbetter O O\nunderstand O O\noperator O O\nprecedence O O\nand O O\nparsing O O\nin O O\nHaskell Name Name\n. O O\n\nHowever O O\n, O O\nonce O O\nyou O O\nhave O O\nmore O O\nexperience O O\nyou O O\n'll O O\nrealize O O\nyou O O\ncould O O\nhave O O\navoided O O\nthe O O\nproblem O O\n, O O\nand O O\nwound O O\nup O O\nwith O O\nsimpler O O\ncode O O\nas O O\na O O\nresult O O\n, O O\nby O O\nusing O O\npattern O O\nmatching O O\ninstead O O\nof O O\ncomposing O O\ncalls O O\nto O O\nfst Name Name\nand O O\nsnd Name Name\n: O O\n\nNow O O\nthe O O\ncode O O\nis O O\nshaped O O\nlike O O\nthe O O\ndata O O\nit O O\nconsumes O O\n, O O\nand O O\nyou O O\nget O O\nto O O\ngive O O\ndescriptive O O\nnames O O\nto O O\nthe O O\nvalues O O\nyou O O\nwork O O\nwith O O\n. O O\n\nAnother O O\nimprovement O O\ncomes O O\nfrom O O\nobserving O O\nthat O O\nthis O O\nrecursive O O\npattern O O\nis O O\nvery O O\ncommon O O\n: O O\nyou O O\ndo O O\nsomething O O\nto O O\neach O O\nitem O O\nin O O\nthe O O\nlist Name Name\n, O O\nindependent O O\nof O O\neach O O\nother O O\n, O O\nand O O\nconstruct O O\na O O\nlist Name Name\nof O O\nthe O O\nresults O O\n. O O\n\nIn O O\nfact O O\n, O O\nthat O O\nis O O\nexactly O O\nwhat O O\nmap Name Name\ndoes O O\n. O O\n\nSo O O\nyou O O\ncould O O\nwrite O O\na O O\nfunction O O\nthat O O\ndeals O O\nwith O O\nonly O O\none O O\nof O O\nthese O O\nPGM Name Name\nitems O O\nat O O\na O O\ntime O O\n, O O\nand O O\nthen O O\nuse O O\nmap Name Name\nto O O\nextend O O\nit O O\nto O O\na O O\nfunction O O\nthat O O\nworks O O\non O O\na O O\nlist Name Name\nof O O\nthem O O\n: O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nf Name Name\n. Name Name\ng Name Name\nx Name Name\nis O O\nf Name Name\n. Name Name\n( Name Name\ng Name Name\nx Name Name\n) Name Name\n. O O\n\nTherefore O O\n, O O\nthe O O\ntypes O O\ndo O O\nn't O O\nmatch O O\n: O O\n\nYou O O\neither O O\nhave O O\nto O O\nuse O O\nparentheses O O\naround O O\nfst Name Name\n. Name Name\nfst Name Name\nor O O\n$ Name Name\n: O O\n\nYou O O\ncan O O\nalso O O\ncombine O O\nboth O O\n, O O\ne.g O O\n. O O\n\nfst Name Name\n. Name Name\nfst Name Name\n$ Name Name\nx Name Name\n, O O\nsince O O\nthe O O\nprecedence O O\nof O O\n$ Name Name\nis O O\nlow O O\n. O O\n\nI O O\nam O O\nworking O O\non O O\na O O\ndocument O O\nthat O O\nis O O\nused O O\nin O O\na O O\nlecture O O\neach O O\nsemester O O\n. O O\n\nThe O O\ncontents O O\nbasically O O\nstay O O\nthe O O\nsame O O\n, O O\nbut O O\nonly O O\na O O\nsubset O O\nof O O\nthe O O\ncontent O O\nis O O\nused O O\neach O O\nsemester O O\n. O O\n\nDefines O O\nare O O\nused O O\nto O O\nset O O\nwhich O O\nparts O O\nshould O O\nbe O O\ncompiled O O\nand O O\nwhich O O\nnot O O\n. O O\n\nIn O O\none O O\npart O O\nof O O\nthe O O\ndocument O O\na O O\nlist O O\nof O O\nthe O O\noptions O O\nis O O\ncompiled O O\nin O O\na O O\ntabular O O\nin O O\nthe O O\nfollowing O O\nform O O\n: O O\n\nSo O O\nall O O\noptions O O\nthat O O\nare O O\nchosen O O\nvia O O\ndefines O O\nare O O\nlisted O O\nin O O\nthe O O\ntable Name Name\nas O O\na O O\nrow Name Name\n. O O\n\nThe O O\nproblem O O\nthat O O\noccurs O O\nis O O\nthat O O\nthe O O\n& Name Name\ncharacter O O\nseems O O\nto O O\nbreak O O\nthe O O\n\\ifdefined Name Name\nand O O\nis O O\ntreated O O\nas O O\na O O\n\\fi Name Name\n. O O\n\nAn O O\nIncomplete O O\n\\ifdefined O O\nerror O O\nis O O\nthrown O O\n. O O\n\nI O O\nworked O O\naround O O\nthis O O\nby O O\ndefining O O\na O O\ncommand O O\nthat O O\njust O O\noutputs O O\nthe O O\n& Name Name\nchar Name Name\n. O O\n\nBut O O\nthere O O\nsure O O\nis O O\na O O\nbetter O O\nway O O\n. O O\n\nNote O O\nthat O O\nI O O\nam O O\nworking O O\non O O\nsomeone O O\nelses O O\ndocument O O\nand O O\ncannot O O\njust O O\nchange O O\nthe O O\nwhole O O\nstructure O O\nand O O\nthe O O\nuse O O\nof O O\ndefines O O\nto O O\nreach O O\nthis O O\nspecific O O\ngoal O O\n. O O\n\nI O O\ntried O O\nto O O\nuse O O\nit O O\n. O O\n\nAnd O O\nit O O\n's O O\nreally O O\nnice O O\nfor O O\nsome O O\nPlots Name Name\n, O O\nbut O O\nwhen O O\nits O O\nabout O O\nmaking O O\nfor O O\nexample O O\na O O\ntriangle Name Name\nI O O\nfound O O\nit O O\nquite O O\ncomplicated O O\n. O O\n\nI O O\nfigured O O\nout O O\nhow O O\nto O O\ndraw O O\na O O\ntriangle Name Name\nbut O O\nhow O O\nto O O\nadd O O\nthat O O\nangle Name Name\nmarks Name Name\n, O O\nthose O O\ncurved Name Name\nlines Name Name\n? O O\n\nAnd O O\nsince O O\nI O O\n'm O O\nbeginner O O\ninto O O\nthis O O\njob O O\n, O O\nof O O\nwriting O O\na O O\nbook O O\n, O O\ncan O O\nanyone O O\nrecommend O O\nme O O\nwhich O O\nis O O\nthe O O\nbest O O\nway O O\nto O O\naccomplish O O\ngood O O\nlooking O O\ngraphics O O\n, O O\nfor O O\nexample O O\nas O O\nin O O\nthe O O\npicture Name Name\nbelow O O\n. O O\n\nWhich O O\nprograms O O\nare O O\nbest O O\nto O O\nuse O O\n. O O\n\nThanks O O\nfor O O\nany O O\nsuggestions O O\nand O O\nrecommendations O O\n. O O\n\nHere O O\nis O O\na O O\nsimple/basic O O\nway O O\nto O O\ndo O O\nthe O O\nfirst O O\none O O\n: O O\n\nThe O O\nfollowing O O\nis O O\nthe O O\nexact O O\nsame O O\nthing O O\n, O O\nbut O O\nwrapped O O\nin O O\nManipulate Name Name\nand O O\nparameterized O O\non O O\nthe O O\nangle O O\nalpha Name Name\n: O O\n\nIf O O\nyou O O\nmove O O\nthe O O\nslider Name Name\n, O O\nthe O O\ncontent O O\nwill O O\nchange O O\naccordingly O O\n: O O\n\nEdit O O\nYou O O\ncan O O\nget O O\ninspiration O O\nfrom O O\nthe O O\nDemonstrations O O\nproject O O\ntoo O O\n. O O\n\nThese O O\nare O O\nthe O O\ntriangle-related Name Name\ndemonstrations O O\n. O O\n\nAfter O O\ntaking O O\na O O\nquick O O\nlook O O\n, O O\nI O O\nthink O O\nyou O O\nshould O O\nsee O O\nthe O O\ngeometry-related O O\ndemonstrations O O\nby O O\nJay O O\nWarendorff O O\n. O O\n\nHe O O\nhas O O\nmade O O\na O O\nlot O O\nof O O\nthese O O\n, O O\nand O O\nthey O O\nuse O O\na O O\nstructured O O\nset O O\nof O O\ngeometry-related O O\nfunctions O O\nthat O O\nyou O O\nmost O O\nlikely O O\ncan O O\nreuse O O\n. O O\n\nHere O O\n's O O\nan O O\nangleArc Name Name\nfunction O O\nto O O\nget O O\nyou O O\nstarted O O\n. O O\n\nThis O O\nis O O\njust O O\na O O\nsmall O O\nexample O O\nof O O\na O O\nhelper O O\nfunction O O\nyou O O\ncould O O\nuse O O\n, O O\nthere O O\n's O O\na O O\nlot O O\nof O O\nroom O O\nfor O O\nimprovement O O\n. O O\n\nI O O\nwant O O\nto O O\ncreate O O\na O O\nhierarchial O O\narray Name Name\nfrom O O\nthe O O\nsingle O O\ndimensional O O\narray Name Name\nobtained O O\nfrom O O\ndatabase O O\n. O O\n\nLanguage O O\nis O O\nPHP Name Name\n. O O\n\nIn O O\nthe O O\nbelow O O\nmentioned O O\nexample O O\nkey O O\nid Name Name\n-3 Name Name\nindicates O O\nthat O O\nit O O\nis O O\nthe O O\nroot O O\nnode O O\n. O O\n\nInput O O\nData O O\n: O O\n\nOutput O O\nexpected O O\ndata O O\n: O O\n\nThe O O\ntrick O O\nis O O\nto O O\nuse O O\n&$a O O\nnotation O O\nwhich O O\ngives O O\nus O O\nreferences O O\ninstead O O\nof O O\nvariable O O\ncopies O O\n. O O\n\nBasically O O\nnon-root O O\nnodes O O\nare O O\nattached O O\nto O O\nthe O O\nparents O O\n, O O\nand O O\nroot O O\nnodes O O\ngo O O\nto O O\nresult O O\narray Name Name\n. O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\nupdate O O\nquery O O\nthat O O\nworks O O\nin O O\ndesign O O\nmode O O\nof O O\nAccess Name Name\n. O O\n\nI O O\nhave O O\ninserted O O\nit O O\ninto O O\na O O\nVBA Name Name\nprocedure O O\nand O O\nwant O O\nto O O\nupdate O O\nthe O O\nrecordset Name Name\nwith O O\nthe O O\nwindows O O\nID O O\nof O O\nthe O O\nuser O O\nby O O\ndeclaring O O\nthis O O\nas O O\na O O\nvariable O O\n- O O\n\nMy O O\nproblem O O\nis O O\nwhen O O\nI O O\nclick O O\nthe O O\ncommand Name Name\nbutton Name Name\nto O O\nrun O O\nthe O O\nprocedure O O\na O O\nmessage Name Name\nbox Name Name\nappears O O\nwith O O\nmy O O\nWindows O O\nID O O\nas O O\nthe O O\ntitle O O\nand O O\nit O O\nasks O O\nto O O\n' O O\nEnter O O\na O O\nParameter O O\nValue O O\n' O O\ninstead O O\nof O O\ninserting O O\nit O O\ndirectly O O\nto O O\nthe O O\ntable Name Name\n. O O\n\nI O O\nam O O\nnot O O\nsure O O\nbut O O\nit O O\nseems O O\nthe O O\nSQL Name Name\nstatement O O\nis O O\nincorrect O O\nas O O\nthe O O\nwindows O O\nID O O\nis O O\nnot O O\nbeing O O\npicked O O\nup O O\nas O O\na O O\nvariable O O\n\nAdd O O\nquotes O O\naround O O\nthe O O\nuser O O\nname O O\nvalue O O\nso O O\nthe O O\ndb Name Name\nengine Name Name\nwill O O\ninterpret O O\nit O O\nas O O\na O O\nliteral O O\ntext O O\nstring Name Name\ninstead O O\nof O O\na O O\nparameter O O\nname O O\n. O O\n\nThat O O\nchange O O\nshould O O\nresolve O O\nyour O O\nimmediate O O\nissue O O\n. O O\n\nBeyond O O\nthat O O\n, O O\ninclude O O\nspaces O O\nbefore O O\nWHERE Name Name\nand O O\nAND Name Name\n. O O\n\nAlso O O\nexecute O O\nthe O O\nquery O O\nwith O O\nDAO Name Name\n's O O\nExecute Name Name\nmethod O O\nand O O\ninclude O O\nthe O O\ndbFailOnError Name Name\noption O O\n. O O\n\nImagine O O\ncode O O\nlike O O\nthis O O\n: O O\n\nRegarding O O\nthe O O\nfact O O\nthat O O\nthe O O\nlogical O O\nbranching O O\nis O O\nby O O\nstandard O O\nensured O O\nto O O\nbe O O\nevaluated O O\nfrom O O\nleft O O\nto O O\nright O O\nand O O\nand O O\nsays O O\nregarding O O\nthe O O\nconditional O O\n& Name Name\nit O O\nbreaks O O\nas O O\nsoon O O\nas O O\none O O\ncondition O O\nis O O\nfalse Name Name\n, O O\nIs O O\nthere O O\nany O O\nrule O O\nthat O O\nwould O O\nmake O O\nthis O O\nsnippet O O\ninvalid O O\n? O O\n\nI O O\nknow O O\nthere O O\nare O O\nmore O O\nefficent O O\nand O O\neven O O\nbetter O O\nto O O\nretrace O O\nways O O\n, O O\nbut O O\nI O O\n'm O O\nspecially O O\ninterested O O\nin O O\n: O O\n\ndoes O O\nthe O O\ninterupt O O\ncondition O O\nof O O\nthe O O\ndo/while Name Name\nloop O O\nprevent O O\nfrom O O\ninvoking O O\nundefined O O\nbehavior O O\nthrough O O\nthe O O\nrule O O\nabout O O\nusing O O\npointer Name Name\narithmetic O O\nthat O O\nresults O O\nin O O\na O O\npointer Name Name\nleaving O O\nthe O O\nbounds O O\nor O O\nmore O O\nas O O\n1 O O\npast O O\nthe O O\narray Name Name\n? O O\n\nAfter O O\nthis O O\nloop O O\n: O O\n\nActingPointer Name Name\nends O O\nup O O\nbeing O O\nequal O O\nto O O\nOriginPointer Name Name\n+ O O\nSOME_GIVEN_AMOUNT Name Name\n, O O\nwhich O O\nis O O\nok O O\nas O O\na O O\npointer Name Name\n( O O\nas O O\nit O O\npoints O O\nto O O\none O O\nelement O O\npast O O\nthe O O\nend O O\n) O O\n, O O\nbut O O\nwriting O O\nto O O\nit O O\nin O O\nthe O O\nfirst O O\niteration O O\nof O O\nthe O O\ndo Name Name\nloop O O\nis O O\nundefined O O\nbehaviour O O\n. O O\n\nIf O O\nActingPointer Name Name\nis O O\ndecremented O O\nbefore O O\nthe O O\ndo Name Name\nloop O O\n, O O\neverything O O\nis O O\nfine O O\n. O O\n\nYes O O\n, O O\nbecause O O\nit O O\nstarts O O\nat O O\n1 Name Name\npast O O\nthe O O\narray Name Name\n, O O\nand O O\nis O O\nnot O O\ndecremented O O\nbelow O O\nthe O O\nstart O O\nof O O\nthe O O\narray Name Name\n. O O\n\nI O O\nmade O O\na O O\najax Name Name\ncall O O\nfrom O O\nmy O O\njsp Name Name\nto O O\nservlet Name Name\n. O O\n\nwhen O O\nI O O\nwant O O\nto O O\nreturn O O\nstring Name Name\nthen O O\nit O O\nis O O\nworking O O\nfine O O\n. O O\n\nBut O O\nI O O\nwant O O\nto O O\nsend O O\nresponse O O\nas O O\na O O\nString Name Name\narray Name Name\nthen O O\nits O O\nnot O O\nworking O O\n. O O\n\nIs O O\nit O O\npossible O O\nthat O O\nI O O\ncan O O\nsend O O\nstring Name Name\narray Name Name\nfrom O O\nservlet Name Name\nas O O\na O O\najax Name Name\nresponse O O\n. O O\n\nSend O O\nthe O O\najax Name Name\nresponse O O\nin O O\njson Name Name\nformat O O\nby O O\nencoding O O\nthe O O\narray Name Name\nin O O\njson Name Name\nand O O\nreturn O O\nit O O\n. O O\n\nYou O O\ncan O O\nuse O O\nGson Name Name\nand O O\nthen O O\nencode O O\nyour O O\narray Name Name\nlike O O\n: O O\n\nAnd O O\non O O\nthe O O\nJavascript Name Name\nend O O\n, O O\nyou O O\ncan O O\naccess O O\nit O O\nas O O\na O O\njson Name Name\nobject O O\n\nWrite O O\nit O O\nout O O\nto O O\nJSON Name Name\ninstead O O\n. O O\n\nJavascript Name Name\nca O O\nn't O O\nunderstand O O\nthe O O\nresult O O\nof O O\na O O\nJava Name Name\narray Name Name\n's O O\ntoString() Name Name\nmethod O O\n( O O\n[ Name Name\nLjava.lang.String Name Name\n; Name Name\n@5527f4f9 Name Name\n) O O\n, O O\nbut O O\nI O O\nknow O O\nit O O\ncan O O\nunderstand O O\nJSON Name Name\n. O O\n\nIf O O\nyou O O\n're O O\nonly O O\never O O\ngoing O O\nto O O\nbe O O\nusing O O\na O O\nstring Name Name\narray Name Name\nand O O\nyou O O\ndo O O\nn't O O\nwant O O\nto O O\nuse O O\nany O O\nmore O O\nlibraries O O\n: O O\n\nDepending O O\non O O\nwhat O O\nJavascript Name Name\nframework O O\nyou O O\n're O O\nusing O O\non O O\nyour O O\nclient-side Name Name\n, O O\nyour O O\nJSON Name Name\nwill O O\nbe O O\navailable O O\nas O O\nthe O O\nxmlHttpRequestObject.responseText Name Name\n. O O\n\nAngularJS Name Name\nstores O O\nit O O\nin O O\nthe O O\n$http.get().success Name Name\nmethod O O\n's O O\nfirst O O\ndata Name Name\nparameter O O\n. O O\n\njQuery Name Name\nstores O O\nit O O\nin O O\nthe O O\n$.ajax({success}) Name Name\nmethod O O\n's O O\nfirst O O\ndata Name Name\nparameter O O\n. O O\n\nAngular Name Name\nand O O\njQuery Name Name\nautomatically O O\nvalidate O O\nand O O\neval Name Name\nit O O\nto O O\nan O O\n[ Name Name\nobject Name Name\nObject Name Name\n] Name Name\nfor O O\nyou O O\n, O O\nbut O O\nxmlHttpRequestObject.responseText Name Name\ndoes O O\nn't O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\ncompare O O\ntwo O O\nvalues O O\nfrom O O\na O O\ndual O O\ninput O O\nrange O O\nslider Name Name\n. O O\n\nIf O O\nthe O O\nbottom O O\nvalue O O\nis O O\nequal O O\nor O O\ngreater O O\nthan O O\nthe O O\ntop O O\nvalue O O\n, O O\nI O O\nwant O O\nto O O\nreturn O O\nfalse Name Name\n. O O\n\nThis O O\nis O O\nto O O\nprevent O O\noverlap O O\nbetween O O\nthe O O\ntwo O O\nthumbs O O\n. O O\n\nI O O\nhave O O\nused O O\n.change Name Name\nto O O\nlisten O O\nfor O O\nchanges O O\n. O O\n\nI O O\ncan O O\nthen O O\nconsole.log Name Name\n& O O\nreturn O O\nthe O O\nvalue O O\nafter O O\nit O O\n's O O\nbeen O O\nupdated O O\n. O O\n\nI O O\nhave O O\nincluded O O\nthe O O\nlast O O\nbit O O\nof O O\ncode O O\nin O O\nthe O O\nhope O O\nfor O O\nhelp O O\n. O O\n\nYou O O\ncan O O\nsee O O\nan O O\nfull O O\nalmost O O\nworking O O\nversion O O\nhere O O\n: O O\n\nhttps://fiddle.jshell.net/elliottjb7/fj9ot08v/ O O\n\nThanks O O\n\nthis O O\nline O O\n\nshould O O\nbe O O\n\nThis O O\ndoes O O\nthe O O\ncorrect O O\ncheck O O\nwhere O O\nbottom O O\nis O O\n: O O\n\nAlso O O\n, O O\nthe O O\nfirst O O\n2 O O\nfunctions O O\n(.change()) Name Name\nare O O\nquite O O\nredundant O O\nfor O O\nwhat O O\nyou O O\nare O O\ntrying O O\nto O O\nachieve O O\nbut O O\nI O O\n've O O\nincluded O O\na O O\nbetter O O\nway O O\nto O O\nwrite O O\nthem O O\n\nI O O\nhave O O\n8-10 O O\nclasses O O\nthat O O\nextends O O\nJPanel Name Name\n. O O\n\nEach O O\nof O O\nthem O O\nhave O O\nunique O O\nlook O O\nand O O\nall O O\nkind O O\nof O O\nlisteners O O\n. O O\n\nI O O\ncreate O O\na O O\nGameWindow Name Name\nclass O O\nthat O O\nextends O O\nJFrame Name Name\nand O O\nadd O O\nthose O O\npanels O O\nto O O\nGameWindow Name Name\n. O O\n\nFor O O\nexample O O\n, O O\nin O O\nMainMenuPanel Name Name\n, O O\nif O O\nuser O O\nclick O O\na O O\ncertain O O\nlabel O O\nor O O\nbutton Name Name\n, O O\nuser O O\nshould O O\nbe O O\ndirected O O\nanother O O\npanel Name Name\n. O O\n\nI O O\nam O O\nusing O O\nonly O O\none O O\nframe O O\nto O O\nsee O O\nchanges O O\n. O O\n\nSo O O\nhow O O\ncan O O\nI O O\nchange O O\nbetween O O\npanels Name Name\nand O O\nsee O O\nits O O\neffects O O\non O O\nGameWindow Name Name\nframe O O\n? O O\n\nWhen O O\nI O O\ndeploy O O\nthe O O\nTomcat Name Name\nproject O O\n, O O\nthe O O\nconsole Name Name\nshows O O\nthe O O\nerror O O\n: O O\n\nI O O\nspent O O\nseveral O O\ndays O O\nworking O O\non O O\nit O O\nand O O\ndid O O\nnot O O\nfind O O\na O O\nsolution O O\nto O O\nthe O O\nproblem O O\n, O O\nso O O\nI O O\nhope O O\nto O O\nbe O O\nable O O\nto O O\nget O O\nhelp O O\n, O O\nthank O O\nyou O O\nvery O O\nmuch O O\n! O O\n\nThis O O\nis O O\nthe O O\nconfiguration O O\nfile O O\nbeans.xml Name Name\n: O O\n\nI O O\n've O O\nnoticed O O\na O O\ncommon O O\nbug O O\nwith O O\nbrowser Name Name\nback Name Name\nbutton Name O\nusage O O\non O O\nmy O O\nweb O O\napp O O\nwhere O O\nhitting O O\nthe O O\nback Name Name\nbutton Name Name\nafter O O\nlogout O O\nloads O O\na O O\ncached O O\npage Name Name\nwhere O O\nthe O O\nuser O O\nappears O O\nlogged O O\nin O O\n( O O\nthough O O\nthey O O\nare O O\nn't O O\nactually O O\n) O O\n. O O\n\nI O O\nfound O O\na O O\nlot O O\nof O O\nhelpful O O\nquestions O O\nwith O O\nhelpful O O\nanswers O O\nand O O\nemployed O O\nthe O O\nfixes O O\nfolks O O\nsuggested O O\n, O O\nincluding O O\nevery O O\ncombination O O\nof O O\nsuggested O O\nCache-Control Name Name\noptions O O\nin O O\nthe O O\nheader Name Name\n: O O\n\nAnd O O\nthe O O\nheader Name Name\nworks O O\non O O\nmost O O\nbrowsers Name Name\n, O O\neven O O\nwith O O\njust O O\nno-cache Name Name\nand O O\nno-store Name Name\n, O O\nbut O O\nno O O\nheader Name Name\noptions O O\nsolve O O\nthis O O\non O O\nSafari Name Name\n. O O\n\nSure O O\nenough O O\n, O O\nthe O O\nmost O O\nreliable O O\nway O O\nI O O\ncan O O\nfind O O\nto O O\nresolve O O\nthis O O\nfor O O\nSafari Name Name\nis O O\nto O O\nuse O O\nsome O O\njavascript Name Name\nas O O\nsuch O O\nwhich O O\nforces O O\na O O\nreload O O\n: O O\n\nThe O O\njavascript Name Name\nblock O O\nabove O O\ndoes O O\nwork O O\n, O O\nbut O O\nonly O O\nif O O\nthe O O\nuser O O\ndoes O O\nn't O O\ndisable O O\njavascript Name Name\nvia O O\nSafari Name Name\n-> O O\nPreferences O O\n-> O O\nSecurity O O\nand O O\nsubsequently O O\nhit O O\nthe O O\nback Name Name\nbutton Name Name\n. O O\n\nIt O O\n's O O\nvery O O\nmuch O O\nan O O\nedge O O\ncase O O\n, O O\nbut O O\nI O O\n'm O O\nkind O O\nof O O\nfascinated O O\nthat O O\nsuch O O\na O O\npopular O O\nbrowser Name Name\nmakes O O\nsuch O O\na O O\ntrivial O O\nbug O O\nthis O O\ntricky O O\n! O O\n\nIf O O\nanybody O O\nhas O O\nfound O O\na O O\nway O O\nto O O\nmake O O\nSafari Name Name\nplay O O\nnice O O\nwithout O O\njavascript Name Name\nI O O\n'd O O\nlove O O\nto O O\nhear O O\nhow O O\n. O O\n\nThanks O O\nall O O\nin O O\nadvance O O\n! O O\n\nI O O\nam O O\nnewbie O O\nto O O\nember.js Name Name\nand O O\nnode.I O O\nwant O O\nto O O\nsend O O\nemail O O\nusing O O\nmailgun Name Name\nin O O\nan O O\nember.js Name Name\napp O O\n, O O\nbut O O\nca O O\nn't O O\nfind O O\na O O\nway O O\nto O O\ndo O O\nthat O O\n. O O\n\nFound O O\nmailgun-js Name Name\npackage O O\nbut O O\ndo O O\nnot O O\nhow O O\nto O O\nconnect O O\nthis O O\npackage O O\nwith O O\nember.js Name Name\nusing O O\nexpress O O\n. O O\n\nOr O O\nif O O\nthere O O\nis O O\nany O O\nway O O\nthat O O\ni O O\ncould O O\ncall O O\na O O\nparse-cloud O O\nfunction O O\nin O O\nember Name Name\ncontroller O O\nto O O\nsend O O\nmail O O\n. O O\n\nEmber Name Name\nruns O O\nin O O\nthe O O\nbrowser Name Name\nwhile O O\nsending O O\nemail O O\nis O O\ndone O O\n( O O\nor O O\n: O O\nshould O O\nunder O O\nmost O O\ncircumstances O O\nbe O O\ndone O O\n) O O\non O O\nthe O O\nserver Name Name\n. O O\n\nexpress Name Name\nand O O\nmailgun-js Name Name\nhint O O\nat O O\nthat O O\nthat O O\n's O O\nwhat O O\nyou O O\nreally O O\nwant O O\nto O O\ndo O O\n( O O\nas O O\nthey O O\nare O O\nserver-side Name Name\nnode O O\nmodules O O\n) O O\n. O O\n\nYou O O\n'd O O\nhave O O\nto O O\nhook O O\nthe O O\nmail-sending O O\ninto O O\nthe O O\nREST Name Name\nbackend O O\non O O\nthe O O\nserver Name Name\nor O O\nprovide O O\nit O O\nas O O\nan O O\nextra O O\nservice O O\nthat O O\nyou O O\nmight O O\naccess O O\nthrough O O\na O O\njQuery-Ajax-Call Name Name\nfrom O O\nyour O O\nember Name Name\napp O O\n. O O\n\nI O O\nhave O O\na O O\nWPF Name Name\nDataGrid Name Name\nwith O O\nthe O O\nfollowing O O\ndefinition O O\n. O O\n\nThis O O\nallows O O\nme O O\nto O O\nhave O O\nthe O O\nuser O O\nselected O O\na O O\n\" O O\nregion O O\n\" O O\nof O O\ncells O O\n. O O\n\nThe O O\nDataGrid Name Name\nis O O\nbound O O\nto O O\nan O O\nobservable O O\ncollection O O\n. O O\n\nThe O O\nXAML Name Name\ncolumn Name Name\ndefinitions O O\nhave O O\nsome O O\ncolumns Name Name\nhidden O O\n, O O\nsome O O\nvisible O O\nlike O O\nthis O O\n: O O\n\nI O O\nalso O O\nhave O O\na O O\nRight O O\nMouse Name Name\nButton Name Name\ncontext Name Name\nmenu Name Name\ndefined O O\nfor O O\nthe O O\nDataGrid Name Name\n: O O\n\nI O O\nwould O O\nlike O O\nto O O\nbe O O\nable O O\nto O O\nClick O O\n, O O\nDrag O O\nand O O\nDrop O O\na O O\ncopy O O\nof O O\nthe O O\ncurrently O O\nselected O O\ncells Name Name\ninto O O\nan O O\nexternal O O\napplication O O\n. O O\n\nI O O\nwas O O\nthinking O O\nof O O\nusing O O\nthe O O\ncombination O O\nof O O\npressing O O\nthe O O\n\" O O\nAlt O O\nKey O O\n\" O O\nand O O\nLeft O O\nMouse Name Name\nButton Name Name\nclick O O\nto O O\ninitiate O O\nthe O O\nDragDrop Name Name\noperation O O\n. O O\n\nFor O O\nexample O O\n, O O\nconsider O O\nthe O O\n\" O O\nirregular O O\n\" O O\nselection O O\nof O O\ncells Name Name\nin O O\nthe O O\nDataGrid Name Name\n: O O\n\nI O O\nam O O\nunclear O O\non O O\nhow O O\nto O O\nproceed O O\nand O O\nhave O O\nseveral O O\nquestions O O\nregarding O O\nthis O O\n: O O\n\n1) O O\nWhat O O\nevents O O\ndo O O\nI O O\noverride O O\nso O O\nthat O O\nthe O O\n/Left O O\nMouse Name Name\nclick O O\ndo O O\nnot O O\naffect O O\nthe O O\ncurrently O O\nselected O O\ncells Name Name\n? O O\n\n2) O O\nHow O O\ndo O O\nI O O\ndetermine O O\nwhether O O\nthe O O\nLeft O O\nMouse Name Name\nButton Name Name\nclick O O\nis O O\noccurring O O\nwithin O O\na O O\nregion O O\nof O O\nselected O O\ncells Name Name\n? O O\n\nHow O O\ndo O O\nI O O\nhandle O O\nthe O O\ndata O O\npiece O O\n? O O\n\n3) O O\nOnce O O\nI O O\n've O O\ndetermined O O\nthe O O\nabove O O\n, O O\nwhat O O\nis O O\nthe O O\nnext O O\nstep O O\n? O O\n\nDo O O\ncopy O O\ndata O O\ninto O O\nthe O O\nclipboard Name Name\nfor O O\nuse O O\non O O\nthe O O\nexternal O O\ndrop O O\n? O O\n\n4) O O\nWhat O O\nevents O O\n( O O\nif O O\nany O O\n) O O\ndo O O\nI O O\nneed O O\nto O O\noverride O O\non O O\nthe O O\nDataGrid Name Name\nin O O\norder O O\nfor O O\nthis O O\nto O O\nwork O O\n? O O\n\nThanks O O\n\nthe O O\nbasic O O\nevents O O\nto O O\ndrag O O\nand O O\ndrop O O\nare O O\n: O O\nevents O O\nto O O\ndrag O O\nand O O\ndrop O O\n\nSpecially O O\nthe O O\nDragLeave Name Name\nand O O\nDrop Name Name\nto O O\ndo O O\nwhat O O\nyou O O\nwant O O\n. O O\n\nThen O O\nyou O O\nneed O O\nto O O\ncontrol O O\n( O O\ndelete/add O O\n) O O\nthe O O\nGridData Name Name\nproperty O O\nfrom O O\nyour O O\nVM Name Name\nto O O\nsearch O O\nand O O\nmove O O\nthe O O\nvalues O O\n. O O\n\nI O O\nstrongly O O\nrecommend O O\n3rd O O\nparty O O\nlike O O\nTelerik Name Name\nto O O\ndo O O\nit O O\n. O O\n\nHere O O\nis O O\nyour O O\ncomplete O O\nanswer O O\nI O O\nbelieve O O\n. O O\n\nHere O O\nyou O O\nneed O O\nto O O\nhave O O\nthe O O\nshift O O\nkey O O\ndown O O\nto O O\nsignal O O\nthe O O\ndrag O O\n. O O\n\nThis O O\nis O O\nneeded O O\nto O O\ndisambiguate O O\nthe O O\nclick O O\nand O O\ndrag O O\nthat O O\nis O O\nused O O\nin O O\nthe O O\nDataGrid Name Name\nto O O\nselect O O\ncells Name Name\n. O O\n\nYou O O\nmight O O\nuse O O\nsome O O\nother O O\nmechanism O O\nsuch O O\nas O O\ncontext O O\nmenu Name Name\nitem O O\n. O O\n\nThe O O\nclipboard Name Name\nis O O\nkey O O\nto O O\nany O O\ndrag O O\nand O O\ndrop O O\noperation O O\n. O O\n\nWhat O O\nyou O O\nare O O\ndoing O O\nis O O\nputting O O\ndata O O\non O O\nthe O O\nclipboard Name Name\nin O O\nvarious O O\nformats O O\nthat O O\nthe O O\ntarget O O\nof O O\nthe O O\ndrop O O\nwill O O\nrecognize O O\n. O O\n\nIn O O\nthis O O\nexample O O\nonly O O\nplain O O\ntext O O\nis O O\nused O O\n. O O\n\nBut O O\nyou O O\nmight O O\nwant O O\nto O O\ncreate O O\nrich Name Name\ntext Name Name\nor O O\nHTML Name Name\nor O O\nany O O\nnumber O O\nof O O\nother O O\nformats O O\n. O O\n\nThe O O\nexternal O O\napplication O O\nyou O O\nare O O\ndropping O O\non O O\nmust O O\nbe O O\nregistered O O\nas O O\na O O\ndrop O O\ntarget O O\n. O O\n\nYou O O\ncannot O O\nforce O O\nthe O O\nother O O\napp O O\nto O O\nrespond O O\nto O O\nthe O O\ndrop O O\n... O O\nit O O\nmust O O\nbe O O\nlistening O O\nfor O O\nit O O\n. O O\n\nSo O O\nthis O O\nexample O O\nwill O O\nwork O O\nwith O O\nWord Name Name\nand O O\nExcel Name Name\n. O O\n\nIt O O\nwill O O\nnot O O\nwork O O\nwith O O\nNotepad Name Name\n. O O\n\nI O O\nbelieve O O\nall O O\n4 O O\nitems O O\nare O O\nsatisfied O O\n: O O\n\nOverride O O\nthe O O\npreview Name Name\nmouse Name Name\ndown Name Name\nevent O O\n. O O\n\nThe O O\noriginal O O\nsource O O\nof O O\nthe O O\nmouse Name Name\nevent O O\ncomes O O\nfrom O O\nthe O O\ndata Name Name\ngrid Name Name\ncell Name Name\n. O O\n\nIf O O\nthe O O\ncell Name Name\nis O O\nselected O O\nthen O O\nyou O O\nare O O\nwithin O O\nthe O O\nblock O O\nof O O\ncells Name Name\nthat O O\nis O O\nselected O O\n. O O\n\nFor O O\nthe O O\nselected O O\ncells Name Name\n, O O\ngather O O\nthe O O\ndata O O\nfrom O O\nthe O O\nbindings O O\nand O O\norganize O O\ninto O O\na O O\ngrid Name Name\n. O O\n\nAs O O\na O O\nbaseline O O\nuse O O\nplain O O\ntext O O\nbut O O\noptionally O O\nadd O O\nother O O\nformats O O\nas O O\nwell O O\n. O O\n\nUse O O\nthe O O\nDragDrop Name Name\nclass O O\nto O O\nactually O O\nimplement O O\nthe O O\ndrag O O\nand O O\ndrop O O\n. O O\n\nOverride O O\npreview Name Name\nmouse Name Name\ndown Name Name\n. O O\n\nI O O\n've O O\nseen O O\nexamples O O\nusing O O\ncrc Name Name\n, O O\nbut O O\nthe O O\nexamples O O\nI O O\n've O O\ngot O O\nmy O O\nhead O O\nround O O\nwork O O\nwith O O\ngenerating O O\na O O\nchecksum O O\nfor O O\nentire O O\ntable Name Name\ndata O O\n( O O\nfor O O\nuse O O\nwith O O\nreplication O O\nand O O\ndata O O\nvalidation O O\n) O O\n. O O\n\nFor O O\nexample O O\n: O O\n\nI O O\n'm O O\ntrying O O\nto O O\nassign O O\na O O\nchecksum O O\nvalue O O\nto O O\neach O O\nentry O O\nin O O\na O O\nMYSQL Name Name\ndatabase O O\n, O O\nbased O O\non O O\na O O\nseries O O\nof O O\nfield O O\nvalues O O\n( O O\nshown O O\nabove O O\n) O O\n. O O\n\nThe O O\nidea O O\nbeing O O\nthat O O\nwhen O O\na O O\nspecific O O\nset O O\nof O O\nfields O O\nhave O O\nthe O O\nsame O O\ndata O O\nin O O\n, O O\nthe O O\nchecksum O O\ngenerated O O\nwould O O\nbe O O\nthe O O\nsame O O\nand O O\nI O O\ncan O O\ndeal O O\nwith O O\nduplicate O O\nentries O O\nby O O\nchecking O O\nthe O O\nchecksum O O\nvalue O O\n, O O\ninstead O O\nof O O\nlengthy O O\nchecks O O\nof O O\nthe O O\nfield O O\nto O O\nsee O O\nif O O\nthey O O\ncontain O O\nmatching O O\ndata O O\n. O O\n\nI O O\n've O O\nseen O O\nthis O O\nin O O\nSQL Name Name\nSERVER Name Name\n, O O\nusing O O\nchecksum_binary O O\n, O O\nwhich O O\nis O O\nso O O\nfast O O\nbut O O\nis O O\nthere O O\na O O\nbetter O O\nsolution O O\nto O O\napply O O\na O O\nchecksum O O\nvalue O O\nto O O\nindividual O O\nfields O O\nfor O O\ncomparison O O\nor O O\nshould O O\nI O O\nstick O O\nwith O O\ntrying O O\nto O O\nmodify O O\nthe O O\nabove O O\n? O O\n\nI O O\ndo O O\nn't O O\nunderstand O O\nwhy O O\nyou O O\nare O O\ndoing O O\nsomething O O\nthis O O\ncomplicated O O\n: O O\n\nA O O\nchecksum O O\nfor O O\neach O O\nrows Name Name\nwith O O\n3 O O\ncolumns Name Name\n: O O\n\nTo O O\ninsert O O\nthis O O\nnew O O\nchecksum O O\n: O O\n\nAlter O O\nthe O O\ntable Name Name\nto O O\nadd O O\nthe O O\nnew O O\ncolumn Name Name\nthen O O\n\nA O O\nnote O O\nthe O O\nchecksum O O\nwo O O\nn't O O\nbe O O\n100% O O\nsafe O O\nas O O\nif O O\nthe O O\nlast O O\ncharacter Name Name\nof O O\n1 O O\ncolumn Name Name\nis O O\nnot O O\nthere O O\nbut O O\nfind O O\nin O O\nthe O O\nnext O O\ncolumn Name Name\nthe O O\nhash O O\nwill O O\nbe O O\nthe O O\nsame O O\n. O O\n\nMaybe O O\nyou O O\ncan O O\nadd O O\na O O\nseparator O O\nin O O\nthe O O\nconcat Name Name\nto O O\nbe O O\nsure O O\n: O O\n\nI O O\njust O O\nstarted O O\nmessing O O\nwith O O\nnode.js Name Name\nand O O\nI O O\n'm O O\nalready O O\nhaving O O\nproblems O O\n, O O\nI O O\nhave O O\nno O O\nidea O O\nhow O O\nto O O\neven O O\nstart O O\ndebugging O O\nthis. O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\njust O O\nuse O O\nnpm Name Name\njust O O\ninstall O O\neach O O\npackage O O\nwith O O\na O O\nseparate O O\ncommand O O\n\nOn O O\nmy O O\ncomputer O O\nit O O\nworks O O\n. O O\n\nMy O O\nsuggestion O O\nis O O\nto O O\nuse O O\nthe O O\n\" O O\npackage.json Name Name\n\" O O\nfile O O\n. O O\n\nIn O O\nthat O O\nfile O O\nyou O O\ncan O O\nspecify O O\nthe O O\nlibraries O O\nyou O O\nneed O O\nand O O\nit O O\n's O O\ngoing O O\nto O O\ndownload O O\nthe O O\ndependencies O O\nfor O O\nyou O O\n. O O\n\nFor O O\nexample O O\n\nand O O\njust O O\nexecute O O\n\nAnd O O\nnpm Name Name\nwill O O\nmake O O\nall O O\nfor O O\nyou O O\n. O O\n\nIt O O\nwill O O\ncreate O O\na O O\n\" O O\nnode_modules Name Name\n\" O O\nwhere O O\nthere O O\nare O O\nthe O O\ndependencies O O\n. O O\n\nJust O O\ncreate O O\nyour O O\njs Name Name\nfiles O O\nin O O\nthe O O\nsame O O\ndirectory O O\nof O O\n\" O O\nnode_modules Name Name\n\" O O\nand O O\nthe O O\ndependencies O O\nwill O O\nbe O O\nall O O\navailable O O\nto O O\nbe O O\nincluded O O\n. O O\n\nAs O O\nyou O O\ncan O O\nsee O O\nin O O\nthe O O\npackage.json Name Name\nfile O O\n, O O\nnear O O\nevery O O\ndependency O O\n, O O\nthere O O\nis O O\na O O\n\" Name Name\n* Name Name\n\" Name Name\n, O O\nthat O O\nmeans O O\n\" Name Name\nall Name Name\nversions Name Name\n\" Name Name\n. O O\n\nIf O O\nyou O O\nwant O O\n, O O\nyou O O\ncan O O\nset O O\na O O\nspecific O O\nversion O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\nknow O O\nmore O O\nabout O O\nthis O O\n, O O\nthat O O\n's O O\na O O\nuseful O O\nlink O O\n: O O\nhttps://npmjs.org/doc/json.html O O\n\nI O O\nwant O O\na O O\nplaceholder O O\nvalue O O\nto O O\nhold O O\nthe O O\nanswer O O\nto O O\na O O\ncalculation O O\n, O O\nhowever O O\nthe O O\ncompiler Name Name\ndoes O O\nn't O O\nlike O O\nit O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode. O O\n. O O\n\nWould O O\nreally O O\nappreciate O O\nit O O\nif O O\nyou O O\ncould O O\nhelp O O\nme O O\nout O O\n. O O\n\nfinal Name Name\nis O O\na O O\nkeyword O O\n. O O\n\nTry O O\nchanging O O\nyour O O\nfloat Name Name\nfinal Name Name\nto O O\nanother O O\nname O O\nlike O O\nfloat Name Name\nfinalAnswer Name Name\n\nIt O O\nis O O\nbecause O O\nyou O O\nuse O O\nthe O O\nkeyword O O\nfinal Name Name\n. O O\n\nChange O O\nyour O O\nname O O\n\nI O O\n'm O O\ntrying O O\nto O O\ndebug O O\nmy O O\napplication O O\n. O O\n\nI O O\nknow O O\nfor O O\na O O\nfact O O\nthat O O\ncode O O\nin O O\na O O\ngiven O O\nclass O O\nA Name Name\nis O O\nexecuting O O\nbecause O O\nI O O\nhave O O\nlog O O\nstatements O O\nin O O\nmethods O O\nin O O\nthat O O\nclass O O\nprinting Name Name\nwhen O O\nI O O\nrun O O\nthe O O\napp O O\n, O O\nhowever O O\nthe O O\nproblem O O\nis O O\nthat O O\nwhen O O\nI O O\nset O O\nbreakpoints O O\non O O\nthat O O\ncode O O\nwhich O O\nI O O\nknow O O\nis O O\nexecuting O O\noff O O\nof O O\nthe O O\nmain O O\nthread O O\nin O O\nclass O O\nA Name Name\n, O O\nand O O\ndebug O O\nthe O O\napp O O\n, O O\nthe O O\nbreakpoints O O\ndo O O\nn't O O\npause O O\nexecution O O\n. O O\n\nBreakpoints O O\nI O O\nhave O O\nset O O\nin O O\nonResume() Name Name\nof O O\nan O O\nActivity O O\nclass O O\nB Name Name\nare O O\nexecuting O O\n, O O\nso O O\nthere O O\n's O O\nsomething O O\nwrong O O\nwith O O\nhow O O\nAndroid Name Name\nStudio Name Name\nis O O\nchoosing O O\nto O O\nexecute O O\nbreakpoints O O\n. O O\n\nMy O O\nissue O O\nseems O O\nsimilar O O\nto O O\nthis O O\n: O O\nAndroid Name Name\nStudio Name Name\nbreakpoints O O\nnot O O\nworking O O\nin O O\ndoinbackground Name Name\n\nI O O\n've O O\ntried O O\nthat O O\nuser O O\n's O O\nworkaround O O\nbut O O\nwith O O\nno O O\nluck O O\n. O O\n\nI O O\ndeleted O O\nmy O O\n.gradle Name Name\n, O O\nand O O\n.AndroidStudioPreview Name Name\nfolders O O\n, O O\nthen O O\nrestarted O O\nmy O O\ncomputer Name Name\nand O O\nrestarted O O\nAndroid Name Name\nStudio Name Name\n. O O\n\nMy O O\nbreakpoints O O\nare O O\nworking O O\nproperly O O\nnow O O\n. O O\n\nSo O O\nit O O\nwas O O\nan O O\nissue O O\nwith O O\nAndroid Name Name\nStudio Name Name\n, O O\nand O O\nthe O O\nnuclear O O\noption O O\nworked O O\n. O O\n\nI O O\nhave O O\ntwo O O\ndataframes Name Name\n. O O\n\nThe O O\nfirst O O\nis O O\nmy O O\nmain Name Name\npool O O\n, O O\nand O O\nthe O O\nsecond O O\nis O O\na O O\n\" O O\nlist Name Name\n\" O O\nof O O\nnames O O\nthat O O\nI O O\nwant O O\nto O O\nfilter O O\non O O\n. O O\n\nmain O O\n: O O\n\nlist1 Name Name\n( O O\ncurrently O O\nin O O\na O O\ndataframe Name Name\n) O O\n\nI O O\nwant O O\nto O O\nuse O O\ndplyr::filter Name Name\nand O O\nthe O O\n%in% Name Name\noperator O O\nto O O\nsubset O O\nthe O O\nmain Name Name\npool O O\n: O O\n\nI O O\nthought O O\nthe O O\nabove O O\nwould O O\nwork O O\n, O O\nbut O O\nit O O\n's O O\ncreating O O\na O O\n0 Name Name\nrow Name Name\ndataframe Name Name\n. O O\n\nRichard O O\n's O O\nsuggestion O O\nworked O O\n! O O\n\nI O O\n'm O O\ndeveloping O O\na O O\nsingle-page O O\nweb O O\napplication O O\nusing O O\nBackbone Name Name\nand O O\nLaravel Name Name\n. O O\n\nI O O\n've O O\nset O O\nmy O O\nrouter Name Name\nto O O\nuse O O\npushState Name Name\nand O O\nconfigured O O\nLaravel Name Name\nto O O\nsend O O\nall O O\nother O O\nrequests O O\nto O O\nthe O O\nmain O O\nview O O\nof O O\nthe O O\nbackbone Name Name\napplication O O\n, O O\nwhere O O\nbackbone Name Name\ntakes O O\ncare O O\nof O O\nthe O O\nrouting O O\n. O O\n\nMy O O\nproblem/question O O\nis O O\nas O O\nfollows O O\n: O O\n\nI O O\nhave O O\na O O\nroute O O\ncalled O O\n' O O\ndashboard Name Name\n' O O\n, O O\nthis O O\nroute O O\nis O O\nthe O O\nmain O O\napplication O O\nview O O\nand O O\nis O O\nshown O O\nafter O O\nlogin O O\n. O O\n\nIt O O\nuses O O\na O O\ncollection Name Name\ncalled O O\nClients Name Name\n. O O\n\nThe O O\nDash.Views.Dashboard Name Name\nview O O\ntakes O O\ncare O O\nof O O\nall O O\nthe O O\nviews O O\nin O O\nthe O O\napplication O O\n, O O\nwhen O O\ncalling O O\nthe O O\nrenderDashboard() Name Name\n; O O\nmethod O O\n, O O\nit O O\nstarts O O\nrendering O O\nall O O\nclient Name Name\nviews O O\n. O O\n\nThis O O\nis O O\nwhere O O\nit O O\ngets O O\ninteresting O O\n. O O\n\nThe O O\ncode O O\nfor O O\nrendering O O\nall O O\nthe O O\nclient O O\nviews O O\nis O O\nas O O\nfollows O O\n: O O\n\nwith O O\nthe O O\nabove O O\ncode O O\n, O O\nit O O\nworks O O\nin O O\nall O O\ncases O O\n. O O\n\nWith O O\nthat O O\ni O O\nmean O O\nwhen O O\nI O O\nlog O O\nin O O\nfirst O O\nand O O\nthe O O\napplication O O\nroutes O O\nme O O\nto O O\nthe O O\ndashboard Name Name\nview O O\nall O O\nthe O O\nclients Name Name\ngets O O\nrendered O O\nand O O\nappended O O\nto O O\nthe O O\nDOM O O\n, O O\nthe O O\nsame O O\nthing O O\nhappens O O\nwhen O O\nI O O\naccess O O\n/dashboard Name Name\nimmediately O O\n( O O\nafther O O\nthe O O\napplication O O\nchecks O O\nif O O\ni O O\n'm O O\nlogged O O\nin O O\n) O O\n. O O\n\nBut O O\n, O O\nwhen O O\nI O O\nuse O O\nthe O O\nfollowing O O\ncode O O\nit O O\ndoes O O\nn't O O\nload O O\nthe O O\nclient Name Name\nviews O O\nwhen O O\nI O O\nfirst O O\nlog O O\nin O O\n. O O\n\nIt O O\ndoes O O\nload O O\nthe O O\nclient Name Name\nviews O O\nwhen O O\ni O O\naccess O O\n/dashboard Name Name\ndirectly O O\n. O O\n\nIt O O\ntook O O\nme O O\na O O\nwhile O O\nto O O\nfigure O O\nout O O\nthat O O\nthe O O\nfix O O\nof O O\nthe O O\nproblem O O\nwas O O\nthat O O\nI O O\nhad O O\nto O O\nreplace O O\nthis Name Name\n. Name Name\n$el Name Name\nwith O O\n$(this.el) Name Name\n, O O\nbut O O\nI O O\nalway O O\n's O O\nthought O O\nit O O\ndid O O\nn't O O\nmatter O O\nbecause O O\nthey O O\nare O O\nessentially O O\nthe O O\nsame O O\n, O O\nor O O\nam O O\nI O O\nwrong O O\nin O O\nthis O O\nassumption O O\n? O O\n\nCan O O\nsomeone O O\nexplain O O\nto O O\nme O O\nthis O O\nweird O O\nbehaviour O O\n? O O\n\nAs O O\nrequested O O\n, O O\nhere O O\nis O O\nmy O O\nglobal Name Name\nDashboard Name Name\nview O O\n\nI O O\n'd O O\nguess O O\nthat O O\nyour O O\nproblem O O\nis O O\nright O O\nhere O O\n: O O\n\nIf O O\nthere O O\nis O O\nno O O\n.dashboard Name Name\nthen O O\nyou O O\ndirectly O O\nassign O O\nto O O\nthis.el Name Name\nand O O\nthat O O\n's O O\na O O\nmistake O O\nas O O\nit O O\nwo O O\nn't O O\nupdate O O\nthis Name Name\n. Name Name\n$ Name Name\nel Name Name\n. O O\n\nThe O O\nresult O O\nis O O\nthat O O\nthis.el Name Name\nand O O\nthis Name Name\n. Name Name\n$el Name Name\nreference O O\ndifferent O O\nthings O O\nand O O\nnothing O O\nworks O O\n. O O\n\nYou O O\nshould O O\nuse O O\nsetElement Name Name\nto O O\nchange O O\na O O\nview O O\n's O O\nel Name Name\n: O O\n\nSo O O\nyou O O\nshould O O\nbe O O\nsaying O O\nthis O O\n: O O\n\nI O O\nca O O\nn't O O\nwork O O\nthis O O\nout O O\n. O O\n\nOr O O\nam O O\nI O O\nmissing O O\nsomething O O\n? O O\n\nIt O O\ndoes O O\nn't O O\nseem O O\nto O O\nwork O O\n? O O\n\nit O O\nwo O O\nn't O O\nknow O O\nabout O O\nthe O O\nold O O\nparams O O\nunless O O\nyou O O\nmerge O O\nthem O O\nin O O\nand O O\nsend O O\nthem O O\non O O\n. O O\n\nFrom O O\nthe O O\ndocumentation O O\n: O O\n\nYou O O\n're O O\npassing O O\na O O\nString Name Name\nas O O\nthe O O\nfirst O O\nargument O O\n, O O\nso O O\nit O O\n's O O\nusing O O\nthe O O\n3rd O O\noption O O\n. O O\n\nYour O O\nsecond O O\nparameter O O\nis O O\ninterpreted O O\nas O O\nthe O O\nvalue O O\nfor O O\nthe O O\nresponse_status Name Name\nparameter O O\n. O O\n\nSo O O\n, O O\nif O O\nyour O O\nredirect O O\nis O O\nan O O\ninternal O O\none O O\n( O O\nto O O\nthe O O\nsame O O\napp O O\n) O O\n, O O\nyou O O\ndo O O\nn't O O\nneed O O\nto O O\nspecify O O\nthe O O\nscheme O O\nand O O\nhostname O O\n. O O\n\nJust O O\nuse O O\n\nIf O O\nit O O\n's O O\nan O O\nexternal O O\nURL O O\n, O O\nbuild O O\nthe O O\ncomplete O O\nURL O O\nbefore O O\nredirecting O O\n: O O\n\nHi O O\ni O O\nhave O O\ncreated O O\napp O O\nusing O O\naltbeacon Name Name\nreference O O\napp O O\n. O O\n\nAnd O O\ni O O\nwant O O\nto O O\ncall O O\ndidEnterRegion Name Name\nusing O O\nbootstrap Name Name\nnotifier Name Name\nwhen O O\napp O O\nsees O O\nbeacon Name Name\nin O O\nbackground O O\n. O O\n\nBut O O\ni O O\ndont O O\nwant O O\nit O O\nto O O\nscan O O\nbackground O O\nevery O O\n5 O O\nminutes O O\n, O O\ni O O\nwant O O\nmy O O\napp O O\nreact O O\nto O O\nnew O O\nbeacon Name Name\nimmediately O O\n. O O\n\nIs O O\nthere O O\nsome O O\nway O O\nto O O\ndo O O\nthis O O\n? O O\n\nMy O O\nCode O O\n: O O\n\n} Name Name\n\nYou O O\ncan O O\nincrease O O\nthe O O\nfrequency O O\nof O O\nbackground O O\nscans O O\nwith O O\nthe O O\nfollowing O O\ncode O O\n: O O\n\nThis O O\nwill O O\nmake O O\nthe O O\nbackground O O\ndetection O O\ntimes O O\nas O O\nfast O O\nas O O\nin O O\nthe O O\nforeground O O\n. O O\n\nBut O O\nbe O O\nforewarned O O\n, O O\nthis O O\nwill O O\nmake O O\nyour O O\napp O O\nuse O O\nlots O O\nof O O\nbattery O O\npower O O\n. O O\n\nYou O O\ncan O O\ntweak O O\nthe O O\nbetween O O\nscan O O\nperiod O O\nto O O\nyour O O\ntolerance O O\nfor O O\nbattery O O\ndrain O O\n. O O\n\nAs O O\nyou O O\nnoted O O\n, O O\nthe O O\ndefault O O\nis O O\n5 O O\nminutes O O\n( O O\n5*3600l O O\n) O O\n. O O\n\nAndroid Name Name\nL Name Name\nhas O O\nnew O O\nscanning Name Name\nAPIs Name Name\nwhich O O\npromise O O\nto O O\nhelp O O\nimprove O O\nthis O O\ntradeoff O O\nbetween O O\ndetection O O\ntimers O O\nand O O\nbattery O O\nusage O O\n. O O\n\nBut O O\nfor4.3 Name Name\nand O O\n4.4 Name Name\napps O O\n, O O\nyou O O\nneed O O\nto O O\nmake O O\na O O\njudgment O O\ncall O O\n. O O\n\nI O O\n'm O O\nusing O O\nJava Name Name\n6 Name Name\n. O O\n\nDo O O\nyou O O\nthink O O\nthere O O\n's O O\na O O\nreason O O\nwhy O O\nthere O O\nare O O\nconditional O O\nexpressions O O\n\nand O O\nnot O O\nloop O O\nexpressions O O\n\nwhich O O\nadds O O\nelements O O\nfrom O O\nschedule O O\ninto O O\nweeklyPlan Name Name\nwhile O O\nhasNext() Name Name\n. O O\n\nOr O O\ndo O O\nsome O O\nlanguages O O\nhave O O\nthis O O\nfeature O O\nor O O\nsomething O O\nsimilar O O\n? O O\n\nThese O O\n\" O O\nloop O O\nexpressions O O\n\" O O\n, O O\nin O O\na O O\nslightly O O\ndifferent O O\nform O O\n, O O\nare O O\ncalled O O\nclosures O O\n. O O\n\nIn O O\ngroovy-code Name Name\n: O O\n\nThat O O\nis O O\n- O O\nyou O O\ncan O O\ndefine O O\nwhat O O\nhappens O O\nwith O O\neach O O\nobject O O\nof O O\nthe O O\nschedule Name Name\ncollection O O\n. O O\n\nJava Name Name\ndoes O O\nnot O O\nyet O O\nsupport O O\nclosures O O\n. O O\n\nThere O O\nit O O\nis O O\nimplemented O O\nwith O O\nanonymous O O\nclasses O O\n. O O\n\nOf O O\ncourse O O\nclosures O O\nare O O\nmore O O\nthan O O\nthat O O\n, O O\nand O O\nthis O O\nis O O\nonly O O\none O O\nof O O\ntheir O O\napplications O O\n. O O\n\nI O O\nthink O O\nit O O\n's O O\nbecause O O\nconditional O O\nexpressions O O\nare O O\nmuch O O\neasier O O\nto O O\nimplement O O\nwithout O O\nhaving O O\nto O O\nworry O O\nabout O O\npesky O O\ndetails O O\n. O O\n\nFor O O\nexample O O\n, O O\nlooking O O\nat O O\nyour O O\ncode O O\n, O O\nare O O\nyou O O\nsaying O O\nthat O O\nweeklyPlan.add Name Name\nwill O O\nbe O O\ncalled O O\nmultiple O O\ntimes O O\n? O O\n\nIn O O\nthat O O\ncase O O\n, O O\nthe O O\nscope O O\nof O O\nyour O O\n=> Name Name\noperator O O\njust O O\njumped O O\noutside O O\nof O O\nthe O O\nparentheses O O\nthat O O\ncontain O O\nit O O\n. O O\n\nC# Name Name\nhas O O\nfeatures O O\nin O O\nLINQ Name Name\nthat O O\ncan O O\nperform O O\nsimilar O O\nactions O O\nto O O\nwhat O O\nyou O O\n're O O\ndescribing O O\n. O O\n\nIt O O\nimplements O O\nthese O O\nusing O O\nclosures O O\nand O O\nextension O O\nmethods O O\n: O O\n\nBut O O\nthese O O\nare O O\nmuch O O\nmore O O\ntricky O O\nlanguage O O\nconstructs O O\nthan O O\nJava Name Name\nstarted O O\nout O O\nwith O O\nand O O\nthe O O\n.NET Name Name\nruntime O O\nhas O O\nbeen O O\nable O O\nto O O\nchange O O\nmuch O O\nmore O O\nrapidly O O\nthan O O\nthe O O\nJava Name Name\nplatform O O\nhas O O\n, O O\nlargely O O\nfor O O\npolitical O O\nreasons O O\n. O O\n\nJava Name Name\n7 Name Name\nwas O O\nsupposed O O\nto O O\nfeature O O\nclosures O O\n, O O\nbut O O\nthey O O\ngot O O\npushed O O\nback O O\nto O O\nthe O O\n\" O O\nnext O O\nversion O O\n. O O\n\" O O\n\nI O O\nalways O O\nread O O\nthat O O\n, O O\nat O O\nany O O\ngiven O O\ntime O O\n, O O\nthe O O\nprocessor Name Name\ncan O O\nonly O O\nrun O O\none O O\nprocess O O\nat O O\na O O\ntime O O\n. O O\n\nSo O O\none O O\nand O O\nonly O O\none O O\nprocess O O\nis O O\nin O O\nstate O O\nrunning O O\n. O O\n\nHowever O O\n, O O\nwe O O\ncan O O\nhave O O\na O O\nnumber O O\nof O O\nrunnable O O\nprocesses O O\n. O O\n\nThese O O\nare O O\nall O O\nof O O\nthese O O\nprocesses O O\nwho O O\nare O O\nwaiting O O\nfor O O\nthe O O\nscheduler O O\nto O O\nschedule O O\ntheir O O\nexecution O O\n. O O\n\nAt O O\nany O O\ngiven O O\ntime O O\n, O O\ndo O O\nall O O\nthese O O\nrunnable O O\nprocesses O O\nexist O O\nin O O\nuser O O\naddress O O\nspace O O\n? O O\n\nOr O O\nhas O O\nthe O O\ncurrently O O\nrunning O O\nprocess O O\nin O O\nuser O O\naddress O O\nspace O O\n, O O\nand O O\nit O O\nis O O\nonly O O\nonce O O\nthey O O\nare O O\nscheduled O O\nthat O O\nthey O O\nare O O\nbrought O O\nback O O\nto O O\nRAM Name Name\nfrom O O\ndisk Name Name\n. O O\n\nIn O O\nwhich O O\ncase O O\n, O O\ndoes O O\nit O O\nmean O O\nthat O O\nthe O O\nkernel Name Name\nkeeps O O\nthe O O\nprocess O O\ntask O O\ndescriptor O O\nin O O\nits O O\nlist O O\nof O O\nall O O\nrunnable O O\nprocesses O O\neven O O\nif O O\nthey O O\nare O O\nin O O\ndisk Name Name\n? O O\n\nI O O\nguess O O\nyou O O\ncan O O\ntell O O\nI O O\nam O O\nconfused O O\n. O O\n\nIf O O\nCPU Name Name\nsupports O O\nvirtual O O\nmemory O O\naddressing O O\n, O O\neach O O\nprocess O O\nhas O O\na O O\nunique O O\nview O O\nof O O\nthe O O\nmemory O O\n. O O\n\nTwo O O\ndifferent O O\nprocesses O O\nthat O O\ntries O O\nto O O\nread O O\nfrom O O\nthe O O\nsame O O\nmemory O O\naddress O O\n, O O\nwill O O\nmap O O\nto O O\ndifferent O O\nlocation O O\nin O O\nphysical O O\nmemory O O\n, O O\nunless O O\nthe O O\nmemory O O\nmaps O O\ntells O O\notherwize O O\n( O O\nshared O O\nmemory O O\n, O O\nlike O O\nDLL Name Name\nfiles O O\nare O O\nmapped O O\nread O O\nonly O O\nlike O O\nthis O O\nfor O O\ninstance O O\n) O O\n\nIf O O\nCPU Name Name\ndoes O O\nnot O O\nsupport O O\nvirtual O O\nmemory O O\n, O O\nbut O O\nonly O O\nmemory O O\nprotection O O\n, O O\nthe O O\nmemory O O\nfrom O O\nthe O O\nother O O\nprocesses O O\nwill O O\nbe O O\nprotected O O\naway O O\n, O O\nso O O\nthat O O\nthe O O\nrunning O O\nprocess O O\ncan O O\nonly O O\naccess O O\nits O O\nown O O\nmemory O O\n. O O\n\nI O O\nhave O O\nLogin O O\npage Name Name\nwithout O O\nLayout O O\n. O O\n\nI O O\n'm O O\ntry O O\nto O O\ndo O O\nlogin O O\nusing O O\najax Name Name\npost Name Name\nmethod O O\nbut O O\nthat O O\nmethod O O\nnot O O\nhit O O\non O O\nthe O O\nmvc Name Name\nController O O\nmethod O O\n. O O\n\nWhen O O\nIm O O\ntry O O\nto O O\nlogin O O\nalert Name Name\nbox Name Name\nin O O\nsuccess O O\nsection O O\nis O O\npopup O O\nwith O O\nblank O O\n. O O\n\nIf O O\nthis O O\nmethod O O\nhit O O\nthat O O\nalert O O\nshould O O\nhave O O\nsome O O\nrecord O O\n. O O\n\nplease O O\nhelp O O\nme O O\nto O O\nfix O O\nthis O O\nissue O O\n. O O\n\nAjax Name Name\nmethod O O\n: O O\n\nLogin O O\nForm O O\n: O O\n\nScripts O O\n: O O\n\nThe O O\nProblem O O\nis O O\nwith O O\ndatatype O O\nwhich O O\nyou O O\nhave O O\nnot O O\nspecified O O\nin O O\najax Name Name\nrequest O O\n: O O\n- O O\n\nIf O O\nyour O O\nalert Name Name\nis O O\nempty O O\n( O O\nand O O\nnot O O\nundefined O O\n) O O\nyour O O\nserver Name Name\nis O O\nnot O O\nresponding O O\nwith O O\na O O\nobject O O\nthat O O\nhas O O\nany O O\nvalue O O\nfor O O\nin O O\ndata.Code Name Name\n. O O\n\ne.g O O\n. O O\n\nalert({}.Code) Name Name\n; Name Name\nshows O O\nan O O\nalert Name Name\nwith O O\nundefined O O\nwhereas O O\ndata Name Name\n= Name Name\n{Code:''};alert(data.Code) Name Name\n; Name Name\nshows O O\nan O O\nempty O O\nalert Name Name\nas O O\ndescribed O O\nin O O\nyour O O\nquestion O O\n. O O\n\nProbably O O\nbest O O\nto O O\nuse O O\nthe O O\nconsole Name Name\nto O O\ndebug O O\nyour O O\ncode O O\ninstead O O\nof O O\nalerts Name Name\n. O O\n\nI O O\nam O O\nusing O O\nAFNetworking Name Name\n2.0 Name Name\nto O O\nsend O O\ndata O O\nto O O\nmy O O\nAPI Name Name\n( O O\njson Name Name\n) O O\n. O O\n\nEverything O O\nworks O O\nfine O O\nexcept O O\nof O O\nsending O O\ndata O O\nwith O O\ngerman O O\nletters O O\nlike O O\nä Name Name\nü Name Name\nö Name Name\n. O O\n\nDoes O O\nanyone O O\nknow O O\nwhat O O\nis O O\nthe O O\nproblem O O\n? O O\n. O O\n\nThe O O\nproblem O O\nis O O\nnot O O\nthe O O\nAPI Name Name\nbecause O O\ni O O\ndid O O\nit O O\nin O O\nAndroid Name Name\nand O O\nit O O\nworked O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n: O O\n\nI O O\nhave O O\na O O\nmethod O O\nthat O O\nis O O\ncalled O O\nevery O O\ntime O O\nthe O O\ndevices O O\nlocation O O\nupdates O O\nwith O O\nstatements O O\nbelow O O\nincluded O O\n: O O\n\nJust O O\ncurious O O\nas O O\nto O O\nwhy O O\nI O O\n'm O O\ngetting O O\na O O\nSIGABRT Name Name\nsignal Name Name\nfrom O O\nthis O O\nPrevSpeedDic Name Name\nhere O O\n: O O\n\nBut O O\nwhen O O\nI O O\nmove O O\nthis O O\nabove O O\nthe O O\nstatement O O\nabove O O\nit O O\nworks O O\nfine O O\nas O O\nit O O\nshould O O\n. O O\n\nMy O O\nvariables O O\nare O O\ndefined O O\ncorrectly O O\nor O O\nit O O\nwould O O\nnot O O\nwork O O\nin O O\nany O O\ncircumstance O O\n. O O\n\nLocal O O\nvariables O O\nare O O\nnot O O\ninitialized O O\nto O O\n0 Name Name\n( O O\nnil Name Name\n) O O\nby O O\ndefault O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nset O O\nDriveInfoDic Name Name\nbefore O O\nthat O O\nif O O\n, O O\nit O O\n's O O\ngoing O O\nto O O\ntake O O\nthe O O\nfirst O O\nbranch O O\nand O O\ncrash O O\n. O O\n\nI O O\n've O O\nbeen O O\nreading O O\nthrough O O\nsome O O\nsimilar O O\nquestions O O\nbut O O\nwas O O\nn't O O\nable O O\nto O O\nfind O O\nan O O\nanswer O O\nthat O O\nI O O\ncan O O\nimplement O O\n. O O\n\nI O O\nam O O\nusing O O\nGoogle Name Name\nApp Name Name\nEngine Name Name\nand O O\ndoing O O\na O O\nsimple O O\nCSV Name Name\nexport O O\nusing O O\nunicodecsv Name Name\n, O O\nwhich O O\nworks O O\nfine O O\n. O O\n\nThis O O\nexport O O\nis O O\nsupposed O O\nto O O\nrun O O\ndaily O O\nand O O\nsave O O\nthe O O\nresult O O\nas O O\nthe O O\nsame O O\nBlobstore Name Name\nitem Name Name\nevery O O\ntime O O\n, O O\nso O O\nit O O\ncan O O\nbe O O\nretrieved O O\nfrom O O\nthe O O\nsame O O\nURL O O\n. O O\n\nI O O\nknow O O\nthat O O\nthis O O\nis O O\nnot O O\nthe O O\ninitial O O\nintention O O\nof O O\nBlobstore Name Name\nitems Name Name\n, O O\nbut O O\nI O O\nalso O O\nread O O\nsome O O\narticles O O\nthat O O\ngot O O\nit O O\nworking O O\n. O O\n\nUnforuntately O O\nsince O O\nI O O\nam O O\nnot O O\nsuch O O\nan O O\nexperienced O O\nprogrammer O O\n, O O\nI O O\nwas O O\nn't O O\nable O O\nto O O\nuse O O\nany O O\nof O O\nit O O\nfor O O\nmy O O\nsituation O O\n. O O\n\nWould O O\nbe O O\ngreat O O\nif O O\nsomeone O O\ncould O O\ngive O O\nme O O\nsome O O\ninput O O\non O O\nhow O O\nto O O\nrealize O O\nthis O O\n. O O\n\nAs O O\nTim O O\npointed O O\nout O O\nyou O O\ncannot O O\noverwrite O O\nblobstore Name Name\nentity O O\n, O O\nbut O O\nyou O O\nmay O O\ncreate O O\na O O\nnew O O\none O O\nevery O O\ntime O O\nand O O\nremember O O\nthe O O\nkey Name Name\nto O O\nserve O O\nthe O O\nnew O O\nentity O O\n: O O\n\nthen O O\n, O O\nin O O\na O O\ncron Name Name\nhandler Name Name\nyou O O\nmay O O\n: O O\n\nand O O\n, O O\nfinally O O\n, O O\nwhen O O\nyou O O\nserve O O\nyour O O\nfile O O\n( O O\nin O O\na O O\nBlobstoreDownloadHandler Name Name\n) O O\nyou O O\ndo O O\njust O O\n: O O\n\nYou O O\ncan O O\nnot O O\noverwrite O O\na O O\nblob Name Name\nstore Name Name\nentity O O\n, O O\nonly O O\ndelete O O\nit O O\n. O O\n\nYou O O\nhave O O\nno O O\ncontrol O O\nover O O\nthe O O\nblob Name Name\nstore Name Name\nkey Name Name\n, O O\nso O O\nyou O O\nwill O O\nhave O O\nto O O\nkeep/manage O O\nthe O O\nURL O O\nin O O\nyourapp O O\nwith O O\na O O\nredirect O O\nto O O\nthe O O\ncurrent O O\nblob Name Name\nstore Name Name\nURL O O\n. O O\n\nAs O O\nfor O O\nwriting O O\nto O O\nthe O O\nblob Name Name\nstore Name Name\n, O O\nhave O O\na O O\nlook O O\nat O O\nthe O O\nfile Name Name\napi Name Name\n\nhttps://developers.google.com/appengine/docs/python/blobstore/overview#Writing_Files_to_the_Blobstore O O\n\nI O O\ndo O O\nnot O O\nuse O O\nXcode Name Name\nto O O\nbuild O O\nmy O O\nIPA Name Name\n. O O\n\nI O O\ntried O O\nsearching O O\napple O O\ndocumentation O O\n, O O\nbut O O\nI O O\ncannot O O\nfind O O\nwhat O O\nthe O O\nkey O O\nvalues O O\nare O O\nfor O O\nall O O\npossible O O\nsystem O O\ncapabilities O O\n. O O\n\nIn O O\norder O O\nto O O\nnot O O\nbe O O\nlazy O O\n, O O\nI O O\nalso O O\ntried O O\nto O O\narchive O O\na O O\nproject O O\nwith O O\nthese O O\ncapabilities O O\nturned O O\non O O\n, O O\nand O O\nsearched O O\nthrough O O\nthe O O\nIPA Name Name\n, O O\nbut O O\ncannot O O\nfind O O\nwhere O O\nXcode6 Name Name\nis O O\nhiding O O\nthese O O\nentitlements O O\n. O O\n\nFor O O\nusers O O\nusing O O\nXcode6 Name Name\nthese O O\nare O O\nthe O O\ncapabilities O O\nlisted O O\nhere O O\n\nSince O O\nI O O\ngenerate O O\nmy O O\nIPA Name Name\nmanually O O\n, O O\nI O O\nneed O O\nto O O\nknow O O\nwhat O O\nthese O O\nkeys O O\nare O O\nin O O\norder O O\nto O O\nmatch O O\nthe O O\ncapabilities O O\nset O O\non O O\nmy O O\nApp O O\nIdentifier O O\n. O O\n\nUPDATED O O\n\nHere O O\nare O O\nthe O O\nkey O O\nvalues O O\n, O O\nthey O O\nwere O O\nactually O O\nin O O\nthe O O\nproject.pbxproj Name Name\nfile O O\n, O O\nthanks O O\nfor O O\nthe O O\nhelp O O\n@colinta O O\n\nYour O O\nscreenshot O O\ngave O O\nme O O\nan O O\nidea O O\n- O O\ncheck O O\nthe O O\ndiff O O\nof O O\nthe O O\nproject.pbxproj Name Name\nfile O O\n! O O\n\nCame O O\nup O O\nwith O O\nthis O O\n: O O\n\nHTH O O\n\nI O O\nam O O\ncurrently O O\nworking O O\nthe O O\nfollowing O O\npagerank Name Name\nalgorithm O O\n: O O\n\nwhere O O\nmxm Name Name\ncontains O O\nthe O O\nfollowing O O\n: O O\n\nHere O O\nis O O\nthe O O\ncode O O\n: O O\n\nit O O\nshould O O\nperform O O\nthe O O\nfollowing O O\niterations O O\n: O O\n\nIteration O O\n0 O O\n: O O\n\nIteration O O\n1 O O\n: O O\n\nIteration O O\n2 O O\n: O O\n\nIteration O O\n3 O O\n: O O\n\n. O O\n\n. O O\n\n. O O\n\nIteration O O\n9 O O\n: O O\n\nhowever O O\n, O O\nit O O\ndoes O O\nnot O O\nwork O O\n. O O\n\n( O O\nThe O O\nabove O O\nis O O\na O O\npart O O\n, O O\nof O O\nthe O O\nfull O O\ncode O O\n. O O\n) O O\n\nCan O O\nanybody O O\nplease O O\nsolve O O\nthis O O\nproblem O O\n? O O\n\nIt O O\nis O O\nbased O O\non O O\nthis O O\nfunction O O\n. O O\n\nLooking O O\nat O O\nthis O O\nsection O O\nof O O\nthe O O\ncode O O\n\nVariables O O\np Name Name\nand O O\nq Name Name\nare O O\nset O O\nto O O\nthe O O\nsame O O\nvalue O O\nhost_rank[k] Name Name\n. O O\n\nSo O O\nunless O O\ni Name Name\n== Name Name\nk Name Name\n( O O\nthus O O\nchanging O O\nthe O O\narray Name Name\nelement O O\nbetween O O\np Name Name\nand O O\nq Name Name\nbeing O O\nread O O\n) O O\n, O O\nlol Name Name\nwill O O\nnot O O\nmove O O\nfrom O O\n0 Name Name\n, O O\nso O O\neucl Name Name\nwill O O\nbe O O\n0 Name Name\n, O O\nand O O\nthe O O\nloop O O\nwill O O\nbe O O\ninfinite O O\n. O O\n\nI O O\nalso O O\nsuspect O O\nthat O O\nlol Name Name\n= Name Name\n0 Name Name\nshould O O\nbe O O\nwithin O O\nthe O O\ndo-while Name Name\nloop O O\n. O O\n\nAnd O O\nunless O O\nthe O O\nvariables O O\ni Name Name\n, O O\nd Name Name\n, O O\nn Name Name\nand O O\nsumPR Name Name\nare O O\nshared O O\nand O O\naltered O O\nby O O\nanother O O\nprocess O O\n, O O\nthe O O\nloop O O\n, O O\nif O O\nit O O\nrepeats O O\n, O O\nwill O O\nalways O O\nrepeat O O\n. O O\n\nSay O O\nI O O\nhave O O\nthe O O\nfollowing O O\nHTML Name Name\n: O O\n\nWhat O O\nI O O\n'd O O\nlike O O\nto O O\ndo O O\nis O O\nreplace O O\nall O O\ninstances O O\nof O O\nUS$ Name Name\nXX.xx Name Name\nwith O O\nGBP£ Name Name\nYY.yy Name Name\non O O\nthe O O\nlive O O\npage O O\nusing O O\njquery Name Name\n. O O\n\nThe O O\nvalue O O\nof O O\nGBP Name Name\nwould O O\nbe O O\ndetermined O O\nby O O\nmy O O\nown O O\ncurrency O O\nconversion O O\nratio O O\n. O O\n\nSo O O\nI O O\n'm O O\nassuming O O\nwhat O O\nI O O\n'd O O\nfirst O O\nneed O O\nto O O\ndo O O\nis O O\nuse O O\na O O\nregular O O\nexpression O O\nto O O\nget O O\nall O O\ninstances O O\nof O O\nthe O O\nprices O O\nwhich O O\nwould O O\nbe O O\nanything O O\nbeginning O O\nwith O O\nUSD$ Name Name\nand O O\nending O O\nafter O O\n.xx Name Name\n? O O\n\nPrices O O\nwill O O\nalways O O\nhave O O\ncents O O\ndisplayed O O\n. O O\n\nThen O O\nI O O\n'm O O\nstuck O O\nwhat O O\nwould O O\nbe O O\nthe O O\nbest O O\nway O O\nto O O\naccomplish O O\nthe O O\nnext O O\npart O O\n. O O\n\nShould O O\nI O O\nwrap O O\nthese O O\ninstances O O\nin O O\na O O\nspan O O\ntag O O\nwith O O\na O O\nclass O O\n, O O\nthen O O\nuse O O\njquery.each() Name Name\nfunction O O\nto O O\nloop O O\nthrough O O\neach O O\nand O O\nreplace O O\nthe O O\ncontents O O\nwith O O\na O O\njquery(this).html(\"GBP£YY.yy\") Name Name\n? O O\n\nAny O O\nhelp O O\nsetting O O\nme O O\non O O\nthe O O\nright O O\npath O O\nwould O O\nbe O O\ngreatly O O\nappreciated O O\n. O O\n\nThanks O O\nguys O O\n. O O\n\nbase O O\nmethod O O\nfor O O\ntext O O\nreplacements O O\n: O O\n\nstuff O O\nyou O O\nneed O O\nto O O\ndo O O\n: O O\n\nyou O O\ncan O O\nfire O O\nthat O O\non O O\nANY O O\nsite O O\n. O O\n\nit O O\nwill O O\neven O O\nreplace O O\ntitles O O\netc O O\n. O O\n\nso. O O\n. O O\nto O O\ntell O O\nyou O O\nabout O O\nthe O O\nbenefits O O\nof O O\nnot O O\nusing O O\njquery Name Name\nfor O O\nthis O O\n: O O\n\njquery Name Name\nwill O O\nprocess O O\nand O O\nwrap O O\nevery O O\nsingle O O\nelement O O\nin O O\na O O\nbrowser Name Name\ncompatible O O\nway O O\n. O O\n\nusing O O\na O O\nnative O O\njavascript Name Name\nsolution O O\nwould O O\nspeed O O\nup O O\nthis O O\nprocess O O\nalot O O\n. O O\n\nusing O O\nnative O O\ntextnodes Name Name\nalso O O\nis O O\nbenefitial O O\nsince O O\nit O O\nwill O O\nnot O O\nbreak O O\nevent Name Name\nhandlers O O\nfor O O\nchild O O\nelements O O\n. O O\n\nyou O O\nshould O O\nalso O O\nconsider O O\nusing O O\nfastdom Name Name\n. O O\n\nit O O\ndoes O O\nnot O O\nmatter O O\nif O O\nyou O O\nare O O\nusing O O\njquery Name Name\nor O O\nnative O O\njs Name Name\n. O O\n\nafter O O\nwriting O O\nto O O\nelements O O\nthe O O\ndom O O\nhas O O\nto O O\ndo O O\ncertain O O\ntasks O O\nbefore O O\nit O O\ncan O O\nbe O O\nread O O\nagain O O\n. O O\n\nin O O\nthe O O\nend O O\nyou O O\nwill O O\nloose O O\nsome O O\ntime O O\nfor O O\neach O O\nedited O O\nelement O O\n. O O\n\nto O O\ngive O O\nyou O O\na O O\nfastdom Name Name\nexample O O\n: O O\n\nthis O O\nwill O O\nbasically O O\ndo O O\nthe O O\njob O O\nin O O\nan O O\ninstant O O\n. O O\n\nif O O\nyou O O\nwant O O\nto O O\ngo O O\neven O O\nfurther O O\nyou O O\ncould O O\nadd O O\nthis O O\nto O O\njquery Name Name\nas O O\nfollowing O O\n: O O\n\nand O O\ncall O O\nit O O\nlike O O\nthat O O\n: O O\n\nIf O O\nall O O\nof O O\nthese O O\nvalues O O\nare O O\ndirectly O O\nin O O\nthe O O\nspan Name Name\n, O O\nif O O\nnot O O\nyou O O\ncan O O\ngive O O\nthem O O\na O O\nunique O O\nclass O O\nand O O\nuse O O\nit O O\nto O O\niterate O O\nover O O\nthem O O\n, O O\nyou O O\ncan O O\nuse O O\nthe O O\nfollowing O O\n\nYou O O\nfirst O O\nget O O\nthe O O\nnumeric O O\npart O O\nof O O\nthe O O\nstring Name Name\nin O O\na O O\nvariable O O\n\nconvert O O\nthe O O\ncurrency O O\nstore O O\nit O O\nin O O\nother O O\nvariable O O\n. O O\n\nreplace O O\nUS$ Name Name\nwith O O\nGBP Name Name\n\nreplace O O\nnumeric O O\npart O O\nof O O\nthe O O\nstring Name Name\nwith O O\nconverted O O\nvalue O O\n\njQuery Name Name\n: O O\n\nI O O\nam O O\nworking O O\non O O\na O O\nproject O O\nthat O O\nuses O O\nblade Name Name\ntemplating Name Name\n. O O\n\nDue O O\nto O O\nserver Name Name\nlimitations O O\n, O O\nI O O\nam O O\nrequired O O\nto O O\nrather O O\nthan O O\nhave O O\nblade Name Name\ngenerate O O\ncache Name Name\nfiles O O\non O O\nthe O O\nfly O O\n- O O\nI O O\nneed O O\nto O O\nprovide O O\nblade Name Name\nwith O O\nall O O\nthe O O\ncache Name Name\nfiles O O\nfor O O\nthe O O\napplication O O\n. O O\n\nOddly O O\n, O O\nblade Name Name\nkeeps O O\nignoring O O\nall O O\nthe O O\ncache Name Name\nfiles O O\nwe O O\n're O O\nproviding O O\nand O O\nseems O O\nto O O\nreference O O\ncache Name Name\nfiles O O\nthat O O\ndo O O\nn't O O\nexist O O\n. O O\n\nAny O O\nidea O O\nwhy O O\nthis O O\nis O O\n? O O\n\nhow O O\nto O O\nprevent O O\n? O O\n\nEssentially O O\n, O O\nI O O\nam O O\n100% O O\nhappy O O\nto O O\ngenerate O O\nand O O\nftp Name Name\nall O O\nthe O O\ncache Name Name\nfiles O O\nover O O\n. O O\n\nAlthough O O\n, O O\nthe O O\nfiles O O\nblade Name Name\nattempts O O\nreference O O\nduring O O\nrender O O\ntime O O\ndo O O\nn't O O\nexist O O\nand O O\nthe O O\nfiles O O\nwe O O\nare O O\nproviding O O\nare O O\nn't O O\npicked O O\nup O O\nby O O\nblade Name Name\n. O O\n\nI O O\nappreciate O O\nthe O O\nhelp O O\n. O O\n\nClear O O\nBlade Name Name\ncache O O\n: O O\n\nI O O\n'm O O\ndeveloping O O\na O O\nwebsite O O\nusing O O\nJSP Name Name\nand O O\nServlets Name Name\nusing O O\nApache Name Name\n- Name Name\ntomcat Name Name\n5.5 Name Name\nas O O\nserver Name Name\n. O O\n\nMy O O\napplication O O\nruns O O\nfine O O\n. O O\n\nBut O O\nwhenever O O\nI O O\nleave O O\nany O O\nwebpage O O\nopen O O\nand O O\nreturn O O\nback O O\nto O O\nit O O\nafter O O\nsome O O\ntime O O\nsay O O\n30minutes O O\n, O O\nand O O\nclick O O\non O O\nany O O\nbutton Name Name\nor O O\nicon Name Name\n, O O\nit O O\nthrows O O\nerror O O\nsayin O O\n- O O\n\nSounds O O\nlike O O\nyour O O\nsession O O\nis O O\ntiming O O\nout O O\n. O O\n\nYou O O\nneed O O\nto O O\neither O O\nforce O O\nthe O O\nuser O O\nto O O\nlogin O O\nagain O O\n, O O\nor O O\nextend O O\nyour O O\nsession O O\ntimeout O O\n. O O\n\nYou O O\ncan O O\nchange O O\nthe O O\nsession O O\ntimeout O O\nby O O\nediting O O\nyour O O\nweb.xml Name Name\nand O O\nadding O O\n: O O\n\nWhich O O\nwill O O\ngive O O\nyou O O\na O O\nsession O O\ntimeout O O\nof O O\n60 O O\nminutes O O\n. O O\n\n-1 Name Name\nmeans O O\nthere O O\nis O O\nno O O\ntimeout O O\n. O O\n\nThe O O\nsymptom O O\nthat O O\nthis O O\nonly O O\noccurs O O\nafter O O\na O O\nlong O O\ntime O O\nindeed O O\nindicates O O\nthat O O\nthe O O\nsession O O\nhas O O\nbeen O O\ntimed O O\nout O O\n. O O\n\nBut O O\nchanging O O\nthe O O\nsession O O\ntimeout O O\nis O O\nnot O O\nthe O O\nright O O\nsolution O O\n. O O\n\nYou O O\nhave O O\nactually O O\na O O\nbug O O\nin O O\nyour O O\nJSP Name Name\n. O O\n\nBecause O O\nyou O O\n're O O\nusing O O\nold O O\nfashioned O O\nJSP Name Name\nscriptlets Name Name\n<% Name Name\n%> Name Name\ninstead O O\nof O O\nnormal O O\nJava Name Name\nclasses O O\nsuch O O\nas O O\nservlets Name Name\nto O O\ncontrol O O\nthe O O\nrequest/response O O\nand O O\ndo O O\nthe O O\nbusiness O O\nstuff O O\nin O O\nthe O O\nJSP Name Name\n, O O\nit O O\n's O O\nharder O O\nto O O\nnaildown O O\nthe O O\nroot O O\ncause O O\nof O O\nthe O O\nNullPointerException O O\n. O O\n\nYou O O\nneed O O\nto O O\nopen O O\nthe O O\ngenerated O O\nhomepage_jsp.java Name Name\nin O O\nserver Name Name\n's O O\nwork O O\ndirectory O O\nand O O\nhead O O\nto O O\nline O O\n107 O O\nand O O\nfinally O O\ntrackback O O\nthis O O\nline O O\ninto O O\nyour O O\nhomepage.jsp Name Name\nso O O\nthat O O\nyou O O\ncan O O\nfix O O\nthe O O\nbug O O\n. O O\n\nPerhaps O O\nyou O O\nneed O O\nto O O\ndo O O\na O O\nrequest.getSession() Name Name\ninstead O O\nof O O\nrequest.getSession(false) Name Name\n, O O\nor O O\nyou O O\nneed O O\nto O O\ncheck O O\nif O O\na O O\nsession O O\nattribute O O\nis O O\nnot O O\nnull Name Name\nbefore O O\naccessing O O\nit O O\n, O O\netcetera O O\n. O O\n\nPlease O O\nsuggest O O\nme O O\nhow O O\ncan O O\ni O O\nconfigure O O\nthe O O\norientdb Name Name\nwith O O\nspring Name Name\nmvc Name Name\n. O O\n\nI O O\nhave O O\nadded O O\nabove O O\ncode O O\ninto O O\nmy O O\nmvc-dispacher-servlet.xml Name Name\nfile O O\n\nand O O\ni O O\nhave O O\nadded O O\ndependencies O O\nalso O O\nin O O\nto O O\npom.xml Name Name\n\nMy O O\nOrientDb Name Name\nserver Name Name\nis O O\n2.2.13 Name Name\nversion O O\nwhich O O\nis O O\nlatest O O\n. O O\n\nhelp O O\nme O O\nin O O\nconfiguring O O\nit.if O O\npossible O O\nsuggest O O\na O O\nsample O O\nproject O O\nURL O O\nalso O O\n. O O\n\nThank O O\nYou O O\n\nI O O\n'm O O\ntrying O O\nto O O\nfind O O\nan O O\nappropriate O O\nway O O\nto O O\nread O O\nthe O O\ncontents O O\nof O O\nan O O\nExcel Name Name\nfile O O\non O O\nan O O\nNT Name Name\nserver Name Name\noperating O O\nsystem O O\n. O O\n\nI O O\nhave O O\nnumerous O O\nproblems O O\nusing O O\nthe O O\nExcel Name Name\nAPI Name Name\nand O O\nthen O O\ncame O O\nacross O O\nthe O O\nofficial O O\nMicrosoft Name Name\non O O\nOffice O O\nAutomation O O\nwhich O O\nstates O O\nthat O O\nthe O O\nExcel Name Name\nAPI Name Name\nis O O\nnot O O\nsuitable O O\nfor O O\nExcel Name Name\nautomation O O\n. O O\n\nThe O O\nsorts O O\nissues O O\nthat O O\nI O O\nsaw O O\nwere O O\nsimilar O O\nto O O\nthose O O\ndescribed O O\nin O O\nthe O O\narticle O O\n. O O\n\nIs O O\nthere O O\nanother O O\nway O O\nthat O O\nI O O\ncan O O\nread O O\nan O O\nExcel Name Name\nfile O O\n( O O\nxls Name Name\n, O O\nxlsx Name Name\n, O O\nxlsm Name Name\n) O O\non O O\na O O\nserver Name Name\n( O O\nno O O\nUI O O\n) O O\nin O O\nsuch O O\na O O\nway O O\nthat O O\ndoes O O\nn't O O\nsuffer O O\nthe O O\nsame O O\nsort O O\nof O O\nthreading/security/license O O\nissues O O\nimposed O O\nwithin O O\nthe O O\nExcel Name Name\nAPI Name Name\n? O O\n\nExcel Name Name\n. O O\n\nAfter O O\nof O O\nyears O O\nof O O\ntrying O O\nto O O\nstop O O\nfolks O O\nfrom O O\nusing O O\nExcel Name Name\non O O\nthe O O\nserver Name Name\n, O O\nthey O O\n've O O\ngiven O O\nup/embraced O O\nthe O O\nmarket O O\nneed O O\nand O O\nhave O O\nstarted O O\nto O O\nsupport O O\nthis O O\n. O O\n\n2007 Name Name\nhas O O\nsome O O\nimpovement O O\nfor O O\nthis O O\n, O O\nand O O\nExcel Name Name\n2010 Name Name\nis O O\nsupposed O O\nto O O\nhave O O\neven O O\nmore O O\n. O O\n\nThere O O\nwere O O\na O O\nnumber O O\nof O O\nlibraries O O\nthat O O\nwere O O\nhighlighted O O\nby O O\ndifferent O O\nusers O O\nthat O O\nwould O O\nallow O O\nthe O O\nsort O O\nof O O\nfunctionality O O\nrequired O O\n. O O\n\nI O O\n've O O\nlisted O O\nthem O O\nhere O O\nand O O\nsome O O\nof O O\nthese O O\nwere O O\nevaluated O O\nso O O\nwhere O O\nappropriate O O\nI O O\n've O O\ntried O O\nto O O\nput O O\ndown O O\ninteresting O O\ncomments O O\nfor O O\ncomparing O O\nthem O O\n. O O\n\nThe O O\ndetails O O\nI O O\n've O O\nincluded O O\nare O O\ncompletely O O\nopinion O O\nbased O O\n, O O\nhowever O O\nany O O\nof O O\nthese O O\nlibraries O O\nwould O O\nprobably O O\nachieve O O\nthe O O\nrequired O O\ngoal O O\n. O O\n\nSpreadsheetGear.Net Name Name\n\n( O O\nDid O O\nn't O O\nevaluate O O\ndue O O\nto O O\nhigh O O\npurchase O O\ncost O O\n) O O\n\nAspose.Cells Name Name\n\n( O O\nEvaluated O O\nby O O\na O O\ncollegue O O\n. O O\n\nAppeared O O\nto O O\nbe O O\nfairly O O\nsimple O O\nto O O\nimplement O O\n, O O\nperformance O O\ncomparable O O\nto O O\nExcel Name Name\nInterop O O\n) O O\n. O O\n\nGemBox Name Name\n\n( O O\nDid O O\nn't O O\nevaluate O O\n) O O\n\nExcel Name Name\nServices Name Name\n\n( O O\nSeems O O\nonly O O\nto O O\nbe O O\nincluded O O\nin O O\nSharePoint Name Name\n2007 Name Name\n) O O\n\nExcel Name Name\nMapper Name Name\n\n( O O\nDid O O\nn't O O\nevaluate O O\nbecause O O\nit O O\nrequires O O\nstrongly O O\ntyped O O\nobjects O O\nto O O\nimport O O\ninto O O\nwhich O O\ndid O O\nn't O O\nfit O O\nmy O O\nrequirement O O\n) O O\n. O O\n\nSmartXls Name Name\n\n( O O\nDid O O\nn't O O\nevaluate O O\nbecause O O\nit O O\nrequires O O\nstrongly O O\ntyped O O\nobjects O O\nto O O\nimport O O\ninto O O\nwhich O O\ndid O O\nn't O O\nfit O O\nmy O O\nrequirement O O\n) O O\n. O O\n\nActiveXls Name Name\n\n( O O\nFairly O O\neasy O O\nto O O\nuse O O\n, O O\nlack O O\nof O O\nProperties O O\nraises O O\nquestions O O\n, O O\nthey O O\nhave O O\na O O\npreference O O\nof O O\nMethods O O\nfor O O\ntrivial O O\nactions O O\n. O O\n\nDespite O O\nit O O\n's O O\nclaim O O\nof O O\n1M O O\nrecords O O\na O O\nsecond O O\nwas O O\nout O O\nperformed O O\nby O O\ncheaper O O\nFlexCel Name Name\n. O O\n\nHave O O\ndecided O O\nthat O O\nthe O O\nhelp/API O O\nmanual O O\nis O O\nalmost O O\nuseless O O\n. O O\n) O O\n\nKoogra Name Name\n\n( O O\nDid O O\nn't O O\nevaluate O O\ndue O O\nto O O\nfinding O O\nno O O\ndocumentations/information O O\n) O O\n\nFileHelpers Name Name\n\n( O O\nDid O O\nn't O O\nevaluate O O\n) O O\n\nFlexcel Name Name\n\n( O O\nLowest O O\ncost O O\nsolution O O\nfound O O\n, O O\ngood O O\nperformance O O\nand O O\nwas O O\nsimple O O\nto O O\nimplement O O\nwith O O\na O O\nclose O O\nproximity O O\nto O O\nExcel Name Name\nInterop O O\nstructure O O\n. O O\n\nAlso O O\nreceived O O\nquick O O\nresponse O O\nto O O\ntechnical O O\nquestion O O\nfrom O O\nsupport O O\n. O O\n\nProbably O O\nmy O O\npick O O\nof O O\nthe O O\nbunch O O\n. O O\n) O O\n\nSyncFusion Name Name\nBackOffice Name Name\n\n( O O\nMedium O O\ncost O O\nand O O\nhad O O\na O O\nreasonable O O\nstructure O O\n. O O\n\nUnfortunately O O\nhad O O\nmore O O\ndifficulty O O\nimplementing O O\nand O O\ninconsistent O O\nresults O O\nwhen O O\nrunning O O\nunit O O\ntests O O\n. O O\n\nAlso O O\nreceived O O\na O O\nnumber O O\nof O O\n' O O\nAttempted O O\nto O O\nread O O\nprotected O O\nmemory O O\n' O O\nerrors O O\n, O O\nwhich O O\ndid O O\nn't O O\nencourage O O\nme O O\nwith O O\npurely O O\nmanaged O O\nlibrary O O\n. O O\n) O O\n\nI O O\nhave O O\ntried O O\na O O\nfew O O\nreally O O\nbasic O O\ncss Name Name\nhovers Name Name\nwhich O O\nwork O O\non O O\nall O O\nbrowsers Name Name\nexcept O O\nie10 Name Name\n. O O\n\nMy O O\nquestion O O\nnow O O\nis O O\nwhat O O\nis O O\ngoing O O\non O O\n? O O\n\nIt O O\nonly O O\nworks O O\non O O\nanchor O O\ntags O O\n. O O\n\nIs O O\nthere O O\nany O O\nwork-around O O\n? O O\n\nI O O\ntried O O\nspecifying O O\na O O\nbackground-color Name Name\nbut O O\nthat O O\ndoesnt O O\nwork O O\n. O O\n\nI O O\nread O O\na O O\nlot O O\non O O\nstackoverflow Name Name\nbut O O\nnon O O\nof O O\nit O O\nseems O O\nto O O\nbe O O\nrelated O O\nto O O\nmy O O\nproblem O O\n. O O\n\nNot O O\nsure O O\nif O O\nthis O O\nanswers O O\nyour O O\nquestion O O\nbut O O\nthe O O\ncode O O\nbelow O O\nworks O O\nfor O O\nme O O\n( O O\nIE10 Name Name\n, O O\nWin7 Name Name\non O O\nVirtual Name Name\nMachine Name Name\n) O O\n\nAnother O O\noption O O\nis O O\nto O O\nuse O O\nJavascript Name Name\n. O O\n\nI O O\nfinally O O\nfound O O\nout O O\nwhat O O\nwas O O\nwrong O O\n! O O\n\nThe O O\nanswer O O\nis O O\nso O O\nretarded O O\nthat O O\nI O O\ndid O O\nn't O O\nbelive O O\nit O O\nwould O O\nwork O O\nbut O O\nit O O\ndid O O\n. O O\n\nSimply O O\nadd O O\nthis O O\nat O O\nthe O O\npage O O\nbeginning O O\n( O O\nbefore O O\n<html> Name Name\ntag O O\n) O O\n: O O\n\nYep O O\n, O O\nInternet Name Name\nExplorer. Name Name\n. O O\n\nOtherwise O O\nthe O O\n:hover Name Name\nworks O O\nonly O O\non O O\n<a> Name Name\nand O O\n<button> Name Name\ntags O O\n. O O\n\nI O O\nhave O O\ncreated O O\none O O\napplication O O\nand O O\nrunning O O\nSSIS Name Name\nPackage Name Name\ndynamically O O\n. O O\n\nBut O O\nwhile O O\nrunning O O\nthe O O\ncode O O\nApplication O O\ngot O O\ncrashed.I O O\nsaw O O\neventviewer Name Name\nand O O\nfound O O\nbelow O O\nexception Name Name\n\nPlease O O\nhelp O O\nme O O\nto O O\nfix O O\nthis. O O\n. O O\n\nSo O O\nI O O\ncurrently O O\nhave O O\n2 O O\npipelines Name Name\n, O O\nboth O O\nare O O\nordered O O\nas O O\nbelow O O\n. O O\n\nThey O O\nexecute O O\nin O O\nthe O O\ncorrect O O\norder O O\n. O O\n\n1 O O\n. O O\n) O O\n\nThe O O\nfirst O O\npipeline Name Name\nis O O\na O O\nmutator O O\n. O O\n\n2 O O\n. O O\n) O O\n\nThe O O\nsecond O O\nis O O\nsubmits O O\nthe O O\ninformation O O\nto O O\nthe O O\ndatabase O O\n. O O\n\nThe O O\ndata O O\ncorrectly O O\ngets O O\nsubmitted O O\nto O O\nthe O O\ndatabase O O\n. O O\n\nMy O O\nproblems O O\nis O O\nthat O O\nsometimes O O\nwhen O O\ndata O O\nreaches O O\nmy O O\nmutator O O\npipeline Name Name\nI O O\nwant O O\nto O O\ncreate O O\n' O O\nadditional O O\n' O O\nitems O O\nto O O\npass O O\nto O O\nmy O O\nsecond O O\npipeline Name Name\n. O O\n\nCurrently O O\n( O O\nwithout O O\nmutations O O\n) O O\nit O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nI O O\ncannot O O\nhowever O O\n, O O\nreturn O O\nmore O O\nthan O O\nonce O O\n. O O\n\nI O O\nalso O O\ndo O O\nnot O O\nwant O O\nto O O\ncreate O O\nan O O\nadditional O O\nitem O O\nthat O O\nstarts O O\nfrom O O\nthe O O\nstart O O\nof O O\npipeline Name Name\n1 O O\n. O O\n\nMany O O\nhelps O O\nin O O\nadvance O O\n. O O\n\nQuickly O O\nlooking O O\nat O O\nthe O O\ndocs O O\nyou O O\ncould O O\nprobably O O\ncreate O O\na O O\nsubclass O O\nof O O\nscrapy.item.Item Name Name\n, O O\nthat O O\nis O O\nsort O O\nof O O\nlike O O\na O O\nlinked Name Name\nlist Name Name\n. O O\n\nNot O O\nhaving O O\ntouched O O\nscrapy O O\nmuch O O\nsomething O O\nlike O O\nthis O O\ncould O O\ndo O O\nit O O\n. O O\n\nIt O O\nmight O O\nneed O O\nsome O O\nmodifications O O\nbut O O\nshould O O\nbe O O\nenough O O\nto O O\nget O O\nyou O O\nstarted O O\n. O O\n\nNow O O\nyour O O\nprocess O O\nitems O O\ncan O O\ncreate O O\nmultiple O O\nItems O O\nand O O\nchain O O\nthem O O\n. O O\n\nNow O O\nin O O\nyour O O\ndatabase O O\npipeline O O\nyou O O\ncan O O\nprocess O O\neach O O\nitem O O\n. O O\n\nI O O\nhave O O\na O O\ndatabase O O\nstructure O O\nlike O O\nthis O O\n: O O\n\nI O O\nwrite O O\nthe O O\ndatabase O O\ninto O O\nan O O\narray Name Name\n\nand O O\nrestructure O O\nthat O O\narray Name Name\nto O O\nset O O\nup O O\nchild-parent O O\nrelations O O\nwith O O\nthis O O\nfunction O O\n: O O\n\nand O O\nthe O O\ngenerated O O\narray Name Name\nlooks O O\nlike O O\nthis O O\n\nnow O O\ni O O\nneed O O\nto O O\nsort O O\nevery O O\ndimension O O\nof O O\nthe O O\narray Name Name\nby O O\nthe O O\nsort O O\nvalue O O\n, O O\n( O O\nmy O O\n\" O O\nreal O O\narray Name Name\n\" O O\nhas O O\nmore O O\nsubarrays Name Name\nthen O O\nthis O O\none O O\n) O O\n. O O\n\ni O O\nplayed O O\naround O O\nwith O O\nmultisort Name Name\nbut O O\ni O O\nca O O\nn't O O\nseem O O\nto O O\nfind O O\nthe O O\nsolution O O\n\nany O O\nideas O O\n? O O\n\nSort O O\nthe O O\narray Name Name\nwhen O O\nit O O\nis O O\n1 O O\ndimension O O\nbefore O O\nyou O O\nbuild O O\nthe O O\nmulti-dimensional O O\narray Name Name\n. O O\n\nEven O O\nbetter O O\nif O O\nyou O O\nare O O\nusing O O\na O O\nquery O O\n, O O\nsort O O\nit O O\nthere O O\n. O O\n\nSort O O\nby O O\nparent O O\nthen O O\nsort O O\n. O O\n\nWhen O O\nyou O O\nbuild O O\nyour O O\nmultidimensional O O\narray Name Name\n, O O\neach O O\nchild O O\nwill O O\nbe O O\nappended O O\nto O O\nthe O O\nparent O O\n. O O\n\nIf O O\nthey O O\nare O O\nalready O O\nin O O\nthe O O\ncorrect O O\norder O O\n, O O\nthey O O\nwill O O\nend O O\nup O O\nin O O\nthe O O\nsame O O\norder O O\n. O O\n\nI O O\n've O O\nbeen O O\ntrying O O\nto O O\nmake O O\nan O O\narray Name Name\nof O O\nlabels Name Name\ndisplayed O O\non O O\nJFrame Name Name\n. O O\n\nBut O O\nJFrame Name Name\ncould O O\nn't O O\ndisplay O O\nthe O O\ncreated O O\nlabels Name Name\n. O O\n\nIt O O\njust O O\nappears O O\nblank O O\n. O O\n\nHow O O\nto O O\nfix O O\nthis O O\nproblem O O\n? O O\n\nJFrame Name Name\nhas O O\nBorderLayout Name Name\nimplemented O O\nin O O\nAPI Name Name\n, O O\nin O O\nBorderLayout Name Name\nonly O O\none O O\nJComponents Name Name\ncan O O\nbe O O\nplaced O O\nto O O\none O O\nof O O\n5th O O\nareas O O\n\nyour O O\ncode O O\nposted O O\nhere O O\nis O O\nn't O O\ncompleted O O\n, O O\ndoes O O\nn't O O\nshows O O\nhow O O\nis O O\narrays Name Name\nof O O\nJLabels Name Name\nadded O O\nto O O\nJFrame Name Name\n\nto O O\nstart O O\nwith O O\nGridLayout Name Name\n\nI O O\n'd O O\nbe O O\nsuggest O O\nto O O\nuse O O\nJTable Name Name\n( O O\nin O O\nJScrollPane Name Name\n) O O\ninstead O O\nof O O\nbunch O O\nof O O\nJLabels Name Name\nadded O O\nto O O\nJFrame Name Name\n\nI O O\nhave O O\nbeen O O\ntrying O O\nto O O\nrender O O\na O O\nrich:dataTable Name Name\n, O O\nbut O O\nfails O O\n, O O\nwhen O O\nit O O\ncomes O O\nto O O\nits O O\nconditional O O\nrendering.I O O\nwanted O O\nto O O\nrender O O\nit O O\nonly O O\nif O O\nthe O O\nsize O O\nof O O\nthe O O\nlist Name Name\n, O O\nthe O O\nbacking-bean O O\nfetches O O\nfrom O O\nDB O O\n, O O\nis O O\ngreater O O\nthan O O\nzero Name Name\n. O O\n\nJSF-2.0 Name Name\n, O O\nRichFaces-4 Name Name\nare O O\nwhat O O\ni O O\nuse O O\n. O O\n\nYou O O\nhave O O\nto O O\nuse O O\nthe O O\n\" O O\nrender O O\n\" O O\nattribute O O\nof O O\nthe O O\ndatatable O O\n. O O\n\nWith O O\nit O O\nyou O O\ncan O O\ndefine O O\nif O O\nthe O O\ncomponent O O\nis O O\nrendered O O\nto O O\nthe O O\nclient Name Name\nor O O\nnot O O\n. O O\n\nSo O O\ncheck O O\nby O O\nEL O O\nif O O\nthe O O\nlist Name Name\nis O O\npopulated O O\n. O O\n\nyou O O\ncan O O\ndo O O\nsomething O O\nlike O O\n: O O\n\nand O O\nall O O\nis O O\nfine O O\n. O O\n\nI O O\nalways O O\nimplement O O\nmy O O\ndatabase O O\nquery Name Name\nmethod O O\nto O O\nnever O O\nreturn O O\nnull Name Name\n, O O\nif O O\nthe O O\nquery Name Name\nhas O O\nno O O\nresult O O\nI O O\nreturn O O\nan O O\nempty Name Name\nlist Name Name\n. O O\n\nThis O O\nway O O\ni O O\n'm O O\nsure O O\nI O O\nnever O O\nget O O\na O O\nnullpointerexception O O\nand O O\nI O O\nprefer O O\nthen O O\nto O O\nshow O O\nan O O\nempty Name Name\ntable Name Name\n. O O\n\nBecause O O\nit O O\n's O O\neaser O O\nto O O\nlayout O O\nthe O O\npage O O\n, O O\nwhen O O\nyou O O\nare O O\nsure O O\nthe O O\ntable Name Name\nalways O O\nexist O O\n. O O\n\nHope O O\nthat O O\nhelps O O\n. O O\n\nIt O O\nlooks O O\nlike O O\nthe O O\nattribute O O\nname O O\non O O\nthe O O\na4j:jsFunction Name Name\nis O O\nreRender Name Name\ninstead O O\nof O O\njust O O\nrender O O\n. O O\n\nShould O O\nfix O O\nit O O\n. O O\n\nI O O\nfound O O\nthis O O\ngreat O O\ncode O O\nwhich O O\nis O O\nhelping O O\nme O O\nparse O O\nthrough O O\nand O O\ndisplay O O\nresults O O\nfrom O O\na O O\nphp Name Name\ngenerated O O\nhtml Name Name\ntable Name Name\non O O\nanother O O\npage O O\non O O\nmy O O\nserver Name Name\n, O O\nusing O O\nPHP Name Name\n's O O\nDOMDocument Name Name\nand O O\nDOMXpath Name Name\n: O O\n\nThe O O\nproblem O O\nis O O\n, O O\nI O O\nwant O O\nto O O\nadd O O\nanother O O\nvariable O O\nto O O\nthe O O\nsame O O\nforeach Name Name\nloop O O\n, O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nThis O O\ncode O O\nis O O\nnot O O\nworking O O\n, O O\nand O O\nI O O\n've O O\ndone O O\na O O\nbit O O\nof O O\nresearch O O\nalso O O\n, O O\nwhich O O\nhas O O\nlead O O\nme O O\nto O O\nbelieve O O\nthat O O\nincluding O O\nmultiple O O\nvariables O O\nin O O\nthe O O\nsame O O\nforeach Name Name\nloop O O\nis O O\nnot O O\npossible O O\n. O O\n\nCan O O\nanyone O O\nverify O O\nthis O O\n, O O\nand O O\nif O O\nso O O\n, O O\ndoes O O\nanyone O O\nhave O O\nanother O O\nidea O O\nfor O O\nhow O O\nI O O\ncould O O\nachieve O O\na O O\nsimilar O O\nresult O O\n? O O\n\nThanks O O\nso O O\nmuch O O\n! O O\n\nI O O\nwant O O\nto O O\ncopy O O\ndiv Name Name\ntag O O\naction O O\nto O O\ninputbox Name Name\nin O O\nclick O O\nevent.In O O\ndiv Name Name\ntag O O\ncalender Name Name\nis O O\ndisplayed O O\n. O O\n\nJust O O\nshow O O\ndatepicker Name Name\non O O\na O O\nclick O O\nevent O O\nlike O O\nthis O O\n: O O\n\nI O O\nam O O\ntrying O O\nto O O\nintegrate O O\nAWS Name Name\nAPI Name Name\nGateway Name Name\nwith O O\nan O O\nAWS Name Name\nlambda Name Name\nfunction O O\n. O O\n\nThe O O\nintegration O O\nworks O O\nflawlessly O O\nuntil O O\nI O O\nuse O O\nthe O O\n' O O\nLambda O O\nProxy O O\nintegration O O\n' O O\nin O O\nmy O O\nIntegration O O\nRequest O O\n. O O\n\nWhen O O\nI O O\ncheck O O\n' O O\nUse O O\nLambda O O\nProxy O O\nintegration O O\n' O O\nin O O\nmy O O\nintegration O O\nrequest O O\n, O O\nI O O\nstart O O\ngetting O O\n: O O\n\nI O O\ngoogled Name Name\naround O O\na O O\nbit O O\nand O O\nrealized O O\nthat O O\nI O O\nneed O O\nto O O\nsend O O\nback O O\nthe O O\nresponse O O\nin O O\na O O\ncertain O O\nformat O O\n: O O\n\nHowever O O\n, O O\ndespite O O\ndoing O O\nthat O O\n, O O\nI O O\nstill O O\ncontinue O O\nto O O\nsee O O\nthe O O\nsame O O\nerror O O\n. O O\n\nWhat O O\nam O O\nI O O\ndoing O O\nwrong O O\n? O O\n\nThis O O\nis O O\nwhat O O\nmy O O\nLambda Name Name\nfunction O O\nlooks O O\nlike O O\n: O O\n\nWhen O O\nI O O\ntest O O\nthe O O\nAPI O O\nfrom O O\nAPI Name Name\nGateway Name Name\nconsole O O\n, O O\nthis O O\nis O O\nthe O O\nresponse O O\nI O O\nget O O\n: O O\n\nIf O O\nI O O\nun-check O O\nthe O O\n' O O\nUse O O\nLambda O O\nProxy O O\nintegration O O\n' O O\n, O O\neverything O O\nworks O O\nokay O O\n. O O\n\nBut O O\nI O O\nwant O O\nto O O\nknow O O\nwhy O O\nmy O O\nresponse O O\nis O O\nmalformed O O\nand O O\nhow O O\nto O O\nfix O O\nit O O\n. O O\n\nThanks O O\n! O O\n\nI O O\nfigured O O\nit O O\nout O O\n. O O\n\nI O O\nwas O O\nsending O O\nthe O O\nresponse O O\nback O O\nin O O\nan O O\nincorrect O O\nmanner O O\n. O O\n\nThe O O\nresponse O O\nhad O O\nto O O\nbe O O\nsent O O\nback O O\nas O O\na O O\nPOJO Name Name\nobject O O\ndirectly O O\nrather O O\nthan O O\nserializing O O\nthe O O\nPOJO Name Name\nand O O\nsending O O\nit O O\nback O O\nas O O\na O O\nString Name Name\n. O O\n\nThis O O\nis O O\nhow O O\nI O O\ngot O O\nit O O\nto O O\nwork O O\n. O O\n\nHope O O\nthis O O\nhelps O O\nsomeone O O\n! O O\n\nI O O\n'm O O\nusing O O\nArdent Name Name\nwith O O\nLaravel Name Name\n. O O\n\nWe O O\nare O O\nworking O O\non O O\na O O\nsite O O\nthat O O\nonly O O\nallows O O\nUS O O\ncustomers O O\nbut O O\nwe O O\n're O O\nextending O O\nit O O\nto O O\nCanadian O O\ncustomers O O\nas O O\nwell O O\n. O O\n\nOne O O\nof O O\nour O O\nrequirements O O\nis O O\nthat O O\nthe O O\nzip O O\ncode O O\nbe O O\n5-9 Name Name\ncharacters Name Name\nlong O O\n, O O\nall O O\nnumbers O O\n( O O\nwe O O\nstrip O O\nout O O\nthe O O\ndash O O\nand O O\nother O O\npunctuation O O\nto O O\nvalidate O O\n) O O\n. O O\n\nWe O O\nwant O O\nto O O\nhave O O\nvalidation O O\nfor O O\npostal O O\ncodes O O\nas O O\nwell O O\n, O O\nbut O O\nonly O O\nfor O O\npostal_codes Name Name\nto O O\nbe O O\nrequired O O\nif O O\nzip_code Name Name\nis O O\nnot O O\noffered O O\n( O O\nand O O\nvice O O\nversa O O\n) O O\n. O O\n\nIs O O\nthis O O\npossible O O\n? O O\n\nTheoretically O O\nwe O O\ncould O O\nuse O O\njust O O\none O O\nfield O O\nbut O O\nwe O O\n'd O O\nhave O O\nto O O\nhave O O\na O O\nmore O O\ncomplex O O\nregex O O\n. O O\n\nIn O O\nmy O O\nsite O O\n, O O\nI O O\nhandle O O\nthis O O\nwith O O\na O O\ncountry Name Name\nfield O O\n: O O\n\nYou O O\ncould O O\nalso O O\nuse O O\nrequired_without Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\ntest O O\nhow O O\nlong O O\nmy O O\nbattery Name Name\nruns O O\non O O\nmy O O\nraspberry Name Name\npi Name Name\n. O O\n\nAll O O\ni O O\nneed O O\nto O O\ndo O O\nis O O\nrun O O\na O O\nwhile O O\nloop O O\nuntil O O\nthe O O\nbattery Name Name\ndies O O\n. O O\n\nHowever O O\n, O O\nI O O\nneed O O\nto O O\nrecord O O\nthe O O\ntime O O\nthat O O\nit O O\nstarts O O\nand O O\nends O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nsave O O\nthe O O\ndata O O\ninto O O\na O O\ntxt Name Name\nfile O O\n. O O\n\nMy O O\ncurrent O O\ncode O O\nis O O\nas O O\nfollows O O\n: O O\n\nIf O O\nI O O\njust O O\nprint O O\nthe O O\nresults O O\nin O O\npython Name Name\ni O O\nwill O O\nget O O\na O O\nresult O O\n, O O\nand O O\nthe O O\ncurrent O O\ncode O O\nmakes O O\na O O\nfile Name Name\ncalled O O\n' O O\nfile Name Name\n' O O\nbut O O\nthere O O\nis O O\nnothing O O\nsaved O O\nin O O\nthe O O\ntxt Name Name\nfile O O\n. O O\n\nAny O O\nand O O\nall O O\nhelp O O\nwould O O\nbe O O\nappreciated O O\n. O O\n\nThank O O\nyou O O\nfor O O\nyour O O\ntime O O\n\nNo O O\nneed O O\nto O O\nrecord O O\nthese O O\ntimes O O\nyourself O O\n. O O\n\nThe O O\nPi Name Name\n( O O\nand O O\nalmost O O\nany O O\nLinux Name Name\ndistribution O O\n) O O\nwrites O O\nthose O O\nevents O O\nto O O\nthe O O\n/var/log/wtmp Name Name\nfile O O\n( O O\nmore O O\nabout O O\nthat O O\nfile O O\nhere O O\n) O O\n. O O\n\nThe O O\nlast Name Name\ncommand O O\ncan O O\nretrieve O O\nthose O O\nevents O O\n( O O\nalso O O\nsee O O\nthe O O\nmanual O O\nentry O O\nfor O O\nlast O O\n) O O\n. O O\n\nTry O O\nthe O O\nfollowing O O\n: O O\n\nExplanation O O\nof O O\nthe O O\nflags O O\n: O O\n\n-F Name Name\nprints O O\nthe O O\nfull O O\ndate O O\nand O O\ntimes O O\n- O O\nwhich O O\nis O O\nhandy O O\nin O O\nyour O O\ncase O O\n, O O\nbecause O O\nthat O O\n's O O\nwhat O O\nyou O O\nwanted O O\nto O O\nknow O O\n. O O\n\n-R Name Name\nsuppresses O O\nthe O O\nhostname O O\nin O O\nthe O O\noutput O O\n. O O\n\nYou O O\ndo O O\nn't O O\nneed O O\nthat O O\n. O O\n\n-x Name Name\nshows O O\nshutdown O O\nen O O\nrunlevel O O\nchanges O O\n- O O\nnow O O\nthat O O\n's O O\nwhat O O\nyou O O\nwanted O O\nto O O\nknow O O\n. O O\n\nFinally O O\nthe O O\ngrep Name Name\nstatement O O\nfilters O O\nout O O\nthe O O\nboot O O\nor O O\nshutdown O O\nmessages O O\n. O O\n\nI O O\nwould O O\nrecomend O O\ncode O O\nthat O O\nlooks O O\nlike O O\nthe O O\nfollowing O O\n: O O\n\nThe O O\ncouple O O\nof O O\ndifferences O O\n. O O\n\nFirst O O\n, O O\nyou O O\nalways O O\nopen Name Name\nthe O O\nfile Name Name\nin O O\nappend O O\nmode O O\n. O O\n\nThis O O\nway O O\n, O O\nthe O O\nfile Name Name\nwill O O\nbe O O\nflushed O O\nevery O O\ntime O O\n. O O\n\nNext O O\n, O O\nit O O\nwill O O\nalways O O\nupdate O O\nthe O O\nfile Name Name\nwith O O\nthe O O\namount O O\nof O O\ntime O O\nelapsed O O\n. O O\n\nSo O O\neven O O\nif O O\nyour O O\nraspberry Name Name\npi Name Name\nshuts O O\ndown O O\n, O O\nyou O O\nshould O O\nbe O O\nable O O\nto O O\nrecover O O\nit O O\n. O O\n\nContext O O\n\nGNU Name Name\nbash Name Name\n4.4.12(1)-release Name Name\n\nPowerline Name Name\n2.5.2-1 Name Name\n\nPS1 Name Name\nScript O O\n\nPowerline Name Name\nconfig O O\n\nconfig.json Name Name\n\ncolors.json Name Name\n\ncolorschemes/shell/default.json Name Name\n\nthemes/shell/default.json Name Name\n\nProblem O O\n\nI O O\nhave O O\nthe O O\nsame O O\nproblem O O\nas O O\nhim O O\n, O O\nwhen O O\nI O O\nwrite O O\na O O\nfew O O\nchars Name Name\nthe O O\nline O O\nwraps O O\nand O O\nI O O\nstart O O\nwriting O O\nin O O\nthe O O\nsame O O\nline O O\n, O O\noverwriting O O\nwhat O O\nI O O\nalready O O\nwrote O O\n( O O\nincluding O O\nps Name Name\n1) Name O\n. O O\n\nI O O\nam O O\naware O O\nthat O O\nthis O O\ncould O O\nbe O O\na O O\nnon-printable O O\ncharacter O O\nproblem O O\n, O O\nbut O O\ndoes O O\nn't O O\nit O O\nmeans O O\nthat O O\nit O O\n's O O\na O O\npowerline Name Name\nbug O O\n? O O\n\nWhat O O\nother O O\nproblems O O\ncan O O\nit O O\nbe O O\n? O O\n\nI O O\nam O O\nattempting O O\nto O O\nqueue Name Name\nmultiple O O\nnotifications Name Name\nto O O\npop O O\nat O O\ndifferent O O\ntimes O O\ndepending O O\non O O\nwhen O O\nthe O O\nuser O O\nclicks O O\na O O\nbutton Name Name\n( O O\nscheduleNotification Name Name\noccurs O O\n10 O O\nseconds O O\nafter O O\nits O O\npressed O O\n) O O\nbut O O\nthe O O\nnotifications Name Name\nall O O\npop O O\nat O O\nthe O O\nsame O O\ntime O O\ndepending O O\non O O\nthe O O\nusers O O\nfinal O O\npress O O\nof O O\nthe O O\nbutton Name Name\n. O O\n\nFor O O\nexample O O\n, O O\npressing O O\nthe O O\nbutton Name Name\n4 O O\ntimes O O\n, O O\nthe O O\nfinal O O\nnotification Name Name\nwill O O\npop O O\n10 O O\nseconds O O\nafter O O\nthe O O\n4th O O\nclick O O\n. O O\n\nRelevant O O\ncode O O\n: O O\n\nReceiver Name Name\nclass O O\n\nI O O\nhave O O\nform O O\nvalidation O O\ncode O O\nwhich O O\nnotifies O O\nwhen O O\nthe O O\nEmployeeNo Name Name\nand O O\nEngagementID Name Name\nhave O O\nalready O O\nbeen O O\ncreated O O\n. O O\n\nIt O O\nshould O O\nwork O O\nlike O O\nthis O O\n: O O\nwhen O O\nyou O O\nhave O O\nan O O\nEmployeeNo Name Name\nwith O O\n0507 Name Name\nand O O\nan O O\nEngagementID Name Name\nwith O O\n13 Name Name\n, O O\nit O O\nshould O O\nnot O O\ncreate O O\na O O\nduplicate O O\n. O O\n\nThe O O\nerror O O\nshould O O\nbe O O\n, O O\nEngagement O O\nalready O O\nexists O O\non O O\nthat O O\nusername O O\n. O O\n\nCan O O\nyou O O\nplease O O\nhelp O O\nme O O\n? O O\n\nsimply O O\nput O O\nyou O O\n're O O\ndeclaring O O\na O O\nclass O O\nnamed O O\n\" O O\nDie Name Name\n\" O O\nand O O\ndefining O O\n3 O O\nfunctions O O\nwhich O O\ndo O O\nthe O O\nfollowing O O\n: O O\n\nshow Name Name\n: O O\nreturns O O\na O O\nstring Name Name\nwith O O\nthe O O\nface O O\nvalue O O\nof O O\nthe O O\ndie O O\nin O O\nbrackets O O\n\ngetFaceValue Name Name\n: O O\nget O O\nthe O O\nface O O\nvalue O O\nof O O\nthe O O\ndie O O\n\nroll Name Name\n: O O\ngets O O\na O O\nrandom O O\nnumber O O\nbetween O O\n1 Name Name\nand O O\n6 Name Name\n, O O\nessentially O O\nrolling O O\nthe O O\ndie O O\n\nI O O\nhave O O\n: O O\n\nI O O\nwant O O\nto O O\nfind O O\nB Name Name\nin O O\nA Name Name\n, O O\nbut O O\nlike O O\nthis O O\n: O O\n\nfind O O\nfirst O O\nrowA O O\nof O O\nvalue O O\n1 O O\n( O O\nfrom O O\nB Name Name\n) O O\n\nfind O O\nfirst O O\nrowA O O\nof O O\nvalue O O\n0 O O\n( O O\nfrom O O\nB Name Name\n) O O\n\nfind O O\nfirst O O\nrowA O O\nof O O\nvalue O O\n5 O O\n( O O\nfrom O O\nB Name Name\n) O O\n\nI O O\nshould O O\nhave O O\nat O O\nthe O O\nend O O\nC Name Name\n=[ Name Name\n2 Name Name\n2 Name Name\n1 Name Name\n2 Name Name\n2 Name Name\n] Name Name\n\nYour O O\ncode O O\nis O O\nalmost O O\ncorrect O O\n. O O\n\nYou O O\nmust O O\ninitialize O O\nthe O O\nindex-variable Name Name\n: O O\n\nIn O O\nMySQL Name Name\n, O O\nis O O\nit O O\npossible O O\nto O O\nstore O O\na O O\ntype O O\nin O O\na O O\nvariable O O\nand O O\nuse O O\nit O O\nin O O\nfollowing O O\nexpressions O O\n? O O\n\nThe O O\nreason O O\nis O O\nto O O\nreduce O O\ncode O O\nduplicity O O\nand O O\navoid O O\npossible O O\nproblems O O\nwhen O O\nediting O O\nexisting O O\nscripts O O\nwhen O O\nit O O\nis O O\nmandatory O O\nto O O\nuse O O\nthe O O\nsame O O\ntype O O\n. O O\n\nFor O O\nexample O O\n: O O\n\nI O O\nhad O O\n1 O O\nperl Name Name\nscript O O\nin O O\nwhich O O\nwe O O\nwrite O O\ncouple O O\nof O O\nsubroutines O O\n. O O\n\nExample O O\n: O O\n\nNow O O\n, O O\ni O O\nwrote O O\nanother O O\nscript O O\nTry_2.pl Name Name\n, O O\nin O O\nwhich O O\ni O O\nwant O O\nto O O\ncall O O\ncheck O O\nsubroutine O O\nof O O\nperl Name Name\nscript O O\nTry_1.pl Name Name\n. O O\n\nIt O O\nsounds O O\nlike O O\nyou O O\nwant O O\nto O O\ncreate O O\na O O\nmodule O O\n. O O\n\nTry_1.pm Name Name\n( O O\nEdit O O\n: O O\nnote O O\nextension O O\n) O O\nshould O O\nhave O O\nthe O O\nfollowing O O\nform O O\n: O O\n\nAnd O O\nthen O O\nTry_2.pl Name Name\nneeds O O\nto O O\nget O O\nthat O O\ncode O O\n: O O\n\nThat O O\nwhat O O\nyou O O\n're O O\nlooking O O\nfor O O\n? O O\n\nIf O O\nyou O O\nare O O\nnot O O\nusing O O\nmodules O O\n( O O\nextension O O\n.pm Name Name\n) O O\nbut O O\ninstead O O\nuse O O\nlibraries O O\n( O O\nextension O O\n.pl Name Name\n) O O\n: O O\n\nMake O O\nsure O O\nthat O O\nboth O O\nfiles O O\nTry_1.pl Name Name\nand O O\nTry_2.pl Name Name\nare O O\nin O O\nthe O O\nsame O O\ndirectory O O\n. O O\n\nShould O O\nI O O\nuse O O\nArrayList Name Name\n, O O\nVectors Name Name\n, O O\nHashMp Name Name\nor O O\nis O O\nthere O O\nanything O O\nelse O O\nI O O\nshould O O\nuse O O\nto O O\nstore O O\ndata O O\nfrom O O\na O O\nbank O O\nprogram O O\nI O O\nam O O\nworking O O\non O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nstore O O\nthe O O\nuser O O\ninformation O O\nin O O\nan O O\none O O\nof O O\nthem O O\nand O O\nthen O O\nsend O O\nit O O\nto O O\na O O\nfile O O\n, O O\nwhich O O\nshould O O\nI O O\nuse O O\n? O O\n\nThank O O\nyou O O\n. O O\n\nTo O O\ndecide O O\nbetween O O\nusing O O\nan O O\nArrayList/Vector Name Name\nor O O\na O O\nHashMap Name Name\ndepends O O\non O O\nwhether O O\nyou O O\nhave O O\nkey-value O O\npairs O O\nor O O\nsimple O O\na O O\nlist Name Name\nof O O\nelements O O\n. O O\n\nFor O O\nkey-value O O\npairs O O\na O O\nHashMap Name Name\nis O O\nthe O O\ngo-to O O\noption O O\n( O O\ne.g O O\nname Name Name\n- O O\nperson Name Name\nobject O O\n) O O\n. O O\n\nIf O O\nyou O O\njust O O\nhave O O\nobjects Name Name\nbut O O\nno O O\nreal O O\nkeys O O\n( O O\na O O\nlist O O\nof O O\ntrees O O\nin O O\na O O\nforest O O\n) O O\nthen O O\na O O\nArrayList Name Name\nor O O\nVector Name Name\nwould O O\nbe O O\nbetter O O\n. O O\n\nThe O O\ndifference O O\nbetween O O\nVector Name Name\nand O O\nArrayList Name Name\nis O O\nmore O O\nsubtle O O\n. O O\n\nIf O O\nyou O O\nwant O O\nmore O O\ninformation O O\non O O\nthe O O\ndifference O O\nbetween O O\nthe O O\ntwo O O\nyou O O\ncan O O\nread O O\nthis O O\narticle O O\n. O O\n\nBut O O\nas O O\nthe O O\narticle O O\nis O O\nfrom O O\n2001 O O\n, O O\nthe O O\ninformation O O\nis O O\nn't O O\nthe O O\nnewest O O\n. O O\n\nIn O O\nmost O O\ncases O O\n, O O\nthe O O\nArrayList Name Name\nis O O\nthe O O\nbetter O O\nchoice O O\nand O O\nVector Name Name\nis O O\npretty O O\nmuch O O\nconsidered O O\ndeprecated O O\nnowadays O O\n. O O\n\nAs O O\nthe O O\nbiggest O O\ndifference O O\nbetween O O\nthe O O\ntwo O O\nis O O\n, O O\nthat O O\nVector Name Name\nis O O\nsynchronized O O\nwhile O O\nArrayList Name Name\nis O O\nn't O O\n, O O\nwhich O O\nin O O\nmost O O\ncases O O\n, O O\nmakes O O\nthe O O\nVector Name Name\nslower O O\nthan O O\nthe O O\nArrayList Name Name\nas O O\nit O O\ncreates O O\nunnecessary O O\noverhead O O\n. O O\n\nFor O O\nmore O O\ninformation O O\nyou O O\ncan O O\nlook O O\nat O O\nthis O O\nquestion O O\n: O O\nWhy O O\nis O O\nJava Name Name\nVector Name Name\nclass O O\nconsidered O O\nobsolete O O\nor O O\ndeprecated O O\n? O O\n\nI O O\nam O O\ncoding O O\nin O O\nQt Name Name\nC++ Name Name\n. O O\n\nI O O\nam O O\ndeclaring O O\na O O\nliteral O O\ndouble Name Name\nvalue O O\nin O O\nmy O O\nmain O O\nrountine O O\nof O O\n0.1 Name Name\n. O O\n\nI O O\nthen O O\npass O O\nthis O O\nvariable O O\nto O O\na O O\nfunction O O\nthat O O\ntakes O O\ntype O O\ndouble Name Name\n. O O\n\nWhen O O\nI O O\nhover O O\nthe O O\nmouse O O\nover O O\nthe O O\nvariable O O\nin O O\ndebug O O\nmode O O\nI O O\nsee O O\n0.100000000000001 Name Name\n\nWhat O O\nis O O\nthe O O\ncause O O\nof O O\nthis O O\nchange O O\nand O O\nhow O O\ndo O O\nI O O\nstop O O\nit O O\nplease O O\n? O O\n\nMethod O O\nDefinition O O\n: O O\n\nMethod O O\nCall O O\nwith O O\nliteral O O\nvalue O O\nof O O\n0.1 Name Name\n: O O\n\nMy O O\nenvironment O O\nis O O\nWindows Name Name\n64 Name Name\nbit O O\nOS O O\nusing O O\nQt Name Name\n5.2.1 Name Name\nand O O\ncompiling O O\nusing O O\nMicrosoft Name Name\n2010 Name Name\nVisual Name Name\nStudio Name Name\ncompiler Name Name\nin O O\n32 O O\nbit O O\n. O O\n\nMany O O\ndecimal O O\nnumbers O O\nare O O\nnot O O\nexactly O O\nrepresentable O O\nin O O\nIEEE O O\nfloating O O\npoint O O\n( O O\ni.e O O\n. O O\nthe O O\nbinary O O\nrepresentation O O\nused O O\nfor O O\ndouble Name Name\n) O O\nand O O\n0.1 Name Name\nfalls O O\nin O O\nthis O O\ncamp O O\n. O O\n\nWhen O O\nyou O O\ntype O O\n0.1 Name Name\nthe O O\nC++ Name Name\ncompiler Name Name\nis O O\nrequired O O\nto O O\nconvert O O\nthat O O\ninto O O\na O O\ndouble Name Name\nto O O\nbe O O\nrepresented O O\non O O\nyour O O\nhardware O O\n. O O\n\nIt O O\ndoes O O\nso O O\nby O O\ncomputing O O\na O O\nnear O O\napproximation O O\nof O O\nthis O O\nand O O\nso O O\nyou O O\nsee O O\na O O\nbit O O\nof O O\nerror O O\n. O O\n\nIf O O\nyou O O\ntry O O\nsomething O O\nlike O O\na O O\npower O O\nof O O\ntwo O O\n: O O\n0.5 Name Name\n, O O\n0.25 Name Name\nthese O O\nwill O O\nbe O O\nexactly O O\nrepresented O O\n. O O\n\nSee O O\nthis O O\nlink O O\nfor O O\na O O\nmuch O O\nmore O O\nin-depth O O\ndescription O O\nof O O\nthe O O\nidea O O\n. O O\n\nThis O O\nis O O\nnormal O O\nbehaviour O O\nin O O\nany O O\ncomputer Name Name\n. O O\n\nIt O O\n's O O\ncaused O O\nby O O\nthe O O\nfact O O\nthat O O\ndecimal Name Name\nnumbers Name Name\nare O O\nbeing O O\nstored O O\nin O O\nfixed-sized O O\nbinary O O\nmemory O O\n. O O\n\nThe O O\nextra O O\ndigits O O\ncome O O\nfrom O O\nthe O O\ninherent O O\nerrors O O\ncaused O O\nby O O\nconverting O O\nfrom O O\nbinary O O\nto O O\ndecimal O O\n. O O\n\nYou O O\nwill O O\nnot O O\nget O O\nrid O O\nof O O\nthem O O\n. O O\n\nThe O O\nbest O O\nyou O O\ncan O O\ndo O O\nis O O\nchoose O O\na O O\nprecision O O\n( O O\neither O O\nfloat Name Name\nor O O\ndouble Name Name\n) O O\nthat O O\nis O O\nbig O O\nenough O O\nso O O\nthat O O\nthe O O\nextra O O\nerror O O\ndigits O O\nwill O O\nnot O O\nmake O O\nany O O\ndifference O O\nto O O\nyour O O\nsolution O O\n, O O\nand O O\nthen O O\nchop O O\nthem O O\noff O O\nwhen O O\nyou O O\ndisplay O O\nthe O O\nnumber O O\n. O O\n\nWhen O O\nmy O O\nview Name Name\ncontroller Name Name\nis O O\nfirst O O\npresented O O\n, O O\nI O O\nwant O O\nit O O\nto O O\npotentially O O\nupdate O O\na O O\ncache O O\nthat O O\nprovides O O\nthe O O\ndata O O\nfor O O\nthat O O\nview O O\n. O O\n\nHowever O O\n, O O\nwhen O O\nthe O O\nuser O O\ntaps O O\nthe O O\nback O O\nbutton Name Name\nfrom O O\na O O\ndeeper O O\nview Name Name\ncontroller Name Name\nto O O\nreturn O O\nto O O\nthis O O\nview Name Name\ncontroller Name Name\n, O O\nI O O\ndo O O\nn't O O\nwant O O\nto O O\nupdate O O\nthe O O\ncache O O\nagain O O\n. O O\n\nWhich O O\nevent O O\nshould O O\nI O O\nbe O O\nusing O O\n? O O\n\nin O O\ninit Name Name\n, O O\nI O O\ndo O O\nn't O O\nhave O O\nall O O\nthe O O\nparameters O O\nI O O\nneed O O\nyet O O\n. O O\n\nviewWillAppear Name Name\nwill O O\nbe O O\nfired O O\nevery O O\ntime O O\nthe O O\nview O O\nwill O O\nappear O O\n. O O\n\nviewDidLoad Name Name\nwill O O\nbe O O\nfired O O\nevery O O\ntime O O\nthe O O\nview O O\nhas O O\nbeen O O\nloaded O O\nfrom O O\nthe O O\nnib Name Name\n, O O\nwhich O O\nI O O\nbelieve O O\ncould O O\nhappen O O\na O O\nsecond O O\ntime O O\nif O O\nthere O O\n's O O\na O O\nmemory O O\nwarning O O\n. O O\n\n( O O\nOr O O\nis O O\nthis O O\nwrong O O\n? O O\n) O O\n\nSince O O\nthis O O\nis O O\nnot O O\na O O\nmemory O O\nresident O O\ncache O O\n, O O\nit O O\nseems O O\nthe O O\nwrong O O\nplace O O\nto O O\nhandle O O\nthis O O\n. O O\n\nhaving O O\nthe O O\ncaller O O\ncall O O\nsomething O O\nextra O O\nis O O\ninelegant O O\n, O O\nif O O\nthere O O\n's O O\na O O\nbuilt-in O O\nway O O\nto O O\nhandle O O\nthis O O\n. O O\n\nTo O O\nclarify O O\n, O O\nthis O O\nis O O\nnot O O\na O O\nmemory O O\nresident O O\ncache O O\n. O O\n\nThis O O\nis O O\nparsing O O\nan O O\nXML Name Name\nfile O O\nto O O\nbinary Name Name\n. O O\n\nThe O O\nbinary Name Name\nis O O\nloaded O O\nand O O\nunloaded O O\nin O O\nviewDidLoad Name Name\nand O O\nviewDidUnload Name Name\n. O O\n\nThis O O\nis O O\na O O\nprerequisite O O\nfor O O\nthat O O\nstep O O\n, O O\nmaking O O\nsure O O\nthe O O\nbinary Name Name\nis O O\nup-to-date O O\nprior O O\nto O O\nit O O\nbeing O O\nloaded O O\n. O O\n\nload O O\nthe O O\ncache O O\nin O O\nviewDidLoad Name Name\nand O O\nrelease O O\nit O O\nin O O\nviewDidUnload Name Name\nand O O\ndealloc Name Name\n. O O\n\nviewDidUnload Name Name\nis O O\ncalled O O\nduring O O\nlow-memory O O\nconditions O O\n. O O\n\nif O O\nyou O O\nwant O O\nyour O O\napp O O\nto O O\nremain O O\nresponsive O O\n, O O\nyou O O\n'd O O\nfree O O\nup O O\nas O O\nmuch O O\nmemory O O\nas O O\nyou O O\ncan O O\n. O O\n\nwell O O\nexplained O O\nhere O O\n: O O\nWhen O O\nshould O O\nI O O\nrelease O O\nobjects O O\nin O O\n-(void)viewDidUnload Name Name\nrather O O\nthan O O\nin O O\n-dealloc Name Name\n? O O\n\nUsing O O\ninit Name Name\nmay O O\nwork O O\n, O O\nbut O O\nI O O\nwould O O\nrecommend O O\na O O\nsimple O O\nsubclass O O\nof O O\nUINavigationController Name Name\n. O O\n\nCreate O O\na O O\nnew O O\nmethod O O\ncalled O O\nsetRootTableViewController Name Name\n:( Name Name\nUITableViewController Name Name\n*) Name Name\ncontroller Name Name\n, O O\nor O O\nsomething O O\nlike O O\nit O O\n. O O\n\nIn O O\nthe O O\nmethod O O\nimplementation O O\ncall O O\nthis O O\n: O O\n\nreloadData Name Name\nwill O O\ncall O O\nall O O\nof O O\nyour O O\ndelegate O O\nand O O\ndata O O\nsource O O\nmethods O O\n, O O\nand O O\nuse O O\nthem O O\nto O O\nupdate O O\nthe O O\ntable Name Name\n. O O\n\nIf O O\nyou O O\nwant O O\na O O\nspecial O O\nmethod O O\ncall O O\non O O\nyour O O\ntable Name Name\nview Name Name\ncontroller Name Name\ninstead O O\n, O O\nyou O O\ncould O O\nchange O O\nthe O O\nmethod O O\ndeclaration O O\nto O O\nsetRootTableViewController Name Name\n:( Name Name\nCustomTableViewController Name Name\n*) Name Name\ncontroller Name Name\n( O O\nor O O\nwhatever O O\nyour O O\ncustom O O\ntable O O\ncontroller O O\nis O O\ncalled O O\n) O O\n, O O\nand O O\nreplace O O\nthe O O\nreloadData Name Name\nline O O\nwith O O\none O O\nthat O O\ncalls O O\nthat O O\nmethod O O\n. O O\n\nThen O O\n, O O\nin O O\nyour O O\napp O O\ndelegate O O\n, O O\ninstead O O\nof O O\ncreating O O\na O O\nUINavigationController Name Name\nand O O\nadding O O\nyour O O\ncustom O O\nview Name Name\ncontroller Name Name\n, O O\ncreate O O\none O O\nof O O\nthese O O\n, O O\nand O O\ncall O O\nthis O O\nmethod O O\nto O O\nadd O O\nthe O O\nfirst O O\nview O O\n. O O\n\nHowever O O\n, O O\nif O O\nyou O O\nare O O\nusing O O\na O O\nnib Name Name\nto O O\nset O O\nthe O O\nrootViewController Name Name\n, O O\nyou O O\ncan O O\njust O O\noverride O O\ninitWithRootViewController Name Name\n:( Name Name\nUIViewController Name Name\n*) Name Name\ncontroller Name Name\n, O O\nas O O\nI O O\nimagine O O\nthat O O\nis O O\nwhat O O\nthe O O\nnib Name Name\nwill O O\ncall O O\nto O O\nset O O\nthe O O\nfirst O O\nview O O\nin O O\nthe O O\nstack O O\n: O O\n\nHope O O\nthis O O\nhelps O O\n! O O\n\nThis O O\nquery O O\nworks O O\nin O O\ndata Name Name\nstudio Name Name\n, O O\nbut O O\nfails O O\nto O O\nshow O O\nalias O O\nin O O\nMS Name Name\nQuery Name Name\n! O O\n\nI O O\nhave O O\ntried O O\ndifferent O O\ntypes O O\nsuch O O\nas O O\n\"\",'',[] Name Name\nand O O\neven O O\nhttps://support.microsoft.com/en-us/kb/298955 O O\n\nSELECT Name Name\n' Name Name\nTRANIN'AS Name Name\nNAME Name Name\n, Name Name\nSUM Name Name\n( Name Name\nCASE Name Name\nWHEN Name Name\nALT3.TRANINDT Name Name\nBETWEEN Name Name\n20150603 Name Name\nAND Name Name\n20150601 Name Name\nTHEN Name Name\n1 Name Name\nelse Name Name\n0 Name Name\nEND Name Name\n) Name Name\nAS Name Name\nCurrentMonth Name Name\n, Name Name\nSUM Name Name\n( Name Name\nCASE Name Name\nWHEN Name Name\nALT3.TRANINDT Name Name\nBETWEEN Name Name\n20150501 Name Name\nAND Name Name\n20150531 Name Name\nTHEN Name Name\n1 Name Name\nelse Name Name\n0 Name Name\nEND Name Name\n) Name Name\nAS Name Name\nLastMonth Name Name\n\nFROM Name Name\nALT3 Name Name\n\nMS Name Name\nbroke O O\nMS Name Name\nquery Name Name\na O O\nlong O O\ntime O O\nago O O\n.. O O\n. O O\n\nI O O\n've O O\ntried O O\nto O O\nget O O\nit O O\nto O O\nwork O O\nright O O\n, O O\nbut O O\nnothing O O\nworked O O\n. O O\n\nI O O\n've O O\npretty O O\nmuch O O\ngiven O O\nup O O\n. O O\n\nNormally O O\nI O O\njust O O\nrename O O\nthe O O\ncolumn Name Name\nonce O O\nthe O O\ndata O O\nis O O\nback O O\nin O O\nExcel Name Name\n. O O\n\nBut O O\nif O O\nyou O O\nreally O O\nwant O O\nthe O O\nname O O\nreturned O O\nfrom O O\nMS Name Name\nquery Name Name\n, O O\nthis O O\nworks O O\n: O O\n\nI O O\ndo O O\nn't O O\nknow O O\nwhy O O\n, O O\nbut O O\ni O O\nca O O\nn't O O\npick O O\nthe O O\nvalue O O\nof O O\nthe O O\nperson__name Name Name\nand O O\nperson__email Name Name\n, O O\nthe O O\nmost O O\nstrange O O\npart O O\nis O O\nthat O O\ni O O\ncan O O\npick O O\nthe O O\nvalue O O\nin O O\nthe O O\nconsole Name Name\non O O\nthe O O\nbrowser Name Name\n.. Name Name\n. O O\nsomeone O O\nknows O O\nwhat O O\ncould O O\nbe O O\ncausing O O\nthis O O\n? O O\n\nThis O O\nis O O\nnot O O\na O O\nproblem O O\nof O O\nhtml Name Name\nthe O O\n2 O O\ninputs Name Name\nfields Name Name\nhave O O\nthe O O\nid O O\nperson__name Name Name\nand O O\nperson__email Name Name\n. O O\n\nThe O O\ncode O O\nis O O\nin O O\na O O\nexternal O O\nfile O O\n, O O\nand O O\ni O O\nam O O\ncalling O O\nthat O O\nin O O\nthe O O\nbottom O O\nof O O\nmy O O\nhtml Name Name\n. O O\n\nHTML Name Name\n: O O\n\nI O O\ncant O O\nuse O O\nthe O O\nsubmit O O\ninput O O\n. O O\n\nUPDATE O O\n: O O\n\nThe O O\nscripts O O\nin O O\nthe O O\nbottom O O\nof O O\nthe O O\npage O O\n: O O\n\nInside O O\nthe O O\nmain O O\nscript O O\n: O O\n\nIf O O\nyou O O\nwant O O\nto O O\nalert Name Name\nthe O O\nname Name Name\n, O O\nmake O O\nsure O O\nyou O O\nuse O O\nthe O O\nname Name Name\nin O O\nthe O O\njQuery Name Name\n\nhttp://jsfiddle.net/376fLujs/3/ O O\n\nAlso O O\n, O O\nmake O O\nsure O O\nyour O O\nscript O O\nis O O\nincluded O O\nproperly O O\n. O O\n\nInclude O O\nthe O O\njQuery Name Name\nbefore O O\nyour O O\nscript O O\n: O O\n\nadd O O\n: O O\nconsole.log(\"working\") Name Name\n; Name Name\nas O O\nthe O O\nvery O O\nfirst O O\nline O O\nof O O\nyour O O\nscript O O\n\nopen O O\nthe O O\nchrome Name Name\nconsole Name Name\n/ O O\nFirebug Name Name\nand O O\nrefresh O O\nyour O O\npage O O\n. O O\n\nif O O\nyou O O\ndo O O\nn't O O\nsee O O\n\" O O\nworking O O\n\" O O\nin O O\nthe O O\nconsole Name Name\n, O O\nyour O O\njavascript Name Name\nis O O\nnot O O\nincluded O O\nproperly O O\n. O O\n\nEdit O O\n: O O\nbased O O\non O O\nyour O O\ncomments O O\nagain O O\n. O O\n\nIf O O\nyou O O\nhave O O\nmultiple O O\nforms O O\n, O O\nre-using O O\nthe O O\nsame O O\nID Name Name\n, O O\nit O O\nwill O O\nnot O O\nwork O O\n. O O\n\nAlways O O\nkeep O O\nIDs Name Name\nunique O O\n. O O\n\nSince O O\nyour O O\nlink O O\nis O O\ninside O O\nof O O\nthe O O\nform Name Name\nlike O O\nyour O O\ninput O O\n, O O\nyou O O\ncould O O\ndo O O\nthis O O\n: O O\n\nhttp://jsfiddle.net/376fLujs/4/ O O\n\nI O O\nwould O O\nsay O O\ntry O O\nusing O O\nthis O O\nfor O O\nyour O O\nevent O O\nhandling O O\n: O O\n\nThe O O\nreason O O\nit O O\nmight O O\nnot O O\nbe O O\nworking O O\nis O O\nbecause O O\nthe O O\nelement O O\nmight O O\nnot O O\nyet O O\nbe O O\ncreated O O\nwhen O O\nthe O O\nscript O O\nloads O O\n. O O\n\nThis O O\nshould O O\ntake O O\ncare O O\nof O O\nthat O O\nissue O O\n. O O\n\nI O O\n'll O O\ntry O O\nto O O\nkeep O O\nthis O O\nas O O\nbrief O O\nas O O\npossible O O\n. O O\n\nI O O\nhave O O\nGitLab Name Name\nserver Name Name\non O O\nwhich O O\nI O O\nhave O O\na O O\nfew O O\nrepositories O O\n. O O\n\nI O O\n'm O O\nusing O O\ntheir O O\nAPI Name Name\n, O O\nspecifically O O\nGet O O\nfile O O\narchive O O\nusing O O\ncURL Name Name\nand O O\nPHP Name Name\n. O O\n\nCode O O\nbellow O O\n: O O\n\nThe O O\nfile O O\ndownloads O O\nproperly O O\nand O O\nis O O\nsaved O O\non O O\nthe O O\ndisk O O\n. O O\n\nHowever O O\n, O O\nwhen O O\nI O O\ntry O O\nto O O\nunzip O O\nit O O\nMAC Name Name\nOS Name Name\nautomatically O O\nadds O O\na O O\n.git Name Name\nextension O O\n. O O\n\nIf O O\nI O O\nmanually O O\nremove O O\nthe O O\n.git Name Name\nextension O O\nit O O\nwill O O\nbe O O\nproperly O O\nrecognized O O\nas O O\na O O\nfolder O O\nand O O\neverything O O\nseems O O\nto O O\nbe O O\nin O O\norder O O\n( O O\nno O O\nmissing O O\nfiles O O\n, O O\nno O O\ncorrupted O O\nfiles O O\n, O O\netc O O\n) O O\n. O O\n\nThis O O\nis O O\na O O\nnuisance O O\nto O O\nsay O O\nthe O O\nleast O O\n. O O\n\nI O O\n'm O O\nnot O O\nparticularly O O\nsure O O\nif O O\nmy O O\ncode O O\nis O O\nwrong O O\n, O O\nor O O\nthere O O\n's O O\nsomething O O\nwrong O O\nwith O O\nGitLab Name Name\n's O O\nAPI Name Name\n, O O\nor O O\nthere O O\n's O O\nsomething O O\nwrong O O\nhow O O\nMAC Name Name\nOS Name Name\ntreats O O\n.git Name Name\nextension O O\n. O O\n\nTo O O\nbe O O\nperfectly O O\nhonest O O\nI O O\ndo O O\nn't O O\neven O O\nknow O O\nwhere O O\nto O O\nbegin O O\ndebugging O O\n. O O\n\nGoogle Name Name\nand/or O O\nSO Name Name\ndoes O O\nn't O O\nhave O O\nanything O O\nof O O\nsignificance O O\neither O O\n. O O\n\nI O O\n'm O O\nusing O O\nOS Name Name\nX Name Name\nVersion O O\n10.8.4 Name Name\n\nI O O\n'll O O\nleave O O\na O O\ncomment O O\nwith O O\ntheir O O\nAPI Name Name\nlink O O\nin O O\nthe O O\ncomments O O\n, O O\nbecause O O\napparently O O\nI O O\nca O O\nn't O O\nuse O O\nlinks O O\nsince O O\nI O O\n'm O O\na O O\nnew O O\nuser O O\n. O O\n\nI O O\nam O O\nnewer O O\nto O O\nAndroid Name Name\n, O O\nbut O O\nand O O\nam O O\nattempting O O\nto O O\nadd O O\ngroup O O\nchat O O\nfunctionality O O\nthat O O\nwould O O\nbe O O\nsimilar O O\nto O O\nthe O O\nGroupMe Name Name\napp O O\n. O O\n\nWithin O O\nGroupMe Name Name\n, O O\na O O\nperson O O\ncan O O\nmake O O\na O O\ngroup O O\n, O O\ninvite O O\nfriends O O\nand O O\nall O O\nthose O O\nfriends O O\ncan O O\nshare O O\ncontent O O\nand O O\nsee O O\nthe O O\nmessage O O\nupdates O O\nof O O\nother O O\nmembers O O\n. O O\n\nI O O\nhave O O\nresearched O O\nScringo Name Name\n, O O\nas O O\nit O O\nis O O\na O O\nfree O O\nimplementation O O\nof O O\nperson O O\nto O O\nperson O O\nchat O O\n, O O\nbut O O\nthe O O\ndocs O O\non O O\nGroup O O\nchat O O\nimply O O\nonly O O\nusing O O\n' O O\nchat O O\nrooms O O\n' O O\n, O O\nnot O O\npersonal O O\nsmall O O\ngroup O O\nrelated O O\nchats O O\nsuch O O\nas O O\nin O O\nGroupMe Name Name\n. O O\n\nIs O O\nthere O O\na O O\npossibility O O\nof O O\ncustomizing O O\nScringo Name Name\nso O O\nthat O O\none O O\ncan O O\nenable O O\nsuch O O\n' O O\nprivate O O\n' O O\n, O O\ninvitation O O\nonly O O\n, O O\ngroup O O\nfeatures O O\n? O O\n\nYou O O\ncan O O\nuse O O\nthe O O\nScringoCommentButton Name Name\n( O O\nhttp://www.scringo.com/docs/android-guides/popular/setup-chat-rooms-and-forums/#Adhoc O O\n) O O\nand O O\nlet O O\nonly O O\nthe O O\nusers O O\nyou O O\nwant O O\ninto O O\nthat O O\nroom O O\n. O O\n\nYou O O\ncan O O\nshow O O\nthis O O\nbutton Name Name\nonly O O\nto O O\nallowed O O\nusers O O\n. O O\n\nBTW O O\n, O O\nyou O O\ncan O O\neven O O\ncustomize O O\nthe O O\nUI O O\nof O O\nthe O O\nbutton Name Name\nusing O O\nthe O O\nXML Name Name\n: O O\nscringo_comment_button.xml Name Name\n, Name Name\ninside O O\nthe O O\nScringo Name Name\nAndroid Name Name\nLibrary Name Name\nproject O O\n\nI O O\nhave O O\na O O\nproblem O O\n. O O\n\nI O O\nam O O\nusing O O\na O O\nVisual Name Name\nstudio Name Name\nweb O O\nperformance O O\ntest O O\nand O O\nI O O\nhave O O\na O O\ncsv Name Name\nfile O O\nwith O O\nthe O O\ndata O O\nthat O O\nI O O\nneed O O\nto O O\nsend O O\nin O O\na O O\nstring Name Name\nbody O O\nof O O\na O O\nweb O O\nrequest O O\n. O O\n\nThe O O\nissue O O\nis O O\nthat O O\nwhen O O\nthe O O\nweb Name Name\ntest Name Name\nretrieve O O\nthe O O\ndata O O\nfrom O O\naccountID Name Name\nit O O\ntakes O O\nthe O O\ndata O O\nas O O\nint O O\ninstead O O\nof O O\na O O\nstring Name Name\n. O O\n\nSo O O\nif O O\nthe O O\naccount O O\nnumber O O\nis O O\n000005 Name Name\nor O O\n000016 Name Name\nthe O O\ntest O O\nput O O\na O O\n5 Name Name\nand O O\na O O\n15 Name Name\nignoring O O\nthe O O\nzeroes Name Name\non O O\nthe O O\nleft O O\n. O O\n\nThat O O\ngive O O\nme O O\nan O O\nerror O O\non O O\nmy O O\nweb O O\nservice O O\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\nforce O O\nthe O O\nweb Name Name\ntest Name Name\nto O O\nsee O O\nall O O\nthe O O\ndata O O\nas O O\nstrings Name Name\n? O O\n\nThanks O O\n\nBelow O O\nyou O O\ncan O O\nsee O O\nan O O\nexample O O\nof O O\nthe O O\ncsv Name Name\nfile O O\n. O O\n\nThe O O\ndata O O\nis O O\nnot O O\na O O\nlot O O\nand O O\nis O O\nonly O O\n2 O O\ncolumns Name Name\nso O O\nI O O\ndo O O\nn't O O\nwant O O\nto O O\ncreate O O\na O O\ndatabase O O\nfor O O\nthat O O\n\nWhat O O\nI O O\nend O O\nup O O\ndoing O O\nis O O\ncreating O O\na O O\nWeb Name Name\nRequest Name Name\nplug Name Name\nin Name Name\nthat O O\ngets O O\nthe O O\ndata O O\nsource O O\nfrom O O\nthe O O\nwebtest Name Name\ncontext O O\nand O O\nediting O O\nthe O O\nvalue O O\n. O O\n\nHere O O\nis O O\na O O\ncode O O\nexample O O\n: O O\n\n} Name Name\n\nMKV Name Name\nis O O\none O O\nof O O\nthe O O\nmost O O\npopular O O\nvideo O O\ncontainer O O\nformat O O\nwhich O O\nsupports O O\nto O O\ngroup O O\none O O\nor O O\nmore O O\nvideo O O\n, O O\naudio O O\nor O O\nsubtitle O O\nfiles O O\nto O O\nbe O O\ngrouped O O\ntogether O O\nto O O\none O O\nfile O O\n; O O\n\nNow O O\na O O\ndays O O\nmajority O O\nof O O\n4K O O\nvideos O O\navailable O O\nonline O O\nare O O\nin O O\nmkv Name Name\nformat O O\n, O O\nand O O\nall O O\nof O O\nthem O O\nare O O\nabove O O\n20GB O O\nin O O\nsize O O\n; O O\n\nBut O O\nhere O O\nis O O\nthe O O\nproblem O O\n, O O\nmajority O O\nof O O\nTV Name Name\nor O O\nmedia Name Name\nplayer Name Name\nonly O O\nsupport O O\nFAT16/32 O O\nnot O O\neven O O\nexFAT O O\n, O O\nConsidering O O\nthe O O\nlimitation O O\nof O O\n4GB O O\nfile O O\nsize O O\nin O O\nFAT32 O O\n, O O\nis O O\nthere O O\na O O\nway O O\nthat O O\ni O O\ncan O O\nsplit O O\nthe O O\n20 O O\ngb O O\nfile O O\ninto O O\nmultiple O O\n2GB O O\nor O O\n3Gb O O\nfile O O\nand O O\nhaving O O\nmetadata O O\nmkv Name Name\n( O O\nmain.mkv Name Name\nin O O\nthe O O\nbelow O O\nexample O O\n) O O\nfile O O\nwhich O O\nwill O O\nable O O\nto O O\npick O O\nthe O O\nrespective O O\ndata O O\n; O O\n\nIs O O\nthere O O\nany O O\nmovie O O\nformat O O\nwhich O O\nsupports O O\nthe O O\nsplit O O\nfile O O\nmodel O O\n\nlike O O\nthis O O\n\nfolder/ Name Name\n\nmain.mkv Name Name\n\npart1.dat Name Name\n\npart2.dat Name Name\n\npart3.dat Name Name\n\npart4.dat Name Name\n\n... O O\n. O O\netc O O\n\nIs O O\nthere O O\na O O\ncontainer O O\nformat O O\nwhich O O\nsupport O O\nthis O O\nway O O\nto O O\norganize O O\nfiles O O\n? O O\n? O O\n\nIf O O\nMKV Name Name\nsupports O O\nthis O O\n, O O\nhow O O\ncan O O\ni O O\nconvert O O\nsingle O O\nmkv Name Name\nfile O O\nto O O\nthis O O\nformat O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nset O O\nup O O\nmy O O\nvirtual O O\n( O O\nxen Name Name\n) O O\nwin Name Name\nxp Name Name\ninstances O O\n, O O\na O O\ndedicated O O\nwindows Name Name\nserver Name Name\n, O O\nand O O\na O O\ndedicated O O\nwindows Name Name\nxp Name Name\ndesktop Name Name\npc Name Name\nfor O O\nweb O O\napp O O\nUI O O\ntesting O O\n, O O\nusing O O\nselenium-rc Name Name\nand O O\nthe O O\nselenium Name Name\nPHP Name Name\nAPI Name Name\nfrom O O\npear Name Name\n( O O\nthe O O\nphp Name Name\nscript O O\nrunning O O\nthe O O\ntests O O\nsits O O\non O O\nits O O\napp O O\nserver Name Name\n, O O\non O O\nthe O O\nsame O O\nlocal O O\nnetwork O O\nas O O\nthe O O\nremote-controlled O O\nwindowses O O\n) O O\n. O O\n\nEverything O O\nhas O O\nworked O O\nout O O\ngreat O O\nso O O\nfar O O\n, O O\nexcept O O\ni O O\nam O O\nunable O O\nto O O\nget O O\na O O\nscreenshot O O\nfrom O O\nselenium Name Name\nRC Name Name\n- O O\nthey O O\nare O O\nall O O\nblank O O\n( O O\ngray O O\n) O O\nafter O O\nbase64_decode() Name Name\n; Name Name\n( O O\nwithout O O\nthat O O\n, O O\nthey O O\ndont O O\neven O O\nopen O O\n) O O\n. O O\n\nDespite O O\nos Name Name\nx Name Name\npreview Name Name\ndisplays O O\nthem O O\nas O O\ngray O O\n, O O\ni O O\n'm O O\npretty O O\nsure O O\nthey O O\nare O O\nactually O O\ntransparent O O\nor O O\nhave O O\nsome O O\nkind O O\nof O O\nother O O\ncorruption O O\nbecause O O\nPhotoshop Name Name\nwont O O\nopen O O\nthem O O\nat O O\nall O O\n. O O\n\n( O O\nand O O\nthey O O\nweigh O O\n0.7k O O\n) O O\nThe O O\nunix Name Name\n\" O O\nfile Name Name\n\" O O\ncommand O O\nhowever O O\nrecognizes O O\nthem O O\ncorrectly O O\nas O O\n\" O O\nPNG Name Name\nimage O O\n, O O\n1440 O O\nx O O\n900 O O\n, O O\n8-bit/color O O\nRGB O O\n, O O\nnon-interlaced O O\n\" O O\n- O O\n1440 O O\nx O O\n900 O O\nis O O\nthe O O\nresolution O O\nof O O\nmy O O\nMac Name Name\n, O O\nconnected O O\nto O O\nthe O O\nwindows Name Name\nsystems O O\nthrough O O\nremote Name Name\ndesktop Name Name\n. O O\n\nI O O\n'm O O\nrunning O O\nthe O O\nselenium Name Name\nrc Name Name\ndirectly O O\n( O O\nie O O\njava Name Name\n-jar Name Name\nselenium-server.jar Name Name\n) O O\n, O O\nnot O O\nas O O\na O O\nservice O O\n. O O\n\nThe O O\nsymptoms O O\nare O O\nthe O O\nsame O O\naccross O O\nall O O\nmy O O\nwindows Name Name\ntest O O\nsystems O O\n. O O\n\nMy O O\nSelenium Name Name\nversion O O\nis O O\n1.0.1 Name Name\n, O O\nhere O O\n's O O\nthe O O\nsnippet O O\nthat O O\ntries O O\nto O O\nget O O\nthe O O\nscreenshot O O\n: O O\n\n$this->selenium->windowMaximize() Name Name\n; Name Name\n\n$screenshot Name Name\n= Name Name\n$this->selenium->captureScreenshotToString() Name Name\n; Name Name\n\nI O O\n'm O O\nusing O O\nthe O O\nlatest O O\nTesting_Selenium Name Name\npear Name Name\npackage O O\n. O O\n\nI O O\nrealize O O\nthere O O\nis O O\na O O\nquestion O O\nhere O O\ndealing O O\nwith O O\na O O\nsimilar O O\nissue O O\n, O O\nbut O O\ni O O\n'm O O\nnot O O\nusing O O\na O O\nservice O O\nwrapper O O\nnor O O\ni O O\ncan O O\nafford O O\nto O O\nintroduce O O\nthis O O\ncomplexity O O\n( O O\nbut O O\ndo O O\nlet O O\nme O O\nknow O O\nif O O\nyou O O\nthink O O\nthat O O\n's O O\na O O\nmistake O O\n) O O\n\nthanks O O\n& O O\nregards O O\n, O O\n\nAndras O O\n\nps O O\n: O O\ni O O\n'm O O\ncross O O\nposting O O\nthis O O\nto O O\nseveral O O\nforums O O\nin O O\na O O\ndesperate O O\nattempt O O\nto O O\nget O O\nsome O O\nimput O O\n- O O\napologies O O\nif O O\nthat O O\nupsets O O\nyou O O\n:-) O O\n\nedit O O\n: O O\nselenium Name Name\nrc Name Name\nconsole Name Name\nsays O O\n\n16:38:24.562 O O\nINFO O O\n- O O\nGot O O\nresult O O\n: O O\n[ O O\nbase64 O O\nencoded O O\nPNG O O\n] O O\non O O\nsession O O\na5304a287eb244028c8c843b294bf98f O O\n\njava.net.SocketException O O\n: O O\nSoftware O O\ncaused O O\nconnection O O\nabort O O\n: O O\nsocket O O\nwrite O O\nerror O O\n\nat O O\njava.net.SocketOutputStream.socketWrite0(NativeMethod) O O\n\nat O O\njava.net.SocketOutputStream.socketWrite(UnknownSource) O O\n\nat O O\njava.net.SocketOutputStream.write(UnknownSource) O O\n\nat O O\norg.mortbay.http.ChunkingOutputStream.bypassWrite(ChunkingOutputStream.java:151) O O\n\nat O O\norg.mortbay.http.BufferedOutputStream.write(BufferedOutputStream.java:142) O O\n\nat O O\norg.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:423) O O\n\nat O O\norg.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:414) O O\n\nat O O\norg.openqa.selenium.server.SeleniumDriverResourceHandler.handleCommandRequest(SeleniumDriverResourceHandler.java:370) O O\n\nat O O\norg.openqa.selenium.server.SeleniumDriverResourceHandler.handle(SeleniumDriverResourceHandler.java:125) O O\n\nat O O\norg.mortbay.http.HttpContext.handle(HttpContext.java:1530) O O\n\nat O O\norg.mortbay.http.HttpContext.handle(HttpContext.java:1482) O O\n\nat O O\norg.mortbay.http.HttpServer.service(HttpServer.java:909) O O\n\nat O O\norg.mortbay.http.HttpConnection.service(HttpConnection.java:820) O O\n\nat O O\norg.mortbay.http.HttpConnection.handleNext(HttpConnection.java:986) O O\n\nat O O\norg.mortbay.http.HttpConnection.handle(HttpConnection.java:837) O O\n\nat O O\norg.mortbay.http.SocketListener.handleConnection(SocketListener.java:245) O O\n\nat O O\norg.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357) O O\n\nat O O\norg.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534) O O\n\nfor O O\nall O O\nscreen O O\ncaptures O O\n. O O\n\nWhen O O\nthere O O\nis O O\nno O O\nphysical O O\ndesktop Name Name\n( O O\nor O O\nremote Name Name\ndesktop Name Name\nsession O O\n) O O\n, O O\nthe O O\nJava Name Name\nprocess O O\nthat O O\nruns O O\nSelenium Name Name\nRC Name Name\nwill O O\nresult O O\nin O O\na O O\nblack O O\nscreenshot O O\n. O O\n\nWithout O O\nknowing O O\nmore O O\ninfo O O\n, O O\nthis O O\ncould O O\nbe O O\nyour O O\nproblem O O\n. O O\n\nAs O O\nthe O O\ncreator O O\nof O O\nSelenium Name Name\nRC Name Name\n, O O\nI O O\nactually O O\nrecommend O O\nagainst O O\nusing O O\nthe O O\nWindows Name Name\nService O O\nentirely O O\n. O O\n\nInstead O O\n, O O\ndo O O\nwhat O O\nwe O O\ndo O O\nat O O\nBrowserMob Name Name\n, O O\nwhich O O\nprovides O O\nfree O O\nmonitoring O O\nand O O\nfree O O\nload O O\ntesting O O\nservices O O\n, O O\nas O O\nwell O O\nas O O\na O O\nrecently O O\nlaunch O O\ninstant O O\ntest O O\ntool O O\nthat O O\ntakes O O\nscreenshots O O\nof O O\nyour O O\nsite O O\nfrom O O\nmultiple O O\nlocations O O\n. O O\n\nWhat O O\nwe O O\ndo O O\nis O O\nlaunch O O\neverything O O\nfrom O O\nunder O O\nthe O O\ncontext O O\nof O O\na O O\nVNC Name Name\nsession O O\n. O O\n\nOn O O\nWindows Name Name\n, O O\nconfigure O O\nVNC Name Name\nto O O\nlaunch O O\na O O\nsession O O\nupon O O\nstartup O O\n. O O\n\nThen O O\nmake O O\nsure O O\nthe O O\nuser O O\nauto-logs O O\nin O O\n. O O\n\nThen O O\nplace O O\na O O\n.bat Name Name\nfile O O\nin O O\nProgram Name Name\nFiles->Startup Name Name\nthat O O\nlaunches O O\nSelenium Name Name\nRC Name Name\n. O O\n\nIt O O\n's O O\nkind O O\nof O O\na O O\npain O O\n, O O\nbut O O\nit O O\n's O O\nthe O O\nmost O O\nreliable O O\nway O O\nI O O\n've O O\nfound O O\nfor O O\nensuring O O\nthat O O\nSelenium Name Name\nRC Name Name\nstarts O O\nin O O\nan O O\nenvironment O O\nthat O O\nsupports O O\nscreenshots O O\n, O O\nlaunching O O\nIE Name Name\n, O O\ninteracting O O\nwith O O\nnative O O\nevents O O\n, O O\netc O O\n. O O\n\nGood O O\nluck O O\n! O O\n\nHave O O\nyou O O\nseen O O\na O O\nsimilar O O\nquestion O O\n? O O\n\nMaybe O O\nthat O O\ncould O O\nhelp O O\nyou O O\n. O O\n\nI O O\nhad O O\nsimilar O O\nadventures O O\n. O O\n\nI O O\nhave O O\n4 O O\noutlined O O\nstar O O\nimages Name Name\n. O O\n\nWhenever O O\nI O O\nclick O O\na O O\nbutton Name Name\n, O O\nI O O\nwant O O\nthe O O\nfirst O O\nstar O O\nto O O\nchange O O\nits O O\nimage Name Name\nto O O\na O O\nfilled O O\nstar O O\nand O O\nwhenever O O\nI O O\nclick O O\nthe O O\nbutton Name Name\nagain O O\nI O O\nwant O O\nthe O O\nnext O O\nstar O O\nto O O\nchange O O\nto O O\na O O\nfilled O O\nstar O O\nand O O\nso O O\non O O\n. O O\n\nI O O\nhave O O\nsomething O O\nlike O O\nthis O O\nbut O O\nwhen O O\nI O O\nclick O O\non O O\nthe O O\nbutton Name Name\n, O O\nall O O\nthe O O\nstarts O O\nturn O O\ninto O O\nfilled O O\nstars O O\n. O O\n\nAfter O O\nthey O O\nare O O\nall O O\nfilled O O\nstars O O\n, O O\nI O O\nwould O O\nlike O O\nthem O O\nall O O\nto O O\nturn O O\ninto O O\nblank O O\nstars O O\nafter O O\nthe O O\nnext O O\nbutton Name Name\nclick O O\n. O O\n\nI O O\nhave O O\nset O O\nim1 Name Name\nthrough O O\nim4 Name Name\nto O O\noutlined O O\nstars O O\nand O O\nR.drawable.star Name Name\nis O O\na O O\nfilled O O\nstar O O\n. O O\n\nTry O O\nthe O O\nfollowing O O\n: O O\n\nWhen O O\nrunning O O\nreact-native Name Name\nlink Name Name\nit O O\ngives O O\nthis O O\nerror O O\n, O O\n\nIt O O\nsays O O\n, O O\nrnpm-install O O\nERR O O\n! O O\n\nIt O O\nseems O O\nsomething O O\nwent O O\nwrong O O\nwhile O O\nlinking. O O\n. O O\nError O O\n: O O\nCannot O O\nread O O\nproperty O O\n' O O\nUIAppFonts O O\n' O O\nof O O\nnull Name Name\n\nI O O\nhad O O\nthis O O\nexact O O\nsame O O\nproblem O O\n. O O\n\nI O O\nhad O O\naccidentally O O\ndeleted O O\nby O O\nInfo.plist Name Name\nfile O O\nin O O\nmy O O\nios Name Name\ndirectory O O\n. O O\n\nRestoring O O\nit O O\n, O O\nfixed O O\nmy O O\nissue O O\n. O O\n\nI O O\nwas O O\njust O O\nwondering O O\nif O O\nthere O O\nis O O\na O O\nway O O\nto O O\nwrite O O\na O O\ntemplate O O\nin O O\nthe O O\nsoftware O O\nso O O\nthat O O\nevery O O\ntime O O\nthat O O\nI O O\nwould O O\nlike O O\nto O O\nstart O O\na O O\nnew O O\nproject O O\nI O O\ndo O O\nn't O O\nhave O O\nto O O\ntype O O\nout O O\nall O O\nof O O\nthe O O\nfollowing O O\n! O O\n\nI O O\nwould O O\nlike O O\nto O O\nbe O O\nable O O\nto O O\nstart O O\na O O\nnew O O\nproject O O\nand O O\nhave O O\nit O O\nall O O\nsaved O O\nif O O\nthat O O\nis O O\npossible O O\n! O O\n\nThe O O\nfollowing O O\ncode O O\nneeds O O\nto O O\nprint O O\nlike O O\nthis O O\n: O O\n\nThe O O\nnumber O O\nmarking O O\nthe O O\nnumber O O\n, O O\nand O O\nthe O O\nasterix O O\nmarking O O\nthe O O\nfrequency O O\nat O O\nwhich O O\nthat O O\nnumber O O\nhas O O\nappeared O O\n. O O\n\nThis O O\nis O O\nthe O O\ncode O O\n, O O\nbut O O\nit O O\nprints O O\nlike O O\nthis O O\n: O O\n\nHow O O\ndo O O\nI O O\nget O O\nit O O\nto O O\nprint O O\nthe O O\nway O O\nas O O\nfirst O O\nshown O O\n? O O\n\nSurely O O\nyou O O\njust O O\nuse O O\nprint O O\na O O\nnew O O\nline O O\n? O O\n\nCan O O\nbe O O\ndone O O\nusing O O\n/n Name Name\n. O O\n\nI O O\nam O O\nattempting O O\nto O O\nconvert O O\none O O\nof O O\nmy O O\napplication O O\nwritten O O\nin O O\nC# Name Name\n- O O\nWindows Name Name\nForms Name Name\nto O O\nC++ Name Name\n- O O\nwxWidgets Name Name\n. O O\n\nMy O O\napp O O\nis O O\nborderless O O\nand O O\nhas O O\na O O\nthin O O\n, O O\ntransparent O O\npanel Name Name\non O O\ntop O O\nof O O\nthe O O\nform Name Name\nwhich O O\ncan O O\nbe O O\nused O O\nto O O\nmove O O\nthe O O\nform Name Name\n. O O\n\n( O O\nI O O\nused O O\nthe O O\ntechnique O O\nfrom O O\nthis O O\nquestion O O\n: O O\nMake O O\na O O\nborderless O O\nform Name Name\nmovable O O\n? O O\n) O O\n\nNow O O\n, O O\nI O O\nbasically O O\nwant O O\nto O O\ndo O O\nthe O O\nsame O O\nthing O O\nin O O\nwxWidgets Name Name\n, O O\nI O O\n've O O\nsearched O O\naround O O\nthe O O\ninternet O O\non O O\nhow O O\nto O O\nhandle O O\na O O\nmouse Name Name\ndown O O\nevent Name Name\nover O O\na O O\nwxPanel Name Name\nand O O\nfound O O\na O O\ncouple O O\nexamples O O\nbut O O\nboth O O\nused O O\nwxPython Name Name\nin O O\ntheir O O\narticle/question O O\nand O O\nI O O\nhave O O\nno O O\nknowledge O O\nabout O O\nPython Name Name\nat O O\nall O O\n. O O\n\nSo O O\nhow O O\nto O O\ndo O O\nthe O O\nsame O O\nthing O O\nin O O\nC++ Name Name\n- O O\nwxWidgets Name Name\n? O O\n\n\" O O\nhow O O\nto O O\nfire O O\na O O\nmouse Name Name\ndown O O\nevent O O\n? O O\n\" O O\n. O O\n\nYou O O\ndo O O\nnot O O\nneed O O\nto O O\nworry O O\nabout O O\n' O O\nfiring O O\n' O O\nthe O O\nevent O O\n- O O\nthe O O\nOS O O\ndoes O O\nthat O O\n. O O\n\nYou O O\nneed O O\nto O O\nhandle O O\nthe O O\nevent O O\nwhich O O\nis O O\nEVT_LEFT_DOWN Name Name\n. O O\n\nIs O O\nyour O O\nquestion O O\nabout O O\nhow O O\nto O O\nhandle O O\nwxWidgets Name Name\nevents Name Name\n? O O\n\nHave O O\nyou O O\nlooked O O\nat O O\nthe O O\nsample O O\nprograms O O\n? O O\n\nhttp://docs.wxwidgets.org/2.6/wx_samples.html O O\nThey O O\nare O O\nall O O\nin O O\nC++ Name Name\n. O O\n\nThere O O\nis O O\na O O\ndescription O O\nof O O\nhow O O\nto O O\nhandle O O\nevents Name Name\nhere O O\n: O O\nhttp://docs.wxwidgets.org/2.6/wx_eventhandlingoverview.html#eventhandlingoverview O O\n\nIf O O\nyou O O\nquestion O O\nis O O\nabout O O\nsomething O O\nmore O O\nspecific O O\nin O O\nthe O O\ndetails O O\nof O O\nhandling O O\nthe O O\nEVT_LEFT_DOWN Name Name\nevent O O\n, O O\nthen O O\nplease O O\npost O O\nyour O O\ncode O O\n, O O\ndescribe O O\nwhat O O\nyou O O\nwant O O\nit O O\nto O O\ndo O O\nand O O\nwhat O O\nit O O\ndoes O O\ninstead O O\n. O O\n\nI O O\ncreating O O\n5 O O\nthreads O O\nand O O\nall O O\naccess O O\nthe O O\ncritical O O\nsection O O\nand O O\nread O O\na O O\nvalue O O\nfrom O O\nfile O O\nand O O\nchange O O\nthe O O\nvalue O O\n. O O\n\nHowever O O\nin O O\nthe O O\nend O O\nall O O\nprint O O\nthe O O\nsame O O\nvalue O O\n, O O\nthat O O\nis O O\nthe O O\nfirst O O\nvalue O O\n. O O\n\nHow O O\ncan O O\nI O O\nimplement O O\na O O\nlock O O\nusing O O\nsemaphores O O\nso O O\nthat O O\nonly O O\none O O\nthread O O\naccess O O\nthe O O\ncritical O O\nsection O O\nat O O\na O O\ntime O O\n? O O\n\nI O O\n've O O\njust O O\ncreated O O\na O O\nnew O O\nMySQL Name Name\nuser O O\nwith O O\na O O\npassword O O\nand O O\ngranted O O\nthem O O\nall O O\nprivileges O O\non O O\na O O\ndatabase O O\n. O O\n\nNow O O\nI O O\n'd O O\nlike O O\nto O O\nconnect O O\nto O O\nthat O O\ndatabase O O\n, O O\nwith O O\nthe O O\npassword O O\nI O O\njust O O\nset O O\n, O O\nand O O\nI O O\ncan't O O\n: O O\n\nWhat O O\nam O O\nI O O\ndoing O O\nwrong O O\n? O O\n\nI O O\n'm O O\nworking O O\non O O\nMacOS Name Name\nLion Name Name\nin O O\na O O\nbash Name Name\nshell Name Name\n, O O\nversion O O\n10.6 Name Name\nof O O\nMySQL Name Name\n. O O\n\nThe O O\nCREATE Name Name\nUSER Name Name\nstatement O O\nneeds O O\na O O\nhost-part O O\nwhen O O\nyou O O\ndefine O O\nthe O O\nuser O O\n. O O\n\nOtherwise O O\nit O O\nwill O O\nuse O O\nthe O O\ndefault O O\n' Name Name\n% Name Name\n' Name Name\nand O O\nsince O O\nthe O O\nGRANT Name Name\nstatement O O\nincludes O O\n@'localhost' Name Name\n, O O\nyou O O\nend O O\nup O O\nwith O O\na O O\nuser O O\nwith O O\na O O\npassword O O\n, O O\nand O O\nthe O O\nother O O\nwithout O O\n. O O\n\nResults O O\nin O O\n: O O\n\nUse O O\nthe O O\nfollowing O O\nto O O\nget O O\nwhat O O\nyou O O\nwant O O\n: O O\n\nNote O O\nthat O O\nit O O\nis O O\nbest O O\nspecify O O\nthe O O\ndatabase O O\nwhen O O\nyou O O\nconnect O O\n, O O\notherwise O O\nyou O O\n'll O O\nneed O O\nto O O\nchange O O\nthe O O\ndefault O O\ndatabase O O\nafter O O\nconnecting O O\n: O O\n\nI O O\nhave O O\na O O\nTravis Name Name\nbuild O O\nthat O O\nkeeps O O\nfailing O O\n, O O\nand O O\nI O O\n'm O O\ntrying O O\nto O O\nget O O\nthe O O\n.env Name Name\nfile O O\nmentioned O O\nin O O\nthe O O\nenv-file Name Name\nbelow O O\n. O O\n\nI O O\ntried O O\nputting O O\nafter_failure Name Name\n: Name Name\n\" Name Name\ncat Name Name\n/Users/travis/.opam/system/build/topkg.0.9.0/topkg Name Name\n-19768-81a3ce.env Name Name\n\" Name Name\nin O O\nthe O O\nyml Name Name\n, O O\nbut O O\nit O O\ndid O O\nn't O O\ndo O O\nanything O O\n. O O\n\nHow O O\nwould O O\nI O O\ngo O O\nabout O O\ngetting O O\nthis O O\nfile O O\n? O O\n\nThis O O\nis O O\nalso O O\nduring O O\na O O\nbefore_install Name Name\nstep O O\n. O O\n\nI O O\nreached O O\nout O O\nto O O\nTravis Name Name\nsupport O O\non O O\nthis O O\nand O O\nthey O O\ntold O O\nme O O\nthat O O\nany O O\nerrors O O\nduring O O\nthe O O\nbefore_install Name Name\nstep O O\nwill O O\nnot O O\ngenerate O O\nthe O O\ncontents O O\nof O O\na O O\nlog Name Name\ninto O O\nthe O O\nTravis Name Name\nbuild O O\nlog Name Name\n. O O\n\nI O O\nhave O O\na O O\nlist Name Name\n: O O\n\nI O O\nwould O O\nlike O O\nto O O\nknow O O\nthe O O\nabsolute O O\nfastest O O\nway O O\nof O O\npulling O O\nall O O\nvalues O O\nabove O O\nsay O O\n\" O O\n7 Name Name\n\" O O\nand O O\nplacing O O\nthem O O\ninto O O\na O O\nnew O O\nlist Name Name\n. O O\n\nI O O\ndo O O\nnot O O\nwant O O\nto O O\nuse O O\na O O\nfor Name Name\nloop O O\n, O O\nthat O O\ntakes O O\ntoo O O\nlong O O\nwhen O O\nthere O O\nare O O\nhundreds O O\nof O O\nmillions O O\nof O O\nitems O O\nin O O\nthe O O\nlist Name Name\n. O O\n\nso O O\nideally O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nThanks O O\nfor O O\nany O O\nsuggestions O O\n! O O\n\nProcessing O O\ntimes O O\nappreciated O O\n! O O\n\nI O O\nwould O O\nn't O O\nworry O O\ntoo O O\nmuch O O\nabout O O\nmaintaining O O\na O O\nsorted O O\norder O O\nand O O\nuse O O\nnumpy Name Name\n: O O\n\nIf O O\nyou O O\nhave O O\nitems O O\nthat O O\nare O O\nsorted O O\nalready O O\nyou O O\ncan O O\nmake O O\nuse O O\nof O O\nthe O O\nbisect Name Name\nmodule O O\n( O O\nor O O\nnumpy Name Name\nhas O O\nits O O\nown O O\nmethods O O\nfor O O\nworking O O\nwith O O\nsorted O O\ndata O O\n) O O\n: O O\n\nAnd O O\nto O O\nadd O O\nitems O O\nin O O\nsorted O O\norder O O\n: O O\n\nAboveNumber Name Name\ncan O O\ndo O O\nno O O\nmagic O O\n. O O\n\nIf O O\nthe O O\nlist Name Name\nis O O\nunordered O O\n, O O\nit O O\nmust O O\nrun O O\nthrough O O\nall O O\nitems O O\nin O O\nthe O O\nlist Name Name\n. O O\n\nYou O O\ncan O O\noptimize O O\nthis O O\nby O O\nmaintaining O O\nthe O O\nlist Name Name\nin O O\norder O O\n, O O\ni.e O O\n. O O\nby O O\nmaking O O\nsure O O\nthat O O\nthe O O\nlist Name Name\nis O O\nalways O O\nordered O O\nafter O O\nan O O\ninsert O O\nor O O\nerase O O\n. O O\n\nIf O O\nthe O O\nlist Name Name\nis O O\nordered O O\n, O O\nyou O O\nmay O O\nfind O O\nyour O O\n\" O O\nmean O O\n\" O O\nby O O\na O O\nbinary O O\nsearch O O\n, O O\nwhich O O\nwould O O\nbe O O\nmuch O O\nfaster O O\nthan O O\nrunning O O\nthrough O O\nall O O\nthe O O\nlist Name Name\n, O O\nthen O O\ncut O O\nthe O O\nlist Name Name\nat O O\nthat O O\nposition O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nimplement O O\na O O\nSSO O O\non O O\nWindows Name Name\n( O O\nin O O\nJava Name Name\n) O O\n. O O\n\nRecently O O\nI O O\ndiscovered O O\nthis O O\nexample O O\ndoing O O\nexactly O O\nwhat O O\nI O O\nwant O O\nto O O\ndo O O\nwith O O\nWaffle Name Name\n: O O\n\nThe O O\nexample O O\nis O O\neasy O O\n, O O\nit O O\nworks O O\nand O O\nit O O\nseams O O\nto O O\ndo O O\nexactly O O\nwhat O O\nI O O\nwant O O\n. O O\n\nBut O O\nI O O\ndo O O\nn't O O\nunderstand O O\nhow O O\nit O O\nworks O O\n. O O\n\nWhat O O\nis O O\nhappening O O\nin O O\nthe O O\nbackground O O\n? O O\n\nDoes O O\nWaffle Name Name\nget O O\nthe O O\nKerberos O O\nticket O O\nfrom O O\nWindows Name Name\n? O O\n\nHow O O\ndoes O O\nthe O O\nserver Name Name\nvalidate O O\nthe O O\nticket O O\nof O O\nthe O O\nclient Name Name\n? O O\n\nCan O O\nI O O\nabsolutely O O\ntrust O O\nthe O O\nuser O O\ngroups O O\nwhich O O\nI O O\nget O O\nafter O O\nthe O O\ndo-loop Name Name\n\nfrom O O\nthe O O\nserver Name Name\ncontext O O\n? O O\n\nThanks O O\n. O O\n\nThomas O O\n. O O\n\nWaffle Name Name\nuses O O\nthe O O\nWindows Name Name\nSSPI Name Name\n, O O\nwhich O O\nperforms O O\nall O O\noperations O O\ninvolving O O\nKerberos O O\ntickets O O\non O O\nclient Name Name\n's O O\nbehalf O O\n. O O\n\nThe O O\nclient Name Name\nnever O O\nsees O O\nthe O O\nticket O O\n. O O\n\nThis O O\nis O O\na O O\nbasic O O\nKerberos O O\nquestion O O\n. O O\n\nThe O O\ntoken O O\nsent O O\nto O O\nthe O O\nserver Name Name\nis O O\nencrypted O O\nby O O\nserver Name Name\n's O O\nsecret Name Name\nkey Name Name\n, O O\nwhich O O\nguarantees O O\nthat O O\nthe O O\ntoken O O\nwas O O\ncreated O O\nby O O\nthe O O\nTicket Name Name\nGranting Name Name\nService Name Name\n, O O\nwhich O O\nauthenticated O O\nthe O O\nclient Name Name\n. O O\n\nYes O O\n, O O\nthe O O\nare O O\nretrieved O O\nfrom O O\nthe O O\nsecurity Name Name\ntoken Name Name\n. O O\n\nThis O O\nis O O\na O O\nWindows-specific Name Name\nextension O O\nof O O\nthe O O\nMIT O O\nKerberos O O\nprotocol O O\n. O O\n\nI O O\nwanted O O\nsome O O\ntext O O\ndata O O\nthat O O\nmight O O\nlook O O\nlike O O\nemails O O\nor O O\nletters O O\nwhich O O\ni O O\ncan O O\nuse O O\nwhile O O\nexperimenting O O\nthe O O\nAPI Name Name\nin O O\nelasticsearch Name Name\n. O O\n\nBut O O\nI O O\nhave O O\nn't O O\nbeen O O\nable O O\nto O O\nfind O O\nany O O\nyet O O\n. O O\n\nCan O O\nanyone O O\nsuggest O O\nme O O\nsome O O\nsources O O\nwhere O O\none O O\ncan O O\nfind O O\nthe O O\ndata O O\n? O O\n\nThanks O O\n& O O\nRegards O O\n\nCheck O O\nout O O\nthe O O\nenron O O\ndataset O O\nas O O\na O O\nnice O O\nstart O O\n.. O O\n. O O\n\nType O O\nthe O O\nnext O O\nURL O O\nin O O\nthe O O\nbrowser Name Name\n: O O\n\nlocalhost:9200/_search Name Name\n\nDo O O\nyou O O\nsee O O\ndata O O\n? O O\n\n( O O\nIf O O\nthe O O\nelasticsearch Name Name\nis O O\nin O O\nserver Name Name\nand O O\nyou O O\nare O O\nin O O\nremote O O\ncomputer Name Name\nreplace O O\nthe O O\nlocalhist Name Name\nwith O O\nyour O O\nIP O O\n) O O\n\nHow O O\ndo O O\nI O O\nextract O O\nall O O\nurls O O\nfor O O\na O O\ncertain O O\nquery O O\nthat O O\ncontain O O\nparameters O O\n: O O\n\nFor O O\nexample O O\n: O O\n\nBut O O\nsince O O\n? Name Name\nis O O\nan O O\nspecial O O\nchar Name Name\n, O O\nI O O\ndo O O\nn't O O\nhow O O\nto O O\nmake O O\nthat O O\nto O O\nwork O O\n. O O\n\nThank O O\nyou O O\nin O O\nadvance O O\n. O O\n\nThe O O\nHTML Name Name\ncode O O\nfor O O\n? Name Name\nis O O\n? Name Name\n\nYour O O\nquery O O\nwould O O\nthen O O\nbe O O\nsite:example.com Name Name\nAND Name Name\ninurl Name Name\n: Name Name\n? Name Name\n\nFor O O\nexample O O\n, O O\nto O O\nconstrain O O\na O O\nquery O O\nfor O O\nCar Name Name\n, O O\nthe O O\nURL O O\nwill O O\nbe O O\n: O O\n\nhttps://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 O O\n\nI O O\nget O O\nthe O O\nfollowing O O\nerror O O\n\" O O\nUncaught O O\nTypeError O O\n: O O\nundefined O O\nis O O\nnot O O\na O O\nfunction O O\n\" O O\nand O O\nanything O O\nthat O O\nI O O\ntried O O\nsolve O O\nthe O O\nissue O O\n. O O\n\nI O O\ntaking O O\nan O O\nonline O O\ncourse O O\nand O O\nthis O O\nis O O\npart O O\nof O O\nmy O O\nfinal O O\nproject O O\nbut O O\nI O O\nstuck O O\nwithout O O\nget O O\nany O O\nsolution O O\n, O O\nplease O O\nexplain O O\nme O O\nhow O O\nto O O\nsolve O O\nthis O O\nand O O\nwhy O O\nthis O O\nhappen O O\nto O O\nmy O O\ncode O O\n, O O\nthanks O O\nand O O\nhere O O\nare O O\nmy O O\ncode O O\n. O O\n\nHere O O\nis O O\nthe O O\nerror O O\n\nYou O O\nare O O\nsaying O O\n\nit O O\nshould O O\nbe O O\n\nUsing O O\nSpark Name Name\n1.5.1 Name Name\n, O O\n\nI O O\n've O O\nbeen O O\ntrying O O\nto O O\nforward O O\nfill O O\nnull Name Name\nvalues O O\nwith O O\nthe O O\nlast O O\nknown O O\nobservation O O\nfor O O\none O O\ncolumn Name Name\nof O O\nmy O O\nDataFrame Name Name\n. O O\n\nIt O O\nis O O\npossible O O\nto O O\nstart O O\nwith O O\na O O\nnull Name Name\nvalue O O\nand O O\nfor O O\nthis O O\ncase O O\nI O O\nwould O O\nto O O\nbackward O O\nfill O O\nthis O O\nnull Name Name\nvalue O O\nwith O O\nthe O O\nfirst O O\nknwn O O\nobservation O O\n. O O\n\nHowever O O\n, O O\nIf O O\nthat O O\ntoo O O\ncomplicates O O\nthe O O\ncode O O\n, O O\nthis O O\npoint O O\ncan O O\nbe O O\nskipped O O\n. O O\n\nIn O O\nthis O O\npost O O\n, O O\na O O\nsolution O O\nin O O\nScala Name Name\nwas O O\nprovided O O\nfor O O\na O O\nvery O O\nsimilar O O\nproblem O O\nby O O\nzero323 O O\n. O O\n\nBut O O\n, O O\nI O O\ndo O O\nn't O O\nknow O O\nScala Name Name\nand O O\nI O O\ndo O O\nn't O O\nsucceed O O\nto O O\n'' O O\ntranslate'' O O\nit O O\nin O O\nPyspark Name Name\nAPI Name Name\ncode O O\n. O O\n\nIt O O\n's O O\npossible O O\nto O O\ndo O O\nit O O\nwith O O\nPyspark Name Name\n? O O\n\nThanks O O\nfor O O\nyour O O\nhelp O O\n. O O\n\nBelow O O\n, O O\na O O\nsimple O O\nexample O O\nsample O O\ninput O O\n: O O\n\nAnd O O\nthe O O\nexpected O O\noutput O O\n: O O\n\nThe O O\npartitioned O O\nexample O O\ncode O O\nfrom O O\nSpark Name Name\n/ O O\nScala Name Name\n: O O\nforward O O\nfill O O\nwith O O\nlast O O\nobservation O O\nin O O\npyspark Name Name\nis O O\nshown O O\n. O O\n\nThis O O\nonly O O\nworks O O\nfor O O\ndata O O\nthat O O\ncan O O\nbe O O\npartitioned O O\n. O O\n\nLoad O O\nthe O O\ndata O O\n\nThe O O\nDataFrame Name Name\nis O O\n\nColumn Name Name\nused O O\nto O O\nsort O O\nthe O O\npartitions O O\n\nThe O O\nfill Name Name\nfunction O O\n. O O\n\nCan O O\nbe O O\nused O O\nto O O\nfill O O\nin O O\nmultiple O O\ncolumns Name Name\nif O O\nnecessary O O\n. O O\n\nConvert O O\nto O O\nrdd Name Name\n, O O\npartition O O\n, O O\nsort O O\nand O O\nfill O O\nthe O O\nmissing O O\nvalues O O\n\nConvert O O\nback O O\nto O O\nDataFrame Name Name\n\nThe O O\noutput O O\nis O O\n\nCloudera Name Name\nhas O O\nreleased O O\na O O\nlibrary O O\ncalled O O\nspark-ts Name Name\nthat O O\noffers O O\na O O\nsuite O O\nof O O\nuseful O O\nmethods O O\nfor O O\nprocessing O O\ntime O O\nseries O O\nand O O\nsequential O O\ndata O O\nin O O\nSpark Name Name\n. O O\n\nThis O O\nlibrary O O\nsupports O O\na O O\nnumber O O\nof O O\ntime-windowed O O\nmethods O O\nfor O O\nimputing O O\ndata O O\npoints O O\nbased O O\non O O\nother O O\ndata O O\nin O O\nthe O O\nsequence O O\n. O O\n\nhttp://blog.cloudera.com/blog/2015/12/spark-ts-a-new-library-for-analyzing-time-series-data-with-apache-spark/ O O\n\ninside O O\nresponse O O\ni O O\nhave O O\nbellow O O\nhtml Name Name\ncode O O\nwith O O\nsimple O O\nJavaScript Name Name\nfunction O O\n\nhere O O\n, O O\nthis O O\npopup()function Name Name\nis O O\nnot O O\nworking O O\nplease O O\nhelp O O\nme O O\n. O O\n\nThe O O\nproblem O O\nis O O\nyou O O\nexpect O O\nthat O O\nJavascript Name Name\ncontained O O\nwithin O O\nan O O\najax Name Name\nresponse O O\nis O O\nexecuted O O\n. O O\n\nThis O O\nis O O\nn't O O\nthe O O\ncase O O\n, O O\nthe O O\nbrowser Name Name\ndoes O O\nn't O O\nexecute O O\nany O O\nJavascript Name Name\ncontained O O\nwithin O O\najax Name Name\nresponses O O\n. O O\n\nIt O O\nmight O O\nbe O O\npossible O O\nto O O\ntry O O\nto O O\nparse O O\nout O O\nthe O O\nJavascript Name Name\nand O O\nexecute O O\nit O O\nin O O\nsome O O\nway O O\n, O O\nsuch O O\nas O O\neval() Name Name\nbut O O\nthat O O\nwould O O\nbe O O\nnasty O O\nand O O\nnot O O\na O O\ngood O O\nidea O O\n. O O\n\nUsing O O\neval() Name Name\nyou O O\nalso O O\nhave O O\nto O O\nconsider O O\nthat O O\nit O O\nwill O O\nonly O O\naccept O O\nvalid O O\nJavascript Name Name\n, O O\nso O O\nyou O O\ncould O O\nn't O O\njust O O\npass O O\nyour O O\nresponse O O\nto O O\nit O O\nbecause O O\nthat O O\nincludes O O\nsome O O\nHTML Name Name\n. O O\n\nA O O\npossible O O\nsolution O O\ncould O O\nbe O O\nto O O\nhave O O\nthe O O\npopup() Name Name\nfunction O O\nalready O O\ndefined O O\nin O O\nthe O O\npage O O\nor O O\nan O O\nexternal O O\nJavascript Name Name\nfile O O\n, O O\nand O O\nto O O\nassign O O\nthe O O\nclick O O\nhandler O O\nafter O O\nyou O O\nadd O O\nthe O O\nHTML Name Name\nto O O\nthe O O\nDOM Name Name\n. O O\n\nFor O O\nexample O O\n: O O\n\nMake O O\nthat O O\nstring Name Name\nhidden O O\nin O O\nyour O O\npage O O\nand O O\njust O O\ndisplay O O\nit O O\non O O\nsuccess O O\n. O O\n\nlike O O\n: O O\n\nBetter O O\nway O O\nto O O\ntry O O\nwith O O\nDOM Name Name\n. O O\n\nLet O O\nme O O\nknow O O\nif O O\nabove O O\ncode O O\nis O O\nwork O O\nfor O O\nyou O O\n. O O\n\nI O O\ntry O O\nto O O\ntraverse O O\nsome O O\nexcel2007 Name Name\ndata O O\nby O O\nusing O O\npoi.jar Name Name\nbased O O\non O O\njdk1.6.But Name Name\nwhen O O\nI O O\nseem O O\nto O O\nfind O O\na O O\nstrange O O\nphenomenon O O\nthat O O\nwhen O O\nI O O\ntraverse O O\nthe O O\nrow O O\n( O O\nstored O O\nby O O\nHashMap()) Name Name\nand O O\nthen O O\nadd O O\nthe O O\nrow O O\ndata O O\nto O O\njava.util.ArrayList Name Name\n. O O\n\nAnd O O\nstarting O O\nthe O O\nnext O O\niterator O O\n, O O\nI O O\nfirst O O\nclear O O\nthe O O\nrow O O\ndata O O\nby O O\ninvoking O O\nMap.clear() Name Name\n, O O\nbut O O\nwhen O O\nagain O O\ninvoking O O\nthe O O\nArrayList.add() Name Name\nmethod O O\n, O O\nthis O O\nrow O O\ndata O O\nis O O\noverridden O O\nthe O O\nolder O O\ndata O O\n. O O\n\nNext O O\nSnippets O O\nshow O O\nthe O O\ndebug O O\nlog O O\nfor O O\nrowForSheet(List) Name Name\n\nthe O O\nlater O O\ndata O O\noverride O O\nthe O O\nolder O O\ndata O O\n\nDid O O\nyou O O\n? O O\n\nFirst O O\noff O O\n, O O\nI O O\nwould O O\nput O O\nthe O O\ncreation O O\nof O O\nyour O O\nmap Name Name\ninside O O\nof O O\nthe O O\nloops Name Name\nso O O\nyou O O\nadd O O\na O O\nnew O O\nmap Name Name\neach O O\ntime O O\n. O O\n\nNow O O\neach O O\nitem O O\nin O O\nthe O O\nlist Name Name\nwill O O\nbe O O\na O O\ndifferent O O\nmap Name Name\n, O O\nwith O O\nthe O O\nnew O O\ndata O O\nyou O O\n've O O\nadded O O\n. O O\n\nI O O\n'm O O\nusing O O\nAmazon Name Name\nRedshift Name Name\nto O O\ndo O O\ndata O O\nanalysis O O\n, O O\nand O O\nsometimes O O\nI O O\nuse O O\n' O O\nunload Name Name\n' O O\nto O O\nunload O O\na O O\nRedShift Name Name\ntable Name Name\ninto O O\nS3 Name Name\nand O O\nthen O O\ncopy O O\nthe O O\ndata O O\ninto O O\nanother O O\nRedshift Name Name\ninstance O O\n. O O\n\nSince O O\nI O O\nonly O O\nneed O O\nto O O\nspecify O O\na O O\nprefix O O\nof O O\nthe O O\ndata O O\nfile O O\nwhen O O\ndoing O O\n' O O\nunload Name Name\n' O O\n, O O\nand O O\nit O O\nwill O O\ncreate O O\nmany O O\nfiles O O\nin O O\nS3 Name Name\nbucket O O\n, O O\nI O O\nneed O O\na O O\ngraceful O O\nway O O\nto O O\ncleanup O O\nall O O\nthose O O\ndata O O\nfiles O O\n. O O\n\nI O O\ndo O O\nn't O O\nwant O O\nto O O\nenumerate O O\neach O O\nobject O O\nin O O\nthe O O\nbucket O O\nand O O\ncheck O O\nif O O\nthe O O\nkey O O\nmatches O O\nthe O O\nprefix O O\n. O O\n\nIt O O\n's O O\nvery O O\neasy O O\nwith O O\ns3cmd Name Name\nfrom O O\ns3tools Name Name\n( O O\nget O O\nyour O O\nown O O\ncopy O O\nfrom O O\nhttp://s3tools.org/s3cmd O O\n) O O\n\nFirst O O\nconfigure O O\nthis O O\nprogram O O\nwith O O\na O O\ncommand O O\n: O O\n\nThen O O\nthe O O\nrest O O\nis O O\njust O O\none O O\ncommand O O\n: O O\n\nI O O\nhave O O\ntwo O O\nweb Name Name\nroles Name Name\nand O O\none O O\nof O O\nthem O O\nruns O O\nthe O O\nservice O O\nlayer O O\nconsisting O O\nof O O\n3 O O\nWCF Name Name\nservices O O\nconnected O O\nwith O O\nnet.tcp O O\n, O O\neach O O\ndeployed O O\nas O O\na O O\nwebsite O O\non O O\nport Name Name\n808 Name Name\n, O O\n810 Name Name\n, O O\nand O O\n811 Name Name\n. O O\n\nNow O O\nI O O\nwant O O\nthe O O\nservice O O\nlayer O O\nto O O\nonly O O\nbe O O\nopen O O\nto O O\nmy O O\nother O O\nweb Name Name\nrole Name Name\n. O O\n\nSo O O\nI O O\ntried O O\nto O O\nmake O O\none O O\nof O O\nthe O O\nservices O O\nendpoint O O\ninternal O O\nand O O\nto O O\ngive O O\naccess O O\nfor O O\nmy O O\nfront O O\nweb Name Name\nrole Name Name\n. O O\n\nLike O O\nthis O O\n: O O\n\nBut O O\nwhen O O\nthe O O\nUserService Name Name\nis O O\nattempted O O\nit O O\nseems O O\nto O O\ntime O O\nout O O\n. O O\n\nI O O\nhave O O\nalso O O\ntried O O\nto O O\nset O O\n<AllowAllTraffic/> Name Name\ninstead O O\nof O O\n<WhenSource Name Name\n...> Name Name\nbut O O\nthat O O\nhas O O\nno O O\neffect O O\n. O O\n\nSecond O O\nattempt O O\n: O O\n\nAfter O O\nsome O O\nfeedback O O\nI O O\nhave O O\ntried O O\nsome O O\nvariations O O\nto O O\nset O O\na O O\nFixedPort Name Name\nand O O\nPortRange Name Name\nto O O\n811 Name Name\nand O O\nthe O O\nrole O O\nlistening O O\nto O O\nport Name Name\n=\"*\" Name Name\n. O O\n\nI O O\nhave O O\nkept O O\nthe O O\nNetworkTrafficRules Name Name\nas O O\nin O O\nprevious O O\nattempts O O\n. O O\n\nI O O\nalso O O\nadded O O\nthe O O\nfollowing O O\ncode O O\nto O O\nmake O O\nsure O O\nthere O O\nis O O\na O O\nlistener O O\nfor O O\na O O\ndynamic O O\nport Name Name\n. O O\n\nIn O O\nmy O O\nWebRole.cs Name Name\nfile O O\n: O O\n\nAnother O O\nnote O O\nis O O\nthat O O\nthe O O\ncalling O O\nservice O O\nuses O O\nport Name Name\n811 Name Name\nto O O\nfind O O\nthe O O\nright O O\nservice O O\nsince O O\nthe O O\nservice O O\nruns O O\nthree O O\ndifferent O O\nWCF Name Name\nproject O O\nsites O O\n. O O\n\nAnd O O\nthe O O\nservice O O\nI O O\n'm O O\ncalling O O\nalso O O\nuses O O\na O O\nspecified O O\nport Name Name\nnumber O O\nwhich O O\nI O O\nthink O O\ncan O O\nbe O O\na O O\nproblem O O\nif O O\nit O O\nall O O\nof O O\na O O\nsudden O O\nshould O O\nbe O O\ndynamic O O\n. O O\n\nThe O O\ncalling O O\nservice O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nAnd O O\non O O\nthe O O\nreceiving(Internal) O O\nWebRole Name Name\nsites O O\nI O O\nhave O O\nthe O O\nfollowing O O\ntypes O O\nof O O\nconfigurations O O\n. O O\n\nAnd O O\nthe O O\nother O O\nWCF Name Name\nsite O O\non O O\nport Name Name\n811 Name Name\n: O O\n\nYou O O\ncould O O\nuse O O\nthe O O\ninternal O O\nendpoint O O\nIP-addresses O O\nand O O\ninstead O O\nof O O\nthe O O\nexternal O O\naddress O O\n. O O\n\nHere O O\nis O O\nan O O\nexample O O\n: O O\n\nworks O O\nif O O\nI O O\ngive O O\nas O O\ninput Name Name\n-> Name O\nc:\\data Name Name\n\nbut O O\nnot O O\nif O O\n: O O\n\nCan O O\nsomeone O O\nexplain O O\nme O O\nthe O O\nreason O O\nfor O O\nthis O O\nbehaviour O O\n? O O\n\nThank O O\nyou O O\n. O O\n\nBecause O O\nin O O\nliteral O O\nstrings Name Name\n, O O\n\\ Name Name\nis O O\nan O O\nescape O O\ncharacter O O\n- O O\nallow O O\nputting O O\nquotes/tabs/newlines Name Name\netc O O\n. O O\nin O O\nliteral O O\nstrings Name Name\n. O O\n\nYou O O\nshould O O\nuse O O\n' Name Name\nc:\\\\data Name Name\n' Name Name\nor O O\n' Name Name\nc:/data Name Name\n' Name Name\n( O O\nforward O O\nslash O O\nworks O O\nfine O O\nin O O\nwindows Name Name\n) O O\n\nAnother O O\nway O O\nis O O\nto O O\nuse O O\n\" O O\nraw O O\n\" O O\nstrings Name Name\nr'c:\\data' Name Name\nbut O O\nbe O O\ncareful O O\n, O O\nbecause O O\nyou O O\nca O O\nn't O O\nuse O O\nany O O\nescaped O O\ncharacters O O\nanymore O O\n\nI O O\nam O O\njust O O\ntrying O O\nto O O\nmake O O\nmultiplication O O\n\nwhen O O\nI O O\ntype O O\nsomething O O\nlike O O\nthat O O\n( Name Name\n3* Name Name\n5) Name Name\ngive O O\nme O O\nthat O O\nerror O O\n: O O\n\nand O O\nwhen O O\nI O O\nam O O\nusing O O\nbackslah Name Name\nto O O\nescape O O\n: O O\n\nI O O\nsee O O\nunclosed O O\ncharacter O O\nliteral O O\nand O O\nillegal O O\nstart O O\nof O O\nexpression O O\nerrors O O\n\nwhat O O\nshould O O\nI O O\ndo O O\n? O O\n\nRefer O O\nto O O\nthe O O\nJavadoc O O\nof O O\nString.replaceFirst Name Name\n: O O\n\nThe O O\nfirst O O\nparameter O O\nis O O\na O O\nregular O O\nexpression O O\n( O O\nmeaning O O\ncharacters O O\nlike O O\n* Name Name\nhave O O\nspecial O O\nmeaning O O\n) O O\n; O O\n\nThe O O\nsecond O O\nparameter O O\nis O O\na O O\nregex O O\nreplacement O O\n( O O\nmeaning O O\ncertain O O\ncharacter O O\nsequences O O\nhave O O\nspecial O O\nmeaning O O\n, O O\ne.g O O\n. O O\n\\ Name Name\nand O O\n$ Name Name\n) O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\npass O O\nin O O\nstrings Name Name\nfrom O O\nan O O\nuntrusted O O\nsource O O\n( O O\nlike O O\nuser O O\ninput O O\n) O O\n, O O\nyou O O\nneed O O\nto O O\nquote O O\nthem O O\nappropriately O O\n: O O\n\nHowever O O\n, O O\nString.replaceFirst Name Name\nis O O\nnot O O\nthe O O\nright O O\ntool O O\nfor O O\nthis O O\njob O O\n. O O\n\nIt O O\nwo O O\nn't O O\nwork O O\ncorrectly O O\nif O O\nthere O O\nis O O\na O O\nmatch O O\nfor O O\nthe O O\nsearch O O\nstring Name Name\nbefore O O\nthe O O\none O O\nyou O O\nare O O\nreally O O\nlooking O O\nfor O O\n. O O\n\nThe O O\nmost O O\nstraightforward O O\nmodification O O\nto O O\nyour O O\ncode O O\nwould O O\nbe O O\nto O O\nuse O O\nString.substring Name Name\n- O O\nyou O O\nknow O O\nexactly O O\nwhere O O\nthe O O\nthing O O\nyou O O\nwant O O\nto O O\nreplace O O\nis O O\n, O O\nso O O\nmake O O\nuse O O\nof O O\nthat O O\ninformation O O\n: O O\n\n( O O\nThis O O\nwould O O\nreplace O O\nthe O O\nlast O O\n7 O O\nlines O O\nin O O\nthe O O\nloop O O\n) O O\n\nYou O O\ncan O O\ndo O O\nthis O O\nbetter O O\nagain O O\nby O O\nusing O O\na O O\nStringBuilder Name Name\n, O O\nto O O\navoid O O\ncreating O O\nunnecessary O O\nstrings Name Name\nin O O\nthe O O\nloop O O\n. O O\n\nHowever O O\n, O O\nthis O O\nstill O O\nwould O O\nn't O O\nwork O O\nin O O\nthe O O\ncase O O\nof O O\nmulti-digit O O\nor O O\nnegative O O\nnumbers O O\n. O O\n\nI O O\nhave O O\na O O\nquestion O O\nregarding O O\nJava Name Name\ncode O O\nimplementation O O\nfor O O\nthe O O\nfollowing O O\nscenario O O\n, O O\n\nGet O O\nUser O O\nInput O O\n[ O O\nString Name Name\nfrom O O\nScanner Name Name\n] O O\n\nConvert O O\nthe O O\nString Name Name\ninput O O\nto O O\n1D O O\nArray Name Name\n\nFrom O O\nthe O O\n1D O O\nchar Name Name\narray Name Name\n, O O\npopulate O O\nit O O\naccordingly O O\nto O O\n2D O O\nchar Name Name\narray Name Name\nbased O O\non O O\npositions O O\n, O O\n[ Name Name\n0 Name Name\n] Name Name\n[ Name Name\n0 Name Name\n] Name Name\n, O O\n[ Name Name\n0 Name Name\n] Name Name\n[ Name Name\n1 Name Name\n] Name Name\netc O O\n\nWhat O O\nI O O\nhave O O\ndone O O\nis O O\nas O O\nfollows O O\n, O O\n\ncharArray Name Name\nhas O O\nbeen O O\ncreated O O\nas O O\na O O\n6 O O\nby O O\n6 O O\narray.char[][] Name Name\ncharArray Name Name\n= Name Name\nnew Name Name\nchar[6][6] Name Name\n; Name Name\n\nIt O O\nseems O O\nfrom O O\nthe O O\nprinting O O\nof O O\nmessages O O\n, O O\nI O O\ncould O O\nget O O\nthe O O\ntext O O\n's O O\ni Name Name\nposition O O\nand O O\nto O O\nit O O\n's O O\ncorresponding O O\n2D O O\narray Name Name\npositions O O\n. O O\n\nBut O O\nI O O\ncould O O\nnot O O\npopulate O O\nthe O O\nvalues O O\nby O O\nassigning O O\n. O O\n\nI O O\nappreciate O O\nany O O\ntips O O\nand O O\nguidance O O\nfor O O\nthe O O\nabove O O\ncase O O\n. O O\n\nThank O O\nyou O O\nvery O O\nmuch O O\n. O O\n\nI O O\ndid O O\nn't O O\nget O O\nyour O O\nquestion O O\n. O O\n\nBut O O\nif O O\nyou O O\nwant O O\nto O O\nstore O O\nin O O\n6*6 O O\ncharacter Name Name\narray Name Name\nwithout O O\ngetting O O\nexception Name Name\n. O O\n\nHere O O\nis O O\nthe O O\ncode O O\nhow O O\nto O O\ndo O O\nit O O\n\nThe O O\neasiest O O\nway O O\nis O O\nto O O\nmake O O\nsure O O\nthe O O\nuser O O\nhas O O\nentered O O\n36 O O\ncharacters O O\nexactly O O\n, O O\nthen O O\nyou O O\ncan O O\njust O O\ncopy O O\nthe O O\nchar Name Name\narray Name Name\n. O O\n\nLive O O\nDemo O O\n\nAnd O O\nyou O O\ncould O O\nuse O O\nthat O O\n1D O O\narray Name Name\nas O O\na O O\nflat O O\n2D O O\narray Name Name\n, O O\nor O O\nparse O O\nthem O O\ninto O O\na O O\n2D O O\narray Name Name\nin O O\nthis O O\nway O O\n. O O\n\nI O O\nwant O O\nto O O\ncreate O O\nlist Name Name\nfrom O O\none O O\ntable Name Name\n, O O\nusing O O\ncontain O O\nwith O O\nanother O O\ntables Name Name\nand O O\nmake O O\nkeyField Name Name\nfrom O O\nfirst O O\nTable Name Name\nbut O O\nvalueField Name Name\nfrom O O\nanother O O\nTable Name Name\n+ O O\nkey Name Name\n. O O\n\nI O O\nhave O O\ntable Name Name\nCustomerNumbers Name Name\n( O O\nkey O O\n=> O O\ncustomer_number O O\n) O O\n-> O O\nUsers O O\n-> O O\nGroups O O\n( O O\nvalue O O\n=> O O\nname O O\n) O O\n\nNeed O O\nto O O\ncreate O O\nlist Name Name\nwith O O\nall O O\nCustomerNumbers.customer_number Name Name\nas O O\nkey O O\nand O O\nGroups.name Name Name\nplus O O\nkey Name Name\nas O O\nvalue O O\n. O O\n\nhere O O\nis O O\nmy O O\nquery O O\n( O O\nalso O O\n, O O\nI O O\ndo O O\nnot O O\nwant O O\nmake O O\nstandard O O\nclassic O O\nphp Name Name\nforeach O O\nto O O\ncreate O O\nlist Name Name\n) O O\n\nresult O O\nshoud O O\nbe O O\nlike O O\n\nAlso O O\nthis O O\nis O O\nnot O O\nduplicated O O\nquestion O O\n@drmonkeyninja O O\nbecause O O\nin O O\nyour O O\nexample O O\n( O O\nQuestion O O\n) O O\nyou O O\nneed O O\nto O O\nuse O O\nvirtual O O\nfield O O\noption O O\nfrom O O\nsingle O O\nmodel O O\n( O O\nex O O\n. O O\n\nModel O O\nUsers O O\nand O O\ntake O O\nFirst O O\nand O O\nLast O O\nname O O\nas O O\none O O\nfield O O\n) O O\n. O O\n\nIn O O\nmy O O\ncase O O\nI O O\nneed O O\nvirtual O O\nfield O O\nfrom O O\nmodel O O\nCustomer O O\nNumbers O O\nand O O\nanother O O\nfield O O\nfrom O O\nModel O O\nGroups O O\n) O O\n. O O\n\nHere O O\nis O O\nsolution O O\nin O O\npure O O\nphp Name Name\n, O O\nbut O O\nI O O\nhope O O\nso O O\nthat O O\nthere O O\nis O O\nCakePhp Name Name\nsoultion O O\ntoo O O\n. O O\n\nI O O\nam O O\na O O\nbeginner O O\n. O O\n\nI O O\nam O O\nfinding O O\nit O O\nvery O O\ndifficult O O\nto O O\nunderstand O O\none O O\nconcept O O\nhere O O\n. O O\n\nPlease O O\nhelp O O\nme O O\nunderstand O O\nthe O O\nconcept O O\n. O O\n\nSolution O O\n: O O\n\nMyApp.Web Name Name\nreferences O O\nMyApp.Logic Name Name\n, O O\nand O O\nMyApp.Logic Name Name\nreferences O O\nMyApp.Data Name Name\n. O O\n\nOn O O\nmy O O\napplication O O\n, O O\nwhat O O\nI O O\nam O O\ntrying O O\nto O O\ndo O O\nis O O\nsimply O O\nbind O O\na O O\ngridview Name Name\nby O O\nthe O O\ntablename Name Name\n, O O\nwhich O O\nis O O\nchosen O O\nfrom O O\na O O\ndropdownlist Name Name\n. O O\n\nHowever O O\n, O O\nthere O O\nare O O\nhundreds O O\nand O O\nmore O O\ntables Name Name\n. O O\n\nThe O O\npurpose O O\nhere O O\nis O O\njust O O\nto O O\ndisplay O O\ndata O O\nto O O\nthe O O\nuser O O\n( O O\nwith O O\npaging O O\n) O O\n. O O\n\nSo O O\na O O\nclass O O\n\" O O\nGet_Data Name Name\n\" O O\non O O\nproject O O\nMyApp.Data Name Name\nhas O O\na O O\nfunction O O\n: O O\n\nFrom O O\nMyApp.Logic Name Name\n, O O\nI O O\nam O O\njust O O\npassing O O\nthe O O\ndatatable Name Name\nfrom O O\nthe O O\nMyApp.Data Name Name\ntier O O\nto O O\nMyApp.Web Name Name\n. O O\n\nAnd O O\nthen O O\nthe O O\ngridview Name Name\nis O O\nbound O O\nand O O\neverything O O\nis O O\nworking O O\nhere O O\n. O O\n\nSo O O\nwhat O O\nI O O\nam O O\ndoing O O\nwrong O O\nhere O O\n? O O\n\nIs O O\nit O O\nreally O O\nbad O O\nto O O\nhave O O\ndatatable Name Name\nin O O\nUI O O\nlevel O O\n? O O\n\nWhy O O\nis O O\nit O O\na O O\nbad O O\ndesign O O\n? O O\n\nThe O O\nnotion O O\nthat O O\nit O O\nis O O\nbad O O\npractice O O\nfor O O\nyour O O\nUI O O\nto O O\ncreate/load/consume O O\na O O\ndatatable Name Name\ncomes O O\nfrom O O\nthe O O\nidea O O\nthat O O\nit O O\nis O O\npreferable O O\nto O O\nsplit O O\nyour O O\napplication O O\ninto O O\nlayers O O\nthat O O\nspecialize O O\n, O O\nthe O O\nmost O O\ncommon O O\nsplit O O\nis O O\nto O O\nhave O O\n3 O O\nlayers O O\n: O O\n\nLayer O O\n1 O O\nis O O\na O O\ndata O O\nlayer O O\nresponsible O O\nfor O O\ncommunicating O O\nwith O O\nthe O O\ndatabase O O\nand O O\npopulating O O\ndomain O O\nobjects O O\n, O O\nthe O O\ndomain O O\nobjects O O\nare O O\ntypically O O\ndefined O O\nin O O\nlayer O O\n2 O O\nwhich O O\nalso O O\nholds O O\nthe O O\nbusiness O O\nlogic O O\nfor O O\nyour O O\napplication O O\n. O O\n\nby O O\ndomain O O\nobjects O O\ni O O\nmean O O\nclasses O O\nthat O O\nrepresent O O\nreal O O\nthings O O\nlike O O\ncustomer O O\n, O O\nbank O O\naccount O O\n, O O\nhotel O O\nroom O O\netc O O\n. O O\n\nand O O\nby O O\nbusiness O O\nlogic O O\ni O O\nmean O O\nthe O O\nrules O O\nthat O O\napply O O\nto O O\ndomain O O\nobjects O O\nduring O O\nevents O O\ni.e O O\n. O O\nwhen O O\na O O\nhotel O O\nroom O O\nis O O\nbooked O O\na O O\nconfirmation O O\nis O O\nsent O O\nto O O\nthe O O\ncustomer O O\n. O O\n\nthe O O\nthird O O\nlayer O O\nis O O\nthe O O\nUI O O\nlayer O O\n, O O\nto O O\nsimplyfy O O\ncoding O O\nthis O O\nshould O O\nonly O O\ndeal O O\nwith O O\nwhats O O\nin O O\nlayer O O\n2 O O\n, O O\nthis O O\nis O O\nwhere O O\nthe O O\nrecommendation O O\nto O O\nnot O O\nuse O O\ndatatables Name Name\nin O O\nyour O O\nUI O O\ncomes O O\nfrom O O\n. O O\n\nthe O O\nmotivation O O\nto O O\nsplit O O\nyour O O\napplication O O\nreally O O\nstart O O\nto O O\nmake O O\nsense O O\nwhen O O\nyour O O\napplication O O\nis O O\nbig O O\n, O O\nor O O\nyou O O\nhave O O\nmultiple O O\ndevelopers O O\nworking O O\non O O\nit O O\n, O O\nor O O\nyour O O\nusing O O\nunit O O\ntesting O O\n. O O\n\nIf O O\nyou O O\n're O O\nin O O\nthat O O\nsituation O O\nthen O O\ni O O\n'd O O\ntry O O\nand O O\nfind O O\na O O\nfriendly O O\nmember O O\nof O O\nyour O O\nteam O O\nto O O\nexplain O O\nthis O O\nbetter O O\n, O O\nbut O O\nif O O\nthis O O\nis O O\njust O O\nyou O O\nwriting O O\nan O O\napplication O O\non O O\nyour O O\nown O O\nthen O O\ni O O\nwould O O\nn't O O\nworry O O\ntoo O O\nmuch O O\nabout O O\nit O O\n, O O\nwrite O O\nlots O O\nof O O\ncode O O\n, O O\nread O O\nlots O O\nof O O\nbooks O O\nand O O\nthis O O\nstuff O O\nwill O O\nmake O O\nmore O O\nsense O O\n, O O\ni O O\nwould O O\nrecommend O O\nthe O O\ncraig O O\nlarman O O\nbook O O\non O O\numl Name Name\nand O O\npatterns O O\n. O O\n\nhope O O\nthis O O\nhelps O O\n\nI O O\nam O O\nusing O O\nasp.net Name Name\nwith O O\njavascript Name Name\n. O O\n\nJavascript Name Name\nwork O O\nfine O O\nwith O O\nIE8 Name Name\nand O O\nsome O O\nIE11 Name Name\n. O O\n\nJavascript Name Name\nis O O\nable O O\nto O O\nresponse O O\nfor O O\nsome O O\nuser O O\nwho O O\nuse O O\nIE11 Name Name\nbut O O\nit O O\ndoes O O\nn't O O\nresponse O O\nto O O\nother O O\nusers O O\nwho O O\nis O O\nalso O O\nuse O O\nIE11 Name Name\neven O O\nthough O O\nthey O O\nalready O O\nhave O O\nIE Name Name\nsetting O O\nscript O O\nenabled O O\n. O O\n\nI O O\nalready O O\nupdate O O\nto O O\n4.5 Name Name\n.NET Name Name\nFramework O O\nbut O O\nthe O O\nresult O O\nstill O O\ndoes O O\nn't O O\nwork O O\n. O O\n\nOne O O\nof O O\nusers O O\ntold O O\nme O O\nthat O O\nthe O O\nweb O O\nused O O\nto O O\nwork O O\nwell O O\nbefore O O\nwhile O O\nhe O O\nusing O O\nIE11 Name Name\nand O O\nhe O O\nhave O O\nn't O O\nchange O O\nanything O O\nsince O O\nuntil O O\nweb O O\ndoes O O\nn't O O\nwork O O\nfor O O\nhim O O\n. O O\n\nAnyone O O\nknow O O\nwhat O O\ncould O O\ncause O O\nit O O\n? O O\n\nHere O O\nis O O\none O O\nof O O\nuser O O\nwho O O\ngot O O\nthis O O\nsource O O\nerror O O\non O O\njavascript Name Name\nfile O O\n, O O\n\nI O O\nfound O O\nthe O O\nsolution O O\nis O O\nin O O\nIE Name Name\nsetting O O\nunder O O\nSecurity O O\ntab Name Name\nby O O\nremoving O O\nthe O O\nweb O O\nURL O O\nfrom O O\ntrusted O O\nsites O O\nand O O\nmove O O\nurl O O\nto O O\nlocal O O\nintranet O O\n. O O\n\nI O O\nhave O O\na O O\nUICollectionViewController Name Name\nwith O O\na O O\nlarge O O\ndataset O O\n( O O\n>2000 O O\nitems O O\n) O O\nwith O O\na O O\ncustom O O\nlayout O O\n. O O\n\nUsing O O\nsections O O\n, O O\nthe O O\nscrolling O O\nperformance O O\nbecame O O\nextremely O O\nchoppy O O\n. O O\n\nUsing O O\nInstruments O O\nand O O\na O O\nfew O O\ntests O O\n, O O\nI O O\ndetermined O O\nthis O O\nwas O O\ndue O O\nto O O\nlookup O O\nin O O\nthe O O\nlayout O O\n( O O\nlayoutAttributesForElementsInRect Name Name\n: Name Name\n) O O\n. O O\n\nI O O\ncache O O\nlayout O O\nattributes O O\nin O O\nprepareLayout Name Name\n, O O\nand O O\nlook O O\nthem O O\nup O O\nhere O O\nlike O O\nso O O\n, O O\nin O O\nthe O O\nfastest O O\nway O O\nI O O\nknow O O\nof O O\n: O O\n\nI O O\nfound O O\nthat O O\n~ O O\n25% O O\nof O O\ncpu Name Name\ntime O O\nwas O O\nspent O O\nenumerating O O\nthis O O\n, O O\nmostly O O\non O O\n[ Name Name\nNSIndexPath Name Name\nisEqual Name Name\n: Name Name\n] Name Name\n. O O\n\nSo O O\n, O O\nI O O\nneed O O\na O O\nfaster O O\nway O O\nto O O\nhash O O\nthese O O\nvalues O O\n. O O\n\nIt O O\nmust O O\nbe O O\npossible O O\n, O O\nbecause O O\nI O O\ndid O O\na O O\ncross O O\ntest O O\nusing O O\nthe O O\nsame O O\ndata O O\nwith O O\na O O\nsectioned O O\nUICollectionViewFlowLayout Name Name\nand O O\nit O O\nwas O O\nsmooth O O\n. O O\n\nWell O O\n, O O\nturns O O\nout O O\nusing O O\narrays Name Name\ninstead O O\nof O O\ndictionaries Name Name\n, O O\nand O O\nfiltering O O\nby O O\nan O O\nNSPredicate Name Name\nwas O O\nmuch O O\nfaster O O\nsince O O\nin O O\nthis O O\ncase O O\nthe O O\nindices O O\nwere O O\nalready O O\nknown O O\n. O O\n\nMy O O\nproject O O\nwas O O\nrunning O O\non O O\nDjango Name Name\n1.5.4 Name Name\nand O O\nI O O\nwanted O O\nto O O\nupgrade O O\nit O O\n. O O\n\nI O O\ndid O O\npip Name Name\ninstall Name Name\n-U Name Name\n-I Name Name\ndjango Name Name\nand O O\nnow O O\npip Name Name\nfreeze Name Name\nshows O O\nDjango Name Name\n1.6.5 Name Name\n( O O\nclearly O O\ndjango Name Name\nhas O O\nupgraded O O\n, O O\nI O O\n'm O O\nin O O\nvirtualen Name Name\nv) Name Name\nbut O O\nmy O O\nproject O O\nis O O\nstill O O\nusing O O\nDjango Name Name\n1.5.4 Name Name\n. O O\n\nHow O O\ncan O O\nI O O\nuse O O\nthe O O\nupgraded O O\nversion O O\n? O O\n\nUPDATE O O\n: O O\nThanks O O\nfor O O\nyour O O\ncomments O O\n. O O\n\nI O O\ntried O O\neverything O O\nbut O O\nunfortunately O O\nnothing O O\nworked O O\nand O O\nI O O\nhad O O\nto O O\nre-deploy O O\nthe O O\napp O O\n. O O\n\nHope O O\nsomeone O O\nexplains O O\nwhy O O\nthis O O\nhappened O O\n. O O\n\nYou O O\ncan O O\nuse O O\n--upgrade Name Name\nwith O O\nthe O O\npip Name Name\ncommand O O\nto O O\nupgrade O O\nPython Name Name\npackages O O\n. O O\n\nI O O\n'm O O\nnot O O\nan O O\nexpert O O\non O O\neither O O\nPython Name Name\nor O O\nDjango Name Name\n. O O\n\nWhat O O\nI O O\nam O O\ndoing O O\nis O O\nfollowing O O\nalong O O\nthis O O\nreally O O\nvery O O\ngood O O\nbook O O\n: O O\nTest O O\nDriven O O\nWeb O O\nDevelopment O O\nWith O O\nPython Name Name\n( O O\n2nd O O\nEd O O\n) O O\n. O O\n\nIt O O\nuses O O\nDjango Name Name\n.. O O\n. O O\n\nI O O\n'm O O\nalso O O\nusing O O\na O O\nWindoze Name Name\nmachine O O\n( O O\nW10 Name Name\n) O O\nwith O O\nCygwin Name Name\n. O O\n\nThe O O\nreason O O\nI O O\nmention O O\nall O O\nthis O O\nis O O\nbecause O O\nI O O\nfound O O\n, O O\nhaving O O\ninstalled O O\nPython Name Name\n3.6 Name Name\nin O O\nmy O O\nCygwin Name Name\nsetup O O\n, O O\nthat O O\nI O O\nhad O O\nto O O\nuse O O\npip3 Name Name\n, O O\nnot O O\npip Name Name\n, O O\nto O O\ninstall O O\nDjango Name Name\n. O O\n\nMy O O\ninstalled O O\nversion O O\nof O O\nDjango Name Name\nwas O O\n1.11.8 Name Name\n. O O\n\nTo O O\nfollow O O\nthe O O\n\" O O\nofficial O O\n\" O O\n(?) O O\n\ntutorial O O\nhere O O\nthey O O\nwant O O\nyou O O\nto O O\nhave O O\nDjango Name Name\n2.0 Name Name\ninstalled O O\n. O O\n\nI O O\nsuccessfully O O\nmanaged O O\nto O O\ndo O O\nthis O O\nwith O O\n: O O\n\nHope O O\nthis O O\nhelps O O\nsomeone O O\n. O O\n\nPerhaps O O\nsomeone O O\nmuch O O\nmore O O\nknowledgeable O O\nthan O O\nme O O\ncan O O\ntalk O O\nabout O O\nthe O O\nneed O O\nor O O\notherwise O O\nto O O\nuse O O\npip3 Name Name\nfor O O\nall O O\nPython Name Name\n3.x Name Name\nactivity O O\n?? O O\n? O O\n\nI O O\nhave O O\nan O O\nexisting O O\njava Name Name\nbased O O\nrate O O\nstreaming O O\napplication O O\ndeployed O O\nin O O\nweblogic Name Name\n, O O\ni O O\nneed O O\nto O O\nuse O O\nnode Name Name\njs Name Name\nand O O\nredis Name Name\nfor O O\nreal-time O O\nstreaming O O\nrates O O\n. O O\n\nHow O O\ncan O O\ni O O\nuse O O\nnode Name Name\njs Name Name\nand O O\nredis Name Name\nto O O\nmy O O\nexisting O O\njava Name Name\nbased O O\napplication O O\ndeployed O O\nin O O\nweblogic Name Name\n. O O\n\nI O O\n'm O O\nwriting O O\nsome O O\nsoftware O O\nthat O O\ntalks O O\nto O O\nexternal O O\nhardware O O\nvia O O\na O O\ndll Name Name\n( O O\nmoving O O\nsome O O\nmotors O O\nand O O\nreading O O\nsome O O\nvalues O O\nback O O\n) O O\n. O O\n\nThe O O\ncalls O O\nto O O\nthe O O\ndll Name Name\nare O O\nblocking O O\nand O O\nmay O O\nnot O O\nreturn O O\nfor O O\nin O O\nthe O O\norder O O\nof O O\n10 O O\nseconds O O\n. O O\n\nThe O O\nsoftware O O\nperforms O O\na O O\nscan O O\nby O O\nmoving O O\nthe O O\nhardware O O\n, O O\ntaking O O\na O O\nreading O O\nand O O\nrepeating O O\nfor O O\na O O\nnumber O O\nof O O\npoints O O\n. O O\n\nOne O O\nscan O O\ncan O O\ntake O O\nin O O\nthe O O\norder O O\nof O O\n30 O O\nminutes O O\nto O O\ncomplete O O\n. O O\n\nWhile O O\nthe O O\nscan O O\nis O O\nrunning O O\nI O O\nwould O O\nobviously O O\nlike O O\nthe O O\nGUI Name Name\nto O O\nbe O O\nresponsive O O\nand O O\na O O\nlive O O\ngraph Name Name\n( O O\nin O O\nan O O\nMDI Name Name\nChild Name Name\n) O O\nof O O\nthe O O\nincoming O O\ndata O O\nto O O\nbe O O\nupdated O O\nat O O\neach O O\npoint O O\n. O O\n\nMultithreading O O\nseems O O\nthe O O\nobvious O O\nchoice O O\nfor O O\nthis O O\nproblem O O\n. O O\n\nMy O O\nquestion O O\nis O O\n, O O\nwhat O O\nis O O\nthe O O\nbest O O\nway O O\nto O O\nthread O O\nthis O O\nand O O\ntalk O O\nback O O\nto O O\nthe O O\nmain O O\nVCL Name Name\nthread O O\nto O O\nupdate O O\nthe O O\ngraph Name Name\nduring O O\na O O\nscan O O\n? O O\n\nI O O\ncurrently O O\nhave O O\na O O\nsingle O O\nTThread Name Name\ndescendant O O\nthat O O\nperforms O O\nthe O O\n' O O\nscan O O\nlogic O O\n' O O\nand O O\nan O O\narray Name Name\nof O O\ndoubles Name Name\nin O O\nthe O O\npublic O O\nvar Name Name\nsection O O\nof O O\nthe O O\nChildForm Name Name\n. O O\n\nI O O\nneed O O\nto O O\nfill O O\nout O O\nthis O O\narray Name Name\nfrom O O\nthe O O\nthread O O\nbut O O\nI O O\ndo O O\nn't O O\nknow O O\nwhether O O\nto O O\nuse O O\nSynchronize Name Name\nor O O\nCriticalSection Name Name\nor O O\nPostMessage Name Name\nor O O\nsome O O\nother O O\nmethod O O\n. O O\n\nEach O O\ntime O O\na O O\nnew O O\nvalue O O\nis O O\nadded O O\n, O O\nthe O O\nmain O O\nVCL Name Name\nthread O O\nneeds O O\nto O O\nupdate O O\nthe O O\ngraph Name Name\n. O O\n\nShould O O\nI O O\nreally O O\nhave O O\nan O O\nintermediary O O\nobject O O\nfor O O\nthe O O\ndata O O\nthat O O\nis O O\na O O\nglobal Name Name\nvar Name Name\nand O O\naccess O O\nthis O O\nfrom O O\nthe O O\nThread Name Name\nand O O\nthe O O\nChildForm Name Name\nseparately O O\nsomehow O O\n? O O\n\nI O O\nfind O O\nthat O O\npopulating O O\na O O\nTThreadList Name Name\nfrom O O\nthe O O\nbackground O O\nthread O O\n, O O\nthen O O\nposting O O\na O O\nmessage O O\nto O O\nthe O O\nmain O O\nthread O O\nthat O O\nthere O O\nis O O\na O O\nnew O O\nitem O O\nin O O\nthe O O\nlist Name Name\n, O O\nthen O O\nprocessing O O\nthe O O\nlist Name Name\nin O O\nthe O O\nmain O O\nthread O O\nis O O\nsimple O O\nand O O\neasily O O\nmaintainable O O\n. O O\n\nWith O O\nthis O O\nmethod O O\n, O O\nyou O O\ncould O O\nstore O O\nas O O\nmany O O\nreadings O O\nas O O\nyou O O\nwanted O O\nin O O\nthe O O\nlist Name Name\n, O O\nand O O\nevery O O\ntime O O\nthe O O\nmain O O\nthread O O\nreceived O O\na O O\nmessage O O\n, O O\nit O O\nwould O O\nsimply O O\nprocess O O\nall O O\nthe O O\nitems O O\nin O O\nthe O O\nlist Name Name\nat O O\nonce O O\n. O O\n\nDefine O O\na O O\nclass O O\nfor O O\nthe O O\nreadings O O\n, O O\ninstantiate O O\nthem O O\n, O O\nand O O\nadd O O\nthem O O\nto O O\nthe O O\nlist Name Name\nin O O\nthe O O\nbackground O O\nthread O O\n. O O\n\nDo O O\nn't O O\nforget O O\nto O O\nfree O O\nthem O O\nin O O\nthe O O\nmain O O\nthread O O\nwhen O O\nyou O O\npop O O\nthem O O\noff O O\nthe O O\nlist Name Name\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\ninvest O O\na O O\nlittle O O\nmore O O\nthen O O\na O O\nsimple O O\nSynchronize Name Name\ncall O O\nwhich O O\nby O O\nthe O O\nway O O\nblocks O O\nthe O O\nmain O O\nthread O O\n, O O\nyou O O\ncan O O\nadd O O\na O O\nsimple O O\nFIFO O O\nqueue Name Name\nwith O O\nmessaging O O\non O O\ntop O O\nof O O\nit O O\n. O O\n\nThe O O\nflow O O\nof O O\ndata O O\nwould O O\nbe O O\nlike O O\nthis O O\n: O O\n\nThe O O\nthread O O\nputs O O\nthe O O\ndata O O\ninto O O\nthe O O\nqueue Name Name\n. O O\n\nThe O O\nthread O O\npost O O\na O O\nmessage O O\nto O O\nthe O O\nmain O O\nthread O O\nwindow O O\n. O O\n\nWhich O O\none O O\nI O O\ndo O O\nn't O O\ncare O O\n:) O O\n\nYou O O\nhandle O O\nthe O O\nmessage O O\nthat O O\ndata O O\nis O O\navailable O O\nand O O\nprocess O O\nany O O\nmessages O O\nin O O\nthe O O\nqueue Name Name\nas O O\nyou O O\nsee O O\nfit O O\n. O O\n\nThe O O\ncode O O\nwould O O\nlook O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nthe O O\nqueue Name Name\n.. O O\n. O O\n\nthe O O\ndata O O\nis O O\nput O O\ninto O O\nthe O O\nqueue Name Name\n.. O O\n. O O\n\nand O O\nprocessing O O\n.. O O\n. O O\n\nThe O O\ncode O O\nis O O\nwritten O O\nwithout O O\nDelphi Name Name\nand O O\nchecks O O\nso O O\nit O O\ncan O O\ncontain O O\nerrors O O\n. O O\n\nI O O\nshowed O O\nthe O O\nexample O O\nusing O O\nmy O O\nfreely O O\navailable O O\nthread O O\nsafe O O\nqueue Name Name\nand O O\nTAnyValue Name Name\n. O O\n\nYou O O\ncan O O\nfind O O\nboth O O\nhere O O\n: O O\n\nhttp://www.cromis.net/blog/downloads/ O O\n\nAlso O O\nplease O O\nnote O O\nthen O O\nI O O\ndid O O\nnot O O\ndo O O\nany O O\ncheck O O\nif O O\nPostMessage Name Name\nwas O O\nactually O O\nsent O O\n. O O\n\nYou O O\nshould O O\ncheck O O\nthat O O\nin O O\nproduction O O\ncode O O\n. O O\n\nI O O\nam O O\ncreating O O\na O O\napp O O\nwhereby O O\nthe O O\nuser O O\ninputs O O\ndata O O\ninto O O\na O O\nform Name Name\nand O O\nthen O O\nhits O O\nthe O O\nbutton Name Name\n, O O\nopens O O\nup O O\na O O\nemailing O O\napp O O\nand O O\nsends O O\nit O O\noff O O\nto O O\nthe O O\nemail O O\naddress O O\nput O O\nin O O\n. O O\n\nI O O\nhave O O\n3 O O\ncheckboxes Name Name\n, O O\none O O\nthat O O\nasks O O\nif O O\nthe O O\nuser O O\nwants O O\na O O\ncall O O\nback O O\n, O O\none O O\nif O O\nthey O O\nwant O O\nan O O\nemail O O\nback O O\nand O O\none O O\nsaying O O\nno O O\nthanks O O\nto O O\nboth O O\n. O O\n\nMy O O\ncurrent O O\njava Name Name\ncode O O\nis O O\n: O O\n\nAnd O O\nthen O O\nthe O O\nmethod O O\nwhich O O\ncalls O O\nall O O\nthe O O\nabove O O\nis O O\n: O O\n\nOn O O\nthe O O\nlast O O\nline O O\n, O O\nI O O\nwant O O\nto O O\nget O O\nthe O O\ndata O O\nfrom O O\nthe O O\ncheckbox Name Name\nfor O O\nexample O O\n, O O\nif O O\nthe O O\ncall O O\nback O O\nbox Name Name\nwas O O\nticked O O\n, O O\nin O O\nthe O O\nemail O O\nit O O\nshould O O\nsay O O\n\" O O\nThe O O\nuser O O\nrequests O O\na O O\ncall O O\nback O O\n\" O O\n. O O\n\nIf O O\nboth O O\ncall O O\nand O O\nemail O O\nare O O\nticked O O\nthen O O\n\" O O\nThe O O\nuser O O\nrequests O O\na O O\ncall O O\nor O O\nemail O O\nback O O\n\" O O\nand O O\nif O O\nthe O O\nno O O\nthanks O O\ncheckbox Name Name\nis O O\nticked O O\nthen O O\n\" O O\nThe O O\nuser O O\ndoes O O\nn't O O\nrequire O O\nan O O\nupdate O O\nwhen O O\nissue O O\nis O O\nresolved O O\n\" O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\ncreate O O\na O O\ndataset O O\npattern O O\nlike O O\nthis O O\nfrom O O\nthe O O\nrest Name Name\nservice O O\nin O O\nmy O O\nangular Name Name\napplication O O\n. O O\n\nExample O O\n: O O\n\nRight O O\nnow O O\nthis O O\nis O O\nmy O O\ncode O O\nto O O\nbuild O O\na O O\nsimilar O O\npattern O O\n, O O\n\nProblem O O\nis O O\ndata O O\nfield O O\nis O O\nnot O O\ncreating O O\nan O O\narray Name Name\n. O O\n\nThis O O\nis O O\nthe O O\nfinal O O\noutput O O\nwhich O O\nthe O O\nabove O O\ncode O O\ngenerates O O\n. O O\n\ntry O O\nthis O O\n, O O\nYou O O\nnee O O\na O O\nloop O O\nfor O O\ndataname Name Name\n\npush() Name Name\nreturns O O\nthe O O\nnew O O\narray Name Name\n's O O\nlength O O\n\nor O O\nyou O O\ncan O O\nuse O O\nconcat() Name Name\n\nSOLUTION O O\n\nWell O O\n, O O\nthat O O\n's O O\nwhat O O\nI O O\nget O O\nwhen O O\nI O O\nuse O O\na O O\nbit O O\noldish O O\nSymfony2 Name Name\nrelease O O\n( O O\n2.0-RC6 Name Name\n) O O\n. O O\n\nIt O O\nseems O O\nthat O O\nthere O O\nwas O O\na O O\nbug O O\nin O O\n__construct Name Name\nof O O\nRoleSecurityIdentity Name Name\n( O O\nreported O O\nback O O\nin O O\nDecember O O\n' O O\n10 O O\n) O O\n. O O\n\nInstead O O\nof O O\ninstance O O\nof O O\nRole Name Name\nit O O\nshould O O\nbe O O\ninstance O O\nof O O\nRoleInstance Name Name\n. O O\n\nI O O\nshould O O\nprobably O O\nclose O O\nthis O O\nquestion O O\n.. O O\n. O O\n\nI O O\n'm O O\npretty O O\nnew O O\nto O O\nwhole O O\nACL Name Name\nconcept O O\nin O O\nSymfony2 Name Name\nbut O O\nI O O\nunderstand O O\nbasics O O\nbehind O O\nit O O\n. O O\n\nLast O O\nnight O O\nI O O\nwas O O\ntrying O O\nto O O\nmake O O\nnext O O\nscenario O O\nwork O O\n: O O\n\nI O O\nhave O O\n2 O O\nuser O O\nroles O O\n( O O\nROLE_GROUP1 Name Name\n, O O\nROLE_GROUP Name Name\n2) Name O\nand O O\nI O O\nwant O O\nto O O\nsetup O O\nobject-level O O\nACL Name Name\nfor O O\nthe O O\none O O\nof O O\nthese O O\ngroups O O\n. O O\n\nIf O O\nuser O O\nwith O O\nROLE_GROUP1 Name Name\nis O O\nlogged O O\nin O O\nit O O\nshould O O\nput O O\nthis O O\nrole O O\ninto O O\nACE Name Name\n, O O\notherwise O O\nit O O\nshould O O\nput O O\nROLE_GROUP2 Name Name\n. O O\n\nSo O O\nfar O O\nI O O\nwrote O O\nthis O O\ncode O O\n( O O\nreally O O\nalmost O O\nidentical O O\nto O O\nofficial O O\ndocs O O\n) O O\n: O O\n\nThe O O\nway O O\nI O O\nunderstand O O\nit O O\n, O O\nthis O O\nshould O O\ngrant O O\nall O O\npermissions O O\nto O O\nusers O O\nwith O O\nROLE_GROUP1 Name Name\nrole O O\n. O O\n\nAm O O\nI O O\nwrong O O\n? O O\n\nTo O O\ncheck O O\nfor O O\npermissions O O\nI O O\nused O O\nthis O O\ncode O O\n( O O\nagain O O\n, O O\nfrom O O\nofficial O O\ndocs O O\n) O O\n: O O\n\n.. O O\n. O O\nbut O O\nit O O\nalways O O\nfails O O\n( O O\nthat O O\nis O O\nthrows O O\nan O O\nexception O O\n) O O\n. O O\n\nI O O\nlooked O O\ninto O O\nthe O O\nACL Name Name\ntables Name Name\nand O O\neverything O O\nseemed O O\nnormal O O\n, O O\nas O O\nfar O O\nas O O\nI O O\ncould O O\nsee O O\n. O O\n\nAm O O\nI O O\ndoing O O\nsomething O O\nwrong O O\nwith O O\nRoleSecurityIdentity Name Name\n? O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\nachieve O O\nthis O O\nscenario O O\n? O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\nmuch O O\nappreciated O O\n! O O\n\nEDIT O O\n\nI O O\njust O O\ndrilled O O\ndown O O\nthrough O O\nthe O O\nSymfony Name Name\n's O O\ncode O O\nand O O\nfound O O\nout O O\nthat O O\npermission O O\ngrant O O\nfails O O\nin O O\nequals Name Name\nmethod O O\nof O O\nRoleSecurityIdentity Name Name\n. O O\n\nIt O O\nturns O O\nout O O\nthat O O\n$sid->getRole() Name Name\nis O O\nstring Name Name\n\" O O\nROLE_GROUP1 Name Name\n\" O O\nwhile O O\n$ Name Name\nthis->role Name Name\nis O O\nRole Name Name\nobject O O\nof O O\nROLE_GROUP1 Name Name\nrole O O\n. O O\n\nJust O O\nto O O\nmark O O\nthis O O\nquestion O O\nas O O\nresolved O O\n. O O\n\nSolution O O\n: O O\n\nWell O O\n, O O\nthat O O\n's O O\nwhat O O\nI O O\nget O O\nwhen O O\nI O O\nuse O O\na O O\nbit O O\noldish O O\nSymfony2 Name Name\nrelease O O\n( O O\n2.0-RC6 Name Name\n) O O\n. O O\n\nIt O O\nseems O O\nthat O O\nthere O O\nwas O O\na O O\nbug O O\nin O O\n__construct Name Name\nof O O\nRoleSecurityIdentity Name Name\n( O O\nreported O O\nback O O\nin O O\nDecember O O\n' O O\n10 O O\n) O O\n. O O\n\nInstead O O\nof O O\ninstance O O\nof O O\nRole Name Name\nit O O\nshould O O\nbe O O\ninstance O O\nof O O\nRoleInstance Name Name\n. O O\n\nI O O\nshould O O\nprobably O O\nclose O O\nthis O O\nquestion O O\n.. O O\n. O O\n\nI O O\nhave O O\ntwo O O\ntables O O\nas O O\nfollows O O\n: O O\n\nThe O O\ntwo O O\ntables Name Name\nare O O\nrelated O O\nthrough O O\nForeign-key Name Name\n: Name Name\nFkOriginalTextId Name Name\n\nBasically O O\n, O O\nOriginalText Name Name\nwill O O\nhave O O\nkey/value Name Name\npairs O O\nfor O O\ndifferent O O\nlanguages O O\n. O O\n\nIf O O\na O O\nparticular O O\nclient Name Name\nwants O O\na O O\ncertain O O\nvalue O O\nto O O\nbe O O\ncustomized O O\nthen O O\nit O O\ngoes O O\nto O O\nthe O O\nCustomText Name Name\ntable Name Name\n. O O\n\nAn O O\nexample O O\nwould O O\nbe O O\nOriginalText Name Name\n: O O\nEmployee Name Name\n, O O\nCustomText Name Name\n: O O\nStaff-member Name Name\nfor O O\nthe O O\nkey Name Name\n: O O\nEmployee Name Name\n. O O\n\nI O O\nwant O O\nto O O\nwrite O O\na O O\nLambda/Linq Name Name\nto O O\nget O O\nall O O\nthe O O\ntext O O\nof O O\na O O\ngiven O O\nlanguage O O\nfrom O O\nthe O O\nOriginalText Name Name\ntable Name Name\n, O O\nbut O O\nthe O O\nTextValue Name Name\nshould O O\nbe O O\noverriden O O\nif O O\nthere O O\n's O O\na O O\ncustom O O\nreplacement O O\nfor O O\nthat O O\nkey Name Name\nin O O\nthe O O\nCustomText Name Name\ntable Name Name\n. O O\n\nI O O\ncan O O\ndo O O\nthis O O\nusing O O\nmultiple O O\nSQL Name Name\nstatements O O\nby O O\ngetting O O\nthe O O\nOriginalText Name Name\nvalues O O\nto O O\na O O\ntemp Name Name\ntable Name Name\nand O O\nlater O O\non O O\nupdating O O\nthem O O\nwith O O\nCustomText Name Name\nvalue O O\n, O O\nbut O O\nis O O\nthere O O\n's O O\na O O\nbetter O O\nway O O\nto O O\ndo O O\nthat O O\n? O O\n\nPerhaps O O\nusing O O\na O O\nCTE O O\n? O O\n\nP.S O O\n. O O\nI O O\nwant O O\nto O O\ndo O O\nthis O O\nusing O O\nLINQ Name Name\nor O O\nLambda Name Name\nexpressions O O\n\nAs O O\ntwo O O\ntables Name Name\nhave O O\nrelations O O\nso O O\n, O O\nyou O O\ncan O O\neasily O O\ncheck O O\nif O O\neach O O\nOriginalText Name Name\nitem O O\nhas O O\na O O\nCustomText Name Name\nor O O\nnot O O\n. O O\n\nand O O\nget O O\nvalue O O\nfrom O O\nCustomText Name Name\nif O O\nexists O O\n: O O\n\nI O O\nhave O O\njust O O\nnormalized O O\nthe O O\nfont Name Name\nsize Name Name\nwith O O\nthis O O\n: O O\n\nNow O O\nI O O\nwould O O\nlike O O\nto O O\nresize O O\nthe O O\nheading Name Name\ntags O O\ngiving O O\npercentages O O\nto O O\nthe O O\n<h1>, Name Name\n<h2> Name Name\n. O O\n\nSomething O O\nlike O O\nthis O O\n: O O\n\nAs O O\nyou O O\ncan O O\nsee O O\n, O O\nI O O\ngave O O\na O O\npercentage O O\nto O O\nthe O O\nh2 Name Name\n, O O\nbut O O\nwhat O O\nare O O\nthe O O\npercentages O O\nfor O O\nthe O O\nrest O O\nof O O\nthem O O\n? O O\n\nThe O O\npercentages O O\ncan O O\nbe O O\nwhatever O O\nyou O O\nwant O O\nthem O O\nto O O\nbe O O\n. O O\n\nThere O O\n's O O\nnothing O O\nsaying O O\nthat O O\nan O O\nH1 Name Name\nhas O O\nto O O\nbe O O\nbigger O O\nthan O O\nan O O\nH2 Name Name\n, O O\nthat O O\n's O O\njust O O\nthe O O\ndefault O O\n. O O\n\nView O O\nthe O O\nfalowing O O\nlink O O\n, O O\nit O O\nmight O O\nhelp O O\nyou O O\nsolve O O\nthat O O\n: O O\n\nCSS Name Name\nFONT Name Name\nSIZE Name Name\nem O O\nvs O O\npx O O\nvs O O\npt O O\nvs O O\n% O O\n\nI O O\nfound O O\nthis O O\nlink O O\nwith O O\na O O\nconversion O O\ntable Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nassign O O\nclick O O\nevent O O\nto O O\na O O\nbutton Name Name\nusing O O\nlive Name Name\nand O O\nwant O O\nthe O O\nuser O O\ncan O O\nonly O O\ntrigger O O\nit O O\nonly O O\nonce O O\n. O O\n\nAre O O\nthere O O\nanyways O O\nto O O\ndo O O\nit O O\n? O O\n\nPlease O O\nnote O O\n: O O\nThe O O\nbutton Name Name\nis O O\ncreated O O\ndynamically O O\n. O O\n\nYou O O\ncan O O\nuse O O\none() Name Name\nwith O O\ndelegated O O\nhandlers O O\nas O O\nwell O O\n( O O\nin O O\njQuery Name Name\n1.7 Name Name\n+ O O\n) O O\nand O O\nreplace O O\nthe O O\ndeprecated O O\nlive() Name Name\nfunction O O\nwith O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nreplace O O\ndocument Name Name\nwith O O\nthe O O\nclosest O O\nnon-dynamic O O\nparent O O\n. O O\n\nThe O O\nbest O O\noption O O\nis O O\nto O O\nuse O O\n.one Name Name\ninstead O O\nof O O\nlive Name Name\nfor O O\nthe O O\nbutton Name Name\n. O O\n\nThat O O\nmakes O O\nmore O O\nsense. O O\n. O O\n\nIf O O\nyou O O\ndo O O\nnot O O\nwant O O\nto O O\nuse O O\nit O O\nthen O O\nyou O O\ncan O O\nuse O O\na O O\nHiddenfield O O\nin O O\nyour O O\npage O O\nand O O\nwhen O O\nthe O O\nclick O O\nevent O O\nis O O\ntriggered O O\nthen O O\nset O O\nthe O O\nflag Name Name\nvalue. O O\n. O O\n\nNext O O\ntime O O\nwhen O O\nyou O O\nclick O O\nthe O O\nbutton O O\ncheck O O\nfor O O\nthe O O\nflag Name Name\nvalue O O\n, O O\nif O O\nit O O\nwas O O\nalready O O\nexecuted O O\nonce O O\nthen O O\ndo O O\nnot O O\nrun O O\nthe O O\ncode O O\ninside O O\nit. O O\n. O O\n\nCheck O O\nthis O O\nexample O O\nhttp://jsfiddle.net/sushanth009/Fakb5/ O O\n\nAlso O O\nnote O O\nthat O O\n.live Name Name\nis O O\ndeprecated O O\nin O O\nthe O O\ncurrent O O\njQuery Name Name\nversion O O\n. O O\n\nIt O O\nis O O\npreferred O O\nto O O\nuse O O\n.on() Name Name\ninstead O O\n\nWhy O O\nam O O\nI O O\ngetting O O\nthis O O\nerror O O\n? O O\n\nHere O O\n's O O\nthe O O\ncode O O\n. O O\n\nI O O\nthink O O\nit O O\nlooks O O\nfine O O\n, O O\nbut O O\nI O O\nmay O O\nhave O O\nsome O O\npretty O O\nbad O O\nmistakes O O\n. O O\n\nsorry O O\nfor O O\nthe O O\ndumb O O\nquestion O O\n: O O\n\nI O O\nam O O\ntrying O O\nto O O\ndo O O\narrays Name Name\nwhich O O\nare O O\nlists Name Name\nin O O\npython Name Name\n( O O\nfor O O\nthe O O\nfirst O O\ntime O O\n) O O\n, O O\nand O O\nI O O\nam O O\nalso O O\nnew O O\nto O O\ncoding O O\nand O O\npython Name Name\n. O O\n\nHere O O\n: O O\n\nYou O O\nassign O O\nplayerHand Name Name\nthe O O\nreturn O O\nfrom O O\nrandint Name Name\n, O O\nwhich O O\nis O O\nan O O\nint Name Name\n. O O\n\nThen O O\nhere O O\n: O O\n\nYou O O\nattempt O O\nto O O\nindex O O\ninto O O\nplayerHand Name Name\nlike O O\nit O O\nis O O\nan O O\narray Name Name\n. O O\n\nHence O O\nthe O O\nerror O O\n. O O\n\nYou O O\nneed O O\nmake O O\na O O\nlist Name Name\n. O O\n\nThe O O\nwrong O O\nversion O O\n: O O\n\nThe O O\ncorrect O O\nversion O O\n: O O\n\nSo O O\nconfusingly O O\n@IfProfileValue Name Name\nhas O O\nnothing O O\nto O O\ndo O O\nwith O O\n@Profile Name Name\nor O O\n@ActiveProfiles Name Name\n. O O\n\n@Profile Name Name\ntests O O\nto O O\nsee O O\nif O O\na O O\nprofile Name Name\nis O O\nactive Name Name\n, O O\n@ActiveProfiles Name Name\nsets O O\nthem O O\nas O O\nactive Name Name\n, O O\nand O O\n@IfProfileValue Name Name\nallows O O\nyou O O\nto O O\ncheck O O\nthings O O\nin O O\nSpring Name Name\nEnvironment O O\n. O O\n\nWut O O\n? O O\n\nI O O\n'd O O\ndeprecate O O\nall O O\nof O O\nthem O O\nand O O\nadd O O\nnew O O\nones O O\n@IfEnvironment Name Name\n, O O\n@IfProfile Name Name\n, O O\nand O O\n@ActivateProfiles Name Name\n. O O\n\nCommentary O O\naside O O\n, O O\nhow O O\ncan O O\nI O O\nuse O O\n@IfProfileValue Name Name\nto O O\ndetect O O\nwhether O O\ni O O\nhave O O\na O O\nprofile Name Name\nactive Name Name\n? O O\n\nI O O\nam O O\nnot O O\nusing O O\nSpring Name Name\nBoot Name Name\non O O\nthis O O\nproject O O\n, O O\nat O O\nthis O O\ntime O O\n. O O\n\nAnswers O O\nshould O O\nshow O O\ncode O O\n, O O\nand O O\nwe O O\nwill O O\nassume O O\nthat O O\nI O O\nwant O O\nthe O O\ntest O O\nto O O\nrun O O\nif O O\nthe O O\nprofile Name Name\nis O O\nactivated O O\nas O O\n@ActiveProfiles Name Name\n( Name Name\n\" Name Name\ntest Name Name\n\" Name Name\n) Name Name\n. O O\n\nI O O\ntried O O\n@IfProfileValue Name Name\n( Name Name\nname Name Name\n= Name Name\n\" Name Name\nactiveProfiles Name Name\n\" Name Name\n, Name Name\nvalue Name Name\n= Name Name\n\" Name Name\ntest Name Name\n\" Name Name\n) Name Name\nbut O O\nthat O O\nseems O O\nto O O\nhave O O\nthe O O\ntest O O\nskipped O O\n, O O\nwhich O O\nmeans O O\nit O O\n's O O\nnot O O\nmatching O O\n. O O\n\nI O O\n'm O O\ngoing O O\nto O O\nspeculate O O\nthe O O\nproblem O O\nmay O O\nhave O O\nto O O\ndo O O\nwith O O\nthe O O\nfact O O\nthat O O\nActiveProfiles Name Name\nis O O\na O O\nCollection Name Name\n. O O\n\nThat O O\n's O O\ncorrect O O\n, O O\nand O O\nI O O\nexplained O O\nthis O O\nin O O\ndetail O O\nhere O O\n: O O\nhttps://stackoverflow.com/a/23627479/388980 O O\n\n.. O O\n. O O\nwhich O O\nI O O\n'm O O\nassuming O O\nyou O O\nhave O O\nalready O O\nseen O O\n, O O\nsince O O\nyou O O\ncommented O O\non O O\nmy O O\nanswer O O\nyesterday O O\n. O O\n\nThe O O\nreason O O\nthat O O\n@IfProfileValue Name Name\nhas O O\nnothing O O\nto O O\ndo O O\nwith O O\n@Profile Name Name\nor O O\n@ActiveProfiles Name Name\nis O O\ndue O O\nto O O\nthe O O\nevolution O O\nof O O\nthe O O\nframework O O\n. O O\n\nSee O O\nbelow O O\nfor O O\nfurther O O\ndetails O O\n. O O\n\nThese O O\nstatements O O\nare O O\nnot O O\nentirely O O\ncorrect O O\n, O O\nespecially O O\nthe O O\nlast O O\npart O O\n. O O\n\n@Profile Name Name\nis O O\nused O O\nto O O\nselectively O O\nenable O O\na O O\ncomponent O O\n( O O\ne.g O O\n. O O\n, O O\n@Service Name Name\n, O O\netc O O\n. O O\n) O O\n, O O\n@Configuration Name Name\nclass O O\n, O O\nor O O\n@Bean Name Name\nmethod O O\nif O O\none O O\nof O O\nthe O O\nnamed O O\nbean O O\ndefinition O O\nprofiles Name Name\nis O O\nactive Name Name\nin O O\nthe O O\nSpring Name Name\nEnvironment Name Name\nfor O O\nthe O O\nApplicationContext Name Name\n. O O\n\nThis O O\nannotation O O\nis O O\nnot O O\ndirectly O O\nrelated O O\nto O O\ntesting O O\n: O O\n@Profile Name Name\nshould O O\nnot O O\nbe O O\nused O O\non O O\na O O\ntest O O\nclass O O\n. O O\n\n@ActiveProfiles Name Name\nis O O\nused O O\nto O O\ndesignate O O\nwhich O O\nbean O O\ndefinition O O\nprofiles O O\n( O O\ne.g O O\n. O O\n, O O\nthose O O\ndeclared O O\nvia O O\n@Profile Name Name\n) O O\nshould O O\nbe O O\nactive Name Name\nwhen O O\nloading O O\nan O O\nApplicationContext Name Name\nfor O O\nan O O\nintegration O O\ntest O O\n. O O\n\n@IfProfileValue Name Name\ndoes O O\nnot O O\nallow O O\nyou O O\nto O O\ncheck O O\nthings O O\nin O O\nthe O O\nSpring Name Name\nEnvironment Name Name\n. O O\n\nI O O\n'm O O\nnot O O\nsure O O\nwhy O O\nyou O O\nare O O\nassuming O O\nthis O O\n, O O\nsince O O\nnone O O\nof O O\nthe O O\ndocumentation O O\nin O O\nthe O O\nSpring Name Name\nFramework Name Name\nstates O O\nthat O O\n. O O\n\nAs O O\nI O O\nstated O O\nin O O\nthe O O\naforementioned O O\nthread O O\n: O O\n\nPlease O O\nnote O O\nthat O O\n@IfProfileValue Name Name\nwas O O\nintroduced O O\nin O O\nSpring Name Name\nFramework Name Name\n2.0 Name Name\n, O O\nlong O O\nbefore O O\nthe O O\nnotion O O\nof O O\nbean O O\ndefinition O O\nprofiles O O\n, O O\nand O O\n@ActiveProfiles Name Name\nwas O O\nfirst O O\nintroduced O O\nin O O\nSpring Name Name\nFramework Name Name\n3.1 Name Name\n. O O\n\nIn O O\nthe O O\naforementioned O O\nthread O O\n, O O\nI O O\nalso O O\npointed O O\nout O O\nthe O O\nfollowing O O\n: O O\n\nThe O O\nterm O O\n' O O\nprofile Name Name\n' O O\nis O O\nperhaps O O\nmisleading O O\nwhen O O\nconsidering O O\nthe O O\nsemantics O O\nfor O O\n@IfProfileValue Name Name\n. O O\n\nThe O O\nkey O O\nis O O\nto O O\nthink O O\nabout O O\n' O O\ntest O O\ngroups O O\n' O O\n( O O\nlike O O\nthose O O\nin O O\nTestNG Name Name\n) O O\ninstead O O\nof O O\n' O O\nprofiles Name Name\n' O O\n. O O\n\nSee O O\nthe O O\nexamples O O\nin O O\nthe O O\nJavaDoc O O\nfor O O\n@IfProfileValue Name Name\n. O O\n\nThat O O\ndepends O O\n, O O\nand O O\n.. O O\n. O O\n\nI O O\n'm O O\nassuming O O\nyou O O\nmean O O\nbean O O\ndefinition O O\nprofile Name Name\nwhen O O\nyou O O\nsay O O\n\" O O\nprofile Name Name\n\" O O\n. O O\n\nIf O O\nyou O O\n're O O\nusing O O\n@ActiveProfiles Name Name\nto O O\nset O O\nthe O O\nbean O O\ndefinition O O\nprofiles O O\nfor O O\nyour O O\ntests O O\n, O O\nyou O O\ncannot O O\ncurrently O O\nuse O O\n@IfProfileValue Name Name\nto O O\ndetermine O O\nif O O\na O O\nbean O O\ndefinition O O\nprofile Name Name\nis O O\nactive Name Name\n, O O\nsince O O\nthe O O\nbean O O\ndefinition O O\nprofiles Name Name\nconfigured O O\nvia O O\n@ActiveProfiles Name Name\nare O O\nset O O\ndirectly O O\nin O O\nthe O O\ntest O O\n's O O\nApplicationContext Name Name\nand O O\nnot O O\nas O O\na O O\nJava Name Name\nsystem O O\nproperty O O\n. O O\n\nHowever O O\n, O O\nif O O\nyou O O\nare O O\nsetting O O\nthe O O\nbean O O\ndefinition O O\nprofiles O O\nonly O O\nvia O O\nthe O O\nspring.profiles.active Name Name\nsystem O O\nproperty O O\n, O O\nthen O O\nit O O\nwould O O\nbe O O\npossible O O\nto O O\nuse O O\n@IfProfileValue Name Name\nto O O\ndetermine O O\nif O O\na O O\nbean O O\ndefinition O O\nprofile Name Name\nis O O\nactive Name Name\n, O O\nsince O O\n@IfProfileValue Name Name\nin O O\nfact O O\nworks O O\nwith O O\nsystem O O\nproperties O O\n. O O\n\nFor O O\nexample O O\n, O O\nyou O O\ncould O O\nthen O O\nuse O O\nthe O O\nfollowing O O\n: O O\n\nThat O O\nwo O O\nn't O O\nwork O O\nsince O O\nactiveProfiles Name Name\nis O O\nthe O O\nincorrect O O\nproperty O O\nname Name Name\n. O O\n\nThe O O\ncorrect O O\nsystem O O\nproperty O O\nname O O\nis O O\nspring.profiles.active Name Name\n. O O\n\nSee O O\nAbstractEnvironment.ACTIVE_PROFILES_PROPERTY_NAME Name Name\nfor O O\ndetails O O\n. O O\n\nThe O O\nfact O O\nthat O O\n@IfProfileValue Name Name\ndoes O O\nnot O O\nwork O O\nin O O\nharmony O O\nwith O O\n@ActiveProfiles Name Name\nis O O\na O O\nknown O O\nissue O O\nto O O\nthe O O\nSpring Name Name\nteam O O\n. O O\n\nPlease O O\nconsult O O\nthe O O\nfollowing O O\nJIRA Name Name\nissues O O\nfor O O\nfurther O O\ndetails O O\nand O O\nto O O\njoin O O\nin O O\non O O\nthe O O\ndiscussions O O\nif O O\nyou O O\n'd O O\nlike O O\n. O O\n\nhttps://jira.spring.io/browse/SPR-7754 O O\n\nhttps://jira.spring.io/browse/SPR-8982 O O\n\nhttps://jira.spring.io/browse/SPR-11677 O O\n\nHope O O\nthis O O\nclarifies O O\nthe O O\nsituation O O\nfor O O\nyou O O\n! O O\n\nSam O O\n( O O\nauthor O O\nof O O\nthe O O\nSpring O O\nTestContext O O\nFramework O O\n) O O\n\nSam O O\nnailed O O\nit O O\n. O O\n\n( O O\nAs O O\nwell O O\nas O O\nthe O O\nfact O O\nthis O O\nwas O O\naccepted O O\nand O O\nanswered O O\nyears O O\nback O O\n) O O\n\nOne O O\nthing O O\nto O O\nadd O O\nis O O\nthat O O\nif O O\nyou O O\n'd O O\nlike O O\nto O O\npass O O\nSystem O O\nProperties O O\nthrough O O\nto O O\nyour O O\ntest O O\n, O O\nhaving O O\nthem O O\npropagate O O\nthrough O O\nto O O\nthe O O\nJVM Name Name\nif O O\nyou O O\nare O O\nusing O O\na O O\nbuild O O\ntool O O\nlike O O\ngradle Name Name\nmay O O\nrequire O O\nan O O\nadditional O O\nstep O O\n. O O\n\nAnd O O\nthen O O\nbusiness O O\nas O O\nusual O O\nin O O\nyour O O\nintegration O O\ntest O O\n\nFinally O O\nyou O O\ncan O O\nexecute O O\nyour O O\ntests O O\nfrom O O\nthe O O\nterminal Name Name\nwith O O\nthe O O\nproperty O O\nyou O O\nspecified O O\n. O O\n\nThe O O\nthing O O\nI O O\nlike O O\nmost O O\nabout O O\n@IfProfileValue Name Name\nover O O\ngrabbing O O\nthe O O\nSystem.property Name Name\nand O O\nchecking O O\nassumeTrue/False Name Name\nmanually O O\nis O O\nthat O O\nno O O\nSpring Name Name\nContext O O\nis O O\nloaded O O\n( O O\nor O O\nflyway/other O O\nmigrations O O\nyou O O\nmay O O\nhave O O\n) O O\nkeeping O O\nunit O O\ntests O O\nfast O O\n. O O\n\nI O O\nhave O O\nForm1 Name Name\nwithDataGridView` Name Name\nwhich O O\nconsists O O\nof O O\nthe O O\nfollowing O O\ncolumns Name Name\n: O O\n\nID Name Name\n\nNAME Name Name\n\nSHORT Name Name\nDESCRIPTION Name Name\n\nDESCRIPTION Name Name\n\nAlso O O\nI O O\nhave O O\na O O\nbutton Name Name\nthat O O\nopens O O\na O O\nseparate O O\nForm2 Name Name\nthat O O\nhas O O\nseveral O O\ntextboxes Name Name\n. O O\n\nHow O O\ncan O O\nI O O\npass O O\ndata O O\nfrom O O\nthe O O\nsecond O O\nform O O\nto O O\nthe O O\noriginal O O\nform Name Name\n, O O\nthe O O\nvalue O O\nfrom O O\ntextBox1 Name Name\nof O O\nForm2 Name Name\nwill O O\nbe O O\npassed O O\nto O O\nthe O O\nID Name Name\ncolumn Name Name\nof O O\nthe O O\nDataGridView Name Name\n? O O\n\nIt O O\nshould O O\nbe O O\nworks O O\nsame O O\nfor O O\nall O O\ncolumns Name Name\n( O O\ntextbox2 Name Name\nto O O\nNAME Name Name\n.. O O\ntextbox4 O O\nto O O\nDESCRIPTION Name Name\n) O O\n\n// O O\nForm2 Name Name\n\n\\Form1 Name Name\n\nIf O O\nyou O O\nmean O O\nlike O O\nthis O O\nit O O\ndoes O O\nn't O O\npass O O\nthe O O\ndata O O\n. O O\n\nCould O O\nyou O O\nplease O O\ncorrect O O\nme O O\n? O O\n\nYou O O\n've O O\ngot O O\nthe O O\ncode O O\nof O O\nForm1 Name Name\nin O O\nthe O O\nclass O O\n. O O\n\nMove O O\nthat O O\nto O O\na O O\nmethod O O\nor O O\nevent O O\nhandler O O\n, O O\nas O O\nForm_Load Name Name\nor O O\nto O O\nthe O O\nform Name Name\nconstructor O O\n. O O\n\nEdit O O\n\nThis O O\nis O O\nhow O O\nyour O O\nForm2 Name Name\nshould O O\nlook O O\nlike O O\n. O O\n\nNote O O\nmc Name Name\nis O O\ndefined O O\nat O O\nclass O O\nlevel O O\n, O O\nso O O\nit O O\nis O O\naccessible O O\nfrom O O\noutside O O\nthe O O\nform O O\n: O O\n\nThis O O\nwould O O\nsave O O\nyour O O\nobject O O\non O O\nbutton Name Name\nclick O O\nand O O\nclose O O\nthe O O\nform O O\nin O O\nthat O O\nmoment O O\n\nI O O\ntried O O\nto O O\nuse O O\njQuery Name Name\ncombobox Name Name\n( O O\nfiddle Name Name\n) O O\nin O O\nmy O O\nMozilla Name Name\nFirefox Name Name\naddon O O\n. O O\n\nBut O O\nAMO Name Name\neditors Name Name\nrejected O O\nmy O O\nAddon Name Name\nafter O O\nreviewing O O\nstating O O\nthat O O\nmy O O\njavascript Name Name\ndoes O O\nunsafe O O\nHTML Name Name\ninsertion O O\nwith O O\nunsanitized O O\ndata O O\n. O O\n\nParts O O\nof O O\nthe O O\ncode O O\nstated O O\nas O O\nunsafe O O\nall O O\nbelong O O\nto O O\nthe O O\ncode O O\non O O\nofficial O O\njQuery Name Name\nUi Name Name\npage O O\nfor O O\ncombobox Name Name\n. O O\n\nI O O\nam O O\nalso O O\nwriting O O\nthe O O\ncode O O\nbelow O O\n. O O\n\nRemoving O O\nthis O O\npiece O O\nof O O\ncode O O\nthrows O O\nerror O O\nif O O\nI O O\ntry O O\nto O O\ncreate O O\na O O\ncombobox Name Name\n. O O\n\nIt O O\nmakes O O\nme O O\nwonder O O\nwhy O O\ncombobox Name Name\nis O O\nn't O O\nalready O O\nincluded O O\nin O O\njQuery Name Name\nand O O\nwhy O O\ndo O O\nI O O\nhave O O\nto O O\nput O O\nthis O O\nsnippet O O\ninside O O\nmy O O\ncode O O\n? O O\n\nAm O O\nI O O\ndoing O O\nanything O O\nwrong O O\nhere O O\n. O O\n\nAlternatively O O\nCan O O\nsomeone O O\nsuggest O O\nme O O\nhow O O\ncan O O\nI O O\nmake O O\nthis O O\ncode O O\ntaken O O\nfrom O O\nofficial O O\njquery Name Name\npage O O\nsafe O O\nand O O\nsanitized O O\n? O O\n\nI O O\n'm O O\ntrying O O\nto O O\nstore O O\nsome O O\ncertain O O\ninformation O O\nin O O\nthe O O\nfirebase Name Name\nrealtime Name Name\ndatabase Name Name\n. O O\n\nMy O O\ndatabase O O\nstructure O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nI O O\nneed O O\nto O O\nbe O O\nable O O\nto O O\nspecify O O\ncondition O O\nlike O O\nthis O O\nSQL Name Name\nexample O O\n: O O\n\nis O O\nthere O O\na O O\nway O O\nto O O\ndo O O\nthat O O\nin O O\nthe O O\ndatabase O O\nusing O O\nRuby Name Name\nor O O\nat O O\nleast O O\ntheir O O\nREST Name Name\nAPI Name Name\n? O O\n\nThe O O\nsolution O O\ncan O O\nbe O O\ndivided O O\ninto O O\ntwo O O\nsteps O O\n. O O\n\nStep O O\n1) O O\nYou O O\nhave O O\nto O O\nupdate O O\nrules O O\nin O O\nfirebase Name Name\nDatabase Name Name\nif O O\nnot O O\nalready O O\ndone O O\n. O O\n\nStep O O\n2) O O\nTo O O\nfetch O O\ndata O O\nfrom O O\nfirebase Name Name\nDatabase Name Name\n. O O\n\nThe O O\nrest Name Name\nAPI Name Name\nrequest O O\nshould O O\nbe O O\nsomething O O\nlike O O\nthis O O\n\nI O O\nam O O\nusing O O\nOracle Name Name\n11G Name Name\nand O O\nI O O\nhave O O\nthe O O\nfollowing O O\nstring Name Name\n: O O\nI Name Name\n- Name Name\nAm Name Name\nin Name Name\n- Name Name\nNeed Name Name\nHelp Name Name\n- Name Name\nPlease Name Name\nand O O\nwant O O\nto O O\nparse O O\nthe O O\nstring Name Name\nusing O O\nthe O O\n- Name Name\ncharacter Name Name\nthen O O\nselect O O\neverything O O\nafter O O\nthe O O\nsecond O O\nobject O O\n. O O\n\nI O O\nhave O O\nbeen O O\nplaying O O\naround O O\nwith O O\nREGEXP_REPLACE Name Name\nand O O\nSUBSTR Name Name\nand O O\nI O O\ncan O O\nselect O O\nthe O O\nsecond O O\nobject O O\nbut O O\nca O O\nn't O O\nseem O O\nto O O\nselect O O\neverything O O\nafter O O\nthe O O\nsecond O O\nobject O O\n. O O\n\nI O O\nknow O O\nI O O\nneed O O\nto O O\nadd O O\na O O\n* Name Name\nsomewhere O O\nI O O\nthink O O\nbut O O\nI O O\nca O O\nn't O O\nseem O O\nto O O\nget O O\nthe O O\nsyntax O O\ncorrect O O\n. O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\ngreatly O O\nappreciated O O\n. O O\n\nThe O O\nabove O O\nquery O O\nreturns O O\nthe O O\nsecond O O\nobject O O\n' Name Name\nAm Name Name\nin Name Name\n' Name Name\nbut O O\nI O O\nwant O O\nthis O O\nreturned O O\n' Name Name\nNeed Name Name\nof Name Name\nHelp Name Name\n- Name Name\nPlease Name Name\n' Name Name\n. O O\n\nIt O O\nis O O\nalso O O\nimportant O O\nto O O\nnote O O\nthat O O\nI O O\ndo O O\nn't O O\nwant O O\nthe O O\n- Name Name\ncharacter Name Name\ndirectly O O\nfollowing O O\nthe O O\nsecond O O\nobject O O\nin O O\nthe O O\nresult O O\neither O O\nbut O O\nI O O\nwant O O\nto O O\nstart O O\nwith O O\nthe O O\nthird O O\nobject O O\n. O O\n\nSince O O\n[ Name Name\n^- Name Name\n] Name Name\nwill O O\nonly O O\nmatch O O\nnon-hyphen O O\ncharacters Name Name\n, O O\nyour O O\nmatch O O\ngroup O O\nwill O O\nstart O O\nafter O O\nthe O O\nfirst O O\nhyphen Name Name\nand O O\nthen O O\nstop O O\nbefore O O\nthe O O\nnext O O\none O O\n. O O\n\nTo O O\ncapture O O\neverything O O\nfollowing O O\nthe O O\nfirst O O\nhyphen Name Name\n, O O\ntry O O\n: O O\n\nI O O\nhave O O\nan O O\narray Name Name\nlike O O\nthis O O\n( O O\nPHP Name Name\nCode O O\n) O O\n: O O\n\nI O O\nwant O O\njust O O\nget O O\nvalues O O\nspecific O O\nrange O O\nof O O\nindex O O\nand O O\nreplace O O\nprevious O O\narrays Name Name\nvalues O O\nwith O O\nthese O O\nnew O O\nvalues.Something O O\nlike O O\nthis O O\n: O O\n\nI O O\nwant O O\nget O O\nthis O O\nresult O O\n: O O\n\nHow O O\nshould O O\nI O O\ndo O O\nthis O O\n? O O\n\nUpdate O O\n: O O\n\nI O O\njust O O\nwant O O\nto O O\nseparate O O\nthe O O\nvalues O O\nof O O\nthe O O\narray($my_arr) Name Name\nthat O O\nare O O\nwithin O O\nthe O O\nrange O O\nof O O\nthe O O\nspecified O O\nnumber O O\nof O O\nindexes O O\nand O O\neverywhere O O\nin O O\nthe O O\narray Name Name\nand O O\nreplace O O\nall O O\nprevious O O\narray($my_arr) Name Name\nvalues O O\nwith O O\nthese O O\nnew O O\nvalues O O\n. O O\n\n** O O\n\nIf O O\nthere O O\nwere O O\nnot O O\nsome O O\nof O O\nthe O O\nindexes O O\n, O O\nOther O O\nindexes O O\noutside O O\nof O O\nthe O O\nspecified O O\nrange O O\nfor O O\nindex O O\nnumbers O O\nshould O O\nnot O O\nbe O O\nreplaced O O\nand O O\nonly O O\nreturn O O\nvalues O O\nof O O\nindexes O O\nbetween O O\n0 Name Name\nand O O\n4($my_arr[0]....$my_arr[4]) Name Name\n, O O\nand O O\nif O O\nthey O O\ndo O O\nn't O O\nhave O O\nvalue O O\nleave O O\nempty O O\nor O O\ndo O O\nnot O O\nreturn O O\nsomething O O\nelse O O\n\nI O O\nfound O O\na O O\nsimple O O\nsolution O O\nafter O O\nseveral O O\ntests O O\n: O O\n\narray_slice Name Name\n\nSince O O\nyour O O\narray Name Name\ncontains O O\nmixed O O\nkeys O O\n, O O\nyou O O\nshould O O\nfirst O O\nsort O O\nit O O\nso O O\nthe O O\nnumeric O O\nkeys O O\nwould O O\nappear O O\nfirst O O\n. O O\n\nAccording O O\nto O O\nyour O O\ncode O O\n: O O\n\nOutput O O\n: O O\n\nManual O O\narray_slice Name Name\n\nManual O O\nksort Name Name\n\nassume O O\nI O O\nhave O O\na O O\ndataset Name Name\n: O O\n\nAnd O O\nI O O\nwant O O\nsql Name Name\nto O O\ngenerate O O\nthe O O\nfollowing O O\ndatasource O O\nbased O O\non O O\nthe O O\ndateStart Name Name\nand O O\nthe O O\ndateEnd Name Name\n. O O\n\nNote O O\nthe O O\nyear O O\nand O O\nmonth O O\ngrouping O O\n. O O\n\nI O O\n'm O O\nhaving O O\na O O\nhard O O\ntime O O\nwrapping O O\nmy O O\nhead O O\naround O O\nthis O O\none O O\n. O O\n\nAny O O\nideas O O\n? O O\n\nFirst O O\n, O O\ncreate O O\na O O\ntabled-valued O O\nfunction O O\nthat O O\ntakes O O\nthe O O\n2 O O\ndates O O\nand O O\nreturns O O\nthe O O\nyear O O\nand O O\nmonth O O\nas O O\na O O\ntable Name Name\n: O O\n\nAs O O\nan O O\nexample O O\nthe O O\nfollowing O O\n: O O\n\nreturns O O\n: O O\n\nThen O O\nyou O O\nwould O O\njoin O O\nto O O\nit O O\nlike O O\nthis O O\nto O O\nget O O\nwhat O O\nyou O O\nwanted O O\n: O O\n\nI O O\nfind O O\nit O O\neasiest O O\nto O O\napproach O O\nthese O O\nproblems O O\nby O O\ncreating O O\na O O\nlist Name Name\nof O O\nintegers Name Name\nand O O\nthen O O\nusing O O\nthat O O\nto O O\nincrement O O\nthe O O\ndates O O\n. O O\n\nHere O O\nis O O\nan O O\nexample O O\n: O O\n\nA O O\nScalaTest Name Name\nsuite O O\nis O O\nusing O O\n\nWhat O O\nis O O\nthe O O\nsbt Name Name\ncommand O O\nline O O\nto O O\nachieve O O\nthis O O\nsetting O O\n? O O\n\nI O O\nhave O O\ntried O O\n\nAlso O O\n: O O\n\nFinally O O\n: O O\n\nWhen O O\nusing O O\nany O O\nof O O\nthose O O\nattempts O O\nthe O O\nSystem.getProperty Name Name\ncomes O O\nup O O\nblank O O\n. O O\n\nAn O O\napproach O O\nthat O O\ndoes O O\nwork O O\nis O O\nrunning O O\nthe O O\nScalaTest Name Name\nfrom O O\nwithin O O\nIntellij Name Name\nand O O\nsetting O O\nthe O O\nJVM Name Name\nparameters O O\nto O O\n-Dmy.command-line.property Name Name\n= Name Name\nfoo Name Name\nwithin O O\nthe O O\nRun O O\nConfiguration O O\n. O O\n\nThis O O\nworked O O\nfor O O\nme O O\n: O O\n\nand O O\n: O O\n\nYour O O\nthird O O\nway O O\nalmost O O\nworks O O\n( O O\nif O O\nfork Name Name\nin Name Name\nTest Name Name\n:= Name Name\ntrue Name Name\nis O O\nset O O\n) O O\n. O O\n\nBut O O\nyou O O\nhave O O\nto O O\nchange O O\ninto O O\nthe O O\nproject O O\nfirst O O\n: O O\n\nI O O\nhave O O\ncreated O O\na O O\nDynamic O O\nUrl O O\nwith O O\noptional O O\nparameter O O\n\ne.g O O\n. O O\n, O O\nIf O O\nmy O O\nurl O O\nis O O\nas O O\nwww.example.com/getTest/1/ O O\n\nNow O O\nthis O O\n1 O O\nin O O\nurl O O\nis O O\noptional O O\n, O O\nto O O\nhandle O O\nthis O O\nin O O\nviews O O\nI O O\nhave O O\nused O O\nNone Name Name\nlike O O\n\nThus O O\nif O O\nthere O O\nis O O\nno O O\nid O O\nin O O\nURL O O\nthen O O\nstill O O\nthe O O\nfunction O O\nworks O O\nfor O O\nme O O\n. O O\n\nBut O O\nI O O\nam O O\nfacing O O\nissue O O\nwhile O O\ntesting O O\nthis O O\nin O O\nunit O O\ncases O O\n. O O\n\nif O O\nI O O\nuse O O\nurl O O\nas O O\nurl Name Name\n= Name Name\nreverse Name Name\n( Name Name\n'yescourse:academypage_url' Name Name\n, Name Name\nargs Name Name\n=[ Name Name\nNone] Name Name\n) Name Name\nit O O\ngives O O\nme O O\nthe O O\nerror O O\n\nNoReverseMatch O O\n: O O\nReverse O O\nfor O O\n' O O\nacademypage_url O O\n' O O\nwith O O\narguments O O\n' O O\n( O O\n' O O\nnew O O\n' O O\n, O O\nNone O O\n) O O\n' O O\nand O O\nkeyword O O\narguments O O\n'{}' O O\nnot O O\nfound O O\n. O O\n\nSo O O\nPlease O O\nTell O O\nme O O\nhow O O\nI O O\ncan O O\nhandle O O\nthese O O\noptional O O\nurl O O\nin O O\nTest O O\ncases O O\nor O O\nin O O\nReverse Name Name\n. O O\n\nEdit O O\n: O O\n\nYou O O\nmade O O\nthe O O\nview O O\nfunction O O\n's O O\nid Name Name\nparameter O O\noptional O O\n, O O\nbut O O\nit O O\n's O O\nnot O O\noptional O O\nin O O\nthe O O\nurl O O\npattern O O\n. O O\n\nYou O O\nfirsty O O\nneed O O\nto O O\nrewrite O O\nyour O O\npattern O O\nas O O\n: O O\n\n=> O O\nthe O O\nwhole O O\n' O O\nid Name Name\n' O O\nsub-pattern O O\nis O O\noptional O O\n, O O\nbut O O\nif O O\nit O O\n's O O\nnot O O\nit O O\nmust O O\nmatch O O\none O O\nor O O\nmore O O\nnumerics O O\n. O O\n\nOnce O O\ndone O O\n, O O\nyou O O\ncan O O\nreverse O O\nthe O O\nurl O O\nby O O\nnot O O\npassing O O\nany O O\nof O O\nthe O O\nargs Name Name\nnor O O\nkwargs Name Name\narguments O O\n: O O\n\nor O O\nby O O\npassing O O\nan O O\nempty O O\nlist Name Name\n\nor O O\nby O O\npassing O O\nNone Name Name\n\nbut O O\nnot O O\nby O O\npassing O O\na O O\nlist Name Name\ncontaining O O\nNone Name Name\n. O O\n\nI O O\nhave O O\na O O\ncontroller O O\n\" O O\nfront O O\n\" O O\nand O O\nI O O\nwant O O\nonly O O\nfor O O\nthis O O\ncontroller O O\nto O O\nuse O O\na O O\ncustom O O\nerror O O\naction O O\n. O O\n\nHow O O\ncan O O\nI O O\ndo O O\nthis O O\n? O O\n\nI O O\ntried O O\nthis O O\nbut O O\nit O O\ndoes O O\nnot O O\nseems O O\nto O O\nwork O O\n\nI O O\nfound O O\nthis O O\nsolution O O\nto O O\ncatch O O\nthe O O\nException Name Name\n\nAll O O\nhttp O O\nsecurity O O\nis O O\napplied O O\nat O O\nstartup O O\n: O O\n\nDuring O O\nruntime O O\n, O O\nI O O\nam O O\ntrying O O\nto O O\nadd O O\nmore O O\nto O O\nit O O\n.. O O\n. O O\n\nWhen O O\nthat O O\nline O O\nis O O\nexecuted O O\n, O O\nit O O\nadds O O\nit O O\nto O O\nhttp.authorizeRequests()'s Name Name\nbut O O\n/bla O O\nis O O\nstill O O\naccessible O O\nby O O\n\" O O\nnon O O\nadmins O O\n\" O O\n\nWhen O O\nserver Name Name\nis O O\nrestarted O O\n, O O\nthis O O\nchange O O\ntakes O O\neffect O O\nbecause O O\nit O O\nis O O\nloading O O\nbla O O\nfrom O O\nthe O O\ndatabase O O\n. O O\n\nHow O O\ndo O O\nI O O\nmake O O\nthe O O\nsecurity O O\ntake O O\neffect O O\ninstantly O O\nwithout O O\nrestarting O O\nthe O O\nserver Name Name\n? O O\n\nYou O O\nare O O\ntrying O O\nto O O\ndynamicaly O O\nchange O O\na O O\nspring Name Name\nbean O O\nat O O\nruntime O O\nwhich O O\nis O O\nvery O O\nhard O O\nto O O\ndo O O\nunless O O\nyou O O\nuse O O\ntools O O\nlike O O\nspring-loaded Name Name\nor O O\nJRebel Name Name\n. O O\n\nThere O O\nis O O\na O O\nlot O O\nof O O\nSO Name Name\nabout O O\nit O O\n: O O\n\nUpdate O O\nspring Name Name\nbeans Name Name\ndynamically O O\n. O O\n\nIs O O\nit O O\npossible O O\n? O O\n\ndynamically O O\nchange O O\nspring Name Name\nbeans Name Name\n\nCan O O\nI O O\nreplace O O\na O O\nSpring Name Name\nbean Name Name\ndefinition O O\nat O O\nruntime O O\n? O O\n\nThe O O\nbest O O\napproach O O\n( O O\nin O O\nmy O O\nopinion O O\n) O O\nfor O O\nyour O O\nuse O O\ncase O O\nis O O\nto O O\nuse O O\nspring Name Name\nprofiles Name Name\n. O O\n\nDefine O O\na O O\nbean Name Name\nwith O O\nauthorisations O O\nfor O O\n/bla O O\nand O O\nanother Name Name\nbean O O\nwithout O O\n. O O\n\nThen O O\nuse O O\nthem O O\nin O O\ndifferent O O\nprofiles O O\n. O O\n\nsee O O\ndynamically O O\ndeclare O O\nbeans Name Name\nat O O\nruntime O O\nin O O\nSpring Name Name\n\nI O O\n'm O O\nlooking O O\nfor O O\na O O\nSphinx Name Name\ncharset_table Name Name\nthat O O\nis O O\nsuitable O O\nfor O O\nnatural O O\nlanguage O O\n\" O O\nalmost O O\nall O O\n\" O O\nlanguages O O\n. O O\n\nI O O\nunderstand O O\nthat O O\n\" O O\nalmost O O\nall O O\n\" O O\nis O O\nquite O O\na O O\nvague O O\ndefinition O O\n. O O\n\nSo O O\nthe O O\nrequirement O O\ncan O O\nbe O O\nrestated O O\nin O O\nsuch O O\na O O\nway O O\nthat O O\nthe O O\ncharset_table Name Name\nmust O O\nbe O O\nsuitable O O\nto O O\nat O O\nleast O O\nthe O O\nfollowing O O\nlanguage O O\ncodes O O\n: O O\n\nGiven O O\nthose O O\nrequirements O O\nwhat O O\nwould O O\nbe O O\na O O\nsuitable O O\ncharset_table Name Name\n? O O\n\nIf O O\none O O\nof O O\nMySQL Name Name\n's O O\ncollations O O\n, O O\nfor O O\nexample O O\nutf8_general_ci Name Name\n, O O\nwould O O\nbe O O\nsuitable O O\n( O O\neven O O\nif O O\nyou O O\ndo O O\nn't O O\nuse O O\nMySQL Name Name\n) O O\nor O O\nwould O O\nbe O O\na O O\ndecent O O\nstarting O O\npoint O O\nthat O O\nyou O O\ncan O O\nadapt O O\nthen O O\nyou O O\nmight O O\nfind O O\nthis O O\nuseful O O\n: O O\nhttp://thefsb.wordpress.com/2010/12/ O O\n\nThe O O\ndocs O O\nsays O O\nthat O O\nnew Name Name\n\" O O\ncreates O O\na O O\nmutable Name Name\nvector Name Name\nof O O\nthe O O\ngiven O O\nlength O O\n\" O O\nand O O\nunsafeNew Name Name\n\" O O\ncreates O O\na O O\nmutable Name Name\nvector Name Name\nof O O\nthe O O\ngiven O O\nlength O O\n. O O\n\nThe O O\nlength O O\nis O O\nnot O O\nchecked O O\n. O O\n\" O O\n\nHowever O O\nthis O O\nresolved O O\ngithub Name Name\nissue O O\nindicates O O\nthat O O\nunsafeNew Name Name\ndoes O O\nnot O O\nzero O O\nthe O O\nmemory O O\nwhile O O\nnew Name Name\ndoes O O\n. O O\n\nWhich O O\none O O\nis O O\nit O O\n? O O\n\nNo O O\n, O O\nnot O O\nin O O\ngeneral O O\n. O O\n\nIf O O\nyou O O\nclick O O\nthrough O O\nthe O O\nsource O O\nthis O O\nis O O\npretty O O\nclear O O\n: O O\n\nhttps://hackage.haskell.org/package/vector-0.11.0.0/docs/src/Data-Vector-Generic-Mutable.html#new O O\n\nnew Name Name\nis O O\nunsafeNew Name Name\nwith O O\nthe O O\naddition O O\nof O O\nbasicInitialize Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nuse O O\nthe O O\nJquery Name Name\nplugin O O\nSupersized Name Name\nand O O\ni O O\ncant O O\n. O O\n\nI O O\nam O O\nworking O O\nwith O O\nMagento Name Name\n. O O\n\ni O O\nhave O O\nsustitute O O\nall O O\nthe O O\n$ O O\nby O O\njQuery Name Name\ninside O O\nthe O O\nsupersized Name Name\nlibrary O O\n. O O\n\nAnd O O\ni O O\nhave O O\nadded O O\nthis O O\n: O O\njQuery.noConflict() Name Name\n; Name Name\njust O O\nbefore O O\nthe O O\nstart O O\nof O O\nthe O O\nfunction O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n, O O\ni O O\ncopy O O\nthe O O\nscript O O\nand O O\nthe O O\nhtml Name Name\n. O O\n\nI O O\ndont O O\nknow O O\nwhy O O\nit O O\ndoesnt O O\nwork O O\n, O O\ncan O O\nanyone O O\nhelp O O\nme O O\n? O O\n\nTry O O\n: O O\n\nNo O O\nneed O O\nto O O\ninclude O O\nboth O O\n: O O\n\nthey O O\nare O O\nthe O O\nsame O O\nthing O O\n\nNote O O\n\nI O O\ndo O O\nn't O O\nsee O O\nany O O\nfunction O O\nnamed O O\nsupersized() Name Name\nso O O\nhow O O\nit O O\nwill O O\nwork O O\n? O O\n\nyour O O\nprocess O O\nis O O\nwrong O O\n. O O\n\nRead O O\nabout O O\njQuery Name Name\nplugin O O\nmaking O O\nprocess O O\n. O O\n\nYou O O\nused O O\n\nand O O\n\nboth O O\nuse O O\nany O O\none O O\nbecause O O\nthe O O\nare O O\nsame O O\nand O O\nbe O O\nsure O O\nthat O O\n: O O\n\nyou O O\nadded O O\njQuery Name Name\nlibrary O O\nfirst O O\n\nFull O O\ncode O O\n\nI O O\n'm O O\ntrying O O\nto O O\nget O O\na O O\n‌ Name Name\nwith Name Name\ninnerHTML Name Name\n\nThe O O\noutput O O\nshould O O\nbe O O\n\nBut O O\nthe O O\noutput O O\nis O O\n: O O\n\nHow O O\ncan O O\nI O O\nget O O\nthe O O\n‌ Name Name\n? Name Name\n\nalert(document.getElementsByTagName('div')[0].innerHTML) Name Name\n\n<div>This Name Name\ndiv Name Name\ncontains Name Name\na Name Name\nzero-width&zwnj;non-joiner, Name Name\na Name Name\nnon-breaking&nbsp;space Name Name\n&amp; Name Name\nan Name Name\nampersand</div> Name Name\n\nFiddle Name Name\n: O O\nhttps://jsfiddle.net/yst1Lanv/ O O\n\nYou O O\ncan O O\nsearch O O\nfor O O\nit O O\nusing O O\nits O O\nunicode O O\n\\u200c Name Name\n. O O\n\nThen O O\nreplace O O\nit O O\nwith O O\n‌ Name Name\nstring Name Name\n. Name Name\n\nalert Name Name\n( Name Name\ndocument.getElementsByTagName Name Name\n('div')[0] Name Name\n.innerHTML.replace Name Name\n( Name Name\n/ Name Name\n\\u200c/g Name Name\n, Name Name\n' Name Name\n‌' Name Name\n) Name Name\n) Name Name\n\n<div>This Name Name\ndiv Name Name\ncontains Name Name\na Name Name\nzero-width&zwnj;non-joiner, Name Name\na Name Name\nnon-breaking&nbsp;space Name Name\n&amp; Name Name\nan Name Name\nampersand</div> Name O\n\nYour O O\ncharacter Name Name\nis O O\nin O O\nthe O O\nextracted O O\n( O O\ninnerHTML Name Name\n) O O\ntext O O\n, O O\njust O O\nnot O O\nencoded O O\nas O O\nits O O\nHTML Name Name\nentity O O\n. O O\n\nIf O O\nyou O O\nwant O O\nyou O O\ncan O O\nreplace O O\nthe O O\ncharacter Name Name\nwith O O\nits O O\nentity O O\n: O O\n\nalert Name Name\n( Name Name\ndocument.getElementsByTagName Name Name\n('div')[0] Name Name\n.innerHTML.replace Name Name\n(/‌/ Name Name\ng Name Name\n, Name Name\n' Name Name\n‌' Name Name\n) Name Name\n) Name Name\n; Name Name\n\n<div>This Name Name\ndiv Name Name\ncontains Name Name\na Name Name\nzero-width&zwnj;non-joiner, Name Name\na Name Name\nnon-breaking&nbsp;space Name Name\n&amp; Name Name\nan Name Name\nampersand</div> Name Name\n\nYong O O\nQuan O O\nposted O O\nsome O O\nnicer O O\ncode O O\nthan O O\nme O O\n, O O\nif O O\nyou O O\nwant O O\nyour O O\napp O O\nto O O\nbe O O\nmore O O\nmaintainable O O\nuse O O\nthe O O\nunicode O O\n. O O\n\nMy O O\nregex O O\nabove O O\nis O O\npretty O O\nconfusing O O\n, O O\nthis O O\nis O O\neasier O O\nto O O\nread O O\n: O O\n\nI O O\nhave O O\na O O\ncase O O\nwhere O O\nI O O\nneed O O\nto O O\ncollect O O\nsales O O\nstatistics O O\nfrom O O\na O O\ntable Name Name\nwith O O\nlots O O\nof O O\naggregated O O\ndata O O\n. O O\n\nThe O O\ntable O O\nhas O O\na O O\nfew O O\nmillion O O\nentries O O\n, O O\nand O O\nthe O O\ndatabase O O\nitself O O\nis O O\naround O O\n22Gb O O\n. O O\n\nPlenty O O\nof O O\ndata O O\nto O O\nplay O O\nwith O O\n! O O\n\nI O O\nhave O O\nthis O O\nworking O O\nquery O O\n, O O\nbut O O\nI O O\nfeel O O\nI O O\nshould O O\ndo O O\nthis O O\nbetter O O\n- O O\nand O O\nit O O\nis O O\nalso O O\nvery O O\nslow O O\n. O O\n\nI O O\n'm O O\nusing O O\nPHP Name Name\nwith O O\nsqlsrv Name Name\nextension O O\non O O\nCentOS Name Name\n7 Name Name\nto O O\nconnect O O\nto O O\na O O\nMSSQL Name Name\ndatabase O O\n( O O\nERP O O\nsystem O O\n) O O\n. O O\n\nMy O O\nphp Name Name\nvariables O O\nin O O\nthis O O\nquery O O\nis O O\nset O O\nup O O\nlike O O\nthis O O\n: O O\n\nSo O O\n, O O\nas O O\nyou O O\nmay O O\nhave O O\nguessed O O\nalready O O\n, O O\nI O O\n'm O O\ncollecting O O\nsales O O\nstatistics O O\nfor O O\na O O\ngiven O O\ncustomer O O\nfor O O\neach O O\nmonth O O\nof O O\nthe O O\nyear Name Name\n2016 Name Name\nand O O\n2015 Name Name\n. O O\n\nNote O O\nthat O O\nthe O O\nquery O O\nworks O O\nwell O O\n, O O\ngiving O O\nme O O\nthe O O\nresult O O\ni O O\nexpect O O\n- O O\nbut O O\nit O O\nis O O\ntoo O O\nslow O O\non O O\ncustomers O O\nwith O O\nmany O O\norders/transactions O O\n. O O\n\nAny O O\npointers O O\non O O\nhow O O\nto O O\nspeed O O\nthis O O\nup O O\n? O O\n\nThank O O\nyou O O\nvery O O\nmuch O O\nfor O O\nyour O O\ntime O O\n! O O\n\nYour O O\nquery O O\nshould O O\nbe O O\nusing O O\nconditional O O\naggregation O O\n: O O\n\nSubqueries O O\nshould O O\nnot O O\nbe O O\nnecessary O O\n. O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\nWebApi Name Name\naction O O\nthat O O\ndeletes O O\nan O O\norder O O\nfrom O O\nthe O O\nback-end O O\ndatabase O O\n, O O\nonly O O\nfor O O\nusers Name Name\nthat O O\nare O O\nin O O\nthe O O\nAdmin Name Name\nand O O\nOrder Name Name\nroles O O\n. O O\n\nHowever O O\n, O O\nif O O\nthe O O\nuser Name Name\nis O O\nalso O O\nin O O\nthe O O\nReadonly Name Name\nrole O O\nthe O O\naction O O\nreturns O O\na O O\nHTTP O O\n403 O O\nForbidden O O\nresponse O O\n. O O\n\nWhat O O\nI O O\n'd O O\nlike O O\nto O O\nknow O O\nis O O\nit O O\npossible O O\nto O O\nprevent O O\nactions O O\nfrom O O\nbeing O O\nexecuted O O\nif O O\nusers O O\nare O O\nin O O\nspecific O O\nroles O O\nso O O\nthat O O\nI O O\ndo O O\nnot O O\nhave O O\nto O O\nput O O\nif(User.IsInRole(\"Readonly\")) Name Name\n{ Name Name\nreturn Name Name\nForbidden() Name Name\n; Name Name\n} Name Name\nat O O\nthe O O\nstart O O\nof O O\nall O O\ndatabase O O\nupdate-able O O\naction O O\nmethods O O\n, O O\ne.g O O\n. O O\n\nThe O O\nNotAuthorized Name Name\naction O O\nfilter O O\nwill O O\nreturn O O\na O O\nHTTP O O\n403 O O\nForbidden O O\nresponse O O\nif O O\nthe O O\nuser O O\nis O O\nin O O\nthe O O\nReadonly Name Name\nrole O O\n. O O\n\nIs O O\nthis O O\npossible O O\n? O O\n\nThis O O\nis O O\nthe O O\ncode O O\nto O O\nimplement O O\na O O\nreverse O O\nof O O\nthe O O\n[ Name Name\nAuthorize() Name Name\n] Name Name\nattribute O O\nand O O\nforbid O O\nusers O O\nfrom O O\nexecuting O O\nMVC Name Name\nWebApi Name Name\nactions O O\nif O O\nthey O O\nare O O\na O O\nmember O O\nof O O\none O O\nor O O\nmore O O\nroles O O\n. O O\n\nTo O O\nuse O O\nthis O O\nfilter O O\nattribute O O\nsimply O O\ndecorate O O\nany O O\nactions O O\nthat O O\nyou O O\ndo O O\nn't O O\nwant O O\nusers O O\nto O O\nexecute O O\nif O O\nthey O O\n're O O\na O O\nmember O O\nof O O\na O O\nrestricted O O\nrole O O\n, O O\ne.g O O\n. O O\n\nif O O\nthe O O\nuser O O\nis O O\npart O O\nof O O\na O O\nread-only O O\nrole O O\nthey O O\nnot O O\npermitted O O\nto O O\nupdate O O\nthe O O\ndatabase O O\n: O O\n\nI O O\nhave O O\na O O\nproblem O O\nsaving O O\na O O\none O O\nto O O\nmany O O\nself-reference O O\nrelationship O O\n, O O\nboth O O\nparent O O\nand O O\nchildren O O\nare O O\nsaved O O\nproperly O O\non O O\nthe O O\ndatabase O O\n, O O\nbut O O\nIm O O\ngetting O O\nparent_id Name Name\nnull Name Name\nfor O O\nthe O O\nchildren O O\n. O O\n\nI O O\nfolloed O O\nthe O O\ndoctrine Name Name\nexample O O\n.. O O\n. O O\nbut O O\nno O O\nidea O O\n\n} Name Name\n\nand O O\nmy O O\ncontroller O O\nhere O O\n: O O\n\nI O O\nreally O O\ndont O O\nknow O O\nwhat O O\nim O O\ndoing O O\nwrong O O\n\nYou O O\nneed O O\nto O O\npersist O O\nALL O O\nof O O\nyour O O\nentities O O\n. O O\n\nAnd O O\nafter O O\nrunning O O\n( O O\nassuming O O\nyou O O\nuse O O\ndoctrine Name Name\n) O O\n\nYour O O\nwill O O\nhave O O\na O O\nfunction O O\nnamed O O\n\" O O\nCategory->addChildren Name Name\n\" O O\nwhich O O\nshould O O\nbe O O\nused O O\nto O O\nadd O O\nchildren O O\nto O O\nan O O\nexisting O O\ncategory O O\nentity O O\n. O O\n\nTry O O\nthis O O\n: O O\n\nHave O O\nyou O O\ntried O O\nout O O\nDoctrine Name Name\nExtensions Name Name\n, O O\nparticularly O O\nthe O O\ntree Name Name\nextension O O\n? O O\n\nIt O O\nmakes O O\nwork O O\nlike O O\nthis O O\nextremely O O\neasy O O\n. O O\n\nI O O\nhave O O\nbeen O O\nworking O O\non O O\na O O\nsimple O O\nLWJGL Name Name\npractice O O\nproject O O\nfor O O\na O O\nbit O O\nand O O\njust O O\nrecently O O\nstumbled O O\ninto O O\na O O\nnew O O\nissue O O\n. O O\n\nNow O O\nwith O O\nevery O O\nproject O O\ni O O\ndue O O\ni O O\nsave O O\nworking O O\nbackups O O\nin O O\nmultiple O O\nplaces O O\n. O O\n\nI O O\nwas O O\nrunning O O\na O O\nWindows Name Name\n8.1 Name Name\nOS O O\nand O O\nrecently O O\nupgraded O O\nto O O\nWindows Name Name\n10 Name Name\nand O O\nsuddenly O O\nall O O\nof O O\nmy O O\nbackups O O\nand O O\ncurrent O O\nprogram O O\nhave O O\nthe O O\nrendering O O\nerror O O\nas O O\nseen O O\nbelow O O\n. O O\n\nI O O\n've O O\ntried O O\nto O O\nrun O O\nmy O O\nprogram O O\non O O\na O O\nwindows Name Name\n8.1 Name Name\nOS O O\nand O O\nit O O\nworks O O\nfine O O\nthere O O\n. O O\n\nIs O O\nthere O O\nsome O O\nnew O O\nwindows Name Name\ndriver Name Name\nupdate O O\nthat O O\ncould O O\nbe O O\ncausing O O\nthis O O\nrendering O O\nissue O O\n? O O\n\nOr O O\nis O O\nthere O O\nsome O O\nincompatibility O O\nwith O O\nwindows Name Name\n10 Name Name\nand O O\nLWJGL Name Name\ni O O\nhav O O\nn't O O\nbeen O O\nable O O\nto O O\nfind O O\nout O O\nabout O O\n? O O\n\nTry O O\nthis O O\n: O O\n\nbefore O O\nyou O O\nrender O O\nany O O\nobjects O O\ninto O O\nyour O O\nworld O O\n, O O\nmake O O\nsure O O\nyou O O\nare O O\nusing O O\nthe O O\ninbuilt O O\ndepth O O\ntesting O O\n, O O\nthis O O\ncan O O\nbe O O\ndone O O\nby O O\nusing O O\nthis O O\nline O O\nof O O\ncode O O\n: O O\n\nGL11.glEnable(GL11.GL_DEPTH_TEST) Name Name\n; Name O\n\nThis O O\nshould O O\nwork O O\nfor O O\nyou O O\n, O O\nas O O\nit O O\nis O O\nforgotten O O\nin O O\nmost O O\ncases O O\nthat O O\nthis O O\nhappens O O\n! O O\n\n-Kore O O\n\nEDIT O O\n: O O\n\nAlso O O\ndont O O\nforget O O\nto O O\nclear O O\nthe O O\nbuffer Name Name\naswell O O\n! O O\n! O O\n\nGL11 Name Name\n. Name Name\nglClear(GL11 Name Name\n. Name Name\nGL_COLOR_BUFFER_BIT|GL11 Name Name\n. Name Name\nGL_DEPTH_BUFFER_BIT Name Name\n); Name Name\n\nFirstly O O\n, O O\nI O O\nknow O O\nLocationManager Name Name\ndoes O O\nn't O O\nhave O O\nto O O\nbe O O\ncalled O O\nin O O\nan O O\nAsyncTask Name Name\nas O O\nit O O\n's O O\nalready O O\nnon O O\nUI O O\nblocking O O\n:) O O\n\nI O O\nhave O O\nan O O\nactivity O O\nwhich O O\n\n1 O O\n. O O\nGets O O\nthe O O\nusers O O\ncurrent O O\nlocation O O\n\n2 O O\n. O O\nCalls O O\na O O\nwebservice O O\nto O O\nretrieve O O\na O O\nlist O O\nof O O\nspecific O O\nPOIs O O\naround O O\nthat O O\nlocation O O\n. O O\n\nThe O O\nuser O O\ncan O O\nchoose O O\nto O O\nview O O\nthe O O\nresults O O\nas O O\nmap Name Name\nor O O\nlist Name Name\nusing O O\na O O\nTabActivity Name Name\n. O O\n\nBearing O O\nthis O O\nin O O\nmind O O\nthe O O\nAsyncTask Name Name\nto O O\nget O O\nusers O O\nlocation O O\nand O O\ncall O O\nto O O\nwebservice O O\nis O O\nmanaged O O\nby O O\nthe O O\nTabActivity Name Name\nview O O\nrather O O\nthan O O\neither O O\nof O O\nthe O O\ndocked O O\nviews O O\n. O O\n\nSo O O\nI O O\nwant O O\nthe O O\nTabActivity Name Name\nto O O\nstart O O\nan O O\nAsyncTask Name Name\nwhich O O\nfirst O O\ngets O O\nthe O O\nusers O O\nlocation O O\n, O O\nthen O O\ncalls O O\nthe O O\nwebservice O O\n. O O\n\nA O O\nprogress O O\ndialog Name Name\nprevents O O\nswitching O O\nviews O O\nusing O O\nthe O O\ntabs O O\nduring O O\nthis O O\nprocess O O\n. O O\n\nIt O O\n's O O\npretty O O\nmuch O O\nall O O\nworking O O\napart O O\nfrom O O\ngetting O O\nthe O O\nusers O O\nlocation O O\nfrom O O\nthe O O\nAsyncTask Name Name\n. O O\n\nThe O O\nwebservice O O\ncode O O\nis O O\nwritten O O\n, O O\nthe O O\nmapping O O\nand O O\noverlay O O\ncode O O\nis O O\nwritten O O\n, O O\nthe O O\ntask O O\nprogress O O\ndialog Name Name\ncopes O O\nwith O O\norientation O O\nchanges O O\n. O O\n\nThe O O\nfocus O O\non O O\nlocation O O\nis O O\nspeed O O\nrather O O\nthan O O\naccuracy O O\n. O O\n\nIf O O\nthe O O\nuser O O\nchooses O O\nto O O\nview O O\nresults O O\non O O\nthe O O\nmapview Name Name\nthen O O\nI O O\nwill O O\nprovide O O\na O O\n' O O\nMy O O\nlocation O O\n' O O\nbutton Name Name\nwhich O O\nwill O O\nenable O O\na O O\nmore O O\naccurate O O\nlocation O O\nto O O\nbe O O\nobtained O O\n. O O\n\nI O O\njust O O\nwant O O\nto O O\ninitially O O\nget O O\na O O\nrough O O\nlocation O O\nand O O\nreturn O O\nthe O O\nsearch O O\nresults O O\nquickly O O\n. O O\n\nMaybe O O\nI O O\n'm O O\ngoing O O\nabout O O\nthis O O\nthe O O\nwrong O O\nway O O\n. O O\n\nMaybe O O\nI O O\nshould O O\ndisplay O O\nthe O O\nmap Name Name\nview O O\n, O O\nlet O O\nthe O O\nmap Name Name\nactivity O O\nfind O O\nthe O O\ncurrent O O\nlocation O O\n, O O\nthen O O\ncall O O\njust O O\nthe O O\nwebservice O O\nin O O\nthe O O\nasync Name Name\n- O O\nbut O O\nthen O O\nwhat O O\nif O O\nthe O O\nuser O O\ntaps O O\nthe O O\nlist O O\nview O O\ntab O O\nduring O O\nthe O O\nlocation O O\nphase O O\n? O O\n\nI O O\nwas O O\nalso O O\ngoing O O\nto O O\nallow O O\nthe O O\nuser O O\nto O O\nspecify O O\ntheir O O\ndefault O O\nview O O\n- O O\nsome O O\npeople O O\nmay O O\nprefer O O\na O O\nlist O O\nto O O\na O O\nmap O O\n. O O\n\nIn O O\nthis O O\ncase O O\nI O O\nwould O O\nhave O O\na O O\nlistview O O\nwhich O O\nhad O O\nto O O\nretrieve O O\nthe O O\nlocation O O\n. O O\n\nThanks O O\nfor O O\nany O O\nadvice O O\n\nMartin O O\n. O O\n\nI O O\nsussed O O\nit O O\n. O O\n\nThe O O\nproblem O O\nI O O\nwas O O\nhaving O O\nwas O O\nthat O O\nthe O O\nLocationListener Name Name\nwas O O\nnot O O\nbeing O O\ncalled O O\nin O O\nthe O O\nAsyncTask Name Name\n. O O\n\nThe O O\nreason O O\nfor O O\nthis O O\nwas O O\nthat O O\nalthough O O\nI O O\n'd O O\ncreated O O\nand O O\nprepared O O\na O O\nlopper O O\nin O O\nthe O O\nthread O O\nI O O\nhad O O\nn't O O\ncalled O O\nLooper.Loop() Name Name\n\nI O O\nstart O O\nthe O O\nrequestLocationUpdates Name Name\n, O O\nkick O O\noff O O\na O O\ntimer O O\n. O O\n\nEither O O\nthe O O\nlocationmanager Name Name\nresponds O O\nwith O O\na O O\nlocation O O\n, O O\nor O O\nthe O O\ntimer O O\nexpires O O\n. O O\n\nAt O O\nthis O O\npoint O O\nI O O\ncall O O\nlooper.quit() Name Name\nto O O\nensure O O\nthings O O\nreturn O O\nto O O\nnormal O O\n. O O\n\nSeems O O\nto O O\nbe O O\nworking O O\n. O O\n\nYou O O\nalso O O\nhave O O\nto O O\nremember O O\nto O O\nrespond O O\nto O O\nthe O O\nback O O\nbutton Name Name\netc O O\n, O O\ncancelling O O\nthe O O\ntimer O O\nand O O\nlooper O O\nif O O\nthe O O\nAsyncTask Name Name\nis O O\ncancelled O O\n. O O\n\nI O O\ncurrently O O\nhave O O\nthe O O\ncode O O\nbelow O O\nto O O\nload O O\nin O O\na O O\nuser O O\n's O O\nprofile O O\npicture O O\nin O O\nmy O O\niOS Name Name\napp O O\n. O O\n\nHowever O O\n, O O\nthis O O\nis O O\na O O\nrewrite O O\nby O O\nme O O\nto O O\nload O O\nit O O\nfrom O O\nan O O\nurl O O\n. O O\n\nThe O O\nold O O\ncode O O\nhad O O\nthis O O\nUIImageView Name Name\n* Name Name\nimageView Name Name\n= Name Name\n[ Name Name\n[ Name Name\nUIImageView Name Name\nalloc Name Name\n] Name Name\ninitWithFrame:CGRectMake(0,40,100,100) Name Name\n] Name Name\n; Name Name\nso O O\nthat O O\nthe O O\nimage Name Name\nwould O O\nn't O O\nbe O O\ntoo O O\nlarge O O\n. O O\n\nHow O O\ncan O O\nI O O\nincorporate O O\nthat O O\ninto O O\nmy O O\ncode O O\n? O O\n\nAnd O O\nchanging O O\nhttp://placehold.it/250x250 Name Name\nto O O\nhttp://placehold.it/100x100 Name Name\nis O O\nnot O O\nan O O\noption O O\n, O O\nsince O O\nthat O O\nis O O\njust O O\na O O\nplaceholder O O\n. O O\n\nUse O O\nUIImageView Name Name\n* Name Name\nimageView Name Name\n= Name O\n[ Name Name\n[ Name Name\nUIImageView Name Name\nalloc Name Name\n] Name Name\ninitWithFrame:CGRectMake(0,40,100,100) Name Name\n] Name Name\n; Name Name\n? O O\n\nYou O O\ncan O O\nset O O\nthe O O\nimage Name Name\nlater O O\nusing O O\n\nAlso O O\n, O O\nyou O O\nshould O O\nprobably O O\ntake O O\nout O O\n\nimageView.layer.rasterizationScale Name Name\nand O O\nimageView.layer.shouldRasterize Name Name\n, O O\n\nyou O O\nprobably O O\ndo O O\nn't O O\nneed O O\nthem O O\n. O O\n\non O O\na O O\nside O O\nnote O O\n\n( O O\n+ Name Name\n[ Name Name\nNSData Name Name\ndataWithContentsOfURL Name Name\n: Name Name\n] Name Name\nshould O O\nNEVER O O\nbe O O\nused O O\nin O O\nsuch O O\ncase. O O\n. O O\n) O O\n\nWhile O O\nuploading O O\ndoc Name Name\nfile O O\n( O O\nexample Name Name\ntest.doc Name Name\n) O O\nto O O\nserver Name Name\n( O O\nunix Name Name\nmachine O O\n) O O\n, O O\nI O O\nam O O\nusing O O\napache Name Name\ncommons Name Name\njar Name Name\nwhich O O\ngives O O\nme O O\nFormFile Name Name\ninstance O O\nat O O\nserver Name Name\nside O O\nwhich O O\nis O O\nhaving O O\nall O O\nthe O O\ndata O O\nin O O\nbyte Name Name\narray Name Name\nform O O\n. O O\n\nWhen O O\nI O O\nwrite O O\nthe O O\nsame O O\nbyte Name Name\narray Name Name\nto O O\nresponse O O\noutput O O\nstream O O\nand O O\nsend O O\nit O O\nto O O\nbrowser Name Name\nto O O\ndownload O O\nthe O O\nsame O O\nfile O O\n, O O\nweird O O\ncontent O O\nis O O\nshown O O\n. O O\n\nI O O\nget O O\none O O\npop Name Name\nup Name Name\nto O O\nselect O O\nencoding O O\nin O O\nwhich O O\ni O O\nwould O O\nlike O O\nto O O\nsee O O\nthe O O\ndata O O\nand O O\nweird O O\ndata O O\nis O O\nshown O O\nin O O\nthat O O\ndoc.The Name Name\ncontent O O\ntype O O\nis O O\nset O O\nas O O\nfollows O O\n: O O\n\nI O O\nthink O O\nthat O O\nwhile O O\nwriting O O\ndata O O\nto O O\noutput O O\nstream O O\n, O O\nmeta O O\ndata O O\nrelated O O\nto O O\ndoc Name Name\nfile O O\nis O O\nalso O O\nwritten O O\nwhich O O\ncauses O O\nthis O O\nissue O O\n. O O\n\nIs O O\nthere O O\nanything O O\nspecific O O\nfor O O\ndoc Name Name\nor O O\ndocx Name Name\nfile O O\nformats O O\n, O O\nwhich O O\nneeds O O\nto O O\nbe O O\ndone O O\nso O O\nfile O O\nis O O\nin O O\nproper O O\nformat O O\nand O O\ni O O\ncan O O\nsee O O\ncorrect O O\ndata O O\nwhich O O\ni O O\nuploaded O O\nor O O\nI O O\nam O O\nmissing O O\nsomething O O\n? O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\nappreciated O O\n. O O\n\nThanks O O\nin O O\nAdvance O O\n. O O\n\nLet O O\nme O O\nknow O O\nif O O\nmore O O\ninfo O O\nis O O\nrequired O O\n. O O\n\nIt O O\nmay O O\nnot O O\nbe O O\na O O\nfix O O\nfor O O\nyour O O\nproblem O O\nbecause O O\nI O O\nhave O O\nnot O O\nrun O O\nany O O\ntest O O\naround O O\n. O O\n\nBut O O\nto O O\ncheck O O\nthe O O\ncorrect O O\nmime O O\ntypes O O\nplease O O\nrefer O O\nto O O\nthis O O\nlink O O\n: O O\n\nhttps://technet.microsoft.com/en-us/library/ee309278(office.12).aspx O O\n\nUpdated O O\n: O O\n\nYou O O\ncan O O\nuse O O\nresponse O O\ntype O O\nas O O\nArrayBuffer Name Name\nand O O\nset O O\nthe O O\ncontent O O\nas O O\nBlob Name Name\n. O O\n\nOr O O\nthis O O\ncould O O\nwork O O\n\nThere O O\n's O O\na O O\nknown O O\nissue O O\nin O O\nMicrosoft Name Name\nwhich O O\nprovide O O\nworkaround O O\nfor O O\nthe O O\n\nEncoding O O\nPop Name Name\nUp Name Name\n\nMy O O\nquestion O O\nis O O\nquite O O\nsimple O O\n, O O\nif O O\nI O O\ndeclare O O\nan O O\nIF Name Name\nstatement O O\nwith O O\na O O\nseries O O\nof O O\nOR Name Name\nclauses O O\nwill O O\nJavaScript Name Name\nread O O\nall O O\nof O O\nthe O O\nORs Name Name\nor O O\nstop O O\nat O O\nthe O O\nfirst O O\none O O\nthat O O\nis O O\nsatisfied O O\n? O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nStops O O\nat O O\nthe O O\nfirst O O\none O O\n. O O\n\nIt O O\n's O O\ncalled O O\nshort-circuiting O O\n\nhttp://en.wikipedia.org/wiki/Short-circuit_evaluation O O\n\nhttps://developer.mozilla.org/en/JavaScript/Reference/Operators/Logical_Operators O O\n\nI O O\nhave O O\na O O\nlist Name Name\nof O O\ndata O O\nthe O O\ndata O O\nis O O\nall O O\nin O O\none O O\ncolumn Name Name\nfor O O\nexample O O\n\nand O O\nI O O\nwant O O\nit O O\nto O O\nmove O O\nto O O\n\nSo O O\nthe O O\nformula O O\nwill O O\nlook O O\nlike O O\n\nWithout O O\ntyping O O\nthe O O\nwhole O O\nthing O O\nout O O\nis O O\nthere O O\na O O\nway O O\nto O O\ndo O O\nthis O O\n? O O\n\nPut O O\nthis O O\nin O O\nthe O O\nupper O O\nleft O O\ncell Name Name\nof O O\nthe O O\noutput O O\nregion O O\n: O O\n\nAnd O O\ncopy/drag O O\nover O O\none O O\ncolumn Name Name\nand O O\ndown O O\nsufficient O O\nto O O\nget O O\n0s Name Name\n\nPick O O\nsome O O\ncell Name Name\nand O O\nenter O O\n: O O\n\nand O O\ncopy O O\nboth O O\nacross O O\nand O O\ndown O O\n: O O\n\nI O O\nhave O O\na O O\nset O O\nof O O\nzipcodes O O\nand O O\na O O\ndata O O\npoint O O\ncorresponding O O\nto O O\neach O O\n. O O\n\nI O O\nhave O O\nto O O\nplot O O\na O O\nchloropleth Name Name\nusing O O\nthese O O\ndata O O\n. O O\n\nHow O O\ndo O O\nI O O\nachieve O O\nthis O O\nin O O\nR Name Name\n. O O\n\nI O O\nhave O O\ntried O O\nusing O O\nggplot Name Name\nand O O\nR Name Name\n. O O\n\nthe O O\nway O O\ni O O\ntry O O\nit O O\nis O O\nI O O\nput O O\nthe O O\ndata O O\nin O O\nthe O O\nframe O O\n, O O\nconvert O O\nthe O O\nzipcodes O O\nto O O\nlat O O\nlong Name Name\n, O O\nand O O\nthen O O\ntry O O\nto O O\nplot O O\n. O O\n\nSo O O\nfar O O\nI O O\nhavent O O\nbeen O O\nable O O\nto O O\nachieve O O\nthis O O\n. O O\n\nAny O O\ndirection O O\n/ O O\ncode O O\nsamples O O\nwould O O\nbe O O\nhelpful O O\n\nWhile O O\nwriting O O\nmy O O\ncode O O\nfor O O\na O O\ncomputer O O\ndating O O\nassignment O O\nin O O\nwhich O O\nwe O O\nsee O O\nthe O O\ncompatibility O O\nof O O\nan O O\narray Name Name\nof O O\nfour O O\nobjects O O\n, O O\nmy O O\ncode O O\nprinted O O\nstrangely O O\n. O O\n\n( O O\nEclipse Name Name\ndid O O\nn't O O\ngive O O\nme O O\nan O O\nerror/warning O O\nat O O\nfirst O O\n) O O\n. O O\n\nCode O O\n: O O\n\nWhen O O\nI O O\ntried O O\nto O O\nprint O O\nthings O O\nout O O\n, O O\nthey O O\nappeared O O\nlike O O\nthis O O\n: O O\n\nFit O O\nbetween O O\nElizabeth O O\nBennett O O\nand O O\nElizabeth O O\nBennett O O\n: O O\n90.0 Name Name\n\nFit O O\nbetween O O\nElizabeth O O\nBennett O O\nand O O\nFitzwilliam O O\nDarcy O O\n: O O\n90.55 Name Name\n\nFit O O\nbetween O O\nElizabeth O O\nBennett O O\nand O O\nRomeo O O\nMontague O O\n: O O\n90.3 Name Name\n\nFit O O\nbetween O O\nElizabeth O O\nBennett O O\nand O O\nJuliet O O\nCapulet O O\n: O O\n90.0 Name Name\n\nso O O\n....................................................... O O\non O O\nso O O\nforth O O\n. O O\n\nThere O O\nwas O O\na O O\n\" Name Name\n9 Name Name\n\" Name Name\nappearing O O\nin O O\nfront O O\nof O O\nmy O O\nnumbers O O\n. O O\n\nI O O\nfound O O\nthe O O\nproblem O O\nlater O O\n: O O\nI O O\nhad O O\ntwo O O\nconcatenating O O\noperators O O\n(\"+\") Name Name\nafter O O\nmy O O\n\" Name Name\n\\n Name Name\n\" Name Name\n. O O\n\nSo O O\nI O O\nchanged O O\nmy O O\ncode O O\n, O O\ndeleting O O\nthe O O\nextraneous O O\n\" Name Name\n+ Name Name\n\" Name Name\n. O O\n\nNew O O\ncode O O\n: O O\n\nNew O O\ncorrect O O\nrun O O\n: O O\n\nFit O O\nbetween O O\nElizabeth O O\nBennett O O\nand O O\nElizabeth O O\nBennett O O\n: O O\n0.0 Name Name\n\nFit O O\nbetween O O\nElizabeth O O\nBennett O O\nand O O\nFitzwilliam O O\nDarcy O O\n: O O\n0.55 Name Name\n\nFit O O\nbetween O O\nElizabeth O O\nBennett O O\nand O O\nRomeo O O\nMontague O O\n: O O\n0.3 Name Name\n\nFit O O\nbetween O O\nElizabeth O O\nBennett O O\nand O O\nJuliet O O\nCapulet O O\n: O O\n0.0 Name Name\n\nso O O\n.............................................. O O\non O O\nso O O\nforth O O\n. O O\n\nThough O O\nI O O\n've O O\nthankfully O O\nfound O O\nmy O O\nproblem O O\n, O O\nI O O\nwant O O\nto O O\nknow O O\nwhat O O\nexactly O O\nis O O\ncausing O O\nthis O O\nto O O\nhappen O O\n. O O\n\nIs O O\nthere O O\nsome O O\nsort O O\nof O O\neclipse Name Name\nshorthand O O\nthat O O\nleads O O\nto O O\nthe O O\n\" Name Name\n9 Name Name\n\" Name Name\n' O O\ns O O\nappearance O O\n? O O\n\nOr O O\nis O O\nthis O O\ndue O O\nto O O\nsome O O\neclipse Name Name\nbug O O\n? O O\n\nI O O\n'm O O\nstill O O\na O O\nbeginner O O\nat O O\njava Name Name\n, Name Name\nso O O\nI O O\nca O O\nn't O O\nmake O O\na O O\nsolid O O\nconclusion O O\n. O O\n\nI O O\ntried O O\nmodifying O O\nmy O O\ncode O O\nslightly O O\nto O O\nsee O O\nhow O O\nEclipse Name Name\nwould O O\nreact O O\n( O O\nI O O\ndeleted O O\nthe O O\nspace O O\nbetween O O\nmy O O\noriginal O O\n\" Name Name\n+ Name Name\n+ Name Name\n\" Name Name\n) O O\n: O O\n\nEclipse Name Name\ngave O O\nme O O\nthis O O\nwarning O O\n: O O\n\nMultiple O O\nmarkers O O\nat O O\nthis O O\nline O O\n\nSyntax O O\nerror O O\non O O\ntoken O O\n\" O O\n++ Name Name\n\" O O\n, O O\n+ Name Name\n\nexpected O O\n\nInvalid O O\nargument O O\nto O O\noperation O O\n++ Name Name\n/ O O\n- Name Name\n- Name Name\n\nThis O O\nmakes O O\nsense O O\n, O O\nbecause O O\n++ Name Name\non O O\nits O O\nown O O\nis O O\nan O O\noperator O O\nof O O\nsorts O O\n. O O\n\nInterestingly O O\n, O O\nhowever O O\n, O O\nif O O\nI O O\nput O O\na O O\nspace O O\nbetween O O\nthe O O\n\" O O\n++ Name Name\n\" O O\n, O O\nthen O O\nthe O O\nwarning O O\ndisappears O O\n. O O\n\nI O O\ndid O O\nn't O O\npaste O O\nmy O O\nentire O O\ncode O O\nfor O O\nthe O O\nsake O O\nof O O\nreadability O O\n, O O\nbut O O\nif O O\nnecessary O O\n, O O\nI O O\ncan O O\nedit O O\nand O O\nadd O O\nit O O\nin O O\n. O O\n\nSome O O\nclarification O O\nregarding O O\nthis O O\nwould O O\nbe O O\nhelpful O O\n. O O\n\nThank O O\nyou O O\n. O O\n\nNo O O\n, O O\nit O O\n's O O\nnot O O\na O O\nbug O O\n. O O\n\nIt O O\n's O O\nunusual O O\n, O O\nbut O O\nit O O\n's O O\nnot O O\na O O\nbug O O\n. O O\n\nThe O O\nfirst O O\nthing O O\nto O O\ndo O O\nis O O\nsimplify O O\nthe O O\nexample O O\nmassively O O\n: O O\n\nResult O O\n: O O\n\nNow O O\nadmittedly O O\nI O O\n'm O O\nusing O O\nstrings Name Name\nfor O O\nboth O O\nstart Name Name\nand O O\nend Name Name\n, O O\nbut O O\ndue O O\nto O O\n+ Name Name\nbeing O O\nleft-associative O O\n, O O\nthat O O\ndoes O O\nn't O O\nmake O O\nany O O\ndifference O O\nhere O O\n. O O\n\n( O O\nIf O O\nstart Name Name\nwere O O\nan O O\ninteger Name Name\n, O O\nthe O O\nfirst O O\nbinary O O\n+ Name Name\noperator O O\nwould O O\nbe O O\ninteger Name Name\naddition O O\nin O O\nboth O O\ncases O O\n. O O\n) O O\n\nBasically O O\n, O O\nthe O O\nextra O O\n+ Name Name\nends O O\nup O O\nbeing O O\na O O\nunary Name Name\n+ Name Name\noperator O O\nwith O O\n' Name Name\n\\t Name Name\n' Name Name\nas O O\nthe O O\noperand O O\n. O O\n\nUnary O O\nnumeric O O\npromotion O O\nis O O\napplied O O\nto O O\nthe O O\nchar Name Name\n, O O\ngiving O O\nint Name Name\nas O O\na O O\nresult O O\n. O O\n\nSo O O\nthe O O\ncode O O\nbecomes O O\neffectively O O\n: O O\n\nwhich O O\nis O O\neffectively O O\n: O O\n\nwhich O O\nis O O\neffectively O O\n\n.. O O\n. O O\nat O O\nwhich O O\npoint O O\nit O O\n's O O\nhopefully O O\nclear O O\nwhy O O\nyou O O\n're O O\ngetting O O\nthe O O\noutput O O\nyou O O\nare O O\n. O O\n\nTo O O\navoid O O\naccidentally O O\nending O O\nup O O\ntreating O O\na O O\ncharacter Name Name\nas O O\nan O O\ninteger Name Name\n, O O\nit O O\n's O O\nprobably O O\nbest O O\nto O O\njust O O\nuse O O\nstrings Name Name\ninstead O O\n- O O\nat O O\nwhich O O\npoint O O\nthe O O\ncode O O\nwo O O\nn't O O\ncompile O O\nbecause O O\nthere O O\n's O O\nno O O\nunary Name Name\n+ Name Name\noperator O O\nfor O O\nString Name Name\n: O O\n\n. O O\n. O O\ngives O O\n: O O\n\nThe O O\nproblem O O\nis O O\nnot O O\njust O O\nwith O O\nthe O O\n+ Name Name\n+ Name Name\nin O O\nyour O O\ncode O O\n. O O\n\nBut O O\nit O O\n's O O\nalso O O\nwith O O\nthe O O\nfact O O\nthat O O\nyou O O\nare O O\nusing O O\nchar Name Name\n' Name Name\n\\t Name Name\n' Name Name\nand O O\nnot O O\nString Name Name\n\" Name Name\n\\t Name Name\n\" Name Name\n. O O\n\nSo O O\nwhen O O\nyou O O\nuse O O\nSystem.out.println Name Name\n( Name Name\n\" Name Name\nHello Name Name\n\" Name Name\n+ Name Name\n' Name Name\n\\t' Name Name\n) Name Name\n; Name Name\n, O O\nthe O O\n\\t Name Name\nis O O\ntaken O O\nas O O\na O O\ncharacter O O\nliteral O O\nand O O\nappended O O\nto O O\nthe O O\nstring Name Name\nas O O\n\\t Name Name\n. O O\n\nBut O O\nwhen O O\nyou O O\nuse O O\nSystem.out.println Name Name\n( Name Name\n\" Name Name\nHello Name Name\n\" Name Name\n+ Name Name\n+ Name Name\n' Name Name\n\\t' Name Name\n) Name Name\n; Name Name\n, O O\nit O O\nbecomes O O\neffectively O O\nSystem.out.println Name Name\n( Name Name\n\" Name O\nHello Name Name\n\" Name Name\n+ Name Name\n( Name Name\n+ Name Name\n' Name Name\n\\t' Name Name\n) Name Name\n) Name Name\n; Name Name\n. O O\n\nSo O O\nit O O\nis O O\ntreated O O\nas O O\nan O O\nint Name Name\nby O O\njava Name Name\n. O O\n\nYou O O\nonly O O\nassign O O\n+ Name Name\nand O O\n- Name Name\nsigns O O\nto O O\nints Name Name\n, O O\nnot O O\nchars Name Name\n. O O\n\nRemember O O\nyou O O\ncan O O\ndo O O\nint Name Name\ni Name Name\n= Name Name\n+2 Name Name\nor O O\n-2 Name Name\nor O O\n+ Name Name\n+ Name Name\n2 Name Name\n. O O\n\nAnd O O\nthe O O\nASCII O O\nvalue O O\nof O O\n\\t Name Name\nis O O\n9 Name Name\n. O O\n\nHence O O\nit O O\ngets O O\nappended O O\nto O O\nthe O O\nstring Name Name\nand O O\nget O O\n's O O\nprinted O O\nas O O\nHello9 Name Name\n. O O\n\nI O O\nhave O O\nthis O O\njQuery Name Name\nplugin O O\nhere O O\n: O O\n\nThat O O\nI O O\nuse O O\nlike O O\nso O O\n: O O\n\nThat O O\ndoes O O\nthe O O\njob O O\nfor O O\nrotating O O\nit O O\nvery O O\nnice O O\n, O O\nbut O O\nI O O\n'd O O\nlike O O\nto O O\nanimate O O\nthe O O\nrotation O O\nprocess O O\n, O O\nwhat O O\ncan O O\nbe O O\ndone O O\nto O O\nmake O O\nit O O\nhappen O O\nwith O O\nthe O O\ngiven O O\nplugin Name Name\n? O O\n\n( O O\nfyi O O\n: O O\nchanging O O\nanimate Name Name\n: Name Name\nfalse Name Name\nto O O\ntrue O O\ndoes O O\nn't O O\nenable O O\nit O O\n:) O O\n) O O\n\nThank O O\nyou O O\n. O O\n\nI O O\nhave O O\nadded O O\nMandrill Name Name\n's O O\napi Name Name\nto O O\nmy O O\nproject O O\nvia O O\ncomposer Name Name\n, O O\nand O O\nI O O\nhave O O\nalso O O\ninstalled O O\nit O O\nmanually O O\n( O O\nnot O O\nat O O\nthe O O\nsame O O\ntime O O\n) O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nuse O O\na O O\ntemplate O O\nthat O O\nI O O\ncreated O O\nin O O\nmy O O\nMandrill Name Name\naccount O O\n. O O\n\nI O O\n'm O O\npretty O O\nsure O O\nthere O O\n's O O\nnothing O O\nwrong O O\nwith O O\nmy O O\ncode O O\n. O O\n\nEven O O\nif O O\nthere O O\nis O O\n, O O\nit O O\n's O O\nnot O O\ncausing O O\nthe O O\nproblem O O\nthat O O\nI O O\n'm O O\nhaving O O\n. O O\n\nThe O O\nproblem O O\nis O O\nthe O O\nMandrill Name Name\nmethods O O\nare O O\nn't O O\nshowing O O\nup O O\n. O O\n\nWhen O O\nI O O\ntype O O\n\n.. O O\n. O O\nthese O O\nare O O\nmy O O\nfollowing O O\nchoices O O\n: O O\n\nNow O O\n, O O\nI O O\n'm O O\nnot O O\nsure O O\nwhat O O\nall O O\nthe O O\nmethods O O\nare O O\nsuppose O O\nto O O\nbe O O\n. O O\n\nI O O\ndo O O\nknow O O\nthat O O\none O O\nof O O\nthe O O\nmethods O O\nis O O\nsuppose O O\nto O O\nbe O O\nmessages O O\n. O O\n\nIf O O\nanyone O O\ncan O O\ngive O O\nme O O\nsome O O\ntrouble-shooting O O\nideas O O\n, O O\nit O O\nwould O O\nbe O O\ngreatly O O\nappreciated O O\n. O O\n\nI O O\n've O O\nbeen O O\nat O O\nit O O\nfor O O\n6 O O\nhours O O\nnow O O\n. O O\n\nI O O\nshould O O\nnote O O\n, O O\nwhen O O\nI O O\ncreated O O\nthe O O\nobject O O\n, O O\nI O O\nhad O O\nto O O\nuse O O\na O O\nforward O O\nslash O O\nin O O\norder O O\nfor O O\nmy O O\nproject O O\nto O O\nfind O O\nit O O\n.. O O\n. O O\n\nI O O\nonly O O\nbring O O\nthis O O\nup O O\nbecause O O\nI O O\ndid O O\nn't O O\nsee O O\nthis O O\nbeing O O\ndone O O\non O O\nevery O O\nsingle O O\nexample O O\nthat O O\nexist O O\nout O O\nin O O\nthe O O\nweb O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n, O O\n\nChris O O\nM O O\n. O O\n\nCheck O O\nthis O O\nlink O O\nhttps://mandrillapp.com/api/docs/messages.php.html O O\n. O O\n\nIts O O\nhas O O\nPHP Name Name\nlibrary O O\nspecific O O\nexamples O O\nof O O\neach O O\nAPI Name Name\n, O O\nlike O O\nfor O O\nexample O O\n: O O\n\nHope O O\nthis O O\nhelps O O\n, O O\n\nIve O O\nbeen O O\nfollowing O O\nthe O O\ntutorials O O\nfrom O O\nthis O O\nsite O O\nto O O\nget O O\nthe O O\nphone O O\nnumber O O\nof O O\na O O\ncontact O O\nin O O\nAndroid Name Name\n. O O\n\nThe O O\nissue O O\nI O O\nface O O\nis O O\nthat O O\n, O O\nI O O\ncannot O O\nseem O O\nto O O\nget O O\nthe O O\nlast O O\ncontact O O\nnumber O O\n. O O\n\nFor O O\nexample O O\n, O O\nif O O\nI O O\nhave O O\n3 O O\ncontacts O O\nsaved O O\nit O O\nshows O O\nthe O O\nnumbers O O\nof O O\nthe O O\nfirst O O\n2 O O\n. O O\n\nIm O O\nposting O O\nmy O O\ncode O O\nas O O\nwell O O\nif O O\nit O O\nhelps O O\nanyone O O\n. O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\nappreciated O O\n. O O\n\nThanks O O\n! O O\n\n== O O\n== O O\n== O O\n== O O\n== O O\n== O O\n== O O\n== O O\n== O O\n== O O\n== O O\n== O O\n== O O\n== O O\n\nEDIT O O\n: O O\nFor O O\nthose O O\ninterested O O\nbelow O O\nis O O\nthe O O\ncode O O\nthat O O\nworks O O\nfor O O\nme O O\n: O O\n\nHi O O\ntry O O\nthe O O\nfollowing O O\ncode O O\nto O O\nget O O\nall O O\ncontacts O O\n\nI O O\nam O O\ntrying O O\nto O O\ndraw O O\na O O\nborder Name Name\nthat O O\nlooks O O\nexactly O O\nlike O O\nthe O O\none O O\na O O\nListView Name Name\non O O\nWindows Name Name\n10 Name Name\nhas O O\n. O O\n\nI O O\nam O O\ndoing O O\nthis O O\nbecause O O\n, O O\nFixed3D Name Name\nlooks O O\nsunken O O\n, O O\nand O O\nFixedSingle Name Name\nlooks O O\ndifferent O O\nfrom O O\nthe O O\naforementioned O O\nborder Name Name\n. O O\n\nWith O O\nthe O O\nMagnifier Name Name\n, O O\nI O O\nfound O O\nout O O\nthat O O\nthe O O\nWindows Name Name\n10 Name Name\nborder Name Name\nis O O\ntwo-pixel O O\nwide O O\n. O O\n\nSo O O\n, O O\nmy O O\nidea O O\nwas O O\ncreate O O\na O O\ncustom O O\npanel Name Name\nthat O O\nhas O O\nno O O\nborders Name Name\nbut O O\ndraws O O\ntwo-pixel-wide Name Name\nrectangles Name Name\non O O\nits O O\nclient O O\narea O O\n, O O\nand O O\nfit O O\na O O\nchild Name Name\n, O O\nwhose O O\nborder Name Name\nis O O\nset O O\nto O O\nnone O O\n, O O\ninside O O\nthe O O\nrectangles Name Name\n. O O\n\nI O O\nhave O O\ntried O O\nthe O O\nfollowing O O\n, O O\nbut O O\nit O O\ndoes O O\nnot O O\nwork O O\nwell O O\nwith O O\nthe O O\nDesigner Name Name\n, O O\nnor O O\ndoes O O\nit O O\nwork O O\nat O O\nall O O\n. O O\n\nWhat O O\nis O O\nwrong O O\n? O O\n\nThe O O\ndescription O O\nof O O\nAffectedControl Name Name\nis O O\n\" O O\nGets O O\nthe O O\nchild O O\ncontrol O O\naffected O O\nby O O\nthe O O\nchange O O\n\" O O\n. O O\n\nBut O O\nweirdly O O\n, O O\nit O O\nwas O O\nactually O O\nthe O O\npanel Name Name\nitself O O\n. O O\n\nSo O O\nI O O\nchanged O O\nit O O\nlike O O\nthe O O\nfollowing O O\n. O O\n\nIt O O\nworks O O\n, O O\nbut O O\nthere O O\nis O O\nsome O O\nflickering O O\nwhen O O\nresizing O O\nthe O O\npanel Name Name\n, O O\nprobably O O\nbecause O O\nit O O\nis O O\nactually O O\ntwo O O\ncontrols O O\n, O O\nnot O O\none O O\nas O O\nthe O O\nnative O O\nborder Name Name\nis O O\n. O O\n\nI O O\nget O O\nfollowing O O\nerror O O\nmessage O O\nwhen O O\nI O O\ntry O O\nto O O\nload O O\nspecific O O\nentities O O\nto O O\nmy O O\nJSP Name Name\nform O O\n. O O\n\nThis O O\noccurs O O\nwhen O O\nI O O\ntry O O\nto O O\nload O O\nentities O O\nwhich O O\ntypes O O\nare O O\n\" O O\nUSER O O\n\" O O\n. O O\n\nSo O O\nhere O O\n's O O\nthe O O\nerror O O\nmessage O O\n: O O\n\nAccording O O\nto O O\nthis O O\nerror O O\nmessage O O\nthe O O\nproblem O O\nlies O O\nin O O\nat O O\ncom.mysite.bookingmeeting.dao.implementation.UserProfileDaoImpl.findAllUsers(UserProfileDaoImpl.java:47) O O\nand O O\nat O O\norg.apache.jsp.admin.ManageUsers_jsp._jspService(ManageUsers_jsp.java:133) O O\n. O O\n\nI O O\nhave O O\nchecked O O\nthose O O\ncodes O O\nin O O\nthose O O\nspecific O O\npages O O\nand O O\nthey O O\nworked O O\nbefore O O\nfine O O\nbut O O\nfor O O\nsome O O\nreasons O O\nnow O O\nit O O\nwo O O\nn't O O\nwork O O\n. O O\n\nThe O O\ncode O O\nfor O O\nmethod O O\nfindAllUsers() Name Name\nof O O\nUserProfileDaoImpl() Name Name\nclass O O\nis O O\nfollowing O O\n: O O\n\nAnd O O\ncode O O\nfor O O\nManageUsers.jsp Name Name\nis O O\nfollowing O O\n: O O\n\nI O O\nhave O O\ntested O O\nabove O O\nfile O O\nwithout O O\nDeleteUserForm.jspf Name Name\nand O O\nit O O\nworks O O\nwell O O\nwith O O\nno O O\nproblems O O\n, O O\nso O O\nthe O O\nmain O O\ncause O O\nis O O\nDeleteUserForm.jsp Name Name\nand O O\nhere O O\nthe O O\ncode O O\nof O O\nthis O O\nform O O\nis O O\nfollowing O O\n: O O\n\nThis O O\ncode O O\nalso O O\nworked O O\nbefore O O\nbut O O\nnow O O\nits O O\nnot O O\nworking O O\n. O O\n\nAny O O\nhelp O O\nis O O\nreally O O\nappreciated O O\n. O O\n\nI O O\nsolved O O\nthe O O\nproblem O O\nand O O\nI O O\nfound O O\nout O O\nthat O O\nI O O\ntried O O\nto O O\nset O O\nString Name Name\ntype O O\nvariable O O\nto O O\nUserProfile Name Name\ntype O O\nvariable O O\n. O O\n\nI O O\nhave O O\na O O\nclass O O\n( O O\nSpotDetails Name Name\n) O O\nwhich O O\nincludes O O\na O O\nfragment O O\nwhich O O\nis O O\ndrawn O O\nprogramically O O\n. O O\n\nUntill O O\nnow O O\ni O O\n've O O\nhad O O\nthe O O\nfragment O O\ndrawing O O\nclass O O\n( O O\nWindRose Name Name\n) O O\nas O O\na O O\nchild O O\nof O O\nthe O O\nmain O O\nclass O O\n. O O\n\nWhat O O\ni O O\nwould O O\nlike O O\nto O O\ndo O O\nis O O\nto O O\nmove O O\nthe O O\nWindRose Name Name\nclass O O\ninto O O\na O O\nAsynTask Name Name\nfor O O\nbetter O O\nUser O O\nExperience O O\n. O O\n\nNow O O\nthe O O\nApplication O O\nis O O\nsuffering O O\nfrom O O\ntoo O O\nmuch O O\nwork O O\non O O\nthe O O\nmain O O\nthread O O\n. O O\n\nCode O O\nto O O\nimplement O O\nthe O O\nWindRose Name Name\n: O O\n\nWindRose Name Name\ncode O O\n: O O\n\nIm O O\nnot O O\nsure O O\nif O O\ni O O\nexplained O O\nthings O O\nright O O\nso O O\nplease O O\ntell O O\nme O O\nif O O\nthings O O\nare O O\nunclear O O\n:) O O\n\nI O O\nhave O O\ntried O O\nto O O\ndo O O\nthis O O\n: O O\n\nBut O O\nhow O O\nshould O O\ni O O\nimplement O O\nthis O O\nback O O\nto O O\nthe O O\nSpotDetails Name Name\n? O O\n\nAnd O O\nwhat O O\nshould O O\ni O O\nreturn O O\nfrom O O\nDrawRose Name Name\n? O O\n\nYou O O\nshould O O\ndraw Name Name\nonly O O\nin O O\nthe O O\nUI O O\nthread O O\n. O O\n\nYou O O\nca O O\nn't O O\ndraw Name Name\nin O O\nthe O O\nbackground Name Name\nif O O\nusing O O\nthe O O\nDraw Name Name\ninheritance O O\nmethod O O\nfrom O O\nView Name Name\n. O O\n\nBetter O O\nto O O\nuse O O\na O O\nSurfaceView Name Name\nwith O O\nlock O O\n/ O O\nunlock O O\ncanvas Name Name\n. O O\n\nIt O O\nwill O O\nuse O O\nan O O\noptimized O O\nalgorithm O O\nwhich O O\nallows O O\nfor O O\nbackground Name Name\ndrawing O O\n. O O\n\nI O O\nam O O\nsharing O O\ndata O O\nacross O O\ntwo O O\nsibling O O\ncomponents O O\nusing O O\nan O O\ninjectible Name Name\n. O O\n\nIn O O\nmy O O\ninjectible O O\nI O O\nam O O\nusing O O\nan O O\nobservable Name Name\nlike O O\nthis O O\n: O O\n\nBut O O\nthen O O\nwhen O O\nI O O\nam O O\nusing O O\nSubject Name Name\nin O O\nplace O O\nof O O\nObservable Name Name\nit O O\nworks O O\nfine O O\n. O O\n\nI O O\nwant O O\nto O O\nuse O O\nObservable Name Name\ninstead O O\nof O O\nSubject Name Name\n, O O\nso O O\nis O O\nit O O\npossible O O\n? O O\n\nI O O\nam O O\nnew O O\nto O O\nreactive O O\nprogramming O O\n, O O\nand O O\nI O O\nam O O\nconfused O O\n. O O\n\nuse O O\na O O\nglobal Name Name\nvariable O O\ninstead O O\nof O O\ninjectible Name Name\n. O O\n\nso O O\nthat O O\nyou O O\ncan O O\naccess O O\nthem O O\nthrough O O\nout O O\nyour O O\nproject O O\n. O O\n\n1.create O O\na O O\nproperty O O\nin O O\nDTO O O\n. O O\n\n2.import O O\nin O O\nthat O O\ncomponent O O\nwhere O O\nyou O O\nwant O O\nto O O\nuse O O\n. O O\n\n3.create O O\na O O\nvariable O O\nof O O\nthat O O\ntype O O\nin O O\nconstructor O O\n's O O\nparameter O O\n. O O\n\n4.access O O\nwith O O\nthe O O\nuse O O\nof O O\nthat O O\nvariable O O\n. O O\n\nI O O\n'm O O\nrunning O O\nSpark Name Name\n1.4.1 Name Name\non O O\nmy O O\nlocal O O\nMac Name Name\nlaptop Name Name\nand O O\nam O O\nable O O\nto O O\nuse O O\npyspark Name Name\ninteractively O O\nwithout O O\nany O O\nissues O O\n. O O\n\nSpark Name Name\nwas O O\ninstalled O O\nthrough O O\nHomebrew Name Name\nand O O\nI O O\n'm O O\nusing O O\nAnaconda Name Name\nPython Name Name\n. O O\n\nHowever O O\n, O O\nas O O\nsoon O O\nas O O\nI O O\ntry O O\nto O O\nuse O O\nspark-submit Name Name\n, O O\nI O O\nget O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\nHere O O\nis O O\nmy O O\ncode O O\n: O O\n\nIf O O\nI O O\nmove O O\nthe O O\nfile O O\nto O O\nanywhere O O\nin O O\nthe O O\n/usr/local/Cellar/apache-spark/1.4.1/ Name Name\ndirectory O O\n, O O\nthen O O\nspark-submit Name Name\nworks O O\nfine O O\n. O O\n\nI O O\nhave O O\nmy O O\nenvironment O O\nvariables O O\nset O O\nas O O\nfollows O O\n: O O\n\nI O O\n'm O O\nsure O O\nsomething O O\nis O O\nset O O\nincorrectly O O\nin O O\nmy O O\nenvironment O O\n, O O\nbut O O\nI O O\nca O O\nn't O O\nseem O O\nto O O\ntrack O O\nit O O\ndown O O\n. O O\n\nThe O O\npython Name Name\nfiles O O\nthat O O\nare O O\nexecuted O O\nby O O\nspark-submit Name Name\nshould O O\nbe O O\non O O\nthe O O\nPYTHONPATH Name Name\n. O O\n\nEither O O\nadd O O\nthe O O\nfull O O\npath O O\nof O O\nthe O O\ndirectory O O\nby O O\ndoing O O\n: O O\n\nor O O\nyou O O\ncan O O\nalso O O\nadd O O\n' Name Name\n. Name Name\n' Name Name\nto O O\nthe O O\nPYTHONPATH Name Name\nif O O\nyou O O\nare O O\nalready O O\ninside O O\nthe O O\ndirectory O O\nwhere O O\nthe O O\npython Name Name\nscript O O\nis O O\n\nThanks O O\nto O O\n@Def_Os O O\nfor O O\npointing O O\nthat O O\nout O O\n! O O\n\nI O O\n'm O O\ntrying O O\nto O O\nwrite O O\nsome O O\ngeneric O O\ncode O O\nfor O O\nhandling O O\ndrops O O\nin O O\nWPF Name Name\ndrop O O\ntargets O O\n. O O\n\nAllowDrop Name Name\nis O O\nset O O\nto O O\ntrue O O\n, O O\nand O O\nI O O\n've O O\nhooked O O\nonto O O\nDragEnter Name Name\n, O O\nDragOver Name Name\n, O O\nDragLeave Name Name\n, O O\n& O O\nDrop Name Name\non O O\nthe O O\ndrop O O\ntarget O O\nUIElement Name Name\n. O O\n\nUsing O O\nthe O O\nbubbling O O\nevents O O\nenables O O\nnesting O O\nof O O\ndrop O O\ntargets O O\n. O O\n\nNote O O\nI O O\nhave O O\nno O O\naccess O O\nto O O\nthe O O\ndrag O O\nsource O O\n- O O\nthis O O\nis O O\ninter-application O O\ndrag O O\n& O O\ndrop O O\n. O O\n\nIf O O\nI O O\nhave O O\nsome O O\nUI O O\ncleanup O O\nto O O\nperform O O\nat O O\nthe O O\nend O O\nof O O\na O O\npotential O O\ndrop O O\n, O O\nand O O\nthe O O\nuser O O\npresses O O\nEsc O O\nto O O\ncancel O O\nthe O O\ndrop O O\n, O O\nthe O O\ndrop O O\ntarget O O\nnever O O\nseems O O\nto O O\ngets O O\na O O\nspecific O O\nevent O O\nthat O O\nI O O\ncan O O\ndifferentiate O O\nfrom O O\nall O O\nthe O O\nothers O O\n. O O\n\nDrop O O\nis O O\neasy O O\n- O O\nbut O O\nwhat O O\nindicates O O\na O O\ncancel O O\n? O O\n\nThe O O\nproblem O O\nI O O\nhave O O\nis O O\nthis O O\n: O O\n\nDragLeave Name Name\nis O O\na O O\nbubbling O O\nrouted O O\nevent O O\n. O O\n\ne.OriginalSource Name Name\nis O O\nalways O O\nset O O\nfor O O\nthis O O\nevent O O\n( O O\nand O O\nthe O O\ncorresponding O O\nPreview O O\n) O O\nvia O O\nhittesting O O\n. O O\n\nThe O O\ntarget O O\nis O O\nan O O\nItemsControl Name Name\n( O O\nListbox Name Name\nis O O\nwhat O O\nI O O\n've O O\ncurrently O O\nbeen O O\ntesting O O\nwith O O\n) O O\n. O O\n\nAs O O\nI O O\ndrag O O\nover O O\nmy O O\nintended O O\ndrop O O\ntarget O O\n, O O\nI O O\nget O O\nloads O O\nof O O\nDragLeave Name Name\nevents O O\nfrom O O\nthe O O\nchild O O\nvisuals O O\nwithin O O\nthe O O\ntarget O O\n. O O\n\nI O O\nnever O O\nget O O\nany O O\nfrom O O\nthe O O\ntarget O O\nitself O O\n. O O\n\nGrids Name Name\n, O O\nrectangles Name Name\n, O O\nborders Name Name\n, O O\ntextblocks Name Name\n, O O\nthey O O\nall O O\nhappily O O\nsend O O\nme O O\nDragLeave Name Name\n, O O\nbut O O\nnone O O\nfrom O O\nthe O O\nactual O O\nItemsControl Name Name\nI O O\n'm O O\nconnected O O\nup O O\nto O O\n. O O\n\nI O O\nthought O O\nit O O\nmight O O\nbe O O\na O O\nhittesting O O\nproblem O O\n, O O\nbut O O\nI O O\n've O O\nset O O\nthe O O\nBackground Name Name\nof O O\nthe O O\nItemsControl Name Name\nto O O\na O O\ncolour O O\n, O O\nand O O\nit O O\nmakes O O\nno O O\ndifference O O\n. O O\n\nWhat O O\nam O O\nI O O\nmissing O O\n? O O\n\nHow O O\nam O O\nI O O\nsupposed O O\nto O O\ndetermine O O\nthat O O\na O O\ndrop O O\noperation O O\nhas O O\ndefinitely O O\nfinished O O\n? O O\n\n( O O\nThe O O\nactual O O\nproblem O O\nI O O\n'm O O\ntrying O O\nto O O\nsolve O O\nis O O\nthat O O\nI O O\n'm O O\nimplementing O O\nsome O O\ncustom O O\ndragging O O\nbehaviour O O\nin O O\na O O\nTreeView Name Name\nthat O O\nexpands O O\nfolders Name Name\nwhen O O\nyou O O\nhover O O\nover O O\nthem O O\n, O O\nand O O\ncancels O O\ntimers O O\n& O O\nundoes O O\nthe O O\nexpansion O O\nwhen O O\nthe O O\ndrop O O\nis O O\nfinished O O\n, O O\nand O O\nmore O O\nto O O\ncome O O\n, O O\nbut O O\nI O O\nca O O\nn't O O\neven O O\nget O O\nthe O O\nevents O O\nto O O\nfire O O\nsensibly O O\nfor O O\na O O\nListBox Name Name\n) O O\n. O O\n\nYou O O\ndo O O\nhave O O\na O O\ncomplex O O\nscenario O O\nhere O O\nso O O\nthis O O\nwill O O\nstart O O\nbasic O O\nin O O\nhopes O O\nof O O\ngiving O O\nyou O O\na O O\ndirection O O\nand O O\nhopefully O O\na O O\nsolution O O\n. O O\n\nThe O O\nframework O O\nwill O O\nonly O O\ninform O O\nof O O\na O O\nDragEnter Name Name\nevent O O\nif O O\nthe O O\ncontrol O O\nis O O\nmarked O O\nwith O O\nAllowDrop Name Name\n= Name Name\ntrue Name Name\n. O O\n\nSo O O\nmake O O\nsure O O\nyou O O\n've O O\ndone O O\nthat O O\n. O O\n\nIt O O\nsounds O O\nlike O O\nyou O O\nhave O O\nbut O O\nI O O\njust O O\nwant O O\nto O O\nbe O O\nsure O O\n. O O\n\nI O O\n'm O O\nnot O O\nsure O O\nwhy O O\nyou O O\nneed O O\nthe O O\nDragLeave Name Name\nevent O O\nbut O O\nif O O\nit O O\n's O O\nto O O\ngrab O O\nthe O O\nselected O O\ndata O O\nthe O O\neasiest O O\nway O O\nto O O\nget O O\nthe O O\ndata O O\nis O O\nnot O O\nto O O\nhook O O\ninto O O\nDragLeave Name Name\nbut O O\nto O O\nhook O O\ninto O O\nPreviewMouseMove Name Name\n. O O\n\nYou O O\ncan O O\nthen O O\ndetermine O O\nif O O\nthe O O\nmouse Name Name\nis O O\npressed O O\nand O O\nhow O O\nfar O O\nof O O\na O O\ndistance O O\nto O O\nmove O O\nbefore O O\nenacting O O\na O O\nDoDragDrop Name Name\n. O O\n\nIn O O\nthis O O\nevent O O\n, O O\nyou O O\nalso O O\nhave O O\nthe O O\nability O O\nto O O\nadd O O\nand O O\nanalyze O O\nDrag Name Name\nData Name Name\n. O O\n\nWhen O O\nthe O O\ndrag O O\nstarts O O\nyou O O\ncan O O\ncreate O O\na O O\nnew O O\nDataObject Name Name\nand O O\nsend O O\nit O O\nwith O O\nthe O O\nDoDragDrop Name Name\ncall O O\n: O O\n\nThis O O\ndrag Name Name\ndata Name Name\nis O O\nnow O O\naccessible O O\nthrough O O\nthe O O\nDragEventArgs Name Name\nobject O O\nby O O\nusing O O\n( O O\nif O O\nyou O O\ndo O O\nn't O O\nrename O O\nthe O O\nevent O O\nparameter O O\n, O O\nit O O\n's O O\ne Name Name\n) O O\n: O O\n\nMy O O\nsuggestion O O\nis O O\nto O O\nadd O O\nsome O O\nunique O O\ninformation O O\nto O O\nthe O O\ndrag O O\nevent O O\ndata O O\nto O O\ndifferentiate O O\nthe O O\nevent O O\nbased O O\non O O\nthe O O\ndata O O\n. O O\n\nEither O O\nyour O O\ndata O O\nitem O O\nfrom O O\nthe O O\nlistbox Name Name\nselection O O\n, O O\nor O O\na O O\nnew O O\nclass O O\nholding O O\nyour O O\ndata O O\nitem O O\nand O O\nanother O O\nindicator O O\nif O O\nneeded O O\n. O O\n\ncheck O O\nfor O O\ne.Source Name Name\nand O O\nnot O O\ne.OriginalSource Name Name\n, O O\nif O O\nyou O O\nhave O O\nset O O\nDropTarget Name Name\n= Name Name\n\" Name Name\nTrue Name Name\n\" Name Name\non O O\nthe O O\nItemsControl Name Name\n& O O\nyou O O\nhave O O\nDropOver Name Name\nevent O O\nattached O O\nto O O\nthe O O\nItemsControl Name Name\n, O O\nthe O O\nevent O O\nargument O O\ne.Source Name Name\nshould O O\nbe O O\nItemsControl Name Name\n. O O\n\nI O O\n'm O O\ntesting O O\nAngularJS Name Name\nwith O O\nProtractor Name Name\n, O O\nI O O\nhave O O\na O O\nrepeater Name Name\nand O O\nI O O\n'm O O\ntrying O O\nto O O\nsum O O\nall O O\nvalues O O\nin O O\nthe O O\nrows Name Name\n, O O\nand O O\ncompare O O\nit O O\nto O O\nthe O O\nsummary O O\nline O O\nvalue O O\n. O O\n\nHere O O\n's O O\nmy O O\nHTML Name Name\n: O O\n\nI O O\nused O O\nthe O O\nfollowing O O\ncode O O\nin O O\nmy O O\ne2e O O\ntest O O\n: O O\n\nI O O\n'm O O\ngetting O O\nvarious O O\nkind O O\nof O O\nerrors O O\n, O O\ncan O O\nsomeone O O\nadvice O O\nwhat O O\nam O O\nI O O\ndoing O O\nwrong O O\nhere O O\n? O O\n\nAn O O\nexample O O\nerror O O\nI O O\nget O O\n: O O\n\nrows Name Name\nis O O\nan O O\narray Name Name\nand O O\nit O O\n's O O\nbeing O O\ncalled O O\nlike O O\na O O\nfunction O O\n( O O\nthe O O\nside O O\neffect O O\nis O O\nthat O O\ngetText() Name Name\nis O O\nbeing O O\ncalled O O\nover O O\nthe O O\nentire O O\narray Name Name\ninstead O O\nof O O\nthe O O\ndesired O O\nelement O O\n) O O\n\nAlso O O\ngetText()'s Name Name\nresponse O O\nshould O O\nbe O O\nhandled O O\nwith O O\nanother O O\ncallback O O\n. O O\n\nI O O\nhave O O\na O O\ninnodb Name Name\ntable Name Name\n, O O\nand O O\nset O O\nmysql Name Name\ninnodb_file_per_table Name Name\n= Name Name\n1 Name Name\non O O\nHost Name Name\nA Name Name\n\nthis O O\ntable Name Name\n's O O\nibd Name Name\nfile O O\nallocate O O\nabout O O\n3GB O O\ndisk Name Name\n\nthen O O\n, O O\ni O O\ndump O O\nthis O O\ntable O O\nto O O\nsql Name Name\nfile(a.sql) Name Name\n, O O\na.sql Name Name\nallocate O O\nabout O O\n2.5Gb O O\ndisk Name Name\n\nnext O O\n, O O\ni O O\nimport O O\na.sql Name Name\nto O O\nHost Name Name\nB Name Name\n. O O\n\nHost Name Name\nA Name Name\nand O O\nHost Name Name\nB Name Name\nhave O O\nthe O O\nsame O O\nhardware O O\n, O O\nsame O O\nsystem O O\n, O O\nsame O O\nmysql Name Name\nconfigure O O\n. O O\n\nBut O O\ni O O\nfound O O\n, O O\nthis O O\ntable Name Name\n's O O\nibd Name Name\nfile O O\non O O\nHost Name Name\nB Name Name\nallocate O O\n30GB O O\ndisk Name Name\n. O O\n\ni O O\ntry O O\nto O O\ndump O O\nthis O O\ntable Name Name\non O O\nHost Name Name\nB Name Name\nto O O\nb.sql Name Name\n\nb.sql Name Name\nhave O O\nthe O O\nsame O O\nsize O O\nof O O\na.sql Name Name\n. O O\n\nI O O\nam O O\nsure O O\nafter O O\nthe O O\nimport O O\na.sql Name Name\nto O O\nHost Name Name\nB Name Name\n, O O\nwe O O\ndo O O\nn't O O\nhave O O\nalert O O\ntable Name Name\naction O O\n. O O\n\nWhy O O\nthe O O\nallocate O O\ndisk O O\nso O O\nlarge O O\n? O O\n\nthanks O O\n. O O\n\ntable Name Name\ndescription O O\n: O O\n\nDo O O\nyou O O\nstill O O\nhave O O\nibdata1 Name Name\nthere O O\n? O O\n\nWhat O O\nis O O\nthe O O\nresult O O\nafter O O\nyou O O\nrun O O\noptimize O O\ntable Name Name\na O O\non O O\nHost Name Name\nA Name Name\n? O O\n\nIt O O\nmay O O\nbe O O\nbecause O O\nin O O\nhost Name Name\nA Name Name\n, O O\nsome O O\nof O O\nyour O O\ndata O O\nof O O\ntable Name Name\nA Name Name\nis O O\ninside O O\nthe O O\nfile O O\nibdata1 Name Name\n. O O\n\nI O O\nam O O\nmaking O O\na O O\ngame O O\nwhere O O\nyou O O\nhave O O\nto O O\nget O O\nfrom O O\none O O\npoint O O\n( O O\ntask O O\n) O O\non O O\na O O\nsite O O\nto O O\nanother O O\n( O O\ndest O O\n) O O\nin O O\nan O O\niframe Name Name\n. O O\n\nYour O O\nstarting O O\nand O O\nend O O\npoints O O\nare O O\nchosen O O\nfor O O\nyou O O\n. O O\n\nWhen O O\nthe O O\nurl O O\nof O O\nyour O O\nstarting O O\npoint O O\nis O O\nequal O O\nto O O\nyour O O\nend O O\npoint O O\nI O O\nwould O O\nlike O O\na O O\npopup Name Name\nbox Name Name\nsaying O O\nyou O O\nwon O O\n. O O\n\nI O O\nmade O O\none O O\nand O O\nit O O\nworks O O\nfine O O\nin O O\nCoda Name Name\n2 Name Name\nbut O O\nnot O O\nin O O\nany O O\nbrowser Name Name\n. O O\n\nI O O\nam O O\nvery O O\nnew O O\nto O O\nJS Name Name\nas O O\nwell O O\nas O O\nStack Name Name\nOverflow Name Name\nso O O\nany O O\nhelp O O\nwould O O\nbe O O\nappreciated O O\n! O O\n\nHow O O\nI O O\nam O O\ncalling O O\nthe O O\ncode O O\nin O O\nmy O O\nindex.html Name Name\n: O O\n\nThe O O\nactual O O\ncode O O\n: O O\n\nUse O O\nlocation.href Name Name\ninstead O O\nof O O\nurl.value Name Name\n. O O\n\nOr O O\nyou O O\ncan O O\nsee O O\nother O O\nuseful O O\nlocation O O\nproperties O O\nin O O\nw3schools Name Name\n. O O\n\nI O O\nwas O O\ntrying O O\nto O O\ndownload O O\nthis O O\nimage Name Name\n, O O\ndirectly O O\nfrom O O\nthe O O\nfull O O\npath O O\n. O O\n\nWhen O O\nI O O\ntry O O\nit O O\nthrow O O\nFirefox Name Name\n, O O\nI O O\n'm O O\nredirected O O\nto O O\nthe O O\ninitial O O\npage O O\n. O O\n\nBut O O\ninto O O\nsome O O\nManga Name Name\n, O O\ni O O\ncould O O\nsee O O\nthe O O\nurl O O\nfrom O O\nimage Name Name\n, O O\nand O O\nit O O\n's O O\nthat O O\none O O\n.. O O\n. O O\n\nI O O\n'm O O\nusing O O\nthe O O\ncode O O\nbelow O O\n.. O O\n. O O\n\nSomeone O O\nknows O O\nwhy O O\nit O O\n's O O\nhappening O O\n? O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\ndownload O O\nit O O\nusing O O\nthis O O\nURL O O\ndirectly O O\n? O O\n\nMost O O\nlikely O O\nthey O O\nare O O\nchecking O O\nthe O O\nHTTP Name Name\nREFERRER Name Name\n( O O\nwith O O\nmod_rewrite Name Name\nmaybe O O\n) O O\nand O O\nif O O\nit O O\ndoes O O\nn't O O\nmatch O O\ntheir O O\ndomain O O\nit O O\nwill O O\nredirect O O\nyou O O\nto O O\nthe O O\nhomepage O O\n. O O\n\nTry O O\nsetting O O\nHTTP-REFERRER Name Name\nto O O\nhttp://centraldemangas.com.br/ O O\nand O O\nsee O O\nif O O\nthat O O\nworks O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nsave O O\nthe O O\nimage Name Name\nfrom O O\nAPI Name Name\nand O O\nis O O\nalways O O\ngoing O O\nto O O\ncatch O O\n. O O\n\nEstou O O\ntentando O O\nsalvar O O\numa O O\nimagem O O\nque O O\nvem O O\nda O O\nAPI Name Name\nmas O O\nsempre O O\ncai O O\nno O O\ncatch O O\n. O O\n\nAssume O O\nI O O\nknow O O\nor O O\nam O O\nable O O\nto O O\nlearn O O\nany O O\nadjacent O O\ntechnology/language O O\n--what O O\n' O O\ns O O\nthe O O\nbest O O\nway O O\nto O O\ngo O O\nabout O O\nautomating O O\na O O\nnumber O O\nof O O\nprocessing/summary O O\nSQL Name Name\nscripts O O\n? O O\n\nI O O\nhave O O\na O O\nnumber O O\nof O O\nscripts O O\n, O O\nclean-up O O\n( O O\neg O O\n, O O\nupdate O O\n, O O\ndelete O O\n) O O\n, O O\nprocessing O O\n( O O\neg O O\n, O O\njoins O O\n) O O\nand O O\nsummaries O O\npost-processing O O\n, O O\nthat O O\nI O O\nwrote O O\nlast O O\nmonth O O\nbut O O\nwould O O\nlike O O\nto O O\nautomate O O\n. O O\n\nWhat O O\n's O O\nthe O O\npreferred O O\nmethod(s) O O\nof O O\nautomating O O\nthe O O\nentire O O\nprocess O O\nas O O\na O O\nseries O O\nof O O\nsequential O O\nscripts O O\n? O O\n\nEDIT O O\n: O O\nAll O O\nof O O\nthis O O\nis O O\nrun O O\non O O\nMySQL Name Name\ndbs O O\n. O O\n\nSimilar O O\nto O O\nMAW O O\n's O O\nanswer O O\n, O O\nexcept O O\nI O O\nwould O O\nuse O O\na O O\nWindows Name Name\nService Name Name\ninstead O O\nof O O\na O O\ncommand Name Name\nline Name Name\napp Name Name\n( O O\nno O O\nGUI O O\n) O O\n, O O\nand O O\nsplit O O\nout O O\nthe O O\nindividual O O\nDB O O\nscripts O O\ninto O O\nseparate O O\ntasks O O\nwithin O O\nthe O O\nService O O\nso O O\nthat O O\nthey O O\ncan O O\nif O O\nnecessary O O\nbe O O\ncalled O O\nat O O\ndifferent O O\ntime O O\nintervals O O\n, O O\nlog O O\ntheir O O\nresults O O\nseparately O O\n, O O\nand O O\nbe O O\nindependently O O\nconfigured O O\n. O O\n\nThis O O\ndepends O O\ngreatly O O\non O O\nyour O O\nDBMS Name Name\n. O O\n\nIn O O\nSQL Name Name\nServer Name Name\nthere O O\nare O O\nscheduled O O\njobs O O\nwhich O O\ncan O O\nrun O O\nany O O\ncombination O O\nof O O\nstored O O\nprocedures/commands O O\non O O\na O O\nschedule O O\n, O O\nsimilar O O\nto O O\nWindows Name Name\nscheduled Name Name\ntasks Name Name\n. O O\n\nSince O O\nyou O O\n've O O\ntagged O O\nthis O O\nquestion O O\nwith O O\nmysql Name Name\n, O O\nI O O\n'll O O\nassume O O\nthats O O\nwhat O O\nyour O O\nrunning O O\n. O O\n\nOne O O\nway O O\nto O O\ndo O O\nthis O O\non O O\nmysql Name Name\nis O O\n: O O\n\nhttp://dev.mysql.com/tech-resources/articles/event-feature.html O O\n\nIf O O\nall O O\nelse O O\nfails O O\n, O O\nyou O O\ncan O O\nreference O O\nall O O\nof O O\nthese O O\nscripts O O\nin O O\na O O\nstored O O\nprocedure O O\n, O O\nthan O O\ncreate O O\na O O\nsimple O O\ncommand Name Name\nline Name Name\nprogram O O\nwhich O O\nwould O O\nconnect O O\nto O O\nthat O O\ndb O O\nand O O\ncall O O\nthat O O\nprocedure O O\n. O O\n\nThen O O\nschedule O O\nthat O O\nprogram O O\nwith O O\nWindows Name Name\nTask Name Name\nscheduler Name Name\nor O O\nsimilar O O\n. O O\n\nI O O\nhave O O\na O O\ntable Name Name\nwith O O\n3 O O\ncolumns Name Name\nand O O\nwant O O\nto O O\nchange O O\nit O O\n's O O\ncolor O O\nto O O\ngreen O O\ndepending O O\non O O\nwhat O O\nI O O\nselect O O\non O O\nmy O O\nchecklist Name Name\n( O O\nform Name Name\n) O O\n. O O\n\nI O O\nwant O O\nto O O\nchange O O\nin O O\nGREEN O O\nthe O O\ncolumn O O\ndepending O O\non O O\nthe O O\ncity O O\ni O O\nchoose O O\n. O O\n\nFor O O\nexample O O\nif O O\nI O O\nchoose O O\nNew Name Name\nYork Name Name\n, O O\nthen O O\ncolumn Name Name\nNew Name Name\nYork Name Name\nbecome O O\ngreen O O\n. O O\n\nAny O O\nideas O O\n? O O\n\nHTML Name Name\n- O O\nTable Name Name\n: O O\n\nHTML Name Name\n- O O\nForm Name Name\n: O O\n\nScript O O\n: O O\n\nInstead O O\nof O O\nusing O O\na O O\nif Name Name\nelse Name Name\nadd O O\na O O\ndata-city Name Name\nattribute O O\nto O O\nmap O O\nwhich O O\nvalue O O\nof O O\ndropdown Name Name\ncorresponds O O\nto O O\nwhich O O\ncolumn Name Name\nof O O\nthe O O\ntable Name Name\n. O O\n\nAdd O O\ndata-city Name Name\nto O O\nthe O O\nth Name Name\nlike O O\nthis O O\n\nBased O O\non O O\nthe O O\ndropdown Name Name\nvalue O O\nselect O O\nthe O O\nth Name Name\nand O O\nget O O\nits O O\nindex Name Name\n. O O\n\nGet O O\nthe O O\nentire O O\ncolumn Name Name\n( O O\ntds Name Name\n) O O\nbased O O\non O O\nthat O O\nindex Name Name\nand O O\nchange Name Name\ncss Name Name\n. O O\n\nHere O O\nis O O\na O O\ndemo O O\nhttp://jsbin.com/leqinun/1/edit?html,js,output O O\n\nFor O O\none O O\nweek O O\nI O O\n'm O O\ngetting O O\nthe O O\nbelow O O\ntype O O\nmissmatch O O\nerror O O\n. O O\n\nI O O\nsearch O O\nthrough O O\nthe O O\ninternet O O\n, O O\nlooked O O\nat O O\nhow O O\nto O O\nuse O O\ngenerics O O\n, O O\nbut O O\nI O O\ncould O O\nn't O O\nfind O O\nwhat O O\nI O O\n'm O O\ndoing O O\nwrong O O\n. O O\n\ncould O O\nanyone O O\nplease O O\ntell O O\nme O O\nhow O O\nto O O\nfix O O\nthis O O\nproblem O O\n\nerror O O\n: O O\n\nMy O O\nclasses O O\nand O O\ninterfaces O O\n\nA O O\nlittle O O\nimprovement O O\nof O O\nT O O\nMcKeown O O\n's O O\nanswer O O\n: O O\n\nSince O O\nBaseRequest Name Name\nis O O\nconstrained O O\nby O O\nparameter O O\nT Name Name\n, O O\nyou O O\nshould O O\nput O O\nconstraint O O\non O O\ngeneric O O\nmethod O O\ntoo O O\n. O O\n\nAlso O O\n, O O\nyou O O\ncan O O\nomit O O\ncasting O O\nfrom O O\ncaller O O\ncode O O\n, O O\nusing O O\ngeneric O O\nreturn O O\ntype O O\n: O O\n\nYou O O\n're O O\nsending O O\na O O\ntype O O\nListAlertsRequest Name Name\nto O O\nDoGetRequest Name Name\nwhich O O\nneeds O O\na O O\nparameter O O\nof O O\ntype O O\nBaseRequest<BaseResponse> Name Name\n. O O\n\nListAlertsRequest Name Name\nis O O\nnot O O\nof O O\ntype O O\nBaseRequest Name Name\n<BaseResponse> Name Name\n\nHi O O\nguys O O\nhow O O\ncan O O\ni O O\nconvert O O\na O O\nimage Name Name\nto O O\nobject O O\nin O O\nthis O O\ncode O O\nfor O O\nexample O O\n: O O\n\nThe O O\nreason O O\nto O O\ndo O O\nthat O O\nis O O\nif O O\ni O O\nwa O O\nn't O O\nto O O\nupload O O\nthis O O\nimage Name Name\nautomatically O O\nif O O\nthe O O\ninput O O\nfile O O\nis O O\nn't O O\nset O O\n: O O\n\nEDIT O O\n\nIf O O\nthere O O\nis O O\nn't O O\na O O\ninput O O\nfile O O\nhow O O\ncan O O\ni O O\nset O O\nthe O O\nmy O O\ndefault O O\nimage O O\nto O O\nsend O O\nit O O\nwith O O\najax Name Name\n? O O\n? O O\n\nEDIT2 O O\n\nIf O O\nevent.target.files Name Name\n; Name Name\nis O O\nnull O O\nhow O O\ncan O O\ni O O\nset O O\nfile O O\nfrom O O\nnew O O\nimage Name Name\n: O O\n\nI O O\nguess O O\nyou O O\ncan O O\ndo O O\nthis O O\n: O O\n\nwhere O O\ndefaultImg Name Name\nis O O\na O O\nvariable O O\nwhich O O\ncontains O O\na O O\ndefault O O\nimg Name Name\nwith O O\nsrc O O\n. O O\n\nsomthing O O\nlike O O\n: O O\n\nI O O\nwonder O O\nwhether O O\nthere O O\nis O O\nany O O\nway O O\nto O O\ncalculate O O\nthe O O\n2nd-order O O\nderivative O O\non O O\nCRF Name Name\nloss O O\nfunction O O\nin O O\nTensorflow Name Name\n. O O\n\nCurrently O O\n, O O\nwhen O O\nI O O\nuse O O\n\" O O\ntf.contrib.crf.crf_log_likelihood Name Name\n\" O O\nto O O\ncalculate O O\nthe O O\nloss O O\nfunction O O\n, O O\nit O O\ngives O O\nthe O O\nerror O O\n\" O O\nSecond-order O O\ngradient O O\nfor O O\nwhile O O\nloops O O\nnot O O\nsupported O O\n\" O O\n. O O\n\nPreviously O O\n, O O\nit O O\nalso O O\ngives O O\nthe O O\nsame O O\nerror O O\nfor O O\nRNN Name Name\nloss O O\n. O O\n\nDoes O O\nTensorflow Name Name\nnot O O\nsupport O O\n2nd-order O O\nderivative O O\nfor O O\nsequence O O\nmodel O O\nat O O\nall O O\n? O O\n\ni O O\nhave O O\na O O\nfunction O O\nthat O O\nsubmit O O\na O O\nform O O\nand O O\nstarts O O\nan O O\nimageupload Name Name\n. O O\n\nAfter O O\nthe O O\nimageupload Name Name\nis O O\ncomplete O O\n, O O\nanother O O\nfunction O O\nmust O O\nbe O O\nstart O O\n. O O\n\nThe O O\nfollowing O O\ncode O O\nmust O O\nbe O O\nstart O O\nafter O O\nthe O O\nupload O O\nis O O\nfinished O O\n. O O\n\nBut O O\nwhere O O\ni O O\nmust O O\nthe O O\nfunction O O\ninsert O O\n? O O\n\nI O O\nhope O O\nsomeone O O\ncan O O\nhelp O O\nme O O\n. O O\n\nBest O O\nregards O O\n\nHendrik O O\n\nthis O O\nshould O O\nwork O O\n. O O\n\nUse O O\nsuccess Name Name\n: Name Name\n\nRead O O\nhttp://malsup.com/jquery/form/#options-object O O\n\nI O O\nwant O O\nto O O\nclick O O\nonly O O\non O O\nleft O O\nside O O\nwhere O O\nis O O\nletter O O\n\" Name Name\nF Name Name\n\" Name Name\nand O O\nother O O\nsection O O\nto O O\nmake O O\nnot O O\nclickable O O\n. O O\n\nI O O\nam O O\ntrying O O\nwith O O\ncss Name Name\nclass O O\ndiver O O\nbut O O\nnot O O\nwork O O\n. O O\n\nHtml Name Name\n\nCSS Name Name\n\nCodePen Name Name\n\nIf O O\nthe O O\nimage Name Name\nmust O O\nbe O O\nin O O\nthe O O\nHTML Name Name\n. O O\n\nNote O O\n: O O\nThe O O\n\" O O\nuniversal O O\nreset O O\n\" O O\n( O O\nthe O O\n* Name Name\nsection O O\n) O O\nhave O O\nan O O\neffect O O\non O O\nelements O O\noutside O O\nthe O O\nscope O O\nof O O\nthe O O\ncurrent O O\nquestion O O\n. O O\n\nHeaders O O\n, O O\nparagraphs O O\nand O O\nlists O O\nspring O O\nto O O\nmind O O\n. O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\nquery O O\n: O O\n\nhowever O O\nthis O O\nquery O O\ngives O O\nme O O\n: O O\n\nI O O\nbasically O O\nwanted O O\nthe O O\nlist Name Name\nto O O\nbe O O\nordered O O\nby O O\nthe O O\nstyle O O\nthat O O\nhas O O\nthe O O\nmost O O\npictures O O\nin O O\nit O O\n. O O\n\nWhat O O\ndid O O\nI O O\ndo O O\nwrong O O\n? O O\n\nWhy O O\nis O O\nit O O\ngiving O O\nme O O\n1 O O\non O O\nall O O\nof O O\nthe O O\nstyles O O\n, O O\nI O O\nam O O\npretty O O\nsure O O\nit O O\nhas O O\nmore O O\npictures O O\nfor O O\nthat O O\nstyle O O\n\nORDER Name Name\nBY Name Name\ndoes O O\nn't O O\nhave O O\nunderscores O O\n. O O\n\nBut O O\nequally O O\nimportant O O\n, O O\nyou O O\nare O O\nusing O O\nDISTINCT Name Name\nin O O\na O O\nway O O\nwhere O O\nyou O O\nseem O O\nto O O\nthink O O\nthat O O\nit O O\nis O O\na O O\nfunction O O\n. O O\n\nIt O O\nis O O\nnot O O\n. O O\n\nIt O O\nis O O\na O O\nmodifies O O\non O O\nthe O O\nSELECT Name Name\nand O O\nit O O\napplies O O\nto O O\nall O O\ncolumns Name Name\n. O O\n\nYou O O\nshould O O\ngroup Name Name\nby Name Name\nthe O O\nsame O O\ncolumn Name Name\nyou O O\nhave O O\nin O O\nthe O O\ndistinct O O\n. O O\n\nSomething O O\nlike O O\nthis O O\n: O O\n\nIn O O\nfact O O\n, O O\nyou O O\nalmost O O\nnever O O\nneed O O\ndistinct Name Name\nwith O O\ngroup Name Name\nby Name Name\n. O O\n\nIf O O\nyou O O\nare O O\nusing O O\n, O O\nyou O O\nneed O O\nto O O\nthink O O\nwhy O O\nit O O\nwould O O\nbe O O\nnecessary O O\n. O O\n\nI O O\n've O O\nread O O\nmost O O\nof O O\nthe O O\nother O O\nquestions O O\non O O\nnon-Abstract O O\nclasses O O\nwith O O\nabstract O O\nmethods O O\nand O O\nI O O\ndo O O\nn't O O\nthink O O\nI O O\nunderstood O O\nany O O\nof O O\nit O O\n. O O\n\nSo O O\nheres O O\nmy O O\nproblem O O\n: O O\n\nI O O\n'm O O\nattempting O O\nto O O\nmake O O\na O O\nmetronome O O\n, O O\nfor O O\nthe O O\nmetronome O O\nto O O\n' O O\nclick O O\n' O O\nand O O\nplay O O\nsound O O\nI O O\ncopied O O\nthe O O\ncode O O\nfrom O O\nhttp://www.cs.cmu.edu/~illah/CLASSDOCS/javasound.pdf O O\n. O O\n\nThe O O\ncode O O\nbelow O O\nis O O\na O O\nsuper O O\nbasic O O\nprogram O O\nthat O O\ncreates O O\na O O\nJFrame Name Name\n, O O\nJPanel Name Name\n, O O\nand O O\nJButtton Name Name\n. O O\n\nWhen O O\nthe O O\nButton Name Name\n( O O\nClickForSound Name Name\n) O O\nis O O\nclicked O O\n, O O\nit O O\nshould O O\nplay O O\nthe O O\nsound O O\n. O O\n\nThe O O\nerror O O\nI O O\nget O O\nis O O\nthat O O\nClass O O\nPlsWork Name Name\nis O O\nnot O O\nabstract O O\nand O O\nthus O O\ndoes O O\nnot O O\noverride O O\nabstract O O\nmethod O O\nPlsWork Name Name\n\nAlso O O\nPLEASE O O\ntalk O O\nto O O\nme O O\nlike O O\nan O O\nidiot O O\nas O O\nI O O\nhave O O\nalmost O O\nno O O\nunderstanding O O\nof O O\nwhat O O\nabstract O O\nmeans O O\nor O O\nhow O O\nto O O\nmake O O\na O O\nmethod O O\nabstract O O\n, O O\nif O O\nI O O\nwant O O\nanything O O\nto O O\nbe O O\nabstract O O\nor O O\nanything O O\nelse O O\n. O O\n\nCheck O O\nyour O O\nsyntax O O\n: O O\nactionPerformed Name Name\n!= Name Name\nactionPreformed Name Name\n. O O\n\nAdding O O\nthe O O\n@Override Name Name\nannotation O O\ncan O O\nbe O O\nhelpful O O\nin O O\nother O O\n, O O\nnon-compile O O\ntime O O\nerror O O\nsituations O O\n( O O\neg O O\nyou O O\nare O O\noverriding O O\na O O\nnon-abstract O O\nmethod O O\nof O O\na O O\nsubclass O O\n) O O\n\nWith O O\nthe O O\nfollowing O O\ngit Name Name\nhistory O O\n: O O\n\nI O O\nhave O O\nthe O O\nSHA O O\nof O O\ncommit O O\ng Name Name\n. O O\n\nNeither O O\nfeature O O\n, O O\nnor O O\nrelease O O\nare O O\navailable O O\nany O O\nlonger O O\nand O O\nI O O\nneed O O\nto O O\nfind O O\ncommit O O\nq Name Name\n, O O\nIE O O\nwhere O O\nthe O O\nrelease O O\nbranch O O\nwas O O\nmerged O O\ninto O O\nmaster O O\n. O O\n\nWith O O\nthe O O\nanswers O O\nin O O\na O O\ndifferent O O\nquestion O O\n( O O\nFind O O\nmerge O O\ncommit O O\nwhich O O\ninclude O O\na O O\nspecific O O\ncommit O O\n) O O\nI O O\ncan O O\nonly O O\nfind O O\ncommit O O\nk Name Name\n, O O\nwhere O O\nthe O O\nfeature O O\nbranch O O\nwas O O\nmerged O O\ninto O O\nthe O O\nrelease O O\nbranch O O\n. O O\n\nHow O O\ndo O O\nI O O\ngo O O\nabout O O\nthis O O\n? O O\n\nI O O\nwould O O\nsuggest O O\nthis O O\n: O O\n\n--merges Name Name\nlogs O O\nonly O O\nmerge O O\ncommits O O\n, O O\nand O O\n--ancestry-path Name Name\nlimits O O\nthe O O\ncommits O O\nto O O\nonly O O\nthose O O\non O O\nthe O O\npath O O\nbetween O O\ng Name Name\nand O O\nq Name Name\n. O O\n\nIn O O\nthis O O\ncase O O\nit O O\nshould O O\nshow O O\nyou O O\nboth O O\nk Name Name\nand O O\nq Name Name\n. O O\n\nIf O O\nthe O O\nfeature O O\nor O O\nrelease O O\nbranches O O\nhad O O\nunique O O\nnames O O\nyou O O\nshould O O\nbe O O\nable O O\nto O O\nfind O O\nq Name Name\non O O\nmaster Name Name\nby O O\nsearching O O\nits O O\nmerge O O\ncommits O O\nfor O O\nthat O O\nunique O O\nname O O\n( O O\ne.g O O\n. O O\nby O O\nusing O O\ngitk Name Name\n--merges Name Name\nand O O\nthen O O\nentering O O\na O O\nterm O O\nin O O\nthe O O\nFind Name Name\nfield O O\n) O O\nbecause O O\nGit Name Name\nby O O\ndefault O O\nrecords O O\nthe O O\nmerged O O\nbranch O O\nnames O O\nin O O\nmerge O O\ncommit O O\nmessages O O\n. O O\n\nOtherwise O O\n, O O\nyou O O\ncould O O\njust O O\nsearch O O\nfor O O\nthe O O\nfirst O O\nmerge O O\ncommit O O\non O O\nmasterthat Name Name\nhas O O\ng Name Name\nmerged O O\nwith O O\na O O\nscript O O\nsimilar O O\nto O O\nthis O O\none O O\n: O O\n\nI O O\nam O O\ntrying O O\nto O O\nappend O O\nthe O O\ncount O O\nto O O\nduplicate O O\nentries O O\nin O O\na O O\nstring Name Name\narray Name Name\n. O O\n\nI O O\nhave O O\nan O O\narray Name Name\nlike O O\nthis O O\nwhich O O\ncontains O O\nduplicate O O\nentries O O\n. O O\n\nMy O O\ndesired O O\noutput O O\nis O O\n\nWhat O O\nis O O\nthe O O\nbest O O\nway O O\nto O O\ndo O O\nthis O O\n? O O\n\nsomething O O\nlike O O\n\nnote O O\nI O O\n'm O O\nusing O O\nvery O O\nsimple O O\njavascript Name Name\nto O O\nkeep O O\nthe O O\nsolution O O\neasily O O\nreadable O O\n, O O\nunderstandable O O\n. O O\n\nNote O O\nyou O O\nhave O O\nto O O\npass O O\nover O O\nthe O O\narray Name Name\ntwice O O\n. O O\n\nFor O O\nvery O O\nlarge O O\nlists Name Name\n, O O\nthis O O\nis O O\nnot O O\nvery O O\nefficient O O\n. O O\n\nI O O\ndid O O\nn't O O\ntest O O\nthis O O\n, O O\nbut O O\nsomething O O\nlike O O\nthat O O\nshould O O\nwork O O\n. O O\n\nThis O O\nshould O O\ntell O O\nyou O O\nthe O O\ncount O O\nof O O\nall O O\nduplicates O O\n: O O\n\nBest O O\nregards O O\n! O O\n\nWe O O\nhave O O\nabout O O\n100 O O\nusers O O\nthat O O\nwere O O\ndisabled O O\nin O O\nAD O O\n, O O\nand O O\nthus O O\nDeprovisioned O O\nin O O\nOkta Name Name\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nreactivate O O\nthese O O\nusers O O\nin O O\nOkta Name Name\n. O O\n\nThey O O\nwere O O\nalready O O\nenabled O O\non O O\nAD O O\n. O O\n\nI O O\n'm O O\nusing O O\nthe O O\nPowerShell Name Name\nmodule O O\nfor O O\nOkta Name Name\nwritten O O\nby O O\nMatt O O\nEgan O O\n( O O\nhttps://github.com/mbegan/Okta-PSModule O O\n) O O\nand O O\nI O O\ncan O O\ntake O O\nthe O O\nuser O O\naccount O O\nfrom O O\ndeprovisioned O O\nto O O\nProvisioned O O\n. O O\n\nHowever O O\n, O O\nthe O O\naccount O O\nis O O\nno O O\nlonger O O\nprofiled O O\nby O O\nActive O O\nDirectory O O\n. O O\n\nIs O O\nthere O O\nan O O\nAPI Name Name\ncall O O\nthat O O\nwould O O\nallow O O\nme O O\nto O O\nmake O O\nthat O O\nfinal O O\nlink O O\n? O O\n\nIf O O\nI O O\nunderstand O O\nyour O O\nquestion O O\ncorrectly O O\n. O O\n\nYou O O\nhave O O\nAD O O\nuser O O\ndeactivated O O\nin O O\nAD O O\n, O O\nthat O O\nin O O\nturn O O\ndeprovisioned O O\nin O O\nOkta Name Name\n. O O\n\nNow O O\nwhen O O\nyou O O\nreactivate O O\nthe O O\nuser O O\nin O O\nAD O O\nthe O O\nuser O O\nand O O\nlater O O\nin O O\nOkta Name Name\n, O O\nthe O O\nuser O O\nis O O\nno O O\nlonger O O\nmastered O O\nby O O\nAD O O\n? O O\n\nIf O O\nthat O O\nis O O\nthe O O\ncase O O\n, O O\nonce O O\nyou O O\nactivate O O\nthe O O\nuser O O\nin O O\nOkta Name Name\n( O O\nvia O O\nAPI Name Name\nthe O O\nrequest O O\nwill O O\nbe O O\nPOST O O\n/api/v1/users/{{userId}}/lifecycle/activate?sendEmail=false O O\n) O O\nafter O O\nactivating O O\nin O O\nAD O O\n, O O\nyou O O\nneed O O\nto O O\nrun O O\nthe O O\nimport O O\nfor O O\nAD O O\n. O O\n\nImport O O\nwill O O\nimport O O\nreactivated O O\nuser O O\nand O O\nonce O O\nyou O O\nconfirm O O\nthe O O\nassignment O O\nuser O O\nwill O O\nbe O O\nAD O O\nmastered O O\nagain O O\n. O O\n\nI O O\nhave O O\na O O\ntable Name Name\nwith O O\none O O\nof O O\nthe O O\ncolumns Name Name\nas O O\nvarbinary Name Name\n, O O\nwhich O O\nactually O O\ncontains O O\nbase64 Name Name\nencoded O O\nstring Name Name\n. O O\n\nI O O\ncan O O\nsee O O\nits O O\ncontents O O\nusing O O\n\nHowever O O\n, O O\nI O O\nneed O O\nto O O\nconvert O O\nthe O O\nwhole O O\ncolumn Name Name\nto O O\nXMl Name Name\n, O O\nso O O\nthat O O\nthese O O\nkind O O\nof O O\ncast O O\nis O O\nnot O O\nrequired O O\nand O O\nI O O\ncan O O\nstore O O\nmuch O O\nlonger O O\nstrings Name Name\nas O O\nXML Name Name\n. O O\n\nFor O O\na O O\nsingle O O\nentry O O\nI O O\ncan O O\ndo O O\nsomething O O\nlike O O\n\nHow O O\ndo O O\nI O O\nconvert O O\nthe O O\nwhole O O\ntable Name Name\nto O O\nxml Name Name\n? O O\n\nThanks O O\n\nHow O O\nabout O O\nusing O O\nfor O O\nxml Name Name\npath O O\n? O O\n\nYou O O\ncan O O\ninclude O O\nthe O O\nappropriate O O\nannotations O O\n. O O\n\nYou O O\ncan O O\nalso O O\nhave O O\nmultiple O O\ncolumns Name Name\n. O O\n\nThe O O\ndocumentation O O\nis O O\nhere O O\n. O O\n\nThis O O\nshould O O\nwork O O\nfor O O\nyou O O\n: O O\n\nI O O\nhave O O\na O O\ntwo O O\ndimensional O O\narray Name Name\nand O O\nI O O\nca O O\nn't O O\nfigure O O\nout O O\nhow O O\nto O O\ncount O O\nthe O O\nnumber O O\nof O O\nelements O O\nin O O\nthe O O\nsecond O O\ndimension O O\nof O O\nthe O O\narray Name Name\n. O O\n\nFor O O\nexample O O\n: O O\n\nHow O O\ncan O O\nI O O\ncount O O\nthe O O\nnumber O O\nof O O\nelements O O\nin O O\n$multi_array[0][1] Name Name\nfor O O\nexample O O\n? O O\n\nThe O O\noutput O O\nof O O\n: O O\n\ncount($ALPHABET[0][0]) Name Name\n; Name Name\n\nis O O\n1 Name Name\nwhere O O\nit O O\nshould O O\nbe O O\n7 Name Name\n\nTreat O O\nevery O O\nelement O O\nas O O\narray Name Name\n\nI O O\nhope O O\nthis O O\ncan O O\nhelp O O\n\n$multiarray[0][1] Name Name\n= Name Name\n1 Name Name\n, O O\nnot O O\nan O O\narray Name Name\n. O O\n\nYou O O\ncan O O\ndo O O\ncount($multiarray[$index]) Name Name\nor O O\nsum O O\nthem O O\nall O O\nby O O\n: O O\n\nOr O O\nthe O O\nequivalent O O\n: O O\n\nHow O O\ndo O O\nI O O\nchange O O\nthe O O\nlooks O O\nof O O\nhow O O\nthe O O\nsource O O\ncode O O\nis O O\npresented O O\nin O O\ndoxygen Name Name\n? O O\n\nI O O\nmean O O\n, O O\nwhen O O\nyou O O\nclick O O\nthe O O\nlink O O\nto O O\nview O O\nthe O O\nsource O O\ncode O O\nof O O\nthe O O\nfile(s) O O\nthat O O\ngenerated O O\nthe O O\ndocumentation O O\n. O O\n\nI O O\n'm O O\ninterested O O\nin O O\nchanging O O\nthe O O\nfont O O\nsize O O\n. O O\n\nYou O O\ncan O O\nuse O O\ncustom O O\nCSS Name Name\nto O O\nstyle O O\nDoxygen Name Name\noutput O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nmake O O\na O O\ntable Name Name\nwork O O\nwith O O\nGuid Name Name\nids Name Name\ninstead O O\nof O O\nbigint Name Name\n, O O\nand O O\ndifferent O O\nname O O\nthan O O\nid Name Name\n, O O\nis O O\nthis O O\npossible O O\nto O O\nuse O O\nGuids Name Name\nand O O\ndifferent O O\nid Name Name\nname O O\nfor O O\nthe O O\nclient Name Name\nmodel O O\n? O O\n\nThanks O O\n\nI O O\nhave O O\n3 O O\ncommits O O\nand O O\ni O O\nwant O O\nto O O\nskip O O\na O O\ncommit O O\n-2 Name Name\nwhile O O\nrebasing O O\ninto O O\n1 Name Name\n\nsay O O\n\ni O O\ndid O O\ngit Name Name\nrebase Name Name\n-i Name Name\nHEAD Name Name\n~ Name Name\n3 Name Name\n\ni O O\ntried O O\nlike O O\nthis O O\n( O O\nremoved O O\nthe O O\npick O O\ncommit Name Name\n-2 Name Name\n) O O\nbut O O\nthat O O\ndeleted O O\nthe O O\ncommit Name Name\n-2 Name Name\nitself O O\nfrom O O\ngit Name Name\nlog Name Name\n:( O O\n\nSomeone O O\nplease O O\nhelp O O\nme O O\nhow O O\ncan O O\ni O O\nsquash O O\ncommit O O\n1 O O\nand O O\ncommit O O\n3 O O\nusing O O\ncommand O O\nonly O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\ncare O O\nabout O O\nthe O O\nhistory O O\nof O O\nthe O O\nbranch O O\nand O O\nthe O O\ncommits O O\n; O O\nyou O O\ncan O O\nstart O O\na O O\nbranch O O\nfrom O O\ncommit-4 Name Name\n; Name Name\ncherry O O\npick O O\n1 Name Name\nand O O\n3 Name Name\n, O O\nsquash O O\nthem O O\nand O O\nthen O O\ncherry O O\npick O O\ncommit-2 Name Name\n. O O\n\nYou O O\nwill O O\nbe O O\non O O\na O O\nnew O O\nbranch O O\nbut O O\nit O O\nwill O O\nhave O O\nthe O O\nend O O\nresult O O\nyou O O\nneed O O\n. O O\n\nAlso O O\n, O O\nI O O\nassumed O O\nthe O O\ncommits O O\nwould O O\nnot O O\nhave O O\nconflicts O O\n. O O\n\nIf O O\nI O O\n'm O O\nunderstanding O O\ncorrectly O O\n, O O\njust O O\nreorder O O\nthe O O\ncommits O O\n: O O\n\nThis O O\nwould O O\nplace O O\ncommit Name Name\n-2 Name Name\nafter O O\n-1 Name Name\nand O O\n-3 Name Name\n; O O\nput O O\n-2 Name Name\non O O\ntop O O\nif O O\nyou O O\nwant O O\nit O O\nto O O\ncome O O\nbefore O O\n. O O\n\n( O O\nCommits O O\nare O O\nevaluated O O\ntop O O\nto O O\nbottom O O\n. O O\n) O O\n\nI O O\n'm O O\ntrying O O\nto O O\ndo O O\nthis O O\nin O O\nEnterprise Name Name\nGuide Name Name\n, O O\nwith O O\na O O\ntask O O\n, O O\notherwise O O\nI O O\nwould O O\njust O O\nuse O O\na O O\ndata O O\nstep O O\n. O O\n\nIn O O\na O O\ndata O O\nstep O O\n, O O\nthis O O\nwould O O\nbe O O\n: O O\n\nThe O O\nfollowing O O\nmethod O O\nis O O\npretty O O\nsimple O O\nway O O\nto O O\nget O O\nrecords O O\npresent O O\nin O O\none O O\ntable Name Name\nand O O\nnot O O\nin O O\nthe O O\nother O O\n. O O\n\nCreated O O\ntable Name Name\nnew O O\nwith O O\nrecords O O\ncontaining O O\nsex O O\n= O O\nM O O\n, O O\nthe O O\nresult O O\nafter O O\nthe O O\nquery O O\nwill O O\nbe O O\nrecords O O\nwith O O\nsex O O\n= O O\nF O O\n. O O\n\nExample O O\n: O O\n\nWill O O\nput O O\nthe O O\ncode O O\nto O O\ntest O O\non O O\nmy O O\nactual O O\ndatasets O O\nwhich O O\nare O O\nof O O\naround O O\n100k O O\nobs O O\nand O O\nupdate O O\nthe O O\nresult O O\n. O O\n\nP.S O O\n: O O\nI O O\nknow O O\nthe O O\nquestion O O\nhas O O\nbeen O O\nasked O O\nanswered O O\nand O O\nforgotten O O\n, O O\nI O O\nwas O O\nlooking O O\nfor O O\na O O\nway O O\nto O O\ndo O O\nthe O O\nabove O O\nand O O\ncould O O\nn't O O\nfind O O\na O O\ndirect O O\nanswer O O\nany O O\nwhere O O\n. O O\n\nSo O O\n, O O\nadding O O\nso O O\nthat O O\nit O O\nmay O O\ncome O O\nhandy O O\n. O O\n\n:) O O\n\nMy O O\nfirst O O\nanswer O O\nalso O O\n. O O\n\n:) O O\n\nHere O O\n's O O\none O O\nway O O\n. O O\n\nThere O O\nare O O\nsurely O O\nmany O O\nothers O O\n. O O\n\nThis O O\nis O O\nmy O O\nmodel O O\nclass O O\n. O O\n\nDoes O O\nnHibernate Name Name\noffer O O\na O O\nway O O\nto O O\nrepresent O O\nthis O O\nwhile O O\nmaintaining O O\nthe O O\nsimple O O\npublic O O\nAPI O O\nof O O\nthe O O\nmodel O O\n? O O\n\nNot O O\nsure O O\nif O O\nit O O\nwill O O\nwork O O\nwith O O\nobservable O O\ncollection O O\n( O O\nmay O O\nneed O O\nto O O\nmap O O\nas O O\nIList Name Name\nand O O\nhandle O O\nthat O O\nbehind O O\nthe O O\nscenes O O\n) O O\nbut O O\nI O O\nthink O O\nyou O O\n'd O O\nneed O O\nto O O\ndo O O\nsomething O O\nlike O O\nthis O O\nin O O\nyour O O\nmapping O O\n: O O\n\nThe O O\nonly O O\ndrawback O O\nis O O\nit O O\ndoes O O\nrequire O O\na O O\nkeyed O O\ntable Name Name\nfor O O\nyour O O\ntag Name Name\nvalues O O\n. O O\n\nHowever O O\n, O O\nI O O\nworry O O\nthat O O\nthe O O\nsame O O\ntag Name Name\ncan O O\nappear O O\non O O\nmultiple O O\nleads O O\n. O O\n\nIf O O\nthis O O\nis O O\nthe O O\ncase O O\n, O O\nI O O\nthink O O\nyou O O\nwill O O\nwant O O\nto O O\ndefine O O\ntags Name Name\nas O O\na O O\nmany O O\nto O O\nmany O O\nwith O O\nan O O\nintermediate O O\ntable Name Name\n. O O\n\nThat O O\nwould O O\nlook O O\nsomething O O\nlike O O\nthis O O\n( O O\nrequiring O O\nan O O\nobject O O\nfor O O\nyour O O\ntag Name Name\n) O O\n: O O\n\nI O O\nwant O O\nto O O\nknow O O\nhow O O\nI O O\ncan O O\noutput O O\nconcatenated O O\nstring Name Name\nfrom O O\nmultiple O O\nSQL Name Name\nCASE Name Name\nexpressions O O\n. O O\n\nThis O O\nis O O\nmy O O\nquery O O\n: O O\n\nI O O\n'm O O\ngetting O O\nthis O O\n: O O\n\nSo O O\ninstead O O\nof O O\nthe O O\ntwo O O\ncolumns O O\nB Name Name\nand O O\nLK Name Name\n, O O\nI O O\nwant O O\nto O O\nintroduce O O\na O O\nnew O O\ncolumn Name Name\nwhich O O\nwill O O\nbe O O\ncalled O O\nAccess O O\nLevel O O\n, O O\nand O O\nif O O\nB Name Name\nis O O\nActive O O\nor O O\nLK Name Name\nis O O\nactive O O\n, O O\nadd O O\nB Name Name\nor O O\nLK Name Name\ndepending O O\nfor O O\neach O O\nprogram O O\n. O O\n\nFor O O\nexample O O\n, O O\nif O O\nB Name Name\nonly O O\nis O O\nactive O O\n, O O\noutput O O\nfor O O\n' O O\nAccess O O\nLevel O O\n' O O\ncolumn Name Name\nwill O O\nbe O O\nB Name Name\n, O O\nif O O\nboth O O\nprograms O O\nare O O\nactive O O\nthen O O\noutput O O\nwill O O\nbe O O\n' O O\nB O O\n, O O\nLK O O\n' O O\n, O O\nif O O\nLK Name Name\nis O O\nactive O O\nonly O O\n, O O\nthe O O\ncolumn Name Name\nwill O O\nhave O O\nvakue O O\nof O O\nLK Name Name\n. O O\n\nWhat O O\nare O O\nmy O O\noptions O O\nto O O\nconcatenate O O\na O O\ncolumn Name Name\nvalue O O\nfrom O O\nmultiple O O\ncase Name Name\nqueries O O\n? O O\n\nThanks O O\n, O O\nLaziale O O\n\nWrite O O\na O O\nthird O O\nCASE Name Name\nexpression O O\nthat O O\nchecks O O\nthe O O\ncombinations O O\nyou O O\ndescribe O O\nand O O\nassigns O O\nthe O O\nappropriate O O\nvalue O O\n. O O\n\nIn O O\npseudocode O O\n: O O\n\nCASE Name Name\nexpressions O O\nare O O\nevaluated O O\nin O O\norder O O\nfrom O O\ntop O O\nto O O\nbottom O O\nand O O\nresolve O O\nto O O\nthe O O\nfirst O O\nWHEN O O\ncondition O O\nthat O O\nis O O\nmet O O\n, O O\nso O O\nif O O\nboth O O\nB Name Name\nand O O\nLK Name Name\nare O O\nactive O O\n, O O\nthen O O\nthe O O\nfirst O O\ncondition O O\nwill O O\nbe O O\nmet O O\n, O O\nthe O O\nfirst O O\nresult O O\nwill O O\nbe O O\nreturned O O\n, O O\nand O O\nit O O\nwo O O\nn't O O\nmatter O O\nthat O O\nthe O O\nother O O\ntwo O O\nconditions O O\nare O O\nalso O O\nboth O O\ntrue Name Name\n. O O\n\nYou O O\ncan O O\ndo O O\nit O O\nas O O\n: O O\n\nI O O\nhave O O\nto O O\naccept O O\neither O O\ninput O O\nfrom O O\nkeyboard Name Name\nor O O\n2d Name Name\nbarcode Name Name\nscanner Name Name\n. O O\n\nThe O O\ninput O O\nis O O\nmixture O O\nof O O\nalpha O O\nnumeric O O\n, O O\nalso O O\nI O O\nwant O O\nuser O O\nto O O\nbe O O\nable O O\nto O O\nuse O O\nCtrl+v O O\nto O O\npaste O O\ntheir O O\ninput O O\n. O O\n\nCurrently O O\nif O O\nI O O\ntry O O\nCtrl+v O O\n, O O\nonly O O\nv O O\nkey O O\nis O O\ndetected O O\nand O O\nshown O O\n. O O\n\nAlso O O\nmy O O\ncursor Name Name\nautofocus O O\ndoes O O\nnot O O\nwork O O\n, O O\nno O O\nmatter O O\nwhat O O\nI O O\ntry O O\n. O O\n\nSee O O\nbelow O O\nthe O O\njavascript Name Name\n. O O\n\nand O O\nhere O O\nis O O\nthe O O\nhtml Name Name\npart O O\n. O O\n\nFormatted O O\nHTML Name Name\n: O O\n\nMy O O\nquestion O O\ncould O O\nsound O O\nlike O O\nweird O O\n, O O\nI O O\nwant O O\nto O O\ninclude O O\na O O\ntemplate O O\nin O O\na O O\nCFML Name Name\nscript O O\nbut O O\nnot O O\nas O O\na O O\ndifferent O O\nfile O O\nbut O O\na O O\nstring/text/base64 Name Name\ndata O O\nin O O\nthe O O\nsame O O\nfile O O\n. O O\n\nIs O O\nthat O O\npossible O O\nor O O\nthere O O\nis O O\na O O\nway O O\nin O O\nCFML Name Name\n? O O\n\nI O O\ncan O O\ndo O O\nthat O O\nin O O\nPHP Name Name\nwith O O\nfiles O O\nas O O\nbase64 Name Name\ndata O O\neven O O\nimages Name Name\nbase64 Name Name\nencoded O O\n. O O\n\nI O O\nthought O O\nabout O O\nsomething O O\nlike O O\n( O O\nnot O O\nworking O O\n, O O\nof O O\ncourse O O\n) O O\n: O O\n\nWhy O O\nwould O O\nI O O\ndo O O\nthat O O\n? O O\n\nTo O O\novercome O O\nerrors O O\nbetween O O\ndifferent O O\nfunctions O O\nwith O O\nsame O O\nname O O\nin O O\ndifferent O O\nCF Name Name\nversions O O\n( O O\n6 Name Name\n, O O\n7 Name Name\n, O O\n8 Name Name\n, O O\n9 Name Name\n, O O\n20 Name Name\n) O O\nbut O O\nsame O O\nnames O O\n, O O\nfor O O\nportability O O\n. O O\n\nFound O O\na O O\nway O O\nto O O\nmake O O\nit O O\nwork O O\n, O O\nnot O O\nreally O O\nwhat O O\nI O O\nwanted O O\nbut O O\nworks O O\n: O O\n\nI O O\nhave O O\ncustom O O\ncontrol O O\nand O O\nI O O\nhave O O\ninterface O O\nthis O O\ncontrol O O\nexposes O O\nto O O\nit O O\n's O O\nusers O O\n. O O\n\nNeed O O\nto O O\nimplement O O\nit O O\nlike O O\nso O O\n: O O\n\nSo O O\n, O O\nhow O O\ndo O O\nI O O\ntell O O\nthat O O\nthis O O\ngeneric O O\nmethod O O\nis O O\nreally O O\nimplementation O O\nof O O\ninterface O O\n? O O\n\nThe O O\ntype O O\nparameter O O\ndoes O O\nn't O O\nhave O O\nany O O\nbearing O O\none O O\nway O O\nor O O\nanother O O\non O O\nthe O O\nderived O O\nclass O O\nbeing O O\nan O O\nimplementation O O\nof O O\nthe O O\ninterface O O\n. O O\n\nfor O O\ninstance O O\n: O O\n\nBot O O\nA Name Name\nand O O\nB Name Name\nare O O\nimplementations O O\nof O O\nI Name Name\n. O O\n\nIf O O\nyou O O\nright-click O O\non O O\nthe O O\ninterface O O\nand O O\nchoose O O\nimplement O O\ninterface O O\n, O O\nit O O\nwill O O\ndo O O\nit O O\nfor O O\nyou O O\n, O O\nbut O O\nthe O O\nway O O\nyou O O\nhave O O\nthe O O\ninterface O O\ndesigned O O\n, O O\nit O O\nwont O O\nmatch O O\nthe O O\ninterface O O\n's O O\ndefinition O O\n. O O\n\nTo O O\nmake O O\nthem O O\nmatch O O\n, O O\nyou O O\ncan O O\ndo O O\nthe O O\nfollowing O O\n( O O\nnow O O\nthe O O\nimplementation O O\nwill O O\nmatch O O\nthe O O\nsignature O O\nof O O\nthe O O\ninterface O O\n) O O\n: O O\n\nI O O\nhave O O\nstandard O O\ntop-level O O\nGit Name Name\nrepository O O\nwith O O\nGit Name Name\nsubmodules O O\n. O O\n\nIt O O\nis O O\nknown O O\nthat O O\nwhen O O\ncommit O O\nid O O\nrecorded O O\nby O O\ntop-level O O\nrepository O O\ndoes O O\nnot O O\nmatch O O\nactual O O\nHEAD Name Name\nfor O O\nspecific O O\nsubmodule O O\n, O O\ngit Name Name\nstatus Name Name\nfrom O O\ntop-level O O\nrepository O O\nreports O O\nit O O\nby O O\n( O O\nnew O O\ncommits O O\n) O O\n( O O\nfor O O\nexample O O\n) O O\n: O O\n\nProblem O O\n\nNow O O\n, O O\nin O O\nsome O O\ncircumstances O O\n, O O\ngit Name Name\nstatus Name Name\nstops O O\nreporting O O\n( O O\nnew O O\ncommits O O\n) O O\nfor O O\njust O O\nsome O O\nof O O\nthe O O\nsubmodules O O\neven O O\nif O O\nit O O\nis O O\nclear O O\nthat O O\nthere O O\nare O O\nnew O O\ncommits O O\n- O O\nit O O\nmay O O\nincorrectly O O\nstop O O\nreporting O O\n( O O\nnew O O\ncommits O O\n) O O\nfor O O\nsubmodule-a.git Name Name\nwhile O O\nstill O O\nshowing O O\nproperly O O\n( O O\nnew O O\ncommits O O\n) O O\nfor O O\nsubmodule-b.git Name Name\n. O O\n\nI O O\ncan O O\nverify O O\nthat O O\ncommit O O\nids O O\ndo O O\nnot O O\nmatch O O\n: O O\n\nWhat O O\ntop-level O O\nrepository O O\n\" O O\nthinks O O\n\" O O\n: O O\n\nWhat O O\nsubmodule O O\nrepository O O\n\" O O\nthinks O O\n\" O O\n: O O\n\nBy O O\nthe O O\nway O O\n, O O\nboth O O\ntop-level O O\nand O O\nsubmodule O O\nrepositories O O\nare O O\notherwise O O\nhave O O\nclean O O\nstatus O O\n: O O\n\nTop-level O O\n( O O\nnote O O\nmissing O O\nentry O O\nfor O O\nsubmodule-a.git Name Name\n) O O\n: O O\n\nSubmodule O O\n: O O\n\nThis O O\nis O O\na O O\nproblem O O\nbecause O O\nI O O\n'm O O\nalso O O\nunable O O\nto O O\nupdate O O\n( O O\nas O O\nin O O\ngit Name Name\nadd Name Name\n--all Name Name\n&& Name Name\ngit Name Name\ncommit Name Name\n) O O\ncommit O O\nids O O\nfor O O\nsuch O O\nsubmodules O O\nrecorded O O\nby O O\ntop-level O O\nrepository O O\nbecause O O\nit O O\nsimply O O\n\" O O\nthinks O O\n\" O O\nthere O O\nis O O\nnothing O O\nto O O\nupdate O O\n. O O\n\nPlatform/Version O O\n: O O\nGNU/Linux Name Name\n4.2.6-200.fc22.x86_64 Name Name\n, O O\ngit Name Name\nversion O O\n2.4.3 Name Name\n( O O\nalso O O\nconfirmed O O\non O O\n2.5.0 Name Name\n) O O\n. O O\n\nQuestion O O\n\nIs O O\nit O O\na O O\nbug O O\nor O O\nthere O O\nis O O\nan O O\noption O O\nsomewhere O O\nwhich O O\nmay O O\ndisable O O\nsuch O O\n( O O\nnew O O\ncommits O O\n) O O\nreport O O\n? O O\n\nI O O\nre-confirmed O O\nthe O O\nissue O O\n. O O\n\nThen O O\nI O O\n( O O\nin-place O O\n) O O\nupgraded O O\nOS O O\nto O O\nrecently O O\nreleased O O\nFedora Name Name\n24 Name Name\n( O O\nwhich O O\nhas O O\nGit Name Name\n2.7.4 Name Name\nby O O\ndefault O O\n) O O\n- O O\nthe O O\nsame O O\nfilesystem O O\ncontent O O\nwas O O\npreserved O O\n( O O\nrepositories O O\nand O O\nconfiguration O O\n) O O\n. O O\n\nAnd O O\nthe O O\nissue O O\ndisappeared O O\n. O O\n\nSo O O\n, O O\nit O O\nmust O O\nhave O O\nbeen O O\na O O\nbug O O\nin O O\nprevious O O\nversions O O\nof O O\ngit Name Name\n. O O\n\nOne O O\nretrospective O O\nobservation O O\n- O O\nI O O\nnever O O\nmanaged O O\nto O O\nreproduce O O\nthings O O\nmanually O O\nusing O O\nshort O O\nbranch O O\nnames O O\n. O O\n\nThe O O\nproblem O O\nappeared O O\nin O O\nCI O O\nwhen O O\nmany O O\nautomatic O O\nbranches O O\nwere O O\ncreated O O\nover O O\nthe O O\ntime O O\n~ O O\n100 O O\n( O O\none O O\nper O O\nbuild O O\n) O O\nwith O O\nlong O O\nnames O O\n~ O O\n120+ O O\ncharacters O O\n. O O\n\nThese O O\ncondition O O\nmight O O\nhit O O\nsome O O\nunhandled O O\nedge O O\ncases O O\nin O O\nGit Name Name\n. O O\n\nI O O\nhave O O\na O O\nJava Name Name\nEE Name Name\nproject O O\nthat O O\nuses O O\nlots O O\nof O O\nhtml Name Name\n, O O\njavascript Name Name\n, O O\njava Name Name\netc O O\n. O O\n\nI O O\n'm O O\nlooking O O\nto O O\nuse O O\nJQuery Name Name\nto O O\nload O O\nup O O\nan O O\nhtml Name Name\ntemplate O O\ninto O O\na O O\ndiv Name Name\ntag O O\nhowever O O\nI O O\n'm O O\nunsure O O\nof O O\nwhere O O\nthe O O\nrelative O O\npath O O\nof O O\nthe O O\nload Name Name\nmethod O O\nstarts O O\nfrom O O\n. O O\n\nThe O O\nhtml Name Name\nfile O O\nI O O\n'm O O\ntrying O O\nto O O\nload O O\nis O O\nwithin O O\nthe O O\nproject O O\nbut O O\nin O O\na O O\ndifferent O O\ndirectory O O\n. O O\n\nWould O O\nI O O\nhave O O\nto O O\nback O O\ndown O O\nand O O\ngo O O\nback O O\nup O O\nto O O\nget O O\nto O O\nthe O O\npath O O\n? O O\n\nAnd O O\nif O O\nthere O O\nis O O\nan O O\neasy O O\nway O O\nto O O\nfind O O\nout O O\nby O O\nsome O O\ntype O O\nof O O\ndebugging O O\nmethods O O\nof O O\nwhat O O\nthe O O\ncorrect O O\npath O O\nis O O\n... O O\n. O O\nthat O O\nwould O O\nbe O O\nBONUS O O\n! O O\n\nThe O O\njavascript Name Name\n( O O\nJQuery Name Name\n) O O\nthat O O\nits O O\nusing O O\nis O O\nloaded O O\nin O O\n, O O\nthe O O\nline O O\nbelow O O\nis O O\nalso O O\nin O O\nanother O O\nfile O O\n. O O\n\nI O O\nhave O O\nsomething O O\nlike O O\nthe O O\nfollowing O O\n\nI O O\nhope O O\nI O O\nexplained O O\nthis O O\nclearly O O\n. O O\n\nI O O\nfeel O O\nlike O O\nI O O\nkeep O O\nchanging O O\nthe O O\npath O O\nbut O O\nget O O\nnothing O O\n. O O\n\nI O O\n'm O O\ntaking O O\nstabs O O\nin O O\nthe O O\ndark O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nJavascript Name Name\nruns O O\nin O O\nthe O O\nbrowser Name Name\n, O O\nit O O\nhas O O\nno O O\nknowledge O O\nof O O\nyour O O\nJava Name Name\nEE Name Name\nproject O O\n. O O\n\nYou O O\ncan O O\nopen O O\nup O O\nyour O O\nbrowsers Name Name\nconsole Name Name\nand O O\nwrite O O\nthis O O\non O O\nthe O O\npage O O\nto O O\nsee O O\n: O O\n\nIt O O\ndepends O O\non O O\nthe O O\npage O O\n's O O\nurl O O\nyou O O\nare O O\nrunning O O\nthe O O\ncode O O\non O O\n. O O\n\nNote O O\nthat O O\n\" Name Name\n\\ Name Name\n\" Name Name\nis O O\nescape O O\ncharacter O O\nin O O\njavascript Name Name\nstrings Name Name\n. O O\n\nYou O O\nprobably O O\nwanted O O\n\" Name Name\n/ Name Name\n\" Name Name\nthere O O\n. O O\n\nYou O O\ncan O O\nspecify O O\nthe O O\nabsolute O O\nurl O O\nby O O\nstaring O O\nit O O\nwith O O\na O O\nslash Name Name\n. O O\n\nwill O O\nreference O O\nhttp://www.[yourwebsite].com/src/main/webapp/resources/js/template/Event/EventMainTemplate.html O O\n\nThat O O\nhas O O\ncaused O O\nme O O\na O O\nlot O O\nof O O\ntrouble O O\nbefore O O\n\nI O O\nhave O O\ntried O O\nvarious O O\nfailed O O\nmethods O O\nfor O O\nthese O O\nby O O\nother O O\nsimilar O O\nquestions O O\n. O O\n\nHopefully O O\n, O O\ny'all O O\ncan O O\nhelp O O\nme O O\n. O O\n\nI O O\nneed O O\nhelp O O\nin O O\nthe O O\npart O O\nwhere O O\nsocket Name Name\nreceives O O\nan O O\nevent O O\n. O O\n\nPlease O O\ncomment O O\nif O O\nyou O O\nrequire O O\nany O O\nmore O O\ndetails O O\nfrom O O\nme O O\n\nYou O O\ncan O O\ntry O O\nthis O O\n, O O\nprovided O O\n#messages Name Name\nis O O\nthe O O\nscroll-able O O\narea O O\nin O O\nyour O O\nDOM Name Name\n. O O\n\nwrap O O\nthe O O\nul.messages Name Name\nin O O\na O O\ndiv Name Name\nwith O O\na O O\nclass Name Name\n= Name Name\n\" Name Name\nmsg-con Name Name\n\" Name Name\n\nnow O O\nadd O O\nthe O O\njavascript Name Name\n\nhope O O\nthis O O\nworks O O\n.. O O\n. O O\n\nGiven O O\nthree O O\nmajor O O\ncompeting O O\napplications O O\neach O O\nimplementing O O\na O O\nslightly O O\ndifferent O O\ndata O O\nschema O O\nfor O O\nthe O O\nsame O O\nproblem O O\ndomain O O\n, O O\nI O O\nam O O\nfaced O O\nwith O O\nthe O O\ntask O O\nof O O\nimplementing O O\n: O O\n\na O O\n\" O O\ncanonical O O\n\" O O\ndata O O\nschema O O\nexpressive O O\nenough O O\nto O O\nrepresent O O\nsomething O O\nlike O O\nthe O O\nintersection O O\nset O O\nof O O\nfeatures O O\nof O O\nall O O\n3 O O\napplications O O\nas O O\nwell O O\nas O O\nadditional O O\ndetails O O\n( O O\nmeta O O\ndata O O\n) O O\n\nconverters O O\nfor O O\ndoing O O\n( O O\nbidirectional O O\n) O O\ndata O O\nexchange O O\nbetween O O\nthose O O\n3 O O\napplications O O\nand O O\nthe O O\ncanonical O O\nschema O O\n\nHow O O\nI O O\ncurrently O O\napproach O O\nthe O O\ntask O O\n\nThe O O\ncanonical O O\nschema O O\nis O O\ndefined O O\nusing O O\nXSD O O\nand O O\nclosely O O\nresembles O O\nthe O O\ndata O O\nschema O O\nof O O\none O O\nof O O\nthe O O\n3 O O\napplications O O\n, O O\nlet O O\n's O O\ncall O O\nit O O\nA Name Name\n. O O\n\nThis O O\nrenders O O\ndata O O\nexchange O O\nwith O O\nA Name Name\ntrivial O O\n. O O\n\nIn O O\norder O O\nto O O\nallow O O\nfor O O\na O O\nbidirectional O O\ndata O O\nexchange O O\nwith O O\napplications O O\nB Name Name\nand O O\nC Name Name\n( O O\ncreate O O\nsome O O\nstate O O\nin O O\nA Name Name\n, O O\nload O O\nit O O\ninto O O\nB Name Name\n, O O\nalter O O\nit O O\nin O O\nB Name Name\n, O O\nload O O\nthe O O\naltered O O\nstate O O\ninto O O\nA O O\n) Name Name\n, O O\nI O O\ntry O O\nto O O\nmap O O\nsimples O O\nstates O O\nin O O\nA Name Name\nonto O O\nmore O O\ncomplex O O\nstates O O\nin O O\nB/C Name Name\nwhich O O\ncan O O\nbe O O\nidentified O O\nand O O\ndeconstructed O O\nin O O\nthe O O\nreverse O O\nmapping O O\n. O O\n\nWhy O O\nI O O\nwant O O\nto O O\nchange O O\nmy O O\napproach O O\n\nMost O O\nof O O\nthe O O\nschema O O\nmappings O O\nare O O\npretty O O\ntrivial O O\n( O O\nthe O O\nname O O\nof O O\nan O O\nobject O O\nin O O\nA Name Name\nsimply O O\nmaps O O\nto O O\nthe O O\nname O O\nof O O\nthe O O\nobject O O\nin O O\nB O O\n) Name Name\n, O O\nso O O\nI O O\nwould O O\nlike O O\nto O O\navoid O O\nwriting O O\na O O\nlot O O\nof O O\ntrivial O O\ncode O O\nby O O\nhand O O\n. O O\n\nI O O\nimagine O O\nthat O O\nthis O O\ntrivial O O\ncode O O\ncould O O\nbe O O\ngenerated O O\ngiven O O\na O O\nformalized O O\nmapping O O\nbetween O O\nthe O O\ndata O O\nschemes O O\n. O O\n\nFor O O\nthe O O\nnontrivial O O\nparts O O\nof O O\nthe O O\nmapping O O\n( O O\nlike O O\nthe O O\none O O\ndesribed O O\nabove O O\n) O O\n, O O\nI O O\nexpect O O\nlots O O\nof O O\nchanges O O\nin O O\nthe O O\nfuture O O\nsimply O O\nbecause O O\nit O O\nseems O O\nso O O\narbitrary O O\n. O O\n\nIn O O\nmany O O\ncases O O\na O O\nspecific O O\nconvention O O\nfor O O\nmapping O O\nstates O O\nin O O\nA Name Name\nonto O O\nmore O O\ncomplex O O\nstates O O\nin O O\nB/C Name Name\nmight O O\nrun O O\ninto O O\na O O\ndead O O\nend O O\nat O O\nsome O O\npoint O O\n. O O\n\nFor O O\nexample O O\nit O O\nmight O O\nbecome O O\nnecessary O O\nfor O O\nusers O O\nto O O\nchange O O\nthe O O\n\" O O\nmirrored O O\nsubspace O O\n\" O O\nlabel O O\nand O O\ntherefore O O\nanother O O\napproach O O\nfor O O\nidentifying O O\nconversion O O\nartifacts O O\nmight O O\nbe O O\nnecessary O O\n. O O\n\nI O O\nimagine O O\nthat O O\na O O\nformalized O O\nmapping O O\ncould O O\nbe O O\na O O\ntool O O\nto O O\ntransparently O O\nmanage O O\nthose O O\nconventions O O\n. O O\n\nMaybe O O\na O O\nreasoner O O\ncould O O\neven O O\nautomatically O O\nspot O O\nincoherent O O\n, O O\ninconsistent O O\nmappings O O\n. O O\n\nIt O O\nmight O O\nalso O O\nallow O O\nme O O\nto O O\nmore O O\neasily O O\ndiscuss O O\nthe O O\nmapping O O\nwith O O\ndomain O O\nexperts O O\nand O O\nusers O O\n. O O\n\nQuestions O O\n\nFrom O O\nwhat O O\nI O O\nread O O\nabout O O\nontologies O O\nI O O\nhave O O\nthe O O\nimpression O O\nthat O O\nwhat O O\nI O O\nwant O O\nis O O\nan O O\nontology O O\n. O O\n\nIs O O\nthis O O\ncorrect O O\n? O O\n\nAs O O\nI O O\nunderstand O O\nit O O\n, O O\nusing O O\nan O O\nontology O O\nto O O\ndescribe O O\nthe O O\nmapping O O\nwould O O\nalso O O\nrequire O O\nme O O\nto O O\nexpress O O\nthe O O\ndata O O\nschemes O O\nthemselves O O\nin O O\nthe O O\nontology O O\n( O O\nso O O\na O O\nrelation O O\n\" O O\nmaps O O\nto O O\n\" O O\ncan O O\nreference O O\na O O\ntype O O\nfrom O O\nA Name Name\nand O O\na O O\ntype O O\nfrom O O\nB Name Name\n) O O\n. O O\n\nSince O O\nthose O O\nschemes O O\nare O O\ntaken O O\nfrom O O\nlong-lived O O\napplications O O\n, O O\nthey O O\nare O O\nnot O O\nalways O O\ncoherent O O\n. O O\n\nFor O O\nexample O O\n, O O\na O O\n\" O O\nfeature O O\n\" O O\nin O O\nthe O O\napplication O O\nmight O O\ncause O O\nsome O O\nstate O O\nto O O\nhave O O\na O O\ndifferent O O\nsemantic O O\nthat O O\nyou O O\nwould O O\nexpect O O\nfrom O O\nthe O O\nsemantics O O\nof O O\nits O O\nconstituents O O\n. O O\n\nCan O O\nexisting O O\ntools O O\nhelp O O\nme O O\nwith O O\nmanaging O O\nthose O O\ncomplexities O O\n? O O\n\nI O O\nexpect O O\nthat O O\nI O O\nwould O O\nrequire O O\nsome O O\nadditional O O\nmachinery O O\ninside O O\nthe O O\nontology O O\nto O O\ndescribe O O\nsomething O O\nlike O O\n-taken O O\nfrom O O\nthe O O\nexample O O\nabove O O\n- O O\nthe O O\ndifference O O\nbetween O O\na O O\n\" O O\npermanent O O\nmirrored O O\nsubspace O O\n\" O O\nand O O\na O O\n\" O O\ndissipating O O\nmirrored O O\nsubspace O O\n\" O O\n( O O\ntwo O O\ntypes O O\n+ O O\na O O\nspecial O O\nrelation O O\nreconnecting O O\nthem O O\n? O O\n) O O\n. O O\n\nWould O O\nthis O O\nbe O O\nmuch O O\neffort O O\nto O O\ndo O O\n? O O\n\nDo O O\navailable O O\nontology O O\nlanguages O O\nprovide O O\nsomething O O\nout-of-the-box O O\nto O O\nexpress O O\nthis O O\n? O O\n\nIs O O\nthis O O\napplication O O\nof O O\nontologies O O\na O O\ncommon O O\napplication O O\nfor O O\nontologies O O\nor O O\nis O O\nit O O\na O O\ncorner O O\ncase O O\n? O O\n\nDo O O\nyou O O\nknow O O\nof O O\ncompanies O O\nwho O O\nprovide O O\nservices O O\nfor O O\nthis O O\napplication O O\n? O O\n\nWhich O O\ntools O O\nwould O O\nyou O O\nsuggest O O\nfor O O\ncreating O O\nthe O O\nontology O O\n? O O\n\nI O O\nassume O O\nthere O O\nare O O\nno O O\noff-the-shelf O O\ntools O O\navailable O O\nfor O O\nthe O O\ncode O O\ngeneration O O\nmentioned O O\n. O O\n\nSo O O\nhow O O\nwould O O\nyou O O\napproach O O\nthe O O\ncode O O\ngeneration O O\ntask O O\n? O O\n\nAbstracting O O\na O O\ntype O O\nsystem O O\n, O O\na O O\nset O O\nof O O\ninterfaces O O\n, O O\nand O O\nrules O O\nfor O O\ntransformation O O\nis O O\ndefined O O\nas O O\nsubset O O\nof O O\nontology O O\ncreation O O\nknown O O\nas O O\na O O\nmeta-model O O\n. O O\n\nThe O O\nMeta O O\nObject O O\nFacility O O\n( O O\nMOF O O\n) O O\nis O O\nan O O\nexample O O\n: O O\n\nTopic O O\nMaps O O\nare O O\nanother O O\n: O O\n\nReferences O O\n\nInfoGrid O O\nWeb O O\nGraph O O\nDatabase O O\n: O O\nWhat O O\nare O O\nthe O O\ndifferences O O\nbetween O O\na O O\nvocabulary O O\n, O O\na O O\ntaxonomy O O\n, O O\na O O\nthesaurus O O\n, O O\nan O O\nontology O O\n, O O\nand O O\na O O\nmeta-model O O\n? O O\n\nMeta O O\nObject O O\nFacility O O\n( O O\nMOF O O\n) O O\n\nSpecification O O\n( O O\npdf Name Name\n) O O\n\nTopic O O\nMaps O O\nNow O O\n\nAn O O\nIntroduction O O\nto O O\nTopic O O\nMaps O O\n\nTM4J O O\n- O O\nTopic O O\nMaps O O\nFor O O\nJava Name Name\n\nCode O O\nGeneration O O\nwith O O\nOpenDDS Name Name\n, O O\nPart O O\nI O O\n: O O\n: O O\nOCI O O\n\nPaws O O\n- O O\nA O O\nPerl Name Name\nSDK Name Name\nfor O O\nAWS Name Name\n( Name Name\nAmazon Name Name\nWeb Name Name\nServices Name Name\n) Name Name\nAPIs Name Name\n- O O\nmetacpan.org O O\n\nI O O\nhave O O\na O O\nsdk Name Name\nthat O O\ncan O O\nbe O O\nintegrated O O\nin O O\nan O O\napplication O O\n. O O\n\nServer O O\nfor O O\nour O O\nsdk Name Name\nwants O O\nto O O\nuse O O\nsingle O O\nGCM Name Name\nId O O\nto O O\nsend O O\npush Name Name\nnotification Name Name\n. O O\n\nHow O O\nto O O\ntackle O O\nthe O O\nscenario O O\nwhere O O\nmy O O\nsdk Name Name\nis O O\nintegrated O O\nin O O\ntwo O O\napplications O O\nin O O\nsame O O\nphone Name Name\nand O O\nas O O\nsdk Name Name\nin O O\none O O\napplication O O\nregisters O O\nGCM Name Name\n, O O\nthe O O\nGCM Name Name\nregistered O O\nfrom O O\nsdk Name Name\nin O O\nother O O\napplication O O\nexpires O O\n? O O\n\nFYI O O\nI O O\nhave O O\nreviewed O O\nthis O O\nanswer O O\nAndroid Name Name\nGCM Name Name\n: O O\nsame O O\nsender O O\nid O O\nfor O O\nmore O O\napplication O O\nbut O O\nthey O O\nare O O\nconsidering O O\nthe O O\napp O O\nis O O\ninstalled O O\nin O O\ndifferent O O\ndevice O O\n. O O\n\nYou O O\ndid O O\nnot O O\nget O O\nthe O O\nanswer O O\n. O O\n\nWhat O O\nmatters O O\nis O O\nregistration Name Name\nId Name Name\nof O O\nthe O O\nclient Name Name\n( O O\napp O O\n) O O\n. O O\n\nAs O O\nlong O O\nas O O\nyou O O\ngot O O\nit O O\ndifferent O O\nper O O\napp O O\n, O O\nthen O O\nit O O\ndoes O O\nnot O O\nmatter O O\nwhere O O\nit O O\nis O O\ninstalled O O\nand O O\nusing O O\n( O O\nor O O\nnot O O\n) O O\nsame O O\nsender O O\nid O O\nis O O\nalso O O\nirrelevant O O\n. O O\n\nI O O\nca O O\nn't O O\nfind O O\nit O O\nin O O\nthe O O\nGraph Name Name\nAPI Name Name\n, O O\nis O O\nthere O O\nsome O O\nway O O\nto O O\nget O O\nthe O O\nalternate O O\nname O O\nsomeone O O\nfills O O\nout O O\nin O O\ntheir O O\nAccount O O\nSettings O O\n? O O\n\nDo O O\nyou O O\nmean O O\nthe O O\nuser O O\n's O O\n' O O\nusername Name Name\n' O O\n? O O\n\nIt O O\n's O O\na O O\nfield O O\nin O O\nthe O O\nUser Name Name\nGraph Name Name\nObject Name Name\n. O O\n\nFor O O\nexample O O\n, O O\nif O O\nyou O O\nwant O O\n' Name Name\nbtaylor Name Name\n' Name Name\nreturned O O\nfor O O\nthis O O\nuser O O\n, O O\nhttps://www.facebook.com/btaylor O O\n, O O\nyou O O\n'd O O\ngrab O O\nthe O O\n' O O\nusername Name Name\n' O O\nfield O O\nfrom O O\nthe O O\nUser Name Name\nGraph Name Name\nObject Name Name\n, O O\nas O O\nin O O\nthis O O\nexample O O\n: O O\nhttps://graph.facebook.com/btaylor O O\n. O O\n\nIt O O\n's O O\nnot O O\ncurrently O O\npossible O O\nto O O\naccess O O\nthis O O\nfield O O\nvia O O\nthe O O\nAPI Name Name\nby O O\nany O O\nmeans O O\ni O O\n'm O O\naware O O\nof O O\n, O O\nyou O O\ncould O O\nfile O O\na O O\nwishlist O O\nitem O O\nin O O\nthe O O\nbug O O\ntracker O O\n, O O\nit O O\nmay O O\nget O O\npicked O O\nup O O\nand O O\nimplemented O O\n. O O\n\nI O O\n'm O O\nusing O O\nbootstrap Name Name\nwith O O\nDjango Name Name\n. O O\n\nThough O O\nI O O\n'm O O\ngood O O\nin O O\nPython Name Name\n, O O\nI O O\n'm O O\nstruggling O O\nto O O\nfigure O O\nout O O\nsome O O\nbasic O O\nthings O O\nlike O O\nfile O O\nuploads/forms O O\nin O O\nbootstrap Name Name\n. O O\n\nIs O O\nthere O O\nan O O\nexample O O\nto O O\ndo O O\nthat O O\n? O O\n\nAlso O O\n, O O\nis O O\nthere O O\nany O O\nparticular O O\nreason O O\nfor O O\nusing O O\nFileField Name Name\nin O O\nDjango Name Name\nmodels O O\n? O O\n\nHave O O\nyou O O\ntried O O\nthe O O\nFile O O\nUploads O O\ndocumentation O O\n\nDjango Name Name\nCripsy Name Name\nforms Name Name\nwill O O\nhelp O O\nyou O O\nwith O O\nBootstrap Name Name\nforms O O\n. O O\n\nThe O O\nFileField Name Name\n( O O\ndocs O O\n) O O\nwill O O\nautomatically O O\nupload O O\nand O O\nsave O O\nthe O O\nfile O O\nto O O\nthe O O\nmodel O O\nalong O O\nwith O O\ngiving O O\nyou O O\nvarious O O\nbit O O\nof O O\nadditional O O\nfunctionality O O\nsuch O O\nas O O\nwhere O O\nto O O\nupload O O\nto O O\n, O O\ngetting O O\nthe O O\nabsolute O O\nurl O O\nfor O O\nthe O O\nfile O O\nand O O\nthe O O\nability O O\nto O O\ndelete O O\nthe O O\nfile O O\nfrom O O\nthe O O\nmodel O O\nobject O O\n. O O\n\nI O O\nam O O\nusing O O\na O O\ncommand O O\nwhich O O\nallows O O\nme O O\nto O O\nuse O O\na O O\nclass O O\nfrom O O\na O O\n.jar Name Name\nfile O O\n, O O\nbut O O\nI O O\nam O O\nnot O O\nreally O O\nsure O O\nof O O\nthe O O\nmeaning O O\nof O O\nthe O O\nwhole O O\ncommand O O\n. O O\n\nI O O\nalso O O\nwanted O O\nto O O\ntest O O\nmy O O\nprograms O O\nfrom O O\nEclipse Name Name\n, O O\nbut O O\nwithout O O\nunderstanding O O\nfully O O\nit O O\n, O O\nit O O\n's O O\ndifficult O O\nto O O\ncustomise O O\nthe O O\nrun O O\nconfigurations O O\n. O O\n\nThe O O\ncommand O O\nis O O\nthe O O\nfollowing O O\n: O O\n\nI O O\nhave O O\na O O\nfew O O\nquestions O O\n: O O\n\nWhat O O\n's O O\nthe O O\nmeaning O O\nof O O\n: Name Name\n. Name Name\nafter O O\nthe O O\n.jar Name Name\nlibrary O O\n? O O\n\nThe O O\nclass O O\ntransport.FileSender Name Name\nbasically O O\nallows O O\nme O O\nto O O\ntest O O\nby O O\nclass O O\nMGBNSender Name Name\n, O O\nbut O O\nso O O\nfar O O\nI O O\nhave O O\nnot O O\nmanage O O\nto O O\ntest O O\nit O O\nfrom O O\nEclipse Name Name\n. O O\n\nCould O O\nyou O O\nplease O O\nhelp O O\nme O O\nhow O O\nshould O O\nI O O\ndo O O\nit O O\n? O O\n\nI O O\nhave O O\nalready O O\nimported O O\nthe O O\n.jar Name Name\nfile. O O\n. O O\n\nThe O O\n. Name Name\nadds O O\nthe O O\ncurrent O O\ndirectory O O\nto O O\nthe O O\nclass-path O O\n. O O\n\nYou O O\nneed O O\nthat O O\nif O O\nyou O O\nhave O O\nany O O\ncompiled O O\nJava Name Name\nsource O O\nfiles O O\n( O O\ne.g O O\n. O O\nclasses O O\n) O O\nin O O\nyour O O\nlocal O O\ntree O O\n( O O\nfor O O\nexample O O\n, O O\nwhen O O\ndeveloping O O\n, O O\nyou O O\nmight O O\nhave O O\nyour O O\nMain Name Name\n, O O\nor O O\nsome O O\nother O O\n, O O\nclass O O\nin O O\nyour O O\ncurrent O O\ndirectory O O\n) O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\ndetermine O O\nthe O O\nmost O O\nrecently O O\npast O O\nday O O\nof O O\nthe O O\nweek O O\n, O O\nbased O O\non O O\nany O O\ngiven O O\nmoment O O\n. O O\n\nExample O O\n1 O O\n: O O\nGiven O O\nthis O O\nmoment O O\n— O O\nlet O O\n's O O\nsay O O\nSun Name Name\nOct Name Name\n2 Name Name\n2016 Name Name\n15:30:30 Name Name\nEST Name Name\n— O O\nhow O O\ndo O O\nI O O\ndetermine O O\nthe O O\ndate O O\nof O O\nthe O O\nmost O O\nrecently O O\npast O O\nFriday Name Name\nat Name Name\n20:00:00 Name Name\nMST Name Name\n? O O\n\nAnswer O O\n1 O O\n: O O\nIn O O\nthis O O\ncase O O\n, O O\nI O O\n'd O O\nbe O O\nlooking O O\nfor O O\nFriday Name Name\n, Name Name\nSept Name Name\n30 Name Name\n, Name Name\n2016 Name Name\n. O O\n\nExample O O\n2 O O\n: O O\nWhat O O\nabout O O\nthe O O\nmost O O\nrecently O O\npast O O\nSunday Name Name\nat Name Name\n21:00:00 Name Name\nEST Name Name\n? O O\n\nAnswer O O\n2 O O\n: O O\nThat O O\n'd O O\nbe O O\nSunday Name Name\n, Name Name\nSep Name Name\n25 Name Name\n, Name Name\n2016 Name Name\n. O O\n\nExample O O\n3 O O\n: O O\nWhat O O\nabout O O\nthe O O\nmost O O\nrecently O O\npast O O\nSunday Name Name\nat Name Name\n14:30:30 Name Name\nMST Name Name\n? O O\n\nAnswer O O\n3 O O\n: O O\nThat O O\n'd O O\nbe O O\nSunday Name Name\n, Name Name\nSep Name Name\n25 Name Name\n, Name Name\n2016 Name Name\n. O O\n\nYou O O\ncould O O\nhave O O\na O O\nlook O O\nat O O\nthe O O\nphp Name Name\nDateTime Name Name\nAPI O O\nextension O O\ncalled O O\nCarbon Name Name\n. O O\n\nhttps://packagist.org/packages/nesbot/carbon O O\n\nIf O O\nyou O O\ninstall O O\nit O O\nvia O O\nComposer Name Name\nyou O O\ncould O O\nsimply O O\nwrite O O\nsomething O O\nlike O O\n.. O O\n. O O\n\nHere O O\nis O O\na O O\ngreat O O\ntutorial O O\nseries O O\nby O O\nAlex O O\nfrom O O\nCodecourse Name Name\non O O\nworking O O\nwith O O\nit O O\n.. O O\n. O O\n\nCarbon Name Name\nTutorial O O\n\nThis O O\nis O O\nmy O O\nfirst O O\ntime O O\non O O\nstackexchange Name Name\n, O O\nfacing O O\na O O\nproblem O O\nI O O\nhave O O\nn't O O\nbeen O O\nable O O\nto O O\nfind O O\na O O\nsolution O O\nto O O\nwith O O\nnumerous O O\nhours O O\nspent O O\non O O\nGoogle Name Name\n. O O\n\nApologies O O\nin O O\nadvance O O\nfor O O\nthe O O\nlack O O\nof O O\nmore O O\nimages Name Name\n, O O\nstackexchange Name Name\nwill O O\nnot O O\nallow O O\nme O O\nto O O\nmore O O\nphotos Name Name\nuntil O O\nmy O O\nreputation O O\nis O O\nhigher O O\n. O O\n\nI O O\nneed O O\nto O O\nget O O\nresults O O\nfrom O O\na O O\n.do Name Name\npage O O\n: O O\n\nhttp://webapps2.rrc.state.tx.us/EWA/productionQueryAction.do O O\n\nThe O O\nurl O O\nremains O O\nstatic O O\nwhen O O\na O O\nlarge O O\nquery O O\ne.g O O\nis O O\nsubmitted O O\n- O O\nI O O\ncannot O O\nalter O O\nmy O O\nquery O O\nby O O\nchanging O O\nthe O O\nurl O O\n. O O\n\nOnce O O\nsubmitted O O\n, O O\nit O O\ntakes O O\na O O\nlong O O\ntime O O\nto O O\nload O O\n, O O\nand O O\nafter O O\nloading O O\n, O O\na O O\ntable Name Name\nof O O\nresults O O\nis O O\npresented O O\n. O O\n\nI O O\nthen O O\nrequire O O\nall O O\nthe O O\ndata O O\nto O O\nbe O O\non O O\none O O\npage O O\nso O O\nI O O\nselect O O\n' O O\nView O O\nAll O O\n' O O\nas O O\nthe O O\npage O O\nsize O O\nfrom O O\nthe O O\ndrop Name Name\ndown Name Name\nmenu Name Name\non O O\nthe O O\ntop O O\nleft O O\nof O O\nthe O O\ntable Name Name\nto O O\nobtain O O\nthe O O\nfollowing O O\npage O O\n( O O\nwhich O O\nhas O O\nmany O O\nmore O O\nrows Name Name\nthan O O\ndisplayed O O\nhere O O\n) O O\n\nFinally O O\n, O O\nto O O\nthen O O\nimport O O\nthis O O\ndata O O\n, O O\nI O O\nopen O O\na O O\nspreadsheet Name Name\nand O O\ncopy-paste O O\nit O O\nall O O\nin O O\n. O O\n\nEven O O\nfor O O\none O O\ncounty/query/submission O O\n, O O\nthis O O\nprocess O O\nis O O\nextremely O O\ntedious O O\n, O O\nand O O\nI O O\nhave O O\nto O O\ndo O O\nthis O O\nmonthly O O\nfor O O\nabout O O\n20 O O\ncounties O O\n, O O\nthen O O\na O O\nfurther O O\n10 O O\ndistricts O O\n. O O\n\nDue O O\nto O O\nthe O O\nlong O O\nload O O\ntime O O\nassociated O O\nwith O O\nthe O O\nreturn O O\nof O O\neach O O\nquery O O\n, O O\nthis O O\nis O O\na O O\ntask O O\nthat O O\neasily O O\ntakes O O\n2-3 O O\nhours O O\nto O O\ncomplete O O\n. O O\n\nAs O O\nsuch O O\n, O O\nI O O\nam O O\nhoping O O\nsomeone O O\nhere O O\nhas O O\nsome O O\nkind O O\nof O O\nsolution O O\nto O O\nautomate/ease O O\nthe O O\nprocess O O\n, O O\nor O O\neven O O\nsimply O O\nadvice O O\nas O O\nto O O\nwhere O O\nI O O\ncan O O\nfind O O\ninformation O O\nto O O\ncreate O O\na O O\nsolution O O\nmyself O O\n. O O\n\nIf O O\nI O O\ncould O O\ndirectly O O\nquery O O\nthe O O\ndatabase O O\nimport O O\nthe O O\ndata O O\ninto O O\na O O\nspreadsheet Name Name\n, O O\nmy O O\nproblem O O\nwould O O\nbe O O\nsolved O O\n. O O\n\nThe O O\nload O O\ntimes O O\nare O O\nirrelevant O O\nif O O\nthe O O\nentire O O\nprocess O O\nof O O\nquerying O O\nthe O O\nserver Name Name\ncan O O\nbe O O\nautomated O O\nas O O\nit O O\ncould O O\njust O O\nrun O O\nin O O\nthe O O\nbackground O O\nwithout O O\nuser O O\ninput O O\n. O O\n\nI O O\napologise O O\nfor O O\nthe O O\nlong O O\nand O O\nnon-specific O O\nquestion O O\n, O O\nand O O\nany O O\nresponse O O\nwill O O\nbe O O\ngreatly O O\nappreciated O O\n. O O\n\nThank O O\nyou O O\nvery O O\nmuch O O\n. O O\n\nWell O O\n, O O\nyou O O\ncan O O\nactually O O\ncheck O O\nthe O O\nnetwork O O\ncalls O O\nthat O O\nare O O\nexecuted O O\nin O O\norder O O\nto O O\nget O O\nthe O O\nCSV Name Name\nfile O O\n. O O\n\nI O O\njust O O\ndid O O\nthat O O\nfor O O\nyou O O\n, O O\nbut O O\nit O O\ncontains O O\na O O\nlot O O\nof O O\nparameters O O\nwhich O O\nyou O O\nneed O O\nto O O\nsend O O\nin O O\n. O O\n\nBelow O O\nare O O\nthe O O\nactual O O\nparameters O O\nyou O O\nneed O O\nto O O\nsend O O\nin O O\n: O O\n\nI O O\nhope O O\nfor O O\nyou O O\nthat O O\nonly O O\nthe O O\nparameters O O\nprefixed O O\nwith O O\nsearchArgs Name Name\nare O O\nimportant O O\n( O O\nthey O O\ncontain O O\nthe O O\ninformation O O\nof O O\nthe O O\nform O O\n, O O\nlike O O\nthe O O\nmonth/year/. O O\n. O O\n\nThe O O\nactionManager Name Name\nprefixed O O\nparameters O O\ncontain O O\nsome O O\ncomplicated O O\ndata O O\n, O O\nyou O O\nneed O O\nto O O\ndefine O O\nthem O O\n( O O\nelse O O\nyou O O\nget O O\nan O O\nerror O O\n) O O\n, O O\nbut O O\nI O O\ndo O O\nn't O O\nknow O O\nif O O\nthey O O\n're O O\nactually O O\nused O O\n, O O\nso O O\nyou O O\nmight O O\njust O O\nleave O O\nthem O O\nempty O O\n. O O\n\nWhen O O\nexecuting O O\nthis O O\ncall O O\n, O O\nyou O O\nwill O O\nimediately O O\nreceive O O\nthe O O\nCSV Name Name\nfile O O\nwhich O O\nyou O O\ncan O O\nprobably O O\nparse O O\nusing O O\nany O O\nlanguage O O\n( O O\nlook O O\nfor O O\na O O\nCSV Name Name\nparsing O O\nlibrary O O\n) O O\nand O O\ninsert O O\nit O O\ninto O O\na O O\ndatabase O O\nor O O\nsomething O O\nelse O O\n. O O\n\nHowever O O\n, O O\nthe O O\nbest O O\npossibility O O\nis O O\nto O O\nlook O O\nfor O O\nan O O\nalternative O O\nto O O\nthis O O\nsource O O\n( O O\nor O O\na O O\npublic O O\nAPI Name Name\nyou O O\ncan O O\naccess O O\n) O O\n, O O\nbecause O O\nthis O O\nis O O\nreally O O\ncrazy O O\nto O O\nwork O O\nwith O O\n, O O\nand O O\nit O O\nmight O O\nchange O O\n. O O\n\nExample O O\nusing O O\nPHP Name Name\n\nThe O O\nfollowing O O\ncode O O\nis O O\nan O O\nexample O O\nin O O\nPHP Name Name\nretrieving O O\nthe O O\nCSV Name Name\n( O O\nusing O O\ncURL Name Name\n) O O\nand O O\nparsing O O\nit O O\ninto O O\nan O O\narray Name Name\n. O O\n\nFrom O O\nwhat O O\nyou O O\nare O O\ndescribing O O\n, O O\nthis O O\nsounds O O\nlike O O\nan O O\nissue O O\nwith O O\nthe O O\nDatabase O O\ntaking O O\nthe O O\ntime O O\nto O O\ngenerate O O\nthe O O\nresults O O\n. O O\n\nIf O O\nthis O O\nis O O\nthe O O\ncase O O\n, O O\ndo O O\nyou O O\nknow O O\nif O O\nthere O O\nare O O\nany O O\nindexes O O\non O O\nthe O O\ndatabase O O\nbeing O O\nqueried O O\n? O O\n\nIf O O\nyou O O\nare O O\nquerying O O\ndata O O\nacross O O\nmultiple O O\nlinked O O\ntables Name Name\n( O O\nwhich O O\nit O O\nlooks O O\n& O O\nsounds O O\nlike O O\nyou O O\nare O O\n) O O\n, O O\nwithout O O\nany O O\nindexes O O\n, O O\nthen O O\nthe O O\nqueries O O\nwill O O\nrun O O\nlike O O\na O O\ndog O O\n. O O\n\nThis O O\nwebsite O O\noffers O O\na O O\ngood O O\nintroduction O O\nto O O\nindexes O O\nthat O O\nmay O O\nbe O O\nworth O O\ntaking O O\na O O\nlook O O\nat O O\n. O O\n\nOther O O\nthan O O\nthis O O\n, O O\nit O O\nmay O O\nbe O O\nprevalent O O\nto O O\nsetup O O\na O O\ncron Name Name\nto O O\nautomate O O\nthe O O\nprocess O O\nfor O O\nyou O O\nlike O O\nAnusha O O\nhas O O\ndescribed O O\nin O O\nthe O O\ncomments O O\n. O O\n\nI O O\nwould O O\nrecommend O O\nlooking O O\ninto O O\nindexes O O\nas O O\nwell O O\nas O O\nsetting O O\nup O O\nthe O O\ncron Name Name\njobs O O\n, O O\nas O O\nrather O O\nthan O O\njust O O\ncut O O\ndown O O\nthe O O\namount O O\nof O O\ntime O O\nit O O\ntakes O O\nfor O O\nyou O O\nto O O\ngenerate O O\nthe O O\ndata O O\neach O O\nmonth O O\n, O O\nyou O O\ncould O O\nfully O O\nautomate O O\nit O O\n, O O\nand O O\nhave O O\nit O O\nrunning O O\nin O O\na O O\nfew O O\nminutes O O\n, O O\nrather O O\nthan O O\nhours O O\neach O O\nmonth O O\n. O O\n\nI O O\nhave O O\nan O O\nEF Name Name\nmodel O O\nwhere O O\nI O O\nlogically O O\nhave O O\na O O\n\" O O\ntemplate Name Name\n\" O O\ntype O O\nand O O\nan O O\n\" O O\ninstance O O\nof O O\nthe O O\ntemplate O O\ntype O O\n\" O O\n\nBasically O O\nmy O O\ntemplates Name Name\nare O O\nlike O O\na O O\nwork O O\nflow O O\nand O O\nthe O O\ninstances O O\nare O O\nthose O O\ntemplates Name Name\napplied O O\nto O O\nan O O\nobject O O\n. O O\n\nThe O O\nassociation O O\nis O O\nthat O O\na O O\ntemplate Name Name\nhas O O\nzero O O\nto O O\nmany O O\ninstances O O\n, O O\nan O O\ninstance O O\nis O O\nalways O O\nbased O O\non O O\na O O\ntemplate Name Name\n. O O\n\nFor O O\nexample O O\nthe O O\ntemplate Name Name\nmay O O\nbe O O\n\" O O\nsend O O\nletter O O\n\" O O\nwhich O O\ngets O O\napplied O O\nto O O\na O O\ncustomer O O\nto O O\ncreate O O\nan O O\ninstance O O\nof O O\nthe O O\nletter O O\nsent O O\n, O O\nwhich O O\nincludes O O\nthe O O\ndate O O\nsent O O\n, O O\nthe O O\npdf Name Name\nof O O\nthe O O\nletter O O\netc O O\n. O O\n\nThe O O\ntemplates Name Name\nhave O O\na O O\nfew O O\nsubclasses/types O O\nwhich O O\nwill O O\nalways O O\nmatch O O\nan O O\ninstance O O\nwhich O O\nalso O O\nhas O O\na O O\ncorresponding O O\nsubclass O O\n. O O\n\nThe O O\nissue O O\nis O O\nhow O O\ncan O O\nI O O\nensure O O\nthat O O\nwhen O O\nI O O\ncreate O O\nan O O\ninstance O O\n( O O\nwhich O O\nwill O O\nhave O O\na O O\nreference O O\nto O O\nthe O O\ntemplate O O\n) O O\nthat O O\nthe O O\ninstance O O\nis O O\nof O O\nthe O O\ncorrect O O\ninherited O O\ntype O O\n. O O\n\nFor O O\nexample O O\nif O O\nthe O O\ntemplate O O\nis O O\nof O O\ntype O O\nTemplateType2 Name Name\n( O O\ninherits O O\nfrom O O\ntemplate Name Name\n) O O\nand O O\nI O O\nadd O O\nan O O\ninstance O O\nto O O\nloan1 Name Name\n. O O\n. O O\nloan1.TemplateInstances.add(foo) Name Name\n… O O\nI O O\nwant O O\nto O O\nensure O O\nthat O O\nfoo Name Name\nis O O\nof O O\ntype O O\nInstanceType2 Name Name\n. O O\n\nThe O O\nway O O\nI O O\nam O O\ndoing O O\nit O O\nnow O O\nseems O O\nlike O O\nsuch O O\na O O\nhack O O\n. O O\n\nI O O\nam O O\nstoring O O\nthe O O\ninstance O O\nentity O O\nname O O\nas O O\na O O\nscalar O O\nvalue O O\nin O O\nthe O O\ntemplate Name Name\nentity O O\n, O O\nand O O\nusing O O\nreflection O O\nto O O\ncreate O O\nthe O O\ncorrect O O\ntype O O\nof O O\nthe O O\ninstance O O\n. O O\n\nIt O O\nworks O O\n, O O\nbut O O\nit O O\nis O O\nbasically O O\nusing O O\nthe O O\nvalue O O\nof O O\na O O\nproperty O O\nto O O\ndo O O\nmapping O O\n, O O\nexposing O O\nthe O O\npossibility O O\nof O O\nall O O\nsorts O O\nof O O\nerrors O O\nif O O\nthey O O\ndo O O\nnot O O\nmatch O O\nthe O O\nname O O\nof O O\nthe O O\ninstance O O\nname O O\n, O O\nor O O\nworse O O\nif O O\nthey O O\nenter O O\nthe O O\nwrong O O\nentity O O\nname O O\n. O O\n\nAny O O\nideas O O\nor O O\nthoughts O O\nhow O O\nto O O\ntackle O O\nthis O O\nissue O O\n? O O\n\nI O O\nended O O\nup O O\nsolving O O\nthis O O\nthrough O O\na O O\nbit O O\nof O O\na O O\nhack O O\n. O O\n\nI O O\nused O O\nnaming O O\nconventions O O\nand O O\nadding O O\nmy O O\nown O O\nhandler O O\nto O O\nthe O O\ncontext O O\nsavingchanges Name Name\nmethod O O\n\nand O O\nthen O O\na O O\nbit O O\nof O O\nreflection O O\n. O O\n\nNot O O\nthe O O\nbest O O\nsolution O O\nbut O O\nit O O\nworks O O\n. O O\n\nthe O O\nmain O O\npart O O\n.. O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nparse O O\na O O\nstring Name Name\nwith O O\nparentheses O O\nof O O\nthe O O\nform O O\n((Question)(Left_Node)(right_node)) Name Name\n. O O\n\nThe O O\nquestion O O\nfor O O\nexample O O\nwill O O\nbe O O\nof O O\nthe O O\nform O O\n\" O O\nif O O\nsegment O O\nsize O O\n< O O\n1.5 Name Name\n, O O\nthen O O\nchoose O O\nleft O O\nnode O O\n, O O\nelse O O\nright O O\n\" O O\n. O O\n\nThe O O\nquestion O O\ncan O O\nbe O O\na O O\ndictionary Name Name\nwith O O\na O O\nkey Name Name\nand O O\na O O\nvalue Name Name\n. O O\n\nThe O O\nleft O O\nand O O\nright O O\nnode Name Name\nrepresent O O\na O O\ncomplete O O\nleft O O\nor O O\nright O O\nhalf O O\ntree Name Name\n, O O\nwhich O O\nwill O O\nbe O O\ntraversed O O\nrecursively O O\nuntil O O\nthe O O\nleaf O O\nnode Name Name\nis O O\nreached O O\n. O O\n\nIn O O\nthis O O\nmanner O O\nwe O O\nwill O O\nbuild O O\na O O\nbinary O O\ndecision O O\ntree Name Name\n. O O\n\nIf O O\nyou O O\ncan O O\ndecide O O\non O O\nthe O O\ndetails O O\nof O O\nthe O O\ninput O O\nformat O O\n, O O\nthen O O\nuse O O\nraw O O\npython Name Name\nsource O O\ncode O O\n. O O\n\nFor O O\nexample O O\nyou O O\ncan O O\nstore O O\nyour O O\ntree Name Name\nin O O\na O O\npython Name Name\ndictionary Name Name\nof O O\nnodes Name Name\n: O O\n\nNow O O\nyou O O\ncan O O\nparse O O\nthis O O\ntree Name Name\nsimply O O\nwith O O\nthe O O\npython Name Name\nparser O O\n. O O\n\nWell O O\n, O O\nif O O\nthe O O\ninput O O\nformat O O\nis O O\nalready O O\nspecified O O\n, O O\nthen O O\nwe O O\ncannot O O\nhelp O O\nyou O O\nif O O\nyou O O\ndo O O\nn't O O\nshare O O\nthe O O\ndetails O O\nof O O\nthat O O\nformat O O\n. O O\n\nThis O O\nkind O O\nof O O\nsyntax O O\nis O O\nreally O O\nthe O O\ntarget O O\nfor O O\npyparsing Name Name\n. O O\n\nThe O O\nbasic O O\nformat O O\nis O O\nsimple O O\nenough O O\n, O O\nand O O\nin O O\npyparsing Name Name\n, O O\nit O O\nlooks O O\nlike O O\n: O O\n\nBut O O\nonce O O\nyou O O\nstart O O\nto O O\nadd O O\narithmetic O O\nexpressions O O\n, O O\nand O O\nboolean O O\noperations O O\nand O O\nsupport O O\nfor O O\n' O O\nand Name Name\n' O O\nand O O\n' O O\nor Name Name\n' O O\noperators O O\n, O O\nthings O O\nget O O\ncomplicated O O\n. O O\n\nAlso O O\n, O O\nthis O O\nis O O\na O O\nrecursive O O\ngrammar O O\n, O O\nsince O O\nan O O\naction O O\ncan O O\nitself O O\nbe O O\na O O\nnested O O\ndecision O O\n. O O\n\nPyparsing Name Name\nhas O O\nbuilt-in O O\nsupport O O\nthat O O\nsimplifies O O\ndefinition O O\nof O O\narithmetic O O\nand O O\nboolean Name Name\nexpressions O O\n, O O\nincluding O O\nprecedence O O\nof O O\noperations O O\nand O O\ngruping O O\nin O O\nparentheses O O\n, O O\nplus O O\nrecursive O O\nexpressions O O\n. O O\n\nHere O O\nis O O\nthe O O\npyparsing Name Name\ngrammar O O\nin O O\nvarious O O\npieces O O\n. O O\n\nFirst O O\nhere O O\nare O O\nsome O O\nof O O\nthe O O\nbasic O O\nparsing O O\nelements O O\n: O O\n\nThe O O\nparse O O\naction O O\nattached O O\nto O O\nthe O O\nnumber O O\nexpression O O\nwill O O\nautomatically O O\nconvert O O\nthe O O\nparsed O O\nnumber O O\nto O O\na O O\nfloat Name Name\nvalue O O\nat O O\nparse O O\ntime O O\n. O O\n\nThe O O\nWord Name Name\nclass O O\ntakes O O\ntwo O O\nstrings Name Name\n: O O\na O O\nstring Name Name\ncontaining O O\nall O O\nvalid O O\nleading O O\ncharacters O O\n, O O\nand O O\na O O\nstring Name Name\nof O O\nall O O\nvalid O O\nbody O O\ncharacters O O\n. O O\n\nThis O O\nvarname Name Name\ndefinition O O\nsupports O O\nvariable O O\nnames O O\nsimilar O O\nto O O\nPython Name Name\nidentifiers O O\n. O O\n\nPyparsing Name Name\nhas O O\nthe O O\noperatorPrecedence Name Name\nmethod O O\nthat O O\ntakes O O\nan O O\nexpression O O\nfor O O\nthe O O\nbasic O O\noperand O O\ndefinition O O\n, O O\nand O O\na O O\nlist O O\nof O O\ntuples O O\nto O O\ndefine O O\neach O O\nlevel O O\nof O O\noperators O O\n: O O\nan O O\nexpression O O\nfor O O\nthe O O\noperators O O\n, O O\nan O O\ninteger Name Name\nwhether O O\nthe O O\noperator O O\nis O O\nunary O O\n, O O\nbinary O O\n, O O\nor O O\nternary O O\n, O O\nand O O\nwhether O O\nleft O O\n- O O\nor O O\nright-associative O O\n. O O\n\noperatorPrecedence O O\ntakes O O\ncare O O\nof O O\nthe O O\nrecursive O O\ndefinition O O\nof O O\narithmetic O O\nexpressions O O\nnested O O\nin O O\nparentheses O O\n. O O\n\nThis O O\nexpression O O\ndefines O O\nbasic O O\n4-function O O\nmath O O\n: O O\n\nNow O O\nhere O O\nis O O\nthe O O\ndefinition O O\nof O O\na O O\nboolean O O\ncondition O O\n( O O\nwhich O O\nwe O O\n'll O O\neventually O O\nuse O O\nto O O\ndefine O O\nthe O O\ndecision O O\nquestion O O\n) O O\n: O O\n\nYour O O\ndefinition O O\nof O O\nactions O O\nwas O O\na O O\nlittle O O\nsketchy O O\n, O O\nso O O\nI O O\nmade O O\nup O O\nsome O O\npossible O O\nstatements O O\n: O O\nan O O\nassignment O O\nstatement O O\n, O O\na O O\nprint O O\nstatement O O\n, O O\nand O O\nsince O O\nthis O O\nis O O\na O O\nspeech O O\napplication O O\n, O O\na O O\nsay O O\nstatement O O\nwhich O O\nis O O\nvery O O\nsimliar O O\nto O O\nprint O O\n. O O\n\nIn O O\naddition O O\nto O O\nthe O O\nexpression O O\ndefinitions O O\n, O O\nyou O O\n'll O O\nnotice O O\nthat O O\nsome O O\nexpressions O O\nare O O\nfollowed O O\nby O O\na O O\nquoted O O\nstring Name Name\n, O O\nas O O\nif O O\nthe O O\nexpression O O\nis O O\na O O\nfunction O O\nbeing O O\ncalled O O\nwith O O\nthat O O\nstring Name Name\n. O O\n\nIn O O\nfact O O\n, O O\nthis O O\n\" O O\ncall Name Name\n\" O O\nactually O O\nreturns O O\na O O\ncopy O O\nof O O\nthe O O\nexpression O O\n, O O\nand O O\nthe O O\nmatched O O\ntokens O O\nare O O\ntagged O O\nwith O O\nthat O O\nname O O\n. O O\n\nThese O O\nresults O O\nnames O O\nare O O\nvery O O\nhelpful O O\nat O O\npost-parsing O O\ntime O O\nat O O\npicking O O\nout O O\nthe O O\nindividual O O\nmatching O O\nelements O O\n( O O\nsimilar O O\nto O O\nnamed O O\ngroups O O\nin O O\nregular O O\nexpressions O O\n) O O\n. O O\n\nFinally O O\n, O O\nto O O\nput O O\nthese O O\npieces O O\ntogether O O\ninto O O\nyour O O\ndecision O O\nexpression O O\n, O O\nhere O O\nare O O\nthe O O\nquestion O O\nand O O\naction O O\nexpressions O O\n: O O\n\nNote O O\nthat O O\nthe O O\naction O O\ndefinition O O\ncan O O\ninclude O O\na O O\ndecision O O\n, O O\nbut O O\naction O O\nis O O\nused O O\nto O O\ndefine O O\ndecision O O\n. O O\n\nTo O O\nbreak O O\nthis O O\nchicken-and-egg O O\ndependency O O\n, O O\nwe O O\npreface O O\nthis O O\nsection O O\nwith O O\ndefining O O\ndecision O O\n, O O\nbut O O\nwith O O\na O O\nplaceholder O O\nexpression O O\nusing O O\nthe O O\npyparsing Name Name\nForward Name Name\nclass O O\n: O O\n\nThen O O\nafter O O\nquestion Name Name\nand O O\naction Name Name\nare O O\ndefined O O\n, O O\nwe O O\nuse O O\nthe O O\n' O O\n<< Name Name\n' O O\noperator O O\nto O O\n\" O O\ninsert O O\n\" O O\nthe O O\nactual O O\nexpression O O\ndefinition O O\nin O O\nthe O O\nexisting O O\ndecision Name Name\nvariable O O\n: O O\n\nAgain O O\n, O O\nI O O\ntook O O\nliberties O O\nwith O O\nyour O O\ndefined O O\nformat O O\n, O O\nthinking O O\nthat O O\nan O O\noptional Name Name\nelse-clause Name Name\nmight O O\nbe O O\nuseful O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nwant O O\nthis O O\nto O O\nbe O O\noptional O O\n, O O\njust O O\nremove O O\nthe O O\nOptional Name Name\nwrapper O O\naround O O\nthe O O\nGroup(action)(\"elseAction\") Name Name\n. O O\n\nThat O O\ndefines O O\nthe O O\ngrammar O O\n, O O\nnow O O\nhere O O\nare O O\nsome O O\ntest O O\ncases O O\n. O O\n\nUsing O O\ndump() Name Name\non O O\nthe O O\nresults O O\nreturned O O\nby O O\nparseString Name Name\nis O O\na O O\nnice O O\nway O O\nto O O\nprint O O\nout O O\nthe O O\ntokens O O\n, O O\nand O O\nany O O\nnames O O\nattached O O\nto O O\nthem O O\n. O O\n\nHere O O\n's O O\nthe O O\noutput O O\n: O O\n\nHere O O\nis O O\na O O\nlink O O\nto O O\nthe O O\nfull O O\nparsing O O\nprogram O O\n- O O\nhttp://pastebin.com/DnaNrx7j O O\n. O O\n\nThis O O\nis O O\njust O O\nthe O O\nfirst O O\nstage O O\n, O O\nparsing O O\nthe O O\ninput O O\n. O O\n\nThe O O\nnext O O\nstep O O\nis O O\nactually O O\nevaluating O O\nthe O O\nexpression O O\nby O O\nprocessing O O\nthe O O\nreturned O O\ntokens O O\n. O O\n\nThe O O\npyparsing Name Name\nwiki O O\nexample O O\nSimpleBool.py Name Name\n( O O\nhttp://pyparsing.wikispaces.com/file/view/simpleBool.py O O\n) O O\nincludes O O\nan O O\nexample O O\nof O O\nattaching O O\nparse O O\nactions O O\nto O O\nconvert O O\nparsed O O\ntokens O O\ninto O O\ncallable O O\nclass O O\ninstances O O\nthat O O\nsimplify O O\nevaluating O O\nthe O O\nresults O O\n. O O\n\nHope O O\nthis O O\nhelps O O\n. O O\n\nI O O\nhave O O\nnoticed O O\npeople O O\nuse O O\nthis O O\ncode O O\nto O O\nlocalize O O\n\nCould O O\nanyone O O\ntell O O\nme O O\nwhat O O\nCurrentUICulture Name Name\nand O O\nCurrentCulture Name Name\nare O O\n? O O\n\nWhy O O\ndo O O\nwe O O\nneed O O\nto O O\nassign O O\nsame O O\nvalue O O\nto O O\nboth O O\n\nWhat O O\nwill O O\nhappen O O\nif O O\nI O O\nassign O O\nthe O O\nvalue O O\nCultureInfo(\"fr-FR\") Name Name\n; O O\nto O O\nonly O O\nCurrentUICulture Name Name\nor O O\nCurrentCulture Name Name\n? O O\n\nI O O\nwould O O\nreally O O\nlike O O\nto O O\nknow O O\nin O O\ndetail O O\nwhat O O\nCurrentUICulture Name Name\nand O O\nCurrentCulture Name Name\ndoes O O\n? O O\n\nSuppose O O\nclient O O\npc Name Name\nlanguage O O\nsetting O O\ncould O O\nbe O O\nGerman Name Name\nor O O\nFrench Name Name\netc O O\n. O O\n, O O\nbut O O\nI O O\nwant O O\nto O O\ndevelop O O\nmy O O\napplication O O\nin O O\nsuch O O\na O O\nway O O\nthat O O\nwhatever O O\nlanguage O O\nsetting O O\nis O O\nthere O O\n, O O\nmy O O\napps O O\nwill O O\nwork O O\nin O O\nthat O O\npc Name Name\nwith O O\ntheir O O\nlanguage O O\nsetting O O\n. O O\n\nI O O\nmean O O\nthat O O\nall O O\nthe O O\ncontrols Name Name\nwill O O\nshow O O\nthe O O\ntext O O\nin O O\nGerman Name Name\nor O O\nFrench Name Name\n. O O\n\nI O O\ndo O O\nnot O O\nwant O O\nto O O\nhard O O\ncode O O\nthe O O\nculture O O\nthis O O\nway O O\nCultureInfo(\"fr-FR\") Name Name\n\nI O O\nwould O O\nrather O O\nthe O O\nuser O O\n's O O\nlanguage O O\nsetting O O\ndictate O O\nthe O O\nlanguage O O\nof O O\nmy O O\ncontrols Name Name\n. O O\n\nHow O O\nwould O O\nI O O\ngo O O\nabout O O\ndoing O O\nthis O O\n? O O\n\nIt O O\n's O O\npretty O O\nsimple O O\n. O O\n\nCurrentCulture Name Name\nis O O\nthe O O\nculture O O\nassigned O O\nfor O O\nthread O O\nto O O\nbe O O\nused O O\nin O O\nvarious O O\nculture-specific O O\nmethods O O\n. O O\n\nTo O O\nexample O O\n, O O\nToString() Name Name\none O O\n. O O\n\nCurrentUICulture Name Name\nis O O\n\nBy O O\nsetting O O\nboth O O\nyou O O\nensure O O\nwhat O O\nall O O\nToString() Name Name\nworks O O\ncorrectly O O\nand O O\nyour O O\nform O O\nresources O O\nare O O\nloaded O O\nfrom O O\nappropriate O O\nsatellite O O\n. O O\n\nRegarding O O\nusage O O\n, O O\nyou O O\nmay O O\nthink O O\nto O O\nprovide O O\nuser O O\nwith O O\noption O O\nto O O\nchange O O\nlanguage O O\n. O O\n\nTo O O\nexample O O\n, O O\nI O O\nhave O O\nnative O O\nGerman Name Name\nwindows O O\n, O O\nbut O O\nI O O\nset O O\nEnglish Name Name\nculture O O\nin O O\nit O O\n( O O\ndate O O\nformat O O\nand O O\ndefault O O\nculture O O\nfor O O\nconsole Name Name\napplications Name Name\n) O O\n, O O\nwhile O O\nI O O\nspeak O O\nRussian O O\n. O O\n\nWhich O O\nlanguage O O\ndo O O\nyou O O\nthink O O\nI O O\nwill O O\nchose O O\nwhen O O\nusing O O\nyour O O\nsoftware O O\n? O O\n\n=P O O\n\nBy O O\ndefault O O\n, O O\neither O O\ntake O O\nlanguage O O\nchosen O O\nin O O\ninstaller Name Name\n( O O\nif O O\nyou O O\nhave O O\ninstaller Name Name\nin O O\nmultiple O O\nlanguages O O\nand O O\noptions O O\nto O O\nchange O O\nit O O\nthere O O\n) O O\nor O O\ncurrent O O\nWindows Name Name\nuser O O\nlanguage O O\npreferences O O\n. O O\n\nOne O O\npossible O O\nscenario O O\n: O O\n\nPreconditions O O\n: O O\napplication O O\nis O O\nalready O O\nlocalized O O\n, O O\nsatellites O O\nare O O\nthere O O\n( O O\nif O O\nnot O O\n, O O\nread O O\nthis O O\n) O O\n. O O\n\nI O O\ndo O O\nn't O O\nlike O O\nsatellites O O\nmyself O O\n, O O\nbut O O\nthey O O\nare O O\neasy O O\nto O O\nstart O O\nwith O O\n. O O\n\nWhen O O\napplication O O\nstarts O O\n, O O\nyou O O\ncreate O O\na O O\nlist Name Name\nof O O\navailable O O\nlanguages O O\n( O O\neither O O\nstatically O O\nor O O\nby O O\nenumerating O O\nsatellites O O\n) O O\n. O O\n\nThen O O\n, O O\nif O O\napplication O O\nstart O O\nfor O O\nthe O O\nfirst O O\ntime O O\n( O O\nto O O\nexample O O\n, O O\nyou O O\nhave O O\nstring Name Name\nlanguage O O\nsetting O O\nand O O\nit O O\n's O O\nby O O\ndefault O O\nnull Name Name\nor O O\n\"\" Name Name\n, O O\nthis O O\nwould O O\nbe O O\na O O\nflag O O\nwhat O O\nno O O\nlanguage O O\nis O O\nselected O O\nyet O O\n) O O\n, O O\nyou O O\ndetect O O\ndefault O O\nos O O\nlanguage O O\n\nand O O\nif O O\nit O O\n's O O\nin O O\nyour O O\nlist Name Name\n, O O\nthen O O\nyou O O\nset O O\n\nOtherwise O O\n, O O\nif O O\nyou O O\ndo O O\nn't O O\nhave O O\nthis O O\nlanguage O O\n, O O\nthen O O\nuse O O\n\" O O\ndefault O O\n\" O O\nlanguage O O\n( O O\nto O O\nexample O O\n, O O\n\" Name Name\nen Name Name\n\" Name Name\n) O O\n. O O\n\nIf O O\nits O O\ndone O O\nat O O\nat O O\nthe O O\nstart O O\nof O O\nyour O O\napplication O O\n, O O\nthen O O\nany O O\nfurther O O\nconstructed O O\nand O O\nused O O\nwindow O O\nwill O O\nuse O O\nproper O O\nresources O O\n. O O\n\nUser O O\nshould O O\nbe O O\nable O O\nto O O\nchange O O\nlanguage O O\n. O O\n\nGive O O\nhim O O\npossibility O O\nto O O\nchose O O\none O O\nof O O\navailable O O\nLanguages O O\n. O O\n\nIn O O\nwinforms O O\nyou O O\nwill O O\nhave O O\nto O O\nreload O O\nforms O O\nafter O O\nchange O O\nculture O O\n. O O\n\nEasiest O O\nsolution O O\nwould O O\nbe O O\nto O O\nsimply O O\ntell O O\nuser O O\nwhat O O\n\" O O\nsoftware O O\nrestart O O\nis O O\nrequired O O\n\" O O\n. O O\n\nNewbie O O\nRails Name Name\ncoder O O\nhere O O\n... O O\n. O O\nspent O O\nway O O\ntoo O O\nmuch O O\ntime O O\ntrying O O\nto O O\nfigure O O\nthis O O\none O O\nout O O\nany O O\nideas O O\n? O O\n\nThe O O\nfollowing O O\nscript O O\nworks O O\non O O\nmy O O\ndev O O\nmachine O O\nbut O O\nfails O O\nin O O\nproduction O O\n. O O\n\nAfter O O\nthis O O\nscript O O\nfails O O\n- O O\nwhen O O\nI O O\ncheck O O\n/tmp Name Name\nfolder O O\nthe O O\n\" O O\nmini_magick20130627-17452-1k48fim.png Name Name\n\" O O\nfile O O\nis O O\nactually O O\nthere O O\n. O O\n\nImageMagick Name Name\nconvert O O\nand O O\nresize O O\nalso O O\nworks O O\nas O O\nexpected O O\nfrom O O\nthe O O\ncommand Name Name\nline Name Name\n. O O\n\nErrno::ENOENT O O\nin O O\nSitesController O O\n#create O O\n\nNo O O\nsuch O O\nfile O O\nor O O\ndirectory O O\n- O O\nidentify O O\n-quiet O O\n-ping O O\n/tmp/mini_magick20130627 Name Name\n-17452-1k48fim.png Name Name\n\nThis O O\nis O O\nanother O O\nanswer O O\nwhich O O\nworks O O\n. O O\n\nEdit O O\ndevelopment.rb Name Name\n( O O\nif O O\nthat O O\nis O O\ngoing O O\nto O O\nrun O O\nwith O O\npassenger Name Name\n) O O\nand O O\nproduction.rb Name Name\n\nadd O O\nto O O\nbottom O O\nof O O\nfile O O\n\nGot O O\nit O O\nfrom O O\nthis O O\nreference O O\n: O O\nPassenger Name Name\n+ O O\nCarrierwave Name Name\n+ O O\nRails Name Name\n\nI O O\n'll O O\nanswer O O\nmy O O\nown O O\nquestion O O\nsince O O\nsomeone O O\nelse O O\nmay O O\nsee O O\nthis O O\nerror O O\n. O O\n\nThis O O\nissue O O\nhas O O\nto O O\ndo O O\nwith O O\nthe O O\nway O O\nPhusion Name Name\nPassenger Name Name\n( O O\nunder O O\nApache Name Name\n) O O\nhandles O O\nenvironment O O\nvars O O\n. O O\n\nI O O\n'm O O\nusing O O\nan O O\nApache Name Name\n+ O O\nPhusion Name Name\nPassenger Name Name\nserver Name Name\nhere O O\n. O O\n\nI O O\nresolved O O\nthis O O\nissue O O\nby O O\nplacing O O\nthe O O\nImageMagick Name Name\npath O O\nvars O O\ninto O O\nmy O O\napache Name Name\nhttpd-vhosts.conf Name Name\nfile O O\n: O O\n\nMore O O\ninfo O O\navailable O O\nhere O O\n- O O\n\nFrom O O\n: O O\nhttp://blog.phusion.nl/2008/12/16/passing-environment-variables-to-ruby-from-phusion-passenger/ O O\n\nBut O O\nwait O O\n, O O\nI O O\n've O O\nalready O O\nset O O\nenvironment O O\nvariables O O\nin O O\nmy O O\n/etc/bashrc Name Name\nor O O\n/etc/profile Name Name\n. O O\n\nWhy O O\ndo O O\nn't O O\nthey O O\nwork O O\n? O O\n\nIf O O\nyou O O\n've O O\nset O O\nenvironment O O\nvariables O O\nin O O\nyour O O\n/etc/bashrc Name Name\nor O O\n/etc/profile Name Name\n, Name Name\nthen O O\nthese O O\nenvironment O O\nvariables O O\nare O O\nmade O O\navailable O O\nin O O\nyour O O\nshell Name Name\n. O O\n\nHowever O O\n, O O\non O O\nmost O O\noperating O O\nsystems O O\n, O O\nApache Name Name\nis O O\nnot O O\nstarted O O\nfrom O O\nthe O O\nshell Name Name\nand O O\ndoes O O\nnot O O\nload O O\nenvironment O O\nvariables O O\ndefined O O\nin O O\nbashrc/profile Name Name\n, O O\nwhich O O\nis O O\nwhy O O\nsetting O O\nenvironment O O\nvariables O O\nin O O\n/etc/bashrc Name Name\nand O O\n/etc/profile Name Name\nusually O O\nhas O O\nno O O\neffect O O\non O O\nApache Name Name\n( O O\nand O O\nby O O\ninduction O O\n, O O\non O O\nPassenger Name Name\nand O O\nRails Name Name\nprocesses O O\n) O O\n. O O\n\nin O O\nmy O O\nproject O O\nwhen O O\ni O O\nrun O O\nit O O\nin O O\nchrome Name Name\nit O O\nis O O\nshowing O O\nwrong O O\ntime O O\n. O O\n\nexplorer Name Name\nit O O\nis O O\nshowing O O\ntrue O O\n. O O\n\nSo O O\ni O O\nwrite O O\nthis O O\njs Name Name\ncode O O\nbut O O\nit O O\nis O O\nstill O O\ndoesnt O O\nworking O O\n. O O\n\nThis O O\nis O O\nmy O O\njs Name Name\n; O O\n\nAnd O O\nthis O O\nis O O\nwhere O O\ni O O\nuse O O\nit O O\n; O O\n\nPass O O\nParameter O O\nValue O O\nin O O\nnot O O\nproper O O\nDate O O\nFormat O O\n\nUse O O\nprocessDate.getFullYear()==> Name Name\nprocessDate.getFullYear().toDateString() Name Name\ndate O O\ndata O O\nconvert O O\ninto O O\nString Name Name\n\nplease O O\ntry O O\nthis O O\ncode O O\n\nHow O O\ndo O O\nI O O\nmake O O\nan O O\nif O O\nstatement O O\nin O O\nJS Name Name\nthat O O\nis O O\ndependent O O\non O O\ncharacter O O\ncount O O\nin O O\nan O O\nhtml Name Name\ninput O O\nfield O O\n? O O\n\nFor O O\nexample O O\n, O O\nif O O\nthere O O\nis O O\na O O\nvalue O O\ngreater O O\nthan O O\n0 Name Name\nin O O\nthe O O\ninput O O\nfield O O\nthen O O\ncss Name Name\nattributes O O\nof O O\nthat O O\nfield O O\nwill O O\nchange O O\n. O O\n\nAnd O O\nto O O\ncomplete O O\nthe O O\nlist O O\nof O O\nanswers O O\n, O O\nnow O O\none O O\nanswer O O\nthat O O\nevaluates O O\nthe O O\nvalue O O\nwhen O O\nthe O O\ninput O O\nloses O O\nfocus O O\n. O O\n\n<input Name Name\nid=\"txt\" Name Name\nonchange=\"inputChange(this.value)\" Name Name\n/> Name Name\n\nDepending O O\nif O O\nyou O O\nwant O O\nit O O\nto O O\nhappen O O\non O O\npage Name Name\nload O O\nor O O\nchecking O O\nwhile O O\nsomething O O\nchanges O O\nin O O\nthe O O\ninput O O\nfield O O\n. O O\n\nOn O O\npage O O\nload O O\ncheck O O\n@gurvinder372 O O\nanswer O O\nelse O O\nyou O O\ncan O O\ncheck O O\nthis O O\nfor O O\nonkeyup Name Name\non O O\nthe O O\ninput O O\nfield O O\n: O O\n\n<input Name Name\ntype=\"text\" Name Name\nid=\"input\"> Name Name\n\nI O O\nwould O O\nlike O O\nto O O\nuse O O\na O O\ncollapsible Name Name\nforce Name Name\ndiagram Name Name\nwhich O O\nis O O\ncollapsed O O\nby O O\ndefault O O\n( O O\nstarting O O\nout O O\nwith O O\nonly O O\none O O\nnode O O\n) O O\n. O O\n\nI O O\nran O O\nacross O O\nthis O O\n: O O\nhttp://bl.ocks.org/david4096/6168323 O O\nbut O O\nit O O\nis O O\nblank O O\nand O O\nnot O O\nworking O O\n. O O\n\nI O O\n'm O O\nusing O O\nthe O O\nlatest O O\nMozilla Name Name\nFirefox Name Name\n43.0.4 Name Name\n. O O\n\nI O O\neven O O\nput O O\nit O O\nto O O\nplunker Name Name\nwith O O\nthe O O\nsame O O\nresult O O\n- O O\nblank O O\n. O O\n\nCan O O\nsomeone O O\nidentify O O\nthe O O\nproblem O O\n? O O\n\nAlso O O\nwould O O\nit O O\nbe O O\npossible O O\nto O O\nhave O O\nit O O\npartially O O\ncollpased O O\n? O O\n\nThat O O\nmeans O O\nthe O O\nfirst O O\nset O O\nof O O\nchildren O O\nexpanded O O\nbut O O\neverything O O\nelse O O\ncollapsed O O\n? O O\n\nMy O O\nnon-working O O\nexample O O\non O O\nplunker Name Name\n\nI O O\nwrote O O\nthis O O\ncode O O\n. O O\n\nBut O O\ngetAllNetworkInfo() Name Name\nis O O\ndeprecated O O\n. O O\n\nPlease O O\nhelp O O\n. O O\n\nThank O O\nyou O O\n. O O\n\nas O O\nthe O O\ndocs O O\nsay O O\n: O O\n\ngetAllNetworkInfo() Name Name\n\nI O O\nthink O O\nyou O O\ncan O O\nuse O O\ngetActiveNetworkInfo() Name Name\n: O O\n\nHere O O\nis O O\nthe O O\ncode O O\n: O O\n\nYou O O\ncan O O\nuse O O\nthis O O\nclass O O\nfor O O\ndetecting O O\ninternet O O\nconnection O O\n. O O\n\nHope O O\nthis O O\nwill O O\nhelp O O\nyou O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nknow O O\nif O O\nsome O O\nof O O\nyou O O\nknow O O\nof O O\na O O\nway O O\nto O O\nautomatically O O\ntitle O O\nplots Name Name\nwith O O\nthe O O\nname O O\nof O O\nthe O O\nobject O O\nplotted O O\n\nso O O\nthat O O\nfor O O\nintance O O\nwhen O O\nI O O\nplot O O\nsupermatrix(5:10,:,2:3) Name Name\n\nthe O O\ntitle O O\n( O O\nor O O\nthe O O\nlegend O O\n. O O\n. O O\n) O O\non O O\nthe O O\nplot Name Name\nsays O O\n\"supermatrix(5:10,:,2:3)\" Name Name\n\nthanks O O\n\nI O O\n've O O\nmodified O O\nthe O O\nfunction O O\ndfig Name Name\noriginally O O\ncreated O O\nby O O\nF.Moisy O O\nfor O O\ncreating O O\ndocked O O\nfigures Name Name\nin O O\norder O O\nto O O\nhave O O\nthe O O\ncommand O O\nused O O\nfor O O\nplotting O O\nshow O O\nup O O\nin O O\nthe O O\nfigure Name Name\nname O O\n. O O\n\nThe O O\nidea O O\nis O O\nto O O\nread O O\nthe O O\nlast O O\ncommand O O\nin O O\nthe O O\ncommand O O\nhistory O O\nand O O\nuse O O\nthat O O\nto O O\ngenerate O O\nthe O O\nfigure Name Name\ntitle O O\n. O O\n\nIs O O\nthis O O\nfor O O\ndebugging O O\npurposes O O\n? O O\n\nIf O O\nnot O O\nthen O O\nI O O\nsuggest O O\nyou O O\ntell O O\nus O O\nyour O O\noverall O O\nmotivation O O\nbecause O O\nsomeone O O\nmight O O\nbe O O\nable O O\nto O O\nsuggest O O\na O O\nmore O O\nrobust O O\nmethod O O\n, O O\nbut O O\nthis O O\nmight O O\nget O O\nyou O O\nstarted O O\n: O O\n\nAlthough O O\nto O O\nbe O O\nhonest O O\nI O O\ncannot O O\nimagine O O\nwhy O O\nthis O O\nwould O O\never O O\nbe O O\nuseful O O\n\nI O O\nfollowed O O\nthis O O\nto O O\nPrint O O\nin O O\nandroid Name Name\n( O O\nThermal Name Name\nPrinter Name Name\n) O O\n\nThis O O\nis O O\nMy O O\nweb-view Name Name\nOver O O\nthere O O\nOn-click Name Name\nIt O O\nwill O O\nLoad O O\nMy O O\nAndroid Name Name\nActivity Name Name\nWhich O O\nis O O\nOut O O\nof O O\nview Name Name\n.. Name Name\n. Name Name\n\nFor O O\nthat O O\nI O O\nhave O O\nGiven O O\nthis O O\n.. O O\n. O O\nto O O\nOpen O O\nnew O O\nactivity Name Name\nfrom O O\nweb-view. Name Name\n. O O\n\nNow O O\nMy O O\nprinter Name Name\nActivity Name Name\nis O O\nworking O O\nFine O O\nSo O O\nhere O O\nI O O\nwant O O\nto O O\npass O O\na O O\nValue O O\nOn Name Name\nclick Name Name\nButton Name Name\nWhich O O\nOpens O O\nPrinter Name Name\n.. O O\n. O O\n\nBut O O\ncan O O\nAny O O\none O O\nsuggest O O\nme O O\nHow O O\nto O O\nReceive O O\nsame O O\nvalue O O\nin O O\nandroid Name Name\nActivity Name Name\nnot O O\nin O O\nweb-view. Name Name\n. O O\n\nAll O O\nI O O\nneed O O\nis O O\nIn O O\nmy O O\nweb-view Name Name\nwhen O O\nI O O\nclick O O\non O O\nthe O O\nButton Name Name\nits O O\nloading O O\nAndroid Name Name\nActivity Name Name\nAlong O O\nwith O O\nthat O O\nI O O\nwant O O\nto O O\nPass O O\nA O O\nstring Name Name\nvalue O O\nto O O\nnew O O\nActivity Name Name\n\nWhy O O\nShould O O\nI O O\npass O O\nValue O O\nmeans O O\nIn O O\nthat O O\nI O O\nhave O O\na O O\nUrl O O\nso O O\nI O O\ncan O O\nPrint O O\nwith O O\nthat O O\nURL O O\n\nHere O O\nJS Name Name\nvalue O O\nis O O\ndifferent O O\nform O O\ncurrent O O\nURL O O\n\nUpdate O O\n\nI O O\nfollowed O O\nthis O O\nBut O O\nits O O\nInside O O\nthe O O\nWeb-view Name Name\nI O O\nwant O O\nsame O O\nat O O\nOutside O O\nthe O O\nweb-view. Name Name\n. O O\n\nMeans O O\nWhen O O\nI O O\nclick O O\non O O\nthe O O\nweb-view Name Name\nIts O O\nopening O O\nandroid Name Name\nactivity Name Name\nwith O O\nthe O O\nsame O O\nits O O\nshould O O\npass O O\na O O\nvalue O O\nto O O\nmy O O\nactivity Name Name\nnot O O\nthe O O\nweb-view Name Name\n\nUpdate O O\n1 O O\n\nI O O\nfollowed O O\n@Sujal O O\nMandal O O\nanswer O O\nBut O O\nI O O\ndont O O\nKnow O O\nHow O O\nto O O\nuse O O\nthat O O\nValue O O\nIn O O\nnext O O\nactivity Name Name\nCan O O\nany O O\none O O\nsuggest O O\nme. O O\n. O O\non O O\nthis O O\nkind. O O\n. O O\nin O O\nnext O O\nactivity O O\nIt O O\nmay O O\nin O O\nSystem.out.println Name Name\nor O O\ntext-view Name Name\nor O O\nany O O\nother O O\nstring Name Name\nSo O O\nI O O\ncan O O\nuse O O\ncan O O\nAny O O\none O O\nsuggest O O\nHow O O\nto O O\nUse O O\nthe O O\nJavaScript Name Name\nValue O O\nin O O\nother O O\nactivity Name Name\noutside O O\nthe O O\nweb-view Name Name\n. O O\n\nHTML Name Name\nJS Name Name\nCODE O O\n\n& O O\nchange O O\nyour O O\nandroid Name Name\ncode O O\nto O O\nbe O O\nlike O O\nthis O O\n\nIn O O\nnext O O\nactivity O O\nreceive O O\nthe O O\nweb O O\nJS Name Name\nresponse O O\nby O O\nusing O O\n\nString Name Name\ndata Name Name\n= Name Name\ngetIntent().getStringExtra(\"STRING_DATA\") Name Name\n; Name Name\n\nat O O\noncreate Name Name\n\nI O O\nhave O O\na O O\nHTML Name Name\nfile O O\nwith O O\n2 O O\ntypes O O\nof O O\ndivs Name Name\n, O O\nall O O\nof O O\nthem O O\nare O O\n15 Name Name\nx Name Name\n15px Name Name\n, O O\nsome O O\nof O O\nthem O O\nred Name Name\n, O O\nthe O O\nothers O O\ngreen Name Name\n. O O\n\nHow O O\ncan O O\nI O O\neliminate O O\nthat O O\nwhite O O\nspace O O\nbetween O O\nthe O O\nlines O O\n? O O\n\nI O O\ntried O O\nto O O\nadd O O\npadding Name Name\n: Name Name\n2px Name Name\n; Name Name\n, O O\nthere O O\nis O O\nno O O\nspace O O\nafter O O\nthat O O\n, O O\nbut O O\nthe O O\ndivs O O\nare O O\ngetting O O\nbigger O O\nthan O O\nI O O\nwant O O\n. O O\n\nHow O O\ncan O O\nI O O\nget O O\nrid O O\nof O O\nthat O O\nspace O O\n, O O\nkeeping O O\nthe O O\nsize O O\nI O O\nwant O O\n( O O\n15 Name Name\nx Name Name\n15px Name Name\n) O O\nfor O O\nthe O O\ndivs Name Name\n? O O\n\nI O O\nam O O\ndeveloping O O\nan O O\nangular5 Name Name\nfront O O\nend O O\nand O O\nasp.net Name Name\ncore O O\n2.0 Name Name\nweb O O\napi O O\napplication O O\nusing O O\nVisual Name Name\nstudio Name Name\n2017 Name Name\n. O O\n\nThe O O\napplication O O\nis O O\nauthenticating O O\nusers O O\nusing O O\nazure Name Name\nAD O O\n. O O\n\nSome O O\nof O O\nthe O O\nAzure Name Name\nAD O O\nusers O O\nhave O O\naccess O O\nto O O\nmy O O\napplication O O\nand O O\nother O O\nAzure Name Name\nAD O O\nusers O O\nhave O O\nno O O\naccess O O\n. O O\n\nI O O\nneed O O\nto O O\nwarn O O\nthe O O\nuser O O\nwith O O\nno O O\naccess O O\nmy O O\napplication O O\nas O O\nsoon O O\nas O O\nthey O O\nlogin O O\nin O O\n( O O\nIf O O\nthey O O\nhave O O\nno O O\ngroups O O\nor O O\nroles O O\nassigned O O\nto O O\nmy O O\napplication O O\nat O O\nazure Name Name\n) O O\n. O O\n\nHow O O\ncan O O\nI O O\ndo O O\nthat O O\n? O O\n\nBasically O O\nI O O\nneed O O\nto O O\ncheck O O\nthe O O\nlogin O O\nuser O O\nbelong O O\nto O O\ncertain O O\nAzure Name Name\nAD O O\ngroup O O\nor O O\nRoles O O\n. O O\n\nthanks O O\n. O O\n\nIs O O\nthere O O\na O O\nguide O O\nor O O\nprogram O O\nthat O O\ncan O O\ntake O O\na O O\nsample O O\nJSON Name Name\nresponse O O\nand O O\ngenerate O O\na O O\nserializeable O O\nclass O O\nor O O\ncontract O O\n? O O\n\nI O O\nam O O\nhaving O O\ntrouble O O\nfiguring O O\nout O O\nhow O O\nto O O\nbuild O O\nthe O O\ncontract O O\nfrom O O\na O O\nmoderately O O\nsized O O\nJSON Name Name\ntype O O\nbut O O\nI O O\ndo O O\nhave O O\na O O\nsample O O\nresponse O O\n. O O\n\nMy O O\njson Name Name\nresponse O O\nhas O O\nsub O O\ntypes O O\nsuch O O\nas O O\n\nyou O O\ncan O O\nuse O O\nhttp://json2csharp.com/ O O\nSee O O\nthe O O\nexample O O\nI O O\ndid O O\nbefore O O\n: O O\n\nI O O\nhope O O\nthe O O\nbelow O O\nexample O O\nwill O O\nhelp O O\n. O O\n\nI O O\nalways O O\ndesign O O\na O O\nmodel O O\nthat O O\nmatch O O\nthe O O\njson Name Name\n. O O\n\nIt O O\nis O O\nmuch O O\nbetter O O\nto O O\nwork O O\nwith O O\nthe O O\nobject O O\nwhen O O\nit O O\nis O O\nyour O O\nown O O\nmodel O O\ndesign O O\n. O O\n\nIt O O\nis O O\nvery O O\neasy O O\nto O O\ngenerate O O\nthe O O\nc# Name Name\nmodel O O\nfrom O O\nthe O O\njson Name Name\n. O O\n\nI O O\nuse O O\nthis O O\nwebsite O O\nto O O\ngenerate O O\nthe O O\nmodel O O\n: O O\nhttp://json2csharp.com O O\n\nA O O\ncomplete O O\nexample O O\nis O O\n: O O\n\nC# Name Name\nCode O O\n: O O\n\nJSON Name Name\n: O O\n\nModel O O\nGenerated O O\nautomatically O O\nusing O O\nhttp://json2csharp.com/ O O\n\nI O O\nhope O O\nthis O O\ncomplete O O\nexample O O\nhelps O O\nyou O O\n. O O\n\nHave O O\na O O\ngood O O\nday O O\n! O O\n\nI O O\nhave O O\na O O\ntable Name Name\nwith O O\nplayers O O\nand O O\nscores O O\n( O O\nName:Mike Name Name\nScore:10 Name Name\n, O O\nName:Peter Name Name\nScore:5 Name Name\n, O O\netc O O\n) O O\nand O O\na O O\nView O O\nwith O O\n3 O O\npictures Name Name\nof O O\na O O\nbronze Name Name\n, O O\nsilver Name Name\nand O O\ngold Name Name\nmedal O O\n. O O\n\nUnderneath O O\neach O O\npicture Name Name\nI O O\nwant O O\nto O O\ndisplay O O\nthe O O\nplayername(s) O O\nof O O\nthe O O\nwinners O O\neach O O\nweek O O\n/ O O\nround O O\n. O O\n\nCould O O\nwell O O\nbe O O\nthat O O\nthere O O\nare O O\nmultiple O O\nbronze O O\n, O O\nsilver O O\nor O O\ngold O O\nscores O O\n. O O\n\nIn O O\nmy O O\nTotalViewModel Name Name\nI O O\nhave O O\nan O O\nObservableCollection Name Name\nfor O O\nall O O\nthe O O\nTotal O O\nScores O O\n: O O\n\nI O O\nwanted O O\nto O O\nuse O O\na O O\nIEnumerable Name Name\nbecause O O\nof O O\nthe O O\nmultiple O O\nnumbers O O\none O O\n, O O\ntwo O O\n, O O\nthree O O\nscore O O\n: O O\n\nThe O O\nDataContext Name Name\nof O O\nmy O O\nView O O\nis O O\nworking O O\nfine O O\nfor O O\nthe O O\nstraightforward O O\nbindings O O\n, O O\nit O O\n's O O\nset O O\nin O O\nthe O O\nUserControl Name Name\n: O O\n\nBut O O\nthe O O\nresults O O\nare O O\nn't O O\ndisplayed O O\nin O O\nmy O O\nDataGrid Name Name\n( O O\nguess O O\nI O O\n'm O O\nmaking O O\na O O\nstupid O O\nmistake O O\nhere O O\n) O O\n: O O\n\nSo O O\nI O O\nhave O O\n2 O O\nquestions O O\n: O O\n\nHow O O\ndo O O\nI O O\nget O O\nthe O O\ndesired O O\ncollection O O\nof O O\nnumber O O\n1/2/3 O O\nscores O O\n? O O\n\nHow O O\ndo O O\nI O O\nget O O\nthem O O\nin O O\nmy O O\nView O O\n? O O\n\nThanks O O\n. O O\n\nWell O O\nI O O\nwont O O\nget O O\ninto O O\nthe O O\ndata O O\nbinding O O\nbit O O\nbut O O\na O O\nlinq Name Name\nquery O O\nto O O\nextract O O\nthe O O\ntop O O\nthree O O\ncould O O\nbe O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nYou O O\n're O O\nbinding O O\nto O O\nFirstOne Name Name\nso O O\nyou O O\nneed O O\nto O O\ndo O O\na O O\npropertychanged Name Name\nfor O O\nthat O O\nproperty O O\n. O O\n\nThe O O\nfollowing O O\nprogram O O\n\nfails O O\nto O O\ncompile O O\non O O\nboth O O\ng++ Name Name\n5.4 Name Name\nand O O\nclang Name Name\n3.8 Name Name\n( O O\nUbuntu Name Name\n64-bit Name Name\n) O O\n. O O\n\ng++ Name Name\noutput O O\n\nclang Name Name\noutput O O\n\nThe O O\ndiagnostics O O\nvary O O\na O O\nlittle O O\nin O O\nform O O\n, O O\nbut O O\nare O O\nrelated O O\nto O O\nthe O O\nsame O O\nissue O O\n. O O\n\nThere O O\nis O O\na O O\nclash O O\nwith O O\nthe O O\nstandard O O\nC Name Name\nfunction O O\nclock Name Name\nand O O\nthe O O\nstruct Name Name\nof O O\nthe O O\nsame O O\nname O O\ndefined O O\nin O O\nthe O O\nprogram O O\n. O O\n\nThe O O\nrelevant O O\ndeclaration O O\nfrom O O\ntime.h Name Name\n: O O\n\nThe O O\nquestion O O\nis O O\n: O O\nshould O O\nn't O O\nsuch O O\nsymbols O O\nbe O O\nin O O\nthe O O\nstd Name Name\nnamespace O O\n, O O\nsince O O\nthe O O\nprogram O O\nincludes O O\n<ctime> Name Name\n? O O\n\nInterestingly O O\n, O O\nthat O O\nvery O O\ndeclaration O O\nsits O O\na O O\ncouple O O\nof O O\nlines O O\nafter O O\na O O\nmacro O O\nwhich O O\nreads O O\n__BEGIN_NAMESPACE_STD Name Name\n. O O\n\nIn O O\naddition O O\n, O O\nin O O\n<ctime> Name Name\n, O O\none O O\ncan O O\nsee O O\n: O O\n\nIs O O\nthere O O\nsome O O\nkind O O\nof O O\nbug O O\nhere O O\n? O O\n\nThank O O\nyou O O\n. O O\n\nYes O O\n, O O\nand O O\nthey O O\nare O O\n. O O\n\nUnfortunately O O\n, O O\nthe O O\nC++ Name Name\nstandard O O\nalso O O\nallows O O\nimplementations O O\nto O O\nput O O\nnames O O\nfrom O O\nC-library Name Name\nderived O O\nheaders Name Name\nin O O\nthe O O\nglobal Name Name\nnamespace O O\n. O O\n\nIn O O\nthis O O\ncase O O\n, O O\nyou O O\nget O O\nstd::clock Name Name\nand O O\n::clock Name Name\n. O O\n\nThis O O\napplies O O\nto O O\nall O O\nthe O O\n<c*> Name Name\nC++ Name Name\nheaders Name Name\nwith O O\na O O\ncorresponding O O\n<*.h> Name Name\nversion O O\nin O O\nC Name Name\n. O O\n\nI O O\nwant O O\nto O O\nopen O O\na O O\npdf Name Name\nfile O O\non O O\nmy O O\nhtml Name Name\ndocument O O\n, O O\nbut O O\nthe O O\nfile O O\nwo O O\nn't O O\nopen O O\n. O O\n\nChrome Name Name\nsaid O O\n\nPlease O O\nhelp O O\n. O O\n\nthe O O\npdf Name Name\nand O O\nthe O O\nhtml Name Name\nare O O\non O O\nthe O O\nsame O O\nlocation O O\non O O\nthe O O\nlocalhost Name Name\nof O O\nmy O O\ncomputer Name Name\n. O O\n\nAfter O O\nStruggling O O\nwith O O\nthis O O\nproblem O O\ni O O\ncame O O\nto O O\nsolution O O\n, O O\nBy O O\nReferring O O\nthis O O\nLink O O\nHere O O\n. O O\n\nHope O O\nthis O O\nhelp O O\nsomeone O O\n. O O\n\nJS Name Name\n: O O\n\nHTML Name Name\n\nbelow O O\ncode O O\nare O O\nworking O O\nfor O O\nPDF Name Name\nin O O\nchrome Name Name\nbrowser Name Name\n\nI O O\nhave O O\na O O\nGridview Name Name\nand O O\nthe O O\ncolumns Name Name\ndefined O O\nlike O O\nbelow O O\n. O O\n\nWhen O O\nI O O\nrun O O\nthe O O\nprogram O O\nI O O\nget O O\nthe O O\nerror O O\n\nCan O O\nanyone O O\nhelp O O\nme O O\nsolving O O\nthis O O\n? O O\n\nNothing O O\nseems O O\nto O O\nbe O O\nwrong O O\nwith O O\nyour O O\nmarkup O O\n. O O\n\nThe O O\nonly O O\nthing O O\nI O O\nwould O O\nrecommend O O\nis O O\nending O O\nthe O O\nLabel Name Name\ncontrol O O\nimmediately O O\nand O O\ntrying O O\nit O O\nagain O O\n. O O\n\nIn O O\nthe O O\npast O O\nI O O\nhave O O\nseen O O\nissues O O\nwhen O O\nTab O O\n, O O\nÂ O O\nor O O\nsome O O\nunintentional O O\ncharacters O O\ncome O O\nin O O\nbetween O O\nsome O O\nof O O\nthe O O\ntemplated O O\ncontrols O O\n. O O\n\nCheck O O\nif O O\nyou O O\nhave O O\nany O O\nsuch O O\ncharacters O O\nby O O\nredoing O O\nevery O O\nline O O\nfrom O O\nscratch O O\n. O O\n\nThis O O\nquestion O O\nis O O\na O O\nlittle O O\nold O O\n, O O\nbut O O\nfor O O\nthe O O\nothers O O\nwho O O\nencounter O O\nthis O O\nproblem O O\n: O O\n\nThis O O\nproblem O O\ncan O O\ncaused O O\nby O O\nnot O O\nputting O O\nwhite O O\nspace O O\nbetween O O\nproperties O O\n. O O\n\nFor O O\nexample O O\n: O O\n\nI O O\nwanted O O\nto O O\nknow O O\nwhether O O\nit O O\nis O O\npossible O O\nto O O\ncopy O O\nparticular O O\ndiv Name Name\n's O O\ncontent O O\nas O O\nan O O\ninput O O\nelement O O\n's O O\nvalue O O\nautomatically O O\nwhen O O\npage Name Name\nis O O\nloaded O O\n. O O\n\nbase O O\non O O\nbrso05 O O\n's O O\nanswer O O\n, O O\n\ndocument.getElementById(\"myInput\").value Name Name\n= Name Name\ndocument.getElementById(\"myDiv\").innerHTML Name Name\n; Name Name\n\nMaybe O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nI O O\nhave O O\nthe O O\nlist Name Name\nof O O\nrecords O O\nin O O\nthe O O\nsubject O O\ntable Name Name\nthen O O\nI O O\nwant O O\nto O O\nadd O O\nto O O\ngroup_concat O O\nof O O\nyii2 Name Name\nbind O O\nmethods O O\n. O O\n\nbut O O\nI O O\nhave O O\nto O O\nget O O\nthe O O\nsingle O O\nvalue O O\nonly O O\n. O O\n\nI O O\nwant O O\nresult O O\nis O O\n\" Name Name\nEnglish Name Name\n, Name Name\nmaths Name Name\n\" Name Name\nbut O O\nmy O O\nresult O O\nis O O\n\" Name Name\nEnglish Name Name\n\" Name Name\nonly O O\n? O O\n\nyou O O\nshould O O\nassign O O\na O O\nname O O\nto O O\nthe O O\nresult O O\nusing O O\nalias O O\n. O O\n. O O\neg O O\ng_sname Name Name\n\nyou O O\ncould O O\nalso O O\ntry O O\nusing O O\ncolumn() Name Name\n\nI O O\ngot O O\nan O O\nHTML Name Name\nwith O O\na O O\nbutton Name Name\nshow O O\ndetails O O\nwhich O O\nopens O O\nup O O\na O O\nlot O O\nof O O\ninformation O O\n. O O\n\nI O O\nneed O O\nto O O\nconvert O O\nthat O O\npage O O\ninto O O\npdf Name Name\n, O O\ntherefore O O\nI O O\nuse O O\nwkhtmltopdf Name Name\n. O O\n\nThe O O\nproblem O O\nis O O\nin O O\nthe O O\nPDF Name Name\nthe O O\ndetails O O\nwo O O\nn't O O\nshow O O\nup O O\nbecause O O\nthe O O\nbutton Name Name\nwas O O\nn't O O\nclicked O O\n. O O\n\nThe O O\nsecond O O\nproblem O O\nis O O\nI O O\nca O O\nn't O O\nchange O O\nthe O O\nhtml Name Name\nbecause O O\nit O O\nis O O\nautomatically O O\ngenerated O O\nby O O\na O O\ntool O O\ncalled O O\nOpenSCAP Name Name\n. O O\n\nMaybe O O\nyou O O\ngot O O\nan O O\nidea O O\nhow O O\nI O O\ncan O O\nshow O O\nthis O O\ndetails O O\nin O O\nthe O O\npdf Name Name\n? O O\n\nI O O\n'm O O\nworking O O\non O O\nSLES Name Name\n11 Name Name\n. O O\n\nmy O O\ncommand O O\nis O O\n\nSo O O\nI O O\nam O O\nusing O O\nthe O O\ncode O O\nthat O O\nI O O\ngot O O\noff O O\nW3C Name Name\nhere O O\n: O O\nhttp://www.w3schools.com/php/php_ajax_database.asp O O\n\nmodified O O\nit O O\nto O O\nfit O O\nwith O O\nmy O O\nfile O O\nnames O O\nand O O\ndatabase O O\netc O O\n, O O\nhowever O O\nI O O\nam O O\nhaving O O\na O O\nweird O O\nissue O O\nwith O O\nechoing O O\nmy O O\nresponses O O\nto O O\nlook O O\ncorrect O O\n. O O\n\nFor O O\nevery O O\nproduct O O\nthat O O\ncollects O O\nfrom O O\nthe O O\nproduct O O\ndatabase O O\nit O O\nneeds O O\nto O O\nprint O O\nit O O\nin O O\na O O\nsection Name Name\ntag O O\nlike O O\nso O O\n: O O\n\nHowever O O\nthis O O\ncode O O\nis O O\nn't O O\nworking O O\nanymore O O\n, O O\nthe O O\nclosest O O\nI O O\nhave O O\ngotten O O\nis O O\nit O O\nto O O\nonly O O\ndisplay O O\none O O\nand O O\nthen O O\nbreaks O O\nthe O O\nrest O O\n. O O\n\nthe O O\nPHP Name Name\necho Name Name\nis O O\nbeing O O\nreturned O O\ninto O O\nthe O O\nfollowing O O\ndiv Name Name\ntag O O\n\nso O O\nI O O\nhave O O\ntried O O\nchanging O O\nmy O O\nCSS Name Name\nto O O\nstuff O O\nlike O O\narticle Name Name\n> O O\n.txtHint Name Name\n> O O\n#sideWays O O\nor O O\neven O O\njust O O\nmaking O O\nthe O O\n#sideWays O O\ncss Name Name\nthe O O\nsame O O\nas O O\n.txtHint Name Name\nto O O\nskip O O\nthe O O\n> O O\n#sideWays O O\nbut O O\nnothing O O\nis O O\nworking O O\nto O O\ndisplay O O\nmy O O\nCSS Name Name\non O O\nthe O O\necho Name Name\n. O O\n\nI O O\n'm O O\nnot O O\nsure O O\nwhy O O\nbut O O\nchanging O O\nthe O O\nkeyword O O\necho Name Name\nto O O\nprint Name Name\nfixed O O\nthe O O\nissue O O\nof O O\nit O O\nnot O O\nrecognising O O\nmy O O\nhtml Name Name\ntags O O\nand O O\napplying O O\nthe O O\nCSS Name Name\nto O O\nthem O O\n. O O\n\nTrying O O\nto O O\ncreate O O\nan O O\nsmart Name Name\nwatch Name Name\napplication O O\nopening O O\na O O\nweb O O\nview O O\nwhich O O\nruns O O\nsome O O\njavascript Name Name\ncode O O\n. O O\n\nI O O\nget O O\na O O\ncrazy O O\n: O O\n\nHere O O\nis O O\nMWE O O\n. O O\n\nMainActivity.java Name Name\n: O O\n\nactivity_main.xml Name Name\n: O O\n\nAnd O O\nhere O O\nis O O\nthe O O\nfull O O\nerror O O\nI O O\nget O O\n: O O\n\nI O O\nhave O O\nchecked O O\nother O O\nthreads O O\nabout O O\nthis O O\nerror O O\nbut O O\nI O O\nam O O\nin O O\nparticular O O\nconfused O O\nabout O O\nthis O O\n\" O O\nline O O\n0 O O\n\" O O\non O O\nthe O O\nxml Name Name\nfile O O\nerror O O\n. O O\n\nWould O O\nanyone O O\nknow O O\nwhy O O\nthis O O\nis O O\nhappening O O\n? O O\n\nThanks O O\nin O O\nadvance O O\n\nAndroid Name Name\nWear Name Name\ndoes O O\nnot O O\nsupport O O\nWebView Name Name\n. O O\n\nMore O O\nconcretely O O\n, O O\nexamine O O\nthe O O\noriginal O O\nexception Name Name\n: O O\n\nSince O O\nAndroid Name Name\n4.4 Name Name\nor O O\nthereabouts O O\n, O O\nWebView Name Name\nis O O\nprovided O O\nby O O\nthe O O\n\" O O\nSystem Name Name\nWebView Name Name\n\" O O\napp O O\n, O O\nwhich O O\nmeans O O\nAndroid Name Name\nhas O O\nto O O\ndo O O\nsome O O\ngyrations O O\nto O O\nget O O\nits O O\nhand O O\non O O\nthe O O\nguts O O\nof O O\nWebView Name Name\nimplementation O O\nwhen O O\nyou O O\nrequest O O\nto O O\ndisplay O O\nthe O O\nWebView Name Name\n. O O\n\nHere O O\n, O O\nNullWebViewFactoryProvider O O\nmeans O O\n\" O O\nwe O O\ndo O O\nnot O O\nhave O O\na O O\nSystem Name Name\nWebView Name Name\nto O O\nuse O O\n\" O O\n. O O\n\nI O O\nhave O O\nan O O\ninput O O\nfield O O\nthat O O\nis O O\nsetting O O\nthe O O\ninterval O O\nin O O\ndays O O\nto O O\nrun O O\na O O\nscript O O\n. O O\n\nI O O\n'm O O\nlooking O O\nfor O O\na O O\nway O O\nto O O\nset O O\nthe O O\ncronjob Name Name\ncommand O O\n( O O\nie O O\n: O O\n* Name Name\n* Name Name\n* Name Name\n* Name Name\n* Name Name\n) O O\nusing O O\na O O\nPHP Name Name\nbased O O\non O O\nthe O O\nnumber O O\nof O O\ndays O O\nset O O\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\ndo O O\nthis O O\nor O O\ndoes O O\nit O O\nhave O O\nto O O\nbe O O\nmanually O O\nsetup O O\n? O O\n\nSomething O O\nlike O O\n: O O\n\nif O O\ni O O\nunderstand O O\nyou O O\ncorrect O O\n. O O\n\nyou O O\nwant O O\na O O\nfunction O O\nthat O O\ngiven O O\namount O O\nof O O\ndays O O\nwill O O\nreturn O O\nthe O O\nstring Name Name\n? O O\n\n* Name Name\n/5 Name Name\n* Name Name\n* Name Name\n* Name Name\n* Name Name\n/home/user/test.pl Name Name\n\n. O O\n- O O\nminute O O\n( O O\n0 O O\n- O O\n59 O O\n) O O\n\n| O O\n. O O\n- O O\nhour O O\n( O O\n0 O O\n- O O\n2 O O\n3) Name Name\n\n| O O\n| O O\n. O O\n- O O\nday O O\nof O O\nmonth Name Name\n( Name Name\n1 Name Name\n- Name Name\n3 Name Name\n1) Name Name\n\n| O O\n| O O\n| O O\n. O O\n- O O\nmonth O O\n( Name Name\n1 Name Name\n- Name Name\n1 Name Name\n2) Name Name\nOR Name Name\njan Name Name\n, O O\nfeb Name Name\n, O O\nmar Name Name\n, O O\napr Name Name\n.. Name Name\n. Name Name\n\n| O O\n| O O\n| O O\n| O O\n.---- O O\n- O O\nday Name Name\nof Name Name\nweek Name Name\n( Name Name\n0 Name Name\n- Name Name\n6 Name Name\n) Name Name\n( O O\nSunday Name Name\n= Name Name\n0 Name Name\nor O O\n7 Name Name\n) O O\nOR O O\nsun Name Name\n, O O\nmon Name Name\n, O O\ntue Name Name\n, O O\nwed Name Name\n, O O\nthu Name Name\n, O O\nfri Name Name\n, O O\nsat Name Name\n\n| O O\n| O O\n| O O\n| O O\n| O O\n\n* O O\n* O O\n* O O\n* O O\n* O O\ncommand O O\nto O O\nbe O O\nexecuted O O\n\nCronjobs Name Name\ncannot O O\nbe O O\nset O O\nlike O O\nthat O O\n. O O\n\nEach O O\nminute O O\nthe O O\ncron Name Name\ndeamon Name Name\nlooks O O\nfor O O\nwhich O O\njobs O O\nto O O\nrun O O\nbased O O\non O O\nthe O O\npattern O O\n( O O\n\" O O\nis O O\nthis O O\nthe O O\ncorrect O O\nweekday O O\n? O O\n\nis O O\nthis O O\nthe O O\ncorrect O O\nminute O O\n? O O\n\" O O\n\nand O O\nso O O\non O O\n) O O\n. O O\n\nYou O O\nwill O O\nneed O O\nto O O\nset O O\nup O O\na O O\nscript O O\ncheck O O\nto O O\nsee O O\nif O O\nthe O O\ndate O O\nis O O\ncorrect O O\nbecause O O\ncron Name Name\ncannot O O\ndo O O\nthat O O\n. O O\n\nYou O O\ncan O O\nmake O O\nthat O O\ncheck O O\nin O O\nthe O O\nmanual O O\njob O O\nor O O\nin O O\nBash Name Name\n. O O\n\nis O O\nit O O\npossible O O\nto O O\nhave O O\nListBox Name Name\n( O O\nwhich O O\ncontains O O\nScrollViewer Name Name\nby O O\ndefault O O\n) O O\nand O O\nListBoxItem Name Name\nwith O O\nScrollViewer Name Name\n? O O\n\nI O O\nwant O O\nto O O\nachieve O O\nnext O O\nview O O\n: O O\n\nAnd O O\nthis O O\nListBox Name Name\nshould O O\nalso O O\nsupport O O\nvirtualization O O\n. O O\n\n( O O\nI O O\nknow O O\nhow O O\nenable O O\nit O O\n, O O\nI O O\njust O O\nwondering O O\nwill O O\nit O O\nwork O O\nif O O\nI O O\nuse O O\n2 O O\nscroll Name Name\nviewers Name Name\n? O O\n) O O\n\nUPDATED O O\n: O O\n\nI O O\nneed O O\nto O O\nuse O O\nListBox.ItemTemplate Name Name\n, O O\nsince O O\nI O O\n'm O O\nbinding O O\nItemsSource Name Name\n. O O\n\nThanks O O\nfor O O\ntips O O\n. O O\n\nEasy O O\n. O O\n\n( O O\nI O O\n've O O\ngiven O O\nyou O O\nthree O O\nways O O\nto O O\ndo O O\nthis O O\n, O O\none O O\nmust O O\nbe O O\nright O O\n! O O\n) O O\n\nThrough O O\nXaml Name Name\n: O O\n\nFrom O O\nC# Name Name\n: O O\n\nThis O O\nresults O O\nin O O\nthe O O\nfollowing O O\n: O O\n( O O\nI O O\n've O O\nadded O O\na O O\nshort O O\ncomment O O\njust O O\nso O O\nyou O O\ncan O O\nsee O O\nthe O O\ndifference O O\n, O O\nyou O O\ncan O O\nprobably O O\nmake O O\nthe O O\nscroll Name Name\nbar Name Name\ngo O O\nall O O\nthe O O\nway O O\nacross O O\n, O O\nbut O O\nthis O O\nis O O\njust O O\nan O O\nexample O O\n. O O\n) O O\n\nIf O O\nyour O O\nusing O O\nItem Name Name\nTemplate Name Name\n: O O\n( O O\nI O O\n've O O\nnever O O\ndone O O\nthis O O\n, O O\nso O O\ndo O O\nn't O O\nshoot O O\nme O O\nif O O\nits O O\nwrong O O\n! O O\n:) O O\n) O O\n\nXAML Name Name\n: O O\n\nCode O O\nBehind O O\n: O O\n\nOutput O O\n: O O\n\nWhen O O\ncompiling O O\na O O\n64bit O O\napplication O O\n, O O\nwhy O O\ndoes O O\nstrlen() Name Name\nreturn O O\na O O\n64-bit O O\ninteger Name Name\n? O O\n\nAm O O\ni O O\nmissing O O\nsomthing O O\n? O O\n\nI O O\nunderstand O O\nthat O O\nstrlen() Name Name\nreturns O O\na O O\nsize_t Name Name\ntype O O\n, O O\nand O O\nby O O\ndefinition O O\nthis O O\nshould O O\nn't O O\nchange O O\n, O O\nbut O O\n.. O O\n. O O\nWhy O O\nwould O O\nstrlen Name Name\nneed O O\nto O O\nreturn O O\na O O\n64-bit O O\ninteger Name Name\n? O O\n\nThe O O\nfunction O O\nis O O\ndesigned O O\nto O O\nbe O O\nused O O\nwith O O\nstrings Name Name\n. O O\n\nWith O O\nthat O O\nsaid O O\n: O O\n\nDo O O\nprogrammers O O\ncommonly O O\ncreate O O\nmulti-gigabyte O O\nor O O\nmulti-terabyte O O\nstrings Name Name\n? O O\n\nIf O O\nthey O O\ndid O O\n, O O\nwould O O\nn't O O\nthey O O\nneed O O\na O O\nbetter O O\nway O O\nto O O\ndetermine O O\nthe O O\nstring Name Name\nlength O O\nthan O O\nsearching O O\nfor O O\na O O\nNULL Name Name\ncharacter O O\n? O O\n\nI O O\nthink O O\nthis O O\nis O O\nridiculous O O\n, O O\nin O O\nfact O O\n, O O\nmaybe O O\nwe O O\nneed O O\na O O\nStrLenAsync() Name Name\nfunction O O\nwith O O\na O O\ncallback O O\njust O O\nto O O\nhandle O O\nthe O O\nultra O O\nlong O O\nprocess O O\nfor O O\nsearching O O\nfor O O\nthe O O\nNULL Name Name\nin O O\nthe O O\n40TB O O\nstring Name Name\n. O O\n\nSound O O\nstupid O O\n? O O\n\nYea O O\n, O O\nwell O O\nstrlen() Name Name\nreturns O O\na O O\n64-bit O O\ninteger Name Name\n! O O\n\nOf O O\ncourse O O\n, O O\nthe O O\nproposed O O\nStrLenAsync() Name Name\nfunction O O\nis O O\na O O\njoke O O\n. O O\n\nWell O O\n, O O\n1) O O\nsize_t Name Name\nis O O\na O O\ntypedef O O\nand O O\nvaries O O\nwith O O\narchitectures O O\nand O O\n2) O O\nWould O O\nn't O O\nit O O\nmake O O\nsense O O\nto O O\nhave O O\nthe O O\nlargest O O\ninteger Name Name\nas O O\na O O\nreturn O O\nvalue O O\n? O O\n\nWhy O O\n32 O O\nbits O O\n? O O\n\nWhy O O\nnot O O\n16 O O\n? O O\n\nIt O O\n's O O\n64 O O\non O O\nyour O O\nmachine O O\nbecause O O\nthat O O\n's O O\nthe O O\nmax O O\nstring Name Name\nlength O O\npossible O O\n. O O\n\nIt O O\nlooks O O\nlike O O\n, O O\nwhen O O\ncompiling O O\nfor O O\na O O\n64-bit O O\ntarget O O\n, O O\nsize_t Name Name\nis O O\ndefined O O\nas O O\n64-bit O O\n. O O\n\nThis O O\nmakes O O\nsense O O\n, O O\nsince O O\nsize_t Name Name\nis O O\nused O O\nfor O O\nsizes O O\nof O O\nall O O\nkinds O O\nof O O\nobjects O O\n, O O\nnot O O\njust O O\nstrings Name Name\n. O O\n\nI O O\nam O O\nlooking O O\nfor O O\npupil O O\ndetection O O\nfrom O O\nimage Name Name\nusing O O\npythonwith Name Name\nopencvpackage Name Name\n. O O\n\nIn O O\nmy O O\ntest O O\nimages Name Name\n, O O\nI O O\nam O O\nable O O\nto O O\ndetect O O\npupil O O\nin O O\n( O O\na O O\n) O O\npart O O\nbut O O\nwhenever O O\nthere O O\nis O O\na O O\npresence O O\nof O O\nreflection/ O O\nglare O O\n, O O\nI O O\nam O O\nunable O O\nto O O\ndetect O O\nblob O O\nof O O\npupil O O\npixels O O\naccurately O O\nin O O\n( O O\nb O O\n) O O\npart O O\nof O O\nimage Name Name\n. O O\n\nCan O O\nanybody O O\nhelp O O\nme O O\nout O O\n? O O\n\nHere O O\nis O O\nthe O O\ncode O O\nI O O\nam O O\ntrying O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nmake O O\nconnection O O\nto O O\nmy O O\nwebsocket O O\nserver Name Name\nwhich O O\ni O O\nbasicly O O\nneed O O\nto O O\nbe O O\nover O O\nhttps O O\n. O O\n\nthe O O\nproblem O O\nis O O\nthat O O\nmy O O\nbrowser Name Name\nsays O O\n: O O\n\" O O\nWebSocket O O\nconnection O O\nto O O\n' O O\nwss://192.168.1.8/ws O O\n' O O\nfailed O O\n: O O\nWebSocket O O\nopening O O\nhandshake O O\nwas O O\ncanceled O O\n\" O O\n\nThe O O\nthings O O\nwhat O O\ni O O\ntried O O\nto O O\ndo O O\nwas O O\n: O O\n\n1) O O\nAdd O O\ncertificate O O\nto O O\nsystem O O\n( O O\nwin Name Name\n8.1 Name Name\nPRO Name Name\nx6 Name Name\n4) Name Name\nby O O\ndouble O O\nclicking O O\non O O\ncert Name Name\nfile O O\n\n2) O O\nAdd O O\ncertificate O O\nto O O\ngoogle Name Name\nchrome Name Name\non O O\nthe O O\nsame O O\nsystem O O\n( O O\nthrough O O\nsettings O O\nof O O\nbrowser Name Name\n) O O\n\nI O O\nam O O\nable O O\nto O O\nconnect O O\nto O O\nthis O O\nserver Name Name\nwhen O O\ni O O\nreimplement O O\nit O O\nto O O\nuse O O\nhttp O O\ninstead O O\nof O O\nhttps O O\nso O O\nphysical O O\nconnection O O\nto O O\nmachine O O\nlooks O O\nOK O O\n. O O\n\nmy O O\ncertificate O O\nare O O\nself-signed O O\n, O O\ngenerated O O\nby O O\ncommand O O\n: O O\n\nthis O O\nis O O\nhow O O\ni O O\ntry O O\nto O O\nconnect O O\nto O O\nit O O\n: O O\n\nAs O O\n@BenDarnell O O\nposted O O\n, O O\nWe O O\nhave O O\nto O O\naccept O O\nthis O O\ncertificate O O\nby O O\nbrowse O O\nto O O\npage O O\nof O O\nthis O O\nserver Name Name\n. O O\n\nThen O O\nyour O O\nbrowser Name Name\nwill O O\ninform O O\nthat O O\nthis O O\nsite O O\nis O O\nuntrusted O O\n. O O\n\nLet O O\nyour O O\nbrowser Name Name\nto O O\nuse O O\nthis O O\nuntrusted O O\ncertificate O O\nand O O\nthat O O\n's O O\nall O O\n. O O\n\nHere O O\nis O O\ncode O O\nyou O O\nwill O O\nneed O O\nto O O\nplace O O\nin O O\ncode O O\n: O O\n\nI O O\n've O O\nbeen O O\ntrying O O\nfor O O\nabout O O\na O O\nweek O O\nto O O\nfigure O O\nout O O\na O O\ndrop Name Name\ndown Name Name\nmenu Name Name\nusing O O\nselenium Name Name\n2 Name Name\n. O O\n\nIt O O\n's O O\na O O\nproject O O\nI O O\nam O O\nworking O O\non O O\nto O O\nautomate O O\na O O\nflight O O\nsearch O O\nusing O O\nITA Name Name\nMatrix Name Name\n2 Name Name\n( O O\nhttp://matrix.itasoftware.com/ O O\n) O O\n. O O\n\nEverything O O\nworks O O\nOK O O\nexcept O O\nselecting O O\nthe O O\nnumber O O\nof O O\npassengers O O\nfrom O O\nthe O O\ndrop Name Name\ndown Name Name\nmenu Name Name\n. O O\n\nClicking O O\non O O\nit O O\nworks O O\nfine O O\n, O O\nbut O O\nattempts O O\nto O O\nsend O O\nkeys O O\nor O O\narrow O O\ncommands O O\nto O O\nboth O O\nit O O\n, O O\nand O O\nthe O O\nnew O O\nID O O\nwhich O O\nis O O\ncreated O O\nwhen O O\nit O O\npops O O\nup O O\n, O O\ndo O O\nn't O O\nresult O O\nin O O\nany O O\nactions O O\n. O O\n\nI O O\nappreciate O O\nany O O\nhelp O O\n! O O\n\n( O O\nI O O\nam O O\nvery O O\nnew O O\nto O O\npython Name Name\n, O O\nI O O\n'm O O\ndoing O O\nthis O O\nproject O O\nas O O\na O O\nsort O O\nof O O\nself O O\nteaching O O\nexercise O O\nto O O\nlearn O O\n) O O\n. O O\n\nIn O O\nthis O O\ncase O O\n, O O\nit O O\nfails O O\nbecause O O\nthe O O\npassenger O O\ndrop Name Name\ndown Name Name\nmenu Name Name\nis O O\nnot O O\nactually O O\na O O\ndrop Name Name\ndown Name Name\nmenu Name Name\n, O O\nit O O\n's O O\nsome O O\nclever O O\nhtml Name Name\nand O O\njavascript Name Name\nso O O\nit O O\nwo O O\nn't O O\nrespond O O\nto O O\nthe O O\nusual O O\nevents O O\nas O O\nexpected O O\n. O O\n\nTry O O\nthis O O\n: O O\n\nClick O O\non O O\nthe O O\nlist Name Name\nat O O\nID O O\n: Name Name\n\nThen O O\nclick O O\nthe O O\nmenu Name Name\nitem O O\nat O O\nXPath Name Name\n( O O\nreplace O O\n' Name Name\nNUMBER_OF_PASSENGERS Name Name\n' Name Name\nwith O O\nthe O O\nnumber O O\nof O O\npassengers O O\n) O O\n: O O\n\nI O O\nam O O\nusing O O\nthe O O\ncode O O\nbelow O O\nto O O\nget O O\nunread O O\nmessages O O\ncount O O\n. O O\n\nHowever O O\n, O O\nXMPPUserCoreDataStorageObject Name Name\n* Name Name\nuser Name Name\nis O O\nalways O O\nnil Name Name\n. O O\n\nThe O O\nchat O O\nfunction O O\nworks O O\nfine O O\nbut O O\ni O O\nca O O\nn't O O\nget O O\nthe O O\nunread O O\nmessages O O\ncount O O\n. O O\n\nIt O O\nseems O O\nthat O O\nyour O O\nproject O O\nis O O\nnot O O\ncleaned.So O O\ndeep O O\nclean O O\nthe O O\nproject O O\nby O O\npressing O O\nthe O O\nfollowing O O\nthe O O\nkeys O O\n\nwindow+alt+shift+ O O\nk O O\n. O O\n\nI O O\nhope O O\nit O O\nwill O O\nhelp O O\nfor O O\nyou O O\n. O O\n\nIn O O\nGNU Name Name\nEMACS Name Name\n24.3 Name Name\n, O O\nI O O\nuse O O\nrecentf O O\nto O O\nshow O O\nthe O O\nrecently O O\nopened O O\nfiles O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nkeep O O\ncertain O O\nmakefiles Name Name\nso O O\nthat O O\nI O O\ndo O O\nnot O O\nhave O O\nto O O\ntype O O\nthe O O\nwhole O O\npath O O\nwhenever O O\nI O O\nwant O O\nto O O\nswitch O O\nprojects O O\n. O O\n\nIs O O\nit O O\npossible O O\nto O O\nmake O O\ncertain O O\nfiles O O\nsticky O O\nor O O\npersistent O O\nin O O\nthe O O\nlist Name Name\n? O O\n\nThis O O\nis O O\nnot O O\nexactly O O\nanswering O O\nyour O O\nquestion O O\n, O O\nbut O O\nI O O\nthink O O\nit O O\nwould O O\nserve O O\nthe O O\nsame O O\npurpose O O\n. O O\n\nI O O\nbookmark O O\nthe O O\nfiles O O\nI O O\n'm O O\nusing O O\nmost O O\noften O O\n. O O\n\nYou O O\ncan O O\nread O O\nmore O O\nabout O O\nit O O\nhere O O\n: O O\nhttp://www.emacswiki.org/emacs/BookMarks O O\n\nbut O O\nin O O\na O O\nnutshell O O\n: O O\nC-x O O\nr O O\nm O O\nbookmarks O O\nthe O O\ncurrently O O\nopen O O\nfile O O\n( O O\nworks O O\non O O\ndired Name Name\nbuffers Name Name\ntoo O O\n) O O\n. O O\n\nC-x O O\nr O O\nb O O\nloads O O\nthe O O\nbookmarked O O\nfile O O\nwith O O\nword O O\ncompletion O O\n. O O\n\nSet O O\nthe O O\nlength O O\nof O O\nthe O O\nrecent O O\nfiles O O\nlist Name Name\nto O O\na O O\nhigh O O\nnumber O O\n. O O\n\nFor O O\nexample O O\n: O O\n\nThis O O\nway O O\nthe O O\nmakefiles Name Name\nwo O O\nn't O O\ndrop O O\nout O O\nfrom O O\nthe O O\nlist Name Name\nif O O\nyou O O\nvisit O O\nthem O O\nregularly O O\n. O O\n\nAlso O O\nit O O\nis O O\nuseful O O\nto O O\nkeep O O\na O O\nlong O O\nrecentf O O\nlist Name Name\nand O O\nuse O O\na O O\npackage O O\nwhich O O\nallows O O\nyou O O\nto O O\nopen O O\nfiles O O\nfrom O O\nit O O\nwith O O\ncompletion O O\n. O O\n\nHere O O\nyou O O\ncan O O\nfind O O\nsome O O\nways O O\nto O O\ndo O O\nthat O O\n: O O\nhttp://www.emacswiki.org/emacs-es/RecentFiles O O\n\nI O O\nam O O\nrunning O O\na O O\nUbuntu Name Name\n16.04 Name Name\nand O O\nwant O O\nto O O\ninstall O O\nComposer Name Name\n. O O\n\nI O O\nhave O O\n2 O O\noptions O O\nat O O\nleast O O\n: O O\n\nThrough O O\nComposer.org Name Name\nsite O O\nrecommendations O O\ncommand O O\nline-> O O\nphp Name Name\n-r Name Name\n\" Name Name\ncopy('https://getcomposer Name Name\n.org/installer Name Name\n' Name Name\n, Name Name\n' Name Name\ncomposer-setup.php Name Name\n' Name Name\n) Name Name\n; Name Name\n\" Name Name\n.. Name Name\n. Name Name\n\nTrough O O\napt Name Name\n-> O O\natp Name Name\ninstall Name Name\ncomposer Name Name\n, O O\nas O O\nyou O O\ncan O O\nsee O O\nbelow O O\n: O O\n\nSo O O\n, O O\nis O O\nthere O O\nany O O\nconstraint O O\nto O O\ninstall O O\ntrough O O\nprocess O O\n2 O O\n? O O\n\nIf O O\nyou O O\ninstall O O\nthrough O O\nthe O O\npackage Name Name\nmanager Name Name\n, O O\nyou O O\n're O O\ngoing O O\nto O O\nget O O\nan O O\nolder O O\nversion O O\n. O O\n\nWhether O O\nor O O\nnot O O\nthat O O\nmatters O O\nis O O\nup O O\nto O O\nyou O O\n. O O\n\nThere O O\nare O O\nbenefits O O\nto O O\ninstalling O O\neverything O O\nthrough O O\nthe O O\npackage Name Name\nmanager Name Name\n; O O\nnamely O O\n, O O\nit O O\nbecomes O O\neasy O O\nto O O\nkeep O O\nyour O O\nentire O O\nsystem O O\nup-to-date O O\n( O O\nby O O\nUbuntu Name Name\n's O O\ndefinition O O\nof O O\nup-to-date O O\n) O O\n. O O\n\nThere O O\nare O O\nalso O O\nobvious O O\nbenefits O O\nto O O\nfollowing O O\na O O\ngiven O O\npiece O O\nof O O\nsoftware O O\n's O O\ninstructions O O\n. O O\n\nPersonally O O\n, O O\nif O O\nI O O\nwere O O\nsharing O O\ncode O O\nwith O O\nother O O\ndevelopers O O\nwho O O\nuse O O\ncomposer Name Name\n, O O\nI O O\n'd O O\ninstall O O\ncomposer Name Name\nthrough O O\nthe O O\n' O O\nrecommended O O\n' O O\nway O O\nand O O\ntry O O\nto O O\nkeep O O\nit O O\nup O O\nto O O\ndate O O\nby O O\nchecking O O\nperiodically O O\nfor O O\nnew O O\nversions O O\non O O\nthe O O\nwebsite O O\n. O O\n\nThat O O\nway O O\nwe O O\n'd O O\nall O O\nbe O O\nusing O O\nthe O O\nsame O O\nversion O O\n. O O\n\nI O O\n'm O O\nusing O O\nBasic Name Name\nComboTree Name Name\nfrom O O\njeasyui.com Name Name\n\nindex.js Name Name\n\nin O O\ncshtml Name Name\n\nYou O O\ncould O O\ncreate O O\na O O\ndirective O O\n[ O O\nset O O\nthe O O\ndirective O O\nas O O\nattribute O O\nfor O O\ninput O O\nelement O O\n] O O\nand O O\nwithin O O\nthe O O\ndirective O O\nset O O\nthe O O\ndata O O\nusing O O\nloadData Name Name\nwhen O O\nthe O O\npromise O O\nis O O\nresolved O O\n. O O\n\nHere O O\nis O O\nthe O O\nworking O O\nexample O O\n. O O\n\nHope O O\nthis O O\nwill O O\nsolve O O\nyour O O\nproblem O O\n.. O O\n. O O\n\ncreate O O\na O O\nservice O O\nto O O\nget O O\nthe O O\nremote O O\ndata O O\n\ntree_data1.json Name Name\ndata O O\n\ncreate O O\na O O\ndirective O O\nsay O O\n\" O O\ncomboTreeDirective Name Name\n\" O O\nand O O\nadd O O\nthe O O\ndirective O O\nas O O\nan O O\nattribute O O\nto O O\ncomboe O O\ntree O O\nelement O O\n\nuse O O\nthe O O\ndirective O O\nas O O\nshown O O\nbelow O O\n\nBelow O O\nis O O\nthe O O\ncomplete O O\nworking O O\nexample O O\n\nI O O\nam O O\ntrying O O\nto O O\nmake O O\nlots O O\nof O O\ncalls O O\nfrom O O\nmy O O\nserver Name Name\nto O O\na O O\nREST Name Name\nAPI Name Name\nthat O O\nis O O\nexposed O O\nby O O\nanother O O\nserver Name Name\nbut O O\nthe O O\ncode O O\nis O O\ntaking O O\ntoo O O\nlong O O\nto O O\nrun O O\n. O O\n\nBelow O O\nis O O\nthe O O\ncode O O\nwhich O O\ntakes O O\na O O\nlot O O\nof O O\ntime O O\n. O O\n\nRight O O\nnow O O\nI O O\nam O O\nusing O O\nC# Name Name\nAsync/Await Name Name\nalong O O\nwith O O\nHTTPClient Name Name\n, O O\nis O O\nthere O O\na O O\nbetter O O\nway O O\nI O O\ncan O O\ndo O O\nthis O O\n? O O\n\nAS O O\n@TheESJ O O\nsaid O O\nthe O O\nawaits Name Name\nmake O O\nyour O O\ncode O O\nexecute O O\nin O O\na O O\nserial O O\nfashion O O\n. O O\n\nThat O O\nis O O\nonce O O\nexecution O O\nreaches O O\nthe O O\nfirst O O\nawait Name Name\n, O O\nexecution O O\nis O O\neffectively O O\n\" O O\npaused O O\n\" O O\nand O O\nwill O O\nnot O O\nresume O O\nuntil O O\nthat O O\nTask Name Name\nis O O\ncomplete O O\n. O O\n\nYou O O\ncan O O\navoid O O\nthis O O\nby O O\nnot O O\nawaiting O O\nthe O O\nTask Name Name\n, O O\njust O O\nadd O O\nit O O\nto O O\na O O\nlist Name Name\nof O O\ntasks Name Name\nto O O\nkeep O O\ntrack O O\nof O O\n. O O\n\nTo O O\nfacilitate O O\nthis O O\nI O O\nthink O O\nit O O\nwill O O\nhelp O O\nif O O\nyou O O\nintroduced O O\na O O\ncouple O O\nof O O\nhelper O O\nmethods O O\nto O O\nexecute O O\nthe O O\nbody O O\nof O O\nyour O O\nloops O O\nand O O\nreturn O O\na O O\nTask Name Name\n. O O\n\nThen O O\nin O O\nyour O O\nmain O O\nloop O O\nyou O O\njust O O\nadd O O\nthe O O\ntasks Name Name\nto O O\na O O\nlist Name Name\nas O O\nthe O O\nmethods O O\nare O O\nkicked O O\noff O O\n, O O\nthis O O\nwill O O\nessentially O O\nexecute O O\nthe O O\ntasks Name Name\nin O O\nparallel O O\n. O O\n\nYou O O\nmay O O\nneed O O\nto O O\nincrease O O\nthe O O\nnumber O O\nof O O\nconcurrent O O\nconnections O O\nyour O O\nserver Name Name\ncan O O\nmake O O\nif O O\nit O O\ncauses O O\na O O\nproblem O O\n. O O\n\nYour O O\nmain Name Name\nmethod O O\nthen O O\nbecomes O O\n. O O\n\nThose O O\n' O O\nawait Name Name\n's O O\ninside O O\nyour O O\nloop O O\nwill O O\nserialize O O\nthe O O\nrequests O O\n. O O\n\nConsider O O\ninstead O O\nusing O O\n.ContinueWith Name Name\non O O\nthe O O\ntask O O\nto O O\ndo O O\nsome O O\nwork O O\nwith O O\nthe O O\nresult O O\n, O O\nkeep O O\ntrack O O\nof O O\nthe O O\ntasks O O\nin O O\nan O O\narray Name Name\n, O O\nthen O O\ncall O O\nTask.WhenAll Name Name\nonce O O\nyou O O\n're O O\ndone O O\nsetting O O\nup O O\nall O O\nthe O O\nparallel O O\nwork O O\n. O O\n\nDear O O\nExpert O O\nneed O O\nHelp O O\nfirst O O\nsee O O\nmy O O\nview O O\ncode O O\nin O O\ncodeigniter Name Name\n: O O\n\nand O O\nthis O O\nmy O O\nmodel O O\ncode O O\n: O O\n\nand O O\nmy O O\ncontroller O O\nif O O\ni O O\nget O O\nthe O O\nimportant O O\ncode O O\nis O O\n: O O\n\nthe O O\nproblem O O\nis O O\nif O O\nsearching O O\nbetween O O\ntwo O O\ndate O O\ntglawal Name Name\nand O O\ntglakhir Name Name\n\nim O O\nusing O O\nbetween O O\n2016-12-04 Name Name\nand O O\n2016-12-04 Name Name\noutput O O\ndisplay O O\nwill O O\nempty Name Name\n\nbut O O\nif O O\nusing O O\nbetween O O\n2016-12-04 Name Name\nand O O\n2016-12-06 Name Name\noutput O O\nsuccess Name Name\nwhere O O\nis O O\nmy O O\nproblem O O\nor O O\nmaybe O O\nim O O\nusing O O\nwhere O O\nor O O\ni O O\nhave O O\nto O O\nuse O O\nlike O O\n? O O\n\nYou O O\nneed O O\nto O O\nuse O O\nthe O O\n>= Name Name\nand O O\n<= Name Name\noperator O O\n. O O\n\nIn O O\nyour O O\nmodel O O\ntry O O\nthe O O\nbelow O O\n. O O\n\nThe O O\nabove O O\nwill O O\nsearch O O\nfor O O\nthe O O\nbetween O O\ndates O O\nincluding O O\nthe O O\ndates O O\nselected O O\n. O O\n\nUse O O\nthe O O\noperator O O\ndepending O O\non O O\nthe O O\nbeginning O O\nand O O\nending O O\nvariable O O\n. O O\n\nI O O\nneed O O\nhelp O O\nwith O O\nwriting O O\na O O\nfunction O O\nto_secs Name Name\nthat O O\nconverts O O\nhours O O\n, O O\nminutes O O\n, O O\nand O O\nseconds O O\nto O O\na O O\ntotal O O\nnumber O O\nof O O\nseconds O O\n. O O\n\nIn O O\nthe O O\nbook O O\nit O O\nsays O O\nthe O O\nfollowing O O\ntest O O\nshould O O\nbe O O\npossible O O\n: O O\n\nThere O O\nare O O\n3600 O O\nseconds O O\nin O O\nan O O\nhour O O\n, O O\n60 O O\nin O O\na O O\nminute O O\n. O O\n\nThe O O\nrest O O\nis O O\nsimple O O\narithmetic O O\n: O O\n\nDemo O O\n: O O\n\nAs O O\nmentioned O O\nin O O\nthis O O\nquestion O O\ni O O\ntried O O\nto O O\nchange O O\nthe O O\ndate O O\nformat O O\nof O O\nLiferays Name Name\ninput-date Name Name\nfield Name Name\n. O O\n\nSo O O\nfar O O\nsuccessfull O O\n. O O\n\nHowever O O\ni O O\nwas O O\ntesting O O\nit O O\nin O O\ndifferent O O\nbrowsers Name Name\nand O O\nnoticed O O\nthat O O\nFirefox Name Name\nmesses O O\nup O O\nthe O O\ndate O O\nwhen O O\ni O O\nclick O O\nthe O O\nfield Name Name\n. O O\n\nNo O O\nproblems O O\nin O O\nIE Name Name\nor O O\nChrome Name Name\n. O O\n\nIt O O\ninitially O O\ndisplays O O\nthe O O\ncurrent O O\ndate O O\nlike O O\n18.08.2017 Name Name\n. O O\n\nBut O O\nwhen O O\ni O O\nclick O O\nthe O O\nfield Name Name\n( O O\nno O O\nchange O O\nof O O\nthe O O\ndate O O\nthat O O\nmoment O O\n) O O\nit O O\ndisplays O O\nd.08.2017 Name Name\n. O O\n\nAt O O\nfirst O O\ni O O\nthought O O\ni O O\nmessed O O\nit O O\nup O O\ndue O O\nmy O O\nformat O O\nchanges O O\n. O O\n\nBut O O\nafter O O\nundoing O O\nthese O O\nthe O O\nerror O O\nstill O O\nexists O O\n.. O O\n. O O\n\nThe O O\nvalue O O\nitself O O\nhowever O O\nis O O\nworking O O\nnormal O O\nand O O\nmy O O\njava Name Name\nmethod O O\ndoesnt O O\nget O O\nany O O\nerros O O\n. O O\n\nI O O\ncan O O\nchange O O\nthe O O\ndate O O\nin O O\nthe O O\npicker Name Name\nand O O\nthe O O\nhidden O O\nfields O O\nwill O O\nhave O O\nthe O O\ncorrect O O\nvalue O O\n. O O\n\nOnly O O\nthe O O\nvisible O O\npart O O\nof O O\nthe O O\ndate O O\nis O O\nmessed O O\nup O O\n. O O\n\nI O O\nlooked O O\ninto O O\nthe O O\nconsole O O\nand O O\nsaw O O\n, O O\nthat O O\nLiferay.Form Name Name\nis O O\nundefined O O\n. O O\n\nI O O\ndont O O\nknow O O\nif O O\nit O O\n's O O\nrelevant O O\nat O O\nall O O\n. O O\n\nIE Name Name\nand O O\nChrome Name Name\nare O O\ndisplaying O O\nerrors O O\ntoo O O\n, O O\nbut O O\nare O O\nalso O O\ndisplaying O O\nthe O O\ndate O O\nnormally O O\n. O O\n\nHow O O\ncan O O\ni O O\nget O O\nrid O O\nof O O\nthis O O\nerror O O\n? O O\n\nEDIT O O\n: O O\n\nThat O O\n's O O\nthe O O\ncode O O\ni O O\n'm O O\nusing O O\nfor O O\nthe O O\ndatepicker Name Name\n: O O\n\nI O O\ndo O O\nn't O O\nhave O O\nany O O\njs Name Name\ncode O O\n, O O\nbecause O O\ni O O\n've O O\nwritten O O\nnone O O\n. O O\n\nI O O\n'm O O\nattempting O O\nto O O\nuse O O\na O O\nMOBILE Name Name\nfirst O O\napproach O O\nto O O\nresponsive O O\ndesign O O\n. O O\n\nIn O O\ndoing O O\nso O O\n, O O\nI O O\nwish O O\nto O O\nconvert O O\nmy O O\nMAX Name Name\nmedia O O\nqueries O O\nto O O\nMIN Name Name\nmedia O O\nqueries O O\n. O O\n\nTherefore O O\n, O O\ninstead O O\nof O O\nusing O O\ngraceful O O\ndegradation O O\n, O O\nI O O\naim O O\nto O O\nimplement O O\nprogressive O O\nenhancement O O\n\nCan O O\nanyone O O\nexplain O O\nthe O O\nbest O O\nway O O\nto O O\nre-engineer O O\nmy O O\nCSS Name Name\nto O O\nuse O O\nMIN-width Name Name\nmedia O O\nqueries O O\nas O O\nopposed O O\nto O O\nMAX-width Name Name\n? O O\n\nIn O O\nthe O O\nexample O O\nbelow O O\nI O O\nhave O O\ntrimmed O O\nout O O\n95% O O\nof O O\nthe O O\ncss Name Name\nand O O\nhave O O\nleft O O\nthe O O\nbreakpoints O O\n\n// O O\nMAIN O O\nCSS O O\n\n// O O\n--MEDIA O O\n\n// O O\n--MEDIA O O\n\n@media Name Name\nMIN-width Name Name\n: Name Name\n\nMin-width Name Name\nmedia O O\nqueries O O\nare O O\nvery O O\neasy O O\n, O O\nto O O\nuse O O\n, O O\nand O O\nare O O\nnot O O\ntoo O O\ndifferent O O\nfrom O O\nusing O O\nMAX Name Name\nmedia O O\nqueries O O\n. O O\n\nHere O O\nis O O\nan O O\nexample O O\nusing O O\nyour O O\ncode O O\n: O O\n\nIt O O\nis O O\nimportant O O\nto O O\nstill O O\nuse O O\nmax-width Name Name\nto O O\ncreate O O\nlimits O O\nfor O O\nthe O O\nstyle O O\nof O O\nobjects O O\non O O\ncertain O O\nscreens Name Name\n. O O\n\nUsing O O\nmin-width Name Name\ncan O O\nbe O O\nespecially O O\nuseful O O\nif O O\nyou O O\nwant O O\ncertain O O\nstyles O O\nto O O\napply O O\nto O O\na O O\nsmaller O O\nobject O O\nand O O\nthen O O\nhave O O\nthat O O\nsame O O\nstyle O O\napply O O\nto O O\na O O\nlarger O O\nobject O O\n. O O\n\nThis O O\nway O O\nyou O O\ncan O O\nkeep O O\nthe O O\nstyles O O\nfor O O\nthat O O\nminimum O O\nsize O O\nbut O O\nalso O O\nadd O O\non O O\nextra O O\nstyles O O\nto O O\nthe O O\nlarger O O\nobject O O\nwith O O\nout O O\neffecting O O\nthe O O\nsmaller O O\none O O\n. O O\n\nFor O O\nexample O O\n: O O\n\nIn O O\nthe O O\nabove O O\nexample O O\n, O O\nthe O O\nstyles O O\nfrom O O\nscreens Name Name\nwith O O\na O O\nsize O O\nof O O\nover O O\n740px Name Name\nwill O O\nalready O O\nbe O O\napplied O O\nto O O\nany O O\nscreens Name Name\nwith O O\na O O\nsize O O\nof O O\nover O O\n900px Name Name\n. O O\n\nFrom O O\nthere O O\nyou O O\ncan O O\nadjust O O\nyour O O\nstyles O O\nas O O\nyou O O\nlike O O\n, O O\nreducing O O\nthe O O\namount O O\nof O O\ncode O O\nneeded O O\nto O O\nproduce O O\nthe O O\npage O O\n. O O\n\nOther O O\nThings O O\n: O O\n\n-When O O\nit O O\ncomes O O\nto O O\nactual O O\nelements O O\non O O\nthe O O\nscreen Name Name\n( O O\nexcluding O O\nmin/max O O\n-sizes O O\nwith O O\n@media Name Name\n) O O\nit O O\ncan O O\nalways O O\nbe O O\nhelpful O O\nto O O\nuse O O\npercentages O O\n, O O\nbecause O O\nthat O O\nway O O\nitems O O\ncan O O\nbe O O\nauto O O\nre-sized O O\naccording O O\nto O O\nthe O O\nscreen O O\nsize O O\n. O O\n\n-Here O O\nis O O\na O O\ngreat O O\nwebsite O O\nthat O O\nwill O O\nhelp O O\nyou O O\non O O\nyour O O\nendeavours O O\nwith O O\nmedia O O\nqueries O O\n: O O\nhttp://css-tricks.com/snippets/css/media-queries-for-standard-devices/ O O\n\nIt O O\ntotally O O\ndepends O O\non O O\nthe O O\nrest O O\nof O O\nyour O O\nsite O O\n. O O\n\nSome O O\nsites O O\ncan O O\nbe O O\ndisplayed O O\nwell O O\nat O O\nthe O O\nwidth Name Name\nof O O\n400px Name Name\nwhile O O\nsome O O\nothers O O\nneed O O\nto O O\nset O O\na O O\nminumum O O\nbecause O O\nit O O\n's O O\ntoo O O\nsmall O O\nto O O\nrender O O\nthe O O\ndocument O O\nobjects O O\nin O O\na O O\nclean O O\nmanner O O\n. O O\n\nVery O O\noften O O\nyou O O\nwill O O\nnot O O\neven O O\nneed O O\nto O O\nuse O O\nmin-width Name Name\nor O O\nmax-width Name Name\nwhen O O\noptimizing O O\nfor O O\nmobile O O\n, O O\nthere O O\nare O O\nfar O O\nmore O O\nbetter O O\npractices O O\n. O O\n\nHere O O\nare O O\nsome O O\nof O O\nthem O O\n: O O\n\nUse O O\nEm Name Name\nover O O\nPx Name Name\n- O O\nIt O O\nis O O\nalways O O\nbetter O O\nto O O\nset O O\nfont-size Name Name\nand O O\nother O O\nsizes O O\nin O O\nunits O O\nof O O\n\" O O\nem Name Name\n\" O O\nrather O O\nthan O O\nin O O\n\" O O\npx Name Name\n\" O O\n. O O\n\nThis O O\nis O O\nbecause O O\na O O\npixel O O\nis O O\nextremely O O\nsmall O O\non O O\na O O\ncell Name Name\nphone Name Name\n, O O\nwhereas O O\nem O O\nunits O O\nproportionally O O\nadjusts O O\nthe O O\nobject O O\nto O O\na O O\nsize O O\nthat O O\nfits O O\nthe O O\nscreen Name Name\n. O O\n\nUse O O\nPercentages O O\n- O O\nYou O O\n'll O O\nfind O O\nthat O O\nusing O O\npercentages O O\nare O O\nfar O O\nmore O O\nfriendly O O\nthan O O\n, O O\nfor O O\ninstance O O\n, O O\nspecifying O O\nthe O O\nwidth Name Name\nor O O\nheight Name Name\nof O O\nan O O\nelement O O\nin O O\npixels O O\nor O O\nem O O\n. O O\n\nIf O O\nyou O O\nuse O O\npercentages O O\n, O O\nyour O O\ncontent O O\nwill O O\nalways O O\nadjust O O\nwell O O\nin O O\nfor O O\nskinny O O\ndisplays O O\n. O O\n\nAvoid O O\nAbsolutely O O\nPositioned O O\nElements O O\n- O O\nHaving O O\nelements O O\npositioned O O\nabsolutely O O\ncan O O\nbe O O\nmore O O\ndifficuly O O\nto O O\nhandle O O\non O O\nsmall O O\ndisplays O O\n. O O\n\nIt O O\nsimply O O\ncan O O\n, O O\nas O O\nthe O O\nabsolute O O\nelements O O\nmay O O\nget O O\ntoo O O\nnear O O\nto O O\nthe O O\nrelatively O O\npositioned O O\nelements O O\n. O O\n\nUse O O\nrelative O O\npositioning O O\nas O O\nmuch O O\nas O O\npossible O O\nfor O O\na O O\nclean O O\nsite O O\n. O O\n\nI O O\nam O O\nlearning O O\npython Name Name\nunittest Name Name\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nask O O\nwhat O O\nthe O O\n' O O\ntest_code Name Name\n' O O\nin O O\nthe O O\nfollowing O O\ncode O O\nis O O\n. O O\n\nIs O O\nit O O\nthe O O\nargument O O\nof O O\n' O O\n-m Name Name\n' O O\noption O O\nor O O\none O O\nof O O\nunittest Name Name\n? O O\n\nI O O\nwould O O\nlike O O\nto O O\nknow O O\nhow O O\nthe O O\nunittest Name Name\nworks O O\n. O O\n\nThank O O\nyou O O\nvery O O\nmuch O O\n\nUsing O O\nunittest Name Name\nmodule O O\nyou O O\ncan O O\nrun O O\ntests O O\nfrom O O\nmodules O O\nin O O\ncommand O O\nline O O\n. O O\n\nWhile O O\n-m Name Name\nis O O\na O O\nflag O O\nand O O\nis O O\nused O O\nto O O\nspecify O O\npython Name Name\nthat O O\nyou O O\nwould O O\nbe O O\nusing O O\ntest O O\nmethods O O\nof O O\nunittest Name Name\n. O O\n\nI O O\nhave O O\na O O\nmatrix Name Name\nrepresented O O\nin O O\nPHP Name Name\nas O O\nan O O\narray Name Name\n: O O\n\nand O O\nI O O\nhave O O\na O O\nsecond O O\nmatrix Name Name\nrepresented O O\nin O O\na O O\nsimilar O O\nway O O\n( O O\nhere O O\nwithout O O\ninner O O\narrays Name Name\n, O O\nbut O O\nI O O\ndo O O\nn't O O\nmind O O\nadding O O\nthem O O\n) O O\n: O O\n\nI O O\n'd O O\nlike O O\nto O O\nhave O O\na O O\ncombination O O\nlike O O\nthis O O\n: O O\n\nI O O\nwas O O\ntrying O O\nto O O\nfind O O\na O O\ncode O O\nsnippet O O\nthat O O\ndoes O O\nthat O O\nfor O O\nme O O\n, O O\nbut O O\nI O O\nfailed O O\nbecause O O\nI O O\ndo O O\nn't O O\neven O O\nknow O O\nif O O\nthis O O\nkind O O\nof O O\noperation O O\nhas O O\na O O\nname O O\n. O O\n\nHas O O\nit O O\n? O O\n\n( O O\nI O O\ndo O O\nn't O O\nwant O O\nanyone O O\nto O O\nwrite O O\nthat O O\ncode O O\nsnippet O O\n, O O\nI O O\ncan O O\ndo O O\nthat O O\nmyself O O\n. O O\n) O O\n\nJust O O\nin O O\ncase O O\nanyone O O\nelse O O\ndoes O O\nwant O O\nan O O\nimplementation O O\n, O O\nthe O O\nfollowing O O\nwould O O\ncreate O O\na O O\ncartesian O O\nproduct O O\nof O O\ntwo O O\narrays Name Name\n: O O\n\nAnd O O\nadditionally O O\n, O O\nif O O\nyou O O\nwant O O\nthe O O\nvalues O O\nfrom O O\n$array1 Name Name\nand O O\n$array2 Name Name\nin O O\nthe O O\nfinal O O\narray Name Name\n, O O\nyou O O\ncan O O\nmerge O O\nthe O O\ntwo O O\narrays Name Name\ntogether O O\nbefore O O\nthe O O\nnested O O\nforeach O O\nloops O O\n: O O\n\nWhat O O\nyou O O\nare O O\nlooking O O\nfor O O\nis O O\ncalled O O\nthe O O\ncartesian O O\nproduct O O\n. O O\n\nThere O O\nis O O\nno O O\nnative O O\nPHP Name Name\nfunction O O\nto O O\ncalculate O O\nthat O O\n. O O\n\nMy O O\nangularjs Name Name\napp O O\nis O O\nembedded O O\ninto O O\nasp.net Name Name\nmvc Name Name\napp O O\n. O O\n\nFrom O O\nangularjs Name Name\nI O O\n'm O O\nsending O O\na O O\nrequest O O\nto O O\na O O\ncross O O\ndomain O O\nlike O O\n\nand O O\nI O O\n'm O O\ngetting O O\n\nIs O O\nit O O\nsomething O O\nthat O O\nI O O\ncan O O\nfix O O\non O O\nasp.net Name Name\nmvc Name Name\nserver Name Name\nside O O\ninside O O\nwhich O O\nthis O O\nangularjs Name Name\napp O O\nis O O\nrunning O O\nor O O\nis O O\nsomething O O\nI O O\nshould O O\ncheck O O\non O O\nmywebservice.com O O\nside O O\n? O O\n\nThis O O\nis O O\nhappening O O\nbecause O O\nyou O O\nare O O\ntrying O O\nto O O\nsend O O\na O O\nrequest O O\nto O O\na O O\nserver Name Name\nof O O\na O O\ndifferent O O\norigin O O\n. O O\n\nThe O O\nissue O O\nneeds O O\nto O O\nbe O O\nresolved O O\non O O\nmywebservice.com O O\nby O O\nallowing O O\nyour O O\ndomain O O\nto O O\nmake O O\nrequests O O\nto O O\nit O O\n. O O\n\nAlternatively O O\nyou O O\ncould O O\nmake O O\nthe O O\nrequest O O\nfrom O O\nyour O O\nserver Name Name\nand O O\nthen O O\nsend O O\nthat O O\nto O O\nyour O O\nAngular Name Name\nfront O O\nend O O\n. O O\n\nI O O\nwant O O\nto O O\ncreate O O\nChoiceBox Name Name\nwhich O O\nI O O\nwant O O\nto O O\ncall O O\nwhen O O\nI O O\npress O O\nthe O O\nimage Name Name\nbelow O O\n. O O\n\nIs O O\nthere O O\nany O O\nto O O\ncall O O\nChoiceBox Name Name\nmenu Name Name\nwhen O O\nI O O\nclick O O\non O O\nthe O O\nimage Name Name\n? O O\n\nYou O O\ncan O O\ninitially O O\nput O O\nthe O O\nChoiceBox Name Name\nin O O\nyour O O\npane Name Name\nand O O\nset O O\nthe O O\nvisibility O O\nas O O\nfalse Name Name\n\nLater O O\n, O O\nwhen O O\nyou O O\nclick O O\non O O\nthe O O\nimage Name Name\n, O O\nyou O O\ncan O O\nset O O\nthe O O\nvisibility O O\nas O O\ntrue Name Name\n! O O\n\nNote O O\n: O O\nI O O\njust O O\ntyped O O\nthe O O\ncode O O\n, O O\nso O O\nnot O O\nsure O O\nwhether O O\nit O O\nwill O O\ncompile O O\nor O O\nnot O O\n! O O\n\nJust O O\nwanted O O\nto O O\ngive O O\nyou O O\nan O O\nidea O O\n! O O\n\nHow O O\ndo O O\nI O O\ngenerate O O\na O O\nrandom O O\nnumber O O\nwithin O O\na O O\nspecific O O\nrange O O\nin O O\nGroovy Name Name\nScript O O\n? O O\n\nI O O\nwant O O\nto O O\ngenerate O O\nthe O O\nnumber O O\nbetween O O\n10,000 Name Name\nand O O\n90,000 Name Name\n\nBelow O O\nare O O\nmy O O\nattempts O O\nso O O\nfar O O\n: O O\n\n1 O O\n. O O\n\n2 O O\n. O O\n\nBoth O O\nof O O\nthese O O\ngenerate O O\na O O\nrandom O O\nnumber O O\nyes O O\n, O O\nbut O O\nthey O O\nare O O\nnot O O\nwithin O O\nthe O O\nrange O O\nof O O\n10 Name Name\n, Name Name\n00-90 Name Name\n, Name Name\n000 Name Name\n\nI O O\nfound O O\nmy O O\nerror O O\n: O O\nI O O\njust O O\nneeded O O\nto O O\nswitch O O\nthe O O\n90000 Name Name\nand O O\nthe O O\n10000 Name Name\nfor O O\n1 Name Name\n. O O\n\nCorrect O O\ncode O O\n: O O\n\nI O O\nhave O O\na O O\nfixed O O\nmenu Name Name\n, O O\nwhich O O\nmoves O O\nwith O O\nscrolling O O\n. O O\n\nI O O\nwant O O\nto O O\nadd O O\ndynamically O O\nanother O O\ndiv Name Name\nbefore O O\nthis O O\nmenu Name Name\n, O O\nit O O\nis O O\nsupposed O O\nto O O\ndisappear O O\nonce O O\nclicked O O\n. O O\n\nIt O O\nshould O O\nstick O O\nto O O\nthe O O\nmoving O O\nmenu Name Name\n. O O\n\nI O O\ntried O O\nto O O\nprepend O O\nit O O\nto O O\nbody O O\nwith O O\nposition O O\nfixed O O\n- O O\nit O O\nwas O O\nover O O\nthe O O\nmenu Name Name\n. O O\n\nIf O O\nI O O\nprepend O O\nit O O\nto O O\nthe O O\nmenu Name Name\n, O O\nthe O O\nresult O O\nis O O\nthe O O\nsame O O\n. O O\n\nWhat O O\nis O O\nthe O O\nproper O O\nway O O\nto O O\napproach O O\nthis O O\n? O O\n\nhttps://jsfiddle.net/rzpL34ef/3/ O O\n\nYou O O\ncan O O\ndo O O\nsomething O O\nlike O O\nthis O O\n\nConsider O O\nfollowing O O\nJavascript Name Name\ncode O O\nexample O O\n\nWhy O O\ndoes O O\nIDEA Name Name\nsay O O\n{ Name Name\n} Name Name\nca O O\nn't O O\nbe O O\nassigned O O\nto O O\nhash Name Name\n? O O\n\nUPDATE O O\n\nJSDoc Name Name\nstyle O O\nwas O O\npicked O O\nup O O\nfrom O O\nZimbra Name Name\nfrontend O O\nsource O O\ncode O O\n. O O\n\nFor O O\nexample O O\n, O O\nlook O O\nat O O\nDwtComposite Name Name\nconstructor O O\n. O O\n\nThe O O\nerror O O\nmessage O O\nitself O O\n\nWhat O O\ncode O O\nquality O O\n/ O O\ncode O O\ncoverage O O\ntools O O\nare O O\navailable O O\nfor O O\nJasmine Name Name\n? O O\n\nWorking O O\nin O O\nRails Name Name\n3.2.2 Name Name\n. O O\n\nYou O O\nmay O O\nbe O O\nable O O\nto O O\nuse O O\na O O\ncombination O O\nof O O\nJsTestDriver Name Name\nand O O\nthis O O\nJasmine Name Name\nadapter O O\nto O O\nget O O\ncoverage O O\nmetrics O O\n. O O\n\nJSCoverage Name Name\nis O O\na O O\nC Name Name\nbased O O\ntool O O\nthat O O\nyou O O\nrun O O\nout O O\nof O O\nband O O\nfrom O O\nthe O O\ncommand Name Name\nline. Name Name\n. O O\n\nJesCov Name Name\nis O O\na O O\nJava Name Name\nsolution O O\nthat O O\nsupports O O\nJasmine Name Name\n. O O\n\nYou O O\ncan O O\nrun O O\nit O O\nfrom O O\nthe O O\ncommand Name Name\nline Name Name\n, O O\nso O O\nit O O\nshould O O\nbe O O\nfairly O O\nstraight O O\nforward O O\nto O O\nintegrate O O\nwith O O\nRails Name Name\nif O O\nthe O O\nsystem O O\nhas O O\na O O\nJRE Name Name\n: O O\n\njava Name Name\n-jar Name Name\njescov-0.0.1.jar Name Name\none.js Name Name\ntwo.js Name Name\nthree.js Name Name\n\nI O O\nlooked O O\ninto O O\nJesCov Name Name\nseveral O O\nmonths O O\nago O O\nfor O O\na O O\nGrails Name Name\nproject O O\n, O O\nbut O O\nnever O O\nactually O O\ntried O O\nit O O\nout O O\n, O O\nso O O\nI O O\n'd O O\nbe O O\ninterested O O\nin O O\nhearing O O\nyour O O\nexperience O O\nif O O\nyou O O\ndo O O\ntry O O\nit O O\n. O O\n\nI O O\nwant O O\nto O O\npass O O\na O O\nstring Name Name\nparameter O O\non O O\nmy O O\nform Name Name\nPanel Name Name\n. O O\n\nIs O O\nit O O\npossible O O\nto O O\nadd O O\nstring Name Name\nparameter O O\ndata O O\non O O\nGWT Name Name\nform Name Name\npanel Name Name\n? O O\n\nI O O\nhave O O\nservlet Name Name\ncode O O\nthat O O\nwill O O\nreceive O O\npassed O O\nstring Name Name\nparameter O O\nusing O O\npost O O\n, O O\nI O O\ncannot O O\ninclude O O\nthe O O\nparameters O O\nin O O\nthe O O\nlink O O\nbecause O O\nit O O\nhas O O\nlarge O O\namounts O O\nof O O\ndata O O\n\nthis O O\nis O O\nmy O O\nservlet Name Name\ncode O O\n: O O\n\nUse O O\nHidden Name Name\nwidget Name Name\n. O O\n\nIt O O\ncreates O O\n<input Name Name\ntype='hidden'> Name Name\nelement O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nedit O O\na O O\ntemplate O O\nsystem O O\nso O O\nwhere O O\nI O O\ncan O O\nuse O O\nparams O O\nsuch O O\nas O O\n[ O O\ntitle Name Name\n] O O\nand O O\nit O O\n'll O O\nshow O O\nmy O O\ntitle O O\nin O O\nthe O O\nincluded O O\npage O O\n. O O\n\nBut O O\nI O O\nalso O O\nwant O O\nto O O\nbe O O\nable O O\nto O O\nuse O O\nphp Name Name\ncode O O\ninside O O\nof O O\nit O O\nand O O\nbe O O\nable O O\nto O O\nexecute O O\nthat O O\ncode O O\n. O O\n\nBut O O\nI O O\nam O O\nhaving O O\ndifficult O O\ngetting O O\nthem O O\nboth O O\nto O O\nwork O O\nat O O\nthe O O\nsame O O\ntime O O\n. O O\n\nI O O\nhave O O\ntried O O\nto O O\nuse O O\ninclude Name Name\ninstead O O\nof O O\nfile_get_Contents Name Name\nbut O O\nwhen O O\nI O O\nuse O O\ninclude Name Name\n, O O\nthe O O\nparams O O\nno O O\nlonger O O\nwork O O\n. O O\n\nHowever O O\nwhen O O\nI O O\nuse O O\nfile_get_contents Name Name\nthe O O\nphp Name Name\ndoesnt O O\nwork O O\n, O O\nand O O\ndoesnt O O\nshow O O\n. O O\n\nMy O O\ncode O O\n: O O\n\nHope O O\nsomeone O O\ncan O O\nhelp O O\n. O O\n\nThanks O O\n\nI O O\nwant O O\nto O O\nuse O O\n\" O O\ntagit Name Name\n\" O O\n, O O\nbut O O\nit O O\nis O O\nn't O O\nworking O O\n. O O\n\nHere O O\nis O O\n( O O\npart O O\nof O O\n) O O\nmy O O\ncode O O\n: O O\n\nCan O O\nyou O O\nwise O O\nmen O O\n, O O\ntell O O\nme O O\nwhat O O\nI O O\n'm O O\ndoing O O\nwrong O O\nand O O\nhow O O\nto O O\nfix O O\n? O O\n\nsince O O\nno O O\nerror O O\nis O O\nhappening O O\nthere O O\nis O O\nno O O\nissue O O\nin O O\nthe O O\nplugin O O\nloading O O\n. O O\n\nCan O O\nyou O O\ntry O O\nthis.Also O O\nwhich O O\nplugin O O\nare O O\nyou O O\nusing O O\n? O O\n\nI O O\n'm O O\ntrying O O\nto O O\ncreate O O\nan O O\nAndroid Name Name\nApplication O O\nthat O O\ncan O O\nrecord O O\na O O\nvideo Name Name\nand O O\n, O O\nduring O O\nrecording O O\n, O O\nit O O\nshould O O\ncapture O O\nframes O O\nin O O\norder O O\nto O O\nprocess O O\nthem O O\n. O O\n\nBut O O\nwhen O O\nI O O\ntry O O\nto O O\nrun O O\nmy O O\napp O O\non O O\nmy O O\nemulator Name Name\n( O O\nusing O O\nEclipse Name Name\nJuno Name Name\n, O O\nOpenCV4Android Name Name\nver O O\n. O O\n2.4.5 Name Name\n, O O\nand O O\nandroid-ndk Name Name\n) O O\n, O O\nI O O\nhave O O\nthis O O\nresult O O\nin O O\nmy O O\nlogcat Name Name\n: O O\n\nIt O O\nis O O\nmy O O\ncode O O\n: O O\n\n1) O O\nMainActivity.java Name Name\n\n2) O O\njniVideoCapture.cpp Name Name\n\n3) O O\nAndroid.mk Name Name\n\nI O O\n've O O\ntried O O\nto O O\ncopy O O\nmanually O O\nin O O\nthe O O\ndir O O\nlibs Name Name\nof O O\nthe O O\nproject O O\nthe O O\nlibrary O O\nlibopencv_java.so Name Name\n, O O\ntaking O O\nit O O\nfrom O O\nan O O\nopencv Name Name\ntutorial O O\nproject O O\n, O O\nand O O\nI O O\n've O O\nloaded O O\nit O O\nwith O O\nthe O O\njniVideoCapture Name Name\nin O O\nthe O O\nMainActivity Name Name\n, O O\nbut O O\nwithout O O\nbetter O O\nresults O O\n, O O\nbecause O O\nwhen O O\nI O O\nrun O O\nthe O O\nproject O O\n, O O\nthe O O\nlibrary O O\nis O O\nautomatically O O\nremoved O O\nfrom O O\nlibs/ Name Name\n. O O\n\nHow O O\ncan O O\nI O O\nfix O O\nthis O O\nproblem O O\n? O O\n\nJust O O\nadd O O\nline O O\n: O O\n\nright O O\nafter O O\n: O O\n\nYou O O\njust O O\ndid O O\nn't O O\nlink O O\n( O O\nstatically O O\n) O O\nopencv Name Name\nlibrary O O\nto O O\nyour O O\nproject O O\n- O O\nthis O O\nis O O\na O O\nmistake O O\n. O O\n\nI O O\nhave O O\na O O\nlarge O O\ntable Name Name\n( O O\nabout O O\n40M O O\nRows Name Name\n) O O\nwhere O O\nI O O\nhad O O\na O O\nnumber O O\nof O O\ncolumns Name Name\nthat O O\nare O O\n0 Name Name\nwhich O O\nneed O O\nto O O\nbe O O\nnull Name Name\ninstead O O\nso O O\nwe O O\ncan O O\nbetter O O\nkey O O\nthe O O\ndata O O\n. O O\n\nI O O\n've O O\nwritten O O\nscripts O O\nto O O\nlook O O\nchop O O\nthe O O\nupdate O O\ninto O O\nchunks O O\nof O O\n10000 O O\nrecords O O\n, O O\nfind O O\nthe O O\noccurance O O\nof O O\nthe O O\ncolumns Name Name\nwith O O\nzero Name Name\nand O O\nupdate O O\nthem O O\nto O O\nnull Name Name\n. O O\n\nExample O O\n: O O\n\nThis O O\nworks O O\ngreat O O\n, O O\nbut O O\nit O O\ntakes O O\nfor O O\never O O\n. O O\n\nI O O\nthinking O O\nthe O O\nbetter O O\nway O O\nto O O\ndo O O\nthis O O\nwould O O\nbe O O\nto O O\ncreate O O\na O O\nsecond O O\ntable Name Name\nand O O\ninsert O O\nthe O O\ndata O O\ninto O O\nit O O\nand O O\nthen O O\nrename O O\nit O O\nto O O\nreplace O O\nthe O O\nold O O\ntable Name Name\nwith O O\nthe O O\ncolumns Name Name\nhaving O O\nzero Name Name\n. O O\n\nQuestion O O\nis O O\n- O O\ncan O O\nI O O\ndo O O\na O O\ninsert O O\ninto O O\ntable2 Name Name\nselect O O\nfrom O O\ntable1 Name Name\nand O O\nin O O\nthe O O\nprocess O O\ncleanse O O\nthe O O\ndata O O\nfrom O O\ntable1 Name Name\nbefore O O\nit O O\ngoes O O\nin O O\n? O O\n\nYou O O\ncan O O\nusually O O\ncreate O O\na O O\nnew O O\n, O O\nsanitised O O\n, O O\ntable Name Name\n, O O\ndepending O O\non O O\nthe O O\nactual O O\nDB Name Name\nserver Name Name\nyou O O\nare O O\nusing O O\n. O O\n\nThe O O\nhard O O\nthing O O\nis O O\nthat O O\nif O O\nthere O O\nare O O\nother O O\ntables Name Name\nin O O\nthe O O\ndatabase O O\n, O O\nyou O O\nmay O O\nhave O O\nissues O O\nwith O O\nforeign Name Name\nkeys Name Name\n, O O\nindexes Name Name\n, O O\netc O O\nwhich O O\nwill O O\nrefer O O\nto O O\nthe O O\noriginal O O\ntable Name Name\n. O O\n\nWhether O O\nmaking O O\na O O\nnew O O\nsanitised O O\ntable Name Name\nwill O O\nbe O O\nquicker O O\nthan O O\nupdating O O\nyour O O\nexisting O O\ntable Name Name\nis O O\nsomething O O\nyou O O\ncan O O\nonly O O\ntell O O\nby O O\ntrying O O\nit O O\n. O O\n\nDump O O\nthe O O\npk/clustered Name Name\nkey Name Name\nof O O\nall O O\nthe O O\nrecords O O\nyou O O\nwant O O\nto O O\nupdate O O\ninto O O\na O O\ntemp O O\ntable Name Name\n. O O\n\nThen O O\nperform O O\nthe O O\nupdate O O\njoining O O\nto O O\nthe O O\ntemp O O\ntable Name Name\n. O O\n\nThat O O\nwill O O\nensure O O\nthe O O\nlowest O O\nlocking O O\nlevel O O\nand O O\nquickest O O\naccess O O\n. O O\n\nYou O O\ncan O O\nalso O O\nadd O O\nan O O\nidentity O O\ncolumn Name Name\nto O O\nthe O O\ntemp O O\ntable Name Name\n, O O\nthan O O\nyou O O\ncan O O\nloop O O\nthrough O O\nand O O\ndo O O\nthe O O\nupdates O O\nin O O\nbatches O O\n. O O\n\nI O O\nhave O O\na O O\nmysql Name Name\nresult O O\nset O O\nthat O O\nhas O O\nseveral O O\nrows Name Name\n, O O\nwhat O O\ni O O\nwould O O\nlike O O\nto O O\ndo O O\nis O O\nto O O\ncombine O O\nthe O O\nrows Name Name\nto O O\nform O O\none O O\nrow Name Name\nof O O\nresults O O\ndepending O O\non O O\nthe O O\nuniqueness O O\nof O O\nthe O O\nrows Name Name\n. O O\n\nSay O O\nI O O\nhave O O\nthis O O\n: O O\n\nTable Name Name\nresult O O\n1 O O\n\nI O O\nwould O O\nlike O O\nto O O\nproduce O O\nsomething O O\nlike O O\nthis O O\n\nI O O\nhave O O\ntried O O\nto O O\nuse O O\nthe O O\nnormal O O\n\" O O\nSELECT Name Name\n* Name Name\nFROM Name Name\ncomponent_summary Name Name\nWHERE Name Name\nlabref='A' Name Name\n\" O O\nThen O O\nuse O O\na O O\nfunction O O\nin O O\nthe O O\napplication O O\nside O O\nto O O\ndo O O\nthis O O\nbut O O\nits O O\nnot O O\nworking. O O\n. O O\n\nAny O O\nSuggestions O O\nto O O\ndo O O\nit O O\nwith O O\nmysql Name Name\nfirst O O\n\nTry O O\nthis O O\nquery O O\n. O O\n\nUsing O O\nCakePHP Name Name\nI O O\nhave O O\na O O\npage O O\nwhere O O\nI O O\nhave O O\nmultiple O O\nforms Name Name\n. O O\n\nEach O O\nform Name Name\nupdates O O\na O O\nsingle O O\nfield O O\non O O\na O O\nrecord O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nimplement O O\na O O\nway O O\nto O O\nsubmit O O\nall O O\nthe O O\nforms Name Name\nthrough O O\na O O\nsingle O O\n\" O O\nSubmit O O\nAll O O\n\" O O\nbutton Name Name\n. O O\n\nHowever O O\n, O O\nall O O\nmy O O\nsolutions O O\nso O O\nfar O O\nhave O O\nbeen O O\nlest O O\nthan O O\nsuccessful O O\n. O O\n\nMy O O\nfirst O O\nattempt O O\nwas O O\nto O O\ncreate O O\na O O\nseparate O O\naction O O\ncalled O O\neditAll Name Name\nin O O\nthe O O\ncontroller O O\nthat O O\ntook O O\nan O O\narray Name Name\n, O O\nbut O O\nI O O\ncannot O O\nfigure O O\nout O O\nhow O O\nto O O\nsend O O\nthe O O\ndata O O\nfrom O O\nall O O\nthe O O\nforms O O\nto O O\nthat O O\naction O O\nwithout O O\nhaving O O\na O O\nhidden O O\nform Name Name\nthat O O\nsaves O O\nall O O\nthat O O\ndata O O\n. O O\n\nThe O O\nsecond O O\nidea O O\nwas O O\nto O O\ncreate O O\nsome O O\nkind O O\nof O O\nJavascript Name Name\nfunction O O\nthat O O\niterated O O\nover O O\nall O O\nthe O O\nforms O O\nto O O\ncreate O O\nan O O\narray Name Name\nto O O\nbe O O\nsent O O\nto O O\nthe O O\ncontroller O O\n's O O\neditAll Name Name\naction O O\n. O O\n\nThe O O\nfirst O O\nimplementation O O\ndid O O\nnot O O\nwork O O\n, O O\nand O O\nI O O\ncould O O\nn't O O\nfind O O\na O O\nreasonable O O\nway O O\nto O O\nimplement O O\nthe O O\nsecond O O\nidea O O\n. O O\n\nBasically O O\n, O O\nI O O\nwas O O\nhoping O O\nsomeone O O\ncould O O\npoint O O\nme O O\nin O O\nthe O O\ndirection O O\nto O O\nsubmitting O O\nmultiple O O\nforms Name Name\n( O O\nor O O\nat O O\nleast O O\nthe O O\ndata O O\nfrom O O\nmultiple O O\nforms Name Name\n) O O\nat O O\nonce O O\nfrom O O\na O O\nsingle O O\npage Name Name\n. O O\n\nI O O\nassume O O\nyou O O\ndo O O\nn't O O\nALWAYS O O\nwant O O\nto O O\nsubmit O O\nthem O O\nall O O\n- O O\nif O O\nyou O O\ndo O O\n, O O\nthen O O\njust O O\nmake O O\none O O\nform Name Name\n. O O\n\nIf O O\nyou O O\n're O O\nhoping O O\nto O O\nbe O O\nable O O\nto O O\nsubmit O O\nsome O O\nof O O\nthem O O\nindividually O O\n, O O\nbut O O\nalso O O\nbe O O\nable O O\nto O O\nsubmit O O\nthem O O\nall O O\n, O O\nthen O O\nyou O O\ncould O O\ndo O O\nsomething O O\nalong O O\nthe O O\nlines O O\nof O O\nthis O O\n: O O\n\nKeep O O\nall O O\nthe O O\nfields O O\nin O O\none O O\nform Name Name\n. O O\n\nFor O O\neach O O\nfield O O\nhave O O\na O O\n' O O\nsubmitted Name Name\n' O O\nvalue O O\n( O O\n1 Name Name\nor O O\n0 Name Name\n) O O\n. O O\n\nIf O O\nthey O O\nclick O O\nthe O O\nSubmit O O\nnext O O\nto O O\nan O O\nindividual O O\nfield O O\n, O O\nturn O O\nall O O\nof O O\nthe O O\nsubmitted Name Name\nvalues O O\nto O O\n0 Name Name\nexcept O O\nthat O O\none O O\n, O O\nthen O O\nsubmit O O\nthe O O\nform Name Name\n. O O\n\nIf O O\nthey O O\nclick O O\nSubmit O O\nAll O O\n, O O\nthen O O\nturn O O\nthem O O\nall O O\nto O O\n' Name Name\n1 Name Name\n' Name Name\nand O O\nsubmit O O\nthe O O\nform Name Name\n. O O\n\nThen O O\n, O O\nwhen O O\nyou O O\nprocess O O\nthe O O\ndata O O\n, O O\njust O O\nstrip O O\nanything O O\nthat O O\ndoes O O\nn't O O\nhave O O\n' O O\nsubmitted Name Name\n' O O\nvalue O O\nof O O\n1 Name Name\n. O O\n\nIt O O\nwould O O\nstill O O\ntake O O\nsome O O\nwork O O\n, O O\nand O O\nyou O O\n're O O\nsubmitting O O\nmore O O\ndata O O\nthan O O\nis O O\nnecessary O O\n, O O\nbut O O\n... O O\n. O O\nit O O\n's O O\nan O O\nidea O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nuse O O\nthe O O\nvalue O O\nof O O\na O O\ncolumn Name Name\ncalled O O\nchildren_ids Name Name\ninside O O\na O O\nsubquery O O\n: O O\n\nBut O O\ncount_children Name Name\nis O O\nalways O O\nNULL Name Name\n. O O\n\nIf O O\nI O O\nreplace O O\nchildren_ids Name Name\nwith O O\nsome O O\nreal O O\nvalues O O\n, O O\nit O O\nworks O O\n: O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\nuse O O\nthe O O\nvalue O O\nof O O\nan O O\nouter O O\ncolumn Name Name\ninside O O\na O O\nsubquery O O\n? O O\n\nYou O O\ncan O O\ndo O O\nwhat O O\nyou O O\nwant O O\nusing O O\nfind_in_set() Name Name\n: O O\n\nHowever O O\n, O O\nyou O O\nshould O O\nfix O O\nyour O O\ndata O O\nstructure O O\nto O O\nuse O O\na O O\nproper O O\njunction Name Name\ntable Name Name\n. O O\n\nStoring O O\nlists Name Name\nof O O\nids O O\nin O O\na O O\ncomma O O\ndelimited O O\ncolumn Name Name\nis O O\nnot O O\nthe O O\nright O O\nway O O\nto O O\nstore O O\ndata O O\n. O O\n\nYou O O\ncan O O\nreplace O O\nIn Name Name\n( Name Name\nchildren_ids Name Name\n) Name Name\nby O O\nIn Name Name\n( Name Name\nselect Name Name\nchildren_ids Name Name\nfrom Name Name\nhotels Name Name\nhotls1 Name Name\nwhere Name Name\nhotels.id Name Name\n= Name Name\nhotels1.I Name Name\n' Name Name\nd Name Name\n) Name Name\n\nI O O\nhave O O\na O O\nlist Name Name\nand O O\nwant O O\nto O O\nsplit O O\neach O O\nelements O O\ninto O O\na O O\ntuple Name Name\nof O O\ntwo O O\nelements O O\n. O O\n\nThe O O\nlist Name Name\nlooks O O\nlike O O\n: O O\n\nHow O O\ndo O O\nI O O\ncreate O O\na O O\nlist Name Name\nof O O\nthe O O\nform O O\n: O O\n\nUse O O\nsplit() Name Name\n. O O\n\nTry O O\nthe O O\nfollowing O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nintegrate O O\nthe O O\nnew O O\nobject O O\nADBannerView Name Name\nin O O\nmy O O\nCocos2d Name Name\ngame O O\nbut O O\nthe O O\nbanner Name Name\napears O O\nin O O\nvertical O O\non O O\nthe O O\nleft O O\nof O O\nthe O O\nscreen O O\nwhen O O\nmy O O\ngame O O\nis O O\nin O O\nlandscape O O\n. O O\n\nThis O O\nis O O\nmy O O\ncode O O\n: O O\n\nI O O\n'd O O\nlike O O\nthe O O\nbanner Name Name\nto O O\nappear O O\non O O\nthe O O\ntop O O\nof O O\nthe O O\nscreen O O\nin O O\nhorizontal O O\n( O O\nlandscape O O\nmode O O\n) O O\n. O O\n\nThank O O\nyou O O\nfor O O\nyour O O\nsupport O O\n! O O\n\nYou O O\nwill O O\nneed O O\nto O O\nrotate O O\nthe O O\nframe O O\nthat O O\nyou O O\nmade O O\n. O O\n\nTry O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nM_PI Name Name\nis O O\ndefined O O\nin O O\nmath.h Name Name\nin O O\nthe O O\ncocos2d Name Name\nlibrary O O\n, O O\nit O O\n's O O\njust O O\npi Name Name\n. O O\n\nOnce O O\nyou O O\nget O O\nit O O\non O O\n, O O\njust O O\nplay O O\nwith O O\nthe O O\nfirst O O\n2 O O\nnumbers O O\nin O O\nthe O O\nrect O O\nto O O\nposition O O\nit O O\nwhere O O\nyou O O\nneed O O\nit O O\n. O O\n\nYou O O\nshould O O\nmodify O O\nthe O O\nview O O\nframe O O\nsize O O\n& O O\norigin O O\nin O O\nshouldAutorotateToInterfaceOrientation Name Name\n. O O\n\nI O O\nam O O\nconstantly O O\nfinding O O\nmyself O O\nbuilding O O\nprograms O O\nwhere O O\nthere O O\nare O O\nmultiple O O\nscreens Name Name\n. O O\n\nFor O O\nexample O O\n, O O\nconsider O O\na O O\nprogram O O\nwhere O O\nthe O O\ninitial O O\nlayout O O\noffers O O\ntwo O O\nbuttons Name Name\n: O O\ncreate O O\nfile O O\nor O O\nedit O O\nfile O O\n. O O\n\nUpon O O\nclicking O O\none O O\n, O O\nit O O\ntakes O O\nthe O O\nuser O O\nto O O\na O O\nnew O O\nscreen Name Name\nsupporting O O\nwhatever O O\nbutton Name Name\nthey O O\npress O O\n. O O\n\nThen O O\nthey O O\nclick O O\na O O\nback O O\nbutton Name Name\nand O O\nit O O\ntakes O O\nthem O O\nback O O\nto O O\nthe O O\nmain O O\nscreen Name Name\nof O O\nthe O O\nprogram O O\n. O O\n\nI O O\nam O O\nwondering O O\nhow O O\nto O O\nbest O O\ndo O O\nseparate O O\nmenus Name Name\nlike O O\nthis O O\n. O O\n\nWould O O\nit O O\nbe O O\nbest O O\njust O O\nto O O\ncreate O O\nseparate O O\nmethods O O\nsetting O O\nup O O\neach O O\nscreen Name Name\n, O O\nthen O O\ncall O O\nthe O O\nappropriate O O\none O O\nwhen O O\na O O\nbutton Name Name\n( O O\nlike O O\n\" O O\nback O O\n\" O O\nbutton Name Name\n) O O\nis O O\nclicked O O\n? O O\n\nThis O O\nis O O\nwhat O O\nI O O\nwas O O\nthinking O O\nof O O\ndoing O O\n, O O\nbut O O\nseeing O O\nas O O\nthere O O\nare O O\nmany O O\nways O O\nto O O\ndo O O\nthis O O\n, O O\nI O O\nwant O O\nto O O\nget O O\nopinions O O\non O O\na O O\npossibly O O\nbetter O O\nway O O\nof O O\nchanging O O\nthe O O\nscreen Name Name\ndisplayed O O\n. O O\n\nThanks O O\n, O O\nAJ O O\n\nBased O O\non O O\nyour O O\n2nd O O\ncomment O O\nto O O\nthe O O\noriginal O O\nquestion O O\n, O O\nI O O\nthink O O\nit O O\nis O O\nbest O O\nto O O\nlook O O\nat O O\nusing O O\nPanels Name Name\n. O O\n\nLook O O\nat O O\nusing O O\nmultiple O O\npanels Name Name\nfor O O\neach O O\nof O O\nthe O O\nactivities O O\nyou O O\nwant O O\n: O O\n\nEnsure O O\nall O O\npanels Name Name\nare O O\nhidden O O\nwhen O O\ninitialised O O\n, O O\nand O O\nthen O O\nsimply O O\nswap O O\na O O\npanel Name Name\nfor O O\nanother O O\none O O\nupon O O\na O O\nbutton Name Name\nclick O O\nevent Name Name\nusing O O\n: O O\n\nDepending O O\non O O\nthe O O\nlayout Name Name\nyou O O\nuse O O\n, O O\nthere O O\nare O O\nalso O O\nother O O\ntechniques O O\n. O O\n\nFor O O\nexample O O\n, O O\nrather O O\nthan O O\nremoving O O\nand O O\nadding O O\n( O O\nor O O\nshowing O O\nand O O\nhiding O O\nmultiple O O\npanels Name Name\n) O O\n, O O\nif O O\nyou O O\nuse O O\nBorderLayout Name Name\nyou O O\ncan O O\nsimple O O\n\" O O\nreplace O O\n\" O O\na O O\nBorderLayout Name Name\narea O O\nwith O O\nanother O O\npanel Name Name\nand O O\nthen O O\nrevalidate O O\n: O O\n\nNote O O\nalso O O\nthat O O\ndifferent O O\nOperating O O\nSystems O O\n( O O\nWindows Name Name\n, O O\nMac Name Name\netc O O\n) O O\nwill O O\nhave O O\ndifferent O O\nstyles O O\nthey O O\nlike O O\nto O O\nadhere O O\nto O O\n. O O\n\nFor O O\nexample O O\nyou O O\nmentioned O O\na O O\ntypical O O\nWindows Name Name\ninstaller Name Name\n; O O\npeople O O\nhave O O\ncome O O\nto O O\nexpect O O\nan O O\ninstaller Name Name\nto O O\nlook O O\nand O O\nwork O O\nin O O\na O O\ncertain O O\nway O O\n, O O\nbut O O\non O O\na O O\ndifferent O O\nOS O O\nthere O O\nare O O\na O O\ncompletely O O\ndifferent O O\nset O O\nof O O\nexpectations O O\nand O O\nlooks O O\n. O O\n\nFurther O O\nreading O O\n: O O\n\nTutorial O O\non O O\nusing O O\npanels Name Name\n\nJava Name Name\nSE Name Name\n7 Name O\n( O O\nJPanel Name Name\nAPI O O\n) O O\n\nEdit O O\n: O O\n\nThis O O\ncomes O O\ndown O O\nto O O\npersonal O O\npreference O O\n. O O\n\nDo O O\nyou O O\nwant O O\nto O O\ninitalise O O\neverything O O\non O O\nstartup O O\nand O O\nhave O O\nquicker O O\nswaps O O\nbetween O O\npanels Name Name\n( O O\nor O O\nas O O\nyou O O\ncalled O O\nthem O O\n: O O\n\" O O\nscreens Name Name\n\" O O\n) O O\n, O O\nOR O O\ndo O O\nyou O O\nwant O O\na O O\nquicker O O\ninital O O\nstartup O O\nand O O\nessentially O O\nhave O O\n\" O O\nlazy Name Name\nloading Name Name\n\" O O\nof O O\neach O O\ncomponent O O\nas O O\nand O O\nwhen O O\nyou O O\nneed O O\nit O O\n. O O\n\nPersonally O O\nI O O\nopt O O\nfor O O\neverything O O\nduring O O\ninitalisation O O\n( O O\nunless O O\nthere O O\nis O O\na O O\nlot O O\nof O O\nthings O O\nto O O\ndo O O\nor O O\nload O O\nduring O O\nyour O O\napplications O O\nstartup O O\n) O O\n. O O\n\nThis O O\nreally O O\ncomes O O\ndown O O\nto O O\npersonal O O\npreference O O\n. O O\n\nAnother O O\nedit O O\n: O O\n\nSpeaking O O\nabout O O\nlayouts Name Name\n, O O\nperhaps O O\na O O\ndifferent O O\nlayout O O\nstyle O O\nwould O O\nalso O O\nhelp O O\nyou O O\nout O O\n, O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nCardLayout Name Name\ntutorial O O\n\nHope O O\nthis O O\nhelps O O\nout O O\nsomewhat O O\n. O O\n\nIf O O\nthe O O\nstate O O\nof O O\nthe O O\nscreen Name Name\ndepends O O\non O O\nthe O O\nstate O O\nof O O\nthe O O\nprevious O O\nscreen Name Name\n( O O\ne.g O O\n. O O\nlike O O\nin O O\na O O\nwizard Name Name\n) O O\nyou O O\ncan O O\nfollow O O\nthe O O\nsteps O O\ndescribed O O\nin O O\nthis O O\narticle O O\n\nI O O\nwant O O\nto O O\ndisplay O O\nan O O\nalert Name Name\nbox Name Name\nshowing O O\na O O\nmessage O O\nwith O O\nPHP Name Name\n. O O\n\nIf O O\nI O O\nnot O O\nuse O O\nalert Name Name\nbox Name Name\nI O O\nget O O\nthe O O\nright O O\nanswer O O\nsuch O O\n\" O O\nupdate Name Name\nsubject Name Name\nset Name Name\nsemester Name Name\n= Name Name\n2 Name Name\nwhere Name Name\nid Name Name\n= Name Name\n171 Name Name\n\" O O\n. O O\n\nBut O O\nafter O O\nI O O\nchange O O\ninto O O\nalert Name Name\nbox Name Name\nthe O O\nanswer O O\ni O O\nget O O\nin O O\nthe O O\nalert Name Name\nbox Name Name\nonly O O\n\" O O\nupdate Name Name\nsubject Name Name\nset Name Name\n$f Name Name\n= Name Name\n$data Name Name\nwhere Name Name\nid Name Name\n= Name Name\n$did Name Name\n\" O O\nand O O\nit O O\ndoes O O\nnot O O\nupdate O O\nin O O\ndatabase O O\n. O O\n\nHere O O\nis O O\nmy O O\nPHP Name Name\ncode O O\n: O O\n\nChange O O\nthe O O\nquotations O O\n. O O\n\nLearn O O\nthe O O\ndifference O O\nbetween O O\nsingle O O\nand O O\ndouble O O\nquotes O O\n. O O\n\nAlso O O\n, O O\nyou O O\nca O O\nn't O O\nupdate O O\nusing O O\nthat O O\nwhich O O\nis O O\nan O O\ninvalid O O\nquery Name Name\nwith O O\nJavascript Name Name\nstatement O O\n. O O\n\nInstead O O\nuse O O\n: O O\n\nNote O O\n: O O\nmysql_ Name Name\nextensions Name Name\nare O O\ndeprecated O O\n, O O\nuse O O\nmysqli Name Name\nor O O\nPDO Name Name\n\nWhat O O\nyou O O\nare O O\npassing O O\nto O O\nthe O O\ndeprecated O O\nmysql_query Name Name\nfunction O O\nwas O O\nnot O O\nvalid O O\nsql Name Name\nand O O\nwould O O\ncause O O\nan O O\nerror O O\n, O O\nI O O\nsuspect O O\nyou O O\nwere O O\ntrying O O\nsomething O O\nalong O O\nthese O O\nlines O O\n? O O\n\nI O O\nam O O\nattempting O O\nto O O\nuse O O\nHttpClient Name Name\nto O O\nupload O O\na O O\nfile O O\nto O O\nMicrosoft Name Name\nAzure Name Name\nBlob Name Name\nStorage Name Name\nvia O O\ntheir O O\nREST Name Name\napi Name Name\nin O O\nXamarin.iOS Name Name\n. O O\n\nIt O O\n's O O\nbeen O O\ngoing O O\nalright O O\nuntil O O\nnow O O\n. O O\n\nEvery O O\ntime O O\nI O O\ntry O O\nto O O\nadd O O\nContent-Length Name Name\nheader O O\nto O O\nthe O O\nclient Name Name\nI O O\nget O O\nthis O O\nerror O O\n: O O\n\nThis O O\nis O O\nmy O O\ncode O O\nfor O O\ncreating O O\nthe O O\nHttpClient Name Name\n\nI O O\ntried O O\nusing O O\nTryAddWithoutValidation Name Name\ninstead O O\nof O O\nAdd Name Name\n: O O\n\nThe O O\nerror O O\ndoes O O\nn't O O\nget O O\nthrown O O\nbut O O\nthe O O\nheader O O\nstill O O\ndoes O O\nn't O O\nget O O\nadded O O\n. O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\ngreat O O\n. O O\n\nHere O O\n's O O\nthe O O\ninner O O\nworkings O O\nof O O\nCheckName() Name Name\n, O O\nwhich O O\nis O O\nthrowing O O\nthe O O\nexception Name Name\n. O O\n\nYou O O\ncan O O\nfind O O\nthe O O\nsource O O\nhere O O\n: O O\nhttps://github.com/mono/mono/blob/master/mcs/class/System.Net.Http/System.Net.Http.Headers/HttpHeaders.cs O O\n\nAfter O O\nlooking O O\nat O O\nthe O O\nfull O O\nsource O O\nfile O O\n: O O\n\nIt O O\nlooks O O\nlike O O\nContent-Length Name Name\nis O O\nin O O\nthe O O\ncollection O O\nof O O\nknown_headers Name Name\n. O O\n\nAlso O O\nlooks O O\nlike O O\nthe O O\ninternal O O\ntype O O\nof O O\nthe O O\nContent-Length Name Name\nheader O O\nvalue O O\nis O O\na O O\nlong Name Name\n. O O\n\nBut O O\nthe O O\nAdd() Name Name\nmethod O O\nonly O O\ntake O O\na O O\nstring Name Name\nfor O O\nthe O O\nvalue O O\n, O O\nwhich O O\nget O O\n's O O\nparsed O O\nto O O\na O O\nlong Name Name\n. O O\n\nIs O O\nthe O O\nstring Name Name\nvalue O O\nthat O O\nyou O O\n're O O\npassing O O\nfor O O\nthe O O\nContent-Length Name Name\nvalue O O\na O O\nvalid O O\nlong Name Name\n? O O\n\nI O O\nhave O O\na O O\nproblem O O\nwith O O\ncontent O O\nfrom O O\na O O\ndiv Name Name\n, O O\nfor O O\nexample O O\nif O O\nI O O\nput O O\na O O\ntable Name Name\ninside O O\nof O O\na O O\ndiv Name Name\nand O O\nset O O\na O O\nwidth Name Name\n( O O\nwidth:200px Name Name\n! O O\nimportant O O\n) O O\nfor O O\nthat O O\ndiv Name Name\nthe O O\ntable Name Name\nit O O\nwill O O\noverwrite O O\nthat O O\ndiv Name Name\n. O O\n\nSo O O\nhow O O\nis O O\npossible O O\nto O O\nkeep O O\nall O O\ncontent O O\ninside O O\nthat O O\ndiv Name Name\n? O O\n\nfiddle Name Name\nexample O O\n: O O\nhttp://jsfiddle.net/ebG9N/45/ O O\n\nYou O O\nset O O\nthe O O\nheader Name Name\nto O O\nwhite-space Name Name\n: Name Name\nnowrap Name Name\n; Name Name\ntherefore O O\n, O O\nthe O O\nbrowser Name Name\nis O O\nunable O O\nto O O\nbreak O O\nthe O O\nheaders Name Name\n, O O\nso O O\nthe O O\nwidth Name Name\nof O O\nthe O O\ntable Name Name\nwill O O\nbe O O\nbigger O O\nthan O O\nthe O O\ncontainer O O\ndiv Name Name\n. O O\n\nYou O O\ncan O O\nset O O\n, O O\noverflow Name Name\n: Name Name\nhidden Name Name\n; Name Name\nto O O\ncut O O\nthe O O\noverflowing O O\nparts O O\n, O O\nor O O\noverflow Name Name\n: Name Name\nauto Name Name\n; Name Name\nto O O\ncreate O O\na O O\nscrollbar Name Name\n, O O\nbut O O\nwithout O O\nthem O O\nit O O\n's O O\nthe O O\ncorrect O O\nrendering O O\n. O O\n\nThere O O\nare O O\ntwo O O\nsolutions O O\n. O O\n\ni) O O\nIF O O\nyou O O\nwant O O\nto O O\nSTRICTLY O O\ncontain O O\ntable Name Name\nWITHIN O O\ndiv Name Name\nthen O O\noverflow:auto Name Name\n; Name Name\nis O O\nthe O O\nway O O\nto O O\ngo O O\n. O O\n\nii) O O\nBUT O O\nif O O\nyou O O\nchange O O\nyour O O\nmind O O\nand O O\nwant O O\nto O O\nWRAP O O\ndiv Name Name\nto O O\nthe O O\nwidth Name Name\nof O O\ntable Name Name\nthen O O\n. O O\n\ndisplay:table Name Name\n; Name Name\nis O O\nthe O O\nway O O\nto O O\ngo O O\n. O O\n\nGenerally O O\nits O O\nbad O O\nidea O O\nto O O\ncontain O O\nwider O O\nelement O O\nwithin O O\nexplicitly O O\nknown O O\nless O O\nwider O O\nelement O O\n. O O\n\nI O O\nhave O O\ncome O O\nacross O O\na O O\nsituation O O\nwhere O O\nI O O\nam O O\nreading O O\na O O\nsome O O\nlog Name Name\nfile O O\nand O O\nthen O O\ncounting O O\nthe O O\nnumber O O\nof O O\nlines O O\nI O O\nencountered O O\nvia O O\nthe O O\nfollowing O O\ncode O O\nsnippet O O\n. O O\n\nMy O O\nproblem O O\nis O O\nthat O O\nwhen O O\nI O O\ntry O O\nto O O\nread O O\na O O\nfile O O\n( O O\nCSV Name Name\n, O O\nSyslog Name Name\n, O O\nor O O\nany O O\nother O O\nwild O O\nformat O O\n) O O\n, O O\nit O O\nruns O O\njust O O\nfine O O\nand O O\ngives O O\nme O O\nthe O O\nright O O\nresult O O\n. O O\n\nBut O O\nwhen O O\nI O O\ntry O O\nto O O\nrun O O\na O O\nfile O O\nthat O O\nwas O O\ngenerated O O\nvia O O\na O O\nmac Name Name\n, O O\nit O O\ngoes O O\nhay-wire O O\nand O O\nsimply O O\nreports O O\nback O O\nthat O O\na O O\nsingle O O\nline O O\nwas O O\nread O O\n. O O\n\nNow O O\nmy O O\nlog Name Name\nfile O O\nis O O\nlarge O O\n, O O\nI O O\nknow O O\nthat O O\nit O O\nhas O O\nquite O O\na O O\nfew O O\nthousand O O\nlines O O\nof O O\nlogs O O\n, O O\nbut O O\nit O O\njust O O\nread O O\na O O\nsingle O O\nline O O\n. O O\n\nI O O\nopened O O\nthis O O\nfile O O\nin O O\nSublime Name Name\nand O O\nI O O\ncould O O\nsee O O\nall O O\nthe O O\nseparate O O\nlines O O\n, O O\nhowever O O\nwhen O O\nI O O\nviewed O O\nthis O O\nfile O O\nvia O O\nVIM Name Name\n, O O\nIt O O\ndisplayed O O\nonly O O\na O O\nsingle O O\na O O\nfile O O\nwith O O\na O O\ncharacter O O\n' Name Name\n^M Name Name\n' Name Name\nat O O\nthe O O\nend O O\nof O O\neach O O\nline O O\n( O O\nMy O O\nguess O O\nit O O\nthat O O\nit O O\nis O O\nusing O O\nthis O O\nas O O\nthe O O\nline O O\nterminator O O\n) O O\n. O O\n\nA O O\nsample O O\nof O O\ntwo O O\nlines O O\nis O O\nbelow O O\n. O O\n\nYou O O\ncan O O\nsee O O\nthat O O\nvim Name Name\nis O O\ndisplaying O O\nthe O O\n^M Name Name\ncharacter O O\nwhere O O\nit O O\nshould O O\nhave O O\nbeen O O\na O O\nnew O O\nline O O\n\nAny O O\nsuggestion O O\nas O O\nto O O\nhow O O\nto O O\ntackle O O\nthis O O\nproblem O O\n? O O\n\nBoth O O\nline O O\nfeed O O\n( O O\n^J Name Name\n, O O\n0x0a Name Name\n) O O\nand O O\ncarriage O O\nreturn O O\n( O O\n^M Name Name\n, O O\n0x0d Name Name\n) O O\nare O O\nused O O\nas O O\nline O O\nseparators O O\n; O O\nUnix Name Name\nuses O O\nthe O O\nfirst O O\n, O O\n( O O\nold O O\n) O O\nMac Name Name\nthe O O\nlatter O O\n, O O\nWindows Name Name\nboth O O\nin O O\ncombination O O\n( O O\nCR-LF Name Name\n) O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nhave O O\na O O\nfile O O\ninput O O\nlibrary O O\nthat O O\nabstracts O O\nthis O O\n( O O\nand O O\nif O O\nyou O O\nabsolutely O O\nhave O O\nto O O\nsupport O O\nthe O O\nold O O\nMac Name Name\nformat O O\n( O O\nas O O\nthe O O\nnew O O\nMacOS Name Name\n, O O\nbecause O O\nthe O O\nkernel Name Name\nis O O\nUnix-based Name Name\n, O O\nalso O O\nuses O O\nLF Name Name\n) O O\n) O O\n, O O\ntreat O O\nboth O O\nLF Name Name\nand O O\nCR Name Name\nas O O\na O O\nline O O\nseparator O O\n, O O\nand O O\ndo O O\nn't O O\ncount O O\nthe O O\nCR-LF Name Name\nused O O\nby O O\nWindows Name Name\ntwice O O\n. O O\n\nVim Name Name\n\nWhat O O\nVim Name Name\ndetects O O\nis O O\ndetermined O O\nby O O\nthe O O\n' Name Name\nfileformats Name Name\n' Name Name\noption O O\n. O O\n\nYou O O\ncan O O\nmake O O\nit O O\ndetect O O\nMac Name Name\nas O O\nwell O O\nvia O O\n\nThe O O\nfirst O O\nproblem O O\neven O O\nbefore O O\nyou O O\nget O O\nto O O\nline O O\nbreaks O O\nis O O\nthat O O\nyou O O\n're O O\nreading O O\nbytes Name Name\nand O O\nthen O O\ntreating O O\nthose O O\nas O O\ncharacters Name Name\n. O O\n\nYou O O\n're O O\neffectively O O\nassuming O O\nan O O\nencoding O O\nof O O\nISO-8859-1 O O\nwhich O O\nmay O O\nwell O O\nnot O O\nbe O O\ncorrect O O\n. O O\n\nYou O O\nshould O O\nbe O O\nusing O O\nan O O\nInputStreamReader Name Name\ninstead O O\n. O O\n\nThen O O\nthere O O\n's O O\nthe O O\nissue O O\nof O O\noperating O O\nsystems O O\nhaving O O\ndifferent O O\nline O O\nbreaks. O O\n. O O\nuse O O\nBufferedReader.readLine() Name Name\nto O O\nread O O\na O O\nline O O\nin O O\na O O\nway O O\nthat O O\nhandles O O\nline O O\nbreaks O O\nof O O\n\\n Name Name\n, O O\n\\r Name Name\nor O O\n\\r\\n Name Name\n. O O\n\nSo O O\nyour O O\ncode O O\nwould O O\nbecome O O\n: O O\n\nSo O O\n, O O\nI O O\nimplemented O O\na O O\nprotected O O\narea O O\non O O\nmy O O\nWebsite O O\n( O O\nwith O O\numbraco Name Name\n) O O\nwhich O O\nhas O O\na O O\nLogin O O\nwhen O O\nyou O O\nwant O O\nto O O\naccess O O\na O O\npage Name Name\nthat O O\nnormal O O\nusers O O\ndo O O\nn't O O\nhave O O\naccess O O\nto O O\n. O O\n\nI O O\nam O O\nusing O O\nthe O O\nLogin Name Name\nSnippet Name Name\nand O O\nthe O O\nLogin Name Name\nStatus Name Name\nSnippet Name Name\nMacro O O\nthat O O\numbraco Name Name\nprovides O O\n. O O\n\nLike O O\nthis O O\n: O O\n\nI O O\nam O O\nshowing O O\nit O O\non O O\nthe O O\nfooter Name Name\nbut O O\nright O O\nnow O O\nit O O\nis O O\nalways O O\nvisible O O\nbut O O\nI O O\nonly O O\nwant O O\nit O O\nto O O\nbe O O\nvisible O O\nwhen O O\nyou O O\nare O O\non O O\na O O\npage Name Name\nthat O O\nis O O\nprotected O O\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\ndo O O\nit O O\n? O O\n\nThank O O\nyou O O\nin O O\nadvance O O\n! O O\n\nI O O\nsimply O O\nverified O O\nif O O\nhe O O\nis O O\nLogged O O\nin O O\nor O O\nnot O O\n. O O\n\nUsing O O\nthe O O\nUmbraco Name Name\nMacro Name Name\nSnippet Name Name\nit O O\nis O O\nquite O O\neasy O O\nto O O\nfind O O\nout O O\n. O O\n\nI O O\nam O O\nable O O\nto O O\ncreate O O\na O O\ncase O O\nsuccessfully O O\non O O\nan O O\ninbound O O\nemail O O\nfor O O\na O O\ngroup O O\naccount O O\nby O O\nenable O O\nEnable O O\n\" O O\nCreate O O\nCase O O\nfrom O O\nEmail O O\n\" O O\nin O O\nadvance O O\nset O O\nup O O\n, O O\n\nInstead O O\nof O O\ncreate O O\na O O\ncase O O\n, O O\ni O O\nwant O O\nto O O\ncreate O O\na O O\nrecord O O\nin O O\ncustom O O\nmodule O O\nfor O O\nthis O O\nwhere O O\ncan O O\ni O O\nwrite O O\ncode O O\n? O O\n\nI O O\nam O O\nusing O O\nCE Name Name\n6.5.17 Name Name\n\nThe O O\neasiest O O\nway O O\nto O O\ndo O O\nthis O O\nis O O\nto O O\ncreate O O\nan O O\nafter O O\nsave O O\nlogic Name Name\nhook Name Name\non O O\nthe O O\nEmail Name Name\nmodule O O\nwhere O O\nthe O O\nother O O\nrecord O O\ncan O O\nbe O O\ncreated O O\n. O O\n\nThen O O\nthe O O\nfunction O O\nfor O O\n\" O O\nCreate O O\nCase O O\nfrom O O\nEmail O O\n\" O O\ncan O O\nbe O O\nleft O O\nunchecked O O\n. O O\n\nSo O O\nI O O\nhave O O\na O O\nnested O O\ndiv Name Name\nstructure O O\nand O O\nI O O\nwould O O\nlike O O\nto O O\nget O O\nthe O O\ncontent O O\nof O O\nthe O O\nsecond O O\nlevel O O\n. O O\n\nHow O O\nshould O O\ni O O\ndo O O\nit O O\nwith O O\njQuery Name Name\n.load O O\n? O O\n\nThe O O\nfollowing O O\nworks O O\nonly O O\nwith O O\nsimple O O\ndivs(non-nested).. Name Name\n. O O\n\nOk O O\n, O O\nthe O O\nwhole O O\nstuff O O\nis O O\n: O O\n\nAssuming O O\nthe O O\n2nd O O\nlevel O O\ndiv Name Name\nhas O O\nand O O\nid Name Name\n\nElse O O\nchange O O\nselector O O\naccordingly O O\nlike O O\nyou O O\nwould O O\nnormally O O\n( O O\ne.g O O\n. O O\nfirst O O\nchild O O\ndiv Name Name\nof O O\n#div_1 Name Name\n) O O\n\nBTW O O\n. O O\n\n: O O\nNote O O\nthis O O\nwill O O\nonly O O\nwork O O\nfor O O\nyour O O\nown O O\npage Name Name\n( O O\ncross-domain O O\nrequests O O\nare O O\nnot O O\nsupported O O\nwith O O\najax Name Name\n\nFirstly O O\n, O O\nloading O O\ndata O O\nwith O O\nAJAX Name Name\nwill O O\nonly O O\nwork O O\nif O O\nthe O O\npage O O\nis O O\non O O\nthe O O\nsame O O\ndomain O O\n. O O\n\n\" O O\nremote O O\nsite O O\n\" O O\nindicates O O\nyou O O\n're O O\ntrying O O\nto O O\nget O O\nstuff O O\nfrom O O\na O O\ndifferent O O\ndomain O O\n. O O\n\nWhat O O\nyou O O\ncan O O\ndo O O\nto O O\nget O O\nround O O\nthis O O\nis O O\nhave O O\na O O\nserver-side O O\nscript O O\nthat O O\nfetches O O\nthe O O\ncontent O O\nand O O\nreturns O O\nit O O\n. O O\n\nIn O O\nPHP Name Name\nyou O O\n'd O O\nwant O O\nto O O\nuse O O\nthe O O\ncURL Name Name\nfunctions O O\n( O O\nthere O O\nare O O\nplenty O O\nof O O\nquestions O O\nhere O O\nabout O O\nthat O O\nsort O O\nof O O\nthing O O\n, O O\njust O O\ndo O O\na O O\nsearch O O\nwith O O\nyour O O\nchosen O O\nlanguage O O\n) O O\n. O O\n\ni O O\nseen O O\nsome O O\ntools O O\non O O\ngithub Name Name\nand O O\nnow O O\nvector Name Name\ndrawables Name Name\nin O O\nLolipop Name Name\nallow O O\nyou O O\nuse O O\nsvg Name Name\nfiles O O\n. O O\n\nOne O O\nmajor O O\nadvantage O O\ni O O\nfind O O\nis O O\nthat O O\nsvg Name Name\nfiles O O\nshould O O\nstretch O O\nand O O\nkeep O O\nproper O O\nscaling O O\nthus O O\nlooking O O\nsharp O O\nafter O O\nstretching O O\n. O O\n\nNow O O\nwith O O\nsvg Name Name\nfiles O O\ni O O\ncan O O\nkeep O O\nall O O\nmy O O\nimages Name Name\nin O O\nthe O O\ndrawable O O\nfolder O O\ninstead O O\nof O O\nfiltering O O\nthem O O\nout O O\nby O O\ndensity O O\n. O O\n\nThis O O\nmakes O O\nthe O O\napk Name Name\nfile O O\nsmaller O O\nwhich O O\nis O O\ndesirable O O\n. O O\n\nQuestion O O\n: O O\nWould O O\nthere O O\nbe O O\nany O O\nreason O O\ni O O\nwould O O\nnot O O\nwant O O\nto O O\ntake O O\nmy O O\ncurrent O O\nPNG Name Name\nimages Name Name\nin O O\nnative O O\nandroid Name Name\nproject O O\nand O O\nconvert O O\nthem O O\nto O O\nsvg Name Name\nfiles O O\nwith O O\nfor O O\nexample O O\nan O O\nonline O O\nconverter O O\ntool O O\nlike O O\nvector Name Name\nmagic Name Name\n? O O\n\nThere O O\nare O O\nseveral O O\nreasons O O\nthat O O\nyou O O\nwould O O\nnot O O\nwant O O\nto O O\ndo O O\nthis O O\n. O O\n\nFirst O O\n, O O\nvector Name Name\ndrawables Name Name\nare O O\nonly O O\nsupported O O\non O O\nAndroid Name Name\n5.0 Name Name\n+ O O\n. O O\n\nIf O O\nyou O O\nare O O\nonly O O\ntargeting O O\nLollipop Name Name\nand O O\nabove O O\n, O O\nthis O O\nwo O O\nn't O O\nbe O O\nan O O\nissue O O\n, O O\nbut O O\nyou O O\nwill O O\nstill O O\nneed O O\nPNGs Name Name\nfor O O\nolder O O\nversions O O\nof O O\nAndroid Name Name\n. O O\n\nSecond O O\n, O O\nconverting O O\nraster O O\nto O O\nvector O O\nwill O O\nin O O\nmost O O\ncases O O\nyield O O\npoor O O\nresults O O\n. O O\n\nInstead O O\n, O O\nyou O O\nshould O O\nstart O O\nby O O\ncreating O O\nthe O O\noriginal O O\nassets O O\nas O O\nvector O O\nimages Name Name\nin O O\na O O\nprogram O O\nlike O O\nIllustrator Name Name\n. O O\n\nThen O O\nexport O O\nto O O\nSVG Name Name\nfor O O\nconversion O O\nto O O\nVectorDrawable Name Name\nformat O O\nand O O\nexport O O\nto O O\nPNG Name Name\nfor O O\nthe O O\nDPI O O\nbuckets O O\nyou O O\n'd O O\nlike O O\nto O O\nsupport O O\non O O\npre-5.0 Name Name\ndevices O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\ndo O O\ncomparison O O\noperators O O\non O O\nmy O O\npostgresql Name Name\ndata O O\n. O O\n\nI O O\nhave O O\na O O\nrange O O\nof O O\ndata O O\nlike O O\nthis O O\n\nMockTable Name Name\n\nEach O O\nof O O\nthe O O\nfields O O\non O O\nthe O O\ntop O O\nare O O\nlabeled O O\nin O O\nthe O O\nSQL Name Name\nserver Name Name\nas O O\ntext O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\npull O O\ninformation O O\nlike O O\nthis O O\n. O O\n\nThus O O\nrecieving O O\nthe O O\n1st O O\nand O O\n3rd O O\ncolumn Name Name\nback O O\n. O O\n\nHowever O O\nI O O\nam O O\nnot O O\ngetting O O\nthis O O\nresults O O\n. O O\n\nInput O O\n? O O\n\nIf O O\nyour O O\ncolumn Name Name\nnames O O\nare O O\nnot O O\nall-lowercase O O\n, O O\nyou O O\nmust O O\nspecify O O\nthem O O\nin O O\ndouble O O\nquotes O O\nand O O\nwith O O\nthe O O\nexact O O\nsame O O\ncapitalization O O\nas O O\nthey O O\nare O O\nin O O\nthe O O\ntable Name Name\n: O O\n\nSELECT Name Name\n* Name Name\nFROM Name Name\n\" Name Name\nMockTable Name Name\n\" Name Name\nWHERE Name Name\n\" Name Name\nHours Name Name\n\" Name Name\n> Name Name\n25 Name Name\n; Name Name\n\nNote O O\nthis O O\nsays O O\n\" Name Name\nHours Name Name\n\" Name Name\ninstead O O\nof O O\n\" Name Name\nHOURS Name Name\n\" Name Name\n. O O\n\nFor O O\nthis O O\nreason O O\n, O O\nit O O\n's O O\nbest O O\nto O O\nuse O O\nall-lowercase O O\nfor O O\nyour O O\ncolumn Name Name\nand O O\ntable Name Name\nnames O O\n. O O\n\nIn O O\naddition O O\n, O O\nwhen O O\nusing O O\nlowercase O O\nyou O O\nwo O O\nn't O O\nneed O O\nto O O\nput O O\nthe O O\ndouble-quotes Name Name\naround O O\nthe O O\ncolumn Name Name\nnames O O\nunless O O\nthey O O\nare O O\na O O\nreserved O O\nword O O\nthat O O\nmight O O\nmean O O\nsomething O O\nelse O O\nin O O\nthat O O\ncontext O O\n. O O\n\nWhen O O\nyou O O\ncompare O O\nnumbers O O\nas O O\nstrings Name Name\n, O O\nyou O O\nhave O O\nto O O\nthink O O\nabout O O\nalphabetical O O\norder O O\n. O O\n\nThe O O\nmagnitude O O\nof O O\nthe O O\nnumber O O\nis O O\nmeaningless O O\n, O O\nat O O\nthis O O\npoint O O\nis O O\nmerely O O\na O O\nword O O\n. O O\n\nSo O O\n\" Name Name\n25 Name Name\n\" Name Name\nis O O\ngreater O O\nthan O O\n\" Name Name\n100 Name Name\n\" Name Name\nbecause O O\nthe O O\n\" Name Name\n2 Name Name\n\" Name Name\ncomes O O\nafter O O\nthe O O\n\" Name Name\n1 Name Name\n\" Name Name\nin O O\nan O O\nalphabetical O O\nsense O O\n. O O\n\nWhat O O\nyou O O\nneed O O\nto O O\ndo O O\nis O O\neither O O\ncast O O\nyour O O\n\" O O\nHours Name Name\n\" O O\nfield O O\nas O O\ninteger Name Name\n( O O\nor O O\nfix O O\nthat O O\ndamned O O\ntable Name Name\nbecause O O\nnumbers O O\nin O O\nstring Name Name\nfields O O\nis O O\nnasty O O\n) O O\n. O O\n\nObviously O O\n, O O\nyou O O\nare O O\ngoing O O\nto O O\nrun O O\ninto O O\nsome O O\ndifficult O O\nproblems O O\nif O O\nthere O O\nare O O\nrecords O O\nwhere O O\nthe O O\n\" O O\nHours Name Name\n\" O O\nfield O O\ncontains O O\nnon-numeric O O\ncharacters O O\n, O O\nso O O\nyou O O\n'll O O\nhave O O\nto O O\ndeal O O\nwith O O\nthat O O\nif O O\nand O O\nwhen O O\nit O O\narises O O\n. O O\n\nin O O\nmy O O\nrouting.yml Name Name\n\npage Name Name\nis O O\nsupposed O O\nto O O\nhave O O\ninteger Name Name\nvalue O O\n. O O\n\nHowever O O\n, O O\nif O O\nyou O O\nput O O\n\nit O O\nworks O O\n. O O\n\nIt O O\n's O O\nnot O O\nbig O O\nproblem O O\nthough O O\n, O O\nif O O\nyou O O\nput O O\n\nit O O\nworks O O\nand O O\nit O O\n's O O\nnot O O\ngood O O\nthing O O\nfor O O\nsearch O O\ncrawler O O\n. O O\n\nHow O O\ncan O O\nI O O\nset O O\nthe O O\n{ O O\npage Name Name\n} O O\nvalue O O\nrestrict O O\nto O O\ninteger Name Name\nor O O\nnumbers O O\n? O O\n\n? O O\n\nDo O O\nit O O\nlike O O\nthis O O\n: O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\ntoy O O\ngraph Name Name\nthat O O\nrepresents O O\n, O O\nfor O O\ninstance O O\n, O O\na O O\nforum O O\nthread O O\n: O O\n\nHowever O O\n, O O\nthere O O\nseems O O\nto O O\nbe O O\nno O O\nlayout O O\nthat O O\nplaces O O\nthe O O\nroot O O\nvertex Name Name\n( O O\nid Name Name\n0 O O\n, Name Name\nlabel Name Name\nA Name Name\n) O O\ninto O O\nthe O O\ntop O O\nand O O\ngrows O O\ndownwards O O\n. O O\n\nAm O O\nI O O\nmissing O O\nsomething O O\n? O O\n\nOK O O\n, O O\nI O O\n'll O O\njust O O\nadd O O\nthis O O\nas O O\nan O O\nanswer O O\n, O O\nfor O O\nthe O O\ncomments O O\n. O O\n\nSo O O\nthe O O\nReingold-Tilford O O\nlayout O O\nworks O O\n: O O\nhttp://igraph.sourceforge.net/doc/python/igraph.Graph-class.html#layout_reingold_tilford O O\n\nI O O\nam O O\nwriting O O\na O O\nnative O O\nmodule O O\n, O O\nand O O\ni O O\nwould O O\nto O O\nget O O\na O O\ncolor O O\nfrom O O\na O O\n<Text Name Name\nstyle={{color: Name Name\n'blue'}} Name Name\n/> Name Name\nchild O O\ncomponent O O\n. O O\n\nI O O\n've O O\nsuccessfully O O\nget O O\nthe O O\ngetHighlightColor Name Name\nthat O O\nmatch O O\nwith O O\nthe O O\n<Text Name Name\nselectionColor='red'></Text>, Name Name\nbut O O\ni O O\ndon't O O\nknow O O\nhow O O\nto O O\nget O O\na O O\ncolor O O\nfrom O O\na O O\nstyle O O\nprop O O\n<Text Name Name\nstyle={{color: Name Name\n'blue'}}></Text> Name Name\n, O O\ni O O\nbelieve O O\nthat O O\nit O O\nsupposed O O\nto O O\nbe O O\non O O\ngetCurrentTextColor Name Name\n, O O\nbut O O\nit O O\ndoes O O\nn't O O\n. O O\n\nI O O\nam O O\nalso O O\nnot O O\nbe O O\nable O O\nto O O\nsetTextColor Name Name\nthat O O\nhas O O\na O O\nfixed O O\nstyle O O\ncolor O O\nprop O O\non O O\nreact O O\n. O O\n\nLet O O\nme O O\npost O O\nsome O O\nsnippets O O\nto O O\ngive O O\na O O\nbetter O O\nunderstand O O\nof O O\nwhat O O\ni O O\nam O O\ntalking O O\nabout O O\n. O O\n\nSomeComponent.js Name Name\n\nHow O O\nto O O\nget O O\nthose O O\nstyles O O\nproperties O O\non O O\nthe O O\nnative O O\nside O O\n? O O\n\nHow O O\nexactly O O\nreact-native Name Name\ndeals O O\nwith O O\nTextView Name Name\nand O O\nStyleSheets Name Name\n? O O\n\nI O O\nhave O O\nmade O O\na O O\ndmg Name Name\nfile O O\nfor O O\nmy O O\nuploader O O\ndesktop Name Name\napplication O O\n. O O\n\nThis O O\ndmg Name Name\nis O O\nported O O\non O O\nmy O O\nwebsite O O\nfrom O O\nwhere O O\ni O O\ndownload O O\nthe O O\nsame O O\nusing O O\nthe O O\nSafari Name Name\nBrowser Name Name\n. O O\n\nHowever O O\n, O O\nwhen O O\ni O O\ntry O O\nto O O\nexecute O O\nit O O\nfrom O O\nthe O O\ndownloads Name Name\nfolder O O\n, O O\nthe O O\nsystem O O\ndoes O O\nnot O O\nexecute O O\nit O O\nand O O\nthrows O O\na O O\nmessage O O\nstating O O\nits O O\nfrom O O\nan O O\nunidentified O O\ndeveloper O O\n. O O\n\nHence O O\n, O O\nin O O\nSecurity O O\n& O O\nPrivacy O O\nsettings O O\n, O O\ni O O\nopted O O\nto O O\nallow O O\ndownload O O\n. O O\n\nI O O\ncannot O O\nexpect O O\nall O O\nthe O O\nusers O O\nto O O\ndo O O\nthis O O\nsetting O O\n. O O\n\nWhat O O\nmodifications O O\ndo O O\ni O O\nneed O O\nto O O\ndo O O\ninorder O O\nto O O\nmake O O\nthe O O\ndmg Name Name\nto O O\nrun O O\nwithout O O\nany O O\nsuch O O\nerrors/warnings O O\n. O O\n\nI O O\nam O O\na O O\nnovice O O\nat O O\nthis O O\n, O O\nkindly O O\nrequesting O O\nfor O O\nsome O O\nhelp O O\n. O O\n\nThanks O O\n. O O\n\nYou O O\ncan O O\ninstall O O\nan O O\nunverified O O\napp O O\non O O\nmac Name Name\nby O O\nright-clicking O O\nthe O O\nDMG Name Name\nand O O\nselecting O O\nopen O O\n, O O\nthis O O\nwill O O\npop O O\nup O O\na O O\nwarning O O\nbut O O\nas O O\nopposed O O\nto O O\ndoubled O O\nclicking O O\n, O O\nthere O O\nis O O\nan O O\noption O O\nto O O\ncontinue O O\n. O O\n\nSee O O\nthis O O\narticle O O\nfor O O\nscreenshots O O\n- O O\nhttp://osxdaily.com/2012/07/27/app-cant-be-opened-because-it-is-from-an-unidentified-developer/ O O\n\nThe O O\nonly O O\nother O O\noption O O\nis O O\nto O O\npay O O\nApple Name Name\nto O O\nbecome O O\na O O\nverified O O\ndeveloper O O\n, O O\nand O O\nthen O O\nhave O O\nyour O O\napp O O\nreviewed O O\nand O O\nadded O O\nto O O\nthe O O\nMac Name Name\napp O O\nstore O O\n. O O\n\nWhen O O\nI O O\nsend O O\na O O\nGET O O\nrequest O O\nin O O\nPOSTMAN Name Name\nto O O\nget O O\nall O O\nmy O O\nchild O O\nentity O O\n( O O\nTown Name Name\n) O O\nthe O O\nparent O O\nentity O O\n( O O\nProvince Name Name\n) O O\nis O O\nnot O O\nshown O O\nin O O\nthe O O\nJSON Name Name\nresponse O O\n. O O\n\nThis O O\nis O O\nmy O O\ncontroller O O\n. O O\n\nAnd O O\nthese O O\nare O O\nmy O O\nentities O O\n. O O\n\nParent O O\nClass O O\n\nChild O O\nClass O O\n\nThe O O\nresponse O O\nthat O O\nI O O\n'm O O\ngetting O O\nis O O\nlike O O\nthis O O\n\nWhat O O\nI O O\n'm O O\nexpecting O O\nis O O\n\nI O O\nwas O O\nable O O\nto O O\nshow O O\nsomething O O\nlike O O\nthis O O\n, O O\nbut O O\nthe O O\nObjects O O\nthat O O\nI O O\nused O O\nare O O\nnot O O\nSpring-data-jpa Name Name\nentities O O\n, O O\njust O O\nsimple O O\nPOJOs Name Name\n. O O\n\nIs O O\nthere O O\nany O O\nproblem O O\nwith O O\nmy O O\nEntities O O\n? O O\n\nOr O O\nis O O\nthere O O\nanything O O\nelse O O\n? O O\n\nSwap O O\n@JsonBackReference Name Name\nand O O\n@JsonManagedReference Name Name\n. O O\n\nBasically O O\n: O O\n\nI O O\nwant O O\nto O O\ncreate O O\n256 O O\nfunctions O O\nthat O O\ndo O O\nthe O O\nsame O O\nthing O O\n\nBasically O O\nI O O\nwant O O\na O O\nfunction O O\nthat O O\nis O O\nable O O\nto O O\nbe O O\ncalled O O\ncase-insensitively O O\n. O O\n\nExample O O\n: O O\nI O O\nwant O O\napplepie() Name Name\nto O O\nbe O O\nable O O\nto O O\ncalled O O\ncase-insensitively O O\n: O O\n\nThe O O\nmost O O\nstraightforward O O\napproach O O\nis O O\nto O O\ndeclare O O\nanother O O\n255 O O\nfunctions O O\nwith O O\nsome O O\nletter O O\nin O O\ncaps O O\n: O O\n\nand O O\n\n. O O\n. O O\n\nall O O\nthe O O\nway O O\nto O O\n\nThere O O\nare O O\nin O O\ntotal O O\n256 O O\n( O O\n2 O O\nto O O\nthe O O\npower O O\nof O O\n8 O O\n) O O\nof O O\nthem O O\n\nIs O O\nit O O\npossible O O\nto O O\ndo O O\nit O O\nquickly O O\n? O O\n\nOr O O\nis O O\nthere O O\na O O\nmore O O\n\" O O\nbuilt-in O O\n\" O O\napproach O O\nlike O O\n\nor O O\nis O O\nit O O\npossible O O\nto O O\ndo O O\nit O O\nlike O O\n\nthat O O\ncan O O\npasses O O\nall O O\nthe O O\nparameters O O\nto O O\napplepie Name Name\ninstead O O\nof O O\nusing O O\na O O\nfor Name Name\nloop O O\nfor Name Name\nB Name Name\nin Name Name\n\" Name Name\n$@ Name Name\n\" Name Name\n; Name Name\n? O O\n\nYou O O\ncan O O\nfake O O\na O O\ncase-insensitive O O\nfunction O O\nname O O\nby O O\ndefining O O\nall-lowercase O O\nfunction O O\nnames O O\nand O O\nusing O O\nbash Name Name\n's O O\ntrap O O\nfor O O\nmissing O O\ncommand O O\nnames O O\n( O O\nrequires O O\nbash Name Name\n4 Name Name\n, O O\nwhich O O\nyou O O\nwould O O\nneed O O\nto O O\ninstall O O\nyourself O O\non O O\nOS Name Name\nX Name Name\n) O O\n: O O\n\nSo O O\nif O O\napple Name Name\nis O O\na O O\nfunction O O\n, O O\nbut O O\nyou O O\ntry O O\nto O O\ncall O O\nit O O\nas O O\nApPlE Name Name\n, O O\ncommand_not_found_handle Name Name\nis O O\ncalled O O\nwith O O\nthe O O\ncommand O O\nas O O\nthe O O\narguments O O\n. O O\n\nThe O O\nfirst O O\nline O O\ntakes O O\nthe O O\nfirst O O\nargument O O\n( O O\nApPlE Name Name\n) O O\nand O O\nlower-cases O O\nit O O\n. O O\n\nThen O O\nit O O\nattempts O O\nto O O\nrun O O\napple Name Name\nwith O O\nthe O O\noriginal O O\narguments O O\n. O O\n\nThis O O\nis O O\na O O\npretty O O\nobtuse O O\nanswer O O\n, O O\nand O O\ndefinitely O O\nnot O O\na O O\none-liner O O\n, O O\nbut O O\nhere O O\nis O O\nhow O O\nit O O\ncan O O\nbe O O\ndone O O\nin O O\nbash Name Name\n, O O\nwith O O\na O O\nlittle O O\nhelp O O\nfrom O O\nbc Name Name\nand O O\ntr Name Name\n( O O\nworks O O\non O O\nosx Name Name\n) O O\n: O O\n\nThis O O\ndoes O O\nthe O O\nfollowing O O\n; O O\n\ngets O O\nthe O O\nlength O O\nof O O\nthe O O\nfunction O O\nname O O\n\nfigures O O\nout O O\nnumber O O\nof O O\ncase O O\ncombinations O O\n( O O\n2^n O O\n) O O\n\nloops O O\nover O O\neach O O\ncombination O O\n\nturns O O\nthe O O\ncombination O O\nnumber O O\ninto O O\na O O\nstring Name Name\nof O O\nbinary O O\ndigits O O\n\nFiddles O O\nthe O O\nstring Name Name\nof O O\nbinary O O\ndigits O O\nso O O\nit O O\nis O O\nthe O O\nsame O O\nlength O O\nas O O\nthe O O\nfunction O O\nname O O\n\nindexes O O\nthrough O O\neach O O\nchar Name Name\nof O O\nthe O O\nfunction O O\nname O O\nand O O\nstring Name Name\nof O O\nbinary O O\ndigits O O\nand O O\ndoes O O\na O O\ntoupper() Name Name\ncase O O\nchange O O\nonly O O\nif O O\nthe O O\ncorresponding O O\nbinary O O\ndigit O O\nis O O\n1 Name Name\n\nreassembles O O\nthe O O\nchars Name Name\nto O O\na O O\nstring Name Name\n\ndoes O O\na O O\nbash Name Name\nalias O O\nfrom O O\neach O O\ncombination O O\nto O O\nthe O O\nfunction O O\nname O O\n\nAssumes O O\nthe O O\nfunction O O\nis O O\ndefined O O\n, O O\nand O O\nhas O O\nan O O\nall-lowercase O O\nname O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\ninvoke O O\nthe O O\nRestful Name Name\nWeb Name Name\nservices O O\nusing O O\nSpring Name Name\n. O O\n\nI O O\nsearched O O\na O O\nlot O O\nand O O\nwas O O\nable O O\nto O O\nmake O O\na O O\nrestful O O\nservice O O\nusing O O\ndifferent O O\nannotations O O\n. O O\n\nHere O O\nis O O\na O O\npiece O O\nof O O\ncode O O\n: O O\n- O O\n\nI O O\nhad O O\na O O\nweb.xml Name Name\n+ O O\n( Name Name\nname Name Name\n) Name Name\n-servlet.xml Name Name\n\nAbove O O\nexample O O\nhas O O\njust O O\none O O\nmethod O O\nand O O\nthat O O\nmethod O O\nis O O\nmapped O O\nto O O\na O O\nurl O O\n. O O\n\nNow O O\nwhat O O\nI O O\nwant O O\nis O O\nnot O O\nto O O\nuse O O\nannotations O O\nat O O\nall O O\nin O O\na O O\njava Name Name\nclass O O\n. O O\n\nSo O O\n, O O\nis O O\nthere O O\na O O\nway O O\nto O O\nmake O O\nrest O O\nservices O O\nwithout O O\nusing O O\nannotations O O\n? O O\n\nHow O O\ncan O O\nI O O\nconfigure O O\nall O O\nthe O O\nannotations O O\nin O O\nan O O\nXML Name Name\nfile O O\nand O O\ntheir O O\n( O O\nall O O\nmethods O O\nin O O\na O O\njava Name Name\nclass O O\n) O O\ncorresponding O O\nURL O O\n's O O\n? O O\n\nI O O\nam O O\nnew O O\nto O O\nspring Name Name\nmvc Name Name\nand O O\nI O O\nam O O\ntrying O O\nto O O\ndisplay O O\nan O O\nimage Name Name\non O O\nJSP Name Name\n. O O\n\nMy O O\nimage Name Name\nfile O O\nis O O\nlocated O O\nat O O\n\nMyApp/WebContent/images/logo.jpg Name Name\n\nAnd O O\nmy O O\nJSP Name Name\npages O O\nare O O\nlocated O O\nat O O\n\nMyApp/WebContent/WEB-INF/view/home.jsp Name Name\n\nI O O\nhave O O\nalready O O\ntried O O\nto O O\nuse O O\n\n<'img Name Name\nsrc=\"<%=request.getContextPath()%> Name Name\n/images/logo.jpg Name Name\n\" Name Name\n/ Name Name\n>and Name Name\n\n<'img Name Name\nsrc=\"<'c:url Name Name\nvalue='<%=request.getContextPath()%>/images/logo.jpg'> Name Name\n\nIs O O\nit O O\nbecause O O\nmy O O\nwebapp Name Name\nhierarchy O O\nis O O\nnot O O\nlike O O\n\nMyApp Name Name\n\\src\\main\\webapp\\images\\logo.jpg Name Name\n\nMyApp Name Name\n\\src\\main\\webapp\\web-inf\\views\\home.jsp Name Name\n?? O O\n? O O\n\nReally O O\nappreciate O O\nyour O O\nhelp O O\n. O O\n\nThank O O\nyou O O\n. O O\n\nUPDATE O O\n: O O\nI O O\n've O O\nfound O O\nthe O O\nsolution O O\nto O O\nmy O O\nproblem O O\n. O O\n\nhttp://www.tutorialspoint.com/spring/spring_static_pages_example.htm O O\n\nI O O\njust O O\nhave O O\nto O O\nuse O O\nresource O O\nmapping O O\nin O O\nmy O O\nservlet.xml Name Name\n. O O\n\nI O O\nreally O O\nappreciate O O\nall O O\nof O O\nyour O O\nkind O O\nanswers O O\n. O O\n\n:) O O\n\ntry O O\n\nEven O O\nthough O O\nit O O\nis O O\na O O\nSpring Name Name\nMVC Name Name\napp O O\n, O O\nit O O\nshould O O\nstill O O\ndeploy O O\nas O O\na O O\nnormal O O\nwebapp Name Name\n. O O\n\nCheck O O\nyour O O\ndeployment O O\nto O O\nmake O O\nsure O O\n, O O\nand O O\nalso O O\nuse O O\nthe O O\nbrowser Name Name\nto O O\ntest O O\nloading O O\n. O O\n\nAny O O\nstatic O O\nresource O O\nis O O\nalso O O\nlook O O\nfor O O\na O O\nURL O O\nMapping O O\nin O O\nspring Name Name\nmvc Name Name\n, O O\nso O O\nstatic O O\nresources O O\nshould O O\nbe O O\ndefined O O\nin O O\nthe O O\nspringmvc-servlet.xml Name Name\n. O O\n\nAdd O O\nthe O O\nfollowing O O\nentry O O\nto O O\nyour O O\nMVC Name Name\nconfiguration O O\n. O O\n\nI O O\nassume O O\nthat O O\nyour O O\nstatic O O\nfiles O O\nin O O\nresources Name Name\nfolder O O\n. O O\n\nthen O O\nstatic O O\nfiles O O\ncan O O\nbe O O\naccessible O O\nfrom O O\nthe O O\npage O O\n. O O\n\nI O O\nam O O\nusing O O\na O O\nfor O O\nstatement O O\nto O O\nenumerate O O\nall O O\nobjects O O\nin O O\nthe O O\narray Name Name\n. O O\n\nFor O O\neach O O\nobject O O\nin O O\nthe O O\narray Name Name\nI O O\nwant O O\nto O O\nmake O O\nit O O\nso O O\nthat O O\nit O O\ncreates O O\na O O\ndifferent O O\nobject O O\neach O O\ntime O O\nso O O\ni O O\ncan O O\nrefer O O\nto O O\ndifferent O O\nones O O\ne.g O O\n. O O\nthere O O\nare O O\n5 O O\nstring Name Name\nobjects O O\nin O O\nan O O\narray Name Name\n. O O\n\nI O O\nuse O O\nthe O O\nfor O O\nstatement O O\nto O O\nenumerate O O\neach O O\nobject O O\nand O O\neach O O\ntime O O\ni O O\nwant O O\nto O O\ncreate O O\nan O O\nnsmutablestring Name Name\nthat O O\ncontains O O\nthe O O\ntext O O\n@ O O\n\" O O\nhello O O\n\" O O\n\nIn O O\ncase O O\nyou O O\ndid O O\nnot O O\nunderstand O O\nhere O O\nis O O\nit O O\nbriefly O O\n... O O\n. O O\n\nIn O O\nan O O\narray Name Name\n- O O\n5 O O\nobjects O O\n\nenumerate O O\nthe O O\narray Name Name\nand O O\ncreate O O\na O O\nnew O O\nobject O O\neach O O\ntime O O\nwith O O\na O O\nseparate O O\nname O O\nso O O\ni O O\ncan O O\nrefer O O\nto O O\nit O O\n: O O\nobject1 Name Name\nobject2 Name Name\nobject3 Name Name\nobject4 Name Name\nobject5 Name Name\n\nUpdate O O\n: O O\n\nBy O O\narray O O\ni O O\nmean O O\nNSArray Name Name\n\nmy O O\nproblem O O\nis O O\nthat O O\nit O O\nI O O\n'm O O\nadding O O\nuiimageview Name Name\n.. O O\n. O O\n\nDo O O\nn't O O\nuse O O\na O O\nfor Name Name\n( Name Name\n.. Name Name\n. Name Name\nin Name Name\n.. Name Name\n. Name Name\n) Name Name\n, O O\nuse O O\njust O O\na O O\nstandard O O\nfor O O\n: O O\n\nEDIT O O\n: O O\nUpdated O O\nfor O O\ncomment O O\nbelow O O\n\nI O O\n'm O O\nnot O O\nsure O O\nto O O\nget O O\nyour O O\nquestion O O\n.. O O\n. O O\n\nArray Name Name\nobjects O O\nare O O\nalready O O\nuniquely O O\nidentified O O\nby O O\ntheir O O\nindex O O\n. O O\n\nWhy O O\ndo O O\nyou O O\nneed O O\ndifferent O O\nnames O O\n( O O\nNSString Name Name\n* Name Name\npointers Name Name\n) O O\n?? O O\n? O O\n\nThis O O\ncould O O\nbe O O\nrelevant O O\nin O O\nthe O O\ncase O O\nwhen O O\nyou O O\nalready O O\nknow O O\nhow O O\nmany O O\nstrings Name Name\nthere O O\nare O O\nin O O\nthis O O\narray Name Name\n, O O\nand O O\nwhat O O\neach O O\nof O O\nthem O O\nrepresent O O\n. O O\n\n( O O\nfor O O\nexample O O\n, O O\nan O O\narray Name Name\nof O O\nstrings Name Name\nrepresenting O O\nsome O O\nconfiguration O O\nparameters O O\nfor O O\na O O\nprogramm O O\n.. O O\n. O O\nif O O\nanyone O O\nthinks O O\nof O O\na O O\nbetter O O\nexample O O\n:) O O\n\nIn O O\nthis O O\ncase O O\n, O O\nif O O\nyou O O\nwant O O\nto O O\nhave O O\na O O\nclear O O\nand O O\ndistinct O O\nway O O\nto O O\naccess O O\neach O O\nmember O O\nof O O\nan O O\narray Name Name\n, O O\nyou O O\ndo O O\nn't O O\nneed O O\ndifferent O O\npointer Name Name\nnames O O\n, O O\njust O O\nuse O O\nint O O\nconstants O O\nfor O O\nindexes O O\nof O O\nthe O O\narray Name Name\n- O O\n( O O\ndeclared O O\nin O O\nC Name Name\nmacros O O\n, O O\nor O O\nin O O\nan O O\nenum O O\nfor O O\nexample O O\n) O O\n\nI O O\n've O O\nUICollectionView Name Name\ninside O O\nUITableView Name Name\nthat O O\nonly O O\npresent O O\nphotos Name Name\n. O O\n\nit O O\nworks O O\nfine O O\non O O\niOS Name Name\n9 Name Name\n\nBut O O\nin O O\niOS Name Name\n10 Name Name\n, O O\nphotos Name Name\nnot O O\nappearing O O\nuntil O O\nI O O\ntap O O\non O O\ncell Name Name\nthat O O\nholds O O\ncollection Name Name\nview Name Name\n. O O\n\nI O O\ntried O O\nsetPrefetchingEnabled Name Name\n= Name Name\nNO Name Name\nbut O O\nstill O O\nnot O O\nappearing O O\n\nany O O\nsuggestion O O\n? O O\n\nThank O O\nyou O O\n\nI O O\nhave O O\n2 O O\nlabels Name Name\nwith O O\ntext Name Name\nas O O\n\nHow O O\ncan O O\nI O O\nvertically O O\nalign O O\ntwo O O\nUILabels Name Name\ntext O O\nto O O\nachieve O O\nlike O O\nbelow O O\n( O O\ni.e O O\nto O O\nmake O O\nthe O O\nlabels Name Name\ntext Name Name\nalign O O\nvertically O O\nat O O\ncolon Name Name\n) O O\n. O O\n\nI O O\nknow O O\nthat O O\nit O O\nis O O\npossible O O\nwith O O\n4 O O\ndifferent O O\nlabels Name Name\n. O O\n\nFirst O O\nLabel1 Name Name\n: O O\namount O O\nlabel1 Name Name\n\nSecond O O\nLabel2 Name Name\n: O O\namount O O\nLabel2 Name Name\n\nBut O O\n, O O\nwhat O O\ni O O\nneed O O\nis O O\nto O O\nachieve O O\nthem O O\nin O O\n2 O O\nlabels Name Name\nonly O O\n\nand O O\nalign O O\nvertically O O\nat O O\ncolon Name Name\n\nThis O O\ncan O O\nbe O O\naccomplished O O\nby O O\nusing O O\nAutoLayout Name Name\n. O O\n\nYou O O\nwill O O\nneed O O\n4 O O\nlabels Name Name\n: O O\n\nTitle Name Name\nLabels Name Name\n\n' O O\nFirst O O\nValue O O\n' O O\n( O O\nRight O O\nAligned O O\n) O O\n\n' O O\nSecond O O\nValue O O\n' O O\n( O O\nRight O O\nAligned O O\n) O O\n\nValue Name Name\nLabels Name Name\n\n' O O\n:1 O O\n, O O\n000 O O\n' O O\n( O O\nLeft O O\nAligned O O\n) O O\n\n' O O\n:100 O O\n' O O\n( O O\nLeft O O\nAligned O O\n) O O\n\nYou O O\nwill O O\nneed O O\nto O O\npin O O\nboth O O\ntitle O O\nlabels Name Name\nto O O\nhave O O\nequal O O\nwidths Name Name\nand O O\nyou O O\nwill O O\nneed O O\nto O O\npin O O\nboth O O\nvalue Name Name\nlabels Name Name\nto O O\nhave O O\nequal O O\nwidths Name Name\n. O O\n\nYou O O\nwill O O\nalso O O\nneed O O\nto O O\nset O O\nconstraints O O\nfor O O\nhorizontal O O\nspacing O O\nbetween O O\nboth O O\ntitle Name Name\nand O O\nvalue Name Name\n. O O\n\nTo O O\nensure O O\nthat O O\nthe O O\nspacing O O\nis O O\nalways O O\nequal O O\nbetween O O\nrows Name Name\n. O O\n\nIn O O\ncode O O\nwhen O O\nyou O O\nset O O\nthe O O\nvalue O O\nof O O\nyour O O\nlabel Name Name\n, O O\nyou O O\nwill O O\nneed O O\nto O O\nmake O O\nsure O O\nthat O O\nthe O O\ncolon Name Name\nsymbol O O\nis O O\npart O O\nof O O\nthe O O\nvalue Name Name\n. O O\n\nE.g O O\n. O O\n\n[ Name Name\nNSString Name Name\nstringwithFormat Name Name\n: Name Name\n@ Name Name\n\" Name Name\n:%d Name Name\n\" Name Name\n, Name Name\nvalue Name Name\n] Name Name\n; Name Name\n\nThis O O\nimage Name Name\nillustrates O O\nthe O O\nconstraints O O\nrequired O O\n: O O\n\nUsing O O\nAutolayout O O\nplace O O\nthe O O\ntwo O O\nlabels Name Name\nin O O\nthe O O\nUIView Name Name\nand O O\nthen O O\nalign O O\nthe O O\nview O O\nto O O\nalign O O\ncentre O O\nin O O\nthe O O\nhorizontal O O\nand O O\nuse O O\nvertical O O\nspacing O O\nbetween O O\nthe O O\nviews O O\n.. O O\n. O O\nas O O\n\nThe O O\ncorrect O O\napproach O O\nis O O\nto O O\nuse O O\na O O\ncontainer Name Name\nview O O\n, O O\nwhich O O\nderives O O\nits O O\nheight O O\nfrom O O\nits O O\nsubviews O O\n. O O\n\nThe O O\ncontainer Name Name\nview O O\nis O O\nthen O O\npinned O O\nto O O\nthe O O\ncentre O O\nof O O\nthe O O\ncell Name Name\n- O O\nyou O O\nwould O O\nn't O O\nhave O O\nany O O\nconstraints O O\nlinking O O\nthe O O\ncontainer Name Name\nto O O\nthe O O\ntop O O\nand O O\nbottom O O\nedges O O\nof O O\nthe O O\ncell Name Name\n. O O\n\nWithin O O\nthe O O\ncontainer Name Name\n, O O\nthe O O\nvertical O O\nconstraints O O\nwould O O\nbe O O\n|[label1]-[label2]| Name Name\n, O O\nwhich O O\nwould O O\nmake O O\nthe O O\ncontainer Name Name\nthe O O\nheight O O\nof O O\nthe O O\ntwo O O\nlabels Name Name\nplus O O\nthe O O\nspace O O\n, O O\nand O O\nthe O O\ncentre O O\nof O O\nthe O O\ncontainer Name Name\nview O O\nwould O O\nbe O O\nbetween O O\nthe O O\ntwo O O\nlabels Name Name\n. O O\n\nI O O\nhave O O\na O O\n\" O O\nhard O O\nto O O\nread O O\n\" O O\ncrashlytics Name Name\nlog O O\nin O O\na O O\nlive O O\nXamarin Name Name\niOS Name Name\napp O O\n. O O\n\nThis O O\nissue O O\naffects O O\nalmost O O\n80% O O\nof O O\nthe O O\nusers O O\nand O O\nI O O\nam O O\nstruggling O O\nto O O\ndecipher O O\nit O O\n. O O\n\nPlease O O\nhave O O\na O O\nlook O O\nat O O\nthe O O\nlog Name Name\nin O O\nthis O O\ngist Name Name\n\nI O O\nhave O O\nuploaded O O\nthe O O\ndSYM Name Name\nfile O O\nin O O\nthe O O\nCrashlytics Name Name\ndashboard Name Name\nbut O O\nthe O O\nlog Name Name\nremains O O\nthe O O\nsame O O\n. O O\n\nIs O O\nit O O\nnormal O O\nfor O O\na O O\nXamarin Name Name\nApp O O\nthis O O\ntype O O\nof O O\nlog Name Name\n? O O\n\nI O O\ndo O O\nnot O O\neven O O\nknow O O\nwhat O O\nsource O O\nfile O O\nof O O\nthe O O\napp O O\ncauses O O\nthe O O\ncrash O O\n. O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\ncode O O\nin O O\nAppDelegate.cs Name Name\n: O O\n\nand O O\nthe O O\nfollowing O O\nmethods O O\n: O O\n\nAm O O\nI O O\nmissing O O\nsomething O O\non O O\nFabric Name Name\nconfiguration O O\nhere O O\n? O O\n\nPlease O O\ni O O\nneed O O\nsome O O\nhelp O O\n, O O\ni O O\nuse O O\nAmazon Name Name\nS3 Name Name\nBucket O O\nto O O\nstore O O\nour O O\nvideo O O\nand O O\nuse O O\nAmazon Name Name\nCloudFront Name Name\nto O O\nstream O O\nthe O O\nvideo Name Name\nfiles O O\n, O O\nbut O O\ni O O\nwant O O\na O O\nway O O\nto O O\nbe O O\nable O O\nto O O\nschedule O O\ndifferent O O\nvideo Name Name\nto O O\nplay O O\nbased O O\non O O\nspecific O O\ntime O O\nof O O\nthe O O\nday O O\nand O O\nend O O\nat O O\na O O\nspecific O O\ntime O O\nof O O\nthe O O\nday O O\n. O O\n\nWe O O\njust O O\nwant O O\nto O O\nschedule O O\nvideo Name Name\nplay O O\non O O\ncloudfront Name Name\nstream O O\n, O O\nand O O\nplay O O\nmultiple O O\nand O O\ndifferent O O\nvideos Name Name\nat O O\ndifferent O O\ntime O O\nbased O O\non O O\nour O O\ntime O O\nzone O O\n. O O\n\nSo O O\nfar O O\nwe O O\nhave O O\nset O O\nup O O\nAmazon Name Name\nS3 Name Name\nbucket O O\n, O O\nAmazon Name Name\nEC2 Name Name\ninstance O O\nand O O\nAmazon Name Name\nCloudFront Name Name\nfor O O\nvideo Name Name\nstreaming O O\n. O O\n\nWe O O\nneed O O\nsolution O O\non O O\nhow O O\nwe O O\ncan O O\nschedule O O\nvideos Name Name\nthat O O\nplay O O\nthrough O O\nCloudFront Name Name\nRTMP O O\nor O O\nhttp O O\n. O O\n\nThanks O O\nin O O\nAdvance O O\n\nI O O\n've O O\ndefined O O\nsome O O\nproperties O O\nin O O\na O O\ncontroller Name Name\nfor O O\na O O\npagination O O\n: O O\n\nI O O\n'd O O\nlike O O\nto O O\naccess O O\nlimit Name Name\nin O O\nthe O O\nRoute Name Name\n's O O\nmodel-function Name Name\nbut O O\nI O O\ndo O O\nn't O O\nknow O O\nhow O O\n. O O\n\nMaybe O O\nyou O O\nshould O O\ntake O O\na O O\nlook O O\nat O O\nthe O O\nqueryParams Name Name\noption O O\n( O O\nhttp://emberjs.com/guides/routing/query-params/ O O\n) O O\n. O O\n\nWith O O\nquery Name Name\nparams Name Name\nyou O O\ncan O O\nset O O\nthe O O\nlimit Name Name\nto O O\nbe O O\na O O\nquery Name Name\nparam Name Name\nin O O\nyour O O\nURL O O\nlike O O\nhttp://yourdomain.com/someroute?limit=15 Name Name\n. O O\n\nYour O O\ncontroller Name Name\nwill O O\nbecome O O\n: O O\n\nYou O O\nroute Name Name\nwill O O\nbecome O O\n: O O\n\nAlternative O O\n: O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nwant O O\nto O O\nuse O O\nquery Name Name\nparams Name Name\n, O O\nanother O O\nsolution O O\nmight O O\nbe O O\nto O O\ndefine O O\nthe O O\nlimit O O\nproperty O O\nin O O\none O O\nof O O\nthe O O\nparent O O\nroute Name Name\n's O O\ncontroller Name Name\n. O O\n\nBy O O\ndoing O O\nso O O\nyou O O\ncan O O\naccess O O\nthe O O\nproperty O O\nin O O\nthe O O\nmodel Name Name\nhook O O\nby O O\ndoing O O\n: O O\n\nMy O O\nmain O O\nconcern O O\nis O O\nto O O\ncheck O O\nthe O O\navailable O O\nquantity O O\nof O O\na O O\nparticular O O\nproduct O O\nfrom O O\ndatabase O O\nand O O\ncompare O O\nthat O O\nwith O O\nthe O O\nCart Name Name\nitem O O\nwhich O O\nsaved O O\nin O O\nsession O O\nI O O\nguess O O\n. O O\n\nI O O\nam O O\ngetting O O\nthe O O\n\" O O\n$id Name Name\n\" O O\nfrom O O\na O O\nDB O O\nproduct O O\nand O O\nadding O O\nit O O\nto O O\nCart Name Name\n. O O\n\nBut O O\nI O O\nalso O O\nneed O O\nto O O\ncheck O O\nthe O O\navailable O O\nquantity O O\nto O O\ncontrol O O\nthe O O\nincrease O O\nof O O\n\" O O\nqty Name Name\n\" O O\nfrom O O\nCart Name Name\n. O O\n\nSo O O\nfar O O\nI O O\nmanaged O O\nto O O\ndo O O\nthis O O\nbut O O\nfailed O O\nto O O\nget O O\nthe O O\nresult O O\nyet O O\n. O O\n\nI O O\nhave O O\nto O O\nmatch O O\nthe O O\nrequested O O\n$id Name Name\nwith O O\nthe O O\nCart Name Name\nitems O O\n' O O\nid Name Name\n' O O\nnot O O\nwith O O\nthe O O\nrowId Name Name\nfrom O O\nCart Name Name\npackage O O\n. O O\n\nTry O O\nusing O O\nthe O O\nCart::search() Name Name\nto O O\ncompare O O\nagainst O O\nthe O O\nprovided O O\nid Name Name\nand O O\nget O O\nthe O O\ncollection O O\nof O O\n$cartItem Name Name\nwhich O O\nmatches O O\n. O O\n\nIf O O\nyou O O\nfor O O\ninstance O O\nwant O O\nto O O\nfind O O\nall O O\nitems O O\nwith O O\nan O O\nid Name Name\nof O O\n1 Name Name\n: O O\n\nCheck O O\ndocumentation O O\nfor O O\nmore O O\ndetail O O\n: O O\nhttps://github.com/Crinsane/LaravelShoppingcart O O\n\nA O O\nCaseMilestone Name Name\nrecord O O\ncan O O\nhave O O\none O O\nCase Name Name\nrecord O O\nand O O\none O O\nCase Name Name\nrecord O O\ncan O O\nhave O O\nmany O O\nCaseMilestone Name Name\nrecords O O\n. O O\n\nSo O O\nthis O O\nworks O O\n: O O\n\nSimilarly O O\n, O O\na O O\nCaseMilestone Name Name\nrecord O O\ncan O O\nhave O O\none O O\nMilestoneType Name Name\nrecord O O\nand O O\none O O\nMilestoneType Name Name\nrecord O O\ncan O O\nhave O O\nmany O O\nCaseMilestone Name Name\nrecords O O\n, O O\nbut O O\nthe O O\nfollowing O O\ndoes O O\nn't O O\nwork O O\n: O O\n\nHow O O\ncome O O\n? O O\n\nIf O O\nit O O\nis O O\nbecause O O\nnot O O\nall O O\nCaseMilestones Name Name\nare O O\nrequired O O\nto O O\nhave O O\nan O O\nassociated O O\nMilestoneType Name Name\n, O O\nwhich O O\nquery O O\nwill O O\nget O O\nme O O\nwhat O O\nI O O\n'm O O\nlooking O O\nfor O O\n? O O\n\nCheck O O\n\" Name Name\nChild Name Name\nRelationship Name Name\nName Name Name\n\" Name Name\nin O O\nLookup O O\nfrom O O\nCaseMilestones Name Name\nto O O\nMilestoneType Name Name\n\nand O O\nchange O O\nto O O\nSELECT Name Name\nId Name Name\n, Name Name\n( Name Name\nSELECT Name Name\nId Name Name\nFROM Name Name\n\" Name Name\nChild Name Name\nRelationship Name Name\nName Name Name\n\" Name Name\n) Name Name\nFROM Name Name\nMilestoneType Name Name\n\nOk O O\n, O O\nI O O\nneed O O\nmy O O\nprogram O O\nto O O\nvalidate O O\nuser O O\nentered O O\ndata O O\n. O O\n\nIf O O\nthat O O\ndata O O\nis O O\ninvalid O O\n, O O\nthe O O\nprogram O O\nneeds O O\nto O O\nskip O O\nalmost O O\nall O O\nof O O\nmy O O\ncode O O\nand O O\nget O O\nto O O\nthe O O\nend O O\nof O O\nmy O O\nwhile O O\nloop O O\nto O O\nask O O\nif O O\nthe O O\nuser O O\nwould O O\nlike O O\nto O O\nproceed O O\nwith O O\ncalculating O O\nanother O O\nloan O O\n. O O\n\nMy O O\nprofessor O O\nhas O O\nnot O O\nprovided O O\nus O O\nwith O O\na O O\nmethod O O\nof O O\ndoing O O\nthis O O\nand O O\nall O O\nthe O O\ninformation O O\nive O O\nfound O O\non O O\nthe O O\ninternet O O\nis O O\nnot O O\nspecific O O\nenough O O\nto O O\nhelp O O\nme O O\n. O O\n\nOnce O O\nagain O O\n, O O\nI O O\nneed O O\nthe O O\ncode O O\nafter O O\nthe O O\nvalidation O O\nto O O\nbe O O\nskipped O O\nwithout O O\nexiting O O\nthe O O\nprogram O O\nand O O\ngo O O\nto O O\nthe O O\nend O O\nof O O\nthe O O\nloop O O\nwhere O O\nI O O\nask O O\nthe O O\nuser O O\nif O O\nthey O O\nwant O O\nto O O\ncalculate O O\nanother O O\nloan O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\nthus O O\nfar O O\n. O O\n\ncontinue Name Name\nis O O\nmaybe O O\none O O\nof O O\nthe O O\nworse O O\nfeature O O\nof O O\njava Name Name\n, O O\nwith O O\nthe O O\nbreak Name Name\nkeyword O O\n( O O\nexcept O O\nin O O\nswitch Name Name\nstatements O O\n) O O\n. O O\n\nIt O O\nleads O O\nto O O\njigsaw O O\ncode O O\nwhere O O\nyou O O\nhave O O\nto O O\nfind O O\nout O O\nwhere O O\nthe O O\ncode O O\njumps O O\n. O O\n\nOne O O\ncontinue Name Name\nmay O O\nbe O O\npractical O O\nbut O O\nit O O\ngets O O\nvery O O\nhard O O\nto O O\nchange O O\nthe O O\ncode O O\nit O O\nproduces O O\n( O O\nthink O O\nabout O O\nadding O O\nan O O\ninner O O\nloop. O O\n. O O\n) O O\n, O O\nand O O\n2 O O\ncontinues Name Name\nwill O O\nmake O O\nyou O O\ncrazy O O\n. O O\n\nYou O O\ncan O O\nalways O O\navoid O O\nusing O O\ncontinue Name Name\n, O O\nthere O O\nis O O\nalways O O\nanother O O\nsolution O O\n. O O\n\nSame O O\nfor O O\nbreak Name Name\n. O O\n\nHere O O\n, O O\nwhy O O\ndo O O\nn't O O\nyou O O\njust O O\nuse O O\nsome O O\nkind O O\nof O O\n\nThat O O\n's O O\neasy O O\n, O O\nsimple O O\n, O O\nclear O O\nand O O\neven O O\nbetter O O\nwhen O O\nyou O O\nhave O O\na O O\nseparate O O\nmethod O O\nthat O O\ncontains O O\nprocessing O O\n. O O\n\nAlso O O\n, O O\nin O O\nyour O O\ncase O O\n, O O\nthat O O\nis O O\ntied O O\nto O O\nrobustness O O\n, O O\nyou O O\ncould O O\nprovide O O\na O O\nprocess() Name Name\nmethod O O\nthat O O\nthrows O O\nan O O\nexception Name Name\nif O O\nthe O O\ndata O O\nentered O O\nis O O\nnot O O\nvalid O O\n. O O\n\nThis O O\nmakes O O\nit O O\neven O O\nmore O O\nclear O O\nthat O O\nthere O O\nis O O\na O O\n\" O O\nnormal O O\n\" O O\nprogram O O\nbehavior O O\nand O O\na O O\nbunch O O\nof O O\nstrange O O\ncases O O\nyou O O\nhandle O O\nas O O\nerrors O O\n. O O\n\nthen O O\nyour O O\nmain O O\nloop O O\nbecomes O O\n\nBreak Name Name\nis O O\nvery O O\nuseful O O\nfor O O\nstopping O O\nloops O O\nas O O\nyou O O\nsaid O O\nyou O O\nwanted O O\n. O O\n\nEssentially O O\nit O O\nhas O O\nthe O O\neffect O O\nof O O\nsetting O O\nthe O O\nboolean Name Name\nparameter O O\nof O O\na O O\nfor Name Name\nloop O O\nto O O\ntrue Name Name\n. O O\n\nYou O O\ncan O O\nof O O\ncourse O O\n, O O\nuse O O\nwhat O O\nin O O\nCMD Name Name\nis O O\nreferred O O\nto O O\na O O\nGOTO O O\n. O O\n\nyou O O\ncan O O\ncreate O O\nsomething O O\nlike O O\n: O O\n\nI O O\nneed O O\nto O O\nread O O\nsome O O\nXML Name Name\nfiles O O\nthat O O\nfollow O O\nthe O O\nONIX Name Name\nstandard O O\n\nSee O O\n: O O\nhttp://www.editeur.org/93/Release-3.0-Downloads/ O O\n\nTo O O\ndo O O\nthis O O\ni O O\ndownloaded O O\nthe O O\nONIX Name Name\n3.0 Name Name\nXSD Name Name\n: O O\n\nhttp://www.editeur.org/files/ONIX%203/ONIX_BookProduct_XSD_schema+codes_Issue_25.zip O O\n\nUsing O O\nthe O O\ndownloaded O O\nXSD Name Name\nand O O\nthis O O\ncommand O O\n\" O O\nxsd Name Name\nyour.xsd Name Name\n/classes Name Name\n\" O O\ni O O\ncreated O O\nclasses O O\nthat O O\ni O O\nwant O O\nto O O\nuse O O\n. O O\n\nWhen O O\ntrying O O\nto O O\ncreate O O\na O O\nnew O O\nXml Name Name\nSerializer Name Name\nlike O O\nso O O\n: O O\n\nI O O\nget O O\nand O O\nexception Name Name\n\nWhen O O\ni O O\ndrill O O\ndown O O\nthrough O O\nthe O O\ninner O O\nexceptions Name Name\ni O O\nend O O\nup O O\nwith O O\nthis O O\nmessage O O\n: O O\n\nI O O\nam O O\nnot O O\nsure O O\nwhat O O\nto O O\ndo O O\n, O O\nis O O\nsomething O O\nwrong O O\nwith O O\nthe O O\nXSD Name Name\n? O O\n\nAny O O\nsuggestions O O\n? O O\n! O O\n\nEdit O O\n\ni O O\nam O O\nbeginner O O\nin O O\nQT Name Name\n\ni O O\ntry O O\nto O O\nopen O O\nbinary Name Name\nfile O O\nand O O\ndraw O O\nit O O\npixel O O\nby O O\npixel O O\n\ni O O\ngot O O\nthis O O\nwarning O O\nwhen O O\ni O O\nwas O O\ndebugging O O\n\nand O O\nthis O O\nis O O\nthe O O\ncode O O\n\nthanks O O\nin O O\nadvance O O\n:) O O\n\nYou O O\nincorrectly O O\ncalculate O O\nx Name Name\nand O O\ny Name Name\ncoordinate O O\non O O\nthis O O\nline O O\n: O O\n\nx Name Name\nshould O O\nbe O O\ninstead O O\n: O O\n\ny Name Name\nshould O O\nbe O O\n\nor O O\nmaybe O O\nit O O\nis O O\nbetter O O\nto O O\nuse O O\nanother O O\nvariable O O\nfor O O\nx Name Name\nto O O\navoid O O\ndivision O O\n: O O\n\nSuggestions O O\n: O O\nit O O\nis O O\nbetter O O\nto O O\ndefine O O\nvariable O O\nright O O\nbefore O O\nit O O\nis O O\nused O O\n: O O\n\nor O O\neven O O\nbetter O O\n\nI O O\nHave O O\nA O O\ntable Name Name\nthat O O\nshows O O\neach O O\ncourse O O\na O O\nstudent O O\nis O O\nregisered O O\nin O O\n. O O\n\nHow O O\nwill O O\nI O O\nselect O O\nthe O O\nnumber O O\nof O O\ncourses O O\nthat O O\na O O\nstudent O O\ndoing O O\nPSY1 Name Name\nalso O O\ndoes O O\nthat O O\nfufills O O\nBOTH O O\nCond1 Name Name\nand O O\nCond Name Name\n2 Name Name\n? O O\n\ni.e O O\n1004 Name Name\ndoes O O\n1 O O\ncourse O O\nthat O O\npasses O O\nboth O O\ncriteria O O\nand O O\nalso O O\ndoes O O\npsy1 Name Name\n\nDoesnt O O\nwork O O\n. O O\n\nThank O O\nyou O O\n\nED O O\n: O O\nI O O\nneed O O\na O O\nlist Name Name\nof O O\nall O O\nstudents O O\ndoing O O\nPSY1 Name Name\n, O O\nAlong O O\nwith O O\nteh O O\nammount O O\nof O O\nOTHER O O\ncourses O O\nthey O O\ndo O O\nwhich O O\nfufill O O\nbot O O\ncond1 Name Name\nand O O\ncond2 Name Name\n. O O\n\nUntested O O\n, O O\nbut O O\nshould O O\ngive O O\nyou O O\na O O\nstarter O O\n: O O\n\nE.g O O\n. O O\n: O O\n\nIf O O\nyou O O\nwant O O\nto O O\ninclude O O\nstudents O O\nwith O O\na O O\nscore O O\nof O O\nzero Name Name\n, O O\nchange O O\nthe O O\n[ Name Name\nINNER Name Name\n] Name Name\nJOIN Name Name\nto O O\na O O\nLEFT Name Name\nJOIN Name Name\nand O O\nCOUNT Name Name\n( O O\nor O O\nCOALESCE(COUNT)) Name Name\nsomething O O\non O O\nthe O O\nright O O\n. O O\n\nThis O O\nis O O\nthe O O\nstructure O O\nof O O\nmy O O\nRails O O\nproject O O\n\nI O O\nwant O O\nto O O\naccess O O\nimages Name Name\nin O O\nthe O O\ndirectory O O\nof O O\n\" O O\nRoot/uploads/images Name Name\n\" O O\n\nI O O\ntried O O\nlots O O\nby O O\ngoogling O O\n, O O\nnothing O O\ngot O O\nhelpfull O O\n, O O\ni O O\nam O O\nstuch O O\non O O\nthis O O\n. O O\n\nPlease O O\ntry O O\nto O O\ngive O O\na O O\nsolution O O\n. O O\n\nIt O O\nwill O O\nbe O O\nvery O O\nthankful O O\n. O O\n\nYou O O\ncould O O\ntry O O\nsomething O O\nalong O O\nthe O O\nlines O O\n: O O\n\nIn O O\nroutes.rb Name Name\n: O O\n\nIf O O\nsecurity O O\nis O O\nyour O O\nconcern O O\n, O O\nyou O O\ncan O O\nadd O O\npermission O O\nchecks O O\nto O O\nthe O O\ncontroller O O\n. O O\n\nI O O\nhave O O\na O O\nWebView Name Name\ninto O O\nwhich O O\nI O O\n'm O O\nloading O O\na O O\nlocal O O\nHTML Name Name\npage O O\nwith O O\nsome O O\nembedded O O\nimages Name Name\n. O O\n\nI O O\nwant O O\nto O O\nallow O O\nthe O O\nuser O O\nto O O\nzoom O O\nin O O\non O O\nthe O O\ntext Name Name\nand O O\nimage Name Name\nin O O\na O O\nsimilar O O\nfashion O O\nas O O\nthey O O\nwould O O\nwith O O\nthe O O\nweb Name Name\nbrowser Name Name\n. O O\n\nAny O O\nideas O O\nhow O O\nto O O\nenable O O\nthis O O\n? O O\n\nThanks O O\n\nI O O\nused O O\nscalesPageToFit Name Name\nto O O\nYES O O\n... O O\n. O O\nit O O\nallows O O\nit O O\nto O O\nzoom O O\nin O O\nsome O O\n.. O O\n. O O\nbut O O\nnot O O\na O O\ntrue O O\nzoom O O\nlike O O\nsafari Name Name\nhas O O\n. O O\n\nFor O O\ncompleteness O O\n. O O\n\nYou O O\nmust O O\nenable O O\nmultitouch Name Name\n, O O\nscalesPagesToFit Name Name\nto O O\nget O O\nit O O\nto O O\nwork O O\n( O O\nthere O O\nare O O\nsome O O\nconditions O O\nif O O\nits O O\nwithin O O\ncertain O O\nother O O\nviews Name Name\n) O O\n. O O\n\nBut O O\nthen O O\nto O O\nprevent O O\nit O O\nscaling O O\nyour O O\nwebpage O O\n( O O\nespecially O O\nif O O\nusing O O\nlocal O O\nfiles O O\n) O O\n. O O\n\nYou O O\nwill O O\nneed O O\nto O O\nadd O O\nthe O O\nfollowing O O\nsnippet O O\nto O O\nyour O O\nHTML Name Name\n\nFor O O\nmore O O\ninfo O O\nso O O\n: O O\nhttp://iphoneincubator.com/blog/windows-views/right-scale-for-a-uiwebview O O\n\nOn O O\nAndroid Name Name\n6.0 Name Name\nMarshmallow Name Name\nthe O O\npositioning O O\nof O O\nan O O\nEditText Name Name\nin O O\nrelation O O\nto O O\nan O O\nImageView Name Name\nin O O\na O O\nRelativeLayout Name Name\nwith O O\nthe O O\nattributes O O\nbaseline Name Name\nand O O\nlayout_alignBaseline Name Name\ndoes O O\nnot O O\nwork O O\nanymore O O\n. O O\n\nThe O O\nbehaviour O O\ncan O O\neven O O\nbe O O\nobserved O O\nin O O\nthe O O\nlayout O O\neditor O O\nin O O\nAndroid Name Name\nstudio Name Name\n. O O\n\nOn O O\na O O\nreal O O\nAndroid Name Name\nMarshmallow Name Name\ndevice O O\nor O O\nemulatr Name Name\nthe O O\nEditText Name Name\nin O O\nmy O O\ncase O O\nis O O\nshift O O\noutside O O\nthe O O\nscreen O O\nand O O\nnot O O\nvisible O O\n. O O\n\nDo O O\nI O O\nmiss O O\nsome O O\nchanges O O\n, O O\nis O O\nit O O\na O O\nbug O O\n? O O\n\nI O O\nhave O O\ncreated O O\nscreenshots O O\nof O O\nthe O O\nLayout Name Name\nEditor Name Name\nof O O\nAndroid Name Name\nStudio Name Name\n. O O\n\nThe O O\ndifference O O\nbetween O O\nthese O O\ntwo O O\nscreenshots O O\nis O O\nsolely O O\nthe O O\nchange O O\nof O O\nthe O O\nAPI Name Name\nlevel O O\n. O O\n\nI O O\nhave O O\ncreated O O\na O O\nsample O O\nproject O O\nhttps://github.com/mikegr/baseline O O\n\nThis O O\nis O O\nbug O O\nreported O O\non O O\nhttps://code.google.com/p/android/issues/detail?id=73697&thanks=73697 O O\n\nSince O O\nAPI11 Name Name\nyou O O\ncan O O\nsimply O O\nuse O O\nandroid:baselineAlignBottom Name Name\n= Name Name\n\" Name O\ntrue Name Name\n\" Name Name\n\nBelow O O\nAPI11 Name Name\nyou O O\ncan O O\noverwrite O O\ngetBaseLine() Name Name\n. O O\n\nUpdate O O\nto O O\nAndroid Name Name\nSupport Name Name\nLibrary Name Name\n23.2.1 Name Name\n, O O\nthis O O\nmay O O\nsolve O O\nyour O O\nproblem O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nread O O\na O O\nhuge O O\nfile O O\nwith O O\nfread Name Name\n, O O\nbut O O\ni O O\nguess O O\nsomething O O\nis O O\nmessed O O\nwith O O\nthe O O\nlayout O O\nof O O\nthe O O\nfile O O\n. O O\n\nIf O O\ni O O\ntry O O\nto O O\nread O O\nthe O O\nfile O O\nwith O O\n\non O O\nthis O O\nfile O O\n( O O\ni O O\njust O O\ntook O O\nthe O O\nline O O\nwith O O\nthe O O\nerror O O\nand O O\nfew O O\nbefore O O\nand O O\nafter O O\n) O O\n: O O\n\nI O O\nget O O\nthis O O\nerror O O\n: O O\n\nHow O O\ncan O O\ni O O\nsolve O O\nit O O\n? O O\n\nI O O\n'm O O\nnot O O\n100% O O\nsure O O\nwhat O O\nthe O O\nerror O O\nis O O\nin O O\nyour O O\ndata O O\n, O O\nhere O O\n, O O\nbut O O\ntry O O\nrunning O O\nthe O O\ncode O O\nwith O O\n\nin O O\nthe O O\nfread Name Name\noptions O O\n. O O\n\nI O O\nhad O O\na O O\nsimilar O O\nerror O O\n, O O\nand O O\nit O O\nseemed O O\nthat O O\nfread Name Name\nwas O O\nhaving O O\ntrouble O O\nidentifying O O\nmy O O\ncolumn Name Name\nseparation O O\n. O O\n\nSetting O O\nfill Name Name\nto O O\ntrue O O\nallows O O\nfread Name Name\nto O O\nfill O O\nin O O\nany O O\nmissing O O\ndata O O\n- O O\nat O O\nleast O O\nthen O O\nyou O O\ncan O O\ncheck O O\nthe O O\nresulting O O\ndata O O\nframe O O\nand O O\nfind O O\nout O O\nwhere O O\nthe O O\nweirdness O O\nis O O\n. O O\n\nWe O O\nhave O O\nrecently O O\nstarted O O\na O O\nproject O O\nto O O\nstore O O\na O O\nload O O\nof O O\ndata O O\non O O\na O O\nHadoop Name Name\n/ O O\nHBase Name Name\ncluster O O\n. O O\n\nI O O\nhave O O\nfollowed O O\nthe O O\ntutorial O O\nin O O\nthe O O\nApache Name Name\n' O O\nQuick O O\nStart O O\n' O O\nguide O O\n, O O\nand O O\nhave O O\ngot O O\na O O\nsmall O O\nstandalone O O\nHBase Name Name\ninstance O O\nrunning O O\nsuccessfully O O\non O O\none O O\nof O O\nour O O\nservers Name Name\n. O O\n\nI O O\nam O O\nable O O\nto O O\nuse O O\nHBase Name Name\nshell Name Name\nto O O\ncreate O O\ntables Name Name\n, O O\nput O O\ndata O O\n, O O\nget O O\n, O O\nscan O O\netc O O\n- O O\nlooks O O\ngood O O\n! O O\n\nNow O O\nmy O O\nproblem O O\n: O O\nour O O\nservers Name Name\nwhere O O\nHBase Name Name\nwill O O\nbe O O\ninstalled O O\nare O O\nall O O\nlinux Name Name\n, O O\nbut O O\nall O O\nthe O O\ndevelopers O O\nin O O\nmy O O\ncompany O O\nuse O O\nWindows Name Name\nmachines O O\n- O O\nit O O\nwould O O\nbe O O\nnice O O\nif O O\nwe O O\ndid O O\nn't O O\nhave O O\nto O O\nmake O O\neveryone O O\nin O O\nthe O O\ncompany O O\ninstall O O\nCygwin Name Name\njust O O\nto O O\nuse O O\nthe O O\nJava Name Name\nAPI Name Name\n. O O\n\nCurrently O O\n, O O\nwhen O O\nI O O\ntry O O\nto O O\nconnect O O\nrunning O O\nfrom O O\ninside O O\nEclipse Name Name\nwith O O\nthe O O\nJava Name Name\nAPI Name Name\n, O O\nI O O\nget O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\nFollowed O O\neventually O O\nby O O\n: O O\n\nMy O O\nquestion O O\nis O O\n: O O\nis O O\nit O O\npossible O O\nto O O\nuse O O\nthe O O\nJava Name Name\nAPI Name Name\nfor O O\nHBase Name Name\non O O\nWindows Name Name\n, O O\nconnecting O O\nto O O\na O O\nserver Name Name\nrunning O O\non O O\nLinux Name Name\n, O O\nwithout O O\ninstalling O O\nCygwin Name Name\n, O O\nHadoop Name Name\nand O O\nHBase Name Name\non O O\nevery O O\ndeveloper O O\n's O O\nmachine O O\n? O O\n\nAlternatively O O\n, O O\nwould O O\nanother O O\npackage O O\nsuch O O\nas O O\nKundera Name Name\nbe O O\nable O O\nto O O\nconnect O O\nwithout O O\nCygwin Name Name\n? O O\n\nIf O O\nnot O O\n, O O\nhow O O\ndoes O O\nthe O O\nREST Name Name\nAPI Name Name\ncompare O O\nin O O\nperformance O O\nto O O\nthe O O\nnative O O\nJava Name Name\nAPI Name Name\n? O O\n\nI O O\ncould O O\nalways O O\nwrite O O\nmy O O\nown O O\nwrapper O O\nfor O O\nthat O O\nand O O\ndistribute O O\nit O O\nto O O\nour O O\ndevelopers O O\n( O O\nalthough O O\nno O O\ndoubt O O\nsomething O O\nlike O O\nthat O O\nmay O O\nalready O O\nexist O O\n) O O\n. O O\n\nAny O O\nhelp O O\non O O\nthis O O\nwould O O\nbe O O\nmuch O O\nappreciated O O\nas O O\nI O O\n'm O O\nhaving O O\ntrouble O O\nfinding O O\na O O\ndefinitive O O\nanswer O O\non O O\nGoogle Name Name\n! O O\n\nI O O\nam O O\ncurrently O O\nusing O O\nanalog O O\npin Name Name\n3 Name Name\non O O\nmy O O\nArduino Name Name\nUno Name Name\nto O O\nsend O O\nout O O\nvoltage O O\nfrom O O\n0 Name Name\nto O O\n5V Name Name\n. O O\n\nI O O\nam O O\nusing O O\nthat O O\nvoltage O O\nto O O\ncontrol O O\nthe O O\nmotor Name Name\nand O O\ncurrently O O\nI O O\nam O O\nusing O O\nthe O O\nfunction O O\n: O O\n\nI O O\nam O O\nusing O O\n255 Name Name\npwm Name Name\nfor O O\n5V Name Name\nand O O\n127 Name Name\nfor Name Name\n2.5V Name Name\n. O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nPWM O O\nis O O\nsending O O\nfull O O\ncycle O O\nat O O\n255pwm(5V) Name Name\n, O O\nbut O O\non O O\n127V Name Name\nthe O O\ncycle O O\nis O O\nat O O\n50% Name Name\nwhich O O\ncauses O O\nmy O O\nmotor Name Name\nto O O\ntwitch O O\na O O\nlittle O O\nbit O O\n. O O\n\nHow O O\ncan O O\nI O O\nsolve O O\nthis O O\n? O O\n\nI O O\nam O O\nsearching O O\nfor O O\na O O\nway O O\nto O O\nsend O O\nfull O O\nPWM O O\ncycle O O\neven O O\nat O O\nlower O O\nvolts O O\n. O O\n\nIs O O\nit O O\npossible O O\n? O O\n\nFirst O O\nI O O\nbelieve O O\nyou O O\nmean O O\nD3 Name Name\nnot O O\nA3 Name Name\n, O O\nsince O O\nPWM O O\ndoes O O\nnot O O\nexist O O\non O O\nA3 Name Name\n. O O\n\nAssuming O O\nyou O O\nare O O\ndriving O O\na O O\nDC Name Name\nmotor Name Name\n, O O\nand O O\nnot O O\nsomething O O\nlike O O\na O O\nservo Name Name\nor O O\nstepper Name Name\n\nYou O O\nhave O O\ntwo O O\nproblems O O\n. O O\n\n1st O O\n. O O\n\nyou O O\nmay O O\nneed O O\na O O\nsmoothing O O\ncapacitor O O\n. O O\n\nWhere O O\nyour O O\nformula O O\nwould O O\nbe O O\nF Name Name\n= Name Name\nL*C Name Name\nNoting O O\nthat O O\nanalogWrite Name Name\nuses O O\na O O\nF Name Name\n= Name Name\n490Hz Name Name\n. O O\n\nThe O O\nconcept O O\nis O O\nsimple O O\n, O O\nin O O\nshort O O\nthe O O\ncap O O\naverage O O\nout O O\nthe O O\nhigh O O\nand O O\nlows O O\nof O O\nthe O O\nPWM O O\n, O O\nbased O O\non O O\nthe O O\nduty O O\ncycle O O\n. O O\n\nAnd O O\nthe O O\ncapacitance O O\nneeded O O\nis O O\nbased O O\non O O\nthe O O\nfrequency O O\nand O O\nimpedance O O\n. O O\n\nThis O O\nwill O O\nprovide O O\nthe O O\nanalog O O\nvoltage O O\n. O O\n\n2nd O O\n. O O\n\nAnd O O\nbigger O O\nproblem O O\nis O O\nthe O O\noutput O O\nof O O\nthe O O\nArduino Name Name\ncan O O\nnot O O\nsupply O O\nsufficient O O\ncurrent O O\nto O O\ndrive O O\nthe O O\nmotor Name Name\ncorrectly O O\n. O O\n\nIt O O\nwill O O\nmax O O\nout O O\nat O O\nabout O O\n20ma Name Name\n, O O\nand O O\nthe O O\nmotor Name Name\nlikely O O\nneeds O O\nmore O O\n. O O\n\nSo O O\nat O O\nlow O O\nspeeds O O\nthe O O\npulses O O\nwhich O O\nwere O O\nweek O O\n, O O\nstall O O\nout O O\nduring O O\ntheir O O\nlow O O\nperiods O O\n. O O\n\nYou O O\nshould O O\nhave O O\nyour O O\nPWM O O\noutput O O\ndrive O O\na O O\ntransistor Name Name\n, O O\nwhich O O\nin O O\nturn O O\nwill O O\nON-OFF O O\nthe O O\nmotor Name Name\ndirectly O O\nfrom O O\nthe O O\npower O O\nsupply O O\n. O O\n\nNow O O\nyour O O\nmotor O O\nmay O O\nhave O O\nenough O O\ninertia O O\nas O O\nnot O O\nto O O\nneed O O\nthe O O\ncap O O\n. O O\n\nsee O O\nadafruit-arduino-lesson-13-dc-motors/breadboard O O\n-layout O O\n\nand O O\nhere O O\nfor O O\na O O\ndiscussion O O\nabout O O\nthe O O\nsmoothing O O\ncap O O\n\nI O O\nhave O O\na O O\nmenu-bar Name Name\nbased O O\napplication O O\n, O O\nwhich O O\ndisplays O O\na O O\nwindow Name Name\n, O O\nwhen O O\nthe O O\nicon Name Name\nis O O\nclicked O O\n. O O\n\nIt O O\nall O O\nworks O O\nfine O O\non O O\nMac Name Name\nOS Name Name\nX Name Name\nLion Name Name\n, O O\nbut O O\nfor O O\nsome O O\nreason O O\n, O O\nan O O\nerror O O\noccurs O O\non O O\nSnow Name Name\nLeopard Name Name\nan O O\nsooner O O\nversions O O\nof O O\nMac Name Name\nOS Name Name\nX Name Name\n. O O\n\nAnytime O O\n[ Name Name\nTheWindowController Name Name\nwindow Name Name\n] Name Name\nis O O\ncalled O O\nthe O O\nmethod O O\nstops O O\n, O O\nbut O O\nthe O O\napp O O\nkeeps O O\nrunning O O\n. O O\n\nBecause O O\nof O O\nthis O O\n, O O\nI O O\ndo O O\nn't O O\nthink O O\nthat O O\nthe O O\nwindow O O\nis O O\njust O O\nnil O O\n, O O\nit O O\n's O O\ncorrupt O O\n, O O\nin O O\nsome O O\nway O O\n. O O\n\nI O O\nhave O O\nno O O\nIdea O O\nwhy O O\nthis O O\nhappens O O\n, O O\nand O O\nlike O O\nI O O\nsaid O O\n, O O\nit O O\nonly O O\nhappens O O\nin O O\nMac Name Name\nOS Name Name\nX Name Name\nSnow Name Name\nLeopard Name Name\n. O O\n\nBtw O O\n. O O\n\nI O O\nuse O O\nARC O O\n, O O\nif O O\nthat O O\nmatters O O\nat O O\nall O O\n. O O\n\nYou O O\n're O O\nloading O O\na O O\nNIB Name Name\nthat O O\nuses O O\na O O\n10.7-specific Name Name\nfeature O O\n, O O\nCocoa O O\nAutolayout O O\n, O O\non O O\n10.6 Name Name\n, O O\nwhich O O\ndoes O O\nn't O O\nunderstand O O\nit O O\n. O O\n\nIf O O\nyou O O\nwish O O\nto O O\nsupport O O\nrunning O O\non O O\n10.6 Name Name\n, O O\nyou O O\nneed O O\nto O O\navoid O O\nusing O O\nsuch O O\nfeatures O O\n. O O\n\nYou O O\nshould O O\nbe O O\nable O O\nto O O\nset O O\nthe O O\ndeployment O O\ntarget O O\non O O\nthe O O\nNIB Name Name\n, O O\nwhich O O\nwill O O\nthen O O\ncause O O\nwarnings O O\nto O O\nshow O O\nup O O\nfor O O\nfeatures O O\nwhich O O\nare O O\nn't O O\nsupported O O\nby O O\nthat O O\ndeployment O O\ntarget O O\n. O O\n\nAlso O O\n, O O\nif O O\nyou O O\nhave O O\nn't O O\nalready O O\ndone O O\nso O O\n, O O\nyou O O\nneed O O\nto O O\ndo O O\nsomething O O\nsimilar O O\nfor O O\nyour O O\ntarget O O\n's O O\nbuild O O\nsettings O O\n. O O\n\nSet O O\nthe O O\ndeployment O O\ntarget O O\n. O O\n\nUnfortunately O O\n, O O\nthat O O\nwo O O\nn't O O\nnecessarily O O\ncause O O\nwarnings O O\nfor O O\ncode O O\nwhich O O\nuses O O\nfeatures O O\nthat O O\nwere O O\nintroduced O O\nin O O\n10.7 Name Name\n. O O\n\nYou O O\ncan O O\nset O O\nup O O\nan O O\nalternative O O\nbuild O O\nconfiguration O O\nwhich O O\nbuilds O O\nagainst O O\nthe O O\n10.6 Name Name\nSDK Name Name\nand O O\ncompile O O\nagainst O O\nthat O O\nto O O\nlearn O O\nwhere O O\nyou O O\n're O O\nusing O O\npost-10.6 Name Name\nfeatures O O\n. O O\n\nSee O O\nApple Name Name\n's O O\nSDK Name Name\nCompatibility O O\nGuide O O\nfor O O\nmore O O\ninfo O O\n. O O\n\nI O O\nwas O O\nreferring O O\nto O O\nhow O O\nangular Name Name\njs Name Name\nconnects O O\nto O O\nmongo Name Name\ndb Name Name\n. O O\n\nSo O O\nwhile O O\nsetting O O\nthe O O\nurl Name Name\nand O O\nport Name Name\nfor O O\nthe O O\n' O O\ndb Name Name\n' O O\nobject O O\n, O O\nI O O\nfound O O\ncode O O\nlike O O\nbelow O O\n: O O\n\nWill O O\nsomeone O O\nplease O O\nlet O O\nme O O\nknow O O\nwhat O O\nis O O\nthis O O\npath O O\nhere O O\nfor O O\n? O O\n\nAnd O O\nalso O O\n, O O\nwhat O O\nis O O\nthe O O\ndefault O O\nvalue O O\nof O O\nMONGOHQ_URL Name Name\nhere O O\n? O O\n\nFrom O O\nthe O O\nlink O O\nhttp://docs.mongohq.com/languages/nodejs.html O O\n, O O\nI O O\ncame O O\nto O O\nknow O O\nmongo Name Name\nurl O O\ncan O O\nbe O O\nset O O\nto O O\n: O O\n\nAm O O\nI O O\nright O O\n? O O\n\nThanks O O\n, O O\n\nSabari O O\n\nThe O O\nMONGOHQ_URL Name Name\nin O O\nyour O O\ncode O O\nsnippet O O\ncomes O O\nfrom O O\nthe O O\nshell Name Name\nenvironment O O\n. O O\n\nFor O O\nexample O O\n, O O\nin O O\nbash Name Name\nyou O O\nwould O O\nadd O O\nthat O O\nto O O\nyour O O\n~ Name Name\n/.bash_profile Name Name\n: O O\n\n. O O\n. O O\nor O O\ninclude O O\non O O\nyour O O\ncommand Name Name\nline Name Name\nwhen O O\nstarting O O\nthe O O\nnode Name Name\napp O O\n: O O\n\nAnother O O\ncommon O O\napproach O O\nwith O O\nNode.js Name Name\nis O O\nto O O\nuse O O\nsomething O O\nlike O O\ndotenv Name Name\n, O O\nwhich O O\nwill O O\nload O O\nenvironment O O\nvariables O O\nfrom O O\na O O\n.env Name Name\ndirectory O O\nin O O\nyour O O\nproject O O\n. O O\n\nThere O O\nis O O\nno O O\ndefault O O\n; O O\nyou O O\nneed O O\nto O O\ndefine O O\nthis O O\nif O O\nyou O O\nwant O O\nto O O\nconnect O O\nto O O\na O O\nMongoHQ Name Name\ninstance O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nuse O O\nmootools Name Name\najax Name Name\nrequests O O\nto O O\nrecord O O\nclicks O O\non O O\noutgoing O O\nlinks O O\n. O O\n\nSo O O\nfar O O\nhere O O\nis O O\nwhat O O\nI O O\n'm O O\ndoing O O\n. O O\n\nEach O O\nlink O O\nlooks O O\nlike O O\nfollows O O\n: O O\n\nThe O O\njavascript Name Name\nfunction O O\nclickRecord(id) Name Name\nis O O\ndefined O O\nas O O\nfollows O O\n: O O\n\nThe O O\nproblem O O\nI O O\nhave O O\nis O O\nthis O O\n. O O\n\nIf O O\nI O O\nadd O O\na O O\nreturn O O\nfalse Name Name\n; O O\nto O O\nthe O O\nonclick Name Name\n=\"\" Name Name\ndeclaration O O\n, O O\neverything O O\nworks O O\nfine O O\n, O O\nof O O\ncourse O O\nthe O O\nproblem O O\nthere O O\nis O O\nthat O O\nclick O O\ndoes O O\nnot O O\ntake O O\nthe O O\nuser O O\nto O O\nthe O O\nintended O O\npage O O\n. O O\n\nIf O O\nI O O\ndo O O\nnot O O\nhave O O\nthe O O\nreturn O O\nfalse Name Name\n; O O\nthen O O\nit O O\nseems O O\nlike O O\nthe O O\najax Name Name\ncall O O\nis O O\nnever O O\nexecuted O O\n. O O\n\nI O O\nthought O O\nthe O O\nonclick Name Name\nevent O O\nshould O O\nexecute O O\nfirst O O\nand O O\nthen O O\nonly O O\nthe O O\ndefault O O\naction O O\nshould O O\nexecute O O\n. O O\n\nIs O O\nthis O O\nnot O O\nthe O O\ncase O O\n? O O\n\nThere O O\nis O O\nan O O\neven O O\nstranger O O\nscenario O O\nif O O\nyou O O\nuse O O\nonmousedown Name Name\nevent O O\ninstead O O\n. O O\n\nIt O O\nseems O O\nlike O O\non O O\nFirefox Name Name\n, O O\nif O O\nyou O O\nuse O O\nthe O O\nonmousedown Name Name\nevent O O\n, O O\nonce O O\nyou O O\ngo O O\nto O O\nthe O O\nnew O O\npage O O\n, O O\nyou O O\ncant O O\nsimply O O\nnavigate O O\nback O O\nto O O\nthe O O\nold O O\npage O O\n, O O\nyou O O\nhave O O\nto O O\nrefresh O O\nthe O O\nold O O\npage O O\n. O O\n\nElse O O\nthe O O\ncall O O\nis O O\nnot O O\nexecuted O O\n. O O\n\nThis O O\ndoes O O\nnot O O\nhappen O O\non O O\nIE Name Name\n. O O\n\nOK O O\n. O O\nFound O O\nan O O\nanswer O O\nto O O\none O O\nof O O\nthe O O\nquestions O O\n: O O\n\nThe O O\ninline O O\nmootools Name Name\nrequest O O\ndid O O\nnot O O\nexecute O O\nwhen O O\ndeclared O O\nthrough O O\nthe O O\nonclick() Name Name\n. O O\n\nIt O O\nseems O O\nthis O O\nwas O O\ncaused O O\nby O O\nthe O O\nscript O O\nnot O O\nbeing O O\nsynchronous O O\n. O O\n\nSo O O\nprobably O O\nit O O\nreturns O O\nwithout O O\nactually O O\nfully O O\ncommitting O O\nthe O O\nrequest O O\n, O O\nand O O\nthe O O\nbrowser Name Name\nthen O O\nmoves O O\nto O O\nanother O O\npage O O\nbreaking O O\nthe O O\nexecution O O\n. O O\n\nAdding O O\na O O\nsynchronous O O\ncall O O\nto O O\nthe O O\nscript O O\nfixes O O\nthe O O\nproblem O O\n: O O\n\nThe O O\nsecond O O\nproblem O O\nthat O O\nwas O O\nmentioned O O\non O O\nthe O O\nonmousedownevent Name Name\n, O O\ni.e O O\n. O O\nfirefox Name Name\nnot O O\nexecuting O O\nthe O O\najax Name Name\ncall O O\nif O O\nthe O O\nbrowser Name Name\nnavigates O O\nback O O\nis O O\nstill O O\nunsolved O O\n. O O\n\nHowever O O\nI O O\nam O O\nleaving O O\nthat O O\nto O O\nbe O O\nas O O\nthat O O\nwas O O\nn't O O\nthe O O\nmain O O\nquestion O O\nraised O O\n. O O\n\nDo O O\nn't O O\nuse O O\nonclick Name Name\n- O O\nvery O O\n1995 O O\n. O O\n\nInstead O O\nattach O O\nan O O\nevent O O\nto O O\nthe O O\nelement O O\nand O O\nuse O O\nevent.stop() Name Name\n, O O\nie O O\n: O O\n\nJS Name Name\n: O O\n\nBtw O O\n. O O\n\n<div Name Name\nid=\"1\"> Name Name\nthis O O\nis O O\nnot O O\nvalid O O\nin O O\nHTML Name Name\n, O O\nan O O\nID Name Name\n'd O O\nneeds O O\nto O O\nstart O O\nwith O O\na O O\nletter O O\n. O O\n\nHow O O\ndo O O\nI O O\nstop O O\nMetaTrader Name Name\nTerminal Name Name\n4 Name Name\noffline O O\nchart O O\nfrom O O\nupdating O O\nthe O O\nprice O O\non O O\nits O O\nown O O\n? O O\n\nI O O\nwant O O\nto O O\nupdate O O\nthe O O\nprice O O\non O O\nmy O O\nown O O\nbecause O O\nof O O\nthe O O\ndifference O O\nin O O\ntimezone O O\nwith O O\nmy O O\nbroker O O\n. O O\n\nI O O\nhave O O\nchecked O O\nall O O\nthe O O\nproperties O O\nand O O\nthe O O\nMQL4 Name Name\nforum O O\n. O O\n\nNo O O\nluck O O\n. O O\n\nFor O O\ntrully O O\noffline-charts O O\n, O O\nthere O O\nis O O\na O O\nway O O\n\nWhile O O\nregular O O\ncharts O O\nprocess O O\nan O O\nindependent O O\nevent-flow O O\n, O O\nreceived O O\nfrom O O\nMT4-Server Name Name\n, O O\nthere O O\nis O O\na O O\nchange O O\nfor O O\nretaining O O\nyour O O\nown O O\ncontrol O O\nover O O\nTOHLCV-data Name Name\nrecords O O\n- O O\n- O O\nincluding O O\nthe O O\nTimeZone Name Name\nshifts O O\n, O O\nsynthetic O O\nBar(s) Name Name\nadditions O O\nand O O\nother O O\nadaptations O O\n, O O\nas O O\nneeded O O\n. O O\n\nYou O O\nmay O O\ncreate O O\nyour O O\nown O O\n, O O\ntransformed O O\n, O O\nTOHLCV-history Name Name\nand O O\nimport O O\nthese O O\nrecords O O\nvia O O\nF2 O O\nfacility O O\n, O O\ncalled O O\nin O O\nMT4 Name Name\na O O\nHistory O O\nCentre O O\n. O O\n\nHow O O\nto O O\navoid O O\na O O\nlive-quote-stream O O\nupdates O O\nin O O\nMetaTrader Name Name\nTerminal Name Name\n4 Name Name\n\nThe O O\nsimplest O O\never O O\nway O O\nis O O\nnot O O\nto O O\nlogin O O\nto O O\nany O O\nTrading Name Name\nServer Name Name\n. O O\n\nThis O O\nwill O O\navoid O O\nunwanted O O\nupdates O O\nfrom O O\nreaching O O\nyour O O\nlocal O O\nanFxQuoteStreamPROCESSOR Name Name\n. O O\n\nThere O O\nused O O\nto O O\nbe O O\na O O\nway O O\n, O O\nhow O O\nto O O\ninject O O\nfake O O\nQuoteStreamDATA Name Name\ninto O O\na O O\nlocal O O\nMT4 Name Name\n, O O\nhowever O O\nthis O O\nenters O O\na O O\ngray O O\n, O O\nif O O\nnot O O\nblack O O\nzone O O\n, O O\nas O O\nMetaQuotes Name Name\n, Name Name\nInc Name Name\n. Name Name\n, O O\npostulated O O\nthe O O\nServer/Terminal Name Name\nprotocol O O\nto O O\nbe O O\na O O\nprotected O O\nIP O O\nand O O\nany O O\nattempt O O\nto O O\nreverse-engineer O O\nthey O O\nconsider O O\nan O O\nunlawfull O O\nviolation O O\nof O O\ntheir O O\nrights O O\nand O O\ncould O O\ncause O O\nlegal O O\nconsequences O O\n, O O\nso O O\nbe O O\ncarefull O O\non O O\nstepping O O\nthere O O\n. O O\n\nAnyway O O\n, O O\na O O\ndoable O O\napproach O O\nwith O O\nan O O\nexplicit O O\nrisk O O\nwarning O O\nbeing O O\npresented O O\nabove O O\n. O O\n\nCa O O\nn't O O\nbe O O\ndone O O\n. O O\n\nQuotes O O\nget O O\nfed O O\nin O O\nfrom O O\nmt4 Name Name\nand O O\nget O O\n\" O O\nevented O O\n\" O O\ninto O O\nthe O O\nmetatrader Name Name\n. O O\n\nI O O\nwant O O\nto O O\nchange O O\nthe O O\ncompare O O\ntool O O\nthat O O\nAnkhSVN Name Name\nuses O O\nin O O\nVS2012 Name Name\nbut O O\nthe O O\n\" O O\nSubversion O O\nEnvironment O O\n\" O O\nand O O\n\" O O\nSubversion O O\nUser O O\nTools O O\n\" O O\nmenus O O\nare O O\nn't O O\nshowing O O\nup O O\nlike O O\nthey O O\ndo O O\nin O O\nVS2010 Name Name\n. O O\n\nHere O O\n's O O\nwhat O O\nI O O\nshould O O\nsee O O\n: O O\n\nBut O O\nthis O O\nis O O\nwhat O O\nI O O\n'm O O\nseeing O O\nin O O\nVS2012 Name Name\n: O O\n\nThis O O\nis O O\nwith O O\nAnkhSVN Name Name\nv O O\n2.4.11610.27 Name Name\n( O O\nthe O O\nlatest O O\nstable O O\nversion O O\nas O O\nof O O\nthis O O\nquestion O O\nbeing O O\ncreated O O\n) O O\n. O O\n\nI O O\nam O O\nusing O O\nVS2012 Name Name\nUltimate O O\nbut O O\n, O O\npresumably O O\n, O O\nthis O O\nproblem O O\nwould O O\nalso O O\noccur O O\non O O\nany O O\nVS2012 Name Name\nversion O O\nwhich O O\nsupports O O\nplugins O O\n. O O\n\nI O O\nalso O O\nhave O O\nTortoiseSVN Name Name\ninstalled O O\non O O\nmy O O\ncomputer O O\nbut O O\nI O O\ndoubt O O\nthat O O\nit O O\nrelated O O\nto O O\nthis O O\nproblem O O\n. O O\n\nI O O\n've O O\ntried O O\nreinstalling O O\nthe O O\nAnkhSVN Name Name\nplugin O O\nbut O O\nthis O O\ndoes O O\nnot O O\nchange O O\nit O O\n. O O\n\nOther O O\nthan O O\nthis O O\nproblem O O\nthe O O\nAnkhSVN Name Name\nplugin O O\nseems O O\nto O O\nbe O O\nworking O O\ncorrectly O O\n. O O\n\nI O O\nhave O O\nn't O O\nbeen O O\nable O O\nto O O\nfind O O\nany O O\nmention O O\nof O O\nthis O O\nproblem O O\non O O\nthe O O\nCollabNet Name Name\nweb O O\nsite O O\n. O O\n\nDo O O\nyou O O\nknow O O\nhow O O\nto O O\nget O O\nthese O O\nmenu O O\nitems O O\nto O O\nshow O O\nup O O\n? O O\n\nThis O O\nhappened O O\nto O O\nme O O\nbecause O O\nthe O O\nAnkhSVN Name Name\nwas O O\nnot O O\nmy O O\nactive O O\nsource O O\ncode O O\ncontrol O O\nprovider O O\n. O O\n\nSee O O\n\ntools->options->source O O\ncontrol O O\nand O O\nchoose O O\nAnkhSVN Name Name\n. O O\n\nI O O\n'm O O\nsure O O\nif O O\nthis O O\nwill O O\nwork O O\nfor O O\neveryone O O\nbut O O\nI O O\nfound O O\nthat O O\ndoing O O\na O O\ncomplete O O\nuninstall/reinstall O O\nof O O\nAnkhSVN Name Name\nsolved O O\nthe O O\nproblem O O\nfor O O\nme O O\nand O O\ngo O O\ninto O O\nAdvanced O O\nduring O O\nthe O O\ninstallation O O\nand O O\nensure O O\nthat O O\nVS2012 Name Name\nis O O\nselected O O\n. O O\n\nI O O\nhad O O\ntried O O\na O O\nrepair O O\nbefore O O\nthis O O\nand O O\nit O O\ndid O O\nn't O O\nsolve O O\nthe O O\nproblem O O\n. O O\n\nIt O O\nneeded O O\nto O O\nbe O O\nan O O\nuninstall/reinstall O O\nwith O O\nVS2012 Name Name\nselected O O\nin O O\nAdvanced O O\n. O O\n\nMy O O\nblank.ex Name Name\nis O O\n: O O\n\nand O O\nI O O\ntype O O\nin O O\niex Name Name\n, O O\nthe O O\noutput O O\nis O O\n: O O\n\nSo O O\nI O O\n'm O O\nwondering O O\nwhat O O\ndoes O O\nthe O O\nAny Name Name\nmeans O O\nin O O\nthis O O\ncontext O O\n? O O\n\nand O O\nI O O\ngot O O\nsomething O O\ninteresting O O\n, O O\nweather O O\nor O O\nnot O O\nI O O\nuse O O\nthe O O\nimplemented O O\nlike O O\nthis O O\n\nand O O\nthe O O\noutput O O\nin O O\nthe O O\niex Name Name\nbefore O O\nit O O\n's O O\nthe O O\nsame O O\n. O O\n\nDoes O O\nthat O O\nmeans O O\nthis O O\nimplemented O O\ndoes O O\nnothing O O\n? O O\n\nOr O O\nI O O\nhave O O\nmissed O O\nsomething O O\n? O O\n\nI O O\nknow O O\nwhat O O\n's O O\nmy O O\nconfusing O O\n. O O\n\nI O O\nalso O O\nget O O\nstarted O O\nwith O O\nexample O O\nthis O O\nsite O O\n. O O\n\nFirstly O O\nmy O O\nblank.ex Name Name\nis O O\n\nand O O\nafter O O\nI O O\ncompile O O\nit O O\nelixirc Name Name\nblank.ex Name Name\n, O O\nit O O\nwill O O\ncreate O O\nthese O O\nbeam Name Name\nfiles O O\n: O O\n\nand O O\nsecondly O O\nmy O O\nblank.ex Name Name\nis O O\n\nand O O\nI O O\ncompile O O\nit O O\nagain O O\n, O O\nI O O\ngot O O\nthese O O\nbeam Name Name\nfiles O O\n: O O\n\nIt O O\ndoes O O\nn't O O\ndelete O O\nthe O O\nElixir.Blank.Integer.beam Name Name\nElixir.Blank.List.beam Name Name\nfiles Name Name\n, O O\nand O O\nwhen O O\nI O O\nrun O O\nin O O\niex Name Name\n: O O\n\nSo O O\nthis O O\nis O O\njust O O\nbecause O O\nmy O O\nmissing O O\nof O O\ndeleting O O\nthe O O\nolder O O\nbeam Name Name\nfiles O O\nmanually O O\n. O O\n\nAny Name Name\nclause O O\nshould O O\nbe O O\ncalled O O\nif O O\nan O O\nimplementation O O\nis O O\nnot O O\nprovided O O\n. O O\n\nI O O\ndo O O\nn't O O\nknow O O\nwhy O O\nyou O O\n're O O\ngetting O O\nthese O O\nweird O O\nresults O O\n, O O\nbut O O\nI O O\nsuspect O O\nyou O O\nhave O O\nsome O O\nincorrect O O\ndefinitions O O\nin O O\nthe O O\nshell Name Name\nsession O O\n. O O\n\nI O O\nhave O O\ntried O O\nwith O O\nthe O O\nexample O O\nfrom O O\nthe O O\nsite O O\n: O O\n\nAnd O O\ngot O O\nexpected O O\nresults O O\n: O O\n\nThe O O\nlast O O\nexample O O\nis O O\na O O\nfallback O O\nto O O\nAny Name Name\n, O O\nsince O O\nthe O O\nprotocol O O\nis O O\nnot O O\ndefined O O\nfor O O\na O O\ntuple O O\n. O O\n\nIf O O\nyou O O\nremove O O\nthe O O\nAny Name Name\nimplementation O O\n, O O\nand O O\nrestart O O\nthe O O\nshell Name Name\n, O O\nyou O O\nshould O O\nget O O\nan O O\nerror O O\n: O O\n\nMy O O\nOpenfire Name Name\nserver Name Name\nstopped O O\nautomatically O O\n. O O\n\nit O O\nhappens O O\nevery O O\n2 O O\nor O O\n3 O O\ndays O O\n. O O\n\nI O O\nhave O O\nto O O\nrestart O O\nservice O O\nmanually O O\nwhat O O\ncould O O\nbe O O\nthe O O\nissue O O\n? O O\n\nit O O\nreally O O\na O O\nbig O O\nissue O O\nand O O\nmy O O\napplication O O\nare O O\nlive.Please O O\nsuggest O O\nme O O\nwhat O O\nwas O O\nthe O O\nissue O O\nand O O\nhow O O\nI O O\ncan O O\nbe O O\nfixed O O\nit O O\n. O O\n\nError O O\nlog Name Name\n: O O\n\n2017.08.23 O O\n09:37:35 O O\norg.jivesoftware.openfire.plugin.rest.exceptions.RESTExceptionMapper O O\n- O O\nUserAlreadyExistsException O O\n: O O\nCould O O\nnot O O\ncreate O O\nnew O O\nuser O O\nwith O O\nressource O O\n3 O O\n\natg O O\n. O O\njivesoftware O O\n. O O\nopenfire O O\n. O O\ncontainer O O\n. O O\nPluginManager O O\n. O O\nloadPlugin(PluginManager O O\n. O O\njavaorg O O\n. O O\njivesoftware O O\n. O O\nopenfire O O\n. O O\ncontainer O O\n. O O\nPluginMonitor$MonitorTask$4 O O\n. O O\ncall(PluginMonitor O O\n. O O\njavaorg O O\n. O O\njivesoftware O O\n. O O\nopenfire O O\n. O O\ncontainer O O\n. O O\nPluginMonitor$MonitorTask$4 O O\n. O O\ncall(PluginMonitor O O\n. O O\njavaat O O\njava O O\n. O O\nutil O O\n. O O\nconcurrent O O\n. O O\nFutureTask O O\n. O O\nrun(FutureTask O O\n. O O\njava O O\n: O O\n262 O O\n) O O\n\njava O O\n. O O\nutil O O\n. O O\nconcurrent O O\n. O O\nThreadPoolExecutor O O\n. O O\nrunWorker(ThreadPoolExecutor O O\n. O O\njava O O\n: O O\njava O O\n. O O\nutil O O\n. O O\nconcurrent O O\n. O O\nThreadPoolExecutor$Worker O O\n. O O\nrun(ThreadPoolExecutor O O\n. O O\njava O O\nat O O\njava O O\n. O O\nlang O O\n. O O\nThread O O\n. O O\nrun O O\n\nIn O O\ncontroller O O\nI O O\nhave O O\nwritten O O\ncode O O\nthat O O\nconvert O O\nrank Name Name\ninto O O\nFloat Name Name\n\nbut O O\nhere O O\nI O O\nam O O\ngetting O O\nerror O O\nthat O O\nReferenceError O O\n: O O\ndetails O O\nis O O\nnot O O\ndefined O O\n\nI O O\nhave O O\njson Name Name\nlike O O\nthis O O\n: O O\n\nIn O O\nhtml Name Name\nif O O\nI O O\nclick O O\nheader Name Name\nof O O\ntable Name Name\nthen O O\nit O O\nwill O O\nsort O O\nthe O O\ntable Name Name\nboth O O\nascending O O\nand O O\ndescending O O\norder O O\nbut O O\nI O O\nam O O\nunable O O\nto O O\ndo O O\nthis O O\n. O O\n\nYou O O\ncan O O\nmake O O\na O O\ndynamic O O\nsorting O O\nby O O\nclicking O O\non O O\nthe O O\nheader Name Name\ndivs Name Name\ndoing O O\nlike O O\nthat O O\n: O O\n\nAnd O O\nin O O\nyour O O\ncontroller O O\n\nDoing O O\nso O O\nit O O\nwill O O\nrevert O O\nthe O O\nsort O O\nwhen O O\nre-clicking O O\non O O\nthe O O\nheader Name Name\nof O O\na O O\ncolumn Name Name\n. O O\n\nPS O O\n: O O\ndo O O\nn't O O\nforget O O\nto O O\ndynamically O O\nname O O\nyour O O\nIDs Name Name\nin O O\nthe O O\nng-repeat Name Name\ndirective O O\nto O O\navoid O O\nerrors O O\nand O O\nhave O O\na O O\nvalid O O\nHTML Name Name\ncode O O\n. O O\n\nI O O\nam O O\nusing O O\nRetrofit Name Name\nin O O\nmy O O\nproject O O\nand O O\nI O O\nbuild O O\nit O O\nlike O O\nthis O O\n: O O\n\nAnd O O\nI O O\nhave O O\nmodel O O\nlike O O\nthis O O\n: O O\n\nI O O\nknow O O\nhow O O\n@Expose Name Name\nworks O O\n. O O\n\nThere O O\nis O O\nthe O O\nproblem O O\n, O O\nthat O O\nI O O\nneed O O\nto O O\nserialize Name Name\nteacherServiceId Name Name\nin O O\none O O\nrequest O O\n. O O\n\nIn O O\nother O O\nones O O\nI O O\ndo O O\nn't O O\nneed O O\nit O O\n. O O\n\nHow O O\nto O O\ndo O O\nthis O O\nwithout O O\ncreating O O\nnew O O\nmodel O O\nclass O O\nand O O\nRetrofit Name Name\ninstance O O\n? O O\n\nI O O\n've O O\nmade O O\nan O O\napplication O O\nwith O O\nC# Name Name\n, O O\nin O O\nthis O O\napplication O O\nI O O\nhave O O\nto O O\nread O O\nevery O O\n20 O O\nsecond O O\n840 O O\nregisters Name Name\nof O O\nPLC Name Name\nvia O O\nModbus Name Name\nTCP Name Name\n. O O\n\nI O O\nuse O O\nthis O O\nlibrary O O\nhttp://www.codeproject.com/Tips/16260/Modbus-TCP-class O O\n. O O\n\nWhen O O\nI O O\nuse O O\nthe O O\nmethod O O\n\nMaster.ReadHoldingRegister(ushortid,byteunit,ushortstartAddress,ushortnumInputs) Name Name\n\nIt O O\nreturn O O\na O O\nbytes Name Name\narray Name Name\nof O O\nlenght O O\n144 O O\nand O O\nnot O O\n1680 O O\n, O O\ndo O O\nyou O O\nhave O O\nany O O\nidea O O\n? O O\n\nModbus Name Name\nallows O O\nup O O\nto O O\n125 O O\nholding O O\nregisters Name Name\nto O O\nbe O O\nread O O\nin O O\na O O\nsingle O O\nRead Name Name\nHolding Name Name\nRegisters Name Name\nfunction O O\ncall O O\n. O O\n\nIf O O\nthe O O\nlibrary O O\ndoes O O\nnot O O\nthrow O O\nan O O\nerror O O\non O O\na O O\ncall O O\nto O O\n840 O O\nregisters Name Name\n, O O\nthen O O\nit O O\nis O O\nprobably O O\ntaking O O\nthis O O\nlimit O O\ninto O O\naccount O O\nby O O\nspliting O O\nyour O O\ncall O O\nin O O\nseveral O O\nRead Name Name\nHolding Name Name\nRegisters Name Name\nrequests O O\n. O O\n\nI O O\nwould O O\nstudy O O\nthe O O\nsource O O\ncode O O\nto O O\nbe O O\nsure O O\nthat O O\nyou O O\ncan O O\ndo O O\nthat O O\nreliably O O\n. O O\n\nAs O O\nsuggested O O\nadd O O\na O O\nbit O O\nof O O\ndelay O O\nbetween O O\nthe O O\ncalls O O\n. O O\n\nThis O O\nis O O\npart O O\nof O O\nmy O O\nbuild.xml Name Name\n. O O\n\nI O O\nam O O\ntriggering O O\nmvn Name Name\nbuild O O\nfrom O O\nant O O\nscript O O\nand O O\nthen O O\nrenaming O O\nthe O O\nbuild O O\nand O O\ncopying O O\nit O O\nto O O\nspecific O O\nlocation O O\n. O O\n\nThere O O\nis O O\na O O\nconcept O O\nof O O\nprofile O O\nin O O\nmaven Name Name\n. O O\n\nCan O O\nyou O O\nhelp O O\nme O O\nout O O\nhow O O\nto O O\nprovide O O\nmaven Name Name\nprofile O O\nin O O\nthe O O\nbelow O O\nsnapshot O O\n. O O\n\nAnt O O\nis O O\nactually O O\ncreating O O\nthe O O\ncommand O O\nwith O O\nthe O O\narguments O O\npassed O O\nby O O\nyou O O\n. O O\n\nJust O O\nadd O O\nyour O O\nprofile O O\nentry O O\nas O O\nan O O\nargument O O\n. O O\n\nlike O O\nthis O O\n. O O\n\nprivate Name Name\nvoid Name Name\nXButtonExit_Click Name Name\n( Name Name\nobject Name Name\nsender Name Name\n, Name Name\nEventArgs Name Name\ne Name Name\n) Name Name\n{ Name Name\n//This Name Name\nwill Name Name\nclose Name Name\nthe Name Name\nprogram Name Name\nClose() Name Name\n;} Name Name\n\nThis O O\nis O O\nmy O O\ncurrent O O\ncode O O\nand O O\nit O O\ndoes O O\nwork O O\ngreat O O\n. O O\n\nThe O O\nissue O O\nis O O\n, O O\nI O O\nneed O O\nto O O\nmake O O\nall O O\nof O O\nthe O O\nTextBoxes Name Name\ninto O O\na O O\ncurrency Name Name\nformat O O\n. O O\n\nWhen O O\nI O O\ntry O O\nthe O O\nmath O O\nno O O\nlonger O O\nworks O O\n. O O\n\nAny O O\nideas O O\nwill O O\nhelp O O\n. O O\n\nThe O O\nbiggest O O\nproblem O O\nIm O O\n' O O\nhaving O O\nis O O\nwith O O\nthe O O\nsales Name Name\ntax Name Name\nwhen O O\nconverting O O\nit O O\nto O O\ncurrency Name Name\n. O O\n\nI O O\nam O O\nunable O O\nto O O\nmake O O\nthe O O\nmath O O\nwork O O\nif O O\nsubtotal O O\nis O O\nin O O\nthe O O\ncurrency Name Name\nformat O O\n. O O\n\nI O O\ntried O O\nto O O\nconvert O O\nit O O\nback O O\nto O O\ndecimal Name Name\n, O O\nbut O O\nwhen O O\nI O O\ndo O O\nI O O\nca O O\nn't O O\nrun O O\nthe O O\ncommand O O\nSubtotal Name Name\n* Name Name\n1.0 Name Name\n\nThis O O\nis O O\nwhat O O\nI O O\nchanged O O\n: O O\n\n//Take O O\nvalue O O\nfrom O O\nxTextBoxTotal Name Name\nand O O\nstore O O\nit O O\n\nMy O O\nerror O O\nis O O\nFormatException O O\nwas O O\nunhandled O O\non O O\nthe O O\nConvert.toInt16(xtextboxTotal.text) Name Name\n\nWhen O O\nformating O O\na O O\nnumeric O O\nstring Name Name\nas O O\ncurrency Name Name\n, O O\nyou O O\nhave O O\nto O O\nparse O O\nit O O\nback O O\nbefore O O\nyou O O\ncan O O\nre-convert O O\nit O O\nback O O\nto O O\na O O\nnumeric Name Name\nform O O\n, O O\nthis O O\ndepends O O\non O O\nthe O O\ncurency Name Name\nformatting O O\nrules O O\nyou O O\nused O O\nto O O\ncreate O O\nthe O O\nnumber O O\nin O O\nthe O O\nfirst O O\nplace O O\n. O O\n\nSee O O\n: O O\nhttp://msdn.microsoft.com/en-us/library/3s27fasw.aspx O O\n\nthe O O\nfollowing O O\nquestion O O\nmay O O\nseem O O\nstupid O O\nto O O\nmany O O\n, O O\nsince O O\nit O O\nshould O O\nhave O O\na O O\nsimple O O\nsolution O O\n, O O\nbut O O\nI O O\nam O O\na O O\nbeginner O O\nin O O\nthe O O\nSpring Name Name\nframework O O\n, O O\nand O O\nI O O\nhave O O\nbeen O O\nsearching O O\nand O O\ntesting O O\nmany O O\nmethods O O\nwith O O\nno O O\nsuccess O O\n. O O\n\nSo O O\n, O O\nI O O\nneed O O\nto O O\nimplement O O\nlogging O O\nfor O O\na O O\nWeb O O\nService O O\nbased O O\non O O\nSpring Name Name\n. O O\n\nMaven Name Name\nis O O\nused O O\nfor O O\ndependencies O O\n, O O\nwith O O\nthe O O\nspring-boot-starter-ws Name Name\ndependency O O\n, O O\nand O O\nnot O O\nthe O O\nwhole O O\nstarter-web O O\nstarter O O\n. O O\n\nI O O\ntried O O\nwith O O\nlog4j Name Name\n, O O\nby O O\nadding O O\na O O\ndependency O O\nand O O\nconfig Name Name\nfile O O\n, O O\nand O O\nit O O\ndoes O O\nproduce O O\na O O\nlog Name Name\nfile O O\n, O O\nbut O O\nonly O O\nfor O O\nthe O O\ninitialization O O\nof O O\nthe O O\nlogger Name Name\nitself O O\n, O O\nand O O\nno O O\nlogging O O\nabout O O\nwhen O O\nthe O O\nservice O O\nis O O\nused O O\n, O O\nalthough O O\nlog4j Name Name\nis O O\nin O O\nTRACE O O\nlevel O O\n. O O\n\nI O O\nalso O O\ntried O O\nwith O O\nlogback Name Name\n, O O\nby O O\nadding O O\nthe O O\nlogback.xml Name Name\nfile O O\n, O O\nand O O\nadding O O\nthe O O\nstarter-logging O O\ndependency O O\n, O O\nbut O O\nthat O O\nalso O O\ncreates O O\nempty O O\nlog Name Name\nfiles O O\nwith O O\nnothing O O\non O O\nthem O O\n. O O\n\nIn O O\nthe O O\nSpring Name Name\nboot Name Name\ndocumentation O O\n, O O\nthe O O\napplication.properties Name Name\nfile O O\nis O O\nmentioned O O\n. O O\n\nSo O O\nI O O\ncreated O O\nthis O O\nin O O\nWEB-INF O O\n, O O\nand O O\nput O O\nthe O O\nlogging.level.org.springframework Name Name\nand O O\nthe O O\nlogging.path Name Name\nentries O O\n. O O\n\nBut O O\nstill O O\nno O O\nlog Name Name\nfile O O\ncreated O O\nat O O\nall O O\n. O O\n\nI O O\ndo O O\nn't O O\nwant O O\nto O O\nlog O O\nmy O O\nown O O\nmessages O O\n, O O\nI O O\njust O O\nwant O O\nto O O\nlog O O\nthe O O\nevents O O\ngenerated O O\nby O O\nSpring Name Name\nitself O O\n. O O\n\nAnd O O\nI O O\nalso O O\ndo O O\nn't O O\nhave O O\na O O\nmain Name Name\nmethod O O\n, O O\nonly O O\nan O O\nEndpoint Name Name\nfor O O\nthe O O\nweb O O\nservice O O\n, O O\nif O O\nany O O\nof O O\nthese O O\nmight O O\nbe O O\nrelevant O O\n. O O\n\nSo O O\nwhat O O\nI O O\nneed O O\nis O O\nthe O O\nsimplest O O\npossible O O\nlogging O O\n, O O\npossibly O O\nwithout O O\nadding O O\ntoo O O\nmany O O\ndependencies O O\nor O O\nso O O\n, O O\nand O O\nretrieve O O\nthe O O\nSpring Name Name\nmessages O O\ninto O O\nthe O O\nlog Name Name\n. O O\n\nCan O O\nsomeone O O\ntell O O\nme O O\nwhat O O\nam O O\nI O O\ndoing O O\nwrong O O\n? O O\n\nlogback Name Name\nis O O\nthe O O\ndefault O O\nlogging O O\nimplementation O O\nused O O\nby O O\nSpring Name Name\nBoot Name Name\n( O O\nI O O\nassume O O\nyou O O\nare O O\nusing O O\nspring Name Name\nboot Name Name\nto O O\ncreate O O\na O O\njar Name Name\nand O O\nrun O O\nthat O O\n! O O\n) O O\n. O O\n\nBasicly O O\nyou O O\ndo O O\nn't O O\nneed O O\nto O O\ndo O O\nanything O O\nlogging O O\nis O O\nalready O O\nhandled O O\nby O O\nthe O O\nstarter O O\nyou O O\nincluded O O\n. O O\n\nThere O O\nis O O\na O O\ndefault O O\nlogback.xml Name Name\nshipped O O\nwith O O\nSpring Name Name\nwhich O O\nturns O O\non O O\nlogging O O\n, O O\nfor O O\nthe O O\nspring Name Name\nframework O O\nthis O O\nis O O\non O O\nINFO O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\noverride O O\nthis O O\nsimply O O\ncreate O O\na O O\nlogback.xml Name Name\nfile O O\nwith O O\nthe O O\nsame O O\ncontent O O\nas O O\nthe O O\ndefault O O\none O O\nand O O\nput O O\nthe O O\nlogger Name Name\nfor O O\nspring Name Name\non O O\nDEBUG O O\nor O O\nTRACE O O\n. O O\n\nNot O O\nsure O O\nif O O\nyou O O\nreally O O\nwant O O\nto O O\nput O O\neverything O O\non O O\ntrace O O\nunless O O\nyou O O\nwant O O\na O O\nless O O\nperformant O O\napplication O O\n. O O\n\nAs O O\nto O O\nwhat O O\nyou O O\nare O O\ndoing O O\nwrong O O\nis O O\nthat O O\nyou O O\nare O O\nprobably O O\ndoing O O\nto O O\nmuch O O\nand O O\nthinking O O\nto O O\ncomplex O O\n. O O\n\ndont O O\nknow O O\nif O O\nlogging.level.org.springframework Name Name\nand O O\nthe O O\nlogging.path Name Name\nworks O O\nwith O O\nspring Name Name\nboot Name Name\n. O O\n\nYou O O\ncan O O\ntry O O\nto O O\nmove O O\nyour O O\nlogback.xml Name Name\nfile O O\nand O O\napplication.properties Name Name\ndirectly O O\nto O O\nresources O O\ndir O O\n+ O O\npaste O O\nthis O O\nto O O\nlogback.xml Name Name\n\nthis O O\nshould O O\nlog O O\non O O\nconsole Name Name\nand O O\nyour O O\n/tmp Name Name\n( O O\nif O O\nlinux Name Name\n) O O\ndir O O\n. O O\n\n//Update O O\n: O O\n\nto O O\nmanually O O\nset O O\nwhere O O\nto O O\nwrite O O\nlogs Name Name\nyou O O\ncan O O\ndo O O\nsomething O O\nlike O O\n( O O\ni O O\nbasically O O\nreduced O O\nwhats O O\ninside O O\nof O O\nbase.xml Name Name\nwhich O O\nis O O\nimported O O\n) O O\n: O O\n\nand O O\nthen O O\nchange O O\n\nto O O\n: O O\n\nI O O\nam O O\ntrying O O\nto O O\nrun O O\n\" O O\nline O O\nprogram O O\n\" O O\nin O O\ngraphics O O\nusing O O\nC++ Name Name\nin O O\nCode Name Name\nBlocks Name Name\n. O O\n\nI O O\nhad O O\nalready O O\ndone O O\nsetting O O\nup O O\nthe O O\nenvironment O O\nin O O\ncode Name Name\nblocks Name Name\nfor O O\ngraphics O O\n. O O\n\nStill O O\nI O O\nam O O\ngetting O O\nthe O O\nproblem O O\nin O O\nthis O O\nprogram O O\n. O O\n\nThe O O\nprogram O O\nshows O O\nno O O\nerror O O\n, O O\nbut O O\nwhen O O\nI O O\nrun O O\nit O O\n, O O\nit O O\ndoes O O\nn't O O\nshow O O\nany O O\nline O O\nin O O\noutput O O\n. O O\n\nOutput O O\nmy O O\nprogram O O\nis O O\nshowing O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n: O O\n\non O O\nthis O O\nwebpage O O\nif O O\nyou O O\nscroll O O\ndown O O\nto O O\nthe O O\nfirst O O\ninline O O\nimage Name Name\n, O O\ni O O\nhave O O\na O O\nbefore/after O O\njavascript Name Name\nslider Name Name\nhappening O O\n. O O\n\nhowever O O\n, O O\nthe O O\nnormal O O\ncentering O O\noptions O O\ndo O O\nn't O O\nseem O O\nto O O\nbe O O\nworking O O\nfor O O\nme O O\nand O O\nend O O\nup O O\nbreaking O O\nthe O O\nslider Name Name\n. O O\n\nany O O\nhelp O O\nwould O O\nbe O O\nappreciate O O\n. O O\n\nHTML Name Name\n: O O\n\nCSS Name Name\n: O O\n\nThere O O\nare O O\nmany O O\nproblems O O\nwith O O\nthis O O\n. O O\n\nLike O O\nthe O O\nouter O O\ncontainers O O\nhave O O\na O O\nwidth O O\nless O O\nthan O O\nthe O O\ninner O O\nelements O O\n. O O\n\nBut O O\nfor O O\nnow O O\nyou O O\ncan O O\ntry O O\nthis O O\n. O O\n\nsame O O\nas O O\nyour O O\nimages Name Name\n\nI O O\nam O O\nnew O O\nto O O\nwebpack Name Name\nand O O\ngoing O O\nthrough O O\nwebpack Name Name\ndocumentation O O\nhere O O\nhttps://webpack.js.org/loaders/ O O\n: O O\n\nAnd O O\nI O O\nhappened O O\nto O O\nfind O O\nthis O O\n: O O\n\ntest Name Name\n: Name Name\n/ Name Name\n\\.css$/ Name Name\n, Name Name\n\nJust O O\nwondering O O\nwhat O O\nare O O\nthose O O\nfront/back Name Name\nslashes Name Name\nand O O\n$ Name Name\nsymbol O O\nmeant O O\nfor O O\n? O O\n\nWhat O O\ni O O\nwant O O\nto O O\ndo O O\nis O O\nto O O\ninstall O O\non O O\nmy O O\ncomputer Name Name\nopencv Name Name\nwith O O\na O O\nvery O O\nspecific O O\nversion O O\n( O O\n2.4.10 Name Name\n) O O\n. O O\n\nI O O\ntried O O\nto O O\nswitch O O\nthe O O\nbranch O O\non O O\ngithub Name Name\nbut O O\nit O O\ndoes O O\nnot O O\ngive O O\nme O O\nwhat O O\ni O O\nneed O O\n. O O\n\nI O O\nonly O O\nneed O O\nopencv Name Name\ncore O O\npackage O O\n. O O\n\nDo O O\nyou O O\nknow O O\nwhere O O\ni O O\ncan O O\ndownload O O\nthis O O\nversion O O\non O O\nofficials O O\nrepositories O O\n? O O\n\nThanks O O\n\nBelow O O\nis O O\nthe O O\nmethod O O\nto O O\nclone O O\nOpenCV Name Name\n2.4.10 Name Name\nthrough O O\nTortoiseGit Name Name\n2.4.0.3 Name Name\n. O O\n\nClone O O\nOpenCV Name Name\nHEAD Name Name\nfrom O O\nhttps://github.com/opencv/opencv.git O O\n. O O\n\nIn O O\nthe O O\ncloned O O\ndirectory O O\n, O O\nright O O\nclick O O\nand O O\nselect O O\nTortoiseGit Name Name\nfrom O O\nthe O O\npopup O O\nmenu Name Name\n. O O\n\nFrom O O\nthe O O\nsub O O\nmenu Name Name\n, O O\nselect O O\nSwitch/Checkout Name Name\n. O O\n\nIn O O\nSwitch/Checkout Name Name\nmenu Name Name\n, O O\nselect O O\nOpenCV-2.4.10 Name Name\nfrom O O\nBranch Name Name\nor O O\n2.4.10 Name Name\nfrom O O\nTag Name Name\n. O O\n\nSee O O\nshow Name Name\nlog Name Name\nto O O\nverify O O\nif O O\nthe O O\nright O O\nversion O O\nis O O\ncloned O O\nor O O\nnot O O\n. O O\n\nHope O O\nthis O O\nhelp O O\n. O O\n\nEDIT O O\n: O O\n\nThe O O\nimage Name Name\nbelow O O\nshows O O\nthe O O\nsubfolder O O\nwith O O\nthe O O\nopencv-2.4.10 Name Name\ncore O O\npackage O O\nfrom O O\nthe O O\nGitHub Name Name\nclone O O\n. O O\n\nI O O\nam O O\nstarting O O\na O O\nproject O O\nwhere O O\nI O O\nneed O O\nto O O\nmake O O\nsome O O\nnot O O\nequality O O\nJoin O O\n. O O\n\nNow O O\n, O O\nI O O\n've O O\nread O O\nthat O O\nneither O O\nPig Name Name\nnor O O\nHive Name Name\nsupport O O\ninequality O O\nJoin O O\n. O O\n\nI O O\nhave O O\nalso O O\nread O O\nthat O O\nPig Name Name\ncan O O\nsupport O O\nthat O O\nby O O\nusing O O\nCROSS Name Name\nand O O\nFILTER Name Name\n. O O\n\nCould O O\nI O O\ndo O O\nthat O O\nalso O O\nin O O\nHive Name Name\nusing O O\nWHERE Name Name\nclause O O\n? O O\nAre O O\nthere O O\nany O O\ncases O O\nwhere O O\nit O O\nis O O\nnot O O\npossible O O\n? O O\n\nFinally O O\n, O O\nsupposed O O\nthat O O\nI O O\ncan O O\ndo O O\nthat O O\nboth O O\nin O O\nPig Name Name\nand O O\nin O O\nHive Name Name\n, O O\nwhich O O\nwould O O\nbe O O\nbetter O O\nabout O O\nperformance O O\n? O O\n\nI O O\nremember O O\nHive Name Name\ncan O O\nonly O O\nuse O O\none O O\nreducer O O\nto O O\ndo O O\n\" O O\nCROSS Name Name\n\" O O\n. O O\n\nPig Name Name\nuses O O\na O O\nsmart O O\napproach O O\nto O O\nimplement O O\n\" O O\nCROSS Name Name\n\" O O\nand O O\nrun O O\nit O O\nin O O\nparallel O O\nand O O\nit O O\nusually O O\nhas O O\nbetter O O\nperformance O O\nthan O O\nHive Name Name\n. O O\n\nBTW O O\n, O O\nI O O\nhave O O\nnot O O\nupdated O O\nmy O O\nknowledge O O\nabout O O\nHive Name Name\nand O O\nPig Name Name\nfor O O\none O O\nyear O O\n. O O\n\nI O O\n'm O O\nnot O O\nsure O O\nif O O\nHive Name Name\nimproved O O\n\" O O\nCROSS Name Name\n\" O O\nin O O\nthe O O\npast O O\nyear O O\n. O O\n\nProblem O O\n: O O\n\nI O O\nwant O O\nto O O\nuse O O\na O O\ndifferent O O\nsize O O\nscale O O\nfor O O\nedges Name Name\nand O O\nnodes Name Name\nin O O\na O O\nnetwork Name Name\ncreated O O\nwith O O\nthe O O\nggnetwork Name Name\npackage O O\n. O O\n\nIf O O\nyou O O\nlook O O\nat O O\nthe O O\nimage Name Name\nbelow O O\nyou O O\nmay O O\nthink O O\nI O O\nalready O O\ndid O O\nthat O O\nsince O O\nthey O O\nall O O\nhave O O\ndifferent O O\nsizes O O\nbut O O\nin O O\nfact O O\nedge Name Name\nand O O\nnode Name Name\nsize O O\nare O O\nnot O O\nscaled O O\nindependently O O\nin O O\nthis O O\nplot Name Name\n. O O\n\nThey O O\nare O O\nboth O O\nscaled O O\nby O O\nthe O O\nscale_size_area() Name Name\nfunction O O\ntowards O O\nthe O O\nsame O O\nmaximum O O\n( O O\n30 Name Name\n) O O\n. O O\n\nIf O O\nI O O\nget O O\nlarger O O\nnodes O O\nmy O O\nedges O O\nwill O O\nshrink O O\n. O O\n\nI O O\nguess O O\nmy O O\nproblem O O\nboils O O\ndown O O\nto O O\nscaling O O\nthe O O\nsize O O\nof O O\ndifferent O O\ngeoms O O\nwith O O\ndifferent O O\nfunctions O O\n. O O\n\nSo O O\nfor O O\nexample O O\nhow O O\ncan O O\nI O O\nscale O O\nthe O O\nsize O O\nof O O\nthe O O\nnodes O O\nwith O O\nscale_size_area Name Name\n( Name Name\nmax_size Name Name\n= Name Name\n30 Name O\n) Name Name\nand O O\nthe O O\nsize O O\nof O O\nthe O O\nedges O O\nwith O O\nscale_size_continuous Name Name\n( Name Name\nrange Name Name\n= Name Name\nc(1,6)) Name Name\n? O O\n\nExample O O\ncode O O\n: O O\n\nExample O O\nplot Name Name\n: O O\n\nAlmost O O\na O O\nduplicate O O\nof O O\nthis O O\nquestion O O\n. O O\n\nI O O\n'm O O\nnot O O\na O O\nggplot2 Name Name\nexpert O O\n, O O\nbut O O\nas O O\nfar O O\nI O O\nunderstand O O\n, O O\ndual-scaling O O\n( O O\ne.g O O\n. O O\nhaving O O\ntwo O O\ny-axes O O\nor O O\ntwo O O\ncolor O O\nscales O O\n) O O\ncontradicts O O\nthe O O\ngrammar O O\nof O O\ngraphics O O\n. O O\n\nThe O O\nsolution O O\nto O O\nthe O O\naforementioned O O\nquestion O O\nmight O O\nwork O O\n, O O\nbut O O\nit O O\n's O O\na O O\nhack O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nuse O O\nSVG Name Name\nimages Name Name\nin O O\nCKEDITOR Name Name\n. O O\n\nTo O O\naccomplish O O\nthis O O\nI O O\nbase64_encode Name Name\nthe O O\nimage Name Name\nand O O\nusing O O\nthem O O\nin O O\nthe O O\nimage Name Name\nsource O O\n, O O\nso O O\nthe O O\nimage Name Name\nbecomes O O\n: O O\n\nThis O O\nalmost O O\nworks O O\n. O O\n\nIn O O\nthe O O\npreview Name Name\nI O O\nsee O O\nthe O O\nimage Name Name\n. O O\n\nThe O O\nproblem O O\nis O O\n, O O\nthe O O\nmoment O O\nI O O\nsave O O\nthe O O\nimage O O\nthe O O\n\" Name Name\n+ Name Name\n\" Name Name\n-signs O O\nbecome O O\nreplaces O O\nby O O\nwhitespaces Name Name\n. O O\n\nIt O O\nseems O O\nto O O\nbe O O\nan O O\nCKEditor Name Name\nsetting O O\n. O O\n\nI O O\nvar_dumped Name Name\nthe O O\nvariable O O\nthe O O\nmoment O O\nit O O\ncame O O\nto O O\nthe O O\nserver Name Name\n, O O\nand O O\nthe O O\nspaces Name Name\nwhere O O\nalready O O\nthere O O\n. O O\n\nDoes O O\nanyone O O\nhave O O\na O O\nclue O O\nhow O O\nthis O O\nis O O\nhappening O O\n? O O\n\nI O O\ntesting O O\nan O O\nimplementation O O\nof O O\nthe O O\nsingleton Name Name\npattern O O\nand O O\nI O O\nfeel O O\nlike O O\nI O O\nca O O\nn't O O\nfigure O O\nout O O\nwhy O O\nIntelliJ Name Name\nis O O\nthrowing O O\nme O O\nan O O\nerror O O\n. O O\n\nHere O O\nis O O\nthe O O\ncode O O\n. O O\n\nAnd O O\nhere O O\nis O O\nwhere O O\nhow O O\nI O O\n'm O O\ncalling O O\nit O O\n: O O\n\nThe O O\nerror O O\nI O O\n'm O O\ngetting O O\n: O O\n\nYou O O\nare O O\ncalling O O\nstatic Name Name\nmethod O O\nwhich O O\ncan O O\nbe O O\ncalled O O\nby O O\nthe O O\nClass O O\nso O O\nremove O O\nthe O O\nnew Name Name\nkeyword O O\nand O O\nupdate O O\nthe O O\ncode O O\nas O O\nbelow O O\n: O O\n\nThe O O\nother O O\nanswers O O\nare O O\ncorrect O O\n- O O\nhowever O O\nthis O O\nimplementation O O\nof O O\nthe O O\nSingleton Name Name\npattern O O\nis O O\nhorribly O O\nflawed O O\nand O O\nwill O O\nbreak O O\nin O O\nunexpected O O\nways O O\nin O O\na O O\nmulti-threading O O\nenvironment O O\n. O O\n\nThe O O\neasiest O O\nway O O\nis O O\nnot O O\nto O O\nhave O O\nlazy O O\ninitialization O O\nof O O\nthe O O\nsingleton Name Name\n, O O\nif O O\nyou O O\nreally O O\nmust O O\nhave O O\nlazy O O\ninitialization O O\nthen O O\ndo O O\nit O O\nusing O O\na O O\nstatic Name Name\nholder O O\n: O O\n\nThis O O\nuses O O\nthe O O\nclass O O\nloader O O\nto O O\nhandle O O\nall O O\nthe O O\nlazy O O\ninitialization O O\n, O O\nthread O O\nsafety O O\n, O O\netc O O\nfor O O\nyou O O\n. O O\n\nIt O O\n's O O\ncompletely O O\nthread O O\nsafe O O\nand O O\nfast O O\ndue O O\nto O O\nthe O O\nfact O O\nthat O O\nit O O\ndoes O O\nn't O O\nneed O O\nsynchronization O O\nor O O\nnull Name Name\nchecks O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nimplement O O\nan O O\nalgorithm O O\nfor O O\nprocess O O\nhistograms O O\nimages Name Name\nusing O O\nmultiple O O\nthreads O O\n. O O\n\nOne O O\nof O O\nthe O O\nmost O O\ncommon O O\napproach O O\nis O O\nto O O\nsplit O O\nmultiple O O\nthread O O\ncreate O O\na O O\ncache O O\nbuffer Name Name\non O O\neach O O\none O O\n, O O\ndo O O\nthe O O\nhistogram O O\non O O\nthe O O\ncache O O\nbuffer Name Name\nand O O\nthen O O\nlock O O\na O O\nmutex O O\naddition O O\nthe O O\nvalues O O\non O O\nthe O O\nlocal O O\nto O O\nthe O O\noutput O O\nvector Name Name\n, O O\nand O O\nunlock O O\nthe O O\nbuffer Name Name\n. O O\n\nThis O O\napproach O O\nis O O\nvery O O\nefficient O O\nbut O O\ncan O O\nintroduce O O\na O O\n' O O\njam O O\n' O O\n. O O\n\nI O O\nmean O O\nthe O O\nadditions O O\nof O O\nthe O O\ndatas O O\ncannot O O\nbe O O\nrealized O O\nconcurently O O\n. O O\n\nIn O O\nmost O O\nof O O\nthe O O\ncase O O\nwhen O O\nthe O O\nrange O O\nof O O\nthe O O\nvalues O O\nis O O\nquite O O\nshort O O\n( O O\ne.g O O\n. O O\n0-255 Name Name\n) O O\nit O O\n's O O\nthe O O\ntime O O\nneeded O O\nto O O\nproceed O O\nthe O O\naddition O O\nis O O\nvery O O\nfast O O\nand O O\ncan O O\nbe O O\nneglect O O\n. O O\n\nIf O O\nthe O O\nrange O O\nof O O\ndatas O O\nis O O\nhigher O O\nlike O O\nfor O O\nexample O O\non O O\nthermal O O\nimages Name Name\nthis O O\ntime O O\ncan O O\nbecome O O\nmore O O\nsignificant O O\n. O O\n\nThermal O O\nimages Name Name\nare O O\noften O O\nmatrix Name Name\nof O O\nunsigned Name Name\nshort Name Name\n, O O\neven O O\nif O O\nthe O O\nvalues O O\ndoes O O\nn't O O\nuse O O\nthe O O\nfull O O\nrange O O\n( O O\n0-65535 Name Name\n) O O\nthe O O\nalgorithm O O\nmust O O\nprocess O O\nall O O\nthe O O\nrange O O\n. O O\n\nIn O O\norder O O\nto O O\nspeed O O\nup O O\na O O\nlittle O O\nbit O O\nhte O O\nprocessing O O\nI O O\nthought O O\nto O O\nlaunch O O\na O O\nbackground O O\nthread O O\nto O O\ndo O O\nthe O O\naddition O O\nwhile O O\nthe O O\n\" O O\nforeground O O\n\" O O\nthread O O\nwould O O\nonly O O\nwrite O O\nthe O O\ndatas O O\ninto O O\na O O\npreallocated O O\nbuffer Name Name\n. O O\n\nSo O O\nbasically O O\nthe O O\nwork O O\nof O O\na O O\n\" O O\nforeground O O\n\" O O\nthread O O\nused O O\nto O O\nbe O O\nthat O O\n: O O\n\nget O O\na O O\nbuffer O O\nfrom O O\na O O\ncircular O O\nbuffer O O\n. O O\n\nprocess O O\nthe O O\nhistogram O O\nfor O O\na O O\nspecified O O\nset O O\nof O O\ndata O O\n( O O\ne.g O O\n. O O\nfrom O O\nline O O\nn Name Name\nto O O\nline O O\nm Name Name\n) O O\n. O O\n\n-notify O O\nthe O O\nbackground O O\nbuffer Name Name\nthe O O\noperations O O\nare O O\nfinished O O\n. O O\n\nThe O O\nbackground O O\nthread O O\nused O O\nto O O\ndo O O\n: O O\n\nwait O O\nuntil O O\na O O\nnotification O O\narrive O O\nand O O\ncheck O O\nif O O\nthe O O\nnumber O O\nof O O\navailable O O\nbuffer Name Name\nis O O\nlower O O\nthan O O\nthe O O\nnumber O O\nof O O\nbuffers Name Name\n. O O\n\nIf O O\nthe O O\nconditions O O\nare O O\ntrue Name Name\nthen O O\nlook O O\nfor O O\nthe O O\nbuffer Name Name\nto O O\nbe O O\nprocessed O O\nfrom O O\nthe O O\nbuffers Name Name\navailable O O\n. O O\n\nDo O O\nthe O O\naddition O O\nwith O O\nthe O O\noutput O O\nbuffer O O\n. O O\n\nmake O O\nthe O O\nprocessed O O\nbuffer O O\nreusable O O\n. O O\n\nI O O\nam O O\nnot O O\nvery O O\nfamiliar O O\nwith O O\ncondition O O\nvariables O O\n. O O\n\nSo O O\nin O O\norder O O\nto O O\ncheck O O\ncommunication O O\nbetween O O\nthe O O\nthreads O O\nusing O O\nconditions O O\nvariable O O\nI O O\nwrote O O\nthe O O\nfollowing O O\ntoy Name Name\nsample O O\n: O O\n\ntoy.h Name Name\n\nmain Name Name\n.cpp Name Name\n\nThis O O\ncode O O\nas O O\nis O O\nuse O O\nto O O\nwork O O\nwithout O O\ndifficulties O O\n. O O\n\nThe O O\nunwanted O O\naspect O O\nof O O\nthe O O\ncode O O\nis O O\nwritten O O\non O O\nthe O O\nmethod O O\nbackground O O\n: O O\n\nI O O\nmust O O\ncheck O O\nthe O O\nposition O O\nof O O\nthe O O\nvariable O O\n\" O O\nit Name Name\n\" O O\notherwise O O\nit O O\ncan O O\ntake O O\na O O\nposition O O\noutside O O\nof O O\nthe O O\nbuffer O O\nsize O O\n. O O\n\nThe O O\nway O O\nI O O\nthought O O\nwas O O\n: O O\n\n- O O\nAt O O\nthe O O\nend O O\nof O O\nthe O O\nforeground O O\nthread O O\na O O\nnotification O O\nis O O\nsend O O\nto O O\nthe O O\nbackground O O\nthread O O\n. O O\n\n- O O\nThen O O\nthe O O\nbackground O O\nthread O O\nprocess O O\nthe O O\nbuffers Name Name\n( O O\nor O O\nthe O O\nbuffers Name Name\ndepending O O\nhow O O\nfast O O\nthe O O\nthreads O O\nare O O\nending O O\n) O O\n. O O\n\n- O O\nAt O O\nthe O O\nend O O\nthe O O\nbackground O O\nthread O O\nnotify O O\nto O O\nthe O O\nnext O O\nforeground O O\nthread O O\n( O O\nin O O\nthe O O\nmethod O O\nget_buffer()) Name Name\nit O O\nhas O O\nfinish O O\nto O O\nprocess O O\nthe O O\nbuffer Name Name\nand O O\nhas O O\nmade O O\nit O O\nreusable O O\n. O O\n\nFollowing O O\nthese O O\nstatement O O\nwhen O O\nthe O O\nbackground O O\nthread O O\nis O O\nlooking O O\nfor O O\na O O\nthread O O\nit O O\nuse O O\nto O O\nfind O O\nit O O\nbetween O O\nBuf_start Name Name\nand O O\n_Buf_end Name Name\n. O O\n\nSo O O\nthe O O\nseeking O O\nof O O\nthe O O\nbuffer O O\nin O O\nthe O O\nmethod O O\nbackground O O\nuse O O\nto O O\nbe O O\n: O O\n\nAfter O O\nseveral O O\nhours O O\nof O O\ntests O O\nI O O\nhave O O\nno O O\nidea O O\nwhat O O\n's O O\nwrong O O\n. O O\n\nI O O\nam O O\nalso O O\ninterested O O\nto O O\nknow O O\nif O O\nthis O O\nalgorithm O O\nreally O O\nwork O O\nlike O O\nI O O\nthink O O\nit O O\ndo O O\n? O O\n\nIs O O\nthere O O\nany O O\nmore O O\nefficient O O\n, O O\nless O O\nprocessing O O\nway O O\nto O O\ncommunicate O O\nbetween O O\nthreads O O\n? O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nI O O\nfix O O\nit O O\n! O O\n\n:) O O\n. O O\n\nI O O\nidentify O O\nseveral O O\nissues O O\nfrom O O\nthe O O\nclass O O\n\" O O\ntoy Name Name\n\" O O\n. O O\n\nIn O O\nthe O O\noverload O O\nof O O\nthe O O\noperator O O\n() Name Name\nI O O\ncopy O O\npast O O\nthe O O\ncode O O\nof O O\nthe O O\nmethod O O\nget Name Name\nbuffer() Name Name\n. O O\n\nI O O\ndid O O\na O O\nblock O O\nfunction O O\naround O O\nthe O O\nwait O O\ncondition O O\nin O O\norder O O\nto O O\nnot O O\nto O O\nbe O O\nsequential O O\nover O O\nthread O O\n. O O\n\nThe O O\nunique_lock Name Name\nneeded O O\nby O O\nthe O O\ncondition O O\nvariable O O\nexist O O\nonly O O\nbetween O O\nthe O O\nbrackets O O\nof O O\nthe O O\nblock O O\nfunction O O\n, O O\nlike O O\nthis O O\nwhen O O\nthe O O\nwait O O\ncondition O O\nhas O O\nbeen O O\nevaluated O O\nthe O O\nmutex O O\n_mtx_foreground Name Name\nis O O\nunlock O O\n. O O\n\nThen O O\nin O O\norder O O\nto O O\nprevent O O\nan O O\noutbound O O\nduring O O\nthe O O\nsearch O O\nof O O\nthe O O\navailable O O\nbuffer O O\nthe O O\nwhile O O\nloop O O\nhas O O\nbeen O O\nreplaced O O\nby O O\na O O\nfor Name Name\nloop O O\n. O O\n\nThe O O\nissue O O\nwas O O\non O O\nthe O O\ncondition O O\nto O O\nsatisfy O O\nfor O O\nincrement O O\nthe O O\npointer Name Name\n. O O\n\nOn O O\nthe O O\n\" O O\nbackground O O\n\" O O\nthread O O\nI O O\nadd O O\na O O\nloop O O\n. O O\n\nThe O O\nidea O O\nis O O\nthat O O\n: O O\n\nThe O O\nbackground O O\nthread O O\nmust O O\nrun O O\nuntil O O\nthe O O\nend O O\nof O O\nthe O O\nend O O\nof O O\nthe O O\nalgorithm O O\n. O O\n\nThe O O\nbackground O O\nthread O O\nis O O\nwaiting O O\nfor O O\na O O\nnotification O O\n\nfrom O O\none O O\nof O O\nthe O O\nforeground O O\nthread O O\n. O O\n\nLook O O\nfor O O\na O O\nbuffer Name Name\nto O O\nprocess O O\n, O O\n\nprocess O O\nit O O\n, O O\nremake O O\nit O O\navailable O O\nand O O\nnotify O O\nit O O\nto O O\nthe O O\nforeground O O\nthread O O\n. O O\n\nredo O O\nuntil O O\nall O O\nthe O O\nbuffers Name Name\nare O O\nprocessed O O\nthen O O\ngo O O\nback O O\nto O O\n2) O O\n. O O\n\nHere O O\nsome O O\npart O O\nhave O O\nbeen O O\n\" O O\ndeeply O O\n\" O O\nmodified O O\n. O O\n\nThe O O\nup O O\nto O O\ndate O O\nimplementation O O\nof O O\nthe O O\nclass O O\ntoy Name Name\ncalled O O\ntoy2 Name Name\nis O O\nthis O O\none O O\n: O O\n\nI O O\nhave O O\na O O\nfew O O\nentities O O\n: O O\n\nA O O\nUser Name Name\ncan O O\nhave O O\nJobs Name Name\nassigned O O\nto O O\nthem O O\n. O O\n\nA O O\nJob Name Name\ncan O O\ncontain O O\nTasks Name Name\n. O O\n\nI O O\ncan O O\nget O O\na O O\nlist Name Name\nof O O\nusers Name Name\neasily O O\nenough O O\n. O O\n\nFor O O\nsome O O\nreason O O\n, O O\nthe O O\nJob Name Name\nwas O O\nn't O O\ngiven O O\na O O\nUser Name Name\nrecord O O\n, O O\njust O O\na O O\ncopy O O\nof O O\ntheir O O\nID Name Name\nso O O\nI O O\n'd O O\nneed O O\nto O O\nlink O O\nthem O O\ntogether O O\nlike O O\nthis O O\n( O O\nI O O\ndo O O\nn't O O\nknow O O\nif O O\nthat O O\n's O O\nimportant O O\ninformation O O\n) O O\n. O O\n\nMy O O\nquestion O O\nis O O\n: O O\nis O O\nit O O\npossible O O\nto O O\nget O O\na O O\ncount Name Name\nof O O\ntasks O O\nassigned O O\nto O O\nthe O O\nuser Name Name\n? O O\n\nI O O\n'd O O\nessentially O O\nlike O O\nsomething O O\nlike O O\nthis O O\n, O O\nalthough O O\nthis O O\ndoes O O\nn't O O\nwork O O\n. O O\n\nThat O O\nsort O O\nof O O\nthing O O\nwould O O\nallow O O\nme O O\nto O O\naccess O O\ntasksCount Name Name\nas O O\na O O\nproperty O O\nof O O\nthe O O\nuser Name Name\n: O O\n\nSomething O O\nI O O\ntried O O\nwas O O\nthis O O\n. O O\n\nThat O O\ncan O O\nget O O\nscores Name Name\n, O O\nbut O O\nit O O\nbreaks O O\nthe O O\nresults O O\nand O O\nmeans O O\nI O O\n'd O O\nhave O O\nto O O\npull O O\nsome O O\nclever O O\ntricks O O\nin O O\nthe O O\ntwig Name Name\nfile O O\nto O O\nmake O O\nit O O\nwork O O\n. O O\n\nThe O O\nresults O O\nare O O\npassed O O\nto O O\nthe O O\ntwig Name Name\nfile O O\nas O O\nthe O O\nparameter O O\nusers Name Name\n, O O\nbut O O\nthe O O\ncode O O\nabove O O\ngives O O\nme O O\nan O O\narray Name Name\nof O O\nuser Name Name\n, O O\ncount Name Name\n, O O\nuser Name Name\n, O O\ncount Name Name\n. O O\n. O O\n\nI O O\n'd O O\nprefer O O\nto O O\nkeep O O\nthe O O\ncount Name Name\nas O O\npart O O\nof O O\nthe O O\nuser Name Name\nas O O\nI O O\n'd O O\nprefer O O\nto O O\nkeep O O\nthat O O\nlogic O O\naway O O\nfrom O O\nthe O O\ntwig Name Name\nfile O O\n. O O\n\nI O O\n'd O O\nalso O O\nprefer O O\nnot O O\nto O O\nhydrate O O\nthe O O\nresults O O\nas O O\nan O O\narray Name Name\nbecause O O\nI O O\n've O O\ngot O O\na O O\nfunction O O\non O O\nthe O O\nUser Name Name\nentity O O\nthat O O\ngenerates O O\na O O\nGravatar Name Name\nimage Name Name\n. O O\n\nThis O O\nallows O O\nme O O\nto O O\ngenerate O O\nthe O O\nGravatar Name Name\nimage O O\nin O O\nthe O O\ntwig Name Name\nfile O O\n. O O\n\nIs O O\nwhat O O\nI O O\nwant O O\npossible O O\n? O O\n\ni O O\nam O O\ntrying O O\nto O O\nget O O\nthe O O\ndifference O O\nbetween O O\nclass O O\nRSAPKCS1Signatureformatter Name Name\nand O O\nRSACryptoServiceProvider Name Name\n\nas O O\nwhen O O\ni O O\nsign O O\ndata O O\nusing O O\nRSAPKCS1Signatureformatter Name Name\nit O O\nreturns O O\ndifferent O O\nsignature O O\nvalue O O\nthan O O\nsigning O O\nusing O O\nRSACryptoServiceProvider Name Name\n. O O\n\nRSAPKCS1SignatureFormatter Name Name\njust O O\ncalls O O\nRSACryptoServiceProvider.SignHash Name Name\n. O O\n\nSince O O\nyou O O\ndo O O\nn't O O\nhave O O\na O O\ncode O O\nsample O O\nit O O\n's O O\nnot O O\neasy O O\nto O O\nsay O O\nwhat O O\nthe O O\nproblem O O\nis O O\n. O O\n\nPsychic O O\ndebugging O O\nsays O O\nthat O O\nyou O O\n're O O\ncalling O O\nSignData Name Name\nwhen O O\nusing O O\nthe O O\nRSA Name Name\nobject O O\ndirectly O O\n, O O\nwhich O O\nresults O O\nin O O\nit O O\ngetting O O\nhashed O O\nagain O O\n, O O\nand O O\nthat O O\nwhat O O\nyou O O\nreally O O\nwant O O\nis O O\nSignHash Name Name\n( O O\nfor O O\npre-digested O O\nvalues O O\n) O O\n. O O\n\nTrying O O\nto O O\ndetermine O O\nhow O O\nto O O\ntake O O\nadvantage O O\nof O O\nAngular Name Name\n's O O\ntoolset O O\nfor O O\na O O\nproblem O O\nI O O\n'm O O\ntrying O O\nto O O\nsolve O O\n. O O\n\nMy O O\napplication O O\nwill O O\nbe O O\na O O\nsingle O O\npage O O\napplication O O\n, O O\nbut O O\nit O O\nwill O O\nalso O O\nonly O O\nhave O O\none O O\nroute Name Name\n. O O\n\nThere O O\nis O O\nno O O\nother O O\n\" O O\nstate O O\n\" O O\nas O O\nin O O\nURL O O\nstate O O\nat O O\nall O O\n. O O\n\nAs O O\nfar O O\nas O O\nI O O\ncan O O\ntell O O\n, O O\nyou O O\ncan O O\ntake O O\nadvantage O O\nof O O\ncontrollers O O\nand O O\nviews O O\nin O O\na O O\n1:1 O O\nrelationship O O\nwith O O\na O O\nroute Name Name\n. O O\n\nWhat O O\nI O O\nwould O O\nlike O O\nis O O\nto O O\nhave O O\nController+View O O\ncombinations O O\nfor O O\ncomponents O O\non O O\nthe O O\npage Name Name\n. O O\n\n( O O\nA O O\ncomponent O O\ncould O O\nbe O O\na O O\nwidget Name Name\n, O O\nmodal Name Name\nwindow Name Name\n, O O\netc O O\n. O O\n) O O\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\nleverage O O\nAngular Name Name\nin O O\nthis O O\nsituation O O\n? O O\n\nNote O O\n: O O\nI O O\nhave O O\nseen O O\nhttps://github.com/angular-ui/ui-router O O\n, O O\nbut O O\nthis O O\nstill O O\nrelies O O\nheavily O O\non O O\ncreating O O\n\" O O\nstates O O\n\" O O\nof O O\nthe O O\napplication O O\nand O O\ntying O O\nit O O\nto O O\na O O\nURL O O\n. O O\n\nTo O O\ninclude O O\nHTML Name Name\npartials O O\n, O O\nyou O O\ncan O O\nuse O O\nthe O O\nng-include Name Name\ndirective O O\n. O O\n\nThis O O\ncan O O\nbe O O\ncoupled O O\nwith O O\nthe O O\nng-controller Name Name\ndirective O O\nin O O\na O O\nfew O O\ndifferent O O\nways O O\n: O O\n\nYou O O\ncan O O\nnest O O\nan O O\nelement O O\nwith O O\nng-include Name Name\ninside O O\nan O O\nng-controller Name Name\n: O O\n\nYou O O\ncan O O\ninclude O O\nan O O\nng-controller Name Name\ndirective O O\ninside O O\nan O O\nincluded O O\npartial O O\n: O O\n\nYou O O\ncan O O\nalso O O\ncombine O O\nng-include Name Name\nand O O\nng-controller Name Name\ndirectives O O\non O O\nthe O O\nsame O O\nelement O O\n: O O\n\nPlease O O\nnote O O\nthat O O\nin O O\neach O O\nof O O\nthe O O\nexamples O O\nabove O O\n, O O\nthe O O\nstring Name Name\nliteral O O\nin O O\nthe O O\nng-include Name Name\ndirective O O\nis O O\nwrapped O O\nin O O\nsingle O O\nquotes O O\n- O O\nthis O O\nis O O\nbecause O O\nthe O O\ndirective O O\nexpects O O\nan O O\nexpression O O\n. O O\n\nDepending O O\non O O\nwhat O O\nyou O O\n're O O\ntrying O O\nto O O\naccomplish O O\n, O O\nyou O O\nmay O O\nneed O O\nto O O\nutilize O O\none O O\nor O O\nmore O O\nof O O\nthese O O\ntechniques O O\n. O O\n\nI O O\nalso O O\nexpect O O\nyou O O\n'll O O\nneed O O\nto O O\nwork O O\nheavily O O\nwith O O\ndirectives O O\n( O O\nfor O O\nexample O O\n, O O\nyou O O\ncan O O\nuse O O\nthe O O\nUI Name Name\nBootstrap Name Name\nmodal Name Name\n) O O\n, O O\nwhich O O\ncan O O\nhave O O\ntheir O O\nown O O\ncontroller O O\nas O O\nwell O O\n. O O\n\nI O O\nset O O\nup O O\na O O\nPlunker Name Name\nhere O O\nwith O O\na O O\ncouple O O\nworking O O\nexamples O O\nof O O\nthe O O\nng-include Name Name\noptions O O\nlisted O O\nabove O O\n, O O\nincluding O O\nswapping O O\nthe O O\nincluded O O\ntemplate O O\ndynamically O O\n. O O\n\nI O O\nca O O\nn't O O\nspeak O O\nto O O\nthe O O\nfeasibility O O\nof O O\nactually O O\nbuilding O O\na O O\nproduction O O\napplication O O\nlike O O\nthis O O\n, O O\nbut O O\nit O O\nappears O O\nto O O\nbe O O\npossible O O\n, O O\nat O O\nleast O O\non O O\nfirst O O\nglance O O\n. O O\n\nI O O\n'm O O\nbasically O O\nasking O O\nwhich O O\nis O O\nmore O O\ncostly O O\non O O\nthe O O\nCPU Name Name\n. O O\n\nThe O O\nsituation O O\nis O O\nthat O O\nI O O\nhave O O\nabout O O\n40-400 O O\nparticles Name Name\non O O\nthe O O\nscreen Name Name\nat O O\nany O O\none O O\ngiven O O\ntime O O\n. O O\n\nEach O O\nparticle Name Name\nhas O O\na O O\nList Name Name\nof O O\nParticleAI Name Name\nwhich O O\nhave O O\nan O O\nUpdate() Name Name\nmethod O O\nthat O O\nreturns O O\na O O\nList Name Name\nof O O\nnewly O O\ncreated O O\nParticle Name Name\nobjects O O\n, O O\nif O O\nany O O\n. O O\n\nNow O O\n, O O\nsince O O\nthis O O\ngame O O\nis O O\nbeing O O\nmade O O\nfor O O\nmobile Name Name\n, O O\nefficiency O O\non O O\nthe O O\nprocessor Name Name\nis O O\nkey O O\n. O O\n\nI O O\nwas O O\nwondering O O\nif O O\nit O O\nis O O\nmore O O\ncostly O O\nto O O\ncreate O O\nsomething O O\nbetween O O\n100-2000 Name Name\nLists Name Name\nevery O O\nframe O O\n( O O\nat O O\n60FPS O O\n) O O\nwhich O O\nmay O O\nbe O O\nempty O O\n, O O\nwhich O O\nis O O\nthe O O\nway O O\nI O O\nhave O O\nit O O\nnow O O\n, O O\nor O O\nto O O\nreturn O O\nnulls Name Name\nand O O\ndo O O\na O O\nnull Name Name\ncheck O O\nfor O O\neach O O\nAI Name Name\n. O O\n\nFor O O\nsome O O\nreason O O\n, O O\nin O O\nmy O O\nbrain O O\nit O O\nseems O O\nconstructing O O\na O O\nList Name Name\nobject O O\nwould O O\ntake O O\nmore O O\nprocessor Name Name\ntime O O\nthan O O\nsimply O O\nreturning O O\na O O\nnull O O\nand O O\nthen O O\ndoing O O\na O O\nboolean Name Name\ncheck O O\nfor O O\nit O O\n. O O\n\nAm O O\nI O O\nwrong O O\nin O O\nmy O O\nassumption O O\n? O O\n\nI O O\nhave O O\nlooked O O\nat O O\nother O O\nsimilar O O\nquestions O O\n, O O\nsuch O O\nas O O\nthis O O\none O O\n, O O\nbut O O\nit O O\ndoes O O\nn't O O\nseem O O\nto O O\nanswer O O\nmy O O\nquestion O O\n. O O\n\nI O O\nget O O\nthat O O\nbest O O\npractice O O\nis O O\nto O O\nreturn O O\nempty O O\n, O O\nbut O O\nI O O\nam O O\nnot O O\nmaking O O\nthis O O\ngame O O\nfor O O\nanyone O O\nelse O O\nto O O\nedit O O\n, O O\nand O O\nso O O\nI O O\nknow O O\nthat O O\na O O\nnull Name Name\nwill O O\nnever O O\nbe O O\nreceived O O\nunexpectedly O O\n. O O\n\nI O O\nneed O O\nto O O\nknow O O\nin O O\npure O O\nprocessing O O\nterms O O\nwhich O O\nis O O\nbetter O O\n, O O\nsimply O O\nbecause O O\nof O O\nthe O O\nsheer O O\nnumber O O\nof O O\nparticle Name Name\nobjects O O\nbeing O O\ncreated O O\nat O O\nonce O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n! O O\n\nEDIT O O\n: O O\n\nJust O O\nrealized O O\nsomething O O\nwhich O O\nmay O O\nwork O O\nbetter O O\n. O O\n\nWould O O\nit O O\nbe O O\na O O\nbetter O O\nidea O O\nto O O\n( O O\ninstead O O\nof O O\ncreating O O\na O O\nnew O O\nlist Name Name\nand O O\nreturning O O\nit O O\nfor O O\nevery O O\nparticleAI Name Name\nevery O O\nframe O O\n) O O\ncreate O O\neach O O\nparticleAI Name Name\n's O O\nreturn O O\nlist Name Name\nat O O\nconstruction O O\nand O O\nthen O O\nclear O O\nit O O\nat O O\nthe O O\nbeginning O O\nof O O\neach O O\nUpdate() Name Name\nphase O O\n? O O\n\nThat O O\nalmost O O\nseems O O\nlike O O\nit O O\nwould O O\nbe O O\nthe O O\nbest O O\noption O O\n. O O\n\nAs O O\nobjects O O\nare O O\nshared O O\n, O O\nreusing O O\nthe O O\nsame O O\nlist Name Name\nobject O O\nwill O O\nnot O O\ndo O O\n. O O\n\nWould O O\ninvolve O O\ncopying O O\n. O O\n\nNull Name Name\nor O O\nempty O O\nlist Name Name\n? O O\n\nAssuming O O\nyou O O\nwant O O\nto O O\nread O O\nfrom O O\nand O O\nwrite O O\nto O O\nthe O O\nlist Name Name\n, O O\nnull Name Name\nseems O O\nugly O O\n. O O\n\nIn O O\njava Name Name\na O O\nLinkedList Name Name\nwould O O\nbe O O\nlighter O O\nthat O O\nan O O\nArrayList Name Name\n, O O\nso O O\npick O O\na O O\nlinked Name Name\nlist Name Name\n. O O\n\nNull Name Name\nwould O O\nbe O O\nfaster O O\n. O O\n\nA O O\nread-only O O\n, O O\nto-be-replaced O O\nCollections.emptyList() Name Name\nwould O O\nbe O O\na O O\nbit O O\nsafer O O\n. O O\n\nInstead O O\nof O O\nthe O O\ndata O O\nstructure O O\nof O O\none O O\naspect O O\nit O O\nmight O O\nbe O O\nworthwile O O\nconsidering O O\nthe O O\nalgorithmic O O\napproach O O\n. O O\n\nSpending O O\ntime O O\non O O\nthe O O\nright O O\nrelevant O O\nthings O O\n. O O\n\nQueues Name Name\n. O O\n\nPriorities O O\n. O O\n\nI O O\ndont O O\nknow O O\nhow O O\nto O O\nexpress O O\nmyself O O\nvery O O\nwell O O\nabout O O\nthis O O\ndoubt O O\n, O O\nbut O O\ni O O\nwill O O\ntry O O\nbest O O\n. O O\n\nMy O O\napp O O\nwill O O\nhave O O\nvarious O O\nquests O O\n( O O\nhosted O O\non O O\na O O\ndatabase O O\n) O O\nthat O O\nthe O O\nuser O O\nmust O O\ntry O O\nto O O\nmake O O\nthem O O\n. O O\n\nI O O\nwant O O\nthe O O\napp O O\nto O O\nupdate O O\nthe O O\nquest O O\nwith O O\na O O\nrandom O O\nquest O O\nfrom O O\nthe O O\ndatabase O O\nand O O\ndisplay O O\nit O O\non O O\nthe O O\napp O O\nduring O O\n24 O O\nhours O O\n, O O\nand O O\nthe O O\nafter O O\nthat O O\n24 O O\nhours O O\ndisplay O O\nanother O O\none O O\n, O O\netc O O\n, O O\ni O O\nthink O O\nyou O O\nunderstood O O\nit O O\nnow O O\n. O O\n\nHow O O\ncan O O\ni O O\nachieve O O\nthat O O\n? O O\n\nI O O\nsearched O O\nthe O O\nweb O O\nand O O\ni O O\ncant O O\nfind O O\nanything O O\nthat O O\nsuits O O\nmy O O\nneeds O O\n. O O\n\nYou O O\nstore O O\na O O\ntimestamp Name Name\non O O\nthe O O\nusers O O\nphone O O\n. O O\n\nWhen O O\nhe O O\nlogs O O\nin O O\nyou O O\ncompare O O\nthe O O\ntimestamp Name Name\nwith O O\nthe O O\ncurrent O O\ntime O O\n. O O\n\nIf O O\nthere O O\nare O O\n24 O O\nhours O O\npassed O O\nyou O O\nupdate O O\nthe O O\nquest O O\nand O O\nthe O O\nstored O O\ntimestamp Name Name\n. O O\n\nuse O O\nthis O O\n\nI O O\nwould O O\nlike O O\na O O\nnotepad++ Name Name\nregex O O\nto O O\nreplace O O\n\ninto O O\n\nThere O O\nmay O O\nalso O O\nbe O O\nthree O O\nor O O\nfor O O\nBrackets O O\nin O O\neach O O\nline O O\nthat O O\nthis O O\nwould O O\nneed O O\nto O O\nwork O O\non O O\n. O O\n\nShould O O\nbecome O O\n\nWhat O O\ni O O\nhave O O\nso O O\nfar O O\nis O O\n\nDo O O\na O O\nregular O O\nexpression O O\nfind/replace O O\nlike O O\nthis O O\n: O O\n\nOpen O O\nReplace O O\nDialog Name Name\n\nFind O O\nWhat O O\n: O O\n[ Name Name\n^ Name Name\n\\[\\]]*\\[([^\\]]+)\\] Name Name\n\nReplace O O\nWith O O\n: O O\n\\1\\n Name Name\n\nCheck O O\nregular O O\nexpression O O\n\nClick O O\nReplace O O\nor O O\nReplace O O\nAll O O\n\nExplanation O O\n\none O O\nproblem O O\nis O O\nthat O O\nbrackets O O\nare O O\nRE O O\nmetacharacters O O\n, O O\nthat O O\nmeans O O\nwe O O\nhave O O\nto O O\nescape O O\neach O O\nbracket O O\n, O O\nwhen O O\nwe O O\nneed O O\na O O\nliteral O O\nbracket O O\n, O O\ni.e O O\n. O O\n\na O O\nliteral O O\nbracket O O\nbecomes O O\n\\ Name Name\n[ Name Name\nor O O\n\\ Name Name\n] Name Name\nin O O\nthe O O\nRE O O\n\nhere O O\nin O O\nthe O O\nRE O O\nwe O O\nlook O O\nfor O O\nan O O\noptional O O\npart O O\nthat O O\nmay O O\nconsist O O\nof O O\neverything O O\nnot O O\nbrackets O O\n( O O\n[ Name Name\n\\ Name Name\n[ Name Name\n\\ Name Name\n] Name Name\n] Name Name\n*) Name Name\n\nfollowed O O\nby O O\nan O O\nopening O O\nbracket O O\n, O O\nfollowed O O\nby O O\nsomthing O O\nnot O O\na O O\nclosing O O\nbracket O O\n(( Name Name\n[ Name Name\n^\\ Name Name\n] Name Name\n] Name Name\n+)) Name Name\nwhich O O\nis O O\nalso O O\ncaptured O O\ninto O O\n\\1 Name Name\ndue O O\nto O O\nthe O O\nparentheses O O\n, O O\nfor O O\nreuse O O\nin O O\nthe O O\nsubstitution O O\n\nwhatever O O\nis O O\nmatched O O\nabove O O\nis O O\ncompletely O O\nreplaced O O\nby O O\nwhatever O O\nwas O O\ncaptured O O\ninto O O\n\\1 Name Name\nfollowed O O\nby O O\na O O\nnewline O O\n( O O\n\\n Name Name\n) O O\n, O O\nwhen O O\nyou O O\nneed O O\nwindows-style O O\nlineendings O O\n, O O\nyou O O\nmight O O\nwant O O\nto O O\nuse O O\n\\r\\n Name Name\ninstead O O\n\nI O O\nrecently O O\nfound O O\nout O O\nthat O O\nthere O O\nare O O\ntwo O O\ntypes O O\nof O O\nLayoutManager Name Name\nyou O O\ncan O O\nuse O O\nin O O\nworking O O\nwith O O\nRecyclerView Name Name\n, O O\none O O\nfrom O O\nnative O O\nAndroid Name Name\nand O O\none O O\nfrom O O\nLeanback Name Name\nlibrary O O\n. O O\n\nI O O\nneed O O\nto O O\nuse O O\nthe O O\none O O\nfrom O O\nleanback Name Name\nin O O\norder O O\nto O O\nbe O O\nable O O\nto O O\nmaintain O O\nthe O O\nposition O O\nof O O\nthe O O\nfocused O O\nelement O O\nfixed O O\nin O O\nthe O O\nmiddle O O\nof O O\nthe O O\nscreen Name Name\n. O O\n\nThe O O\nproblem O O\nis O O\nI O O\nneed O O\nto O O\nset O O\nthis O O\nlayout O O\nto O O\nstack O O\nfrom O O\nend O O\nso O O\nthe O O\ndirection O O\nwould O O\nbe O O\nto O O\nscroll O O\nto O O\nleft O O\n, O O\nnot O O\nthe O O\ndefault O O\nright O O\nscrolling O O\n. O O\n\nIn O O\nthe O O\nnative O O\nlibrary O O\n, O O\nthere O O\nare O O\ntwo O O\nmethods O O\nI O O\ncan O O\nuse O O\nto O O\nachieve O O\nthis O O\n, O O\nsetStackFromEnd(true) Name Name\nor O O\nsetReverseLayout(true) Name Name\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nI O O\ncan O O\nachieve O O\nthis O O\nfrom O O\nLeanback Name Name\nLayoutManager Name Name\n? O O\n\nThanks O O\nYou O O\n\nI O O\nwas O O\nreading O O\nan O O\narticle O O\nlinked O O\nfrom O O\na O O\nslashdot Name Name\nstory O O\n, O O\nand O O\ncame O O\nacross O O\nthis O O\nlittle O O\ntidbit O O\n: O O\n\nI O O\n've O O\nscoured O O\nthe O O\ninternet O O\n( O O\nokay O O\n, O O\nI O O\nspent O O\nat O O\nleast O O\n15 O O\nminutes O O\ngoogling O O\nvariations O O\non O O\n\" O O\njava Name Name\nquestion O O\nmark O O\n\" O O\n) O O\nand O O\ngot O O\nnothing O O\n. O O\n\nSo O O\n, O O\nmy O O\nquestion O O\n: O O\nis O O\nthere O O\nany O O\nofficial O O\ndocumentation O O\non O O\nthis O O\n? O O\n\nI O O\nfound O O\nthat O O\nC# Name Name\nhas O O\na O O\nsimilar O O\noperator O O\n( O O\nthe O O\n\" O O\n? Name Name\n? Name Name\n\" O O\noperator O O\n) O O\n, O O\nbut O O\nI O O\n'd O O\nlike O O\nto O O\nget O O\nthe O O\ndocumentation O O\nfor O O\nthe O O\nlanguage O O\nI O O\n'm O O\nworking O O\nin O O\n. O O\n\nOr O O\n, O O\nis O O\nthis O O\njust O O\na O O\nuse O O\nof O O\nthe O O\nternary O O\noperator O O\nthat O O\nI O O\n've O O\nnever O O\nseen O O\nbefore O O\n. O O\n\nThanks O O\n! O O\n\nEDIT O O\n: O O\nLink O O\nto O O\nthe O O\narticle O O\n: O O\nhttp://infoworld.com/d/developer-world/12-programming-mistakes-avoid-292 O O\n\nThe O O\noriginal O O\nidea O O\ncomes O O\nfrom O O\ngroovy Name Name\n. O O\n\nIt O O\nwas O O\nproposed O O\nfor O O\nJava Name Name\n7 Name Name\nas O O\npart O O\nof O O\nProject O O\nCoin O O\n: O O\nhttps://wiki.openjdk.java.net/display/Coin/2009+Proposals+TOC O O\n( O O\nElvis O O\nand O O\nOther O O\nNull-Safe O O\nOperators O O\n) O O\n, O O\nbut O O\nhas O O\nn't O O\nbeen O O\naccepted O O\nyet O O\n. O O\n\nThe O O\nrelated O O\nElvis O O\noperator O O\n? Name Name\n: Name Name\nwas O O\nproposed O O\nto O O\nmake O O\nx Name Name\n? Name Name\n: Name Name\ny Name Name\nshorthand O O\nfor O O\nx Name Name\n!= Name Name\nnull Name Name\n? Name Name\nx Name Name\n: Name Name\ny Name Name\n, O O\nespecially O O\nuseful O O\nwhen O O\nx Name Name\nis O O\na O O\ncomplex O O\nexpression O O\n. O O\n\nI O O\n'm O O\nnot O O\nsure O O\nthis O O\nwould O O\neven O O\nwork O O\n; O O\nif O O\n, O O\nsay O O\n, O O\nthe O O\nperson O O\nreference O O\nwas O O\nnull Name Name\n, O O\nwhat O O\nwould O O\nthe O O\nruntime O O\nreplace O O\nit O O\nwith O O\n? O O\n\nA O O\nnew O O\nPerson Name Name\n? O O\n\nThat O O\nwould O O\nrequire O O\nthe O O\nPerson Name Name\nto O O\nhave O O\nsome O O\ndefault O O\ninitialization O O\nthat O O\nyou O O\n'd O O\nexpect O O\nin O O\nthis O O\ncase O O\n. O O\n\nYou O O\nmay O O\navoid O O\nnull O O\nreference O O\nexceptions O O\nbut O O\nyou O O\n'd O O\nstill O O\nget O O\nunpredictable O O\nbehavior O O\nif O O\nyou O O\ndid O O\nn't O O\nplan O O\nfor O O\nthese O O\ntypes O O\nof O O\nsetups O O\n. O O\n\nThe O O\n? Name Name\n? Name Name\n\noperator O O\nin O O\nC# Name Name\nmight O O\nbe O O\nbest O O\ntermed O O\nthe O O\n\" O O\ncoalesce O O\n\" O O\noperator O O\n; O O\nyou O O\ncan O O\nchain O O\nseveral O O\nexpressions O O\nand O O\nit O O\nwill O O\nreturn O O\nthe O O\nfirst O O\nthat O O\nis O O\nn't O O\nnull Name Name\n. O O\n\nUnfortunately O O\n, O O\nJava Name Name\ndoes O O\nn't O O\nhave O O\nit O O\n. O O\n\nI O O\nthink O O\nthe O O\nbest O O\nyou O O\ncould O O\ndo O O\nis O O\nuse O O\nthe O O\nternary O O\noperator O O\nto O O\nperform O O\nnull Name Name\nchecks O O\nand O O\nevaluate O O\nan O O\nalternative O O\nto O O\nthe O O\nentire O O\nexpression O O\nif O O\nany O O\nmember O O\nin O O\nthe O O\nchain O O\nis O O\nnull Name Name\n: O O\n\nYou O O\ncould O O\nalso O O\nuse O O\ntry-catch Name Name\n: O O\n\nplease O O\nhelp O O\nsolve O O\nthe O O\nproblem O O\n. O O\n\ni O O\nmade O O\non O O\nlocalhost O O\nrails4-application O O\nand O O\npush O O\nhim O O\non O O\ngithub Name Name\n. O O\n\nafter O O\ni O O\ncreate O O\naccount O O\non O O\nheroku Name Name\nand O O\nconnected O O\nto O O\nmy O O\ngithub-repository O O\nand O O\nstarting O O\nmanual O O\ndeploy O O\n. O O\n\nin O O\nresult O O\ni O O\nget O O\nfollow O O\nerror O O\nmessages O O\n: O O\n\nI O O\ntried O O\nall O O\nthe O O\nsolutions O O\nto O O\nthis O O\ntopic O O\n: O O\nheroku Name Name\npush O O\nrejected O O\n, O O\nfailed O O\nto O O\ncompile O O\nRuby/rails Name Name\napp O O\n\nbut O O\nthey O O\ndid O O\nnot O O\nhelp O O\nme O O\n\nYou O O\nca O O\nn't O O\ninstall O O\nthe O O\ndebugger Name Name\ngem Name Name\non O O\nHeroku Name Name\nand O O\nyou O O\nprobably O O\ndo O O\nn't O O\nwant O O\nit O O\nthere O O\n. O O\n\nPut O O\nit O O\ninto O O\na O O\ndevelopment Name Name\ngroup O O\nin O O\nyour O O\ngem Name Name\nfile O O\nso O O\nthat O O\nit O O\nis O O\navailable O O\nin O O\nyour O O\nlocal O O\ndevelopment O O\nenvironment O O\nbut O O\nnot O O\ndeployed O O\nin O O\nproduction O O\n, O O\ne.g O O\n. O O\n\nSee O O\nhttps://devcenter.heroku.com/articles/ruby-support#debugger-gems-fail-to-install O O\nfor O O\nfurther O O\nexplanation O O\n. O O\n\nI O O\nhave O O\na O O\nproject O O\nworking O O\nwith O O\nCodeIgniter Name Name\nand O O\nsqlserver Name Name\n2008 Name Name\nI O O\nupdated O O\nmy O O\npc Name Name\nto O O\nwindows Name Name\n10 Name Name\nthen O O\nstopped O O\nworking O O\n, O O\nthe O O\nsqlserver Name Name\ndriver Name Name\nfor O O\nphp Name Name\nis O O\nconfigured O O\nand O O\nmy O O\nphp Name Name\nini Name Name\nshows O O\nit O O\n, O O\nalso O O\nthe O O\ncode O O\nconnects O O\nto O O\nsql Name Name\nserver Name Name\nbut O O\nnow O O\nwhen O O\nim O O\ntriying O O\nto O O\ndo O O\na O O\nquery O O\nit O O\ngivme O O\nfalse O O\n\nso O O\nthis O O\ncode O O\n: O O\n\nAlways O O\nits O O\nlike O O\nsqlserver Name Name\nnot O O\nworking O O\nanymore O O\nbut O O\ncannot O O\nfix O O\nit O O\n. O O\n\nPhp Name Name\ninfo O O\nshows O O\n\nEDIT O O\n: O O\n\nits O O\nmy O O\nmistake O O\ncannot O O\nconect O O\n\nthe O O\ndatabase O O\nconfig Name Name\nits O O\nokay O O\n:S O O\n\nThe O O\nerror O O\nwasnt O O\non O O\nthe O O\nconfig Name Name\n, O O\nwas O O\non O O\nthe O O\npassword O O\nthat O O\nwas O O\nexpired O O\nbut O O\nthe O O\ncode Name Name\nigniter Name Name\nwas O O\nn't O O\nshowing O O\nthe O O\nerror O O\nbecouse O O\ni O O\nhave O O\nto O O\nactive O O\nthis O O\nconfig Name Name\n: O O\n\ndatabase.php Name Name\n\nSolved O O\n;) O O\n\nI O O\nam O O\ntrying O O\nto O O\nlearn O O\ngit Name Name\nusing O O\na O O\ntutorial O O\n( O O\nhttps://www.atlassian.com/git/tutorials/setting-up-a-repository/git-clone O O\n) O O\n. O O\n\ngit Name Name\nconfig Name Name\n--global Name Name\nalias Name Name\n. O O\n\nFrom O O\nthe O O\ntutorial O O\ni O O\ncame O O\nto O O\nknow O O\nthat O O\nto O O\ncreate O O\na O O\nshortcut O O\nfor O O\na O O\nGit Name Name\ncommand O O\n, O O\nthe O O\nabove O O\nsyntax O O\ncan O O\nbe O O\nused O O\n. O O\n\nCan O O\nanyone O O\nprovide O O\nme O O\na O O\nworking O O\nexample O O\nfor O O\ncreating O O\na O O\nshortcut O O\nfor O O\na O O\ngit Name Name\ncommand O O\nwithout O O\nusing O O\nthe O O\nequal O O\nsynatax O O\nas O O\nthe O O\nabove O O\nsyntax O O\ndidnt O O\nwork O O\nfor O O\nme O O\n. O O\n\nThe O O\naliases O O\nyou O O\nsee O O\nin O O\nthe O O\narticle O O\nare O O\n: O O\n\nThey O O\ncan O O\nbe O O\nset O O\nwith O O\n: O O\n\nIt O O\nworks O O\nfine O O\nfor O O\nme O O\n. O O\n\nI O O\nthink O O\npart O O\nof O O\nthe O O\nproblem O O\nis O O\nthat O O\nyour O O\nreading O O\nit O O\ntoo O O\nliterally O O\n. O O\n\nThat O O\n's O O\nnot O O\nyour O O\nfault O O\n; O O\nthe O O\ninstructions O O\ndo O O\nn't O O\nexplain O O\nits O O\nown O O\nsyntax O O\nvery O O\nwell O O\n. O O\n\nHere O O\n's O O\nwhat O O\nI O O\ndid O O\n: O O\n\nNotice O O\nhow O O\nI O O\ndid O O\nn't O O\njust O O\nwrite O O\n\" O O\nalias.<alias> Name Name\n\" O O\nor O O\nthe O O\nlike O O\n. O O\n\nThe O O\nwhole O O\npurpose O O\nof O O\nthe O O\nconfig Name Name\ncommand O O\nis O O\nto O O\nactually O O\nconfigure O O\nhow O O\ngit Name Name\nworks O O\n. O O\n\nThe O O\npoint O O\nof O O\nalias O O\nis O O\nto O O\ngive O O\nall O O\nyour O O\ncommands O O\nlike O O\nconfig Name Name\n, O O\nhelp Name Name\n, O O\ninit Name Name\n, O O\netc O O\n. O O\nnew O O\nways O O\nto O O\nbe O O\ncalled O O\nupon O O\n. O O\n\nIn O O\nthe O O\nabove O O\nexample O O\n, O O\nI O O\ntyped O O\nright O O\nnext O O\nto O O\n\" O O\nalias Name Name\n. Name Name\n\" O O\nwhat O O\nI O O\nwanted O O\nthe O O\nNEW O O\ncommand O O\nto O O\nbe O O\n, O O\nand O O\na O O\nspace O O\naway O O\non O O\nthe O O\nright O O\nwhere O O\nit O O\nsays O O\n\" O O\nhelp Name Name\n\" O O\nI O O\nrefer O O\nto O O\nthe O O\ncommand O O\nI O O\nwant O O\nto O O\nmake O O\nan O O\nalias O O\nfor O O\n. O O\n\nI O O\n'm O O\nbasically O O\nchanging O O\nthe O O\n\" O O\nhelp Name Name\n\" O O\ncommand O O\nso O O\nI O O\ncan O O\nuse O O\nit O O\njust O O\nby O O\ntyping O O\n\" O O\nhp Name Name\n\" O O\n. O O\n\nYou O O\ncan O O\nliterally O O\nmake O O\nit O O\nanything O O\nyou O O\nwant O O\n. O O\n\nI O O\ncould O O\nuse O O\ncode O O\nlike O O\nthis O O\n: O O\n\nand O O\nI O O\ncan O O\nwrite O O\nIMABigBaboon O O\ninstead O O\nof O O\ninit Name Name\nand O O\nit O O\nwill O O\nwork O O\n. O O\n\nTry O O\nit O O\n! O O\n\nJust O O\nbe O O\ncareful O O\nyou O O\ndo O O\nn't O O\nname O O\ntwo O O\ncommands O O\nthe O O\nsame O O\nthing O O\n. O O\n\nOtherwise O O\nyou O O\nwind O O\nup O O\nchanging O O\nthe O O\nname O O\nof O O\nthe O O\nprevious O O\nalias O O\n. O O\n\nRemember O O\n; O O\nyou O O\ncan O O\nonly O O\nhave O O\none O O\nalias O O\nfor O O\none O O\ncommand O O\n! O O\n\nMy O O\nquestion O O\nis O O\n: O O\nWhich O O\nis O O\nbetter O O\nbetween O O\nusing O O\nNotificationCenter Name Name\nand O O\nusing O O\nClosures O O\nto O O\ncommunicate O O\nbetween O O\ntwo O O\ninstances O O\n? O O\n\nIf O O\nthey O O\nare O O\nsimilar O O\n, O O\nwhat O O\nshould O O\nI O O\nuse O O\n? O O\n\nHopefully O O\n, O O\nthis O O\nexample O O\nhelps O O\nyou O O\nto O O\nunderstand O O\nbetter O O\n: O O\n- O O\n\nIf O O\nwe O O\ntake O O\nURLSession Name Name\nclass O O\nas O O\nan O O\nexample O O\n. O O\n\nWhy O O\ndo O O\nmost O O\nof O O\nits O O\nmethods O O\nhave O O\na O O\nclosure O O\n? O O\n\nWhy O O\ndo O O\nnot O O\nthey O O\nsend O O\na O O\nnotification O O\nwith O O\nData Name Name\n, O O\nResponse Name Name\n, O O\nand O O\nError Name Name\ninside O O\nit O O\n? O O\n\nI O O\nknow O O\nthe O O\ndifference O O\nbetween O O\nthem O O\n, O O\nI O O\njust O O\ndo O O\nn't O O\nknow O O\nin O O\nwhat O O\nsituations O O\nshould O O\nI O O\nuse O O\neach O O\none O O\n. O O\n\nIn O O\nsome O O\ncases O O\nthe O O\npatterns O O\nare O O\ninterchangeable O O\n, O O\nhowever O O\n: O O\n\nUsing O O\na O O\nclosure O O\nis O O\nthe O O\nsimplest O O\nsolution O O\nfor O O\nsimple O O\ncases O O\n\nUsing O O\na O O\ndelegate O O\nis O O\ncommon O O\nwhen O O\nthere O O\nis O O\ncomplex O O\ncommunication O O\nbetween O O\ntwo O O\nobjects O O\n. O O\n\nOne O O\ndelegate O O\ncan O O\nbe O O\nbetter O O\nthan O O\nmany O O\nclosures O O\n. O O\n\nYou O O\nhave O O\nto O O\nuse O O\nnotifications O O\nwhen O O\nyou O O\nhave O O\nmultiple O O\nobservers O O\nor O O\nwhen O O\nyou O O\nare O O\nnot O O\nsure O O\nwhat O O\nobjects O O\nwill O O\nbe O O\nobserving O O\n. O O\n\nYou O O\nmight O O\nbe O O\nasking O O\nyourself O O\nwhy O O\nwe O O\nare O O\nusing O O\nclosures O O\nfor O O\nsimple O O\ncases O O\nand O O\nnot O O\ndelegates O O\nor O O\nnotifications O O\n. O O\n\nThe O O\nanswer O O\nis O O\nthat O O\nclosures O O\nare O O\nthe O O\nmost O O\nlightweight O O\n. O O\n\nThey O O\nare O O\neasy O O\nto O O\ncreate O O\nand O O\nthey O O\npositively O O\naffect O O\nyour O O\ncode O O\nquality O O\n. O O\n\nLet O O\n's O O\nconsider O O\na O O\ncompletion O O\ncallback O O\n. O O\n\nIf O O\nyou O O\ndecide O O\nto O O\nuse O O\na O O\nnotification O O\n, O O\nyou O O\nneed O O\nanother O O\nmethod O O\nthat O O\nwill O O\nhandle O O\nthat O O\nnotification O O\n. O O\n\nThe O O\nsame O O\nis O O\nvalid O O\nfor O O\ndelegates O O\n. O O\n\nIf O O\nyou O O\nneed O O\nsome O O\ncontext O O\n( O O\ne.g O O\n. O O\nthe O O\nparameters O O\nthat O O\ntriggered O O\nthe O O\nactions O O\n) O O\n, O O\nyou O O\nwill O O\nneed O O\nto O O\nsave O O\nit O O\ninto O O\na O O\nproperty O O\n. O O\n\nOn O O\nthe O O\nother O O\nhand O O\n, O O\na O O\nclosure O O\ncan O O\nbe O O\ncreated O O\ninline O O\n. O O\n\nThat O O\nmeans O O\nthat O O\nthe O O\ncode O O\nthat O O\ntriggers O O\nthe O O\naction O O\nand O O\nhandles O O\nits O O\nresult O O\nis O O\nat O O\none O O\nplace O O\n. O O\n\nThis O O\nreally O O\nsimplifies O O\nthe O O\nstructure O O\nof O O\nyour O O\ncode O O\n. O O\n\nAlso O O\nnote O O\nthat O O\nif O O\nthe O O\nclosure O O\nneeds O O\nsome O O\ncontext O O\n, O O\nit O O\ncan O O\ncapture O O\nit O O\n, O O\nwithout O O\nthe O O\nneed O O\nto O O\ncreate O O\nan O O\nadditional O O\nproperty O O\n. O O\n\nHere O O\nI O O\nwant O O\nto O O\npass O O\nthe O O\nvalue O O\nwhich O O\nam O O\ngetting O O\nin O O\ndata Name Name\nto O O\nthe O O\ncontroller O O\nso O O\nI O O\ngave O O\nmy O O\ncode O O\nlike O O\nthis O O\n. O O\n\nMy O O\ncontroller O O\nlooks O O\nlike O O\nthis O O\n. O O\n\nBut O O\nwhen O O\nI O O\npass O O\ninto O O\nthe O O\ncontroller O O\nam O O\ngetting O O\nerror O O\nlike O O\nundefined O O\nindex O O\ndata O O\nin O O\nconsole Name Name\n\nMy O O\ntoPost Name Name\nvariable O O\ncontains O O\nvalue O O\nlike O O\nthis O O\n\nIf O O\nsubmit_data Name Name\nreferred O O\nhere O O\nis O O\na O O\nform O O\nfield O O\n\nTry O O\nto O O\nget O O\ndata Name Name\nby O O\n\nSerialization O O\nbasically O O\ndoes O O\nthis O O\n: O O\n\nand O O\nthis O O\n: O O\nfield_name_1 Name Name\n= Name Name\nfield_value_1&field_name_2 Name Name\n= Name Name\nfield_value_2 Name Name\n\nInstead O O\nof O O\nyou O O\nhaving O O\nto O O\nmanually O O\nbuild O O\nthat O O\n^ Name Name\nit O O\ndoes O O\nit O O\nfor O O\nyou O O\n. O O\n\nSo O O\nthe O O\nonly O O\nvariables O O\nthat O O\nexist O O\nvia O O\npost O O\nbecome O O\n$_POST['field_name_1'] Name Name\nand O O\n$_POST['field_name_2'] Name Name\n. O O\n\nYou O O\ncan O O\nconfirm O O\nvia O O\nprint_r($_POST) Name Name\n; Name Name\nto O O\nsee O O\nwhat O O\npost O O\nkeys O O\nexist O O\n. O O\n\nYou O O\nneed O O\nto O O\nget O O\nyour O O\nrow_selected Name Name\ninto O O\nan O O\nobject O O\nthat O O\nwe O O\ncan O O\nturn O O\ninto O O\nan O O\narray Name Name\nin O O\nphp Name Name\n: O O\n\nController O O\n: O O\n\nHere O O\nis O O\na O O\nsample O O\nof O O\nsome O O\ndirectory O O\npaths O O\n\nI O O\nwant O O\nto O O\nremove O O\nall O O\n.svn Name Name\nfolders O O\nfrom O O\nall O O\nthis O O\ndirectories O O\nat O O\nonce O O\nfrom O O\nthe O O\ncurrent O O\nroot O O\ndirectory O O\nI O O\n'm O O\nin O O\n. O O\n\nAny O O\ndeas O O\n? O O\n\nYou O O\ncan O O\ndo O O\n( O O\nadded O O\n-type Name Name\nd Name Name\nto O O\nyour O O\nfind O O\ncommand O O\nto O O\nget O O\nfolders O O\nonly O O\n) O O\n\nrm Name Name\n-rf Name Name\n`find Name Name\n. Name Name\n-type Name Name\nd Name Name\n-name Name Name\n.svn Name Name\n` Name Name\n\nI O O\n'm O O\nusing O O\nDjango Name Name\nto O O\ncreate O O\nan O O\napplication O O\n( O O\nusing O O\nPostgreSQL Name Name\n) O O\nthat O O\nneeds O O\na O O\ncolumn Name Name\nnumeric(15,6) O O\n, O O\nbut O O\nI O O\n'm O O\nnot O O\nfinding O O\na O O\nmethod O O\nto O O\ndo O O\nthis O O\n. O O\n\nFrom O O\nPostgreSQL Name Name\ndocs O O\n: O O\n\nSo O O\nyou O O\ncan O O\nuse O O\nDjango Name Name\n's O O\nDecimalField Name Name\n\nSome O O\ndocs O O\n: O O\n\nhttp://www.postgresql.org/docs/current/interactive/datatype-numeric.html#DATATYPE-NUMERIC-DECIMAL O O\n\nhttps://docs.djangoproject.com/en/1.8/ref/forms/fields/#decimalfield O O\n\nI O O\nhave O O\nlooked O O\nat O O\nsimilar O O\nproblems O O\nbut O O\ncould O O\nn't O O\nfind O O\nany O O\nsolutions.MY O O\nproblem O O\nis O O\nwhen O O\ni O O\nclick O O\nsignup O O\nbutton Name Name\n, O O\nthe O O\ninformation O O\nis O O\nsaved O O\nand O O\nit O O\nis O O\nvisible O O\nin O O\ndjango Name Name\nadministration.But O O\nwhen O O\ni O O\nhit O O\nthe O O\nsignup O O\nbutton Name Name\nin O O\nthe O O\nredirected O O\nurl O O\nI O O\nget O O\nthis O O\nerror O O\n. O O\n\nMy O O\nforms.py Name Name\nis O O\n\nand O O\nmy O O\nviews.py Name Name\nis O O\n\nand O O\nmodels.py Name Name\nis O O\n\nand O O\ni O O\nget O O\nthe O O\nerror O O\nat O O\n\"mail_base,provider=email.split(\"@\")\" Name Name\nin O O\nforms.py.Please Name Name\nhelp O O\nme. O O\n. O O\n\nIf O O\nsomeone O O\nleaves O O\nemail Name Name\nfield Name Name\nblank O O\n( O O\nthis O O\nis O O\nallowed O O\nbecause O O\nof O O\nSignUp O O\nmodel O O\nemail Name Name\n= Name Name\nEmailField(blank=True)) Name Name\n, O O\nthen O O\nself.cleaned_data.get('email') Name Name\nwill O O\nreturn O O\n'' Name Name\n( O O\nempty O O\nstring Name Name\n) O O\n. O O\n\nmail_base Name Name\n, Name Name\nprovider Name Name\n= Name Name\nemail.split('@') Name Name\nwill O O\nraise O O\nthat O O\nexception Name Name\nin O O\nthis O O\ncase O O\n. O O\n\nThe O O\nreason O O\nthis O O\nwould O O\nhappen O O\nis O O\nthat O O\nyour O O\nemail Name Name\nstring Name Name\n, O O\nfor O O\nsome O O\nreason O O\n, O O\ndid O O\nnot O O\nhave O O\nan O O\n' Name Name\n@ Name Name\n' Name Name\nsymbol O O\nin O O\nit O O\n. O O\n\nThis O O\nleads O O\nemail.split(\"@\") Name Name\nto O O\nresult O O\nin O O\na O O\nlist Name Name\nof O O\nlength O O\n1 O O\n, O O\nrather O O\nthan O O\na O O\nlist O O\nof O O\nlength O O\n2 O O\n, O O\nas O O\nyou O O\nwere O O\nexpecting O O\n. O O\n\nMy O O\nguess O O\nis O O\nthat O O\nyou O O\nhave O O\na O O\nblank O O\nemail Name Name\nsomewhere O O\n, O O\nbut O O\nany O O\nemail Name Name\nfield Name Name\nthat O O\ndoes O O\nn't O O\nhave O O\nan O O\n' Name Name\n@ Name Name\n' Name Name\nsymbol O O\nwill O O\ncause O O\nthis O O\nexception Name Name\nto O O\nbe O O\nraised O O\n. O O\n\nis O O\nit O O\npossible O O\nto O O\ndo O O\nmultiple O O\njoins O O\n: O O\n\nin O O\nthe O O\nsample O O\nabove O O\nall O O\nis O O\nfine O O\nuntil O O\ni O O\npress O O\n\" Name Name\n. Name Name\n\" Name Name\n\nin O O\nthe O O\nend O O\nof O O\nthe O O\n3rd O O\nline O O\n. O O\n\nthere O O\ni O O\nexpect O O\nto O O\nget O O\nintellisense O O\nand O O\nwrite O O\nu.Id Name Name\n== Name Name\nug.UserId Name Name\nbut O O\nit O O\ndoes O O\nn't O O\nappear O O\n. O O\n\nand O O\nof O O\ncourse O O\nthis O O\ncode O O\ndoes O O\nn't O O\ncompile O O\nafter O O\n. O O\n\nwhat O O\ndid O O\ni O O\nwrong O O\n? O O\n\nANSWER O O\n: O O\nthe O O\norder O O\nof O O\naliases O O\nis O O\nimportant O O\n. O O\n\nso O O\ni O O\n've O O\nused O O\nug.UserId Name Name\nequals Name Name\nu.Id Name Name\n\nThe O O\nfollowing O O\ncode O O\nworks O O\nfor O O\nme O O\nin O O\nLINQ Name Name\nto O O\nSQL Name Name\n( O O\nNorthwind Name Name\ndatabase Name Name\n) O O\n\nIs O O\nit O O\npossible O O\nto O O\nexecute O O\na O O\nquery O O\non O O\na O O\n.sql Name Name\ndump O O\nfile O O\nwithout O O\nimporting O O\nit O O\ninto O O\na O O\ndatabase O O\n? O O\n\nExample O O\n: O O\nstuff.sql Name Name\n: O O\n\nThen O O\nexecute O O\nsome O O\nSELECT Name Name\nStatement O O\nto O O\nget O O\nthe O O\noptions O O\ndata O O\n. O O\n\nSure O O\n, O O\nI O O\ncould O O\nimport O O\nthe O O\ndump O O\nin O O\na O O\nlocal O O\nDB O O\n, O O\nexecute O O\nwhat O O\nI O O\nwant O O\n, O O\ndump O O\nit O O\nagain O O\nand O O\ndelete O O\nthe O O\nDB O O\nagain O O\n, O O\nbut O O\nis O O\nthere O O\na O O\nway O O\nwith O O\nless O O\noverhead O O\n? O O\n\nAre O O\nyou O O\nlooking O O\nfor O O\nthis O O\n? O O\n\nNot O O\nwithout O O\nimporting O O\nat O O\nall O O\n, O O\nI O O\ndont O O\nthink O O\nso O O\n. O O\n\nHowever O O\nyou O O\nhave O O\nother O O\noptions O O\n. O O\n\nYou O O\ncould O O\nimport O O\nyour O O\nSQL Name Name\ndump O O\ninto O O\na O O\ntemporary O O\nmemory-only O O\ndatabase O O\n, O O\nthen O O\nquery O O\nthat O O\ndatabase O O\n. O O\n\nFor O O\ninstance O O\nthis O O\ncould O O\nbe O O\nan O O\nSQLite Name Name\n:MEMORY Name Name\n: Name Name\ndatabase O O\nif O O\nyour O O\nsql Name Name\nis O O\ncompatible O O\n, O O\nor O O\nyou O O\ncould O O\nuse O O\nEngine Name Name\n= Name Name\nMEMORY Name Name\n( O O\nor O O\nEngine Name Name\n= Name Name\nHEAP Name Name\nfor O O\nolder O O\nversions O O\n) O O\nwith O O\nMySQL Name Name\n\" O O\ncreate Name Name\ntable Name Name\n\" O O\nDDL O O\nto O O\ncreate O O\na O O\nmemory O O\ntable Name Name\n, O O\nand O O\nthen O O\nquery O O\nthat O O\ndb O O\n( O O\nYou O O\nwould O O\nhave O O\nto O O\nreplace O O\nEngine Name Name\n= Name Name\nINNODB Name Name\nor O O\nEngine Name Name\n= Name Name\nMyISAM Name Name\nwith O O\nMEMORY Name Name\nin O O\nyour O O\ndump O O\nfile O O\nto O O\nimport O O\nit O O\n) O O\n. O O\n\nSame O O\nidea O O\n. O O\n\nObviously O O\n, O O\nthis O O\ndepends O O\non O O\nsize O O\nof O O\nyour O O\ndata O O\nyou O O\nwant O O\nto O O\nquery O O\n. O O\n\na O O\n1TB O O\nDatabase O O\nwould O O\nprobably O O\nprove O O\nimpractical O O\nto O O\nimport O O\ninto O O\nRAM Name Name\n. O O\n\nEdit O O\n( O O\nsolution O O\n? O O\n\n) O O\n: O O\nI O O\nwas O O\nable O O\nto O O\nachieve O O\nthis O O\nby O O\nconverting O O\nmy O O\narrays Name Name\ninto O O\na O O\nstring Name Name\nand O O\nparsing O O\nthrough O O\nand O O\nrecreating O O\nthem O O\non O O\nthe O O\nother O O\nend O O\n. O O\n\nIf O O\nanyone O O\nhas O O\na O O\nbetter O O\nway O O\nI O O\nwould O O\nappreciate O O\nit O O\n. O O\n\nOriginal O O\n: O O\n\nI O O\ncreated O O\na O O\nclass O O\nthat O O\nextends O O\nMPxCommand Name Name\nto O O\ncreate O O\na O O\nplug-in Name Name\nand O O\nhave O O\nbeen O O\ntrying O O\nto O O\nfigure O O\nout O O\nhow O O\nto O O\nparse O O\nthe O O\nMArgList Name Name\nin O O\nthe O O\ndoIt() Name Name\nfunction O O\nto O O\npull O O\na O O\ncouple O O\nof O O\nlists Name Name\nfrom O O\nfrom O O\nthe O O\nargs Name Name\nvariable O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\npull O O\na O O\nlist Name Name\nof O O\nstrings Name Name\nand O O\na O O\nlist Name Name\nints Name Name\nthat O O\nwill O O\nhave O O\nan O O\ninconsistent O O\nlength O O\nso O O\nI O O\nwo O O\nn't O O\nbe O O\nable O O\nto O O\n( O O\nI O O\nthink O O\n) O O\nfill O O\nthe O O\nflag O O\nmultiple O O\ntimes O O\nwhen O O\nI O O\ncall O O\nthe O O\ncommand O O\n. O O\n\nI O O\n've O O\nhad O O\nsuccess O O\npulling O O\nindividual O O\nvariables O O\nwith O O\nMArgParser Name Name\nbut O O\nhave O O\nnot O O\nfound O O\na O O\nway O O\nto O O\npull O O\na O O\nfull O O\nlist Name Name\n. O O\n\nMArgList Name Name\nappears O O\nto O O\nhave O O\nwhat O O\nI O O\nwant O O\nwith O O\nthe O O\nfunction O O\nasStringArray(index) Name Name\nand O O\nasIntArray(index) Name Name\nbut O O\nwhen O O\nI O O\nuse O O\ntry O O\nusing O O\nthem O O\nI O O\nget O O\nthe O O\nerror O O\n: O O\n\nEdit O O\n: O O\n\nThis O O\ncode O O\nwill O O\nput O O\n\" Name Name\nhello Name Name\n\" Name Name\nfrom O O\nthe O O\nargs Name Name\ninto O O\nself.myStr Name Name\nif O O\nI O O\nrun O O\ncmds.myCommand Name Name\n( Name Name\ns Name Name\n= Name Name\n\" Name Name\nhello Name Name\n\" Name Name\n) Name Name\n, O O\nbut O O\nI O O\n'd O O\nlike O O\nto O O\nbe O O\nable O O\nto O O\nbe O O\nable O O\nto O O\nrun O O\ncmds.myCommand Name Name\n( Name Name\ns Name Name\n= Name Name\n[ Name Name\n\" Name Name\nhello Name Name\n\" Name Name\n, Name Name\n\" Name Name\nworld Name Name\n\" Name Name\n] Name Name\n) Name Name\nand O O\nbe O O\nable O O\nto O O\nget O O\nthe O O\narray O O\nfrom O O\nthe O O\nargs Name Name\nvariable O O\nand O O\nput O O\nit O O\ninto O O\nself.myStr Name Name\n. O O\n\nI O O\nhope O O\nthat O O\nclears O O\nup O O\nwhat O O\nI O O\n'm O O\ntrying O O\nto O O\ndo O O\n. O O\n\nI O O\nthink O O\nyour O O\nproblem O O\nis O O\nin O O\nthe O O\ndeclaration O O\nof O O\nthat O O\nfunction O O\n: O O\n\nint Name Name\n& Name Name\nis O O\na O O\nreference O O\nto O O\nan O O\nint Name Name\n, O O\ni.e O O\n. O O\nan O O\nint Name Name\nyou O O\ngive O O\nto O O\nthe O O\nfunction O O\n, O O\nthe O O\nfunction O O\nwill O O\nchange O O\nit O O\n, O O\nand O O\nyour O O\nvariable O O\nwill O O\nreflect O O\nthe O O\nchanges O O\n. O O\n\nSo O O\nmaybe O O\nyou O O\nalready O O\nsee O O\nit O O\n: O O\npassing O O\na O O\nconstant O O\nis O O\nnot O O\npossible O O\n. O O\n\nI O O\n'm O O\nnot O O\ninto O O\npython Name Name\nat O O\nall O O\n, O O\nso O O\nI O O\ndo O O\nn't O O\nknow O O\nif O O\nit O O\nwould O O\nbe O O\nsufficient O O\nto O O\nsimply O O\ndeclare O O\nan O O\nint Name Name\n, O O\ninitialize O O\nit O O\nand O O\nthen O O\npass O O\nit O O\nas O O\nargument O O\n2 O O\nto O O\nthe O O\nfunction O O\n. O O\n\nI O O\nhave O O\nimplemented O O\nan O O\nOpenID O O\nIdP O O\nand O O\nan O O\nRP O O\n. O O\n\nThey O O\nseem O O\nto O O\nbe O O\nworking- O O\n- O O\nthe O O\nRP O O\nis O O\ncontacting O O\nthe O O\nIdP O O\nand O O\nis O O\nredirecting O O\nto O O\nthe O O\nIdP O O\nfor O O\nauthentication O O\n. O O\n\nThe O O\nonly O O\nproblem O O\nis O O\nwhen O O\nI O O\nam O O\non O O\nthe O O\nauthenticate/authorize O O\npage Name Name\nit O O\nsays O O\n\" O O\nThis O O\nsite O O\nfailed O O\nverification O O\n. O O\n\" O O\n\nI O O\ndug O O\naround O O\nin O O\nthe O O\ncode O O\na O O\nlittle O O\nand O O\nsaw O O\na O O\nfew O O\nthings O O\nthat O O\nit O O\nwas O O\ndoing O O\n. O O\n\nI O O\nhave O O\na O O\nhunch O O\nthat O O\nit O O\nhas O O\nsomething O O\nto O O\ndo O O\nwith O O\nthe O O\nYadis Name Name\ndocument O O\nnot O O\nbeing O O\nfound O O\n. O O\n\nMy O O\nsite O O\n's O O\nrealm O O\nshoots O O\noff O O\na O O\n302 O O\nFound O O\nstatus O O\ncode O O\n, O O\nso O O\nI O O\nthought O O\nthis O O\nmight O O\nbe O O\nthe O O\nproblem O O\nand O O\nset O O\nit O O\nup O O\nto O O\nhave O O\nan O O\n\" O O\nAccept O O\n\" O O\nrequest O O\nheader O O\nwhich O O\ncan O O\nbe O O\nfed O O\nthe O O\nYadis Name Name\ndocument O O\ntype O O\n( O O\n\" Name Name\napplication/xrds Name Name\n+xml Name Name\n\" Name Name\n) O O\n. O O\n\nThen O O\ninstead O O\nof O O\nissuing O O\nthe O O\n302 Name Name\nFound Name Name\nredirect O O\n, O O\nit O O\nreturns O O\nthe O O\ndocument O O\n. O O\n\nI O O\nalso O O\ntried O O\nplacing O O\nthe O O\nX-XRDS-Location O O\nheader O O\n.. O O\n. O O\nno O O\ngo O O\n. O O\n\nAny O O\nother O O\nsuggestions O O\n? O O\n\nIt O O\ntook O O\na O O\nnice O O\nrework O O\n, O O\nbut O O\nonce O O\nI O O\nfixed O O\nthe O O\n302 O O\nFound O O\nto O O\na O O\n200 O O\nOK O O\nresponse O O\n, O O\nI O O\nwas O O\ngolden O O\n. O O\n\nhttp://blog.nerdbank.net/2008/06/why-yahoo-says-your-openid-site.html O O\n\nSo O O\nI O O\nhave O O\nbeen O O\nstuck O O\non O O\nthis O O\nfor O O\na O O\nweek O O\nor O O\nso O O\n, O O\nbut O O\nhow O O\ndoes O O\none O O\npass O O\nthe O O\nspecific O O\nrow Name Name\nselected O O\non O O\na O O\nUIPickerView Name Name\nfrom O O\nthe O O\nsecondviewcontroller Name Name\nto O O\nthe O O\nfirst O O\n? O O\n\nI O O\nneed O O\nit O O\nfor O O\na O O\nseries O O\nof O O\nif O O\nstatements O O\nin O O\nthe O O\nfirstviewcontroller Name Name\n, O O\nso O O\nI O O\nam O O\nthinking O O\nsegues Name Name\nare O O\nnot O O\nthe O O\nway O O\nto O O\ngo O O\n? O O\n\nSorry O O\nif O O\nthis O O\nseems O O\na O O\nbit O O\nrudimentary O O\n, O O\nI O O\nam O O\nbrand O O\nnew O O\nto O O\nXcode Name Name\nand O O\nobjective O O\nc Name Name\nin O O\ngeneral O O\n. O O\n\nis O O\nthere O O\nis O O\nany O O\nway O O\nto O O\nUnlock O O\nScreen Name Name\nby O O\nclicking O O\nhome Name Name\nbutton Name Name\n. O O\n\nI O O\njust O O\ndid O O\nlock O O\nscreen Name Name\ndynamically O O\nby O O\nusing O O\nDeviceAdminReceiver Name Name\nAPI Name Name\n. O O\n\nas O O\nthe O O\nsame O O\nway O O\nI O O\nneed O O\nto O O\nunlock O O\nthe O O\nscreen Name Name\nby O O\nclicking O O\nthe O O\nhome Name Name\nbutton Name Name\nor O O\nsome O O\nother O O\nkeys Name Name\n. O O\n\nkindly O O\nsome O O\none O O\nsuggest O O\nme O O\nsome O O\nideas O O\nabout O O\nthis O O\nplease O O\n. O O\n\nI O O\nhave O O\nset O O\nup O O\na O O\nbasic O O\nCSS3 Name Name\nanimation O O\ntest O O\nwhich O O\nincreases O O\nand O O\ndecreases O O\nthe O O\nbackground-size O O\nof O O\nthe O O\nelement O O\n, O O\nwhen O O\nyou O O\nclick O O\none O O\nof O O\nthe O O\nelements O O\nthen O O\nthe O O\nclass O O\nactive O O\nis O O\ntoggled O O\nand O O\na O O\ntransition O O\noccurs O O\n. O O\n\nMy O O\nproblem O O\nis O O\nthough O O\nthat O O\nwhen O O\nthe O O\n.active Name Name\nclass O O\nis O O\nremoved O O\nthe O O\nanimation O O\ndoesnt O O\noccur O O\nanymore O O\nsince O O\nI O O\nhave O O\nreset O O\nanimation O O\nto O O\nnone O O\n. O O\n\nCan O O\nanyone O O\nadvise O O\nhow O O\nI O O\ncan O O\nfix O O\nthis O O\nproblem O O\n? O O\n\nCSS Name Name\n\nJS Name Name\n\nFiddle Name Name\nhere O O\n: O O\nhttp://jsfiddle.net/VQaGh/22/ O O\n\nas O O\nmy O O\nunderstanding O O\nyou O O\nwant O O\neffects O O\nsomething O O\nlike O O\nthis O O\n\ntry O O\nthis O O\none O O\nhttp://jsfiddle.net/Sk2sX/ O O\n\nI O O\nhave O O\nmodify O O\nboth O O\ncss Name Name\nand O O\njs Name Name\nhope O O\nit O O\nwill O O\nhelp O O\nyou O O\n\nfor O O\nany O O\nquery O O\nregarding O O\ncode O O\npost O O\na O O\ncomment O O\n\nIm O O\nusing O O\nthis O O\ncode O O\nbut O O\nit O O\ndoesnt O O\ndisplay O O\nanything O O\n\nI O O\nam O O\nsorry O O\nbecause O O\nthis O O\nlook O O\nlike O O\na O O\ndoubled O O\npost O O\n, O O\nbut O O\ni O O\nsaw O O\na O O\nlot O O\nof O O\nother O O\nthreads O O\nand O O\ni O O\ncant O O\nunderstand O O\nanything O O\nthat O O\ni O O\nam O O\ndoing O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nmake O O\nan O O\nhas_and_belongs_to_many Name Name\nbut O O\ni O O\nam O O\nstuck O O\n. O O\n\nI O O\nmanaged O O\nto O O\nmake O O\nthe O O\nform O O\ndisplay O O\nthe O O\nright O O\ninformation O O\n, O O\nbut O O\ni O O\ndont O O\nknow O O\nhow O O\nto O O\nsave O O\nit O O\n. O O\n\nI O O\ngot O O\n: O O\n\nOrb Name Name\nclass O O\n: O O\n\nBook Name Name\nclass O O\n: O O\n\nA Name Name\n_form Name Name\n: O O\n\nAnd O O\nthe O O\ncontroller O O\n: O O\n\nWith O O\nthis O O\n, O O\nthe O O\nform O O\nhas O O\na O O\ncheckbox Name Name\nwith O O\nthe O O\nright O O\nvalues O O\n, O O\nbut O O\nit O O\nwont O O\nbe O O\nsave O O\nanywere O O\n. O O\n\nI O O\ndont O O\nknow O O\nwhat O O\ni O O\nam O O\ndoing O O\n, O O\ncan O O\nsome O O\none O O\nme O O\nexplain O O\nwhat O O\ni O O\nhave O O\nto O O\ndo O O\n? O O\n\nYou O O\nneed O O\na O O\njoin O O\ntable Name Name\nto O O\nuse O O\nhas_and_belongs_to_many Name Name\n\nsee O O\nhere O O\nmy O O\nworking O O\nversion O O\n: O O\nhttps://github.com/senayar/books O O\n\ni O O\nhave O O\na O O\nform O O\nwhich O O\nfills O O\na O O\ndatabase O O\nwith O O\nan O O\nissue O O\n, O O\nthe O O\nissue O O\nis O O\neither O O\n' O O\nresolved O O\n' O O\nor O O\n' O O\nnotresolved O O\n' O O\n. O O\n\nI O O\nhave O O\nto O O\nmake O O\na O O\ncounter O O\nwhich O O\nstarts O O\nas O O\nsoon O O\nas O O\nthe O O\nform O O\nis O O\nsubmitted O O\nin O O\nthe O O\ndatabase O O\nand O O\nthe O O\nissue O O\nstatus O O\nis O O\n' O O\nnotresolved O O\n' O O\nyet O O\nand O O\nwhen O O\ni O O\nresolve O O\nthe O O\nissue O O\n, O O\ni O O\ncan O O\ncheck O O\nthe O O\ntime O O\ntaken O O\nto O O\nsolve O O\nthe O O\nissue O O\n. O O\n\nhow O O\ncan O O\ni O O\nimplement O O\nit O O\n? O O\n\nhere O O\nis O O\nmy O O\ncode O O\nfor O O\nthe O O\nform O O\n\nYou O O\ncan O O\nhave O O\na O O\ncolumn Name Name\nof O O\ntype O O\nTIMESTAMP Name Name\nin O O\nyour O O\ndatabase O O\ntable Name Name\nand O O\nhave O O\nits O O\ndefault O O\nvalue O O\nset O O\nas O O\nCURRENT_TIMESTAMP Name Name\n. O O\n\nSee O O\nthe O O\nfollowing O O\nthread O O\non O O\nStackoverflow Name Name\n: O O\n\nHow O O\ndo O O\nyou O O\nset O O\na O O\ndefault O O\nvalue O O\nfor O O\na O O\nMySQL Name Name\nDatetime Name Name\ncolumn Name Name\n? O O\n\nYou O O\nshould O O\nalso O O\ngo O O\nthrough O O\nTimestamp O O\nproperties O O\nin O O\nMySQL Name Name\n. O O\n\nWell O O\n, O O\nthinking O O\nfast O O\n, O O\nthat O O\nis O O\nwhat O O\ncame O O\nto O O\nmy O O\nmind O O\n: O O\n\nIs O O\nthat O O\nwhat O O\nyou O O\nneed O O\n? O O\n\nYou O O\ncan O O\nalso O O\ndo O O\nthis O O\n: O O\n\nhttp://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_datediff O O\non O O\nyour O O\nMySQL Name Name\ndates O O\n, O O\nfollowing O O\nRufinus O O\nsolution O O\n. O O\n\nHow O O\ncan O O\nI O O\nconvert O O\nthe O O\nduplicate O O\nelements O O\nin O O\na O O\narray Name Name\n' O O\ndata Name Name\n' O O\ninto O O\n0 Name Name\n? O O\n\nIt O O\nhas O O\nto O O\nbe O O\ndone O O\nrow-wise Name Name\n. O O\n\nThe O O\nanswer O O\nshould O O\nbe O O\nas O O\nfollows O O\n: O O\n\nApproach O O\n#1 O O\n\nOne O O\napproach O O\nwith O O\nnp.unique Name Name\n- O O\n\nSample O O\nrun O O\n- O O\n\nApproach O O\n#2 O O\n\nYou O O\ncan O O\nalso O O\nuse O O\nsorting O O\nand O O\ndifferentiation O O\nas O O\na O O\nfaster O O\napproach O O\n- O O\n\nRuntime O O\ntests O O\n- O O\n\nExtending O O\nto O O\na O O\n2D O O\ncase O O\n: O O\n\nApproach O O\n#2 O O\ncould O O\nbe O O\nextended O O\nto O O\nwork O O\nfor O O\na O O\n2D O O\narray Name Name\ncase O O\n, O O\navoiding O O\nany O O\nloop O O\nlike O O\nso O O\n- O O\n\nSample O O\nrun O O\n- O O\n\nHere O O\n's O O\na O O\nsimple O O\npure-Python Name Name\nway O O\nto O O\ndo O O\nit O O\n: O O\n\nI O O\nhave O O\nimplemented O O\nan O O\ninvitation O O\nsystem O O\nin O O\nmy O O\napplication O O\n, O O\nthat O O\ngenerates O O\nan O O\nical Name Name\nattachment O O\nthat O O\nis O O\nsent O O\nto O O\nthe O O\nappropriate O O\nusers O O\n. O O\n\nIs O O\nit O O\npossible O O\nto O O\nadd O O\na O O\nlink O O\nin O O\nthe O O\nemail O O\nbody O O\nthat O O\nwould O O\ntrigger O O\nthe O O\nprocessing O O\nof O O\nthe O O\ninvitation O O\n? O O\n\n( O O\nin O O\naddition O O\nto O O\nthe O O\nextra O O\nbuttons Name Name\nprovided O O\nby O O\nsome O O\nemail Name Name\nclients Name Name\n) O O\n\nThis O O\nquestion O O\nmentions O O\nthat O O\nfor O O\nemail O O\nattachments O O\nin O O\nthe O O\ngeneral O O\ncase O O\nit O O\n's O O\nnot O O\npossible O O\n. O O\n\nIs O O\nit O O\nstill O O\nthe O O\ncase O O\nfor O O\nicalendar Name Name\nattachments O O\n? O O\n\nOther O O\nquestions O O\nsuggest O O\nusing O O\na O O\nservice O O\nlike O O\nhttps://www.addevent.com/ O O\n, O O\nbut O O\nthis O O\nseems O O\nto O O\nbe O O\nmore O O\noriented O O\ntoward O O\n\" O O\npublic O O\nevents O O\n\" O O\n, O O\nwhereas O O\nin O O\nmy O O\ncase O O\nI O O\nwould O O\nneed O O\nsomething O O\nquite O O\nprivate O O\n( O O\nonly O O\ninvitations O O\nbetween O O\n2 O O\npeople O O\n) O O\n, O O\nthat O O\nare O O\nexpected O O\nto O O\nbe O O\ngenerates O O\nquite O O\noften O O\n( O O\nshould O O\nbe O O\nable O O\nto O O\nscale O O\nup O O\nto O O\n100/day Name Name\nwithout O O\nproblem O O\n) O O\n, O O\nor O O\nit O O\nit O O\njust O O\nme O O\ngetting O O\na O O\nbad O O\nimpression O O\n? O O\n\nDealt O O\nwith O O\nthis O O\nproblem O O\nseveral O O\nyears O O\nago O O\nand O O\nthere O O\nwas O O\nno O O\nway O O\nyou O O\ncould O O\nforce O O\nmost O O\nemail Name Name\nclient Name Name\nto O O\n\" O O\nprocess O O\n\" O O\n( O O\ntrigger O O\n\" O O\nAdd O O\nto O O\ncalendar O O\n\" O O\nmenu Name Name\n) O O\n. O O\n\nHowever O O\n, O O\nwhat O O\nyou O O\nwant O O\nis O O\njust O O\nmake O O\nsome O O\nelement O O\nin O O\nyour O O\nemail O O\ntrigger O O\nthat O O\n. O O\n\nYou O O\ncan O O\ndo O O\nthis O O\nby O O\nsimply O O\nlinking O O\nthat O O\nelement O O\nto O O\n.ical Name Name\nfile O O\non O O\nyour O O\nserver Name Name\n. O O\n\nThe O O\nadvantage O O\nis O O\nthat O O\nyou O O\ncan O O\nattache O O\nsome O O\nparameters O O\nto O O\nyour O O\nlink O O\nand O O\ngenerate O O\nthat O O\nevent O O\nfile O O\ndynamically O O\n. O O\n\nAlso O O\n, O O\nit O O\nscales O O\npretty O O\nwell O O\n. O O\n\nI O O\nam O O\nusing O O\nstandard O O\nGWT Name Name\n( O O\n2.0.1 Name Name\n) O O\nto O O\nmake O O\nan O O\ninternet O O\napp O O\nand O O\ni O O\nhave O O\nthis O O\nwierd O O\nissue O O\nwith O O\nhuge Name Name\nfonts O O\n( O O\nedit O O\n: O O\nwell O O\n, O O\nlarger O O\nthan O O\nnormal O O\n) O O\nwith O O\nthe O O\ndefault O O\nstyle O O\nin O O\nIE Name Name\n7 Name Name\n& O O\n8 Name Name\n, O O\nwhile O O\nFF Name Name\n, O O\nChrome Name Name\nand O O\nSafari Name Name\nare O O\ndisplaying O O\nfonts O O\ncorrectly O O\n. O O\n\nAt O O\nfirst O O\ni O O\nthought O O\nit O O\nmust O O\nbe O O\non O O\nerror O O\non O O\nmy O O\nside O O\n( O O\ni O O\nuse O O\nUiBinder Name Name\nwith O O\nsome O O\ncustom O O\ncss Name Name\n) O O\nbut O O\nthen O O\nI O O\nnoticed O O\nthat O O\non O O\nthe O O\nGWT Name Name\nshowcases O O\nsite O O\nthe O O\nvarious O O\nwidget Name Name\nfonts O O\nare O O\nalso O O\ntoo O O\nbig O O\n. O O\n\nAny O O\nideas O O\n? O O\n\nThis O O\nis O O\ndue O O\nto O O\nIE Name Name\ndefault O O\nfont O O\nsize O O\nrendering O O\nand O O\nhas O O\nnothing O O\nto O O\ndo O O\nwith O O\nGWT Name Name\nbut O O\nrather O O\nwith O O\nCSS Name Name\nstyling O O\n. O O\n\nYou O O\ncan O O\nensure O O\nthat O O\nfonts O O\nare O O\nconsistent O O\nover O O\nmultiple O O\nbrowser Name Name\nwith O O\na O O\nCSS Name Name\nlike O O\nthat O O\n( O O\nfor O O\ninstance O O\n) O O\n: O O\n\nEDIT O O\n: O O\n\nTo O O\nensure O O\nall O O\nwidgets Name Name\n\" O O\nget O O\n\" O O\nthis O O\nnew O O\nstyle O O\nyou O O\nneed O O\nto O O\nput O O\nyour O O\nCSS Name Name\nfile O O\nin O O\nthe O O\n* O O\n.gwt.xml Name Name\nfile O O\nin O O\nthe O O\nfollowing O O\nway O O\n( O O\nthe O O\norder O O\nof O O\nlines O O\nis O O\nimportant O O\n) O O\n: O O\n\ndo O O\nn't O O\nput O O\nit O O\nin O O\nthe O O\nHTML Name Name\npage O O\n! O O\n\nThis O O\nwill O O\nensure O O\nthat O O\nyour O O\nstyle O O\noverride O O\nthe O O\nwidget Name Name\nstyles O O\n. O O\n\nPS O O\n: O O\nYou O O\nmight O O\noverride O O\nsome O O\nwidget Name Name\nstyles O O\nby O O\nhand O O\n( O O\nI O O\nhave O O\na O O\nGwtOverride.css Name Name\nfor O O\nthat O O\npurpose O O\n) O O\n.. O O\n. O O\nsee O O\nsnippet O O\n: O O\n\nA O O\nquick O O\ncomparison O O\nbetween O O\nOpera Name Name\n10.10 Name Name\n, O O\nIE Name Name\n6 Name Name\nand O O\nFF Name Name\n3.6 Name Name\n( O O\nall O O\non O O\nWinXP Name Name\nSP Name Name\n3) Name Name\n- O O\nOpera Name Name\nand O O\nIE Name Name\nshow O O\nslightly O O\nlarger O O\nfonts O O\n. O O\n\nI O O\n'm O O\nnot O O\nsure O O\nif O O\nthat O O\n's O O\nGWT Name Name\n's O O\nfault O O\n- O O\nevery O O\nbrowser Name Name\nhas O O\nsome O O\ncore O O\nCSS Name Name\nrules O O\ndefining O O\nthe O O\ndefault O O\nlook O O\n, O O\nif O O\nno O O\nadditional O O\nCSS Name Name\nstyles O O\nare O O\napplied O O\n( O O\nlike O O\nthat O O\nannoying O O\nblue O O\nborder Name Name\non O O\nall O O\nimages Name Name\nin O O\nFF Name Name\n) O O\n, O O\nso O O\njust O O\nmake O O\nsure O O\nyou O O\nset O O\nexplicitly O O\nyour O O\nfont O O\nsize O O\n, O O\netc O O\nto O O\nnullify O O\nthese O O\ndifferences O O\n. O O\n\nThat O O\nis O O\n, O O\nunless O O\nyou O O\nare O O\nseeing O O\nfonts O O\nway O O\nlarger O O\nthan O O\nthey O O\nshould O O\nbe O O\n- O O\nthen O O\nit O O\nmight O O\nbe O O\na O O\nbug O O\n. O O\n\nUpdate O O\n: O O\nunder O O\nLinux Name Name\n( O O\nGentoo Name Name\namd6 Name Name\n4) Name Name\nit O O\n's O O\nthe O O\nsame O O\n- O O\nOpera Name Name\nreneders O O\nslightly O O\nlarger O O\nfonts O O\nthan O O\nFirefox Name Name\n, O O\nbut O O\nnothing O O\nthat O O\nlooks O O\nodd O O\n. O O\n\nSo O O\nI O O\nhave O O\nmy O O\nmain O O\ndialog Name Name\nthat O O\ncalls O O\nmodeless O O\ndialogs Name Name\nthrough O O\nthis O O\nfunction O O\n( O O\nthis O O\nis O O\nthe O O\nlegacy O O\ncode O O\non O O\nthe O O\nproject O O\n) O O\n: O O\n\nProblem O O\n: O O\nall O O\nsub O O\ndialogs Name Name\nstay O O\non O O\ntop O O\nof O O\nmy O O\nmain O O\ndialog Name Name\n. O O\n\nDesired O O\nbehavior O O\n: O O\nwhichever O O\n's O O\nfocused O O\n( O O\nthey O O\nare O O\nall O O\nmodeless O O\n) O O\n, O O\nbe O O\nit O O\nthe O O\nmain O O\ndialog Name Name\n, O O\nor O O\nsub O O\ndialogs Name Name\n, O O\nI O O\nwant O O\nit O O\nto O O\nbe O O\nthe O O\ntopmost O O\ndialog Name Name\n. O O\n\nThank O O\nyou O O\n! O O\n\nNote O O\n: O O\nI O O\nalready O O\ntried O O\non O O\nmy O O\nmain O O\ndialog Name Name\n's O O\nOnInitDialog() Name Name\nthese O O\nbut O O\ndid O O\nn't O O\nwork O O\n: O O\n\n1 O O\n. O O\nSetWindowPos(&this->wndTop,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE) Name Name\n; Name Name\n\n2 O O\n. O O\nSetWindowPos(&this->wndTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE) Name Name\n; O O\n\nEDIT O O\n\nAlso O O\n, O O\nsub O O\ndialogs Name Name\nare O O\ncreated O O\nthis O O\nway O O\n: O O\n\nm_subDlg1->Create Name Name\n( Name Name\nSubDlg1::IDD Name Name\n, Name Name\nthis Name Name\n) Name Name\n; Name Name\n\nAs O O\nlong O O\nas O O\nthere O O\nis O O\nan O O\nowner O O\nrelation O O\nbetween O O\ntwo O O\nwindows Name Name\n. O O\n\nthe O O\nowner O O\nof O O\na O O\nwindow Name Name\ncan O O\nnever O O\nbe O O\non O O\ntop O O\nof O O\nthe O O\nowned O O\nwindow Name Name\n. O O\n\nWindows Name Name\nin O O\nan O O\nowner O O\n, O O\nparent O O\n, O O\nchild O O\nrelation O O\nalways O O\nbehave O O\nthe O O\nsame O O\n. O O\n\nThe O O\nowned/child O O\nwindow Name Name\nis O O\nalways O O\non O O\ntop O O\nof O O\nthe O O\nparent/owner O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\nbreak O O\nthis O O\n, O O\nyou O O\nhave O O\nto O O\nbreak O O\nthe O O\nowner/child O O\nrelation O O\n. O O\n\nLet O O\nall O O\ndialog Name Name\nwindows Name Name\nhave O O\nno O O\nowner O O\n.. O O\n. O O\nthan O O\nthey O O\nmay O O\nfloat O O\nfreely O O\n. O O\n\nBut O O\n: O O\nI O O\nwill O O\nexpect O O\nthe O O\nyou O O\nprogram O O\ndoes O O\nn't O O\nbehave O O\nbetter O O\n. O O\n\nEven O O\nworse O O\n. O O\n\nUser O O\nmight O O\nsearch O O\nwindows Name Name\nthat O O\nare O O\ndeep O O\nbelow O O\ncovered O O\nunder O O\nother O O\nwindows Name Name\n. O O\n\nAnd O O\nthey O O\nwill O O\nnever O O\nget O O\nin O O\nfront O O\n, O O\nwhen O O\nyour O O\nprogram O O\ngets O O\nactive O O\n. O O\n\nSee O O\nthe O O\ndescription O O\nabout O O\nparent/child/owned O O\nwindows Name Name\nhere O O\n. O O\n\nAlso O O\nthis O O\narticle O O\nmight O O\nbe O O\nhelpful O O\n. O O\n\nEdit O O\n: O O\nThe O O\nproblem O O\nis O O\nthat O O\ninternally O O\nthe O O\nMFC Name Name\nsets O O\nthe O O\nmain O O\nwindow Name Name\nas O O\nan O O\nowner O O\nif O O\nno O O\nparent O O\nis O O\ngiven O O\n. O O\n\nOnly O O\nthe O O\ncall O O\nto O O\nBOOL Name Name\nWnd Name Name\n:: Name Name\nCreateDlgIndirect(LPCDLGTEMPLATE Name Name\nlpDialogTemplate Name Name\n, Name Name\nCWnd Name Name\n* Name Name\npParentWnd Name Name\n, Name Name\nHINSTANCE Name Name\nhInst Name Name\n) Name Name\nallows O O\nto O O\nleave O O\npParentWnd Name Name\nNULL Name Name\n. O O\n\nSo O O\nyou O O\nmay O O\ncreate O O\nthe O O\nwindow Name Name\nas O O\nnormal O O\n, O O\nbut O O\nuse O O\nSetParent(NULL) Name Name\nafter O O\nit O O\nwas O O\ncreated O O\n. O O\n\nAgain O O\nthe O O\nMFC Name Name\nASSERTs O O\nthis O O\n. O O\n\nSO O O\nyou O O\nmay O O\nuse O O\nthe O O\nAPI Name Name\nfunction O O\nand O O\nthe O O\nhandle O O\nof O O\nyour O O\ndialog Name Name\n. O O\n\ni O O\nhave O O\nsome O O\nCheckBoxes Name Name\nwich O O\nare O O\nmade O O\nof O O\nmy O O\ndatabase O O\ntable Name Name\nnames O O\n\nnow O O\nlets O O\nsay O O\ni O O\nget O O\n10 O O\ncheckboxes Name Name\n( O O\nwith O O\ndifferent O O\nnames O O\nofc O O\n. O O\n) O O\n\nhow O O\ndo O O\ni O O\nknow O O\nwich O O\nof O O\nthem O O\nwas O O\nchecked O O\n? O O\n\ne.g O O\n. O O\nI O O\ncheck O O\nbox O O\nnr O O\n1.5.7 Name Name\nand O O\nclick O O\non O O\na O O\nbutton Name Name\n\" Name Name\nPrint Name Name\n\" Name Name\nhow O O\ndo O O\ni O O\nprint O O\nthem O O\nout O O\n? O O\n\nSystem.out.println Name Name\n( Name Name\n\" Name Name\nChecked Name Name\nitems Name Name\n: Name Name\n\" Name Name\n+check Name Name\n) Name Name\n; Name Name\n? O O\n\nYou O O\nneed O O\na O O\ndata O O\nstructure O O\nlike O O\na O O\nMap Name Name\nto O O\nmap O O\nbetween O O\nyour O O\ncheckboxes Name Name\nand O O\nthe O O\ntables Name Name\n.. O O\n. O O\n\nI O O\nusually O O\nwork O O\nwith O O\nSWT Name Name\nand O O\nyou O O\nhave O O\na O O\nmap O O\nin O O\neach O O\nGUI O O\ncomponent O O\nto O O\nstore O O\nwhatever O O\nyou O O\nwant O O\n, O O\nbut O O\nas O O\nfar O O\nas O O\nI O O\nknow O O\n, O O\nyou O O\ndo O O\nn't O O\nhave O O\nthis O O\nin O O\nawt Name Name\n, O O\nso O O\nyou O O\nneed O O\nto O O\ndo O O\nthis O O\nmanually O O\n.. O O\n. O O\n( O O\nI O O\nassume O O\nyou O O\nare O O\nusing O O\nawt Name Name\n, O O\nalthough O O\nCheckBox Name Name\nclass O O\nin O O\nawt Name Name\nis O O\nactually O O\nCheckbox Name Name\nnot O O\nCheckBox Name Name\n!! O O\n! O O\n) O O\n\nBottom O O\nline O O\nis O O\n, O O\nyou O O\nneed O O\nto O O\nbind O O\nsome O O\ndata O O\nto O O\nyour O O\nGUI O O\ncomponents O O\nso O O\nyou O O\ncan O O\nrecognize O O\nthem O O\nlater O O\nin O O\nyour O O\ncode O O\n.. O O\n. O O\n\nI O O\nwould O O\nuse O O\na O O\nmap Name Name\n: O O\n\nAnd O O\nbuild O O\nthem O O\nup O O\nas O O\nyou O O\ncreate O O\nthe O O\nchecks O O\n.. O O\n. O O\n\nUse O O\nCheckboxGroup Name Name\n. O O\n\nadd O O\na O O\nCheckboxGroup Name Name\nas O O\nfollows O O\n: O O\n\nand O O\nyou O O\nget O O\nthe O O\nselected O O\nvalue O O\n. O O\n\nFor O O\nmy O O\nexperiment O O\nI O O\nneed O O\nto O O\ndefine O O\nspecific O O\nsimilarity O O\nmetrics O O\nfor O O\neach O O\nfield O O\nof O O\nmy O O\ncollection O O\ndocuments O O\n. O O\n\nFor O O\nexample O O\n, O O\nI O O\nneed O O\nto O O\nmeasure O O\nthe O O\nDescription Name Name\nfield O O\nsimilarity O O\nwith O O\ntf.idf Name Name\n, O O\nand O O\nGeolocation Name Name\nfields O O\nwith O O\nHarvesine Name Name\ndistance. Name Name\n. O O\netc O O\n.. O O\n. O O\n\nI O O\n'm O O\nnow O O\nstudying O O\nthe O O\nSimilarity Name Name\nclass O O\n. O O\n\nI O O\nwas O O\nwondering O O\nif O O\nthere O O\nis O O\nany O O\ngood O O\ntutorial O O\nor O O\nexample O O\nabout O O\nthis O O\nto O O\nprocede O O\nfaster O O\n.. O O\n. O O\n\nthanks O O\n\nEDIT O O\n: O O\n\nIIUC O O\n, O O\nyou O O\nhave O O\na O O\nsimilarity O O\nformula O O\nper O O\nfield O O\n, O O\nand O O\nyou O O\nwant O O\nto O O\nuse O O\nit O O\nper O O\ndocument O O\n, O O\nrunning O O\nagainst O O\nall O O\nother O O\ndocuments O O\n. O O\n\nYou O O\ncan O O\nuse O O\nseveral O O\noptions O O\n, O O\nall O O\nat O O\nindexing O O\ntime O O\n: O O\n\nExtend O O\nthe O O\nDefaultSimilarity Name Name\nclass O O\n. O O\n\nExtend O O\nthe O O\nSimilarityDelegator Name Name\nclass O O\n, O O\nif O O\nyou O O\nonly O O\nneed O O\nto O O\nmodify O O\npart O O\nof O O\nthe O O\nmethods O O\n. O O\n\nIn O O\nboth O O\nmethods O O\n, O O\nyou O O\nmay O O\nmake O O\nuse O O\nof O O\npayloads O O\nto O O\nstore O O\nterm-specific O O\ninformation O O\n( O O\ncould O O\nbe O O\nuseful O O\nfor O O\nthe O O\nlat-long O O\ndata O O\n) O O\n. O O\n\nAfter O O\nimplementing O O\na O O\nSimilarity Name Name\nclass O O\nusing O O\none O O\nof O O\nthese O O\nmethods O O\n, O O\nuse O O\nSimilarity.setDefault(mySimilarity) Name Name\nto O O\nset O O\nthis O O\nas O O\nthe O O\nSimilarity Name Name\ninstance O O\nfor O O\nindexing O O\nand O O\nsearching O O\n. O O\n\nOnly O O\nthen O O\nindex O O\nyour O O\ntext O O\ncorpus O O\n, O O\nwhich O O\nyou O O\ncan O O\nsearch O O\nlater O O\n- O O\nyou O O\nwill O O\nprobably O O\nhave O O\nto O O\nextend O O\nthe O O\nSearcher Name Name\nclass O O\nas O O\nwell O O\nto O O\nget O O\nthe O O\nraw O O\nsimilarity O O\n. O O\n\nHaving O O\nsaid O O\nthat O O\n, O O\nI O O\nbelieve O O\nthis O O\napproach O O\nis O O\nwrong O O\nfor O O\nyour O O\nuse O O\ncase O O\n- O O\nLucene Name Name\nis O O\noptimized O O\nto O O\nget O O\na O O\nfew O O\nsimilar O O\ndocuments O O\n, O O\nnot O O\na O O\nscore O O\nfor O O\nevery O O\none O O\n, O O\nso O O\nI O O\npredict O O\nthe O O\nruntime O O\nwill O O\nbe O O\nprohibitive O O\n- O O\nHope O O\nI O O\nam O O\nwrong O O\n, O O\nbut O O\nnevertheless O O\nI O O\nsuggest O O\nyou O O\nread O O\nMining O O\nof O O\nMassive O O\nDatasets O O\nfor O O\na O O\nbetter O O\napproach O O\n- O O\nmin Name Name\nhashes Name Name\nand O O\nshingling Name Name\n. O O\n\nGood O O\nluck O O\n. O O\n\nPatrick O O\n, O O\nI O O\nwill O O\nfirst O O\nquote O O\nGrant O O\nIngersoll O O\nabout O O\nmodifying O O\nthe O O\nSimilarity Name Name\nclass O O\n: O O\n\" O O\nHere O O\nbe O O\nDragons O O\n\" O O\n. O O\n\nCustomizing O O\nLucene Name Name\n's O O\nSimilarity Name Name\nclass O O\nis O O\nhard O O\n. O O\n\nI O O\nhave O O\ndone O O\nthis O O\n. O O\n\nIt O O\nis O O\nnot O O\nfun O O\n. O O\n\nOnly O O\ndo O O\nthis O O\nif O O\nyou O O\nabsolutely O O\nhave O O\nto O O\n. O O\n\nI O O\nsuggest O O\nyou O O\nshould O O\nfirst O O\nread O O\nGrant O O\n's O O\nspatial O O\nsearch O O\npaper O O\n, O O\nhis O O\nfindability O O\npaper O O\nand O O\nhis O O\n' O O\ndebugging O O\nrelevance O O\n' O O\npaper O O\n. O O\n\nThese O O\nshow O O\nother O O\nways O O\nto O O\nget O O\nhits O O\nas O O\nneeded O O\n. O O\n\nI O O\nhave O O\n.svc Name Name\nwebservice O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nadd O O\nto O O\nmy O O\nWebservice O O\ncertficiate O O\nand O O\nto O O\nbrowse O O\nwith O O\nHTTPS O O\ninstead O O\nHTTP O O\n. O O\n\nAfter O O\nI O O\nwas O O\nadded O O\nthe O O\ncertificate O O\nI O O\ngot O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\nAnd O O\nwhen O O\nI O O\n'm O O\ntrying O O\nto O O\naccess O O\nto O O\nmy O O\nWS O O\nwithout O O\nHTTPS O O\nits O O\nwork O O\nfine O O\n. O O\n\nhttp://localhost/myws.svc/ O O\n- O O\nWorks O O\n\nhttps://localhost/myws.svc/ O O\n- O O\nError O O\n\nHow O O\ncan O O\nI O O\nsolve O O\nit O O\n? O O\n\nThanks O O\n! O O\n\nI O O\nam O O\ntrying O O\nto O O\ncreate O O\nan O O\nadd-in O O\nby O O\nusing O O\nthe O O\narticle O O\nbelow O O\n\nhttp://blogs.microsoft.co.il/blogs/shair/archive/2008/07/28/how-to-create-sql-server-management-studio-addin.aspx O O\n\nI O O\nknow O O\nthis O O\narticle O O\nis O O\na O O\nbit O O\noutdated O O\nbut O O\ni O O\nmanaged O O\nto O O\nget O O\nas O O\nfar O O\nas O O\nthis O O\narticle O O\nagain O O\n\nhttp://jcooney.net/post/2007/11/26/The-Black-Art-of-Writing-a-SQL-Server-Management-Studio-2005-Add-In.aspx O O\n\nhere O O\nonce O O\ni O O\nreached O O\nwhen O O\nthe O O\npart O O\nadding O O\nthe O O\nexternal O O\nprogram O O\nto O O\nrun O O\nupon O O\ndebug O O\ni O O\nwas O O\nmet O O\nwith O O\nthis O O\nnasty O O\nerror O O\n\nis O O\nthere O O\nany O O\ngood O O\narticle O O\nto O O\nshow O O\nhow O O\nto O O\ndo O O\nthe O O\nadd-in O O\nusing O O\nthe O O\nVS2010 Name Name\nfor O O\nthe O O\nSMSS2008r2 Name Name\n? O O\n\nDo O O\nyou O O\nhave O O\na O O\nproblem O O\nstarting O O\nthe O O\ndebug O O\n? O O\n\nYou O O\nhave O O\nto O O\nspecify O O\nSSMS Name Name\nwithout O O\nany O O\nparameters O O\n- O O\nit O O\nmust O O\nbe O O\nenough O O\n. O O\n\nBut O O\nI O O\nhave O O\n\" O O\nbad O O\nnews O O\n\" O O\nfor O O\nyou O O\n: O O\nI O O\nhave O O\nalso O O\ndeveloped O O\nan O O\nadd-in O O\nand O O\nduring O O\ndevelopment O O\nthe O O\nproblem O O\nthat O O\nI O O\nhave O O\nfaced O O\nwas O O\n: O O\n\nyou O O\ncan O O\ndebug O O\nSSMS2008 Name Name\nAdd-In O O\nonly O O\nfrom O O\nVS2008 Name Name\n( O O\nfull O O\nor O O\nexpress O O\n) O O\nand O O\nyou O O\ncan O O\ndefbug O O\nSSMS2012 Name Name\nadd-in O O\nonly O O\nfrom O O\nVS2010 Name Name\n\nIf O O\nyou O O\n\" O O\ncross O O\n\" O O\nversions O O\n, O O\nyou O O\nhave O O\nto O O\nput O O\na O O\nmessage Name Name\nbox Name Name\nin O O\nyour O O\nadd-in O O\nand O O\nthen O O\nattach O O\nto O O\nprocess O O\n. O O\n\nCheck O O\nmy O O\nadd-in O O\n- O O\nssmsboost Name Name\n- O O\nmaybe O O\nyou O O\nwill O O\nnot O O\nneed O O\nto O O\nwrite O O\nyour O O\nown O O\n:) O O\nNew O O\nfeature O O\nrequests O O\nare O O\nwelcome O O\n. O O\n\nAlso O O\ncheck O O\nssms Name Name\ntools O O\npack O O\n- O O\nit O O\nis O O\nalso O O\nvery O O\npopular O O\none O O\n. O O\n\nI O O\nam O O\ndoing O O\nsome O O\nresearch O O\ninto O O\nthe O O\nMemento Name Name\nPattern Name Name\nand O O\nI O O\nam O O\ngenerally O O\nnew O O\nto O O\nbehavioural O O\npatterns O O\nand O O\nwith O O\nmy O O\nresearch O O\nI O O\nhave O O\nbeen O O\ngetting O O\npretty O O\nconfused O O\n. O O\n\nOne O O\nof O O\nthe O O\nmain O O\nthings O O\nI O O\nhave O O\nbeen O O\ngetting O O\nconfused O O\non O O\nis O O\nthe O O\ndifferences O O\nbetween O O\nthe O O\nMemento Name Name\nPattern Name Name\nand O O\nSerialization O O\n. O O\n\nFrom O O\nwhat O O\nI O O\ncan O O\ngather O O\nboth O O\ncan O O\nbe O O\nused O O\nto O O\nstore O O\nobjects O O\nand O O\nhave O O\nthem O O\nbrought O O\nback O O\nat O O\na O O\nlater O O\ndate O O\nbut O O\nI O O\nhave O O\nnot O O\nbeen O O\nable O O\nto O O\nfind O O\na O O\nclear O O\ncut O O\nanswer O O\non O O\nwhat O O\nthe O O\nkey O O\ndifferences O O\nbetween O O\nthem O O\nare O O\n, O O\nmaybe O O\nI O O\nhave O O\nmissed O O\nsomething O O\nin O O\nmy O O\nresearch O O\nbut O O\nI O O\nwas O O\nwondering O O\nif O O\nanyone O O\ncould O O\nshed O O\nsome O O\nlight O O\non O O\nwhat O O\nthe O O\ndifferences O O\nare O O\nbetween O O\nthe O O\ntwo O O\n. O O\n\nThanks O O\n\nTypically O O\nthe O O\nMemento Name Name\npattern Name Name\nis O O\nused O O\nto O O\nimplement O O\nroll-back/save O O\npoint O O\nsupport O O\n. O O\n\nFor O O\nexample O O\nI O O\nmight O O\nwant O O\nto O O\nmark O O\nthe O O\nstate O O\nof O O\nan O O\nobject O O\nat O O\na O O\npoint O O\nin O O\ntime O O\n, O O\ndo O O\nsome O O\nwork O O\nand O O\nthen O O\ndecide O O\nto O O\nrevert O O\nthat O O\nobject O O\nback O O\nto O O\nthe O O\npoint O O\nat O O\nwhich O O\nis O O\nwas O O\nmarked O O\n. O O\n\nThe O O\nimplementation O O\nof O O\na O O\nMemento Name Name\npattern Name Name\ncould O O\nuse O O\nserialisation O O\n, O O\nwhich O O\nwould O O\ninvolve O O\nsaving O O\nthe O O\ncontents O O\nof O O\nthe O O\nobject O O\ninto O O\na O O\nbyte[] Name Name\nand O O\nkeeping O O\nin O O\nmemory O O\nor O O\nwriting O O\nto O O\ndisk Name Name\n. O O\n\nWhen O O\nreverting O O\nthe O O\ncontent O O\nof O O\nthe O O\nobject O O\nwould O O\nbe O O\nrebuilt O O\nfrom O O\nthe O O\nserialised O O\ncopy O O\n. O O\n\nConversely O O\nI O O\ncould O O\nimplement O O\na O O\nMemento Name Name\npattern Name Name\nby O O\ncloning O O\nthe O O\nobject O O\nin O O\nmemory O O\nand O O\nkeeping O O\na O O\nreference O O\nto O O\nthe O O\ncopy O O\nand O O\nthen O O\ncopying O O\nthe O O\nstate O O\nback O O\nif O O\nthe O O\nobject O O\nneeds O O\nreverting O O\n. O O\n\nThis O O\nmethod O O\ndoes O O\nn't O O\nuse O O\nserialisation O O\n. O O\n\nThe O O\nMemento Name Name\npattern Name Name\nis O O\nan O O\nOO Name Name\ndesign Name Name\npattern Name Name\nused O O\nto O O\nkeep O O\nprevious O O\nstates O O\nof O O\nan O O\nobject O O\nin O O\nmemory O O\n. O O\n\nIt O O\n's O O\nuseful O O\nto O O\nimplement O O\nan O O\n\" O O\nUndo O O\n\" O O\noperation O O\n, O O\nfor O O\nexample O O\n. O O\n\nSerialization O O\nis O O\nthe O O\nprocess O O\nof O O\ntransforming O O\na O O\ngraph Name Name\nof O O\nobjects O O\nto O O\na O O\nbyte Name Name\narray Name Name\n, O O\nin O O\norder O O\nto O O\nsave O O\nit O O\non O O\ndisk Name Name\n, O O\nor O O\nsend O O\nit O O\nto O O\nanother O O\nJVM Name Name\nover O O\nthe O O\nnetwork O O\n, O O\nfor O O\nexample O O\n. O O\n\nThey O O\ndo O O\nn't O O\nhave O O\nmuch O O\nin O O\ncommon O O\n. O O\n\nI O O\nhave O O\ndifferent O O\n<select> Name Name\nin O O\na O O\nng-repeat Name Name\ndiv Name Name\n. O O\n\nWhat O O\nI O O\nwant O O\nis O O\nto O O\navoid O O\nusers O O\nselect O O\nseveral O O\ntimes O O\na O O\nsame O O\noption O O\n. O O\n\nI O O\nused O O\nthe O O\nfilter O O\nlike O O\nthis O O\n: O O\n\nThe O O\nfilter O O\nworks O O\nlike O O\nI O O\nwant O O\n( O O\nI O O\ntested O O\nit O O\nseparately O O\n) O O\n. O O\n\nBut O O\nthe O O\nresult O O\nis O O\nnot O O\ngood O O\n. O O\n\nWhen O O\nthe O O\nfilter O O\nis O O\nactive O O\n, O O\noptions O O\nin O O\ndifferent O O\nselect O O\nhave O O\nto O O\nshow O O\nonly O O\n\" O O\nfree O O\n\" O O\nattributes O O\n( O O\nit O O\nmeans O O\n, O O\nattributes O O\nwhich O O\nare O O\nnot O O\nyet O O\nselected O O\n) O O\n. O O\n\nHere O O\nis O O\na O O\nDemo O O\nwhich O O\nis O O\nmore O O\nexplicit O O\nI O O\nsuppose O O\n. O O\n\nI O O\nfound O O\nthat O O\nstd::condition_variable Name Name\nis O O\nvery O O\ndifficult O O\nto O O\nuse O O\ndue O O\nto O O\nspurious O O\nwakeups O O\n. O O\n\nSo O O\nsometimes O O\nI O O\nneed O O\nto O O\nset O O\na O O\nflags O O\nsuch O O\nas O O\n: O O\n\nI O O\nset O O\nis_ready Name Name\nto O O\ntrue O O\nbefore O O\nI O O\ncall O O\nnotify Name Name\n( O O\nnotify_one() Name Name\nor O O\nnotify_all()) Name Name\n, O O\nand O O\nthen O O\nI O O\nwait O O\n: O O\n\nIs O O\nthere O O\nany O O\nreason O O\nthat O O\nI O O\nshould O O\nn't O O\njust O O\ndo O O\nthis O O\n: O O\n( O O\nEdit O O\n: O O\nOk O O\n, O O\nthis O O\nis O O\nreally O O\na O O\nbad O O\nidea O O\n. O O\n) O O\n\nAnd O O\nif O O\ncondition_variable Name Name\nhad O O\nchosen O O\na O O\nwaiting O O\nduration O O\n( O O\nI O O\ndo O O\nn't O O\nknow O O\nwhether O O\nthis O O\nis O O\ntrue O O\nor O O\nnot O O\n) O O\n, O O\nI O O\nprefer O O\nchoose O O\nit O O\nmyself O O\n. O O\n\nThe O O\npurpose O O\nof O O\nstd::condition_variable Name Name\nis O O\nto O O\nwait O O\nfor O O\nsome O O\ncondition O O\nto O O\nbecome O O\ntrue Name Name\n. O O\n\nIt O O\nis O O\nnot O O\ndesigned O O\nto O O\nbe O O\njust O O\na O O\nreceiver O O\nof O O\na O O\nnotify Name Name\n. O O\n\nYou O O\nmight O O\nuse O O\nit O O\n, O O\nfor O O\nexample O O\n, O O\nwhen O O\na O O\nconsumer O O\nthread O O\nneeds O O\nto O O\nwait O O\nfor O O\na O O\nqueue Name Name\nto O O\nbecome O O\nnon-empty O O\n. O O\n\nThe O O\nconsumer O O\n( O O\nget_from_queue Name Name\n) O O\nis O O\nnot O O\nwaiting O O\nfor O O\nthe O O\ncondition Name Name\nvariable Name Name\n, O O\nthey O O\nare O O\nwaiting O O\nfor O O\nthe O O\ncondition O O\nthe_queue.empty() Name Name\n. O O\n\nThe O O\ncondition Name Name\nvariable Name Name\ngives O O\nyou O O\nthe O O\nway O O\nto O O\nput O O\nthem O O\nto O O\nsleep O O\nwhile O O\nthey O O\nare O O\nwaiting O O\n, O O\nsimultaneously O O\nreleasing O O\nthe O O\nmutex Name Name\nand O O\ndoing O O\nso O O\nin O O\na O O\nway O O\nthat O O\navoids O O\nrace O O\nconditions O O\nwhere O O\nyou O O\nmiss O O\nwake O O\nups O O\n. O O\n\nThe O O\ncondition O O\nyou O O\nare O O\nwaiting O O\non O O\nshould O O\nbe O O\nprotected O O\nby O O\na O O\nmutex Name Name\n( O O\nthe O O\none O O\nyou O O\nrelease O O\nwhen O O\nyou O O\nwait O O\non O O\nthe O O\ncondition Name Name\nvariable Name Name\n. O O\n) O O\n\nThis O O\nmeans O O\nthat O O\nthe O O\ncondition O O\nrarely O O\n( O O\nif O O\never O O\n) O O\nneeds O O\nto O O\nbe O O\nan O O\natomic Name Name\n. O O\n\nYou O O\nare O O\nalways O O\naccessing O O\nit O O\nfrom O O\nwithin O O\na O O\nmutex Name Name\n. O O\n\nYou O O\ncan O O\ncode O O\nthis O O\neither O O\nway O O\n: O O\n\nUsing O O\natomics Name Name\nand O O\na O O\npolling O O\nloop O O\n. O O\n\nUsing O O\na O O\ncondition_variable Name Name\n. O O\n\nI O O\n've O O\ncoded O O\nit O O\nboth O O\nways O O\nfor O O\nyou O O\nbelow O O\n. O O\n\nOn O O\nmy O O\nsystem O O\nI O O\ncan O O\nmonitor O O\nin O O\nreal O O\ntime O O\nhow O O\nmuch O O\ncpu Name Name\nany O O\ngiven O O\nprocess O O\nis O O\nusing O O\n. O O\n\nFirst O O\nwith O O\nthe O O\npolling O O\nloop O O\n: O O\n\nFor O O\nme O O\nthis O O\ntakes O O\n30 O O\nseconds O O\nto O O\nexecute O O\n, O O\nand O O\nwhile O O\nexecuting O O\nthe O O\nprocess O O\ntakes O O\nabout O O\n99.6 O O\n% O O\nof O O\na O O\ncpu Name Name\n. O O\n\nAlternatively O O\nwith O O\na O O\ncondition_variable Name Name\n: O O\n\nThis O O\nhas O O\nthe O O\nexact O O\nsame O O\nbehavior O O\nexcept O O\nthat O O\nduring O O\nthe O O\n30 O O\nsecond O O\nexecution O O\n, O O\nthe O O\nprocess O O\nis O O\ntaking O O\n0.0 O O\n% O O\ncpu Name Name\n. O O\n\nIf O O\nyou O O\n're O O\nwriting O O\nan O O\napp O O\nthat O O\nmight O O\nexecute O O\non O O\na O O\nbattery Name Name\npowered O O\ndevice O O\n, O O\nthe O O\nlatter O O\nis O O\nnearly O O\ninfinitely O O\neasier O O\non O O\nthe O O\nbattery Name Name\n. O O\n\nNow O O\nadmittedly O O\n, O O\nif O O\nyou O O\nhad O O\na O O\nvery O O\npoor O O\nimplementation O O\nof O O\nstd::condition_variable Name Name\n, O O\nit O O\ncould O O\nhave O O\nthe O O\nsame O O\ninefficiency O O\nas O O\nthe O O\npolling O O\nloop O O\n. O O\n\nHowever O O\nin O O\npractice O O\nsuch O O\na O O\nvendor O O\nought O O\nto O O\ngo O O\nout O O\nof O O\nbusiness O O\nfairly O O\nquickly O O\n. O O\n\nUpdate O O\n\nFor O O\ngrins O O\nI O O\naugmented O O\nmy O O\ncondition_variable Name Name\nwait O O\nloop O O\nwith O O\na O O\nspurious O O\nwakeup O O\ndetector O O\n. O O\n\nI O O\nran O O\nit O O\nagain O O\n, O O\nand O O\nit O O\ndid O O\nnot O O\nprint O O\nout O O\nanything O O\n. O O\n\nNot O O\none O O\nspurious O O\nwakeup O O\n. O O\n\nThat O O\nis O O\nof O O\ncourse O O\nnot O O\nguaranteed O O\n. O O\n\nBut O O\nit O O\ndoes O O\ndemonstrate O O\nwhat O O\na O O\nquality O O\nimplementation O O\ncan O O\nachieve O O\n. O O\n\nI O O\nhave O O\n5000 O O\ndata O O\nin O O\nDB O O\ntable Name Name\n, O O\nand O O\nI O O\nwant O O\nto O O\napply O O\njQuery Name Name\nAutosuggestion O O\nFilter O O\non O O\nfrontend O O\nand O O\nfor O O\nthis O O\nrequirement O O\nimplemented O O\njs Name Name\n& O O\nCSS Name Name\n\nselect2.css Name Name\nand O O\nselect2.js Name Name\nwith O O\njquery-2.1.1.js Name Name\n. O O\n\nBut O O\nunfortunately O O\nafter O O\nimplementing O O\nand O O\nwhen O O\nI O O\nam O O\ntrying O O\nto O O\naccess O O\nAutosuggestion Name Name\nFilter Name Name\nfrom O O\nfront-end O O\n, O O\nhere O O\nI O O\nfound O O\ndelay O O\nis O O\nmore O O\nso O O\ncan O O\nanyone O O\nsuggest O O\nme O O\nso O O\nthat O O\nit O O\nwill O O\nload O O\nvery O O\nfast O O\nand O O\nno O O\ndelay O O\n. O O\n\nThanks O O\n! O O\n\nAre O O\nyou O O\nlimiting O O\nthe O O\nnumber O O\nof O O\nrecords O O\nthat O O\nare O O\ngoing O O\nto O O\nthe O O\nfront-end O O\n? O O\n\nQuery O O\nyour O O\ndatabase O O\nonly O O\nfor O O\nthe O O\ntop O O\n10 O O\nrecords O O\nand O O\nsend O O\nonly O O\nthese O O\nrecords O O\nto O O\nthe O O\nFront-End O O\n. O O\n\nBreak O O\ndown O O\nyour O O\nresult O O\nfrom O O\nDB O O\nin O O\nto O O\nseparate O O\nlists Name Name\nlike O O\ni O O\nwill O O\nsay O O\nin O O\nalphabetical O O\norder O O\n. O O\n\nAnd O O\nif O O\nyou O O\nare O O\nsure O O\nthat O O\n5000 O O\nrecord O O\nare O O\nonly O O\ngoing O O\nto O O\nbe O O\nused O O\nfor O O\ncorresponding O O\nrequest O O\nthen O O\ncache O O\nit O O\n. O O\n\nSo O O\nnow O O\nchallenge O O\nis O O\nto O O\nsee O O\nthe O O\nsearch O O\nstring Name Name\nand O O\nfetch O O\nthe O O\nresult O O\nfrom O O\nthe O O\ncorresponding O O\nlist Name Name\n. O O\n\nHope O O\nit O O\ncan O O\nhelp O O\nyou O O\n. O O\n\nI O O\n'm O O\nreally O O\nbad O O\nwith O O\nhtml/css Name Name\n, O O\nso O O\nI O O\n'm O O\njust O O\nwondering O O\nif O O\nI O O\ncan O O\nget O O\nyour O O\nhelp O O\n. O O\n\nHere O O\n's O O\na O O\nfiddle Name Name\nof O O\nthis O O\ntable Name Name\nfiddle Name Name\n. O O\n\nYou O O\ncan O O\nsee O O\nthat O O\neach O O\nof O O\nthe O O\ntd Name Name\nrows Name Name\nare O O\nthe O O\nsame O O\nwidth Name Name\n. O O\n\nHowever O O\n, O O\nI O O\nwant O O\n, O O\nfor O O\nexample O O\n, O O\nto O O\nhave O O\nthe O O\ncolumn Name Name\non O O\nthe O O\nleft O O\n200 Name Name\npx Name Name\n, O O\nand O O\nthe O O\ncolumn Name Name\non O O\nthe O O\nright O O\n50 Name Name\npx Name Name\n. O O\n\nWhat O O\n's O O\nthe O O\nmost O O\nefficient O O\nway O O\nto O O\nachieve O O\nthat O O\nif O O\nI O O\n'm O O\ngoing O O\nto O O\nhave O O\na O O\nlot O O\nof O O\nrows Name Name\n? O O\n\nCSS Name Name\n\nYou O O\ncan O O\ndo O O\nthis O O\nby O O\nwriting O O\nan O O\ninline O O\nstyle Name Name\ninto O O\nyour O O\nHTML Name Name\nmarkup O O\n. O O\n\nKeep O O\nin O O\nmind O O\nthat O O\nyou O O\ndo O O\nn't O O\nneed O O\nto O O\nset O O\nthe O O\nstyle O O\non O O\nevery O O\n<td>, Name Name\njust O O\non O O\nthe O O\n<th> Name Name\n. O O\n\nAll O O\nof O O\nthe O O\nabove O O\nanswers O O\nwould O O\nwork O O\n, O O\nbut O O\nI O O\nwould O O\nprefer O O\nto O O\nset O O\na O O\nclass O O\non O O\nthe O O\n<th> Name Name\nand O O\napply O O\nthe O O\nwidth Name Name\nstyles O O\nthat O O\nway O O\n. O O\n\nAnd O O\nCSS Name Name\n: O O\n\nJust O O\nmy O O\nstyle O O\n. O O\n\nI O O\n'm O O\nnot O O\na O O\nfan O O\nof O O\ninline O O\nstyles O O\n, O O\njust O O\nfor O O\nthe O O\nsimple O O\nfact O O\nyou O O\nMAY O O\nwant O O\nto O O\nstyle O O\nthe O O\nheaders O O\ndifferently O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nneed O O\nthat O O\n, O O\ninline O O\nwould O O\nwork O O\nfine O O\n. O O\n\nHow O O\nto O O\nrefresh O O\nlaravel Name Name\nsession O O\nvariable O O\nsent O O\nby O O\ncontroller O O\n, O O\nmy O O\ncontroller O O\nis O O\n: O O\n\nand O O\nI O O\nam O O\nshowing O O\nthis O O\ndata O O\nin O O\nview O O\nas O O\n: O O\n\ni O O\nwant O O\nto O O\nrefresh O O\nthis O O\ndata O O\n( O O\ntables Name Name\n) O O\nevery O O\n2 O O\nseconds O O\n, O O\nhow O O\ncan O O\ni O O\ndo O O\nthat O O\n? O O\n\nI O O\nhave O O\nwritten O O\na O O\nC# Name Name\npowershell Name Name\ncmdlet O O\nthat O O\nfills O O\nup O O\ncustom O O\nobjects O O\nfrom O O\njson Name Name\nfile O O\n. O O\n\nNow O O\nI O O\nneed O O\nto O O\npass O O\nthe O O\nobject O O\nto O O\nother O O\nC# Name Name\ncmdlets O O\nthat O O\nfollow O O\n\nThanks O O\n\nCan O O\nit O O\nbe O O\nblocked O O\nwith O O\nan O O\nadblock O O\nlike O O\nAdblock Name Name\nPlus Name Name\nor O O\nothers O O\n.. O O\n. O O\n\nIt O O\ncan O O\nbe O O\nblocked O O\nthe O O\nsame O O\nway O O\nas O O\na O O\nbanner O O\nif O O\nit O O\n's O O\nURL O O\nmatches O O\nthe O O\nblack O O\nlist O O\ne.g O O\n. O O\nhttp://domain.com/ads/ Name Name\n... Name Name\n. O O\n\nSome O O\nversions O O\nof O O\nAdBlock Name Name\nallows O O\nto O O\nblock O O\nFlash Name Name\nembeds O O\nfrom O O\nroll-over O O\nmenu Name Name\n. O O\n\nSome O O\nbrowsers Name Name\n, O O\nexpecially O O\nmobile Name Name\nones O O\n, O O\ncan O O\ndisable O O\nall O O\nFlash Name Name\nembeds O O\nuntil O O\nuser O O\nmanually O O\nclicks O O\non O O\nparticular O O\nembed O O\nto O O\ndownload O O\nand O O\nstart O O\nit O O\n. O O\n\nMicrosoft Name Name\nannounced O O\nthe O O\navailability O O\nof O O\nAzure Name Name\nDocumentDB Name Name\nas O O\nfollows O O\n.. O O\n. O O\n\nI O O\nreally O O\nlike O O\nthe O O\n\" O O\ntransactional O O\nexecution O O\nof O O\nJavaScript Name Name\nlogic O O\n\" O O\n. O O\n\nSounds O O\nlike O O\nan O O\napproach O O\nsimilar O O\nto O O\nthat O O\nof O O\nPostgreSQL Name Name\nNoSQL Name Name\n. O O\n\nAnyone O O\nknow O O\nwhat O O\nis O O\nthe O O\ntechnological O O\nbasis O O\nfor O O\nthe O O\nAzure Name Name\nDocumentDB Name Name\nservice O O\n? O O\n\nSQL Name Name\nServer Name Name\n? O O\n\nDocumentDB Name Name\nhas O O\nbeen O O\nbuilt O O\nfrom O O\nthe O O\nground O O\nup O O\nas O O\nan O O\nentirely O O\nnew O O\ndatabase O O\nspecifically O O\ndesigned O O\nfor O O\nJSON Name Name\nand O O\none O O\nthat O O\nhas O O\ndeep O O\nintegration O O\nwith O O\nJavaScript Name Name\n. O O\n\nIt O O\ndoes O O\nnot O O\nshare O O\nanything O O\nwith O O\nSQL Name Name\nServer Name Name\n. O O\n\nUsing O O\na O O\nKnockBack Name Name\nViewModel Name Name\n, O O\nis O O\nthere O O\na O O\nway O O\nto O O\ncreate O O\na O O\ncomputed O O\nobservable O O\nfrom O O\nthe O O\nunderlying O O\nBackbone Name Name\nmodel O O\n's O O\nmethods O O\n? O O\n\nAs O O\nan O O\nexample O O\n, O O\nin O O\njavascript Name Name\n: O O\n\nand O O\nin O O\nthe O O\nKnockout Name Name\nmarkup O O\n: O O\n\nWhen O O\nI O O\ntry O O\nto O O\nrun O O\nthis O O\n, O O\nI O O\nget O O\nthe O O\nerror O O\n: O O\n\nAm O O\nI O O\ndoing O O\nsomething O O\nwrong O O\n, O O\nor O O\ndo O O\nI O O\nneed O O\nto O O\ncreate O O\nthe O O\nobservable O O\nin O O\nthe O O\nViewModel Name Name\nmanually O O\n? O O\n\njsfiddles Name Name\n: O O\nwithout O O\nobservable O O\n, O O\nwith O O\nobservable O O\n\nA O O\nlittle O O\npreamble O O\n: O O\nKnockback Name Name\nputs O O\nthe O O\nmodel O O\nin O O\nMVVM Name Name\n, O O\nwhere O O\nKnockout Name Name\nis O O\nreally O O\njust O O\nVVM Name Name\n. O O\n\nKnockback Name Name\nalso O O\ngives O O\nyou O O\nsome O O\nautomatic O O\nsynchronization O O\nbetween O O\nthem O O\n, O O\nwhich O O\nis O O\nnice O O\n. O O\n\nBut O O\nyou O O\nstill O O\nneed O O\nto O O\nkeep O O\nin O O\nmind O O\nthat O O\nthe O O\nmodel O O\nand O O\nthe O O\nviewmodel Name Name\nare O O\ntwo O O\ndifferent O O\npieces O O\nof O O\nyour O O\napp O O\n. O O\n\nThe O O\nviewmodel Name Name\nis O O\nn't O O\njust O O\na O O\nKnockout Name Name\ncopy O O\nof O O\nthe O O\nBootstrap Name Name\nmodel O O\n. O O\n\nDo O O\nn't O O\nput O O\nviewmodel Name Name\npieces O O\nin O O\nthe O O\nmodel O O\n. O O\n\nSo O O\nyou O O\nneed O O\nto O O\ndecide O O\nwhether O O\nvalidation O O\nis O O\na O O\nviewmodel Name Name\nbehavior O O\nor O O\na O O\nmodel O O\nbehavior O O\n. O O\n\nI O O\nsay O O\nviewmodel Name Name\n, O O\nbecause O O\nyou O O\nwant O O\nto O O\nuse O O\nit O O\nin O O\nthe O O\nview O O\n. O O\n\nSo O O\nremove O O\nit O O\nfrom O O\nthe O O\nmodel O O\nand O O\ndefine O O\na O O\ncomputed O O\n. O O\n\nHowever O O\n, O O\nif O O\nyou O O\nwanted O O\nit O O\nto O O\nbe O O\npart O O\nof O O\nthe O O\nmodel O O\n, O O\nyou O O\nwould O O\nwant O O\nto O O\ndefine O O\nan O O\nattribute O O\n, O O\nnot O O\njust O O\na O O\nmethod O O\n, O O\nand O O\na O O\nmodel O O\nevent O O\nhandler O O\nthat O O\nwould O O\nupdate O O\nthe O O\nattribute O O\non O O\nchange O O\n. O O\n\nKnockback Name Name\nwill O O\ndutifully O O\ncopy O O\nthe O O\nattribute O O\ninto O O\nthe O O\nviewmodel Name Name\n, O O\nand O O\nyou O O\ncan O O\nuse O O\nit O O\nthere O O\n. O O\n\nHow O O\ncan O O\nI O O\nuse O O\nTCP O O\nKeep O O\nAlive O O\nconnection O O\noptions O O\non O O\npsql.exe Name Name\nrunning O O\non O O\nWindows Name Name\nconnecting O O\nto O O\nAWS Name Name\nRedshift Name Name\n? O O\n\nI O O\ntried O O\nusing O O\nthis O O\n: O O\nset Name Name\nPGOPTIONS='-c Name Name\ntcp_keepalives_idle Name Name\n= Name Name\n30 Name Name\n-c Name Name\ntcp_keepalives_interval Name Name\n= Name Name\n1 Name Name\n-c Name Name\ntcp_keepalives_count=10 Name Name\n' Name Name\n\nI O O\nget O O\nerrors O O\nfrom O O\nRedshift Name Name\n- O O\nunknown O O\nparameters O O\n. O O\n\nI O O\ntried O O\nWindows Name Name\nRegistry Name Name\nEditor Name Name\nto O O\nchange O O\nTCP O O\nKeep O O\nAlive O O\nparameters O O\n, O O\nwith O O\nreboot O O\n, O O\nno O O\neffect O O\n. O O\n\nI O O\nam O O\nnot O O\nable O O\nto O O\nrun O O\nvia O O\npsql Name Name\nany O O\nmoderately O O\nlong O O\nSQL Name Name\nstatement O O\nsuch O O\nas O O\nVacuum Name Name\n, O O\nCopy Name Name\n, O O\netc O O\n. O O\n\nI O O\ncan O O\ndo O O\nit O O\nvia O O\nJDBC Name Name\n, O O\nODBC Name Name\nand O O\nNpgSQL Name Name\nbut O O\nI O O\nprefer O O\nnot O O\nto O O\nwrite O O\na O O\nprogram O O\nevery O O\ntime O O\nI O O\nwant O O\nto O O\nsubmit O O\na O O\ncommand O O\nto O O\nRedshift Name Name\n. O O\n\nSo O O\npsql.exe Name Name\nseems O O\nto O O\nbe O O\nthe O O\neasiest O O\noption O O\n, O O\nexcept O O\nthat O O\nit O O\nonly O O\nworks O O\non O O\nshort O O\nqueries O O\n. O O\n\nthanks O O\n! O O\n! O O\n\nI O O\nam O O\nnew O O\non O O\nDraft-JS Name Name\nand O O\nable O O\nto O O\ncreate O O\na O O\ndecent O O\nenough O O\ntext Name Name\neditor Name Name\nfor O O\nmy O O\nconsumption O O\n, O O\nBut O O\nI O O\nneed O O\nto O O\nadd O O\na O O\nUL Name Name\nlist Name Name\nwith O O\nLI Name Name\nitems O O\nat O O\nthe O O\nbottom O O\nof O O\nmy O O\nTextarea Name Name\nby O O\ncoding O O\n. O O\n\nI O O\nhave O O\ntried O O\nusing O O\nImport O O\nHTML Name Name\nand O O\nthen O O\nadding O O\nmy O O\nHTML Name Name\ninto O O\nit O O\nand O O\nthen O O\nExporting O O\nit O O\nback O O\nto O O\nthe O O\neditor Name Name\nstate Name Name\n, O O\nBut O O\nUndo O O\nand O O\nRedo O O\nare O O\nnot O O\nworking O O\nlike O O\nthis O O\n. O O\n\nI O O\nmay O O\nsound O O\nstrange O O\nbut O O\nyour O O\nhelp O O\nwill O O\nbe O O\nhighly O O\nappreciated O O\nas O O\nI O O\nam O O\nunable O O\nto O O\nfind O O\ngood O O\nresources O O\nof O O\nDraft-JS Name Name\n\nMy O O\nCode O O\nfor O O\nadding O O\nhtml Name Name\nwhich O O\nI O O\nam O O\ncurrently O O\nusing O O\nis O O\n: O O\n\nIn O O\nthe O O\nabove O O\ncode O O\nI O O\nam O O\ntaking O O\nhtml Name Name\nfrom O O\nthe O O\neditor Name Name\nstate Name Name\nand O O\nthen O O\nappend O O\nthe O O\ndesired O O\nhtml Name Name\nstring Name Name\nand O O\nregenerate O O\nthe O O\ncontent Name Name\nstate Name Name\nfrom O O\nhtml Name Name\nand O O\nedit O O\nthe O O\neditor Name Name\nstate Name Name\n. O O\n\nThank O O\nYou. O O\n. O O\n\nI O O\nhave O O\nbelow O O\nquery O O\nin O O\nmysql Name Name\nwhere O O\nI O O\nwant O O\nto O O\ncheck O O\nif O O\nbranch Name Name\nid Name Name\nand O O\nyear Name Name\nof O O\nfinance Name Name\ntype Name Name\nfrom O O\nbranch_master Name Name\nare O O\nequal O O\nwith O O\nbranch Name Name\nid Name Name\nand O O\nyear Name Name\nof O O\nmanager Name Name\nthen O O\nupdate O O\nstatus Name Name\nin O O\nmanager Name Name\ntable Name Name\nagainst O O\nbranch Name Name\nid Name Name\nin O O\nmanager Name Name\n\nbut O O\ngetting O O\nerror O O\n\nThis O O\nis O O\na O O\ntypical O O\nMySQL Name Name\nthing O O\nand O O\ncan O O\nusually O O\nbe O O\ncircumvented O O\nby O O\nselecting O O\nfrom O O\nthe O O\ntable Name Name\nderived O O\n, O O\ni.e O O\n. O O\ninstead O O\nof O O\n\nuse O O\n\nThe O O\ncomplete O O\nstatement O O\n: O O\n\nTry O O\nto O O\nuse O O\nthe O O\nEXISTS Name Name\noperator O O\n: O O\n\nNote O O\n: O O\nThe O O\nquery O O\nuses O O\nan O O\nadditional O O\nnesting O O\nlevel O O\n, O O\nas O O\nproposed O O\nby O O\n@Thorsten O O\n, O O\nas O O\na O O\nmeans O O\nto O O\ncircumvent O O\nthe O O\nTable Name Name\nis O O\nspecified O O\ntwice O O\nerror O O\n. O O\n\nDemo O O\nhere O O\n\nOverview O O\n: O O\n\nI O O\nhave O O\nwritten O O\nan O O\napplication O O\nthat O O\nallows O O\na O O\nuser O O\nto O O\ndefine O O\na O O\nquery O O\n, O O\nsubmit O O\nit O O\nto O O\na O O\nserver Name Name\nand O O\nview O O\nthe O O\nresults O O\n. O O\n\nThe O O\nsoftware O O\ncan O O\nrun O O\non O O\nDB2 Name Name\nor O O\nMySQL Name Name\n. O O\n\nProblem O O\n: O O\n\nWe O O\n've O O\nhad O O\nissues O O\nin O O\nthe O O\nDB2 Name Name\nversion O O\nwhere O O\na O O\nuser O O\nhas O O\ntried O O\nto O O\nrun O O\na O O\nquery O O\n, O O\nand O O\nfound O O\nthat O O\nit O O\nhas O O\nfailed O O\nbecause O O\ntheir O O\nuser O O\nprofile O O\nhas O O\nbeen O O\ndisabled O O\n. O O\n\nIn O O\norder O O\nto O O\nrun O O\na O O\nquery O O\non O O\nDB2 Name Name\n( O O\non O O\nan O O\nIBM Name Name\ni) Name Name\n, O O\nthe O O\nuser O O\n's O O\nprofile O O\nname O O\nand O O\npassword O O\nare O O\nprovided O O\nin O O\nthe O O\nconnection O O\nstring Name Name\n. O O\n\nSecurity O O\non O O\nthe O O\nserver O O\ncan O O\nspecify O O\nthat O O\na O O\nuser O O\n's O O\nprofile O O\nis O O\ndisabled O O\nafter O O\ntwo O O\nor O O\nthree O O\nincorrect O O\nlogins O O\n. O O\n\nQuestion O O\n: O O\n\nI O O\n've O O\ndebugged O O\nthe O O\napplication O O\nand O O\nfound O O\nthat O O\nthe O O\nproblem O O\nis O O\ndown O O\nto O O\nthe O O\nquery O O\nbeing O O\nsubmitted O O\ntwice O O\n. O O\n\nIf O O\nthe O O\nuser O O\n's O O\npassword O O\nis O O\nwrong O O\n, O O\nthen O O\nof O O\ncourse O O\n, O O\nthis O O\nis O O\nhaving O O\nthe O O\nknock-on O O\neffect O O\nof O O\ndisabling O O\ntheir O O\nprofile O O\n. O O\n\nOn O O\nfurther O O\ninspection O O\n, O O\nwhen O O\nI O O\n've O O\ninspected O O\nthe O O\nlogs Name Name\non O O\nthe O O\nserver Name Name\n( O O\nwhile O O\ndebugging O O\nline O O\nby O O\nline O O\n) O O\n, O O\nI O O\n've O O\nfound O O\nthat O O\nthe O O\nquery O O\nis O O\nsubmitted O O\nto O O\nthe O O\nserver O O\nwhen O O\nyou O O\ncall O O\nTADOQuery.sql.add() Name Name\n, O O\nand O O\nagain O O\nwhen O O\nthe O O\nTADOQuery Name Name\n's O O\nactive Name Name\npropery O O\nis O O\nset O O\nto O O\ntrue Name Name\n( O O\nwhich O O\nis O O\nthe O O\npoint O O\nat O O\nwhich O O\nI O O\nwould O O\nexpect O O\nthe O O\nquery O O\nto O O\nbe O O\nsubmitted O O\nto O O\nthe O O\nserver Name Name\n) O O\n. O O\n\nHere O O\n's O O\nan O O\nexample O O\nof O O\nthe O O\ncode O O\nthat O O\nI O O\n'm O O\nusing O O\nto O O\nrun O O\nthe O O\nquery O O\n: O O\n\nMy O O\nquestion O O\nis O O\ntherefore O O\nquite O O\nsimple O O\n: O O\n\n1 O O\n. O O\nWhy O O\ndoes O O\nthe O O\nTADOQuery.sql.add() Name Name\nmethod O O\nsubmit O O\nthe O O\nquery O O\n( O O\nwhen O O\nit O O\nshould O O\njust O O\nbe O O\nadding O O\nthe O O\nsql Name Name\nto O O\nthe O O\nTADOQuery Name Name\n's O O\nsql Name Name\nproperty O O\n) O O\n? O O\n\n2 O O\n. O O\nWhat O O\ncan O O\nI O O\ndo O O\nto O O\nprevent O O\nthis O O\n? O O\n\ni.e O O\n. O O\nis O O\nthere O O\nany O O\nway O O\nto O O\nprevent O O\nthe O O\nsql Name Name\nbeing O O\nsubmitted O O\nwhen O O\nI O O\ncall O O\nthe O O\nadd() Name Name\nmethod O O\n? O O\n\nFor O O\nthose O O\nof O O\nyou O O\nthat O O\nwould O O\nlike O O\nextra O O\ninformation O O\nabout O O\nthe O O\nlogs Name Name\n, O O\nthe O O\nexit O O\npoint O O\nlogs O O\non O O\nthe O O\nIBM Name Name\ni Name Name\nshow O O\nthat O O\nwhen O O\nI O O\ncall O O\nadoqry.sql.add Name Name\nin O O\nthe O O\nabove O O\nexample O O\n, O O\nthe O O\nquery O O\nis O O\nrun O O\nthrough O O\nthe O O\n\" O O\nDatabase O O\nServer-SQL O O\nRequests O O\n\" O O\nexit O O\npoint O O\napplication O O\n, O O\nvia O O\nfunction O O\n\" O O\nPrepare O O\nand O O\nDescribe O O\n\" O O\n. O O\n\nWhen O O\nI O O\ncall O O\nadoqry.active Name Name\n:= Name Name\ntrue Name Name\nin O O\nthe O O\nabove O O\nexample O O\n, O O\nthe O O\nsame O O\nquery O O\ngoes O O\nthrough O O\nthe O O\nsame O O\nexit O O\npoint O O\napplication O O\n, O O\nbut O O\nvia O O\nthe O O\n\" O O\nOpen/Describe O O\n\" O O\nfunction O O\n. O O\n\nIf O O\nyou O O\n're O O\nnot O O\nfamiliar O O\nwith O O\nthe O O\nIBM Name Name\ni Name Name\n, O O\ndo O O\nn't O O\nworry O O\nabout O O\nit O O\n- O O\nI O O\n'm O O\njust O O\nincluding O O\nthat O O\ninformation O O\nas O O\nproof O O\nthat O O\nI O O\nhave O O\ntraced O O\nthe O O\nquery O O\nbeing O O\nsubmitted O O\ntwice O O\n. O O\n\nThe O O\nreal O O\nissue O O\nis O O\nwith O O\nthe O O\nTADOQuery Name Name\n's O O\nsql.add() Name Name\nprocessing O O\n. O O\n\nFrom O O\nyour O O\ndescription O O\nof O O\nyour O O\nproblem O O\n, O O\nI O O\nassume O O\nyou O O\nspecify O O\nthe O O\nConnectionString Name Name\nof O O\nthe O O\nADOQuery Name Name\n. O O\n\nDoing O O\nthis O O\ncombines O O\nthe O O\ndatabase O O\nlogin O O\nwith O O\nthe O O\nrunning O O\nof O O\nthe O O\nquery O O\n. O O\n\nYou O O\nhave O O\nfound O O\nthat O O\nthis O O\nhas O O\nundesirable O O\nside O O\neffects O O\nwhen O O\nthe O O\nuser O O\n's O O\ncredentials O O\nare O O\ninvalid O O\n. O O\n\nSeparate O O\nthe O O\ndatabase O O\nlogin O O\nfrom O O\nthe O O\nquery O O\nby O O\nusing O O\nan O O\nADOConnection Name Name\n. O O\n\nSpecify O O\nthe O O\nConnectionString Name Name\nof O O\nthe O O\nADOConnection Name Name\nand O O\nassign O O\nthe O O\nADOConnection Name Name\nto O O\nthe O O\nADOQuery.Connection Name Name\nproperty O O\n. O O\n\nThis O O\nway O O\n, O O\nyou O O\ncontrol O O\nthe O O\ndatabase O O\nlogin O O\nand O O\ncan O O\ncatch O O\nlogins O O\nwith O O\nbad O O\ncredentials O O\n. O O\n\nAdditionally O O\nthe O O\nADOConnection.Open Name Name\nmethod O O\nallows O O\nyou O O\nto O O\nspecify O O\nthe O O\nusername O O\nand O O\npassword O O\nso O O\nyou O O\ndo O O\nnot O O\nhave O O\nto O O\nput O O\nthem O O\nin O O\nthe O O\nConnectionString Name Name\n. O O\n\nWhile O O\nthis O O\ndoes O O\nnot O O\nanswer O O\nyou O O\nspecific O O\nquestions O O\n, O O\nthis O O\napproach O O\nwill O O\nhelp O O\nyou O O\nsolve O O\nthe O O\nproblem O O\nof O O\nthe O O\nuser O O\n's O O\nprofile O O\nbeing O O\ndisabled O O\nby O O\nseparating O O\nthe O O\nlogin O O\nfrom O O\nthe O O\nrunning O O\nof O O\nthe O O\nquery O O\n. O O\n\nI O O\nhave O O\ndeployed O O\nmy O O\nweb O O\napplication O O\non O O\nTomcat Name Name\nserver Name Name\n( O O\ni.e O O\non O O\ncloud O O\n) O O\n. O O\n\nFor O O\ntwo O O\ndays O O\nit O O\nworked O O\nfine O O\n. O O\n\nToday O O\nI O O\nam O O\ngetting O O\nthis O O\nerror O O\n. O O\n\nHow O O\ncan O O\nI O O\nsolve O O\nit O O\n? O O\n\nOn O O\nthe O O\npage O O\n87 O O\nof O O\nthe O O\nGame Name Name\nBoy Name Name\nCPU Name Name\nManual O O\nit O O\nis O O\nclaimed O O\nthat O O\nthe O O\nCP Name Name\nn Name Name\ninstruction O O\nsets O O\nthe O O\ncarry Name Name\nflag O O\nwhen O O\nthere O O\nwas O O\nno O O\nborrow O O\nand O O\nthat O O\nit O O\nmeans O O\nthat O O\nA Name Name\n< Name Name\nn Name Name\n. O O\n\nThis O O\nseems O O\nto O O\nconflict O O\nitself O O\n, O O\nbecause O O\nthe O O\ncarry Name Name\nflag O O\nis O O\nset O O\nwhen O O\nA Name Name\n> Name Name\nn Name Name\n. O O\n\nAn O O\nexample O O\n: O O\nIf O O\nA Name Name\n= Name Name\n0 Name Name\nand O O\nB Name Name\n= Name Name\n1 Name Name\n, O O\nCP Name Name\nB Name Name\nsets O O\nthe O O\nflags O O\nlike O O\nSUB Name Name\nA Name Name\n, Name Name\nB Name Name\n, O O\nwhich O O\nis O O\n0 Name Name\n- Name Name\n1 Name Name\n. O O\n\nThis O O\nbecomes O O\n0 Name Name\n+ Name Name\n255 Name Name\n= Name Name\n255 Name Name\nand O O\nthe O O\ncarry O O\nflag O O\nis O O\nnot O O\nset O O\n, O O\neven O O\nthough O O\nA Name Name\n< Name Name\nB Name Name\n. O O\n\nI O O\ncame O O\nacross O O\nthis O O\nsame O O\nissue O O\nin O O\nother O O\nZ80 Name Name\ndocuments O O\nas O O\nwell O O\n, O O\nso O O\nI O O\ndo O O\nn't O O\nbelieve O O\nthis O O\nis O O\na O O\ntypo O O\n. O O\n\nAm O O\nI O O\nmisunderstanding O O\nhow O O\nborrow O O\nand O O\nSUB Name Name\nwork O O\nor O O\nis O O\nthere O O\nsomething O O\nelse O O\ngoing O O\non O O\n? O O\n\nIs O O\nSUB Name Name\nnot O O\nequal O O\nto O O\nADD Name Name\nwith O O\ntwo O O\n's O O\ncomplement O O\nin O O\nterms O O\nof O O\nflags O O\n? O O\n\nThe O O\nGameBoy Name Name\nCPU Name Name\nmanual O O\nhas O O\nit O O\nbackwards O O\n. O O\n\nSUB Name Name\n, O O\nSBC Name Name\nand O O\nCP Name Name\nall O O\nset O O\nthe O O\ncarry O O\nflag O O\nwhen O O\nthere O O\nis O O\nborrow O O\n. O O\n\nIf O O\nSUB/SBC/CP Name Name\nA Name Name\n, Name Name\nn Name Name\nis O O\nexecuted O O\nthen O O\ncarry O O\nis O O\nset O O\nif O O\nn Name Name\n> Name Name\nA Name Name\notherwise O O\nit O O\nis O O\nclear O O\n. O O\n\nThis O O\nis O O\nconsistent O O\nwith O O\nZ-80 Name Name\n( O O\nand O O\n8080 Name Name\n) O O\noperation O O\n. O O\n\nAs O O\nwell O O\nMAME Name Name\nand O O\nMESS Name Name\nimplement O O\ncarry Name Name\nthe O O\nsame O O\nway O O\n. O O\n\nI O O\n'm O O\ndeveloping O O\necommerece O O\nsite O O\nusing O O\nmagento Name Name\n. O O\n\nMy O O\nproblem O O\nis O O\n, O O\n\nShow O O\nall O O\ncountries O O\ndropdown Name Name\nbox Name Name\nin O O\nuser O O\nregister O O\npage Name Name\n. O O\n\nBut O O\nshow O O\nonly O O\nindia O O\n, O O\nsingapore O O\n, O O\nusa O O\nin O O\ndropdown Name Name\nbox Name Name\nin O O\nproduct O O\nshipping O O\naddress O O\nfor O O\nregisterd O O\nuser O O\nand O O\nguest O O\n. O O\n\nAnybody O O\nhelp O O\nto O O\nsolve O O\nthis O O\nproblem O O\n. O O\n\nThanx O O\nin O O\nadvance O O\n.. O O\n. O O\n\nShipping O O\ncan O O\nbe O O\nallowed O O\nonly O O\nto O O\ndefined O O\ncountries O O\n. O O\n\nIt O O\ncan O O\nbe O O\nset O O\nin O O\nshipping O O\nmethod O O\nsettings O O\n( O O\nsystem->configuration->shipping O O\nmethods->your O O\nshipping O O\nmethod->Ship O O\nto O O\nApplicable O O\nCountries O O\n) O O\n. O O\n\nThere O O\nare O O\ncouple O O\nof O O\nvalues O O\n: O O\n\" Name Name\nShip Name Name\nto Name Name\nApplicable Name Name\nCountries Name Name\n\" Name Name\nand O O\n\" Name Name\nSpecific Name Name\nCountries Name Name\n\" Name Name\n. O O\n\nIf O O\nyou O O\nset O O\nup O O\nsecond O O\nvalue O O\n, O O\nshipping O O\nwill O O\nbe O O\naviable O O\nonly O O\nto O O\nthat O O\ncountries O O\n, O O\nthat O O\nyou O O\nwill O O\nselect O O\nin O O\nthe O O\nfeald O O\nbelow O O\n. O O\n\nI O O\n've O O\na O O\nJsonResult Name Name\nobject O O\nto O O\nreturn O O\nfrom O O\na O O\nMVC Name Name\nmethod O O\n, O O\nbut O O\nI O O\nneed O O\nto O O\nremove O O\none O O\nelement O O\nfrom O O\nit O O\nbefore O O\nsend O O\nit O O\n. O O\n\nUPDATE O O\n: O O\n\nI O O\n'm O O\ntrying O O\nto O O\ndo O O\nit O O\nwithout O O\nmapping O O\nit O O\nbecause O O\nthe O O\nobject O O\nis O O\nhuge O O\nand O O\nvery O O\ncomplex O O\n. O O\n\nHow O O\ncan O O\nI O O\nachieve O O\nthis O O\n? O O\n\nFor O O\neg O O\n. O O\n: O O\n\nand O O\n\nand O O\nthen O O\nREMOVE Name Name\nPropertyToNOTExpose Name Name\nfrom O O\nthe O O\nresult O O\n. O O\n\nUPDATE O O\nfrom O O\nreal O O\ncode O O\n: O O\n\nYou O O\ncan O O\ncreate O O\na O O\nnew O O\nobject O O\n, O O\nexcluding O O\nthe O O\nproperties O O\nyou O O\ndo O O\nn't O O\nwant O O\nsent O O\nin O O\nthe O O\nresult O O\n.. O O\n. O O\n\nAnother O O\noptions O O\ncould O O\nbe O O\nto O O\nconvert O O\nthe O O\nobject O O\nto O O\na O O\nNewtonsoft.Json.Linq.JObject Name Name\nand O O\nremove O O\nthe O O\nproperty O O\nusing O O\nJObject.Remove Name Name\nMethod O O\n( O O\nString Name Name\n) O O\n\nYou O O\ncould O O\ntry O O\nusing O O\nthe O O\n[ Name Name\nScriptIgnore Name Name\n] Name Name\nattribute O O\non O O\nyour O O\nproperty O O\n. O O\n\nThis O O\nwill O O\ncause O O\nthe O O\nJavaScriptSerializer Name Name\nto O O\nignore O O\nit O O\n. O O\n\nHowever O O\n, O O\nthis O O\nmeans O O\nthat O O\nit O O\nwill O O\nbe O O\nignored O O\non O O\ndeserialization O O\nas O O\nwell O O\n. O O\n\nI O O\n'm O O\nnot O O\nsure O O\nwhether O O\nthat O O\nis O O\nan O O\nissue O O\nfor O O\nyour O O\nsituation O O\nor O O\nnot O O\n. O O\n\nGiven O O\nHTML Name Name\nthat O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nI O O\nwould O O\nlike O O\n, O O\nusing O O\nonly O O\nCSS Name Name\n( O O\nwithout O O\nhaving O O\nto O O\nuse O O\n, O O\nsay O O\n, O O\na O O\n<span> Name Name\nelement O O\nin O O\nthe O O\nHTML Name Name\n) O O\n, O O\nto O O\nformat O O\nthe O O\nnumber O O\nwith O O\nthe O O\nlast O O\ntwo O O\ndigits O O\n( O O\nor O O\n, O O\nin O O\ngeneral O O\n, O O\ncharacters O O\n) O O\ndiminished O O\nin O O\nsize O O\n. O O\n\nMy O O\ngoal O O\nis O O\nto O O\nwrite O O\na O O\nCSS Name Name\nstylesheet O O\nrule O O\nfor O O\nthe O O\nunadorned O O\nHTML Name Name\nabove O O\nthat O O\nbehaves O O\nas O O\nif O O\nI O O\nhad O O\nthis O O\n: O O\n\nThat O O\nis O O\nnot O O\npossible O O\nwith O O\npure O O\nCSS Name Name\n. O O\n\nOnly O O\nhtml Name Name\nas O O\nyou O O\npointed O O\nout O O\nor O O\nJavascript Name Name\n. O O\n\nI O O\nam O O\nnew O O\nto O O\nandroid Name Name\n. O O\n\nMy O O\nproject O O\nis O O\nhaving O O\none O O\nactivity Name Name\nand O O\none O O\nservice Name Name\n. O O\n\nMy O O\nservice Name Name\nis O O\nhaving O O\none O O\nbroadcast Name Name\nreceiver Name Name\nand O O\nactivity Name Name\nis O O\nhaving O O\nbroadcast Name Name\nsender Name Name\nwhich O O\nis O O\nin O O\nPeriodSender Name Name\nmethod O O\n.Dynamically O O\nwhen O O\ni O O\nam O O\nregistering O O\nthe O O\nreceiver Name Name\nthen O O\nat O O\nthe O O\nstart O O\nof O O\nthe O O\nservice Name Name\nit O O\nis O O\nnot O O\ninvoking O O\nbut O O\nif O O\ni O O\nsend O O\nsome O O\nthing O O\nafter O O\nfew O O\nmoment O O\nthen O O\nit O O\ninvokes O O\n. O O\n\nBut O O\nI O O\nwant O O\nto O O\nregister O O\nit O O\nin O O\nManifest Name Name\n, O O\nI O O\nhave O O\nincluded O O\nthe O O\nreceiver O O\ndetails O O\nin O O\nManifest Name Name\nbut O O\nthe O O\nreceiver Name Name\nis O O\nnot O O\ninvoking O O\n. O O\n\nMy O O\nreceiver Name Name\nclass O O\nname O O\nis O O\nMyReceiver21 Name Name\nand O O\nthe O O\nintent Name Name\naction O O\nis O O\nMY_ACTION1 Name Name\n. O O\n\nactually O O\nI O O\nwant O O\nmy O O\nbroadcast Name Name\nreceiver Name Name\nto O O\nbe O O\nregistered O O\nat O O\nthe O O\nstarting O O\nit O O\nself O O\n. O O\n\nYou O O\ndo O O\nn't O O\nhave O O\nto O O\nadd O O\nthe O O\nintent Name Name\nfilter Name Name\nfor O O\nyour O O\nown O O\nbroadcasts Name Name\n. O O\n\nJust O O\nregister O O\nthe O O\nservice Name Name\nfor O O\nthat O O\nbroadcasts Name Name\nwith O O\nregisterReceiver() Name Name\nwhen O O\nthe O O\nservice Name Name\nis O O\nstarted O O\n. O O\n\nNote O O\n, O O\nthat O O\nyou O O\nhave O O\nto O O\nstart O O\nthe O O\nservice Name Name\nmanually O O\nwhen O O\nyour O O\nApp O O\nstarts O O\n, O O\nfor O O\ninstance O O\nin O O\nthe O O\nMainActivity.onCreate() Name Name\n: Name Name\n\nWhen O O\nthe O O\nMainActivity Name Name\nhas O O\nbeen O O\ncreated O O\n, O O\nit O O\nwill O O\nstart O O\nthe O O\nservice Name Name\n, O O\nwhich O O\nitself O O\nregisters O O\nfor O O\nBroadcastIntents Name Name\nand O O\nstarts O O\nlistening O O\nfor O O\nthem O O\n. O O\n\nThis O O\nshould O O\nwork O O\n. O O\n\nI O O\nam O O\nmaking O O\na O O\ngame O O\nwith O O\nKivy Name Name\nwhere O O\nyou O O\ncan O O\nmove O O\na O O\ncharacter Name Name\naround O O\nthe O O\nscreen Name Name\n. O O\n\nEarlier O O\n, O O\nI O O\nhad O O\nit O O\nworking O O\nwhere O O\nwhen O O\nyou O O\nmove O O\nthe O O\ncharacter Name Name\nright O O\n, O O\nthe O O\nbackground O O\nimage Name Name\nwould O O\nscroll O O\nto O O\nthe O O\nleft O O\n, O O\nand O O\nsame O O\nwith O O\nthe O O\nright O O\n. O O\n\nRecently O O\n, O O\nwhat O O\nI O O\ntried O O\nto O O\ndo O O\nwas O O\nadd O O\nthe O O\nbackground O O\nimage Name Name\nto O O\na O O\nwidget Name Name\nalong O O\nwith O O\nanother O O\nimage O O\n, O O\nwith O O\nthe O O\nintention O O\nthat O O\ni O O\ncould O O\ncontrol O O\nmultiple O O\nimage Name Name\nlocations O O\nwith O O\n' O O\nwidget.pos Name Name\n' O O\n, O O\nbut O O\nas O O\nsoon O O\nas O O\nI O O\ndid O O\nthis O O\n, O O\nnot O O\nonly O O\ndoes O O\nthe O O\nsecond O O\nimage Name Name\n( O O\nhero Name Name\n2) Name Name\nnot O O\nscroll O O\nright O O\nor O O\nleft O O\nbut O O\nneither O O\ndoes O O\nthe O O\nbackground O O\nimage Name Name\n. O O\n\nI O O\nam O O\nwondering O O\nwhat O O\nI O O\ndid O O\nwrong O O\nin O O\nmy O O\ncode O O\nhere O O\n. O O\n\nLooks O O\nlike O O\nthe O O\nproblem O O\nhere O O\nis O O\nthat O O\nyou O O\nare O O\nusing O O\na O O\nFLoatLayout Name Name\n. O O\n\nWhen O O\nyou O O\nmove O O\na O O\nnormal O O\nlayout O O\n( O O\nsuch O O\nas O O\na O O\nFloatLayout Name Name\n) O O\n, O O\nit O O\ndoes O O\nnot O O\nautomatically O O\nchange O O\nthe O O\nchildren O O\n's O O\nco-ordinates O O\n. O O\n\nIf O O\nyou O O\nwant O O\nthat O O\nbehavior O O\n, O O\ntry O O\nusing O O\na O O\nRelativeLayout Name Name\n. O O\n\nhttp://kivy.org/docs/api-kivy.uix.relativelayout.html O O\n\nPeace O O\nout O O\n\nI O O\nhave O O\na O O\ntable Name Name\nwith O O\n8.2 O O\nmillion O O\nentries O O\nin O O\na O O\nSQL Name Name\nServer Name Name\n2005 Name Name\ndatabase O O\n. O O\n\nThis O O\ntable Name Name\nstores O O\nbasic O O\npast O O\ncustomer O O\ndetails O O\n( O O\nreferrer O O\n, O O\nip O O\n, O O\nwhether O O\nthey O O\nentered O O\nvia O O\nan O O\nadvertisement O O\n, O O\netc O O\n) O O\nfor O O\nevery O O\ncustomer O O\nwe O O\nhave O O\nhad O O\ncome O O\nto O O\nthe O O\nsite O O\n. O O\n\nUnfortunately O O\n, O O\nwhoever O O\ndesigned O O\nthe O O\ntable Name Name\n( O O\nway O O\nbefore O O\nI O O\nwas O O\nhere O O\n, O O\nI O O\n'm O O\na O O\nlowly O O\nintern O O\n) O O\nused O O\na O O\nvarchar(50) Name Name\nfield O O\nfor O O\nthe O O\nip O O\naddress O O\nfield O O\nin O O\nthe O O\ntable Name Name\n. O O\n\nNow O O\n, O O\nI O O\nhave O O\nbeen O O\ntasked O O\nwith O O\nfinding O O\na O O\nway O O\nto O O\nrun O O\na O O\nquery O O\nto O O\nsee O O\nif O O\nwe O O\nhave O O\nan O O\nentry O O\nfor O O\na O O\ngiven O O\nip O O\naddress O O\n. O O\n\nThis O O\nis O O\nthe O O\nfirst O O\ntime O O\nI O O\n've O O\nhad O O\nto O O\ndeal O O\nwith O O\na O O\ndata O O\nset Name Name\nthis O O\nlarge O O\nand O O\nno O O\nmatter O O\nwhat O O\nI O O\ndo O O\n, O O\nI O O\nca O O\nn't O O\nseem O O\nto O O\nimprove O O\nthe O O\nresult O O\nspeed O O\nmuch O O\n. O O\n\nHere O O\nis O O\nan O O\nexample O O\nquery O O\nfrom O O\nwhat O O\nI O O\nwas O O\nrunning O O\n: O O\n\nThis O O\nquery O O\nran O O\nfor O O\nover O O\n2 O O\nmin O O\nand O O\n31 O O\nseconds O O\nbefore O O\nI O O\ncancelled O O\nit O O\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\nimprove O O\nthe O O\nspeed O O\nof O O\nthis O O\nlook O O\nup O O\nor O O\nwould O O\nit O O\nbe O O\nmore O O\nadvisable O O\nto O O\ncreate O O\na O O\nnew O O\nindex Name Name\nin O O\nthe O O\ntable Name Name\nthat O O\nstores O O\nthe O O\nINET_ATON Name Name\nvalues O O\nand O O\nperform O O\nthe O O\nlook O O\nup O O\non O O\nthat O O\n? O O\n\nThanks O O\n! O O\n\nIf O O\nyou O O\nare O O\ngoing O O\nto O O\noften O O\nrun O O\nthe O O\nquery O O\n\" O O\ndo O O\nwe O O\nhave O O\nthis O O\nIP O O\naddress O O\n\" O O\nthen O O\nyou O O\nshould O O\ndefinitely O O\nadd O O\nan O O\nindex Name Name\non O O\nIP O O\naddress O O\n. O O\n\nBut O O\nif O O\nthis O O\nis O O\njust O O\na O O\none-off O O\nexercise O O\nthen O O\nno O O\n. O O\n\nTry O O\ncreating O O\nan O O\nindex O O\non O O\nIPAddress Name Name\n. O O\n\nIf O O\nthe O O\nonly O O\nthings O O\nyou O O\nneed O O\nto O O\nselect O O\nare O O\nID Name Name\nbased O O\non O O\nthe O O\nIPAddress Name Name\n, O O\nand O O\nthis O O\nis O O\na O O\nfrequent O O\nway O O\nyou O O\nsearch O O\n, O O\nthen O O\nyou O O\nshould O O\ncreate O O\nan O O\nindex Name Name\nlike O O\nthis O O\n: O O\n\nI O O\nam O O\nmaking O O\na O O\ncamera O O\napp O O\nwhere O O\nI O O\nwant O O\nto O O\nget O O\nto O O\nall O O\nof O O\nthe O O\nvideos O O\nusers O O\nhave O O\ncreated O O\non O O\ntheir O O\niPhone Name Name\n. O O\n\nCurrently O O\nthe O O\ncode O O\nI O O\nhave O O\ngets O O\nthe O O\nvideos O O\nfrom O O\nuser O O\nCamera Name Name\nRoll Name Name\nonly O O\n. O O\n\nSome O O\nmy O O\nusers O O\nhave O O\ncomplained O O\nthat O O\nthey O O\nhave O O\nmultiple O O\ncustom O O\nfolders O O\ncreated O O\nunder O O\ntheir O O\nPhoto Name Name\nAlbum Name Name\napp O O\nand O O\nthey O O\nstore O O\nsome O O\nvideos O O\nin O O\nthere O O\n. O O\n\nSince O O\nmy O O\ncode O O\nonly O O\nlooks O O\nat O O\nCamera Name Name\nRoll Name Name\n, O O\nit O O\ndoes O O\nn't O O\npickup O O\nthe O O\nmovies O O\nfrom O O\ntheir O O\nother O O\nfolders O O\n. O O\n\nIs O O\nit O O\npossible O O\nthat O O\nI O O\ncan O O\nget O O\nto O O\ntheir O O\nother O O\nfolders O O\n? O O\n\nThis O O\nis O O\nwhat O O\nI O O\nhave O O\nso O O\nfar O O\n. O O\n\nTo O O\nget O O\nmedia O O\nthat O O\nwas O O\nsynced O O\nfrom O O\niTunes Name Name\nyou O O\nneed O O\nto O O\nuse O O\nALAssetsGroupLibrary Name Name\n. O O\n\nHere O O\nyou O O\ncan O O\nfind O O\nall O O\npossible O O\nvariants O O\nfor O O\nALAssetsGroupType Name Name\n. O O\n\nSo O O\njust O O\nchange O O\n\nto O O\n\nYou O O\ngot O O\nto O O\ncreate O O\na O O\nfilter O O\nfor O O\nthe O O\nassets O O\n, O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nOptions O O\nfor O O\nfilters O O\nare O O\n: O O\n\n- O O\nallAssets Name Name\n\n- O O\nallVideos Name Name\n\n- O O\nallPhotos Name Name\n\nHope O O\nthis O O\nhelps O O\n\nI O O\n've O O\nbuild O O\na O O\nsmall O O\nrack O O\naap O O\nthat O O\nimplements O O\na O O\nwebsocket Name Name\nand O O\na O O\nplain O O\nhttp Name Name\napi Name Name\nendpoint O O\n, O O\nclients Name Name\ncan O O\nconnect O O\nto O O\nit O O\nand O O\nat O O\na O O\nlater O O\npoint O O\nI O O\ncan O O\nsend O O\na O O\nhttp O O\npost O O\nwith O O\na O O\ntoken Name Name\nand O O\na O O\nclient Name Name\nconnected O O\nto O O\nthe O O\nwebsocket Name Name\nwill O O\nno O O\nnotified O O\n. O O\n\nMy O O\nquestion O O\nis O O\nif O O\npuma Name Name\nis O O\nrunning O O\nin O O\ncluster O O\nmode O O\nwith O O\n4 O O\nworkers O O\nis O O\nit O O\npossible O O\nthat O O\none O O\nworker O O\nholds O O\nthe O O\nwebsocket Name Name\nconnection O O\nand O O\nanother O O\nis O O\nparsing O O\nthe O O\nhttp O O\nrequest O O\n? O O\n\nRegards O O\n, O O\n\nI O O\n've O O\nended O O\nup O O\nimplementing O O\na O O\nsolution O O\nbased O O\non O O\nredis Name Name\nfrom O O\nhttps://devcenter.heroku.com/articles/ruby-websockets O O\n\nI O O\n'm O O\nlooking O O\nto O O\nget O O\nhelp O O\nsetting O O\nup O O\na O O\nproject O O\nenvironment O O\nin O O\nSublimeREPl Name Name\n. O O\n\nI O O\n'm O O\nusing O O\nContinuum Name Name\nAnalytics Name Name\nAnaconda Name Name\n. O O\n\nI O O\n've O O\nsuccessfully O O\nadded O O\nmy O O\nproject O O\nenvironment O O\n's O O\npython Name Name\nas O O\na O O\nbuild O O\nsystem O O\n, O O\nbut O O\nI O O\nwould O O\nalso O O\nlike O O\nto O O\nadd O O\nit O O\nto O O\nSublimeREPL Name Name\nfor O O\nan O O\ninteractive O O\nsession O O\n. O O\n\nAll O O\nhelp O O\nis O O\nappreciated O O\n. O O\n\nI O O\nam O O\na O O\nnewbie O O\nto O O\nObjective-C Name Name\nand O O\nI O O\nam O O\nworking O O\non O O\ngetting O O\na O O\ngood O O\nhandle O O\nin O O\nworking O O\nwith O O\narrays Name Name\n. O O\n\nAccording O O\nto O O\nApples Name Name\nown O O\ndocumentation O O\nNSMutableArray Name Name\ninherits O O\nfrom O O\nNSArray Name Name\n. O O\n\nI O O\nam O O\nseeking O O\nto O O\nuse O O\nthe O O\nmethod O O\nobjectAtIndex:i Name Name\nwithin O O\na O O\nfor Name Name\nloop O O\n. O O\n\nYet O O\nXcode Name Name\nis O O\nclaiming O O\nthat O O\n\nWithin O O\na O O\nfor Name Name\nloop O O\nI O O\nam O O\nperforming O O\n( O O\nor O O\nseeking O O\nto O O\n) O O\nthe O O\nfollowing O O\ntest O O\n: O O\n\nI O O\nam O O\ncertain O O\nI O O\nnot O O\ndoing O O\nthis O O\nright O O\n. O O\n\nIt O O\ncan O O\nbe O O\nfrustrating O O\nlearning O O\nthe O O\nidiosyncrasies O O\nof O O\na O O\nnew O O\nprogramming O O\nlanguage O O\n. O O\n\nFor O O\nme O O\nObjective Name Name\nC Name Name\nhas O O\n, O O\nso O O\nfar O O\n, O O\nborne O O\nlittle O O\nresemblance O O\nto O O\nC++ Name Name\nor O O\nC Name Name\n. O O\n\nAny O O\npointer O O\nor O O\nassistance O O\nwould O O\nbe O O\ngreatly O O\nappreciated O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n\nWalt O O\nWilliams O O\n\nFrom O O\nyour O O\nerror O O\nmessage O O\n, O O\nyou O O\ncould O O\nnot O O\nbe O O\nusing O O\nthe O O\nmethod O O\nand O O\nparameter O O\ncorrectly O O\n. O O\n\nPossibly O O\nyou O O\n're O O\ntrying O O\nto O O\nuse O O\na O O\ndot O O\nnotation O O\n? O O\n\nYour O O\ncode O O\nshould O O\nbe O O\nlike O O\n: O O\n\nwhere O O\nthe O O\nindex Name Name\ncomes O O\nfrom O O\nyour O O\nloop O O\nand O O\nyou O O\nthen O O\nuse O O\nthe O O\nobject Name Name\n. O O\n\nIn O O\naddition O O\nto O O\nWain O O\n's O O\nanswer O O\n, O O\nwhich O O\nis O O\ncorrect O O\n, O O\nbut O O\nfor O O\nthe O O\nsake O O\nof O O\ncompleteness O O\n, O O\nyou O O\nare O O\nusing O O\nthe O O\narray Name Name\nand O O\ntrying O O\nto O O\ncall O O\nthe O O\nmethod O O\nthis O O\nway O O\n: O O\n\nEx O O\n: O O\n\nwhich O O\nis O O\nthe O O\ncause O O\nof O O\nthis O O\nerror O O\n: O O\n\nIt O O\nis O O\ncomplaining O O\nthat O O\nyou O O\nare O O\ntrying O O\nto O O\naccess O O\na O O\nproperty O O\nnamed O O\n\" O O\nobjectAtIndex Name Name\n\" O O\n, O O\nwhich O O\nof O O\ncourse O O\n, O O\ndoes O O\nn't O O\nexist O O\n. O O\n\nYou O O\nmean O O\nto O O\ncall O O\nthe O O\nmethod O O\n: O O\n\nIn O O\nObjective-C Name Name\n, O O\nit O O\nis O O\ncalled O O\n\" O O\nyou O O\nare O O\nsending O O\na O O\nmessage O O\n( O O\nobjectAtIndex:i Name Name\n) O O\nto O O\nthe O O\narray Name Name\n\" O O\n. O O\n\ni O O\nhave O O\nflash Name Name\nxml Name Name\ntemplate O O\ni O O\nbuy O O\nfrom O O\nactiveden Name Name\nbut O O\ni O O\ncant O O\nshow O O\nthe O O\narabic O O\ntext O O\nfrom O O\nright O O\nto O O\nleft O O\nand O O\nafter O O\na O O\nlot O O\nof O O\nresearch O O\ni O O\nfind O O\nthat O O\ntextfield Name Name\ndo O O\nnot O O\nsupport O O\nrtl O O\ncorrectly O O\nand O O\ni O O\nneed O O\nto O O\nconvert O O\nto O O\nTLFTextfield Name Name\n, O O\n\nMy O O\nquestion O O\nhere O O\nis O O\nhow O O\nto O O\nconvert O O\nclassic O O\ntextfield O O\ninto O O\nTLFTextField Name Name\nin O O\nas3 Name Name\n? O O\n\nplease O O\nhelp O O\nme O O\n. O O\n\nBuild O O\nthe O O\ntextfield O O\nas O O\nTLFTextField Name Name\nfrom O O\nthe O O\nbeginning O O\n, O O\nand O O\ndo O O\nNOT O O\nforget O O\nto O O\ninclude O O\nthe O O\nTLF Name Name\nif O O\nit O O\nis O O\nNOT O O\nincluded O O\n. O O\n\nI O O\nam O O\nhaving O O\na O O\nhard O O\ntime O O\napplying O O\na O O\nfilter O O\nto O O\nan O O\ninline O O\nSVG Name Name\nsymbol O O\n. O O\n\nI O O\ncan O O\nmake O O\nit O O\nwork O O\nfine O O\nin O O\na O O\nnormal O O\nexternal O O\nSVG Name Name\nfile O O\nbut O O\nas O O\nsoon O O\nas O O\nI O O\nmake O O\nit O O\ninline O O\nwith O O\nan O O\nHTML Name Name\ndocument O O\n, O O\nthe O O\nfiltered O O\nobjects O O\ndisappear O O\n. O O\n\nIs O O\nthere O O\nanything O O\nI O O\n'm O O\nmissing O O\nwith O O\nthe O O\nfilter Name Name\nattribute O O\n? O O\n\nThis O O\nfails O O\nfor O O\nme O O\nin O O\nan O O\nup O O\nto O O\ndate O O\nChrome Name Name\n57 Name Name\n. O O\n\nSetting O O\nyour O O\nSVG Name Name\nto O O\ndisplay:none Name Name\nwill O O\nmake O O\nit O O\nnon-functional O O\nbecause O O\nit O O\ndisables O O\nall O O\nCSS Name Name\n. O O\n\nThe O O\nfollowing O O\nC++ Name Name\nfunction O O\nhas O O\nnot O O\nbeen O O\nworking O O\nin O O\nVisual Name Name\nStudio Name Name\n6 Name Name\n( O O\n1998 O O\nyear O O\n) O O\nuntil O O\nI O O\nadded O O\nstatic Name Name\n. O O\n\nWhy O O\n? O O\n\nIt O O\n's O O\ndangerously O O\nunsafe O O\n( O O\nundefined O O\nbehavior O O\n) O O\nto O O\nreturn O O\na O O\npointer Name Name\nto O O\na O O\nstack Name Name\nvariable O O\n. O O\n\nThat O O\nincludes O O\narrays Name Name\nallocated O O\non O O\nthe O O\nstack Name Name\n. O O\n\nThe O O\nmemory O O\noccupied O O\nby O O\na O O\nstack Name Name\nvariable O O\nis O O\nessentially O O\ndeallocated O O\nas O O\nsoon O O\nas O O\nthe O O\nfunction O O\nreturns O O\n. O O\n\nBy O O\nmaking O O\nthe O O\narray Name Name\nallocation O O\nstatic Name Name\n, O O\nit O O\n's O O\nallocation O O\nwill O O\npersist O O\nand O O\nis O O\nsafer O O\n.. O O\n. O O\n\nBut O O\nif O O\nany O O\ncode O O\npath O O\ncaches O O\nthe O O\npointer Name Name\nreturned O O\nfrom O O\n\" O O\ntest O O\n\" O O\n, O O\nanother O O\ncode O O\npath O O\nthat O O\ncalls O O\nthis O O\nfunction O O\ncould O O\ninvalidate O O\nthe O O\nprevious O O\nresult O O\n. O O\n\nFor O O\nyour O O\nexample O O\n, O O\nyou O O\nprobably O O\nwant O O\nto O O\nduplicate O O\nthe O O\nstring Name Name\nbefore O O\nreturning O O\n. O O\n\nWith O O\nthe O O\nexpectation O O\nthat O O\nthe O O\ncaller O O\nwill O O\n\" O O\nfree Name Name\n\" O O\nthe O O\nmemory O O\nlater O O\n: O O\n\nI O O\nwant O O\nto O O\niterate O O\nthrough O O\na O O\njava Name Name\narraylist Name Name\npassed O O\nas O O\nmessage O O\nheader O O\nto O O\na O O\ncamel Name Name\nroute Name Name\nvia O O\nbean Name Name\nso O O\nthat O O\neach O O\nstring Name Name\nitem O O\nwhich O O\nis O O\nbasically O O\nan O O\nurl O O\ncan O O\nbe O O\npassed O O\nas O O\nuri O O\nargument O O\ninside O O\ntag O O\nin O O\ncamel Name Name\nroute Name Name\n. O O\n\nI O O\nam O O\npassing O O\nan O O\narray Name Name\nlist Name Name\nas O O\nmessage O O\nheader O O\nto O O\ncamel Name Name\nroute Name Name\nthrough O O\njava Name Name\nbean Name Name\nas O O\nfollows O O\n\nand O O\n, O O\ninside O O\ncamel Name Name\nroute Name Name\ni O O\nwant O O\nto O O\niterate O O\nthrough O O\nthis O O\nlist Name Name\nand O O\nretrieve O O\neach O O\nlist Name Name\nitem O O\none O O\nby O O\none O O\nso O O\nthat O O\ni O O\ncan O O\npass O O\nthese O O\nitems O O\nin O O\nuri O O\n. O O\n\nhere O O\n's O O\nmy O O\ncamel Name Name\nroute Name Name\n: O O\n\nBut O O\ni O O\nam O O\nnot O O\nable O O\nto O O\niterate O O\nthrough O O\neach O O\nitem O O\nin O O\nlist Name Name\nrecieved O O\nas O O\nheader.endpoints Name Name\ninside O O\ncamel Name Name\nroute Name Name\n. O O\n\nThis O O\nis O O\nthe O O\nrecipient Name Name\nlist Name Name\nEIP O O\npattern O O\nthan O O\ncan O O\nsend O O\nmessages O O\nto O O\nN+ Name Name\ndestinations O O\n: O O\nhttp://camel.apache.org/recipient-list.html O O\n\nThe O O\nrecipient Name Name\nlist Name Name\nEIP O O\nis O O\nbasically O O\na O O\ntoD Name Name\nbut O O\nit O O\ncan O O\ndo O O\n1.N Name Name\nendpoints O O\n. O O\n\nWhere O O\nas O O\ntoD Name Name\ncan O O\nonly O O\ndo O O\n1 Name Name\n. O O\n\nAnd O O\nit O O\nshould O O\nbe O O\nable O O\nto O O\ntake O O\nyour O O\nmessage O O\nheader Name Name\nas-is O O\n, O O\neg O O\na O O\nList Name Name\nor O O\nCollection Name Name\nand O O\nsend O O\nto O O\neach O O\ndestination O O\n. O O\n\nSo O O\ndo O O\n\nSorry O O\nI O O\nwill O O\nrewrite O O\nthe O O\nquestion O O\nhoping O O\nto O O\nbe O O\nclear O O\n. O O\n\nIn O O\nmy O O\n.cpp Name Name\ncode O O\nI O O\ncreate O O\na O O\nlist Name Name\nof O O\nquads Name Name\n, O O\na O O\nfew O O\nof O O\nthem O O\nhave O O\na O O\nflag Name Name\n, O O\nin O O\nthe O O\npixel O O\nshader O O\nI O O\ncheck O O\nif O O\nthis O O\nflag Name Name\nis O O\nset O O\nor O O\nnot O O\n, O O\nif O O\nthe O O\nflag Name Name\nis O O\nnot O O\nset O O\n, O O\nthe O O\nquad Name Name\ngets O O\ncolored O O\nin O O\nred Name Name\nfor O O\nexample O O\n, O O\nif O O\nthe O O\nflag Name Name\nis O O\nset O O\n, O O\nI O O\nwant O O\nto O O\ndecide O O\nthe O O\ncolor Name Name\nof O O\nevery O O\nsingle O O\npixel O O\n, O O\nso O O\nif O O\nI O O\nneed O O\nto O O\ncolour O O\nhalf O O\nof O O\nthe O O\nflagged O O\nquad Name Name\nin O O\nred Name Name\nand O O\nthe O O\nother O O\nhalf O O\nin O O\nblue Name Name\nI O O\ncan O O\nsimply O O\ndo O O\nsomething O O\nlike O O\n: O O\n\nIn O O\nthis O O\nway O O\nI O O\ncan O O\nget O O\nhalf O O\nof O O\nthe O O\nquad Name Name\ncolored O O\nin O O\nblue Name Name\nand O O\nanother O O\nhalf O O\ncolored O O\nin O O\nred Name Name\n, O O\nor O O\nI O O\ncan O O\ndecide O O\nwhere O O\nto O O\nput O O\nthe O O\nred Name Name\ncolor O O\nor O O\nwhere O O\nto O O\nput O O\nthe O O\nblue Name Name\none O O\n. O O\n\nImagine O O\nI O O\n've O O\ngot O O\na O O\nquad Name Name\n50x50 O O\npixels O O\n\n[ O O\nfrag O O\n] O O\n\nIn O O\nthis O O\ncase O O\nI O O\nwould O O\nexpect O O\nthat O O\na O O\nquad Name Name\nwith O O\nthe O O\nflag O O\nset O O\nwill O O\nget O O\ntwo O O\ncolors O O\nper O O\nface O O\n. O O\n\nI O O\nhope O O\nI O O\nhave O O\nbeen O O\nmore O O\nspecific O O\nnow O O\n. O O\n\nthanks O O\n. O O\n\nJust O O\nto O O\nadd O O\nsomething O O\nI O O\nca O O\nn't O O\nuse O O\nany O O\ntexture Name Name\n. O O\n\nOk O O\ni O O\ndo O O\nthis O O\nnow O O\n: O O\n\nEvery O O\nquad Name Name\nhas O O\n4 O O\ntextures Name Name\ncoordinated O O\n( Name Name\n0 Name Name\n, Name Name\n0 Name Name\n) Name Name\n, O O\n( Name Name\n0 Name Name\n, Name Name\n1) Name Name\n, O O\n( Name Name\n1 Name Name\n, Name Name\n1) Name Name\n, O O\n( Name Name\n1 Name Name\n, Name Name\n0 Name Name\n) Name Name\n; O O\n\nI O O\nenable O O\nthe O O\ntexture Name Name\ncoordinates O O\nusing O O\n: O O\n\n[ O O\nvert O O\n] O O\n\n[ O O\nfrag O O\n] O O\n\nI O O\nget O O\nalways O O\nthe O O\nyellow Name Name\ncolor O O\nso O O\nx1 Name Name\n= Name Name\n1 Name Name\nand O O\nx2 Name Name\n= Name Name\n1 Name Name\nalmost O O\nalways O O\nand O O\nsome O O\nquad O O\nis O O\nyellow/green Name Name\n. O O\n\nI O O\nwould O O\nexpect O O\nthat O O\nthe O O\ntexture Name Name\ncoordinates O O\nchange O O\nin O O\nthe O O\nfragment O O\nshader O O\nand O O\nso O O\nI O O\nshould O O\nget O O\na O O\ngradient O O\n, O O\nam O O\nI O O\nwrong O O\n? O O\n\nIn O O\naddition O O\nto O O\nChris O O\nDodd O O\n's O O\nanswer O O\n, O O\nyou O O\ncan O O\nalso O O\naccess O O\nthe O O\nscreen-space O O\ncoordinate O O\n( O O\nin O O\npixels O O\n, O O\nthough O O\nactually O O\npixel O O\ncenters O O\nand O O\nthus O O\n? Name Name\n. Name Name\n5) Name Name\nof O O\nthe O O\ncurrently O O\nprocessed O O\nfragment O O\nthrough O O\nthe O O\nspecial O O\nfragment O O\nshader O O\nvariable O O\ngl_FragCoord Name Name\n: O O\n\nBut O O\nthis O O\ngives O O\nyou O O\nthe O O\nposition O O\nof O O\nthe O O\nfragment O O\nin O O\nscreen-space O O\nand O O\nthus O O\nrelative O O\nto O O\nthe O O\nlower O O\nleft O O\ncorner O O\nof O O\nyou O O\nviewport Name Name\n. O O\n\nIf O O\nyou O O\nactually O O\nneed O O\nto O O\nknow O O\nthe O O\nposition O O\ninside O O\nthe O O\nindividual O O\nquad O O\n( O O\nwhich O O\nmakes O O\nmore O O\nsense O O\nif O O\nyou O O\nwant O O\nto O O\nactually O O\ncolor O O\neach O O\nquad O O\nhalf-by-half O O\n, O O\nsince O O\nthe O O\n\" O O\nhalf-cut O O\n\" O O\nwould O O\notherwise O O\nvary O O\nwith O O\nthe O O\nquad O O\n's O O\nposition O O\n) O O\n, O O\nthen O O\nChris O O\nDodd O O\n's O O\nanswer O O\nis O O\nthe O O\ncorrect O O\napproach O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\nknow O O\nthe O O\ncoordinate O O\nwithin O O\nthe O O\nquad Name Name\n, O O\nyou O O\nneed O O\nto O O\ncalculate O O\nit O O\nyourself O O\n. O O\n\nIn O O\norder O O\nto O O\nthat O O\n, O O\nyou O O\n'll O O\nneed O O\nto O O\ncreate O O\na O O\nnew O O\ninterpolant O O\n( O O\ncall O O\nit O O\nsomething O O\nlike O O\nvec2 Name Name\nquadCoord Name Name\n) O O\n, O O\nand O O\nset O O\nit O O\nappropriately O O\nfor O O\neach O O\nvertex O O\n, O O\nwhich O O\nmeans O O\nyou O O\n'll O O\nlikely O O\nalso O O\nneed O O\nto O O\nadd O O\nit O O\nas O O\nan O O\nattribute O O\nand O O\npass O O\nit O O\nthrough O O\nyour O O\nvertex O O\nshader O O\n. O O\n\neg O O\n: O O\n\nYou O O\n'll O O\nneed O O\nto O O\nfeed O O\nin O O\nthis O O\nattribute O O\nin O O\nyour O O\ndrawing O O\ncode O O\nwhen O O\ndrawing O O\nyour O O\nquads Name Name\n. O O\n\nFor O O\neach O O\nquad Name Name\n, O O\nthe O O\nvertexes O O\nwill O O\nhave O O\nlikely O O\nhave O O\nquadCoordIn Name Name\nvalues O O\nof O O\n( Name Name\n0 Name Name\n, Name Name\n0 Name Name\n) Name Name\n, O O\n( Name Name\n0 Name Name\n, Name Name\n1) Name Name\n, O O\n( Name Name\n1 Name Name\n, Name Name\n1) Name Name\nand O O\n( Name Name\n1 Name Name\n, Name Name\n0 Name Name\n) Name Name\n- O O\n- O O\nyou O O\ncould O O\nuse O O\nsome O O\nother O O\ncoordinate O O\nsystem O O\nif O O\nyou O O\nprefer O O\n, O O\nbut O O\nthis O O\nis O O\nthe O O\neasiest O O\n. O O\n\nThen O O\n, O O\nin O O\nyour O O\nfragment O O\nprogram O O\n, O O\nyou O O\ncan O O\naccess O O\nquadCoord.xy Name Name\nto O O\ndetermine O O\nwhere O O\nin O O\nthe O O\nquad Name Name\nyou O O\nare O O\n. O O\n\ni O O\nhave O O\na O O\ncsv Name Name\nfile O O\nwith O O\ncomments O O\n, O O\nthe O O\nvalues O O\nof O O\nwhich O O\nneed O O\nto O O\nbe O O\nsplit O O\nbetween O O\ntwo O O\nArrayLists Name Name\n. O O\n\neg O O\n: O O\n\nwhat O O\nis O O\nthe O O\nbest O O\nway O O\nof O O\nachieving O O\nthis O O\n? O O\n\nshould O O\ni O O\nuse O O\na O O\ncounter Name Name\nthat O O\nis O O\nincremented O O\neach O O\ntime O O\nthe O O\nstate O O\nchanges O O\nfrom O O\n% Name Name\nto O O\na O O\nvalue O O\nor O O\nvice O O\nversa O O\nand O O\nthen O O\nif Name Name\ncounter Name Name\n% Name Name\n2 Name Name\n= Name Name\n0 Name Name\nthen O O\nadd O O\na O O\nnew O O\nArrayList Name Name\nand O O\nstart O O\nwriting O O\nto O O\nthat O O\n? O O\n\nthats O O\nthe O O\nonly O O\nway O O\ni O O\ncan O O\nthink O O\nto O O\ndo O O\nit O O\n, O O\nbut O O\nit O O\nseems O O\na O O\nlittle O O\nbit O O\nclumsy O O\n, O O\ndoes O O\nanyone O O\nelse O O\nhave O O\na O O\nbetter O O\nidea O O\n? O O\n\nEDIT O O\n: O O\ni O O\nhave O O\nalready O O\nwritten O O\nthe O O\ncode O O\nfor O O\nactually O O\nparsing O O\nthe O O\ncsv Name Name\nvalues O O\n, O O\ni O O\ndont O O\nneed O O\nhelp O O\nwith O O\nthat O O\n, O O\njust O O\nwondering O O\nabout O O\nhow O O\nto O O\nsplit O O\nthe O O\nvalues O O\ninto O O\ntwo O O\nlists. Name Name\n. O O\n\nYour O O\nsuggestion O O\nsounds O O\ngood O O\nto O O\nme O O\n. O O\n\nIf O O\nthe O O\nfile O O\nformat O O\nis O O\nreally O O\nso O O\npredictable O O\n, O O\nany O O\nmore O O\nsophisticated O O\napproaches O O\nmight O O\njust O O\nbe O O\noverkill O O\nin O O\nmy O O\nopinion O O\n. O O\n\nBut O O\nif O O\nyou O O\nwant O O\nto O O\nsee O O\na O O\ndifferent O O\napproach O O\n, O O\nthis O O\nis O O\nmy O O\nidea O O\n: O O\nEvery O O\nline O O\nthat O O\ndoes O O\nnot O O\nstart O O\nwith O O\nan O O\n% Name Name\nis O O\nsomething O O\nwe O O\nwant O O\nto O O\nparse O O\nto O O\nan O O\nArrayList Name Name\n. O O\n\nSo O O\n, O O\nwhenever O O\nyou O O\ncome O O\nacross O O\na O O\nline O O\nthat O O\nis O O\nnot O O\na O O\ncomment O O\n, O O\nyou O O\nstart O O\nparsing O O\nthe O O\nfollowing O O\nlines O O\nto O O\nan O O\nArrayList Name Name\nuntil O O\nyou O O\neither O O\nhit O O\nanother O O\ncomment O O\nor O O\nthe O O\nend O O\nof O O\nthe O O\nfile O O\n. O O\n\nBoth O O\noptions O O\nmark O O\nthe O O\nend O O\nof O O\nthe O O\npart O O\nthat O O\nyou O O\nwant O O\nto O O\nstore O O\nin O O\none O O\nsingle O O\nArrayList Name Name\n. O O\n\nSo O O\n, O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nwhere O O\nlineIsComment Name Name\n( Name Name\nString Name Name\nline Name Name\n) Name Name\nreturns O O\na O O\nboolean Name Name\nthat O O\nindicates O O\nwhether O O\nthe O O\ngiven O O\nline O O\nis O O\na O O\ncomment O O\n, O O\nand O O\naddToList Name Name\n( Name Name\nString Name Name\nline Name Name\n, Name Name\nArrayList Name Name\n<Integer> Name Name\nlist Name Name\n) Name Name\nuses O O\nyour O O\nmethod O O\nto O O\nparse O O\na O O\nline O O\nof O O\nnumbers O O\nand O O\nstores O O\nthem O O\nin O O\nthe O O\nprovided O O\nlist O O\n. O O\n\nMy O O\nMVC Name Name\n3 Name Name\nproject O O\nis O O\nbuilding O O\nsuccessfully O O\nin O O\nmy O O\ndevelopment O O\nmachine O O\nwith O O\nVisual Name Name\nStudio Name Name\n2010 Name Name\n+ O O\nMVC Name Name\n3 Name Name\n. O O\n\nIn O O\nthe O O\nbuild O O\nserver Name Name\n, O O\nVS2010 Name Name\nis O O\nnot O O\nused O O\nand O O\nI O O\n've O O\ninstalled O O\n' O O\nASP.NET Name Name\nMVC Name Name\n3 Name Name\nTools Name Name\nUpdate Name Name\n' O O\n. O O\n\nI O O\n've O O\nalso O O\ndownloaded O O\nNAnt Name Name\nand O O\nused O O\nTortoiseSVN Name Name\nto O O\ncheckout O O\nall O O\nthe O O\nfiles O O\nexcept O O\nbin Name Name\ndirectories O O\n. O O\n\nBut O O\nwhile O O\nbuilding O O\nusing O O\nNant Name Name\ndefault.build Name Name\n, O O\nI O O\n'm O O\ngetting O O\nbuild O O\nerror O O\n\n( O O\nare O O\nyou O O\nmissing O O\nan O O\nassembly O O\nreference O O\n? O O\n) O O\n. O O\n\nSame O O\nwith O O\n' O O\nController Name Name\n' O O\n, O O\n' O O\nActionResult Name Name\n' O O\n, O O\n' O O\nGlobalFilterCollection Name Name\n' O O\netc O O\n( O O\ntype O O\nor O O\nnamespace O O\ncould O O\nnot O O\nbe O O\nfound O O\n) O O\n. O O\n\nI O O\ncan O O\nsee O O\nSystem.Web.Mvc.dll Name Name\nin O O\n\n. O O\n\nWhat O O\nam O O\nI O O\nmissing O O\nhere O O\n? O O\n\nWhy O O\nNAnt Name Name\nca O O\nn't O O\nfind O O\nthis O O\nfile O O\n? O O\n\nIs O O\nthere O O\nno O O\nother O O\nway O O\nthan O O\ncopying O O\nthe O O\nassembly Name Name\nfiles O O\ninto O O\nlocal O O\nbin Name Name\n? O O\n\nI O O\nhad O O\nthe O O\nsame O O\nissue O O\nand O O\nwas O O\nn't O O\nable O O\nto O O\nlocate O O\nthe O O\nSystem.Web.MVC Name Name\nreference O O\nassembly O O\n. O O\n\nFinally O O\nfound O O\nout O O\nand O O\nit O O\nwas O O\nlocated O O\ninside O O\nthe O O\nfollowing O O\nlocation O O\n. O O\n\nNote O O\nif O O\nyour O O\nVS Name Name\nwas O O\ninstalled O O\nin O O\nC Name Name\n: Name Name\n( O O\nSometimes O O\nthe O O\nMVC Name Name\nis O O\nnot O O\nin O O\nthe O O\ndefaul O O\nlocation O O\nwhich O O\neverybody O O\ntalk O O\nabout O O\n, O O\ni O O\nmean O O\nthe O O\n\" O O\nReference Name Name\nAssemblies Name Name\n\" O O\nfolder O O\nlocated O O\nin O O\nthe O O\nC Name Name\n: Name Name\ndrive O O\n. O O\n\nif O O\nits O O\nnot O O\nthere O O\n, O O\nit O O\nshould O O\ndefinitely O O\nbe O O\nin O O\nhere O O\n: O O\n\nProgram Name Name\nfiles(x86) Name Name\n--> Name Name\nMicrosoft Name Name\nASP.NET Name Name\n--> Name Name\nASP.NET Name Name\nMVC Name Name\n2 Name Name\n--> Name Name\nAssemblies Name Name\nSystem.Web.Mvc.dll Name Name\n\nHope O O\nthis O O\none O O\nis O O\nhelpful O O\n. O O\n\nWhich O O\nversion O O\nof O O\nmsbuild Name Name\nare O O\nyou O O\nusing O O\nto O O\nbuild O O\nthe O O\nweb O O\nproject O O\n? O O\n\nIs O O\nthe O O\nweb O O\nproject O O\nreferencing O O\na O O\nspecific O O\nversion O O\nof O O\nor O O\nfile O O\npath O O\nto O O\nSystem.Web.Mvc.dll Name Name\n? O O\n\nDownload O O\nand O O\ninstall O O\nASP.NET Name Name\nMVC Name Name\n3 O O\n: Name Name\n\nhttp://www.microsoft.com/download/en/details.aspx?displaylang=en&id=4211 O O\n\nAccording O O\nto O O\n: O O\nhttp://weblogs.asp.net/scottgu/archive/2011/05/03/asp-net-mvc-3-tools-update.aspx O O\n\n\" O O\nThe O O\nASP.NET Name Name\nMVC Name Name\n3 Name Name\nTools Name Name\nupdate O O\nonly O O\nincludes O O\nVisual Name Name\nStudio Name Name\ntooling O O\nimprovements O O\nand O O\ndefault O O\nproject O O\ntemplate O O\nchanges O O\n– O O\nit O O\ndoes O O\nnot O O\ninclude O O\nany O O\nchanges O O\nto O O\nthe O O\nASP.NET Name Name\nMVC Name Name\n3 Name Name\nruntime O O\nbinaries O O\n. O O\n\" O O\n\nI O O\ndid O O\na O O\nbunch O O\nof O O\nresearch O O\non O O\nthis O O\nand O O\ncould O O\nnot O O\nfind O O\nan O O\nanswer O O\nto O O\nmy O O\nspecific O O\nproblem O O\n, O O\nalthough O O\nit O O\nseems O O\nallot O O\nof O O\npeople O O\nhave O O\nbeen O O\nplagued O O\nwith O O\nsimilar O O\nproblems O O\n. O O\n\nI O O\nam O O\nnew O O\nto O O\nGoogle Name Name\nApp Name Name\nEngine Name Name\nand O O\njust O O\ncreated O O\nan O O\naccount O O\n. O O\n\nI O O\ndownloaded O O\nthe O O\nSDK Name Name\nfor O O\nPython Name Name\n2.7 Name Name\n. O O\n\nI O O\ndeployed O O\nthe O O\nHello Name Name\n, Name Name\nWorld Name Name\n! Name Name\n\nto O O\nthe O O\nsupplied O O\nappspot.com O O\naddress O O\nand O O\nit O O\nprints O O\nhello Name Name\nworld Name Name\njust O O\nfine O O\n. O O\n\nWhen O O\nI O O\ntry O O\nto O O\nrun O O\nit O O\nin O O\nmy O O\nlocalhost O O\nit O O\ngives O O\na O O\n500 O O\nserver O O\nerror O O\n. O O\n\nI O O\ntried O O\ncreating O O\na O O\nfew O O\ndifferent O O\napplications O O\nand O O\nmessing O O\nwith O O\nthe O O\nport O O\nsettings O O\n, O O\nthe O O\napp.yaml Name Name\nfile O O\n, O O\nand O O\nthe O O\nmain.py Name Name\nfile O O\n. O O\n\nStill O O\ncant O O\nget O O\nit O O\nto O O\nwork O O\n. O O\n\nIm O O\nrunning O O\non O O\nan O O\nMac Name Name\nand O O\nI O O\ndid O O\ndownload O O\nand O O\ninstall O O\nPython Name Name\n2.7 Name Name\nto O O\nensure O O\nI O O\nhave O O\nthe O O\nlatest O O\nversion O O\n. O O\n\nIm O O\nalso O O\nnew O O\nto O O\nPython Name Name\nand O O\nApp Name Name\nEngine Name Name\n. O O\n\nI O O\ncome O O\nfrom O O\nthe O O\nworld O O\nof O O\nPHP Name Name\nand O O\nXAMPP Name Name\n. O O\n\nDoes O O\nanybody O O\nhave O O\nany O O\nideas O O\n? O O\n\nYou O O\nshould O O\ntry O O\nPython Name Name\n2.7.4 Name Name\nwhich O O\nis O O\nthe O O\nversion O O\nGoogle Name Name\nlinks O O\nto O O\nand O O\nrun O O\na O O\nPHP Name Name\nversion O O\ncompiled O O\nwith O O\nthe O O\nsame O O\nmodules O O\nand O O\noption O O\nthat O O\nGAE Name Name\nas O O\nwell O O\n. O O\n\nHere O O\n's O O\na O O\nvideo Name Name\nwith O O\nthe O O\nsteps O O\n\nhttp://www.youtube.com/watch?v=IFuNNddWQIo O O\n\nHere O O\nis O O\nmy O O\nXML Name Name\n: O O\n\nI O O\nwant O O\nto O O\nchange O O\nvalue O O\nof O O\ntag O O\n\" O O\nstatus Name Name\n\" O O\nto O O\n\" Name Name\nNEW Name Name\n\" Name Name\n. O O\n\nBelow O O\nis O O\nmy O O\njava Name Name\ncode O O\n: O O\n\nThe O O\nvalue O O\nof O O\nstatus Name Name\ntag O O\nis O O\nnot O O\ngetting O O\nchanged O O\nin O O\nXML Name Name\n. O O\n\nPlease O O\nhelp O O\n. O O\n\nThe O O\npiece O O\nof O O\ncode O O\nwhich O O\nyou O O\nhave O O\nwritten O O\nis O O\nworking O O\n. O O\n\nMay O O\nbe O O\nthe O O\nway O O\nyou O O\nare O O\nchecking O O\nweather O O\nits O O\nworking O O\nor O O\nnot O O\nis O O\nwrong O O\n. O O\n\nI O O\nhave O O\ngone O O\nthrough O O\nthis O O\nfor O O\nchecking O O\nthe O O\nupdate O O\non O O\nthe O O\nXML Name Name\nwhat O O\nyou O O\nhave O O\ndone O O\n. O O\n\nYou O O\nstill O O\nhave O O\nany O O\ndoubts O O\non O O\nwhat O O\nyou O O\ndid O O\n? O O\n\nI O O\ncannot O O\npost O O\nimages Name Name\nbecause O O\nof O O\nmy O O\nreputation O O\nscore O O\notherwise O O\nI O O\nwould O O\nhave O O\nshown O O\nthe O O\noutput O O\nwhat O O\nI O O\ngot O O\nfrom O O\neclipse Name Name\n. O O\n\nTry O O\nthis O O\n. O O\n\nif(\"status\".equalsIgnoreCase((nNode.getNodeName()))) Name Name\n{ Name Name\nnNode.setTextContent(\"2000000\") Name Name\n; Name Name\n} Name Name\n\nI O O\nhave O O\na O O\nuse O O\ncase O O\nwhere O O\nI O O\nneed O O\nto O O\npreppend O O\n<span>word</span> Name Name\ntags O O\nbefore O O\nthe O O\ntree Name Name\nleaf O O\nnodes Name Name\n. O O\n\nThe O O\ntree Name Name\nnode Name Name\nis O O\nloaded O O\nasynchronously O O\nand O O\nit O O\nbecomes O O\nimpossible O O\nto O O\ncheck O O\non O O\nload Name Name\nevent Name Name\n. O O\n\nI O O\nhave O O\ntried O O\nnode.rendered Name Name\nand O O\nnode.childrenrendered Name Name\nbut O O\nnot O O\nall O O\nthe O O\nelements O O\nare O O\nloaded O O\nat O O\nsame O O\ntime O O\n. O O\n\nI O O\nam O O\nkeeping O O\nan O O\napprox O O\ntimeout O O\nsuch O O\nas O O\n\nEven O O\nthough O O\nthis O O\nsolution O O\nworks O O\nfor O O\nme O O\n. O O\n\nBut O O\nI O O\nam O O\nnot O O\nsatisfied O O\nwith O O\nit O O\n. O O\n\nI O O\nwant O O\nto O O\nknow O O\nif O O\ntheir O O\nis O O\nan O O\nevent Name Name\nwhich O O\nis O O\nfired O O\nwhen O O\nthe O O\nnode O O\nis O O\nrendered O O\nin O O\nUI O O\n. O O\n\n( O O\nlike O O\nthe O O\nload Name Name\nevent Name Name\nfor O O\nloading O O\n) O O\n. O O\n\nPS O O\n: O O\nI O O\nhave O O\ntried O O\nthe O O\nload Name Name\nevent Name Name\nalready O O\nbut O O\nI O O\ndoes O O\nnot O O\nwork O O\n. O O\n\nPretty O O\nmuch O O\nseems O O\nto O O\nbe O O\nthat O O\nload O O\nhappens O O\nbefore O O\nthe O O\nnode O O\nis O O\nrendered O O\nin O O\nUI O O\n. O O\n\nAny O O\nbetter O O\nsolution O O\nor O O\nsuggestions O O\nwould O O\nbe O O\nappreciated O O\n. O O\n\nThank O O\nyou O O\n\nI O O\n'm O O\ntrying O O\nto O O\nbuild O O\na O O\nQuery Name Name\nthat O O\nexcludes O O\nresults O O\nfrom O O\nan O O\nArray Name Name\nwhen O O\nit O O\nonly O O\ncontains O O\nthe O O\nString Name Name\nsent O O\nin O O\nthe O O\nQuery Name Name\n. O O\n\nI O O\nhave O O\nthese O O\ntwo O O\nArrays Name Name\n\nArray Name Name\n1 Name Name\n\nArray Name Name\n2 Name Name\n\nI O O\nwant O O\nto O O\nexclude O O\nJUST O O\nthe O O\nsecond O O\none O O\n, O O\nso O O\nI O O\nca O O\nn't O O\nuse O O\n\nI O O\ntried O O\nthis O O\n, O O\nbut O O\nit O O\ndid O O\nn't O O\nwork O O\neither O O\n: O O\n\nThank O O\nyou O O\nfor O O\nyour O O\ntime O O\n! O O\n\n! O O\n\nOk O O\n, O O\nI O O\nsolved O O\nit O O\n. O O\n\nI O O\nwant O O\na O O\nexplosion Name Name\nto O O\nplay O O\nwhen O O\na O O\nobject O O\nhits O O\nanother O O\nobject O O\n. O O\n\nI O O\ndo O O\nthis O O\nso O O\nthat O O\nwhen O O\nhitTestObject Name Name\nis O O\ntrue O O\n, O O\nI O O\nrun O O\nthis O O\nfunction O O\n\nExplosion Name Name\nclass O O\nonly O O\nconsists O O\nof O O\nsetting O O\nthe O O\ninput O O\nto O O\nit O O\n's O O\nx Name Name\nand O O\ny Name Name\nvalues O O\n. O O\n\nThen O O\nin O O\nexplosion Name Name\nmovieclip O O\nI O O\nhave O O\na O O\nfew O O\nframes O O\nof O O\na O O\nanimation O O\n. O O\n\nIt O O\nends O O\nin O O\na O O\nkeyframe O O\n( O O\ni.e O O\n. O O\n, O O\nas O O\nan O O\naction O O\nin O O\nthat O O\nframe O O\n) O O\nwith O O\nthe O O\nfollowing O O\ncode O O\n: O O\n\nMy O O\nquestion O O\nis O O\n. O O\n\nIs O O\nit O O\nreally O O\ngone O O\nnow O O\n? O O\n\nI O O\nhad O O\nto O O\nadd O O\nstop() Name Name\nto O O\nnot O O\nget O O\nerror O O\n1009 O O\n. O O\n\nThat O O\nmakes O O\nme O O\nsuspect O O\nsome O O\nevent O O\ntimer O O\nis O O\nstill O O\nrunning O O\naround O O\n? O O\n\nRemoving O O\na O O\ndisplay O O\nobject O O\nfrom O O\nthe O O\ndisplay O O\nlist Name Name\n, O O\ndoes O O\nn't O O\nstop O O\nthe O O\nanimation O O\nor O O\nremove O O\nit O O\nfrom O O\nmemory O O\n. O O\n\nIt O O\njust O O\nremoves O O\nit O O\nfrom O O\nthe O O\ndisplay O O\nlist Name Name\n. O O\n\nYes O O\n, O O\nyou O O\nneed O O\nto O O\nstop O O\nthe O O\nanimation O O\nand O O\nremove O O\nany O O\nevent Name Name\nlisteners O O\nthat O O\nmight O O\nbe O O\nactive O O\nfor O O\nthat O O\nobject O O\n. O O\n\nA O O\ndisplay O O\nobject O O\nis O O\nnever O O\ntruly O O\ngone O O\nuntil O O\nit O O\nis O O\ngarbage O O\ncollected O O\n. O O\n\nBut O O\nthat O O\nwill O O\nnot O O\nhappen O O\nuntil O O\nno O O\nreferences O O\nto O O\nthat O O\nobject O O\nremain O O\n. O O\n\nSo O O\nif O O\nyou O O\nhave O O\na O O\nvariable O O\ncalled O O\nexplosion Name Name\nthat O O\nreferences O O\nyour O O\ndisplay O O\nobject O O\n, O O\nyou O O\nneed O O\nto O O\nset O O\nit O O\nto O O\nnull Name Name\nafter O O\nremoving O O\nit O O\nfrom O O\nthe O O\ndisplay O O\nlist Name Name\n: O O\n\nKeep O O\nin O O\nmind O O\nthat O O\nthis O O\ndoes O O\nn't O O\nimmediately O O\nremove O O\nthe O O\nobject O O\nfrom O O\nmemory O O\n, O O\nit O O\njust O O\nmakes O O\nit O O\nfair O O\ngame O O\nfor O O\nthe O O\ngarbage O O\ncollector O O\n. O O\n\nYou O O\ncan O O\ngoogle O O\n\" O O\nAS3 Name Name\nGarbage O O\nCollection O O\n\" O O\nto O O\nget O O\nmore O O\ninformation O O\non O O\nthat O O\nprocess O O\n. O O\n\nHow O O\ncan O O\ni O O\nchange O O\nionic Name Name\ntabs Name Name\nroot Name Name\npage Name Name\nwhen O O\ni O O\nclick O O\ndash Name Name\nboard Name Name\n? O O\n\nThis O O\nmy O O\nTabs.ts Name Name\n\ntabs.html Name Name\n\nThis O O\nmy O O\nhome.ts Name Name\nfile O O\n\nThis O O\nis O O\nmy O O\nhome.html Name Name\n\nI O O\nwant O O\nto O O\nchange O O\ntab Name Name\nroot O O\nwhen O O\ni O O\nclick O O\ndashboard Name Name\nfrom O O\nmy O O\nhome.html Name Name\nit O O\nwill O O\nchange O O\nthe O O\ntab Name Name\nroot O O\nto O O\ndashboard Name Name\npage Name Name\nand O O\nselect O O\ndashboard Name Name\n. O O\n\nif O O\npress O O\npress O O\ntraining O O\nit O O\nwill O O\nchange O O\nto O O\ntraining O O\npage Name Name\nand O O\nalso O O\nchange O O\nthe O O\ntab Name Name\nroot O O\nto O O\ntrainning O O\npage Name Name\nans O O\nselect O O\n. O O\n\nyea O O\nyou O O\ncan O O\ninside O O\nyour O O\ntabs.html Name Name\n\ninside O O\nyour O O\ntabs.ts Name Name\nfile O O\n\nin O O\nother O O\nway O O\ninstead O O\nof O O\nusing O O\nthis.navCtrl.push(TrainingPage,this.token) Name Name\n; Name Name\nuse O O\nthis.navCtrl.select Name Name\n( Name Name\n\" Name Name\n1 Name Name\n\" Name Name\n, Name Name\nthis.token Name Name\n) Name Name\n; Name Name\n\nI O O\ncan O O\nonly O O\nsee O O\none O O\nway O O\nto O O\nto O O\nthis O O\n& O O\nit O O\n's O O\nby O O\nsetting O O\nthe O O\nroot O O\nto O O\nthe O O\npage Name Name\nyou O O\nwant O O\n. O O\n\nWe O O\ndevelop O O\nwith O O\nXamarin.iOS Name Name\nand O O\nare O O\ntrying O O\nto O O\nsearch/highlight O O\nin O O\na O O\nPDF Name Name\n. O O\n\nThere O O\nis O O\nan O O\niOS Name Name\nclass O O\nfor O O\nsearching O O\n, O O\nCGPDFScanner Name Name\n, O O\nbut O O\nunfortunately O O\nno O O\nbindings O O\nare O O\noffered O O\nby O O\nXamarin Name Name\n. O O\n\nIs O O\nthere O O\na O O\nsolution O O\nor O O\nwe O O\nshould O O\nforget O O\nabout O O\nit O O\n? O O\n\nWe O O\nbelieve O O\nthat O O\nthere O O\nis O O\na O O\nway O O\nto O O\nmake O O\nbindings O O\nfor O O\nexisting O O\niOS Name Name\nclasses O O\n. O O\n\nOr O O\nwe O O\ncould O O\nprobably O O\nuse O O\nan O O\nexisting O O\nproject O O\n, O O\nlike O O\nPDFKitten Name Name\n, O O\nand O O\nmake O O\nXamarin Name Name\nbindings O O\n. O O\n\nAny O O\nhints O O\n? O O\n\nXamarin Name Name\noffers O O\nway O O\nfor O O\ncreating O O\nbinding O O\nlibrary O O\n. O O\n\nIf O O\nyou O O\nhave O O\nsome O O\nworking O O\nand O O\ntested O O\nsolution O O\navailable O O\nin O O\nObjective Name Name\nC Name Name\n, O O\ncreate O O\nBinding O O\nlibrary O O\nin O O\ntamarin Name Name\nand O O\nuse O O\nthat O O\n. O O\n\nYou O O\ncan O O\ncheck O O\ndetailed O O\ndocument O O\nof O O\nit O O\nfrom O O\nhere O O\n\nI O O\nhave O O\ncreated O O\nbinding O O\nlibrary O O\nfor O O\none O O\nof O O\nmy O O\nproject O O\nwhere O O\ni O O\nhad O O\nto O O\nintegrate O O\nthird O O\nparty O O\nsdk Name Name\nwhich O O\nwas O O\nonly O O\nin O O\nobjective Name Name\nC Name Name\n. O O\nI O O\nfollowed O O\nstep O O\ngiven O O\nhere O O\nand O O\nit O O\nworked O O\n. O O\n\nIn O O\nCakePHP Name Name\n2.x Name Name\n, O O\nI O O\ncan O O\nuse O O\nthe O O\nbelow O O\ncode O O\nto O O\noutput O O\npagination O O\nin O O\nBootstrap Name Name\n3 Name Name\nperfectly O O\n: O O\n\nThe O O\noutput O O\nis O O\n: O O\n\nBut O O\nnow O O\nthe O O\nBootstrap Name Name\n4 Name Name\nBeta O O\nis O O\nchanged O O\nthe O O\nstructure O O\nwith O O\nclass O O\ninside O O\neach O O\nelement O O\nlike O O\nthis O O\n: O O\n\nPlease O O\nhelp O O\nto O O\nset O O\noptions O O\nof O O\nPaginator Name Name\nin O O\nCakePHP Name Name\n2.x Name Name\nfor O O\nthe O O\nabove O O\noutput O O\n. O O\n\nI O O\nam O O\nfacing O O\nthis O O\nissue O O\nin O O\nmy O O\nasp.net Name Name\napplication O O\nwhen O O\nusing O O\nupdate Name Name\npanel Name Name\n. O O\n\nThe O O\nerror O O\nonly O O\nwith O O\nIE9 Name Name\nand O O\nfor O O\nother O O\nbrowser Name Name\napplication O O\nworks O O\nfine O O\n. O O\n\nFor O O\ndebuging O O\npurpose O O\nand O O\nto O O\nconclude O O\nthe O O\nissue O O\nonly O O\nwhen O O\nusing O O\nupdate Name Name\npanel Name Name\nI O O\ncreated O O\na O O\nsample O O\nasp.net Name Name\nweb O O\nsite O O\n. O O\n\nASPX Name Name\n\nWhen O O\nI O O\nclick O O\non O O\nthe O O\nbutton O O\n, O O\nI O O\nget O O\nthe O O\nfollowing O O\nJS Name Name\nerror O O\n. O O\n\nThe O O\nJS Name Name\nerror O O\nis O O\n\nFrom O O\nIE Name Name\n's O O\nF12 Name Name\ndeveloper Name Name\ntool Name Name\n, O O\n\nFrom O O\nVisual Name Name\nStudio Name Name\n2012 Name Name\n, O O\n\nBut O O\nwhen O O\nI O O\nremove O O\nthe O O\nupdate Name Name\npanel Name Name\n, O O\nthe O O\nJS Name Name\nerror O O\nis O O\nno O O\nlonger O O\n. O O\n\nAny O O\nidea O O\nto O O\nsolve O O\nthis O O\nproblem O O\n? O O\n\nAdd O O\nfollowing O O\nline O O\nin O O\n<head> Name Name\n\nOR O O\n\nOR O O\n\nI O O\nneed O O\nto O O\ndownload O O\n20 O O\nimages Name Name\nfrom O O\nremote O O\nserver Name Name\nand O O\nstore O O\nin O O\nAndroid Name Name\nfolder O O\n. O O\n\nHere O O\nmy O O\ncode O O\n: O O\n\nInterface O O\n: O O\n\nIn O O\nfragment O O\n: O O\n\nAs O O\nyou O O\ncan O O\nsee O O\nI O O\niterate O O\nloop O O\nand O O\ncall O O\ncall.enqueue() Name Name\nfor O O\nevery O O\nimage Name Name\n. O O\n\nIs O O\nit O O\ngood O O\nsolution O O\n? O O\n\nIs O O\nthis O O\ncan O O\nperform O O\nmy O O\nandroid Name Name\napp O O\n? O O\n\nYou O O\ncan O O\nuse O O\ndependencies O O\nlike O O\nGlide Name Name\n, O O\nPissaco Name Name\netc O O\nfor O O\ndownloading O O\nimages Name Name\nfrom O O\nremote O O\nserver Name Name\n. O O\n\nBecause O O\nthese O O\nprovide O O\nbetter O O\ncaching O O\nand O O\nerror O O\nhandling O O\n. O O\n\nHave O O\na O O\nlook O O\nat O O\nthe O O\ncode O O\nbelow O O\n. O O\n\nIt O O\nis O O\nusing O O\nPissaco Name Name\nto O O\nload O O\nthe O O\nimage Name Name\n\nFirst O O\nadd O O\nthe O O\nPissaco Name Name\ndependency O O\nin O O\nyour O O\nbuild.gradle Name Name\n\nI O O\nhave O O\na O O\nsmall O O\nquestuion O O\n. O O\n\nI O O\nhave O O\na O O\narticle Name Name\nwith O O\nrepeatable O O\nproperty O O\ntags Name Name\n. O O\n\nWhen O O\ni O O\nediting O O\nexist O O\narticle Name Name\nand O O\nadd O O\nnew O O\ntags Name Name\nall O O\nis O O\nok O O\n. O O\n\nBut O O\nif O O\na O O\nremove O O\ntag Name Name\nfrom O O\nform Name Name\nin O O\narticle Name Name\nthis O O\ntag Name Name\nstill O O\nexists O O\n. O O\n\nAs O O\ni O O\nunderstand O O\npost O O\ndata O O\nbinding O O\nto O O\nthe O O\nform Name Name\nand O O\nto O O\nthe O O\nentity O O\n. O O\n\nThats O O\nway O O\nnew O O\ntags Name Name\nappear O O\nin O O\nthe O O\nmaterial O O\n. O O\n\nBut O O\nwhy O O\ndid O O\nthey O O\nnot O O\ndisappear O O\nafter O O\nbinding O O\nnew O O\npost O O\ndata O O\n? O O\n\nUPDATE O O\n\nHere O O\nis O O\nmy O O\nArticle Name Name\nentity O O\n\nAnd O O\nArticleType Name Name\n\nTry O O\nto O O\nmodify O O\nadd Name Name\ntag Name Name\nand O O\nremove Name Name\ntag Name Name\nfunction O O\nin O O\nArticle Name Name\nentity O O\nto O O\nsomething O O\nlike O O\nthis O O\n\nIf O O\nI O O\nuse O O\na O O\ntry Name Name\ncatch Name Name\nblock O O\nsuch O O\nas O O\n: O O\n\nhow O O\ncan O O\nI O O\nfind O O\nout O O\nwhich O O\nexception Name Name\ntype O O\nit O O\nis O O\nif O O\nthe O O\nmethod O O\nmay O O\nthrow O O\nmultiple O O\nexception Name Name\ntypes O O\n? O O\n\nThanks O O\n. O O\n\nIs O O\nit O O\na O O\ngood O O\nidea O O\nto O O\ncreate O O\na O O\nlighter O O\nversion O O\nof O O\nan O O\nEntity O O\nin O O\nsome O O\ncases O O\njust O O\nfor O O\nperformance O O\nreason O O\npointing O O\nto O O\nsame O O\ntable Name Name\nbut O O\nwith O O\nfewer O O\ncolumns Name Name\nmapped O O\n. O O\n\nE.g O O\nIf O O\nI O O\nhave O O\na O O\nContact O O\nTable Name Name\nwhich O O\nhas O O\n50 O O\nColumns Name Name\nand O O\nin O O\nfew O O\nof O O\nthe O O\nrelated O O\nentities O O\nI O O\nmight O O\nbe O O\ninterested O O\nin O O\nFirstName Name Name\nand O O\nLastName Name Name\nproperty O O\nis O O\nit O O\na O O\ngood O O\nidea O O\nto O O\ncreate O O\na O O\nlightweight O O\nversion O O\nof O O\nContact O O\ntable Name Name\n. O O\n\nE.g O O\n. O O\n\nAlso O O\nis O O\nit O O\npossible O O\nto O O\nmap O O\nmultiple O O\nclasses O O\nto O O\nsame O O\ntable Name Name\n? O O\n\nDo O O\nn't O O\nmap O O\nmultiple O O\nclasses O O\nto O O\nthe O O\nsame O O\ntable Name Name\n. O O\n\nI O O\ntried O O\nthis O O\nonce O O\nand O O\nthough O O\nit O O\nworked O O\nfor O O\nwhat O O\nI O O\nwas O O\ndoing O O\n, O O\nI O O\n'm O O\nsure O O\nit O O\nwould O O\nhave O O\nbitten O O\nme O O\nlater O O\n. O O\n\nIt O O\n's O O\nbetter O O\nto O O\nuse O O\nprojections O O\nto O O\npopulate O O\nthe O O\n\" O O\nlight O O\n\" O O\nclasses O O\n. O O\n\nIt O O\n's O O\nnot O O\na O O\ngood O O\nidea O O\n. O O\n\nInstead O O\n, O O\nalways O O\nmap O O\nthe O O\nfull O O\nclass O O\nand O O\ncreate O O\nsmaller O O\nones O O\nthat O O\nyou O O\ncan O O\nproject O O\non O O\nusing O O\nTransformers.AliasToBean Name Name\nor O O\nLINQ Name Name\n. O O\n\nAn O O\nexample O O\nof O O\nthe O O\nlatter O O\n: O O\n\nThis O O\nwill O O\nonly O O\nselect O O\nthose O O\nthree O O\nfields O O\nfrom O O\nthe O O\nDB O O\n, O O\neven O O\nwhen O O\nfiltering O O\nby O O\na O O\ndifferent O O\none O O\n. O O\n\nIt O O\n's O O\nworth O O\nnoting O O\nthat O O\n, O O\nwith O O\nLINQ Name Name\n, O O\nyou O O\ncould O O\nalso O O\nuse O O\nan O O\nanonymous O O\ntype O O\nto O O\nselect O O\nany O O\nprojection O O\nyou O O\nwant O O\nwithout O O\ncreating O O\nadditional O O\ntypes O O\nor O O\nmappings O O\n. O O\n\nI O O\n'm O O\nattempting O O\nto O O\nuse O O\nGoogle Name Name\nScript Name Name\nto O O\nsend O O\nuser O O\ninformation O O\nfrom O O\nan O O\nHTML Name Name\nform O O\nto O O\nGoogle Name Name\nDrive Name Name\n. O O\n\nI O O\nhad O O\na O O\nversion O O\nthat O O\nworked O O\nwell O O\nenough O O\n, O O\nusing O O\nthe O O\nonclick O O\nevent O O\n, O O\nbut O O\nI O O\nwanted O O\nto O O\nadd O O\nfunctionality O O\nthat O O\nensured O O\nall O O\nrequired O O\nfields O O\nwere O O\nfilled O O\nin O O\nbefore O O\nsubmission O O\n. O O\n\nResearch O O\non O O\nthis O O\nsite O O\nsuggested O O\nonsubmit O O\nwithin O O\nthe O O\nform O O\ntag O O\n, O O\nso O O\nI O O\nmodified O O\nmy O O\ncode O O\nto O O\nuse O O\nonsubmit O O\n. O O\n\nThat O O\n's O O\nthe O O\nversion O O\nthat O O\nappears O O\nbelow O O\n. O O\n\nWhat O O\nhappens O O\nis O O\nthat O O\non O O\nsubmission O O\n, O O\nthe O O\nform O O\ncompletely O O\ndisappears O O\nand O O\nno O O\nfiles O O\nare O O\nsent O O\nto O O\nDrive Name Name\n. O O\n\nI O O\nunderstand O O\nthat O O\nonsubmit O O\nrefreshes O O\nthe O O\npage O O\n... O O\nbut O O\nI O O\n'd O O\nlike O O\nit O O\nto O O\nalso O O\nrecreate O O\nthe O O\nprevious O O\npage O O\nminus O O\nthe O O\nform O O\n, O O\nand O O\nadd O O\nsome O O\nmessage O O\nabout O O\nsuccessful O O\nupload O O\n. O O\n\nFile O O\nsubmission O O\nalso O O\nneeds O O\nto O O\nwork O O\n, O O\nof O O\ncourse O O\n. O O\n\nI O O\n'd O O\nappreciate O O\nany O O\nthoughts O O\nabout O O\nthis O O\n. O O\n\nI O O\nhave O O\nlooked O O\nat O O\nposts O O\nrelated O O\nto O O\nvery O O\nsimilar O O\nquestions O O\nand O O\ntried O O\nto O O\nimplement O O\nsome O O\nof O O\nthe O O\ncode O O\nfrom O O\nthem O O\n, O O\nbut O O\nno O O\nluck O O\nyet O O\n. O O\n\nThanks O O\n! O O\n\nHere O O\n's O O\nthe O O\nJavaScript Name Name\n: O O\n\nAnother O O\nnote O O\n, O O\nsome O O\nof O O\nyour O O\ninputs O O\nshare O O\nthe O O\nsame O O\nID Name Name\n. O O\n\nIf O O\nyou O O\n're O O\ngoing O O\nto O O\nuse O O\nID Name Name\nand O O\nname O O\n, O O\nI O O\nwould O O\nmake O O\nthem O O\nmatch O O\n. O O\n\nI O O\nwould O O\nalso O O\ngive O O\nthe O O\nsubmit O O\nbutton O O\nan O O\nID O O\n. O O\n\nYou O O\nmay O O\nwant O O\nto O O\nalso O O\nlook O O\ninto O O\nHTML5 Name Name\nform O O\ninput O O\nvalidation O O\n, O O\nwhich O O\nis O O\nmostly O O\nsupported O O\nby O O\nbrowsers Name Name\n, O O\nbut O O\nultimately O O\n, O O\nyou O O\nwant O O\nthe O O\njavascript Name Name\n( O O\nclient-side Name Name\n) O O\nand O O\nserver Name Name\nside O O\ncode O O\nto O O\nvalidate O O\nyour O O\ninput O O\n. O O\n\nWith O O\nthe O O\nfollowing O O\nscript O O\n, O O\nI O O\nsplit O O\ntext O O\ninto O O\nsentences O O\n, O O\nand O O\ncreate O O\nimages Name Name\ndynamically O O\nfrom O O\neach O O\nsentence O O\n. O O\n\nMy O O\nfor O O\nloop O O\nis O O\nnot O O\nexecuting O O\nproperly O O\n. O O\n\nI O O\ndo O O\nnot O O\nunderstand O O\n, O O\nwhy O O\n? O O\n\nThe O O\nimage Name Name\ncreation O O\nfunction O O\nis O O\nbeing O O\ncalled O O\nonly O O\nonce O O\n, O O\ncreating O O\njust O O\none O O\nimage Name Name\n, O O\ndespite O O\nthe O O\ntext O O\ncontains O O\n4 O O\ndistinct O O\nsentences O O\n. O O\n\nThe O O\npurpose O O\nof O O\nthe O O\nscript O O\nis O O\ncreating O O\nfour O O\nimages Name Name\nand O O\nsaving O O\nthem O O\ninto O O\nthe O O\nhard Name Name\ndrive Name Name\n. O O\n\nI O O\nneed O O\nyour O O\nsuggestions O O\n. O O\n\nAll O O\nthe O O\nimages Name Name\nare O O\ngetting O O\nthe O O\nsame O O\nfilename O O\nbecause O O\nthe O O\ncode O O\nruns O O\nfast O O\nenough O O\nsuch O O\nthat O O\nthe O O\ntime() Name Name\nfunction O O\n( O O\nwhich O O\nreturns O O\nthe O O\ntime O O\nin O O\nseconds O O\n) O O\nis O O\ngiving O O\nyou O O\nthe O O\nsame O O\nvalue O O\n4 O O\ntimes O O\n. O O\n\nSo O O\nyou O O\n're O O\noverwriting O O\nthe O O\nsame O O\nfile O O\n4 O O\ntimes O O\nin O O\nthis O O\nline O O\n: O O\n\nAs O O\na O O\nworkaround O O\n, O O\nyou O O\ncan O O\nappend O O\na O O\nrandom O O\nnumber O O\nfor O O\nuniqueness O O\nusing O O\nthe O O\nrand() Name Name\nfunction O O\n. O O\n\nBetter O O\nyet O O\n, O O\nuse O O\nphp Name Name\n's O O\nbuilt-in O O\ntempnam() Name Name\nfunction O O\nto O O\ngenerate O O\na O O\nunique O O\nfilename O O\n. O O\n\nI O O\n'm O O\nusing O O\njQuery Name Name\nvalidation O O\nin O O\norder O O\nto O O\nsort O O\nbanners Name Name\non O O\na O O\nwebsite O O\n. O O\n\nI O O\nhave O O\nthree O O\ntypes O O\nof O O\nbanners Name Name\n: O O\n\nDefault Name Name\nBanner Name Name\n( O O\nset O O\nby O O\nthe O O\ncompany O O\n, O O\nexisting O O\nrule O O\ncannot O O\nbe O O\nremoved O O\nbut O O\ncan O O\nbe O O\nsorted O O\n) O O\n\nSelectable Name Name\nBanner Name Name\n( O O\nselectable Name Name\nbanner Name Name\nform O O\na O O\nlist O O\nof O O\nmany O O\n) O O\n\nSpecial Name Name\nBanner Name Name\n( O O\nspecial Name Name\nbanner Name Name\n, O O\nset O O\nby O O\nthe O O\ncompany O O\ndifference O O\nbetween O O\nthis O O\nand O O\ndefault O O\nis O O\nthat O O\nthey O O\ncan O O\nbe O O\nremoved O O\nfrom O O\nthe O O\ncarousel O O\n) O O\n\nThe O O\nbanners O O\ncarousel O O\nhas O O\na O O\nfew O O\nrules O O\nno O O\nmore O O\nthan O O\n7 O O\nbanners Name Name\nare O O\nallowed O O\ninto O O\nthe O O\ncarousel O O\nand O O\nfour O O\nof O O\nthese O O\ncan O O\nbe O O\ncustom O O\n, O O\nwith O O\nthe O O\nfour O O\nof O O\nthese O O\nbeing O O\nselectablebanners Name Name\n. O O\n\nI O O\n've O O\ngot O O\nthe O O\nlogic O O\nfor O O\nthis O O\nas O O\nfollows O O\n: O O\n\nAnother O O\nrule O O\nI O O\nhave O O\nin O O\nplace O O\nis O O\nthat O O\na O O\ndefault Name Name\nbanner Name O\ncannot O O\nbe O O\nremoved O O\nbut O O\nit O O\ncan O O\nbe O O\nsorted O O\n. O O\n\nI O O\n've O O\nimplemented O O\nthis O O\nas O O\nso O O\n: O O\n\n} Name Name\n) Name Name\n; Name Name\n\nHowever O O\nI O O\nwould O O\nlike O O\nto O O\namend O O\nthis O O\nslightly O O\nbut O O\nhave O O\nno O O\nidea O O\nhow O O\nto O O\nbegin O O\nwith O O\nthis O O\nlogic O O\nas O O\nit O O\nis O O\nslightly O O\nmore O O\nadvanced O O\n. O O\n\nThe O O\nrule O O\nI O O\nwant O O\nto O O\nimplement O O\nis O O\nthat O O\nif O O\nthere O O\nare O O\n2 O O\nor O O\nmore O O\n\" O O\nselectedbanners Name Name\n\" O O\nin O O\nul O O\n#sortable1 Name Name\nthen O O\nthe O O\ndefault O O\nbanners O O\ncan O O\nbe O O\nremoved O O\n. O O\n\nHowever O O\nif O O\nonly O O\nfor O O\nexample O O\nthere O O\nis O O\na O O\nsingle O O\ndefaultbanner Name Name\nand O O\na O O\nsingle O O\nselectablebanner Name Name\n. O O\n\nThen O O\nI O O\nwould O O\nlike O O\nmy O O\nprevious O O\nvalidation O O\nto O O\napply O O\nwhich O O\nis O O\nthat O O\na O O\ndefault Name Name\nbanner Name Name\ncannot O O\nbe O O\nremoved O O\n. O O\n\nCan O O\nsomeone O O\nplease O O\nhelp O O\nme O O\nto O O\nsolve O O\nthis O O\nproblem O O\n. O O\n\nI O O\n've O O\ncreated O O\na O O\njsFiddle Name Name\nwhich O O\nhas O O\nmy O O\nfull O O\ncode O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nIt O O\n's O O\nnot O O\ncompletely O O\nclear O O\nto O O\nme O O\n, O O\nhowever O O\nthis O O\nis O O\nmy O O\nbest O O\nguess O O\nas O O\nto O O\nwhat O O\nyou O O\nmight O O\nbe O O\nlooking O O\nfor O O\n. O O\n\nFiddle Name Name\n\nI O O\n'm O O\ncurrently O O\ndeveloping O O\na O O\nwin32 Name Name\nconsole Name Name\napplication O O\n, O O\nand O O\nwondering O O\nif O O\nthere O O\nis O O\nany O O\nway O O\nto O O\nmake O O\nvisual Name Name\nstudio Name Name\nopen O O\nit O O\nin O O\npowershell Name Name\ninstead O O\nof O O\ncmd.exe Name Name\nwhen O O\nI O O\n'm O O\ndebugging O O\nit O O\n. O O\n\nAll O O\nI O O\nreally O O\nwant O O\nis O O\na O O\nbetter O O\nshell Name Name\n, O O\nwhere O O\nI O O\ncan O O\ncopy/paste O O\netc O O\n. O O\n\nwithout O O\nclicking O O\n. O O\n\nThanks O O\n\nIn O O\nVisual Name Name\nStudio Name Name\ngoto O O\nTools O O\n> O O\nExternal O O\nTools O O\n.. O O\n. O O\n\nIn O O\nthis O O\nwindow Name Name\nyou O O\ncan O O\nchange O O\nthe O O\nTitle O O\nto O O\nPowershell Name Name\n. O O\n\nSet O O\nthe O O\nPowershell Name Name\nStartup O O\nto O O\nexecute O O\nand O O\nthe O O\ncheck O O\nthe O O\noutput O O\nwindow Name Name\nbox Name Name\nand O O\nit O O\nwill O O\ndump O O\nall O O\nthe O O\noutput O O\nthat O O\nwould O O\ntypically O O\ngoto O O\ncmd Name Name\ninto O O\nPowershell Name Name\n. O O\n\nThis O O\nlink O O\nwill O O\nexplain O O\nit O O\na O O\nlittle O O\nbit O O\nmore O O\nfor O O\nyou O O\n. O O\n\nI O O\nthink O O\nyou O O\n're O O\nmixing O O\nup O O\nthe O O\nNT Name Name\nconsole Name Name\nsubsystem Name Name\n( O O\nan O O\napp O O\nframework O O\nofferring O O\ncommon O O\nservices O O\n) O O\nwith O O\ncmd.exe Name Name\n( O O\nan O O\napplication O O\nconsuming O O\nthose O O\nservices O O\n. O O\n) O O\n\nWhen O O\nvisuals Name Name\nstudio Name Name\nruns O O\na O O\nconsole O O\napplication O O\n, O O\nit O O\n's O O\nnot O O\nactually O O\nrunning O O\nCMD Name Name\n. O O\n\nCMD Name Name\nis O O\na O O\nconsole Name Name\napplication O O\nitself O O\n, O O\nno O O\ndifferent O O\nthan O O\nthe O O\napp O O\nyou O O\nare O O\ntrying O O\nto O O\ndebug O O\n, O O\ntherefore O O\nrunning O O\nyour O O\napplication O O\n\" O O\nin O O\npowershell Name Name\n\" O O\nis O O\nequally O O\nas O O\nmistaken O O\na O O\nconcept O O\n. O O\n\nIf O O\nyou O O\nmean O O\ntrying O O\nto O O\nrun O O\nit O O\nin O O\nPowerShell Name Name\nISE Name Name\n, Name Name\nthis O O\nis O O\nimpossible O O\n. O O\n\nISE Name Name\nis O O\na O O\nWindows Name Name\nApplication O O\n( O O\nNT Name Name\nGUI Name Name\nsubsystem Name Name\n) O O\n, O O\nwhich O O\nis O O\nan O O\nentirely O O\ndifferent O O\nsubsystem O O\nthan O O\nthat O O\nof O O\nthe O O\nconsole Name Name\n. O O\n\n-Oisin O O\n\nI O O\nhave O O\n3 O O\ncassandra Name Name\nnodes O O\n, O O\nwhen O O\nI O O\nexecute O O\na O O\nquery O O\n, O O\n2 O O\nnodes Name Name\nare O O\ngiving O O\nsame O O\nresponse O O\nbut O O\n1 O O\nnode Name Name\nis O O\ngiving O O\ndifferent O O\nresponse O O\n\nSuppose O O\nI O O\nexecuted O O\nfollowing O O\nquery O O\n\nNode1 Name Name\nand O O\nNode2 Name Name\nare O O\ngiving O O\n2 O O\nrows Name Name\nbut O O\nNode3 Name Name\nis O O\ngiving O O\n0 O O\nrows Name Name\n( O O\nempty O O\nresponse O O\n) O O\n\nHow O O\nto O O\nsolve O O\nthis O O\nissue O O\n\nI O O\ndid O O\nthe O O\nfollowing O O\nsteps O O\n, O O\nthen O O\nproblem O O\nwas O O\nsolved O O\nand O O\nnow O O\nthe O O\ndata O O\nis O O\nin O O\nsync O O\nin O O\nall O O\nthe O O\n3 O O\nnodes Name Name\n\nrun O O\nthe O O\ncommand O O\nnodetool Name Name\nrebuild Name Name\non O O\nthe O O\ninstances O O\nand O O\nalso O O\n\nupdate O O\n' Name Name\nreplication_factor Name Name\n' Name Name\n: Name Name\n' Name Name\n2 Name Name\n' Name Name\nto O O\n' Name Name\nreplication_factor Name Name\n' Name Name\n: Name Name\n' Name Name\n3 Name Name\n' Name Name\n\n1.You O O\nare O O\nnot O O\nusing O O\nNetwork O O\ntopology O O\n. O O\n\n2.Your O O\nreplication Name Name\nfactor Name Name\nis O O\n2 O O\n. O O\n\nSimple O O\nstrategy O O\n: O O\nUse O O\nonly O O\nfor O O\na O O\nsingle O O\ndatacenter O O\nand O O\none O O\nrack O O\n. O O\n\nSimpleStrategy O O\nplaces O O\nthe O O\nfirst O O\nreplica O O\non O O\na O O\nnode Name Name\ndetermined O O\nby O O\nthe O O\npartitioner O O\n. O O\n\nAdditional O O\nreplicas O O\nare O O\nplaced O O\non O O\nthe O O\nnext O O\nnodes Name Name\nclockwise O O\nin O O\nthe O O\nring O O\nwithout O O\nconsidering O O\ntopology O O\n( O O\nrack O O\nor O O\ndatacenter O O\nlocation O O\n) O O\n. O O\n\nGo O O\nto O O\nthis O O\nlink O O\n: O O\n\nhttps://docs.datastax.com/en/cassandra/3.0/cassandra/architecture/archDataDistributeReplication.html O O\n\nThis O O\nfunction O O\nretrieves O O\nthe O O\narray Name Name\nof O O\nitem O O\nrepresentation O O\nfrom O O\ndisk O O\n, O O\nconverts O O\nit O O\nto O O\nan O O\narray Name Name\nof O O\nTodoItem Name Name\ninstances O O\nusing O O\nan O O\nunnamed O O\nclosure O O\nwe O O\npass O O\nto O O\nmap O O\n, O O\nand O O\nsorts O O\nthat O O\narray Name Name\nchronologically O O\n. O O\n\nSorted O O\ndoes O O\nn't O O\nwork O O\nanymore O O\n, O O\nI O O\nget O O\nan O O\nerror O O\nto O O\nswitch O O\nto O O\nsort Name Name\n. O O\n\nBut O O\nI O O\nca O O\nn't O O\nseem O O\nto O O\nget O O\nit O O\nright O O\n. O O\n\nWhatever O O\nI O O\ndo O O\nresults O O\nin O O\nvarious O O\nerrors O O\n. O O\n\nJust O O\nreplace O O\nsorted Name Name\nby O O\nsort Name Name\n, O O\nit O O\nlooks O O\nlike O O\nyou O O\n've O O\nalready O O\ndone O O\nthe O O\nrest O O\nof O O\nthe O O\ntranslation O O\n( O O\nI O O\nca O O\nn't O O\ncheck O O\n, O O\nnot O O\nknowing O O\nhow O O\nit O O\nwas O O\nbefore O O\n) O O\n: O O\n\nReminder O O\n: O O\nsorted Name Name\nhas O O\nbecome O O\nsort Name Name\nand O O\nthe O O\nold O O\nsort Name Name\nis O O\nnow O O\nsortInPlace Name Name\n. O O\n\nI O O\nam O O\ndeveloping O O\na O O\nc# Name Name\n.net Name Name\napp O O\nin O O\nwhich O O\nI O O\nneed O O\nto O O\nsubtract O O\ntwo O O\ntime O O\nperiods O O\n. O O\n\nI O O\nhave O O\ntaken O O\ntwo O O\ndate Name Name\nobjects O O\nand O O\nsubtracted O O\nthem O O\nbut O O\nit O O\ndoes O O\nn't O O\nwork O O\n. O O\n\nSubtracting O O\none O O\nDateTime Name Name\nfrom O O\nanother O O\nreturns O O\na O O\nTimespan Name Name\nobject O O\n. O O\n\nwhich O O\nbasically O O\ntells O O\nyou O O\nhow O O\nmany O O\ndays/hours/mins/secs/milliseconds/ticks O O\nthat O O\noccured O O\nbetween O O\nthe O O\n2 O O\nDateTimes Name Name\n. O O\n\nCheck O O\nthe O O\nTimeSpan Name Name\nstruct Name Name\n. O O\n\nAlso O O\n, O O\nfor O O\nDateTime Name Name\n, O O\nyou O O\nhave O O\nhandy O O\nprocedures O O\nsuch O O\nas O O\nAddDays Name Name\n: O O\n\nSimilarlly O O\n, O O\nthere O O\nare O O\nAddHours Name Name\n, O O\nAddMonths Name Name\nand O O\neven O O\nAddMilliseconds Name Name\n: O O\n\nhttp://msdn.microsoft.com/en-us/library/system.datetime_members.aspx O O\n\nImagine O O\na O O\nplane O O\nwith O O\na O O\nnumber O O\nof O O\npoints O O\nat O O\nknown O O\nlocations O O\n. O O\n\nMost O O\nare O O\nclustered O O\nclose O O\ntogether O O\n, O O\nbut O O\nsome O O\nare O O\noutliers O O\n, O O\nand O O\nthere O O\nare O O\nlarge O O\nareas O O\nwhere O O\nthere O O\nare O O\nno O O\npoints O O\nat O O\nall O O\n. O O\n\nI O O\nhave O O\nmultiple O O\nclients O O\nwho O O\ncan O O\nview O O\nthe O O\nplane O O\nthrough O O\nrectangular O O\nviewports O O\n. O O\n\nEach O O\nclient O O\n's O O\nviewport O O\nmay O O\nbe O O\nof O O\ndifferent O O\ndimensions O O\n, O O\nand O O\ncan O O\nbe O O\nmoved O O\ninstantly O O\nto O O\nany O O\nlocation O O\non O O\nthe O O\nplane O O\n. O O\n\nThe O O\nclients O O\ndo O O\nnot O O\nknow O O\nthe O O\nlocations O O\nof O O\nthe O O\npoints O O\n; O O\nonly O O\nthe O O\nserver O O\ndoes O O\n. O O\n\nWhen O O\na O O\nclient O O\nconnects O O\n, O O\nit O O\nwill O O\ncommunicate O O\nthe O O\nsize O O\nof O O\nits O O\nviewport O O\nto O O\nthe O O\nserver O O\n, O O\nand O O\nthe O O\nserver O O\nshould O O\nrespond O O\nwith O O\na O O\nlocation O O\nwhere O O\none O O\nor O O\nmore O O\npoints O O\nwill O O\nbe O O\nvisible O O\nto O O\nthat O O\nclient O O\n's O O\nviewport O O\n. O O\n\nThe O O\nclient O O\nvisits O O\nthat O O\nlocation O O\n, O O\ncollects O O\ndata O O\nfrom O O\nvisiting O O\nthose O O\npoints O O\n, O O\nsends O O\nthat O O\ndata O O\nback O O\nto O O\nthe O O\nserver O O\n, O O\nthen O O\nrequests O O\nthe O O\nnext O O\nlocation O O\nto O O\nvisit O O\n. O O\n\nThis O O\ncontinues O O\nuntil O O\nall O O\npoints O O\nhave O O\nbeen O O\nvisited O O\nby O O\nat O O\nleast O O\none O O\nclient O O\n. O O\n\nI O O\nneed O O\nan O O\nefficient O O\nalgorithm O O\nthat O O\nwill O O\nchoose O O\nthe O O\nlocations O O\nto O O\nvisit O O\n. O O\n\nAn O O\nideal O O\nsolution O O\nwill O O\nminimize O O\nthe O O\nnumber O O\nof O O\nlocations O O\nthat O O\nclients O O\nneed O O\nto O O\nvisit O O\nby O O\nincluding O O\nas O O\nmany O O\nunvisited O O\npoints O O\nas O O\npossible O O\nwithin O O\na O O\nviewport O O\nlocation O O\n, O O\nminimizing O O\nduplicate O O\nvisits O O\non O O\npoints O O\n, O O\nand O O\nnot O O\nvisiting O O\nlocations O O\nwith O O\nno O O\nunvisited O O\npoints O O\n. O O\n\nCan O O\nyou O O\nrecommend O O\nan O O\nalgorithm O O\n? O O\n\nTo O O\ndo O O\nthis O O\n: O O\n\nI O O\nhave O O\n2 O O\nFileHandlers Name Name\nthat O O\nwrite O O\nout O O\nto O O\ntwo O O\nseparate O O\nfiles O O\n, O O\nand O O\nthe O O\namount O O\nof O O\nI/O O O\noccurring O O\nis O O\nslowing O O\ndown O O\nmy O O\napplication O O\nquite O O\na O O\nbit O O\n: O O\n\nI O O\n've O O\ndecided O O\nto O O\nhave O O\nthe O O\nFileHandlers Name Name\nrun O O\non O O\nseparate O O\nthreads O O\n. O O\n\nAs O O\nthey O O\nare O O\non O O\nseparate O O\nthreads O O\n, O O\nI O O\nneeded O O\na O O\nconcept O O\nof O O\na O O\n\" O O\nqueue Name Name\n\" O O\n, O O\nso O O\nthat O O\nthese O O\nseparate O O\nthreads O O\ncan O O\npoll O O\nthis O O\nqueue O O\nand O O\nprint O O\nout O O\nany O O\nincoming O O\nmessages O O\n. O O\n\nI O O\n've O O\npreformatted O O\nmessages O O\nso O O\nthat O O\nany O O\narguments O O\nused O O\ndo O O\nnot O O\nchange O O\nbefore O O\nthey O O\nactually O O\nreach O O\nthe O O\nprint O O\nout O O\nin O O\nthe O O\nFileHandler Name Name\n. O O\n\nNow O O\nI O O\n've O O\nrealised O O\nthat O O\nI O O\nca O O\nn't O O\nuse O O\nthe O O\n\" O O\nlog Name Name\n\" O O\nmethods O O\nprovided O O\nby O O\nthe O O\nlogger O O\n, O O\nas O O\nthat O O\nattempts O O\nto O O\ninvoke O O\nmethods O O\non O O\nthe O O\ncurrent O O\nthread O O\nto O O\nformat O O\nand O O\nprint O O\nout O O\nthe O O\nmessages O O\n. O O\n\nSo O O\nI O O\nsimply O O\ncall O O\na O O\nmethod O O\nthat O O\nadds O O\nmy O O\ntrace O O\nmessage O O\nto O O\nthe O O\nqueue O O\n. O O\n\nI O O\nthen O O\nuse O O\nrun() Name Name\nmethod O O\nof O O\nthe O O\nFileHandlers Name Name\nto O O\nprint O O\nout O O\nthe O O\nmessages O O\nusing O O\npublish() Name Name\n. O O\n\nI O O\nnow O O\nrealise O O\npublish() Name Name\nonly O O\ntakes O O\nin O O\na O O\nLogRecord Name Name\n, O O\nwhich O O\nis O O\njust O O\na O O\nlevel O O\n+ O O\nmessage O O\n. O O\n\nMy O O\ntraces O O\nhave O O\nmuch O O\nmore O O\n, O O\nwhich O O\nca O O\nn't O O\nsimply O O\nbe O O\nplaced O O\nin O O\nan O O\noverall O O\nmessage O O\n, O O\nI O O\nwant O O\nto O O\nbe O O\nable O O\nto O O\nuse O O\nthe O O\n\" O O\nFormatter Name Name\n\" O O\nthat O O\nI O O\n've O O\nset O O\nto O O\nthe O O\nFileHandler Name Name\n. O O\n\nSo O O\nI O O\ncreate O O\nan O O\ninstance O O\nof O O\nthe O O\nlogger O O\nin O O\nthe O O\nFileHandler Name Name\n, O O\nso O O\nI O O\ncan O O\nuse O O\nthe O O\nlog O O\nmethod O O\nand O O\nformat O O\nthe O O\nstring O O\nas O O\ndesigned O O\nin O O\nthe O O\nFormatter Name Name\n. O O\n\nWhich O O\nworks O O\n, O O\nkinda O O\n. O O\n\n.. O O\n. O O\n\nThis O O\nis O O\ngetting O O\na O O\nbit O O\nsilly O O\n, O O\nis O O\nit O O\nworth O O\ncontinuing O O\non O O\nlike O O\nthis O O\n, O O\nworking O O\nAROUND O O\nthe O O\njava.util.Logger Name Name\nrather O O\nthan O O\nworking O O\nwith O O\nit O O\n? O O\n\nOne O O\nof O O\nthe O O\nuseful O O\nparts O O\nof O O\nthe O O\njava.util.Logger Name Name\nis O O\nhaving O O\na O O\nseparate O O\nlogger O O\ninstance O O\nfor O O\neach O O\nclass O O\nand O O\nbeing O O\nable O O\nto O O\nhave O O\nmore O O\ncontrol O O\nover O O\nthe O O\nmessages O O\n.. O O\n. O O\n\nAny O O\nsuggestions O O\n? O O\n\nThe O O\ncode O O\nis O O\nquite O O\nlong O O\n, O O\nbut O O\nI O O\nthink O O\nit O O\n's O O\neasily O O\nunderstood O O\nfrom O O\nthe O O\ndescription O O\nabove O O\n, O O\nif O O\nnot O O\nlet O O\nme O O\nknow O O\nand O O\nI O O\n'll O O\nupload O O\nsomewhere O O\n. O O\n\nYou O O\ncan O O\nuse O O\nlog4j Name Name\n2 Name Name\nJDK O O\nLogging O O\nAdapter O O\nto O O\nenable O O\nlogging O O\nwith O O\nlog4j Name Name\n, O O\nAnd O O\nlog4j Name Name\n2 Name Name\nprovide O O\nremarkable O O\nasynchronous O O\nLogging O O\nmechanism O O\nwith O O\nlot O O\nof O O\nconfiguration O O\noptions O O\n. O O\n\nNecessary O O\nVM O O\narguments O O\n\nYou O O\ncan O O\nfind O O\nmore O O\ninformation O O\nabout O O\nlog4j Name Name\n2 Name Name\nasync O O\nlogging O O\nhere O O\nand O O\ntomcat Name Name\nconfiguration O O\ndetails O O\nhere O O\n\nsample O O\nLog4j2.xml Name Name\nfor O O\nasync O O\nloggign O O\n\nYou O O\nshould O O\nreally O O\nconsider O O\nusing O O\nSLF4J Name Name\n. O O\n\nThese O O\nissues O O\nyou O O\nare O O\ndescribing O O\ncome O O\nalong O O\nwith O O\nrolling O O\nyour O O\nown O O\nlogger Name Name\n. O O\n\nSLF4J Name Name\nis O O\nreally O O\ncommonly O O\nused O O\nbecause O O\nit O O\nis O O\nnot O O\nvery O O\nintrusive O O\n, O O\nshould O O\nyou O O\ndecide O O\nthat O O\nyou O O\nneed O O\nsomething O O\ndifferent O O\nyou O O\ncan O O\nswap O O\nit O O\nout O O\nfor O O\na O O\ndifferent O O\nframework O O\n. O O\n\nhttp://saltnlight5.blogspot.ca/2013/08/how-to-configure-slf4j-with-different.html O O\n\nhttp://www.slf4j.org/manual.html O O\n\nIf O O\nyou O O\ndo O O\ndecide O O\nto O O\nstick O O\nwith O O\nyour O O\nown O O\nlogger Name Name\nI O O\nwould O O\nsay O O\nthat O O\nyou O O\nshould O O\nstart O O\nby O O\nmaking O O\nit O O\na O O\nsingleton O O\nwith O O\nseveral O O\nlogwriters O O\nattached O O\nto O O\nlog O O\nlevels O O\n, O O\nyou O O\nthen O O\nsetup O O\na O O\nnon-blocking O O\nqueue Name Name\nfor O O\neach O O\nlogger Name Name\n( O O\nthere O O\nare O O\ntons O O\nof O O\nexamples O O\nof O O\nthis O O\nout O O\nthere O O\n) O O\nand O O\nsimply O O\ncall O O\nlog(logLevel, Name Name\nlogOrigin, Name Name\nlogMessage) Name Name\nand O O\nunder O O\nthe O O\nhood O O\nsend O O\nthis O O\nto O O\neach O O\nlogwriter Name Name\n, O O\nwhich O O\nwould O O\nbe O O\na O O\nnon-blocking O O\nqueue Name Name\nthat O O\nruns O O\non O O\na O O\nthread O O\nfor O O\neach O O\nlogwriter Name Name\n. O O\n\nEach O O\nlogwriter Name Name\nshould O O\nbe O O\nit O O\n's O O\nown O O\nthread O O\n, O O\nnot O O\neach O O\nlog Name Name\n, O O\nand O O\nyou O O\nonly O O\nneed O O\none O O\nlogger Name Name\nas O O\nall O O\nit O O\nis O O\nis O O\na O O\nshort O O\nhand O O\nto O O\nplace O O\nthings O O\nin O O\nyour O O\nlogwriter Name Name\n's O O\nqueues Name Name\nfrom O O\nanywhere O O\nin O O\nyour O O\napp O O\n. O O\n\nI O O\n'm O O\nusing O O\nan O O\nAVAssetReaderOutput Name Name\nto O O\nread O O\nsamples O O\nfrom O O\nan O O\nAVAsset Name Name\n, O O\ndo O O\nsome O O\nprocessing O O\non O O\nthem O O\n, O O\nand O O\nplay O O\nthe O O\nresult O O\nusing O O\na O O\nRemoteIO Name Name\nAU Name Name\n. O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nafter O O\ncalling O O\nAudioOutputUnitStop Name Name\nto O O\npause O O\nthe O O\nplayback O O\n, O O\nthen O O\nafter O O\ngoing O O\nto O O\nthe O O\nbackground O O\nand O O\nback O O\nto O O\nthe O O\nforeground O O\nthe O O\naudio O O\nwo O O\nn't O O\nstart O O\nagain O O\nafter O O\ncalling O O\nAudioOutputUnitStart Name Name\n. O O\n\nThis O O\nis O O\ndue O O\nto O O\nan O O\nerror O O\nreturned O O\nfrom O O\nthe O O\ncopyNextSampleBuffer Name Name\nmethod O O\nof O O\nAVAssetReaderOutput Name Name\n, O O\nwhich O O\nis O O\ncalled O O\nas O O\npart O O\nof O O\nthe O O\nrendering O O\npipeline O O\n. O O\n\nThe O O\nstatus Name Name\nproperty O O\nof O O\nAVAssetReader Name Name\nafter O O\ncalling O O\ncopyNextSampleBuffer Name Name\nis O O\nAVAssetReaderStatusFailed O O\n, O O\nand O O\nits O O\nerror Name Name\nproperty O O\nis O O\nError O O\nDomain O O\n= O O\nAVFoundationErrorDomain O O\nCode O O\n= O O\n-11847 O O\n\" O O\nOperation O O\nInterrupted O O\n\" O O\nUserInfo O O\n= O O\n0x1d8b6100 O O\n{ O O\nNSLocalizedRecoverySuggestion O O\n= O O\nStop O O\nother O O\noperations O O\nand O O\ntry O O\nagain O O\n. O O\n, O O\nNSLocalizedDescription O O\n= O O\nOperation O O\nInterrupted} O O\n\nI O O\n'm O O\nlooking O O\nfor O O\na O O\nsolution O O\nwhich O O\nwo O O\nn't O O\nforce O O\nme O O\nto O O\nreinitialize O O\nthe O O\nentire O O\npipeline O O\nafter O O\ncoming O O\nback O O\nto O O\nthe O O\nforeground O O\n- O O\nHoping O O\nthere O O\nis O O\nsuch O O\na O O\nsolution O O\n, O O\nthat O O\nAVAssetReaders Name Name\ncan O O\nsurvive O O\nthe O O\napp O O\ngoing O O\nto O O\nbackground O O\nand O O\nback. O O\n. O O\n\nNotes O O\n\nThe O O\napp O O\nis O O\nentitled O O\nto O O\nplay O O\naudio O O\nin O O\nthe O O\nbackground O O\n. O O\n\nI O O\n'm O O\nhandling O O\naudio O O\ninterruptions O O\n- O O\nSetting O O\nmy O O\nAVAudioSession Name Name\nas O O\nthe O O\nactive O O\none O O\nboth O O\non O O\nAVAudioSessionDelegates Name Name\nendInterruptionWithFlags Name Name\n: Name Name\nevent O O\nand O O\nwhenever O O\nthe O O\napp O O\nbecomes O O\nactive O O\n. O O\n\nDoes O O\nn't O O\nmake O O\na O O\ndifference O O\nwhether O O\nI O O\ndo O O\nthis O O\nor O O\nnot O O\n, O O\ngetting O O\nthe O O\nsame O O\nerror O O\n. O O\n\nSome O O\ncode O O\n: O O\n\nAudioPlayer Name Name\n\nAudioReader Name Name\nSetup O O\n\nAudioReader Name Name\nRender Name Name\nMethod O O\n, O O\ncalled O O\neventually O O\nby O O\nthe O O\nRenderCallback Name Name\nfunction O O\n\nThe O O\ngraph Name Name\nand O O\nAVReader Name Name\nunderpinnings O O\nare O O\nnot O O\nconnected/linked O O\nwhatsoever O O\n. O O\n\nThe O O\nconfusion O O\nperhaps O O\ncomes O O\nfrom O O\nthat O O\niOS Name Name\nwo O O\nn't O O\n\" O O\nbackground O O\n\" O O\n( O O\nhibernate O O\n) O O\na O O\nprocess O O\nif O O\nit O O\nsees O O\nthe O O\naudio Name Name\ngraph Name Name\nrunning O O\n( O O\nbecause O O\nthen O O\naudio O O\ndata O O\nwould O O\nbe O O\nunable O O\nto O O\nbe O O\ngenerated O O\n) O O\n. O O\n\nThat O O\n's O O\nwhy O O\nwhen O O\nyou O O\nstop O O\nthe O O\naudio Name Name\ngraph Name Name\n, O O\n2-3 O O\nminutes O O\nlater O O\n, O O\niOS Name Name\nwill O O\nbackground O O\nyour O O\nprocess O O\n( O O\nas O O\nof O O\niOS Name Name\n9 Name Name\n) O O\n. O O\n\nPresumably O O\n, O O\niOS Name Name\nlooks O O\nat O O\nwhat O O\n's O O\ngoing O O\non O O\nin O O\nyour O O\nprocess O O\nand O O\ndecides O O\nwhen O O\nyour O O\nprocess O O\nshould O O\nbe O O\nforced O O\nto O O\nbackground O O\n( O O\nvia O O\nbeginBackgroundTaskWithName:expirationHandler Name Name\n) O O\n. O O\n\nApple Name Name\ndevs O O\ndecided O O\nfor O O\nwhatever O O\nreason O O\nto O O\nmake O O\nAVReader Name Name\nstop O O\nwhen O O\nput O O\ninto O O\nbackground O O\nmode O O\n( O O\nmy O O\nbest O O\nguess O O\nis O O\nQA O O\n) O O\n. O O\n\nThe O O\ngood O O\nnews O O\nis O O\nthat O O\nyou O O\ncan O O\ndetect O O\nit O O\nand O O\nrecover O O\nwhen O O\nyour O O\nprocess O O\nexits O O\nbackground O O\nmode O O\n, O O\nbut O O\nyou O O\nWILL O O\nneed O O\nto O O\nrestart O O\nyour O O\nreader Name Name\nand O O\nreaderOutput Name Name\nagain O O\n. O O\n\nFirst O O\n, O O\nwhen O O\nAVAssetReaderOutput Name Name\n's O O\ncopyNextSampleBuffer Name Name\nreturns O O\nNULL Name Name\n, O O\ncheck O O\nAVAssetReader.error.code Name Name\nfor O O\nAVErrorOperationInterrupted Name Name\n. O O\n\nThe O O\nway O O\nwe O O\npull O O\noff O O\na O O\ngapless O O\nrecovery O O\nhere O O\nis O O\nwhen O O\nwe O O\nget O O\nto O O\nthat O O\npoint O O\n, O O\nwe O O\nfirst O O\ncalculate O O\nthe O O\nexact O O\ntime O O\nwe O O\nleft O O\noff O O\nat O O\n( O O\neasy O O\nto O O\ndo O O\n- O O\n- O O\njust O O\nmaintain O O\na O O\ncounter O O\nof O O\nthe O O\ntotal O O\nsamples O O\nalready O O\noutput O O\n) O O\n. O O\n\nThen O O\n, O O\nyou O O\nWILL O O\nneed O O\nto O O\nrestart O O\nyour O O\nAVAssetReader Name Name\nand O O\nAVAssetReaderOutput Name Name\nflow O O\n. O O\n\nBut O O\nthat O O\n's O O\nno O O\nproblem O O\nsince O O\nyour O O\ngood O O\ndevelopment O O\npractices O O\nwould O O\nhave O O\nencapsulated O O\nthat O O\nin O O\na O O\nsingle O O\nfunction O O\nthat O O\nhas O O\na O O\nseek O O\ntime O O\nas O O\nan O O\nargument O O\n. O O\n\nIn O O\nthat O O\nfunction O O\n, O O\nuse O O\nAVAssetReader.timeRange Name Name\nto O O\nseek O O\nto O O\nthat O O\ntime O O\nyou O O\nneed O O\nto O O\nresume O O\nat O O\nand O O\npresto O O\n! O O\n\nThere O O\nfirst O O\nthing O O\nI O O\nwould O O\ntry O O\nis O O\n: O O\n\nNot O O\ncalling O O\nAudioOutputUnitStop Name Name\n? O O\n\nWhy O O\ndo O O\nn't O O\nyou O O\nleave O O\nthe O O\ngraph Name Name\nrunning O O\nand O O\nwhen O O\nthe O O\naudio O O\nis O O\npaused O O\nsimply O O\nnot O O\ncall O O\n\nInstead O O\njust O O\nfill O O\nthe O O\nbuffer Name Name\nwith O O\n0 Name Name\n's O O\nand/or O O\nuse O O\na O O\nrender O O\naction O O\nof O O\nkAudioUnitRenderAction_OutputIsSilence Name Name\nfor O O\nthe O O\nbuffers Name Name\n. O O\n\nStarting O O\nand O O\nstopping O O\nthe O O\ngraph Name Name\ntakes O O\ntime O O\nand O O\nleads O O\nto O O\nan O O\nunresponsive O O\ngraph Name Name\n. O O\n\nI O O\nnever O O\nstop O O\nthe O O\ngraph Name Name\nwhile O O\nmy O O\napps O O\nare O O\nrunning O O\n. O O\n\n( O O\nUnless O O\nsome O O\nserious O O\ninterruption O O\nhappens O O\n) O O\nThis O O\nmay O O\nkeep O O\nthe O O\nasset O O\nreader O O\naround O O\nand O O\nhappy O O\n. O O\n\nBut O O\nI O O\nhave O O\na O O\nhunch O O\nthat O O\nas O O\nthe O O\nAVAssetReader Name Name\nis O O\nnot O O\ndirectly O O\nconnected O O\nto O O\nthe O O\naudio Name Name\ngraph Name Name\n( O O\nyou O O\njust O O\nhappen O O\nto O O\nrequest O O\nsamples O O\nand O O\nplace O O\nthem O O\nin O O\nthe O O\nbuffer Name Name\nsupplied O O\nby O O\nthe O O\nrender O O\ncallback O O\n) O O\nthe O O\nproblem O O\ndoes O O\nnot O O\nlie O O\nwith O O\nthe O O\naudio Name Name\ngraph Name Name\nbeing O O\nstopped O O\nand O O\nrestarted O O\nat O O\nall O O\n. O O\n\nSo O O\nthe O O\nnext O O\nline O O\nof O O\nattack O O\nI O O\nwould O O\ntry O O\nis O O\nto O O\nrequest O O\nsamples O O\nfrom O O\nan O O\nAVAsset Name Name\n, O O\nput O O\nthe O O\napp O O\ninto O O\nthe O O\nbackground O O\nand O O\nbring O O\nit O O\nback O O\nto O O\nthe O O\nforeground O O\nwithout O O\nusing O O\nan O O\nAUGraph Name Name\nat O O\nall O O\n. O O\n\nThis O O\nwill O O\ndetermine O O\nif O O\nthe O O\nproblem O O\nis O O\nrelated O O\nto O O\nthe O O\nAUGraph Name Name\nor O O\nthe O O\napp O O\nentering O O\na O O\nbackground O O\nstate O O\n. O O\n\nIf O O\nsomething O O\nhappens O O\nthat O O\nforces O O\nyou O O\nto O O\ntear O O\ndown O O\nyour O O\nAVAssetReader Name Name\nyou O O\nwill O O\nhave O O\nto O O\nreconnect O O\nto O O\nthe O O\nasset O O\n. O O\n\nSo O O\nas O O\nyou O O\nhave O O\nto O O\nwrite O O\nthat O O\ncode O O\nanother O O\nthe O O\noption O O\nI O O\nwould O O\nlook O O\nat O O\nis O O\nthe O O\none O O\nyou O O\ndo O O\nn't O O\nwant O O\nto O O\ndo O O\n. O O\n\nReconnect O O\nto O O\nthe O O\nAVAssetReader Name Name\n, O O\nseek O O\nto O O\nthe O O\nposition O O\nyou O O\nleft O O\noff O O\nat O O\nand O O\nkeep O O\ngoing O O\n. O O\n\nI O O\nam O O\nstruggling O O\nto O O\nget O O\nthe O O\nlogin O O\ncode O O\nto O O\nrun O O\nsuccessfully O O\n. O O\n\nIt O O\nkeeps O O\non O O\nechoing O O\nthe O O\n\" O O\nUsername O O\nor O O\nPassword O O\nincorrect. O O\n. O O\n\" O O\nsection O O\n, O O\nthough O O\nthe O O\ncorrect O O\nusername Name Name\nand O O\npassword Name Name\nin O O\nentered O O\n. O O\n\nAm O O\nI O O\nmissing O O\nsomething O O\nsomewhere O O\n, O O\nplease O O\nhelp O O\n. O O\n\nThe O O\nfollowing O O\nworked O O\nin O O\ntest O O\n( O O\nup O O\nto O O\nthe O O\npassword_verify Name Name\nwhere O O\nI O O\nused O O\na O O\ndifferent O O\ntest O O\nas O O\nI O O\nhave O O\nPHP Name Name\n5.3.2 Name Name\nand O O\nhence O O\nno O O\npassword_verify Name Name\n) O O\n~ O O\nhopefully O O\nit O O\nmight O O\nprove O O\nof O O\nbenefit O O\n. O O\n\n/ O O\n** O O\n\n* O O\nYou O O\nmight O O\nneed O O\nto O O\nsave O O\na O O\nhashed O O\ncopy O O\nof O O\nthe O O\npassword Name Name\nat O O\nthe O O\npoint O O\nof O O\n\n* O O\nuser O O\ncreation O O\n, O O\nso O O\nthat O O\nyou O O\ncan O O\npassword_verify Name Name\nthe O O\ninput O O\npassword Name Name\nagainst O O\nthe O O\nhashed O O\n\n* O O\ncopy O O\nreturned O O\nfrom O O\nthe O O\nDB O O\n. O O\n\n* O O\nsomething O O\nlike O O\nthis O O\n: O O\n\n* O O\n$hashed Name Name\n= Name Name\npassword_hash Name Name\n( Name Name\n$password Name Name\n, Name Name\nPASSWORD_BCRYPT Name Name\n) Name Name\n; Name Name\n\n* O O\nNOTE O O\n: O O\nI O O\n've O O\nchanged O O\nyou O O\ncode O O\nto O O\nan O O\nextent O O\n, O O\npls O O\nadapt O O\n. O O\n\n* O O\n/ O O\n\nI O O\n'm O O\nstudying O O\nthe O O\nClojure Name Name\nKoans O O\n: O O\n\nhttps://github.com/functional-koans/clojure-koans/blob/master/src/koans/10_lazy_sequences.clj O O\n\nI O O\nam O O\nstuck O O\non O O\nthis O O\none O O\n: O O\n\nI O O\ndo O O\nn't O O\nknow O O\nthe O O\nexact O O\nbuiltin O O\nfunction O O\nto O O\nfill O O\nin O O\nthe O O\n_ Name Name\nblanks O O\nwith O O\n, O O\nso O O\nI O O\ntried O O\nwriting O O\nmy O O\nown O O\n. O O\n\nI O O\nwrote O O\nit O O\nas O O\na O O\nseparate O O\nfunction O O\nas O O\na O O\ntest O O\n. O O\n\nI O O\nintend O O\nthis O O\none O O\nto O O\nbe O O\n: O O\nif O O\nx Name Name\nis O O\na O O\nseq Name Name\n, O O\nthen O O\njust O O\nrepeat O O\nits O O\nfirst O O\nelement O O\n. O O\n\nOtherwise O O\n, O O\nmake O O\nit O O\na O O\nseq Name Name\n. O O\n\nWhen O O\nI O O\nrun O O\nit O O\nexplicitly O O\n, O O\nit O O\nlooks O O\nfine O O\n: O O\n\nBut O O\nusing O O\niterate Name Name\nadds O O\nan O O\nextra O O\nparenthesis Name Name\n: O O\n\nRe-read O O\nthe O O\ndocumentation O O\nfor O O\niterate Name Name\n: O O\n\nUse O O\nnth Name Name\ninstead O O\nof O O\ntake Name Name\nif O O\nyou O O\nwant O O\nthe O O\nresults O O\nof O O\na O O\nparticular O O\niteration O O\n: O O\n\nsolves O O\nthis O O\nparticular O O\nkoan O O\n\n( O O\nAsking O O\non O O\nbehalf O O\nof O O\na O O\nfriend O O\nemployed O O\nin O O\na O O\nlocal O O\nbank O O\n) O O\n\nSince O O\nhe O O\n's O O\nno O O\nprogramming O O\nexperience O O\n( O O\nneither O O\ndo O O\nI O O\nwith O O\nSQL Name Name\nServer Name Name\n) O O\n, O O\nhe O O\n's O O\nlooking O O\nfor O O\na O O\ntool O O\nwhich O O\ncan O O\nshow O O\nall O O\nthe O O\njpg Name Name\nimages Name Name\nstored O O\nin O O\na O O\nwindows O O\nSQL Name Name\nServer Name Name\ndatabase O O\n. O O\n\nGoogle Name Name\ndid O O\nn't O O\ngive O O\nany O O\nsatisfactory O O\nresult O O\n. O O\n\nSQL Name Name\nImage Name Name\nViewer Name Name\n\nDoes O O\nanyone O O\nhave O O\nany O O\ntips O O\nfor O O\ncalculating O O\npercentages O O\nin O O\nLinq Name Name\nto O O\nEntities O O\n? O O\n\nI O O\n'm O O\nguessing O O\nthat O O\nthere O O\nmust O O\nbe O O\na O O\nmore O O\nefficient O O\nway O O\nthan O O\nreturning O O\n2 O O\nresults O O\nand O O\ncalculating O O\nin O O\nmemory O O\n. O O\n\nPerhaps O O\nan O O\ninventive O O\nuse O O\nof O O\nlet O O\nor O O\ninto O O\n? O O\n\nEDIT O O\n\nThanks O O\nMark O O\nfor O O\nyour O O\ncomment O O\n, O O\nhere O O\nis O O\na O O\ncode O O\nsnippet O O\n, O O\nbut O O\nI O O\nthink O O\nthis O O\nwill O O\nresult O O\nin O O\n2 O O\ndatabase O O\nhits O O\n: O O\n\nIf O O\nyou O O\nuse O O\nLINQ Name Name\nto O O\nEntities O O\nand O O\nwrite O O\nsomething O O\nalong O O\nthe O O\nlines O O\nof O O\nselect Name Name\nx Name Name\n* Name Name\n100.0 Name Name\n/ Name Name\ny Name Name\nin O O\nyour O O\nquery O O\nthen O O\nthis O O\nexpression O O\nwill O O\nbe O O\nconverted O O\nto O O\nSQL Name Name\nand O O\nrun O O\nin O O\nthe O O\ndatabase O O\n. O O\n\nIt O O\nwill O O\nbe O O\nefficient O O\n. O O\n\nI O O\nam O O\nnew O O\nto O O\nJava Name Name\nand O O\nI O O\nhave O O\na O O\nproblem O O\nwith O O\ndrawing O O\nan O O\noval Name Name\nusing O O\npaintComponent Name Name\nmethod O O\n. O O\n\nI O O\nfound O O\nmany O O\nsimilar O O\nthreads O O\n, O O\nbut O O\nnone O O\nof O O\nthe O O\nsoultions O O\nworked O O\n. O O\n\nMy O O\ncode O O\n: O O\n\nRacerMain.java Name Name\n\nDot.java Name Name\n\nWhy O O\nit O O\ndoes O O\nnot O O\nwork O O\nand O O\nhow O O\nto O O\nget O O\nthis O O\ncode O O\nworking O O\n? O O\n\nOr O O\nyou O O\ncan O O\nset Name Name\npreferred Name O\nsize Name Name\nin O O\nconstructor O O\n: O O\n\nJPanel Name Name\nuses O O\nFlowLayout Name Name\nwhich O O\nrespects O O\npreferred O O\nsizes O O\nbut O O\nthe O O\ndefault O O\nsize O O\nof O O\nthe O O\nDot Name Name\ncomponent O O\nis O O\ntoo O O\nsmall O O\nto O O\nbe O O\nseen O O\n. O O\n\nYou O O\nneed O O\nto O O\nuse O O\na O O\nlayout O O\nmanager O O\nthat O O\nuses O O\nthe O O\nmaximum O O\narea O O\navailable O O\nor O O\noverride O O\ngetPreferredSize Name Name\n. O O\n\nRemember O O\nto O O\ncall O O\npack Name Name\nbefore O O\ncalling O O\nJFrame Name Name\n#setVisible Name Name\n\nhow O O\ncan O O\ni O O\nsave O O\nmy O O\nbash Name Name\nprofile Name Name\n/ O O\ndo O O\na O O\nclean O O\ninstall O O\nof O O\nmy O O\nmac Name Name\n/ O O\nthen O O\nimport O O\nthe O O\nbash Name Name\nprofile Name O\n? O O\n\nTYIA O O\n\nBefore O O\ndoing O O\na O O\nclean O O\ninstall O O\n, O O\nyou O O\nshould O O\nof O O\ncourse O O\nback O O\nup O O\n. O O\n\nYou O O\ncan O O\nrestore O O\nyour O O\nbash Name Name\nprofile Name Name\n( Name Name\nor O O\nanything O O\nelse O O\nyou O O\nneed O O\n) O O\nfrom O O\nthe O O\nbackup O O\n. O O\n\nYour O O\n\" O O\nbash Name Name\nprofile Name Name\n\" O O\nis O O\nthe O O\nfirst O O\nof O O\n~ Name Name\n/bash_login Name Name\n, O O\nor O O\n~ Name Name\n/.bash_profile Name Name\n, O O\nor O O\n~ Name Name\n/.profile Name Name\nthat O O\nexists O O\n, O O\nplus O O\n~ Name Name\n/.bashrc Name Name\nif O O\nit O O\nexists O O\n, O O\nplus O O\nany O O\nfiles O O\nthat O O\nthese O O\nfiles O O\nimport O O\n. O O\n\nAll O O\nof O O\nthese O O\nare O O\nplain O O\ntext O O\nfiles O O\n, O O\nand O O\ncan O O\nbe O O\ncopied O O\nwith O O\n/bin/cat Name Name\n. O O\n\nYour O O\nTerminal Name Name\npreferences O O\nare O O\nnot O O\nproperly-speaking O O\nanything O O\nto O O\ndo O O\nwith O O\nbash Name Name\n, O O\nbut O O\nyou O O\nmight O O\nconsider O O\nthem O O\npart O O\nof O O\n\" O O\nyour O O\nprofile O O\n\" O O\n. O O\n\nYou O O\ncan O O\nmake O O\na O O\ncopy O O\nwith O O\ndefaults Name Name\nexport Name Name\ncom.apple.Terminal Name Name\npath/to/saved.plist Name Name\nand O O\nrestore O O\nit O O\nlater O O\nwith O O\ndefaults Name Name\nimport Name Name\ncom.apple.Terminal Name Name\npath/to/saved.plist Name Name\n. O O\n\nI O O\nhave O O\nadded O O\nphp Name Name\nscript O O\nto O O\nrun O O\nmy O O\nruby Name Name\nfile O O\nbut O O\nto O O\nno O O\nsuccess O O\n. O O\n\nI O O\nrun O O\nmy O O\nphp Name Name\nscript O O\nin O O\nits O O\nphp Name Name\ndirectory O O\n. O O\n\nIt O O\ndoes O O\nnot O O\ndisplay O O\nthe O O\nresults O O\nof O O\nthe O O\nruby Name Name\nfile O O\n. O O\n\nBut O O\nwhen O O\nI O O\nrun O O\nthe O O\ncommand O O\noutside O O\nphp Name Name\nit O O\nworks O O\n. O O\n\nExpected O O\nresult O O\nis O O\nto O O\ndisplay O O\ninformation O O\nin O O\nthe O O\nterminal Name Name\nand O O\nwrite O O\nthe O O\nresults O O\nto O O\na O O\nfile O O\n. O O\n\ni O O\nwant O O\nto O O\nget O O\nSharePoint Name Name\nlogin O O\nuser O O\nroleDefinitionBindings Name Name\nusing O O\njavascript Name Name\n. O O\n\nbut O O\nwhen O O\ni O O\ncall O O\nrest Name Name\napi Name Name\ncall O O\nfor O O\nroleDefinitionBindings Name Name\ni O O\ngot O O\nthis O O\nerror O O\nmessage O O\nin O O\nresponse O O\n: O O\n\n{ O O\n\" O O\nerror O O\n\" O O\n:{ O O\n\" O O\ncode O O\n\" O O\n: O O\n\" O O\n-2147024891 O O\n, O O\nSystem.UnauthorizedAccessException O O\n\" O O\n, O O\n\n\" O O\nmessage O O\n\" O O\n:{ O O\n\" O O\nlang O O\n\" O O\n: O O\n\" O O\nen-US O O\n\" O O\n, O O\n\" O O\nvalue O O\n\" O O\n: O O\n\" O O\nAccess O O\ndenied O O\n. O O\n\nYou O O\ndo O O\nnot O O\nhave O O\npermission O O\nto O O\nperform O O\nthis O O\naction O O\nor O O\naccess O O\nthis O O\nresource O O\n. O O\n\" O O\n}}} O O\n\nMy O O\nrest Name Name\napi Name Name\ncall O O\nis O O\n: O O\n\n[ Name Name\nfunction Name Name\ngetUserRole(appWeburl, Name Name\nprincipalid,success,failed) Name Name\n{ Name Name\n\n$ Name Name\n.ajax Name Name\n( Name Name\n{ Name Name\n\nurl Name Name\n: Name Name\nappWeburl+ Name Name\n\" Name Name\n/_api/web/RoleAssignments Name Name\n(' Name Name\n\" Name Name\n+ Name Name\nprincipalid Name Name\n+ Name Name\n\" Name Name\n' Name Name\n) Name Name\n/roleDefinitionBindings Name Name\n\" Name Name\n, Name Name\n\nmethod Name Name\n: Name Name\n\" Name Name\nGET Name Name\n\" Name Name\n, Name Name\n\nheaders Name Name\n: Name Name\n{ Name Name\n\" Name Name\nAccept Name Name\n\" Name Name\n: Name Name\n\" Name Name\napplication/json Name Name\n; Name Name\nodata Name Name\n= Name Name\nverbose Name Name\n\" Name Name\n} Name Name\n, O O\n\nsuccess Name Name\n: Name Name\nfunction(data) Name Name\n{ Name Name\nconsole.log Name Name\n( Name Name\n\" Name Name\nSuccess Name Name\nLoad Name Name\n\" Name Name\n) Name Name\n; Name Name\nsuccess Name Name\n( Name Name\ndata.d.results Name Name\n) Name Name\n;} Name Name\n, O O\n\nerror Name Name\n: Name Name\nfunction Name Name\n( Name Name\ndata Name Name\n) Name Name\n{ Name Name\nconsole.log Name Name\n( Name Name\n\" Name Name\nFailed Name Name\nto Name O\nLoad Name Name\n\" Name Name\n) Name Name\n; Name Name\nfailed() Name Name\n; Name Name\n} Name Name\n} Name Name\n) Name Name\n; Name Name\n\n} Name Name\n] Name Name\n1 Name Name\n\nInstall O O\nInfo O O\nis O O\n.. O O\n. O O\n\nsonarqube-6.7.1 Name Name\n| O O\nsonar-scanner-3.0.3.778 Name Name\n| O O\nsonar-scanner-msbuild-4.0.2.892 Name Name\n| O O\nmsbuild Name Name\n14 Name Name\n| O O\nJava Name Name\nSE Name Name\nDevelopment Name Name\nKit Name Name\n8 Name Name\n| O O\n.NET Name Name\nFramework Name Name\n4.6.2 Name Name\n\nAnd O O\nI O O\nmade O O\nwindows O O\nbatch Name Name\nfile O O\nto O O\nbuild O O\nand O O\nscan(sonar) O O\n. O O\n\nbut O O\nsome O O\nprojects O O\nare O O\nok O O\n. O O\nbut O O\nsome O O\nprojects O O\nare O O\nfailed O O\n. O O\n\nbatch Name Name\nfile O O\nis O O\n.. O O\n. O O\n\nOur O O\nBuild.bat Name Name\nis O O\ncustomized O O\n, O O\nI O O\nhave O O\ntried O O\nonly O O\nuse O O\nBuild.bat Name Name\nnot O O\ninclude O O\nSonarQube Name Name\n, O O\nand O O\nit O O\nwas O O\nworking O O\nfine O O\n. O O\n\nerror O O\nmessage O O\nis O O\n.. O O\n. O O\n\nC:\\Program O O\nFiles O O\n( O O\nx86 O O\n) O O\n\\Jenkins\\workspace\\CSS_SQ>exit O O\n0 O O\n\n[ O O\nCSS_SQ O O\n] O O\n$ O O\n\" O O\nC:\\Program O O\nFiles(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\MSBuild.SonarQube.Runner.exe\" O O\nend O O\n/d:sonar.login O O\n= O O\n****** O O\n******** O O\n\nSonarQube O O\nScanner O O\nfor O O\nMSBuild O O\n4.0.2 O O\n\nDefault O O\nproperties O O\nfile O O\nwas O O\nfound O O\nat O O\nC:\\Program O O\nFiles(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml O O\n\nLoading O O\nanalysis O O\nproperties O O\nfrom O O\nC:\\Program O O\nFiles O O\n( O O\nx86 O O\n) O O\n\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml O O\n\nPost-processing O O\nstarted O O\n. O O\n\nGeneration O O\nof O O\nthe O O\nsonar-properties O O\nfile O O\nfailed O O\n. O O\n\nUnable O O\nto O O\ncomplete O O\nSonarQube O O\nanalysis O O\n. O O\n\n14:36:16.988 Name Name\nCreating O O\na O O\nsummary O O\nmarkdown Name Name\nfile O O\n.. O O\n. O O\n\n14:36:16.989 O O\nPost-processing O O\nfailed O O\n. O O\n\nExit O O\ncode O O\n: O O\n1 O O\n\nERROR O O\n: O O\nExecution O O\nof O O\nSonarQube O O\nScanner O O\nfor O O\nMSBuild O O\nfailed O O\n( O O\nexit O O\ncode O O\n1) O O\n\nFinished O O\n: O O\nFAILURE O O\n\nAbout O O\nthe O O\nPossible O O\ncauses O O\n, O O\nI O O\nhave O O\nchecked O O\n1 O O\nand O O\n2 O O\n, O O\nit O O\n's O O\ncorrect O O\n, O O\nbut O O\nI O O\nam O O\nnot O O\nsure O O\nfor O O\n3 O O\n. O O\n\nI O O\nam O O\nguessing O O\nthe O O\n.sonarqube Name Name\nfile O O\nshould O O\nbe O O\nin O O\nthe O O\nsame O O\nfolder O O\nwith O O\n.sln Name Name\nfile O O\n, O O\nthen O O\nwhen O O\nI O O\nset O O\nthe O O\nbatch Name Name\nfiles O O\nI O O\nneed O O\nto O O\nset O O\nthe O O\npath Name Name\nin O O\nAdditional O O\narguments O O\ncolumn O O\n. O O\n\nBut O O\nI O O\nca O O\nn't O O\nfind O O\nany O O\nclue O O\nto O O\nset O O\nthat O O\nyet O O\n. O O\n\nWhat O O\nmakes O O\nthis O O\nerror O O\nmessage O O\n? O O\n\nand O O\nHow O O\nshould O O\nI O O\ndo O O\n? O O\n\nThe O O\nthird O O\noption O O\nmeans O O\nthat O O\nthe O O\n\" O O\nbegin O O\n\" O O\nand O O\n\" O O\nend O O\n\" O O\ncommands O O\nmust O O\nbe O O\nrun O O\nfrom O O\nthe O O\nsame O O\nfolder O O\n, O O\ne.g O O\n. O O\nthe O O\ncurrent O O\nfolder O O\nshould O O\nbe O O\nthe O O\nsame O O\nwhen O O\nrunning O O\nthe O O\ncommands O O\n( O O\nif O O\nyou O O\nexecute O O\ncd Name Name\nbefore O O\nthe O O\nscanner O O\ncommands O O\nthe O O\nprinted O O\npaths O O\nshould O O\nbe O O\nthe O O\nsame O O\n) O O\n. O O\n\nEdit O O\n: O O\n\nThis O O\nparticular O O\nproblem O O\nseems O O\nto O O\nbe O O\ncaused O O\nbecause O O\nthe O O\nbuild O O\nis O O\nexecuting O O\nolder O O\nversion O O\nof O O\nMSBuild Name Name\n. O O\n\nPlease O O\n, O O\nmake O O\nsure O O\nthat O O\nyou O O\nrun O O\nMSBuild Name Name\n14 Name Name\nor O O\n15 Name Name\nin O O\nyour O O\nanalysis O O\nbuilds O O\n. O O\n\nOlder O O\nsuggestion O O\n( O O\nstill O O\ngenerally O O\nvalid O O\n) O O\n\nWe O O\njust O O\ninvestigated O O\nsimilar O O\nproblem O O\nwhich O O\nis O O\ncaused O O\nby O O\nthe O O\nuser O O\nthe O O\nSlave Name Name\nAgent Name Name\nservice O O\nis O O\nauthenticated O O\nwith O O\n. O O\n\nTo O O\ncheck O O\nif O O\nyours O O\nis O O\nthe O O\nsame O O\n, O O\nrun O O\nthe O O\nbegin Name Name\nstep O O\nof O O\nthe O O\nscanner O O\nwith O O\n/d:sonar.verbose Name Name\n= Name Name\ntrue Name Name\nand O O\nin O O\nthe O O\noutput O O\nyou O O\nshould O O\nsee O O\nlines O O\nlike O O\nthese O O\n: O O\n\nIf O O\nthe O O\npaths O O\nat O O\nthe O O\nend O O\nare O O\nsubfolders O O\nof O O\nC:\\Windows Name Name\nthen O O\nyou O O\nneed O O\nto O O\nchange O O\nthe O O\nJenkins Name Name\nslave Name Name\nagent Name Name\n's O O\nWindows Name Name\nService Name Name\nuser O O\nwith O O\na O O\ndomain O O\nuser O O\n( O O\nand O O\nnot O O\nLocal O O\nSystem O O\n) O O\n: O O\n\nI O O\nam O O\na O O\nbeginner O O\nin O O\nJava Name Name\nand O O\nI O O\nneed O O\nto O O\nprint O O\nthe O O\nDFS Name Name\nof O O\na O O\ngraph Name Name\nusing O O\nit O O\n's O O\narraylists Name Name\nto O O\nstore O O\nthe O O\nadjacency Name Name\nlist Name Name\n. O O\n\nWhen O O\nI O O\ntry O O\nto O O\ncompile O O\nI O O\nam O O\ngetting O O\nthe O O\nfollowing O O\nerrors O O\n: O O\n\nThe O O\ncode O O\nis O O\nthe O O\nfollowing O O\n: O O\n\nThe O O\nGraph.txt Name Name\ncontains O O\nthe O O\nfollowing O O\n\nviz Name Name\nis O O\na O O\nStack Name Name\n, O O\nnot O O\nan O O\narray Name Name\n. O O\n\nYou O O\nca O O\nn't O O\nuse O O\nthe O O\narray Name Name\nnotation O O\n- O O\nviz[node] Name Name\n- O O\non O O\nit O O\n. O O\n\nthis O O\nis O O\nalso O O\nan O O\nerror O O\n, O O\nsince O O\nyour O O\nStack Name Name\nis O O\nnot O O\ngeneric O O\n, O O\nso O O\nyou O O\nmust O O\ncast O O\nthe O O\nresult O O\nof O O\npop() Name Name\nto O O\nInteger Name Name\n: O O\n\nAn O O\nalternative O O\nwould O O\nbe O O\nto O O\nchange O O\nthe O O\ntype O O\nof O O\nstack Name Name\n: O O\n\nYou O O\nca O O\nn't O O\nuse O O\narray Name Name\nsyntax O O\n(array Name Name\n[ Name Name\nindex Name Name\n] Name Name\n) O O\nfor O O\nstacks Name Name\n, O O\nyou O O\nhave O O\nto O O\nuse O O\npush() Name Name\n, O O\npop() Name Name\n, O O\nand O O\npeek() Name Name\n\nStacks Name Name\nwork O O\non O O\na O O\nfirst-in O O\n, O O\nlast-out O O\nbasis O O\n. O O\n\nSo O O\n, O O\nthe O O\nonly O O\nelement O O\nin O O\nthe O O\nstack Name Name\nthat O O\nis O O\naccessible O O\nis O O\nthe O O\ntop O O\none O O\n. O O\n\nWhen O O\nyou O O\nuse O O\npop() Name Name\n, O O\nyou O O\nremove O O\nthe O O\ntop O O\nitem O O\nso O O\nthat O O\nthe O O\nnext O O\ncan O O\nbe O O\naccessed O O\n. O O\n\npush() Name Name\nis O O\nused O O\nto O O\nput O O\na O O\nvalue O O\non O O\nthe O O\ntop O O\nand O O\npeek() Name Name\nis O O\nused O O\nto O O\ncheck O O\nthe O O\ntop O O\nitem O O\nwithout O O\npopping O O\nit O O\n. O O\n\nIf O O\nI O O\nhave O O\nthe O O\nfollowing O O\nstack Name Name\n\nUsing O O\npop() Name Name\n, O O\nwill O O\nreturn O O\n\" Name Name\nSam Name Name\n\" Name Name\nand O O\nremove O O\nit O O\nfrom O O\nthe O O\nstack Name Name\n, O O\nso O O\nit O O\nwill O O\nlook O O\nlike O O\nthis O O\n. O O\n\nPushing O O\n\" Name Name\nCharlie Name Name\n\" Name Name\nwill O O\nmake O O\nthe O O\nstack O O\nlook O O\nthis O O\nthis O O\n. O O\n\nI O O\nwould O O\nhave O O\nto O O\npop Name Name\ntwice O O\nin O O\norder O O\nto O O\naccess O O\n\" Name Name\nAdam Name Name\n\" Name Name\n\nI O O\n'm O O\ntrying O O\nto O O\nuse O O\na O O\nsqlite3 Name Name\nin O O\nIntel-PIN Name Name\nbut O O\nI O O\nfailed O O\n. O O\n\nSo O O\nI O O\nsearched O O\na O O\nlot O O\nand O O\nfound O O\na O O\nway O O\nto O O\nuse O O\na O O\nPinCRT Name Name\nto O O\ncreate O O\na O O\nsocket O O\nand O O\nsend O O\na O O\ndata O O\nto O O\nother O O\nprocess O O\n. O O\n\nBut O O\nin O O\nmy O O\ncase O O\n, O O\nI O O\nseems O O\ndoes O O\nn't O O\nwork O O\nas O O\nwell O O\nI O O\nguess O O\n. O O\n\nI O O\nhave O O\nthese O O\ncodes O O\nand O O\na O O\nserver Name Name\ncannot O O\nget O O\nthe O O\ndata O O\nfrom O O\nthe O O\nPin Name Name\nprocess O O\n. O O\n\nServer Name Name\ncode O O\n: O O\n\nPin Name Name\ncode O O\n: O O\n\nI O O\nguess O O\nthere O O\n's O O\nan O O\nerror O O\nwhile O O\nusing O O\nPinCRT Name Name\nAPIs Name Name\nbut O O\nI O O\ncannot O O\nfind O O\na O O\nway O O\nhow O O\nto O O\ncheck O O\na O O\n_OS_RETURN_CODE Name Name\n. O O\n\n_OS_RETURN_CODE Name Name\ndoes O O\nn't O O\nhave O O\na O O\n== Name Name\nor O O\n!= Name Name\noperators O O\nand O O\nI O O\ntried O O\nto O O\ncast O O\na O O\n_OS_RETURN_CODE Name Name\ntype O O\nto O O\nint Name Name\nbut O O\nfailed O O\nagain O O\n. O O\n\nI O O\ncannot O O\nfind O O\nthe O O\nproblem O O\n. O O\n\nPlease O O\nsomebody O O\nhelp O O\nme O O\n. O O\n\nI O O\nneed O O\nto O O\nhandle O O\ntens O O\nof O O\nGigabytes O O\ndata O O\nin O O\none O O\nbinary Name Name\nfile O O\n. O O\n\nEach O O\nrecord O O\nin O O\nthe O O\ndata O O\nfile O O\nis O O\nvariable O O\nlength O O\n. O O\n\nSo O O\nthe O O\nfile O O\nis O O\nlike O O\n: O O\n\nThe O O\ndata O O\ncontains O O\ninteger Name Name\n, O O\npointer Name Name\n, O O\ndouble Name Name\nvalue O O\nand O O\nso O O\non O O\n. O O\n\nI O O\nfound O O\npython Name Name\ncan O O\nnot O O\neven O O\nhandle O O\nthis O O\nsituation O O\n. O O\n\nThere O O\nis O O\nno O O\nproblem O O\nif O O\nI O O\nread O O\nthe O O\nwhole O O\nfile O O\nin O O\nmemory O O\n. O O\n\nIt O O\n's O O\nfast O O\n. O O\n\nBut O O\nit O O\nseems O O\nthe O O\nstruct Name Name\npackage O O\nis O O\nnot O O\ngood O O\nat O O\nperformance O O\n. O O\n\nIt O O\nalmost O O\nstuck O O\non O O\nunpack O O\nthe O O\nbytes O O\n. O O\n\nAny O O\nhelp O O\nis O O\nappreciated O O\n. O O\n\nThanks O O\n. O O\n\nstruct Name Name\nand O O\narray Name Name\n, O O\nwhich O O\nother O O\nanswers O O\nrecommend O O\n, O O\nare O O\nfine O O\nfor O O\nthe O O\ndetails O O\nof O O\nthe O O\nimplementation O O\n, O O\nand O O\nmight O O\nbe O O\nall O O\nyou O O\nneed O O\nif O O\nyour O O\nneeds O O\nare O O\nalways O O\nto O O\nsequentially O O\nread O O\nall O O\nof O O\nthe O O\nfile O O\nor O O\na O O\nprefix O O\nof O O\nit O O\n. O O\n\nOther O O\noptions O O\ninclude O O\nbuffer Name Name\n, O O\nmmap Name Name\n, O O\neven O O\nctypes Name Name\n, O O\ndepending O O\non O O\nmany O O\ndetails O O\nyou O O\ndo O O\nn't O O\nmention O O\nregarding O O\nyour O O\nexact O O\nneeds O O\n. O O\n\nMaybe O O\na O O\nlittle O O\nspecialized O O\nCython-coded Name Name\nhelper O O\ncan O O\noffer O O\nall O O\nthe O O\nextra O O\nperformance O O\nyou O O\nneed O O\n, O O\nif O O\nno O O\nsuitable O O\nand O O\naccessible O O\nlibrary O O\n( O O\nin O O\nC Name Name\n, O O\nC++ Name Name\n, O O\nFortran Name Name\n, O O\n.. O O\n. O O\n) O O\nalready O O\nexists O O\nthat O O\ncan O O\nbe O O\ninterfaced O O\nfor O O\nthe O O\npurpose O O\nof O O\nhandling O O\nthis O O\nhumongous O O\nfile O O\nas O O\nyou O O\nneed O O\nto O O\n. O O\n\nBut O O\nclearly O O\nthere O O\nare O O\npeculiar O O\nissues O O\nhere O O\n- O O\n- O O\nhow O O\ncan O O\na O O\ndata O O\nfile O O\ncontain O O\npointers Name Name\n, O O\nfor O O\nexample O O\n, O O\nwhich O O\nare O O\nintrinsically O O\na O O\nconcept O O\nrelated O O\nto O O\naddressing O O\nmemory O O\n? O O\n\nAre O O\nthey O O\nmaybe O O\n\" O O\noffsets O O\n\" O O\ninstead O O\n, O O\nand O O\n, O O\nif O O\nso O O\n, O O\nhow O O\nexactly O O\nare O O\nthey O O\nbased O O\nand O O\ncoded O O\n? O O\n\nAre O O\nyour O O\nneeds O O\nat O O\nall O O\nmore O O\nadvanced O O\nthan O O\nsimply O O\nsequential O O\nreading O O\n( O O\ne.g O O\n. O O\n, O O\nrandom O O\naccess O O\n) O O\n, O O\nand O O\nif O O\nso O O\n, O O\ncan O O\nyou O O\ndo O O\na O O\nfirst O O\n\" O O\nindexing O O\n\" O O\npass O O\nto O O\nget O O\nall O O\nthe O O\noffsets O O\nfrom O O\nstart O O\nof O O\nfile O O\nto O O\nstart O O\nof O O\nrecord O O\ninto O O\na O O\nmore O O\nusable O O\n, O O\ncompact O O\n, O O\nhandily-formatted O O\nauxiliary Name Name\nfile O O\n? O O\n\n( O O\nThat O O\nbinary Name Name\nfile O O\nof O O\noffsets O O\nwould O O\nbe O O\na O O\nnatural O O\nfor O O\narray Name Name\n- O O\n- O O\nunless O O\nthe O O\noffsets O O\nneed O O\nto O O\nbe O O\nlonger O O\nthan O O\narray Name Name\nsupports O O\non O O\nyour O O\nmachine O O\n! O O\n) O O\n. O O\n\nWhat O O\nis O O\nthe O O\ndistribution O O\nof O O\nrecord O O\nlengths O O\nand O O\ncompositions O O\nand O O\nnumber O O\nof O O\nrecords O O\nto O O\nmake O O\nup O O\nthe O O\n\" O O\ntens O O\nof O O\ngigabytes O O\n\" O O\n? O O\n\nEtc O O\n, O O\netc O O\n. O O\n\nYou O O\nhave O O\na O O\nvery O O\nlarge O O\nscale O O\nproblem O O\n( O O\nand O O\nno O O\ndoubt O O\nvery O O\nlarge O O\nscale O O\nhardware O O\nto O O\nsupport O O\nit O O\n, O O\nsince O O\nyou O O\nmention O O\nthat O O\nyou O O\ncan O O\neasily O O\nread O O\nall O O\nof O O\nthe O O\nfile O O\ninto O O\nmemory O O\nthat O O\nmeans O O\na O O\n64bit O O\nbox O O\nwith O O\nmany O O\ntens O O\nof O O\nGB O O\nof O O\nRAM Name Name\n- O O\n- O O\nwow O O\n! O O\n\n) O O\n, O O\nso O O\nit O O\n's O O\nwell O O\nworth O O\nthe O O\ndetailed O O\ncare O O\nto O O\noptimize O O\nthe O O\nhandling O O\nthereof O O\n- O O\n- O O\nbut O O\nwe O O\nca O O\nn't O O\nhelp O O\nmuch O O\nwith O O\nsuch O O\ndetailed O O\ncare O O\nunless O O\nwe O O\nknow O O\nenough O O\ndetail O O\nto O O\ndo O O\nso O O\n! O O\n- O O\n) O O\n. O O\n\nWhat O O\nif O O\nyou O O\nuse O O\ndump O O\nthe O O\ndata O O\nfile O O\ninto O O\nsqlite3 Name Name\nin O O\nmemory O O\n. O O\n\nYou O O\ncan O O\nthen O O\nuse O O\nsql Name Name\nto O O\nprocess O O\nthe O O\ndata O O\n. O O\n\nBesides O O\n, O O\nyou O O\nmight O O\nwant O O\nto O O\nlook O O\nat O O\ngenerators O O\n( O O\nor O O\nhere O O\n) O O\nand O O\niterators O O\n( O O\nor O O\nhere O O\nand O O\nhere O O\n) O O\n. O O\n\nWhat O O\ncommand O O\ncould O O\nI O O\nwrite O O\nin O O\none O O\nline O O\nthat O O\nwould O O\nturn O O\nthis O O\ntext O O\n: O O\n\ninto O O\nthis O O\n: O O\n\nlet O O\nyour O O\nsource O O\nfile O O\nbe O O\ninput.txt Name Name\n\nwe O O\ncan O O\nuse O O\nbelow O O\ncode O O\nto O O\nadd O O\na O O\ntab O O\nat O O\nstarting O O\nof O O\neach O O\nline O O\nwhich O O\ncontain O O\nthe O O\nstring Name Name\nberry Name Name\n\noptionally O O\n, O O\nuse O O\n-i Name Name\noption O O\nto O O\nchange O O\nthe O O\nsource O O\nfile O O\nitself O O\n, O O\n\nThen O O\nto O O\nadd O O\nheading O O\nberries Name Name\n: O O\nwe O O\ncan O O\nuse O O\nbelow O O\n, O O\n\nNote O O\n: O O\nassuming O O\nthe O O\ninput O O\nfile O O\nis O O\nsorted O O\nso O O\nall O O\nberries Name Name\nare O O\nin O O\nadjacent O O\nlines O O\n. O O\n\nAt O O\na O O\nsimplistic O O\nlevel O O\n, O O\nthis O O\ndoes O O\nmore O O\nor O O\nless O O\nwhat O O\nyou O O\nask O O\n: O O\n\nSample O O\nOutput O O\n\nThat O O\nsays. O O\n. O O\nfind O O\nall O O\nthe O O\nlines O O\nNOT O O\ncontaining O O\n\" Name Name\nberry Name Name\n\" Name Name\nin O O\noriginal.txt Name Name\nbecause O O\ngrep Name Name\n-v Name Name\nis O O\na O O\nnegative O O\nsearch O O\n. O O\n\nThen O O\nit O O\nprints O O\nthe O O\ntitle O O\n\" Name Name\nberries Name Name\n\" Name Name\n. O O\n\nThen O O\nit O O\nstarts O O\na O O\nnew O O\nsed Name Name\nwith O O\n-n Name Name\nso O O\nthat O O\n, O O\nby O O\ndefault O O\n, O O\nit O O\nprints O O\nnothing O O\n. O O\n\nOn O O\nlines O O\nmatching O O\n\" Name Name\nberry Name Name\n\" Name Name\n, O O\nit O O\nreplaces O O\nthe O O\nstart O O\nof O O\nline O O\nwith O O\n3 O O\nspaces O O\nand O O\nthen O O\nprints O O\nthe O O\nline O O\nwith O O\np Name Name\n. O O\n\nIt O O\nwill O O\nfind O O\n\" Name Name\nloganberry Name Name\n\" Name Name\n, O O\nbut O O\nit O O\nwo O O\nn't O O\nwork O O\nas O O\nexpected O O\nif O O\n\" Name Name\nstrawberries Name Name\n\" Name Name\nappears O O\nin O O\nthe O O\noriginal O O\n. O O\n\nIt O O\nwill O O\nalso O O\nprint O O\nthe O O\n\" Name Name\nberries Name Name\n: Name Name\n\" Name Name\ntitle O O\neven O O\nif O O\nthere O O\nare O O\nno O O\nberries Name Name\nin O O\nthe O O\nfile O O\n.. O O\n. O O\n\nI O O\ntried O O\nto O O\nuse O O\nthe O O\nSlider Name Name\nin O O\nmy O O\nproject O O\n. O O\n\nWhen O O\nI O O\ntried O O\nto O O\ndrag O O\nit O O\nusing O O\nChrome Name Name\ndeveloper Name Name\nenvironment O O\nwith O O\ndevice O O\nemulation O O\nturned O O\non O O\nthe O O\ntool-tips O O\nshowing O O\nthe O O\ncurrent O O\nvalue O O\nare O O\nvisible O O\n, O O\nbut O O\nI O O\ncannot O O\ndrag O O\nit O O\n. O O\n\nWhen O O\nI O O\ntried O O\nthe O O\nvery O O\nsame O O\nproject O O\non O O\nmy O O\nIPhone Name Name\n, O O\nI O O\ncan O O\ndrag O O\nit O O\nperfectly O O\nbut O O\nthe O O\ntool-tips Name Name\ndo O O\nn't O O\nshow O O\nup O O\n, O O\nso O O\nI O O\nca O O\nn't O O\nsee O O\nthe O O\nvalue O O\n. O O\n\nAny O O\nhelp O O\nwill O O\nbe O O\nvery O O\nmuch O O\nappreciated O O\n. O O\n\nI O O\nfound O O\nout O O\nthat O O\nusing O O\nthe O O\nattribute O O\ndoes O O\nthe O O\ntrick O O\nand O O\nit O O\nactually O O\nworks O O\non O O\ntouch O O\ndevices O O\nlike O O\nmy O O\nIPhone Name Name\n6s Name Name\n. O O\n\nThis O O\nis O O\nremarable O O\nbecause O O\ntooltips Name Name\ndo O O\nn't O O\nwork O O\non O O\nbuttons Name Name\nusing O O\ngwtbootstrap3 Name Name\n. O O\n\nActually O O\nthey O O\nwork O O\nbut O O\nthey O O\ntake O O\nthe O O\nfirst O O\ntip O O\nto O O\nshow O O\nup O O\n. O O\n\nSo O O\nyou O O\nneed O O\nto O O\ntip O O\ntwice O O\non O O\na O O\nbutton Name Name\nwhich O O\nis O O\nnot O O\ngood O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\ncreate O O\nthread O O\nlibrary.For O O\nthis O O\nI O O\nam O O\ntrying O O\nto O O\nimplement O O\nqueue Name Name\nto O O\nstore O O\nthe O O\npending O O\nthreads O O\nto O O\nbe O O\nexecuted O O\n. O O\n\nThe O O\nreason O O\nI O O\nmentioned O O\nthe O O\nqueue Name Name\nbecause O O\ni O O\ntried O O\nexperimenting O O\nby O O\nremoving O O\nbelow O O\ncode O O\nfrom O O\n' O O\nMyThreadYield Name Name\n' O O\nfunction O O\nand O O\nit O O\nworkes O O\nfine O O\nbut O O\ndoesnt O O\ndo O O\nthe O O\nintended O O\nfunctionality O O\n. O O\n\ngetcontext(&(save.context)) Name Name\n; Name Name\n\naddToQueue(save) Name Name\n; Name Name\n\nFor O O\none O O\n, O O\nyour O O\nqueue Name Name\nimplementation O O\nis O O\nnot O O\nthread-safe O O\nat O O\nthis O O\npoint O O\n. O O\n\nYour O O\nquestion O O\nstrongly O O\nsuggests O O\nthat O O\nthis O O\ncode O O\nwill O O\nbe O O\nused O O\nin O O\na O O\nmulti-threaded O O\nenvironment O O\n. O O\n\nHaving O O\na O O\nnon O O\nthread-safe O O\nqueue Name Name\nwill O O\ngive O O\nyou O O\nwrong O O\nresults O O\n, O O\nand O O\nweird O O\nthings O O\ncan O O\nhappen O O\n( O O\nlike O O\nremoveFromQueue() Name Name\nreturning O O\nthe O O\nsame O O\nthing O O\nto O O\ntwo O O\ndifferent O O\nthreads O O\n, O O\nor O O\naddToQueue() Name Name\ninserting O O\ntwo O O\nitems O O\nin O O\nthe O O\nsame O O\nposition O O\n) O O\n. O O\n\nAside O O\nfrom O O\nthat O O\n, O O\nyour O O\nqueue Name Name\nimplementation O O\nwould O O\nnever O O\nwork O O\n. O O\n\nYou O O\nare O O\nnot O O\nusing O O\nfront Name Name\nand O O\nrear Name Name\ncorrectly O O\n. O O\n\nLook O O\ncarefully O O\nat O O\nthe O O\ninsert O O\nfunction O O\n: O O\n\nYou O O\ncheck O O\nif O O\nrear Name Name\nis O O\nMAX Name Name\n, O O\nyet O O\n, O O\nyou O O\nwrite O O\ninto O O\nqueue[front] Name Name\nand O O\nincrement O O\nfront Name Name\n. O O\n\nWhat O O\nif O O\nI O O\njust O O\nkeep O O\nadding O O\nitems O O\nto O O\nthe O O\nqueue O O\n, O O\neventually O O\nreaching O O\nthe O O\nbuffer O O\n's O O\nlimit O O\n? O O\n\nrear Name Name\nwill O O\nalways O O\nbe O O\n0 Name Name\n, O O\nfront Name Name\nwill O O\ngrow O O\nindefinitely O O\n, O O\nand O O\nyour O O\nfunction O O\nwill O O\nwrite O O\nbeyond O O\nthe O O\nlimits O O\nof O O\nqueue Name Name\n. O O\n\nThat O O\n's O O\nprobably O O\nthe O O\ncause O O\nof O O\nyour O O\nsegmentation O O\nfault O O\nerrors O O\n. O O\n\nI O O\nthink O O\nyou O O\nwanted O O\nto O O\ncheck O O\nfor O O\nfront Name Name\ninstead O O\n: O O\n\nThe O O\ncode O O\nfor O O\nremoveFromQueue() Name Name\nlooks O O\nsuperficially O O\nok O O\n, O O\nas O O\nlong O O\nas O O\nqueue Name Name\nis O O\na O O\nglobal Name Name\narray Name Name\n( O O\nsince O O\nyou O O\n're O O\nreturning O O\na O O\npointer Name Name\n, O O\nand O O\nca O O\nn't O O\nreturn O O\npointers Name Name\nto O O\nlocal O O\nvariables O O\n) O O\n. O O\n\nHowever O O\n, O O\nthe O O\nsingle O O\n, O O\nmost O O\nimportant O O\nfact O O\nyou O O\nhave O O\nto O O\ntake O O\nout O O\nof O O\nthis O O\nanswer O O\n, O O\nis O O\nthat O O\nyour O O\nqueue Name Name\nimplementation O O\nwill O O\nnot O O\nscale O O\nin O O\nthe O O\nlong-term O O\n. O O\n\nAn O O\narray-based O O\nqueue Name Name\nis O O\na O O\nterrible O O\nchoice O O\n. O O\n\nWhat O O\ndo O O\nyou O O\ndo O O\nwhen O O\nyou O O\nrun O O\nout O O\nof O O\nspace O O\nin O O\nthe O O\narray Name Name\n? O O\n\nWhat O O\nif O O\nI O O\ninsert O O\nMAX Name Name\nelements O O\n, O O\nthen O O\nremove O O\n2 Name Name\nor O O\n3 Name Name\n, O O\nand O O\ntry O O\nto O O\ninsert O O\nmore O O\n? O O\n\nYour O O\ncode O O\nwill O O\nsay O O\nthe O O\nqueue Name Name\nis O O\nfull O O\n, O O\nbecause O O\nit O O\nonly O O\never O O\nallows O O\nyou O O\nto O O\ninsert O O\nMAX Name Name\nelements O O\nin O O\ntotal O O\n. O O\n\nYou O O\ncould O O\nshift O O\nevery O O\nelement O O\nin O O\nthe O O\nqueue Name Name\nto O O\nthe O O\nleft O O\nwhen O O\nan O O\nelement O O\nis O O\nremoved O O\n, O O\nbut O O\nthat O O\n's O O\ncrazy O O\n, O O\nand O O\nextremely O O\ninefficient O O\n. O O\n\nOr O O\nyou O O\ncould O O\nincrement O O\nfront Name Name\nmodulo O O\nMAX Name Name\n, O O\nallowing O O\nrear Name Name\nto O O\nbe O O\nahead O O\nof O O\nfront Name Name\n, O O\nas O O\nlong O O\nas O O\nyou O O\nknow O O\nthat O O\nno O O\nmore O O\nthan O O\nMAX Name Name\nelements O O\ncan O O\nbe O O\ninserted O O\n. O O\n\nThat O O\nwould O O\nbe O O\nbetter O O\n, O O\nbut O O\nit O O\nwould O O\nbreak O O\nthe O O\nlogic O O\nin O O\nremoveFromQueue() Name Name\n, O O\nsince O O\nthe O O\npointers Name Name\nreturned O O\nearlier O O\nwill O O\npossibly O O\npoint O O\nto O O\na O O\ndifferent O O\nthread O O\nstruct Name Name\nas O O\nyou O O\nmanipulate O O\nthe O O\nqueue Name Name\n- O O\ntotal O O\ndisaster O O\n. O O\n\nDefinitely O O\nnot O O\nwhat O O\nyou O O\nwant O O\n. O O\n\nA O O\nmuch O O\n, O O\nmuch O O\nbetter O O\napproach O O\nwould O O\nbe O O\nto O O\nimplement O O\nthis O O\nwith O O\na O O\nlinked Name Name\nlist Name Name\nwhere O O\nyou O O\nkeep O O\na O O\npointer Name Name\nto O O\nthe O O\nhead O O\nand O O\na O O\npointer Name Name\nto O O\nthe O O\ntail O O\n. O O\n\nHave O O\na O O\nlook O O\nat O O\nhttp://en.wikipedia.org/wiki/Queue_(abstract_data_type)#Queue_implementation O O\n\nI O O\ntried O O\nthis O O\ncode O O\n. O O\n\nIt O O\nis O O\nnot O O\nworking O O\n. O O\n\nTry O O\n: O O\n\nI O O\ndestroyed O O\nmy O O\nsubversion Name Name\ntree Name Name\n, O O\nand O O\nI O O\ndo O O\nn't O O\nknow O O\nwhat O O\ncould O O\nhave O O\ncaused O O\nit O O\n. O O\n\nI O O\nused O O\nsvn Name Name\nignore Name Name\non O O\nsome O O\nfiles O O\na O O\nwhile O O\nago O O\n, O O\nbut O O\nas O O\nthe O O\nproject O O\nis O O\nbeing O O\nrevisited O O\n, O O\nI O O\ndecided O O\nto O O\nretract O O\nthe O O\nsvn Name Name\nignore Name Name\nby O O\nusing O O\nsvn Name Name\npropdel Name Name\nsvn:ignore Name Name\n-R Name Name\n. O O\n\nThis O O\nremoves O O\nall O O\ningnores O O\nI O O\n've O O\nmade O O\n, O O\nbut O O\nI O O\ndid O O\nn't O O\nthink O O\nthat O O\nwould O O\nbe O O\na O O\nproblem O O\n. O O\n\nHowever O O\n, O O\nwhen O O\nI O O\nnow O O\ntry O O\nto O O\nupdate O O\n, O O\nI O O\nget O O\nthe O O\nfollowing O O\nmessage O O\n: O O\n\nConflict O O\nfor O O\nproperty O O\n' O O\nsvn:ignore O O\n' O O\ndiscovered O O\non O O\n'' O O\n. O O\n\nWhat O O\ndoes O O\nthe O O\nempty O O\nsingle O O\nquotes O O\nmean O O\n? O O\n\nAlso O O\n, O O\nsubversion Name Name\nseems O O\nto O O\nhave O O\ntrouble O O\nfinding O O\nmy O O\nworking O O\ndirectory O O\n, O O\nas O O\nI O O\n'm O O\ngetting O O\n! Name Name\nM Name Name\n. O O\nat O O\nthe O O\ntop O O\nof O O\nthe O O\noutput O O\nwhen O O\nI O O\nrun O O\nsvn Name Name\nup O O\n. O O\n\nFinally O O\n, O O\nwhat O O\ndoes O O\nn't O O\nmake O O\nsense O O\nto O O\nme O O\nis O O\nhow O O\ndoes O O\nsvn Name Name\naccurately O O\ndisplay O O\nwhat O O\nfiles O O\nI O O\n've O O\nmodified O O\nif O O\nit O O\nca O O\nn't O O\nfind O O\nmy O O\ndirectory O O\n? O O\n\n( O O\nMaybe O O\nI O O\n'm O O\nmisinterpreting O O\nthe O O\n! Name Name\nM Name Name\nmessage O O\n, O O\ndoes O O\nn't O O\nthat O O\nmean O O\nthat O O\nthe O O\npath O O\nis O O\nmissing O O\n? O O\n) O O\n\nI O O\n've O O\ntrying O O\nto O O\nuse O O\nEclipse Name Name\nJDT Name Name\nAST Name Name\nparsing O O\nclasses O O\n. O O\n\nAfter O O\nincluding O O\nthe O O\ninitial O O\nJAR Name Name\n, O O\nand O O\nsorting O O\nout O O\na O O\ncouple O O\nmore O O\ndependencies O O\n, O O\nit O O\nis O O\nwith O O\n7+ O O\nJARs Name Name\nand O O\nI O O\nstill O O\nhaving O O\nNoClassDefFoundError O O\nexceptions Name Name\n. O O\n\nThis O O\nsituation O O\narises O O\nwhenever O O\nI O O\n'm O O\ntrying O O\nto O O\ntest O O\nlibraries O O\nwith O O\nlittle O O\nor O O\nno O O\ndocumentation O O\n. O O\n\nTrial O O\nand O O\nerror O O\nseems O O\na O O\nvery O O\ndumb O O\n( O O\nand O O\nannoying O O\n) O O\napproach O O\nto O O\nsolve O O\nthis O O\nproblem O O\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\nautomatically O O\nsort O O\nthis O O\nout O O\nusing O O\nEclipse Name Name\n? O O\n\nUpdate O O\n: O O\nLater O O\nI O O\nfound O O\nthat O O\nadding O O\nall O O\nthe O O\nJARs Name Name\nyou O O\nhave O O\n, O O\nand O O\nusing O O\nCtrl-T O O\n( O O\nto O O\nview/locate O O\ntypes O O\n) O O\n, O O\nlets O O\nyou O O\nmanually O O\nlocate O O\nthe O O\nJAR Name Name\n. O O\n\nThat O O\nwas O O\nthe O O\nsolution O O\nthat O O\nGoogle Name Name\nprovided O O\nso O O\nfar O O\n. O O\n\nIs O O\nthere O O\na O O\nbetter O O\nway O O\n? O O\n\nYou O O\ncould O O\nuse O O\na O O\ndependency O O\nanalyzer O O\nlike O O\n: O O\n\nJarAnalyzer Name Name\n\nThis O O\nwill O O\nparse O O\na O O\ndirectory O O\nfull O O\nof O O\nJars Name Name\nand O O\ngive O O\nyou O O\nan O O\nXML Name Name\noutput O O\ndependency O O\nmap O O\n, O O\nfor O O\nwhich O O\nthere O O\nare O O\nseveral O O\ntools O O\nfor O O\ndisplaying O O\nin O O\neither O O\ngraphical O O\nor O O\ntext O O\nform O O\n. O O\n\nIf O O\nyou O O\nrefer O O\nto O O\nthis O O\nSO Name Name\nquestion O O\nFinding O O\nunused O O\njars Name Name\nused O O\nin O O\nan O O\neclipse Name Name\nproject O O\n, O O\nyou O O\nalso O O\nhave O O\n: O O\n\nClassPathHelper Name Name\n, O O\nwhich O O\ncan O O\nquickly O O\nfocus O O\non O O\nunresolved O O\nclasses O O\n: O O\n\nIt O O\nautomatically O O\nidentifies O O\norphan O O\njars Name Name\n, O O\nblocked O O\n( O O\nobscured O O\n) O O\nclasses O O\n, O O\nand O O\nmuch O O\nmore O O\n. O O\n\nThe O O\nonly O O\nlimit O O\nis O O\ndependencies O O\nthat O O\nare O O\nnot O O\ndefined O O\nin O O\nclasses O O\n, O O\ne.g O O\n. O O\nin O O\ndependency O O\ninjection O O\nframework O O\nconfiguration O O\nfiles O O\n. O O\n\nI O O\ngot O O\na O O\nproblem O O\nwhen O O\npositioning O O\nthree O O\ndivs Name Name\nside O O\nby O O\nside O O\n. O O\n\nThose O O\nthree O O\ndivs Name Name\ncontain O O\nnormal O O\ntext O O\nbut O O\nalso O O\nhave O O\na O O\nlink O O\nat O O\nthe O O\nbottom O O\n. O O\n\nTo O O\nget O O\nthis O O\nresponsive O O\n, O O\nthe O O\nitems O O\nare O O\ninline-block Name Name\nwith O O\na O O\nwidth Name Name\nof O O\n32% Name Name\n. O O\n\nNow O O\nthe O O\nproblem O O\nis O O\n, O O\nthat O O\nwhen O O\nI O O\nchange O O\nthe O O\nwindow Name Name\nsize O O\n, O O\nthe O O\nheight O O\nof O O\nthe O O\nitems O O\nare O O\ndifferent O O\n. O O\n\nI O O\nwant O O\nthe O O\nlinks O O\nat O O\nthe O O\nbottom O O\nof O O\nthe O O\nitems O O\nto O O\nbe O O\nat O O\nthe O O\nsame O O\nposition O O\n, O O\nlike O O\nthis O O\n: O O\n\nBut O O\nactual O O\nit O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nI O O\nused O O\nJavaScript Name Name\nto O O\nset O O\nthose O O\nitems O O\nto O O\nthe O O\nsame O O\nheight O O\n, O O\nbut O O\nhow O O\ncan O O\nI O O\nget O O\ntheese O O\nlinks O O\nto O O\nthe O O\nsame O O\nposition O O\n? O O\n\nI O O\nknow O O\nthis O O\ncan O O\nbe O O\ndone O O\nby O O\nsetting O O\nthe O O\nitem O O\nto O O\nposition Name Name\n: Name Name\nrelative Name Name\n; Name Name\nand O O\nthe O O\na O O\nto O O\nposition Name Name\n: Name Name\nabsolute Name O\n; Name Name\nbottom Name Name\n: Name Name\n0 Name Name\n; Name Name\nbut O O\nthen O O\ntext-align Name Name\n: Name Name\ncenter Name Name\n; Name Name\ndoes O O\nn't O O\nwork O O\nanymore O O\n. O O\n\nI O O\nmade O O\na O O\nJSFiddle Name Name\nfor O O\nyou O O\nto O O\nunderstand O O\nmy O O\nproblem O O\n. O O\n\nHope O O\nyou O O\ncan O O\nhelp O O\nme O O\n. O O\n\nSince O O\nyou O O\nasked O O\nfor O O\na O O\nsolution O O\nwithout O O\nposition Name Name\n: Name O\nabsolute Name Name\n; Name Name\nbottom Name Name\n: Name Name\n0 Name Name\n; Name Name\nI O O\ngive O O\nyou O O\nthe O O\nfollowing O O\napproach O O\n. O O\n\nWhat O O\nyou O O\ncan O O\ndo O O\nis O O\nthat O O\nyou O O\nwrap O O\nup O O\nyour O O\ncontent O O\ncontainers O O\ninto O O\nanother O O\ndiv-container Name Name\nand O O\ninsert O O\nthe O O\nlink O O\nafter O O\nyour O O\ncontent O O\ncontainer O O\n. O O\n\nYou O O\nwould O O\nget O O\na O O\npseudo O O\nstructure O O\nlike O O\nthat O O\n: O O\n\nFor O O\nevery O O\nthree O O\nof O O\nyour O O\ncontent O O\ncontainers O O\n. O O\n\nWorking O O\nwith O O\nyour O O\njavascript Name Name\nresizeFunction Name Name\nthe O O\nlinks O O\nare O O\non O O\nthe O O\nsame O O\nheight O O\nall O O\nthe O O\ntime O O\n. O O\n\nNote O O\nthat O O\nyour O O\ndiv.content-wrapper Name Name\nis O O\ndisplay:inline-block Name Name\n; Name Name\nnow O O\n, O O\nbut O O\nyour O O\ndiv.content Name Name\nare O O\nnot O O\n. O O\n\nGreetz O O\n\nFlex Name Name\ncan O O\ndo O O\nthis O O\nvery O O\neasily O O\nbut O O\nwith O O\nsome O O\nwhat O O\nless O O\nbrowser Name Name\nsupport O O\n. O O\n\nAnother O O\nway O O\nis O O\nusing O O\ndisplay Name Name\n: Name Name\ntable Name Name\n, O O\nwhich O O\nhave O O\nvery O O\ngood O O\nsupport O O\n( O O\ndown O O\nto O O\nIE8 Name Name\n) O O\n, O O\nat O O\nthe O O\nend O O\nyou O O\nfind O O\na O O\nsample O O\nusing O O\nthat O O\n. O O\n\nOne O O\nmore O O\nway O O\n, O O\nthinking O O\nin O O\nthe O O\nterms O O\nof O O\n\" O O\nrows Name Name\n\" O O\n, O O\nis O O\nlike O O\nthis O O\n, O O\nwhere O O\nthere O O\nis O O\nno O O\nabsolute O O\nposition O O\n, O O\nno O O\nscript O O\nand O O\nkeep O O\nyour O O\nlinks O O\nat O O\nthe O O\nbottom O O\n, O O\nall O O\ncentered O O\n. O O\n\nUpdate O O\n\nAs O O\nrequested O O\n, O O\nand O O\nto O O\nmake O O\nit O O\nmore O O\nresponsive O O\n, O O\nI O O\nadded O O\na O O\nmedia Name Name\nquery Name Name\n. O O\n\nRun O O\nthe O O\nsnippet Name Name\nin O O\nfull O O\npage O O\nand O O\nresize O O\nthe O O\nbrowser Name Name\nto O O\nsee O O\nit O O\nin O O\naction O O\n. O O\n\nTo O O\nbe O O\nnoted O O\nthough O O\n, O O\nthis O O\nis O O\nstill O O\na O O\n\" O O\nwithout O O\nusing O O\nflex Name Name\n\" O O\nsolution O O\n. O O\n\nUpdate O O\n2 O O\n\nAdded O O\na O O\ndisplay Name Name\n: Name Name\ntable Name Name\n\nThe O O\ntable Name Name\nversion O O\n\nSomebody O O\nknows O O\nwhat O O\nis O O\nthe O O\nerror O O\nin O O\nmy O O\nsintaxys O O\n? O O\n\nI O O\nhave O O\nexperience O O\nwith O O\nSQL Name Name\nServer Name Name\n, O O\nbut O O\nMySQL Name Name\nis O O\na O O\nHeadache O O\nfor O O\nme O O\n. O O\n\nThe O O\nversion O O\nof O O\nMySQL Name Name\nthat O O\nI O O\nhave O O\nis O O\nMySQL Name Name\nDatabase Name Name\nVersion O O\n5.0.51b Name Name\n. O O\n\nThanks O O\nand O O\nregards O O\n\nSorry O O\n, O O\nI O O\n'm O O\nreally O O\nsorry O O\nfor O O\nmy O O\nmistake O O\n, O O\nI O O\nmade O O\nthe O O\nchange O O\nInfinity O O\nsuggested O O\nme O O\n. O O\n\nError O O\nSQL Name Name\n: O O\n\nAnd O O\nthe O O\nresult O O\nis O O\n: O O\n\nThanks O O\nSiride O O\n, O O\nI O O\ntry O O\nthis O O\n: O O\n\nAnd O O\nthe O O\nresult O O\nwas O O\n: O O\n\nI O O\nhad O O\nto O O\ndo O O\nit O O\nfrom O O\nthe O O\nconsole Name Name\n, O O\nand O O\nthe O O\nfinal O O\nscript O O\nis O O\n: O O\n\nYou O O\nseem O O\nto O O\nbe O O\npretty O O\nfine O O\nwith O O\nMySQL Name Name\n, O O\nyou O O\njust O O\ntry O O\nto O O\nfind O O\nthe O O\nTRIGGUER Name Name\nkeyboard Name Name\nwith O O\nTRIGGER Name Name\n:-) O O\n\nIn O O\naddition O O\nto O O\nthe O O\nTRIGGUER Name Name\nproblem O O\n, O O\nyou O O\nleft O O\noff O O\nthe O O\nsemi-colon O O\nat O O\nthe O O\nend O O\nof O O\nyour O O\nUPDATE Name Name\nstatement O O\ninside O O\nthe O O\nIF Name Name\n. O O\n\nThis O O\nhas O O\nbeen O O\nbugging O O\nme O O\n, O O\nI O O\n'm O O\na O O\nbeginner O O\nand O O\nca O O\nn't O O\nseem O O\nto O O\nfigure O O\nthis O O\nout O O\n. O O\n\nHere O O\n's O O\nmy O O\ncode O O\n: O O\n\nBasically O O\nI O O\nam O O\nattempting O O\nto O O\nmake O O\nthe O O\nwordToDisplay Name Name\nshow O O\nup O O\nin O O\nmy O O\ntextView Name Name\nbut O O\nI O O\ncannot O O\nfigure O O\nout O O\nhow O O\nto O O\ndo O O\nso O O\n. O O\n\nAlso O O\n, O O\nsorry O O\nfor O O\nasking O O\nso O O\nmany O O\nquestions O O\n, O O\ni O O\n'm O O\nnew O O\nat O O\nthis O O\n. O O\n\nThanks O O\n! O O\n\nTo O O\nmake O O\nyour O O\ntest O O\nappear O O\nin O O\nTextView Name Name\nyou O O\nhave O O\nto O O\nset O O\nit O O\nwith O O\nsetText(); Name Name\n, O O\nso O O\nbasically O O\nyou O O\nhave O O\nto O O\nassign O O\nyour O O\ntextview Name Name\nid O O\nor O O\ntag O O\n( O O\nadd O O\nandroid:id Name Name\n= Name Name\n\" Name Name\n@+ Name Name\nid/mytextview Name Name\n) O O\nthen O O\nget O O\nthat O O\nobject O O\nTextView Name Name\ntv Name Name\n= Name Name\n(TextView)findViewById(R.id.mytextview) Name Name\n; Name Name\ntv.setText(\"foo\") Name Name\n; Name Name\nI O O\n'd O O\nalso O O\nrecommend O O\ngoing O O\nthrough O O\nsome O O\ntutorials O O\non O O\nandroid Name Name\nbasics O O\n- O O\nwill O O\nhelp O O\n\nFor O O\nefficiency O O\ntry O O\nthis O O\n: O O\n\nYou O O\ncan O O\nremove O O\nthe O O\nrest O O\nof O O\nthe O O\ncode O O\n. O O\n\nYou O O\nonly O O\nneed O O\nto O O\ncreate O O\none O O\nrandom O O\nnumber O O\nobject O O\nand O O\nyou O O\ndo O O\nn't O O\nneed O O\nto O O\nsave O O\nthe O O\nrandom O O\nInteger Name Name\nor O O\ncorresponding O O\nString Name Name\nin O O\nlocal O O\nvariables O O\n, O O\nif O O\nyou O O\nonly O O\nuse O O\nthem O O\nonce O O\n. O O\n\nHowever O O\nit O O\nis O O\nokay O O\nto O O\nsave O O\nthem O O\nin O O\nlocal O O\nvariables O O\nif O O\nyou O O\nwant O O\nto O O\nimprove O O\nreadability O O\n. O O\n\nI O O\nhave O O\na O O\nSOAP O O\nweb O O\nservice O O\nrunning O O\non O O\nwindows Name Name\nwhich O O\nis O O\nsecured O O\nwith O O\nNTLM O O\nauthentication O O\n. O O\n\nI O O\ncannot O O\nchange O O\nthis O O\n. O O\n\nWhen O O\nI O O\nopen O O\nan O O\nURL O O\nto O O\nthe O O\nweb O O\nservice O O\nI O O\nget O O\na O O\npassword O O\ndialog Name Name\nand O O\nwhen O O\nI O O\nauthenticate O O\nthen O O\nI O O\ncan O O\nsee O O\nthe O O\nWSDL Name Name\n, O O\nso O O\nI O O\nknow O O\nit O O\nis O O\nworking O O\n. O O\n\nNow O O\nI O O\nam O O\ntrying O O\nto O O\nconfigure O O\nMaven Name Name\nto O O\ngenerate O O\nJava Name Name\nclasses O O\nfrom O O\nthe O O\nWSDL Name Name\n. O O\n\nI O O\nfound O O\nthe O O\nmaven-jaxb2-plugin Name Name\nfor O O\nMaven Name Name\nand O O\nit O O\nshould O O\nbe O O\nsuitable O O\nfor O O\nthis O O\ntask O O\n. O O\n\nMy O O\nproblem O O\nnow O O\nis O O\nthat O O\nI O O\nam O O\non O O\nLinux Name Name\nand O O\nI O O\ndo O O\nnot O O\nknow O O\nhow O O\nto O O\ngive O O\nthis O O\nplugin Name Name\nor O O\nmaven Name Name\nthe O O\nnecessary O O\ncredentials O O\nto O O\nconnect O O\nto O O\nthe O O\nweb O O\nservice O O\n. O O\n\nSo O O\nmy O O\nquestion O O\nis O O\nis O O\nit O O\npossible O O\nto O O\nconfigure O O\nthe O O\nabove O O\nplugin O O\nsuch O O\nthat O O\nI O O\ncan O O\npass O O\nit O O\nthe O O\nNTLM O O\ncredentials O O\n? O O\n\nHere O O\nis O O\nthe O O\nconfiguration O O\n: O O\n\nUpdate O O\n: O O\nwhen O O\nI O O\nrun O O\nthe O O\ngoal O O\nmvn Name Name\njaxb2:generate Name Name\non O O\nwindows Name Name\n, O O\nthen O O\nthe O O\ngeneration O O\nworks O O\nautomatically O O\nwithout O O\npassword O O\n. O O\n\nBut O O\nthis O O\nis O O\nnot O O\nreally O O\na O O\nsolution O O\nbecause O O\nI O O\ndo O O\nn't O O\nwant O O\nto O O\nswitch O O\nto O O\nwindows Name Name\neach O O\ntime O O\nI O O\nneed O O\nto O O\nregenerate O O\nfrom O O\nthe O O\nwsdl Name Name\n. O O\n\nwhile O O\nreading O O\nRoute53 Name Name\ni O O\ngot O O\nto O O\nknow O O\nabout O O\nreusable O O\ndelegation O O\nsets.But O O\ni O O\nam O O\nreally O O\nconfused O O\nabout O O\nthis O O\ntopic O O\n. O O\n\nIs O O\nit O O\na O O\ngood O O\npractice O O\nto O O\nhave O O\nsame O O\nname O O\nservers Name Name\nfor O O\nmultiple O O\ndomains O O\n. O O\n\nAnd O O\ncan O O\nanyone O O\nexplain O O\na O O\nbit O O\nmore O O\nabout O O\nreusable O O\ndelegation O O\nsets O O\nand O O\nwhat O O\nproblems O O\nit O O\ngonna O O\nsolve O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n\nI O O\n'm O O\ndoing O O\na O O\nproject O O\nusing O O\nQt Name Name\ncreator Name Name\n. O O\n\nI O O\nhave O O\n3 O O\nscreen Name Name\nfor O O\nevery O O\nscreen Name Name\nthere O O\nare O O\n4 O O\nbutton Name Name\n. O O\n\nwhen O O\nclicked O O\non O O\nthe O O\nfirst O O\nbutton Name Name\nit O O\nwill O O\nwirte O O\n0 O O\nto O O\nthe O O\nfile O O\n( O O\nchar Name Name\n) O O\nand O O\nso O O\non O O\nto O O\n3 O O\n. O O\n\nWhen O O\ni O O\nreach O O\nthe O O\nlast O O\nscreen Name Name\n( O O\n4 O O\n. O O\nscreen Name Name\n) O O\nwhere O O\ni O O\nwill O O\nread Name Name\nfrom O O\nthe O O\nfile O O\nand O O\ndisplay O O\nthe O O\ninput O O\nfrom O O\nthe O O\nbuttons Name Name\nit O O\ndoenst O O\nshow O O\nthe O O\n3 O O\nchars Name Name\n. O O\n\nwhen O O\ni O O\nclose O O\nthe O O\napplication O O\nand O O\nopen O O\nit O O\nagain O O\nwith O O\nnew O O\ninputs O O\nfrom O O\nbutton Name Name\nit O O\nshows O O\nthe O O\nprevious O O\ninput O O\nin O O\nthe O O\nlast O O\nscreen Name Name\n. O O\n\nAny O O\nsuggestion O O\nor O O\nhelp O O\nto O O\nsolve O O\nthis O O\nproblem O O\n. O O\n\nThere O O\nare O O\nmultiple O O\nissues O O\nwith O O\nyour O O\ncode O O\n: O O\n\nThe O O\nfunction O O\nnames O O\nare O O\nweird O O\n\nYou O O\nare O O\nnot O O\nchecking O O\nagainst O O\nerrors O O\nafter O O\nthe O O\nwrite Name Name\nsystem O O\ncall O O\n. O O\n\nYou O O\nare O O\nnot O O\nchecking O O\nagainst O O\nerrors O O\nafter O O\nthe O O\nlseek Name Name\nsystem O O\ncall O O\n. O O\n\nYou O O\nare O O\nnot O O\nchecking O O\nagainst O O\nerrors O O\nafter O O\nthe O O\nclose Name Name\nsystem O O\ncall O O\n. O O\n\nYou O O\ninconsistently O O\nuse O O\nthe O O\n: Name Name\n: Name Name\nprefix O O\nfor O O\nthe O O\nclose Name Name\nsystem O O\ncall O O\n, O O\nbut O O\nnot O O\nthe O O\nrest O O\n. O O\n\nYou O O\nare O O\ntrying O O\nto O O\nclose Name Name\neven O O\nif O O\nthe O O\nopen Name Name\nwas O O\nunsuccessful O O\n. O O\n\nYou O O\nare O O\ntrying O O\nto O O\nwrite Name Name\n2 O O\ncharacters Name Name\nto O O\nthe O O\nfile O O\n, O O\nbut O O\nthen O O\nyou O O\nare O O\ntrying O O\nto O O\nread Name Name\n4 O O\ncharacters Name Name\nback O O\n. O O\n\nYou O O\nhave O O\na O O\nleft-over O O\nsyncfs Name Name\nbehind O O\ncomment O O\n. O O\n\nYou O O\nhard-coded O O\nthe O O\nhome O O\npath O O\ninstead O O\nof O O\nusing O O\nsome O O\nhome O O\nvariable O O\n. O O\n\nYou O O\nare O O\ntrying O O\nto O O\ncreate O O\na O O\nsuperfluous O O\ntemporary O O\nvariable O O\n\" O O\nstr Name Name\n\" O O\nin O O\nthe O O\nread Name Name\n. O O\n\nYou O O\nare O O\ntrying O O\nto O O\nclose Name Name\nafter O O\nthe O O\nreturn O O\nthere O O\n. O O\n\nYour O O\ncode O O\nis O O\nvery O O\nplatform O O\nspecific O O\n, O O\nwhereas O O\nyou O O\nalready O O\ndepend O O\non O O\nQt Name Name\n. O O\n\nI O O\nwould O O\npersonally O O\nthrow O O\nout O O\nyour O O\ncode O O\nand O O\nuse O O\nthis O O\none O O\ninstead O O\n: O O\n\nmain.cpp Name Name\n\nmain.pro Name Name\n\nBuild O O\nand O O\nRun O O\n\nI O O\nhave O O\none O O\nPlayer O O\nObject O O\nArray Name Name\nwith O O\nplayer O O\nName Name Name\nand O O\nplayer O O\nScore Name Name\n, O O\nI O O\nwant O O\nto O O\nshow O O\nlike O O\n: O O\n\nrow+ O O\n1 O O\n. O O\n\nPlayer1 O O\n____playerScore1 O O\n\nrow+ O O\n1 O O\n. O O\n\nPlayer2 O O\n____playerScore2 O O\n\nrow+ O O\n1 O O\n. O O\n\nPlayer3 O O\n____playerScore3 O O\n\n...... O O\n. O O\n\nThank O O\nyou O O\nfor O O\nyour O O\nhelp O O\n, O O\n\nHarry O O\n. O O\n\nAssuming O O\nyou O O\n're O O\ntalking O O\nabout O O\na O O\nUITable Name Name\n.. O O\n. O O\n\nI O O\n'm O O\nusing O O\nthis O O\napproach O O\nin O O\na O O\ncurrent O O\nproject O O\n. O O\n\nCreating O O\na O O\ngrid O O\nview O O\nin O O\niOS Name Name\n\nIt O O\n's O O\nvery O O\nstraightforward O O\n, O O\nassuming O O\nyou O O\nknow O O\nyour O O\nway O O\naround O O\ntable O O\ncontrollers O O\n. O O\n\nThe O O\ncode O O\non O O\nthe O O\nblog O O\npost O O\nexplains O O\nhow O O\nit O O\n's O O\nput O O\ntogether O O\n. O O\n\nFor O O\neach O O\nrow Name Name\n, O O\nyou O O\nsimply O O\nsetup O O\nthe O O\ncells Name Name\n. O O\n\nCheckout O O\nUITableView Name Name\n: O O\n\nhttp://www.littlecomputers.net/2009/?page_id=549 O O\n\nhttp://www.icodeblog.com/2008/08/08/iphone-programming-tutorial-populating-uitableview-with-an-nsarray/ O O\n\nAnd O O\nalso O O\ncustomizing O O\nthe O O\ntable Name Name\nview Name Name\ncells Name Name\n: O O\n\nhttp://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html O O\n\nHope O O\nthose O O\nhelps O O\n\nedit O O\n: O O\nI O O\npasted O O\nthe O O\nwrong O O\nlink O O\nin O O\nmy O O\ninitial O O\npost O O\n( O O\none O O\nfor O O\nmono Name Name\ntouch Name Name\n- O O\nmeant O O\nto O O\ninclude O O\non O O\nfor O O\nUITableView Name Name\nover O O\narray Name Name\n) O O\n\nI O O\nhave O O\nseen O O\ntoo O O\nmuch O O\nC# Name Name\nand O O\nC++ Name Name\ncode O O\nwhere O O\nthe O O\nvariable O O\nnaming O O\nconvention O O\nseems O O\nto O O\nask O O\nprogrammers O O\nto O O\nwrite O O\nvariable O O\nnames O O\nusing O O\nunderscore O O\nbefore O O\nthe O O\ntext O O\nof O O\nthe O O\nvariable O O\n. O O\n\ne.gr O O\n. O O\n\nWhat O O\n's O O\nthe O O\nrationale O O\nsupporting O O\nthat O O\nconvention O O\n? O O\n\nThe O O\nMicrosoft Name Name\nGuidelines O O\nfor O O\nmember O O\nnaming O O\nspecifies O O\nthat O O\nyou O O\ndo O O\nnot O O\nuse O O\nprefixes O O\nfor O O\nfields O O\n. O O\n\nYou O O\ncan O O\nread O O\nMicrosoft Name Name\n's O O\nguidelines O O\nfor O O\nnames O O\nhere O O\n. O O\n\nThis O O\njust O O\napplies O O\nto O O\nC# Name Name\n, O O\nof O O\ncourse O O\n. O O\n\nIn O O\nC# Name Name\nI O O\nusually O O\nprefix O O\nwith O O\n_ Name Name\nprivate O O\nfields O O\nbut O O\nnever O O\nlocal O O\nvariables O O\n. O O\n\nThe O O\nrationale O O\nbehind O O\nthis O O\nis O O\nthat O O\nwhen O O\nI O O\nneed O O\na O O\nprivate O O\nvariable O O\nI O O\ntype O O\n_ Name Name\nand O O\nthe O O\nIntellisense Name Name\nfilters O O\nthe O O\nlist O O\nand O O\nit O O\nis O O\neasier O O\nto O O\nfind O O\n. O O\n\nThis O O\nway O O\nI O O\nam O O\nalso O O\nable O O\nto O O\ndistinguish O O\nbetween O O\nprivate O O\nfrom O O\nlocal O O\nvariables O O\nand O O\nI O O\nno O O\nlonger O O\nneed O O\nto O O\ntype O O\nthis.variablename Name Name\nfor O O\nclass O O\nfields O O\nbut O O\nsimply O O\n_variablename Name Name\n. O O\n\nI O O\nwant O O\nto O O\nshow O O\na O O\nnote/label Name Name\non O O\nmy O O\ntableview Name Name\nbackground Name Name\nwhen/if O O\nthere O O\nis O O\nno O O\ndata O O\nto O O\nload O O\n, O O\nor O O\ndata O O\nis O O\nbeing O O\nfetched O O\netc O O\n. O O\n\nI O O\nca O O\nn't O O\nsee O O\nwhat O O\nam O O\nI O O\ndoing O O\nwrong O O\nhere O O\n. O O\n\nXcode Name Name\nis O O\nshowing O O\na O O\nwarning O O\n\" O O\nWill O O\nnever O O\nbe O O\nexecuted O O\n\" O O\non O O\nthis O O\nline O O\nof O O\ncode O O\n: O O\nif Name Name\nmostUpTodateNewsItemsFromRealm Name Name\n? Name Name\n. Name Name\ncount Name Name\n< Name Name\n1 Name Name\n{ Name Name\n\nHere O O\nis O O\nthe O O\nmethod O O\n. O O\n\nYour O O\ncode O O\nfirst O O\ncreated O O\na O O\nconstant O O\n: O O\n\nAnd O O\nthen O O\nyou O O\ncheck O O\nwhether O O\nit O O\nis O O\nless O O\nthan O O\n1 Name Name\n: O O\n\nSince O O\nit O O\nis O O\na O O\nconstant O O\n, O O\nit O O\nwill O O\nnever O O\nchange O O\n. O O\n\nThis O O\nmeans O O\nthat O O\nthe O O\nif O O\nclause O O\nwill O O\nalways O O\nbe O O\nexecuted O O\n. O O\n\nThus O O\n, O O\nthe O O\nelse Name Name\nclause O O\nwill O O\nnever O O\nbe O O\nexecuted O O\n. O O\n\nSo O O\nfirst O O\nyou O O\nneed O O\nto O O\nmake O O\nthis O O\nconstant O O\nvariable O O\n: O O\n\nThen O O\njust O O\nchange O O\nthis O O\n: O O\n\nto O O\nthis O O\n: O O\n\nThis O O\nway O O\n, O O\nnumberOFChannelSubscribedToIs Name Name\ncan O O\nbe O O\nsome O O\nnumber O O\nother O O\nthan O O\n0 Name Name\n. O O\n\nAnd O O\nthe O O\nelse O O\nclause O O\ncan O O\nbe O O\nexecuted O O\n. O O\n\nvar Name Name\nand O O\nlet Name Name\nare O O\nvery O O\ndifferent O O\n! O O\n\nAny O O\nsuggestion O O\nplease O O\n....... O O\n. O O\n\nThis O O\nis O O\nwhere O O\nI O O\ncompletely O O\nstucked O O\n. O O\n\nI O O\nhave O O\nno O O\ncode O O\nto O O\nshow O O\nwhat O O\nI O O\nhave O O\ntried O O\n. O O\n\nCause O O\nI O O\ncould O O\nn't O O\nthink O O\nof O O\na O O\nway O O\nto O O\nfigure O O\nthis O O\nout O O\nin O O\nsql Name Name\n? O O\n\nSomebody O O\nsuggested O O\nme O O\nto O O\nuse O O\npivot Name Name\n( O O\nnew O O\nto O O\nthe O O\nconcept O O\n... O O\ncouldn O O\n' O O\nt O O\nfigure O O\nit O O\nout O O\n) O O\n. O O\n\n4 O O\nsteps O O\nof O O\nCol5 Name Name\nmakes O O\na O O\ncomplete O O\ncycle O O\n. O O\n\nI O O\nhave O O\nmultiple O O\nsteps O O\nprocessed O O\nand O O\nneed O O\nthe O O\ntiming O O\nof O O\na O O\ncomplete O O\ncycle O O\n. O O\n\n1 O O\nstep O O\nof O O\na O O\ncycle O O\nmay O O\nbegin O O\nbefore O O\ncompletion O O\nof O O\nother O O\n. O O\n\nTable Name Name\nA Name Name\n\nExpected O O\nOutPut O O\nTable O O\n( O O\nResult O O\n) O O\n: O O\n\nTo O O\nme O O\n, O O\nit O O\nlooks O O\nlike O O\nthe O O\ncycles O O\nare O O\ndetermined O O\nby O O\ncombinations O O\nof O O\nfour O O\n\" O O\nsteps O O\n\" O O\nwith O O\nthe O O\nsame O O\ntag O O\nin O O\ncol6 Name Name\n. O O\n\nThe O O\ndata O O\nin O O\nthe O O\nexample O O\nonly O O\nhas O O\none O O\ncycle O O\nper O O\ncode O O\n, O O\nbut O O\nthe O O\ncomments O O\nsuggest O O\nthere O O\nmight O O\nbe O O\nmore O O\nthan O O\none O O\n. O O\n\nHow O O\ncan O O\nwe O O\nidentify O O\nwhich O O\ncycle O O\nfor O O\na O O\ngiven O O\ncode O O\na O O\nrecord O O\nbelongs O O\nto O O\n? O O\n\nWell O O\n, O O\none O O\nway O O\nis O O\nto O O\nassume O O\nthat O O\nall O O\nthe O O\ncycles O O\nwith O O\nthat O O\ncode O O\nare O O\ncomplete O O\nand O O\njust O O\nenumerate O O\nthe O O\nrecords O O\nby O O\ncol6 Name Name\n, O O\ncol5 Name Name\n. O O\n\nThis O O\nadditional O O\ncycle O O\nsequence O O\nnumber O O\nis O O\nthen O O\nused O O\nfor O O\naggregation O O\n. O O\n\nFor O O\nenumerating O O\nthe O O\nsequences O O\n, O O\nI O O\nfurther O O\nassume O O\nthat O O\nthe O O\ndates O O\nare O O\nincreasing O O\nover O O\ntime O O\n. O O\n\nAlthough O O\na O O\npivot Name Name\ncan O O\nbe O O\nused O O\nin O O\nthis O O\ncase O O\n, O O\nI O O\nthink O O\nthe O O\naggregation O O\nmethod O O\nmight O O\nbe O O\na O O\nbit O O\nclearer O O\n: O O\n\nThe O O\nQuery O O\n: O O\n\nThe O O\nOutput O O\n: O O\n\nYou O O\ncan O O\nchoose O O\nwhich O O\ncolumns Name Name\nyou O O\nrequire O O\nand O O\nwhich O O\ncolumns Name Name\nto O O\nremove O O\nin O O\nyour O O\nfinal O O\nselect O O\n. O O\n\n( O O\nregarding O O\ncol3 Name Name\n, O O\nCol4 Name Name\n, O O\nCol4 Name Name\n1) Name Name\n\n**** O O\nBased O O\non O O\nthe O O\nlogic O O\nexplained O O\nin O O\nthe O O\ncomments******* O O\n\n/ O O\n* O O\nProvided O O\nsample O O\nData O O\n* O O\n/ O O\n\n/ O O\n*Query O O\nassuming O O\neach O O\nCycle O O\nhappens O O\nin O O\nthe O O\nsame O O\nminute O O\n* O O\n/ O O\n\nOUTPUT O O\n: O O\n\nCan O O\nI O O\nbuild O O\nnested O O\nconditions O O\nusing O O\nthe O O\nSelectQuery Name Name\nobject O O\n? O O\n\nI O O\nwant O O\nto O O\nget O O\n: O O\n\nIf O O\nyou O O\ninline O O\nall O O\nconditions O O\n/ O O\npredicates. O O\n. O O\n\n. O O\n. O O\nthen O O\nyou O O\ncan O O\nsupply O O\nthem O O\njust O O\nlike O O\nthat O O\nto O O\nyour O O\nSelectQuery Name Name\nobject O O\n: O O\n\nI O O\n've O O\nadded O O\nsome O O\nwhitespace O O\nfor O O\nimproved O O\nreadability O O\n\nIf O O\nyou O O\nwant O O\nto O O\nperform O O\ndynamic O O\nquery O O\nbuilding. O O\n. O O\n\n. O O\n. O O\nThen O O\nyou O O\ncan O O\ncreate O O\nyour O O\npredicate O O\nin O O\nvarious O O\nsteps O O\n: O O\n\nBoth O O\napproaches O O\nare O O\ncompletely O O\nequivalent O O\n. O O\n\nI O O\n'm O O\nlooking O O\nat O O\nthe O O\ndocumentation O O\nnow O O\nand O O\nit O O\nlooks O O\nlike O O\nyou O O\ncan O O\nuse O O\nthe O O\naddConditions Name Name\nmethods O O\nwith O O\nan O O\nOR Name Name\noperator O O\nto O O\naccomplish O O\nyour O O\nnested O O\nquery O O\n. O O\n\nThere O O\nare O O\n4 O O\ndifferent O O\noverloaded O O\nmethods O O\nwith O O\naddConditions Name Name\nbut O O\nthe O O\nlast O O\ntwo O O\nallow O O\nyou O O\nto O O\nsupply O O\nan O O\noperator O O\n( O O\nin O O\nyour O O\ncase O O\nOR Name Name\n) O O\nand O O\none O O\nof O O\nthose O O\nallows O O\nyou O O\nto O O\nstring Name Name\ntogether O O\nmultiple O O\nconditions O O\nusing O O\na O O\nsupplied O O\noperator O O\n. O O\n\nSo O O\nall O O\nyou O O\nneed O O\nto O O\ndo O O\nis O O\nbreak O O\napart O O\nyour O O\nnested O O\nstatements O O\ninto O O\nseparate O O\nconditions O O\nand O O\nthen O O\nlink O O\nthem O O\ntogether O O\nwith O O\nyour O O\naddConditions Name Name\n( Name Name\n[Collection Name Name\nof Name Name\nConditions Name Name\n] Name Name\n, Name Name\nOR Name Name\n) Name Name\nstatement O O\n. O O\n\nHere O O\ni O O\nam O O\nusing O O\nfunction O O\nto O O\nprint O O\nthe O O\nvalues O O\nto O O\ndiv Name Name\nwith O O\nid Name Name\n= Name Name\n\" Name Name\nmylist Name Name\n\" Name Name\n.i O O\nam O O\nusing O O\nthe O O\nloop O O\nand O O\ncalling O O\nthe O O\nprintList() Name Name\nfunction O O\nwith O O\nthe O O\nvalue O O\nand O O\ni O O\nam O O\nprinting O O\nthe O O\nvalue O O\nin O O\nprintList() Name Name\nbut O O\nits O O\nnot O O\nworking.how O O\ncan O O\ni O O\ndo O O\nthis O O\n? O O\n\nJavascript Name Name\n: O O\n\nand O O\nalso O O\ni O O\nwant O O\nto O O\nadd O O\ndelay O O\nfor O O\nprinting O O\nthe O O\nvalues O O\n. O O\n\nThis O O\nshould O O\nwork O O\n. O O\n\nBasically O O\n, O O\nyou O O\nonly O O\nappend O O\nother O O\nDOM O O\nNode O O\n( O O\nas O O\nchild O O\n) O O\nto O O\nDOM O O\nNodes O O\n. O O\n\nso O O\nyou O O\nuse O O\ndocument.createTextNode() Name Name\nto O O\ncreate O O\nnode O O\nand O O\ndocument.appendChild() Name Name\nto O O\nadd O O\nit O O\nas O O\na O O\nchild O O\nto O O\nexisting O O\nnode O O\n. O O\n\nProblem O O\nis O O\ndocument.write Name Name\nreturns O O\nnothing O O\n, O O\nalso O O\nusing O O\nit O O\nis O O\nnot O O\nrecommended O O\n. O O\n\nSecondly O O\ndom O O\ndoes O O\nnot O O\nhave O O\nfunction O O\nappend O O\n, O O\ninstead O O\nit O O\nis O O\nappendChild Name Name\n. O O\n\nTry O O\ndocument.createTextNode Name Name\nand O O\nappendChild Name Name\n: O O\n\nYou O O\nmay O O\nalso O O\ntry O O\ninnerHTML Name Name\n: O O\n\nI O O\nhave O O\na O O\nstring Name Name\nas O O\nbelow O O\n: O O\n\nI O O\nneed O O\nto O O\nextract O O\nthe O O\nepisode O O\nnumber O O\n( O O\n1 Name Name\n5) Name Name\nfrom O O\nit O O\nusing O O\nruby Name Name\nregex O O\n. O O\n\nHow O O\ncan O O\nI O O\ndo O O\nit O O\n? O O\n\nJust O O\nmatch O O\nthe O O\nlast O O\nnumber O O\n. O O\n\nThis O O\nwill O O\nwork O O\n: O O\n\nIn O O\nthis O O\nquestion O O\nI O O\nasked O O\n, O O\nhow O O\nI O O\ncan O O\ngenerate O O\nshades O O\nof O O\none O O\ncolor O O\nresponsive O O\nto O O\nthe O O\nnumber O O\nof O O\ndiv Name Name\n's O O\n. O O\n\n@DonJuwe O O\ncame O O\nup O O\nwith O O\na O O\nperfectly O O\nworking O O\nsolution O O\nand O O\ndemo O O\n: O O\nhttp://jsbin.com/xakifequ/1/edit O O\n\nHowever O O\nwhen O O\nI O O\n'm O O\ntrying O O\nto O O\nuse O O\nthe O O\ncode O O\nfrom O O\nthe O O\njsfiddle Name Name\nor O O\nJSBin Name Name\nit O O\njust O O\ndoes O O\nn't O O\nwork O O\n. O O\n\nSo O O\nI O O\ndownloaded O O\nthe O O\nsource O O\ncode O O\nfrom O O\nJSBin Name Name\n, O O\nopened O O\nthe O O\n.html-file Name Name\nand O O\nwhat O O\nI O O\ngot O O\nwas O O\nthis O O\n: O O\n\nCan O O\nsomeone O O\nplease O O\nexplain O O\nme O O\n, O O\nwhy O O\nthis O O\nhappens O O\n? O O\n\nAs O O\nper O O\nsnapshot O O\n, O O\nYou O O\nare O O\nusing O O\n\nReplace O O\nit O O\nwith O O\n\nYou O O\nare O O\nusing O O\nprotocol O O\nless O O\nUrls O O\n, O O\ni.e O O\n. O O\n//code.jquery.com/jquery O O\n-1.9.1.js O O\n, O O\nWhen O O\nyou O O\nopen O O\na O O\nyour O O\nhtml Name Name\nfile O O\nlike O O\nfile:// O O\nthen O O\njQuery Name Name\nis O O\nnot O O\nloaded O O\nthus O O\ndesired O O\nresult O O\nis O O\nnot O O\nachieved O O\n. O O\n\nHowever O O\n, O O\nif O O\nyou O O\ntest O O\nyour O O\nhtml Name Name\nfile O O\nlike O O\nhttp://localhost/yourfile.html O O\nyou O O\nwill O O\nget O O\nthe O O\ndesired O O\nresult O O\n. O O\n\nNote O O\n: O O\nUse O O\n// O O\ninstead O O\nof O O\nhttp:// O O\nwhen O O\nyou O O\nwant O O\nto O O\ninherit O O\nthe O O\nprotocol O O\nfrom O O\nthe O O\npage O O\n\nyou O O\nmissed O O\nhttp Name Name\n: Name Name\nin O O\nthe O O\njQuery Name Name\nsource O O\nlink O O\n. O O\n\nif O O\nyou O O\nusing O O\nonline O O\nresource O O\nyou O O\nshould O O\nfollow O O\nthe O O\nurl O O\n's O O\nprotocol O O\n. O O\n\nOther O O\nwise O O\nbrowser Name Name\nwill O O\nsearch O O\nit O O\nfrom O O\nlocal O O\n. O O\n\nin O O\nthis O O\nway O O\nyou O O\njust O O\nconfused O O\nyour O O\nbrowser Name Name\n.. O O\n. O O\n\nSo O O\nonly O O\nit O O\nhappens O O\n.. O O\n. O O\n:D O O\n\nyou O O\nshould O O\nuse O O\n.. O O\n. O O\n\ninstead O O\nof O O\n\nI O O\nhave O O\na O O\nVB.Net Name Name\nprojects O O\nwhich O O\ncalls O O\nsome O O\nC# Name Name\ndll Name Name\n's O O\n, O O\nbut O O\nhow O O\ncan O O\nI O O\ndebug O O\nthe O O\nC# Name Name\ncode O O\n? O O\n\nIt O O\nmust O O\nbe O O\npossible O O\n, O O\nbecause O O\nwhen O O\nan O O\nexception Name Name\noccurs O O\n, O O\nVB.Net Name Name\nopens O O\nthe O O\nC# Name Name\ncode O O\nin O O\na O O\ntext-editor Name Name\n, O O\nbut O O\nI O O\nwant O O\nto O O\nbe O O\nable O O\nto O O\nhave O O\nsyntax-coloring O O\n, O O\nset O O\nbreakpoints O O\nin O O\nother O O\nfiles O O\n, O O\netc O O\n. O O\n\nI O O\nfeel O O\nit O O\nmust O O\nbe O O\nobvious O O\n, O O\nbut O O\nI O O\nca O O\nn't O O\nfigure O O\nit O O\nout O O\n. O O\n\nStart O O\nyour O O\ndebugging O O\nsession O O\nnormally O O\n. O O\n\nThen O O\nonce O O\nit O O\nis O O\nstarted O O\n, O O\nuse O O\nVisual Name Name\nStudio Name Name\n, O O\nFile/Open O O\nmenu Name Name\nto O O\nopen O O\nthe O O\ncorrect O O\n.cs Name Name\nfile O O\n. O O\n\nIf O O\nyou O O\nhave O O\na O O\ncorresponding O O\n.pdb Name Name\nfile O O\nfor O O\nthe O O\ndll Name Name\nin O O\nwhich O O\nthe O O\nfile O O\nis O O\nincluded O O\nyou O O\nwill O O\nbe O O\nable O O\nto O O\nset O O\nbreakpoints O O\nwhich O O\nwill O O\nbe O O\nhit O O\nin O O\nyour O O\ndebugging O O\nsession O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nhave O O\nthe O O\npdb Name Name\nfile O O\n, O O\nthis O O\nmeans O O\nyour O O\ndll Name Name\nwas O O\ncompiled O O\nin O O\nRelease O O\nconfiguration O O\nrather O O\nthan O O\ndebug O O\nconfiguration O O\n. O O\n\nDuring O O\nthis O O\nsession O O\nyou O O\nmay O O\nneed O O\nto O O\nopen O O\nother O O\n.cs Name Name\nfiles O O\nmanually O O\nas O O\nyou O O\nstep O O\ninto O O\nstatements O O\n. O O\n\nOpen O O\nthe O O\nneeded O O\nfiles O O\nbefore O O\nyou O O\nstep O O\ninto O O\nthem O O\n. O O\n\nPrior O O\nto O O\nrunning O O\nthe O O\nprojects O O\n( O O\nF O O\n5) O O\nand O O\nif O O\nyou O O\nhave O O\nthe O O\nC# Name Name\ncode O O\n( O O\nrather O O\nthan O O\njust O O\nthe O O\nPDB Name Name\n) O O\nyou O O\ncan O O\nopen O O\nup O O\nthe O O\n.cs Name Name\nfile O O\nusing O O\nFile->Open O O\nand O O\nset O O\nbreakpoints O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nhave O O\nthe O O\n.cs Name Name\nthen O O\ncan O O\nuse O O\nsomething O O\nlike O O\nreflector O O\nto O O\ngenerate O O\nthe O O\n.cs Name Name\nfiles O O\nfor O O\nyou O O\n. O O\n\nIt O O\nshould O O\nalso O O\nbe O O\npossible O O\nto O O\ncreate O O\nbreakpoints O O\nwith O O\njust O O\nthe O O\nPDB Name Name\nbut O O\nI O O\n've O O\nonly O O\nhad O O\nsuccess O O\nwith O O\nthat O O\nif O O\nI O O\n've O O\nalready O O\ninterrupted O O\na O O\nrunning O O\ndebug O O\nsession O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nuse O O\nthe O O\nstatic_assert Name Name\n: O O\n\nbut O O\nI O O\nget O O\nan O O\nerror O O\non O O\ncompilation O O\n\nI O O\ndo O O\nhave O O\nan O O\nexpression O O\nso O O\nwhats O O\nthe O O\nproblem O O\n? O O\n\nFor O O\na O O\ncompiler Name Name\nwithout O O\nconstexpr Name Name\nuse O O\nthe O O\nappropriate O O\nC Name Name\nlibrary O O\nMAX Name Name\nnames O O\nsuch O O\nas O O\nSIZE_MAX Name Name\nfrom O O\n<stdint.h> Name Name\n. O O\n\nAlternatively O O\n, O O\nfor O O\nan O O\nunsigned O O\ntype O O\nsuch O O\nas O O\nsize_t Name Name\nyou O O\ncan O O\njust O O\nuse O O\nsize_t(-1) Name Name\n. O O\n\nSee O O\n( O O\nhttp://en.cppreference.com/w/cpp/types/climits O O\n) O O\nfor O O\na O O\nlist O O\n. O O\n\nTrying O O\nout O O\nthe O O\nSurveys Name Name\nAPI Name Name\nsample O O\nPython Name Name\nscript O O\n, O O\nthe O O\n\" O O\nList Name Name\nSurveys Name Name\n\" O O\ncommand O O\nreturns O O\nonly O O\na O O\nrequest_id Name Name\nand O O\nnot O O\na O O\n\" O O\nresources O O\n\" O O\nobject O O\nwith O O\na O O\nlist Name Name\nof O O\nsurveys O O\nas O O\nexpected O O\n\nExecuting O O\nthe O O\nsample O O\nscript O O\n\nResults O O\nof O O\n\" Name Name\nlist Name Name\n\" Name Name\ncommand O O\nto_json Name Name\nmethod O O\n: O O\n\nResponse O O\nfrom O O\nexecuting O O\nthe O O\nlist Name Name\ncommand O O\n- O O\nno O O\n\" O O\nresources O O\n\" O O\nobject O O\nas O O\nadvertised O O\n. O O\n\nI O O\nhave O O\nsome O O\n150 O O\nsurveys O O\nin O O\nmy O O\naccount O O\n. O O\n\nThis O O\ncommand O O\nworks O O\nfine O O\nin O O\nthe O O\nAPI Name Name\nexplorer Name Name\nand O O\nI O O\ncan O O\nuse O O\nthe O O\nchain O O\nof O O\nnext O O\npage O O\ntokens O O\nto O O\ngo O O\nthrough O O\nthe O O\nlist Name Name\n. O O\n\nWhat O O\nam O O\nI O O\ndoing O O\nwrong O O\nplease O O\n? O O\n\nIt O O\nlooks O O\nlike O O\nyou O O\n're O O\ntrying O O\nto O O\nlist Name Name\nsurveys O O\nowned O O\nby O O\nyour O O\naccount O O\nusing O O\na O O\nservice O O\naccount O O\n. O O\n\nIn O O\norder O O\nto O O\ndo O O\nthis O O\nyou''ll O O\nneed O O\nto O O\nadd O O\nthe O O\nservice O O\naccount O O\nas O O\nan O O\nowner O O\nto O O\nthe O O\nresources O O\nthat O O\nyour O O\naccount O O\nowns O O\n. O O\n\nThere O O\nis O O\nsome O O\nmore O O\ninformation O O\non O O\nthis O O\nprocess O O\nfound O O\nhere O O\n: O O\n\nHow O O\ncan O O\nI O O\nallow O O\na O O\nuser O O\nto O O\nget O O\naccess O O\nto O O\nsurvey O O\nresults O O\nusing O O\nthe O O\nGoogle Name Name\nConsumer Name Name\nSurveys Name Name\nAPI Name Name\n? O O\n\nAlternatively O O\n, O O\nyou O O\ncan O O\nset O O\nup O O\na O O\n3 O O\nlegged O O\nOAuth Name Name\nclient Name Name\nsecret Name Name\nand O O\nuse O O\nthat O O\nwith O O\nthe O O\nexample O O\nscript O O\n. O O\n\nThis O O\nwill O O\nprompt O O\nyou O O\nto O O\nlogin O O\nas O O\nyour O O\nregular O O\nnon-service O O\naccount O O\nand O O\nuse O O\nthose O O\ncredentials O O\n. O O\n\nSee O O\nhttps://developers.google.com/identity/protocols/OAuth2WebServer O O\nto O O\nset O O\nthis O O\nup O O\n. O O\n\nThen O O\nyou O O\ncan O O\nuse O O\nthe O O\nclient O O\nwith O O\nthis O O\ncredential O O\n. O O\n\n./example_client.py Name Name\nlist Name Name\n--client_secrets_file Name Name\n\nMake O O\nsure O O\nto O O\nconfigure O O\nthe O O\ncredentials O O\nto O O\nredirect O O\nto O O\nlocalhost:8080 Name Name\nif O O\nyou O O\nare O O\nusing O O\nthe O O\nexample O O\nscript O O\n. O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\ntime O O\nformat O O\nfor O O\na O O\nvariable O O\nthat O O\nis O O\na O O\nfactor O O\n\n2004-03-01-22.58.00.912933 Name Name\n\nI O O\nam O O\nusing O O\nR Name Name\nand O O\nwould O O\nlike O O\nto O O\nmake O O\nthis O O\nsomething O O\nthat O O\nis O O\nan O O\nactual O O\ntime O O\nformat O O\n. O O\n\nOthers O O\nhave O O\nposted O O\nsimilar O O\nquestions O O\nbut O O\nno O O\none O O\nhas O O\ndealt O O\nwith O O\nthis O O\ntime O O\nformat O O\nspecifically O O\n. O O\n\nThank O O\nyou O O\n. O O\n\nIf O O\nyour O O\nfactor O O\nis O O\nf1 Name Name\n: O O\n\nIf O O\nthe O O\nfractions O O\ndo O O\nn't O O\ndisplay O O\n, O O\nset O O\nthe O O\noption O O\n: O O\n\nI O O\nam O O\nworking O O\non O O\na O O\nmusic O O\ngame O O\nwebsite O O\nand O O\nI O O\nam O O\nusing O O\nthe O O\nSpotify Name Name\nplay Name Name\nbutton Name Name\n. O O\n\nThis O O\ntakes O O\nspotify Name Name\ntrack O O\nnumbers/urls O O\nand O O\nI O O\nam O O\nlooking O O\nfor O O\na O O\nhuge O O\nlist Name Name\nof O O\nthem O O\nwith O O\nwhich O O\nto O O\npopulate O O\nmy O O\ndatabase O O\n. O O\n\nDoes O O\nanyone O O\nknow O O\nwhere O O\nI O O\ncould O O\nfind O O\nsuch O O\na O O\nlist Name Name\n? O O\n\nOr O O\ndo O O\nI O O\nhave O O\nto O O\nwrite O O\na O O\nscript O O\nto O O\ntry O O\nand O O\nscrape O O\nthem O O\n? O O\n\nWell O O\n, O O\nthere O O\nare O O\nmany O O\nmillions O O\nof O O\ntracks O O\nin O O\nSpotify Name Name\nso O O\nthat O O\n'd O O\nbe O O\na O O\npretty O O\nunmanageable O O\nlist Name Name\n. O O\n\nMore O O\nimportantly O O\n, O O\nscraping O O\nthe O O\nSpotify Name Name\ncatalog O O\nlike O O\nthis O O\nis O O\nvery O O\nmuch O O\nagainst O O\nSpotify Name Name\n's O O\nAPI O O\nTerms O O\nof O O\nService O O\n, O O\nand O O\nif O O\nyou O O\ntry O O\nit O O\nyou O O\n'll O O\nfind O O\nyourself O O\nrate O O\nlimited O O\npretty O O\nfast O O\n. O O\n\nInstead O O\n, O O\nconsider O O\nasking O O\nusers O O\nof O O\ntheir O O\ngame O O\nto O O\nsearch O O\nfor O O\nsomething O O\n- O O\nsearching O O\nfor O O\na O O\nuser-supplied O O\nstring O O\nand O O\ncaching O O\nthe O O\nresults O O\nof O O\nthe O O\nsearch O O\ndoes O O\nn't O O\nbreak O O\nthe O O\nTerms O O\nof O O\nService O O\n. O O\n\nif O O\nyou O O\nuse O O\nan O O\nassignment O O\noperator O O\nbut O O\nuse O O\nit O O\nin O O\nwrong O O\nway O O\nor O O\nin O O\nwrong O O\nplace O O\n, O O\n\nthen O O\nyou O O\n'll O O\nget O O\nthis O O\ntypes O O\nof O O\nerrors O O\n! O O\n\nsuppose O O\nif O O\nyou O O\ntype O O\n: O O\n\np+1 Name Name\n=p Name Name\n; Name Name\nyou O O\nwill O O\nget O O\nthe O O\nerror O O\n! O O\n! O O\n\nyou O O\nwill O O\nget O O\nthe O O\nsame O O\nerror O O\nfor O O\nthis O O\n: O O\n\nif Name Name\n( Name Name\nch>='a' Name Name\n&& Name Name\nch='z' Name Name\n) Name Name\n\nas O O\nyou O O\nsee O O\ncan O O\nsee O O\nthat O O\nI O O\ni O O\ntried O O\nto O O\nassign O O\nin O O\nif() Name Name\nstatement O O\n!! O O\n! O O\n\nhow O O\nsilly O O\nI O O\nam O O\n!! O O\n! O O\n\nright O O\n? O O\n? O O\n\nha O O\nha O O\n\nactually O O\ni O O\nforgot O O\nto O O\ngive O O\nless O O\nthen(<) Name Name\nsign O O\n\nif Name Name\n( Name Name\nch>='a' Name Name\n&& Name Name\nch<='z' Name Name\n) Name Name\n\nand O O\ngot O O\nthe O O\nerror O O\n! O O\n! O O\n\nWhen O O\nyou O O\nhave O O\nan O O\nassignment O O\noperator O O\nin O O\na O O\nstatement O O\n, O O\nthe O O\nLHS O O\nof O O\nthe O O\noperator O O\nmust O O\nbe O O\nsomething O O\nthe O O\nlanguage O O\ncalls O O\nan O O\nlvalue O O\n. O O\n\nIf O O\nthe O O\nLHS O O\nof O O\nthe O O\noperator O O\ndoes O O\nnot O O\nevaluate O O\nto O O\nan O O\nlvalue O O\n, O O\nthe O O\nvalue O O\nfrom O O\nthe O O\nRHS O O\ncannot O O\nbe O O\nassigned O O\nto O O\nthe O O\nLHS O O\n. O O\n\nYou O O\ncannot O O\nuse O O\n: O O\n\nsince O O\n10 Name Name\ndoes O O\nnot O O\nevaluate O O\nto O O\nan O O\nlvalue O O\n. O O\n\nYou O O\ncan O O\nuse O O\n: O O\n\nsince O O\ni Name Name\ndoes O O\nevaluate O O\nto O O\nan O O\nlvalue O O\n. O O\n\nYou O O\ncannot O O\nuse O O\n: O O\n\nsince O O\ni Name Name\n+ Name Name\n1 Name Name\ndoes O O\nnot O O\nevaluate O O\nto O O\nan O O\nlvalue O O\n. O O\n\nIn O O\nyour O O\ncase O O\n, O O\np Name Name\n+ Name Name\n1 Name Name\ndoes O O\nnot O O\nevaluate O O\nto O O\nan O O\nlavalue O O\n. O O\n\nHence O O\n, O O\nyou O O\ncannot O O\nuse O O\n\nadvise O O\nappreciated O O\n: O O\n\nI O O\nhave O O\na O O\ndrop-down Name Name\nlist Name Name\nwith O O\n\" Name Name\nselect Name Name\n.. Name Name\n. Name Name\n\" Name Name\nat O O\nthe O O\ntop O O\nand O O\nthen O O\na O O\nlist Name Name\nof O O\nlinks O O\nwhich O O\n, O O\nwhen O O\nclicked O O\n, O O\neach O O\nopens O O\na O O\ndifferent O O\nURL O O\nin O O\na O O\nnew O O\nwindow Name Name\n. O O\n\nAfter O O\nuser O O\nselection O O\n( O O\n\" O O\nclick O O\n\" O O\n) O O\nI O O\nhowever O O\nneed O O\nthat O O\nthe O O\ndrop-down Name Name\nalways O O\nkeeps O O\nshowing O O\n\" Name Name\nselect Name O\n.. Name Name\n. Name Name\n\" Name Name\nand O O\ndoes O O\nNOT O O\nshow O O\nwhat O O\nthe O O\nuser O O\npreviously O O\nselected/clicked O O\non O O\n. O O\n\nI O O\nthought O O\nthat O O\nthis O O\nwould O O\ndo O O\nthe O O\njob O O\n, O O\nbut O O\ndoes O O\nnot O O\n, O O\nit O O\nstill O O\nshows O O\nwhatever O O\nthe O O\nuser O O\nselected/clicked O O\non O O\nin O O\nthat O O\ndrop-down Name Name\n, O O\nrather O O\nthan O O\nalways O O\nshowing O O\n\" Name Name\nselect Name Name\n.. Name Name\n. Name Name\n\" Name Name\n. O O\n\nAny O O\nsuggestion O O\nhow O O\nto O O\nfix O O\ngreatly O O\nappreciated O O\n! O O\n\nTHANKS O O\n\ntry O O\nthis O O\n: O O\n\nor O O\n\nI O O\nam O O\ntrying O O\nto O O\nappend O O\none O O\nstring Name Name\nto O O\nanother O O\n. O O\n\nI O O\ndeclare O O\ntwo O O\nglobal Name Name\nstring Name Name\nvariables O O\n- O O\n\nThen O O\nI O O\nhave O O\na O O\nfunction O O\nfor O O\ngetting O O\ncommand O O\nline O O\narguments O O\n. O O\n\nWhenever O O\na O O\nuser O O\nenters O O\na O O\nfilename O O\nin O O\na O O\ncommand Name Name\nline Name Name\nargument O O\n, O O\nit O O\nshould O O\nbe O O\nstored O O\nin O O\nrest Name Name\nand O O\nthen O O\nrest Name Name\nis O O\nappended O O\nto O O\ngrid_filename Name Name\n. O O\n\nNow O O\nwhenever O O\nI O O\nrun O O\nmy O O\ncode O O\n, O O\nvalgrind Name Name\ngives O O\nme O O\nthis O O\nerror O O\n- O O\n\nI O O\nprint O O\nout O O\nthe O O\ntwo O O\naddresses O O\nof O O\nthe O O\nstrings Name Name\nand O O\nneither O O\nof O O\nthem O O\nmatch O O\nthe O O\none O O\nvalgrind Name Name\nis O O\nsaying O O\nis O O\n0 O O\nbytes O O\n. O O\n\nWhat O O\nam O O\nI O O\nmissing O O\nhere O O\n? O O\n\nI O O\nbelieve O O\nthis O O\nleads O O\nto O O\nmy O O\nsecond O O\nerror O O\nbecause O O\nI O O\npass O O\ngrid_filename Name Name\nto O O\nanother O O\nfunction O O\nthat O O\nsends O O\nthe O O\nstring Name Name\nover O O\na O O\ntcp O O\nconnection O O\n. O O\n\nValgrind Name Name\ntells O O\nme O O\n\nCan O O\nanyone O O\nexplain O O\nto O O\nme O O\nwhat O O\nthe O O\nproblem O O\nis O O\n? O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\nappreciated O O\n. O O\n\nI O O\ncan O O\nsupply O O\nmore O O\nabout O O\nthe O O\ncode O O\nif O O\nneeded O O\n. O O\n\nAbout O O\nyour O O\nfirst O O\nerror O O\n: O O\nwe O O\nhad O O\nfalse O O\npositives O O\nin O O\nvalgrind Name Name\n. O O\n\nCheck O O\nthe O O\ndocumentation O O\nto O O\nsuppress O O\nthese O O\n, O O\nespecially O O\nif O O\nthey O O\nare O O\nnot O O\npointing O O\nto O O\nyour O O\ncode O O\n( O O\nand O O\nyou O O\nhave O O\nchecked O O\nthat O O\nthey O O\ndo O O\nn't O O\nactually O O\ncause O O\nproblems O O\n) O O\n\nNote O O\n: O O\nthis O O\nis O O\nnot O O\na O O\nresponse O O\n, O O\nthis O O\nis O O\nnot O O\na O O\ncode O O\nreview O O\nsite O O\n.. O O\n. O O\nbut O O\nreally O O\nI O O\nca O O\nn't O O\nstare O O\nat O O\nthis O O\nand O O\nwalk O O\naway O O\n. O O\n\nFirst O O\n, O O\nsome O O\nfunctions O O\nthat O O\nreally O O\nhelp O O\nin O O\na O O\ntoolbox Name Name\n: O O\n\nAnd O O\nthen O O\nyou O O\ncan O O\nrewrite O O\nthe O O\ncode O O\nquite O O\nefficiently O O\n( O O\nno O O\nextra O O\nmemory O O\nallocation O O\n) O O\nand O O\nwith O O\nmore O O\nreadability O O\ntoo O O\n: O O\n\nWhich O O\nwo O O\nn't O O\nhelp O O\nmuch O O\nfor O O\nthe O O\nactual O O\nquestion O O\nsince O O\nyou O O\n're O O\nnot O O\nshowing O O\nthe O O\ncode O O\nproducing O O\nthe O O\nerror O O\n. O O\n\nI O O\nhave O O\nto O O\ndo O O\na O O\nwebsite O O\nwith O O\n.cgi Name Name\nfiles O O\n, O O\nso O O\ni O O\nhave O O\nmy O O\nindex.cgi Name Name\n: O O\n\nevrything O O\nis O O\ndisplaying O O\ncorectly O O\netc O O\n. O O\nbut O O\ni O O\ndo O O\nn't O O\nunderstand O O\nanything O O\nabout O O\nlogin O O\nform O O\n:/ O O\n\nhere O O\nis O O\nmy O O\nlogin O O\nform O O\ninput O O\n: O O\n\nand O O\nmy O O\nJS Name Name\nlogin O O\nscript O O\n( O O\nhe O O\nis O O\ninclude O O\nin O O\nheader O O\n) O O\n: O O\n\nSo O O\n, O O\nmy O O\nquestion O O\nis O O\n, O O\nhow O O\ncan O O\ni O O\nmake O O\nmy O O\nwebsite O O\nverify O O\nif O O\nuser O O\nis O O\nlogged O O\non O O\nevery O O\npage O O\n? O O\n\nand O O\nchange O O\nfew O O\nthings O O\nlike O O\ndisplay O O\ndisconnect O O\nbutton Name Name\netc O O\n.. O O\n. O O\n\nI O O\nhope O O\nsomeone O O\nnice O O\nis O O\ngoing O O\nto O O\nhelp O O\nme O O\n<3 O O\ni O O\n'm O O\non O O\nthis O O\nsince O O\n1 O O\nweek O O\nago O O\n:') O O\n\nFirst O O\nyour O O\nmethod O O\nis O O\nvery O O\ninsecure O O\n. O O\n\nI O O\nfound O O\nthis O O\nlink O O\nthat O O\nshould O O\nput O O\nyou O O\non O O\nthe O O\nright O O\ntrack O O\n, O O\nit O O\ndoes O O\nnot O O\nuse Name Name\nHTML::Template Name Name\n; Name Name\nbut O O\nyou O O\ncan O O\nadd O O\nthat O O\nin O O\nfor O O\nyour O O\ncode O O\n. O O\n\nlogin O O\nand O O\nlogout O O\nof O O\nsessions O O\nin O O\n2 O O\ncgi Name Name\nscripts O O\n\nI O O\n'm O O\nusing O O\na O O\nthe O O\nbelow O O\ngiven O O\nstep O O\nto O O\nfind O O\nthe O O\nposition O O\nof O O\n< Name Name\nheading Name Name\ntag O O\nwhich O O\nis O O\noccurring O O\nmore O O\nthan O O\nonce O O\n. O O\n\nBut O O\nI O O\nneed O O\nthe O O\nposition O O\nof O O\nthe O O\nfirst O O\noccurrence O O\nonly O O\n. O O\n\nI O O\n'm O O\ndoing O O\nthis O O\nshell Name Name\nscript O O\nin O O\nWindows Name Name\nusing O O\ncygwin Name Name\ntool O O\n\nthis O O\nwill O O\ngive O O\nan O O\noutput O O\nlike O O\n: O O\n17 Name Name\n24 Name Name\n46 Name Name\n\nFrom O O\nthis O O\n, O O\nhow O O\ncan O O\nI O O\nretrieve O O\n17 Name Name\nonly O O\n? O O\n\nOne O O\nway O O\nis O O\nto O O\npipe O O\nit O O\nthrough O O\nhead Name Name\n: O O\n\nI O O\nwas O O\nlooking O O\nfor O O\nthe O O\nsolution O O\non O O\nthe O O\ninternet O O\nbut O O\nwas O O\nnot O O\nable O O\nto O O\nfind O O\nit O O\nwithin O O\nmy O O\nsample O O\n. O O\n\nI O O\nneed O O\nto O O\nadd O O\na O O\nseparator O O\nbetween O O\nContext Name Name\nmenu Name Name\nitem O O\nthat O O\nare O O\ngenerated O O\nfrom O O\ncode O O\nbehind O O\n. O O\n\nI O O\ntried O O\nto O O\nadd O O\nit O O\nwith O O\nsuch O O\ncode O O\nlines O O\nlike O O\nbelow O O\nbut O O\nwithout O O\nsuccess O O\n. O O\n\nI O O\nam O O\nwondering O O\nif O O\nsomeone O O\ncan O O\nhelp O O\n. O O\n\nThank O O\nyou O O\nin O O\nadvance O O\n. O O\n\nContext Name Name\nMenu Name Name\nXAML Name Name\n: O O\n\nC# Name Name\nthat O O\nadded O O\nin O O\nthe O O\nmethod O O\n: O O\n\nI O O\ndid O O\nthis O O\nonce O O\nand O O\nused O O\na O O\nnull Name Name\nas O O\nmy O O\nseparator Name Name\n. O O\n\nFrom O O\nthe O O\nXAML Name Name\n, O O\nI O O\nthen O O\nstyled O O\nthe O O\ntemplate O O\nto O O\nuse O O\na O O\nseparator Name Name\nif O O\nthe O O\ndatacontext Name Name\nwas O O\nnull Name Name\n\nCode O O\nbehind O O\n: O O\n\nXAML Name Name\nwas O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nHope O O\nI O O\ngot O O\nthe O O\nsyntax O O\nright O O\n- O O\nI O O\ndo O O\nn't O O\nhave O O\nan O O\nIDE Name Name\non O O\nthis O O\nmachine O O\nto O O\nverify O O\nthe O O\ncode O O\n\nEDIT O O\n\nHere O O\nis O O\nan O O\nexample O O\ntemplate O O\nfor O O\nthe O O\ncontext Name Name\nmenu Name Name\nseparator Name Name\n. O O\n\nI O O\nam O O\nputting O O\nit O O\nin O O\nContextMenu.Resources Name Name\n, O O\nalthough O O\nyou O O\ncould O O\nput O O\nthis O O\nanywhere O O\nyou O O\nwant O O\nin O O\nyour O O\napplication O O\nas O O\nlong O O\nas O O\nthe O O\nContextMenu Name Name\ncan O O\naccess O O\nit O O\n. O O\n\nI O O\nhave O O\nmodified O O\nthe O O\nsolution O O\nprovided O O\nby O O\nRachel O O\nabove O O\nto O O\ncorrect O O\nthe O O\nSeparator Name Name\nstyle O O\n. O O\n\nI O O\nrealize O O\nthis O O\npost O O\nis O O\nold O O\n, O O\nbut O O\nstill O O\none O O\nof O O\nthe O O\ntop O O\nresults O O\non O O\nGoogle Name Name\n. O O\n\nIn O O\nmy O O\nsituation O O\n, O O\nI O O\nwas O O\nusing O O\nit O O\nfor O O\na O O\nMenu Name Name\nvs O O\na O O\nContextMenu Name Name\n, O O\nbut O O\nthe O O\nsame O O\nshould O O\nwork O O\n. O O\n\nXAML Name Name\n\nWithout O O\nSeparator Name Name\nStyle O O\nChange O O\n\nWith O O\nSeparator Name Name\nStyle O O\nChange O O\n\nI O O\nhave O O\na O O\nXML Name Name\nfrom O O\nthird-party O O\nservice O O\n: O O\n\nand O O\ni O O\nwant O O\nto O O\nhandle O O\nthis O O\nin O O\nmy O O\ncode O O\nlike O O\nsingle O O\ncollection O O\n, O O\nbecause O O\nfields O O\nof O O\nare O O\nthe O O\nsame O O\n, O O\nonly O O\nname O O\nof O O\npart O O\nis O O\ndiffer O O\n. O O\n\nI O O\nused O O\nthis O O\ncode O O\n, O O\nto O O\ntest O O\nserialization O O\nfirst O O\n: O O\n\nand O O\ngot O O\nthis O O\nresponse O O\n: O O\n\nLooks O O\nlike O O\nthat O O\ni O O\nvery O O\nclose O O\nto O O\nthe O O\nanswer O O\n, O O\nbut O O\nhow O O\nto O O\nset O O\nthe O O\nname O O\nof O O\ncollection O O\nobjects O O\n? O O\n\nUPD O O\n: O O\nwhat O O\ni O O\nwant O O\nto O O\nget O O\nafter O O\nserialization O O\n\nSo O O\nfar O O\n, O O\nI O O\nhave O O\nthis O O\ncode O O\nthat O O\nparses O O\ntwo O O\ndifferent O O\nstrings Name Name\noperands O O\ninto O O\ndouble Name Name\nand O O\nadds O O\nthem O O\ntogether O O\n\nHow O O\ncan O O\nI O O\nmodify O O\nit O O\nso O O\nthat O O\nit O O\ncan O O\nadd O O\nany O O\nnumber O O\nof O O\nstrings Name Name\noperands O O\n? O O\n\nAll O O\nthe O O\nanswers O O\nsays O O\nthe O O\ncorrect O O\ninfo O O\nto O O\nuse O O\nvariable O O\nnumber O O\nof O O\narguement O O\n. O O\n\nBut O O\naccorind O O\nto O O\nyour O O\ncomment O O\nit O O\nseems O O\nyou O O\nwant O O\nto O O\nhave O O\nthe O O\nparameter O O\nin O O\na O O\nsingle O O\nstring Name Name\nlike O O\n1+5+ Name Name\n10 Name Name\n. O O\n\nIt O O\nis O O\nbetter O O\nif O O\nyou O O\nuse O O\nvarargs Name Name\nbut O O\nit O O\nis O O\nmust O O\nfor O O\nyou O O\nto O O\nuse O O\nsingle O O\nstring Name Name\nthen O O\nyou O O\ncan O O\nuse O O\nStringTokenizer Name Name\n. O O\n\nFor O O\nExample O O\n\nChange O O\nthe O O\nsignature O O\nto O O\nadd O O\na O O\nvarargs Name Name\n. O O\n\nIt O O\ncan O O\nbe O O\nhandled O O\nin O O\nthe O O\nmethod O O\n's O O\nbody O O\nas O O\na O O\nString Name Name\narray Name Name\n. O O\n\nI O O\n'm O O\nrunning O O\nthe O O\nOpenTok Name Name\ndemo O O\nWebRTC Name Name\napp O O\non O O\nChrome Name Name\n- O O\nand O O\nit O O\nworks O O\ngreat O O\n. O O\n\nBut O O\nif O O\nI O O\nload O O\nthe O O\npage O O\nin O O\nIE Name Name\n, O O\nit O O\ngives O O\nme O O\nan O O\nerror O O\nmessage O O\n( O O\nabout O O\npage O O\ncompatibility O O\n) O O\n. O O\n\nPretty O O\nobvious O O\nsolution O O\nis O O\nto O O\nuse O O\nthe O O\nold O O\n( O O\nFlash-based Name Name\n) O O\nOpenTok Name Name\nlibrary O O\non O O\nIE Name Name\n- O O\nbut O O\ndo O O\nI O O\nhave O O\nto O O\ndo O O\nit O O\n\" O O\nmanually O O\n\" O O\n? O O\n\nIs O O\nthere O O\nsome O O\nsort O O\nof O O\nan O O\n\" O O\nautomatic O O\nswitching O O\n\" O O\nlibrary O O\nthat O O\nwould O O\ntry O O\nto O O\nload O O\nWebRTC Name Name\n( O O\n2.0 Name Name\n) O O\nTB.min.js Name Name\n, O O\nand O O\nif O O\nit O O\nfails O O\nfall O O\nback O O\nto O O\nFlash Name Name\n( O O\n0.9 Name Name\n) O O\nversion O O\n? O O\n\nAlso O O\na O O\nrelated O O\nquestion O O\n- O O\nwill O O\nall O O\nthese O O\nversions O O\ninteroperate O O\n? O O\n\nI.e O O\n. O O\n\ncan O O\nChromes Name Name\n( O O\nrunning O O\n2.0/WebRTC Name Name\n) O O\ntalk O O\nto O O\nIE Name Name\n( O O\nrunning O O\n0.9/Flash Name Name\n) O O\nand O O\ntalk O O\nto O O\niOS Name Name\n( O O\nrunning O O\nnative O O\n) O O\n? O O\n\nTo O O\nhave O O\nWebRTC Name Name\ncapabilities O O\non O O\nIE Name Name\n, O O\nusers O O\ncould O O\ninstall O O\nChrome Name Name\nFrame O O\n( O O\nfor O O\nIE6+ Name Name\n) O O\n. O O\n\nIt O O\nis O O\na O O\nvalid O O\noption O O\n, O O\nbut O O\nyou O O\nshould O O\nknow O O\nthat O O\nit O O\nis O O\nno O O\nlonger O O\nbeing O O\nactively O O\nsupported O O\nby O O\nGoogle Name Name\n. O O\n\nAs O O\nfar O O\nas O O\nI O O\nknow O O\n, O O\nthere O O\nis O O\nno O O\nautomatic O O\nswitching O O\nlibrary O O\n. O O\n\nHowever O O\n, O O\non O O\nyour O O\nserver O O\n, O O\nyou O O\ncould O O\nlook O O\nat O O\nthe O O\nHTTP O O\nrequests O O\nand O O\nfind O O\nout O O\nthe O O\nclient Name Name\n's O O\nbrowser Name Name\n. O O\n\nFrom O O\nthere O O\n, O O\nyou O O\ncould O O\ndynamically O O\nload O O\neither O O\nthe O O\nWebRTC Name Name\nor O O\nFlash Name Name\nlibrary O O\ndepending O O\non O O\nthe O O\nbrowser Name Name\n's O O\nsupport O O\nfor O O\nWebRTC Name Name\n. O O\n\nCurrently O O\n, O O\nthe O O\nOpenTok Name Name\nWebRTC Name Name\nlibrary O O\nsupports O O\n: O O\n\nChrome Name Name\n23+ Name Name\n\nFirefox Name Name\n22+ Name Name\n\nUnfortunately O O\n, O O\nOpenTok Name Name\ndoes O O\nnot O O\ninteroperate O O\nbetween O O\nFlash Name Name\nand O O\nWebRTC Name Name\nclients Name Name\n. O O\n\nWebRTC Name Name\nclients O O\ncan O O\noperate O O\nwith O O\nother O O\nWebRTC Name Name\nclients O O\n( O O\nmobile O O\n, O O\nweb O O\n, O O\netc O O\n. O O\n) O O\n, O O\njust O O\nlike O O\nFlash Name Name\ncan O O\nonly O O\noperate O O\nwith O O\nother O O\nFlash Name Name\nclients O O\n. O O\n\nFor O O\nexample O O\n, O O\nan O O\niOS Name Name\nclient O O\nwould O O\nhave O O\nto O O\nuse O O\nthe O O\nWebRTC Name Name\nSDK Name Name\nand O O\nthe O O\nChrome/Firefox Name Name\nweb O O\napp O O\nwould O O\nhave O O\nto O O\ninclude O O\nthe O O\nWebRTC Name Name\nJavascript Name Name\nlibrary O O\n. O O\n\nI O O\nhave O O\nto O O\nmigrate O O\na O O\nmedium-sized O O\nsite O O\nbased O O\non O O\nPHP Name Name\nNuke Name Name\n( O O\nless O O\nthan O O\n2000 O O\nposts O O\n) O O\nto O O\na O O\nnew O O\nWordPress Name Name\ninstallation O O\n. O O\n\nI O O\nhave O O\nproblems O O\nwriting O O\nthe O O\nredirection O O\nrules O O\n. O O\n\nI O O\ntried O O\n: O O\n\nSo O O\n\nshould O O\nbecome O O\n\nIt O O\ndoes O O\nn't O O\nwork O O\n. O O\n\nI O O\ntried O O\nthe O O\n.htaccess Name Name\nfile O O\nin O O\nthe O O\n\" O O\nnuke Name Name\n\" O O\n, O O\n\" O O\nmodules Name Name\n\" O O\nand O O\n\" O O\nNews Name Name\n\" O O\nfolder O O\nwith O O\nnot O O\nluck O O\n. O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\nvery O O\nappreciated O O\n. O O\n\nHere O O\n's O O\nthe O O\nworking O O\ncode O O\n\nIf O O\nyou O O\nplace O O\nthe O O\nhtaccess Name Name\nfile O O\nin O O\nthe O O\n\" O O\nnuke Name Name\n\" O O\nfolder O O\n, O O\nyou O O\nneed O O\nto O O\nomit O O\nthe O O\nnuke Name Name\nfrom O O\nthe O O\npattern O O\n: O O\n\nAnd O O\nmake O O\nsure O O\nyou O O\n've O O\nturned O O\non O O\nthe O O\nrewrite O O\nengine O O\n: O O\n\nI O O\nam O O\nwriting O O\na O O\nscript O O\nwhich O O\nreads O O\nvalues O O\nfrom O O\na O O\nCSV Name Name\nthrough O O\npandas Name Name\ninto O O\na O O\nDataFrame Name Name\n. O O\n\nThe O O\nvalues O O\n, O O\n' Name Name\nA Name Name\n' Name Name\nand O O\n' Name Name\nB Name Name\n' Name Name\n, O O\nare O O\ninputs O O\ninto O O\nan O O\nequation O O\n. O O\n\nThis O O\nequation O O\nis O O\nobtained O O\nfrom O O\nan O O\nXML Name Name\noutput O O\nfile O O\nfrom O O\nan O O\nexternal O O\nprogram O O\n. O O\n\nThe O O\nequation O O\nprovides O O\na O O\nresult O O\nfor O O\n' Name Name\nA Name Name\n' Name Name\nand O O\n' Name Name\nB Name Name\n' Name Name\nrow-by-row Name Name\nof O O\nthe O O\nDataFrame Name Name\nand O O\nplaces O O\nthose O O\nresults O O\nback O O\ninto O O\nthe O O\noriginal O O\nDataFrame Name Name\n. O O\n\nIf O O\nI O O\nmake O O\na O O\nfunction O O\ndefinition O O\n, O O\nexplicitly O O\nwrite O O\nthe O O\nequation O O\nin O O\nthe O O\ndefinition O O\n, O O\nand O O\nreturn O O\nthat O O\nthat O O\nequation O O\n, O O\nthings O O\nwork O O\nfine O O\n. O O\n\ne.g O O\n. O O\n, O O\n\nHowever O O\n, O O\nwhat O O\nI O O\nreally O O\nwant O O\nto O O\ndo O O\nis O O\n\" O O\nbuild O O\n\" O O\nthat O O\nsame O O\nequation O O\nfrom O O\nan O O\nXML Name Name\nfile O O\nrather O O\nthan O O\nentering O O\nit O O\nin O O\nexplicitly O O\n. O O\n\nSo O O\n, O O\nI O O\nbasically O O\npull O O\n' O O\nterms O O\n' O O\nand O O\n' O O\ncoefficients O O\n' O O\nfrom O O\nthe O O\nxml Name Name\nfile O O\nand O O\nresult O O\nin O O\na O O\nstring Name Name\nform O O\nof O O\nthe O O\nequation O O\n. O O\n\nI O O\nthen O O\nconvert O O\nthe O O\nstring Name Name\nto O O\nan O O\nexecutable O O\nfunction O O\nusing O O\nsympy.sympify() Name Name\n. O O\n\ne.g O O\n. O O\n, O O\n\nThe O O\nresult O O\nis O O\nthat O O\nwhen O O\nI O O\ncall O O\nto O O\nexecute O O\nthis O O\nequation O O\nover O O\nthe O O\ndataFrame Name Name\nthe O O\nliteral O O\nequation O O\nis O O\ncopied O O\ninto O O\nthe O O\n\" O O\noutPut O O\n\" O O\nDF Name Name\nrather O O\nthan O O\nthe O O\nrow Name Name\nby O O\nrow Name Name\nresult O O\nfor O O\neach O O\n' Name Name\nA Name Name\n' Name Name\nand O O\n' Name Name\nB Name Name\n' Name Name\n. O O\n\nI O O\ndo O O\nn't O O\nunderstand O O\nwhy O O\nPython Name Name\nsees O O\nthese O O\ncode O O\nexamples O O\ndifferently O O\n, O O\nnor O O\nhow O O\nto O O\nachieve O O\nthe O O\nresult O O\nI O O\nwant O O\nfrom O O\nthe O O\nfirst O O\nexample O O\n. O O\n\nFor O O\nsome O O\nreason O O\nthe O O\nsympify() Name Name\nresult O O\nis O O\nnot O O\nexecutable O O\n. O O\n\nThe O O\nsame O O\nseems O O\nto O O\noccur O O\nwhen O O\nI O O\nuse O O\neval() Name Name\n. O O\n\nElaborating O O\non O O\nmy O O\ncomment O O\n, O O\nhere O O\n's O O\nhow O O\nto O O\nsolve O O\nthe O O\nproblem O O\nwith O O\nlambdify Name Name\n\nDepending O O\non O O\nthe O O\nexpressions O O\nencountered O O\nin O O\nyour O O\nxml Name Name\nfile O O\n, O O\nsympy Name Name\nmay O O\nbe O O\noverkill O O\n. O O\n\nHere O O\n's O O\nhow O O\nto O O\nuse O O\neval Name Name\n\nI O O\nam O O\ntrying O O\nto O O\nmake O O\nan O O\napp O O\nin O O\nRails Name Name\n4 Name Name\n. O O\n\nI O O\nuse O O\nsimple Name Name\nform Name Name\nfor O O\nforms O O\n. O O\n\nI O O\nhave O O\nan O O\nindustry Name Name\nmodel O O\n. O O\n\nThe O O\nindustry.rb Name Name\nhas O O\n: O O\n\nThe O O\nindustry Name Name\ncontroller O O\nhas O O\n: O O\n\nThe O O\nindustry Name Name\nform O O\nhas O O\n: O O\n\nI O O\n'm O O\ntrying O O\nto O O\nget O O\nmy O O\nform O O\ninput O O\nfor O O\n:sector Name Name\nto O O\nuse O O\nthe O O\ncollection O O\nof O O\nindustries Name Name\n( O O\nby O O\ncalling O O\nthe O O\nscope Name Name\n) O O\n. O O\n\nWhen O O\nI O O\ntry O O\nthis O O\n, O O\nI O O\nget O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\nCan O O\nanyone O O\nsee O O\nwhat O O\n's O O\nwrong O O\n? O O\n\nIt O O\nshould O O\nbe O O\nalphabetically Name Name\ninstead O O\nof O O\nalphabetical Name Name\n. O O\n\nAlso O O\n, O O\naccording O O\nto O O\nthe O O\noptions_from_collection_for_select Name Name\ndocumentation O O\n, O O\nyou O O\nneed O O\nto O O\npass O O\nat O O\nleast O O\n3 O O\narguments O O\nto O O\nthe O O\noptions_from_collection_for_select Name Name\nmethod O O\n: O O\ncollection Name Name\n, O O\nvalue_method Name Name\nand O O\ntext_method Name Name\n. O O\n\nChange O O\nto O O\nthe O O\nfollowing O O\nto O O\nmake O O\nit O O\nwork O O\n: O O\n\nI O O\nam O O\ntrying O O\nto O O\nbuild O O\na O O\nsimple O O\nvideo O O\ngame O O\nfor O O\na O O\nuniversity O O\ncourse O O\nusing O O\naltera Name Name\nDE0 Name Name\nor O O\nDE2 Name Name\nor O O\nDE1-SoC Name Name\nboards O O\n, O O\ni O O\nlooked O O\nat O O\nthe O O\nisa O O\nfor O O\nthe O O\nnios Name Name\nII Name Name\ncpu Name Name\nthere O O\nis O O\nno O O\natomic O O\ntest-and-set O O\ninstruction O O\nin O O\nthe O O\nISA O O\n. O O\n\nhow O O\nwould O O\ni O O\nbuild O O\na O O\nsimple O O\nlock O O\nhere O O\n, O O\nanything O O\nthat O O\nenforces O O\nmutual O O\nexclusion O O\nfor O O\na O O\ntiny O O\nperiod O O\nwill O O\nwork O O\n. O O\n\nwe O O\nare O O\ngonna O O\nhave O O\ncode O O\nthat O O\nis O O\ngonna O O\nrun O O\nfrom O O\nmain() Name Name\nand O O\ncode O O\nthat O O\nwill O O\nrun O O\nin O O\nthe O O\nInterrupt O O\nService O O\nRoutine O O\n, O O\nand O O\ni O O\nwant O O\nto O O\nput O O\nlocks O O\non O O\nsome O O\nvariables O O\n, O O\nis O O\nit O O\npossible O O\n? O O\n\nIt O O\nappears O O\nthe O O\nNios Name Name\nII Name Name\narchitecture O O\ndoes O O\nn't O O\nhave O O\natomic O O\ntest-and-set O O\ninstructions O O\n. O O\n\nInstead O O\nfor O O\nsynchronization O O\nof O O\nshared O O\nresources O O\nbetween O O\nmultiple O O\nNios Name Name\nII Name Name\nprocessors O O\n, O O\nthe O O\narchitecture O O\nuses O O\nan O O\n\" O O\nHardware O O\nMutex O O\nCore O O\n\" O O\n. O O\n\nIt O O\nworks O O\nas O O\na O O\nshared O O\nperipheral O O\nthat O O\nprovides O O\nan O O\natomic O O\ntest-and-test O O\noperation O O\n. O O\n\nYou O O\ncan O O\nread O O\nmore O O\nabout O O\nit O O\nin O O\nAltera Name Name\n's O O\nCreating O O\nMultiprocessor O O\nNios Name Name\nII Name Name\nSystems O O\nTutorial O O\n. O O\n\nHowever O O\n, O O\nyou O O\nprobably O O\ndo O O\nn't O O\nan O O\natomic O O\ntest-and-set O O\noperation O O\n. O O\n\nYou O O\ncan O O\nmake O O\nany O O\nsequence O O\nof O O\ninstructions O O\natomic O O\nwith O O\nrespect O O\nto O O\ninterrupts O O\non O O\na O O\nsingle O O\ncore O O\nsystem O O\nsimply O O\nby O O\ndisabling O O\ninterrupts O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nuse O O\nthe O O\nfollowing O O\ncode O O\n: O O\n\nI O O\nhave O O\nthe O O\njava Name Name\nsdk Name Name\nin O O\nmy O O\npom.xml Name Name\nfile O O\n: O O\n\nBut O O\nit O O\nwo O O\nn't O O\nlet O O\nme O O\nbuild O O\nmy O O\njava Name Name\napplication O O\n, O O\nand O O\nproduces O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\nI O O\njust O O\nca O O\nn't O O\nunderstand O O\nhow O O\nit O O\nca O O\nn't O O\nfind O O\nthe O O\nclass O O\nClientConfigurationFactory Name Name\nbecause O O\nit O O\nshould O O\nbe O O\nincluded O O\nin O O\nthe O O\nJava Name Name\nSDK Name Name\nright O O\n? O O\n\nI O O\nappreciate O O\nany O O\nhelp O O\nyou O O\nguys O O\ncan O O\ngive O O\nme O O\nto O O\nsolve O O\nthis O O\n! O O\n\ncom.amazonaws.ClientConfigurationFactory Name Name\nis O O\ninside O O\naws-java-sdk-core Name Name\nyou O O\nwill O O\nneed O O\nto O O\nadd O O\nthis O O\nto O O\nyour O O\nlist O O\nof O O\ndependencies O O\nin O O\nyour O O\npom.xml Name Name\n\nI O O\nhave O O\nthose O O\njava Name Name\nfiles O O\n: O O\n\n//i2cjni.java Name Name\n\n//i2c.java Name Name\n\n} O O\n\n//I2CBoard.java Name Name\n\n} Name Name\n\n-I O O\nhave O O\nset O O\nthe O O\nnative O O\nlibrary O O\npath O O\nlike O O\nthis O O\n: O O\n\n-I O O\nhave O O\nadded O O\nthis O O\nfolder O O\nto O O\nthe O O\nproject O O\n: O O\n\n-when O O\nI O O\ntry O O\nto O O\ncall O O\nthe O O\nU2C_GetDeviceCount() Name Name\nfunction O O\nand O O\nso O O\non O O\n, O O\nI O O\nget O O\nthis O O\nerror O O\n. O O\n\nAny O O\nideas O O\n? O O\n\nthat O O\nlike O O\nis O O\na O O\nlink O O\nerror O O\n, O O\nmay O O\nbe O O\nyour O O\n.c Name Name\nfile O O\nfunction O O\nname O O\nis O O\nnot O O\nright O O\n, O O\nmaybe O O\nyou O O\nshould O O\npost O O\nyour O O\n.c Name Name\n\nfile O O\n\nI O O\n'm O O\nusing O O\nCoffeScript Name Name\nto O O\ncreate O O\nan O O\nangular Name Name\napplication O O\n. O O\n\nI O O\nhave O O\na O O\nstrange O O\nproblem O O\nwith O O\nthis O O\ncode O O\n. O O\n\nwebService.coffe Name Name\n( O O\nsimplificated O O\n) O O\n\nIn O O\nthis O O\nsimplificated O O\ncode O O\n, O O\nI O O\nget O O\nthe O O\nerror O O\n_Class.logout O O\nis O O\nnot O O\na O O\nfunction O O\nwhen O O\nhandleResult Name Name\nis O O\ncalled O O\nand O O\nthe O O\nerror O O\ncode O O\nis O O\n102 O O\n. O O\n\nThe O O\n=> Name Name\noperator O O\nshould O O\nresolve O O\nthis O O\nproblem O O\nbut O O\nit O O\n's O O\nnot O O\n. O O\n\nI O O\ndo O O\nn't O O\nunderstand O O\nwhy O O\n.. O O\n. O O\n\nJavascript Name Name\ncompiled O O\ncode O O\nof O O\nwebService.coffee Name Name\n\nhi O O\ni O O\nam O O\nretrieving O O\ncontacts O O\nfrom O O\naddress O O\nbook O O\nbut O O\ni O O\nam O O\ngetting O O\nduplicates O O\ntoo O O\nfor O O\neg O O\n: O O\n\nare O O\npresent O O\nin O O\naddress O O\nbook O O\nit O O\ngets O O\nboth O O\n, O O\nis O O\nthere O O\nany O O\nproperty O O\nto O O\navoid O O\nthis O O\ncase O O\n. O O\n\nWhile O O\nit O O\nworks O O\nif O O\nthe O O\nnumber O O\nis O O\ndifferent O O\nfor O O\nsame O O\nname O O\n. O O\n\nMy O O\ncode O O\n: O O\n\nthe O O\narrayContactsFromAddressbook Name Name\ncontains O O\nall O O\nthe O O\ncontacts O O\nfrom O O\nthe O O\naddress O O\nbook O O\n. O O\n\nHow O O\ndo O O\ni O O\nremove O O\nduplicates O O\nbased O O\non O O\nphone O O\nnumber O O\n? O O\n\nI O O\nhave O O\na O O\nvery O O\nstrange O O\neffect O O\nwhen O O\nadding O O\nthe O O\nschemaLocation Name Name\nto O O\nmy O O\nxml-file Name Name\n. O O\n\nProblem O O\n: O O\n\nWhat O O\nam O O\nI O O\nmissing O O\n, O O\nso O O\nthat O O\nthe O O\ndata O O\nstill O O\nget O O\ndisplayed O O\nand O O\ntransformed O O\ncorrectly O O\nafter O O\nadding O O\nthe O O\nxsd-File Name Name\nto O O\nthe O O\nschemaLocation Name Name\n? O O\n\nInfo O O\n: O O\nAll O O\nfiles O O\nare O O\nin O O\nthe O O\nsame O O\nfolder O O\n\nXML Name Name\n\nXSD Name Name\n\nXSLT Name Name\n\nDoes O O\nanyone O O\nhave O O\nan O O\nidea O O\nwhat O O\n's O O\nwrong O O\nin O O\nmy O O\nfiles O O\n? O O\n\nThe O O\nschemaLocation Name Name\ndoes O O\nnot O O\nmatter O O\nbut O O\nyour O O\ninput O O\nsample O O\nhas O O\nthe O O\ndefault O O\nnamespace O O\ndeclaration O O\nxmlns Name Name\n= Name Name\n\" Name Name\nhttp://www.w3schools.com Name Name\n\" Name Name\non O O\nthe O O\nroot O O\nelement O O\nwhich O O\nputs O O\nall O O\nelements O O\nin O O\nthat O O\nnamespace O O\n. O O\n\nYour O O\nXSLT Name Name\nhowever O O\nuses O O\npaths O O\nlike O O\nschool/personen/person Name Name\nwhich O O\n( O O\nin O O\nXSLT/XPath Name Name\n1.0 Name Name\n) O O\nselect O O\nelements O O\nin O O\nno O O\nnamespace O O\n. O O\n\nEither O O\nmove O O\nto O O\nan O O\nXSLT Name Name\n2.0 Name Name\nprocessor O O\nwhere O O\nyou O O\ncan O O\nthen O O\ndefine O O\nxpath-default-namespace Name Name\n= Name Name\n\" Name Name\nhttp://www.w3schools.com Name Name\n\" Name Name\non O O\nyour O O\nstylesheet O O\nor O O\n, O O\nif O O\nyou O O\nwant O O\nto O O\nsolve O O\nit O O\nwith O O\nXSLT Name Name\n1.0 Name Name\n, O O\ndeclare O O\nxmlns:df Name Name\n= Name Name\n\" Name Name\nhttp://www.w3schools.com Name Name\n\" Name Name\nin O O\nyour O O\nstylesheet O O\nand O O\nadapt O O\nyour O O\npaths O O\nto O O\nuse O O\nthat O O\nprefix O O\nas O O\nin O O\ndf:school/df:personen/df:person Name Name\nand O O\ndf:name Name Name\nand O O\nso O O\non O O\n. O O\n\nWhere O O\nis O O\nthe O O\nmessage O O\nheader O O\nand O O\nbody O O\nin O O\na O O\nstream O O\ndefinition O O\nis O O\nmentioned O O\nin O O\na O O\nWSO2 Name Name\nBAM Name Name\nmediator Name Name\n? O O\n\nIn O O\nthe O O\nPayload O O\nData O O\n? O O\n\nOr O O\ncan O O\nit O O\nbe O O\nchanged O O\n? O O\n\nIn O O\nBAM Name Name\nmediator Name Name\n, O O\nmessage O O\nbody O O\nor O O\nheader O O\nmust O O\nbe O O\ndeclared O O\nin O O\nthe O O\nPayload O O\nData O O\n. O O\n\nI O O\nam O O\nsetting O O\nheader Name Name\nfor O O\nAngular Name Name\n2 Name Name\napp O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\n: O O\n\nAs O O\nI O O\nrun O O\nit O O\ngives O O\nerror O O\n\nWithout O O\nyou O O\nposting O O\nthe O O\nerror O O\n, O O\nit O O\n's O O\njust O O\nguess O O\nwork O O\nas O O\nto O O\nwhat O O\n's O O\ngoing O O\nwrong O O\n. O O\n\nBut O O\nprobably O O\nyou O O\nshould O O\nadd O O\na O O\nsuper() Name Name\ncall O O\ninside O O\nthe O O\nconstructor O O\n. O O\n\nAnother O O\npoint O O\nof O O\ninterest O O\nis O O\nthe O O\nalmost O O\nsame O O\nname O O\nof O O\nthe O O\nclass O O\n, O O\nbesides O O\nthe O O\ncapital O O\n. O O\n\nIt O O\n's O O\ncommon O O\npractice O O\nto O O\nhave O O\nyour O O\nclass O O\nname O O\nin O O\nPascalCase O O\n: O O\n\nAfter O O\nyou O O\nposted O O\nyour O O\nerror O O\n, O O\nit O O\nis O O\nobvious O O\nwhat O O\nyou O O\nhave O O\nto O O\ndo O O\nfirst O O\n. O O\n\nBefore O O\nsetting O O\nthe O O\nrequest O O\nheaders O O\n, O O\nyou O O\nhave O O\nto O O\nopen O O\nthe O O\nrequest O O\nusing O O\nthe O O\nopen Name Name\nmethod O O\n: O O\n\nAfter O O\nyou O O\ncall O O\nthis O O\nmethod O O\n, O O\nyou O O\nwill O O\nbe O O\nable O O\nto O O\nset O O\nyour O O\nrequest O O\nheaders O O\n\nI O O\n'm O O\nnew O O\nto O O\nprogramming O O\nand O O\ntoday O O\nI O O\n'm O O\nhere O O\nbecause O O\nI O O\nneed O O\nhelp O O\nwith O O\na O O\nsimple O O\nexercise O O\nthat O O\nI O O\n'm O O\ntrying O O\nto O O\nsolve O O\n. O O\n\nThe O O\nexercise O O\nconsists O O\nof O O\nvarious O O\nsmall O O\nparts O O\n: O O\n\n1) O O\nDefine O O\na O O\nstruct Name Name\ncalled O O\nPoint Name Name\nwith O O\ntwo O O\nx Name Name\nand O O\ny Name Name\ncoordinates O O\n( O O\ndouble Name Name\n) O O\n. O O\n\n2) O O\nPrompt O O\nthe O O\nuser O O\nto O O\nenter O O\n7 O O\n( O O\nx O O\n, O O\ny O O\n) O O\npairs O O\n. O O\n\n3) O O\nAs O O\nwe O O\nread O O\nthose O O\npairs O O\nwe O O\nhave O O\nto O O\nstore O O\nthem O O\nin O O\na O O\nvector Name Name\nof O O\nPoints Name Name\ncalled O O\noriginal_points Name Name\n. O O\n\nSo O O\nthis O O\nis O O\nmy O O\nfirst O O\nattempt O O\n: O O\n\nIf O O\na O O\nsimple O O\nformat O O\nerror O O\noccurs O O\n, O O\nI O O\ntry O O\nto O O\nrecover O O\nby O O\nskipping O O\nevery O O\ncharacter O O\nuntil O O\nthe O O\nprogram O O\nreaches O O\na O O\n' O O\n( O O\n' O O\n. O O\n\nMy O O\nproblem O O\nis O O\nthat O O\nif O O\nI O O\ntry O O\nto O O\nenter O O\na O O\nwrong O O\ninput O O\nformat O O\nsuch O O\nas O O\n: O O\n9 Name Name\n, Name Name\n99 Name Name\n) Name Name\nthe O O\ncode O O\nwill O O\npush_back() Name Name\nboth O O\nthe O O\nfirst O O\ncorrect O O\nreading O O\nafter O O\nthe O O\nerror O O\nand O O\nalso O O\nthe O O\nfirst O O\none O O\nbefore O O\nthe O O\nerror O O\noccurred O O\n. O O\n\nSo O O\nfor O O\nexample O O\nif O O\nI O O\ntry O O\nto O O\ninput O O\nsuch O O\ndata O O\n: O O\n\n( Name Name\n1 Name Name\n, Name Name\n2) Name Name\n\n9 Name Name\n, Name Name\n99 Name Name\n) Name Name\n\n( Name Name\n5 Name Name\n, Name Name\n6 Name Name\n) Name Name\n\nI O O\nwill O O\nhave O O\nthree O O\nelements O O\nin O O\nmy O O\nvector O O\n: O O\n( Name Name\n1 Name Name\n, Name Name\n2) Name Name\n, O O\n( Name Name\n1 Name Name\n, Name Name\n2) Name Name\nagain O O\n, O O\nand O O\n( Name Name\n5 Name Name\n, Name Name\n6 Name Name\n) Name Name\n. O O\n\nIt O O\nseems O O\nlike O O\nwhen O O\nI O O\nget O O\ninto O O\nthe O O\nloop O O\nafter O O\nevery O O\ncondition O O\ncheck O O\nthe O O\nvalue O O\nof O O\nP Name Name\nremains O O\nthe O O\nsame O O\ninstead O O\nof O O\ncreating O O\na O O\nnew O O\nPoint Name Name\nobject O O\nfor O O\nevery O O\niteration O O\n. O O\n\nCould O O\nyou O O\nhelp O O\nme O O\nplease O O\nwith O O\nthis O O\nproblem O O\n? O O\n\nWhy O O\nis O O\nthis O O\nerror O O\noccurring O O\n? O O\n\nThank O O\nyou O O\n\nThere O O\nare O O\nmultiple O O\nthings O O\nhere O O\nthat O O\nare O O\nnot O O\nok O O\n. O O\n\nFirst O O\nof O O\nall O O\n, O O\nyou O O\ndo O O\nn't O O\ninitialize O O\nthe O O\nPoint Name Name\n, O O\nso O O\nit O O\nhas O O\nsome O O\nrandom O O\ndata O O\n. O O\n\nThe O O\nrandom O O\ndata O O\nis O O\nnot O O\nso O O\nrandom O O\n, O O\nbecause O O\nin O O\nthe O O\nloop O O\nthe O O\nmemory O O\nallocation O O\nis O O\nalways O O\nthe O O\nsame O O\n, O O\nso O O\nthe O O\nvariable O O\nwill O O\nhave O O\nthe O O\ndata O O\nof O O\nthe O O\nlast O O\nloop O O\n. O O\n\nIn O O\noperator>>(...) Name Name\nhere O O\nyou O O\nhave O O\na O O\n\" O O\nreturn O O\nis O O\n\" O O\n, O O\nif O O\nthe O O\nfirst O O\nchar Name Name\nis O O\nnot O O\na O O\n' Name Name\n( Name Name\n' Name Name\n\nso O O\nyou O O\njump O O\nout O O\nof O O\nthere O O\nwithout O O\nsetting O O\np.x Name Name\nand O O\np.y Name Name\n. O O\n\nThe O O\nfunction O O\nskip_to_character(...) Name Name\nis O O\nanother O O\nthing O O\nthat O O\nis O O\nn't O O\nok O O\n, O O\nbesides O O\nthe O O\nfact O O\nthat O O\nit O O\nis O O\nhard O O\nto O O\nread O O\nand O O\na O O\nreally O O\nbad O O\nway O O\nto O O\nuse O O\na O O\nfor Name Name\nloop O O\n, O O\nthere O O\nwo O O\nn't O O\nbe O O\na O O\n' Name Name\nC Name Name\n' Name Name\nwhen O O\nyou O O\nenter O O\n\" Name Name\n9 Name Name\n, Name Name\n99 Name Name\n) Name Name\n\" Name Name\nso O O\ni O O\nguess O O\nhere O O\nyou O O\nget O O\nthe O O\n\" Name Name\nNo Name Name\ninput Name Name\n\" Name Name\noutput O O\n. O O\n\nAnd O O\nnow O O\nto O O\nthe O O\nfor Name Name\nloop O O\nin O O\nyou O O\nmain O O\n: O O\n\nHere O O\nis O O\nwhat O O\nhappens O O\n: O O\n\nyou O O\ncreate O O\na O O\nPoint Name Name\np Name Name\nwithout O O\ninitializing O O\nit O O\n\nyour O O\nread O O\ngarbage O O\nout O O\nof O O\nthe O O\nstream O O\nand O O\np Name Name\nwo O O\nn't O O\nbe O O\nset O O\n\nyou O O\nskip O O\ngarbage O O\n\nyou O O\npush O O\nyour O O\nuninitialized O O\nPoint Name Name\np Name Name\ninto O O\nthe O O\nvector Name Name\n\nIf O O\nyou O O\ndo O O\nn't O O\nbelieve O O\nme O O\nthat O O\nthere O O\nis O O\nno O O\ndata O O\nin O O\np Name Name\n. O O\n\nTry O O\nto O O\ninitialize O O\nit O O\nwith O O\n0 Name Name\nor O O\nsomething O O\nelse O O\nand O O\ncheck O O\nthe O O\noutput O O\n: O O\n\nI O O\nhave O O\na O O\nprocess O O\nthat O O\nloads O O\na O O\ndynamic O O\nlibrary O O\nwhen O O\nit O O\nstarts O O\n( O O\ndlopen/dlsym Name Name\netc O O\n) O O\n, O O\nand O O\nI O O\ncan O O\n\nsend O O\nsome O O\nmessage O O\nto O O\nit O O\nwhile O O\nit O O\n's O O\nrunning O O\nto O O\nlet O O\nthe O O\nprocess O O\nunload O O\nthe O O\nprevious O O\n.so(dlclose) Name Name\nand O O\nload O O\n\na O O\nnew O O\none O O\n. O O\n\nHere O O\nthe O O\nquestion O O\nbecomes O O\n, O O\nwhile O O\nthe O O\nprocess O O\nis O O\nrunning O O\n, O O\nif O O\nI O O\ntransfer O O\na O O\nnew O O\n.so Name Name\nusing O O\nnc Name Name\nlike O O\n: O O\n\nIf O O\nI O O\ngive O O\nnc Name Name\nthe O O\nsame O O\nfilename O O\nwhich O O\nhas O O\nbeen O O\nloaded O O\nby O O\nthe O O\nprocess O O\n, O O\nthen O O\nthe O O\nprocess O O\ngot O O\nsegv O O\n\nimmediately O O\nafter O O\nthe O O\nabove O O\ncommand O O\nbeing O O\nexecuted O O\n. O O\n\nAnother O O\ncase O O\nthat O O\nwill O O\ncause O O\nprocess O O\ncrash O O\nis O O\nwhen O O\nI O O\npackage O O\nthe O O\n.so Name Name\nfile O O\ninto O O\nan O O\nrpm Name Name\npackage O O\nand O O\n\nthe O O\n.so Name Name\nfile O O\nin O O\nthe O O\nrpm Name Name\nis O O\nthe O O\nsame O O\n, O O\nthen O O\nyum Name Name\nupdate O O\nXXX Name Name\nwill O O\ncause O O\nthe O O\nprocess O O\ncrash O O\ntoo O O\n. O O\n\nI O O\n've O O\nbeen O O\ntold O O\nthat O O\nthere O O\n's O O\na O O\nway O O\nto O O\nload O O\nthe O O\n.so Name Name\nfile O O\ninto O O\nmemory O O\nto O O\navoid O O\nthe O O\nproblem O O\n, O O\nbut O O\nfailed O O\n\nto O O\nfind O O\nany O O\nresource O O\nrelated O O\nto O O\nit O O\n. O O\n\nAny O O\nthoughts O O\nwill O O\nbe O O\nthankful O O\n. O O\n\nI O O\nget O O\nthis O O\nerror O O\nwhen O O\nI O O\ntry O O\nto O O\nimport O O\na O O\nfile O O\noutside O O\nwebpack Name Name\nroot Name Name\ndirectory O O\n\nI O O\nhave O O\nsomething O O\nlike O O\nthis O O\n\nin O O\nmain.js Name Name\nI O O\n'm O O\ntrying O O\nto O O\nimport Name Name\nShared Name O\nfrom Name Name\n' Name Name\n../shared/index Name Name\n' Name Name\n\nI O O\ntried O O\nto O O\ninclude O O\nthis O O\nshared O O\ndirectory O O\nin O O\nall O O\nmy O O\nloaders O O\nbut O O\nstill O O\nno O O\nluck O O\n\nYou O O\nneed O O\nto O O\ninstall O O\nthe O O\nplugin O O\n\" O O\ntransform-runtime Name Name\n\" O O\n\nI O O\nneed O O\nto O O\nget O O\nthe O O\n14 O O\ndays O O\naverage O O\nCol Name Name\n1 Name Name\nand O O\nupdate O O\nCol Name Name\n2 Name Name\nof O O\nthe O O\nsame O O\ntable Name Name\n. O O\n\nSo O O\nif O O\nyou O O\nlook O O\nat O O\nCol Name Name\n2 Name Name\n, O O\nI O O\nneed O O\nto O O\nget O O\nthat O O\n18.2 Name Name\n% Name Name\naverage O O\npercentage O O\nwith O O\nCol Name Name\n1 Name Name\ndata O O\nbetween O O\n10/29 Name Name\nand O O\n11/15 Name Name\ndate O O\nrange O O\non O O\ncolumn Name Name\ntoday Name Name\n. O O\n\nI O O\nam O O\nso O O\nconfused O O\nas O O\nto O O\nhow O O\nto O O\ngroup O O\nthis O O\nkind O O\nof O O\nfunction O O\nin O O\nan O O\nupdate Name Name\nstatement O O\n. O O\n\nAnyone O O\nhas O O\na O O\nclue O O\n? O O\n\nTABLE Name Name\n1 Name Name\n\nIt O O\nis O O\nrecommended O O\nto O O\nstore O O\nthe O O\naverage O O\nvalue O O\nas O O\ndecimal Name Name\ninstead O O\nof O O\nvarchar Name Name\n, O O\nas O O\n% Name Name\ncan O O\nbe O O\nadded O O\nin O O\npresentation O O\nlayer O O\n. O O\n\nHere O O\nis O O\nthe O O\nquery O O\nthat O O\ndoes O O\nthe O O\ncalculation O O\n, O O\nsubstring O O\nand O O\ncast O O\nwas O O\nneeded O O\nas O O\naverage O O\ncolumn Name Name\nis O O\nvarchar Name Name\n. O O\n\nEDIT O O\n: O O\n\nremoved O O\nsubstring O O\nlogic O O\n, O O\nas O O\nthey O O\nare O O\nfloat Name Name\ncolumns Name Name\n, O O\nas O O\nper O O\nOP O O\ncomments O O\n. O O\n\nEDIT O O\n: O O\n\nAs O O\nthis O O\nneeds O O\nto O O\nbe O O\ndone O O\nfor O O\neach O O\ndate Name Name\n, O O\nit O O\ncan O O\nbe O O\ndone O O\nusing O O\ncursor Name Name\n\nI O O\nca O O\nn't O O\nmade O O\nSwipe O O\naction O O\nwork O O\n. O O\n\nI O O\ndid O O\nbrowsed O O\nthrough O O\nthe O O\nweb O O\nfor O O\na O O\nfew O O\ndays O O\nand O O\nfound O O\nmany O O\nsimilar O O\nquestions O O\nbut O O\nthere O O\nis O O\nno O O\nworking O O\nanswer O O\n. O O\n\nAlso O O\nI O O\nhave O O\ntried O O\nTouchAction Name Name\nclass O O\n, O O\ndoes O O\nn't O O\nwork O O\nas O O\nwell O O\n. O O\n\nI O O\nhave O O\nAppium Name Name\nVersion Name Name\n1.4.13 Name Name\n( O O\nDraco O O\n) O O\nand O O\nusing O O\nJava Name Name\n, O O\nTestNG Name Name\nframework O O\n. O O\n\nbtw O O\nI O O\nmade O O\nscrolling O O\nwork O O\nusing O O\n( O O\nyou O O\ncan O O\nuse O O\nthe O O\nsame O O\nlogic O O\nas O O\na O O\npull O O\nto O O\nrefresh O O\n) O O\nhere O O\nis O O\ncode O O\nsample O O\n. O O\n\n//Method O O\nnames O O\nexplain O O\nthemselves O O\n. O O\n\nI O O\nhope O O\nit O O\nworks O O\n. O O\n\ndriver.swipe(startingXCoordinate,StartingYCoordinate,EndXCoordinate,EndYCoordinate,timeForSwipe) Name Name\n; Name Name\n\nhere O O\n, O O\nyou O O\nare O O\nswipe O O\nfrom O O\n100th O O\nX Name Name\ncoordinate O O\nto O O\n450th O O\nX Name Name\ncoordinate.that O O\nis O O\nwhy O O\nY Name Name\ncoordinates O O\nare O O\nsame O O\nfor O O\nstarting O O\nand O O\nending O O\npoints O O\n( O O\n200 O O\nand O O\n200 O O\n) O O\n. O O\n\nThe O O\nlast O O\nparameter O O\n2 O O\nindicates O O\n, O O\nswipe O O\naction O O\nwill O O\nperforms O O\n2 O O\nseconds O O\n. O O\n\nActually O O\nwe O O\nhave O O\nto O O\nmention O O\n2000 O O\nmilliseconds O O\nfor O O\n2 O O\nseconds O O\n. O O\n\nSo O O\n, O O\nI O O\nhave O O\nan O O\nimage Name Name\nlike O O\nthis O O\n: O O\nhttp://imgur.com/qBGvP O O\n\nIt O O\nalways O O\nlooks O O\nlike O O\nthat O O\n, O O\nalthough O O\nthe O O\nnumbers O O\nmight O O\ndiffer O O\n. O O\n\nIt O O\n's O O\na O O\ngif Name Name\n, O O\nthe O O\nbackground Name Name\nis O O\ntransparent O O\n, O O\nand O O\nthe O O\nnumbers O O\nwhite O O\n. O O\n\nI O O\nneed O O\nsome O O\nway O O\nto O O\nparse O O\nit O O\nto O O\nnumbers O O\nto O O\nbe O O\nused O O\nin O O\na O O\nscript O O\n. O O\n\nAny O O\nideas O O\nhow O O\nI O O\ncan O O\nsolve O O\nthis O O\n? O O\n\nIf O O\nthe O O\nfont O O\nis O O\nmonospace O O\nand O O\nthe O O\nposition O O\nof O O\nthe O O\nnumber O O\nin O O\nthe O O\nimage Name Name\nis O O\nconstant O O\n, O O\nit O O\nshould O O\nbe O O\ntrivial O O\nto O O\nbreak O O\ndown O O\nthe O O\nimage Name Name\ninto O O\nindividual O O\ndigits O O\n. O O\n\nThen O O\n, O O\noutput O O\neach O O\nimage Name Name\nto O O\nsome O O\nformat O O\n( O O\nPNG Name Name\nis O O\nprobably O O\nbest O O\n) O O\nand O O\ncompare O O\nthe O O\nfiles O O\n. O O\n\nThis O O\nworks O O\nbest O O\nif O O\nyou O O\nhave O O\nthe O O\nsame O O\nscript O O\nsave O O\nknown O O\ndigits O O\nand O O\nthen O O\ncompare O O\nthem O O\nto O O\nthe O O\nactual O O\ncase O O\ndata O O\n. O O\n\nIf O O\nthis O O\nis O O\nnot O O\npossible O O\n, O O\nyou O O\nwill O O\nhave O O\nto O O\ndo O O\na O O\npixel-for-pixel O O\ncomparison O O\n, O O\nwhich O O\nis O O\nn't O O\nthat O O\nbig O O\nof O O\na O O\nproblem O O\non O O\nsuch O O\nsmall O O\nimages Name Name\n. O O\n\nEssentially O O\nyou O O\n're O O\nmaking O O\nan O O\nextremely O O\nprimitive O O\nOCR O O\nby O O\nhaving O O\na O O\nprogram O O\nthat O O\n's O O\nalong O O\nthe O O\nlines O O\nof O O\n\" O O\nthis O O\nis O O\nwhat O O\nthe O O\ndigits O O\nlook O O\nlike O O\n, O O\nso O O\nwhat O O\nnumber O O\nis O O\nthis O O\n? O O\n\" O O\n\nI O O\nhave O O\na O O\nsituation O O\nwhere O O\nI O O\nhave O O\n2 O O\ntables Name Name\n' O O\nusers Name Name\n' O O\nand O O\n' O O\nroles Name Name\n' O O\ntable Name Name\nwhere O O\nthey O O\nare O O\nrelated O O\nto O O\neach O O\nother O O\nby O O\nmany O O\nto O O\nmany O O\nrelationship O O\n, O O\nmany O O\nto O O\nmany O O\nrelationship O O\nstored O O\nin O O\nthe O O\n3rd O O\ntable Name Name\ncalled O O\n' O O\nUserRoles Name Name\n' O O\n. O O\n\nI O O\nwant O O\nto O O\nwrite O O\na O O\nquery O O\nto O O\nshow O O\ndistinct O O\nusers O O\nbut O O\nshow O O\nall O O\nthe O O\nroles O O\nassociated O O\nwith O O\na O O\nparticular O O\nuser O O\nin O O\none O O\nsingle O O\nrow Name Name\n. O O\n\nFor O O\nexample O O\n, O O\nthe O O\n3 O O\ntables Name Name\nas O O\nfollows O O\n: O O\n\nso O O\nhow O O\ncan O O\nI O O\nwrite O O\na O O\nquery O O\nthat O O\ndisplays O O\na O O\nrow Name Name\nas O O\nbelow O O\nwith O O\nroles O O\nseparated O O\nwith O O\nsemicolons O O\nfor O O\nevery O O\nusers O O\n? O O\n\nIf O O\nwe O O\nare O O\nto O O\nbelieve O O\nyour O O\nquestion O O\nexactly O O\nand O O\nassume O O\nyou O O\nare O O\nusing O O\nMySQL Name Name\n: O O\n\nI O O\nhave O O\nmy O O\nweb O O\napplication O O\nasp.net Name Name\neverything O O\nis O O\nworking O O\nwell O O\nbut O O\nwhen O O\ni O O\npublish O O\nit O O\nfrom O O\nanother O O\ncomputer Name Name\nto O O\nlocalhost O O\nit O O\nthrows O O\nan O O\nerror O O\n\nand O O\nalso O O\nUncaught O O\nReferenceError O O\n: O O\nWebForm_FireDefaultButton O O\nis O O\nnot O O\ndefined O O\n\nin O O\nmy O O\ncode O O\nbehind O O\ni O O\nhave O O\ntextbox1.Focus() Name Name\n\nso O O\nwhat O O\n's O O\nthe O O\nproblem O O\nand O O\nhow O O\nto O O\nfix O O\nit O O\n? O O\n\nThis O O\nhappens O O\nalso O O\nwhen O O\nwebresource.axd Name Name\nfile O O\nis O O\ninaccessible O O\n. O O\n\nSometimes O O\nFirewall Name Name\npolicy O O\nof O O\nWeb Name Name\nServer Name Name\ncan O O\ncreate O O\nthis O O\nissue O O\n. O O\n\nPlease O O\nensure O O\nthis O O\nfile O O\nis O O\naccessible O O\n. O O\n\nIf O O\nthis O O\nfile O O\nis O O\naccessible O O\nthen O O\nlook O O\nsolutions O O\nprovided O O\nin O O\nother O O\nanswers O O\nof O O\nthis O O\nquestion O O\n. O O\n\nTry O O\nto O O\nturn O O\noff O O\nthe O O\nISAPI Name Name\nfilters Name Name\n. O O\n\nI O O\nam O O\nworking O O\nwith O O\ntwo O O\nbranches O O\ntest Name Name\nand O O\nmain Name Name\n. O O\n\nSo O O\n, O O\nbeing O O\non O O\nthe O O\nmain Name Name\nbranch O O\n, O O\nI O O\ndid O O\n: O O\n\nAnd O O\neverything O O\nwent O O\nfine O O\n. O O\n\nAll O O\nthe O O\nchanges O O\nwere O O\nmerged O O\n. O O\n\nThen O O\nto O O\npush Name Name\nit O O\nto O O\nthe O O\nremote O O\nmain Name Name\n, O O\nI O O\ndid O O\n: O O\n\nBut O O\nit O O\nseems O O\nlike O O\nthat O O\ndid O O\nnothing O O\n, O O\nit O O\nsaid O O\n: O O\n\nI O O\ndo O O\nn't O O\nthink O O\nit O O\nshould O O\nbe O O\nshowing O O\nzero O O\nabove O O\nas O O\nTotal O O\nif O O\nthe O O\npush Name Name\ndid O O\ngo O O\nthrough O O\nfine O O\n. O O\n\nHow O O\ncan O O\nI O O\npush O O\nmy O O\nmain Name Name\nbranch O O\n? O O\n\nThat O O\njust O O\nmeans O O\ngit Name Name\ndoes O O\nnot O O\nwrite O O\nany O O\nobjects O O\n. O O\n\nThat O O\nhappens O O\nwhen O O\nall O O\nobjects O O\nare O O\nalready O O\non O O\nremote O O\nand O O\nwhen O O\nyou O O\nmerge O O\nyou O O\njust O O\nmove O O\nlabel O O\n' O O\nmain Name Name\n' O O\nto O O\nthe O O\nlatest O O\ncommit Name Name\n. O O\n\nI O O\njust O O\nmade O O\na O O\nquick O O\ntest O O\nto O O\nprove O O\nthat O O\n: O O\n\nI O O\nhave O O\nimplemented O O\nthe O O\njQuery Name Name\nUI Name Name\nMenu Name Name\non O O\nthis O O\npage O O\n: O O\nhttp://dormfair.com/about.php O O\n\nAs O O\nyou O O\ncan O O\nsee O O\n, O O\nthe O O\nborder Name Name\ncolor O O\neverywhere O O\non O O\nthe O O\nwebsite O O\nis O O\nlight O O\nblue O O\n( O O\n#B7DDF2 O O\n) O O\n\nBUT O O\nthe O O\nborder Name Name\ncolor O O\nin O O\nthe O O\njQuery Name Name\nUI Name Name\nmenu Name Name\nis O O\ngrey Name Name\n. O O\n\nI O O\n've O O\nbeen O O\ntrying O O\nto O O\nchange O O\nthat O O\ngrey O O\nto O O\ncolor O O\nto O O\n#B7DDF2 O O\nfor O O\na O O\nlong O O\ntime O O\nto O O\nno O O\navail O O\n. O O\n\nI O O\n've O O\nsearched O O\nthe O O\nweb O O\nand O O\nStackOverflow Name Name\nas O O\nwell O O\n. O O\n\nHope O O\nsomeone O O\ncan O O\nhelp O O\n! O O\n\nYour O O\nmenu Name Name\n's O O\nborder Name Name\ncolor O O\nis O O\nbeing O O\ncalled O O\nfrom O O\nthe O O\n.ui-widget-content Name Name\nclass O O\non O O\nline O O\n800 O O\nin O O\njquery-ui.css Name Name\n. O O\n\nYou O O\ncan O O\nmodify O O\nit O O\nfrom O O\nthere O O\n. O O\n\nI O O\nwas O O\nable O O\nto O O\nfix O O\nit O O\nby O O\nadding O O\nborder Name Name\n: Name Name\n1px Name Name\nsolid Name Name\n#B7DDF2 Name Name\nto O O\nthe O O\nCSS Name Name\nof O O\nnav Name Name\n( O O\nor O O\n.ui-menu Name Name\nui-widget Name Name\nui-widget-content Name Name\nui-corner-all Name Name\n) O O\n: O O\n\n( O O\nCSS Name Name\n) O O\n\nor O O\n\nI O O\nhave O O\na O O\ndate O O\ninput O O\nbox Name Name\nwith O O\na O O\npop-up Name Name\ncalendar Name Name\ndate Name Name\nselector Name Name\n. O O\n\nWhen O O\nI O O\nclick O O\non O O\nthe O O\ndate O O\nbox Name Name\nthe O O\npopup Name Name\ncalendar Name Name\nappears O O\n. O O\n\nThen O O\nI O O\ncan O O\neither O O\n\nSelect O O\na O O\ndate O O\n. O O\n\nThe O O\ndate O O\nappears O O\nin O O\nthe O O\ndate O O\nbox Name Name\nand O O\nthe O O\ncalendar Name Name\nappears O O\n\nClick O O\noutside O O\nthe O O\ncalendar Name Name\n. O O\n\nThe O O\ncalendar Name Name\ndisappears O O\n. O O\n\nThis O O\nis O O\nvia O O\na O O\nmouseup Name Name\nevent Name Name\nthat O O\nchecks O O\nwhat O O\nwas O O\nclicked O O\n. O O\n\nType O O\na O O\ndate O O\nin O O\nthe O O\ndate O O\nbox Name Name\n. O O\n\nWhat O O\nI O O\nwant O O\n: O O\nWhen O O\nI O O\ntype O O\na O O\ndate O O\nin O O\nthe O O\ndate O O\nbox Name Name\nand O O\ntab Name Name\naway O O\n, O O\nthen O O\nI O O\nwant O O\nthe O O\ncalendar Name Name\nto O O\ndisappear O O\n. O O\n\nI O O\nhave O O\ntried O O\nthis O O\nby O O\nadding O O\nan O O\nonBlur Name Name\nevent Name Name\nto O O\nthe O O\ndate O O\nbox Name Name\n. O O\n\nThis O O\nevent Name Name\nmade O O\nthe O O\ncalendar Name Name\ngo O O\naway O O\n. O O\n\nHowever O O\n, O O\nthis O O\nmeans O O\nthat O O\nthe O O\ncalendar Name Name\ndisappears O O\nwhen O O\nI O O\nclick O O\ninside O O\nthe O O\ncalendar Name Name\n, O O\nwhich O O\nI O O\ndo O O\nn't O O\nwant O O\n. O O\n\nSo O O\nI O O\nneed O O\nsome O O\nkind O O\nof O O\ndate O O\nbox Name Name\nonBlur Name Name\nevent Name Name\nthat O O\nchecks O O\nwhether O O\nthe O O\ncalendar Name Name\nwas O O\nclicked/has O O\nfocus O O\n. O O\n\nOr O O\nsomething O O\nelse O O\naltogether O O\n. O O\n\nI O O\ntried O O\nto O O\ncheck O O\nwhether O O\nthe O O\ncalendar Name Name\nhas O O\nfocus O O\n. O O\n\nUsing O O\njquery Name Name\nI O O\ndid O O\n: O O\n\nThis O O\ndid O O\nnothing O O\nuseful O O\n. O O\n\nNormally O O\nI O O\n'd O O\nuse O O\nan O O\nonCLick Name Name\nevent Name Name\nto O O\nsee O O\nwhat O O\nwas O O\nclicked O O\n, O O\nbut O O\nthen O O\nI O O\n'd O O\nneed O O\nan O O\nOnClick Name Name\nand O O\nan O O\nOnBlur Name Name\nevent Name Name\nand O O\nthe O O\nOnBlur Name Name\nevent Name Name\nwould O O\nneed O O\nthe O O\nresult O O\nof O O\nthe O O\nonClick Name Name\nevent Name Name\n. O O\n\nHowever O O\n, O O\nI O O\ndo O O\nn't O O\nseem O O\nto O O\nbe O O\nable O O\nto O O\ncontrol O O\nwhat O O\ngets O O\ncalled O O\nfirst O O\n. O O\n\nI O O\ntried O O\nusing O O\nthe O O\nChrome Name Name\nand O O\nIE Name Name\nJS Name Name\ndebuggers O O\nto O O\nsee O O\nwhat O O\nis O O\ngoing O O\non O O\n, O O\nbut O O\nadding O O\nbreakpoints O O\nseem O O\nto O O\nchange O O\nwhat O O\nfunctions O O\nare O O\ncalled O O\n, O O\nwhich O O\nmakes O O\nno O O\nsense O O\n. O O\n\nAdding O O\na O O\nbreakpoint O O\nin O O\nthe O O\nonBlur Name Name\nevent Name Name\n: O O\nit O O\nstops O O\nthere O O\n. O O\n\nAdding O O\na O O\nbreakpoint O O\nin O O\nthe O O\nmouseUp Name Name\nevent Name Name\n: O O\nit O O\nstops O O\nthere O O\n. O O\n\nAdding O O\na O O\nbreakpoint O O\nin O O\nboth O O\nevents Name Name\n: O O\nit O O\nonly O O\nstops O O\nin O O\nthe O O\nonBlur Name Name\nevent Name Name\neven O O\nthough O O\nI O O\ndo O O\ncontinue O O\n. O O\n\nI O O\nhave O O\nto O O\nclick O O\na O O\nsecond O O\ntime O O\nto O O\ntrigger O O\nthe O O\nmouseUp Name Name\nevent Name Name\n. O O\n\nhttp://jsfiddle.net/alaa13212/Gs5Y2/ O O\n\nto O O\nuse O O\nblur O O\nfocusout Name Name\nin O O\njQuery Name Name\n. O O\n\nmust O O\nfocus O O\non O O\nelement O O\n( O O\nuse O O\ntabindex Name Name\nattribute O O\nfor O O\nfocusable O O\n) O O\n\nI O O\nhave O O\ntwo O O\ndivs Name Name\nin O O\nmy O O\nHTML Name Name\none O O\nwill O O\nshow O O\nembedded O O\nvideo Name Name\nfrom O O\nyoutube Name Name\nand O O\nother O O\nwill O O\nshow O O\ncontact-us O O\ninput O O\nform Name Name\n. O O\n\nThere O O\nis O O\nalso O O\na O O\nlink O O\n\" O O\nContact O O\nUs O O\n\" O O\nabove O O\nthe O O\nvideo Name Name\n. O O\n\nInitially O O\nwhen O O\npage O O\nis O O\nloaded O O\nvideo Name Name\nis O O\ndisplayed O O\nbut O O\nwhen O O\nuser O O\nclicks O O\non O O\nthe O O\n\" O O\nContact O O\nUs O O\n\" O O\nlink Name Name\nthe O O\nvideo Name Name\nshould O O\nget O O\nhidden O O\nand O O\ncontact-us O O\ninput O O\nform Name Name\nshould O O\nbe O O\ndisplayed O O\nin O O\nits O O\nplace O O\n. O O\n\nI O O\n'd O O\nlike O O\nto O O\ndo O O\nthis O O\nusing O O\njQuery Name Name\n. O O\n\nUse O O\njQuery Name Name\n's O O\ntoggle() Name Name\nor O O\nany O O\nof O O\nthe O O\nother O O\nmethods O O\nto O O\nshow O O\nand O O\nhide O O\nyour O O\n< Name Name\ndiv>s Name Name\n. O O\n\nHere O O\n's O O\na O O\nsimple O O\nexample O O\n( O O\nhttp://jsfiddle.net/8wbXV/ O O\n) O O\n: O O\n\nThis O O\nis O O\njust O O\na O O\nsimple O O\nexample O O\n. O O\n\nThe O O\nselector O O\non O O\nthe O O\nlink O O\n$('a') Name Name\nis O O\nnot O O\nwhat O O\nyou O O\n'd O O\nnormally O O\nuse O O\n, O O\nbut O O\nI O O\nuse O O\nit O O\nhere O O\njust O O\nfor O O\nillustration O O\n. O O\n\nHave O O\na O O\nlook O O\nat O O\nthe O O\njQuery Name Name\nAPI Name Name\nfor O O\nmore O O\ndetails O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nuse O O\na O O\njQuery Name Name\nrich Name Name\ntext Name Name\neditor Name Name\non O O\nmy O O\nwebsite O O\n. O O\n\nI O O\ndecided O O\nto O O\nuse O O\nUeditor Name Name\n. O O\n\nI O O\nused O O\nthe O O\ncode O O\nexactly O O\nas O O\nshown O O\nin O O\nthe O O\ndemo O O\nto O O\ntry O O\nit O O\nout O O\n. O O\n\nProblem O O\nis O O\nthat O O\nwhen O O\nI O O\ntry O O\nand O O\ntype O O\nmultiple O O\nparagraphs O O\ninto O O\nthe O O\nform O O\n, O O\nit O O\nwill O O\nflip O O\nthe O O\norder O O\n. O O\n\nExample O O\n\nI O O\ntype O O\n--> O O\n\nLine O O\n1 O O\n\nLine O O\n2 O O\n\nOn O O\nsubmit O O\n--> O O\n\nLine O O\n2 O O\n\nLine O O\n1 O O\n\nI O O\ndo O O\nnot O O\nunderstand O O\nwhy O O\nit O O\nis O O\ndoing O O\nthis O O\n. O O\n\nCan O O\nanybody O O\nhelp O O\nme O O\n? O O\n\nIs O O\nthere O O\na O O\nbetter O O\njQuery Name Name\ntext Name Name\neditor Name Name\nthat O O\nI O O\nshould O O\nbe O O\nusing O O\n? O O\n\nUPDATE O O\n: O O\nfor O O\nthe O O\npeople O O\nthat O O\nrun O O\ninto O O\nthis O O\nproblem O O\nin O O\nthe O O\nfuture O O\n! O O\n\nI O O\ndecided O O\nto O O\ngo O O\nwith O O\njWysiwyg Name Name\nText Name Name\neditor Name Name\n. O O\n\nI O O\nhave O O\nplayed O O\naround O O\nwith O O\nprobably O O\nevery O O\nsingle O O\none O O\nby O O\nnow O O\nand O O\nit O O\nis O O\nthe O O\nbest O O\n, O O\nin O O\nmy O O\nopinion O O\nat O O\nleast O O\n. O O\n\nIt O O\nseems O O\nthat O O\nfor O O\nevery O O\none O O\nof O O\nthese O O\nrich Name Name\ntext Name Name\neditors Name Name\nyou O O\nneed O O\nto O O\nhave O O\na O O\nmessage O O\nfrom O O\nthe O O\nbeginning O O\nin O O\nthe O O\nbox O O\ninside O O\np Name Name\ntags O O\nfor O O\nit O O\nto O O\nwork O O\nproperly O O\nin O O\nChrome Name Name\nand O O\nsafari Name Name\n. O O\n\nWeird O O\nwish O O\nI O O\nknew O O\nwhy O O\n? O O\n\nI O O\nam O O\njust O O\ngetting O O\nto O O\ngrips O O\nwith O O\nAutofac Name Name\n, O O\nand O O\nhave O O\nthe O O\nfollowing O O\nquestions O O\n: O O\n\nGuice Name Name\n, O O\nfor O O\nexample O O\n, O O\nhas O O\nits O O\nown O O\nannotations/ways O O\nwhen O O\nyou O O\npass O O\nparameters O O\ninto O O\nconstructors O O\n( O O\nthey O O\nare O O\nhandled O O\nby O O\nGuice Name Name\n) O O\n. O O\n\nDoes O O\nautofac Name Name\ndo O O\nanything O O\nsimilar O O\n? O O\n\nThis O O\nis O O\nin O O\nth O O\nclass O O\ndefinition O O\n, O O\nnot O O\nwhen O O\nI O O\ninstantiate O O\nthe O O\nclass O O\n. O O\n\nWhen O O\nI O O\nam O O\nusing O O\nclasses O O\nand O O\nwant O O\nto O O\nget O O\nother O O\ntypes O O\n, O O\ndo O O\nI O O\nsetup O O\nthe O O\ncontainer Name Name\neach O O\ntime O O\n( O O\nI O O\nam O O\nassuming O O\nthis O O\nshould O O\nbe O O\na O O\nstatic Name Name\nmember O O\n? O O\n) O O\n? O O\n\nI O O\nam O O\ncurrently O O\ndeveloping O O\nan O O\napplication O O\nin O O\nC# Name Name\nwhere O O\nI O O\ndisplay O O\na O O\nMessageBox Name Name\n. O O\n\nHow O O\ncan O O\nI O O\nautomatically O O\nclose O O\nthe O O\nmessage Name Name\nbox Name Name\nafter O O\na O O\ncouple O O\nof O O\nseconds O O\n? O O\n\nYou O O\nwill O O\nneed O O\nto O O\ncreate O O\nyour O O\nown O O\nWindow Name Name\n, O O\nwith O O\nthe O O\ncode-behind O O\ncontaining O O\na O O\nloaded O O\nhandler O O\nand O O\na O O\ntimer Name Name\nhandler O O\nas O O\nfollows O O\n: O O\n\nYou O O\ncan O O\nthen O O\nmake O O\nyour O O\ncustom O O\nmessage Name Name\nbox Name Name\nappear O O\nby O O\ncalling O O\nShowDialog() Name Name\n: O O\n\nThe O O\nSystem.Windows.MessageBox.Show() Name Name\nmethod O O\nhas O O\nan O O\noverload O O\nwhich O O\ntakes O O\nan O O\nowner O O\nWindow Name Name\nas O O\nthe O O\nfirst O O\nparameter O O\n. O O\n\nIf O O\nwe O O\ncreate O O\nan O O\ninvisible O O\nowner O O\nWindow Name Name\nwhich O O\nwe O O\nthen O O\nclose O O\nafter O O\na O O\nspecified O O\ntime O O\n, O O\nit O O\n's O O\nchild O O\nmessage Name Name\nbox Name Name\nwould O O\nclose O O\nas O O\nwell O O\n. O O\n\nHere O O\nis O O\nthe O O\ncomplete O O\nanswer O O\n: O O\nhttps://stackoverflow.com/a/20098381/2190520 O O\n\nI O O\n've O O\nbeen O O\nusing O O\nAsyncTask Name Name\nfor O O\nsome O O\ntime O O\nalready O O\nand O O\nit O O\nnever O O\nstopped O O\nworking O O\nafter O O\nsome O O\ntime O O\nlike O O\nin O O\nthis O O\ncase O O\n. O O\n\nAfter O O\nI O O\nopen O O\nmy O O\napp O O\nfor O O\nthe O O\nfirst O O\ntime O O\neverything O O\nworks O O\nfine O O\nand O O\nI O O\ncan O O\nexecute O O\nAsyncTask Name Name\nmany O O\ntimes O O\n. O O\n\nThe O O\nproblem O O\nis O O\nafter O O\nI O O\nclose O O\nmy O O\napp O O\nand O O\nput O O\ndevice O O\nto O O\nstand O O\nstill O O\nfor O O\na O O\ncouple O O\nof O O\nminutes O O\n, O O\nAsyncTask Name Name\nbecomes O O\nimpossible O O\nto O O\nexecute O O\n. O O\n\nUsually O O\nit O O\ntakes O O\nfor O O\n1-2 O O\nseconds O O\nto O O\nload O O\ndata O O\n, O O\nbut O O\nin O O\nthis O O\ncase O O\nit O O\ntakes O O\nfor O O\na O O\ncouple O O\nof O O\nminutes O O\n. O O\n\nThis O O\nis O O\nmy O O\nAsyncTask Name Name\n: O O\n\nOne O O\nmore O O\nthing O O\nI O O\n've O O\nnoticed O O\nis O O\nthat O O\nwhen O O\nI O O\npress O O\nback O O\nor O O\nhome O O\nbuttons Name Name\non O O\nmy O O\ndevice O O\nand O O\ngo O O\nback O O\non O O\nhome O O\nscreen O O\n, O O\nin O O\nLogCat Name Name\nI O O\nsee O O\nthis O O\nwarning O O\n: O O\n\nI O O\nthought O O\nthat O O\nthis O O\nwarning O O\nonly O O\nappears O O\nif O O\nI O O\ndo O O\nn't O O\nclose O O\nmy O O\nconnection O O\nbut O O\nconnection.disconnect() Name Name\n; Name Name\nis O O\nalways O O\ncalled O O\ninside O O\nfinally O O\nblock O O\n. O O\n\nThis O O\ncould O O\nmaybe O O\nbe O O\na O O\npart O O\nof O O\nthe O O\nproblem O O\n. O O\n\nWhat O O\ndo O O\nyou O O\nthink O O\ncould O O\nbe O O\na O O\nproblem O O\n? O O\n\nUPDATE1 O O\n\nNow O O\nI O O\nnoticed O O\nthat O O\nafter O O\na O O\ncouple O O\nof O O\nminutes O O\nI O O\nreceive O O\nthe O O\nfollowing O O\nexception Name Name\n: O O\n\ni O O\nhave O O\nthis O O\nfile O O\nand O O\non O O\na O O\nclick O O\nevent O O\nit O O\ncalls O O\na O O\nphp Name Name\nfunction O O\nthrough O O\n$.post{} Name Name\n\ni O O\nhave O O\nused O O\nalert(data) Name Name\nto O O\nrecognized O O\nerrors O O\n. O O\n\n, O O\nbut O O\nshows O O\na O O\nblank O O\npage O O\n. O O\n\nI O O\n'm O O\nlost O O\nhere O O\nno O O\nidea O O\nhow O O\nto O O\nsolve O O\nthis O O\nwithout O O\nany O O\nerrors O O\ndisplaying. O O\n. O O\nHelp O O\nmuch O O\nappreciated O O\n. O O\n\np.s O O\nin O O\nphp Name Name\ninfo O O\nerror O O\nreporting O O\nis O O\noff O O\n. O O\n\ni O O\ntried O O\nhtaccess Name Name\non O O\nmy O O\nsubfolder O O\nwithout O O\nno O O\nluck O O\neither O O\n. O O\n\nMake O O\nsure O O\nof O O\nthe O O\nfollowing O O\n: O O\n\nerror_reporting(E_ALL) Name Name\nis O O\nright O O\nafter O O\n< Name Name\n? Name Name\nphp Name Name\ntag O O\n\nThere O O\nis O O\nindeed O O\na O O\nPHP Name Name\nerror O O\n- O O\ntry O O\nto O O\ndeliberately O O\nmake O O\none O O\n. O O\n\nMaybe O O\nthe O O\nerror O O\nis O O\nelsewhere O O\n, O O\nnot O O\nyour O O\nPHP Name Name\nbut O O\nthe O O\n.htaccess Name Name\nfile O O\n( O O\nsince O O\nyou O O\n're O O\ngetting O O\n500 O O\n) O O\n, O O\nor O O\nmaybe O O\nit O O\n's O O\na O O\nlogical O O\nerror O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nfind O O\nthe O O\nupcoming O O\nbirthdays O O\nin O O\na O O\nweek O O\non O O\niOS Name Name\n. O O\n\nI O O\npulled O O\nthe O O\nbirthday O O\ndata O O\nfrom O O\nFacebook Name Name\nand O O\ntrimmed O O\nthe O O\nyear O O\npart O O\n( O O\nsince O O\nit O O\nmay O O\nnot O O\nbe O O\navailable O O\nfor O O\nsome O O\nusers O O\ndepending O O\non O O\nuser O O\n's O O\nprivacy O O\nsettings O O\n) O O\nhence O O\nthe O O\nbirthday O O\ndata O O\nis O O\nan O O\nNSString Name Name\nwith O O\ndate O O\nformat O O\n@ Name Name\n\" Name Name\nMM/dd Name Name\n\" Name Name\n\nwhere O O\ndateFormatterWithFormat Name Name\n: Name Name\nis O O\na O O\ncategory O O\non O O\nNSDateFormatter Name Name\n: O O\n\n2 O O\nquestions O O\nhere O O\n: O O\n\n1 O O\n- O O\nI O O\nhave O O\na O O\nbug O O\nin O O\nthis O O\ncode O O\n, O O\nif O O\nthere O O\nis O O\nless O O\nthan O O\na O O\nweek O O\nto O O\nthe O O\nnew O O\nyear O O\n, O O\nI O O\nwo O O\nn't O O\nbe O O\nable O O\nto O O\ndisplay O O\nbirthdays Name Name\nin O O\nthe O O\nnew O O\nyear O O\nsince O O\nI O O\n'm O O\nsetting O O\nthe O O\nyear O O\nof O O\nthe O O\nbirthday Name Name\nto O O\nthe O O\ncurrent O O\nyear O O\nand O O\ndifference.day Name Name\nwill O O\nbe O O\nway O O\nless O O\nthan O O\n0 Name Name\nfor O O\nthe O O\nbirthdays Name Name\nin O O\nthe O O\nnew O O\nyear O O\n. O O\n\nHow O O\ndo O O\nI O O\ngo O O\nabout O O\nfixing O O\nthat O O\n? O O\n\n2 O O\n- O O\nAs O O\nyou O O\ncan O O\nsee O O\nfrom O O\nthe O O\nabove O O\nsnippet O O\nI O O\n'm O O\ndoing O O\na O O\nlot O O\nof O O\ndancing O O\n: O O\nfirst O O\nI O O\nget O O\ntoday O O\n's O O\ndate O O\nand O O\ntime O O\nwith O O\n[ Name Name\nNSDate Name Name\ndate Name Name\n] Name Name\n, O O\nthen O O\nI O O\nrip O O\nit O O\nto O O\nits O O\ncomponents O O\nand O O\nassemble O O\nit O O\nback O O\nto O O\nan O O\nNSDate Name Name\nwith O O\na O O\ntime O O\nat O O\nnoon O O\nrather O O\nthan O O\nthe O O\ncurrent O O\ntime O O\n. O O\n\nThe O O\nreason O O\nI O O\n'm O O\ndoing O O\nthis O O\nis O O\nthat O O\nif O O\n[ Name Name\nNSDate Name Name\ndate Name Name\n] Name Name\nreturns O O\na O O\ndate O O\nwhose O O\ntime O O\nis O O\nsay O O\n23:00:00 Name Name\n, O O\nand O O\nif O O\nthe O O\nbirthday O O\ntime O O\nis O O\n00:00:00 Name Name\n( O O\n1 O O\nhour O O\nlater O O\n, O O\nmeaning O O\nthe O O\nbirthday O O\nis O O\ntomorrow O O\n) O O\n, O O\nthen O O\ndifference.day Name Name\nequals O O\n0 Name Name\ninstead O O\nof O O\nthe O O\ndesired O O\n1 Name Name\n. O O\n\nIs O O\nwhat O O\nI O O\ndid O O\nin O O\nthe O O\nabove O O\nsnippet O O\nthe O O\nproper O O\nway O O\nof O O\ndoing O O\nthis O O\n? O O\n\nI O O\nthink O O\nI O O\nmight O O\nbe O O\ndoing O O\ntoo O O\nmuch O O\nwork O O\nfor O O\nsomething O O\nseemingly O O\nso O O\nsimple O O\n, O O\nhow O O\nwould O O\nyou O O\nfix O O\nthis O O\narrangement O O\nso O O\nthat O O\nI O O\ndo O O\nn't O O\nhave O O\nto O O\nslice O O\ntoday Name Name\nand O O\nbirthday Name Name\ninto O O\ncomponents O O\nand O O\nput O O\nthem O O\nback O O\ninto O O\nan O O\nNSDate Name Name\n? O O\n\nSet O O\nthe O O\nright O O\nyear O O\nfor O O\neach O O\nbirthdayComponents Name Name\nobject O O\n: O O\n\nHow O O\ndo O O\nI O O\nrefactor O O\na O O\nclass O O\nexpression O O\nwith O O\nES5 Name Name\nprototype O O\nsyntax O O\n? O O\n\nI O O\n'm O O\ntrying O O\nto O O\nextend O O\na O O\nnative O O\nclass O O\nusing O O\na O O\nclass O O\nexpression O O\n. O O\n\nThis O O\ncode O O\nworks O O\nfine O O\nbut O O\nextending O O\nnative O O\nclasses O O\nis O O\nnot O O\nsupported O O\nby O O\nbabel O O\nand O O\nI O O\n'd O O\nlike O O\nto O O\ntranspile O O\nmy O O\ncode O O\nto O O\nES5 Name Name\nin O O\nthe O O\nfuture O O\n. O O\n\nThis O O\nis O O\ncode O O\ntaken O O\noff O O\nof O O\ngoogle Name Name\n's O O\ncustom O O\nelements O O\nprimer O O\n. O O\n\nSo O O\nthe O O\nquestion O O\nis O O\nsimple O O\n: O O\n\nhow O O\ndo O O\nI O O\nrefactor O O\nan O O\nES2015 Name Name\nclass O O\nexpression O O\nwith O O\nsomething O O\nES5 Name Name\ncompatible O O\n( O O\nor O O\njust O O\nbabel Name Name\ncompatible O O\nreally O O\nbut O O\nthis O O\nquestion O O\nis O O\nn't O O\nreally O O\nrelated O O\nto O O\nbabel Name Name\n) O O\n. O O\n\nCan O O\nyou O O\nbriefly O O\nexplain O O\nor O O\npoint O O\nme O O\nto O O\nreference O O\nthat O O\nexplains O O\nhow O O\nES6 Name Name\nclasses O O\nwork O O\nwith O O\nthe O O\nprototypes O O\n? O O\n\nI O O\nhave O O\n4 O O\nimages Name Name\non O O\na O O\npage O O\n. O O\n\nI O O\nwant O O\nto O O\ntrigger O O\na O O\nJS Name Name\nevent Name Name\nonce O O\nall O O\n4 O O\nimages Name Name\nare O O\nloaded O O\n. O O\n\nI O O\nof O O\ncourse O O\nca O O\nn't O O\nbe O O\nsure O O\nwhich O O\norder O O\nthe O O\nimages Name Name\nwill O O\nbe O O\nloaded O O\nin O O\n, O O\nso O O\nI O O\nca O O\nn't O O\ntrigger O O\nthe O O\nevent Name Name\non O O\nthe O O\nlast O O\nimage Name Name\n. O O\n\nOne O O\nthought O O\nwas O O\nto O O\nhave O O\na O O\ncounter Name Name\n, O O\nbut O O\nI O O\nca O O\nn't O O\nthink O O\nof O O\nthe O O\nbest O O\nway O O\nto O O\ncheck O O\nwhen O O\nthat O O\ncounter Name Name\nis O O\nequal O O\nto O O\n4 Name Name\nas O O\nI O O\ndo O O\nn't O O\nlike O O\nthe O O\nidea O O\nof O O\na O O\nsetTimeout() Name Name\nchecking O O\nevery O O\n200ms O O\n. O O\n\nAny O O\nother O O\nideas O O\n? O O\n\nI O O\n'm O O\nusing O O\njQuery Name Name\non O O\nthe O O\nsite O O\n, O O\nso O O\nI O O\n'm O O\nthinking O O\nthat O O\nmight O O\nbe O O\nsome O O\nhelp O O\n. O O\n\nThis O O\nis O O\nthe O O\nimage O O\nHTML Name Name\ncode O O\n: O O\n\nAs O O\nregards O O\nSalty O O\n's O O\nexample O O\n, O O\nit O O\n's O O\nbest O O\nto O O\nuse O O\na O O\nclosure O O\nto O O\navoid O O\nglobal Name Name\nvariables O O\n, O O\nlike O O\nsuch O O\n: O O\n\n[ O O\nEdit O O\n] O O\n\nAs O O\nper O O\njeroen O O\n's O O\ncomment O O\n, O O\nI O O\nreplaced O O\nthe O O\nhardcoded O O\nvalue O O\nof O O\n4 Name Name\n( O O\ncount Name Name\n== Name Name\n= Name Name\n4) Name Name\nwith O O\nthe O O\njQuery Name Name\nsize Name Name\nfunction O O\nas O O\nto O O\nallow O O\nfor O O\nmore O O\nflexibility O O\nwithin O O\nthe O O\nfunction O O\n. O O\n\nI O O\ncurrently O O\nhave O O\na O O\nwysiwyg O O\niframe Name Name\nwhere O O\nthe O O\nuser O O\ncan O O\nsubmit O O\ninput O O\nto O O\nanother O O\narea O O\non O O\nthe O O\npage Name Name\n. O O\n\nOnce O O\nthe O O\niframe Name Name\ninput O O\nis O O\nsubmitted O O\n, O O\nI O O\nset O O\nit O O\nto O O\nclear O O\nthe O O\ncontent O O\n. O O\n\nI O O\nwant O O\nto O O\nalso O O\nautomatically O O\nfocus O O\nback O O\ninto O O\nthe O O\niframe Name Name\n. O O\n\nThis O O\nis O O\nthe O O\ncode O O\nI O O\ncurrently O O\nhave O O\n: O O\n\nI O O\n'm O O\nnot O O\nsure O O\nI O O\nunderstand O O\nwhat O O\nyou O O\nare O O\ntrying O O\nto O O\ndo O O\n, O O\nbut O O\npostContentClr Name Name\nis O O\na O O\njQuery Name Name\nobject O O\n, O O\nso O O\ncalling O O\nhtml() Name Name\nrequires O O\nthat O O\nyou O O\naccess O O\nit O O\nvia O O\njQuery Name Name\nlike O O\nso O O\n: O O\n\nFigured O O\nit O O\nout O O\n. O O\n\nI O O\nhad O O\nto O O\nsimply O O\nfocus O O\non O O\nthe O O\nparent O O\n. O O\n\nAnd O O\nJitter O O\nis O O\ncorrect O O\n, O O\nsince O O\nI O O\nalready O O\ndeclared O O\nit O O\nas O O\na O O\njQuery Name Name\nobject O O\n, O O\nit O O\nneed O O\nn't O O\nbe O O\nwrapped O O\n. O O\n\nWorking O O\ncode O O\n: O O\n\nI O O\nunderstand O O\npreloading O O\nthe O O\nurl O O\nbut O O\nI O O\ndo O O\nnot O O\nunderstand O O\nthe O O\npurpose O O\nof O O\ncache Name Name\nand O O\nhash Name Name\nin O O\nthis O O\nsnippet O O\n. O O\n\nI O O\nknow O O\nthe O O\nanswer O O\nis O O\nprobably O O\nsimple O O\nand O O\nI O O\n'm O O\noverlooking O O\nit O O\nbut O O\nI O O\njust O O\nwant O O\nsome O O\ndirection O O\n. O O\n\nIn O O\nthis O O\nexample O O\n, O O\ncache Name Name\nis O O\nactually O O\nuseless O O\n. O O\n\nYou O O\nonly O O\nwrite O O\nto O O\nit O O\nand O O\nnever O O\nread O O\nfrom O O\nit O O\n. O O\n\nhash Name Name\nis O O\nbeing O O\nused O O\nas O O\nthe O O\nactual O O\ncache O O\nhere O O\n. O O\n\nIf O O\nan O O\nimage Name Name\nwith O O\nthe O O\nsame O O\nURL O O\nalready O O\nexists O O\n, O O\nit O O\nwill O O\nbe O O\nreturned O O\nfrom O O\nthe O O\nhash Name Name\nobject O O\n, O O\nand O O\nnot O O\ncreated O O\nagain O O\n. O O\n\nI O O\nhave O O\ntwo O O\ndatabase O O\nsystems O O\ncurrently O O\nin O O\nuse O O\nin O O\nproduction O O\n: O O\nthe O O\nmain O O\nPostgreSQL Name Name\ndatabase O O\n, O O\nand O O\nanother O O\ndatabase O O\n( O O\nMemSQL Name Name\n) O O\nused O O\nprimarily O O\nfor O O\nanalytical O O\npurposes O O\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\nsetup O O\nstreaming O O\nreplication O O\nof O O\nsome O O\nof O O\nthe O O\ntables O O\nin O O\nPostgreSQL Name Name\nto O O\nMemSQL Name Name\n( O O\na O O\nMySQL-compatible Name Name\ndatabase O O\n) O O\nrowstores O O\n, O O\nassuming O O\nthe O O\ntables Name Name\non O O\nboth O O\ndatabases O O\nhave O O\nthe O O\nsame O O\nschema O O\n? O O\n\nI O O\ndo O O\nnot O O\nthink O O\nthat O O\nthere O O\nis O O\na O O\ntool O O\nfor O O\nthat O O\n( O O\nyet O O\n) O O\nbut O O\nthere O O\nis O O\none O O\nfor O O\nlimited O O\nMySQL Name Name\nto O O\nPostgres Name Name\nreplication O O\n: O O\n\nhttps://github.com/the4thdoctor/pg_chameleon O O\n\nMaybe O O\nthis O O\ncan O O\nbe O O\nadapted O O\nto O O\nwork O O\nthe O O\nother O O\nway O O\n. O O\n\nAnd O O\nyou O O\ncould O O\nalways O O\nbuild O O\nyour O O\nown O O\nlittle O O\ndata O O\nshovel O O\nby O O\nusing O O\nthe O O\nNOTIFY/LISTEN O O\nfeature O O\nof O O\nPostgres Name Name\n. O O\n\nWhich O O\nis O O\nprobably O O\nonly O O\nan O O\noption O O\nif O O\nyou O O\nonly O O\nhave O O\nto O O\ncopy O O\na O O\nvery O O\nsimple O O\nset O O\nof O O\ndata O O\n. O O\n\nI O O\nhave O O\ncome O O\nacross O O\nWinSCP Name Name\n( O O\nhttp://winscp.net/eng/index.php O O\n) O O\nwhich O O\nI O O\nthink O O\nis O O\na O O\nfantastic O O\nclient Name Name\nto O O\nwork O O\nwith O O\nmy O O\nEC2 Name Name\nubuntu Name Name\ninstance O O\nas O O\na O O\ngraphical O O\nalternative O O\nto O O\nputty Name Name\n. O O\n\nOne O O\nproblem O O\nthough O O\nis O O\nthat O O\nevery O O\ntime O O\nI O O\nwant O O\nto O O\nmodify O O\nor O O\ncreate O O\na O O\nfile O O\nI O O\nhave O O\nto O O\ndrop O O\ninto O O\na O O\nshell Name Name\nand O O\nrun O O\nthe O O\nappropriate O O\nsudo Name Name\ncommand O O\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\nlogin O O\nwith O O\nwinscp Name Name\nas O O\na O O\nsuperuser O O\nto O O\navoid O O\nthis O O\n? O O\n\nis O O\nit O O\npossible O O\nto O O\nadd O O\nto O O\nmy O O\napk Name Name\nfile O O\nsome O O\nXML Name Name\nfile O O\nstoring O O\nprogram O O\nversion O O\n, O O\nupdate O O\npath O O\nand O O\nother O O\nuseful O O\ndata O O\n( O O\nnote O O\n: O O\nI O O\ndo O O\nn't O O\nmean O O\nAndroid Name Name\nXML Name Name\nfile O O\n) O O\n. O O\n\nAll O O\nI O O\nwant O O\nto O O\nis O O\nthis O O\nfile O O\nto O O\nbe O O\nunpacked O O\nsomewhere O O\nto O O\nlocal O O\ndata O O\nfolder O O\nand O O\nI O O\nwill O O\nuse O O\nit O O\nfor O O\ncomparing O O\nversion O O\ninfo O O\ninstalled O O\nlocally O O\nand O O\non O O\nthe O O\nserver Name Name\nin O O\ncase O O\nof O O\nupdates O O\n. O O\n\nI O O\nam O O\nasking O O\n- O O\nis O O\nit O O\npossible O O\nto O O\nadd O O\nto O O\napk Name Name\nsome O O\nother O O\nfile O O\n? O O\n\nThanks O O\n\nIf O O\nyou O O\nonly O O\nwant O O\nto O O\nknow O O\nthe O O\nversion O O\ninfo O O\nof O O\nthe O O\napp O O\nthen O O\nthere O O\nis O O\na O O\nmuch O O\neasier O O\nway O O\nto O O\nidentify O O\nit O O\n. O O\n\nYou O O\ncan O O\nuse O O\n\ngetPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionCode Name Name\n\nto O O\nget O O\nthe O O\nversion O O\ncode O O\nand O O\n\ngetPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionName Name Name\n\nto O O\nget O O\napp O O\n's O O\nversion O O\nname O O\n\nThe O O\nassets/ Name Name\nfolder O O\nin O O\napk Name Name\nis O O\nintended O O\nto O O\nstore O O\nany O O\nextra O O\nuser O O\nfiles O O\nin O O\nany O O\nformats O O\n. O O\n\nThey O O\nwill O O\nbe O O\nincluded O O\nto O O\napk Name Name\nautomatically O O\non O O\ncompilation O O\nstage O O\nand O O\ncan O O\nbe O O\naccessed O O\nfrom O O\nthe O O\napp O O\nusing O O\ngetAssets() Name Name\nfunction O O\n. O O\n\nFor O O\nexample O O\n: O O\n\nIt O O\nis O O\neven O O\nunnecessary O O\nto O O\ncopy O O\nthem O O\nto O O\nsome O O\nlocal O O\nfolder O O\nto O O\nread O O\nthem O O\n. O O\n\nI O O\nam O O\ncurrently O O\nmaking O O\na O O\nunity Name Name\ngame O O\nwhere O O\nI O O\nwill O O\nbe O O\nable O O\nto O O\nnavigate O O\nfrom O O\none O O\n360 O O\ndegrees O O\npanorama O O\nto O O\nanother O O\n. O O\n\nI O O\nhave O O\nadded O O\nthe O O\npictures Name Name\nand O O\nmade O O\nthe O O\ntexture Name Name\nsize O O\nas O O\na O O\ncube Name Name\nand O O\nmapped O O\nto O O\nthe O O\nlatitude-longitude O O\nlayout O O\n. O O\n\nI O O\nhave O O\nmade O O\nskybox Name Name\nmaterial O O\nand O O\nloaded O O\nthe O O\nimage Name Name\ninto O O\nit O O\n. O O\n\nNow O O\nthe O O\nproblem O O\nI O O\nam O O\nfacing O O\nhere O O\nis O O\n- O O\n\nWhenever O O\nI O O\nload O O\nthe O O\nskyboxes Name Name\n, O O\nit O O\nlooks O O\nto O O\nsome O O\nother O O\ndirection O O\ninstead O O\nof O O\nthe O O\noriginal O O\norientation O O\nof O O\nthe O O\nimage Name Name\n. O O\n\nI O O\ncould O O\nfix O O\nit O O\nby O O\nchanging O O\nthe O O\nskybox Name Name\nrotation O O\nto O O\n100 Name Name\n. O O\n\nSince O O\nI O O\nhave O O\nplanned O O\nto O O\nadd O O\naround O O\n100 O O\npictures Name Name\n, O O\nI O O\ndo O O\nnot O O\nwant O O\nthem O O\nto O O\nfix O O\neach O O\non O O\nof O O\nthem O O\nmanually O O\n. O O\n\nAll O O\nof O O\nthe O O\npictures O O\nwere O O\ndownloaded O O\nfrom O O\ngoogle Name Name\nstreetview Name Name\n. O O\n\nDesperately O O\nin O O\nneed O O\nof O O\nhelp O O\n! O O\n! O O\n\nI O O\nam O O\nashamed O O\nto O O\nsay O O\nI O O\nhave O O\nspent O O\nmost O O\nof O O\ntoday O O\non O O\nthis O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nbuild O O\na O O\nform Name Name\nbased O O\non O O\nthe O O\ncontents O O\nof O O\nan O O\ndata Name Name\nstore Name Name\n. O O\n\nI O O\nam O O\nusing O O\nExt.js Name Name\nand O O\nthe O O\nMVC Name Name\narchitecture O O\n. O O\n\nHere O O\n's O O\nwhat O O\nI O O\nhave O O\n: O O\n\nThe O O\nerror O O\nI O O\nam O O\ngetting O O\n( O O\nI O O\n've O O\nhad O O\nmany O O\nthroughout O O\nthe O O\nday O O\n) O O\nis O O\n\" O O\nmy.items.push O O\nis O O\nnot O O\na O O\nfunction O O\n\" O O\n. O O\n\nThanks O O\nin O O\nadvance O O\nfor O O\nany O O\nhelp O O\nyou O O\ncan O O\noffer O O\n! O O\n\nitems Name Name\nis O O\nexpected O O\nto O O\nbe O O\nan O O\narray Name Name\nnot O O\nMixedCollection Name Name\n. O O\n\nIt O O\nis O O\nchanged O O\nto O O\nMixedCollection Name Name\nlater O O\non O O\nif O O\nI O O\nremember O O\ngood O O\n. O O\n\nSo O O\nto O O\nfix O O\nyour O O\nissue O O\nchange O O\n: O O\n\nto O O\n\nConsider O O\nas O O\nwell O O\ndefining O O\nitems Name Name\nof O O\nform O O\nas O O\nan O O\nempty O O\narray Name Name\nand O O\nthen O O\nin O O\ninitComponent Name Name\nmake O O\nuse O O\nof O O\nExt.apply Name Name\n: O O\n\nI O O\nhave O O\na O O\nset O O\nof O O\ndates O O\nwhich O O\nare O O\nin O O\nthe O O\ncurrent O O\nformat O O\n: O O\n\ne.g O O\n. O O\n\nI O O\nhave O O\nput O O\nthem O O\ninto O O\na O O\nSQL Name Name\nServer Name Name\ntable Name Name\nas O O\nnvarchar(MAX) Name Name\nbut O O\nI O O\nneed O O\nto O O\nconvert O O\nthem O O\nto O O\ndatetime Name Name\nin O O\na O O\nview O O\n. O O\n\nI O O\nhave O O\ntried O O\nthe O O\nfollowing O O\npieces O O\nof O O\ncode O O\nbut O O\nneither O O\nwork O O\n: O O\n\nReturn O O\n2016-04-15 Name Name\n13:30:00.000 Name Name\n\nI O O\nfound O O\nsome O O\nexample O O\nof O O\nhow O O\nto O O\nread O O\nthe O O\nXML Name Name\nfrom O O\nan O O\nExcel Name Name\nspreadsheet O O\n>> O O\nHERE O O\n<< O O\n, O O\nand O O\nI O O\nam O O\ntrying O O\nto O O\nget O O\nthe O O\ncode O O\nto O O\nwork O O\nfor O O\nme O O\n. O O\n\nI O O\nhave O O\nto O O\nwrite O O\na O O\nroutine O O\nthat O O\ntakes O O\nthe O O\ndata O O\nfrom O O\n4 O O\nof O O\nthe O O\n15 O O\nsheets Name Name\nin O O\nthe O O\nworkbook Name Name\n, O O\nand O O\nuse O O\nthat O O\ndata O O\nto O O\npopulate O O\nour O O\ndatabase O O\n. O O\n\nAnyway O O\n... O O\n. O O\n\nThis O O\ncode O O\nis O O\nthrowing O O\nan O O\nInvalidOperationException Name Name\nexception Name Name\nevery O O\ntime O O\nI O O\nattempt O O\nto O O\nquery O O\nmy O O\nExcel Name Name\nspreadsheet O O\n: O O\n\nThe O O\nspecific O O\nerror O O\nis O O\n, O O\n\" O O\nSequence O O\ncontains O O\nno O O\nelements O O\n\" O O\n\nI O O\n'm O O\nreally O O\nnot O O\nsure O O\nhow O O\nto O O\ngo O O\nabout O O\ndebugging O O\nit O O\n, O O\nbecause O O\nI O O\n'm O O\nnot O O\nsure O O\nwhat O O\nthe O O\ncode O O\nis O O\ntrying O O\nto O O\ndo O O\n. O O\n\nCould O O\nsomeone O O\nhelp O O\nme O O\nwrite O O\nit O O\nin O O\nStandard O O\n\" O O\nC# Name Name\nbefore O O\nI O O\ntry O O\nto O O\nimplement O O\nthe O O\nfancy O O\nLINQ Name Name\nexpression O O\n? O O\n\n( O O\nthat O O\nis O O\nLINQ Name Name\n, O O\nright O O\n? O O\n) O O\n\n[ O O\nSolved O O\n] O O\n\nUsing O O\nthe O O\nsnippet O O\nprovided O O\nby O O\nJeffN825 O O\n, O O\nI O O\nwas O O\nable O O\nto O O\ncreate O O\nthis O O\n: O O\n\nIt O O\nturns O O\nout O O\nthat O O\neven O O\nthough O O\nmy O O\nsheet O O\nnames O O\nin O O\nExcel Name Name\nare O O\n\" O O\nHV Name Name\n\" O O\n, O O\n\" O O\nM2 Name Name\n\" O O\n, O O\n\" O O\nCB Name Name\n\" O O\nand O O\n\" O O\nCC Name Name\n\" O O\n, O O\nI O O\nstill O O\nhave O O\nto O O\nspecify O O\nthem O O\nas O O\n\" O O\nsheet2 Name Name\n\" O O\n, O O\n\" O O\nsheet3 Name Name\n\" O O\n, O O\n\" O O\nsheet4 Name Name\n\" O O\nand O O\n\" O O\nsheet5 Name Name\n\" O O\n. O O\n\nI O O\nhad O O\nto O O\nstep O O\nthrough O O\n161 O O\nPackagePart Name Name\nobjects O O\nto O O\nsee O O\nthis O O\n. O O\n\nLINQ Name Name\nis O O\njust O O\nso O O\ndamn O O\nefficient O O\nthat O O\nit O O\ncan O O\nbe O O\nhard O O\nto O O\ndebug O O\nwhen O O\nthere O O\nare O O\nproblems O O\n. O O\n\nThe O O\n.Single() Name Name\nis O O\nwhat O O\n's O O\nthrowing O O\nthe O O\nexception Name Name\n. O O\n\nEither O O\nyour O O\nquery O O\nis O O\nreturning O O\nno O O\nitems O O\nor O O\nit O O\n's O O\nreturning O O\n> O O\n1 O O\nitem O O\n. O O\n\nIf O O\nyou O O\n're O O\nnot O O\nsure O O\nof O O\nthe O O\nnumber O O\nof O O\nitems O O\nyou O O\n're O O\nexpecting O O\n, O O\nyou O O\nshould O O\nbe O O\nusing O O\nFirstOrDefault() Name Name\nwhich O O\nwill O O\nreturn O O\nthe O O\nfirst O O\nmatch O O\nor O O\nnull Name Name\nif O O\nno O O\nmatches O O\nare O O\nfound O O\n. O O\n\nThe O O\nnon-LINQ Name Name\nequivalent O O\nis O O\nsomething O O\nlike O O\nthis O O\n\nIt O O\n's O O\nbasically O O\ndoing O O\nthis O O\n. O O\n\nIn O O\nyour O O\nversion O O\n, O O\ntry O O\nreplacing O O\n.Single() Name Name\nwith O O\n.FirstOrDefault() Name Name\n. O O\n\nIt O O\n's O O\nfailing O O\nbecause O O\nthere O O\nis O O\nno O O\nmatch O O\n. O O\n\nI O O\nam O O\nrunning O O\ntwo O O\nhttp/2 O O\nservers Name Name\non O O\nmy O O\nubuntu Name Name\nserver Name Name\n. O O\n\nBoth O O\nshould O O\nbe O O\nreachable O O\nover O O\nport Name Name\n443 Name Name\n. O O\n\nIs O O\nthere O O\na O O\nsimple O O\nway O O\nto O O\ndo O O\nthis O O\non O O\nUbuntu Name Name\n? O O\n\nYes O O\nthis O O\nis O O\npossible O O\n. O O\n\nYou O O\nneed O O\nto O O\nrun O O\na O O\nwebserver Name Name\nor O O\nloadbalancer Name Name\nlistening O O\nto O O\nport Name Name\n443 Name Name\nand O O\nforwarding O O\nrequests O O\nappropriately O O\n. O O\n\nIn O O\nApache Name Name\nfor O O\nexample O O\nthis O O\nwould O O\nbe O O\nhandled O O\nas O O\nfollows O O\n: O O\n\nNow O O\nwhile O O\nApache Name Name\ndoes O O\nsupport O O\nHTTP/2 Name Name\nin O O\nboth O O\nthe O O\nfront O O\nend O O\nclient O O\nconnections O O\nand O O\nthe O O\nback O O\nend O O\nProxyPass O O\nrequests O O\n( O O\nwith O O\nmod_proxy_http Name Name\n2) Name Name\n, O O\nsome O O\nother O O\nwebservers/loadbalancers Name Name\ndo O O\nn't O O\n( O O\ne.g O O\n. O O\nNginx Name Name\n) O O\n. O O\n\nTo O O\nbe O O\nhonest O O\nmost O O\nof O O\nthe O O\nbenefits O O\nfor O O\nHTTP/2 Name Name\nare O O\nin O O\nthe O O\nclient O O\nto O O\nedge O O\n. O O\n\nSo O O\nif O O\nyou O O\nprefer O O\nto O O\nuse O O\nNginx Name Name\nfor O O\nexample O O\n, O O\nyou O O\ncould O O\njust O O\nhave O O\nNginx Name Name\nsupport O O\nHTTP/2 O O\n, O O\nand O O\nthe O O\nconnection O O\nfrom O O\nNginx Name Name\nto O O\nyour O O\nback O O\nend O O\napps O O\nbe O O\nplain O O\nold O O\nHTTP/1.1 Name Name\n. O O\n\nAt O O\nleast O O\nuntil O O\nHTTP/2 Name Name\nbecomes O O\nmore O O\nregularly O O\nsupported O O\n. O O\n\nSee O O\nhere O O\nfor O O\nmore O O\ndiscussion O O\non O O\nthis O O\n: O O\nHTTP2 Name Name\nwith O O\nnode.js Name Name\nbehind O O\nnginx Name Name\nproxy O O\n\nI O O\nam O O\na O O\nnew O O\nuser O O\nof O O\nJson.net Name Name\nand O O\nI O O\nam O O\nstuck O O\nbecause O O\nof O O\nan O O\nerror O O\nmessage O O\n. O O\n\nI O O\nwant O O\nto O O\nread O O\na O O\njson Name Name\nfile O O\nthanks O O\nto O O\nJsonTextReader Name Name\nusing O O\njson.net Name Name\n\nMy O O\njson Name Name\nfile O O\nis O O\na O O\nlist O O\nof O O\nmy O O\nclass O O\nPerson Name Name\nwith O O\nsome O O\nattributes O O\nlooks O O\nlike O O\nthat O O\n: O O\n\nhttp://pastebin.com/DbSDVt2K O O\n\nWhen O O\nreading O O\nwith O O\nthe O O\nStreamReader Name Name\n( O O\nor O O\nTextReader Name Name\n) O O\nI O O\nhave O O\nno O O\nproblem O O\n. O O\n\nWhat O O\ni O O\nwant O O\nis O O\nto O O\nhave O O\nthe O O\nsame O O\nresult O O\nwith O O\nan O O\noutput O O\nof O O\ntype O O\nJsonTextReader Name Name\n. O O\n\nHere O O\nis O O\nmy O O\npiece O O\nof O O\ncode O O\nto O O\nhelp O O\nyou O O\nunderstand O O\n: O O\n\nhttp://pastebin.com/iwF3xuUp O O\n\nMy O O\nerror O O\nis O O\nwith O O\n: O O\nmyString Name Name\n= Name Name\nreader.ReadAsString() Name Name\n; Name Name\n\n\" O O\nAdditional O O\ninformation O O\n: O O\nError O O\nreading O O\nstring O O\n. O O\n\nUnexpected O O\ntoken O O\n: O O\nStartArray O O\n. O O\n\nPath O O\n'' O O\n, O O\nline O O\n1 O O\n, O O\nposition O O\n1 O O\n. O O\n\" O O\n\nI O O\nhave O O\nbeen O O\nlooking O O\nfor O O\nhours O O\nto O O\nhave O O\nmore O O\ninfo O O\nbut O O\nI O O\nfound O O\nnothing O O\nthat O O\ncould O O\nhelp O O\nme O O\n. O O\n\nIf O O\nany O O\nof O O\nyou O O\ncan O O\nhelp O O\nme O O\nunderstand O O\nthis O O\nerror O O\nand O O\nfind O O\na O O\nsolution O O\n. O O\n\nHere O O\nis O O\na O O\nextract O O\nof O O\nmy O O\ntr Name Name\nfile O O\ncontent O O\n: O O\n\nSimply O O\nread O O\nthe O O\nfile O O\nwith O O\na O O\nregular O O\nTextReader Name Name\n, O O\nthen O O\nDeserialize Name Name\nusing O O\nJsonConvert Name Name\n. O O\n\nYou O O\nhave O O\njust O O\nto O O\nremove O O\nthis O O\nline O O\nfrom O O\nyour O O\ncode O O\n: O O\nstring Name Name\nmyString Name Name\n= Name Name\nreader.ReadAsString() Name Name\n; Name Name\nThe O O\nJson Name Name\nSerializer Name Name\ntries O O\nto O O\nread O O\na O O\nstring Name Name\nthere O O\n, O O\nbut O O\nrecognizes O O\nthat O O\nit O O\nis O O\nan O O\nArray Name Name\nwhich O O\nyou O O\n're O O\ntrying O O\nto O O\nread O O\n. O O\n\nand O O\nif O O\nyou O O\nwant O O\nto O O\nhave O O\nit O O\ndirectly O O\nto O O\nyour O O\ncorrect O O\ntype O O\nyou O O\ncan O O\nalso O O\nuse O O\nthe O O\ngeneric O O\nDeserialze Name Name\ninstead O O\nof O O\nDeserialize Name Name\n. O O\n\nthan O O\nyou O O\ncan O O\nspecifiy O O\nthe O O\ndeserialization O O\nas O O\n: O O\n\nEdit O O\nfor O O\nthe O O\ncomment O O\n: O O\n\nIf O O\nyou O O\nwant O O\nto O O\nreuse O O\na O O\nJsonReader Name Name\nyou O O\ncan O O\ncreate O O\na O O\nreader Name Name\nfrom O O\na O O\nJObject Name Name\n: O O\n\nExample O O\ncomes O O\nfrom O O\nUsing O O\nJToken.CreateReader Name Name\nfrom O O\nthe O O\nNewtonsoft Name Name\nHelp O O\nPage O O\n\nIf O O\na O O\nuser O O\nhas O O\nauthenticated O O\n, O O\nshould O O\nn't O O\nthe O O\nrequest O O\nhave O O\na O O\nuser O O\nattached O O\nto O O\nit O O\n, O O\nas O O\nwell O O\nas O O\nreturning O O\ntrue O O\nfor O O\nreq.isAuthenticated() Name Name\n? O O\n\nSo O O\nwhat O O\nis O O\nthe O O\ndifference O O\nbetween O O\nthese O O\ntwo O O\nthen O O\n? O O\n\nShould O O\nn't O O\nI O O\nbe O O\nfine O O\njust O O\nchecking O O\nif O O\nreq.user Name Name\nexists O O\n, O O\nin O O\nterms O O\nof O O\nmaking O O\nsure O O\nthe O O\nuser O O\nlogged O O\nin O O\n? O O\n\nWhat O O\nis O O\nthe O O\ndifference O O\nbetween O O\ninheriting O O\nIDispatch Name Name\ndirectly O O\n( O O\nIMyInterface Name Name\n: O O\nIDispatch Name Name\n) O O\nand O O\ndeclaring O O\ninterface O O\ntype O O\n[ O O\nInterfaceType(ComInterfaceType.InterfaceIsIDispatch) Name Name\n] O O\n? O O\n\nI O O\n've O O\nnoticed O O\nthat O O\nI O O\n'm O O\nunable O O\nto O O\nuse O O\nthe O O\nworksheet_change Name Name\nfunction O O\nwhen O O\nthe O O\ntarget O O\naddress O O\nis O O\na O O\ndrop Name Name\ndown Name Name\n( O O\ndata O O\nvalidation O O\n- O O\npulled O O\nfrom O O\ntable Name Name\n) O O\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\ndo O O\nthis O O\nsuccessfully O O\n? O O\n\nExample O O\n( O O\ndoes O O\nnot O O\nwork O O\n) O O\n: O O\n\nThank O O\nyou O O\n! O O\n\nI O O\nbelieve O O\nyour O O\ncode O O\nin O O\neither O O\nin O O\nthe O O\nwrong O O\nworksheet Name Name\n, O O\nor O O\nthe O O\ndropdown Name Name\nis O O\nin O O\na O O\ndifferent O O\nsheet Name Name\nthan O O\nwhere O O\nyour O O\ncode O O\nis O O\n. O O\n\nTry O O\nputting O O\nthis O O\nin O O\nSheet1 Name Name\nand O O\nmake O O\nchanges O O\nto O O\n\" O O\nG8 Name Name\n\" O O\non O O\nSheet1 Name Name\nto O O\nsee O O\nwhat O O\nhappens O O\n\nI O O\nknow O O\nthat O O\ncode O O\nworks O O\n. O O\n\nIf O O\nthat O O\nworks O O\nthen O O\ntry O O\nyour O O\ncode O O\nand O O\nif O O\nit O O\ndoes O O\nn't O O\nwork O O\nthen O O\nI O O\nbeleive O O\nyour O O\nsheet4.conditions Name Name\nhas O O\nissues O O\n\nI O O\n've O O\nbeen O O\nstruggling O O\nwith O O\nthis O O\nfor O O\na O O\nwhile O O\nand O O\ncould O O\nn't O O\nfind O O\nthe O O\nright O O\nsolution O O\n. O O\n\nAt O O\nthe O O\nbottom O O\nof O O\nthe O O\npage O O\nI O O\n've O O\na O O\nfooter Name Name\nthat O O\n's O O\nfull O O\nwidth O O\n. O O\n\nInside O O\nit O O\nI O O\nwant O O\nto O O\ndisplay O O\nI O O\nlist Name Name\nof O O\nmessages O O\nand O O\nright O O\nnext O O\nto O O\nits O O\nleft O O\nan O O\nicon Name Name\n, O O\nin O O\nthis O O\ncase O O\nit O O\n's O O\na O O\nFont Name Name\nAwesome Name Name\nicon Name Name\n. O O\n\nThe O O\nmessage O O\nlist Name Name\nneeds O O\nto O O\nbe O O\ncentered O O\nboth O O\nvertically O O\nand O O\nhorizontally O O\nand O O\nthe O O\nicon Name Name\nhas O O\nto O O\nbe O O\ncentered O O\nvertically O O\n. O O\n\nI O O\n've O O\ntried O O\ndoing O O\nthis O O\nusing O O\nul Name Name\nelements O O\nwith O O\ndisplay Name Name\n: Name Name\ninline-block Name Name\nand O O\ntext-align Name Name\n: Name Name\ncenter Name Name\n. O O\n\nThe O O\nmessages O O\ndisplays O O\ncorrectly O O\nbut O O\nthe O O\nicon Name Name\nis O O\nstuck O O\nin O O\nthe O O\nsame O O\nplace O O\nno O O\nmatter O O\nthe O O\nsize O O\nof O O\nits O O\ncontainer Name Name\n. O O\n\nHere O O\n's O O\nwhat O O\nI O O\n've O O\nso O O\nfar O O\n: O O\n\nand O O\nthe O O\ncss Name Name\n: O O\n\nhttps://jsfiddle.net/b1rw80jz/1/ O O\n\nDoes O O\nanyone O O\nknow O O\nhow O O\ncan O O\nI O O\naccomplish O O\nthis O O\n? O O\n\nThanks O O\n\nYou O O\ncould O O\nuse O O\nflex-box O O\nlike O O\nthis O O\n: O O\n\n+CSS Name Name\n\n+HTML Name Name\n\nDemo O O\n\nIf O O\nyou O O\nneed O O\nonly O O\none O O\nicon Name Name\n, O O\nyou O O\ncan O O\nuse O O\npseudo-elements::before O O\nfor O O\nthe O O\nbell O O\n\nhttps://jsfiddle.net/b1rw80jz/6/ O O\n\nDoes O O\nthis O O\nsimple O O\nwalkthrough O O\nwork O O\nfor O O\nanyone O O\nelse O O\n? O O\n\nDoes O O\nn't O O\nfor O O\nme O O\n. O O\n\nError O O\n: O O\nThe O O\nComponentGroup O O\nelement O O\ncontains O O\nan O O\nunexpected O O\nchild O O\nelement O O\n' Name Name\nFile Name Name\n' Name Name\n. O O\n\nIs O O\nthis O O\nwalkthrough O O\nout O O\nof O O\ndate O O\n, O O\ninvalid O O\nor O O\nam O O\nI O O\npossibly O O\njust O O\ndoing O O\nsomething O O\nstupid O O\n? O O\n\nThe O O\nversion O O\nof O O\nWiX Name Name\nI O O\nhave O O\ninstalled O O\nis O O\n3.10 Name Name\n. O O\nand O O\nVisual Name Name\nStudio Name Name\n2015 Name Name\n. O O\n\nThanks O O\n\nCreating O O\na O O\nSimple O O\nSetup O O\n\nI O O\nthink O O\nyou O O\nmissed O O\nthe O O\ncreating O O\nthe O O\ncomponent Name Name\ntag O O\n. O O\n\nThe O O\nFile Name Name\ntag O O\ncan O O\nonly O O\nbe O O\nadded O O\nunderneath O O\nthe O O\nComponent Name Name\ntag O O\n. O O\n\nThink O O\nof O O\nComponents Name Name\nas O O\ncontainers O O\nfor O O\nanything O O\nthat O O\ngets O O\ndeployed O O\n. O O\n\nMy O O\nskill O O\nlevel O O\n: O O\nBeginner O O\n\nCode O O\n: O O\nC# Name Name\n( O O\nwpf Name Name\n) O O\n\nHardware O O\n: O O\nDell Name Name\nVenue Name Name\n11 Name Name\nPro Name Name\ntablet Name Name\n( O O\nwindows Name Name\n8.1 Name Name\n) O O\n\nI O O\nwould O O\nlike O O\nto O O\nget O O\nthe O O\ncurrent O O\nlocation O O\nof O O\nmy O O\ncomputer Name Name\nvia O O\ncellular Name Name\ntriangulation O O\nin O O\ncoordinates(latitude/longitude) O O\n. O O\n\nUsing O O\nthe O O\nfollowing O O\nlink O O\nas O O\na O O\nreference O O\n( O O\nGetting O O\nGPS Name Name\ncoordinates O O\non O O\nWindows Name Name\nphone Name Name\n7 Name Name\n) O O\n, O O\nI O O\nhave O O\nbeen O O\nattempting O O\nto O O\npull O O\nthe O O\nlat/lon O O\ncoordinates O O\nfrom O O\nWindows Name Name\nLocation Name Name\nServices Name Name\n. O O\n\nI O O\nhave O O\nverified O O\nthat O O\nWindows Name Name\nLocation Name Name\nServices Name Name\nis O O\nreceiving O O\nthe O O\ncoordinates O O\nvia O O\ncell Name Name\ntower O O\ntriangulation O O\n, O O\nbut O O\nevery O O\ntime O O\nI O O\nrun O O\nthe O O\nfollowing O O\ncode O O\nthe O O\ncoordinates O O\nare O O\nlisted O O\nas O O\n\" Name Name\nNaN Name Name\n\" Name Name\n. O O\n\nAny O O\nhelp O O\nhere O O\nwould O O\nbe O O\ngreatly O O\nappreciated O O\n. O O\n\nIf O O\nyou O O\nonly O O\nneed O O\nyour O O\ncurrent O O\nposition O O\nonce O O\n, O O\nand O O\nnot O O\ncontinous O O\nupdate O O\nas O O\nyou O O\nmove O O\n, O O\nyou O O\ncan O O\nreplace O O\nStart Name Name\nwith O O\nTryStart Name Name\n: O O\n\nKeep O O\nin O O\nmind O O\nthat O O\nthis O O\nmethod O O\nreturns O O\nsynchronously O O\n, O O\nso O O\nit O O\nis O O\nbest O O\nnot O O\nto O O\nrun O O\nin O O\non O O\nthe O O\nUI O O\nthread O O\n. O O\n\nIs O O\nthe O O\nisChecked() Name Name\nmethod O O\nDeprecated O O\n? O O\n\nI O O\nam O O\ncoding O O\nfor O O\nandroid Name Name\nUI O O\nand O O\nusing O O\nUiAutomator Name Name\nFramework O O\nthere O O\nthis O O\nmathod O O\nis O O\nnot O O\ndisplayed O O\n\nI O O\nam O O\ntrying O O\nto O O\nvalidate O O\none O O\nuiobject Name Name\nthrough O O\nisChecked() Name Name\nwhether O O\nit O O\nis O O\nclicked O O\nor O O\nnot O O\n. O O\n\nfrom O O\nthe O O\nbelow O O\nlink O O\ni O O\ncame O O\nto O O\nknow O O\nit O O\nis O O\nDeprecated O O\nand O O\nnow O O\nwe O O\nshould O O\nuse O O\ngetValue() Name Name\n. O O\n\nCode O O\n: O O\n\nHere O O\nthe O O\nproblem O O\nis O O\nthat O O\nthe O O\ngetValue Name Name\nmethod O O\nis O O\nnot O O\ndisplaying O O\ni.e O O\nnotavaible O O\nfor O O\nuse O O\nfor O O\nme O O\nand O O\nisChecked() Name Name\nis O O\nalways O O\nreturning O O\nfalse Name Name\nto O O\nme O O\n. O O\n\nCan O O\nany O O\none O O\ngive O O\nany O O\nsuggestion O O\nto O O\nme O O\n. O O\n\nI O O\nguess O O\nyou O O\nare O O\nreferring O O\nto O O\na O O\nwrong O O\ndocumentation O O\n. O O\n\nPlease O O\ncheck O O\nthis O O\nLink O O\nfor O O\nUIObject Name Name\nclass O O\ndocumentation O O\n. O O\n\nI O O\ndo O O\nn't O O\nthink O O\nisChecked() Name Name\nis O O\ndeprecated O O\n. O O\n\nIt O O\ncan O O\nbe O O\nused O O\nonly O O\non O O\nan O O\nUI Name Name\nObject Name Name\nwho O O\n's O O\nnode O O\ndetail O O\n' Name Name\ncheckable'=>true Name Name\n\nI O O\nhave O O\nsimilar O O\nproblem O O\nexcept O O\nandroid Name Name\nstudio Name Name\nwont O O\neven O O\naccept O O\nthe O O\nmethod O O\n. O O\n\nI O O\n'm O O\nusing O O\na O O\nCheckedTextView Name Name\nand O O\nwhen O O\nI O O\ntry O O\nto O O\nput O O\n\nandroid Name Name\nstudio Name Name\ntells O O\nme O O\n\" O O\ncannot O O\nresolve O O\nmethod O O\nisChecked()\" Name Name\nbut O O\nhas O O\nplenty O O\nof O O\nother O O\nsuggestions O O\nas O O\nexpected O O\n. O O\n\nsuspiciously O O\nisChecked() Name Name\nis O O\nthe O O\nonly O O\nmethod O O\nin O O\nthe O O\ndocumentation O O\nthat O O\nhas O O\nno O O\ndescription O O\nbesides O O\nthe O O\nsignature O O\n. O O\n\nhttp://developer.android.com/reference/android/widget/CheckedTextView.html#isChecked() O O\n\nI O O\nam O O\nattempting O O\nto O O\naccept O O\na O O\nuser O O\nname O O\nthrough O O\nan O O\nApplescript Name Name\nscript O O\n: O O\nI O O\nhave O O\naccomplished O O\nthis O O\n. O O\n\nSo O O\nI O O\nam O O\nthinking O O\nthat O O\nI O O\nneed O O\nto O O\nhave O O\nthe O O\nname O O\nsaved O O\nto O O\na O O\nfile O O\nbecause O O\nthats O O\nall O O\ni O O\nneed O O\nand O O\nhave O O\nanother O O\npiece O O\nof O O\nscript O O\nactivate O O\nevery O O\ntime O O\nI O O\nclick O O\non O O\nthe O O\napp O O\nfrom O O\nthat O O\npoint O O\nand O O\nretrieve O O\nthe O O\nname O O\n. O O\n\nMy O O\nquestion O O\nis O O\nhow O O\nwould O O\nI O O\nget O O\nit O O\nto O O\nnot O O\naccept O O\nthe O O\noriginal O O\nscript O O\nafter O O\nthe O O\nfirst O O\nrun O O\n. O O\n\nAppleScript Name Name\nOverview O O\n\n| O O\nScripting O O\nwith O O\nAppleScript Name Name\n\nOne O O\nway O O\nwould O O\nbe O O\nto O O\nuse O O\nproperties O O\n. O O\n\nThe O O\nproperty-value O O\nis O O\nstored O O\nwithin O O\nthe O O\ncompiled O O\nscript O O\n. O O\n\nIt O O\nalso O O\nworks O O\nwhen O O\nthe O O\nscript O O\nis O O\nsaved O O\nas O O\nan O O\napplication O O\n. O O\n\nOpening O O\nand O O\nrecompiling O O\nit O O\nin O O\nAppleScript Name Name\nEditor Name Name\nresets O O\nthe O O\nvalues O O\n. O O\n\nI O O\nhave O O\nbeen O O\ntrying O O\nto O O\nimplement O O\nthe O O\nuse O O\nof O O\nhigh Name Name\nchart Name Name\nwith O O\ncodeigniter Name Name\n. O O\n\nSo O O\nfar O O\nI O O\nhave O O\ntried O O\nfollowing O O\nthe O O\nsteps O O\nat O O\nhttp://blueflame-software.com/using-highcharts-with-codeigniter/ O O\n, O O\nbut O O\neach O O\ntime O O\nI O O\npreview O O\nmy O O\nwork O O\nin O O\nthe O O\nbrowser Name Name\n, O O\nI O O\nget O O\nan O O\nempty O O\nscreen O O\nwith O O\nno O O\nresult O O\n. O O\n\nPlease O O\ncan O O\nsome O O\non O O\nhelp O O\nme O O\nto O O\nresolve O O\nit O O\n. O O\n\nI O O\nhave O O\nbeen O O\non O O\nthis O O\nfor O O\nsometime O O\nnow O O\n, O O\nyet O O\nno O O\npositive O O\nresult O O\n\nAlso O O\nI O O\nhave O O\ntried O O\nsome O O\nof O O\nthe O O\nsteps O O\nshown O O\nhere O O\non O O\nstack Name Name\noverflow Name Name\n, O O\nyet O O\nnothing O O\nstill O O\ndisplay O O\non O O\nthe O O\nbrowser Name Name\nwhen O O\nI O O\nview O O\nit O O\n. O O\n\nBelow O O\nis O O\nmy O O\ncode O O\n: O O\n\nyou O O\nhave O O\nto O O\nimplement O O\nit O O\nas O O\na O O\nlibrary O O\n. O O\n\nBut O O\nthe O O\nsteps O O\nare O O\nquite O O\nlarger O O\nto O O\ndescribe O O\nhere O O\n. O O\n\nHere O O\nare O O\nsome O O\nlinks O O\n\nhttps://blueflame-software.com/using-highcharts-with-codeigniter/ O O\n\nhttps://blueflame-software.com/using-highcharts-with-codeigniter/ O O\n\nI O O\nam O O\ntrying O O\nto O O\ndo O O\na O O\nsearch O O\nquery O O\non O O\nthe O O\nSoundCloud Name Name\nAPI Name Name\n. O O\n\nUsing O O\ntheir O O\nJavaScript Name Name\nSDK Name Name\n, O O\nthe O O\nfollowing O O\nworks O O\n: O O\n\nBut O O\nif O O\nI O O\ntry O O\nto O O\ndo O O\nthe O O\nsame O O\nquery O O\nusing O O\ncURL Name Name\n: O O\n\nIt O O\nsays O O\n<error>401 Name Name\n- O O\nUnauthorized</error> O O\n\nIf O O\nI O O\nchange O O\nthe O O\norder O O\nof O O\nthe O O\nquery O O\nparams O O\nhttp://api.soundcloud.com/tracks?client_id=xxxx&q=punk Name Name\nit O O\nwill O O\ndisregard O O\nthe O O\nq Name Name\nparam O O\nand O O\nrespond O O\nwith O O\nthe O O\ndefault O O\ntrack O O\nlisting O O\n. O O\n\nWhat O O\nis O O\nthe O O\nproper O O\nway O O\nto O O\nquery O O\nthe O O\ntracks O O\nendpoint O O\nfrom O O\ncURL Name Name\n? O O\n\nThere O O\n's O O\nnothing O O\nincorrect O O\nabout O O\nthe O O\nURL O O\nyou O O\n're O O\nusing O O\n, O O\nso O O\nif O O\nyou O O\n're O O\ngetting O O\na O O\n401 O O\nit O O\nis O O\nbecause O O\nyou O O\nare O O\nusing O O\nan O O\ninvalid O O\nclient Name Name\nid Name Name\n. O O\n\nPlease O O\ndouble O O\ncheck O O\nthat O O\nthe O O\nclient Name Name\nid Name Name\nis O O\nthe O O\nsame O O\nas O O\nthe O O\none O O\nyou O O\nare O O\nusing O O\nwhen O O\ninitializing O O\nthe O O\nJavaScript Name Name\nSDK Name Name\n. O O\n\nFor O O\nexample O O\n, O O\nthe O O\nfollowing O O\nworks O O\njust O O\nfine O O\nusing O O\na O O\nclient Name Name\nid Name Name\nof O O\none O O\nof O O\nmy O O\ntest O O\napps O O\n: O O\n\ncurl Name Name\n\" Name Name\nhttps://api.soundcloud.com/tracks?q=track&client_id=aeb03ac55f278fc7e579c744144b1d5d Name Name\n\nThe O O\norder O O\nof O O\nthe O O\nparameters O O\nin O O\nthe O O\nquerystring O O\nwill O O\nhave O O\nno O O\neffect O O\non O O\nthe O O\nresponse O O\n. O O\n\nI O O\nam O O\nlooking O O\nfor O O\nsome O O\nsimple O O\nsql Name Name\nto O O\nconvert O O\na O O\nsimple O O\nsql Name Name\nquery O O\nwhich O O\nwill O O\nreturn O O\nme O O\nsome O O\ncolumn Name Name\nvalues O O\nlike O O\nthis O O\n\nwhich O O\nreturns O O\nme O O\n\nwhat O O\nI O O\nactually O O\nwant O O\nis O O\nto O O\nappend O O\nsomething O O\nto O O\nthis O O\nquery O O\nthat O O\nwill O O\nreturn O O\nme O O\nsame O O\nrecord O O\nbut O O\ncertain O O\nnumber O O\nof O O\ntimes O O\nwith O O\none O O\ndiffering O O\nvalue O O\n. O O\n\nAny O O\nhelp O O\nor O O\nguidance O O\nis O O\nappreciated O O\n. O O\n\nP.S O O\n. O O\nIf O O\nanyone O O\nbe O O\nable O O\nto O O\nshow O O\nit O O\nhow O O\nto O O\ndo O O\nit O O\nin O O\nc# Name Name\nwith O O\nsql Name Name\nmapping O O\nto O O\nobject O O\nwill O O\nbe O O\nuseful O O\nas O O\nwell.Thanks O O\nalot O O\n. O O\n\nYou O O\n've O O\nnot O O\nstated O O\nwhere O O\nthe O O\nvalues O O\n' O O\nx Name Name\n' O O\n, O O\n' O O\ny Name Name\n' O O\nand O O\n' O O\nz Name Name\n' O O\ncome O O\nfrom O O\n, O O\nbut O O\ntypically O O\nthis O O\nwould O O\nbe O O\nfrom O O\nanother O O\ntable Name Name\n. O O\n\nIn O O\nwhich O O\ncase O O\n, O O\nlet O O\n's O O\nmake O O\nanother O O\ntable Name Name\nand O O\njoin O O\nthem O O\nin O O\na O O\nway O O\nthat O O\nevery O O\nrow Name Name\nin O O\nthe O O\n2nd O O\ntable Name Name\njoins O O\nwith O O\nthe O O\nsame O O\nrow Name Name\nin O O\nthe O O\ntable Name Name\nthat O O\nyou O O\nhave O O\ndescribed O O\n: O O\n\nResult O O\n: O O\n\nWell O O\nok O O\n, O O\nhere O O\n's O O\nsome O O\nSQL Name Name\nmagic O O\n. O O\n\nThis O O\nis O O\njust O O\nusing O O\nan O O\n( O O\nimplicit O O\n) O O\ncross O O\njoin O O\nto O O\nget O O\nthe O O\ncartesian O O\nproduct O O\nof O O\nthe O O\nsingle O O\n@alphabets O O\nrow Name Name\nand O O\nthe O O\nthree O O\nxyz Name Name\nrows Name Name\n. O O\n\nProject O O\nStructure O O\n( O O\nsrc O O\ncontains O O\nreact O O\ncomponent O O\nclasses O O\nusing O O\njsx Name Name\nsyntax O O\n) O O\n: O O\n\nCommand O O\nI O O\n'm O O\nrunning O O\n: O O\nbabel Name Name\nsrc Name Name\n--out-dir Name Name\nlib Name Name\n\nAnd O O\nhere O O\nis O O\nthe O O\nerror O O\n\nhere O O\nare O O\nmy O O\ntop O O\nbabel Name Name\ndevDependencies O O\n( O O\nnot O O\nincluding O O\nplugins O O\n) O O\n\nCould O O\nthis O O\nbe O O\na O O\nlegitimate O O\nbug O O\nin O O\nbabel Name Name\n? O O\n\nOr O O\nperhaps O O\nI O O\nneed O O\na O O\ndifferent O O\nnode Name Name\nversion O O\n, O O\ndependency O O\nversion O O\n? O O\n\nAny O O\nthoughts O O\nor O O\nadvice O O\nwould O O\nbe O O\ngreatly O O\nappreciated O O\n. O O\n\nRealized O O\nthat O O\na O O\ncopy O O\nof O O\nnode_modules O O\nsomehow O O\nmade O O\nit O O\ninto O O\nmy O O\nsrc O O\nfolder O O\n. O O\n\nSo O O\nbabel Name Name\nwas O O\nrunning O O\nagainst O O\nall O O\nof O O\nnode_modules Name Name\n. O O\n\nAlso O O\nsimplified O O\nmy O O\nbabel.rc Name Name\nfile O O\nto O O\njust O O\nthis O O\n.. O O\n. O O\n\nAfter O O\nthat O O\nit O O\nworks O O\nfine O O\n. O O\n\nSo O O\nthe O O\nissue O O\nwas O O\neither O O\nfrom O O\nbabel Name Name\nrunning O O\naginst O O\nsomething O O\nweird O O\nin O O\nnode_modules Name Name\nor O O\none O O\nof O O\nthe O O\nmany O O\nplugins O O\nI O O\nhad O O\nmanually O O\nspecified O O\nbefore O O\n. O O\n\nThe O O\nerror O O\nmessage O O\nis O O\nstill O O\nreally O O\nconfusing O O\nbut O O\nat O O\nleast O O\nI O O\ndo O O\nn't O O\nthink O O\nit O O\nwas O O\nany O O\nfault O O\nof O O\nbabel Name Name\n. O O\n\nI O O\nhave O O\na O O\nmodel O O\nthat O O\nneeds O O\nto O O\nbe O O\nsaved O O\nin O O\nto O O\na O O\nMongoDB Name Name\ncollection O O\n. O O\n\nTo O O\nget O O\nthe O O\ncollection O O\nname O O\nI O O\nhave O O\ntwo O O\noptions O O\nbefore O O\nme O O\n. O O\n\n1) O O\nAttribute O O\n\nI O O\ndecorate O O\nthe O O\nclass O O\nwith O O\na O O\ncustom O O\nattribute O O\nand O O\nuse O O\nreflection O O\nto O O\naccess O O\nthe O O\nvalue O O\ninside O O\nit O O\n. O O\n\nI O O\ncan O O\nthen O O\ncache O O\nthis O O\nwith O O\nthe O O\ntype O O\nto O O\navoid O O\nfuture O O\nlookups O O\n. O O\n\n2) O O\nStatic O O\nProperty O O\n\nHere O O\nI O O\nhave O O\na O O\nstatic Name Name\nproperty O O\nin O O\nthe O O\nclass O O\nthat O O\ncontains O O\nthe O O\ncollection O O\nname O O\n. O O\n\nI O O\nfind O O\nthat O O\nI O O\nam O O\ninclined O O\nto O O\ngo O O\nwith O O\nthe O O\nformer O O\nas O O\nit O O\nlooks O O\nand O O\nfeels O O\ncleaner O O\nbut O O\nsome O O\nof O O\nthe O O\nsenior O O\ndevs O O\nhere O O\nare O O\nturning O O\ntheir O O\nnose O O\nup O O\nat O O\nthe O O\nuse O O\nof O O\nreflection O O\n. O O\n\nIs O O\nthere O O\na O O\ncase O O\nto O O\nbe O O\nmade O O\nfor O O\nthe O O\nfirst O O\noption O O\nor O O\nis O O\nit O O\njust O O\nbetter O O\nto O O\ngo O O\nwith O O\noption O O\n2 O O\n? O O\n\nThis O O\nis O O\na O O\nclear O O\ncase O O\nof O O\nmetadata O O\nvs O O\n. O O\ndata O O\n: O O\n\nOption O O\n1 O O\n: O O\nAttributes O O\nare O O\nsupposed O O\nto O O\nhold O O\nmetadata O O\nabout O O\nthe O O\nentities O O\nthey O O\nare O O\nattached O O\nto O O\n. O O\n\nOption O O\n2 O O\n: O O\nmember O O\nfields O O\nand O O\nproperties O O\n, O O\nregardless O O\nif O O\ninstance O O\nor O O\nstatic Name Name\n, O O\nare O O\nsupposed O O\nto O O\nhold O O\ndata O O\nthat O O\nmake O O\nup O O\nthe O O\nintegral O O\nvalue O O\nof O O\nthe O O\nclass O O\n. O O\n\nHence O O\n, O O\noption O O\n1 O O\n, O O\nattributes O O\n, O O\nis O O\nthe O O\nright O O\napproach O O\nto O O\nrepresent O O\nmetadata O O\n. O O\n\nUsage O O\nof O O\nreflection O O\nis O O\na O O\nmere O O\ntechnicality O O\nand O O\ncan O O\nbe O O\nencapsulated O O\ninto O O\na O O\nseparate O O\nclass O O\n, O O\ne.g O O\n. O O\n\nan O O\nAttributeManager Name Name\n, O O\nthat O O\nwould O O\nease O O\naccess O O\nto O O\nmetadata O O\nand O O\ncache O O\nthem O O\nappropriately O O\nto O O\navoid O O\nperformance O O\noverhead O O\n( O O\nshould O O\nthat O O\nbe O O\nan O O\nissue O O\nin O O\na O O\nparticular O O\ncase O O\n) O O\n. O O\n\nI O O\n'm O O\nat O O\na O O\nclient Name Name\nsite O O\nwhere O O\nthey O O\nhave O O\nan O O\napplication O O\nwhich O O\nbegan O O\nin O O\nSharePoint Name Name\nand O O\nis O O\nslowly O O\nmigrating O O\naway O O\nto O O\na O O\nvery O O\ncustom O O\nASP.NET Name Name\napplication O O\n. O O\n\nSome O O\nof O O\ntheir O O\ndata O O\nelements O O\nare O O\nstill O O\nhosted O O\nwithin O O\nSharePoint Name Name\nlists O O\n, O O\ntwo O O\nof O O\nwhich O O\ncurrently O O\nin O O\nquestion O O\nare O O\nsome O O\n\" O O\nNotes O O\n\" O O\nand O O\n\" O O\nTasks O O\n\" O O\n( O O\nfairly O O\nsimple O O\ndata O O\nelements O O\nin O O\ntheir O O\nSharePoint Name Name\nsetup O O\n, O O\nnothing O O\nspecial O O\nabout O O\nthem O O\n) O O\n. O O\n\nOne O O\nof O O\nthe O O\nthings O O\nI O O\nneed O O\nto O O\nbe O O\nable O O\nto O O\ndo O O\nfrom O O\nwithin O O\nASP.NET Name Name\nis O O\nto O O\nautomatically O O\ncreate O O\nsome O O\nnew O O\nitems O O\nfor O O\nthese O O\nlists Name Name\nand O O\nadd O O\nthem O O\nfrom O O\ncode O O\n. O O\n\nSo O O\nfar O O\nit O O\n's O O\npretty O O\neasy O O\n. O O\n\nI O O\nfound O O\nthe O O\nexisting O O\nweb O O\npart O O\nwhich O O\nhandled O O\nthe O O\nediting O O\nfor O O\nthose O O\nitems O O\n, O O\nattached O O\nthe O O\ndebugger O O\nto O O\nit O O\n, O O\ntracked O O\nhow O O\nit O O\ngot O O\nits O O\nvalues O O\nand O O\nwhat O O\nit O O\nadded O O\nto O O\nthe O O\nlist Name Name\n, O O\netc O O\n. O O\n\nHowever O O\n, O O\none O O\nof O O\nthe O O\nfields O O\nbeing O O\nadded O O\nto O O\nthe O O\nlist O O\nitem O O\nis O O\nn't O O\nquite O O\nas O O\nobvious O O\n. O O\n\nIn O O\nthe O O\nexisting O O\nweb O O\npart O O\nUI O O\n, O O\nthe O O\nfield O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nEssentially O O\n, O O\nit O O\n's O O\na O O\nfield O O\nfor O O\nentering O O\na O O\nuser O O\nfrom O O\nthe O O\ncurrent O O\nWindows Name Name\ndomain O O\n. O O\n\nThe O O\nbook O O\nicon O O\nopens O O\na O O\npop-up Name Name\nwhich O O\nallows O O\nthe O O\nuser O O\nto O O\nsearch O O\nfor O O\na O O\nname O O\n, O O\netc O O\n. O O\n\nIn O O\nmy O O\ncurrent O O\ntesting O O\n, O O\nI O O\n'm O O\nrunning O O\nas O O\nlocal O O\nAdministrator O O\non O O\na O O\ndevelopment O O\nmachine O O\n. O O\n\nSo O O\nI O O\njust O O\nlook O O\nfor O O\n\" O O\nadmin Name Name\n\" O O\nin O O\nthe O O\npop-up Name Name\nand O O\nit O O\npopulates O O\nthe O O\nfield O O\nwith O O\n\" Name Name\n[ Name Name\nmachine Name Name\nname Name Name\n] Name Name\n\\Administrator Name Name\n\" Name Name\nas O O\nexpected O O\n. O O\n\nThen O O\n, O O\nin O O\ndebugging O O\n, O O\nthe O O\nvalue O O\nthat O O\ngets O O\npulled O O\nfrom O O\nthe O O\nfield O O\nand O O\nentered O O\ninto O O\nthe O O\nSharePoint Name Name\nlist O O\nitem O O\nis O O\n\" O O\n1 Name Name\n\" O O\nas O O\nopposed O O\nto O O\na O O\nname O O\nor O O\nanything O O\nlike O O\nthat O O\n. O O\n\nI O O\nassume O O\nthat O O\n\" O O\n1 Name Name\n\" O O\nis O O\nan O O\nidentifier O O\nfor O O\nthe O O\nlocal O O\nadmin O O\naccount O O\n. O O\n\nMakes O O\nsense O O\n, O O\nafter O O\nall O O\n. O O\n\nBut O O\nmy O O\nquestion O O\nis O O\n, O O\nhow O O\ncan O O\nI O O\nget O O\nthat O O\nidentifier O O\nfor O O\nthe O O\ncurrent O O\nlogged-in O O\nuser O O\nin O O\ncode O O\n? O O\n\nI O O\n've O O\nfound O O\ncode O O\nto O O\nget O O\nthe O O\ncurrent O O\nuser O O\n's O O\nname O O\n, O O\nbut O O\nnot O O\nany O O\nkind O O\nof O O\nnumeric O O\n( O O\neven O O\nthough O O\nit O O\n's O O\na O O\nstring Name Name\n) O O\nID Name Name\n. O O\n\nAdditionally O O\n, O O\nthis O O\nwould O O\nn't O O\njust O O\nbe O O\nhappening O O\ninside O O\nof O O\nan O O\nASP.NET Name Name\napplication O O\ncontext O O\n. O O\n\nThere O O\n's O O\nalso O O\na O O\nWPF Name Name\nclient Name Name\napplication O O\nfor O O\nlaptops Name Name\nwhich O O\nwould O O\nbe O O\ngenerating O O\nthese O O\nlist Name Name\nitems O O\nand O O\nsynchronizing O O\nthem O O\nback O O\nto O O\nthe O O\nserver Name Name\nwhen O O\nconnected O O\n. O O\n\nI O O\n'm O O\ncurrently O O\noperating O O\non O O\nthe O O\nassumption O O\nthat O O\nthe O O\nclient Name Name\nuser O O\nwould O O\nbe O O\nlogged O O\nin O O\nwith O O\na O O\nproper O O\ndomain O O\naccount O O\nknown O O\nto O O\nthe O O\nserver Name Name\n. O O\n\nI O O\nimagine O O\nthis O O\nis O O\npretty O O\neasy O O\n, O O\nI O O\njust O O\nhave O O\nn't O O\nstumbled O O\nacross O O\nwhat O O\nI O O\nneed O O\nquite O O\nyet O O\n. O O\n\nI O O\nsuppose O O\nyou O O\n're O O\nlooking O O\nfor O O\nthis O O\n: O O\n\nBy O O\nthe O O\nway O O\n, O O\nthis O O\nis O O\nthe O O\ninternal O O\nId Name Name\nassigned O O\nby O O\nSharePoint Name Name\nto O O\nthe O O\nuser O O\n. O O\n\nTo O O\nget O O\nthis O O\nId Name Name\nfrom O O\na O O\nWPF Name Name\napplication O O\n, O O\nyou O O\ncould O O\ndeploy O O\na O O\nWebService O O\ninside O O\nSharePoint Name Name\nthat O O\nwould O O\nreturn O O\nthis O O\nId Name Name\n. O O\n\nOr O O\nyou O O\ncan O O\neven O O\nquery O O\nthe O O\nSharePoint Name Name\ndatabase O O\n, O O\nbut O O\nI O O\n'm O O\nnot O O\nsure O O\nif O O\nit O O\n's O O\nsafe O O\n:-) O O\n\nI O O\n'm O O\nusing O O\nMule Name Name\nstandalone Name Name\n3.1.0 Name Name\nand O O\nI O O\nhave O O\na O O\nflow O O\nwith O O\na O O\ndefault O O\nexception Name Name\nstrategy O O\n. O O\n\nMy O O\nfooImpl Name Name\nclass O O\nthrows O O\nan O O\nexception Name Name\non O O\npurpose O O\nand O O\nits O O\nstacktrace O O\ngets O O\nvomited O O\nonto O O\nthe O O\nmule Name Name\nstdout Name Name\n- O O\nExceptionTransformer Name Name\nis O O\nnot O O\ntriggered O O\nand O O\nI O O\nget O O\nno O O\nemail O O\n. O O\n\nIf O O\nI O O\nremove O O\nthe O O\ndefault-exception-strategy Name Name\ncompletely O O\nnothing O O\nat O O\nall O O\nchanges O O\n. O O\n\nI O O\nwant O O\nit O O\nto O O\nsend O O\nan O O\nemail O O\nand O O\nprint O O\nthe O O\nexception Name Name\nwith O O\nExceptionTransformer Name Name\n. O O\n\nWhat O O\nam O O\nI O O\ndoing O O\nwrong O O\n? O O\n\nFurther O O\non O O\n, O O\nI O O\ntried O O\nto O O\nuse O O\n<custom-exception-strategy Name Name\nclass=\"com.arcusys.nkeservice.mule.dynasty.ExceptionTest\"> Name Name\ninstead O O\nof O O\ndefault-exception-strategy Name Name\n. O O\n\nThen O O\nExceptionTest Name Name\ngets O O\ninstantiated O O\nduring O O\nservice O O\nstartup O O\n, O O\nbut O O\n@override Name Name\nhandleException Name Name\nnever O O\ngets O O\ncalled O O\n. O O\n\nMy O O\nforced O O\nexception Name Name\nI O O\nget O O\nto O O\nstdout Name Name\nis O O\nlike O O\nthis O O\n: O O\n\nThere O O\nwas O O\nproblems O O\nwith O O\nCXF Name Name\ncomponents O O\ninvoking O O\nexception Name Name\nstrategies O O\nprior O O\nto O O\nMule Name Name\n3.1.3 Name Name\n: O O\n\nhttp://mule.1045714.n5.nabble.com/mule-scm-mule-22344-branches-mule-3-1-x-modules-cxf-src-test-resources-EE-2273-td4557349.html O O\n\nEE-2273 O O\n- O O\nhttp://www.mulesoft.org/documentation/display/current/Mule+ESB+3.1.3+Release+Notes O O\n\nuse O O\nbelow O O\nas O O\npart O O\nof O O\nchoice O O\nbased O O\nexception Name Name\nstrategy O O\nfor O O\nyour O O\nflow Name Name\n\nlet O O\nsay O O\nthat O O\ni O O\nhave O O\na O O\nfile O O\n\nhow O O\nwould O O\ni O O\nread O O\nthat O O\ninto O O\na O O\nvector Name Name\ncalled O O\nvector Name Name\n<Item> Name Name\nitems Name Name\n; O O\nwhere O O\nItem Name Name\nis O O\na O O\nclass O O\nthat O O\nconsists O O\nof O O\nthose O O\nnames O O\nas O O\nlisted O O\nin O O\nthe O O\nlist Name Name\n. O O\n\ni O O\nhave O O\na O O\nset() Name Name\nmethods O O\nfor O O\nall O O\nof O O\nthem O O\nbut O O\nhow O O\nwould O O\ni O O\nread O O\none O O\nof O O\neach O O\nvalues O O\nand O O\nset O O\nit O O\nfor O O\nexample O O\nsetID() Name Name\nand O O\nits O O\nvalue O O\nand O O\nif O O\nit O O\nis O O\nempty O O\nput O O\na O O\nvalue O O\n-1 Name Name\n. O O\n\nWhat O O\ni O O\nhave O O\nso O O\nfar O O\nis O O\njust O O\na O O\nbasic O O\nfile O O\nopen O O\n\nshould O O\ni O O\nuse O O\na O O\nistringstream Name Name\nor O O\nwhat O O\n? O O\n\nUPDATE O O\n: O O\n\nBUT O O\nI O O\nget O O\nan O O\nerror O O\n: O O\nstatement O O\ncannot O O\nresolve O O\naddress O O\nof O O\noverloaded O O\nfunction O O\nat O O\nline O O\n: O O\nifstream Name Name\ninput(file_name) Name Name\n\nThey O O\nway O O\nI O O\nwould O O\ndo O O\nis O O\nis O O\nto O O\nstart O O\nwriting O O\na O O\nsuitable O O\ninput O O\noperator Name Name\n: O O\n\nOnce O O\nthis O O\noperator Name Name\nis O O\nin O O\nplace O O\n, O O\nyou O O\ncan O O\nread O O\nthe O O\nfile O O\nusing O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nI O O\nwonder O O\nif O O\nit O O\n's O O\npossible O O\nto O O\ncreate O O\ntwo O O\nconsecutive O O\nlists Name Name\nin O O\nmarkdown O O\nwithout O O\nthem O O\nbeing O O\nmerged O O\nautomatically O O\n: O O\n\nExample O O\n: O O\n\na Name Name\n\nb Name Name\n\nx Name Name\n\ny Name Name\n\nThe O O\nfollowing O O\nmarkdown Name Name\ndoes O O\nn't O O\nwork O O\nsince O O\nit O O\nputs O O\nthe O O\nsecond O O\nlist Name Name\ninside O O\nthe O O\nlast O O\nelement O O\nof O O\nthe O O\nfirst O O\nlist Name Name\n: O O\n\nDemo O O\n: O O\n\na Name Name\n\nb Name Name\n\nx Name Name\n\ny Name Name\n\nWhile O O\nany O O\nsolutions O O\nare O O\nwelcome O O\n, O O\nI O O\n'd O O\nprefer O O\none O O\nworking O O\nwith O O\npython-markdown Name Name\n. O O\n\nThe O O\neasiest O O\nand O O\ncleanest O O\nway O O\nthat O O\nI O O\nfound O O\nis O O\nadding O O\na O O\ncomment O O\nbetween O O\nlists Name Name\n: O O\n\nHere O O\nis O O\na O O\nworking O O\nexample O O\nin O O\nstackoverflow Name Name\n's O O\nmarkdown Name Name\n: O O\n\na Name Name\n\nb Name Name\n\nx Name Name\n\ny Name Name\n\nHowever O O\n, O O\nit O O\n's O O\nsad O O\nthat O O\nthis O O\nbugs O O\noccurs O O\n: O O\nsomeone O O\nmust O O\ngo O O\nand O O\nfill O O\nthe O O\nbugs O O\nfor O O\nit O O\nfor O O\ndifferent O O\nmarkdown Name Name\nimplementations O O\n. O O\n\nI O O\nhave O O\na O O\nListView Name Name\nand O O\nI O O\nwant O O\nthe O O\nfirst O O\ntwo O O\nentries O O\nin O O\nit O O\nto O O\nbe O O\ndisplayed O O\ndifferently O O\nthan O O\nthe O O\nrest O O\n. O O\n\nNothing O O\nfancy O O\n, O O\nI O O\nwant O O\nthem O O\nall O O\nto O O\njust O O\nbe O O\ntext Name Name\nviews Name Name\n. O O\n\nBut O O\nthe O O\nfirst O O\ntwo O O\nentries O O\nneed O O\nto O O\nhave O O\ndifferent O O\nsizes O O\nand O O\nweights O O\nthan O O\nthe O O\nrest O O\n. O O\n\nI O O\ntried O O\nmodifying O O\nthe O O\nArrayAdapter Name Name\nclass O O\nlike O O\nso O O\n: O O\n\nBut O O\nthis O O\ninadvertantly O O\ncauses O O\nsome O O\nof O O\nthe O O\nother O O\ntextviews Name Name\nto O O\ntake O O\non O O\nthese O O\nspecial O O\nattributes O O\n. O O\n\nI O O\nthink O O\nit O O\n's O O\nbecause O O\ncause O O\ntextviews Name Name\nget O O\n\" O O\nrecycled O O\n\" O O\nin O O\nthe O O\nAbsListAdapter Name Name\nclass O O\n. O O\n\nTry O O\nlike O O\nthis O O\n: O O\n\nI O O\nhave O O\nthe O O\nfollowing O O\ntables Name Name\nwith O O\ntheir O O\ncolumns Name Name\n( O O\nonly O O\nthe O O\nrelevant O O\ncolumns Name Name\nare O O\nlisted O O\n) O O\n: O O\n\nEDIT O O\n: O O\nI O O\nhad O O\nforgotten O O\nto O O\nmention O O\nthat O O\nCoreHourID Name Name\nis O O\nn't O O\na O O\nunique O O\nfield O O\n, O O\ntable Name Name\ncan O O\nlook O O\nlike O O\nthis O O\n: O O\n\nSorry O O\nfor O O\nthe O O\nbig O O\nlayout O O\n, O O\nI O O\nreally O O\ndo O O\nn't O O\nknow O O\nhow O O\nto O O\nproperly O O\npost O O\ntable Name Name\ninformation O O\n. O O\n\nNow O O\nhere O O\n's O O\nan O O\nattempt O O\nat O O\nexplaining O O\nwhat O O\nI O O\n'm O O\ntrying O O\nto O O\ndo O O\n: O O\n\nEvery O O\nday O O\n, O O\na O O\nrow Name Name\nshould O O\nbe O O\ninserted O O\nin O O\nEntry Name Name\nand O O\nHour Name Name\nfor O O\nall O O\nemployees O O\nwho O O\nare O O\nWorkingFromHome Name Name\n. O O\n\nIn O O\nthe O O\nEntry Name Name\ntable Name Name\nit O O\nshould O O\nplace O O\nthe O O\ncorresponding O O\nEmployeeNumber Name Name\n, O O\nand O O\nfor O O\nJustifyDate Name Name\nit O O\nshould O O\nadd O O\nwhatever O O\nday O O\nit O O\nis O O\nwhen O O\nthe O O\njob O O\nis O O\nrunning O O\n. O O\n\nFor O O\nthe O O\nEntryDate Name Name\nfield O O\nit O O\nshould O O\nadd O O\nthat O O\nday O O\n's O O\ndate O O\n, O O\nbut O O\nthe O O\ntime O O\npart O O\nshould O O\nbe O O\nthe O O\nInHour Name Name\nfrom O O\nthe O O\nfirst O O\ncorresponding O O\nCoreHour Name Name\nrow Name Name\n. O O\n\nFor O O\nthe O O\nHour Name Name\ntable O O\nit O O\nshould O O\nadd O O\nthe O O\nEntryID Name Name\nthat O O\njust O O\ngot O O\ninserted O O\nin O O\nthe O O\nEntry Name Name\ntable Name Name\n, O O\nand O O\nthe O O\nInHour Name Name\nshould O O\nbe O O\nthe O O\nsame O O\nas O O\nthe O O\nEntryDate Name Name\nand O O\nfor O O\nthe O O\nOutHour Name Name\nfield O O\nit O O\nshould O O\nadd O O\na O O\nDateTime Name Name\nbased O O\non O O\nthe O O\nlast O O\nOutHour Name Name\ncorresponding O O\nfor O O\nthe O O\nemployee O O\n's O O\nCoreHourID Name Name\n. O O\n\nI O O\n'm O O\nstruggling O O\na O O\nlot O O\n, O O\nso O O\nany O O\nhelp O O\nis O O\nappreciated O O\n. O O\n\nPS O O\n: O O\nAny O O\ncomments/questions O O\nregarding O O\nmy O O\nexplanation O O\nare O O\nwelcome O O\nand O O\nI O O\nwill O O\ngladly O O\nrespond O O\n. O O\n\nThe O O\nfollowing O O\ncould O O\nbe O O\nencapsulated O O\ninto O O\na O O\nstored O O\nprocedure O O\nthat O O\ncan O O\nbe O O\nexecuted O O\nvia O O\na O O\nscheduled O O\njob O O\n. O O\n\nI O O\n'm O O\nnot O O\nexactly O O\nsure O O\nwhat O O\nyou O O\nmeant O O\nby O O\nfor O O\nJustifyDate Name Name\nit O O\nshould O O\nadd O O\nwhatever O O\nday O O\nit O O\nis O O\nwhen O O\nthe O O\njob O O\nis O O\nrunning O O\n. O O\n\n( O O\nRevised O O\nto O O\nuse O O\nOutput O O\nclause O O\n) O O\n. O O\n\nGiven O O\nthis O O\ntable Name Name\n: O O\n\nWith O O\nthis O O\nmodel O O\nclass O O\n: O O\n\nIs O O\nit O O\npossible O O\nfor O O\na O O\nDataContext Name Name\nto O O\nfill O O\nthe O O\nArbitraryText Name Name\nproperty O O\nwhen O O\nusing O O\nthe O O\nExecuteQuery Name Name\nmethod O O\n: O O\n\nIt O O\nseems O O\nthat O O\nthe O O\nentity O O\nmapping O O\nalgorithm O O\nignores O O\nany O O\nproperty O O\nnot O O\nmarked O O\nwith O O\nColumnAttribute Name Name\n, O O\nbut O O\nis O O\nthere O O\nanother O O\nway O O\nof O O\ndoing O O\nthis O O\n? O O\n\nI O O\n'd O O\nprefer O O\nnot O O\nhaving O O\nto O O\ndo O O\nthe O O\nmapping O O\nmyself O O\n, O O\nbut O O\nthis O O\nlooks O O\nlike O O\nmy O O\nonly O O\noption O O\n. O O\n\nEdit O O\n: O O\nWhat O O\n's O O\nannoying O O\nis O O\nthat O O\nthe O O\nDataContext.ExecuteQuery Name Name\nfunction O O\nwill O O\nfill O O\na O O\nPOCO Name Name\nobject O O\nfrom O O\na O O\nquery O O\n: O O\n\nSo O O\nmy O O\ncurrent O O\nsolution O O\nis O O\nto O O\nhave O O\nan O O\ninner O O\nclass O O\non O O\nmy O O\nLINQ-mapped Name Name\nobject O O\nthat O O\nholds O O\nthe O O\nextra O O\ndata O O\nmy O O\naggregate O O\nquery O O\nreturns O O\n. O O\n\nThis O O\nis O O\nsub-optimal O O\n, O O\nas O O\nsome O O\nproperties O O\nare O O\nduplicated O O\n( O O\nfor O O\nexample O O\n, O O\nId Name Name\nand O O\nText Name Name\n) O O\n. O O\n\nNot O O\nas O O\nfar O O\nas O O\nI O O\nknow O O\n. O O\n\nYou O O\ncould O O\nprobably O O\ndo O O\nsome O O\ngrungy O O\nthings O O\nto O O\nmarry O O\ndata O O\nfrom O O\na O O\nUDF O O\n, O O\nperhaps O O\n- O O\nbut O O\nother O O\nthan O O\nthat O O\n, O O\nit O O\nis O O\ngoing O O\nto O O\nwant O O\nto O O\nbe O O\nable O O\nto O O\nmap O O\nthe O O\ncolumns Name Name\n. O O\n\n( O O\nwhere O O\nthe O O\nUDF O O\njust O O\nreturns O O\nthe O O\narbitrary O O\ntext Name Name\nand O O\nthe O O\ncomment-id Name Name\n) O O\n\nAlternatively O O\n- O O\nA O O\nwhile O O\nI O O\nwrote O O\na O O\nfew O O\nvariants O O\non O O\nExecuteQuery Name Name\nthat O O\nmight O O\nbe O O\nuseful O O\nif O O\nyou O O\nneed O O\nto O O\nuse O O\nthis O O\napproach O O\nfor O O\nlots O O\nof O O\ndifferent O O\nthings. O O\n. O O\n\nPersonally O O\n, O O\nI O O\n'd O O\nprobably O O\ntry O O\nto O O\nside-step O O\nthe O O\nissue O O\nfirst O O\n, O O\nthough O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nappend O O\nan O O\nexisting O O\nline O O\nin O O\na O O\nfile O O\n( O O\nCent Name Name\nOS Name Name\n) O O\n. O O\n\nFor O O\nexample O O\nI O O\nhave O O\na O O\nfile O O\nthat O O\nhave O O\nthe O O\nfollowing O O\n\nso O O\nadding O O\nhash O O\nto O O\nthe O O\n' O O\nto O O\nthis O O\nline O O\n' O O\n\nUsing O O\nsed Name Name\nwill O O\ndo O O\nthe O O\ntrick O O\n? O O\n\n** O O\n\nUpdate O O\n: O O\n\n** O O\njust O O\nso O O\nyou O O\nfor O O\ngeneral O O\ninformation O O\n, O O\nI O O\n'm O O\nusing O O\nthis O O\nto O O\nedit O O\nsudoers Name Name\nfile O O\nthis O O\nwill O O\nbe O O\npart O O\nof O O\na O O\nscript O O\nI O O\n'm O O\nworking O O\non O O\n. O O\n\nWhile O O\nworking O O\nwith O O\ndifference O O\nbranches O O\nin O O\ngit Name Name\nI O O\nusually O O\nprefer O O\nto O O\nall O O\nbranches O O\nup O O\nto O O\ndate O O\nwith O O\nmaster O O\n. O O\n\nSo O O\nmy O O\nusual O O\nworkflow O O\nis O O\nas O O\nfollow O O\n\nWork O O\non O O\nthe O O\nbranch O O\n( O O\ne.g O O\n. O O\nfeature Name Name\n1) Name Name\n\nCheckout O O\nmaster O O\nand O O\nre-base O O\nbranch O O\n\nCheckout O O\nanother O O\nbranch O O\n( O O\ne.g O O\n. O O\nfeature Name Name\n2) Name Name\n\nRe-base O O\n( O O\nfeature O O\n2) O O\nbranch O O\nwith O O\nmaster O O\n. O O\n\nThis O O\nway O O\nmy O O\nmaster O O\nas O O\nwells O O\nas O O\nfeature2 Name Name\nbranch O O\nare O O\nup O O\nto O O\ndate O O\nwith O O\nfeature Name Name\n1 Name Name\n. O O\n\nBut O O\nI O O\nhave O O\nto O O\ngive O O\ntwo O O\ncommand O O\ncheckout O O\nthen O O\nre-base O O\n. O O\n\nIs O O\nthere O O\nare O O\nshort O O\ncommand O O\nfor O O\nthese O O\n? O O\n\nIf O O\n<branch> O O\nis O O\nspecified O O\n, O O\ngit Name Name\nrebase Name Name\nwill O O\nperform O O\nan O O\nautomatic O O\ngit Name Name\ncheckout Name Name\nbefore O O\ndoing O O\nanything O O\nelse O O\n. O O\n\nOtherwise O O\nit O O\nremains O O\non O O\nthe O O\ncurrent O O\nbranch O O\n. O O\n\nAlthough O O\nI O O\nreserved O O\na O O\nstatic O O\nIP O O\nI O O\ngot O O\nthe O O\nfollowing O O\nwarning O O\n, O O\nwhile O O\nnot O O\nhaving O O\nload O O\nbalancer O O\ncreated O O\n: O O\n\nOK O O\n, O O\nit O O\nseems O O\nto O O\nwork O O\nonly O O\nwith O O\nregional O O\nIPs O O\n.. O O\n. O O\n\nI O O\nwant O O\nto O O\nprocess O O\n.mp3 Name Name\nfiles O O\nin O O\nDSX Name Name\nfor O O\nMusic O O\nInformation O O\nRetrieval O O\n. O O\n\nI O O\nam O O\nusing O O\nlibrosa Name Name\nlibrary O O\nin O O\npython Name Name\nfor O O\nthis O O\npurpose O O\n. O O\n\nBut O O\nI O O\nam O O\nunable O O\nto O O\nload O O\n.mp3 Name Name\nfiles O O\ndue O O\nto O O\nabsence O O\nof O O\nffmpeg Name Name\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\ninstall O O\nffmpeg Name Name\nin O O\nDSX Name Name\nor O O\nany O O\nother O O\nwalk-around O O\nto O O\nload O O\n.mp3 Name Name\nfiles O O\nin O O\nDSX Name Name\n? O O\n\nAny O O\nof O O\nthe O O\nlibraries O O\nthat O O\nneed O O\nsudo O O\npermissions O O\ncannot O O\nbe O O\ninstalled O O\non O O\nSpark Name Name\nservice O O\nassociated O O\nwith O O\nnotebook O O\non O O\nDSX Name Name\nby O O\nuser O O\n. O O\n\nYou O O\ncan O O\nonly O O\ninstall O O\nlibraries O O\nwith O O\n--user Name Name\nflag O O\nin O O\npip Name Name\n. O O\n\nOnly O O\nIBM Name Name\nSpark Name Name\nservice O O\nteam O O\ncan O O\ninstall O O\nthis O O\nlibraries O O\nwhich O O\nneed O O\nsudo Name Name\npermissions O O\n. O O\n\nPlease O O\nraise O O\na O O\nrequest/idea O O\nhere O O\nto O O\nget O O\nthis O O\nlibrary O O\ninstalled O O\n: O O\n- O O\n\nhttps://ibmwatsondataplatform.ideas.aha.io/?category=6441922592725708622 O O\n\nThanks O O\n, O O\n\nCharles O O\n\nHi O O\nfellow O O\nProgrammers O O\n, O O\n\nI O O\n'm O O\nrelatively O O\nnew O O\nto O O\nWordpress Name Name\nsince O O\nI O O\nusually O O\nused O O\nTypo3 Name Name\n, O O\nso O O\nI O O\nhave O O\na O O\nquestion O O\nregarding O O\nthe O O\ncustom O O\nsidebars Name Name\nin O O\nWP Name Name\n. O O\n\nI O O\nhave O O\nfollowing O O\ncode O O\nin O O\nmy O O\nfunctions.php Name Name\n\nI O O\nwant O O\nto O O\nadd O O\n4 O O\npanels Name Name\nfor O O\ninfo O O\non O O\nmy O O\nhome O O\npage O O\nand O O\nin O O\nthe O O\nfooter Name Name\nanother O O\nsmall O O\nfield O O\nfor O O\nthe O O\nauthor O O\nto O O\nadd O O\na O O\nbio O O\nor O O\nchange O O\nit O O\n. O O\n\nHere O O\nis O O\nmy O O\ncode O O\nfrom O O\nmy O O\nindex.php Name Name\n\nSame O O\nimplementation O O\nis O O\nin O O\nfooter.php Name Name\nat O O\na O O\ngiven O O\nposition O O\n. O O\n\nMy O O\nProblems O O\nare O O\n: O O\n\nContent O O\nI O O\nadd O O\nvia O O\nbackend O O\nmenu Name Name\nthemes O O\n-> O O\nwidgets O O\ndoes O O\nn't O O\nshow O O\nup O O\nand O O\nis O O\ndeleted O O\nnext O O\ntime O O\nI O O\nopen O O\nthe O O\nbackend O O\n. O O\n\nThere O O\nare O O\nno O O\nerrors O O\nin O O\nthe O O\nwp-content/debug.log Name Name\n, O O\nI O O\nfixed O O\nall O O\ncommon O O\nones O O\nafter O O\nactivating O O\nthe O O\noption O O\nin O O\nwp-config.php Name Name\n\nHow O O\ncan O O\nI O O\nfix O O\nthis O O\n, O O\nwhat O O\nare O O\nmy O O\nbasic O O\nthinking O O\nmistakes O O\n? O O\n\nBest O O\nRegards O O\nsKylo O O\n\nYour O O\ncode O O\nis O O\nall O O\ngood O O\n. O O\n\nJust O O\none O O\nmistake O O\n, O O\nyou O O\nare O O\nusing O O\n%d Name Name\nto O O\nconcatenate O O\nthe O O\ndecimals Name Name\nafter O O\nyour O O\nid Name Name\n. O O\n\nBut O O\nthat O O\nis O O\nnot O O\nnecessary O O\nsince O O\n%d Name Name\nis O O\nautomatically O O\nadded O O\nto O O\nthe O O\nsupplied O O\nid Name Name\n. O O\n\nPlease O O\nfind O O\ncodex Name Name\nlink O O\nat O O\nthe O O\nend O O\nof O O\nthis O O\nanswer O O\n. O O\n\nSo O O\n, O O\nI O O\nremoved O O\nthe O O\n%d Name Name\nfrom O O\nthe O O\nid Name Name\nsection O O\nof O O\nyour O O\ncode O O\nand O O\nnow O O\nit O O\nworks O O\n. O O\n\nSolution O O\n: O O\n\nand O O\n\nYou O O\ndo O O\nnot O O\nneed O O\nto O O\nadd O O\n%d Name Name\nto O O\nid O O\nof O O\nregister_sidebars Name Name\n. O O\n\nPlease O O\nread O O\nthe O O\ncodex Name Name\n, O O\n\nit O O\nsays O O\n: O O\n\n\" O O\n%d Name Name\n\" O O\nis O O\nadded O O\nautomatically O O\nto O O\nsupplied O O\n' O O\nid Name Name\n' O O\nvalue O O\nafter O O\nthe O O\nfirst O O\n; O O\ne.g O O\n. O O\n, O O\n\" O O\nSidebar-1 Name Name\n\" O O\n, O O\n\" O O\nSidebar-2 Name Name\n\" O O\n, O O\n\" O O\nSidebar-3 Name Name\n\" O O\n, O O\netc O O\n. O O\n\nthe O O\nquestion O O\ni O O\nam O O\nasking O O\nis O O\nwhat O O\nis O O\nthe O O\nhighest O O\nnumeric O O\nvalue O O\nX Name Name\nwill O O\nhold O O\nand O O\nwhat O O\nis O O\nthe O O\nlowest O O\nin O O\nthis O O\ncode O O\n: O O\n\nRandom Name Name\nrand Name Name\n= Name Name\nnew Name Name\nRandom() Name Name\n; Name Name\n\nint Name Name\nx Name Name\n= Name Name\n1 Name Name\n- Name Name\nrand.Next()%15 Name Name\n; Name Name\n\nI O O\nhave O O\nentered O O\nthis O O\nand O O\nreceive O O\na O O\nvalue O O\nof O O\n-12 Name Name\nas O O\na O O\nresult O O\nbut O O\ncannot O O\nget O O\na O O\nrange O O\n. O O\n\nrand.Next() Name Name\n% Name Name\n15 Name Name\nwill O O\ngive O O\nyou O O\na O O\nnumber O O\nbetween O O\n0 Name Name\nand O O\n14 Name Name\n. O O\n\n( O O\nIf O O\nwe O O\nassume O O\nthat O O\nit O O\ngenerates O O\nonly O O\npositive O O\nintegers Name Name\n, O O\notherwise O O\nyou O O\ncan O O\nuse O O\ndo O O\nit O O\nwith O O\na O O\nnegative O O\nnumber O O\ntoo O O\ntake O O\na O O\nlook O O\nhere O O\nhow O O\n: O O\n\nhttps://math.stackexchange.com/questions/519845/modulo-of-a-negative-number O O\n\nThen O O\nadd O O\nthe O O\n1 Name Name\n- Name Name\n{ Name Name\na Name Name\nnumber Name Name\nfrom Name Name\nthe Name Name\nset Name Name\nof Name Name\n0 Name Name\nand Name Name\n14} Name Name\nand O O\nyou O O\nget O O\nyour O O\nanswer O O\n. O O\n\nHowever O O\npay O O\nattention O O\nthat O O\n\"rand.Next() Name Name\n% Name Name\n15 Name Name\n\" O O\nis O O\nequal O O\nto O O\n\"rand.Next(15)\" Name Name\nand O O\nalso O O\nyou O O\ncan O O\nuse O O\nthis O O\ncode O O\n: O O\n\nrand.Next(minValue,maxValue) Name Name\nwhere O O\nminValue Name Name\n- O O\ninclusive O O\n, O O\nmaxValue Name Name\n- O O\nexclusive O O\n\nI O O\n'm O O\nusing O O\n.NET Name Name\nentity Name Name\nframework Name Name\n4.1 Name Name\nwith O O\ncode-first O O\napproach O O\nto O O\neffectively O O\nsolve O O\nthe O O\nfollowing O O\nproblem O O\n, O O\nhere O O\nsimplified O O\n. O O\n\nThere O O\n's O O\na O O\ndatabase O O\ntable Name Name\nwith O O\ntens O O\nof O O\nthousands O O\nof O O\nentries O O\n. O O\n\nSeveral O O\nusers O O\nof O O\nmy O O\nprogram O O\nneed O O\nto O O\nbe O O\nable O O\nto O O\n\nView O O\nthe O O\n( O O\nentire O O\n) O O\ntable Name Name\nin O O\na O O\nGridRow Name Name\n, O O\nwhich O O\nimplied O O\nthat O O\nthe O O\nentire O O\nTable Name Name\nhas O O\nto O O\nbe O O\ndownloaded O O\n. O O\n\nModify O O\nvalues O O\nof O O\nany O O\nrandom O O\nrow Name Name\n, O O\nchanges O O\nare O O\nfrequent O O\nbut O O\nneed O O\nnot O O\nbe O O\npersisted O O\nimmediately O O\n. O O\n\nIt O O\n's O O\nexpected O O\nthat O O\ndifferent O O\nusers O O\nwill O O\nmodify O O\ndifferent O O\nrows Name Name\n, O O\nbut O O\nthis O O\nis O O\nnot O O\nalways O O\ntrue O O\n. O O\n\nSome O O\nloss O O\nof O O\nchanges O O\nis O O\npermitted O O\n, O O\nas O O\nusers O O\nwill O O\nmost O O\nlikely O O\nupdate O O\nsame O O\nrows Name Name\nto O O\nsame O O\nvalues O O\n. O O\n\nOn O O\noccasion O O\nadd O O\nnew O O\nrows Name Name\n. O O\n\nSounds O O\nsimple O O\nenough O O\n. O O\n\nMy O O\ninitial O O\napproach O O\nwas O O\nto O O\nuse O O\na O O\nlong-running O O\nDbContext Name Name\ninstance O O\n. O O\n\nThis O O\none O O\nDbContext Name Name\nwas O O\nsupposed O O\nto O O\ntrack O O\nchanges O O\nto O O\nthe O O\nentities O O\n, O O\nso O O\nthat O O\nwhen O O\nSaveChanges() Name Name\nis O O\ncalled O O\n, O O\nmost O O\nof O O\nthe O O\nlegwork O O\nis O O\ndone O O\nautomatically O O\n. O O\n\nHowever O O\nmany O O\nhave O O\npointed O O\nout O O\nthat O O\nthis O O\nis O O\nnot O O\nan O O\noptimal O O\nsolution O O\nin O O\nthe O O\nlong O O\nrun O O\n, O O\nnotably O O\nhere O O\n. O O\n\nI O O\n'm O O\nstill O O\nnot O O\nsure O O\nif O O\nI O O\nunderstand O O\nthe O O\nreasons O O\n, O O\nand O O\nI O O\ndo O O\nn't O O\nsee O O\nwhat O O\na O O\nunit-of-work O O\nis O O\nin O O\nmy O O\nscenario O O\neither O O\n. O O\n\nThe O O\nuser O O\nchooses O O\nherself O O\nwhen O O\nto O O\npersist O O\nchanges O O\n, O O\nand O O\nlet O O\n's O O\nsay O O\nthat O O\nclient Name Name\nalways O O\nwins O O\nfor O O\nsimplicity O O\n. O O\n\nIt O O\n's O O\nalso O O\nimportant O O\nto O O\nnote O O\nthat O O\nobjects O O\nthat O O\nhave O O\nnot O O\nbeen O O\ntouched O O\ndo O O\nn't O O\noverwrite O O\nany O O\ndata O O\nin O O\nthe O O\ndatabase O O\n. O O\n\nAnother O O\napproach O O\nwould O O\nbe O O\nto O O\ntrack O O\nchanges O O\nmanually O O\nor O O\nuse O O\nobjects O O\nthat O O\ntrack O O\nchanges O O\nfor O O\nme O O\n, O O\nhowever O O\nI O O\n'm O O\nnot O O\ntoo O O\nfamiliar O O\nwith O O\nsuch O O\ntechniques O O\n, O O\nand O O\nI O O\nwould O O\nwelcome O O\na O O\nnudge O O\nin O O\nthe O O\nright O O\ndirection O O\n. O O\n\nWhat O O\n's O O\nthe O O\ncorrect O O\nway O O\nto O O\nsolve O O\nthis O O\nproblem O O\n? O O\n\nI O O\nunderstand O O\nthat O O\nthis O O\nquestion O O\nis O O\na O O\nbit O O\nwishy-washy O O\n, O O\nbut O O\nthink O O\nof O O\nit O O\nas O O\nmore O O\nfundamental O O\n. O O\n\nI O O\nlack O O\nfundamental O O\nunderstanding O O\nabout O O\nhow O O\nto O O\nsolve O O\nthis O O\nclass O O\nof O O\nproblems O O\n. O O\n\nIt O O\nseems O O\nto O O\nme O O\nthat O O\nlong O O\nliving O O\nDbContext Name Name\nis O O\nthe O O\nright O O\nway O O\n, O O\nbut O O\nknowledgeable O O\npeople O O\ntell O O\nme O O\notherwise O O\n, O O\nwhich O O\nleads O O\nme O O\nto O O\nconfusion O O\nand O O\nimprecise O O\nquestions O O\n. O O\n\nEDIT1 O O\n\nAnother O O\npoint O O\nof O O\nconfusion O O\nis O O\nthe O O\nexistance O O\nof O O\nLocal Name Name\nproperty O O\non O O\nthe O O\nDbSet Name Name\n<> Name Name\nobject O O\n. O O\n\nIt O O\ninvites O O\nme O O\nto O O\nuse O O\na O O\nlong O O\nrunning O O\ncontext O O\n, O O\nas O O\nanother O O\nuser O O\nhas O O\nposted O O\nhere O O\n. O O\n\nSounds O O\nto O O\nme O O\nlike O O\nyour O O\nusers O O\ncould O O\nhave O O\na O O\ncopy O O\n( O O\ncached O O\n) O O\nof O O\nthe O O\ndata O O\nfor O O\nan O O\nindefinate O O\nperiod O O\nof O O\ntime O O\n. O O\n\nThe O O\nlonger O O\nthe O O\nusers O O\nare O O\nusing O O\ncached O O\ndata O O\nthe O O\ngreater O O\nthe O O\nodds O O\nthat O O\nthey O O\ncould O O\nbecome O O\ndisconnected O O\nfrom O O\nthe O O\ndatabase O O\nconnection O O\nin O O\nDbContext Name Name\n. O O\n\nMy O O\nguess O O\nis O O\nEF Name Name\ndoes O O\nn't O O\nhandle O O\nthis O O\nwell O O\nand O O\nyou O O\nprobably O O\nwant O O\nto O O\ndeal O O\nwith O O\nthat O O\n. O O\n\n( O O\ne.g O O\n. O O\noccaisionally O O\nconnected O O\narchitecture O O\n) O O\n. O O\n\nI O O\nwould O O\nexpect O O\nimplementing O O\nthat O O\nmay O O\nsolve O O\nmany O O\nof O O\nyour O O\nissues O O\n. O O\n\nProblem O O\nwith O O\nlong O O\nrunning O O\ncontext O O\nis O O\nthat O O\nit O O\ndoes O O\nn't O O\nrefresh O O\ndata O O\n- O O\nI O O\nmore O O\ndiscussed O O\nproblems O O\nhere O O\n. O O\n\nSo O O\nif O O\nyour O O\nuser O O\nopens O O\nthe O O\nlist O O\nand O O\nmodify O O\ndata O O\nhalf O O\nan O O\nhour O O\nshe O O\ndoes O O\nn't O O\nknow O O\nabout O O\nchanges O O\n. O O\n\nBut O O\nin O O\ncase O O\nof O O\nWPF Name Name\nif O O\nyour O O\nbusiness O O\naction O O\nis O O\n: O O\n\nOpen O O\nthe O O\nlist Name Name\n\nDo O O\nas O O\nmany O O\nactions O O\nas O O\nyou O O\nwant O O\n\nTrigger O O\nsaving O O\nchanges O O\n\nThen O O\nthis O O\nwhole O O\nis O O\nunit O O\nof O O\nwork O O\nand O O\nyou O O\ncan O O\nuse O O\nsingle O O\ncontext O O\ninstance O O\nfor O O\nthat O O\n. O O\n\nIf O O\nyou O O\nhave O O\nscenario O O\nwhere O O\nlast O O\nedit O O\nwins O O\nyou O O\nshould O O\nnot O O\nhave O O\nproblems O O\nwith O O\nthis O O\nuntil O O\nsomebody O O\nelse O O\ndeletes O O\nrecord O O\nwhich O O\ncurrent O O\nuser O O\nedits O O\n. O O\n\nAdditionally O O\nafter O O\nsaving O O\nor O O\ncancelling O O\nchanges O O\nyou O O\nshould O O\ndispose O O\ncurrent O O\ncontext O O\nand O O\nload O O\ndata O O\nagain O O\n- O O\nthis O O\nwill O O\nensure O O\nthat O O\nyou O O\nreally O O\nhave O O\nfresh O O\ndata O O\nfor O O\nnext O O\nunit O O\nof O O\nwork O O\n. O O\n\nContext O O\noffers O O\nsome O O\nfeatures O O\nto O O\nrefresh O O\ndata O O\nbut O O\nit O O\nonly O O\nrefreshes O O\ndata O O\npreviously O O\nloaded O O\n( O O\nwithout O O\nrelations O O\n) O O\nso O O\nfor O O\nexample O O\nnew O O\nunsaved O O\nrecords O O\nwill O O\nbe O O\nstill O O\nincluded O O\n. O O\n\nPerhaps O O\nyou O O\ncan O O\nalso O O\nread O O\nabout O O\nMS Name Name\nSync Name Name\nframework O O\nand O O\nlocal O O\ndata O O\ncache O O\n. O O\n\nI O O\nhave O O\ncreated O O\na O O\ndraggable O O\ncontrol O O\nthat O O\nwant O O\nto O O\nrestrict O O\nto O O\nthe O O\nboundaries O O\nof O O\nit O O\n's O O\ncontaining O O\ngrid Name Name\n( O O\ni.e O O\n. O O\nnot O O\nlet O O\nthe O O\nuser O O\ndrag O O\nit O O\noutside O O\nof O O\nthe O O\ngrid Name Name\n) O O\n. O O\n\nI O O\nneed O O\na O O\ntest O O\nthat O O\nreturns O O\ntrue Name Name\nor O O\nfalse Name Name\nso O O\nthat O O\nI O O\ncan O O\ncancel O O\nthe O O\ndrag O O\nif O O\nnecessary O O\n. O O\n\nI O O\nhave O O\nlooked O O\nat O O\nVisualTreeHelper.FindElementsInHostCoordinates Name Name\nand O O\nTransformToVisual Name Name\netc O O\n, O O\nbut O O\nI O O\ncannot O O\nfind O O\na O O\nsimple O O\nway O O\nof O O\ndoing O O\nit O O\nwithout O O\nlots O O\nof O O\nchecks O O\nfor O O\neach O O\nof O O\nthe O O\ncorners O O\nof O O\nthe O O\ncontrol O O\n. O O\n\ne.g O O\n. O O\nsome O O\ncode O O\n( O O\nDialog Name Name\nis O O\nthe O O\nname O O\nof O O\nthe O O\ncontrol O O\nthat O O\nis O O\nbeing O O\ndragged O O\n) O O\n: O O\n\nThanks O O\n. O O\n\nIn O O\nthe O O\nend O O\nI O O\ntook O O\nanother O O\napproach O O\n; O O\ninstead O O\nof O O\ntrying O O\nto O O\nstop O O\nthe O O\nuser O O\nfrom O O\ndragging O O\nANY O O\nof O O\nthe O O\nchild O O\ncontrol Name Name\noutside O O\nof O O\nthe O O\nboundary O O\nof O O\nthe O O\ncontainer O O\nI O O\nhave O O\nonly O O\nstopped O O\nthem O O\nfrom O O\ndragging O O\nthe O O\npointer Name Name\noutside O O\nthe O O\nboundary O O\n, O O\ne.g O O\n. O O\nin O O\nthe O O\nmousemove Name Name\neventhandler Name Name\n: O O\n\nThe O O\nproblem O O\nwith O O\nthis O O\nwas O O\nthat O O\nthe O O\nparts O O\nof O O\nthe O O\nchild O O\ncontrol Name Name\nwere O O\nvisible O O\noutside O O\nof O O\nthe O O\ncontainer O O\n. O O\n\nWhat O O\nI O O\ndid O O\nwas O O\nset O O\nthe O O\nClip Name Name\nproperty Name Name\nof O O\nthe O O\nparent O O\ncontrol Name Name\nso O O\nthat O O\nthe O O\nparts O O\nof O O\nthe O O\nchild O O\noutside O O\nof O O\nthe O O\nboundary O O\nare O O\nhidden O O\n. O O\n\ne.g O O\n. O O\n: O O\n\nThis O O\nseems O O\nto O O\nwork O O\nquite O O\nnicely O O\n! O O\n\nThis O O\nis O O\nno O O\nway O O\nother O O\nthan O O\nchecking O O\neach O O\ncorner O O\nof O O\nthe O O\ncontrol O O\n. O O\n\nHowever O O\n, O O\nyou O O\ncan O O\ntake O O\nsome O O\nshortcuts O O\nas O O\nyou O O\nknow O O\nthat O O\nDialog Name Name\nand O O\nwhat O O\nyou O O\nare O O\ndragging O O\nit O O\nover O O\nwo O O\nn't O O\nchange O O\nshape O O\nor O O\nsize O O\nduring O O\nthe O O\ndrag O O\nand O O\nthat O O\nit O O\n's O O\nimpossible O O\nfor O O\nthe O O\nleft O O\nhand O O\nedge O O\nof O O\nDialog Name Name\nto O O\nbe O O\nto O O\nthe O O\nright O O\nof O O\nthe O O\nright O O\nhand O O\nedge O O\nof O O\nGrid Name Name\nwithout O O\nthe O O\nright O O\nhand O O\nedge O O\nof O O\nDialog Name Name\nalso O O\nbeing O O\nto O O\nthe O O\nright O O\nof O O\nGrid Name Name\n. O O\n\nThis O O\nonly O O\napplies O O\nif O O\nDialog Name Name\nis O O\nnot O O\nrotated O O\n. O O\n\nSo O O\n, O O\nyou O O\n'll O O\nneed O O\nsomething O O\nlike O O\nthe O O\nfollowing O O\npseudo O O\ncode O O\n: O O\n\nI O O\n'm O O\nwriting O O\na O O\nprogram O O\nto O O\nsave O O\nsome O O\nwebcam Name Name\nvideo Name Name\nto O O\na O O\nfile O O\n. O O\n\nI O O\n'm O O\nusing O O\nthe O O\nx264 Name Name\ncodec O O\nfound O O\nhere O O\nx264 Name Name\n\nWhen O O\nI O O\ntry O O\nwriting O O\nframes O O\nto O O\na O O\nfile O O\nI O O\nget O O\nthis O O\nerror O O\nmessage O O\npoping O O\nup O O\n. O O\n\nI O O\nfound O O\nthis O O\nVirtualDub Name Name\nHack O O\nbut O O\nthen O O\nI O O\n'm O O\nnot O O\nusing O O\nvirtual Name Name\ndub Name Name\n. O O\n\nI O O\n'm O O\nnot O O\nsure O O\nwhat O O\nthe O O\nFile O O\noutput O O\nmode O O\nand O O\nzero O O\nlatency O O\nmean O O\n. O O\n\nI O O\nthink O O\nthe O O\nproblem O O\nis O O\nrelated O O\nto O O\nthe O O\ncodec Name Name\nsince O O\nwhen O O\nI O O\nchange O O\nto O O\nusing O O\na O O\ndifferent O O\ncodec Name Name\n, O O\neverything O O\nworks O O\nfine O O\n. O O\n\nI O O\n'm O O\nusing O O\nC# Name Name\nand O O\nemgu Name Name\nbut O O\nI O O\ndont O O\nthink O O\nthats O O\nwhere O O\nthe O O\nproblem O O\nlies O O\n. O O\n\nEDIT O O\n\nIn O O\ncase O O\nthe O O\ncode O O\nhelps O O\n\nI O O\nknow O O\nis O O\n's O O\na O O\nbit O O\nlate O O\nbut O O\nI O O\nfigured O O\nthis O O\nout O O\n. O O\n\nThe O O\nsolution O O\n( O O\non O O\nwindows Name Name\n) O O\nis O O\nto O O\nset O O\n-1 Name Name\ninstead O O\nof O O\ncodec Name Name\n's O O\nfourcc O O\n. O O\n\nThis O O\npops O O\nup O O\na O O\ndialog Name Name\nwhere O O\nyou O O\ncan O O\nchoose O O\na O O\ncodec Name Name\nand O O\nif O O\nyou O O\nchoose O O\nx264wfv Name Name\n, O O\nthere O O\n's O O\na O O\nconfigure O O\nbutton Name Name\nwhich O O\nlets O O\nyou O O\nconfigure O O\nthose O O\noptions O O\n( O O\nzero O O\nlatency O O\nworks O O\nfor O O\nme O O\n) O O\n. O O\n\nNext O O\ntime O O\ncodec Name Name\nwill O O\nuse O O\nexact O O\nsame O O\nsettings O O\n, O O\nso O O\nyou O O\ncan O O\nrun O O\nyour O O\nprogram O O\nwith O O\nfourcc O O\ncode O O\n. O O\n\nI O O\nwant O O\nto O O\nchange O O\nthe O O\ntop Name Name\nproperty O O\nof O O\nthe O O\nobject O O\n.content Name Name\nif O O\nthe O O\nobject O O\n.nav-wrapper Name Name\nhas O O\nthe O O\nproperty O O\ndisplay Name Name\nset O O\nto O O\nblock Name Name\n. O O\n\nThis O O\nis O O\nmy O O\nactual O O\n( O O\nnot O O\nworking O O\n) O O\ncode O O\n: O O\n\nCan O O\nsomeone O O\nhelp O O\nme O O\nfiguring O O\nout O O\nhow O O\nto O O\nmake O O\nthis O O\nwork O O\n? O O\n\nThe O O\nfollowing O O\ncode O O\nwill O O\nmake O O\nyour O O\ncode O O\nvery O O\nprocedural O O\n, O O\nBut O O\non O O\nthe O O\nother O O\nhand O O\n, O O\nThe O O\ndefault O O\npositioning O O\nstatic O O\ndo O O\nn't O O\nhas O O\na O O\nproperty O O\ncalled O O\nTOP Name Name\n. O O\n\nso O O\nyou O O\nshould O O\ncheck O O\nwhether O O\nit O O\nis O O\nhaving O O\nany O O\npositioning O O\nrather O O\nthan O O\nthe O O\ndefault O O\n. O O\n\nTry O O\n, O O\n\nYou O O\nneed O O\nto O O\ncheck O O\nthe O O\ncondition O O\nafter O O\nthe O O\nanimation O O\nis O O\ndone O O\n. O O\n\nAlso O O\n, O O\ncheck O O\nis O O\nit O O\nis O O\nvisible O O\ninstead O O\nof O O\nthe O O\nCSS Name Name\nproperty O O\ndisplay Name Name\n\nI O O\n'm O O\ntrying O O\nto O O\npopulate O O\na O O\nlist O O\nwithin O O\na O O\n\" O O\nController O O\nas O O\n\" O O\nblock O O\n, O O\nbut O O\nI O O\ncannot O O\nseem O O\nto O O\nget O O\nanything O O\nto O O\ndisplay O O\n. O O\n\nI O O\n've O O\ngotten O O\na O O\nminimal O O\nexample O O\nof O O\nmy O O\nidea O O\nworking O O\nwith O O\n$ Name Name\nscope Name Name\n: O O\n\nJS Name Name\n: O O\n\nHTML Name Name\n: O O\n\nJSFiddle Name Name\n\nBut O O\nwhen O O\nI O O\nintroduce O O\n\" O O\nController O O\nas O O\n\" O O\n, O O\nthe O O\nlist O O\ndoes O O\nnot O O\ndisplay O O\n: O O\n\nJS Name Name\n: O O\n\nHTML Name Name\n: O O\n\nJSFiddle Name Name\n\nI O O\nunderstand O O\nthat O O\n$scope Name Name\nand O O\nthis O O\nare O O\ndifferent O O\nconcepts O O\n, O O\nbut O O\nI O O\ncannot O O\nseem O O\nto O O\nwrap O O\nmy O O\nhead O O\naround O O\nthe O O\nspecifics O O\nin O O\nthis O O\ncase O O\n. O O\n\nCould O O\nthis O O\nbe O O\na O O\nresult O O\nof O O\nthe O O\nscope O O\nrules O O\nfor O O\nng-repeat Name Name\n, O O\nor O O\nam O O\nI O O\nmissing O O\nsomething O O\nobvious O O\n? O O\n\nHere O O\nyou O O\nshould O O\nnot O O\nuse O O\narrow Name Name\nfunction O O\nwhile O O\ndefining O O\ncontroller Name Name\nfunction O O\n, O O\nthis O O\nwill O O\nlead O O\nthis O O\nto O O\nan O O\nunexpected O O\ncontext O O\nwhich O O\nnot O O\nbelong O O\nto O O\ncontroller O O\nitself O O\n. O O\n\nThe O O\nsolution O O\nis O O\nusing O O\nnormal O O\nfunction O O\n. O O\n\nrefer O O\nthe O O\nbelow O O\nexample O O\nand O O\nfixed O O\njsfiddle Name Name\n. O O\n\nYou O O\nhave O O\nused O O\nes6 Name Name\narrow Name Name\nfunction O O\nsyntax O O\n. O O\n\nSince O O\nthe O O\nbrowser Name Name\ndoes O O\nn't O O\nsupport O O\nes6 Name Name\nsyntax.Either O O\nyou O O\nhave O O\nto O O\nuse O O\ntranspiler(Babel) Name Name\nto O O\ncompile O O\nes6 Name Name\ncode O O\nto O O\npure O O\njavascript Name Name\n. O O\n\nTry O O\nchanging O O\nthis O O\n\nWith O O\n\nJSFiddle Name Name\n\nI O O\nam O O\nperforming O O\na O O\ncustom O O\ntraversal O O\nin O O\nNeo4J Name Name\n, O O\nusing O O\nmy O O\nown O O\nevaluator O O\n. O O\n\nIn O O\nthe O O\ntraversal O O\nare O O\ntwo O O\nnodes Name Name\n, O O\nconnected O O\nby O O\ntwo O O\ndifferent O O\nrelationships O O\n. O O\n\nWhat O O\nI O O\n'm O O\nseeing O O\nis O O\nthat O O\nonly O O\none O O\nof O O\nthe O O\ntwo O O\nrelationships O O\nwill O O\nbe O O\nwalked O O\nduring O O\nthe O O\ntraversal O O\n. O O\n\nHowever O O\n, O O\nmy O O\ncustom O O\nevaluation O O\nchanges O O\nits O O\nbehavior O O\nbased O O\non O O\nwhether O O\nboth O O\nrelationships O O\nare O O\npresent O O\n. O O\n\nIt O O\nseems O O\nlike O O\nduring O O\na O O\ntraversal O O\n, O O\nNeo4J Name Name\nmaintains O O\na O O\nset O O\nof O O\nvisited O O\nnodes Name Name\n, O O\nand O O\nif O O\na O O\ncandidate O O\npath O O\nends O O\nat O O\na O O\nnode Name Name\nthat O O\nhas O O\nalready O O\nbeen O O\nvisited O O\n, O O\nthen O O\nthat O O\npath O O\nis O O\nnever O O\nsent O O\nto O O\nmy O O\nevaluator O O\n. O O\n\nIs O O\nthere O O\na O O\nway O O\naround O O\nthis O O\n? O O\n\nHow O O\ncan O O\nI O O\nhave O O\na O O\ncustom O O\nevaluator O O\nexamine O O\nevery O O\npossible O O\npath O O\nto O O\nthe O O\nnodes Name Name\n? O O\n\nHere O O\n's O O\na O O\nquick O O\nexample O O\n: O O\n\nSay O O\nthat O O\nthe O O\ngraph O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nThe O O\ntraversal O O\nbegins O O\nat O O\nA Name Name\n. O O\n\nA O O\nhas O O\ntwo O O\ndifferent O O\nrelationships O O\ntying O O\nit O O\nto O O\nB Name Name\n( O O\nof O O\ntwo O O\ndifferent O O\ntypes O O\n) O O\n. O O\n\nAll O O\nof O O\nthe O O\nremaining O O\nnodes Name Name\nare O O\nconnected O O\nby O O\nonly O O\n1 O O\nrelationship O O\n. O O\n\nThe O O\ngoal O O\nof O O\nthe O O\nevaluator O O\nis O O\nto O O\nreturn O O\nA-D Name Name\n, O O\nA-B Name Name\n, O O\nand O O\nB-C Name Name\n, O O\nbut O O\nnot O O\nD-E Name Name\n. O O\n\nThe O O\ndetermination O O\nthat O O\nB-C Name Name\nis O O\nvalid O O\ncomes O O\nfrom O O\nthe O O\nfact O O\nthat O O\nthere O O\nare O O\ntwo O O\nrelationships O O\nbetween O O\nA Name Name\nand O O\nB Name Name\n. O O\n\nHow O O\ncan O O\nthis O O\nbe O O\nsolved O O\n? O O\n\nYou O O\nmay O O\nneed O O\nto O O\nthink O O\nyour O O\nuse O O\ncase O O\nthrough O O\na O O\nbit O O\nmore O O\ncarefully O O\n. O O\n\nOne O O\nsuggestion O O\nis O O\nthat O O\nwhen O O\nyou O O\nuse O O\nthe O O\ntraversal Name Name\nframework Name Name\nin O O\njava Name Name\n, O O\nbasically O O\nyou O O\ncan O O\nbuild O O\na O O\nTraversalDescription Name Name\nand O O\nthen O O\niterate O O\nthrough O O\nwhat O O\ncomes O O\nback O O\nfrom O O\nit O O\nby O O\nrelationships O O\n, O O\nrather O O\nthan O O\nby O O\nPaths O O\nor O O\nby O O\nNodes O O\n. O O\n\nIf O O\nyour O O\nprimary O O\ncomplaint O O\nis O O\nthat O O\neach O O\nnode Name Name\nis O O\nvisited O O\nonly O O\nonce O O\n, O O\nyou O O\ncan O O\nchange O O\nthe O O\nTraversalDescription Name Name\nto O O\nspecify O O\nRELATIONSHIP_GLOBAL Name Name\nguaranteeing O O\nthat O O\nall O O\nrelationships O O\nwill O O\nbe O O\nfollowed O O\n, O O\nwhether O O\nor O O\nnot O O\nthat O O\ncauses O O\nyou O O\nto O O\nhit O O\na O O\nnode O O\nmore O O\nthan O O\nonce O O\n. O O\n\nMore O O\nbroadly O O\n, O O\ntraversers O O\ndo O O\nn't O O\ntend O O\nto O O\ngo O O\nover O O\nthe O O\nsame O O\nmaterial O O\nmore O O\nthan O O\nonce O O\nbecause O O\nif O O\nthey O O\ndid O O\n, O O\nyou O O\n'd O O\nneed O O\nto O O\nbe O O\nultra O O\ncareful O O\nabout O O\nspecifying O O\na O O\ntermination O O\ncondition O O\n. O O\n\nIf O O\nhitting O O\ncertain O O\nnodes Name Name\nor O O\nrelationships O O\nmore O O\nthan O O\nonce O O\nis O O\nOK O O\n, O O\nwhen O O\ndo O O\nyou O O\nknow O O\nthat O O\nyou O O\n're O O\ndone O O\n? O O\n\nI O O\nam O O\nbrand O O\nnew O O\nto O O\nPyQt Name Name\nso O O\nbear O O\nwith O O\nme O O\nhere O O\n.. O O\n. O O\n\nI O O\ncreate O O\na O O\nwidget Name Name\nwith O O\nQt Name Name\nDesigner Name Name\n, O O\nthen O O\ncompile O O\nit O O\nand O O\nsave O O\nit O O\nas O O\n.py Name Name\n. O O\n\nI O O\nedit O O\nthe O O\n.py Name Name\nfile O O\nto O O\nadd O O\nsome O O\nadditional O O\nfunctionality O O\n. O O\n\nBut O O\nthen O O\nsay O O\nI O O\nneed O O\nto O O\ngo O O\nback O O\nto O O\nQt Name Name\nDesigner Name Name\nand O O\nupdate O O\nthe O O\nlayout O O\nof O O\nthe O O\nGUI O O\n. O O\n\nIs O O\nthere O O\na O O\nway O O\nto O O\ncompile O O\nthat O O\nand O O\nthen O O\nupdate O O\nthe O O\noriginal O O\n.py Name Name\nfile O O\nwith O O\nthe O O\nchanges O O\nrather O O\nthan O O\nhaving O O\nto O O\nmanually O O\ncopy/paste O O\nmy O O\ncustom O O\ncode O O\n? O O\n\nPersonally O O\nI O O\nhate O O\ncompiling O O\nit O O\n. O O\n\nBut O O\nlike O O\nekhumoro O O\nsaid O O\n, O O\nyou O O\ncan O O\nimport O O\nthe O O\nclass O O\n. O O\n\nI O O\nstill O O\ndislike O O\nthis O O\nthough O O\n. O O\n\npyuic Name Name\nsometimes O O\nimports O O\nnasty O O\nexample_rc Name Name\nthings O O\n, O O\nwhich O O\nlowers O O\nproductivity O O\nlevels O O\nagain O O\n. O O\n\nIf O O\nyou O O\nabsolutely O O\nmust O O\ntransform O O\n.ui Name Name\nto O O\n.py Name Name\n, O O\ncreate O O\na O O\n.bat Name Name\nfile O O\nto O O\ndo O O\nit O O\nfor O O\nyou O O\n. O O\n\nCode O O\nfor O O\nthat O O\n: O O\n\nOr O O\nwhatever O O\nyou O O\nhave O O\nfor O O\nyour O O\nOS O O\n. O O\n\nPersonally O O\nI O O\nlike O O\nto O O\nuse O O\nui Name Name\n= Name Name\nuic.loadUi('example.ui') Name Name\nand O O\nthen O O\nui.setupUi() Name Name\n. O O\n\nIt O O\nallows O O\nyou O O\nto O O\nbe O O\nmuch O O\nmuch O O\nmore O O\nefficient O O\n! O O\n! O O\n\nIf O O\nyou O O\nlook O O\nat O O\nthe O O\ncomments O O\nat O O\nthe O O\ntop O O\nof O O\nthe O O\ngenerated O O\nfile O O\n, O O\nyou O O\nwill O O\nsee O O\nthis O O\nline O O\n: O O\n\nThis O O\nmakes O O\nit O O\nquite O O\nclear O O\nthat O O\nthe O O\nfile O O\nis O O\nnot O O\nmeant O O\nto O O\nbe O O\nedited O O\n. O O\n\nBut O O\nthis O O\nis O O\nnot O O\na O O\nproblem O O\n, O O\nbecause O O\nit O O\nis O O\njust O O\nan O O\nordinary O O\npython Name Name\nmodule O O\n, O O\nand O O\nso O O\nit O O\n's O O\neasy O O\nenough O O\nto O O\nimport O O\nit O O\ninto O O\nyour O O\nmain O O\napplication O O\nand O O\naccess O O\nit O O\nfrom O O\nthere O O\n. O O\n\nAll O O\nyou O O\nneed O O\nto O O\ndo O O\nis O O\ncreate O O\na O O\nsubclass O O\nof O O\nthe O O\ntop-level O O\nobject O O\nfrom O O\nQt Name Name\nDesigner Name Name\n( O O\nwhich O O\nwill O O\nbe O O\na O O\nQMainWindow Name Name\n, O O\nQDialog Name Name\nor O O\nQWidget Name Name\n) O O\n, O O\nand O O\nthen O O\nuse O O\nthe O O\nsetupUi Name Name\nmethod O O\nprovided O O\nby O O\nthe O O\ngenerated O O\nmodule O O\nto O O\nadd O O\nall O O\nof O O\nthe O O\nwidgets Name Name\nto O O\nan O O\ninstance O O\nof O O\nthat O O\nsubclass O O\n. O O\n\nSo O O\nif O O\nthe O O\ntop-level O O\nobject O O\nfrom O O\nQt Name Name\nDesigner Name Name\nwas O O\nnamed O O\n\" Name Name\nMainWindow Name Name\n\" Name Name\n, O O\npyuic Name Name\nwill O O\ncreate O O\na O O\ncorresponding O O\nUi_MainWindow Name Name\nclass O O\nthat O O\ncan O O\nbe O O\nimported O O\ninto O O\na O O\nmain.py Name Name\nscript O O\nand O O\nused O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nSee O O\nUsing O O\nQt Name Name\nDesigner Name Name\nin O O\nthe O O\nPyQt Name Name\nDocumentation O O\nfor O O\nmore O O\ndetails O O\n. O O\n\nTake O O\nthe O O\nfollowing O O\ninsertion Name Name\nsort Name Name\nalgorithm O O\n: O O\n\nI O O\nknow O O\nit O O\n's O O\nO(n^2) O O\nfairly O O\neasy O O\nby O O\nexamining O O\nit O O\n. O O\n\nBut O O\nas O O\nfar O O\nas O O\nproving O O\nit O O\n's O O\nO(n^2) O O\n, O O\nhow O O\nwould O O\nI O O\ngo O O\nabout O O\ndoing O O\nthat O O\n? O O\n\nI O O\ncould O O\nadd O O\nup O O\nall O O\nthe O O\noperations O O\n, O O\nbut O O\nn Name Name\n+ Name Name\n\" Name Name\nsum Name Name\nof Name Name\nj Name Name\n= Name Name\n2 Name O\nto Name Name\nn Name Name\n\" Name Name\nwould O O\nn't O O\nreally O O\nresult O O\nin O O\nn^2 Name Name\nas O O\nfar O O\nas O O\nI O O\nknow O O\n. O O\n\nI O O\ndo O O\nn't O O\nreally O O\nsee O O\nhow O O\nto O O\nprove O O\nthis O O\nexactly O O\n. O O\n\nCould O O\nsomeone O O\ntry O O\nto O O\nclearly O O\nexplain O O\nhow O O\nI O O\nwould O O\nprove O O\nthis O O\n, O O\nin O O\na O O\nway O O\nthat O O\nwould O O\nwork O O\nfor O O\nan O O\nO(n^3) O O\nalgorithm O O\nas O O\nwell O O\n? O O\n\nIt O O\n's O O\nO(n^2) O O\nbecause O O\nyou O O\n've O O\ngot O O\na O O\nmultiplication O O\n, O O\nnot O O\na O O\nsum O O\n. O O\n\nTake O O\nby O O\nexample O O\n, O O\nan O O\narray Name Name\nsorted O O\nin O O\ninverse O O\norder O O\n: O O\n\nIn O O\nthese O O\ncases O O\nevery O O\niteration O O\nof O O\nthe O O\ninner O O\nloop O O\nwill O O\nscan O O\nand O O\nshift O O\nthe O O\nentire O O\nsorted O O\nsubsection O O\nof O O\nthe O O\narray Name Name\nbefore O O\ninserting O O\nthe O O\nnext O O\nelement O O\n. O O\n\nThis O O\ngives O O\ninsertion Name Name\nsort Name Name\na O O\nquadratic O O\nrunning O O\ntime O O\n( O O\ni.e O O\n. O O\n, O O\nO(n2)) O O\n. O O\n\nMore O O\ninfo O O\n\nThe O O\nbest O O\nway O O\nto O O\nunderstand O O\nthe O O\ncomplexity O O\nis O O\ntrying O O\nto O O\nfind O O\nthe O O\nworst O O\ncase O O\nexample O O\nand O O\nfollowing O O\nthe O O\nalgorithm O O\n's O O\nsteps O O\n. O O\n\nYou O O\nprove O O\nbig O O\nO O O\ncomplexity O O\nby O O\nconsidering O O\nhow O O\nmany O O\noperations O O\nare O O\nperformed O O\nin O O\nthe O O\nworst O O\ncase O O\n. O O\n\nYou O O\n've O O\ndone O O\nthe O O\ncounting O O\npart O O\nand O O\nentered O O\nthe O O\nresults O O\nin O O\nthe O O\nright O O\nhand O O\ncolumn Name Name\nof O O\nyour O O\nimage Name Name\n, O O\nso O O\nwhat O O\nremains O O\nto O O\nbe O O\nproven O O\nis O O\nthat O O\nthe O O\ndominant O O\nterm O O\nis O O\nO(n^2) Name Name\n. O O\n\nApart O O\nfrom O O\nthe O O\nterms O O\nthat O O\ninvolve O O\nthe O O\nsum O O\n, O O\nyour O O\nprogram O O\nconsists O O\nof O O\ninstructions O O\nthat O O\nget O O\nexecuted O O\nn-1 Name Name\ntimes O O\nso O O\nthese O O\nare O O\nall O O\nO(n) Name Name\nterms O O\n. O O\n\nNow O O\nfor O O\nthe O O\nterms O O\nwith O O\nthe O O\nsum O O\n. O O\n\nIn O O\nthe O O\nworst O O\ncase O O\na O O\nt_j Name Name\ncan O O\nbe O O\nj Name Name\nbecause O O\nyou O O\nmay O O\nend O O\nup O O\ndecrementing O O\ni Name Name\nwhich O O\nyou O O\nset O O\nto O O\nj Name Name\nall O O\nthe O O\nway O O\ndown O O\nto O O\n0 O O\n. O O\n\nSo O O\nin O O\nthis O O\nworst O O\ncase O O\nwe O O\nhave O O\nt_j Name Name\n= Name Name\nj Name Name\nand O O\nthen O O\nyou O O\nhave O O\na O O\nterm O O\nwith O O\na O O\nsum Name Name\nfrom Name Name\n2 Name Name\nto Name Name\nn Name Name\nof Name Name\nj Name Name\nwhich O O\nis O O\nO(n^2) Name Name\n. O O\n\nThis O O\nis O O\ndue O O\nto O O\nfollowing O O\nthe O O\nmathematical O O\nidentity O O\n: O O\n\nThis O O\ncan O O\nbe O O\nproven O O\nby O O\nsumming O O\ntwo O O\nof O O\nthese O O\nseries O O\ntogether O O\n, O O\npaying O O\nattention O O\nso O O\nthat O O\nyou O O\nadd O O\ntwo O O\nterms O O\nthat O O\nsum O O\nto O O\nn+1 Name Name\ntogether O O\n, O O\nand O O\nthen O O\ndividing O O\nthe O O\nsum O O\nby O O\ntwo O O\n. O O\n\nHave O O\na O O\nlook O O\nat O O\nthe O O\nproof O O\nin O O\nwolfram Name Name\n. O O\n\nFinally O O\n, O O\nsince O O\nO Name Name\n( Name Name\n( Name Name\nn^2 Name Name\n+ Name Name\nn Name Name\n) Name Name\n/2 Name Name\n) Name Name\n= Name Name\nO(n^2) Name Name\nyou O O\nget O O\nthat O O\nthe O O\nterms O O\nthat O O\ninclude O O\nthe O O\nsum O O\ndominate O O\nthe O O\nruntime O O\nand O O\nthat O O\nis O O\nwhy O O\nthe O O\nalgorithm O O\nis O O\nO(n^2) Name Name\n\nin O O\nblacberry Name Name\nis O O\nthere O O\nany O O\nway O O\nto O O\nrecord O O\naudio O O\nfor O O\nVOIP Name Name\napplication O O\n, O O\ni O O\nam O O\nable O O\nto O O\ndo O O\na O O\nsimple O O\nrecording O O\napplication O O\nand O O\nsave O O\nit O O\nto O O\na O O\nfile O O\nin O O\nphone Name Name\n( O O\nor O O\nhow O O\ncan O O\ni O O\nmodify O O\nthis O O\nso O O\nthat O O\ni O O\ncan O O\nstream O O\n) O O\n, O O\nis O O\nit O O\npossible O O\nto O O\ncapture O O\nsound O O\nand O O\nat O O\nthe O O\nsame O O\ntime O O\ndelivering O O\nit O O\nto O O\na O O\nserver Name Name\nrather O O\nthan O O\nrecording O O\n, O O\nis O O\nthere O O\nany O O\nopensource O O\nprojects O O\non O O\nthis O O\ntopic O O\n? O O\n\nrecording O O\npart O O\nis O O\nhere O O\n\ncurrently O O\ni O O\nam O O\nsaving O O\nthe O O\nrecorded O O\ndetails O O\nto O O\na O O\nByteArrayOutputStream Name Name\nand O O\nat O O\nthe O O\nend O O\nof O O\nrecording O O\nsaving O O\nit O O\nto O O\na O O\nfile O O\nlike O O\nthis O O\n\nWell O O\nI O O\nam O O\nnot O O\nsure O O\nif O O\nI O O\nunderstand O O\nyour O O\nquestion O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\nsend O O\nthe O O\naudio O O\nstream O O\ndirectly O O\nto O O\nthe O O\nserver Name Name\nwhile O O\nrecording O O\nI O O\nguess O O\nyou O O\ncould O O\naccess O O\nyour O O\nByteArrayOutputStream Name Name\n( O O\ndataOut Name Name\n) O O\nin O O\na O O\nseparate O O\nthread O O\n, O O\nget O O\nthe O O\nbytes Name Name\nfrom O O\nthe O O\nstream O O\n, O O\nwrap O O\nthem O O\nin O O\nRTP O O\npackages O O\nand O O\nsend O O\nthem O O\nto O O\nthe O O\nstreaming O O\nserver Name Name\n. O O\n\nThis O O\nseparate O O\nthread O O\nwould O O\nbe O O\nrunning O O\ntogether O O\nwith O O\nthe O O\nrecording O O\nprocess O O\n. O O\n\nIn O O\nthis O O\nway O O\nyou O O\ndo O O\nn't O O\nneed O O\nto O O\nsave O O\nthe O O\naudio O O\nstream O O\nin O O\nany O O\nfile O O\n. O O\n\nHave O O\nyou O O\ntried O O\nthis O O\napproach O O\n? O O\n\nWhich O O\nstreaming O O\nserver Name Name\nare O O\nyou O O\nusing O O\n? O O\n\nI O O\nhave O O\na O O\ntext Name Name\nfile O O\nlike O O\nthis O O\n: O O\n\nI O O\nwant O O\nthe O O\noutput O O\nto O O\nbe O O\nlike O O\nthis O O\n: O O\n\nI O O\nwant O O\nto O O\nchange O O\nthe O O\nsecond O O\nfield O O\nfrom O O\nlower-case O O\ninto O O\nupper-case O O\nand O O\nonly O O\nthe O O\nsecond O O\nfield O O\n. O O\n\nNote O O\nthat O O\nthe O O\nnumber O O\nof O O\nfields O O\nin O O\na O O\ncertain O O\nline O O\nis O O\nnot O O\nfixed O O\n. O O\n\nCan O O\nI O O\naccomplish O O\nthis O O\ngoal O O\nusing O O\nawk Name Name\n? O O\n\nYou O O\nsure O O\ncan O O\n. O O\n\nHere O O\n's O O\nhow O O\n: O O\n\nResults O O\n: O O\n\nFrom O O\nthe O O\nmanual O O\n: O O\n\nI O O\nmade O O\nthe O O\nassumption O O\nthat O O\ngiven O O\nyour O O\nsample O O\ndata O O\n, O O\nit O O\nwould O O\nhave O O\nat O O\nleast O O\nthree O O\ncolumns Name Name\nand O O\nthat O O\nthe O O\nvariable O O\ncomponent O O\nyou O O\ndiscuss O O\napplies O O\nto O O\nthe O O\ncolumns Name Name\nafter O O\nthose O O\ncontaining O O\nwords O O\n. O O\n\nIf O O\nI O O\nwas O O\nwrong O O\n, O O\nyou O O\ncan O O\nsimply O O\nadd O O\nthe O O\nconditional O O\n: O O\n\nI O O\n'm O O\nwriting O O\na O O\ndrawing O O\nprogram O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\ntake O O\nan O O\nordered O O\nlist O O\nmouse Name Name\npositions O O\n, O O\nand O O\napproximate O O\na O O\nsmooth O O\nQuadratic O O\nBSpline O O\nCurve O O\n. O O\n\nDoes O O\nanyone O O\nknow O O\nhow O O\nto O O\naccomplish O O\nthis O O\n? O O\n\nThanks O O\n! O O\n\n\" O O\nB-spline O O\ncurve O O\nfitting O O\nbased O O\non O O\nadaptive O O\ncurve O O\nrefinement O O\nusing O O\ndominant O O\npoints O O\n\" O O\nby O O\nPark O O\n& O O\nLee O O\nand O O\n\" O O\nFair O O\ninterpolation O O\nand O O\napproximation O O\nof O O\nB-splines O O\nby O O\nenergy O O\nminimization O O\nand O O\npoints O O\ninsertion O O\n\" O O\nby O O\nVassilev O O\nseem O O\nto O O\nbe O O\nsolving O O\nthis O O\nproblem O O\n. O O\n\nAlso O O\nthere O O\nlook O O\nlike O O\na O O\nfew O O\nreferences O O\non O O\nthe O O\nfirst O O\nlink O O\nthat O O\nshould O O\nhelp O O\nyou O O\n. O O\n\nConverting O O\ndata O O\npoints O O\nto O O\ncontrol O O\npoints O O\nin O O\nareas O O\nof O O\nhigh O O\ncurvature O O\nand O O\nremoving O O\ndata O O\npoints O O\nin O O\nareas O O\nof O O\nlittle O O\ncurvature O O\nis O O\na O O\ngeneral O O\napproach O O\n. O O\n\nWe O O\nhave O O\nsvn Name Name\n1.6 Name Name\n, O O\na O O\ntrunk O O\nwith O O\napprox O O\n30000 O O\nfiles O O\n( O O\n1 O O\nGB O O\n) O O\n, O O\nand O O\na O O\n\" O O\ntest O O\n\" O O\nbranch O O\noriginally O O\ncopied O O\nfrom O O\ntrunk O O\n. O O\n\nWhen O O\nwe O O\nare O O\nkeeping O O\nour O O\n\" Name Name\ntest Name Name\n\" Name Name\nbranch O O\nin O O\nsync Name Name\n, O O\nthe O O\nsvn Name Name\nmerge Name Name\n^ Name Name\n/trunk Name Name\ncommand O O\ntakes O O\na O O\nlong O O\ntime O O\n( O O\n30 O O\nmin O O\n) O O\nalthough O O\nwe O O\nare O O\nonly O O\nchanging O O\na O O\nfew O O\nfiles O O\nin O O\na O O\nspecific O O\nsubdirectory O O\n. O O\n\nMy O O\nquestion O O\nis O O\n: O O\nDoes O O\nanybody O O\nknow O O\na O O\nway O O\nto O O\nmake O O\nthe O O\nmerge O O\ncommand O O\nfaster O O\n? O O\n\nPS O O\n: O O\nI O O\ndo O O\nn't O O\nunderstand O O\nwhy O O\nthe O O\ncommand O O\ntakes O O\nso O O\nmuch O O\ntime O O\n( O O\nnot O O\ngoing O O\nthrough O O\nthe O O\nlist O O\nof O O\nchanged O O\nfiles O O\nbut O O\napparently O O\ngoing O O\nthrough O O\nthe O O\nall O O\nrepository O O\n) O O\n. O O\n\nDoes O O\nanybody O O\nknows O O\n? O O\n\nIt O O\nis O O\nprobably O O\nrelated O O\nto O O\nthe O O\nnumber O O\nof O O\nsub-folders O O\nin O O\nyour O O\ncheckout O O\n. O O\n\nEach O O\nof O O\nthem O O\nhas O O\nan O O\n.svn Name Name\nfolder O O\nwhich O O\nneeds O O\nto O O\nbe O O\nchecked O O\nfor O O\nlocal O O\nchanges O O\nduring O O\nthe O O\nmerge O O\n. O O\n\nThis O O\ndoes O O\nnot O O\nmean O O\nthat O O\nhaving O O\none O O\nhuge O O\nfolder O O\nwith O O\n30,000 O O\nfiles O O\nwould O O\nbe O O\nany O O\nfaster O O\n, O O\nthough O O\n.. O O\n. O O\n\nEven O O\nin O O\na O O\nsmaller O O\nproject O O\n, O O\nthere O O\nis O O\na O O\nnoticeable O O\ndifference O O\nin O O\ntime O O\nit O O\ntakes O O\nto O O\ndo O O\nthe O O\nsame O O\noperation O O\nwhen O O\nrunning O O\non O O\na O O\nfast O O\nSSD Name Name\ndrive Name Name\nvs O O\n. O O\nregular Name Name\ndrive Name Name\nor O O\na O O\nnetworked O O\nfile O O\nsystem O O\n. O O\n\nI O O\nneed O O\nto O O\nmake O O\na O O\nprogram O O\nat O O\nLC3 Name Name\nassembly Name Name\nthat O O\ndevides O O\n2 O O\nnatural Name Name\nnumbers Name Name\nand O O\nstores O O\nthe O O\nremainder O O\nat O O\nR0.In Name Name\ncase O O\nthat O O\nR1 Name Name\nis O O\nzero Name Name\n, O O\nR1 Name Name\nmust O O\nbe O O\n0.Else Name Name\nR1 Name Name\nmust O O\nbe O O\n1 Name Name\n. O O\n\nMy O O\ncode O O\nis O O\n: O O\n\nThis O O\nis O O\nmy O O\nfirst O O\nprogram O O\nat O O\nLC3 Name Name\nassembly Name Name\n... O O\nI O O\nam O O\na O O\ntotal O O\nbeginner.Could O O\nanyone O O\nexplain O O\nto O O\nme O O\nwhy O O\nthis O O\ndoes O O\nn't O O\ncompile O O\n? O O\nI O O\nalways O O\nget O O\na O O\n\" O O\nInvalid O O\nlabel O O\n' O O\n#25 O O\n\" O O\n\" O O\nerror O O\nmessage.Thank O O\nyou O O\nin O O\nadvance O O\nfor O O\nyour O O\nhelp O O\n! O O\n\nI O O\nwant O O\nsome O O\nsuggestion O O\non O O\nhow O O\nto O O\ndo O O\nthe O O\nfollowing O O\n. O O\n\nIn O O\nmy O O\nASP.Net Name Name\nMVC Name Name\napplication O O\nI O O\nhave O O\na O O\nview O O\nwhich O O\ncan O O\nbe O O\naccessed O O\nunauthorized O O\nand O O\nthis O O\nview O O\nhave O O\na O O\nregistration O O\nform O O\nnow O O\nthe O O\nrequirement O O\nis O O\nthat O O\nthere O O\nyou O O\ncan O O\nregister O O\nfor O O\nmultiple O O\npeople O O\n. O O\n\nSo O O\nfor O O\nexample O O\nif O O\nthe O O\nevent O O\ncan O O\nhave O O\ntwo O O\npersons O O\nregistered O O\nso O O\nI O O\nneed O O\nto O O\nshow O O\ntwo O O\nregistration O O\nform O O\nand O O\nthen O O\nthe O O\ndetaisl O O\nshould O O\nbe O O\nfilled O O\nand O O\npress O O\nsubmit O O\nthen O O\nthis O O\nwhole O O\ndata O O\nshould O O\nbe O O\nvalidated O O\nand O O\npassed O O\nto O O\nController O O\n. O O\n\nI O O\ndo O O\nnot O O\nunderstand O O\nhow O O\nto O O\ndo O O\nthis O O\n. O O\n\nIs O O\nit O O\npossible O O\nto O O\nhave O O\na O O\nViewModel O O\nlike O O\n: O O\n\n? O O\n\nPlease O O\nsuggest O O\n. O O\n\nThanks O O\n\nI O O\n'm O O\nin O O\nthe O O\nprocess O O\nof O O\nbuilding O O\nand O O\ndesigning O O\nmy O O\nfirst O O\nJavascript Name Name\nOOP O O\nweb O O\napplication O O\nand O O\nI O O\n'm O O\nwondering O O\nwhat O O\nkind O O\nof O O\ndata O O\nstructure O O\n/ O O\nmanagement O O\nsystem O O\nwould O O\nbe O O\nbest O O\nto O O\nuse O O\n. O O\n\nI O O\nknow O O\nthe O O\ninteraction O O\nbetween O O\nJavascript Name Name\nand O O\nXML Name Name\nis O O\ngood O O\nand O O\nfairly O O\neasy O O\n, O O\nbut O O\nXML Name Name\nis O O\nn't O O\nmeant O O\nto O O\nbe O O\nused O O\nas O O\na O O\ndatabase O O\n. O O\n\nIs O O\nit O O\nbetter O O\nto O O\nform O O\na O O\ncombination O O\nof O O\nboth O O\n? O O\n\nHave O O\na O O\nserver-side O O\nlanguage O O\n( O O\nPHP Name Name\n) O O\ngenerate O O\nXML Name Name\nand O O\nhave O O\nit O O\nthen O O\nbe O O\nread O O\nby O O\nJS Name Name\n? O O\n\nOr O O\nam O O\nI O O\nheading O O\nin O O\nthe O O\nwrong O O\ndirection O O\nwith O O\nthis O O\n? O O\n\nJavascript Name Name\nitself O O\ndoes O O\nn't O O\ndo O O\nqueries O O\n.... O O\nit O O\nneeds O O\na O O\nhelper O O\nlike O O\nPHP Name Name\n, O O\n.net Name Name\n, O O\nor O O\nJava Name Name\n. O O\n\nIt O O\ncan O O\ntraverse O O\nXML Name Name\nor O O\nJSON Name Name\njust O O\nfine O O\nlike O O\nyou O O\nsay O O\n, O O\nbut O O\nsending O O\ncolossal O O\nXML Name Name\ndocuments O O\nwith O O\nall O O\npossible O O\ndata O O\nwhen O O\nonly O O\nsmall O O\namounts O O\nof O O\nthe O O\ndata O O\nis O O\nactually O O\nrequired O O\nwill O O\nlead O O\nto O O\nmassive O O\noverhead O O\nthat O O\nwill O O\nbring O O\nyour O O\napp O O\nto O O\nits O O\nknees O O\n. O O\n\nIt O O\n's O O\nthe O O\ndefinition O O\nof O O\nlack-of-scalability O O\n. O O\n\nMy O O\npersonal O O\npreference O O\nis O O\nJQuery Name Name\nAjax Name Name\ntalking O O\nto O O\na O O\nPHP Name Name\nbackend O O\n( O O\ntransactions O O\nvia O O\nJSON Name Name\n) O O\n. O O\n\nIf O O\nI O O\n'm O O\ndealing O O\nwith O O\nthe O O\npresentation O O\nof O O\nlarge O O\ndatasets O O\nI O O\n'll O O\nalways O O\npage O O\nthe O O\ninformation O O\nserver-side O O\nand O O\npipeline O O\nit O O\n( O O\nload O O\ndata O O\nahead O O\nof O O\nand O O\nbehind O O\nthe O O\ncurrent O O\nview O O\nto O O\nreduce O O\ntransactions O O\n) O O\n, O O\nand O O\nusually O O\npresent O O\nin O O\nvia O O\njQuery Name Name\nDataTables Name Name\n. O O\n\nGrids O O\nare O O\nalways O O\nyour O O\nfriend O O\nwith O O\nlarge O O\namounts O O\nof O O\ndata O O\n. O O\n\nAgain O O\n, O O\npersonal O O\npreference O O\n, O O\nbut O O\nI O O\nmake O O\nheavy O O\nuse O O\nof O O\njQuery Name Name\nUI O O\nfor O O\nlayout O O\nand O O\npresentation O O\n, O O\nand O O\nI O O\ndo O O\nwrite O O\ncustom O O\nJavascript Name Name\nfor O O\nthe O O\n\" O O\nnifty O O\n\" O O\none-off O O\ntype O O\nthings O O\nthat O O\ncome O O\nup O O\n. O O\n\nAgain O O\n, O O\nany O O\nserver O O\nlanguage O O\nyou O O\nhave O O\naccess O O\nto O O\nand O O\nare O O\ncomfortable O O\nwith O O\nwill O O\nsuffice O O\n, O O\nas O O\nJavascript Name Name\nis O O\nlanguage O O\nagnostic O O\n. O O\n\nJavascript Name Name\ncan O O\nget O O\nout O O\nof O O\nhand O O\nin O O\na O O\nhurry O O\n. O O\n\nI O O\n'd O O\nrecommend O O\nthat O O\nunless O O\nyou O O\nhave O O\na O O\nton O O\nof O O\ntime O O\non O O\nyour O O\nhands O O\nthat O O\nyou O O\nfocus O O\non O O\nclean O O\npresentation O O\nvia O O\nsomething O O\nbaseline O O\nlike O O\nHTML Name Name\nwith O O\njudicious O O\nuse O O\nof O O\nJavascript Name Name\nand O O\nCSS Name Name\nfor O O\nprogressive O O\nenhancement O O\n. O O\n\nThink O O\nabout O O\nthe O O\nuser O O\nbefore O O\nyou O O\ngo O O\ncrazy O O\nwith O O\nmotion O O\n, O O\ndynamic O O\nelements O O\n, O O\netc O O\n. O O\n\nDo O O\nn't O O\nforget O O\nthe O O\nold O O\nadage O O\n, O O\n\" O O\n80% O O\nof O O\nthe O O\npeople O O\nonly O O\nuse O O\n20% O O\nof O O\nthe O O\nfunctionality O O\n\" O O\nNail O O\nthat O O\n20% O O\ncleanly O O\nbefore O O\ngoing O O\nto O O\ntown O O\non O O\nflashy O O\njavascript Name Name\nfluff O O\n. O O\n\nYour O O\nusers O O\nwill O O\nthank O O\nyou O O\n! O O\n\nJSON Name Name\nis O O\nby O O\nfar O O\nthe O O\nfastest O O\nto O O\nparse O O\n, O O\nsince O O\nit O O\nIS O O\nJavaScript Name Name\n. O O\n\nApplication O O\nframeworks O O\nlike O O\nEXT.JS Name Name\nare O O\nalready O O\ndoing O O\nthis O O\nwith O O\ngreat O O\nsuccess O O\n. O O\n\nThe O O\nfollowing O O\ndescribes O O\nwhat O O\nseems O O\nto O O\nbe O O\na O O\nbug O O\nin O O\nRuby Name Name\n1.8 Name Name\n( O O\nand O O\nREE Name Name\n) O O\nbut O O\nhas O O\nbeen O O\nfixed O O\nin O O\n1.9 Name Name\n. O O\n\nI O O\n'd O O\nlike O O\nto O O\nknow O O\n: O O\n\nWhy O O\ncalling O O\n== Name Name\non O O\nString Name Name\nor O O\nFixnum Name Name\ntriggers O O\ncalling O O\n== Name Name\non O O\nother Name Name\nobject O O\nat O O\nall O O\n? O O\n\nWhy O O\ncalling O O\n== Name Name\non O O\nString Name Name\nworks O O\ndifferently O O\ndepending O O\non O O\nthe O O\nother Name Name\nobject O O\nclass O O\n? O O\n\nNow O O\nthe O O\ncode O O\n: O O\n\nExample O O\n1 O O\n\nNothing O O\ninteresting O O\nhere O O\n, O O\nmove O O\nalong O O\n. O O\n\nExample O O\n2 O O\n\nCalling O O\n== Name Name\non O O\nString Name Name\ntriggers O O\n== Name Name\non O O\nother Name Name\nobject O O\nof O O\nException Name Name\nclass O O\n. O O\n\nExample O O\n3 O O\n\nCalling O O\n== Name Name\non O O\nFixnum Name Name\ntriggers O O\n== Name Name\non O O\nother Name Name\nobject O O\n. O O\n\nExample O O\n4 O O\n\nCalling O O\n== Name Name\non O O\nString Name Name\ntriggers O O\n== Name Name\non O O\nother Name Name\nobject O O\nof O O\nException Name Name\nclass O O\n. O O\n\nRuby Name Name\nis O O\nan O O\nobject-oriented O O\nlanguage O O\n. O O\n\nIn O O\nan O O\nobject-oriented O O\nlanguage O O\n, O O\nyou O O\nsend O O\nmessages O O\nto O O\nobjects O O\nand O O\nthose O O\nobjects O O\nthen O O\nrespond O O\nto O O\nthose O O\nmessages O O\nhowever O O\nthey O O\nsee O O\nfit O O\n. O O\n\nThis O O\nmeans O O\nthat O O\nthe O O\nreceiver O O\nof O O\nthe O O\nmessage O O\n, O O\nand O O\nonly O O\nthe O O\nreceiver(!) O O\n\nis O O\nin O O\ntotal O O\ncontrol O O\nof O O\nwhat O O\na O O\nmessage O O\nmeans O O\n. O O\n\nWith O O\nsome O O\noperators O O\n, O O\nhowever O O\n, O O\nthere O O\nare O O\ncertain O O\nexpectations O O\nof O O\nsymmetry O O\n: O O\nfor O O\nexample O O\n, O O\na Name Name\n== Name Name\nb Name Name\nis O O\nexpected O O\nto O O\nbe O O\nthe O O\nsame O O\nas O O\nb Name Name\n== Name Name\na Name Name\n. O O\n\nBut O O\nin O O\nan O O\nOO O O\nlanguage O O\nthat O O\nis O O\nimpossible O O\n! O O\n\nEither O O\na Name Name\nor O O\nb Name Name\nmust O O\nbe O O\nthe O O\nreceiver O O\nof O O\nthe O O\nmessage O O\n, O O\nso O O\nin O O\none O O\ncase O O\na Name Name\ngets O O\nto O O\ndecide O O\nwhether O O\na Name Name\nand O O\nb Name Name\nare O O\nequal O O\nand O O\nin O O\nthe O O\nother O O\ncase O O\nb Name Name\ngets O O\nto O O\ndecide O O\n. O O\n\nThey O O\nmight O O\ndecide O O\ndifferently O O\n, O O\nand O O\nthen O O\nthe O O\nexpectation O O\nof O O\nsymmetry O O\nwould O O\nbe O O\nbroken O O\n. O O\n\nSo O O\n, O O\nin O O\nsome O O\nclasses O O\nequality O O\nis O O\nactually O O\nimplemented O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nHere O O\n's O O\nan O O\nexample O O\n: O O\nif O O\nyou O O\nwrite O O\nyour O O\nown O O\nNumeric Name Name\nclass O O\n( O O\nsay O O\n, O O\na O O\nQuaternion Name Name\nclass O O\n) O O\n, O O\nthen O O\nthe O O\nsystem O O\nbuiltin O O\nFixnum Name Name\nclass O O\ndoes O O\nn't O O\nknow O O\nanything O O\nabout O O\nQuaternions Name Name\n. O O\nSo O O\n, O O\nwhen O O\nyou O O\nask O O\nthe O O\nFixnum Name Name\n0 O O\nwhether O O\nit O O\nis O O\nequal O O\nto O O\nthe O O\nQuaternion Name Name\n( Name Name\n0 Name Name\n, Name Name\n0 Name Name\n, Name Name\n0 Name Name\n, Name Name\n0 Name Name\n) Name Name\n, O O\nit O O\nwill O O\nresponds O O\nfalse Name Name\n, O O\neven O O\nthough O O\nthat O O\n's O O\nwrong O O\n. O O\n\nSo O O\n, O O\ninstead O O\nthe O O\nFixnum Name Name\nwill O O\nfirst O O\ncheck O O\n: O O\ndo O O\nI O O\nknow O O\nhow O O\nto O O\ncompare O O\nmyself O O\nto O O\na O O\nQuaternion Name Name\n? O O\n\nNo O O\n, O O\nI O O\ndo O O\nn't O O\n, O O\nbut O O\nmaybe O O\na O O\nQuaternion Name Name\nknows O O\nhow O O\nto O O\ncompare O O\nitself O O\nto O O\na O O\nFixnum Name Name\n! O O\n\nAfter O O\nall O O\n, O O\nthe O O\nQuaternion Name Name\nclass O O\ndid O O\nn't O O\nexist O O\nwhen O O\nthe O O\nFixnum Name Name\nclass O O\nwas O O\nwritten O O\n, O O\nso O O\nthe O O\nFixnum Name Name\nclass O O\ncannot O O\nknow O O\nabout O O\nQuaternions Name Name\n. O O\nBut O O\nwhen O O\nthe O O\nQuaternion Name Name\nclass O O\nwas O O\nwritten O O\n, O O\nmaybe O O\nthe O O\nauthor O O\nwas O O\nso O O\nthoughtful O O\nto O O\nmake O O\nit O O\npossible O O\nto O O\ncompare O O\nQuaternions Name Name\nwith O O\nFixnums Name Name\n. O O\n\nThat O O\n's O O\nwhy O O\nFixnum# Name Name\n== Name Name\nreverses O O\nthe O O\narguments O O\nand O O\ntries O O\nagain O O\n. O O\n\nWith O O\nString Name Name\n, O O\nit O O\n's O O\nthe O O\nsame O O\nbut O O\nsomewhat O O\nmore O O\ncomplicated O O\n. O O\n\nIn O O\nRuby Name Name\n, O O\nclasses O O\nare O O\nn't O O\ntypes O O\nand O O\nsubtyping O O\nand O O\nsubclassing O O\nare O O\ndifferent O O\n. O O\n\nRuby Name Name\nitself O O\ndoes O O\nn't O O\nhave O O\na O O\nconcept O O\nof O O\ntype O O\nat O O\nall O O\n! O O\n\nThe O O\ntype O O\nof O O\nan O O\nobject O O\nis O O\nits O O\nprotocol O O\n, O O\ni.e O O\n. O O\nthe O O\nmessages O O\nit O O\nunderstands O O\nand O O\nhow O O\nit O O\nresponds O O\nto O O\nthem O O\n. O O\n\nBut O O\nthat O O\nconcept O O\nis O O\nnot O O\nrecorded O O\nin O O\nRuby Name Name\n( O O\nunlike O O\nObjective-C Name Name\n, O O\nfor O O\nexample O O\n, O O\nwhich O O\ndoes O O\nhave O O\nan O O\nexplicit O O\nnotion O O\nof O O\nprotocol O O\n) O O\n. O O\n\nThere O O\n, O O\nhowever O O\n, O O\nsome O O\ncases O O\n, O O\nwhere O O\nyou O O\nwant O O\nto O O\nbreak O O\nOO O O\nencapsulation O O\n, O O\nand O O\nknow O O\nthe O O\nspecific O O\ntype O O\nand O O\neven O O\nmore O O\n: O O\nthe O O\nspecific O O\nrepresentation O O\nof O O\nthe O O\ntype O O\n. O O\n\n( O O\nNote O O\n: O O\nthis O O\nviolates O O\nOO O O\n, O O\nbut O O\nit O O\nis O O\nsometimes O O\nnecessary O O\nfor O O\nperformance O O\n. O O\n) O O\n\nIn O O\ncases O O\n, O O\nwhere O O\nRuby Name Name\nneeds O O\nan O O\nobject O O\nto O O\nbe O O\nof O O\na O O\nspecific O O\nclass O O\ninstead O O\nof O O\njust O O\nresponding O O\nto O O\na O O\nspecific O O\nprotocol O O\n, O O\nyou O O\nwould O O\nlose O O\na O O\nlot O O\nof O O\nflexibility O O\n. O O\n\nYou O O\nhave O O\nto O O\nuse O O\n, O O\nsay O O\n, O O\na O O\nString Name Name\n, O O\neven O O\nthough O O\nyou O O\nwould O O\nmuch O O\nrather O O\nuse O O\na O O\nRope Name Name\ninstead O O\n. O O\n\nIn O O\norder O O\nto O O\ngive O O\nyou O O\nback O O\nsome O O\nflexibility O O\n, O O\nRuby Name Name\nallows O O\nyou O O\nto O O\npass O O\nin O O\nsomething O O\nwhich O O\nis O O\nnot O O\nexactly O O\na O O\nString Name Name\nbut O O\nwhich O O\nis O O\nequivalent O O\nto O O\none O O\nand O O\ncan O O\nbe O O\nconverted O O\nto O O\none O O\nwith O O\na O O\nto_str Name Name\nmethod O O\n. O O\n\nSo O O\n, O O\nunlike O O\nother O O\nlanguages O O\n, O O\nwhere O O\nA Name Name\nIS-A Name Name\nString Name Name\nis O O\nrepresented O O\nby O O\nA Name Name\nbeing O O\na O O\nsubclass O O\nof O O\nString Name Name\n, O O\nin O O\nRuby Name Name\n, O O\nthe O O\nrelationship O O\nA Name Name\nIS-A Name Name\nString Name Name\nis O O\nrepresented O O\nby O O\nA Name Name\nhaving O O\na O O\nto_str Name Name\nmethod O O\n. O O\n\nThat O O\n's O O\nwhat O O\nyou O O\nare O O\nseeing O O\nabove O O\n. O O\n\nIf O O\nthe O O\nargument O O\nto O O\nString# Name Name\n== Name Name\nis O O\nn't O O\na O O\nString Name Name\n, O O\nthen O O\nString# Name Name\n== Name Name\ndoes O O\nn't O O\nknow O O\nwhat O O\nto O O\ndo O O\nwith O O\nit O O\n. O O\n\nBut O O\nif O O\nit O O\nis O O\n\" O O\nstring-like O O\n\" O O\n, O O\ni.e O O\n. O O\nit O O\nimplements O O\nto_str Name Name\n, O O\nthen O O\nmaybe O O\nit O O\ndoes O O\nknow O O\nhow O O\nto O O\ncompare O O\nitself O O\nto O O\na O O\nString Name Name\n? O O\n\nNote O O\nthat O O\nequality O O\nis O O\nvery O O\nhard O O\nto O O\nget O O\nright O O\n. O O\n\nPeople O O\ncannot O O\neven O O\nagree O O\non O O\nwhat O O\nit O O\nmeans O O\nin O O\na O O\npurely O O\nfunctional O O\nlanguage O O\n, O O\nand O O\nthat O O\n's O O\nthe O O\neasy O O\ncase O O\n! O O\n\nIn O O\nRuby Name Name\n, O O\nthere O O\nare O O\ntwo O O\nadditional O O\ncomplications O O\n: O O\nmutable O O\nstate O O\nand O O\nOO O O\n. O O\n\nMutable O O\nstate O O\nmeans O O\nthat O O\ntwo O O\nobjects O O\nthat O O\nwere O O\nequal O O\na O O\nmoment O O\nago O O\nmay O O\nnot O O\nbe O O\nequal O O\nanymore O O\na O O\ncouple O O\nof O O\nmoments O O\nlater O O\n. O O\n\nOr O O\nshould O O\nthey O O\nbe O O\n? O O\n\nOr O O\nshould O O\nn't O O\nthey O O\nbe O O\n? O O\n\nAnd O O\nOO O O\nmeans O O\nthat O O\nequality O O\ncannot O O\nbe O O\nsymmetric O O\n. O O\n\nThat O O\n's O O\nwhy O O\nthe O O\nimplementations O O\nof O O\n== Name Name\nfor O O\nvarious O O\ncore O O\nand O O\nstdlib Name Name\nclasses O O\nare O O\nconstantly O O\nimproved O O\n. O O\n\nThat O O\n's O O\nalso O O\nwhy O O\nyou O O\nmay O O\nsee O O\nweird O O\nbehavior O O\nnow O O\nand O O\nagain O O\n. O O\n\nSometimes O O\nit O O\nmay O O\njust O O\nbe O O\nan O O\nartifact O O\nof O O\ntrying O O\nto O O\nget O O\nequality O O\nright O O\n, O O\nand O O\nsometimes O O\nit O O\nmight O O\njust O O\nsimply O O\nbe O O\na O O\nbug O O\n. O O\n\nBy O O\nthe O O\nway O O\n: O O\nfor O O\nthe O O\narithmetic O O\noperators O O\n, O O\nsubclasses O O\nof O O\nNumeric Name Name\nactually O O\nhave O O\na O O\nmore O O\nformal O O\ndouble-dispatch O O\nprotocol O O\nusing O O\nthe O O\ncoerce Name Name\nmethod O O\n. O O\n\nIf O O\na O O\nNumeric Name Name\nobject O O\ndoes O O\nn't O O\nknow O O\nwhat O O\nto O O\ndo O O\nwith O O\nanother O O\nNumeric Name Name\n, O O\nit O O\nwill O O\nask O O\nthat O O\nother O O\nobject O O\nto O O\ncoerce Name Name\nthe O O\ntwo O O\nobjects O O\nto O O\na O O\ntype O O\nthat O O\ndoes O O\nknow O O\nthat O O\n. O O\n\nFor O O\nexample O O\n, O O\nif O O\nyou O O\ntry O O\nto O O\nadd O O\na O O\nQuaternion Name Name\nto O O\na O O\nFixnum Name Name\n, O O\nthe O O\nFixnum Name Name\nwo O O\nn't O O\nknow O O\nwhat O O\nto O O\ndo O O\n: O O\n\nThe O O\n+ Name Name\nmethod O O\nof O O\nFixnum Name Name\nwill O O\nthen O O\ncall O O\n: O O\n\nIOW O O\n: O O\nit O O\nwill O O\ncall O O\nQuaternion Name Name\n#coerce Name Name\nwith O O\nthe O O\nequivalent O O\nof O O\n\nto O O\nwhich O O\nQuaternion Name Name\nwill O O\nrespond O O\nwith O O\nan O O\nArray Name Name\nof O O\n[ Name Name\nQuaternion.new(2,0,0,0) Name Name\n, Name Name\nQuaternion.new(1,0,0,0) Name Name\n] Name Name\n\nThen O O\n, O O\nFixnum#+ Name Name\nwill O O\ntry O O\nagain O O\nby O O\nsimply O O\ncalling O O\n\nWhich O O\nwill O O\nnow O O\nwork O O\nbecause O O\na Name Name\nis O O\na O O\nQuaternion Name Name\nalso O O\nand O O\nknows O O\nhow O O\nto O O\nadd O O\ntwo O O\nQuaternions Name Name\n. O O\n\nA O O\nvery O O\ncommon O O\nimplementation O O\nof O O\ncoerce Name Name\nis O O\nsimply O O\nto O O\nswap O O\nthe O O\narguments O O\n, O O\ni.e O O\n. O O\n\nThat O O\n's O O\nequivalent O O\nto O O\nthe O O\nbehavior O O\nyou O O\nare O O\nseeing O O\nwith O O\nFixnum# Name Name\n== Name Name\n. O O\n\nAgain O O\n: O O\nthis O O\nkind O O\nof O O\ndispatch O O\nis O O\nhard O O\nto O O\nget O O\nright O O\n, O O\nand O O\nthere O O\nare O O\nimprovements O O\nbeing O O\nmade O O\nto O O\nthe O O\ncoerce Name Name\nprotocol O O\n. O O\n\nRuby Name Name\nhas O O\nfour O O\nlevels O O\nof O O\nobject O O\nequivalence O O\n: O O\n\n#equal Name Name\n? Name Name\n– O O\nsame O O\nobject O O\n\n#eql Name Name\n? Name Name\n– O O\nhighest O O\nlevel O O\nof O O\nequivalence O O\nbelow O O\nsame O O\nobject O O\n\n# Name Name\n== Name Name\n– O O\n\" O O\nstandard O O\n\" O O\nequality O O\n\n# Name Name\n== Name Name\n= Name O\n, O O\n# Name Name\n= Name Name\n~ Name Name\n, O O\n#hash Name Name\n, O O\netc O O\n. O O\n\n– O O\nloose O O\nequivalence O O\n, O O\n\" O O\nsame O O\ngroup O O\n\" O O\nequivalence O O\n\nMindful O O\nprogrammer O O\nequips O O\neach O O\nof O O\nher O O\nclasses O O\nwith O O\nall O O\nof O O\nthese O O\nmethods O O\nexcept O O\n#equal Name Name\n? Name Name\n, O O\nwhich O O\nshould O O\nnever O O\nbe O O\noverriden O O\n. O O\n\nGoing O O\nback O O\nto O O\nthe O O\nsubject O O\nof O O\nyour O O\nquestion O O\n, O O\nmany O O\nbuilt-in O O\nRuby Name Name\nobjects O O\nhave O O\ntheir O O\nshare O O\nof O O\nidiosyncrasies O O\nin O O\nthe O O\nimplementation O O\nof O O\nthese O O\nmethods O O\n. O O\n\nRuby Name Name\ncore O O\nteam O O\nconstantly O O\nworks O O\nto O O\nimprove O O\nthem O O\n, O O\nso O O\nyou O O\nshould O O\nmake O O\nyour O O\nway O O\nfrom O O\n1.8 Name Name\nto O O\n2.0 Name Name\n, O O\nwhich O O\nfixes O O\na O O\nnumber O O\nof O O\n1.8 Name Name\nproblems O O\n. O O\n\nOne O O\nmore O O\nthing O O\nto O O\nmention O O\nwith O O\n# Name Name\n== Name Name\nmethod O O\n, O O\nis O O\nthat O O\nfor O O\nthe O O\nclasses O O\nthat O O\nrepresent O O\nelements O O\nof O O\nordered O O\nsets O O\n, O O\nyou O O\ndo O O\nnot O O\nimplement O O\n# Name Name\n== Name Name\ndirectly O O\n, O O\nbut O O\ninstead O O\nyou O O\nprovide O O\n#<=> Name Name\nthree-way O O\ncomparison O O\nmethod, O O\nand O O\ninclude O O\nComparable Name Name\nmodule, O O\nwhich O O\ngives O O\nyou O O\nfor O O\nfree O O\nmethods O O\nsuch O O\nas O O\n#==, Name Name\n#<, Name Name\n#> Name Name\n, O O\n#sort Name Name\n, O O\netc O O\n. O O\n\nYet O O\none O O\nmore O O\nthing O O\nto O O\nmention O O\nwith O O\nall O O\nof O O\nthese O O\noperators O O\nand O O\noperator-like O O\nmethods O O\n, O O\nbe O O\nmindful O O\nof O O\nthe O O\nexistence O O\nof O O\n#coerce Name Name\nmethod O O\n, O O\nwhich O O\nis O O\ncurrently O O\nundergoing O O\nimprovements O O\nin O O\nRuby Name Name\n2.0 Name Name\n. O O\n\nI O O\nhave O O\na O O\nweb O O\napplication O O\nand O O\nit O O\nhas O O\ntwo O O\ncontroller O O\nclasses O O\n. O O\n\nThe O O\ntwo O O\ncontrollers O O\nhave O O\nan O O\naction O O\nwith O O\nFormCollection Name Name\nparameter O O\nwith O O\nHTTPPost Name Name\nattribute O O\ndecorated O O\n. O O\n\nIf O O\nI O O\nclick O O\non O O\nForm O O\nsubmit O O\nbutton Name Name\nthen O O\nwhich O O\naction O O\nwill O O\nbe O O\ntriggered O O\nto O O\ncapture O O\nthe O O\nform Name Name\n's O O\nvalues O O\nwithin O O\nthe O O\ncontroller O O\n. O O\n\nUsing O O\nthe O O\nForm Name Name\nCollection Name Name\nclass O O\nwe O O\ncan O O\ncapture O O\nthe O O\nform Name Name\n's O O\nvalues O O\nwithin O O\nthe O O\ncontroller.There O O\nare O O\nmany O O\nways O O\nto O O\nfetch O O\nthese O O\nvalues O O\nand O O\nForm Name Name\nCollection Name Name\nis O O\nthe O O\none O O\nof O O\nthem O O\n. O O\n\nhttp://tutorial.techaltum.com/Form-collection-in-MVC.html O O\n\nhttp://www.c-sharpcorner.com/UploadFile/dacca2/understand-formcollection-in-mvc-controller/ O O\n\nFollow O O\nabove O O\nlink O O\nIt O O\nwill O O\nhelp O O\nyou O O\nto O O\nunderstand O O\nmore O O\n. O O\n\nI O O\n've O O\nbuild O O\nthe O O\nexoplayer Name Name\nffmpeg Name Name\nextension O O\nand O O\nadded O O\nto O O\nmy O O\nproject O O\n, O O\nbecause O O\ni O O\nneed O O\nto O O\nsupport O O\nAMR Name Name\nformat O O\n, O O\nso O O\n: O O\n\nFollowing O O\nthe O O\ntutorial O O\n: O O\nFFmpeg Name Name\nExtension O O\n\nAfter O O\nthe O O\ncompilation O O\nstep O O\n: O O\n\nI O O\n've O O\ngenerated O O\naar Name Name\nfile O O\nwith O O\n: O O\n\nSo O O\nI O O\ngot O O\nthe O O\nextension-ffmpeg-debug.arr Name Name\nfile O O\ngenerated O O\nand O O\nput O O\nit O O\nin O O\nthe O O\nlib Name Name\nfolder O O\nof O O\nmy O O\nproject O O\n. O O\n\nMy O O\nplayer O O\nimplementation O O\n: O O\n\nThe O O\nerror O O\n: O O\n\nWhat O O\nelse O O\nshould O O\nbe O O\nconfigured O O\nto O O\nrun O O\nthe O O\nAMR Name Name\nformat O O\n, O O\ndoes O O\nanyone O O\nhave O O\nany O O\nsuggestions O O\n? O O\n\nHow O O\nwould O O\nI O O\ndeclare O O\nan O O\narray Name Name\nin O O\nSwift Name Name\nwhich O O\ncan O O\nhold O O\nvalues O O\nof O O\nany O O\nenum Name Name\nString Name Name\ntype O O\n? O O\n\nHere O O\n's O O\nwhat O O\nI O O\nwant O O\nto O O\ndo O O\n: O O\n\nThe O O\ntwo O O\nenum Name Name\ntypes O O\nare O O\nloosely O O\nrelated O O\nbut O O\ndefinitely O O\ndistinct O O\nand O O\nI O O\nneed O O\nto O O\nkeep O O\nthe O O\nvalues O O\nseparated O O\nin O O\nthis O O\ninstance O O\n, O O\nso O O\nlumping O O\nthem O O\nall O O\ntogether O O\nin O O\none O O\nenum Name Name\nand O O\ndeclaring O O\nthe O O\narray Name Name\nof O O\ntype O O\nMyAllIncludingEnumType Name Name\nis O O\nnot O O\ndesirable O O\n. O O\n\nOr O O\nshould O O\nI O O\njust O O\ndeclare O O\nan O O\narray Name Name\nof O O\nStrings Name Name\nand O O\nadd O O\nthe O O\nrawValues Name Name\ndirectly O O\n? O O\n\nI O O\ncould O O\ndeclare O O\nthe O O\narray Name Name\nas O O\n[ Name Name\nAnyObject Name Name\n] Name Name\nbut O O\nthen O O\nI O O\n'd O O\nhave O O\nto O O\ntype O O\ncheck O O\neach O O\nelement O O\nbefore O O\nattempting O O\nto O O\naccess O O\nthe O O\n.rawValue Name Name\n, O O\nwhich O O\nis O O\nn't O O\ngreat O O\neither O O\n. O O\n\nCurrently O O\nI O O\n'm O O\nonly O O\nable O O\nto O O\nuse O O\nSwift Name Name\n1.2 Name Name\non O O\nthis O O\nproject O O\n, O O\nas O O\nit O O\n's O O\nfor O O\nan O O\napp O O\nwhich O O\nis O O\nalready O O\nin O O\nthe O O\nApp Name Name\nStore Name Name\nand O O\nI O O\nneed O O\nto O O\nbe O O\nable O O\nto O O\nship O O\nupdates O O\nbefore O O\nXcode Name Name\n7 Name Name\ngoes O O\nGM O O\n. O O\n\nOr O O\nis O O\nthere O O\na O O\ncleaner O O\nbut O O\ncompletely O O\nalternate O O\nsolution O O\nto O O\nwhat O O\nI O O\nwant O O\nto O O\ndo O O\n? O O\n\nAn O O\nalternative O O\nto O O\nKametrixom O O\n's O O\nanswer O O\nis O O\nto O O\nmake O O\nboth O O\nenums Name Name\nconform O O\nto O O\na O O\ncommon O O\nprotocol O O\n. O O\n\nBoth O O\nautomatically O O\nconform O O\nto O O\nRawRepresentable Name Name\n, O O\nbecause O O\nof O O\nthe O O\nraw O O\nvalue O O\nof O O\nString Name Name\n: O O\n\nHowever O O\n, O O\nyou O O\ncannot O O\nuse O O\nthis O O\nas O O\nthe O O\ntype O O\nstored O O\nin O O\nthe O O\narray Name Name\nsince O O\nRawRepresentable Name Name\nis O O\na O O\ngeneric O O\nprotocol O O\n. O O\n\nInstead O O\nyou O O\ncould O O\ndo O O\n: O O\n\nJust O O\nthink O O\nabout O O\nit O O\nlogically O O\n: O O\nYou O O\nwant O O\nto O O\nstore O O\nmultiple O O\nenums Name Name\nin O O\nan O O\narray Name Name\n, O O\nso O O\nit O O\ncan O O\nbe O O\neither O O\nthis O O\nor O O\nthat O O\nenum Name Name\n, O O\nwhich O O\nis O O\njust O O\nwhat O O\nan O O\nenum Name Name\nis O O\n! O O\n\nYou O O\ncan O O\ndeclare O O\nan O O\nnew O O\nenum Name Name\nthat O O\nhas O O\nassociated O O\nvalues O O\nof O O\nall O O\nthe O O\naccepted O O\nother O O\nenums Name Name\nlike O O\nso O O\n: O O\n\nThen O O\nyou O O\ncan O O\ncreate O O\nan O O\narray Name Name\nlike O O\nthis O O\n: O O\n\nI O O\nam O O\ntrying O O\nto O O\ncreate O O\nan O O\napproval O O\nprocess O O\nright O O\nnow O O\n, O O\nand O O\nin O O\norder O O\nto O O\ndo O O\nso O O\n, O O\nI O O\nhave O O\na O O\nsummary O O\nsheet O O\n, O O\nwhich O O\ncurrent O O\nshows O O\nthe O O\ndetails O O\nof O O\nthe O O\noffers O O\nand O O\nthen O O\na O O\ndetail O O\nsheet O O\n, O O\nwhere O O\nI O O\nam O O\nkeeping O O\na O O\nlog O O\nof O O\nwhat O O\nis O O\napproved O O\n. O O\n\nCurrently O O\nyou O O\ntype O O\nthe O O\ninformation O O\nof O O\nthe O O\noffer O O\ninto O O\nthe O O\nsecond O O\nsheet O O\n( O O\noffer O O\ndetails O O\n) O O\n, O O\nand O O\nthen O O\nthe O O\napprover O O\ncan O O\nview O O\na O O\ndrop Name Name\ndown Name Name\nbox Name Name\nto O O\nsee O O\nwhat O O\nis O O\nopen O O\nand O O\nneeds O O\nto O O\nbe O O\napproved O O\n. O O\n\nI O O\nhave O O\neverything O O\nworking O O\n, O O\nexcept O O\n, O O\nI O O\nneed O O\nthe O O\napprover O O\nto O O\nclick O O\na O O\nbutton Name Name\nand O O\nit O O\nwill O O\nsend O O\nthe O O\nusername O O\nof O O\nthe O O\napprover O O\nand O O\nthe O O\ndate O O\nto O O\nthe O O\ncorresponding O O\ncell O O\non O O\nthe O O\nOffer O O\nDetail O O\ntab Name Name\n. O O\n\nI O O\nhave O O\ncreated O O\na O O\nkey O O\n, O O\nin O O\nH1 O O\nwhich O O\nwill O O\nallow O O\nthe O O\ncode O O\nto O O\nfind O O\nthe O O\ncorrect O O\nline O O\nwhat O O\nis O O\ncolumn Name Name\nB Name Name\non O O\nthe O O\noffer O O\ndetails O O\npage O O\nmatches O O\nwhat O O\nis O O\nin O O\nthe O O\nSummary O O\nTab O O\nin O O\nH1 O O\n. O O\n\nI O O\nhave O O\nthis O O\ncode O O\nthat O O\nI O O\nwrote O O\nbelow O O\n, O O\nbut O O\nit O O\nis O O\nnot O O\nworking O O\n. O O\n\nThe O O\ncells Name Name\nwhere O O\nthe O O\nusername O O\nneeds O O\nto O O\ngo O O\ninto O O\ncolumn Name Name\nM Name Name\non O O\nthe O O\noffer O O\ndetail O O\nsheet O O\n( O O\nonce O O\nit O O\nfinds O O\nthe O O\nright O O\nrow Name Name\nbased O O\non O O\nthe O O\nkey O O\nin O O\nthe O O\nsummary O O\n) O O\n. O O\n\nIt O O\nhas O O\nto O O\nbe O O\nhardcoded O O\n, O O\nso O O\nI O O\ncan O O\nkeep O O\nit O O\nfor O O\naudit O O\npurposes O O\n. O O\n\nIf O O\nthis O O\ndoes O O\nn't O O\nmake O O\nsense O O\nlet O O\nme O O\nknow O O\nand O O\nI O O\nwill O O\ntry O O\nto O O\nclarify O O\n. O O\n\nThank O O\nyou O O\n! O O\n\nYou O O\ncan O O\ndo O O\nthis O O\nif O O\nyou O O\nneed O O\ncolum O O\n\" O O\nM Name Name\n\" O O\nto O O\nbe O O\nevery O O\ntime O O\n, O O\nbase O O\non O O\nyour O O\ncode O O\n: O O\n\nThis O O\nquestion O O\nis O O\nrelated O O\nto O O\nanother O O\nquestion O O\nI O O\nasked O O\n\nBasically O O\n, O O\nI O O\nhave O O\n2 O O\nhorizontally O O\naligned O O\ndivs Name Name\n. O O\n\nBoth O O\nsit O O\ninside O O\na O O\ndiv Name Name\ncalled O O\n\" O O\n.Parent Name Name\n\" O O\n, O O\nso O O\nthe O O\nstructure O O\nis O O\nlike O O\nthis O O\n: O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nthe O O\nParent O O\ndiv Name Name\nexists O O\ninside O O\na O O\nanother O O\ndiv Name Name\ncalled O O\n#main O O\n. O O\n\n#main O O\nhas O O\na O O\nwhite O O\nbackground Name Name\nthat O O\nframes O O\nall O O\nof O O\nmy O O\ncontent O O\n. O O\n\nBefore O O\nI O O\nadded O O\nthe O O\nfloats O O\nto O O\nthe O O\ndivs Name Name\ninside O O\n.Parent Name Name\n, O O\neverything O O\nwas O O\nfine O O\nbecause O O\nthe O O\ncontaining O O\nDiv Name Name\npushed O O\nthe O O\nwhite O O\nbackground Name Name\ndown O O\nto O O\nthe O O\nright O O\nsize O O\n. O O\n\nBut O O\nnow O O\nthat O O\nthe O O\ndivs Name Name\nare O O\nfloating O O\n, O O\nthey O O\ndo O O\nn't O O\npush O O\n#main Name Name\n' O O\ns O O\nwhite O O\nbackground Name Name\ndown O O\n. O O\n\nCan O O\nanyone O O\nsuggest O O\nhow O O\nto O O\nget O O\nthe O O\n#main Name Name\nto O O\nrecognise O O\nthe O O\nsize Name Name\nit O O\n's O O\nsupposed O O\nto O O\nstrech O O\ndown O O\nto O O\n? O O\n\nShould O O\nI O O\napproach O O\nthis O O\ndifferently O O\n? O O\n\nThanks O O\n\nDave O O\n\nActually O O\n, O O\nthey O O\nARE O O\nbehaving O O\ncorrectly O O\nand O O\nparent O O\ndivs Name Name\nare O O\nnever O O\nto O O\nexpand O O\nto O O\ncontain O O\nfloated O O\nelements O O\n. O O\n\nAs O O\nshown O O\nby O O\nother O O\nanswers O O\n, O O\nyou O O\ncan O O\nGoogle Name Name\nfor O O\n\" O O\nclear O O\nfloats O O\n\" O O\nfor O O\nmore O O\nexplanations O O\nand O O\nexamples O O\nof O O\nhow O O\nto O O\ndo O O\nthis O O\n. O O\n\nGive O O\nyour O O\n#main Name Name\noverflow:hidden Name Name\n; Name Name\nand O O\noptionall O O\nclear:both Name Name\n; Name Name\n\nI O O\nhave O O\nan O O\nif O O\nelse O O\nstatement O O\nthat O O\nchange O O\nlanguage O O\nCapabilitie Name Name\nEN O O\nto O O\nENGLISH O O\n. O O\n\nThe O O\nthing O O\nis O O\nthat O O\nits O O\noverwriting O O\nthe O O\nother O O\ncapabilities Name Name\n. O O\n\nThanks O O\n. O O\n\nI O O\nhave O O\na O O\nCentos Name Name\nserver Name Name\nand O O\nI O O\ninstall O O\niptables Name Name\non O O\nthis O O\nfor O O\nfirewall Name Name\n. O O\n\nI O O\nwant O O\nto O O\nconnect O O\niptables Name Name\nto O O\nmonitoring O O\nsystem O O\nLike O O\n( O O\nPrtg Name Name\n, O O\nSolarwinds Name Name\n, O O\nOpmanger Name Name\n) O O\n\nIs O O\nthis O O\npossible O O\n? O O\n\nYes O O\n\nI O O\ndo O O\nn't O O\nknow O O\nwhat O O\nother O O\nmonitoring O O\nsystems O O\n, O O\nbut O O\nyou O O\ncan O O\ndo O O\nthat O O\nwith O O\nSolarwinds Name Name\nServer Name Name\nApplication Name Name\nMonitor Name Name\n, O O\nby O O\ncreating O O\ncustom O O\nLinuxScript Name Name\ncomponent O O\n. O O\n\nYou O O\ncan O O\nfind O O\nan O O\nexample O O\nin O O\nthwack Name Name\nforum O O\n\nIn O O\nmy O O\ndjango Name Name\nproject O O\ni O O\nmake O O\nan O O\najax Name Name\ncall O O\nfor O O\ndynamically O O\ndisplay O O\nand O O\npopulate O O\nfields O O\n. O O\n\nFirst O O\nof O O\nall O O\n, O O\nin O O\nmy O O\ntemplate O O\ni O O\ncreate O O\nthe O O\nelement O O\n: O O\n\nTemplate O O\nhtml Name Name\n\nthen O O\nin O O\nmy O O\njs Name Name\n: O O\n\nstart.js Name Name\n\nurls.py Name Name\n\nand O O\nfinally O O\nmy O O\npython Name Name\nfunction O O\ncalled O O\nfrom O O\nurls.py Name Name\n: O O\n\nAll O O\ndone O O\n, O O\nmy O O\nhidden O O\ndiv Name Name\n\" Name Name\ndiv_val Name Name\n\" Name Name\nin O O\ntemplate O O\nwas O O\nshow O O\n, O O\nbut O O\nnow O O\ni O O\nca O O\nn't O O\nunderstand O O\nhow O O\ncan O O\ni O O\nuse O O\nthe O O\nreturned O O\ndata O O\nin O O\nmy O O\ntemplate O O\n, O O\nfor O O\n, O O\nfor O O\nexample O O\n, O O\npopulate O O\nthe O O\nvalue O O\nof O O\nthe O O\nelement O O\ninside O O\nthe O O\ndiv Name Name\n( O O\nwithout O O\nusing O O\njquery Name Name\ninside O O\nmy O O\njs O O\nfunc O O\nfor O O\ndo O O\nit O O\n) O O\n. O O\n\nHow O O\ncan O O\ni O O\nclose O O\nthe O O\nchain O O\nTemplate O O\n-> O O\njs Name Name\n-> O O\nurls O O\n-> O O\nview O O\nmethod O O\n-> O O\nTemplate O O\n? O O\n\nMany O O\nThanks O O\nin O O\nadvance O O\n\nWhen O O\nyou O O\nuse O O\nserver Name Name\nside O O\nrendering O O\n, O O\nyou O O\ncannot O O\nclose O O\nthe O O\n\" O O\nchain O O\n\" O O\nyou O O\nare O O\nrefering O O\nto O O\nas O O\neasily O O\n. O O\n\nThis O O\nis O O\nbecause O O\nwhat O O\nDjango Name Name\ndoes O O\nin O O\nthis O O\ncase O O\nis O O\nserve O O\nall O O\nthe O O\nHTML Name Name\nand O O\nJS Name Name\n( O O\nat O O\nleas O O\nthe O O\nJS Name Name\ninside O O\nyour O O\nHTML Name Name\nview O O\n) O O\nin O O\na O O\nsingle O O\ninitial O O\nresponse O O\n. O O\n\nThe O O\najax Name Name\nrequests O O\nyou O O\ndo O O\nafter O O\nthat O O\nwill O O\nnot O O\nbe O O\nbound O O\nto O O\nthe O O\nvariables O O\nyou O O\nsend O O\ninitially O O\nin O O\nyour O O\nresponse O O\nbecause O O\nthis O O\nvariables O O\nare O O\npopulated O O\nwhen O O\nthe O O\nrender() Name Name\nfunction O O\nis O O\ncalled O O\n. O O\n\nAfter O O\nthat O O\nmoment O O\n, O O\nyou O O\ncannot O O\nadd O O\nor O O\nupdate O O\nthe O O\nvariables O O\nthat O O\nwere O O\nsent O O\nto O O\nthe O O\nHTML Name Name\ntemplate O O\n. O O\n\nThe O O\nonly O O\nway O O\nyou O O\ncan O O\nmanage O O\nrendering O O\nsmall O O\nparts O O\nof O O\nHTML Name Name\nis O O\nusing O O\nJQuery Name Name\nor O O\nmaking O O\nyour O O\nbackend O O\na O O\nREST O O\nAPI O O\nwith O O\nDjango Name Name\nRest O O\nFramework O O\nand O O\nmoving O O\nto O O\na O O\nmore O O\ncomplete O O\nfrontend O O\nframework O O\nlike O O\nAngular Name Name\nor O O\nReact Name Name\n. O O\n\nThe O O\nare O O\nmany O O\ndiscussions O O\nover O O\nserver Name Name\nside O O\nrendering O O\nvs O O\nclient Name Name\nside O O\nrendering O O\n. O O\n\nYou O O\ncan O O\nread O O\nmore O O\nabout O O\nit O O\nhere O O\n: O O\n\nhttps://medium.com/@adamzerner/client-side-rendering-vs-server-side-rendering-a32d2cf3bfcc O O\n\nWorking O O\non O O\na O O\ncustom O O\ncontrol O O\nthat O O\nfetches O O\nemployee Name Name\nfrom O O\nWCF Name Name\nin O O\njson Name Name\n. O O\n\nBelow O O\nis O O\nthe O O\ncode O O\n\nNow O O\nthis O O\nservice O O\n\nreturn O O\nEmployees Name Name\nin O O\nfollowing O O\nformat O O\n( O O\nJSON Name Name\nArray Name Name\nString Name Name\n) O O\n\nNow O O\n, O O\nthe O O\ncall O O\nis O O\nbeing O O\nmade O O\nsuccessfully O O\n, O O\nbelow O O\nis O O\nthe O O\nscreenshot O O\nthat O O\ntells O O\npretty O O\nmuch O O\nabout O O\nthe O O\nproblem O O\ni O O\nam O O\nfacing O O\n. O O\n\nThe O O\ndropdown Name Name\nis O O\nnot O O\nshowing O O\n. O O\n\nNow O O\nI O O\nsuspect O O\nit O O\nis O O\nbecause O O\nthe O O\nresult O O\nis O O\nin O O\nJSON Name Name\ninstead O O\nof O O\na O O\njavascript Name Name\narray Name Name\n, O O\nnow O O\nif O O\nthat O O\nis O O\na O O\nproblem O O\n, O O\ncan O O\nanyone O O\nplease O O\nsuggest O O\nwhere O O\ndo O O\nI O O\nconvert O O\nthe O O\nstring Name Name\nin O O\nto O O\narray Name Name\nin O O\nthe O O\ncode O O\n. O O\n\nWCF Name Name\nCode O O\n\nThe O O\nplugin O O\nactually O O\nexpects O O\nan O O\nArray Name Name\nof O O\nobjects O O\nwith O O\nattributes O O\nid O O\nand O O\nname O O\nwhile O O\nI O O\nwas O O\ntrying O O\nto O O\nrun O O\nit O O\nthrough O O\na O O\nJSON Name Name\nstring Name Name\n. O O\n\nSo O O\nI O O\nmodified O O\nthe O O\n\nand O O\nadded O O\nthis O O\njust O O\nas O O\nthe O O\nfunction O O\nstarts O O\n\nI O O\nstarted O O\na O O\nsession O O\nfor O O\nkeeping O O\ntrack O O\nof O O\nlogged O O\nin O O\nusers O O\n. O O\n\nThe O O\nsame O O\ncode O O\nI O O\nput O O\ninto O O\na O O\nprofile.html Name Name\nfile O O\nand O O\ntried O O\nto O O\nredirect O O\nto O O\nthis O O\npage O O\nif O O\na O O\nlog O O\nin O O\nattempt O O\nis O O\nsuccessful O O\n, O O\nbut O O\nI O O\ncould O O\nn't O O\nfetch O O\nany O O\ninformation O O\nfrom O O\n$_SESSION Name Name\nvariables O O\ninto O O\nthat O O\nfile O O\n, O O\nbut O O\nwhen O O\nI O O\nchanged O O\nthe O O\nfile O O\nextension O O\nto O O\nprofile.php Name Name\nit O O\nworked O O\nnicely O O\n. O O\n\nYou O O\ncan O O\nwrite O O\nphp Name Name\ncode O O\nonly O O\nin O O\nphp Name Name\nfile O O\nand O O\nhtml Name Name\nin O O\nhtml Name Name\nfile O O\nor O O\nphp Name Name\nfile O O\n. O O\n\nPHP Name Name\nscripts O O\nare O O\nby O O\ndefault O O\nonly O O\ninterpreted O O\nin O O\n.php Name Name\nfiles O O\n( O O\nunless O O\nyou O O\ntell O O\nthe O O\nPHP Name Name\ninterpreter O O\nto O O\ndo O O\notherwise O O\n, O O\ne.g O O\n. O O\n, O O\nusing O O\nan O O\n.htaccess Name Name\nfile O O\n) O O\n. O O\n\nSo O O\n, O O\nyou O O\nca O O\nn't O O\nuse O O\n$_SESSION Name Name\nvariables O O\nin O O\nan O O\n.html Name Name\nfile O O\n. O O\n\nI O O\n've O O\ngot O O\na O O\nfew O O\nquestions O O\nabout O O\nthrowing O O\nexceptions Name Name\nin O O\nC++ Name Name\n. O O\n\nFrom O O\nwhat O O\nI O O\nknow O O\nabout O O\nthem O O\n.. O O\n. O O\n\nAn O O\nexception Name Name\ncan O O\nbe O O\nthrown O O\nfrom O O\nwithin O O\nthe O O\nmain() Name Name\nfunction O O\n. O O\n\nAny O O\nblock O O\nof O O\ncode O O\nthat O O\ncan O O\nthrow O O\nan O O\nexception O O\nin O O\nthe O O\nmain() Name Name\nfunction O O\nshould O O\nbe O O\nsurrounded O O\nby O O\ntry Name Name\nand O O\ncatch Name Name\nstatements O O\nas O O\nfollows O O\n\nIn O O\nthe O O\nexample O O\nabove O O\n, O O\nwhy O O\nis O O\nthe O O\nargument O O\nto O O\nthe O O\ncatch O O\na O O\nconst Name Name\nchar Name Name\n* Name Name\n. O O\n\nDoes O O\nn't O O\nC++ Name Name\nallow O O\nfor O O\nstrings Name Name\n? O O\n\nAlso O O\n, O O\nis O O\nit O O\npossible O O\nto O O\nthrow O O\nan O O\nexception Name Name\nthat O O\nis O O\nn't O O\na O O\nconst Name Name\nchar Name Name\n* Name Name\n, O O\nlike O O\nan O O\nint Name Name\n? O O\n\nor O O\na O O\nchar Name Name\n? O O\n\nDoes O O\nthrowing O O\nan O O\nexception Name Name\nin O O\nfoo Name Name\n, O O\nterminate O O\nthe O O\nfoo Name Name\nfunction O O\n? O O\n\nAre O O\nthere O O\ncases O O\nwhere O O\nyou O O\ncould O O\nput O O\nthe O O\ntry O O\nand O O\ncatch O O\nstatements O O\nin O O\nthe O O\nsame O O\nfunction O O\nas O O\nthe O O\nthrow O O\n? O O\n\nSorry O O\nif O O\nthese O O\nare O O\nbasic O O\nquestions O O\n. O O\n\nThanks O O\nSO Name Name\n\nBecause O O\nyou O O\nthrew O O\nstring Name Name\nliteral O O\nwhich O O\ndecays O O\nto O O\nconst Name Name\nchar* Name Name\n. O O\n\nIn O O\nshort O O\n, O O\nyou O O\ncatch O O\nwhat O O\nyou O O\nthrow O O\n. O O\n\nIt O O\ndoes O O\n, O O\nbut O O\nto O O\ncatch O O\nstring Name Name\n, O O\nyou O O\nneed O O\nto O O\nthrow O O\nstring Name Name\nin O O\nfirst O O\nplace O O\n. O O\n\nYou O O\ncan O O\nthrow O O\nliterally O O\nanything O O\n. O O\n\nIt O O\nis O O\na O O\ngood O O\nidea O O\nto O O\nthrow O O\nspecial O O\nexception Name Name\nclasses O O\n, O O\nlike O O\nstd::exception Name Name\nand O O\nderived O O\nfrom O O\nit O O\n. O O\n\nYes O O\n, O O\nit O O\ndoes O O\n. O O\n\nIf O O\nyou O O\nwant O O\n, O O\nyou O O\ncan O O\ndo O O\nthat O O\n. O O\n\nThere O O\nare O O\nnot O O\nmuch O O\ncases O O\nwhere O O\ndoing O O\nit O O\nis O O\na O O\ngood O O\nidea O O\n. O O\n\nIt O O\nlooks O O\nlike O O\nyou O O\nneed O O\nto O O\nget O O\na O O\ngood O O\nbook O O\nand O O\nread O O\nchapter O O\nabout O O\nexceptions Name Name\n. O O\n\nIn O O\nthe O O\nmeantime O O\nthis O O\nsuper-FAQ O O\nentry O O\nmight O O\nhelp O O\nyou/ O O\n\nYou O O\ncan O O\nthrow O O\nan O O\nobject O O\nof O O\nany O O\ntype O O\n. O O\n\nEDIT O O\n: O O\n( O O\nHopefully O O\nI O O\ngot O O\nthis O O\nright O O\nnow O O\n) O O\n\nWhat O O\nyou O O\nhave O O\ndone O O\nis O O\nthrow O O\na O O\nC-string Name Name\n, O O\nwhich O O\nis O O\nof O O\ntype O O\nconst Name Name\nchar[13] Name Name\nin O O\nthis O O\ncase O O\n. O O\n\nC-Arrays Name Name\nwill O O\ndecay O O\nto O O\npointers O O\nto O O\ntheir O O\nfirst O O\nelement O O\n, O O\nin O O\nthis O O\ncase O O\na O O\npointer O O\nof O O\ntype O O\nconst Name Name\nchar* Name Name\n. O O\n\nTypically O O\nwhat O O\nyou O O\nwant O O\nto O O\ndo O O\nis O O\nthrow O O\na O O\npredefined O O\nexception Name Name\nobject O O\n. O O\n\nThey O O\ncan O O\nbe O O\nfound O O\nin O O\nheader O O\n<stdexcept> Name Name\nand O O\nare O O\nderived O O\nfrom O O\na O O\nbase O O\nclass O O\nstd::exception Name Name\n. O O\n\nThe O O\nderived O O\nexception Name Name\nclasses O O\nare O O\nfor O O\ninstance O O\nstd::logic_error Name Name\n, O O\nstd::range_error Name Name\n, O O\nstd::bad_alloc Name Name\netc O O\n. O O\n\nTheir O O\nconstructors O O\ntake O O\na O O\nstring Name Name\nas O O\nargument O O\n, O O\nso O O\nyou O O\ncan O O\nfor O O\ninstance O O\n\nThis O O\nmessage O O\ncan O O\nbe O O\naccessed O O\nin O O\na O O\ncatch O O\nstatement O O\nlike O O\nthis O O\n: O O\n\nIf O O\nan O O\nexception Name Name\nis O O\ncaught O O\n, O O\nso-called O O\nstack Name Name\nunwinding O O\ntakes O O\nplace O O\n. O O\n\nYou O O\ncan O O\nthen O O\ndeal O O\nwith O O\nthe O O\nerror O O\nlocally O O\n, O O\nor O O\nrethrow O O\nthe O O\nexception Name Name\n. O O\n\nOnly O O\nwhen O O\nan O O\nexception Name Name\nis O O\nthrown O O\nand O O\nnever O O\ncaught O O\n, O O\nstd::terminate() Name Name\nis O O\ncalled O O\nan O O\nthe O O\nprogram O O\naborted O O\n. O O\n\nYou O O\ncan O O\nput O O\ntry/catch O O\nstatements O O\nanywhere O O\n. O O\n\nHowever O O\n, O O\nremember O O\nwhat O O\nthe O O\nterm O O\n\" O O\nexception Name Name\n\" O O\nactually O O\nmeans O O\n. O O\n\nCases O O\nthat O O\ncan O O\neasily O O\ndealt O O\nwith O O\nusing O O\na O O\nsimple O O\nconditional O O\nexpression O O\nif Name Name\n( Name Name\nn Name Name\n< Name Name\n0 Name Name\n) Name Name\nbreak Name Name\n; Name Name\nor O O\nsomething O O\nlike O O\nthat O O\n, O O\ndo O O\nn't O O\nneed O O\nthe O O\nexception Name Name\ntreatment O O\n. O O\n\nEspecially O O\nif O O\nyou O O\ncan O O\nrealistically O O\nexpect O O\nthis O O\nkind O O\nof O O\nunwanted O O\ncondition O O\nto O O\nbe O O\ntrue O O\noften O O\n. O O\n\nThen O O\nit O O\nis O O\nnot O O\nsomething O O\n\" O O\nexceptional O O\n\" O O\n. O O\n\nIf O O\nyou O O\ndecide O O\nto O O\ndeal O O\nwith O O\nan O O\nerror O O\nusing O O\nexceptions Name Name\nand O O\nthey O O\ncan O O\nnot O O\nbe O O\ntreated O O\nlocally O O\n, O O\nyou O O\nmay O O\nput O O\ntry/catch O O\nclauses O O\naround O O\nthe O O\nbeginning O O\nand O O\nend O O\nof O O\nmain() Name Name\n. O O\n\nSince O O\nyou O O\ncan O O\nput O O\nseveral O O\ncatch O O\nstatements O O\ndirectly O O\nafter O O\na O O\ntry O O\nstatement O O\n, O O\nyou O O\ncan O O\nthen O O\nbegin O O\nto O O\ndeal O O\nwith O O\nmore O O\nspecific O O\nerrors O O\n, O O\nor O O\nsimply O O\ncatch O O\nanything O O\nvia O O\ncatch(...) Name Name\n{ Name Name\n//.. Name Name\n. Name Name\n} Name Name\n. O O\n\nThis O O\nis O O\nall O O\ndescribed O O\nin O O\ngreat O O\ndetail O O\n( O O\nincluding O O\npointers Name Name\non O O\nwhen O O\nand O O\nwhen O O\nnot O O\nto O O\nuse O O\nit O O\n, O O\nin O O\nthe O O\nC++ Name Name\nFAQ O O\n. O O\n\nEDIT O O\n: O O\nHere O O\n's O O\nan O O\nexample O O\nthat O O\nmakes O O\nuse O O\nof O O\ntry/catch O O\nstatements O O\n. O O\n\nHowever O O\n, O O\nnot O O\nan O O\nexception Name Name\nobject O O\nis O O\ncaught O O\n, O O\nbut O O\nan O O\nint Name Name\n( O O\nerrno Name Name\n) O O\n. O O\n\nJust O O\nto O O\nshow O O\n, O O\nthat O O\nyou O O\ncan O O\nreally O O\nthrow/catch O O\nanything O O\nyou O O\nlike O O\n. O O\n\nLet O O\nprocess_several_files() Name Name\nbe O O\na O O\nfunction O O\nsomewhere O O\nnested O O\nin O O\nyour O O\ncode O O\n: O O\n\nif O O\nwant O O\nto O O\nallocate O O\nnon-cacheable O O\nphysical O O\nmemory O O\n( O O\nDRAM Name Name\n) O O\nfor O O\nusage O O\nin O O\nthe O O\ndriver Name Name\n, O O\n( O O\nie O O\n. O O\ndo O O\nn't O O\nwant O O\nthe O O\ndata O O\nbeing O O\ncached O O\ninto O O\nthe O O\nCPU Name Name\n's O O\ndata O O\ncache O O\nwhen O O\nthe O O\ndata O O\nare O O\naccessed O O\n) O O\nhow O O\ncould O O\nI O O\ndo O O\nthis O O\n? O O\n\nthere O O\nare O O\nfunctions O O\nlike O O\nkmalloc() Name Name\n, O O\nget_free_pages Name Name\n, O O\nvmalloc Name Name\n, O O\netc O O\n, O O\nbut O O\nseems O O\nlike O O\nthat O O\nI O O\nca O O\nn't O O\nspecify O O\nif O O\nthe O O\ndata O O\ncan O O\nbe O O\ncached O O\nor O O\nnot O O\nusing O O\nthese O O\nfunctions O O\n? O O\n\nany O O\nsuggestion O O\non O O\nhow O O\nto O O\ndo O O\nit O O\n? O O\n\nthanks O O\n! O O\n\nIn O O\nshort O O\nthere O O\nis O O\nno O O\neasy O O\nway O O\nto O O\ndo O O\nthis O O\n, O O\nit O O\nis O O\nvery O O\nplatform O O\ndependent O O\n. O O\n\nIf O O\nyou O O\nwant O O\na O O\ngo O O\nat O O\nit O O\nread O O\ndrivers/char/mem.c Name Name\nand O O\nChapter O O\n15 O O\nof O O\nthe O O\nLinux Name Name\nDevice O O\nDrivers O O\n3rd O O\nEdition O O\nbook O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nadd O O\npie Name Name\ncharts Name Name\nusing O O\nchart.js Name Name\n. O O\n\nBut O O\ninstead O O\nof O O\nadding O O\ndata O O\nin O O\njs Name Name\nfile O O\nI O O\nneed O O\nto O O\ngenerate O O\ncharts Name Name\nusing O O\nHTML Name Name\ndata O O\n. O O\n\nHere O O\nis O O\nmy O O\nHTML Name Name\n: O O\n\nI O O\nneed O O\nevery O O\nchart Name Name\nretrieve O O\nit O O\n's O O\nsibling O O\nchart Name Name\ndata O O\n. O O\n\nHere O O\nis O O\nmy O O\njs Name Name\n: O O\n\nOk O O\nanyway O O\nI O O\nsolve O O\nit O O\nby O O\nmyself O O\n. O O\n\nHere O O\nis O O\nthe O O\nanswer O O\nfor O O\nother O O\nif O O\nhave O O\nthe O O\nsame O O\nproblem O O\n. O O\n\nSorry O O\nif O O\nthere O O\n's O O\nbad O O\npractices O O\nin O O\nmy O O\njs Name Name\n. O O\n\nI O O\n'm O O\nnot O O\na O O\npro O O\n. O O\n\nTo O O\ncreate O O\nnew O O\ngraphs Name Name\nto O O\ndynamics O O\nelements O O\ninserted O O\nyou O O\ncan O O\ncreate O O\na O O\nDOM Name Name\nObserver Name Name\n. O O\n\nI O O\ncreate O O\na O O\nfiddle Name Name\nwith O O\na O O\nexample O O\nin O O\n\nI O O\nsee O O\na O O\nwarning O O\nlike O O\nthis O O\nin O O\nmy O O\nlogs O O\n: O O\n\nThis O O\nmessage O O\ndoes O O\nnot O O\nhelp O O\nvery O O\nmuch O O\n. O O\n\nI O O\nwould O O\nlike O O\nto O O\nsee O O\nthe O O\nstacktrace O O\nwhere O O\nthis O O\nhappens O O\n. O O\n\nPlease O O\ndo O O\nn't O O\nlook O O\ninto O O\nthe O O\ncontent O O\nof O O\nthis O O\nwarning O O\n. O O\n\nThis O O\nquestion O O\nis O O\nnot O O\nabout O O\nBeautiful Name Name\nSoup Name Name\n:-) O O\n\nAn O O\neasy O O\nsolution O O\nwould O O\nbe O O\nto O O\nmodify O O\nthe O O\nthird O O\nparty O O\ncode O O\n( O O\nbs4/__init__.py Name Name\nat O O\nline O O\n219 O O\n) O O\nand O O\nadd O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nBut O O\nI O O\nwould O O\nlike O O\nto O O\navoid O O\nthis O O\n. O O\n\nReasons O O\n: O O\n\nThis O O\nis O O\na O O\nwarning O O\nfrom O O\na O O\nproduction O O\nsystem O O\n. O O\n\nI O O\ndo O O\nn't O O\nwant O O\nto O O\nchange O O\nthe O O\nsource O O\n. O O\n\nThe O O\nnext O O\ntime O O\na O O\nwarning O O\nlike O O\nthis O O\noccurs O O\n, O O\nI O O\nwould O O\nlike O O\nto O O\nsee O O\nthe O O\nstacktrace O O\nimmediately O O\n\nIs O O\nthere O O\na O O\nflag O O\nor O O\nsetting O O\nfor O O\npython Name Name\nwhich O O\nI O O\ncan O O\nchange O O\n, O O\nto O O\nsee O O\nnot O O\nonly O O\none O O\nline O O\n, O O\nbut O O\nthe O O\nwhile O O\nstacktrace O O\n? O O\n\nI O O\nneed O O\nthe O O\nupper O O\nframes O O\nto O O\ndebug O O\nthis O O\n. O O\n\nIn O O\nthis O O\nenvironment O O\nPython Name Name\n2.7 Name Name\ngets O O\nused O O\n. O O\n\nIf O O\nI O O\nwant O O\nto O O\nfind O O\nthe O O\nroot O O\nof O O\na O O\nwarning O O\nI O O\ngenerally O O\njust O O\npromote O O\nWarnings Name Name\nto O O\nExceptions Name Name\n. O O\n\nIn O O\nyour O O\ncase O O\nyou O O\ncould O O\nsimply O O\nuse O O\nwarnings.simplefilter Name Name\nor O O\nwarnings.filterwarnings Name Name\n. O O\n\nFor O O\nexample O O\n: O O\n\nwhich O O\ngives O O\na O O\ncomplete O O\ntraceback O O\n: O O\n\nAnd O O\nif O O\nyou O O\nwant O O\nto O O\ndebug O O\nthis O O\nyou O O\ncould O O\neasily O O\nhook O O\nPythons Name Name\npdbs Name Name\non O O\nthe O O\nlast O O\nencountered O O\nexception Name Name\n: O O\n\nresulting O O\nin O O\n: O O\n\nThis O O\nstarts O O\na O O\npost-mortem O O\nanalysis O O\nof O O\nthe O O\nlast O O\nencountered O O\nexception Name Name\n. O O\n\nWhich O O\nshould O O\nenable O O\nyou O O\nto O O\ndig O O\nthrough O O\nthe O O\nframes O O\nand O O\ninspect O O\nthe O O\nvariables O O\n, O O\netc O O\n. O O\n\nYou O O\nalso O O\nasked O O\nabout O O\na O O\nflag O O\n, O O\nand O O\nindeed O O\nthere O O\nis O O\na O O\nflag O O\nthat O O\nenables O O\n\" O O\nwarning O O\nhandling O O\n\" O O\n, O O\nthe O O\n-W Name Name\nflag O O\n. O O\n\nIt O O\n's O O\nvery O O\nmuch O O\nlike O O\nthe O O\nwarnings.filterwarnings Name Name\nfunction O O\n. O O\n\nFor O O\nconvenience O O\nI O O\njust O O\ncopied O O\nthe O O\ndocumentation O O\nof O O\nthe O O\n-W Name Name\nflag O O\nhere O O\n: O O\n\nYou O O\nwould O O\nneed O O\nto O O\ndo O O\nthe O O\nfollowing O O\n: O O\n\nCreate O O\nif O O\nUSER_SITE Name Name\ndoes O O\nnot O O\nexists O O\n: O O\nissue O O\npython Name Name\n-c Name Name\n\" Name Name\nimport Name Name\nsite Name Name\n; Name Name\nsite._script()\" Name Name\n, O O\nsee O O\nUSER_SITE Name Name\nvariable O O\ncontents O O\n\nPlace O O\na O O\nfile O O\nusercustomize.py Name Name\nin O O\nthat O O\ndirectory O O\nwith O O\nthe O O\nfollowing O O\ncode O O\n: O O\n\nCredits O O\nto O O\nthis O O\nanswer O O\nfor O O\nthe O O\ncode O O\n. O O\n\nRun O O\nthe O O\ncode O O\nas O O\nusual O O\n. O O\n\nMy O O\ntest O O\ncode O O\n: O O\n\nBefore O O\nthe O O\nprocedure O O\n: O O\n\nAfter O O\n: O O\n\nLets O O\ntake O O\ntwo O O\ndatetimes Name Name\n2013-07-22 Name Name\nand O O\n2013-07-28 Name Name\n. O O\n\nThe O O\ndatetimes Name Name\nbetween O O\nthese O O\ntwo O O\ndatetimes Name Name\nare O O\n2013-07-23 Name Name\n, O O\n2013-07-24 Name Name\n, O O\n2013-07-25 Name Name\n, O O\n2013-07-26 Name Name\n, O O\n2013-07-27 Name Name\n, O O\n2013-07-28 Name Name\n. O O\n\nI O O\nam O O\nable O O\nto O O\nget O O\nthis O O\nmuch O O\nto O O\nwork O O\nusing O O\nphp Name Name\ndatetime Name Name\n. O O\n\nWhat O O\nI O O\nRequire O O\n\nI O O\nhave O O\nanother O O\nvariable O O\n$interval Name Name\nwhich O O\ncan O O\ntake O O\nvalues O O\n1 Name Name\n, O O\n2 Name Name\n, O O\n3. Name Name\n. O O\n\nIf O O\n$interval Name Name\n= Name Name\n2 Name Name\nthen O O\n$period Name Name\nwill O O\nonly O O\ncontain O O\n2013-07-24 Name Name\n, O O\n2013-07-26 Name Name\n, O O\n2013-07-28 Name Name\n. O O\n\nLikewise O O\n$interval Name Name\n= Name Name\n3 Name Name\nthen O O\n$period Name Name\nwill O O\nonly O O\ncontain O O\n2013-07-25 Name Name\n, O O\n2013-07-28 Name Name\n. O O\n\nHow O O\ncan O O\ndo O O\nthis O O\n? O O\n\nYou O O\ncan O O\ncreate O O\nany O O\ninterval Name Name\nwith O O\nthat O O\nvariable O O\n, O O\njust O O\nwrite O O\n: O O\n\ninstead O O\nand O O\nyou O O\nare O O\nset O O\n. O O\n\nI O O\n'm O O\nhaving O O\nan O O\nissue O O\nwith O O\nng-repeat Name Name\nwhere O O\nis O O\nthrowing O O\nan O O\ninjection O O\nerror O O\n. O O\n\nI O O\n'm O O\nnot O O\nan O O\nadvance O O\nangular Name Name\ndeveloper O O\n, O O\na O O\nnovice O O\nmaybe O O\n. O O\n\nBut O O\nI O O\nknow O O\nthis O O\nwas O O\nworking O O\nat O O\none O O\npoint O O\nand O O\nthen O O\npoof O O\n. O O\n\nGone O O\n! O O\n\nWhat O O\ndid O O\nI O O\ndo O O\ndifferent O O\n? O O\n\nI O O\nchanged O O\nmy O O\nlocalhost O O\npath O O\nto O O\nangular Name Name\nto O O\na O O\nCDN Name Name\ninstead O O\n. O O\n\nI O O\ntested O O\nit O O\nin O O\nthe O O\ntemplate O O\nI O O\ncopied O O\nthis O O\nwork O O\nfrom O O\noriginally O O\nand O O\nit O O\nworks O O\nthere O O\n. O O\n\nBut O O\nnot O O\nin O O\nmy O O\nsite O O\n. O O\n\nMy O O\nHTML Name Name\n: O O\n\nMy O O\nController O O\n: O O\n\nHere O O\nis O O\nthe O O\nerror O O\n: O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\nappreciated O O\n\nHere O O\nis O O\na O O\nCODEPEN Name Name\nif O O\nit O O\nhelps O O\n\nRemove O O\n' O O\nuiGmapgoogle-maps Name Name\n' O O\nof O O\nthe O O\nmodule O O\ndependecies O O\n\nLinks O O\nwith O O\ndata-binding O O\n, O O\nyou O O\nmust O O\nuse O O\nuse O O\nng-href Name Name\n, O O\nreplacing O O\nhref Name Name\n\nI O O\nrecommend O O\nwrite O O\nyour O O\nangular Name Name\napp O O\nfollowing O O\nthe O O\npreparation O O\nguide O O\nfor O O\nangular Name Name\n2 Name Name\n. O O\nand O O\nJhon O O\nPapa O O\n's O O\nangular Name Name\nstyle O O\nguide O O\n\nYou O O\nare O O\nnot O O\nloading O O\nuiGmapgoogle-maps Name Name\nmodule O O\nfiles O O\n, O O\n\nRemoving O O\nuiGmapgoogle-maps Name Name\nfrom O O\nyour O O\nangular Name Name\nmodule O O\ndependencies O O\nwill O O\nsolve O O\nthis O O\nissue O O\n. O O\n\nIn O O\naddition O O\n, O O\nyou O O\ndid O O\nn't O O\nattach O O\nthe O O\nfilter Name Name\nfile O O\nso O O\nyou O O\nwill O O\nneed O O\nto O O\nremove O O\nthe O O\nfilter O O\nfrom O O\nyour O O\nngRepeat Name Name\n. O O\n\nSee O O\nworking O O\nsample O O\nat O O\n: O O\nhttp://codepen.io/anon/pen/BKLdyP?editors=1011 O O\n\nI O O\nam O O\ntrying O O\nto O O\nlearn O O\nhow O O\nthe O O\ngraphic O O\nobjects O O\nwork O O\nin O O\nMATLAB Name Name\n. O O\n\nI O O\ntried O O\nto O O\ncreate O O\na O O\nplot O O\nwithout O O\nusing O O\nthe O O\nplot O O\nfunction O O\nbut O O\nI O O\nam O O\nconfused O O\nwhy O O\nit O O\nis O O\nnot O O\nworking O O\n. O O\n\nAFIK O O\n, O O\nwhen O O\nI O O\nuse O O\nthe O O\nplot O O\nfunction O O\nit O O\ncreates O O\nfigure O O\n, O O\naxis O O\n, O O\nline O O\nobjects O O\nand O O\nthen O O\nsets O O\nthe O O\nproperty O O\nof O O\neach O O\nobject O O\naccordingly O O\n. O O\n\nI O O\ntried O O\nto O O\ndo O O\nso O O\nbut O O\nall O O\nI O O\n'm O O\ngetting O O\nis O O\na O O\nwhite/blank O O\nfigure O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nplot O O\na O O\nsine O O\nwave O O\nso O O\nmy O O\nX Name Name\nand O O\nY Name Name\ndata O O\nare O O\n: O O\n\nThis O O\nis O O\nmy O O\nmain O O\ncode O O\n: O O\n\nThe O O\nweird O O\nthing O O\nis O O\nthat O O\nwhen O O\nI O O\ntype O O\n\nI O O\n'm O O\nnot O O\ngetting O O\nanything O O\nback O O\n. O O\n\nI O O\nappreciate O O\ntips O O\nand O O\ncomments O O\n. O O\n\nYou O O\nneed O O\nto O O\ncreate O O\nthe O O\nline O O\nbefore O O\nyou O O\ncan O O\nfind O O\nit O O\nand O O\nchange O O\na O O\nproperty O O\n. O O\n\ne.g O O\n. O O\n\nEdit O O\n: O O\n\nIts O O\na O O\ngood O O\nidea O O\nto O O\ncreate O O\nand O O\nstore O O\neach O O\nof O O\nyour O O\nobjects O O\ndirectly O O\n( O O\nrather O O\nthan O O\nallowing O O\nthe O O\ncommand O O\nto O O\nfind O O\nthe O O\nappropriate O O\nfigure O O\n, O O\naxes O O\netc O O\n... O O\n. O O\n) O O\n\nHere O O\nis O O\nmy O O\nscenario O O\n.. O O\n. O O\n\nI O O\nam O O\nusing O O\npagination O O\nwith O O\nDataTables Name Name\n. O O\n\nMy O O\nfirst O O\ncolumn O O\nis O O\ncss Name Name\nstyled O O\nbased O O\nupon O O\ndata O O\nthat O O\nis O O\npassed O O\nin O O\n. O O\n\nSo O O\n, O O\nI O O\ndisplay O O\nthe O O\ncorrect O O\ncolored O O\nicon Name Name\nfor O O\nthe O O\nproperty O O\nof O O\nthe O O\nitem O O\nin O O\nthe O O\ntable O O\n. O O\n\nEverything O O\non O O\npage Name Name\n1 O O\ndisplays O O\ncorrectly O O\n. O O\n\nJust O O\ndoing O O\nthe O O\nbasics O O\n, O O\neverything O O\non O O\nfurther O O\npages Name Name\ndoes O O\nnot O O\nget O O\ndisplayed O O\nbecause O O\nit O O\nis O O\nremoved O O\nfrom O O\nthe O O\nDOM Name Name\nat O O\nthat O O\ntime O O\n. O O\n\nSo O O\n, O O\nI O O\ndid O O\n$('#my_id') Name Name\n.on Name Name\n( Name Name\n'page Name Name\n.dt Name Name\n' Name Name\n, Name Name\nfunction() Name Name\n{ Name Name\nperPageFunctionCall() Name Name\n;}) Name Name\n.dataTable(soonansoforth) Name Name\n} Name Name\n; Name Name\nto O O\ncall O O\na O O\nfunction O O\nwhich O O\nselects O O\nthe O O\ncorrect O O\ncolored O O\nflag O O\n. O O\n\nWhen O O\nI O O\nclick O O\non O O\npage Name Name\n2 O O\n, O O\nnothing O O\ngets O O\nupdated O O\n. O O\n\nI O O\nclick O O\non O O\npage Name Name\n1 O O\nagain O O\nand O O\nit O O\nredisplays O O\nthe O O\n1st O O\npage Name Name\ncorrectly O O\n. O O\n\nI O O\nclick O O\non O O\npage Name Name\n2 O O\na O O\nsecond O O\ntime O O\nnow O O\nand O O\nit O O\ndisplays O O\neverything O O\ncorrectly O O\nthis O O\ntime O O\n. O O\n\nSo O O\nwhat O O\nis O O\ncausing O O\nthe O O\ndisplay O O\nnot O O\nto O O\nupdate O O\nwith O O\nmy O O\nnew O O\ncss Name Name\nthe O O\n1st O O\ntrip O O\nbut O O\nto O O\ndisplay O O\nproperly O O\non O O\nsubsequent O O\ntrips O O\n? O O\n\nIs O O\nthere O O\nsomeway O O\nto O O\nrefresh O O\nthe O O\nelement O O\nor O O\nthe O O\ndata O O\ntable O O\nafter O O\nI O O\nam O O\ndone O O\nwith O O\nmy O O\ncss Name Name\nmanipulation O O\n? O O\n\nfor O O\nrefresh O O\nresp O O\n. O O\n\ntable O O\n: O O\n\nWell O O\nit O O\nis O O\none O O\nof O O\ntwo O O\nthings O O\n: O O\n\nEither O O\nit O O\nis O O\n\n1 O O\n: O O\nI O O\nadded O O\n\nin O O\naddition O O\nto O O\nmy O O\npage O O\nfunction O O\ncall O O\n. O O\n\nBut O O\nmore O O\nlikely O O\neveryone O O\n's O O\nfavorite O O\nreason O O\n: O O\n\n2 O O\n: O O\nCaching O O\n\nIn O O\neither O O\ncase O O\n, O O\nit O O\ndoes O O\nwork O O\nflawlessly O O\nnow O O\nas O O\nexpected O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nmake O O\nit O O\nso O O\nusers O O\ncan O O\nsubscribe O O\nto O O\na O O\nforum O O\nand O O\nwhen O O\na O O\nforum O O\nis O O\nupdated O O\nthe O O\nuser O O\nis O O\nalerted O O\n. O O\n\nI O O\nca O O\nn't O O\nfor O O\nthe O O\nlife O O\nof O O\nme O O\nfigure O O\nout O O\nhow O O\nto O O\nset O O\nup O O\nthe O O\ndatabase O O\nto O O\ndo O O\nit O O\n. O O\n\nI O O\nam O O\npretty O O\nsure O O\nyou O O\nare O O\nsupposed O O\nto O O\nset O O\nup O O\nan O O\nassociative O O\ntable Name Name\nwith O O\nuser_id Name Name\nand O O\nforum_id Name Name\nbut O O\nI O O\nam O O\nnot O O\nto O O\nsure O O\n. O O\n\nIf O O\nsomeone O O\ncould O O\ngive O O\nme O O\nsome O O\npointers O O\non O O\nhow O O\nto O O\nstart O O\nthis O O\nor O O\nplan O O\nit O O\nout O O\nor O O\neven O O\npoint O O\nme O O\nto O O\nsome O O\nresources O O\nthat O O\nwould O O\nbe O O\ngreat O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\ncreate O O\na O O\njoin O O\ntable Name Name\ncalled O O\nuser_forum_subscriptions Name Name\n\nNow O O\n, O O\nforum.users Name Name\nare O O\nthe O O\nones O O\nyou O O\nneed O O\nto O O\nalert O O\nwhen O O\nthe O O\nforum Name Name\nchanges O O\n\nI O O\nsuppose O O\nyou O O\nshould O O\nstart O O\nwith O O\ngenerating O O\na O O\nnew O O\nmodel O O\ncalled O O\nSubscription Name Name\n. O O\n\nLook O O\nat O O\nsubscriptions O O\nas O O\nresources O O\n. O O\n\nUser Name Name\nshould O O\nhave_many O O\nsubscriptions O O\nwhich O O\ncan O O\nbe O O\nadded/removed/edited O O\n. O O\n\nI O O\n'd O O\nprobably O O\nstart O O\nwith O O\nMichael O O\nHartl O O\n's O O\ntutorial O O\nChapter O O\n11 O O\n, O O\nwhere O O\nhe O O\nshows O O\nhow O O\nto O O\nestablish O O\nthe O O\n' O O\nfollowing O O\n' O O\nrelationship O O\nfor O O\nhis O O\ntwitter-like Name Name\napp O O\n. O O\n\nIn O O\nmany O O\nways O O\nit O O\nis O O\nsimilar O O\nto O O\nwhat O O\nyou O O\nare O O\ntrying O O\nto O O\naccomplish O O\n. O O\n\nHere O O\n's O O\nthe O O\nlink O O\n, O O\nread O O\nabout O O\nthe O O\nRelationship O O\nmodel O O\n, O O\nhope O O\nit O O\n's O O\nwhat O O\nyou O O\n're O O\nlooking O O\nfor O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nuse O O\nwhere O O\nclause O O\nfor O O\ncomparing O O\nthe O O\nvalues O O\nthat O O\nhas O O\nbeen O O\npassed O O\nfrom O O\nroute O O\nwhich O O\nis O O\nid Name Name\n. O O\n\nFor O O\nthis O O\n, O O\nI O O\nhave O O\nused O O\nfollowing O O\ncode O O\n: O O\n\nI O O\nneed O O\nto O O\ncompare O O\nid Name Name\nwith O O\nthe O O\ncolumn Name Name\nname O O\nin O O\ncontroller O O\nwhich O O\nis O O\ngrade_id Name Name\n. O O\n\nFor O O\nthis O O\nFollowing O O\ncode O O\nhas O O\nbeen O O\nused O O\n: O O\n\nBut O O\nit O O\nis O O\nreturning O O\nempty O O\nvalues O O\n. O O\n\nIf O O\nI O O\npass O O\ndirect O O\nvalue O O\n1 Name Name\ninstead O O\nof O O\n$ Name Name\ndata Name Name\n. O O\n\nIt O O\nworks O O\nperfectly O O\nfine O O\n. O O\n\nCan O O\nanyone O O\nprovide O O\nme O O\nsolution O O\n? O O\n\nuse O O\nwhereLoose() Name Name\ninstead O O\nof O O\nwhere() Name Name\n\nSource O O\n\nWhy O O\nthis O O\nhappening O O\n? O O\n\n$data Name Name\nhave O O\na O O\nString Name Name\ntype O O\nand O O\nyou O O\nare O O\ncomparing O O\nString Name Name\nwith O O\nInt Name Name\ntype O O\neven O O\nif O O\nyou O O\npass O O\nnumeric O O\nvalue O O\n$data Name Name\nwill O O\nbe O O\nString Name Name\ntype O O\n. O O\n\nI O O\nhave O O\nan O O\nhtml Name Name\ndocument O O\nthat O O\nhas O O\na O O\nform O O\nwhere O O\nselecting O O\nthe O O\nbutton Name Name\nactivates O O\na O O\nprogram O O\nthat O O\nruns O O\na O O\nrobotic Name Name\narm Name Name\n, O O\nhowever O O\n, O O\nI O O\nalso O O\nneed O O\nto O O\nhave O O\nthis O O\nbutton Name Name\nlink O O\nto O O\nanother O O\npage O O\n. O O\n\nBased O O\non O O\nthe O O\nresearch O O\nI O O\nhave O O\ndone O O\npreviously O O\n, O O\nI O O\nthink O O\nan O O\nOnClick Name Name\nevent O O\nwould O O\ndo O O\nexactly O O\nwhat O O\nI O O\nneed O O\nit O O\nto O O\n. O O\n\nMy O O\nproblem O O\nis O O\nthat O O\nI O O\nam O O\nnot O O\nquite O O\nsure O O\nhow O O\nto O O\nreference O O\nboth O O\nthe O O\nrobot O O\ncommand O O\nand O O\nthe O O\nlink O O\nto O O\nanother O O\npage Name Name\n. O O\n\nThe O O\n..//../Karel/RIGHT1 Name Name\nis O O\nthe O O\nrobot O O\nprogram O O\nthe O O\ndocument O O\nis O O\ntrying O O\nto O O\ncall O O\nand O O\nrightmanual.stm Name Name\nis O O\nthe O O\npage Name Name\nI O O\nneed O O\nto O O\nalso O O\nlink O O\nto O O\nwhen O O\nthe O O\nimage/button Name Name\nonegrey.jpg Name Name\nis O O\nselected O O\n. O O\n\nI O O\ntried O O\nto O O\nbe O O\nas O O\nspecific O O\nas O O\npossible O O\n, O O\nthanks O O\nfor O O\nany O O\nhelp O O\nthat O O\nis O O\nsent O O\nmy O O\nway O O\n. O O\n\nSo O O\nyou O O\nwant O O\nto O O\nredirect O O\nto O O\nanother O O\npage Name Name\non O O\nform O O\nsubmit O O\n? O O\n\nIf O O\nthis O O\nis O O\nthe O O\ncase O O\n, O O\nadd O O\nan O O\nid Name Name\ntag O O\nto O O\nthe O O\ninput O O\n, O O\nwith O O\na O O\nname O O\neg O O\n. O O\n\" Name Name\nbtnRedirect Name Name\n\" Name Name\n. O O\n\nYou O O\ncan O O\nthen O O\nuse O O\njQuery Name Name\nfor O O\nan O O\nonclick O O\nevent O O\n. O O\n\nMore O O\non O O\njQuery Name Name\nhere O O\n. O O\n\nOr O O\nyou O O\ncan O O\njust O O\nadd O O\nan O O\nonClick Name Name\nevent O O\nto O O\nyour O O\nsubmit O O\nbutton Name Name\n\nI O O\nhave O O\na O O\nproblem O O\n( O O\nthat O O\n's O O\nwhy O O\nI O O\n'm O O\nhere O O\n:P O O\n) O O\n: O O\n\nI O O\nam O O\nrunning O O\na O O\nTimerTask Name Name\nand/or O O\na O O\nHandler Name Name\n. O O\n\nThey O O\nshould O O\ndo O O\nsomething O O\nevery O O\nsecond O O\n, O O\nno O O\nmatter O O\nif O O\nthe O O\nscreen O O\nis O O\non O O\nor O O\nnot O O\n( O O\nstandby O O\n) O O\n. O O\n\nThe O O\nproblem O O\nis O O\n, O O\nafter O O\nsome O O\ntime O O\n( O O\n2 O O\nto O O\n10 O O\nhours O O\n) O O\nthis O O\nprocess O O\nbecomes O O\nweird O O\ntimed O O\n. O O\n\nSometimes O O\nit O O\ntakes O O\n10 O O\nseconds O O\n, O O\nsometimes O O\n4 O O\nhours O O\netc O O\n. O O\n\nNow O O\n, O O\nI O O\n've O O\nread O O\nthat O O\nyou O O\ncan O O\nuse O O\na O O\nPartial Name Name\nWake Name Name\nLock Name Name\nto O O\nsolve O O\nthis O O\nissue O O\n. O O\n\nTried O O\nit O O\n, O O\nbut O O\nit O O\nhas O O\nnot O O\nsolved O O\nmy O O\nissue O O\n( O O\nMaybe O O\nyou O O\nshould O O\nknow O O\nthat O O\nanother O O\nlibrary O O\nis O O\nalso O O\nusing O O\na O O\nWakeLock Name Name\nwhich O O\ngets O O\nreleased O O\nafter O O\nsome O O\ntime O O\n, O O\nbut O O\nmine O O\nnever O O\ngets O O\nreleased O O\nby O O\nme O O\n) O O\n. O O\n\nMaybe O O\nyou O O\nshould O O\nalso O O\nknow O O\nthat O O\nthe O O\ntask/runnable O O\nruns O O\non O O\nan O O\nasynctask Name Name\n( O O\nso O O\non O O\nit O O\n's O O\nown O O\nthread O O\n) O O\n. O O\n\nThe O O\nwakelock Name Name\nis O O\ncreated O O\nfrom O O\noutside O O\n. O O\n\nEdit O O\n: O O\n\nMaybe O O\nit O O\n's O O\ngood O O\nto O O\nknow O O\nthat O O\nit O O\n's O O\na O O\ndevice O O\nowner O O\napp O O\n. O O\n\nAlso O O\n, O O\nI O O\nknow O O\nof O O\nthe O O\nbattery O O\ndrain O O\nproblem O O\n, O O\nbut O O\nI O O\nstill O O\nneed O O\nit O O\n. O O\n\nThe O O\napp O O\nreally O O\nhas O O\nto O O\nprocess O O\nthis O O\nevery O O\nsecond O O\n. O O\n\nI O O\njust O O\nneed O O\na O O\nsolution O O\nfor O O\nit O O\n, O O\nany O O\n, O O\nno O O\nmatter O O\nwhich O O\n. O O\n\nEdit O O\n2 O O\n: O O\n\nHere O O\n's O O\nmy O O\ncurrent O O\nWakeLock Name Name\ncode O O\n, O O\nwhich O O\nis O O\nstarted O O\nwhen O O\nmy O O\ncustom O O\napplication O O\nreaches O O\nonCreate Name Name\n. O O\n\nAs O O\nI O O\nsaid O O\n, O O\nit O O\nis O O\nnever O O\nreleased O O\n. O O\n: O O\n\nI O O\nam O O\ntrying O O\nto O O\nperform O O\nan O O\nasynchronous O O\nunit O O\ntest O O\n: O O\n\nI O O\ncan O O\nsee O O\nin O O\nthe O O\nconsole Name Name\nthe O O\nline O O\nconsole.log(e) Name Name\nexecuted O O\n, O O\nbut O O\nthe O O\ntest O O\nresult O O\nis O O\n: O O\n\nWhat O O\nam O O\nI O O\nmissing O O\n? O O\n\nJust O O\nmove O O\nthe O O\ndone() Name Name\ncall O O\ndown O O\nafter O O\nthe O O\nassert Name Name\nstatement O O\n: O O\n\nI O O\nam O O\ntrying O O\nto O O\nmake O O\na O O\nsimple O O\noperating O O\nsystem O O\n. O O\n\nHowever O O\n, O O\nI O O\nhave O O\nrun O O\ninto O O\na O O\nproblem O O\ntrying O O\nto O O\nmake O O\nthe O O\nkernel Name Name\nsystem O O\ncalls O O\ninto O O\nextern Name Name\nfunctions O O\n. O O\n\nThis O O\nis O O\nthe O O\nerror O O\nmessage O O\n: O O\n\nHere O O\nis O O\nkernel.s Name Name\n: O O\n\nThanks O O\n! O O\n\nI O O\nam O O\nusing O O\nSignalR Name Name\nSelf Name Name\nHosted Name Name\nService Name Name\n( O O\nV O O\n2.2.0 Name Name\n) O O\nas O O\nserver Name Name\nand O O\nusing O O\nSilverlight Name Name\nas O O\nSignalR Name Name\nClient Name Name\n. O O\n\nI O O\nam O O\nable O O\nto O O\nconnect O O\nto O O\nthe O O\nserver Name Name\nand O O\nable O O\nto O O\nexchange O O\nthe O O\nmessages O O\n. O O\n\nI O O\nam O O\nhaving O O\na O O\nbutton Name Name\nto O O\nstop O O\nconnection O O\nto O O\nthe O O\nSignalR Name Name\nservice O O\n. O O\n\nWhat O O\nI O O\nwant O O\nis O O\n, O O\nWhen O O\nI O O\nclick O O\nthis O O\nbutton Name Name\n, O O\nConnection O O\nof O O\nthat O O\nClient Name Name\nshould O O\nget O O\ndisconnected O O\nfrom O O\nSignalR Name Name\nHub O O\n. O O\n\nI O O\nam O O\nable O O\nto O O\nget O O\ndisconnected O O\nfrom O O\nSignalR Name Name\nHub O O\nbut O O\nit O O\ntakes O O\nso O O\nmuch O O\ntime O O\nto O O\nrespond O O\nand O O\nmy O O\nClient Name Name\n( O O\nSilverlight Name Name\nWeb O O\nApplication O O\n) O O\ngets O O\ninto O O\nunresponsive O O\nstate O O\nand O O\ncomes O O\nback O O\nafter O O\naround O O\n28-30 O O\nsecs O O\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\ndisconnect O O\nclient Name Name\nimmediately O O\nonce O O\nthe O O\nbutton Name Name\nis O O\nclicked O O\n? O O\n\nThis O O\nis O O\nbecause O O\nof O O\na O O\ndeadlock O O\n. O O\n\nSignalR Name Name\nclient Name Name\nblocks O O\nthe O O\nthread O O\nwhen O O\nsending O O\nthe O O\nAbort O O\nrequest O O\n. O O\n\nHowever O O\nSilverlight Name Name\nwants O O\nto O O\nsend O O\nthe O O\nrequest O O\non O O\nthe O O\nUI O O\nthread O O\n. O O\n\nThe O O\ndefault O O\ntimeout O O\nfor O O\nstopping O O\nthe O O\nconnection O O\nis O O\n30 O O\nseconds O O\nso O O\nafter O O\nthe O O\ntimeout O O\nthe O O\nthread O O\nis O O\nunblocked O O\nand O O\nexecution O O\ncontinues O O\n. O O\n\nThis O O\ncan O O\nbe O O\nworked O O\naround O O\nby O O\ninvoking O O\nstop O O\nasynchronously O O\n( O O\nawait Name Name\nTask.Factory.StartNew Name Name\n(() Name Name\n=> Name Name\nhubConnection.Stop());) Name Name\nor O O\nmaking O O\nthe O O\ntimeout O O\nsmaller O O\n. O O\n\nTL O O\n;D O O\nR O O\n; O O\n\nhttps://github.com/SignalR/SignalR/issues/3102 O O\n\nI O O\nresolved O O\nmy O O\nproblem O O\nby O O\ncalling O O\nhub O O\ndisconnect O O\nmethod O O\nin O O\nSilverlight Name Name\nThreading O O\ntask O O\n. O O\n\nSo O O\nnow O O\nI O O\ndo O O\nnot O O\nworry O O\nabout O O\nacknowledgement O O\nof O O\nhub O O\ndisconnect O O\nfrom O O\nSignalR Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nscroll O O\ninside O O\nof O O\na O O\ndiv Name Name\non O O\na O O\nwebpage O O\n, O O\nbut O O\nI O O\nam O O\nseeing O O\n: O O\n\nThis O O\nonly O O\noccurs O O\nwhen O O\nI O O\nuse O O\nPhantomJS Name Name\nheadless O O\nbrowser Name Name\nwith O O\nSelenium Name Name\nWebdriver Name Name\n, O O\nbut O O\nif O O\nI O O\nuse O O\nSafari Name Name\nas O O\nthe O O\nbrowser Name Name\nwith O O\nSelenium Name Name\nWebdriver Name Name\n, O O\nthen O O\nthe O O\ndiv Name Name\nscrolls O O\nfine O O\nand O O\nthere O O\nis O O\nno O O\nissue O O\n. O O\n\nMy O O\ncode O O\n( O O\nusing O O\nPhantomJS Name Name\n) O O\n: O O\n\nThe O O\nline O O\nwith O O\nthe O O\nissue O O\n, O O\n\nworks O O\nwhen O O\nI O O\nuse O O\n: O O\n\nI O O\nalso O O\nknow O O\nthat O O\nthis O O\nis O O\nthe O O\nline O O\ncausing O O\nthe O O\nissue O O\nbecause O O\nwhen O O\nit O O\nis O O\ncommented O O\nout O O\n, O O\nthe O O\nscript O O\nworks O O\n, O O\nbut O O\nI O O\nneed O O\nthe O O\nscroll O O\nto O O\nexecute O O\nin O O\norder O O\nto O O\nget O O\ndata O O\nfrom O O\nsome O O\nof O O\nthe O O\ndynamically O O\nloaded O O\ndivs Name Name\n. O O\n\nAny O O\nhelp O O\nis O O\nappreciated O O\n. O O\n\nThank O O\nyou O O\n! O O\n\nI O O\nhave O O\na O O\ndropUp O O\nmenu Name Name\nwith O O\nthe O O\nfollowing O O\n: O O\n\nSo O O\nafter O O\nclicking O O\non O O\nthe O O\nmenu_tab Name Name\n, O O\nthe O O\nmenu Name Name\ndrops O O\nup O O\nand O O\nstays O O\nup O O\nuntil O O\nclicked O O\nagain O O\n, O O\nbut O O\nI O O\n'd O O\nlike O O\na O O\ntimeout O O\nso O O\nthat O O\nafter O O\nsay O O\n2 O O\nseconds O O\nthe O O\nmenu Name Name\ndrops O O\ndown O O\nagain O O\n. O O\n\nI O O\n've O O\nobviously O O\ngot O O\nthe O O\ncoding O O\nwrong O O\nbecause O O\nthe O O\ntimeout O O\nis O O\nn't O O\nworking O O\n. O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\nappreciated O O\n! O O\n\nTIA O O\n. O O\n\nYour O O\nuse O O\nof O O\nclearTimeout() Name Name\nhere O O\nis O O\nwrong O O\n. O O\n\nYou O O\nneed O O\nto O O\npass O O\nit O O\na O O\nreference O O\nto O O\nthe O O\nID Name Name\nreturned O O\nwhen O O\nyou O O\ncreated O O\nthat O O\ntimer O O\nwith O O\nsetTimeout() Name Name\n. O O\n\nCa O O\nn't O O\nsay O O\nif O O\nthat O O\n's O O\ncausing O O\nyour O O\nproblem O O\nthough O O\n( O O\nit O O\nprobably O O\nisn't O O\n) O O\n. O O\n\nIf O O\nyou O O\nget O O\nanything O O\nin O O\nthe O O\nJavascript Name Name\nerror Name Name\nconsole Name Name\nthat O O\nmight O O\nhelp O O\n. O O\n\nI O O\nthink O O\nyou O O\nare O O\ntrying O O\nto O O\ndo O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nTry O O\nit O O\nout O O\n: O O\nhttp://jsfiddle.net/YFPey/ O O\n\nI O O\nwant O O\nto O O\nchange O O\nform Name Name\nlabels O O\nin O O\nmy O O\nSolidus Name Name\necommerce O O\napplication O O\n. O O\n\nMy O O\nparticular O O\nuse O O\ncase O O\nis O O\nhandling O O\nUK O O\naddresses O O\nwhere O O\nthe O O\nname O O\n\" Name Name\nZip Name Name\nCode Name Name\n\" Name Name\nshould O O\nbe O O\nchanged O O\nto O O\n\" Name Name\nPost Name Name\nCode Name Name\n\" Name Name\n- O O\nbut O O\nthere O O\ncould O O\nbe O O\nother O O\nlocalization O O\nchanges O O\nas O O\nwell O O\n. O O\n\nHow O O\ncan O O\nI O O\ndo O O\nthis O O\n? O O\n\nSolidus Name Name\n, O O\nwhich O O\nwas O O\nforked O O\nfrom O O\nSpree Name Name\n, O O\nprovides O O\na O O\nnumber O O\nof O O\nways O O\nto O O\ncustomize O O\nthe O O\napplication O O\n. O O\n\nIn O O\nthis O O\ncase O O\nyou O O\nwant O O\nto O O\ntranslate O O\na O O\nstring Name Name\ndepending O O\non O O\nthe O O\nlocale O O\n. O O\n\nSolidus Name Name\nprovides O O\na O O\ninternationalization O O\ngem Name Name\nsolidus_i18n Name Name\nfor O O\nthis O O\nissue O O\n. O O\n\nInstallation O O\nInstructions O O\nare O O\ncurrently O O\n( O O\nbut O O\ncheck O O\nwith O O\ngem Name Name\nreadme Name Name\n) O O\n: O O\n\nYou O O\ncan O O\nalso O O\nset O O\nthe O O\ndefault O O\nlocale O O\nwithin O O\nconfig/initializers/spree.rb Name Name\n\nFurther O O\nReading O O\n\nSpree Name Name\nDocumentation O O\non O O\nInternationalization O O\n- O O\nvery O O\nsimilar O O\ndocumenation O O\n\nI O O\nam O O\ntrying O O\nto O O\ntest O O\na O O\nsimple O O\ncall O O\nthat O O\ngoes O O\nto O O\nmy O O\ndialogueService Name Name\nand O O\nreturns O O\nan O O\nobservable O O\n. O O\n\nWhen O O\nthe O O\nmethod O O\nis O O\nfired O O\na O O\nlocal O O\nproperty O O\non O O\nmy O O\ncomponent O O\nis O O\nset O O\n. O O\n\nMy O O\ncode O O\nis O O\nbelow O O\n. O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\ngreatly O O\nappreciated O O\n, O O\nI O O\nhave O O\ntried O O\neverything O O\nI O O\ncannot O O\nget O O\nit O O\nto O O\nwork O O\nat O O\nall O O\n. O O\n\nDialogue.component.ts Name Name\n\nDialogue.component.spec.ts Name Name\n\n} Name Name\n) Name Name\n; Name Name\n\nI O O\nwant O O\nsomeone O O\nto O O\nbe O O\nable O O\nto O O\ninput O O\ntext O O\nin O O\na O O\ntextbox Name Name\nand O O\nwhen O O\nthey O O\nhit O O\nsubmit O O\nit O O\nshows O O\nwhat O O\nthey O O\nentered O O\nunderneath O O\nit O O\nand O O\nalso O O\ndisplays O O\nit O O\non O O\na O O\nsecond O O\nphp Name Name\npage Name Name\n. O O\n\nThis O O\nis O O\nthe O O\ncode O O\nfor O O\nthe O O\npage Name Name\nwhere O O\nthey O O\nenter O O\ntheir O O\nmessage O O\n. O O\n\nAnd O O\nthis O O\nis O O\nthe O O\ncode O O\nfor O O\nthe O O\nsecond O O\npage Name Name\nwhere O O\nthe O O\nmessage O O\nneeds O O\nto O O\nshow O O\n. O O\n\nIf O O\nanybody O O\nknows O O\nhow O O\nto O O\nfix O O\nand/or O O\nimprove O O\nthe O O\ncode O O\nthat O O\nwould O O\nbe O O\nawesome O O\n. O O\n\nFor O O\nlearning O O\njQuery Name Name\nUI Name Name\ndialog Name Name\n, O O\nI O O\nhave O O\nthe O O\ncode O O\ndefined O O\nbelow O O\n. O O\n\nI O O\nneed O O\nto O O\ndo O O\nfollowing O O\nthree O O\ntasks O O\n\n1) O O\nUse O O\nmy O O\nimage Name Name\nas O O\n\" O O\nOK O O\n\" O O\nbutton Name Name\nand O O\n\" O O\nCancel O O\n\" O O\nbutton Name Name\n\n2) O O\nUse O O\nmy O O\ncustom O O\nimage Name Name\nas O O\nthe O O\nclose O O\nbutton Name Name\non O O\nright O O\ntop O O\nend O O\nof O O\ndialog Name Name\n\n3) O O\nBackground O O\nof O O\nthe O O\nwhole O O\ndialog Name Name\nshould O O\nbe O O\n\" O O\ngray O O\n\" O O\n( O O\nincluding O O\ntitle O O\n, O O\nand O O\nplace O O\nfor O O\nOK O O\nbutton Name Name\n. O O\n) O O\n\nThe O O\nimportant O O\npoint O O\nis O O\nthe O O\nstyle O O\nshould O O\nbe O O\napplied O O\nonly O O\nto O O\nmy O O\ndialog Name Name\n. O O\n\nAll O O\nother O O\nwidgets Name Name\nshould O O\nhave O O\ndefault O O\nbehavior O O\n. O O\n\nFor O O\ncontent O O\narea O O\n, O O\nI O O\ncould O O\nachieve O O\nit O O\nusing O O\n#myDiv Name Name\n.ui-widget-content Name Name\n. O O\n\nCan O O\nyou O O\nplease O O\nsuggest O O\ncode O O\nfor O O\nthis O O\n? O O\n\nNote O O\n: O O\nPlease O O\nuse O O\nthe O O\nbest O O\npractices O O\n, O O\nif O O\npossible O O\n. O O\n\n( O O\nE.g O O\n. O O\n1 O O\n. O O\nuse O O\na O O\nvariable O O\n$myDialog Name Name\n2 O O\n. O O\nuse O O\nautoOpen Name Name\n: O O\nfalse O O\n) O O\n\nAlso O O\n, O O\nI O O\nmade O O\na O O\ncss Name Name\nclass O O\nto O O\noverride O O\nthe O O\nwidget Name Name\nfunctionality O O\nonly O O\nfor O O\nmy O O\ndialog Name Name\n\nFor O O\nthis O O\nyou O O\nwill O O\nhave O O\nto O O\nover-ride O O\ndefault O O\ncss Name Name\nprovided O O\nby O O\njQuery Name Name\nUI Name Name\n( O O\njquery.ui.theme.css Name Name\n) O O\n. O O\n\nImage Name Name\nfor O O\nOk O O\nbutton Name Name\n: O O\nYou O O\nneed O O\nto O O\nchange O O\n.ui-state-default Name Name\n, O O\n.ui-widget-content Name Name\n.ui-state-default Name Name\n, O O\n.ui-widget-header Name Name\n.ui-state-default Name Name\nbackground O O\nimage Name Name\n. O O\n\nClose O O\nButton Name Name\n: O O\nChange O O\n.ui-widget-header Name Name\n.ui-icon Name Name\n\nBackground O O\nof O O\nDialogue Name Name\n: O O\nChange O O\n.ui-widget-content Name Name\nbackground O O\nproperty O O\n. O O\n\nHope O O\nthis O O\nworks O O\nfor O O\nyou O O\n. O O\n\nI O O\nhave O O\nupvoted O O\nthe O O\nabove O O\nanswer O O\n. O O\n\nStill O O\ndialogClass Name Name\n: O O\n' Name Name\nmyDialogCSS Name Name\n' Name Name\nwas O O\nthe O O\nkey O O\nI O O\nwas O O\nlooking O O\nfor O O\n. O O\n\nHTML Name Name\nand O O\njQuery Name Name\n\nMyStyleSheet.css Name Name\n\nFirst O O\n: O O\nthis O O\nis O O\nmy O O\nfirst O O\ntime O O\nusing O O\nGSON Name Name\n. O O\n\nTrying O O\nto O O\nparse O O\nsome O O\nJSON Name Name\n, O O\nI O O\ngot O O\n\" O O\nincompatible O O\ntypes O O\n\" O O\n. O O\n. O O\n\nPlayerData Name Name\nis O O\nan O O\ninner O O\nclass O O\n: O O\n\nWhat O O\ncauses O O\nit O O\n? O O\n\nand O O\nI O O\nam O O\ndoing O O\nat O O\n( O O\nAFAIK O O\n) O O\njust O O\nlike O O\nGoogle Name Name\nin O O\nit O O\n's O O\nGSON Name Name\nUser O O\nGuide O O\n. O O\n\nEdit O O\n: O O\n\nXCode Name Name\nwas O O\ndoing O O\nsomething O O\nstrange O O\n, O O\nwhen O O\nI O O\ntried O O\nto O O\ncompile O O\nthis O O\nwith O O\nTerminal Name Name\neverything O O\nworked O O\n, O O\nexcept O O\nfor O O\nmy O O\nrequest O O\nto O O\nthe O O\nserver Name Name\n, O O\nwhat O O\nresulted O O\nin O O\na O O\ncouple O O\nof O O\nNPE O O\n's O O\n, O O\nbecause O O\nresponse Name Name\nremained O O\nempty Name Name\n. O O\n\nThanks O O\nto O O\nmaaartinus O O\nI O O\nlearned O O\nthat O O\nthere O O\nshould O O\nn't O O\nbe O O\nan O O\ncompiler Name Name\nerror O O\nso O O\nI O O\ntried O O\nto O O\ncompile O O\nit O O\nwithout O O\nXCode Name Name\n. O O\n\nFor O O\nme O O\nit O O\ncompiles O O\n, O O\nbut O O\nI O O\nhad O O\nto O O\nreplace O O\nGSON O O\nby O O\nGson Name Name\n. O O\n\nEither O O\nyou O O\nwere O O\nsloppy O O\nwhen O O\nwriting O O\nthis O O\nquestion O O\nor O O\nyou O O\n're O O\nusing O O\nsome O O\n\" O O\nGSON Name Name\n\" O O\nI O O\n've O O\nnever O O\nheard O O\nabout O O\n. O O\n\nIs O O\nyour O O\nresponse Name Name\na O O\nString Name Name\n?? O O\n? O O\n\nOnce O O\nyou O O\nget O O\nit O O\nrunning O O\n, O O\nyou O O\n'll O O\nneed O O\nthe O O\nanswer O O\nby O O\nVrushank O O\nDesai O O\n. O O\n\nTry O O\nmaking O O\nyour O O\ninner O O\nclass O O\nstatic Name Name\nor O O\nyou O O\n'll O O\nneed O O\na O O\ncustom O O\nInstanceCreator Name Name\nfor O O\nit O O\nas O O\nstated O O\nin O O\nthe O O\nGson Name Name\nUser O O\nGuide O O\n\nI O O\nhave O O\na O O\ncolumn Name Name\nof O O\ncharacters Name Name\nin O O\na O O\ndata.frame Name Name\nwhich O O\nI O O\nwant O O\nto O O\nbe O O\nrecognized O O\nas O O\ndates O O\n: O O\n\nFor O O\nexample O O\nI O O\ntried O O\n: O O\n\nBut O O\nthis O O\nreturns O O\n: O O\n\n\" Name Name\n---- Name Name\n- Name Name\n\" Name Name\n\" Name Name\n---- Name Name\n- Name Name\n\" Name Name\n\" Name Name\n---- Name Name\n- Name Name\n\" Name Name\n\" Name Name\n---- Name Name\n- Name Name\n\" Name Name\n\nwhile O O\nI O O\nwant O O\n\n\" Name Name\n2013-05-30 Name Name\n\" Name Name\n, O O\n\" Name Name\n2013-05-29 Name Name\n\" Name Name\n, O O\n\" Name Name\n2013-05-28 Name Name\n\" Name Name\n, O O\n\" Name Name\n2013-05-27 Name Name\n\" Name Name\n\nI O O\nwould O O\nbe O O\ngrateful O O\nfor O O\nyour O O\nhelp O O\n. O O\n\nWould O O\nn't O O\nit O O\nbe O O\neasier O O\nto O O\nsimply O O\ncoerce O O\nthem O O\nto O O\ndates O O\n? O O\n\nThe O O\nreason O O\nyour O O\ngsub Name Name\ndoes O O\nn't O O\nwork O O\nis O O\nbecause O O\n. Name Name\nhas O O\na O O\nspecial O O\nmeaning O O\nin O O\nregex O O\n. O O\n\nYou O O\ncan O O\nhave O O\nit O O\ninterpreted O O\nliterally O O\nby O O\nspecifying O O\nfixed Name Name\n= Name Name\nTRUE Name Name\n. O O\n\nin O O\nyour O O\ngsub Name Name\ncall O O\n, O O\n\" Name Name\n. Name Name\n\" Name Name\nis O O\nyour O O\npattern O O\n. O O\n\nThe O O\n\" Name Name\n. Name Name\n\" Name Name\nsymbol O O\nin O O\na O O\npattern O O\nmeans O O\n\" O O\nany O O\ncharacter O O\n\" O O\n, O O\nso O O\nyou O O\n're O O\ntalling O O\ngsub Name Name\nto O O\nreplace O O\nevery O O\ncharacter O O\nwith O O\na O O\ndash Name Name\n. O O\n\nThe O O\ncorrect O O\ngsub Name Name\ncall O O\nrequires O O\nescaping O O\nthe O O\nperiod Name Name\nso O O\nR Name Name\nknows O O\nthis O O\nis O O\na O O\nliteral O O\nperiod Name Name\n: O O\n\nThis O O\nsyntax O O\nwill O O\nhave O O\ngsub Name Name\nreplace O O\nall O O\nperiods Name Name\nwith O O\ndashes Name Name\n. O O\n\nBut O O\nreally O O\n, O O\nthis O O\nis O O\nn't O O\nwhat O O\nyou O O\nwant O O\n, O O\nyou O O\nwant O O\ndates O O\n. O O\n\nYou O O\nneed O O\nto O O\nuse O O\nas.Date Name Name\nlike O O\nso O O\n: O O\n\nYour O O\nintended O O\nsolution O O\nwould O O\nonly O O\nhave O O\nconverted O O\nyour O O\nstrings Name Name\nto O O\na O O\ndifferent O O\nstring Name Name\nformat O O\n. O O\n\nUsing O O\nas.Date Name Name\ntells O O\nR Name Name\nto O O\ntreat O O\nthe O O\nvalues O O\nas O O\ndates O O\nand O O\nnot O O\nstrings Name Name\n. O O\n\nwill O O\nproduce O O\nan O O\nerror O O\n( O O\nbecause O O\nR Name Name\ndoes O O\nn't O O\nunderstand O O\nwhat O O\nyou O O\nwant O O\nwhen O O\nyou O O\nask O O\nit O O\nto O O\nplot O O\nnothing O O\nbut O O\nstrings Name Name\n) O O\n, O O\nwhereas O O\n: O O\n\nProduces O O\na O O\nplot O O\nof O O\nindex O O\nvs O O\n. O O\nday O O\nof O O\nthe O O\nweek O O\n( O O\nsince O O\nR Name Name\nrecognizes O O\nthat O O\nyou O O\nhave O O\ntimeseries O O\ndata O O\n) O O\n. O O\n\nHello O O\nthe O O\nGWT+Hibernate+Gilead Name Name\nis O O\nnot O O\nworking O O\ni O O\nhave O O\ndownloaded O O\nthe O O\nsample O O\ncode O O\nfrom O O\nthis O O\nlink O O\n\nhttps://developers.google.com/web-toolkit/articles/using_gwt_with_hibernate O O\n. O O\n\nHere O O\nis O O\nthe O O\njar Name Name\nfile O O\ni O O\nam O O\nusing O O\n\nPlease O O\nplease O O\nhelp O O\nme O O\nout O O\nof O O\nthis O O\n, O O\ninform O O\nme O O\nwhere O O\ni O O\nam O O\nwrong O O\n, O O\n\nThanks O O\nin O O\nadvance O O\n\nWell O O\n, O O\nwith O O\n\" O O\nnewer O O\n\" O O\nversions O O\nof O O\nGWT Name Name\n( O O\ni.e O O\n. O O\nnewer O O\nthan O O\n1.7 Name Name\nI O O\nthink O O\n) O O\n, O O\nyou O O\n'll O O\nneed O O\nto O O\nuse O O\na O O\nmore O O\nrecent O O\nversion O O\nof O O\nGilead Name Name\n. O O\n\nAFAIK O O\n, O O\nthe O O\nproblem O O\nyou O O\ndescribe O O\nhas O O\nbeen O O\nsolved O O\nlong O O\nago O O\n. O O\n\nThe O O\nlast O O\nrelease O O\nwas O O\nversion O O\n1.3.2 Name Name\non O O\n2010-05-22 O O\n. O O\n\nYes O O\n, O O\nthis O O\nrelease O O\nis O O\nold O O\n, O O\nand O O\nGilead Name Name\nis O O\nn't O O\nupdated O O\nanymore O O\n. O O\n\nHowever O O\n, O O\nit O O\nstill O O\nworks O O\n, O O\neven O O\nwith O O\nthe O O\nlatest O O\nGWT Name Name\nversions O O\n( O O\ncurrently O O\n2.5 Name Name\nrc O O\n) O O\n, O O\nas O O\nlong O O\nas O O\nyou O O\n're O O\nusing O O\nHibernate Name Name\n<= O O\n3.5.x Name Name\n. O O\n\nI O O\nwould O O\nn't O O\nreally O O\nrecommend O O\nstarting O O\na O O\nproject O O\nwith O O\nGilead Name Name\nnow O O\n, O O\nsee O O\nhttp://sourceforge.net/projects/gilead/forums/forum/868076/topic/4525959 O O\n\nI O O\nam O O\ncurrently O O\nmaking O O\na O O\nscript O O\nwhich O O\nwill O O\nadd O O\nto O O\ncart O O\nand O O\ncheckout O O\nitems O O\non O O\ne-commerce O O\nwebsites O O\nrun O O\non O O\nthe O O\nshopify Name Name\nplatform O O\n\nI O O\n'm O O\ntrying O O\nto O O\nspeed O O\nup O O\nthe O O\nprocess O O\nby O O\nrunning O O\nthe O O\nadd Name Name\nto Name Name\ncart Name Name\nmethod O O\non O O\nmultiple O O\nthreads O O\n. O O\n\nMy O O\nadd Name Name\nto Name Name\ncart Name Name\nfunction O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nwhere O O\nkeywords Name Name\nis O O\nthe O O\nlist Name Name\nof O O\nstrings Name Name\nso O O\nwe O O\ncan O O\nparse O O\nand O O\nfind O O\nthe O O\ncorrect O O\nitem O O\n, O O\nand O O\nsession Name Name\nis O O\nthe O O\na O O\nnew O O\nsession Name Name\nfrom O O\nthe O O\nrequests Name Name\nmodule O O\n. O O\n\nThe O O\nfunction O O\nfirst O O\nparses O O\nthrough O O\nthe O O\nsitemap O O\n, O O\nfinding O O\nthe O O\nunique O O\nproduct O O\nID O O\n, O O\nthen O O\nsends O O\na O O\npost O O\nrequest O O\nto O O\nthe O O\nsession Name Name\nvariable O O\nto O O\nadd O O\nsaid O O\nitem O O\nto O O\ncart O O\n. O O\n\nHowever O O\n, O O\nwhen O O\nI O O\nrun O O\nthe O O\nscript O O\nusing O O\nthreads Name Name\nto O O\nadd O O\nmultiple O O\nitems O O\nto O O\ncart O O\n, O O\ni O O\nonly O O\nsee O O\none O O\nof O O\nthe O O\nitems O O\nin O O\nthe O O\ncart O O\n. O O\n\nWhy O O\nis O O\nn't O O\nthis O O\nworking O O\n? O O\n\nWould O O\nI O O\nneed O O\nto O O\nlock O O\n+ O O\nunlock O O\nthe O O\nsession Name Name\nvariable O O\nand O O\nsend O O\nthe O O\nPOST O O\nrequest O O\none O O\nby O O\none O O\n? O O\n\nHere O O\n's O O\nthe O O\ncode O O\nthat O O\nI O O\nam O O\nrunning O O\n: O O\n\nFrom O O\nmy O O\nexperience O O\n, O O\nif O O\nyou O O\nhit O O\nShopify Name Name\nwith O O\nmultiple O O\ncart O O\nchanges O O\nat O O\nthe O O\nsame O O\ntime O O\n, O O\nonly O O\none O O\nwill O O\ngo O O\nthrough O O\n. O O\n\nMy O O\nguess O O\nis O O\nthat O O\nShopify Name Name\nhandles O O\nthe O O\ncart O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nAt O O\ntime O O\n0 Name Name\nwe O O\nhave O O\nour O O\ninitial O O\ncart O O\n- O O\ncall O O\nit O O\ncart0 Name Name\n\nAt O O\ntime O O\nt Name Name\n, O O\nwe O O\nsubmit O O\nn Name Name\nsimultaneous O O\nrequests O O\nto O O\nadd/update/change O O\nthe O O\ncart O O\n\nRequest O O\n0 Name Name\n: O O\ntake O O\ncart0 Name Name\nand O O\napply O O\nrequest O O\n, O O\nreturn O O\nresult O O\n\nRequest O O\n1 Name Name\n: O O\ntake O O\ncart0 Name Name\nand O O\napply O O\nrequest O O\n, O O\nreturn O O\nresult O O\n\n.. O O\n. O O\n\nRequest O O\nn Name Name\n: O O\ntake O O\ncart0 Name Name\nand O O\napply O O\nrequest O O\n, O O\nreturn O O\nresult O O\n\nThis O O\nseems O O\nconsistent O O\nwith O O\nthe O O\ncart O O\nreturn O O\nvalues O O\nthat O O\nI O O\ngot O O\nwhen O O\nI O O\ntested O O\nmultiple O O\nrequests O O\nat O O\nthe O O\nsame O O\ntime O O\n- O O\neach O O\ncallback O O\nfunction O O\nwould O O\ntrigger O O\nwith O O\na O O\ncart O O\nthat O O\nhad O O\na O O\nsingle O O\nchange O O\napplied O O\n. O O\n\nI O O\n've O O\nfound O O\ntwo O O\nways O O\nto O O\ndeal O O\nwith O O\nthis O O\nlimitation O O\n. O O\n\nThe O O\nfirst O O\nis O O\nto O O\nmake O O\nsure O O\nthe O O\nrequests O O\nare O O\nchained O O\nso O O\nthat O O\nwe O O\nwait O O\nfor O O\none O O\nto O O\nfinish O O\nbefore O O\nmaking O O\nthe O O\nnext O O\n- O O\neffectively O O\nturning O O\nthe O O\nasynchronous O O\nrequests O O\ninto O O\nsynchronous O O\nones O O\n. O O\n\nNot O O\nthe O O\nbest O O\nfor O O\nspeed O O\n. O O\n\nThe O O\nother O O\nmethod O O\nonly O O\nworks O O\nif O O\nwe O O\ndo O O\nn't O O\nhave O O\nline O O\nitem O O\nproperties O O\nto O O\nworry O O\nabout O O\n: O O\ncombining O O\nall O O\nthe O O\nadditions/changes O O\ninto O O\none O O\ncall O O\nto O O\n/cart/update.js Name Name\n, O O\npassing O O\nthe O O\nvariant O O\nIDs O O\nand O O\ndesired O O\nquantities O O\nall O O\nat O O\nonce O O\n- O O\nsee O O\nhttps://help.shopify.com/themes/development/getting-started/using-ajax-api#update-cart O O\nfor O O\nexamples O O\n. O O\n\nIf O O\nyou O O\ndo O O\nn't O O\nhave O O\nline O O\nproperties O O\nto O O\nworry O O\nabout O O\n, O O\nchanging O O\nyour O O\nsingle-line O O\nadditions O O\ninto O O\none O O\nbig O O\nupdate O O\nwill O O\nbe O O\na O O\nsignificant O O\nspeed O O\nand O O\nreliability O O\nincrease O O\n. O O\n\nI O O\nhave O O\na O O\njavafx Name Name\napplication O O\nwith O O\na O O\nTableView Name Name\n. O O\n\nOnly O O\nthe O O\nfirst O O\ncolumn Name Name\n( O O\ndataTypeColumn Name Name\n) O O\nis O O\neditable O O\nand O O\nit O O\ncontains O O\na O O\nComboBox Name Name\nfor O O\nediting O O\n. O O\n\nNow O O\nthe O O\nTableView Name Name\ndoes O O\nwhat O O\nit O O\nis O O\nsupposed O O\nto O O\ndo O O\n, O O\nhowever O O\nthere O O\nis O O\na O O\ncombination O O\nof O O\nweird O O\nbugs O O\nwhen O O\ni O O\nstart O O\nediting O O\na O O\ncell Name Name\nand O O\nthen O O\nscroll O O\nit O O\nout O O\nof O O\nview O O\nwithout O O\ncommiting O O\nthe O O\nedit O O\n. O O\n\nI O O\nam O O\npretty O O\nsure O O\nit O O\nis O O\nbecause O O\nof O O\nthe O O\nway O O\nTableView Name Name\nreuses O O\nthe O O\ncells Name Name\n. O O\n\nHowever O O\nI O O\nhave O O\nn't O O\nfound O O\nany O O\nway O O\nto O O\nintervene O O\nwith O O\nit O O\n, O O\nfor O O\nexample O O\nto O O\nforbid O O\nreuse O O\nof O O\ncells Name Name\nthat O O\nare O O\ncurrently O O\nediting O O\n. O O\n\nCan O O\nyou O O\nhelp O O\nme O O\nwith O O\nthat O O\n. O O\n\nEven O O\nthough O O\nI O O\nam O O\npretty O O\nsure O O\nit O O\nis O O\nbecause O O\nof O O\ncell Name Name\nreuse O O\n, O O\nI O O\nwill O O\nwrite O O\nthe O O\nwhole O O\nproblem O O\nbelow O O\n, O O\nin O O\ncase O O\nthe O O\nsource O O\nof O O\nthe O O\nproblem O O\nis O O\na O O\ndifferent O O\n. O O\n\nThe O O\ncolumn Name Name\nin O O\nquestion O O\ncontains O O\nValues O O\nof O O\nthe O O\nenum O O\nDataType Name Name\n\nI O O\nhave O O\na O O\ncell Name Name\nFactory O O\nfor O O\nthat O O\ncolumn Name Name\nlooking O O\nlike O O\nthis O O\n: O O\n\nThe O O\nvalues O O\nfor O O\nthe O O\ncolumn Name Name\nget O O\nread O O\nlike O O\nthis O O\n: O O\n\nIn O O\ncase O O\nthis O O\nis O O\nconfusing O O\n, O O\nthe O O\nitems O O\nthat O O\nI O O\ngive O O\nmy O O\nTableView Name Name\nare O O\nIntegers Name Name\n( O O\nfrom O O\n0 Name Name\nto O O\nn-1 Name Name\n) O O\n, O O\nand O O\nin O O\nthe O O\ndifferent O O\ncolumn Name Name\nCellValueFactories Name Name\nthe O O\nactual O O\nvalues O O\nwill O O\nbe O O\nloaded O O\ndepending O O\non O O\nthe O O\nInteger Name Name\nassoziated O O\nwith O O\nthe O O\ncurrent O O\ncolumn Name Name\n. O O\n\nSo O O\nwhen O O\nediting O O\nit O O\n, O O\nit O O\nshows O O\na O O\nComboBox Name Name\nwith O O\nall O O\nthe O O\nValues O O\nthat O O\nDataType Name Name\ncan O O\nhave O O\nand O O\nlet O O\n's O O\nthe O O\nuser O O\nselect O O\none O O\n. O O\n\nI O O\nhave O O\na O O\ncallback O O\non O O\nthe O O\ncolumn Name Name\nthat O O\nreacts O O\nto O O\nthe O O\nEdit O O\ncommited O O\nevent O O\nand O O\nlooks O O\nlike O O\nthis O O\n: O O\n\nSo O O\nabout O O\nthe O O\nproblems O O\nthat O O\noccur O O\n. O O\n\nAt O O\nthe O O\nbeginning O O\nall O O\ncells Name Name\nin O O\nthat O O\ncolumn Name Name\nhave O O\nthe O O\nsame O O\nvalue O O\n: O O\n\" Name Name\nnothing Name Name\nselected Name Name\n\" Name Name\n. O O\n\nIt O O\nis O O\na O O\nspecial O O\nvalue O O\nof O O\nthe O O\nenum O O\nreserved O O\nfor O O\nthis O O\ncase O O\n, O O\nas O O\nI O O\ndid O O\nn't O O\nfind O O\na O O\nsetPlaceholder Name Name\nfunction O O\non O O\nthe O O\nComboBoxTableCell Name Name\nclass O O\n. O O\n\nWhen O O\nI O O\nknow O O\nstart O O\nediting O O\none O O\nof O O\nthe O O\ncells Name Name\nand O O\nthen O O\nscroll O O\nit O O\nout O O\nof O O\nview O O\n, O O\none O O\nof O O\nthe O O\nnext O O\nrows Name Name\nwill O O\nsuddendly O O\nbe O O\nin O O\nthe O O\nediting O O\nstate O O\nas O O\nwell O O\n, O O\neven O O\nthough O O\nthat O O\nrow Name Name\nhas O O\nnot O O\nbeen O O\ntouched O O\nbefore O O\n. O O\n\nIf O O\nI O O\nscroll O O\nfurther O O\nan O O\ncell Name Name\nin O O\nthe O O\nediting O O\nstate O O\nwill O O\nappear O O\nevery O O\ntime O O\nthe O O\nprevious O O\none O O\nscrolls O O\nout O O\nof O O\nview O O\n. O O\n\nI O O\ncan O O\nalso O O\ngo O O\nback O O\nand O O\nwill O O\nfind O O\nthe O O\nsame O O\ncells Name Name\nin O O\nthe O O\nediting O O\nstate O O\n. O O\n\nIf O O\nI O O\nedit O O\nthe O O\ncell Name Name\nthat O O\nshould O O\nnot O O\nbe O O\nin O O\nthe O O\nediting O O\nstate O O\n, O O\nit O O\nwill O O\nnot O O\nchange O O\n, O O\nbut O O\ninstead O O\nthe O O\ncell Name Name\nthat O O\nI O O\noriginally O O\ntried O O\nto O O\nedit O O\nwill O O\nchange O O\nit O O\n's O O\nvalue O O\n. O O\n\nThis O O\nmight O O\nbe O O\ndue O O\nto O O\nthe O O\nunderlying O O\nObservableList Name Name\n, O O\nthat O O\nautomatically O O\nupdates O O\nthe O O\nvalue O O\nin O O\nthe O O\ncolumn Name Name\n. O O\n\nIf O O\nI O O\nstart O O\nediting O O\na O O\ncell Name Name\nthat O O\nhas O O\na O O\ndifferent O O\nvalue O O\n( O O\nfrom O O\na O O\nprevious O O\nedit O O\n) O O\n, O O\nsomething O O\neven O O\nmore O O\nweird O O\nhappens O O\n. O O\n\nWhen O O\nscrolling O O\nit O O\nout O O\nof O O\nview O O\nagain O O\na O O\nnew O O\nrow Name Name\nwill O O\nhave O O\na O O\ncell Name Name\nin O O\nthe O O\nediting O O\npage O O\n, O O\nhowever O O\nwith O O\nthe O O\ndefault O O\nvalue O O\n\" Name Name\nnothing Name Name\nselected Name Name\n\" Name Name\n. O O\n\nIf O O\nI O O\nscroll O O\nbackwards O O\nthe O O\ncell Name Name\nthat O O\ni O O\ntried O O\nto O O\nedit O O\noriginally O O\nwill O O\nno O O\nlonger O O\nbe O O\nin O O\nthe O O\nediting O O\nstate O O\nhowever O O\nit O O\n's O O\nvalue O O\nhas O O\nchanged O O\nto O O\n\" Name Name\nnothing Name Name\nselected Name Name\n\" Name Name\n. O O\n\nAs O O\nif O O\nthe O O\nnew O O\ncell Name Name\nthat O O\ngot O O\nthe O O\nediting O O\nstate O O\nsomehow O O\ncommited O O\nit O O\n's O O\nown O O\nvalue O O\n. O O\n\nPlease O O\nsome O O\nhelp O O\nwith O O\nthis O O\n:) O O\n\nThis O O\nindeed O O\nseems O O\nto O O\nbe O O\na O O\nbug O O\n. O O\n\nRather O O\nsurprising O O\n, O O\nif O O\nyou O O\nmove O O\nthe O O\nscroll Name Name\nbar Name Name\nwith O O\nthe O O\nmouse Name Name\n, O O\nthe O O\nedit O O\nis O O\nproperly O O\ncanceled O O\n, O O\nbut O O\nnot O O\n, O O\nif O O\nyou O O\nuse O O\nthe O O\nmouse Name Name\nwheel O O\nto O O\nscroll O O\n. O O\n\nYou O O\ncan O O\neasily O O\ncreate O O\na O O\nworkaround O O\nfor O O\nthis O O\nbuf O O\nhowever O O\n, O O\nsince O O\nyou O O\nsimply O O\nhave O O\nto O O\ncancel O O\nthe O O\nedit O O\n, O O\nwhen O O\nthe O O\nitem O O\nis O O\nreplaced O O\n. O O\n\nYou O O\ncould O O\ne.g O O\n. O O\n\nuse O O\nthis O O\nmethod O O\nto O O\ncreate O O\nthe O O\ncellFactory Name Name\non O O\nyour O O\nown O O\n: O O\n\nHow O O\ncan O O\ni O O\nread O O\neach O O\nrow Name Name\nin O O\nDatagrid Name Name\none O O\nat O O\na O O\ntime O O\n. O O\n\nFor O O\nexample O O\nmy O O\ndatagrid Name Name\nhas O O\n5 O O\ndata Name Name\non O O\nit O O\n. O O\n\nAnd O O\neach O O\ndata Name Name\ncorresponds O O\nto O O\na O O\nmethod O O\n/ O O\nfunction O O\nin O O\nmy O O\nC# Name Name\nsolution O O\n. O O\n\nI O O\nwant O O\nto O O\nread O O\nit O O\nas O O\ndata Name Name\n1 O O\nthen O O\nperform O O\nthe O O\ncorresponding O O\nfunction O O\nunder O O\nthat O O\ndata Name Name\n. O O\n\nthen O O\nread O O\ndata Name Name\n2 O O\nthen O O\nperform O O\nthe O O\ncorresponding O O\nfunction O O\nunder O O\nthat O O\ndata Name Name\n2 O O\n. O O\nand O O\nso O O\non. O O\n. O O\n\nCan O O\nanyone O O\ngive O O\nme O O\nsome O O\nidea O O\nhow O O\n? O O\n\nI O O\nassume O O\nyou O O\nare O O\nnot O O\nfollowing O O\nMVVM Name Name\n, O O\nGet O O\nthe O O\nItems O O\nFrom O O\nYour O O\nDataGrid Name Name\nlike O O\nthis O O\n, O O\n\nCan O O\nanyone O O\ntell O O\nme O O\nwhat O O\nthe O O\ngcov Name Name\nmessage O O\n\" O O\nMerge O O\nmismatch O O\nfor O O\nsummaries O O\n\" O O\nmeans O O\n? O O\n\nI O O\nhave O O\nfound O O\nthe O O\nmessage O O\nin O O\nthe O O\ngcc Name Name\nsource O O\nhere O O\n: O O\n\nhttp://www.opensource.apple.com/source/gcc/gcc-5646/gcc/libgcov.c O O\n\nIt O O\nseems O O\nto O O\nbe O O\na O O\nsanity O O\ncheck O O\nthat O O\nthe O O\ntags O O\nin O O\nthe O O\n.gcda Name Name\nfiles O O\nmatch O O\n, O O\nbut O O\nI O O\n'm O O\nnot O O\nsure O O\n. O O\n\nAnyone O O\nknow O O\nhow O O\nto O O\nwork O O\naround O O\nthis O O\n? O O\n\nThis O O\nhappens O O\nwhen O O\none O O\nof O O\nthe O O\nobjects O O\nyou O O\n're O O\nlinking O O\ninto O O\nan O O\nexecutable O O\nchanges O O\nsignificantly O O\n. O O\n\nFor O O\nexample O O\nit O O\ngains O O\nor O O\nloses O O\nsome O O\nlines O O\nof O O\nprofilable O O\ncode O O\n. O O\n\nThe O O\nminimal O O\ncase O O\nto O O\nproduce O O\nthe O O\nerror O O\nis O O\nwith O O\n2 O O\nsource O O\nfiles O O\n. O O\n\nHere O O\nare O O\n2 O O\nexample O O\nsource O O\nfiles O O\ncalled O O\nc Name Name\n.. Name Name\n. Name Name\n\nand O O\nstuff.c Name Name\n\nWhat O O\nthey O O\ndo O O\nis O O\nn't O O\nimportant O O\n. O O\n\nTo O O\nbuild O O\nthem O O\n, O O\nhere O O\nis O O\na O O\nsimple O O\nMakefile Name Name\n: O O\n\nThe O O\nMakefile Name Name\nis O O\nset O O\nup O O\nso O O\nthat O O\nthe O O\ncompilation O O\nis O O\nmain.c Name Name\n-> Name Name\nmain.o Name Name\n, O O\nstuff.c Name Name\n-> Name Name\nstuff.o Name Name\nand O O\nfinally O O\nstuff.o Name Name\n+ Name Name\nmain.o Name Name\n-> Name Name\ntestexe Name Name\n. O O\n\nIf O O\nwe O O\ncompile O O\nand O O\nlink O O\nthose O O\nC Name Name\nfiles O O\nwith O O\nthe O O\n-fprofile-arcs Name Name\n-ftest-coverage Name Name\noptions O O\nthen O O\nthe O O\nexecutable O O\nfile O O\nhas O O\nprofiling O O\n. O O\n\nRun O O\nthat O O\nexecuatable O O\nand O O\nyou O O\n'll O O\nget O O\n2 O O\noutput O O\nfiles O O\n, O O\nmain.gcda Name Name\nand O O\nstuff.gcda Name Name\n. O O\n\nSo O O\nfar O O\nso O O\ngood O O\n. O O\n\nNow O O\nchange O O\nthe O O\nline O O\n#if Name Name\n0 Name Name\nto O O\n#if Name Name\n1 Name Name\n. O O\n\nThe O O\nMakefile Name Name\nshould O O\ncause O O\njust O O\nstuff.c Name Name\nto O O\nrecompile O O\n, O O\nand O O\nthe O O\nexecutable O O\nto O O\nrelink O O\n. O O\n\nNext O O\ntime O O\nyou O O\nthe O O\ntest O O\nexecutable O O\ngets O O\nrun O O\nyou O O\n'll O O\nget O O\nthe O O\n\" O O\nMerge O O\nmismatch O O\n\" O O\nmessage O O\nfor O O\nthe O O\nmain.gcda Name Name\nfile O O\n. O O\n\nThe O O\nstuff.gcda Name Name\nfile O O\nis O O\nnot O O\naffected O O\nsince O O\nits O O\nobject O O\nfile O O\nhas O O\nbeen O O\nrecreated O O\nwith O O\nall O O\nthe O O\nnew O O\nsummary O O\ninformation O O\n. O O\n\nIf O O\nyou O O\nrecompile O O\nmain.c Name Name\nand O O\nrelink O O\nthe O O\nexecutable O O\n, O O\nthen O O\nthe O O\nerror O O\nmessage O O\ngoes O O\naway O O\n. O O\n\nSo O O\nwhat O O\ncan O O\nbe O O\ndone O O\n? O O\n\nI O O\n'd O O\nlove O O\nto O O\nknow O O\n! O O\n\nAt O O\nthe O O\nmoment O O\nI O O\nrun O O\nfind Name Name\n. Name Name\n-name Name Name\n' Name Name\n* Name Name\n.gcda Name Name\n' Name Name\n| Name Name\nxargs Name Name\nrm Name Name\nwhenever O O\nI O O\nneed O O\nto O O\nre-check O O\ncoverage O O\n, O O\nwhich O O\nis O O\nnot O O\nreally O O\nideal O O\n. O O\n\nAnother O O\nsolution O O\nwould O O\nbe O O\nto O O\nrecompile O O\neverything O O\nwhen O O\nusing O O\nprofiling O O\n\" O O\njust O O\nin O O\ncase O O\n\" O O\n, O O\nbut O O\nthat O O\nseems O O\nlike O O\noverkill O O\n. O O\n\nI O O\nam O O\nusing O O\nopenssl Name Name\n0.9.8g Name Name\nto O O\nvalidate O O\nthe O O\ncertificate O O\nsignature O O\n. O O\n\nThe O O\nAPI Name Name\n\" Name Name\nX509_verify Name Name\n\" Name Name\nreturns O O\n0/1 Name Name\naccording O O\nto O O\nthe O O\ndocument O O\n. O O\n\nbut O O\ni O O\nam O O\ngetting O O\n-1 Name Name\nas O O\nreturn O O\nvalue O O\n. O O\n\nwhy O O\ni O O\nam O O\ngetting O O\n-1 Name Name\nas O O\nreturn O O\nvalue O O\n. O O\n. O O\n? O O\n\nNeed O O\nto O O\nadd O O\nthe O O\nalgorithms O O\ndetails O O\n. O O\n. O O\n\ncall O O\nthese O O\nfunctions O O\nto O O\nadd O O\nthe O O\nalgorithm O O\nlist Name Name\n\nReturn O O\n-1 Name Name\nbecause O O\nit O O\nis O O\nnot O O\nable O O\nto O O\nfind O O\nthe O O\nAlgorithm O O\nobj_ID Name Name\n. O O\n\nI O O\nhave O O\na O O\ntemplate O O\nhelper O O\ncalled O O\nnotifications Name Name\nand O O\nI O O\nwant O O\nto O O\nreturn O O\n3 O O\ncollection Name Name\ncursors Name Name\nto O O\nmy O O\ntemplate O O\n, O O\nso O O\nthat O O\nI O O\ncan O O\nview O O\nall O O\n\nTemplate O O\n\nHelper O O\n\nWhat O O\nis O O\nthe O O\nbest O O\nway O O\nto O O\ngo O O\nabout O O\nthis O O\n? O O\n\nThanks O O\n! O O\n\nThe O O\nliteral O O\nanswer O O\nto O O\nyour O O\nquestion O O\nis O O\nto O O\nrun O O\nfetch Name Name\non O O\nall O O\nof O O\nthe O O\ncursors Name Name\nand O O\nconcatenate O O\nthem O O\ninto O O\na O O\nsingle O O\narray Name Name\n. O O\n\nBecause O O\nall O O\nof O O\nyour O O\ndocuments O O\ncome O O\nfrom O O\na O O\nsingle O O\ncollection Name Name\n, O O\nyou O O\ncan O O\nalternatively O O\nuse O O\na O O\nmore O O\nsophisticated O O\nquery O O\n. O O\n\nGive O O\nthis O O\na O O\ntry O O\n: O O\n\nI O O\n'm O O\ncreating O O\na O O\nform O O\nin O O\nangularjs Name Name\nin O O\nwhich O O\nthere O O\nare O O\ntwo O O\nngShow Name Name\nfor O O\nerror O O\nmessages O O\n. O O\n\nNow O O\n, O O\nI O O\nwant O O\nto O O\ncrossfade O O\nthese O O\ntwo O O\nmessages O O\nplacing O O\nthem O O\nin O O\nthe O O\nsame O O\nspot O O\n. O O\n\nBut O O\n, O O\ni O O\n'm O O\nnot O O\nsure O O\nhow O O\nto O O\nget O O\nit O O\n. O O\n\nHere O O\nis O O\nthe O O\nplunker O O\nlink O O\n: O O\nhttp://plnkr.co/edit/EcT2oOmClz65WUgXgG4g?p=preview O O\n\nI O O\n'm O O\nusing O O\n1.2.4 Name Name\nand O O\nlinked O O\nthe O O\nng-animate Name Name\nlib O O\n. O O\n\nRight O O\nnow O O\nthe O O\nanimation O O\n( O O\nfading O O\nin/out O O\n) O O\nis O O\nachieved O O\nusing O O\nCSS Name Name\nnot O O\nJS Name Name\n: O O\n\nhtml Name Name\n: O O\n\ncss Name Name\n: O O\n\nJS Name Name\n: O O\n\nThe O O\nway O O\nyou O O\ncan O O\ndo O O\nit O O\nis O O\nby O O\nadding O O\nposition O O\n: O O\nabsolute O O\nto O O\nthe O O\ncontainer O O\n's O O\nstyle O O\n, O O\nlike O O\nthis O O\n: O O\n\nThis O O\nwill O O\nmake O O\nboth O O\nerrors O O\nhave O O\nthe O O\nsame O O\nposition O O\nwhile O O\nfading O O\n, O O\nand O O\nthus O O\noverlapping O O\n( O O\nwhich O O\nis O O\nwhat O O\nI O O\nthink O O\nyou O O\nmean O O\nby O O\ncrossfading O O\n) O O\n\nI O O\nalso O O\nhad O O\nto O O\nchange O O\nthe O O\nwidth O O\nof O O\nthe O O\ncontainer Name Name\nbecause O O\nits O O\nwidth O O\nwas O O\nmaking O O\nthe O O\nerror O O\nmessages O O\nspan O O\nseveral O O\nlines O O\n. O O\n\nHere O O\nis O O\na O O\nlink O O\nto O O\nthe O O\nedited O O\nplunker Name Name\n\nI O O\nam O O\nlooking O O\nfor O O\nsome O O\ninsight O O\ninto O O\nreporting O O\nutilization O O\ncorrectly O O\n. O O\n\nI O O\nam O O\nusing O O\na O O\ntime O O\nplot O O\nthat O O\nreports O O\nresourceName.utilization() Name Name\n, O O\nadditionally O O\n, O O\nI O O\nam O O\nalso O O\nadding O O\nthe O O\nutilization O O\nvalues O O\nto O O\na O O\nStatistics O O\nobject O O\nevery O O\nhour O O\n. O O\n\nI O O\nthen O O\nplot O O\nthe O O\nmean O O\nvalue O O\nof O O\nthis O O\nStatistics O O\nobject O O\nas O O\nstatisticName.mean() Name Name\n. O O\n\nSince O O\nutilization O O\nin O O\nAnyLogic Name Name\nis O O\nthe O O\nreturned O O\nvalue O O\nis O O\nthe O O\nmean O O\nover O O\nall O O\nindividual O O\nunit O O\nutilization O O\n, O O\ncalculated O O\nfrom O O\nthe O O\nmost O O\nrecent O O\nresetStats() Name Name\ncall O O\nup O O\nto O O\ncurrent O O\ntime O O\n, O O\ndoes O O\nreporting O O\nthe O O\nvalue O O\nstatisticName.mean() Name Name\neven O O\nmake O O\nsense O O\n? O O\n\nThat O O\nwould O O\nbe O O\nthe O O\naverage O O\nof O O\ntime O O\naveraged O O\nvalues O O\n. O O\n\nIm O O\nusing O O\ntwig Name Name\nbut O O\nits O O\nbeing O O\nrun O O\nvia O O\ngulp Name Name\nnot O O\nsymphony Name Name\n. O O\n\nhttps://www.npmjs.com/package/gulp-twig O O\n\nIve O O\nused O O\nextends O O\nand O O\nincludes O O\nsuccessfully O O\nbut O O\nI O O\ncant O O\nget O O\nmacros O O\nto O O\nwork O O\n. O O\n\nDo O O\nmacros O O\nrequire O O\nsymphony Name Name\n? O O\n\nIn O O\nmy O O\nmain O O\ntwig Name Name\nfile O O\nI O O\nhave O O\n: O O\n\nIn O O\ntest.twig Name Name\n: O O\n\nIt O O\nwas O O\na O O\nsyntax O O\nissue O O\n. O O\n\nIn O O\nthe O O\nmain Name Name\nfile O O\n: O O\n\nIn O O\ntest.twig Name Name\n: O O\n\nImplementation O O\nNotes O O\n: O O\n\nhttps://github.com/justjohn/twig.js/wiki/Implementation-Notes O O\n\nI O O\n'm O O\nhaving O O\nsome O O\ntrouble O O\nbuilding O O\na O O\nGWT Name Name\napplication O O\n. O O\n\nHere O O\n: O O\nhttps://developers.google.com/web-toolkit/tools/gwtdesigner/features/menu_editing O O\nGoogle O O\nthemselves O O\ntalk O O\nof O O\nthe O O\npossibility O O\nof O O\nJava Name Name\nSwing Name Name\n, O O\nJFrame Name Name\nimplementation O O\nin O O\nthe O O\nGWT Name Name\n. O O\n\nI O O\nam O O\na O O\nJava Name Name\nnewbie O O\nand O O\ndo O O\nn't O O\nknow O O\nwhat O O\nthe O O\nSWT Name Name\nequivalent O O\nof O O\nSwing Name Name\nis O O\n, O O\nso O O\nI O O\nhave O O\nn't O O\ntried O O\nthat O O\noption O O\n. O O\n\nWhen O O\nI O O\ntry O O\nto O O\nrun O O\nmy O O\ncode O O\n( O O\nwhich O O\nis O O\nbuilt O O\nfrom O O\nthe O O\nGWT Name Name\nDesigner Name Name\n) O O\nI O O\nget O O\nerrors O O\nat O O\neach O O\nline O O\nthat O O\nuses O O\nJFrame Name Name\n: O O\n\nReturning O O\n: O O\n[ O O\nERROR O O\n] O O\n[ O O\ngwtearthdemo O O\n] O O\n- O O\nLine O O\n96 O O\n: O O\nNo O O\nsource O O\ncode O O\nis O O\navailable O O\nfor O O\ntype O O\njavax.swing.JFrame Name Name\n; Name Name\ndid O O\nyou O O\nforget O O\nto O O\ninherit O O\na O O\nrequired O O\nmodule O O\n? O O\n\nDitto O O\nfor O O\nJMenuBar Name Name\n, O O\nJMenu Name Name\n. O O\n\nI O O\nhave O O\nseen O O\nerrors O O\nsimilar O O\nto O O\nthis O O\nwith O O\nanswers O O\nsuggesting O O\nthat O O\nthe O O\nfunction O O\nin O O\nquestion O O\nis O O\nnot O O\napplicable O O\nto O O\nGWT Name Name\n. O O\n\nHowever O O\n, O O\nGoogle Name Name\nsuggests O O\nit O O\nis O O\n. O O\n\nAny O O\nadvice O O\nhere O O\n? O O\n\nIn O O\nGWT Name Name\nyou O O\nare O O\nrestricted O O\nto O O\nuse O O\nonly O O\nsome O O\nof O O\nthe O O\njava Name Name\nclasses O O\nsince O O\nit O O\nis O O\nnot O O\npossible O O\nto O O\nconvert O O\nall O O\nthe O O\njava Name Name\nclasses O O\nto O O\njavascript Name Name\n. O O\n\nYou O O\ncan O O\nfind O O\na O O\nlist O O\nof O O\nthe O O\nallowed O O\nclasses O O\nin O O\nthis O O\nlink O O\n: O O\nList O O\nof O O\nClasses O O\n\nI O O\nwas O O\nhaving O O\nsome O O\nperformance O O\nissues O O\nwith O O\nan O O\nOracle Name Name\nquery O O\n, O O\nso O O\nI O O\ndownloaded O O\na O O\ntrial O O\nof O O\nthe O O\nQuest Name Name\nSQL Name Name\nOptimizer Name Name\nfor O O\nOracle Name Name\n, O O\nwhich O O\nmade O O\nsome O O\nchanges O O\nthat O O\ndramatically O O\nimproved O O\nthe O O\nquery O O\n's O O\nperformance O O\n. O O\n\nI O O\n'm O O\nnot O O\nexactly O O\nsure O O\nwhy O O\nthe O O\nrecommended O O\nquery O O\nhad O O\nsuch O O\nan O O\nimprovement O O\n; O O\ncan O O\nanyone O O\nprovide O O\nan O O\nexplanation O O\n? O O\n\nBefore O O\n: O O\n\nPlan O O\nCost O O\n: O O\n831 Name Name\n\nElapsed O O\nTime O O\n: O O\n00:00:21.40 Name Name\n\nNumber O O\nof O O\nRecords O O\n: O O\n40,717 Name Name\n\nAfter O O\n: O O\n\nPlan O O\nCost O O\n: O O\n686 Name Name\n\nElapsed O O\nTime O O\n: O O\n00:00:00.95 Name Name\n\nNumber O O\nof O O\nRecords O O\n: O O\n40,717 Name Name\n\nQuestions O O\n: O O\n\nWhy O O\ndoes O O\nre-arranging O O\nthe O O\norder O O\nof O O\nthe O O\ntables Name Name\nin O O\nthe O O\nFROM Name Name\nclause O O\nhelp O O\n? O O\n\nWhy O O\ndoes O O\nadding O O\n+ Name Name\n0 Name Name\nto O O\nthe O O\nWHERE Name Name\nclause O O\ncomparisons O O\nhelp O O\n? O O\n\nWhy O O\ndoes O O\n|| Name Name\n'' Name Name\n<> Name Name\n' Name Name\nAA Name Name\n' Name Name\nin O O\nthe O O\nWHERE Name Name\nclause O O\nVERSION_NAME Name Name\ncomparison O O\nhelp O O\n? O O\n\nIs O O\nthis O O\na O O\nmore O O\nefficient O O\nway O O\nof O O\nhandling O O\npossible O O\nnulls Name Name\non O O\nthis O O\ncolumn Name Name\n? O O\n\nIf O O\nyou O O\nrun O O\nboth O O\nstatements O O\nthrough O O\nan O O\nexplain Name Name\nplan Name Name\n, O O\nyou O O\n'll O O\nsee O O\nthe O O\ndifference O O\nyourself O O\n. O O\n\nTo O O\ndo O O\nthat O O\n, O O\nissue O O\n: O O\n\nIf O O\nit O O\n's O O\nstill O O\nnot O O\nclear O O\nwhy O O\nthe O O\ndifference O O\noccurs O O\n, O O\nthen O O\nplease O O\npaste O O\nthe O O\noutput O O\nhere O O\n. O O\n\nRegards O O\n, O O\n\nRob O O\n. O O\n\nPS O O\n: O O\nthe O O\n\" O O\n+ Name Name\n0 Name Name\n\" O O\nand O O\n\" O O\n|| Name Name\n'' O O\n\" O O\nare O O\njust O O\ntricks O O\nto O O\nmake O O\nsure O O\nregular O O\nindexes O O\non O O\nthe O O\ncolumns Name Name\nare O O\nnot O O\nbeing O O\nused O O\n. O O\n\nThey O O\nalso O O\nmake O O\nyour O O\nquery O O\nless O O\nreadable O O\n, O O\nso O O\nI O O\nwould O O\ntune O O\nthem O O\nmyself O O\n, O O\ninstead O O\nof O O\nrelying O O\non O O\na O O\ntool O O\n. O O\n\nAlmost O O\ncertainly O O\nthe O O\nstatistics O O\non O O\nthese O O\ntables Name Name\nare O O\nwrong O O\n, O O\ncausing O O\nthe O O\noptimizer O O\nto O O\nchoose O O\na O O\npoor O O\nplan O O\n. O O\n\nGather O O\nstats O O\non O O\nthe O O\ntables Name Name\nand O O\nindexes O O\n( O O\nor O O\nget O O\nyour O O\nDBA O O\nto O O\nif O O\nyou O O\nare O O\nn't O O\nin O O\ncontrol O O\nof O O\nthat O O\nkind O O\nof O O\nthing O O\n) O O\n, O O\nthen O O\ntry O O\nyour O O\nqueries O O\nagain O O\n. O O\n\nThe O O\nfollowing O O\npage O O\nshows O O\nhow O O\nto O O\nload O O\nexternal O O\nimages Name Name\nin O O\nAS3 Name Name\nDataGrid Name Name\n: O O\nhttp://www.adobe.com/devnet/flash/quickstart/datagrid_pt3/ O O\n( O O\nimage Name Name\nand O O\ntext Name Name\nare O O\ndisplayed O O\nin O O\ntwo O O\ncolumns Name Name\n) O O\n\nBut O O\nI O O\nwonder O O\nhow O O\nthe O O\nimage Name Name\nand O O\ntext Name Name\ncan O O\nbe O O\nloaded O O\ntogether O O\nwithin O O\nthe O O\nsame O O\nDataGrid Name Name\n. O O\n\nWithin O O\none O O\ncolumn Name Name\n: O O\nImage Name Name\nfollowed O O\nby O O\nthe O O\ntext Name Name\n. O O\n\nI O O\ncannot O O\nget O O\nit O O\nwork O O\nso O O\nI O O\n'd O O\nbe O O\ngrateful O O\nfor O O\nany O O\nhelp O O\nwith O O\nexamples O O\n. O O\n\nThanks O O\n\nYou O O\njust O O\nhave O O\nto O O\nwrite O O\na O O\ncustom O O\nCellRenderer Name Name\nthat O O\ndoes O O\nit O O\n. O O\n\nIf O O\nyou O O\nreally O O\nread O O\nand O O\nunderstand O O\nthat O O\npage O O\nyou O O\nlinked O O\n, O O\nthey O O\nexplain O O\nhow O O\nto O O\nmake O O\ncustom O O\nCellRenderers Name Name\n, O O\nand O O\nyou O O\ncan O O\nput O O\nwhatever O O\nyou O O\nwant O O\nin O O\na O O\ncell Name Name\n. O O\n\nAn O O\nimage Name Name\nwith O O\ntext Name Name\n, O O\na O O\nbutton Name Name\n, O O\na O O\ngame O O\nof O O\ntetris O O\n, O O\nwhatever O O\n. O O\n\nI O O\nam O O\nbuilding O O\na O O\njoomla Name Name\n2.5 Name Name\nmodule O O\n, O O\ni O O\nwant O O\nto O O\naccess O O\ndata O O\npass O O\nfrom O O\nthe O O\nmodule O O\nparameter O O\n, O O\nbut O O\ni O O\nget O O\nthe O O\nfollowing O O\nerror O O\n: O O\nFatal O O\nerror O O\n: O O\nCall O O\nto O O\na O O\nmember O O\nfunction O O\nget() Name Name\non O O\na O O\nnon-object O O\n\nMy O O\ncode O O\nfollows O O\nbelows O O\n: O O\n\nhelper.php Name Name\n\nmod_feedGrabber.php Name Name\n\nmod_feedGrabber.xml Name Name\n\ndefault.php Name Name\n\nThe O O\nmain O O\nproblem O O\nI O O\ncan O O\nsee O O\nwith O O\nthe O O\ncode O O\nsupplied O O\nis O O\nthat O O\nyou O O\ndo O O\nn't O O\npass O O\nthe O O\n$params Name Name\nto O O\nyour O O\nhelper O O\nfunction O O\n. O O\n\nIt O O\nshould O O\nread O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nAlso O O\nyour O O\nXML Name Name\nis O O\ninvalid O O\n, O O\nas O O\nit O O\n's O O\nmissing O O\nclosing O O\ntags O O\nfor O O\nfieldset Name Name\nand O O\nfields Name Name\ntags O O\n. O O\n\nIt O O\nshould O O\nlook O O\nlike O O\nthis O O\n: O O\n\nAs O O\na O O\ntip O O\nyou O O\ncan O O\nquick O O\ncheck O O\nif O O\nan O O\nXML Name Name\nfile O O\nis O O\nvalid O O\nby O O\ndragging O O\nit O O\ninto O O\na O O\nbrowser Name Name\nwindow O O\n, O O\ne.g O O\n. O O\nyour O O\ncode O O\nposted O O\nabove O O\nresults O O\nin O O\nthis O O\n: O O\n\nis O O\nthere O O\na O O\nway O O\nto O O\ndetect O O\nif O O\nvideo Name Name\nplayback O O\nis O O\nrunning O O\nor O O\nnot O O\nwith O O\nWin32 Name Name\nAPI Name Name\n? O O\n\nFor O O\naudio O O\n, O O\nI O O\ncan O O\ndetect O O\nplayback O O\nprocesses O O\nby O O\n: O O\n\nenumerate O O\nplayback O O\ndevices O O\nwith O O\nMMDeviceEnumerator Name Name\nand O O\n, O O\n\nfor O O\neach O O\ndevice O O\n, O O\nenumerate O O\nsessions O O\nwith O O\nIaudiosessionManager Name Name\n. O O\n\nI O O\n'd O O\nlike O O\nto O O\ndo O O\nthe O O\nsimilar O O\nthing O O\nfor O O\nvideo Name Name\nplayback O O\n. O O\n\nIdeally O O\n, O O\na O O\nmethod O O\nthat O O\nworks O O\nfor O O\nany O O\napplication O O\n, O O\nbut O O\nif O O\nit O O\nis O O\nimpossible O O\n, O O\na O O\nmethod O O\nthat O O\nworks O O\nfor O O\nspecific O O\nframework O O\n( O O\nDirectShow Name Name\n, O O\nMedia Name Name\nFoundation Name Name\n, O O\netc O O\n. O O\n) O O\n\nis O O\nok O O\n. O O\n\nThanks O O\n. O O\n\nI O O\nam O O\nusing O O\ntwitter Name Name\nbootstrap Name Name\nand O O\nin O O\ncustom O O\ncss Name Name\nsaying O O\n\nwhen O O\nadded O O\n, O O\nit O O\nalways O O\ndisplays O O\nvertical O O\nscrollbar Name Name\n. O O\n\nis O O\nthere O O\nany O O\nway O O\nto O O\nfix O O\nthis O O\n? O O\n\nadd O O\nto O O\nthe O O\ncss Name Name\n: O O\n\nI O O\nhave O O\na O O\nworking O O\n( O O\nin O O\nmacOS Name Name\napp O O\nPatterns O O\n) O O\nRegExp O O\nthat O O\nreformats O O\nGeoJSON Name Name\nMultiPolygon O O\ncoordinates O O\n, O O\nbut O O\ndo O O\nn't O O\nknow O O\nhow O O\nto O O\nescape O O\nit O O\nfor O O\nsed Name Name\n. O O\n\nThe O O\nfile O O\nI O O\n'm O O\nworking O O\non O O\nis O O\nover O O\n90 O O\nMb O O\nin O O\nsize O O\n, O O\nso O O\nbash Name Name\nterminal Name Name\nlooks O O\nlike O O\nthe O O\nideal O O\nplace O O\nand O O\nsed Name Name\nthe O O\nperfect O O\ntool O O\nfor O O\nthe O O\njob O O\n. O O\n\nSearch O O\nText O O\nExample O O\n: O O\n\nDesired O O\noutcome O O\n: O O\n\nMy O O\ncurrent O O\nRegExp O O\n: O O\n\nand O O\nreformatting O O\n: O O\n\nThe O O\ncommand O O\nshould O O\nbe O O\nsomething O O\nalong O O\nthese O O\nlines O O\n: O O\n\nBut O O\nwhat O O\nshould O O\nbe O O\nescaped O O\nin O O\nthe O O\nRegExp O O\nto O O\nmake O O\nit O O\nwork O O\n? O O\n\nMy O O\nattempts O O\nalways O O\ncomplain O O\nof O O\nbeing O O\nunbalanced O O\n. O O\n\nI O O\n'm O O\nsorry O O\nif O O\nthis O O\nhas O O\nalready O O\nbeen O O\nanswered O O\nelsewhere O O\n, O O\nbut O O\nI O O\ncould O O\nn't O O\nfind O O\neven O O\nafter O O\nextensive O O\nsearching O O\n. O O\n\nEdit O O\n: O O\n2017-01-07 O O\n: O O\nI O O\ndid O O\nn't O O\nmake O O\nit O O\nclear O O\nthat O O\nthe O O\nfile O O\ncontains O O\nproperties O O\nother O O\nthan O O\njust O O\nthe O O\nGPS-points O O\n. O O\n\nOne O O\nof O O\nthe O O\nother O O\nexample O O\nvalues O O\npicked O O\nfrom O O\nGeoJSON Name Name\nFeature O O\nproperties O O\nis O O\n\" Name Name\n35.642.1.001_001 Name Name\n\" Name Name\n, O O\nwhich O O\nshould O O\nbe O O\nleft O O\nunchanged O O\n. O O\n\nThe O O\nbraces O O\ncheck O O\nin O O\nmy O O\noriginal O O\nregex O O\nis O O\nthere O O\nfor O O\nthis O O\nreason O O\n. O O\n\nThat O O\nregex O O\nis O O\nnot O O\nlegal O O\nin O O\nsed Name Name\n; O O\nsince O O\nit O O\nuses O O\nPerl Name Name\nsyntax O O\n, O O\nmy O O\nrecommendation O O\nwould O O\nbe O O\nto O O\nuse O O\nperl Name Name\ninstead O O\n. O O\n\nThe O O\nregular O O\nexpression O O\nworks O O\nexactly O O\nas-is O O\n, O O\nand O O\neven O O\nthe O O\ncommand Name Name\nline Name Name\nis O O\nalmost O O\nthe O O\nsame O O\n; O O\nyou O O\njust O O\nneed O O\nto O O\nadd O O\nthe O O\n-p Name Name\noption O O\nto O O\nget O O\nperl Name Name\nto O O\noperate O O\nin O O\nfilter O O\nmode O O\n( O O\nwhich O O\nsed Name Name\ndoes O O\nby O O\ndefault O O\n) O O\n. O O\n\nI O O\nwould O O\nalso O O\nrecommend O O\nadding O O\nan O O\nargument O O\nsuffix O O\nto O O\nthe O O\n-i Name Name\noption O O\n( O O\nwhether O O\nusing O O\nsed Name Name\nor O O\nperl Name Name\n) O O\n, O O\nso O O\nthat O O\nyou O O\nhave O O\na O O\nbackup O O\nof O O\nthe O O\noriginal O O\nfile O O\nin O O\ncase O O\nsomething O O\ngoes O O\nhorribly O O\nwrong O O\n. O O\n\nAs O O\nfor O O\nquoting O O\n, O O\nall O O\nyou O O\nneed O O\nto O O\ndo O O\nis O O\nput O O\nthe O O\nsubstitution O O\ncommand O O\nin O O\nsingle O O\nquotation O O\nmarks O O\n: O O\n\nA O O\nsimple O O\nsed Name Name\nwill O O\ndo O O\nit O O\n: O O\n\nI O O\nam O O\ncurrently O O\ntrying O O\nto O O\nturn O O\na O O\nPython Name Name\nscript O O\nI O O\nuse O O\nregularly O O\ninto O O\nan O O\napplication O O\nby O O\nusing O O\nPlatypus Name Name\n. O O\n\nHowever O O\n, O O\nmy O O\nscript O O\nprompts O O\nthe O O\nuser O O\nfor O O\ninput O O\nseveral O O\ntimes O O\nand O O\nuses O O\nthat O O\ninput O O\nto O O\nconstruct O O\na O O\nURL O O\nthat O O\nis O O\nbeing O O\nused O O\nto O O\nmake O O\nAPI Name Name\nrequests O O\n. O O\n\nHere O O\nis O O\nan O O\nexample O O\nof O O\nhow O O\nthis O O\nis O O\nused O O\nin O O\nmy O O\nscript O O\n: O O\n\nThe O O\ndata O O\ntaken O O\nfrom O O\nthe O O\nuser O O\n( O O\nand O O\nstored O O\nas O O\na O O\nvariable O O\n) O O\nis O O\nthen O O\nused O O\nlike O O\nthis O O\n: O O\n\nSince O O\nthe O O\napplication O O\ncreated O O\nusing O O\nPlatypus Name Name\nwo O O\nn't O O\nallow O O\nfor O O\nuser O O\ninput O O\n( O O\nbased O O\non O O\nthe O O\nway O O\nI O O\nam O O\nrequesting O O\nit O O\nthrough O O\nmy O O\nscript O O\n) O O\nI O O\nwas O O\ngoing O O\nto O O\ntry O O\nand O O\nuse O O\nTkinter Name Name\nas O O\nwell O O\n. O O\n\nHowever O O\n, O O\nI O O\nhave O O\nread O O\nthrough O O\nthe O O\ndocumentation O O\nand O O\nam O O\nconfused O O\nwhen O O\nit O O\ncomes O O\nto O O\nthe O O\nsyntax O O\n( O O\nI O O\nam O O\nstill O O\nnew O O\nto O O\nPython Name Name\nin O O\ngeneral O O\n) O O\n. O O\n\nCan O O\nanyone O O\nhelp O O\n, O O\nor O O\nshow O O\nan O O\nexample O O\nof O O\nhow O O\nI O O\ncan O O\nchange O O\nmy O O\nrequest O O\nfor O O\nuser O O\ninput O O\n( O O\nbased O O\non O O\nmy O O\nexample O O\nabove O O\n) O O\nusing O O\nTkinter Name Name\nso O O\nthe O O\napplication O O\nwill O O\nwork O O\n? O O\n\nI O O\nam O O\nalso O O\nusing O O\nPython Name Name\n2.7 Name Name\n. O O\n\nYou O O\ncan O O\nuse O O\nthe O O\nentry Name Name\nwidget O O\nto O O\nget O O\nthe O O\nuser O O\ninput O O\nas O O\na O O\nvariable O O\n. O O\n\nA O O\nuser O O\ncan O O\ntype O O\nin O O\nthere O O\nID O O\nand O O\nthen O O\nhit O O\nthe O O\nsubmit O O\nbutton Name Name\n. O O\n\nThis O O\nbutton Name Name\ncan O O\nbe O O\ntied O O\nto O O\na O O\nfunction O O\nthat O O\nwill O O\ndo O O\nanything O O\nyou O O\nneed O O\nit O O\nto O O\nform O O\nthere O O\n. O O\n\nIn O O\nPHP Name Name\n, O O\nI O O\nwant O O\nto O O\nmake O O\nit O O\nso O O\nthat O O\nif O O\na O O\nuser O O\ntypes O O\n: O O\n\n[ Name Name\nLINK Name Name\n] Name Name\nurl Name Name\n[ Name Name\n/LINK Name Name\n] Name Name\n\nIt O O\nwill O O\nreplace O O\nit O O\nwith O O\nthe O O\nanchor Name Name\ntag O O\n: O O\n\n<a Name Name\nhref=url>url</a> Name Name\n\nHow O O\nwould O O\nI O O\nshow O O\nthis O O\n? O O\n\nI O O\n'm O O\nnot O O\nsure O O\nhow O O\nto O O\ntranslate O O\nthis O O\ninto O O\nregex Name Name\n.. O O\n. O O\n\nI O O\n've O O\ntried O O\nthe O O\nfollowing O O\n: O O\n\n[ Name Name\nLINK Name Name\n] Name Name\n[ Name Name\na-zA-Z0-9_-. Name Name\n] Name Name\n+ Name Name\n[ Name Name\n/LINK Name Name\n] Name Name\n\nBut O O\nobviously O O\nthat O O\nis O O\nn't O O\nright O O\n:( O O\n\nExplanation O O\n: O O\n\nCatch O O\nlinks O O\nbut O O\nwould O O\nalways O O\nrequire O O\nleading O O\nhttp:// O O\nor O O\nhttps:// O O\nelse O O\nthe O O\nurl O O\nwould O O\nbe O O\nexample.com/google.com O O\nalso O O\nyou O O\nshould O O\nuse O O\npreg_replace_callback() Name Name\nas O O\nits O O\npossible O O\nto O O\nxss Name Name\nunsanitized O O\ninput O O\n. O O\n\nHere O O\nare O O\nsome O O\nexamples O O\n: O O\n\nOr O O\nStrip O O\nthe O O\nhttp:// O O\n& O O\nhttps:// O O\nfrom O O\nthe O O\nlink O O\nthen O O\nappend O O\nit O O\nwhen O O\noutputting O O\n. O O\n\nOr O O\nA O O\ndifferent O O\nway O O\nto O O\nhave O O\nBB Name Name\ncode Name Name\nlinks O O\n, O O\nthen O O\nyou O O\ncan O O\nspecify O O\nLink O O\nname O O\nfrom O O\nlink O O\naddress O O\n, O O\nthe O O\ncall O O\nback O O\nfunction O O\ncan O O\nbe O O\nmade O O\nto O O\nhandle O O\nmultiple O O\ntypes O O\nof O O\noutputs O O\n. O O\n\nI O O\nhave O O\na O O\ntables Name Name\n: O O\n\nAnalyses Name Name\n, O O\ncolumns(id Name Name\n, O O\nname Name Name\n, O O\ngame_id(FK Name Name\n)); Name Name\n\nGames Name Name\n, O O\ncolumns(id Name Name\n, O O\nname Name Name\n, O O\nround_id(FK Name Name\n)); Name Name\n\nRound Name Name\n, O O\ncolumns(id, Name Name\nround) Name Name\n; O O\n\nI O O\nneed O O\nget O O\nall O O\nrecords O O\nof O O\nAnalyses Name Name\norder O O\nby O O\n( O O\nround_id Name Name\n) O O\n. O O\n\nI O O\ntry O O\nAnalyses::orderBy('round_id')->get() Name Name\n, O O\nbut O O\nnot O O\nwork O O\n; O O\n\nFirst O O\nof O O\nall O O\n, O O\nyou O O\ndont O O\nhave O O\nthat O O\ncolumn Name Name\nin O O\nyour O O\nanalyses O O\ntable Name Name\n\nto O O\ndo O O\nthe O O\norderby O O\nyou O O\nhave O O\nto O O\nadd O O\nthis O O\nto O O\nyour O O\nrelation O O\n( O O\nassuming O O\nthey O O\nare O O\ncorrectly O O\ndone O O\n) O O\n\nAnalyses O O\nmodel O O\n\nGames Name Name\nmodel O O\n\nNow O O\nyou O O\ncan O O\nget O O\nall O O\nthe O O\nAnalyses Name Name\nwith O O\nthe O O\ngames O O\nand O O\nround O O\nusing O O\neagerloading O O\nlike O O\nthis O O\n\nyou O O\ncan O O\nchain O O\nanother O O\norderby O O\nfor O O\nAnalyses Name Name\nlike O O\nthis O O\nfor O O\nexemple O O\n\nin O O\nthe O O\nabove O O\nexemple O O\n, O O\nyou O O\nwill O O\nhave O O\nAnalyses O O\nordered O O\nby O O\ngame_id Name Name\nand O O\nthe O O\ngames O O\ninside O O\neach O O\nAnalyse Name Name\nwill O O\nbe O O\norderedby O O\nround_id Name Name\n\nI O O\nhope O O\nthis O O\nis O O\nwhat O O\nyou O O\nwant O O\nto O O\ndo O O\n\nAnalyses Name Name\nmodel O O\n\nRound Name Name\nModel O O\n\nGame Name Name\nModel O O\n\nYour O O\nQuery O O\nShould O O\nbe O O\nlike O O\nThis O O\n\nI O O\n'm O O\nreading O O\nthe O O\nbook O O\nProgramming O O\nEntity O O\nFramework O O\n: O O\nDbContext O O\nand O O\nI O O\njust O O\nread O O\nthe O O\nchapter O O\non O O\nthe O O\nthree O O\ndata O O\nloading O O\ntypes O O\n: O O\n\nLazy Name Name\nloading Name Name\n( O O\ndefault O O\n) O O\n\nEager Name Name\nloading Name Name\n\nExplicit Name Name\nloading Name Name\n\nNow O O\nI O O\n'm O O\nasking O O\nmyself O O\nwhich O O\ndata O O\nloading O O\nis O O\nbetter O O\nin O O\nwhich O O\nsituation O O\n. O O\n\nA O O\nconcrete O O\ncomparison O O\nwould O O\nbe O O\nnice O O\n! O O\n\nI O O\nhave O O\nn't O O\nfound O O\nany O O\n. O O\n\nFor O O\nexample O O\n, O O\nI O O\n'm O O\nusing O O\ndefault O O\nlazy Name Name\nloading Name Name\non O O\na O O\nmodule O O\nfor O O\na O O\nclient Name Name\n. O O\n\nThis O O\nmodule O O\ndeals O O\nwith O O\nsales O O\nreps O O\nand O O\nimply O O\nthese O O\nrelated O O\ntables O O\n: O O\n\nReps Name Name\n\nReps_Zones Name Name\n\nReps_Prerequisites Name Name\n\nUsers Name Name\n\nReps_Languages Name Name\n\netc O O\n. O O\n\nOn O O\nthe O O\nmodule O O\n, O O\nI O O\nuse O O\nall O O\nthese O O\ntables O O\nto O O\ndispatch O O\nappointments O O\n( O O\nabout O O\n150 O O\nappointments O O\nto O O\n50 O O\nreps O O\nat O O\na O O\ntime O O\n) O O\n, O O\nbut O O\nit O O\n's O O\nslow O O\n. O O\n\nWould O O\nusing O O\na O O\ndifferent O O\nloading O O\nstrategy O O\nreally O O\nimprove O O\nthe O O\nperformances O O\n? O O\n\nLazy-loading Name Name\nseems O O\nmost O O\nsuitable O O\nfor O O\nsmaller O O\napps O O\nwithout O O\nseparate O O\ndata O O\nlayers O O\n. O O\n\nOnce O O\nthe O O\napp O O\ngrows O O\nand O O\nyou O O\nstart O O\nseparating O O\nit O O\ninto O O\nseparate O O\nlayers O O\n, O O\nlazy Name Name\nloading Name Name\nbecomes O O\nless O O\nuseful O O\n. O O\n\nThe O O\nDBcontext Name Name\nhas O O\nlong O O\nsince O O\nbeen O O\ndestroyed O O\nby O O\nthe O O\ntime O O\nthe O O\ndata O O\ngets O O\nto O O\nthe O O\nUI O O\nlayer O O\n, O O\nand O O\nwhile O O\nyou O O\nare O O\nwithin O O\nthe O O\ndatalayer O O\nit O O\nis O O\nnot O O\na O O\nbig O O\ndeal O O\nto O O\nspecify O O\nthe O O\nproperites O O\nto O O\nload O O\n. O O\n\nLazy Name Name\nloading Name Name\nis O O\nturned O O\noff O O\nfor O O\nvalidation O O\n, O O\nso O O\nif O O\na O O\nproperty O O\nis O O\nmarked O O\nas O O\nrequired O O\nand O O\nyou O O\nhave O O\nonly O O\nloaded O O\nthe O O\nparent O O\nan O O\nerror O O\nwill O O\nalways O O\nbe O O\nthrown O O\nwhich O O\nis O O\nvery O O\nfrustrating O O\n. O O\n\nLazy Name Name\nloading Name Name\nalso O O\nmakes O O\ndebugging O O\nrather O O\ntricky O O\nas O O\nthe O O\nquery O O\nisnt O O\nexecuted O O\nuntil O O\nit O O\nis O O\nused O O\nso O O\nyou O O\nca O O\nn't O O\nexamine O O\nthe O O\nresults O O\nof O O\nthe O O\nquery O O\nas O O\neasily O O\n. O O\n\nI O O\nusually O O\nadd O O\na O O\nToList() Name Name\nor O O\nsimilar O O\nto O O\nmy O O\nEF O O\nqueries O O\nso O O\nI O O\ncan O O\neasily O O\nexamine O O\nthe O O\nresults O O\n. O O\n\nIt O O\nseems O O\nlike O O\nthere O O\n's O O\na O O\nbug O O\nwith O O\nthe O O\nfacebook Name Name\npage O O\ntabs Name Name\n. O O\n\nLots O O\nof O O\nthem O O\nare O O\nrendering O O\ncontent O O\non O O\nthe O O\nbottom O O\nof O O\nthe O O\npage Name Name\n. O O\n\nIs O O\nthere O O\na O O\nchange O O\nthat O O\ndevelopers O O\nmust O O\nbe O O\naware O O\nof O O\n? O O\n\nProblem O O\nstill O O\npersists O O\n. O O\n\nThere O O\nis O O\na O O\nbug O O\nlisted O O\non O O\nFacebook Name Name\nhttp://developers.facebook.com/bugs/298512163544012?browse=search_4f3c5c801a70d4639459595 O O\n. O O\n\nI O O\nhope O O\nit O O\ngets O O\nprioritized O O\n. O O\n\nIt O O\nis O O\nin O O\nfact O O\na O O\nbug O O\n. O O\n\nI O O\n've O O\njust O O\nspent O O\nan O O\nhour O O\nlooking O O\ninto O O\nit O O\n. O O\n\nIt O O\nappears O O\nthat O O\nthey O O\nhave O O\nincreased O O\nthe O O\nwidth O O\nof O O\nthe O O\nright O O\npane Name Name\nand O O\nit O O\nhas O O\ncaused O O\nthe O O\ncontent Name Name\narea Name Name\nto O O\nshrink O O\nto O O\nless O O\nthan O O\n520px Name Name\n. O O\n\nUnfortunately O O\n, O O\nthe O O\niframe Name Name\nthat O O\nFacebook Name Name\nuses O O\nto O O\ndisplay O O\napp O O\ncontent O O\nis O O\nhardcoded O O\nwith O O\na O O\n520px Name Name\nwidth O O\nand O O\nyou O O\nare O O\nunable O O\nto O O\nmodify O O\nit O O\n. O O\n\nNeed O O\nto O O\nwait O O\ntill O O\nFacebook Name Name\npushes O O\nout O O\nan O O\nupdate O O\n. O O\n\nEdit O O\n: O O\nBug O O\nreported O O\nto O O\nfacebook Name Name\nalready O O\n. O O\n\nDetails O O\nhere O O\n\nI O O\nsee O O\nit O O\nis O O\nused O O\nin O O\nseparate O O\nwindow Name Name\nby O O\nblue Name Name\ngriffon Name Name\n, O O\nbut O O\nis O O\nit O O\npossible O O\nto O O\nmake O O\nit O O\nedit O O\nthe O O\nsvg Name Name\nin O O\nplace O O\n? O O\n\nIn O O\ntheory O O\nyou O O\ncould O O\nopen O O\nsvg-edit.html Name Name\nand O O\nremove O O\nany O O\nhtml Name Name\n, O O\nhead Name Name\n, O O\nand O O\nbody Name Name\ntags O O\nand O O\nmove O O\nthe O O\ncontent O O\nof O O\nthe O O\npage O O\nto O O\nyour O O\npage O O\nand O O\nthen O O\nload O O\njs/css Name Name\nresources O O\non O O\nyour O O\npage O O\n. O O\n\nIs O O\nthere O O\na O O\nspecific O O\nneed O O\nto O O\nplace O O\nit O O\ninline O O\nthough O O\n? O O\n\nYou O O\ncan O O\nstill O O\ninteract O O\nwith O O\nSVG-Edit Name Name\neven O O\nwhile O O\nit O O\n's O O\nin O O\nan O O\niframe Name Name\nif O O\nyou O O\nneed O O\nto O O\n. O O\n\nFor O O\nexample O O\n, O O\nto O O\nget O O\nthe O O\nSVG Name Name\ncontent O O\nthat O O\nthe O O\nuser O O\nis O O\nediting O O\n, O O\nyou O O\nwould O O\nuse O O\n\nIs O O\nthere O O\nany O O\nway O O\nhow O O\nto O O\nset O O\nto O O\nListBoxItem Name Name\ndifferent O O\nshowing O O\ntext O O\nand O O\ndifferent O O\nhidden O O\nvalue O O\n. O O\n\nI O O\nwant O O\nsame O O\nthing O O\nas O O\nI O O\ncan O O\ndo O O\nin O O\nHTML Name Name\nthat O O\nway O O\n: O O\n\nOf O O\ncourse O O\n, O O\nbut O O\nthat O O\n's O O\nnot O O\nthe O O\nway O O\nyou O O\ndo O O\nthings O O\nwith O O\nXAML Name Name\n. O O\n\nYou O O\ncould O O\nset O O\na O O\nTag Name Name\nproperty O O\non O O\nyour O O\nListBoxItem Name Name\nto O O\nanything O O\n, O O\nbut O O\nthe O O\ncommon O O\napproach O O\nis O O\nto O O\nuse O O\nthe O O\nMVVM O O\npattern O O\nand O O\nbindings O O\nwhere O O\nyou O O\nwould O O\nset O O\nItemsSource Name Name\nof O O\nyour O O\nListBox Name Name\nto O O\na O O\ncollection O O\nof O O\nitems O O\nand O O\neach O O\nof O O\nyour O O\nitems O O\nwould O O\nhave O O\nproperties O O\nto O O\ndisplay O O\nand O O\nother O O\nproperties O O\nto O O\nuse O O\nelsewhere O O\n. O O\n\nYou O O\nwould O O\nbind O O\nthe O O\nvisible O O\nproperties O O\nto O O\nthe O O\nelements O O\nin O O\nthe O O\nItemTemplate Name Name\nof O O\nyour O O\nListBox Name Name\nand O O\nbind O O\nSelectedItem Name Name\nof O O\nthe O O\nListBox Name Name\nwith O O\na O O\nTwoWay Name Name\nbinding O O\nto O O\na O O\nproperty O O\nof O O\nyour O O\nview O O\nmodel O O\n. O O\n\nNow O O\nif O O\nyou O O\ndo O O\nn't O O\ncare O O\nabout O O\npatterns O O\nand O O\nsimply O O\nwant O O\nto O O\nsee O O\nit O O\nworking O O\n- O O\ngo O O\nahead O O\nand O O\nuse O O\nthe O O\nTag Name Name\nand O O\nthe O O\nSelectionChanged Name Name\nevent O O\n. O O\n\nIn O O\nSafari Name Name\nthe O O\ncolors O O\nare O O\nnot O O\nshowing O O\nup O O\ncorrectly O O\n. O O\n\nHowever O O\neverything O O\nis O O\nworking O O\nin O O\nIE Name Name\n, O O\nFF Name Name\nand O O\nChrome Name Name\n. O O\n\nI O O\n'd O O\nlike O O\nto O O\nmake O O\nit O O\nwork O O\ncross-browser Name Name\n. O O\n\nIs O O\nthere O O\nany O O\nway O O\nto O O\naccomplish O O\nthat O O\n? O O\n\nWhy O O\ndoes O O\nn't O O\nSafari Name Name\nshow O O\nthe O O\nright O O\ncolors O O\nfpr O O\nmy O O\ncss Name Name\nbuttons Name Name\nand O O\nbackground Name Name\ncolor O O\nand O O\nhow O O\ncan O O\nthis O O\nbe O O\nsolved O O\nto O O\nmake O O\nit O O\nwork O O\nin O O\nall O O\nmajor O O\nbrowsers Name Name\n? O O\n\nThank O O\nyou O O\nfor O O\nreading O O\nthis O O\nquestion O O\n. O O\n\nEDIT O O\n1 O O\nScreenshots O O\n\nAs O O\nrequested O O\nin O O\nthe O O\ncomments O O\n: O O\nI O O\nadded O O\n2 O O\nscreenshots O O\nto O O\nshow O O\nwhat O O\nis O O\nnot O O\nworking. O O\n. O O\n\nNote O O\n: O O\nThe O O\nblue O O\narrow Name Name\nis O O\nworking O O\nand O O\nis O O\nnot O O\nan O O\nissue O O\n, O O\njust O O\ndid O O\nn't O O\nincude O O\nit O O\nto O O\nthe O O\nSafari Name Name\nscreen O O\ncapture O O\n.. O O\n. O O\n\nThe O O\nbackground Name Name\ncolor O O\nand O O\nthe O O\ncolor O O\nused O O\nby O O\nthe O O\ncss Name Name\nbuttons Name Name\nare O O\nthe O O\nissue. O O\n. O O\n\nThe O O\npicture O O\nbelow O O\nis O O\na O O\nfirefox Name Name\n42 Name Name\nscreen O O\ncapture O O\n, O O\nit O O\nlooks O O\nlike O O\nthis O O\nin O O\nMSIE Name Name\nand O O\nChrome Name Name\nas O O\nwell O O\n. O O\n\nThe O O\npicture O O\nbelow O O\nis O O\na O O\nSafari Name Name\n5.1.7 Name Name\nscreen O O\ncapture O O\n\nFor O O\nolder O O\nversions O O\nof O O\nSafari Name Name\nuse O O\n: O O\n-webkit-linear-gradient(#FFF,#000) Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nuse O O\nvector Name Name\nvariables O O\nas O O\nglobal Name Name\nand O O\nexterning O O\nit O O\nto O O\nuse O O\nit O O\nin O O\nanother O O\nfile O O\n, O O\nHere O O\nis O O\nmy O O\ncode O O\n\nHeader Name Name\nfile O O\n: O O\n\nMy O O\nheader O O\nfile O O\nhas O O\nno O O\ndefinition O O\nof O O\nthe O O\nvector Name Name\nvariables O O\n. O O\n\nMain.cpp Name Name\n\nfunctions.cpp Name Name\n\nHowever O O\nI O O\nam O O\ngetting O O\nthe O O\nfollowing O O\nerror O O\n: O O\n\nI O O\nam O O\nnew O O\nto O O\nC++ Name Name\n, O O\ncould O O\nanyone O O\nplease O O\nhelp O O\nme O O\nout O O\nhere O O\n. O O\n\nchange O O\n\nto O O\n\nbecause O O\nextern Name Name\nstd::vector<Point2f> Name Name\nobj_corners(4) Name Name\n; Name Name\nis O O\na O O\ndefinition O O\nsince O O\nyou O O\nprovide O O\nan O O\ninitializer O O\n. O O\n\nWhat O O\nyou O O\nneed O O\nis O O\na O O\ndeclaration O O\njust O O\nto O O\nlet O O\nthe O O\nprogram O O\nknow O O\nthat O O\nvector Name Name\nexists O O\nsomewhere O O\nelse O O\nin O O\nthis O O\nprogram O O\n. O O\n\nI O O\nhave O O\na O O\ncase O O\nwhere O O\nI O O\nwant O O\nto O O\ncheck O O\nif O O\nan O O\noptional Name Name\nI O O\nhave O O\nis O O\nEqual O O\nto O O\na O O\nstring Name Name\n. O O\n\nFirst O O\nI O O\nhave O O\nto O O\nunwrap O O\nit O O\nto O O\ncheck O O\nif O O\nit O O\nexists O O\n, O O\nthen O O\nI O O\nwant O O\nto O O\ncheck O O\nif O O\nit O O\nis O O\nequal O O\nto O O\nanother O O\nstring Name Name\n. O O\n\nHowever O O\nthat O O\ngives O O\nme O O\na O O\nproblem O O\nwhere O O\nI O O\nhave O O\nto O O\nwrite O O\nthe O O\nsame O O\ncode O O\ntwice O O\n. O O\n\nI O O\n'll O O\ngive O O\nyou O O\nan O O\nexample O O\n: O O\n\nAs O O\nyou O O\ncan O O\nsee O O\n, O O\nI O O\nhave O O\nto O O\nwrite O O\nthe O O\nelse O O\nstatement O O\ntwice O O\n. O O\n\nOnce O O\n, O O\nif O O\nthe O O\nname Name Name\nexists O O\nand O O\nit O O\nis O O\nnot O O\n' O O\nJohn Name Name\n' O O\n, O O\nand O O\nanother O O\ntime O O\nfor O O\nwhen O O\nthe O O\nname Name Name\ndoes O O\nnot O O\nexist O O\n. O O\n\nMy O O\nquestion O O\nis O O\n, O O\nhow O O\ncan O O\nthis O O\nbe O O\ndone O O\nthe O O\nproper O O\nway O O\n. O O\n\nThanks O O\nfor O O\nyour O O\nhelp O O\n! O O\n\nOptional Name Name\nhas O O\nan O O\n== Name Name\noperator O O\ndefined O O\nfor O O\nit O O\nin O O\nthe O O\nSwift Name Name\nstandard O O\nlibrary O O\n: O O\n\nThat O O\nmeans O O\nif O O\nthe O O\noptional Name Name\ncontains O O\na O O\nvalue O O\nthat O O\n's O O\nequatable O O\n, O O\nyou O O\ncan O O\ncompare O O\ntwo O O\noptionals Name Name\n. O O\n\nIf O O\nthe O O\ntwo O O\noptionals Name Name\nare O O\nboth O O\nnil O O\nthey O O\n're O O\nequal O O\n, O O\nand O O\nif O O\nthe O O\ntwo O O\noptionals Name Name\nwrap O O\nvalues O O\nthat O O\nare O O\nequal O O\n, O O\nthen O O\nthey O O\n're O O\nequal O O\n. O O\n\nSo O O\nif O O\nyou O O\ndo O O\nn't O O\ncare O O\nabout O O\nwhether O O\nperson.name Name Name\nis O O\nnil Name Name\nor O O\nnot O O\n, O O\njust O O\nwhether O O\nit O O\ncontains O O\na O O\nvalue O O\nof O O\n\" Name Name\nJohn Name Name\n\" Name Name\n, O O\nyou O O\ncan O O\njust O O\nwrite O O\nif Name Name\nperson.name Name Name\n== Name Name\n\" Name Name\nJohn Name Name\n\" Name Name\n. O O\n\nHow O O\ndoes O O\nthat O O\nwork O O\n, O O\nwhen O O\n\" Name Name\nJohn Name Name\n\" Name Name\nis O O\na O O\nString Name Name\nnot O O\na O O\nString Name Name\n? O O\n? O O\n\n* O O\nBecause O O\nSwift Name Name\nwill O O\nimplicitly O O\nconvert O O\nany O O\ntype O O\nto O O\nan O O\noptional Name Name\nwrapping O O\nthat O O\ntype O O\nif O O\nthat O O\n's O O\nwhat O O\nan O O\nargument O O\nrequires O O\n. O O\n\nSo O O\nbecause O O\nthe O O\n== Name Name\nfunction O O\nfor O O\ncomparing O O\noptionals Name Name\nrequires O O\na O O\nString Name Name\n? Name Name\nargument O O\n, O O\n\" Name Name\nJohn Name Name\n\" Name Name\nwill O O\nbe O O\nimplicitly O O\nconverted O O\nto O O\n{ Name Name\nSome Name Name\n\" Name Name\nJohn Name Name\n\" Name Name\n} Name Name\n, O O\nallowing O O\nthe O O\n== Name Name\noperator O O\nbetween O O\ntwo O O\noptionals Name Name\nto O O\nbe O O\nused O O\n. O O\n\n* O O\nwell O O\nactually O O\n\" Name Name\nJohn Name Name\n\" Name Name\nis O O\nn't O O\na O O\nString Name Name\neither O O\n, O O\nit O O\n's O O\na O O\nstring Name Name\nliteral O O\nthat O O\nis O O\ngetting O O\nconverted O O\ninto O O\na O O\nString Name Name\n\nSince O O\nyou O O\nare O O\ntesting O O\nfor O O\nthree O O\ndifferent O O\nconditions O O\n, O O\ncorrect O O\nvalue O O\n, O O\nincorrect O O\nvalue O O\n, O O\nor O O\nno O O\nvalue O O\n, O O\nthere O O\nwill O O\nbe O O\nsome O O\namount O O\nof O O\nduplication O O\n. O O\n\nThis O O\ncan O O\nbe O O\nminimized O O\nby O O\nextracting O O\nthe O O\nduplication O O\ninto O O\na O O\nnew O O\nmethod O O\n, O O\nsuch O O\nas O O\n: O O\n\nI O O\nhave O O\nconfigured O O\ndatabase O O\nproperly O O\n. O O\n\nIf O O\nI O O\nwant O O\nto O O\naccess O O\nthe O O\ndata O O\nfrom O O\nthe O O\ntable O O\nhello Name Name\nin O O\nthe O O\ndatabase O O\ncalled O O\ngenes Name Name\n. O O\n\nWhat O O\n's O O\nthe O O\nproper O O\nway O O\nto O O\ndo O O\nit O O\n? O O\n\nI O O\nca O O\nn't O O\ndo O O\nfrom O O\nbooks.models Name Name\nimport Name Name\nhello Name Name\nas O O\nI O O\ndo O O\nn't O O\nhave O O\nhello Name Name\nin O O\nmodels.py Name Name\n. O O\n\nThe O O\ndatabase O O\ngenes Name Name\nand O O\ntable O O\nhello Name Name\nis O O\nnot O O\nthe O O\ndefault O O\nDjango Name Name\ndatabase O O\n. O O\n\nI O O\nhave O O\ntwo O O\ndatabases O O\n. O O\n\nI O O\nhave O O\nalready O O\nsetup O O\nRouter Name Name\n. O O\n\nI O O\nwant O O\nto O O\nnow O O\naccess O O\ndata O O\n. O O\n\nHow O O\ncan O O\nI O O\ndo O O\nthat O O\n? O O\n\nThanks O O\n\nYou O O\nneed O O\nto O O\ndo O O\na O O\nfew O O\nthings. O O\n. O O\n\nsettings.py Name Name\n\nrouters.py Name Name\n\nOne O O\nyou O O\nhave O O\nthis O O\nset O O\nup O O\nthen O O\nyou O O\nneed O O\nto O O\ncreate O O\nthe O O\nmodels.py Name Name\nfile O O\nfor O O\nthe O O\n\nmodels.py Name Name\n\nTo O O\ndo O O\nthis O O\nprogmatically. O O\n. O O\n\nOnce O O\nthis O O\nis O O\ndone O O\n- O O\nyou O O\nshould O O\nbe O O\nable O O\nto O O\nQuery Name Name\nusing O O\nstandard O O\nDjango Name Name\nquerysets Name Name\n\nI O O\nneed O O\nto O O\nask O O\n, O O\nhow O O\nto O O\nset O O\nheight Name Name\non O O\nall O O\nimages Name Name\nwhich O O\nare O O\non O O\nspecific O O\nlist Name Name\nand O O\nclass O O\n. O O\n\nI O O\nhave O O\nHTML Name Name\n: O O\n\nAnd O O\nI O O\ntried O O\nto O O\ndo O O\nit O O\nwith O O\nthis O O\ncode O O\nsample O O\n, O O\nbut O O\nwithout O O\nworking O O\n: O O\n\nheight Name Name\n: O O\n10px Name Name\n! O O\nimportant O O\n; O O\n\n} O O\n\nWhere O O\nis O O\nthe O O\nproblem O O\n? O O\n\nHow O O\nto O O\nchange O O\nCSS Name Name\nto O O\nwork O O\nit O O\nproperly O O\n? O O\n\nI O O\nneed O O\nto O O\nchange O O\nheight Name Name\non O O\nall O O\nimages Name Name\nwith O O\nclass O O\nproduct-category Name Name\n. O O\n\nThank O O\nyou O O\nfor O O\nhelp O O\n, O O\nI O O\nthink O O\n, O O\nit O O\nwill O O\nbe O O\nsmall O O\nimprovement O O\n, O O\nbut O O\nI O O\ndo O O\nnot O O\nknow O O\n, O O\nwhich O O\n. O O\n\nHave O O\na O O\nnice O O\nday O O\n! O O\n\nli.product-category Name Name\nproduct>img Name Name\nselects O O\nall O O\nimages Name Name\nthat O O\nare O O\ndirect O O\nchildren O O\nof O O\nelements O O\n<product> Name Name\ninside O O\nli-s Name Name\nwith O O\n' O O\nproduct-category Name Name\n' O O\nclass O O\n. O O\n\nIt O O\nis O O\nweird O O\n. O O\n\nTry O O\nli.product-category Name Name\nimg Name Name\ninstead O O\n. O O\n\nThe O O\n\" O O\n> O O\n\" O O\nin O O\nCSS Name Name\nselector O O\nmeans O O\nimmediate O O\nchild O O\nand O O\nyou O O\nwant O O\nto O O\nselect O O\ning O O\n, O O\nwhich O O\nhas O O\nan O O\na O O\ntag O O\nbefore O O\n. O O\n\nI O O\nalso O O\nchanged O O\nit O O\nto O O\nheight Name Name\n, O O\naccording O O\nyour O O\nquestion O O\n. O O\n\nIt O O\nshould O O\nbe O O\nlike O O\n: O O\n\nor O O\nif O O\nyou O O\nwant O O\nany O O\n<img> Name Name\n, O O\nthen O O\n: O O\n\nhere O O\nis O O\nmy O O\nfirst O O\nclass O O\nwhich O O\nis O O\na O O\nhomePage Name Name\nframe Name Name\nwhich O O\ncalls O O\nanother O O\nclass O O\ncalled O O\nProgressSample Name Name\nwhich O O\nwrites O O\ndata O O\nto O O\nthe O O\noutput Name Name\nstream Name Name\nand O O\nalso O O\nupdates O O\nthe O O\nprogress O O\nbar O O\nsimultaneously O O\n. O O\n\nthis O O\nis O O\nthe O O\nsecond O O\nclass O O\n.. O O\n. O O\n\nwhen O O\ni O O\ncall O O\nits O O\nmain(......) Name Name\nmethod O O\njust O O\na O O\nframe Name Name\nwith O O\nwhite O O\ncolor O O\non O O\nit O O\nappears O O\nnothing O O\nis O O\nadded O O\non O O\nit O O\nplz O O\nplz O O\nplz O O\nhelp O O\nme O O\nwith O O\nur O O\nsuggestions O O\nas O O\nsoon O O\nas O O\npossible O O\n.. O O\n. O O\n\nIs O O\nit O O\ndifferent O O\nfrom O O\nfoo.bar Name Name\ncalling O O\na O O\nfunction O O\nfrom O O\na O O\nspecific O O\ninstance O O\n? O O\n\nI O O\n've O O\nseen O O\nit O O\naround O O\non O O\ntutorials O O\nbut O O\nit O O\n's O O\nnever O O\nexplained O O\nand O O\nit O O\n's O O\ntoo O O\ngeneral O O\na O O\nterm O O\nto O O\nshow O O\nup O O\non O O\ngoogle Name Name\n. O O\n\nOperator O O\noperator-> Name Name\ncan O O\nonly O O\nbe O O\nused O O\non O O\na O O\npointer Name Name\ntype O O\n( O O\nin O O\nthat O O\ncase O O\nfoo->bar Name Name\nis O O\nequivalent O O\nto O O\n( Name Name\n* Name Name\nptr Name Name\n) Name Name\n.bar Name Name\n) O O\nor O O\na O O\ntype O O\nthat O O\noverloads O O\noperator-> Name Name\n( O O\nin O O\nthat O O\ncase O O\nthe O O\nsemantic O O\ndepends O O\non O O\nthe O O\noverload O O\nitself O O\n) O O\n. O O\n\nAn O O\nexample O O\nwith O O\na O O\npointer Name Name\ntype O O\nmight O O\nbe O O\n: O O\n\nAn O O\nexample O O\nfor O O\nan O O\noverloaded O O\ntype O O\ncould O O\nbe O O\n: O O\n\nfoo->bar Name Name\nis O O\nused O O\nwhen O O\nfoo Name Name\nis O O\npointing O O\nto O O\na O O\ncertain O O\ndata O O\ntype O O\n\nfoo.bar Name Name\nis O O\nused O O\nwhen O O\nfoo Name Name\nis O O\nan O O\nobject O O\nof O O\na O O\nclass O O\n\nI O O\ncreated O O\na O O\nService Name Name\nObject O O\ncalled O O\nTransaction Name Name\nwhich O O\nprocesses O O\nan O O\norder O O\nmade O O\n, O O\nsets O O\nup O O\nthe O O\npayments O O\nand O O\nthen O O\nsets O O\nup O O\na O O\nmodel O O\nassociation O O\n. O O\n\nThe O O\nclass O O\nis O O\ncalled O O\nTransaction Name Name\nwith O O\ntwo O O\nmethods O O\n, O O\ninitialize Name Name\nand O O\npay Name Name\n. O O\n\nI O O\nam O O\ntesting O O\nit O O\nin O O\nspec/services/ Name Name\n( O O\nit O O\nis O O\nin O O\napp/services Name Name\n) O O\n. O O\n\nThe O O\ninitialize Name Name\nmethod O O\ntakes O O\nin O O\nan O O\naccount Name Name\nand O O\nsome O O\nparameters O O\npassed O O\nin O O\nby O O\nthe O O\nuser O O\nto O O\nprocess O O\nthe O O\norder O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\ntest O O\npay Name Name\nwith O O\nrspec Name Name\n. O O\n\nHow O O\ndo O O\nI O O\nactually O O\ndo O O\nsuch O O\na O O\ntest O O\n? O O\n\nThis O O\nfunction O O\nhas O O\na O O\nlot O O\ngoing O O\non O O\n. O O\n\nFor O O\nexample O O\n, O O\nit O O\ncreates O O\nnew O O\nmodels O O\n, O O\nand O O\nthen O O\nsets O O\nup O O\nsome O O\nassociations O O\nbetween O O\nthem O O\n. O O\n\nSo O O\nfar O O\n, O O\nI O O\ncreated O O\na O O\ndouble Name Name\naccount Name Name\nas O O\nfollows O O\n: O O\n\n@account Name Name\n= Name Name\ndouble Name Name\n( Name Name\n\" Name Name\naccount Name Name\n\" Name Name\n, Name Name\n:confirmed Name Name\n=> Name Name\ntrue Name Name\n, Name Name\n:confirmed Name Name\n? Name Name\n=> Name Name\ntrue Name Name\n) Name Name\n\nHowever O O\n, O O\nthere O O\nare O O\nmany O O\nfunctions O O\n( O O\nand O O\nassociations O O\n) O O\nused O O\nin O O\nthe O O\nTransaction Name Name\npay Name Name\nmethod O O\n. O O\n\nSo O O\nfor O O\nexample O O\nwhen O O\nthese O O\nassociations O O\nare O O\ncalled O O\n( O O\nonce O O\nI O O\ncall O O\nTransaction.pay Name Name\nin O O\nthe O O\ntest O O\n) O O\n, O O\nit O O\nreturns O O\nan O O\nerror O O\n: O O\n\nThe O O\nbusiness Name Name\nmodel O O\nis O O\na O O\ndouble Name Name\njust O O\nlike O O\naccount Name Name\n, O O\nand O O\nadded O O\nas O O\nan O O\nattribute O O\nto O O\n@account Name Name\n. O O\n\nHow O O\ncan O O\nI O O\ntest O O\nmy O O\nTransaction.pay Name Name\nwhen O O\nit O O\ncreates O O\nnew O O\nmodels O O\nand O O\nassociations O O\nin O O\nthere O O\n? O O\n\nDo O O\nI O O\nneed O O\nto O O\nmock O O\nall O O\nof O O\nthem O O\nas O O\nshown O O\nabove O O\n? O O\n\nOr O O\nis O O\nthere O O\na O O\nbetter O O\nway O O\nto O O\ndo O O\nit O O\n? O O\n\nI O O\nam O O\nusing O O\nFactoryGirl Name Name\n, O O\nbut O O\nI O O\nam O O\nunable O O\nto O O\nuse O O\nit O O\nas O O\nmy O O\naccount Name Name\nmodel O O\nuses O O\nDevise Name Name\n. O O\n\nDevise Name Name\ntest O O\nhelpers O O\ncannot O O\nbe O O\nused O O\noutside O O\nof O O\ncontrollers O O\n, O O\nand O O\nsince O O\nI O O\n'm O O\ntesting O O\nin O O\nservices O O\n, O O\nit O O\nwo O O\nn't O O\nwork O O\n. O O\n\nIt O O\n's O O\nhard O O\nto O O\nbe O O\nspecific O O\n, O O\nsince O O\nyou O O\n've O O\nnot O O\nprovided O O\nyour O O\nTransaction Name Name\nclass O O\ncode O O\n, O O\nbut O O\nat O O\na O O\nhigh O O\nlevel O O\n, O O\nhere O O\n's O O\nwhat O O\nI O O\n'd O O\nrecommend O O\n: O O\n\nDo O O\nnot O O\nuse O O\nFactoryGirl Name Name\nor O O\nDevise Name Name\nhelpers O O\n- O O\nideally O O\n, O O\nyou O O\n're O O\nwriting O O\na O O\nunit O O\ntest O O\nfor O O\nthis O O\nclass O O\n, O O\nso O O\nyou O O\ndo O O\nn't O O\nwant O O\nany O O\nexternal O O\ndependencies O O\n. O O\n\nStub O O\nout O O\nany O O\nmodel O O\ninstances O O\nyou O O\n're O O\ndealing O O\nwith O O\n- O O\nwhich O O\nis O O\nwhat O O\nyou O O\n've O O\ndone O O\nwith O O\naccount Name Name\n. O O\n\nStub O O\nout O O\nany O O\nexternal O O\nclasses O O\nbeing O O\nused O O\nwithin O O\nthe O O\nservice O O\n( O O\nsuch O O\nas O O\nBusiness Name Name\n) O O\n, O O\nand O O\nif O O\nyou O O\n're O O\ncreating O O\ninstances O O\nof O O\nthose O O\nfrom O O\nthe O O\nclasses O O\n, O O\nthen O O\nthey O O\n're O O\ndoubles Name Name\ntoo O O\n. O O\n\nHere O O\n's O O\na O O\nvague O O\nexample O O\nwith O O\nno O O\nreal O O\nimplementation O O\n: O O\n\nYou O O\n'll O O\nnote O O\nI O O\n've O O\nonly O O\nrequired O O\nthe O O\ntransaction Name Name\nfile O O\n- O O\nthis O O\nhelps O O\nyou O O\nbe O O\naware O O\nof O O\nwhat O O\nother O O\nclasses O O\nit O O\ndepends O O\non O O\n, O O\nbecause O O\nyou O O\n'll O O\n( O O\nideally O O\n) O O\nstub O O\nthe O O\nconstants O O\n, O O\nor O O\nif O O\nnecessary O O\n, O O\nrequire O O\nother O O\nfiles O O\n. O O\n\nIt O O\n'll O O\nkeep O O\nthis O O\nspec O O\n's O O\nrunning O O\ntime O O\nmuch O O\nbetter O O\ntoo O O\n. O O\n\nAlso O O\n, O O\nI O O\nonly O O\nstubbed O O\nconfirmed Name Name\n? Name Name\n, O O\nnot O O\nconfirmed Name Name\non O O\nthe O O\naccount Name Name\ndouble Name Name\n. O O\n\nFrom O O\na O O\nRails Name Name\nperspective O O\nthey O O\nmean O O\nthe O O\nsame O O\nthing O O\n, O O\nbut O O\nit O O\n's O O\nbetter O O\nto O O\nuse O O\none O O\nof O O\nthem O O\nconsistently O O\n, O O\ninstead O O\nof O O\nboth O O\n. O O\n\nIf O O\nyou O O\nhave O O\na O O\nton O O\nof O O\nsetup O O\n( O O\na O O\nlot O O\nof O O\nconstants O O\nand O O\ntest O O\ndoubles Name Name\n) O O\n, O O\nthen O O\nI O O\n'd O O\ntake O O\nthat O O\nas O O\na O O\nsign O O\nthat O O\nthis O O\nTransaction Name Name\nclass O O\nprobably O O\nneeds O O\nto O O\nbe O O\nbroken O O\nup O O\ninto O O\nseveral O O\nmore O O\nspecific O O\nclasses O O\n. O O\n\nMy O O\nsql Name Name\nschema O O\nis O O\nlike O O\nthis O O\n: O O\nsqlfiddle Name Name\n\nI O O\nwant O O\nto O O\nShow O O\nthe O O\nTransactionID Name Name\n, O O\nDoctorID Name Name\n, O O\nPatientID Name Name\n, O O\nand O O\nTotalMedicine Name Name\n( O O\nobtained O O\nfrom O O\namount O O\nof O O\nMedicineID Name Name\non O O\neach O O\ntransaction O O\n) O O\nwhere O O\nthe O O\nlast O O\n3 O O\ndigits O O\nnumbers O O\nof O O\nPatientID Name Name\nare O O\nmultiples O O\nof O O\n4 O O\n. O O\n\nSort O O\nthe O O\ndata O O\nin O O\nascending O O\nby O O\nDoctorID Name Name\n, O O\nthen O O\ncount O O\nthe O O\nTotalMedicine Name Name\nthe O O\nlargest O O\n, O O\nsmallest O O\nand O O\naverage O O\non O O\nthe O O\nDoctor Name Name\nID Name Name\n. O O\n\nI O O\nhave O O\ntried O O\nthis O O\n\nbut O O\nit O O\ndidnot O O\nselect O O\nthe O O\nlast O O\n3 O O\ndigit O O\nof O O\nthe O O\nPatientID Name Name\nthat O O\nare O O\nmultiplies O O\nof O O\n4. O O\n. O O\n\nAdd O O\nWhere Name Name\nCast(Substring(PatientId Name Name\n, Name Name\nLen(PatientId Name Name\n) Name Name\n- Name Name\n2 Name Name\n, Name Name\n3 Name Name\n) Name Name\nas Name Name\nInteger Name Name\n) Name Name\n% Name Name\n4 Name Name\n= Name Name\n0 Name Name\n\nAssuming O O\nthat O O\nyou O O\nca O O\nn't O O\nchange O O\nyour O O\nschema O O\nto O O\ngive O O\ntableHeader O O\na O O\nvarchar Name Name\ndata O O\ntype O O\n, O O\nor O O\na O O\nchar(5) Name Name\n, O O\nyou O O\nneed O O\nto O O\naccount O O\nfor O O\nthe O O\nspaces O O\non O O\nthe O O\nend O O\nof O O\nthe O O\ncolumn Name Name\n. O O\n\nRTRIM Name Name\nwill O O\nwhat O O\nyou O O\nwant O O\n. O O\n\nIn O O\nmy O O\napp O O\nI O O\nwant O O\nto O O\nuse O O\n$ Name Name\nthis->forward404 Name Name\n( Name Name\n\" Name Name\nData Name Name\nnot Name Name\nfound Name Name\n\" Name Name\n) Name Name\n; Name Name\nto O O\noutput O O\nindividual O O\nerror O O\nmessages O O\nwhen O O\nnecessary O O\n. O O\n\nIn O O\nthe O O\ndev O O\nmode O O\nit O O\nworks O O\nfine O O\n. O O\n\nWhen O O\nI O O\nrun O O\nmy O O\napp O O\nin O O\nproduction O O\nmode O O\n- O O\nwhere O O\ndebug O O\nis O O\nset O O\nto O O\nfalse Name Name\nin O O\ngetApplicationConfiguration() Name Name\n- O O\nI O O\ndo O O\nn't O O\nget O O\nthe O O\nmessages O O\nanymore O O\n. O O\n\nin O O\nsettings.yml Name Name\nI O O\nset O O\na O O\ncustom O O\n404 O O\naction O O\n. O O\n\nall O O\n: O O\n.actions O O\n: O O\nerror_404_module Name Name\n: O O\nmain Name Name\nerror_404_action Name Name\n: O O\ncustom404 Name Name\n\nHow O O\ncan O O\nI O O\npass O O\nthe O O\nforward404 Name Name\nto O O\nmy O O\ncustom404Success.php Name Name\ntemplate O O\n?? O O\n? O O\n\nThe O O\n404 O O\nhandling O O\nis O O\ncompletely O O\ndifferent O O\nbetween O O\nprod Name Name\nand O O\ndev Name Name\n. O O\n\nIn O O\nprod Name Name\n, O O\nthe O O\nmessage O O\nyou O O\npass O O\nto O O\nthe O O\nforward404 Name Name\nis O O\nsimply O O\nwritten O O\nto O O\nthe O O\nlog O O\nand O O\nnot O O\npassed O O\nto O O\nthe O O\nhandler O O\naction O O\n. O O\n\nThere O O\nare O O\nmany O O\nways O O\nto O O\nget O O\nround O O\nthis O O\n, O O\nbut O O\nthe O O\nquickest O O\n( O O\nalbeit O O\ndirtiest O O\n) O O\nwould O O\nbe O O\nto O O\nstore O O\nthe O O\nmessage O O\nin O O\na O O\nstatic Name Name\nvariable O O\nsomewhere O O\nso O O\nthe O O\n404 O O\nhandler O O\ncan O O\naccess O O\nit O O\nonce O O\nthe O O\nprocess O O\ngets O O\nthere O O\n, O O\ne.g O O\n. O O\n\nIn O O\nyour O O\naction O O\n, O O\n\nAnd O O\nin O O\nyour O O\n404 O O\nhandler O O\n( O O\nassuming O O\nit O O\n's O O\nin O O\nCommonActions Name Name\n) O O\n, O O\n\nIf O O\nyou O O\nare O O\nable O O\nto O O\nget O O\ncode O O\nof O O\nmethod O O\nyou O O\ncan O O\nsee O O\nthat O O\nmethod O O\nthrows O O\nan O O\nsfError404Exception O O\n, O O\nthat O O\nhandles O O\nrespect O O\nof O O\nenviroment O O\n. O O\n\nIn O O\ndev Name Name\nit O O\nsimple O O\nthrows O O\nan O O\nexception O O\nand O O\nin O O\nprod Name Name\nit O O\nmight O O\nbe O O\nhandle O O\nvia O O\nset_exception_handler(\"my_handle\") Name Name\n. O O\n\nYou O O\ncan O O\noverride O O\nthis O O\nit O O\n's O O\npublic O O\n) O O\n\nPardon O O\nmy O O\nstupidity O O\n, O O\nanyone O O\nknows O O\ndifference O O\nbetween O O\nthem O O\n? O O\n\nWill O O\ncatch O O\nand O O\nrethrow O O\nonly O O\nexceptions Name Name\nderived O O\nfrom O O\nException Name Name\n. O O\n\nWill O O\ncatch O O\nand O O\nrethrow O O\nany O O\nexception Name Name\n. O O\n\n( O O\nEdit O O\n: O O\nSince O O\nCLRv2 Name Name\n, O O\nall O O\nexceptions Name Name\nare O O\nderived O O\nfrom O O\nException Name Name\nso O O\nthis O O\nis O O\nidentical O O\nto O O\n1 O O\n. O O\n\nSee O O\nEric O O\nLippert O O\n's O O\ncomment O O\nbelow O O\n) O O\n. O O\n\nWill O O\ncatch O O\nany O O\nexception Name Name\nderived O O\nfrom O O\nException Name Name\nand O O\nthrow O O\nit O O\nagain O O\n, O O\nthus O O\nresetting O O\nthe O O\nstack O O\ntrace O O\nof O O\nthe O O\nexception Name Name\n. O O\n\nThere O O\nis O O\nno O O\ndifference O O\nbetween O O\nexample O O\n1 O O\nand O O\n2 O O\n. O O\n\nBoth O O\nrethrows O O\nthe O O\noriginal O O\nexception Name Name\n, O O\nand O O\nboth O O\ncatches O O\nthe O O\ngeneral O O\nException Name Name\n. O O\n\nYou O O\nwould O O\nuse O O\nexample O O\n1 O O\nif O O\nyou O O\nwanted O O\nto O O\ncatch O O\na O O\nmore O O\nspecific O O\nexception Name Name\n, O O\nsuch O O\nas O O\nDivisionByZeroException Name Name\n. O O\n\nFor O O\nthe O O\nlast O O\nexample O O\n, O O\nyou O O\nare O O\nnot O O\nre-throwing O O\nthe O O\nexception Name Name\n; O O\nbut O O\nthrowing O O\nthe O O\nsame O O\nexception Name Name\nobject O O\nthat O O\nyou O O\ncaught O O\n. O O\n\nThis O O\ncauses O O\nthe O O\nexception Name Name\nstacktrace O O\nto O O\nbe O O\nre-set O O\nto O O\nthe O O\nlocation O O\nwhere O O\nyou O O\nthrow O O\nit O O\n- O O\nwhich O O\nmight O O\nbe O O\na O O\nproblem O O\nbecause O O\nthe O O\nstacktrace O O\nthen O O\ndoes O O\nnot O O\npoint O O\nto O O\nthe O O\nlocation O O\nin O O\ncode O O\n, O O\nwhere O O\nthe O O\nerror O O\nactually O O\noccured O O\n. O O\n\nI O O\nam O O\nnew O O\nto O O\nDurable Name Name\nfunction Name Name\n( O O\nOrchestration O O\nfunction O O\n) O O\nand O O\nseen O O\nsample O O\napplication O O\nas O O\nper O O\nMicrosoft Name Name\ndocumentation.So O O\nI O O\nhave O O\nfew O O\ndoubts O O\n. O O\n\nexample O O\n: O O\n\nto O O\ninvoke O O\nit O O\nI O O\nmade O O\nHTTP Name Name\nPOST Name Name\nrequest O O\nusing O O\npostman Name Name\nso O O\nrequest O O\nprocessed O O\nsuccessfully O O\nbut O O\nwhen O O\nI O O\nconfigured O O\ndifferent O O\nverb O O\nlike O O\nHTTP Name Name\nGET Name Name\nit O O\nwas O O\nresponded O O\nwith O O\nNotFound O O\n\" O O\nerror O O\nin O O\nconsole O O\nas O O\nwell O O\nas O O\nrequest O O\nmade O O\nto O O\nit O O\nwith O O\nhttp O O\nrequest O O\nfrom O O\nbrowser O O\nresponded O O\nwith O O\n\" O O\nNotFound O O\n\" O O\nerror O O\nin O O\nconsole Name Name\n.Why O O\nthis O O\nhappened O O\n? O O\n\nCan O O\nI O O\ninvoke O O\nany O O\nOrchestration O O\nfunction O O\nwith O O\nin O O\ntimer O O\ntrigger O O\nazure Name Name\nfunction Name Name\n? O O\n\nIf O O\nnot O O\nwhy O O\n? O O\n\nUPDATE O O\n: O O\n\nSome O O\nadditional O O\ndetails O O\nabout O O\nquestion O O\n\ncan O O\nI O O\nmake O O\nrequest O O\nto O O\nhttp O O\ntrigger O O\nby O O\ntimer O O\ntriggred O O\nwhy O O\nbecause O O\nmy O O\ndurable O O\nfunction O O\nhas O O\nlong O O\nrunning O O\nprocess O O\nso O O\nif O O\ninvoke O O\norchestration O O\nfunction O O\nin O O\ntimer O O\ntrigger O O\nitself O O\nso O O\nthere O O\nmight O O\nbe O O\npossibility O O\nof O O\ntimer O O\ntriggered O O\ntimeout O O\nso O O\nthat O O\nwhy O O\nI O O\nam O O\ntrying O O\nto O O\nfollow O O\nthis O O\napproach.Is O O\nit O O\npossible O O\nto O O\ninvoke O O\nby O O\nabove O O\ncode O O\n? O O\n\nThis O O\nis O O\ngeneral O O\nAzure Name Name\nFunctions Name Name\nbehavior O O\n. O O\n\nThe O O\nreason O O\nGET Name Name\ndoes O O\nn't O O\nwork O O\nis O O\nbecause O O\nthe O O\nfunction O O\nin O O\nthe O O\nsample O O\nis O O\nonly O O\nconfigured O O\nto O O\nwork O O\nwith O O\nPOST Name Name\n. O O\n\nSee O O\nthe O O\n[ Name Name\nHttpTrigger Name Name\n] Name Name\nattribute O O\nin O O\nthe O O\nfunction O O\nsignature O O\n: O O\n\nIf O O\nyou O O\nwant O O\nto O O\nsupport O O\nGET Name Name\n, O O\nthen O O\nchange O O\nthe O O\nmethods Name Name\nparameter O O\naccordingly O O\n: O O\n\nNote O O\nthat O O\nVisual Name Name\nStudio Name Name\nseems O O\nto O O\nhave O O\na O O\ncaching O O\nbug O O\nwhere O O\nmaking O O\nchanges O O\nto O O\nroute O O\ninformation O O\nis O O\nnot O O\nproperly O O\nsaved O O\nwhen O O\ndebugging O O\nlocally O O\n. O O\n\nI O O\nopened O O\na O O\nGitHub Name Name\nissue O O\nto O O\ntrack O O\nthat O O\nhere O O\n: O O\nhttps://github.com/Azure/Azure-Functions/issues/552 O O\n\nFor O O\nmore O O\ninformation O O\non O O\nHTTP O O\ntriggers O O\n, O O\nsee O O\nthis O O\ndocumentation O O\n: O O\nhttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook O O\n\nIf O O\nyou O O\nwant O O\nto O O\ntrigger O O\na O O\nDurable Name Name\nFunction Name Name\nusing O O\na O O\ntimer O O\ntrigger O O\n, O O\nthen O O\njust O O\nchange O O\nthe O O\ntrigger O O\ntype O O\n. O O\n\nFor O O\nexample O O\n: O O\n\nFor O O\nmore O O\ninformation O O\non O O\nTimer O O\ntriggers O O\n, O O\nsee O O\nthis O O\ndocumentation O O\n: O O\nhttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer O O\n\nBecause O O\nyou O O\nspecified O O\nyour O O\nfunction O O\nto O O\nbe O O\ntriggered O O\non O O\nPOST Name Name\nonly O O\n: O O\n\nTo O O\nenable O O\nGET Name Name\n, O O\nadd O O\nget Name Name\nto O O\nmethods Name Name\nparameter O O\n. O O\n\nYou O O\ncan O O\ndefine O O\ntimer-triggered O O\nfunction O O\nwith O O\nOrchestrationClient Name Name\ninput O O\nbinding O O\nsimilar O O\nto O O\nyour O O\nHTTP O O\nfunction O O\n. O O\n\nSample O O\ndeclaration O O\n: O O\n\nI O O\n'm O O\nrelatively O O\nnew O O\nto O O\ngit Name Name\n, O O\nhaving O O\nused O O\nSubversion Name Name\nprimarily O O\nin O O\nthe O O\npast O O\n. O O\n\nI O O\nrecently O O\ncloned O O\na O O\nSubversion Name Name\nrepository O O\n, O O\nmade O O\nchanges O O\n, O O\nthen O O\nset O O\nup O O\na O O\nremote O O\nbare O O\ngit Name Name\nrepository O O\nthat O O\nfellow O O\ndevelopers O O\nwill O O\nuse O O\nas O O\nwe O O\nmove O O\ntowards O O\ngit Name Name\n. O O\n\nI O O\nhave O O\nn't O O\npushed O O\nchanges O O\nto O O\nthe O O\nSVN Name Name\nrepository O O\nyet O O\n( O O\nat O O\nleast O O\nI O O\nhave O O\nn't O O\nintentionally O O\ndone O O\nthis O O\n! O O\n) O O\n. O O\n\nI O O\ntried O O\nto O O\npull O O\nin O O\nnew O O\nchanges O O\nfrom O O\nSubversion Name Name\nwith O O\ngit Name Name\nsvn Name Name\nrebase Name Name\n, O O\nand O O\nthat O O\n's O O\nabout O O\nwhere O O\nthe O O\ntrouble O O\nbegan O O\n. O O\n\nI O O\nthink O O\nthe O O\nbest O O\nillustration O O\nof O O\nmy O O\nproblem O O\nis O O\noutput O O\nfrom O O\ngitk Name Name\n: O O\n\nAny O O\nideas O O\non O O\nhow O O\nto O O\ndelete O O\nthis O O\nduplicate O O\nhistory O O\n? O O\n\nIt O O\n's O O\nlooking O O\nlike O O\nthis O O\nhelped O O\n( O O\nfrom O O\nhelpful O O\npeople O O\nat O O\n#git Name Name\n) O O\n: O O\n\nWhat O O\nis O O\nthis O O\ndoing O O\n? O O\n\nYou O O\ncould O O\ntry O O\n\nin O O\nmaster O O\nreset O O\nto O O\nlatest O O\ncommit O O\nbefore O O\nmerge O O\n\nswitch O O\nto O O\nbranch O O\n\nrebase O O\nbranch O O\non O O\nmaster O O\n\nswitch O O\nto O O\nmaster O O\n\nmerge O O\nbranch O O\n\nI O O\nhave O O\nthe O O\ntable Name Name\nin O O\nthe O O\nfollowing O O\nformat O O\n\nI O O\nwould O O\nlike O O\nto O O\ngroup O O\ndifferent O O\ncolumn Name Name\nin O O\na O O\nbit O O\ndifferent O O\non O O\nthe O O\nbasis O O\nof O O\nreporting_date Name Name\nso O O\nthat O O\nmy O O\nout O O\nput O O\nlooks O O\nlike O O\nthis O O\n\ni.e O O\nthe O O\ninterest_payment Name Name\nshould O O\ngrouped O O\nby O O\nreporting O O\ndate O O\nbut O O\nwhile O O\ngrouping O O\nthe O O\nbalance O O\ni O O\nwant O O\nto O O\ngroup O O\nby O O\nfirst O O\nrow Name Name\nof O O\nthat O O\nreporting O O\ndate O O\nonly O O\n\nso O O\nfor O O\n200401 Name Name\nthe O O\ninterest Name Name\npayment Name Name\nwill O O\nbe O O\n15 Name Name\nbut O O\nfor O O\nbalance Name Name\nwill O O\nbe O O\nonly O O\n10 Name Name\n\nThis O O\nis O O\nthe O O\nquery O O\ni O O\nwas O O\nplanning O O\nto O O\nuse O O\nbut O O\nobviously O O\nit O O\nwill O O\nnot O O\nwork O O\nfor O O\nbalance Name Name\ncolumn Name Name\n.Is O O\nthere O O\na O O\nway O O\nto O O\nhandle O O\nthis O O\nin O O\nsql Name Name\nserver O O\nso O O\nthat O O\nin O O\na O O\nsingle O O\nquery O O\ni O O\ncan O O\ngroup O O\nby O O\nparticular O O\nset Name Name\nbut O O\nfor O O\nthe O O\nother O O\ni O O\ncan O O\ngroup O O\nby O O\ndifferent O O\nset Name Name\n. O O\n\nThanks O O\n. O O\n\nYou O O\ncan O O\nuse O O\nthe O O\nfollowing O O\nquery O O\n: O O\n\nI O O\nmake O O\nthe O O\nassumption O O\nthat O O\nid Name Name\nfield O O\ndefines O O\nprecedence O O\nfor O O\nbalance Name Name\n, O O\ni.e O O\n. O O\nthe O O\nbalance Name Name\nwith O O\nthe O O\nlowest O O\nrelated O O\nid Name Name\nvalue O O\ncomes O O\nfirst O O\n. O O\n\nI O O\n'm O O\nlooking O O\nfor O O\na O O\nsimple O O\nsyntax O O\nto O O\nallow O O\nme O O\nto O O\ncreate O O\na O O\nnew O O\nobject O O\nwith O O\none O O\nproperty O O\nand O O\nset O O\nthe O O\nvalue O O\nof O O\nthat O O\nproperty O O\n. O O\n\nHere O O\n's O O\nan O O\nexample O O\n. O O\n\nI O O\n'd O O\nlove O O\nto O O\nbe O O\nable O O\nto O O\ndo O O\nsomething O O\nall O O\non O O\none O O\nline O O\n. O O\n\nShould O O\nlog O O\n: O O\n\nI O O\nthought O O\nI O O\nsaw O O\nonce O O\nthat O O\nthis O O\nwas O O\ngoing O O\nto O O\nbe O O\npossible O O\nin O O\nthe O O\nes-spec O O\nbut O O\nit O O\ndoes O O\nn't O O\nwork O O\nwith O O\nthe O O\nbabel-2015 Name Name\npreset O O\n. O O\n\nYou O O\nwill O O\nneed O O\nto O O\nuse O O\ncomputed O O\nproperty O O\nnames O O\n. O O\n\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names O O\n\n( O O\nThis O O\nworks O O\nwith O O\nes2015 Name Name\nBabel Name Name\npreset O O\n) O O\n\nthis O O\nworks O O\nfor O O\nme O O\n: O O\n\n* O O\nnote O O\n: O O\nI O O\nhave O O\nthe O O\nresult O O\nconsoling O O\nto O O\nthe O O\nconsole Name Name\n. O O\n\nOpen O O\nconsole Name Name\nto O O\nsee O O\nthe O O\nresults O O\n. O O\n\n<script Name Name\nsrc=\"https://cdnjs.cloudflare.com/ajax/libs/babel-core/6.1.19/browser.min.js\"></script> Name Name\n\n0Aconst%20A%20%3D%20%7B%5BL%5D%3A%20responses%7D%0Aconsole.log(A)%0A O O\n\nnoted O O\n: O O\nother O O\nperson O O\ngot O O\nin O O\nbefore O O\nme O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nbuild O O\nappinventor Name Name\nlocally O O\non O O\nwindows Name Name\n7 Name Name\nusing O O\nthe O O\nfollowing O O\ndocument O O\n: O O\nhttps://docs.google.com/document/d/1Xc9yt02x3BRoq5m1PJHBr81OOv69rEBy8LVG_84j9jc/pub#h.5p32kqx16c2d O O\n\nI O O\n've O O\ndownloaded O O\nall O O\nthe O O\nsoftware O O\nlisted O O\nin O O\nsection O O\n3 O O\nand O O\nproceeded O O\nbuilding O O\nthe O O\napp O O\ninventor O O\nby O O\ncloning O O\na O O\ngit Name Name\nrepository O O\nby O O\nrunning O O\nthe O O\nfollowing O O\ngit Name Name\ncommand O O\nfrom O O\na O O\nshell Name Name\n: O O\ngit Name Name\nclone Name Name\nhttps://github.com/mit-cml/appinventor-sources.git O O\n\nI O O\nkeep O O\ngetting O O\nthe O O\nfollowing O O\nerror O O\n: O O\nfailed O O\nto O O\nconnect O O\nto O O\ngithub O O\n443 O O\nerror O O\n\nI O O\n've O O\ntired O O\ndoing O O\na O O\nGoogle Name Name\nsearch O O\nand O O\nfound O O\nthis O O\n: O O\nGitHub Name Name\n- O O\nfailed O O\nto O O\nconnect O O\nto O O\ngithub Name Name\n443 O O\nwindows/ Name Name\nFailed O O\nto O O\nconnect O O\nto O O\ngitHub Name Name\n- O O\nNo O O\nError O O\n\nI O O\n'm O O\nnot O O\nat O O\nall O O\nexperienced O O\nin O O\nthis O O\nfield O O\nso O O\nI O O\ndo O O\nnot O O\nunderstand O O\nany O O\nof O O\nthe O O\nsolutions O O\nmentioned O O\n, O O\ncould O O\nyou O O\nplease O O\ntry O O\nand O O\nhelp O O\nme O O\nout O O\nby O O\ngoing O O\nthrough O O\nthe O O\nbest O O\nsolution O O\nstep O O\nby O O\nstep O O\n? O O\n\nI O O\n'm O O\nworking O O\nin O O\na O O\ncompany O O\nso O O\nI O O\nca O O\nn't O O\nget O O\nthe O O\nproxy O O\nlike O O\nthey O O\nmentioned O O\nor O O\nthe O O\nfirewall O O\nmight O O\nbe O O\nblocking O O\nit O O\n. O O\n\nThank O O\nyou O O\nin O O\nadvance O O\n! O O\n\nIf O O\nyou O O\nare O O\nbehind O O\nthe O O\ncorporate O O\nfirewall O O\nand O O\nif O O\nall O O\nyour O O\nrequests O O\ngoes O O\nthrough O O\nthe O O\nproxy O O\nserver O O\nthen O O\nyou O O\nmust O O\nset O O\nthe O O\nGit Name Name\nproxy O O\nfirst O O\nbefore O O\nrunning O O\nany O O\nget O O\ncommands O O\nlike O O\npull Name Name\n, O O\nfetch Name Name\nand O O\npush Name Name\ncommands O O\n. O O\n\nTo O O\nset O O\nthe O O\nGit Name Name\nproxy O O\nfor O O\nHTTP O O\nand O O\nHTTPS O O\nuse O O\nthe O O\nfollowing O O\nGit Name Name\ncommands O O\nin O O\nthe O O\ngit Name Name\nbash Name Name\nshell Name Name\n\nCheck O O\nHow O O\nto O O\nconfigure O O\nGit Name Name\nproxy O O\nand O O\nHow O O\nto O O\nunset O O\nthe O O\nGit Name Name\nProxy O O\nfor O O\nmore O O\ndetails O O\n\nIf O O\nsay O O\ni O O\nam O O\nhaving O O\na O O\ntextbox Name Name\ninput O O\nand O O\na O O\ninteger Name Name\nvalue O O\nA Name Name\nthen O O\nhow O O\nto O O\ncheck O O\nat O O\ntime O O\nof O O\ntyping O O\nthe O O\ndata O O\nitself O O\nthat O O\nthe O O\nvalue O O\nentered O O\nin O O\ntextbox Name Name\ndoes O O\nnot O O\nexceed O O\nA Name Name\n. O O\n\nTextbox Name Name\n: O O\n\nMy O O\nscript Name Name\n: O O\n\n( O O\nAccording O O\nto O O\nanswer O O\nby O O\nFelix O O\n) O O\n\nFORM Name Name\n: O O\n\nWhats O O\nproblem O O\nin O O\nthis O O\n? O O\n\nthe O O\nscript Name Name\ncode O O\nis O O\nnot O O\nrunning O O\nand O O\nnot O O\nprinting O O\nthe O O\nerror O O\nmessage.Please O O\nhelp O O\n\nYou O O\ncan O O\nuse O O\n.keyup() Name Name\nevent O O\n: O O\n\nFiddle Name Name\nDemo O O\n\nBased O O\non O O\nyour O O\ncomment O O\n, O O\nyou O O\ncan O O\ndo O O\n: O O\n\nFiddle Name Name\nDemo O O\n\nDo O O\nthis O O\n: O O\n\nDemo O O\n\nI O O\nhave O O\na O O\nClass O O\nwhich O O\nI O O\nhave O O\ncreated O O\nas O O\nan O O\nNSObject Name Name\n. O O\n\nThis O O\nclass O O\nhas O O\na O O\nnumber O O\nof O O\nproperties O O\nof O O\ndifferent O O\ntypes O O\nand O O\nmethods O O\netc O O\n. O O\n\nWhen O O\nI O O\ninstantiate O O\nthis O O\nclass O O\nin O O\nmy O O\nApp O O\n( O O\nsay O O\nin O O\nthe O O\nmain O O\nView Name Name\nController Name Name\n) O O\nI O O\n\nimmediately O O\nsend O O\nit O O\na O O\nrelease O O\ncall O O\nwhen O O\nI O O\nam O O\nfinished O O\nusing O O\nit O O\n. O O\n\nie O O\n: O O\n\nSo O O\nmy O O\nquestion O O\nis O O\n: O O\n\nWhen O O\nI O O\nrelease O O\nmyObject Name Name\n, O O\ndoes O O\nit O O\nautomatically O O\nrelease O O\nall O O\nof O O\nthe O O\ndeclared O O\nobjects O O\n, O O\nvariables O O\n, O O\netc O O\n. O O\nthat O O\nI O O\ndeclared O O\nin O O\nthe O O\nMyObject Name Name\n.h Name Name\nfile O O\n? O O\n\nOR O O\n\nDo O O\nI O O\nneed O O\nto O O\ncreate O O\na O O\ncustom O O\nrelease O O\nmethod O O\nwhich O O\nreleases O O\nall O O\nof O O\nthese O O\n? O O\n\nI O O\nask O O\nbecause O O\nof O O\nmemory O O\nmanagement O O\nissues O O\n. O O\n\nThank O O\nyou O O\n. O O\n\nYou O O\nneed O O\nto O O\nimplement O O\na O O\ndealloc Name Name\nmethod O O\nin O O\nyour O O\nobject O O\nand O O\nuse O O\nthat O O\nmethod O O\nto O O\nrelease O O\nany O O\nresources O O\nthat O O\nyou O O\nown O O\n. O O\n\nhttp://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmObjectOwnership.html#//apple_ref/doc/uid/20000043-SW4 O O\n\nImportant O O\nnote O O\n: O O\nyou O O\nnever O O\ncall O O\na O O\ndealloc Name Name\nmethod O O\non O O\nan O O\nobject O O\n, O O\nit O O\n's O O\ninvoked O O\nautomatically O O\nby O O\nthe O O\nruntime O O\nwhen O O\nit O O\n's O O\ntime O O\nto O O\nclean O O\nup O O\n. O O\n\nI O O\nhad O O\nthe O O\nsame O O\nissue O O\nas O O\nZigglzworth O O\nand O O\nit O O\nwas O O\nthe O O\nposition O O\nof O O\nthe O O\n[ O O\nsuper O O\ndealloc Name Name\n] O O\ncall O O\n. O O\n\nI O O\nhad O O\nit O O\nat O O\nthe O O\nstart O O\nof O O\nmy O O\n-(void)dealloc Name Name\nmethod O O\nand O O\nit O O\nwas O O\ncausing O O\na O O\ncrash O O\nevery O O\ntime O O\n. O O\n\nMoved O O\n[ O O\nsuper O O\ndealloc Name Name\n] O O\nto O O\nthe O O\nend O O\nof O O\nthe O O\nmethod O O\nafter O O\nthe O O\nvariable O O\nrelease O O\nstatements O O\nand O O\nnow O O\nit O O\nworks O O\njust O O\nfine O O\n. O O\n\nThere O O\nare O O\nmany O O\noptimization O O\nproblems O O\nthat O O\nare O O\nknown O O\nto O O\nbe O O\nNP-hard O O\n, O O\nsuch O O\nas O O\nthe O O\ntraveling O O\nsalesman O O\nproblem O O\n, O O\nMAX-SAT O O\n, O O\nor O O\nfinding O O\nthe O O\nminimum O O\nchromatic O O\nnumber O O\nof O O\na O O\ngraph Name Name\n. O O\n\nGiven O O\na O O\nproblem O O\nof O O\nthis O O\nsort O O\n, O O\nI O O\n'm O O\ncurious O O\nabout O O\nthe O O\ncomplexity O O\nof O O\nthe O O\nfollowing O O\nproblem O O\n: O O\n\nIntuitively O O\n, O O\nit O O\nseems O O\nlike O O\nthis O O\nmight O O\nbe O O\nco-NP O O\nhard O O\n, O O\nsince O O\nit O O\n's O O\neasy O O\nto O O\nrefute O O\nan O O\nanswer O O\nto O O\nan O O\noptimization O O\nproblem O O\nby O O\nguessing O O\na O O\nbetter O O\nsolution O O\nand O O\nusing O O\nit O O\nas O O\na O O\nwitness O O\n, O O\nbut O O\nI O O\nhave O O\nno O O\nidea O O\nhow O O\nto O O\nshow O O\nthis O O\n. O O\n\nIn O O\nfact O O\n, O O\nI O O\ndo O O\nn't O O\nreally O O\nknow O O\nhow O O\nto O O\nreason O O\nabout O O\nthe O O\ncomplexity O O\nof O O\nthis O O\nproblem O O\n. O O\n\nDoes O O\nanyone O O\nknow O O\nof O O\nany O O\ngood O O\nlower O O\nbounds O O\non O O\nthe O O\ncomplexity O O\nof O O\nthis O O\ndecision O O\nproblem O O\n? O O\n\nKnowing O O\nwhether O O\nthis O O\nwas O O\nco-NP O O\nhard O O\n, O O\nPSPACE-hard O O\n, O O\netc O O\n. O O\nwould O O\nbe O O\nreally O O\ninteresting O O\n. O O\n\nThe O O\nterm O O\n' O O\nNP-hard O O\noptimization O O\nproblem O O\n' O O\nseems O O\na O O\nbit O O\ntoo O O\nbroad O O\nto O O\nlet O O\na O O\nsatisfying O O\nanswer O O\nbe O O\nfound O O\n. O O\n\nFor O O\ninstance O O\n, O O\nI O O\nca O O\nn't O O\nsee O O\nwhat O O\nprecludes O O\ndecision O O\nproblems O O\nfrom O O\nbeing O O\nconsidered O O\nNP-hard O O\noptimization O O\nproblems O O\n- O O\nif O O\nyou O O\nconsider O O\n, O O\nsay O O\n, O O\nthe O O\nMAX-CNF-SAT O O\nproblem O O\nwith O O\nthe O O\nsolutions O O\nbeing O O\nscored O O\nas O O\nfloor(k/N) Name Name\n, O O\nwhere O O\nk Name Name\nis O O\nthe O O\nnumber O O\nof O O\nsatisfied O O\nclauses O O\nand O O\nN Name Name\nis O O\nthe O O\ntotal O O\nnumber O O\nof O O\nclauses O O\nin O O\nthe O O\ninstance O O\n( O O\nwhich O O\nis O O\nclearly O O\ncomputable O O\nin O O\npolynomial O O\ntime O O\n) O O\n, O O\nthen O O\nany O O\nvaluation O O\nwhich O O\nyields O O\na O O\n1 Name Name\nin O O\nthis O O\nformula O O\nwill O O\nhave O O\nto O O\nsatisfy O O\nthe O O\nwhole O O\nformula O O\n. O O\n\nSo O O\nlet O O\n's O O\nassume O O\nthat O O\nwe O O\nare O O\nmaximizing O O\nfloor(k/N) Name Name\nand O O\ncall O O\nthis O O\nthe O O\nFLOOR-CNF-SAT O O\noptimization O O\nproblem O O\n: O O\n) O O\n\nThis O O\nimplies O O\nyou O O\ncan O O\nreduce O O\nTAUTOLOGY O O\nto O O\nsaid O O\noptimization O O\nproblem O O\n- O O\nnegate O O\nthe O O\ninput O O\nand O O\nadd O O\nany O O\nsolution O O\nas O O\nS Name Name\n. O O\nYou O O\ncan O O\neven O O\nadd O O\na O O\ndummy O O\nvariable O O\nto O O\nmake O O\nsure O O\nthe O O\ninitial O O\nsolution O O\nis O O\ngets O O\na O O\n0 Name Name\nin O O\nthe O O\nFLOOR-CNF-SAT O O\nproblem O O\n. O O\n\nNegation O O\nis O O\npolynomial O O\nin O O\ntime O O\n. O O\n\nThen O O\nif O O\na O O\nsolver O O\nfor O O\nthe O O\nproposed O O\nproblem O O\ndeems O O\nS Name Name\nto O O\nnot O O\nbe O O\noptimal O O\n, O O\nthere O O\nmust O O\nclearly O O\nbe O O\na O O\nvaluation O O\nwhich O O\nyields O O\na O O\n1 Name Name\naccording O O\nto O O\nour O O\ncrafted O O\nfunction O O\nand O O\nthus O O\nsatisfies O O\nthe O O\nwhole O O\nformula O O\n- O O\nin O O\nturn O O\nproviding O O\na O O\nvaluation O O\nthat O O\ndoes O O\nnot O O\nsatisfy O O\nthe O O\noriginal O O\ninput O O\nto O O\nTAUTOLOGY O O\n. O O\n\nBy O O\ncheating O O\nslightly O O\n( O O\nusing O O\nan O O\nartificially O O\ncrafted O O\noptimization O O\nproblem O O\n) O O\nwe O O\nhave O O\nestablished O O\nthe O O\n' O O\nis O O\noptimal O O\n' O O\nproblem O O\nas O O\nco-NP-complete O O\n, O O\nsince O O\nTAUTOLOGY O O\nis O O\neasily O O\nshown O O\nto O O\nbe O O\nco-NP-complete O O\n. O O\n\nBy O O\nyour O O\nown O O\nargument O O\nthe O O\n' O O\nis O O\noptimal O O\n' O O\ndecision O O\nproblem O O\nis O O\nco-NP-hard O O\n, O O\nsince O O\nas O O\na O O\nwitness O O\nyou O O\nonly O O\nneed O O\na O O\nbetter O O\nsolution O O\n- O O\nscore O O\nS Name Name\n, O O\nscore O O\nthe O O\nwitness O O\nand O O\ncompare O O\n. O O\n\nI O O\ndo O O\nn't O O\nreally O O\nfeel O O\ngreat O O\nabout O O\nthis O O\nreduction O O\nbut O O\nI O O\nca O O\nn't O O\neasily O O\nimprove O O\non O O\nthe O O\nproblem O O\nclass O O\n. O O\n\nIf O O\nyou O O\nrequire O O\nthat O O\nthere O O\nbe O O\ninstances O O\nwhich O O\nscore O O\narbitrarily O O\nhigh O O\nand O O\nnot O O\njust O O\n{ Name Name\n0 Name Name\n, Name Name\n1} Name Name\n, O O\nI O O\ncould O O\njust O O\nuse O O\nN Name Name\n* Name O\nfloor(k/N) Name Name\n. O O\n\nAn O O\nimprovement O O\nto O O\nthe O O\nclass O O\ncould O O\nbe O O\nto O O\nonly O O\nconsider O O\na O O\nproblem O O\nan O O\nNP-hard O O\noptimization O O\nproblem O O\nif O O\nfor O O\neach O O\nK Name Name\nthere O O\nexists O O\nan O O\ninstance O O\nthat O O\nhas O O\nat O O\nleast O O\nK Name Name\nsolutions O O\nwhich O O\nall O O\nscore O O\ndifferently O O\n. O O\n\nI O O\nthink O O\nI O O\ncan O O\nstill O O\ncheat O O\nmy O O\nway O O\nthrough O O\nthat O O\n: O O\n\nConsider O O\na O O\nreduction O O\nthat O O\nadds O O\nN Name Name\ndummy O O\nvariables O O\nto O O\nthe O O\nTAUTOLOGY O O\ninput O O\nas O O\nfollows O O\n: O O\n\nwhere O O\nS Name Name\nis O O\nthe O O\nnegated O O\ninput O O\n. O O\n\nAs O O\nan O O\ninitial O O\nvaluation O O\nI O O\nchoose O O\nd1 Name Name\n, Name Name\n.. Name Name\n. Name Name\n, Name Name\ndN Name Name\n= Name Name\nfalse Name Name\n, O O\nbut O O\nas O O\na O O\nscore O O\nI O O\ngive O O\na O O\nfunction O O\nthat O O\nreturns O O\n2N Name Name\n- Name Name\n1 Name Name\nif O O\nthe O O\nfirst O O\nN Name Name\nclauses O O\nare O O\nall O O\nfalse O O\n, O O\notherwise O O\nit O O\nreturns O O\nthe O O\nnumber O O\nof O O\nsatisfied O O\nclauses O O\n. O O\n\nSuch O O\na O O\nfunction O O\nwould O O\nonly O O\nreturn O O\n2N Name Name\nif O O\nall O O\nthe O O\nclauses O O\nwere O O\nsatisfied O O\nbut O O\ncould O O\neasily O O\nhave O O\nat O O\nleast O O\nN Name Name\ndistinct O O\nvalues O O\n. O O\n\nI O O\nam O O\nafraid O O\nthat O O\nwithout O O\nsome O O\ncomplicated O O\nregularity O O\nconditions O O\non O O\nthe O O\nscoring O O\nfunction O O\nthis O O\nis O O\nthe O O\nbest O O\nwe O O\ncan O O\nget O O\n, O O\nunless O O\nyou O O\nconsider O O\nthe O O\ndefinition O O\nof O O\nan O O\nNP-hard O O\noptimization O O\nproblem O O\nto O O\nbe O O\n' O O\na O O\nproblem O O\nfor O O\nwhich O O\n, O O\ngiven O O\na O O\ncandidate O O\nsolution O O\nS Name Name\n, O O\nwe O O\ncan O O\nin O O\npolynomial O O\ntime O O\nverify O O\nwhether O O\nS Name Name\nis O O\noptimal O O\n' O O\n, O O\nin O O\nwhich O O\ncase O O\n' O O\nis-optimal O O\n' O O\nis O O\nclearly O O\nP O O\nand O O\nit O O\n's O O\nno O O\nfun O O\nat O O\nall:/ O O\n\nBecause O O\nS Name Name\nis O O\na O O\ncandidate O O\nsolution O O\n; O O\ngiven O O\nthat O O\nthere O O\nare O O\nno O O\nother O O\nS Name Name\nin O O\nwhich O O\nS Name Name\ncan O O\nbe O O\nproven O O\nto O O\nbe O O\ngreedy O O\nor O O\nless O O\noptimal O O\nthan O O\nany O O\nother O O\nS Name Name\n. O O\nIt O O\nmust O O\nbe O O\nthat O O\nS Name Name\nis O O\nat O O\ncurrent O O\nthe O O\nMOST O O\noptimal O O\nsolution O O\nfor O O\nthe O O\nproblem O O\n. O O\n\nI O O\nam O O\nnew O O\nto O O\nPentaho Name Name\nKettle Name Name\nand O O\nI O O\nam O O\nwondering O O\nwhat O O\nthe O O\nInternal.Job.Filename.Directory Name Name\nis O O\n? O O\n\nIs O O\nit O O\nmy O O\nSPoon.bat Name Name\nfolder O O\n, O O\nor O O\nthe O O\njob/xfrm Name Name\nfolder O O\ni O O\ncreated O O\n? O O\n\nIs O O\nthere O O\na O O\nway O O\nI O O\ncan O O\nchange O O\nit O O\nto O O\npoint O O\nto O O\nparticular O O\nfolder O O\n? O O\n\nI O O\nam O O\nrunnig O O\nspoon.bat Name Name\nin O O\nWindows Name Name\nXP Name Name\n. O O\n\nTo O O\nset O O\nvalue O O\nto O O\nvariable O O\nInternal.Job.Filename.Directory Name Name\n, O O\nyou O O\nneed O O\nto O O\nlaunch O O\nJob Name Name\nin O O\nthis O O\n\nway O O\n: O O\n\nInternal.Job.Filename.Directory Name Name\nis O O\nonly O O\nset O O\nwhen O O\nyou O O\ndo O O\nn't O O\nuse O O\na O O\nrepository O O\n, O O\nand O O\nit O O\nis O O\nset O O\nautomatically O O\n. O O\n\nYou O O\ncannot O O\nset O O\nit O O\nmanually O O\n. O O\n\nHow O O\nnot O O\nto O O\nuse O O\nan O O\nrepository O O\n? O O\n\nWhen O O\nyou O O\nstart O O\nSpoon Name Name\n, O O\nyou O O\nget O O\na O O\ndialog Name Name\nwhich O O\nasks O O\nfor O O\na O O\nrepository O O\n. O O\n\nJust O O\nclose O O\nthis O O\ndialog O O\nwith O O\ncancel O O\nand O O\nyou O O\n're O O\nfine O O\n! O O\n\nIt O O\ntook O O\nme O O\na O O\nwhile O O\nto O O\nfind O O\nthis O O\n: O O\nI O O\nwas O O\nwondering O O\nwhy O O\nInternal.Job.Filename.Directory Name Name\nwas O O\nalways O O\nempty O O\n. O O\n\nThe O O\nrepository O O\nwas O O\nthe O O\ncause O O\n. O O\n\nIt O O\n's O O\ndocumented O O\nhere O O\n: O O\nhttp://jira.pentaho.com/browse/PDI-7434 O O\n\nWhen O O\nthe O O\nlength O O\nof O O\ncharacters O O\nin O O\njson Name Name\nresult O O\nis O O\nlarge O O\nthe O O\nfollowing O O\nexception Name Name\nwill O O\nbe O O\nraised O O\n: O O\n\nThe O O\nabove O O\nexception Name Name\nis O O\na O O\nserver O O\nside O O\nexception Name Name\nwith O O\n500 O O\nresponse O O\ncode O O\nso O O\nif O O\nwe O O\nput O O\nthe O O\nsource O O\ncode O O\ninside O O\na O O\ntry Name Name\ncatch Name Name\nblock O O\n, O O\nthe O O\nerror O O\nshould O O\nbe O O\ncaught O O\nin O O\ncatch Name Name\nblock O O\n, O O\nbut O O\ntry Name Name\ncatch Name Name\ndoes O O\nnot O O\nwork O O\nfor O O\nthis O O\nscenario O O\n. O O\n\nYou O O\ncould O O\ntest O O\nthis O O\nproblem O O\nby O O\nfollowing O O\ncode O O\n, O O\nplease O O\nuse O O\nit O O\ninside O O\nan O O\nasp.net Name Name\nmvc Name Name\ncontroller O O\n: O O\n\nI O O\ncannot O O\nreproduce O O\nthe O O\nerror O O\n, O O\nbut O O\nanyway O O\nwhat O O\nis O O\nhappening O O\nto O O\nyou O O\nis O O\nthat O O\nthe O O\nJson Name Name\nmethod O O\nimplementation O O\nis O O\nalready O O\ncatching O O\nthe O O\nexception Name Name\ninternally O O\nand O O\nconverting O O\nit O O\nto O O\nfull-blown O O\nHTTP O O\n5xx O O\nresponse O O\n. O O\n\nThere O O\nis O O\nno O O\nexception Name Name\ncoming O O\nout O O\nfrom O O\nthe O O\nreturn O O\nJson() Name Name\ncall O O\n. O O\n\nThere O O\nis O O\nno O O\nchance O O\nfor O O\nyou O O\nto O O\ncatch O O\nthe O O\nexception Name Name\nbecause O O\n.. O O\n. O O\nwhat O O\nwould O O\nyou O O\ndo O O\n? O O\n\nGenerate O O\nan O O\nHTTP O O\n5xx O O\nresponse O O\n? O O\n\nThat O O\nis O O\nalready O O\ndone O O\nfor O O\nyou O O\nby O O\nthe O O\nMVC Name Name\nframework O O\n. O O\n\nTry O O\nlike O O\nthis O O\n: O O\n\nwhat O O\nis O O\nthe O O\neasiest O O\nway O O\nto O O\nseparate O O\nfollowing O O\ntext Name Name\nfile O O\nand O O\nprint O O\nits O O\nvalues O O\nin O O\nthis O O\nformat O O\n\nIf O O\nyour O O\ninput O O\ndata O O\nare O O\nin O O\nJSON Name Name\nformat O O\n, O O\nlook O O\nat O O\na O O\nC-based Name Name\nJSON Name Name\nparser O O\n, O O\nlike O O\nJSON-C Name Name\nor O O\nJansson Name Name\n. O O\n\nParse O O\nyour O O\ndata O O\nobjects O O\nfrom O O\nJSON Name Name\nformat O O\nand O O\ninto O O\nsome O O\nstruct Name Name\nof O O\nyour O O\ndesign O O\n, O O\nand O O\nthen O O\nwrite O O\na O O\nfunction O O\nto O O\nprint O O\nout O O\nan O O\narray Name Name\nof O O\nstruct O O\nelements O O\nto O O\nstandard O O\noutput O O\n, O O\nin O O\na O O\nformat O O\nof O O\nyour O O\nchoosing O O\n. O O\n\nHow O O\nwould O O\nI O O\nget O O\nall O O\nof O O\nthe O O\nchildren O O\nin O O\na O O\nspecific O O\nColumn Name Name\nof O O\na O O\nGrid Name Name\n? O O\n\nI O O\nneed O O\nto O O\nperform O O\nsome O O\ncalculations O O\non O O\nthe O O\nchildren O O\ninside O O\na O O\ncertain O O\nColumn Name Name\nin O O\na O O\nGrid Name Name\n, O O\nbut O O\nI O O\ncannot O O\nfind O O\na O O\nway O O\nof O O\ngetting O O\nall O O\nchildren O O\nfor O O\nthat O O\nColumn Name Name\n. O O\n\nAny O O\nhelp O O\nwould O O\nbe O O\nappreciated O O\n. O O\n\nAdam O O\n\nDo O O\nsome O O\nthing O O\nlike O O\nthis O O\n\nThis O O\nis O O\nthe O O\ncode O O\nexample O O\n\nXAML Name Name\n\nCODE O O\n( O O\nc# Name Name\n) O O\n\nThe O O\noly O O\nconstraint O O\nis O O\nyou O O\nneed O O\nto O O\nkeep O O\na O O\ncheck O O\nof O O\nthe O O\nkind O O\nof O O\nelements O O\nu O O\nplace O O\ninside O O\nthe O O\nGrid Name Name\n. O O\n. O O\nif O O\nthey O O\nare O O\ndifferent O O\nthen O O\nmapping O O\nthem O O\nwill O O\ncause O O\ntrouble O O\n.. O O\n. O O\nplease O O\nlet O O\nme O O\nknow O O\nif O O\ndifferent O O\nelements O O\nare O O\npresent O O\n. O O\n\nTry O O\n: O O\n\nI O O\nwant O O\nto O O\nread O O\none O O\npdf Name Name\nfile O O\nwhich O O\nis O O\nin O O\nbelow O O\nformat O O\n- O O\n\ndata.pdf Name Name\n\nI O O\n'm O O\ntrying O O\nto O O\nread O O\nthis O O\nfile O O\nusing O O\npython Name Name\npandas Name Name\nbut O O\nI O O\ndid O O\nn't O O\nget O O\nany O O\nsuccess O O\nyet O O\n. O O\n\nActually O O\nI O O\nwant O O\nto O O\nconvert O O\nthis O O\nfile O O\nin O O\ncsv Name Name\nformat O O\nlike O O\nbelow O O\n- O O\n\noutput.csv Name Name\n\nI O O\nalready O O\ntried O O\nwith O O\npdfminer Name Name\nbut O O\ndid O O\nn't O O\nget O O\nany O O\nsuccess O O\n. O O\n\nIt O O\n's O O\nhtml Name Name\noutput O O\nonly O O\ngives O O\nme O O\nblank O O\npages Name Name\n. O O\n\nIs O O\ntheir O O\nany O O\nway O O\nto O O\nread O O\npdf Name Name\nfile O O\nusing O O\npython Name Name\npandas Name Name\nor O O\ncan O O\nwe O O\nconvert O O\npdf Name Name\nto O O\nany O O\nformat O O\nand O O\nthen O O\nread O O\nit O O\nusing O O\npython Name Name\npandas Name Name\n? O O\n\nIf O O\nyou O O\nhave O O\ntabula Name Name\ninstalled O O\nthen O O\n: O O\n\nthen O O\nyou O O\ncan O O\nprint O O\nyour O O\ndata O O\n\nI O O\nhope O O\nthis O O\nwill O O\nhelp O O\nyou O O\n! O O\n\nI O O\n'd O O\nlike O O\nto O O\nmake O O\nnon-graphic O O\n( O O\ntext O O\n) O O\nC++ Name Name\ngame O O\n( O O\nyou O O\nmove O O\nyour O O\ncharacter O O\nusing O O\nn O O\n, Name Name\ns Name Name\n, O O\nw Name Name\n, O O\ne Name Name\nand O O\nevery O O\nlocation O O\nis O O\ndescribed O O\n) O O\n. O O\n\nLocations O O\nwill O O\nbe O O\nan O O\narray Name Name\nof O O\nan O O\nobjects O O\n( O O\nthere O O\nwill O O\nbe O O\nlocation O O\ndescription O O\nand O O\nother O O\ninformation O O\nin O O\nthis O O\narray Name Name\n) O O\n. O O\n\nI O O\n've O O\nstarted O O\nmaking O O\nthis O O\ngame O O\n, O O\nbut O O\nI O O\nhave O O\na O O\nquestion O O\n: O O\nIs O O\nit O O\npossible O O\nto O O\nmake O O\narrays Name Name\nwith O O\ndimensions O O\nx Name Name\n- O O\nfrom O O\n-100 Name Name\nto O O\n100 Name Name\nand O O\nz Name Name\n- O O\nfrom O O\n-100 Name Name\nto O O\n100 Name Name\n? O O\n\nIf O O\nit O O\nis O O\nnot O O\npossible O O\n, O O\nare O O\nthere O O\nother O O\nways O O\nto O O\ndo O O\nit O O\n? O O\n\n( O O\nI O O\ndo O O\nn't O O\nwant O O\na O O\n[ Name Name\n0 Name Name\n] Name Name\n[ Name Name\n0 Name Name\n] Name Name\nposition O O\nin O O\none O O\nof O O\n4 O O\ncorners O O\n, O O\nbut O O\non O O\nthe O O\nmiddle O O\n. O O\n) O O\n\nOne O O\ncommon O O\n( O O\nbut O O\nrather O O\nsketchy O O\n) O O\nmethod O O\nis O O\nto O O\ndo O O\nsomething O O\nlike O O\nthis O O\n( O O\nexample O O\nfor O O\n21 O O\nx O O\n21 O O\nboard O O\n) O O\n: O O\n\nThis O O\ncreates O O\na O O\nnormal O O\n21x21 O O\narray Name Name\nbut O O\nthen O O\nit O O\nalso O O\ncreates O O\na O O\npointer Name Name\nto O O\na O O\nfake O O\narray Name Name\nwhich O O\nis O O\ninitialised O O\nto O O\npoint O O\nat O O\nthe O O\ncentre O O\nof O O\nthe O O\nreal O O\narray Name Name\n. O O\n\nYou O O\ncan O O\nthen O O\nuse O O\nthis O O\nfake O O\npointer Name Name\nas O O\nif O O\nit O O\nwere O O\na O O\nreal O O\narray Name Name\nwith O O\nindices O O\nranging O O\nfrom O O\n-10 Name Name\nto O O\n+10 Name Name\n( O O\ninclusive O O\n) O O\n. O O\n\nLIVE O O\nDEMO O O\n\nAn O O\nArray Name Name\ncan O O\nhave O O\nonly O O\npositive O O\nindexes O O\n: O O\n\ndefine O O\na O O\nFunktion O O\nthat O O\nreturns O O\nyour O O\ndesired O O\nLocation Name Name\n: O O\n\nThen O O\nyou O O\ncan O O\nget O O\nthe O O\nLocation Name Name\nby O O\ncalling O O\nthe O O\nfunction O O\ngetLocation(x,y) Name Name\n\nThere O O\n's O O\na O O\nfair O O\namount O O\nof O O\nsupport O O\n, O O\nthrough O O\nthings O O\nlike O O\nthe O O\nvarious O O\nRevolution O O\nR Name Name\nmodules O O\n, O O\nin O O\nwhat O O\nto O O\ndo O O\nif O O\nyou O O\n're O O\nbringing O O\na O O\nlarge O O\ndataset O O\ninto O O\nR Name Name\n, O O\nand O O\nit O O\n's O O\ntoo O O\nlarge O O\nto O O\nbe O O\nstored O O\nin O O\nRAM Name Name\n. O O\n\nBut O O\nis O O\nthere O O\nany O O\nway O O\nto O O\ndeal O O\nwith O O\ndata O O\nsets O O\nbeing O O\ncreated O O\nwithin O O\nR Name Name\nthat O O\nare O O\ntoo O O\nbig O O\nto O O\nstore O O\nin O O\nRAM Name Name\n, O O\nbeyond O O\nsimply O O\n( O O\nand O O\nby O O\nhand O O\n) O O\nbreaking O O\nthe O O\ncreation O O\nstep O O\ninto O O\na O O\nseries O O\nof O O\nRAM-sized Name Name\nchunks O O\n, O O\nwriting O O\nthat O O\nchunk O O\nto O O\ndisk Name Name\n, O O\nclearing O O\nit O O\n, O O\nand O O\ncontinuing O O\non O O\n? O O\n\nFor O O\nexample O O\n, O O\njust O O\ndoing O O\na O O\nlarge O O\nsimulation O O\n, O O\nor O O\nusing O O\nsomething O O\nlike O O\nSurvSplit() Name Name\nto O O\ntake O O\na O O\nsingle O O\nobservation O O\nwith O O\na O O\nsurvival O O\ntime O O\nfrom O O\n1 Name Name\nto O O\nN Name Name\nand O O\nbreak O O\nit O O\ninto O O\nN Name Name\nseperate O O\nobservations O O\n? O O\n\nIf O O\nyou O O\n're O O\ncreating O O\nthe O O\ndata O O\nin O O\nR Name Name\nand O O\nyou O O\ncan O O\ndo O O\nyour O O\nanalysis O O\non O O\na O O\nsmall O O\nchunk O O\nof O O\nthe O O\ntotal O O\ndata O O\n, O O\nthen O O\nonly O O\ncreate O O\nas O O\nlarge O O\nof O O\na O O\nchunk O O\nas O O\nyou O O\nneed O O\nfor O O\nany O O\ngiven O O\nanalysis O O\n. O O\n\nI O O\n'm O O\ntrying O O\nto O O\nread O O\nonly O O\ncolum Name Name\nwith O O\nred O O\nlabel O O\nin O O\na O O\ncsv Name Name\nfile O O\n. O O\n\nIs O O\nthere O O\na O O\nphp Name Name\nfunction O O\nto O O\ndo O O\nthis O O\nor O O\na O O\nsymfony Name Name\nbundle O O\n? O O\n\nNow O O\nI O O\n'm O O\nreading O O\ncsv Name Name\nfile O O\nwith O O\nfgetcsv Name Name\nfunction O O\n: O O\n\nBut O O\nit O O\ndoes O O\nn't O O\nread O O\nthe O O\nlabel O O\n's O O\ncolor.Is O O\nthere O O\na O O\nway O O\nto O O\nread O O\nthe O O\ncolor O O\non O O\nthe O O\ncsv Name Name\nfiles O O\n? O O\n\nYou O O\ncan O O\nuse O O\nthis O O\nphp Name Name\nclass O O\nto O O\nread O O\ncsv Name Name\nfiles O O\n: O O\nhttps://git.webworks-nuernberg.de/webworks-nuernberg/parsecsv O O\n\nBut O O\ncweiske O O\nis O O\nright O O\n, O O\ncsv Name Name\nhas O O\nn't O O\nany O O\nformatting O O\n. O O\n\nCSV Name Name\nfiles O O\nhave O O\nno O O\nformatting O O\n. O O\n\n.xls Name Name\nor O O\n.odt Name Name\nfiles O O\nhave O O\nformatting O O\n, O O\nbut O O\nCSV Name Name\ndefinitely O O\nnot O O\n- O O\nonly O O\ndata O O\nare O O\nsaved O O\nin O O\nthere O O\n. O O\n\nLook O O\nat O O\nthe O O\nfile O O\nwith O O\na O O\ntext Name Name\neditor Name Name\n. O O\n\nWhy O O\nthis O O\ncode O O\ndoes O O\nnot O O\nset O O\nthe O O\nvalue O O\nto O O\ninput O O\nelement O O\n? O O\n\nIf O O\nI O O\nchange O O\ndate O O\nto O O\n\" Name Name\nnew Name Name\nDate(2016, Name Name\n4, Name Name\n1) Name Name\n\" Name Name\nvalue O O\nwill O O\nbe O O\nset O O\ncorrectly O O\n. O O\n\nThe O O\nerror O O\nappears O O\nin O O\nall O O\nbrowsers Name Name\n. O O\n\nLink O O\nto O O\nJSbin Name Name\nexample O O\nhttp://jsbin.com/catolumifa/edit?html,output O O\n\nYou O O\nare O O\nnot O O\nable O O\nto O O\nset O O\npast O O\ndate O O\n\" Name Name\n2016 Name Name\n, Name Name\n1 Name Name\n, Name Name\n1 Name Name\n\" Name Name\nbecause O O\nyou O O\nhave O O\nset O O\nminimum O O\ndate O O\nas O O\ncurrent Name Name\ndate Name Name\n. O O\n\nso O O\nyou O O\ncannot O O\nset O O\nolder O O\ndate O O\nthan O O\ntoday O O\n. O O\n\nso O O\nplease O O\nremove O O\nbelow O O\ncode O O\nlines O O\nfrom O O\nyour O O\ncode O O\n. O O\n\nCan O O\n<meta> Name Name\ntags O O\ngo O O\nin O O\nexternal O O\nCSS Name Name\nsheets, O O\nand O O\nbe O O\nlinked O O\nto O O\nwith O O\nthe O O\n<link> Name Name\ntags O O\nused O O\nfor O O\nCSS Name Name\n? O O\n\nThat O O\nis O O\n\nCSS Name Name\n: O O\n\nWhy O O\nthe O O\ndown O O\nvote O O\n? O O\n\nI O O\nconsider O O\nthis O O\nwell O O\nasked O O\n. O O\n\nIf O O\nyou O O\nthink O O\nit O O\ncan O O\nbe O O\nimproved O O\n, O O\nplease O O\nsuggest O O\nhow O O\n. O O\n\nOtherwise O O\n, O O\nplease O O\nup O O\nvote O O\n! O O\n\nThank O O\nyou O O\n. O O\n\nMeta O O\ntags O O\nare O O\nnot O O\nstyles O O\n, O O\nand O O\ntherefore O O\ncannot O O\nbe O O\nput O O\nin O O\nstylesheets O O\n. O O\n\nThis O O\nis O O\ncode O O\nfor O O\na O O\nHW O O\nquestion O O\nin O O\nmy O O\nMultivariate O O\nAnalysis O O\nClass O O\n\nPROC Name Name\nPLOT Name Name\nis O O\ncurrently O O\ngenerating O O\na O O\nhuge O O\nchart Name Name\n, O O\nmaybe O O\n5-10 O O\npages O O\ntall O O\n, O O\nwith O O\nridiculous O O\nvertical O O\nscaling O O\n( O O\nsomething O O\nlike O O\n.05 Name Name\n= O O\nan O O\ninch+ O O\nof O O\ncomputer O O\nscreen O O\n. O O\n) O O\n\nIt O O\n's O O\ntoo O O\nbig O O\nto O O\nput O O\nin O O\na O O\nword O O\ndocument O O\nto O O\nhand O O\nin O O\n, O O\nand O O\nit O O\n's O O\nnot O O\ninformative O O\nas O O\nis O O\n. O O\n\nMy O O\nquestion O O\nis O O\nwhy O O\nis O O\nmy O O\nSAS Name Name\ndoing O O\nthis O O\n, O O\nand O O\ncan O O\nI O O\nfix O O\nit O O\n? O O\n\nI O O\n'd O O\nlove O O\nit O O\nto O O\nbe O O\nscaled O O\ndown O O\nto O O\na O O\n5 Name Name\n\" Name Name\nx Name Name\n5 Name Name\n\" Name Name\nor O O\nsomething O O\nlike O O\nthat O O\n... O O\ncan O O\nI O O\ndo O O\nthis O O\n? O O\n\n( O O\nI O O\n've O O\na O O\nworking O O\nknowledge O O\nof O O\nSAS Name Name\n, O O\nbut O O\nI O O\n'm O O\nfar O O\nfrom O O\nskilled O O\nat O O\nit O O\n. O O\n) O O\n\nTry O O\nusing O O\nods Name Name\ngraphics Name Name\nand O O\nPROC Name Name\nSGPLOT Name Name\n. O O\n\nI O O\nwanted O O\nto O O\ntrack O O\nmy O O\nmodels O O\nand O O\ntheir O O\nCRUD Name Name\noperations O O\nthrough O O\nhandling O O\npost_save Name Name\n, O O\ndelete Name Name\nand O O\ninit Name Name\nsignals Name Name\n, O O\nand O O\nthen O O\nsave O O\nentry O O\nto O O\nthe O O\nDatabase O O\nabout O O\nthis O O\noperation O O\nhandled O O\n. O O\n\nThen O O\nthe O O\nfunny O O\nthing O O\n, O O\nit O O\nis O O\na O O\nrecursion O O\nof O O\nsaves Name Name\n.. O O\n. O O\n\nI O O\ncreated O O\nmodel O O\nCRUD_Storage Name Name\n, O O\ni O O\nwant O O\nto O O\nprevent O O\nit O O\nsending O O\nsignals O O\nlike O O\npre(post)init Name Name\n, O O\ndelete Name Name\n, O O\nsave O O\n. O O\n\nHere O O\nis O O\na O O\nDRY O O\nway O O\nof O O\ndismissing O O\nsignals O O\n. O O\n\nIf O O\nyou O O\nwant O O\nto O O\ndismiss O O\na O O\nsignal O O\nto O O\navoid O O\nrecursion O O\n, O O\na O O\nsimple O O\nway O O\nto O O\ngo O O\nis O O\nto O O\nset O O\nan O O\nattribute O O\non O O\nthe O O\ncurrent O O\ninstance O O\nto O O\nprevent O O\nupcoming O O\nsignals O O\nfiring O O\n. O O\n\nThis O O\ncan O O\nbe O O\ndone O O\nusing O O\na O O\nsimple O O\ndecorator O O\nthat O O\nchecks O O\nif O O\nthe O O\ngiven O O\ninstance O O\nhas O O\nthe O O\n' O O\nskip_signal Name Name\n' O O\nattribute O O\n, O O\nand O O\nif O O\nso O O\nprevents O O\nthe O O\nmethod O O\nfrom O O\nbeing O O\ncalled O O\n: O O\n\nWe O O\ncan O O\nnow O O\nuse O O\nit O O\nthis O O\nway O O\n: O O\n\nHope O O\nThis O O\nhelps O O\n. O O\n\nI O O\ndo O O\nn't O O\nthink O O\nyou O O\ncan O O\nprevent O O\nDjango Name Name\nfrom O O\nsending O O\nthose O O\nsignals O O\n. O O\n\nHowever O O\n, O O\nyou O O\ncan O O\nadapt O O\nyour O O\nhandler O O\nto O O\nnot O O\nlog O O\nsaves O O\nfor O O\nyour O O\nCRUD_Storage Name Name\nmodel O O\n. O O\n\nI O O\nam O O\nworking O O\non O O\nan O O\ninternal O O\nhelpdesk O O\n. O O\n\nEmails O O\naddress O O\nto O O\nthe O O\nhelpdesk O O\nappear O O\nin O O\na O O\nNotes Name Name\nView Name Name\n, O O\nand O O\nI O O\ncan O O\nopen O O\nthe O O\ndocument O O\nin O O\nXPages Name Name\nand O O\nsee O O\nthe O O\ntext Name Name\n. O O\n\nBut O O\nit O O\nwo O O\nn't O O\nshow O O\nany O O\ninserted O O\nimages Name Name\nwithin O O\nthe O O\ntext Name Name\n. O O\n\nI O O\ncan O O\nlist O O\nthe O O\nattachments O O\nas O O\nexternal O O\nlinks O O\n( O O\ncourtesy O O\nof O O\nhttp://techdriveactive.blogspot.co.uk/2012/11/open-attachments-in-xpage-in-client.html O O\n) O O\nbut O O\nI O O\nca O O\nn't O O\nseem O O\nto O O\nget O O\na O O\nhandle O O\non O O\nthe O O\nimages Name Name\n. O O\n\nAny O O\nideas O O\n? O O\n? O O\n\nTo O O\nyou O O\nHelpDeskOpenDoc.xsp Name Name\nXPage Name Name\nadd O O\na O O\nRich Name Name\nText Name Name\ncontrol Name Name\nand O O\nbind O O\nit O O\nto O O\nthe O O\nRich Name Name\nText Name Name\nField Name Name\nwith O O\nthe O O\nimages Name Name\nand O O\nother O O\nrich O O\ncontent O O\n.. O O\n. O O\n\nOne O O\nway O O\naround O O\nthat O O\nchallenge O O\nis O O\nto O O\nuse O O\na O O\nDojo Name Name\nContentPane Name Name\n. O O\n\nIt O O\nhas O O\na O O\nhref Name Name\nattribute O O\nthat O O\ncan O O\npoint O O\nto O O\na O O\ndifferent O O\nurl O O\n. O O\n\nYou O O\nthen O O\ncan O O\npoint O O\nit O O\nto O O\nthe O O\ncontent O O\nrendered O O\nby O O\nthe O O\nclassic O O\nengine O O\n: O O\n\nNote O O\n: O O\nthis O O\nwo O O\nn't O O\nwork O O\nin O O\nXPiNC Name Name\n\nI O O\ntried O O\nimplementing O O\nthis O O\ntick O O\nmethod O O\nin O O\na O O\nWin Name Name\n8 Name Name\nWAMP Name Name\nserver Name Name\nrunning O O\nPHP Name Name\n7.1 Name Name\n\nBut O O\nI O O\nend O O\nup O O\nwith O O\nthis O O\nerror O O\nafter O O\na O O\nprocess O O\nthat O O\nseem O O\nmore O O\nlike O O\nan O O\ninfinite O O\nloop O O\n: O O\n\nMean O O\nwhile O O\nthe O O\ncode O O\nworks O O\non O O\na O O\nlive O O\nsever Name Name\nrunning O O\nPHP Name Name\n7.1 Name Name\nand O O\nalso O O\non O O\na O O\nWIN Name Name\n8 Name Name\nWAMP Name Name\nserver Name Name\nrunning O O\nPHP Name Name\n5.5 Name Name\n\nFirst O O\nof O O\nall O O\nreally O O\nsorry O O\nif O O\nthis O O\nis O O\na O O\nduplicate O O\n, O O\nalthough O O\nI O O\nthink O O\nits O O\nnot O O\ncoz O O\nI O O\nhave O O\nsearched O O\na O O\nlot O O\nbut O O\nfound O O\nnothing O O\nworking O O\n. O O\n\nI O O\nwant O O\nto O O\nremove O O\nthe O O\nnotification Name Name\non O O\nclick O O\nof O O\ncancel Name Name\n- O O\nwhich O O\nI O O\nfound O O\nsomewhere O O\nto O O\ncall O O\n.cancel() Name Name\nmethod O O\nbut O O\nwhere O O\nshould O O\ni O O\nmake O O\nthat O O\ncall O O\n. O O\n\nOther O O\none O O\nwhen O O\nI O O\nclick O O\non O O\naccept Name Name\nor O O\ncancel Name Name\nthe O O\nintent Name Name\nvalues O O\ncomes O O\nsame O O\nonly O O\nwhich O O\nis O O\n\" O O\nNotifications O O\n\" O O\nin O O\nthe O O\nlogcat O O\n. O O\n\nPlease O O\nlet O O\nme O O\nknow O O\nwhat O O\ni O O\nam O O\ndoing O O\nwrong O O\n. O O\n\nThanks O O\nin O O\nadvance O O\n. O O\n\nMy O O\nnotification Name Name\ncreator O O\n- O O\n\nWhile O O\nthe O O\nother O O\nfile O O\nthat O O\nis O O\nintent Name Name\nreceiver O O\nit O O\nis O O\nlike O O\n- O O\n\n1) O O\nto O O\nremove O O\nnotification Name Name\non O O\ncancel Name Name\nclick O O\n: O O\n\nadd O O\nthis O O\ncode O O\nin O O\nyour O O\nreciever O O\n\nPS O O\n: O O\nyou O O\nused O O\n\" Name Name\n1 Name Name\n\" Name Name\nas O O\nnotificationId Name Name\nin O O\nyour O O\ncode O O\n( O O\nmNotificationManager Name Name\n. Name Name\nnotify(1 Name Name\n, Name Name\nmBuilder Name Name\n. Name Name\nbuild Name Name\n()) Name Name\n;) Name O\n, O O\nthe O O\nbest O O\nway O O\nis O O\nto O O\nsend O O\nit O O\nvia O O\nputExtra Name Name\n() Name Name\nand O O\nretrieve O O\nit O O\nin O O\nyour O O\nreceiver O O\n. O O\n\n2) O O\nsorry O O\n, O O\ni O O\ndid O O\nn't O O\nunderstand O O\nthe O O\nsecond O O\npart O O\nof O O\nyour O O\nquestion O O\n. O O\n\ncan O O\nyou O O\nexplain O O\nmore O O\n? O O\n\nIt O O\nthere O O\nany O O\nway O O\nto O O\nfind O O\nout O O\nif O O\nthere O O\nis O O\nan O O\nincoming O O\ntelephone Name Name\ncall Name Name\nscreen Name Name\nbeing O O\nshown O O\nover O O\nmy O O\napplication O O\n? O O\n\nIn O O\nfact O O\n, O O\nwhile O O\nwe O O\nwould O O\nn't O O\naccept O O\ncall O O\n- O O\nthe O O\napplication O O\nwould O O\nnot O O\nbe O O\ndeactivated O O\n, O O\nso O O\nis O O\nthere O O\nany O O\nAPI Name Name\nmethod O O\nor O O\nmaybe O O\nsome O O\nworkarounds O O\nlike O O\nscreenshoting O O\nand O O\nverifying O O\nby O O\npixel O O\n? O O\n\n:-) O O\n\nYou O O\ncan O O\ntell O O\nif O O\nthe O O\nuser O O\nis O O\nreceiving O O\nan O O\nincoming O O\ntelephone Name Name\ncall O O\nusing O O\nthe O O\nRootFrame.Obscured Name Name\nevent O O\nas O O\ndescribed O O\nhere O O\n: O O\n\nhttp://www.wintellect.com/CS/blogs/jprosise/archive/2011/02/11/silverlight-for-windows-phone-programming-tip-6.aspx O O\n\nI O O\nam O O\ntrying O O\nto O O\nrun O O\na O O\nCSV Name Name\nimport O O\nusing O O\nthe O O\nCOPY Name Name\ncommand O O\nfor O O\nsome O O\ndata O O\nthat O O\nincludes O O\na O O\nguillemet O O\n(Âť) Name Name\n. O O\n\nRedshift Name Name\ncomplains O O\nthat O O\nthe O O\ncolumn Name Name\nvalue O O\nis O O\ntoo O O\nlong O O\nfor O O\nthe O O\nvarchar Name Name\ncolumn Name Name\nI O O\nhave O O\ndefined O O\n. O O\n\nThe O O\nerror O O\nin O O\nthe O O\n\" Name Name\nLoads Name Name\n\" Name Name\ntab Name Name\nin O O\nthe O O\nRedshift Name Name\nGUI Name Name\ndisplays O O\nthis O O\ncharacter O O\nas O O\ntwo O O\ndots O O\n: O O\n. Name Name\n. Name Name\n- O O\nhad O O\nit O O\nbeen O O\ntreated O O\nas O O\none O O\n, O O\nit O O\nwould O O\nhave O O\nfit O O\nin O O\nthe O O\nvarchar Name Name\ncolumn Name Name\n. O O\n\nIt O O\n's O O\nnot O O\nclear O O\nwhether O O\nthere O O\nis O O\nsome O O\nsort O O\nof O O\nconversion O O\nerror O O\noccurring O O\nor O O\nif O O\nthere O O\nis O O\na O O\ndisplay O O\nissue O O\n. O O\n\nWhen O O\ntrying O O\nto O O\ndo O O\nplain O O\nINSERTs Name Name\nI O O\nrun O O\ninto O O\nstrange O O\nbehavior O O\nas O O\nwell O O\n: O O\n\n3 O O\ncharacters O O\ntreated O O\nas O O\n4 O O\n? O O\n\nWhy O O\ndoes O O\nchar_length Name Name\nreturn O O\n2 Name Name\n? O O\n\nI O O\n've O O\nchecked O O\nthe O O\nclient O O\nencoding O O\nand O O\ndatabase O O\nencodings O O\nand O O\nthose O O\nall O O\nseem O O\nto O O\nbe O O\nUTF8/UNICODE O O\n. O O\n\nYou O O\nneed O O\nto O O\nincrease O O\nthe O O\nlength O O\nof O O\nyour O O\nvarchar Name Name\nfield O O\n. O O\n\nMultibyte O O\ncharacters Name Name\nuse O O\nmore O O\nthan O O\none O O\ncharacter Name Name\nand O O\nlength O O\nin O O\nthe O O\ndefinition O O\nof O O\nvarchar Name Name\nfield O O\nare O O\nbyte O O\nbased O O\n. O O\n\nSo O O\n, O O\nyour O O\nspecial O O\nchar Name Name\nmight O O\nbe O O\ntaking O O\nmore O O\nthan O O\na O O\nbyte O O\n. O O\n\nIf O O\nit O O\nstill O O\ndoes O O\nn't O O\nwork O O\nrefer O O\nto O O\nthe O O\ndoc O O\npage O O\nfor O O\nRedshift Name Name\nbelow O O\n, O O\n\nhttp://docs.aws.amazon.com/redshift/latest/dg/multi-byte-character-load-errors.html O O\n\nI O O\n'd O O\nlike O O\nto O O\nfind O O\nfor O O\neach O O\nrow Name Name\nin O O\nthe O O\nbig O O\nlist Name Name\nthe O O\n' O O\nclosest O O\n' O O\nrow Name Name\nin O O\nthe O O\nlittle O O\nlist Name Name\n, O O\nas O O\ndefined O O\nby O O\nthe O O\neuclidean O O\nnorm O O\n( O O\ni.e O O\n. O O\nsum O O\nof O O\nsquared O O\ndistances O O\nbetween O O\nthe O O\ncorresponding O O\nvalues O O\nin O O\nthe O O\nk Name Name\n=3 Name Name\ndimension O O\n) O O\n. O O\n\nI O O\ncan O O\nsee O O\nhow O O\nto O O\ndo O O\nthis O O\nusing O O\ntwo O O\nloops O O\n, O O\nbut O O\nit O O\nseems O O\nlike O O\nthere O O\nought O O\nto O O\nbe O O\na O O\nbetter O O\nway O O\nto O O\ndo O O\nthis O O\nusing O O\nbuilt O O\nin O O\nmatrix Name Name\noperations O O\n. O O\n\nApproach O O\n#1 O O\n\nThere O O\nis O O\na O O\nbuilt O O\nin O O\nMATLAB Name Name\nfunction O O\npdist2 Name Name\nwhich O O\nfinds O O\n\" O O\nPairwise O O\ndistance O O\nbetween O O\ntwo O O\nsets O O\nof O O\nobservations O O\n\" O O\n. O O\n\nWith O O\nit O O\n, O O\nyou O O\ncan O O\ncalculate O O\nthe O O\neuclidean O O\ndistance O O\nmatrix Name Name\nand O O\nthen O O\nfind O O\nindices O O\nof O O\nminimum O O\nvalues O O\nalong O O\nthe O O\nappropriate O O\ndimension O O\nin O O\nthe O O\ndistance O O\nmatrix Name Name\nthat O O\nwould O O\nrepresent O O\nthe O O\n\" O O\nclosest O O\n\" O O\nfor O O\neach O O\nrow Name Name\nof O O\nbigList Name Name\nin O O\nlittleList Name Name\n. O O\n\nHere O O\n's O O\nthe O O\none-liner O O\nwith O O\nit O O\n- O O\n\nApproach O O\n#2 O O\n\nIf O O\nyou O O\ncare O O\nabout O O\nperformance O O\n, O O\nhere O O\n's O O\na O O\nmethod O O\nthat O O\nleverages O O\nfast O O\nmatrix Name Name\nmultiplication O O\nin O O\nMATLAB Name Name\n\nand O O\nmost O O\nof O O\nthe O O\ncode O O\npresented O O\nhere O O\nis O O\ntaken O O\nfrom O O\nthis O O\nsmart O O\nsolution O O\n. O O\n\nBenchmarking O O\n\nBenchmarking O O\nCode O O\n- O O\n\nBenchmark O O\nresults O O\n- O O\n\nQuick O O\nconclusions O O\n: O O\nThe O O\nruntimes O O\nwith O O\nShai O O\n's O O\nsecond O O\napproach O O\nthat O O\nwas O O\na O O\ncombination O O\nof O O\nbsxfun Name Name\nand O O\nmatrix Name Name\nmultiplication O O\nwere O O\nvery O O\nclose O O\nwith O O\nthe O O\none O O\nbased O O\non O O\npdist2 Name Name\nand O O\nno O O\nclear O O\nwinner O O\ncould O O\nbe O O\ndecided O O\nbetween O O\nthose O O\ntwo O O\n. O O\n\nYou O O\ncan O O\ndo O O\nit O O\nwith O O\nbsxfun Name Name\n: O O\n\nI O O\nknow O O\nhow O O\nto O O\ndetect O O\nmousedown Name Name\nevent Name Name\non O O\na O O\ndirective O O\nthat O O\nis O O\nclicked O O\n. O O\n\nHowever O O\nmy O O\ndirective O O\nalso O O\nneeds O O\nto O O\nbecome O O\nunforcused O O\nor O O\ndeselected O O\nwhen O O\nmouse Name Name\nis O O\ndown O O\noutside O O\nof O O\nmy O O\ndirective/ O O\nelement O O\n. O O\n\nHow O O\ncan O O\nI O O\ndo O O\nthis O O\n? O O\n\nCreate O O\na O O\nlink O O\nfunction O O\nin O O\nthe O O\ndirective O O\nwhich O O\nbinds O O\na O O\nmousedown Name Name\nevent Name Name\nhandler Name Name\non O O\nthe O O\ndocument O O\n. O O\n\nThen O O\n, O O\nbind O O\nanother O O\nmousedown Name Name\nevent Name Name\non O O\nthe O O\ndirective O O\nelement O O\nitself O O\n. O O\n\nThe O O\nlatter O O\nhandler O O\nshould O O\nalso O O\ncall O O\nevent.stopPropagation() Name Name\nto O O\nprevent O O\nthe O O\nevent O O\nfrom O O\nbubbling O O\nall O O\nof O O\nthe O O\nway O O\nup O O\nto O O\nthe O O\ndocument O O\nlevel O O\n: O O\n\nWorking O O\nPlunker Name Name\n\nIf O O\nan O O\napp O O\nwas O O\ninstalled O O\non O O\na O O\ndevice O O\nand O O\nthen O O\nuninstalled O O\n, O O\nis O O\nthere O O\na O O\nway O O\nof O O\ndetermining O O\nthis O O\nusing O O\nthe O O\nAPN Name Name\nfeedback O O\nservice O O\n? O O\n\nThe O O\nfeedback O O\nservice O O\nis O O\ndocumented O O\nas O O\nsaying O O\nits O O\npossible O O\nto O O\nknow O O\ndevices O O\nwhich O O\nare O O\nn't O O\nresponding O O\nto O O\nnotifications O O\n, O O\nbut O O\nis O O\nadditional O O\ninformation O O\nincluded O O\n, O O\nsuch O O\nwhy O O\nits O O\nnot O O\nresponding O O\nand O O\nwhen O O\nit O O\nfirst O O\nstarted O O\nnon O O\nresponding O O\netc O O\n. O O\n? O O\n\nIs O O\nthere O O\nany O O\nway O O\nof O O\ndetermining O O\nif O O\nan O O\napp O O\nhas O O\nbeen O O\nuninstalled O O\n? O O\n\nOr O O\nof O O\nknowing O O\nif O O\nan O O\napp O O\nis O O\npresent O O\nof O O\nabsent O O\nfrom O O\na O O\ndevice O O\n? O O\n\nThanks O O\n\nIn O O\nshort O O\n, O O\nno O O\nthere O O\nis O O\nn't O O\na O O\nway O O\nto O O\ndetermine O O\nif O O\nan O O\napp O O\nhas O O\nbeen O O\nuninstalled O O\n. O O\n\nSee O O\nmy O O\nanswer O O\nto O O\nthis O O\nquestion O O\nwhich O O\nmight O O\nhelp O O\n: O O\n\nBasically O O\n, O O\nyes O O\nyou O O\ncould O O\nuse O O\nthe O O\nfeedback O O\nservice O O\nof O O\nAPNS Name Name\nbut O O\nit O O\nwould O O\nn't O O\nconclusively O O\ntell O O\nyou O O\nif O O\na O O\ndevice O O\nhad O O\nbeen O O\nuninstalled O O\n. O O\n\nIf O O\nyou O O\nneed O O\nto O O\nknow O O\nthis O O\nthen O O\nyou O O\n're O O\nunfortunately O O\ngoing O O\nto O O\nhave O O\nto O O\nchange O O\nthe O O\nway O O\nyou O O\n're O O\ngoing O O\nabout O O\nthings O O\nas O O\nit O O\n's O O\nimpossible O O\nto O O\nknow O O\n( O O\nat O O\npresent O O\n) O O\n. O O\n\nng-map.min.js Name Name\nin O O\nmy O O\napplication O O\nfor O O\nview O O\nmap Name Name\n. O O\n\nI O O\ngot O O\nmap Name Name\nmy O O\napplicatoion O O\n. O O\n\nBut O O\nin O O\nconsole Name Name\nthere O O\nis O O\nan O O\nerror O O\nlike O O\n\nMy O O\nMap Name Name\ndiv Name Name\nis O O\nfollowing O O\nbelow O O\n\nI O O\ngot O O\nmap Name Name\nbut O O\nin O O\nconsole Name Name\nerrors O O\noccurs O O\n.How O O\ncan O O\ni O O\nsolve O O\nthis O O\nissues O O\n? O O\n\nI O O\nhave O O\nto O O\nplay O O\na O O\nsong O O\nin O O\nbrowses Name Name\nincluding O O\nAndroid Name Name\nand O O\nIphone Name Name\n. O O\n\nI O O\ndid O O\nit O O\nusing O O\nthe O O\nhtml5 Name Name\naudio O O\nplayer O O\n. O O\n\nBut O O\nplaybackrate Name Name\nis O O\nnot O O\nworking O O\nin O O\nMobile Name Name\nBrowsers Name Name\n. O O\n\nIs O O\nthere O O\nany O O\nlibrary O O\nor O O\nplugin O O\navailable O O\nfor O O\nthis O O\n? O O\n. O O\n\nIs O O\nweb-audio Name Name\nAPI Name Name\nsupports O O\nthis O O\nfeature O O\n? O O\n. O O\n\nIn O O\nthis O O\nsite O O\nplayback Name Name\nrate Name Name\nis O O\nworking O O\nin O O\nmobiles Name Name\ntoo O O\n. O O\n\nBut O O\nunable O O\nto O O\nfind O O\nwhich O O\nmethod O O\nthey O O\nare O O\nfollowing O O\n? O O\n\nPlease O O\nhelp O O\nme O O\n. O O\n\nThe O O\nsite O O\nyou O O\n're O O\nlinking O O\nto O O\nuses O O\nWeb Name Name\nAudio Name Name\n, O O\nbut O O\nit O O\ndoes O O\nn't O O\nuse O O\nplaybackrate Name Name\nto O O\nchange O O\nthe O O\ntempo O O\nof O O\nthe O O\nsong O O\n. O O\n\nInstead O O\nit O O\nschedules O O\neach O O\nnote O O\nseparately O O\n, O O\nso O O\nwhen O O\nyou O O\nchange O O\nthe O O\ntempo O O\n, O O\nwhat O O\nyou O O\n're O O\nreally O O\ndoing O O\nis O O\nchange O O\nthe O O\nBPM O O\nat O O\nwhich O O\nnotes O O\nare O O\nscheduled O O\n. O O\n\nYou O O\ncan O O\nthink O O\nof O O\nit O O\nas O O\nchanging O O\nthis O O\n: O O\n\nto O O\n: O O\n\nwhen O O\nyou O O\ngo O O\nfrom O O\n60 Name Name\nBPM Name Name\nto O O\n120 Name Name\nBPM Name Name\n. O O\n\nThere O O\nis O O\n, O O\nhowever O O\n, O O\na O O\nsimilar O O\nthing O O\nis O O\nWeb Name Name\nAudio Name Name\nas O O\nwhat O O\nyou O O\n're O O\ndoing O O\nwith O O\nthe O O\naudio O O\nelement O O\n. O O\n\nThe O O\nAudioBufferSourceNode Name Name\n, O O\nwhich O O\nyou O O\nuse O O\nto O O\nplay O O\na O O\npre O O\nrecorded O O\nsample O O\n, O O\nhas O O\na O O\nproperty O O\ncalled O O\nplaybackRate Name Name\n. O O\n\nThis O O\nchanges O O\nthe O O\nrate O O\nof O O\nthe O O\naudio O O\n( O O\nbut O O\ndoes O O\nn't O O\ndo O O\npitch O O\ncorrection O O\n! O O\n) O O\n. O O\n\nCheck O O\nit O O\nout O O\nat O O\nhttps://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode O O\n\nThere O O\nare O O\nno O O\nany O O\nexternal O O\nPlugin Name Name\nor O O\nAPI Name Name\nwhich O O\nis O O\nrequired O O\nto O O\nplay O O\naudio O O\nin O O\nBrowser Name Name\n, O O\nthis O O\nis O O\none O O\nof O O\nthe O O\nadvantages O O\nof O O\nusing O O\nHTML5 Name Name\n. O O\n\nBelow O O\ni O O\nam O O\nmentioning O O\nthe O O\nsame O O\nwith O O\neasy O O\nsyntax O O\nand O O\nattributes O O\n. O O\n\nI O O\n'm O O\nattempting O O\nto O O\nupdate O O\na O O\nMySQL Name Name\ntable O O\nusing O O\nC# Name Name\n, O O\nhowever O O\nI O O\n'm O O\ngetting O O\nthe O O\nerror O O\n\nBelow O O\nis O O\nthe O O\nfull O O\nquery O O\nI O O\n'm O O\nattempting O O\nto O O\nexecute O O\nwith O O\nthe O O\nvalues O O\nof O O\nthe O O\nvariables O O\ninserted O O\n. O O\n\nI O O\n've O O\nchecked O O\nthat O O\nthe O O\ncolumn Name Name\nnames O O\nare O O\ncorrect O O\nand O O\nthey O O\nare O O\n. O O\n\nI O O\njust O O\nca O O\nn't O O\nseem O O\nto O O\nspot O O\nwhat O O\nis O O\ninvalid O O\nabout O O\nmy O O\nquery O O\n, O O\nI O O\n'm O O\nsure O O\nit O O\n's O O\nsomething O O\nbasic O O\n. O O\n\nCan O O\nanyone O O\nspot O O\nwhat O O\nis O O\nwrong O O\nwith O O\nit O O\n? O O\n\nCheers O O\n\nEDIT O O\n- O O\nThere O O\nis O O\na O O\nsingle O O\nquotation O O\nmark O O\nafter O O\nthe O O\nuid='0 Name Name\nhowever O O\nit O O\nseems O O\nto O O\nhave O O\ndisapeared O O\nin O O\nthe O O\npost O O\n\nmissing O O\n' Name Name\nfollowing O O\nzero O O\n: O O\nnear Name Name\nciv_alive='0 Name Name\n\noriginal O O\n: O O\n\nshould O O\nbe O O\nto O O\navoid O O\nerror O O\nsyntax O O\n: O O\n\nand O O\nregarding O O\nmariadb Name Name\ncomments O O\n- O O\nmariadb Name Name\nis O O\na O O\nfork O O\nof O O\nmysql Name Name\nso O O\nthese O O\nare O O\npretty O O\nsimilar O O\n, O O\ntherefore O O\nwould O O\nnot O O\nmake O O\na O O\nproblem O O\nout O O\nof O O\nit O O\n. O O\n\nI O O\nhave O O\na O O\npandas.DataFrame Name Name\nwith O O\n3 O O\ncolumns Name Name\nof O O\ntype O O\nstr Name Name\nand O O\nn Name Name\nother O O\ncolumns Name Name\nof O O\ntype O O\nfloat64 Name Name\n. O O\n\nI O O\nneed O O\nto O O\ngroup O O\nrows O O\nby O O\none O O\nof O O\nthe O O\nthree O O\nstr Name Name\ncolumns O O\nand O O\napply O O\na O O\nfunction O O\nmyComplexFunc() Name Name\nwhich O O\nwill O O\nreduce O O\n`̀N Name Name\nrows O O\nto O O\none O O\nrow O O\n. O O\n\nmyComplexFunc() Name Name\ntake O O\nonly O O\nrows Name Name\nof O O\ntype O O\nfloat64 Name Name\n. O O\n\nThis O O\ncan O O\nbe O O\ndone O O\nwith O O\nsome O O\nfor Name Name\nloops Name Name\nbut O O\nit O O\nwill O O\nnot O O\nbe O O\nefficient O O\n, O O\nSo O O\nI O O\ntried O O\nto O O\nuse O O\nthe O O\nflexible O O\napply O O\nof O O\npandas Name Name\nbut O O\nit O O\nseems O O\nthat O O\nit O O\nruns O O\nthe O O\nheavy O O\ncode O O\nof O O\nmyComplexFunc() Name Name\ntwice O O\n! O O\n\nTo O O\nbe O O\nmore O O\nclear O O\n, O O\nhere O O\nis O O\na O O\nminimal O O\nexample O O\n\nLet O O\n\" O O\ndf Name Name\n\" O O\nbe O O\na O O\ndataFrame Name Name\nlike O O\nthis O O\n: O O\n\nmyComplexFunc() Name Name\n\nWhat O O\nI O O\nwant O O\n: O O\n\nThe O O\ncolumn O O\nB Name Name\nhave O O\nbeen O O\nremoved O O\nbecause O O\nit O O\n's O O\nnot O O\nof O O\ntype O O\nfloat64 Name Name\n. O O\n\nThanks O O\nin O O\nadvance O O\n\nYou O O\ncan O O\nfilter O O\nDataFrame Name Name\nby O O\ndtype Name Name\nby O O\nselect_dtypes Name Name\n, O O\nbut O O\nthen O O\nneed O O\naggreagate O O\nby O O\nSeries Name Name\ndf.A Name Name\n: O O\n\nbecause O O\nif O O\nuse O O\nonly O O\nA Name Name\n: O O\n\nget O O\n\nand O O\nit O O\nis O O\nright O O\n- O O\nall O O\nstring Name Name\ncolumns O O\nare O O\nexcluded O O\n( O O\nA Name Name\nand O O\nB Name Name\n) O O\n. O O\n\nSomething O O\ngoing O O\nwrong O O\nbadly O O\ndue O O\nto O O\nMessage Name Name\nCompose Name Name\nScreen Name Name\n. O O\n\nI O O\nam O O\nworking O O\non O O\na O O\nTabBar Name Name\nbased O O\napplication O O\n. O O\n\nIn O O\nsome O O\nscreens O O\nI O O\nam O O\nshowing O O\nToolBar Name Name\ninstead O O\nof O O\ntabBar Name Name\nby O O\nsetting O O\nhidesBottomBarWhenPushed Name Name\n= Name Name\nYES Name Name\n; Name Name\nand O O\nits O O\nworking O O\nfine O O\neverytime O O\n. O O\n\nBut O O\nIn O O\n1 O O\nscreen O O\nI O O\nam O O\nsending O O\nSMS O O\nby O O\nopening O O\nMessage Name Name\nCompose Name Name\nScreen Name Name\nwithin O O\nthe O O\niphone Name Name\nApp O O\n. O O\n\nSo O O\nproblem O O\noccurs O O\nif O O\nI O O\nopen O O\nMessage Name Name\nCompose Name Name\nScreen Name Name\nand O O\ni O O\nclicked O O\nCancel O O\nbutton Name Name\nof O O\nMessage O O\nScreen O O\n. O O\n\nSo O O\n, O O\nwhenever O O\ngoing O O\nback O O\nto O O\nthat O O\nmodule O O\nwhere O O\nI O O\nwas O O\nshowing O O\nToolBar Name Name\n. O O\n\nSo O O\non O O\nclick O O\nof O O\nbutton O O\nno O O\nToolBar Name Name\n. O O\n\nTotally O O\nblank O O\n, O O\nno O O\ntoolbar Name Name\nand O O\nno O O\ntabbar Name Name\n( O O\ntabbar Name Name\nis O O\nquite O O\nobvious O O\ni O O\nhave O O\nalready O O\nset O O\nhidesBottomBarWhenPushed Name Name\n) O O\n. O O\n. O O\n\nBut O O\nwhy O O\ntoolbar Name Name\nnow O O\nshowing O O\ndue O O\nto O O\nCompose Name Name\nscreen Name Name\n? O O\n\nThere O O\nis O O\nno O O\nlink O O\nwith O O\ncompose Name Name\nscreen Name Name\nto O O\nthis O O\nscreen Name Name\n. O O\n\nFar O O\ndifferent O O\nimplementation O O\nand O O\ndifferent O O\ncontrollers O O\n. O O\n\nI O O\nhave O O\ncheck O O\nby O O\ndebugging O O\n, O O\nToolbar Name Name\nframe O O\nis O O\nalso O O\nfine O O\n. O O\n\nPlease O O\nhelp O O\n\nI O O\nthink O O\nit O O\nis O O\nbecause O O\nthe O O\nMFMessageComposeViewController Name Name\nhas O O\ngot O O\na O O\nnavigation Name Name\nbar Name Name\n. O O\n\nYour O O\napplication O O\nshould O O\nbe O O\na O O\nnavigation O O\nbased O O\napplication O O\nfor O O\nthat O O\n. O O\n\nOtherwise O O\nyour O O\ntoolbar Name Name\n's O O\nframe O O\nposition O O\nwill O O\nbe O O\naffected O O\n. O O\n\nI O O\nhad O O\nthis O O\nkind O O\nof O O\nproblem O O\nonce O O\n. O O\n\nSo O O\ni O O\nchanged O O\nthe O O\napplication O O\ninto O O\nnavigation O O\nbased O O\nbut O O\nhid O O\nthe O O\nnavigation Name Name\ncontroller Name Name\n. Name Name\n\nHope O O\nthis O O\nmight O O\nhelp O O\nyou O O\n, O O\n\nHappy O O\ncoding O O\n! O O\n\nIssue O O\nfixed O O\n.. O O\n. O O\nhad O O\nproblem O O\nwith O O\nadding O O\nit O O\nto O O\nkeyframe Name Name\nwindow Name Name\n\nI O O\n'm O O\ntraying O O\nto O O\nread O O\nmails O O\nfrom O O\ngmail Name Name\n\nusing O O\nImapClient Name Name\n: O O\n\nAn O O\nexception Name Name\nof O O\ntype O O\n' O O\nSystem.Exception O O\n' O O\noccurred O O\nin O O\nAE.Net.Mail.dll Name Name\nbut O O\nwas O O\nnot O O\nhandled O O\nin O O\nuser O O\ncode O O\n\nAdditional O O\ninformation O O\n: O O\nxm003 Name Name\nBAD O O\nCould O O\nnot O O\nparse O O\ncommand O O\n\nThis O O\nproblem O O\nis O O\ncurrently O O\nan O O\nopen O O\nbug O O\nwith O O\nAE.Net.Mail Name Name\n. O O\n\nPlease O O\nsee O O\nthe O O\nfollowing O O\nURL O O\nfor O O\ninformation O O\n: O O\n\nhttps://github.com/andyedinborough/aenetmail/issues/197 O O\n\nIt O O\nlooks O O\nlike O O\n, O O\nfrom O O\nthe O O\nbug O O\ninformation O O\nand O O\ncomments O O\nthat O O\nit O O\n's O O\nto O O\ndo O O\nwith O O\nthe O O\nDateTime Name Name\nin O O\nthe O O\nsearch Name Name\ncondition Name Name\n. O O\n\nReplacing O O\nyour O O\ncurrent O O\nSearchCondition Name Name\nwith O O\nthe O O\nfollowing O O\nmight O O\nprevent O O\nthe O O\nproblem O O\n, O O\nif O O\nI O O\n'm O O\nreading O O\nthe O O\ncomments O O\ncorrectly O O\n: O O\n\n@Ahmado O O\nyou O O\ncan O O\nuse O O\npop3 O O\nfor O O\nreading O O\ninbox Name Name\nemail O O\n. O O\n\nthis O O\nis O O\nnot O O\nfor O O\nonly O O\ngmail Name Name\n, O O\nthis O O\ncan O O\nbe O O\nuse O O\nfor O O\nother O O\nemail O O\nalso.for O O\nthis O O\nyou O O\nneed O O\n2 O O\ndll Name Name\n. O O\n\nDownload O O\nthis O O\nin O O\nyour O O\napplicatin O O\nusing O O\nnuget Name Name\n. O O\n\nOpenPop.NET Name Name\nand O O\nAE.Net.Mail Name Name\n\nStep1 O O\n: O O\nAccording O O\nto O O\nyour O O\ncredential O O\nread O O\nall O O\ninbox Name Name\nemail O O\n: O O\n\nStep O O\n2 O O\n:Each O O\nemail O O\nhas O O\na O O\nunique O O\nid Name Name\n, O O\nusing O O\nthis O O\nyou O O\ncan O O\nget O O\nthe O O\nemail O O\ndetails O O\n: O O\n\nThis O O\ncode O O\nsample O O\nfor O O\nASP.NET Name Name\nMVC Name Name\n. O O\n\nFor O O\nyour O O\ncase O O\nyou O O\ncan O O\nalso O O\nreview O O\nthe O O\ncode O O\nsample O O\n\nI O O\nhave O O\nbeen O O\ntrying O O\nfor O O\ntwo O O\nweeks O O\nto O O\nfind O O\nbinaries O O\nfor O O\nffmpeg Name Name\nand O O\nSox Name Name\n( O O\narmeabi Name Name\n, O O\narmeabiv7 Name Name\n, O O\nx86 Name Name\n) O O\nbut O O\ni O O\ndid O O\nnot O O\nsucceed O O\n. O O\n\nI O O\ntried O O\nbuilding O O\nit O O\nmy O O\nself O O\nfrom O O\nthis O O\nproject O O\nbut O O\nI O O\nstill O O\ndid O O\nnot O O\nsucceed O O\n. O O\n\nCan O O\nyou O O\nhelp O O\nme O O\nbuild O O\nthe O O\nproject O O\nand O O\nthen O O\nshare O O\nthe O O\nbinaries Name Name\n? O O\n\nI O O\nwould O O\nheartly O O\nappreciate O O\n. O O\n\nHere O O\nis O O\nthe O O\ngithub Name Name\nrepository O O\n\nhttps://github.com/guardianproject/android-ffmpeg O O\n\nHow O O\nto O O\nget O O\nprevious O O\nor O O\nnext O O\nobject O O\nwith O O\nthis O O\nformat O O\nof O O\ncode O O\n? O O\n\nI O O\nknow O O\nhow O O\nto O O\ndo O O\nthat O O\nwith O O\n: O O\n\nYou O O\ncan O O\nuse O O\nenumerate Name Name\n: O O\n\nNote O O\nthat O O\nas O O\na O O\nmore O O\nefficient O O\nway O O\nfor O O\naccessing O O\nto O O\nnext O O\nitems O O\nand O O\nrefuse O O\nof O O\nmultiple O O\nindexing O O\nyou O O\ncan O O\nuse O O\niter() Name Name\nfunction O O\nto O O\ncreate O O\nan O O\niterator O O\nobject O O\nfrom O O\nyour O O\nlist Name Name\n( O O\nfrom O O\nsecond O O\nelement O O\nto O O\nend O O\n) O O\nand O O\naccess O O\nto O O\nnext O O\nelements O O\nin O O\neach O O\niteration O O\nwith O O\nnext Name Name\n: O O\n\nNote O O\nthat O O\nif O O\nyou O O\ndo O O\nn't O O\npass O O\nthe O O\nNone Name Name\nas O O\nthe O O\nsecond O O\nargument O O\nto O O\nnext() Name Name\nfunction O O\nit O O\nwill O O\nraise O O\na O O\nStopIteration O O\nerror.You O O\ncan O O\nalso O O\nhandle O O\nit O O\nwith O O\na O O\ntry-except Name Name\nstatement O O\n. O O\n\nAlso O O\nfor O O\nshort O O\nlists Name Name\nyou O O\ncan O O\nuse O O\nzip Name Name\nfunction O O\nand O O\nfor O O\nlong O O\nlists Name Name\nitertools.izip() Name Name\nfunction O O\n( O O\nzip Name Name\nin O O\npython Name Name\n3) Name Name\n: O O\n\nzip(l,l[1:]) Name Name\nwill O O\ngive O O\nyou O O\nthe O O\nfollowing O O\npairs O O\nof O O\nitems O O\n: O O\n\nand O O\nin O O\nthe O O\nloop O O\nyou O O\ncan O O\nuse O O\ni Name Name\nas O O\nthe O O\ncurrent O O\nitem O O\nthen O O\nj Name Name\nwill O O\nbe O O\nthe O O\nnext O O\nitem O O\nor O O\nuse O O\nj Name Name\nas O O\nthe O O\ncurrent O O\nthen O O\ni Name Name\nwill O O\nbe O O\nthe O O\nprevious O O\n! O O\n\n:) O O\n\nThere O O\nare O O\nmany O O\ndifferent O O\noptions O O\ndepending O O\non O O\nwhat O O\nyour O O\nuse O O\nfor O O\nthe O O\nneighbour O O\nentry O O\nis O O\n. O O\n\nFor O O\ninstance O O\n, O O\nif O O\nyou O O\nonly O O\nwant O O\nto O O\nprocess O O\npairs O O\n, O O\nand O O\nnot O O\nmodify O O\nthe O O\nlist Name Name\n: O O\n\nOr O O\nif O O\nyou O O\nneed O O\nto O O\nkeep O O\nthe O O\nprior O O\nentry O O\nas O O\na O O\nreference O O\n: O O\n\nNone Name Name\nhere O O\nis O O\nused O O\nin O O\nplace O O\nof O O\na O O\nprior O O\nitem O O\nfor O O\nthe O O\nfirst O O\n, O O\nsimilar O O\nto O O\nhow O O\nit O O\n's O O\nused O O\nfor O O\nthe O O\nnext O O\nitem O O\nafter O O\nthe O O\nlast O O\nin O O\nKasra O O\n's O O\niter()-based Name Name\nexample O O\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\nprocess O O\nsome O O\nCSS Name Name\nusing O O\nPHP Name Name\n. O O\n\nThe O O\nCSS Name Name\nI O O\nwant O O\nto O O\nprocess O O\nis O O\npage-specific O O\nand O O\nso O O\nI O O\nwant O O\nto O O\nset O O\na O O\nvariable O O\nin O O\nmy O O\nindex.php Name Name\nto O O\nonly O O\necho O O\nthe O O\nCSS Name Name\nwhen O O\nthe O O\nvariable O O\nis O O\nset O O\n. O O\n\nindex.php Name Name\n\nheader.php Name Name\n\nimport.php Name Name\n\nThe O O\nheader O O\nis O O\nproperly O O\nset O O\nfor O O\nthis O O\nfile O O\n. O O\n\nand O O\nthe O O\nCSS Name Name\nis O O\ninterpreted O O\n. O O\n\nstyles.css.php Name Name\n\nHow O O\ncan O O\nI O O\nmake O O\nsure O O\n$name Name Name\nis O O\nset O O\nto O O\nit O O\n's O O\nvalue O O\n, O O\nas O O\nset O O\nin O O\nindex.php Name Name\n? O O\n\nEDIT O O\n: O O\nMy O O\nfinal O O\nsolution O O\nwas O O\nto O O\nmake O O\nan O O\nobject O O\nfrom O O\nthe O O\nstdClass Name Name\nand O O\nadd O O\nthe O O\nvariables O O\nI O O\nneeded O O\nas O O\nattributes O O\nto O O\nthe O O\nobject O O\n. O O\n\nputting O O\na O O\nGET Name Name\nrequest O O\nin O O\nthe O O\nlink O O\nto O O\nthe O O\nCSS Name Name\nfile O O\nwhich O O\nwas O O\nthe O O\nBase64 Name Name\nof O O\nthe O O\nJSON Name Name\nstring Name Name\nof O O\nthe O O\nobject O O\n. O O\n\nThe O O\nproblem O O\nis O O\nthat O O\nyou O O\nare O O\nlinking O O\nto O O\nthat O O\nstyles.css.php Name Name\nfrom O O\ninside O O\nthe O O\nrendered O O\nhtml Name Name\n. O O\n\nThis O O\nmeans O O\nthat O O\npage O O\nwill O O\nbe O O\nfetched O O\nin O O\na O O\nseparate O O\nrequest O O\n( O O\nas O O\nyou O O\ncan O O\nse O O\nwhen O O\nyou O O\ninspect O O\nthe O O\npage O O\n) O O\n. O O\n\nThis O O\nrequest O O\nnever O O\npasses O O\ntrough O O\nyour O O\nindex.php Name Name\n, O O\nand O O\nso O O\nthe O O\n$name Name Name\nvariable O O\nwill O O\nnot O O\nbe O O\nset O O\n. O O\n\nI O O\nwould O O\nadvise O O\nyou O O\nto O O\ninclude O O\nthe O O\ncss Name Name\nin O O\nthe O O\nrendered O O\nHTML Name Name\ninside O O\na O O\nstyle O O\nblock O O\n. O O\n\nIt O O\nshould O O\nbe O O\nas O O\neasy O O\nas O O\nchanging O O\nyour O O\nimport.php Name Name\nto O O\nthis O O\n: O O\n\nThis O O\nalso O O\nhas O O\nthe O O\nadded O O\nbenefit O O\nof O O\nreducing O O\nthe O O\nnumber O O\nof O O\nrequests O O\nthe O O\nbrowser Name Name\nhas O O\nto O O\nmake O O\n, O O\nand O O\nshould O O\ntherefore O O\nspeed O O\nup O O\nthe O O\npage O O\n. O O\n\nThis O O\nis O O\nbtw O O\nnot O O\na O O\nvery O O\nstandard O O\nmethod O O\nof O O\nusing O O\ncss Name Name\n. O O\n\nI O O\nbelieve O O\nit O O\nwould O O\nbe O O\nbetter O O\nto O O\nadd O O\nsome O O\nsort O O\nof O O\nid O O\n( O O\nor O O\ndata O O\nattribute O O\n) O O\non O O\nyour O O\nbody Name Name\ntag O O\nthat O O\nindicates O O\nthe O O\nname O O\nof O O\nthe O O\npage O O\nyou O O\nare O O\non O O\n. O O\n\nIn O O\nthe O O\ncss Name Name\nfile O O\n( O O\nthat O O\ndoes O O\nnot O O\nrun O O\ntrough O O\nphp Name Name\n, O O\njust O O\na O O\nstandard O O\ncss Name Name\nfile O O\n) O O\n, O O\nyou O O\ncould O O\nthen O O\ndo O O\nsomething O O\nlike O O\nthis O O\n: O O\n\nThe O O\n<link> Name Name\ntag O O\nmakes O O\nan O O\nHTTP O O\nrequest O O\nfor O O\na O O\nfile O O\ntotally O O\nindependent O O\nof O O\nthe O O\nPHP Name Name\npages O O\nthat O O\nare O O\nincluding O O\neach O O\nother O O\n, O O\nso O O\n$name Name Name\nis O O\nnot O O\navailable O O\nin O O\nstyles.css.php Name Name\n. O O\n\nTo O O\ndo O O\nit O O\nthis O O\nway O O\nyou O O\nneed O O\nto O O\nlink O O\nthe O O\nstyle O O\nsheet O O\nsomething O O\nlike O O\nthis O O\nto O O\npass O O\n$name Name Name\nas O O\na O O\nget O O\nvariable O O\n: O O\n\nThen O O\nin O O\nthe O O\nstyle O O\nsheet O O\nstyles.css.php O O\nuse O O\n$_GET['name'] Name Name\n: O O\n\nI O O\nhave O O\na O O\nscenario O O\nwhere O O\nmy O O\napplication O O\nopens O O\na O O\ndocument Name Name\nin O O\ngoogle Name Name\ndrive Name Name\nand O O\nallows O O\nuser O O\nto O O\nedit O O\n. O O\n\nNow O O\nif O O\nI O O\nwant O O\nmultiple O O\nusers O O\nto O O\nedit O O\nthe O O\ndocument Name Name\n, O O\nhow O O\n( O O\nwhat O O\ngoogle O O\napi-oauth/openconnect/identity O O\nfederation/sign O O\nin O O\n) O O\nshould O O\nI O O\nuse O O\nto O O\nauthenticate O O\nusers O O\nand O O\nget O O\ntheir O O\nprofile O O\ninfo O O\n. O O\n\nSo O O\nthat O O\neach O O\nuser O O\ncan O O\naccess O O\nthe O O\nsame O O\ndocument Name Name\nand O O\nedit O O\nit O O\n. O O\n\nCurrently O O\n, O O\nI O O\nam O O\nauthenticating O O\nusing O O\nservice O O\naccount O O\nand O O\nallowing O O\nanonymous O O\naccess O O\n. O O\n\nHow O O\ncan O O\nI O O\nimplement O O\nthe O O\nabove O O\nscenario O O\n? O O\n\nWhat O O\nAPI O O\n's O O\nmight O O\nhelp O O\nme O O\nto O O\nlook O O\nat O O\n? O O\n\nKindly O O\nguide O O\n! O O\n\nYou O O\ncan O O\nactually O O\nuse O O\nGoogle Name Name\nDrive Name Name\nRest Name Name\nAPI Name Name\nwhich O O\nuses O O\nthese O O\nauthorization O O\nprotocols O O\n: O O\n\nOAuth Name Name\n2.0 Name Name\nto O O\nauthorize O O\nrequests O O\n, O O\nor O O\n\nif O O\nyour O O\napplication O O\nuses O O\nGoogle Name Name\nSign-in O O\n, O O\nsome O O\naspects O O\nof O O\nauthorization O O\nare O O\nhandled O O\nfor O O\nyou O O\n. O O\n\nYou O O\ncan O O\nfollow O O\nthis O O\ngeneral O O\nauthorization O O\nprocess O O\nfor O O\nall O O\napplication O O\ntypes O O\nas O O\ngiven O O\nin O O\nAuthorizing O O\nrequests O O\nwith O O\nOAuth Name Name\n2.0 Name Name\n: O O\n\nIn O O\naddition O O\nto O O\nthat O O\n, O O\nif O O\nyour O O\napp O O\nrequires O O\naccess O O\nto O O\nany O O\nother O O\nGoogle Name Name\nAPIs Name Name\n, O O\nyou O O\ncan O O\nadd O O\nscopes O O\nas O O\ngiven O O\nin O O\nOAuth Name Name\n2.0 Name Name\nscope O O\ninformation O O\nfor O O\nthe O O\nDrive Name Name\nAPI Name Name\ndetailed O O\nin O O\nthe O O\ndocumentation O O\n. O O\n\nFor O O\nmore O O\ninformation O O\n, O O\nplease O O\ngo O O\nthrough O O\nthe O O\ngiven O O\ndocumentations O O\nand O O\nyou O O\nmay O O\nalso O O\nadd O O\nUsing O O\nOAuth Name Name\n2.0 Name Name\nto O O\nAccess O O\nGoogle Name Name\nAPIs Name Name\nin O O\nyour O O\nreferences O O\nwith O O\nregards O O\nto O O\nGoogle Name Name\nAPI Name Name\nscopes O O\n. O O\n\nI O O\nhave O O\na O O\nSQL Name Name\nServer O O\ntable Name Name\nwith O O\nthe O O\nfollowing O O\ndata O O\n\nThe O O\nabove O O\ntable Name Name\nstores O O\nthe O O\ndata O O\nof O O\nconnecting O O\nflights O O\nbetween O O\ndifferent O O\ncities O O\n. O O\n\nI O O\nwant O O\na O O\nresult O O\nin O O\nthe O O\nfollowing O O\nformat O O\n- O O\n\nPlease O O\nadvise O O\non O O\nhow O O\nthis O O\ncan O O\nbe O O\nachieved O O\n. O O\n\nJust O O\nuse O O\ngroup Name Name\nby Name Name\nclause O O\nwith O O\nconditional O O\naggregation O O\n\nEdit O O\n: O O\n\nYou O O\ncould O O\nalso O O\ndirectly O O\nfetch O O\nthe O O\nsource O O\nand O O\ndestination O O\nstation O O\nby O O\nusing O O\nfirst_value() Name Name\nand O O\nlast_value() Name Name\nfunction O O\n\nNote O O\n: O O\nThe O O\nabove O O\nis O O\ntested O O\nbased O O\non O O\ndata O O\nprovided O O\nin O O\nQ O O\n\nTry O O\nthe O O\nfollowing O O\n\nOr O O\nyou O O\ncan O O\nuse O O\nwindow O O\nfunctions O O\nFIRST_VALUE Name Name\nand O O\nLAST_VALUE Name Name\nif O O\nyour O O\nversion O O\nof O O\nSQLServer Name Name\nsupports O O\nthem O O\n\nIf O O\nID Name Name\nare O O\ninconsistent O O\nthen O O\nyou O O\ncan O O\nuse O O\na O O\nrecursive O O\nCTE O O\n\nIt O O\n's O O\na O O\nsymbiosis O O\nfrom O O\ntwo O O\nqueries Name Name\nwhich O O\nprovided O O\nYogesh O O\nSharma O O\nand O O\nmy O O\nfirst O O\nquery Name Name\n\nI O O\nam O O\ntrying O O\nto O O\ninsert O O\na O O\nclick O O\nto O O\ncall O O\nbutton Name Name\non O O\nmy O O\nhome O O\npage O O\n. O O\n\nThis O O\nis O O\nthe O O\nfirst O O\nsite O O\nI O O\n've O O\nbuilt O O\nusing O O\nBootstrap Name Name\n( O O\nBootstrap Name Name\n3.2.0 Name Name\n) O O\n. O O\n\nPlease O O\nview O O\nthe O O\ncode O O\nand O O\nhelp O O\nme O O\nfigure O O\nout O O\nwhat O O\nI O O\n'm O O\ndoing O O\nwrong O O\n. O O\n\nThank O O\nyou O O\n\nYou O O\ncan O O\nvisit O O\nthe O O\nsite O O\nhere O O\n. O O\n\nIt O O\nis O O\nnot O O\nworking O O\nbecause O O\nyou O O\nhave O O\ninvalid O O\nHTML Name Name\n( O O\nan O O\nhref Name Name\nattribute O O\non O O\na O O\nbutton Name Name\n) O O\n. O O\n\nUsage O O\ninfo O O\nfrom O O\nW3C Name Name\n\nThis O O\nshould O O\ndo O O\nthe O O\ntrick O O\n: O O\n\nAre O O\nthere O O\nan O O\nefficient O O\nalgorithm O O\nto O O\nsearch O O\nand O O\ndump O O\nall O O\ncommon O O\nsubstrings O O\n( O O\nwhich O O\nlength O O\nis O O\n3 O O\nor O O\nlonger O O\n) O O\nbetween O O\n2 O O\nstrings Name Name\n? O O\n\nExample O O\ninput O O\n: O O\n\nExample O O\noutput O O\n: O O\n\nIn O O\nthe O O\nexample O O\n, O O\n\" Name Name\n-D Name Name\n\" Name Name\n, O O\n\" Name Name\n-M Name Name\n\" Name Name\nis O O\nalso O O\na O O\ncommon O O\nsubstring O O\nbut O O\nis O O\nnot O O\nrequired O O\n, O O\nbecause O O\nit O O\n's O O\nlength O O\nis O O\nonly O O\n2 Name Name\n. O O\n\n( O O\nThere O O\nmight O O\nbe O O\nsome O O\nmissing O O\noutputs O O\nin O O\nexample O O\nbecause O O\nthere O O\nare O O\nso O O\nmany O O\nof O O\nthem O O\n.. O O\n. O O\n) O O\n\nYou O O\ncan O O\nfind O O\nall O O\ncommon O O\nsubstrings O O\nusing O O\na O O\ndata O O\nstructure O O\ncalled O O\na O O\nGeneralized Name Name\nsuffix Name Name\ntree Name Name\n\nLibstree Name Name\ncontains O O\nsome O O\nexample O O\ncode O O\nfor O O\nfinding O O\nthe O O\nlongest O O\ncommon O O\nsubstring O O\n. O O\n\nThat O O\nexample O O\ncode O O\ncan O O\nbe O O\nmodified O O\nto O O\nobtain O O\nall O O\ncommon O O\nsubstrings O O\n. O O\n\nI O O\nneed O O\na O O\nway O O\nto O O\nbe O O\nable O O\nto O O\nread O O\nfrom O O\na O O\nUTF-8 O O\nencoded O O\nfile O O\nand O O\nstore O O\ndata O O\nfrom O O\nit O O\ninto O O\n\" O O\nUTF-8 O O\ncompatible O O\nstrings Name Name\n\" O O\nof O O\nsome O O\nsort O O\n, O O\nin O O\nC++ Name Name\n. O O\n\nThis O O\ndata O O\nneeds O O\nto O O\nbe O O\nwritten O O\nback O O\nto O O\na O O\nUTF-8 O O\nencoded O O\nfile O O\nlater O O\non O O\n. O O\n\nThere O O\nseems O O\nto O O\nbe O O\na O O\nlot O O\nof O O\nadvice O O\non O O\ngoogle Name Name\nabout O O\ndoing O O\nthis O O\nin O O\nWindows Name Name\nbut O O\nI O O\ncannot O O\nfind O O\nany O O\nhelp O O\nfor O O\nUnix Name Name\nsystems O O\n. O O\n\nThanks O O\nfor O O\nyour O O\nhelp O O\n! O O\n\nIf O O\nall O O\nyou O O\nneed O O\nto O O\ndo O O\nis O O\nread O O\nand O O\nwrite O O\nit O O\nthen O O\nstd::string Name Name\nis O O\nfine O O\n. O O\n\nThis O O\nworks O O\nbecause O O\nno O O\nmulti-character O O\nUTF O O\ncodepoint O O\noverlaps O O\nwith O O\nan O O\nan O O\nASCII O O\ncharacter O O\nso O O\nthe O O\nstandard O O\nprocessing O O\nof O O\ntext O O\nworks O O\njust O O\nfine O O\nin O O\nrelation O O\nto O O\nend O O\nof O O\nline O O\nsequence O O\nand O O\nthere O O\nis O O\nno O O\nother O O\nprocessing O O\ndone O O\nby O O\nthe O O\nstream O O\n. O O\n\nWhat O O\nyou O O\nread O O\nis O O\nwhat O O\nyou O O\nget O O\n. O O\n\nOutputting O O\nthe O O\nstring Name Name\ndoes O O\nnot O O\nchange O O\nany O O\nof O O\nthe O O\ncodepoints O O\n. O O\n\nNow O O\nif O O\nyou O O\nneed O O\nto O O\nmanipulate O O\nthe O O\ntext O O\nthat O O\nis O O\na O O\ndifferent O O\nquestion O O\nand O O\ngets O O\nmore O O\ncomplex O O\n. O O\n\nUsually O O\nmanipulating O O\nUTF-8 O O\nis O O\nway O O\nto O O\nhard O O\n( O O\ncan O O\nbe O O\ndone O O\nbut O O\nnot O O\nworth O O\nit O O\nIMO O O\n) O O\n. O O\n\nWhen O O\nit O O\ncomes O O\nto O O\nmanipulating O O\nthe O O\ntext O O\nyou O O\nwant O O\nto O O\nconvert O O\nthe O O\nUTF-8 O O\n( O O\nwhich O O\nis O O\nnot O O\na O O\nfixed O O\nwidth O O\n) O O\nto O O\nan O O\ninternal O O\nfixed O O\nwidth O O\nformat O O\n; O O\n( O O\nUTF-16 O O\nor O O\nUTF-32 O O\nare O O\ncommon O O\nformats O O\nfor O O\nmanipulation O O\nand O O\neasy O O\nto O O\nuse O O\n; O O\n( O O\nUTF-16 O O\nwindows Name Name\n, O O\nUTF-32 O O\nfor O O\nmost O O\n* Name Name\nnix Name Name\nlike O O\nOS O O\n) O O\n) O O\n. O O\n\nThe O O\neasiest O O\nway O O\nto O O\ndo O O\nthis O O\nis O O\nto O O\nimbue O O\nthe O O\nstream O O\nwith O O\na O O\nfacet O O\nthat O O\nknows O O\nthe O O\ninput O O\nis O O\nin O O\nUTF-8 O O\nand O O\nwill O O\nconvert O O\nit O O\nautomatically O O\n. O O\n\nThere O O\nare O O\na O O\ncouple O O\nof O O\nthese O O\nfacets O O\nfloating O O\naround O O\nin O O\ndifferent O O\nlibraries O O\n. O O\n\nBut O O\nan O O\neasy O O\none O O\nto O O\nfind O O\nis O O\nboost O O\n: O O\n\nhttp://www.boost.org/doc/libs/1_38_0/libs/serialization/doc/codecvt.html O O\n\nNote O O\n: O O\nIt O O\nis O O\nalso O O\nin O O\nthe O O\nlatest O O\nversion O O\nof O O\nboost Name Name\n1.46 Name Name\n\nThe O O\nprocesses O O\nis O O\nthe O O\nsame O O\nfor O O\nwritting O O\nUTF-16/32 O O\nback O O\nto O O\na O O\nstream O O\nand O O\nconverting O O\nit O O\nto O O\nUTF-8 O O\n\nNote O O\n. O O\n\nYou O O\nshould O O\nimbue O O\nthe O O\nfile O O\nbefore O O\nit O O\nis O O\nopened O O\n. O O\n\nDifferent O O\nimplementations O O\nof O O\nthe O O\nstream O O\nwill O O\nreact O O\ndifferently O O\nif O O\nyou O O\nimbue O O\nthe O O\nstream O O\nafter O O\nit O O\nis O O\nopen O O\n. O O\n\nThus O O\nit O O\nis O O\nbest O O\nto O O\nimbue O O\nthe O O\nstream O O\nbefore O O\nopening O O\nit O O\n. O O\n\nDinkumware O O\nalso O O\nhas O O\na O O\nset O O\nof O O\nconversion O O\nfacets O O\n( O O\nnot O O\nsure O O\nif O O\nthey O O\nare O O\nfree O O\n) O O\n. O O\n\nhttp://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=index_cvt.html#Code%20Conversions O O\n\nNote O O\n: O O\nI O O\nprefer O O\nto O O\nuse O O\nthe O O\nterms O O\nUTF-X O O\nrather O O\nthan O O\nUCS-Y O O\n. O O\n\nThough O O\ntechnically O O\nthere O O\nare O O\nvery O O\nminor O O\ndifferences O O\nthese O O\nare O O\ninconsequential O O\ncompared O O\nto O O\nthe O O\nconfusion O O\nyou O O\ncan O O\ncreate O O\nby O O\nswitching O O\nbetween O O\nthe O O\ntwo O O\nterms O O\nwhile O O\ntalking O O\nabout O O\nthe O O\nsubject O O\n. O O\n\nStick O O\nto O O\none O O\nunless O O\nyou O O\nneed O O\nto O O\ntalk O O\nexplicitly O O\nabout O O\na O O\nfeature O O\n( O O\nlike O O\nSurrogate O O\npairs O O\n) O O\n. O O\n\nThis O O\ncode O O\ntakes O O\npractically O O\nno O O\ntime O O\nat O O\nall O O\nwhen O O\noptimizing O O\nwith O O\n-O3 O O\n\nWhat O O\ncompiler Name Name\noptimization O O\nis O O\nmaking O O\nthis O O\ncode O O\ngo O O\nfrom O O\n0.014 O O\nseconds O O\nwith O O\n-O0 O O\nto O O\n0.000000 O O\nwith O O\n-03 Name Name\n\nThe O O\ninternal O O\nlarge O O\nloop O O\nhas O O\nno O O\nside O O\neffects O O\nsince O O\nyou O O\n're O O\nnot O O\nusing O O\nB Name Name\nanywhere O O\n, O O\nso O O\nany O O\ndecent O O\ncompiler Name Name\nwith O O\n-O3 Name Name\nwill O O\neliminate O O\nit O O\n. O O\n\nTo O O\navoid O O\nthat O O\n, O O\nyou O O\ncould O O\ntry O O\nto O O\nsummarize O O\nthe O O\nvalues O O\nand O O\nprint O O\nout O O\nthe O O\noutcome O O\nat O O\nthe O O\nend O O\n. O O\n\nAlternatively O O\n, O O\nprinting O O\nsome O O\nrandom O O\nelement O O\nfrom O O\nB Name Name\nmight O O\nmake O O\nthe O O\ncompiler Name Name\nsuspicious O O\nenough O O\nto O O\navoid O O\nthat O O\nelimination O O\n\nIt O O\nis O O\nhard O O\nto O O\nsay O O\nfor O O\nsure O O\nwithout O O\nchecking O O\nthe O O\ngenerated Name Name\nassembly Name Name\n. O O\n\nIn O O\ngeneral O O\n, O O\nthere O O\nis O O\nas-if O O\nrule O O\n, O O\nwhich O O\n\nIt O O\ncould O O\nbe O O\n, O O\nfor O O\ninstance O O\n, O O\nthat O O\nsince O O\nneither O O\nA Name Name\nno O O\nB Name Name\nare O O\nused O O\nanywhere O O\n, O O\nthe O O\ncompiler Name Name\njust O O\nomits O O\n\nas O O\nwell O O\nas O O\n\nI O O\nhave O O\na O O\nproblem O O\n. O O\n\nI O O\nspend O O\naround O O\n5 O O\nhours O O\ntrying O O\neverything O O\n, O O\nbut O O\nI O O\nwas O O\nnot O O\neven O O\nable O O\nto O O\nreproduce O O\nit O O\nproperly O O\nso O O\nI O O\ninclude O O\nthe O O\nsimplified O O\noriginal O O\nsource O O\ncode O O\n. O O\n\nI O O\napologize O O\nfor O O\nthe O O\nextent O O\n, O O\nbut O O\nI O O\nwanted O O\nto O O\ninclude O O\nall O O\nthe O O\nrelevant O O\ninformation O O\nI O O\nfound O O\nout O O\nso O O\nfar O O\n. O O\n\nThis O O\nis O O\none O O\nof O O\nthe O O\nfew O O\ntimes O O\nI O O\nfeel O O\ncompletely O O\npowerless O O\nand O O\nkindly O O\nrequest O O\nyour O O\nhelp O O\n. O O\n\nAny O O\nideas O O\nare O O\nwelcome O O\n. O O\n\nAlso O O\nany O O\ncomments O O\nthat O O\ncan O O\nbring O O\nat O O\nleast O O\nsome O O\nlight O O\nto O O\nthe O O\nmatter O O\n. O O\n\nThe O O\nbehaviour O O\nin O O\nthis O O\ncase O O\nis O O\na O O\ncomplete O O\nmystery O O\nto O O\nme O O\n. O O\n\nI O O\nam O O\nprogramming O O\nin O O\nQtCreator Name Name\nin O O\nUbuntu Name Name\n. O O\n\nI O O\nam O O\ntrying O O\nto O O\ndevelop O O\na O O\nframework O O\nto O O\nsolve O O\nmathematical O O\nproblems O O\nusing O O\na O O\nPopulation Name Name\nof O O\ncandidate O O\nsolutions O O\n, O O\nwhich O O\nshould O O\nevolve O O\ninto O O\nthe O O\ntrue O O\nsolution O O\n. O O\n\nThere O O\nare O O\n3 O O\nclasses O O\ninvolved O O\n: O O\nPopulation Name Name\n, O O\nPopulationMember Name Name\nand O O\nProblem Name Name\n: O O\n\nUsually O O\nmy O O\nprogram O O\nruns O O\nin O O\nloops O O\n, O O\nwhere O O\nthe O O\npopulation Name Name\ncalls O O\nits O O\nvarious O O\nmethods O O\n. O O\n\nOne O O\nof O O\nthem O O\nis O O\nPopulation::evaluate() Name Name\n. O O\n\nMy O O\nprogram O O\nran O O\ngreat O O\nuntil O O\nI O O\nintroduced O O\nsome O O\nnew O O\nmethods O O\nof O O\nPopulation Name Name\n. O O\n\nThen O O\nI O O\nget O O\na O O\nsegmentation O O\nerror O O\nin O O\nthe O O\nmiddle O O\nof O O\nprogram O O\n. O O\n\nThe O O\nstrangest O O\nthing O O\nis O O\nthat O O\nit O O\nhappens O O\nonly O O\nafter O O\nthe O O\n10 O O\nloops O O\n, O O\nafter O O\nthe O O\npopulation Name Name\nexecuted O O\nreport() Name Name\n. O O\n\nAlso O O\nafter O O\nsome O O\nexperimentation O O\n, O O\nwhen O O\nI O O\nexcluded O O\nall O O\nthe O O\noperations O O\nwhich O O\nrequire O O\ndynamic O O\nallocation O O\nof O O\nsome O O\nsort O O\n( O O\nstrings Name Name\n) O O\nfrom O O\nthe O O\nreport() Name Name\nmethod O O\n, O O\nI O O\ndo O O\nnot O O\nget O O\nthe O O\nerror O O\n. O O\n\nConversely O O\nwhen O O\nI O O\ndisable O O\nthe O O\nsorting O O\nmethod O O\n( O O\nuses O O\neither O O\nstd::sort Name Name\nor O O\nqSort Name Name\n) O O\nthe O O\nproblem O O\nstops O O\n. O O\n\nAlso O O\nwhen O O\nI O O\nleave O O\nthe O O\nactions O O\ndone O O\nby O O\nthe O O\ntemp Name Name\nPopulation Name Name\n, O O\nthere O O\nis O O\nno O O\nproblem O O\n. O O\n\nSo O O\nI O O\nstarted O O\nto O O\ndebug O O\nthe O O\nprogram O O\n. O O\n\nI O O\nlet O O\nit O O\ncomplete O O\n10 O O\nloops O O\nand O O\nstarted O O\nto O O\ndebug O O\nstep O O\nby O O\nstep O O\n. O O\n\nI O O\nwent O O\ninto O O\nPopulation->evaluate() Name Name\n; Name Name\n\n} Name Name\n\ndebug O O\n: O O\n\nThe O O\naddres O O\nprinted O O\nout O O\nis O O\n0xbffff628 Name Name\n. O O\n\nThis O O\nis O O\nsame O O\nas O O\nthe O O\nprevious O O\n10 Name Name\n* Name Name\npopulation_->members_.count() Name Name\nprintouts O O\n. O O\n\nI O O\ngo O O\ninside O O\nthe O O\n( Name Name\n* Name Name\nit Name Name\n) Name Name\n-> Name Name\nevaluate() Name Name\n; Name Name\nHere O O\nI O O\nswitch O O\nto O O\nassembly Name Name\ncode O O\n: O O\n\nI O O\ngo O O\ninside O O\nthe O O\ncall O O\nof O O\nfunction O O\nat O O\nthe O O\nlast O O\ninstruction O O\n. O O\n\nAt O O\nthe O O\ninstant O O\nI O O\ndo O O\nthis O O\n, O O\nall O O\nthe O O\nattributes O O\nin O O\nproblem_ Name Name\nbecome O O\nnot O O\naccessible O O\naccording O O\nto O O\nmy O O\ndebugger Name Name\n. O O\n\nAt O O\nthis O O\npoint O O\nall O O\nis O O\nlost O O\n. O O\n\ndebug O O\n: O O\n\nFinally O O\nthe O O\naddress O O\nthe O O\nproblem_ Name Name\nis O O\npointing O O\nat O O\nbecomes O O\n0xbffff780 Name Name\ninstead O O\nof O O\n0xbffff628 Name Name\n. O O\n\nAn O O\nincrement O O\nof O O\n344 Name Name\n\nThis O O\nhappens O O\nalways O O\n. O O\n\nThe O O\nincrement O O\nis O O\n344 Name Name\n. O O\n\nIf O O\nI O O\nmake O O\nsome O O\nminor O O\nchanges O O\nin O O\nthe O O\nprogram O O\n, O O\nthe O O\naddress O O\nchanges O O\n, O O\nbut O O\nthe O O\ndifference O O\nbetween O O\nthese O O\ntwo O O\naddresses O O\nremains O O\n344 Name Name\n. O O\n\nThis O O\nis O O\nall O O\nthe O O\nmore O O\npuzzling O O\n, O O\nsince O O\nthe O O\nsize O O\nof O O\nall O O\nmy O O\nthree O O\nclasses O O\nis O O\nless O O\nthan O O\n100 Name Name\n. O O\n\nThe O O\nprogram O O\ncrashes O O\ninside O O\nthe O O\nvoid Name Name\nProblem Name Name\n:: Name Name\nevaluate(PopulationMember&)const Name Name\n; Name Name\nmethod O O\nas O O\nsoon O O\nas O O\nsome O O\nlogic O O\nis O O\ninvolved O O\n. O O\n\nEDIT O O\n: O O\n\nYou O O\nare O O\ncopying O O\naround O O\nPopulation-instances Name Name\nquite O O\na O O\nbit O O\n: O O\n1 O O\n. O O\nyou O O\nare O O\nreturning O O\na O O\nlocal O O\ncopy O O\nby O O\nvalue O O\n, O O\n2 O O\n. O O\ncopying O O\nagain O O\nby O O\nassigning O O\ninto O O\nanother O O\nlocal O O\nwith O O\n\nAll O O\nthese O O\ninstances O O\nget O O\npointers Name Name\nto O O\nPopulationMember Name Name\nand O O\nownsMembers_ Name Name\nis O O\nalways O O\nset O O\ntrue Name Name\n- O O\nthis O O\nlooks O O\nquite O O\na O O\nbit O O\nfishy O O\nand O O\nyou O O\nmight O O\nwant O O\nto O O\ndebug O O\nwith O O\nbreakpoints O O\nin O O\nyour O O\ndestructors/constructors O O\nto O O\nfind O O\nout O O\nthe O O\nlifecycle O O\nof O O\neach O O\npopulation Name Name\nand O O\nits O O\nmembers O O\n. O O\n\nEDIT O O\n: O O\nappend O O\nmethod O O\n\nThis O O\nmeans O O\nthat O O\nthe O O\nmembers O O\nto O O\nnot O O\npoint O O\nto O O\nthe O O\ncorrect O O\nPopulation Name Name\nanymore O O\n! O O\n\nThe O O\nvalue O O\nof O O\nPopulation& Name Name\nis O O\nstored O O\non O O\nstack Name Name\nand O O\ngets O O\ndeleted O O\nafter O O\nthe O O\nfor Name Name\nloop O O\nends O O\n, O O\nbut O O\nthe O O\nPopulationMembers Name Name\nstill O O\npoint O O\nto O O\nthese O O\nPopulations Name Name\n. O O\n\nEdit O O\n: O O\nFix O O\n\nplease O O\ntry O O\nthis O O\n: O O\n\nI O O\n've O O\nscoured O O\nSOF Name Name\nand O O\ngoogle Name Name\nfor O O\nan O O\nanswer O O\nno O O\njoy O O\n\nI O O\nam O O\nable O O\nto O O\nconnect O O\nto O O\na O O\ndatabase O O\nI O O\npresume O O\nin O O\nJavaScript Name Name\n, O O\nI O O\nwish O O\nto O O\npopulate O O\nthe O O\nresults O O\ninto O O\na O O\nHTML Name Name\nforms O O\noption O O\nfield O O\n. O O\n\n\n\n"
  },
  {
    "path": "code/Attentive_BiLSTM/config_so.py",
    "content": "import optparse\nimport argparse\nfrom collections import OrderedDict\nimport torch \nimport utils_so as utils\nimport os\n\n\nfrom datetime import date\ntoday = str(date.today())\n\n\ntorch.backends.cudnn.deterministic = True\n\n\n\n\noptparser = optparse.OptionParser()\nparser = argparse.ArgumentParser()\n\nparser.add_argument(\n    \"-T\", \"--train\", default=\"../../resources/annotated_ner_data/StackOverflow/train.txt\",\n    help=\"Train set location\"\n)\nparser.add_argument(\n    \"-t\", \"--test\", default=\"../../resources/annotated_ner_data/StackOverflow/test.txt\",\n    help=\"Dev set location\"\n)\nparser.add_argument(\n    \"-d\", \"--dev\", default=\"../../resources/annotated_ner_data/StackOverflow/dev.txt\",\n    help=\"Test set location\"\n)\nparser.add_argument(\n    '--test_train', default=\"../../resources/annotated_ner_data/StackOverflow/train.txt\",\n    help='test train'\n)\n\nparser.add_argument(\n    \"-mode\", \"--mode\", default=\"test\",\n    help=\"which file to evaluate, default test, set to dev if you want to evaluate on dev\"\n)\n\nparser.add_argument(\n    '--elmo_weight', default=\"../../resources/pretrained_word_vectors/ELMo/SO_elmo_weights.hdf5\",\n    help='elmo_weight file'\n)\n\nparser.add_argument(\n    '--elmo_options', default=\"../../resources/pretrained_word_vectors/ELMo/SO_elmo_option.json\",\n    help='elmo_options file'\n)\nparser.add_argument(\n    '--score', default='evaluation/temp/score.txt',\n    help='score file location'\n)\nparser.add_argument(\n    \"-s\", \"--tag_scheme\", default=\"iob\",\n    help=\"Tagging scheme (IOB or IOBES)\"\n)\nparser.add_argument(\n    \"-l\", \"--lower\", default=\"1\",\n    type=int, help=\"Lowercase words (this will not affect character inputs)\"\n)\nparser.add_argument(\n    \"-z\", \"--zeros\", default=\"0\",\n    type=int, help=\"Replace digits with 0\"\n)\nparser.add_argument(\n    \"-c\", \"--char_dim\", default=\"25\",\n    type=int, help=\"Char embedding dimension\"\n)\nparser.add_argument(\n    \"-C\", \"--char_lstm_dim\", default=\"25\",\n    type=int, help=\"Char LSTM hidden layer size\"\n)\nparser.add_argument(\n    \"-b\", \"--char_bidirect\", default=\"1\",\n    type=int, help=\"Use a bidirectional LSTM for chars\"\n)\nparser.add_argument(\n    \"-w\", \"--word_dim\", default=\"300\",\n    type=int, help=\"Token embedding dimension\"\n)\nparser.add_argument(\n    \"-W\", \"--word_lstm_dim\", default=\"300\",\n    type=int, help=\"Token LSTM hidden layer size\"\n)\nparser.add_argument(\n    \"-B\", \"--word_bidirect\", default=\"1\",\n    type=int, help=\"Use a bidirectional LSTM for words\"\n)\n#JT\n# parser.add_argument(\n#     \"-p\", \"--pre_emb\", default=\"models/glove.6B.100d.txt\",\n#     help=\"Location of pretrained embeddings\"\n# )\nparser.add_argument(\n    \"-p\", \"--pre_emb\", default=\"../../resources/pretrained_word_vectors/Glove/vectors300.txt\",\n    help=\"Location of pretrained embeddings\"\n)\n# parser.add_argument(\n#     \"-p\", \"--pre_emb\", default=\"glove.6B.300d.txt\",\n#     help=\"Location of pretrained embeddings\"\n# )\nparser.add_argument(\n    \"-all_emb\", \"--all_emb\", default=\"0\",\n    type=int, help=\"Load all embeddings for dev and test\"\n)\nparser.add_argument(\n    \"-cap_dim\", \"--cap_dim\", default=\"0\",\n    type=int, help=\"Capitalization feature dimension (0 to disable)\"\n)\nparser.add_argument(\n    \"-crf\", \"--crf\", default=\"1\",\n    type=int, help=\"Use CRF (0 to disable)\"\n)\nparser.add_argument(\n    \"-D\", \"--dropout\", default=0.5,\n    type=float, help=\"Droupout on the input (0 = no dropout)\"\n)\nparser.add_argument(\n    \"-r\", \"--reload\", default=\"0\",\n    type=int, help=\"Reload the last saved model\"\n)\nparser.add_argument(\n    \"-use_gpu\", '--use_gpu', default='0',\n    type=int, help='whether or not to ues gpu'\n)\nparser.add_argument(\n    \"-gpu_id\", '--gpu_id', default='0',\n    type=int, help='which gpu to use'\n)\nparser.add_argument(\n    '--loss', default='loss.txt',\n    help='loss file location'\n)\nparser.add_argument(\n    '--name', default='test',\n    help='model name'\n)\nparser.add_argument(\n    '--char_mode', choices=['CNN', 'LSTM'], default='CNN',\n    help='char_CNN or char_LSTM'\n)\n#JT\nparser.add_argument(\n    '-use_pre_emb', '--use_pre_emb', default=\"0\",\n    type=int, help=\"Use pretrained emebdding (0 to disable)\"\n)\nparser.add_argument(\n    '-m', '--merge_tags', default=\"1\",\n    type=int, help=\"If we should merge tags (0 to disable)\"\n)\nparser.add_argument(\n    '--entity_category', choices=['code', 'human_lang', 'all'], default='all',\n    help='which type of entity is intended to classify'\n)\nparser.add_argument(\n    '-seed','--seed', default=9911, type=int, \n    help='which value to use for torch and numpy seed'\n)\nparser.add_argument(\n    '-lr','--lr', default=0.015, type=float, \n    help='which learning rate to use'\n)\nparser.add_argument(\n    '-epochs','--epochs', default=100, type=int, \n    help='number of epochs to train'\n)\nparser.add_argument(\n    '-file_identifier','--file_identifier', default=\"\", type=str, \n    help='file_identifier'\n)\n\n\nparser.add_argument(\n    '-segmentation_only','--segmentation_only', default=0, type=int, \n    help='\"If we should do segmentation only (1 to enable)'\n)\n\n\n\n\nparser.add_argument(\n    \"-use_elmo\", '--use_elmo', default='1',\n    type=int, help='whether or not to ues elmo'\n)\n\nparser.add_argument(\n    \"-use_elmo_w_char\", '--use_elmo_w_char', default='0',\n    type=int, help='whether or not to ues elmo with char embeds'\n)\n\n\n\nparser.add_argument(\n    \"-use_freq_vector\", '--use_freq_vector', default='0',\n    type=int, help='whether or not to ues the word frequency'\n)\nparser.add_argument(\n    '--freq_vector_file', default=\"other_files/Freq_Vector.txt\",\n    help='elmo_options file'\n)\n\nparser.add_argument(\n    '-freq_mapper_bin_count', '--freq_mapper_bin_count', default='100',\n    type=int, help='how many bins to use in gaussian binning of the frequency vector'\n)\n\nparser.add_argument(\n    '-freq_mapper_bin_width', '--freq_mapper_bin_width', default='5.0',\n    type=float, help='the width of each bin for the gaussian binning of the frequency vector'\n)\n\n\n\nparser.add_argument(\n    \"-use_markdown_vector\", '--use_markdown_vector', default='1',\n    type=int, help='whether or not to ues the markdown from stackoverflow meta data'\n)\nparser.add_argument(\n    \"-use_segmentation_vector\", '--use_segmentation_vector', default='1',\n    type=int, help='whether or not to ues the code_pred vector'\n)\nparser.add_argument(\n    \"-use_han\", '--use_han', default='1',\n    type=int, help='whether or not to ues HAN networkd'\n)\n\n\nopts = parser.parse_args()\n# print(args.char_mode)\n# print(opts)\n\nparameters = OrderedDict()\n\nparameters['seed']=opts.seed\n\n\n\ntorch.manual_seed(parameters['seed'])\n\n\nparameters[\"train_pred\"]='auxilary_inputs_ner/segmenter_pred/segmenter_pred_train.txt'\nparameters[\"dev_pred\"]='auxilary_inputs_ner/segmenter_pred/segmenter_pred_dev.txt'\nparameters[\"test_pred\"]='auxilary_inputs_ner/segmenter_pred/segmenter_pred_test.txt'\n\n\n\n\nparameters[\"ctc_pred\"]='auxilary_inputs_ner/ctc_pred.tsv'\n\n\nparameters['tag_scheme'] = opts.tag_scheme\nparameters['lower'] = opts.lower == 1\nparameters['zeros'] = opts.zeros == 1\nparameters['char_dim'] = opts.char_dim\nparameters['char_lstm_dim'] = opts.char_lstm_dim\nparameters['char_bidirect'] = opts.char_bidirect == 1\nparameters['word_dim'] = opts.word_dim\nparameters['word_lstm_dim'] = opts.word_lstm_dim\nparameters['word_bidirect'] = opts.word_bidirect == 1\nparameters['pre_emb'] = opts.pre_emb\nparameters['all_emb'] = opts.all_emb == 1\nparameters['cap_dim'] = opts.cap_dim\nparameters['crf'] = opts.crf == 1\nparameters['dropout'] = opts.dropout\nparameters['reload'] = opts.reload == 1\nparameters['name'] = opts.name\nparameters['char_mode'] = opts.char_mode\n\nparameters['use_gpu'] = opts.use_gpu == 1 and torch.cuda.is_available()\n\n\n\n\n\nuse_gpu = parameters['use_gpu']\nparameters[\"gpu_id\"] = opts.gpu_id\n\nparameters['use_pre_emb']=  opts.use_pre_emb == 1\nparameters['merge_tags']=  opts.merge_tags == 1\nparameters['entity_category'] = opts.entity_category\nparameters['segmentation_only']=  opts.segmentation_only == 1\n\n\nif opts.file_identifier==\"\":\n    file_identifier = str(today)+\"_\"+str(parameters[\"seed\"])+\"_\"\nelse:\n    file_identifier=opts.file_identifier\n\n\n\nparameters[\"models_path\"] = \"./models_\"+file_identifier\nparameters[\"eval_path\"] = \"./evaluation\"\nparameters[\"eval_temp\"] = os.path.join(parameters[\"eval_path\"], \"temp_\"+file_identifier)\nparameters[\"eval_script\"] = os.path.join(parameters[\"eval_path\"], \"conlleval\")\nparameters[\"perf_per_epoch_file\"] = \"perf_per_epoch_\"+file_identifier+\".txt\"\nparameters[\"sorted_entity_list_file_name\"]=\"sorted_entity_list_by_count_all.json\"\n\n\n\nparameters[\"train\"]=opts.train\nparameters[\"dev\"]=opts.dev\nparameters[\"test\"]=opts.test\nparameters[\"LR\"]=opts.lr\nparameters[\"epochs\"]=opts.epochs\nparameters[\"mode\"]=opts.mode\n\n\n\nparameters['use_elmo'] = opts.use_elmo == 1 \nparameters['use_elmo_w_char'] = opts.use_elmo_w_char == 1 \nparameters[\"elmo_weight\"]=opts.elmo_weight\nparameters[\"elmo_options\"]=opts.elmo_options\n# parameters[\"elmo_layer\"] = opts.elmo_layer\nparameters[\"elmo_dim\"]=1024\n\n\nparameters['use_freq_vector'] = opts.use_freq_vector == 1 \nparameters['freq_vector_file'] = opts.freq_vector_file\nparameters[\"freq_mapper_bin_count\"]=int(opts.freq_mapper_bin_count)\nparameters[\"freq_mapper_bin_width\"]=float(opts.freq_mapper_bin_width)\nparameters['freq_dim']=parameters[\"freq_mapper_bin_count\"]+2\n\n\nparameters['use_markdown_vector'] = opts.use_markdown_vector == 1 \nparameters['markdown_dim'] = 500\nparameters['markdown_count'] = 3\n\n\n\nparameters['use_segmentation_vector'] = True\nparameters['segmentation_dim'] = 500\nparameters['segmentation_count'] = 3\n\n\nparameters['use_ner_pred_vector'] = True\nparameters['ner_pred_dim'] = 500\nparameters['ner_pred_count']=41\n\n\nparameters['use_han'] = opts.use_han == 1 \n\nparameters['use_code_recognizer_vector'] = True\nparameters['code_recognizer_dim'] = 300\nparameters['code_recognizer_count'] = 3\n\n\nparameters['embedding_context_vecotr_size'] = 300\nparameters['word_context_vecotr_size'] = 300\n\n\n# parameters['markdown_dim']=parameters['elmo_dim']\n# parameters['segmentation_dim']=parameters['elmo_dim']\n# parameters['code_recognizer_dim']=parameters['elmo_dim']\n# parameters['ner_pred_dim']=parameters['elmo_dim']\n\n\n\nparameters[\"vocab_count_file\"]=\"train_vocab_w_count.json\"\n\n\nparameters[\"entity_category_code\"]=[\"Class\", \"Library_Class\", \"Class_Name\",\n                        \"Function\", \"Library_Function\",\"Function_Name\",\n                        \"Variable_Name\", \"Library_Variable\",\"Variable\",\n                        \"Library\",\n                        \"Code_Block\",\n                        \"Version\", \"File_Name\",\n                        \"Output_Block\"]\nparameters[\"entity_category_human_language\"]=[ \"Data_Structure\", \"Data_Type\", \"Algorithm\",\n                            \"User_Interface_Element\", \"Device\", \n                            \"Website\",\"Organization\",\"Website_Organization\",\n                            \"Application\", \"Language\",   \"File_Type\", \"Operating_System\", \"HTML_XML_Tag\",\n                            \"Error_Name\",\"Keyboard_IP\", \"User_Name\",\n                            \"Output_Block\"]\n\n"
  },
  {
    "path": "code/Attentive_BiLSTM/conlleval_py.py",
    "content": "#!/usr/bin/env python3\r\n# -*- coding: utf-8 -*-\r\n\"\"\"\r\nAuthor: Jeniya Tabassum <jeniya.tabassum@gmail.com>\r\n\r\nThis evalutaion script is adapted from: https://github.com/sighsmile/conlleval \r\n\r\n# JT:208-09 added the evaluate_conll_file to take input in the f\r\n\r\nThis script applies to IOB2 or IOBES tagging scheme.\r\nIf you are using a different scheme, please convert to IOB2 or IOBES.\r\n\r\nIOB2:\r\n- B = begin, \r\n- I = inside but not the first, \r\n- O = outside\r\n\r\ne.g. \r\nJohn   lives in New   York  City  .\r\nB-PER  O     O  B-LOC I-LOC I-LOC O\r\n\r\nIOBES:\r\n- B = begin, \r\n- E = end, \r\n- S = singleton, \r\n- I = inside but not the first or the last, \r\n- O = outside\r\n\r\ne.g.\r\nJohn   lives in New   York  City  .\r\nS-PER  O     O  B-LOC I-LOC E-LOC O\r\n\r\nprefix: IOBES\r\nchunk_type: PER, LOC, etc.\r\n\r\n#### Original Perl Script\r\n# conlleval: evaluate result of processing CoNLL-2000 shared task\r\n# usage:     conlleval [-l] [-r] [-d delimiterTag] [-o oTag] < file\r\n#            README: http://cnts.uia.ac.be/conll2000/chunking/output.html\r\n# options:   l: generate LaTeX output for tables like in\r\n#               http://cnts.uia.ac.be/conll2003/ner/example.tex\r\n#            r: accept raw result tags (without B- and I- prefix;\r\n#                                       assumes one word per chunk)\r\n#            d: alternative delimiter tag (default is white space or tab)\r\n#            o: alternative outside tag (default is O)\r\n# note:      the file should contain lines with items separated\r\n#            by $delimiter characters (default space). The final\r\n#            two items should contain the correct tag and the\r\n#            guessed tag in that order. Sentences should be\r\n#            separated from each other by empty lines or lines\r\n#            with $boundary fields (default -X-).\r\n# url:       http://lcg-www.uia.ac.be/conll2000/chunking/\r\n# started:   1998-09-25\r\n# version:   2004-01-26\r\n# author of perl script:    Erik Tjong Kim Sang <erikt@uia.ua.ac.be>\r\n# author of the main python script: sighsmile.github.io\r\n\r\n\r\n\r\n\"\"\"\r\nfrom __future__ import division, print_function, unicode_literals\r\nimport argparse\r\nimport sys\r\nfrom collections import defaultdict\r\n\r\n\r\n\"\"\"\r\n• IOB1: I is a token inside a chunk, O is a token outside a chunk and B is the\r\nbeginning of chunk immediately following another chunk of the same Named Entity.\r\n• IOB2: It is same as IOB1, except that a B tag is given for every token, which exists at\r\nthe beginning of the chunk.\r\n• IOE1: An E tag used to mark the last token of a chunk immediately preceding another\r\nchunk of the same named entity.\r\n• IOE2: It is same as IOE1, except that an E tag is given for every token, which exists at\r\nthe end of the chunk.\r\n• START/END: This consists of the tags B, E, I, S or O where S is used to represent a\r\nchunk containing a single token. Chunks of length greater than or equal to two always\r\nstart with the B tag and end with the E tag.\r\n• IO: Here, only the I and O labels are used. This therefore cannot distinguish between\r\nadjacent chunks of the same named entity.\r\n\r\n\"\"\"\r\n# endOfChunk: checks if a chunk ended between the previous and current word\r\n# arguments:  previous and current chunk tags, previous and current types\r\n# note:       this code is capable of handling other chunk representations\r\n#             than the default CoNLL-2000 ones, see EACL'99 paper of Tjong\r\n#             Kim Sang and Veenstra http://xxx.lanl.gov/abs/cs.CL/9907006\r\ndef endOfChunk(prevTag, tag, prevType, type_):\r\n    \"\"\"\r\n    checks if a chunk ended between the previous and current word;\r\n    arguments:  previous and current chunk tags, previous and current types\r\n    \"\"\"\r\n    return ((prevTag == \"B\" and tag == \"B\") or\r\n        (prevTag == \"B\" and tag == \"O\") or\r\n        (prevTag == \"I\" and tag == \"B\") or\r\n        (prevTag == \"I\" and tag == \"O\") or\r\n\r\n        (prevTag == \"E\" and tag == \"E\") or\r\n        (prevTag == \"E\" and tag == \"I\") or\r\n        (prevTag == \"E\" and tag == \"O\") or\r\n        (prevTag == \"I\" and tag == \"O\") or\r\n\r\n        (prevTag != \"O\" and prevTag != \".\" and prevType != type_) or\r\n        (prevTag == \"]\" or prevTag == \"[\"))\r\n        # corrected 1998-12-22: these chunks are assumed to have length 1\r\n\r\n\r\n# startOfChunk: checks if a chunk started between the previous and current word\r\n# arguments:    previous and current chunk tags, previous and current types\r\n# note:         this code is capable of handling other chunk representations\r\n#               than the default CoNLL-2000 ones, see EACL'99 paper of Tjong\r\n#               Kim Sang and Veenstra http://xxx.lanl.gov/abs/cs.CL/9907006\r\ndef startOfChunk(prevTag, tag, prevType, type_):\r\n    \"\"\"\r\n    checks if a chunk started between the previous and current word;\r\n    arguments:  previous and current chunk tags, previous and current types\r\n    \"\"\"\r\n    chunkStart = ((prevTag == \"B\" and tag == \"B\") or\r\n        (prevTag == \"B\" and tag == \"B\") or\r\n        (prevTag == \"I\" and tag == \"B\") or\r\n        (prevTag == \"O\" and tag == \"B\") or\r\n        (prevTag == \"O\" and tag == \"I\") or\r\n\r\n        (prevTag == \"E\" and tag == \"E\") or\r\n        (prevTag == \"E\" and tag == \"I\") or\r\n        (prevTag == \"O\" and tag == \"E\") or\r\n        (prevTag == \"O\" and tag == \"I\") or\r\n\r\n        (tag != \"O\" and tag != \".\" and prevType != type_) or\r\n        (tag == \"]\" or tag == \"[\"))\r\n        # corrected 1998-12-22: these chunks are assumed to have length 1\r\n\r\n    #print(\"startOfChunk?\", prevTag, tag, prevType, type)\r\n    #print(chunkStart)\r\n    return chunkStart\r\n\r\ndef calcMetrics(TP, P, T, percent=True):\r\n    \"\"\"\r\n    compute overall precision, recall and FB1 (default values are 0.0)\r\n    if percent is True, return 100 * original decimal value\r\n    \"\"\"\r\n    precision = TP / P if P else 0\r\n    recall = TP / T if T else 0\r\n    FB1 = 2 * precision * recall / (precision + recall) if precision + recall else 0\r\n    if percent:\r\n        return 100 * precision, 100 * recall, 100 * FB1\r\n    else:\r\n        return precision, recall, FB1\r\n\r\ndef splitTag(chunkTag, oTag = \"O\", raw = False):\r\n    \"\"\"\r\n    Split chunk tag into IOB tag and chunk type;\r\n    return (iob_tag, chunk_type)\r\n    \"\"\"\r\n    if chunkTag == \"O\" or chunkTag == oTag:\r\n        tag, type_ = \"O\", None\r\n    elif raw:\r\n        tag, type_ = \"B\", chunkTag\r\n    else:\r\n        try:\r\n            # split on first hyphen, allowing hyphen in type\r\n            tag, type_ = chunkTag.split('-', 1)\r\n        except ValueError:\r\n            tag, type_  = chunkTag, None\r\n    return tag, type_\r\n\r\ndef countChunks(args,inputFile):\r\n    \"\"\"\r\n    Process input in given format and count chunks using the last two columns;\r\n    return correctChunk, foundGuessed, foundCorrect, correctTags, tokenCounter\r\n    \"\"\"\r\n    boundary = \"-X-\"     # sentence boundary\r\n    # delimiter = args.delimiter\r\n    # raw = args.raw\r\n    # oTag = args.oTag\r\n    #inputFile=args.inputFile\r\n\r\n    delimiter = args[\"delimiter\"]\r\n    raw = args[\"raw\"]\r\n    oTag = args[\"oTag\"]\r\n\r\n    fileIterator=open(inputFile)\r\n\r\n    correctChunk = defaultdict(int)     # number of correctly identified chunks\r\n    foundCorrect = defaultdict(int)     # number of chunks in corpus per type\r\n    foundGuessed = defaultdict(int)     # number of identified chunks per type\r\n\r\n    tokenCounter = 0     # token counter (ignores sentence breaks)\r\n    correctTags = 0      # number of correct chunk tags\r\n\r\n    lastType = None # temporary storage for detecting duplicates\r\n    inCorrect = False # currently processed chunk is correct until now\r\n    lastCorrect, lastCorrectType = \"O\", None    # previous chunk tag in corpus\r\n    lastGuessed, lastGuessedType = \"O\", None  # previously identified chunk tag\r\n\r\n    for line in fileIterator:\r\n        # each non-empty line must contain >= 3 columns\r\n        features = line.strip().split(delimiter)\r\n        #print(features)\r\n        if not features or features[0] == boundary:\r\n            features = [boundary, \"O\", \"O\"]\r\n        elif len(features) < 3:\r\n             raise IOError(\"conlleval: unexpected number of features in line %s\\n\" % line)\r\n\r\n        # extract tags from last 2 columns\r\n        guessed, guessedType = splitTag(features[-1], oTag=oTag, raw=raw)\r\n        correct, correctType = splitTag(features[-2], oTag=oTag, raw=raw)\r\n\r\n        # 1999-06-26 sentence breaks should always be counted as out of chunk\r\n        firstItem = features[0]\r\n        if firstItem == boundary:\r\n            guessed, guessedType = \"O\", None\r\n\r\n        # decide whether current chunk is correct until now\r\n        if inCorrect:\r\n            endOfGuessed = endOfChunk(lastCorrect, correct, lastCorrectType, correctType)\r\n            endOfCorrect = endOfChunk(lastGuessed, guessed, lastGuessedType, guessedType)\r\n            if (endOfGuessed and endOfCorrect and lastGuessedType == lastCorrectType):\r\n                inCorrect = False\r\n                correctChunk[lastCorrectType] += 1\r\n            elif ( endOfGuessed != endOfCorrect or guessedType != correctType):\r\n                inCorrect = False\r\n\r\n        startOfGuessed = startOfChunk(lastGuessed, guessed, lastGuessedType, guessedType)\r\n        startOfCorrect = startOfChunk(lastCorrect, correct, lastCorrectType, correctType)\r\n        if (startOfCorrect and startOfGuessed and guessedType == correctType):\r\n            inCorrect = True\r\n        if startOfCorrect:\r\n            foundCorrect[correctType] += 1\r\n        if startOfGuessed:\r\n            foundGuessed[guessedType] += 1\r\n\r\n        if firstItem != boundary:\r\n            if correct == guessed and guessedType == correctType:\r\n                correctTags += 1\r\n            tokenCounter += 1\r\n\r\n        lastGuessed, lastGuessedType = guessed, guessedType\r\n        lastCorrect, lastCorrectType = correct, correctType\r\n\r\n    if inCorrect:\r\n        correctChunk[lastCorrectType] += 1\r\n\r\n    return correctChunk, foundGuessed, foundCorrect, correctTags, tokenCounter\r\n\r\ndef evaluate(correctChunk, foundGuessed, foundCorrect, correctTags, tokenCounter, latex=False, to_tsv=False, tsv_file_name=\"perf.tsv\"):\r\n    # sum counts\r\n    # correctChunkSum = sum(correctChunk.values())\r\n    # foundGuessedSum = sum(foundGuessed.values())\r\n    # foundCorrectSum = sum(foundCorrect.values())\r\n\r\n    correctChunkSum = sum(correctChunk[v] for v in correctChunk if v!=\"O\")\r\n    foundGuessedSum = sum(foundGuessed[v] for v in foundGuessed if v!=\"O\")\r\n    foundCorrectSum = sum(foundCorrect[v] for v in foundCorrect if v!=\"O\")\r\n\r\n\r\n\r\n    # sort chunk type names\r\n    sortedTypes = list(foundCorrect) + list(foundGuessed)\r\n    sortedTypes = list(set(sortedTypes))\r\n    sortedTypes.sort()\r\n\r\n    # print overall performance, and performance per chunk type\r\n    eval_result={}\r\n    \r\n    # compute overall precision, recall and FB1 (default values are 0.0)\r\n    precision, recall, FB1 = calcMetrics(correctChunkSum, foundGuessedSum, foundCorrectSum)\r\n    result={}\r\n    result[\"P\"]=round(precision,2)\r\n    result[\"R\"]=round(recall,2)\r\n    result[\"F1\"]=round(FB1,2)\r\n    result[\"Total Predicted\"]= foundGuessedSum\r\n    result[\"Correctly Predicted\"]= correctChunkSum\r\n    eval_result[\"overall\"]=result\r\n    eval_result[\"by_category\"]={}\r\n\r\n\r\n    \r\n    # print overall performance\r\n    print(\"processed %i tokens with %i phrases; \" % (tokenCounter, foundCorrectSum), end='')\r\n    print(\"found: %i phrases; correct: %i.\\n\" % (foundGuessedSum, correctChunkSum), end='')\r\n    if tokenCounter:\r\n        print(\"accuracy: %6.2f%%; \" % (100*correctTags/tokenCounter), end='')\r\n        print(\"precision: %6.2f%%; recall: %6.2f%%; FB1: %6.2f\" %\r\n                (precision, recall, FB1))\r\n\r\n    for i in sortedTypes:\r\n        \r\n        precision, recall, FB1 = calcMetrics(correctChunk[i], foundGuessed[i], foundCorrect[i])\r\n        print(\"%17s: \" %i , end='')\r\n        print(\"precision: %6.2f%%; recall: %6.2f%%; FB1: %6.2f\" %\r\n                (precision, recall, FB1), end='')\r\n        print(\" foundGuessed:  %d\" % foundGuessed[i])\r\n\r\n        result={}\r\n        \r\n        result[\"P\"]=round(precision,2)\r\n        result[\"R\"]=round(recall,2)\r\n        result[\"F1\"]=round(FB1,2)\r\n        result[\"Total Predicted\"]= foundGuessed[i]\r\n        result[\"Correctly Predicted\"]= correctChunk[i]\r\n\r\n        eval_result[\"by_category\"][i]=result\r\n\r\n    # generate LaTeX output for tables like in\r\n    # http://cnts.uia.ac.be/conll2003/ner/example.tex\r\n    if latex:\r\n        print(\"        & Precision &  Recall  & F1 & Correct postive & Predicted positive & Gold positive \\\\\\\\\\\\hline\", end='')\r\n        for i in sortedTypes:\r\n            precision, recall, FB1 = calcMetrics(correctChunk[i], foundGuessed[i], foundCorrect[i])\r\n            print(\"\\n%-7s &  %6.2f & %6.2f & %6.2f & %d & %d & %d \\\\\\\\\" %\r\n                 (i.replace(\"_\",\" \"),precision,recall,FB1, correctChunk[i], foundGuessed[i],foundCorrect[i]), end='')\r\n        print(\"\\\\hline\")\r\n\r\n        precision, recall, FB1 = calcMetrics(correctChunkSum, foundGuessedSum, foundCorrectSum)\r\n        print(\"Overall &  %6.2f & %6.2f & %6.2f & %d & %d & %d  \\\\\\\\\\\\hline\" %\r\n              (precision,recall,FB1, correctChunkSum, foundGuessedSum, foundCorrectSum))\r\n    if to_tsv:\r\n        fout_tsv=open(tsv_file_name,\"w\")\r\n        opline=\"\"+\"\\t\"+\"Precision\"+\"\\t\"+\"Recall\"+\"\\t\"+\"F1\"+\"\\n\"\r\n        fout_tsv.write(opline)\r\n        for i in sortedTypes:\r\n            precision, recall, FB1 = calcMetrics(correctChunk[i], foundGuessed[i], foundCorrect[i])\r\n            opline= i.replace(\"_\",\" \") +\"\\t\"+ str(precision) +\"\\t\"+ str(recall) +\"\\t\"+ str(FB1)+\"\\n\"\r\n            fout_tsv.write(opline)\r\n\r\n        precision, recall, FB1 = calcMetrics(correctChunkSum, foundGuessedSum, foundCorrectSum)\r\n        opline= \"overall\" +\"\\t\"+ str(precision) +\"\\t\"+ str(recall) +\"\\t\"+ str(FB1)+\"\\n\"\r\n        fout_tsv.write(opline)\r\n        fout_tsv.close()\r\n\r\n    return eval_result\r\n\r\n\r\n#JT : 2018-08\r\ndef evaluate_conll_file(inputFile=\"conll_output.txt\", to_tsv=False, tsv_file_name=\"perf.tsv\",latex=False, raw=False, delimiter=None, oTag=\"O\"):\r\n    #args = parse_args()\r\n    args={}\r\n    args[\"raw\"]=raw\r\n    args[\"latex\"]=latex\r\n    args[\"delimiter\"]=delimiter\r\n    args[\"oTag\"]=oTag\r\n\r\n    #print(type(args))\r\n     # process input and count chunks\r\n    correctChunk, foundGuessed, foundCorrect, correctTags, tokenCounter = countChunks(args,inputFile)\r\n\r\n    # compute metrics and print\r\n    eval_result = evaluate(correctChunk, foundGuessed, foundCorrect, correctTags, tokenCounter, latex=latex, to_tsv=to_tsv, tsv_file_name=tsv_file_name)\r\n    return eval_result\r\n\r\nif __name__ == \"__main__\":\r\n    eval_result = evaluate_conll_file(inputFile=\"so_output_w_window_all.txt\")\r\n    print(eval_result)\r\n    #sys.exit(0)\r\n"
  },
  {
    "path": "code/Attentive_BiLSTM/evaluation/conlleval",
    "content": "#!/usr/bin/perl -w\n# conlleval: evaluate result of processing CoNLL-2000 shared task\n# usage:     conlleval [-l] [-r] [-d delimiterTag] [-o oTag] < file\n#            README: http://cnts.uia.ac.be/conll2000/chunking/output.html\n# options:   l: generate LaTeX output for tables like in\n#               http://cnts.uia.ac.be/conll2003/ner/example.tex\n#            r: accept raw result tags (without B- and I- prefix;\n#                                       assumes one word per chunk)\n#            d: alternative delimiter tag (default is single space)\n#            o: alternative outside tag (default is O)\n# note:      the file should contain lines with items separated\n#            by $delimiter characters (default space). The final\n#            two items should contain the correct tag and the \n#            guessed tag in that order. Sentences should be\n#            separated from each other by empty lines or lines\n#            with $boundary fields (default -X-).\n# url:       http://lcg-www.uia.ac.be/conll2000/chunking/\n# started:   1998-09-25\n# version:   2004-01-26\n# author:    Erik Tjong Kim Sang <erikt@uia.ua.ac.be>\n\nuse strict;\n\nmy $false = 0;\nmy $true = 42;\n\nmy $boundary = \"-X-\";     # sentence boundary\nmy $correct;              # current corpus chunk tag (I,O,B)\nmy $correctChunk = 0;     # number of correctly identified chunks\nmy $correctTags = 0;      # number of correct chunk tags\nmy $correctType;          # type of current corpus chunk tag (NP,VP,etc.)\nmy $delimiter = \" \";      # field delimiter\nmy $FB1 = 0.0;            # FB1 score (Van Rijsbergen 1979)\nmy $firstItem;            # first feature (for sentence boundary checks)\nmy $foundCorrect = 0;     # number of chunks in corpus\nmy $foundGuessed = 0;     # number of identified chunks\nmy $guessed;              # current guessed chunk tag\nmy $guessedType;          # type of current guessed chunk tag\nmy $i;                    # miscellaneous counter\nmy $inCorrect = $false;   # currently processed chunk is correct until now\nmy $lastCorrect = \"O\";    # previous chunk tag in corpus\nmy $latex = 0;            # generate LaTeX formatted output\nmy $lastCorrectType = \"\"; # type of previously identified chunk tag\nmy $lastGuessed = \"O\";    # previously identified chunk tag\nmy $lastGuessedType = \"\"; # type of previous chunk tag in corpus\nmy $lastType;             # temporary storage for detecting duplicates\nmy $line;                 # line\nmy $nbrOfFeatures = -1;   # number of features per line\nmy $precision = 0.0;      # precision score\nmy $oTag = \"O\";           # outside tag, default O\nmy $raw = 0;              # raw input: add B to every token\nmy $recall = 0.0;         # recall score\nmy $tokenCounter = 0;     # token counter (ignores sentence breaks)\n\nmy %correctChunk = ();    # number of correctly identified chunks per type\nmy %foundCorrect = ();    # number of chunks in corpus per type\nmy %foundGuessed = ();    # number of identified chunks per type\n\nmy @features;             # features on line\nmy @sortedTypes;          # sorted list of chunk type names\n\n# sanity check\nwhile (@ARGV and $ARGV[0] =~ /^-/) {\n   if ($ARGV[0] eq \"-l\") { $latex = 1; shift(@ARGV); }\n   elsif ($ARGV[0] eq \"-r\") { $raw = 1; shift(@ARGV); }\n   elsif ($ARGV[0] eq \"-d\") { \n      shift(@ARGV); \n      if (not defined $ARGV[0]) { \n         die \"conlleval: -d requires delimiter character\"; \n      }\n      $delimiter = shift(@ARGV);\n   } elsif ($ARGV[0] eq \"-o\") {\n      shift(@ARGV);\n      if (not defined $ARGV[0]) {\n         die \"conlleval: -o requires delimiter character\";\n      }\n      $oTag = shift(@ARGV);\n   } else { die \"conlleval: unknown argument $ARGV[0]\\n\"; }\n}\nif (@ARGV) { die \"conlleval: unexpected command line argument\\n\"; }\n# process input\nwhile (<STDIN>) {\n   chomp($line = $_);\n   @features = split(/$delimiter/,$line);\n   if ($nbrOfFeatures < 0) { $nbrOfFeatures = $#features; }\n   elsif ($nbrOfFeatures != $#features and @features != 0) {\n      printf STDERR \"unexpected number of features: %d (%d)\\n\",\n         $#features+1,$nbrOfFeatures+1;\n      exit(1);\n   }\n   if (@features == 0 or \n       $features[0] eq $boundary) { @features = ($boundary,\"O\",\"O\"); }\n   if (@features < 2) { \n      die \"conlleval: unexpected number of features in line $line\\n\"; \n   }\n   if ($raw) {\n      if ($features[$#features] eq $oTag) { $features[$#features] = \"O\"; } \n      if ($features[$#features-1] eq $oTag) { $features[$#features-1] = \"O\"; } \n      if ($features[$#features] ne \"O\") { \n         $features[$#features] = \"B-$features[$#features]\";\n      }\n      if ($features[$#features-1] ne \"O\") { \n         $features[$#features-1] = \"B-$features[$#features-1]\";\n      }\n   }\n   # 20040126 ET code which allows hyphens in the types\n   if ($features[$#features] =~ /^([^-]*)-(.*)$/) {\n      $guessed = $1;\n      $guessedType = $2;\n   } else { \n      $guessed = $features[$#features]; \n      $guessedType = \"\"; \n   }\n   pop(@features);\n   if ($features[$#features] =~ /^([^-]*)-(.*)$/) {\n      $correct = $1;\n      $correctType = $2;\n   } else { \n      $correct = $features[$#features]; \n      $correctType = \"\"; \n   }\n   pop(@features);\n#  ($guessed,$guessedType) = split(/-/,pop(@features));\n#  ($correct,$correctType) = split(/-/,pop(@features));\n   $guessedType = $guessedType ? $guessedType : \"\";\n   $correctType = $correctType ? $correctType : \"\";\n   $firstItem = shift(@features);\n\n   # 1999-06-26 sentence breaks should always be counted as out of chunk\n   if ( $firstItem eq $boundary ) { $guessed = \"O\"; }\n\n   if ($inCorrect) {\n      if ( &endOfChunk($lastCorrect,$correct,$lastCorrectType,$correctType) and\n           &endOfChunk($lastGuessed,$guessed,$lastGuessedType,$guessedType) and\n           $lastGuessedType eq $lastCorrectType) {\n         $inCorrect=$false;\n         $correctChunk++;\n         $correctChunk{$lastCorrectType} = $correctChunk{$lastCorrectType} ?\n             $correctChunk{$lastCorrectType}+1 : 1;\n      } elsif ( \n           &endOfChunk($lastCorrect,$correct,$lastCorrectType,$correctType) != \n           &endOfChunk($lastGuessed,$guessed,$lastGuessedType,$guessedType) or\n           $guessedType ne $correctType ) {\n         $inCorrect=$false; \n      }\n   }\n\n   if ( &startOfChunk($lastCorrect,$correct,$lastCorrectType,$correctType) and \n        &startOfChunk($lastGuessed,$guessed,$lastGuessedType,$guessedType) and\n        $guessedType eq $correctType) { $inCorrect = $true; }\n\n   if ( &startOfChunk($lastCorrect,$correct,$lastCorrectType,$correctType) ) {\n      $foundCorrect++; \n      $foundCorrect{$correctType} = $foundCorrect{$correctType} ?\n          $foundCorrect{$correctType}+1 : 1;\n   }\n   if ( &startOfChunk($lastGuessed,$guessed,$lastGuessedType,$guessedType) ) {\n      $foundGuessed++; \n      $foundGuessed{$guessedType} = $foundGuessed{$guessedType} ?\n          $foundGuessed{$guessedType}+1 : 1;\n   }\n   if ( $firstItem ne $boundary ) { \n      if ( $correct eq $guessed and $guessedType eq $correctType ) { \n         $correctTags++; \n      }\n      $tokenCounter++; \n   }\n\n   $lastGuessed = $guessed;\n   $lastCorrect = $correct;\n   $lastGuessedType = $guessedType;\n   $lastCorrectType = $correctType;\n}\nif ($inCorrect) { \n   $correctChunk++;\n   $correctChunk{$lastCorrectType} = $correctChunk{$lastCorrectType} ?\n       $correctChunk{$lastCorrectType}+1 : 1;\n}\n\nif (not $latex) {\n   # compute overall precision, recall and FB1 (default values are 0.0)\n   $precision = 100*$correctChunk/$foundGuessed if ($foundGuessed > 0);\n   $recall = 100*$correctChunk/$foundCorrect if ($foundCorrect > 0);\n   $FB1 = 2*$precision*$recall/($precision+$recall)\n      if ($precision+$recall > 0);\n   \n   # print overall performance\n   printf \"processed $tokenCounter tokens with $foundCorrect phrases; \";\n   printf \"found: $foundGuessed phrases; correct: $correctChunk.\\n\";\n   if ($tokenCounter>0) {\n      printf \"accuracy: %6.2f%%; \",100*$correctTags/$tokenCounter;\n      printf \"precision: %6.2f%%; \",$precision;\n      printf \"recall: %6.2f%%; \",$recall;\n      printf \"FB1: %6.2f\\n\",$FB1;\n   }\n}\n\n# sort chunk type names\nundef($lastType);\n@sortedTypes = ();\nforeach $i (sort (keys %foundCorrect,keys %foundGuessed)) {\n   if (not($lastType) or $lastType ne $i) { \n      push(@sortedTypes,($i));\n   }\n   $lastType = $i;\n}\n# print performance per chunk type\nif (not $latex) {\n   for $i (@sortedTypes) {\n      $correctChunk{$i} = $correctChunk{$i} ? $correctChunk{$i} : 0;\n      if (not($foundGuessed{$i})) { $foundGuessed{$i} = 0; $precision = 0.0; }\n      else { $precision = 100*$correctChunk{$i}/$foundGuessed{$i}; }\n      if (not($foundCorrect{$i})) { $recall = 0.0; }\n      else { $recall = 100*$correctChunk{$i}/$foundCorrect{$i}; }\n      if ($precision+$recall == 0.0) { $FB1 = 0.0; }\n      else { $FB1 = 2*$precision*$recall/($precision+$recall); }\n      printf \"%17s: \",$i;\n      printf \"precision: %6.2f%%; \",$precision;\n      printf \"recall: %6.2f%%; \",$recall;\n      printf \"FB1: %6.2f  %d\\n\",$FB1,$foundGuessed{$i};\n   }\n} else {\n   print \"        & Precision &  Recall  & F\\$_{\\\\beta=1} \\\\\\\\\\\\hline\";\n   for $i (@sortedTypes) {\n      $correctChunk{$i} = $correctChunk{$i} ? $correctChunk{$i} : 0;\n      if (not($foundGuessed{$i})) { $precision = 0.0; }\n      else { $precision = 100*$correctChunk{$i}/$foundGuessed{$i}; }\n      if (not($foundCorrect{$i})) { $recall = 0.0; }\n      else { $recall = 100*$correctChunk{$i}/$foundCorrect{$i}; }\n      if ($precision+$recall == 0.0) { $FB1 = 0.0; }\n      else { $FB1 = 2*$precision*$recall/($precision+$recall); }\n      printf \"\\n%-7s &  %6.2f\\\\%% & %6.2f\\\\%% & %6.2f \\\\\\\\\",\n             $i,$precision,$recall,$FB1;\n   }\n   print \"\\\\hline\\n\";\n   $precision = 0.0;\n   $recall = 0;\n   $FB1 = 0.0;\n   $precision = 100*$correctChunk/$foundGuessed if ($foundGuessed > 0);\n   $recall = 100*$correctChunk/$foundCorrect if ($foundCorrect > 0);\n   $FB1 = 2*$precision*$recall/($precision+$recall)\n      if ($precision+$recall > 0);\n   printf \"Overall &  %6.2f\\\\%% & %6.2f\\\\%% & %6.2f \\\\\\\\\\\\hline\\n\",\n          $precision,$recall,$FB1;\n}\n\nexit 0;\n\n# endOfChunk: checks if a chunk ended between the previous and current word\n# arguments:  previous and current chunk tags, previous and current types\n# note:       this code is capable of handling other chunk representations\n#             than the default CoNLL-2000 ones, see EACL'99 paper of Tjong\n#             Kim Sang and Veenstra http://xxx.lanl.gov/abs/cs.CL/9907006\n\nsub endOfChunk {\n   my $prevTag = shift(@_);\n   my $tag = shift(@_);\n   my $prevType = shift(@_);\n   my $type = shift(@_);\n   my $chunkEnd = $false;\n\n   if ( $prevTag eq \"B\" and $tag eq \"B\" ) { $chunkEnd = $true; }\n   if ( $prevTag eq \"B\" and $tag eq \"O\" ) { $chunkEnd = $true; }\n   if ( $prevTag eq \"I\" and $tag eq \"B\" ) { $chunkEnd = $true; }\n   if ( $prevTag eq \"I\" and $tag eq \"O\" ) { $chunkEnd = $true; }\n\n   if ( $prevTag eq \"E\" and $tag eq \"E\" ) { $chunkEnd = $true; }\n   if ( $prevTag eq \"E\" and $tag eq \"I\" ) { $chunkEnd = $true; }\n   if ( $prevTag eq \"E\" and $tag eq \"O\" ) { $chunkEnd = $true; }\n   if ( $prevTag eq \"I\" and $tag eq \"O\" ) { $chunkEnd = $true; }\n\n   if ($prevTag ne \"O\" and $prevTag ne \".\" and $prevType ne $type) { \n      $chunkEnd = $true; \n   }\n\n   # corrected 1998-12-22: these chunks are assumed to have length 1\n   if ( $prevTag eq \"]\" ) { $chunkEnd = $true; }\n   if ( $prevTag eq \"[\" ) { $chunkEnd = $true; }\n\n   return($chunkEnd);   \n}\n\n# startOfChunk: checks if a chunk started between the previous and current word\n# arguments:    previous and current chunk tags, previous and current types\n# note:         this code is capable of handling other chunk representations\n#               than the default CoNLL-2000 ones, see EACL'99 paper of Tjong\n#               Kim Sang and Veenstra http://xxx.lanl.gov/abs/cs.CL/9907006\n\nsub startOfChunk {\n   my $prevTag = shift(@_);\n   my $tag = shift(@_);\n   my $prevType = shift(@_);\n   my $type = shift(@_);\n   my $chunkStart = $false;\n\n   if ( $prevTag eq \"B\" and $tag eq \"B\" ) { $chunkStart = $true; }\n   if ( $prevTag eq \"I\" and $tag eq \"B\" ) { $chunkStart = $true; }\n   if ( $prevTag eq \"O\" and $tag eq \"B\" ) { $chunkStart = $true; }\n   if ( $prevTag eq \"O\" and $tag eq \"I\" ) { $chunkStart = $true; }\n\n   if ( $prevTag eq \"E\" and $tag eq \"E\" ) { $chunkStart = $true; }\n   if ( $prevTag eq \"E\" and $tag eq \"I\" ) { $chunkStart = $true; }\n   if ( $prevTag eq \"O\" and $tag eq \"E\" ) { $chunkStart = $true; }\n   if ( $prevTag eq \"O\" and $tag eq \"I\" ) { $chunkStart = $true; }\n\n   if ($tag ne \"O\" and $tag ne \".\" and $prevType ne $type) { \n      $chunkStart = $true; \n   }\n\n   # corrected 1998-12-22: these chunks are assumed to have length 1\n   if ( $tag eq \"[\" ) { $chunkStart = $true; }\n   if ( $tag eq \"]\" ) { $chunkStart = $true; }\n\n   return($chunkStart);   \n}\n"
  },
  {
    "path": "code/Attentive_BiLSTM/gaussian_binner.py",
    "content": "# -*- coding: utf-8 -*-\n\nimport numpy as np\n\n\ndef gaussian(diff, sig):\n    return np.exp(-np.power(diff, 2.) / (2 * sig * sig))\n\n\nclass GaussianBinner:\n\n    def __init__(self, bins=10, w=0.2):\n        self.bin_values, self.sigmas = [], []\n        self.bins = bins\n        self.width = w\n        self.eps = 0.000001\n\n    def fit(self, x, features_to_be_binned):\n        for index in range(0, features_to_be_binned):\n\n            dimension = x[:, index]\n            bin_divisions = np.histogram(dimension, bins=self.bins)[1]\n\n            bin_means = [(bin_divisions[i] + bin_divisions[i+1]) / 2.0\n                         for i in range(0, len(bin_divisions) - 1)]\n\n            half_width = abs(bin_divisions[1] - bin_divisions[0]) / 2.0\n            bin_means[0:0] = [bin_divisions[0] - half_width]\n            bin_means.append(bin_divisions[len(bin_divisions) - 1] + half_width)\n            self.bin_values.append(bin_means)\n\n            self.sigmas.append(abs(bin_divisions[1] - bin_divisions[0]) * self.width)\n\n    def transform(self, x, features_to_be_binned):\n        expanded_features = [x[:, features_to_be_binned:]]\n        for index in range(0, features_to_be_binned):\n\n            bin_means = np.array(self.bin_values[index])\n\n            projected_features = gaussian(np.tile(x[:, index], (self.bins + 2, 1)).T - bin_means,\n                                              self.sigmas[index])\n\n            sum_f = np.sum(projected_features, axis=1)\n            sum_f[sum_f == 0] = self.eps\n            projected_features = (projected_features.T / sum_f).T\n            expanded_features.append(projected_features)\n\n        return np.concatenate(expanded_features, axis=1)\n\n\nif __name__ == '__main__':\n    print(\"test\")\n    \n   \n    ip_array=np.array([0])\n    # print(ip_array)\n    for x in range(1,8):\n        x=np.array([x])\n        ip_array = np.vstack((ip_array,x))\n    # print(ip_array)\n    print(\"ip_array: \",ip_array)\n\n    binner = GaussianBinner()\n    binner.fit(ip_array, 1)\n    new_array=binner.transform(ip_array,1)\n    # print(new_array)\n\n\n    ip_array=np.array([10])\n    for x in range(1,2):\n        print(x)\n        x=np.array([x])\n        ip_array = np.vstack((ip_array,x))\n    print(\"ip_array: \",ip_array)\n    new_array=binner.transform(ip_array,1)\n    print(\"new_array: \",new_array[1])\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"
  },
  {
    "path": "code/Attentive_BiLSTM/loader_so.py",
    "content": "from __future__ import print_function, division\nimport os\nimport re\nimport codecs\nimport unicodedata\n\nimport model\nimport string\nimport random\nimport numpy as np\n\nimport utils_so as utils    #JT: utils for SO\n\nfrom config_so import parameters\nnp.random.seed(parameters[\"seed\"])\n\n\nfrom utils_so import create_dico, create_mapping, zero_digits, Merge_Label\nfrom utils_so import iob2, iob_iobes\n\n\n\n\ndef unicodeToAscii(s):\n    return ''.join(\n        c for c in unicodedata.normalize('NFD', s)\n        if unicodedata.category(c) != 'Mn'\n        and c in string.ascii_letters + \" .,;'-\"\n    )\n\n\ndef load_sentences_so(path, lower, zeros, merge_tag,set_of_selected_tags):\n    \"\"\"\n    Load sentences. A line must contain at least a word and its tag.\n    Sentences are separated by empty lines.\n    \"\"\"\n    count_question=0\n    count_answer=0\n\n    if merge_tag:\n        path=Merge_Label(path)\n    sentences = [] #list of sentences\n\n    sentence = [] #list of words in the current sentence in formate each word list looks like [word, markdow tag name, mark down tag, NER tag]\n    max_len = 0\n    for line in open(path):\n        if line.startswith(\"Question_ID\"):\n            count_question+=1\n\n        if line.startswith(\"Answer_to_Question_ID\"):\n            count_answer+=1\n\n        if line.strip()==\"\":\n            if len(sentence) > 0:\n                #print(sentence)\n                output_line = \" \".join(w[0] for w in sentence)\n                #print(output_line)\n                if \"code omitted for annotation\" in output_line and \"CODE_BLOCK :\" in output_line:\n                    sentence = []\n                    continue\n                elif \"omitted for annotation\" in output_line and \"OP_BLOCK :\" in output_line:\n                    sentence = []\n                    continue\n                elif \"Question_URL :\" in output_line:\n                    sentence = []\n                    continue\n                elif \"Question_ID :\" in output_line:\n                    sentence = []\n                    continue\n                else:\n                    #print(output_line)\n                    sentences.append(sentence)\n                    if len(sentence)>max_len:\n                        max_len=len(sentence)\n                    sentence=[]\n                \n            \n\n        else:\n            line_values=line.strip().split()\n\n            gold_word=line_values[0]\n            gold_label=line_values[1]\n            raw_word=line_values[2]\n            raw_label=line_values[3]\n\n            \n\n            gold_word=\" \".join(gold_word.split('-----'))\n            \n\n\n            gold_label_name= gold_label.replace(\"B-\",\"\").replace(\"I-\",\"\")\n            if gold_label_name not in set_of_selected_tags:\n                gold_label=\"O\"\n\n            if parameters['segmentation_only']:\n                if gold_label!=\"O\":\n                    # print(gold_label)\n                    gold_label_prefix=gold_label.split(\"-\")[0]\n                    gold_label=gold_label_prefix+\"-\"+\"Name\"\n                    # print(gold_label)\n                    # print(\"updated gold label\")\n\n            \n\n           \n            raw_label_name=raw_label.replace(\"B-\",\"\").replace(\"I-\",\"\")\n            \n            word_info=[gold_word, raw_label_name, raw_label, gold_label]\n            \n            sentence.append(word_info)\n\n    print(\"------------------------------------------------------------\")\n    print(\"Number of questions in \", path, \" : \", count_question)\n    print(\"Number of answers in \", path, \" : \", count_answer)\n    print(\"Number of sentences in \", path, \" : \", len(sentences))\n    print(\"Max len sentences has\", max_len, \"words\")\n    print(\"------------------------------------------------------------\")\n    return sentences\n                \ndef load_sentences_so_w_pred(path_main_file, path_segmenter_pred_file,  lower, zeros, merge_tag,set_of_selected_tags):\n    \"\"\"\n    Load sentences. A line must contain at least a word and its tag.\n    Sentences are separated by empty lines.\n    \"\"\"\n    count_question=0\n    count_answer=0\n    max_len = 0\n\n    if merge_tag:\n        path=Merge_Label(path_main_file)\n    sentences = [] #list of sentences\n\n    sentence = [] #list of words in the current sentence in formate each word list looks like [word, markdow tag name, mark down tag, NER tag]\n\n    for line in open(path):\n        if line.startswith(\"Question_ID\"):\n            count_question+=1\n\n        if line.startswith(\"Answer_to_Question_ID\"):\n            count_answer+=1\n\n        if line.strip()==\"\":\n            if len(sentence) > 0:\n                #print(sentence)\n                output_line = \" \".join(w[0] for w in sentence)\n                #print(output_line)\n                if \"code omitted for annotation\" in output_line and \"CODE_BLOCK :\" in output_line:\n                    sentence = []\n                    continue\n                elif \"omitted for annotation\" in output_line and \"OP_BLOCK :\" in output_line:\n                    sentence = []\n                    continue\n                elif \"Question_URL :\" in output_line:\n                    sentence = []\n                    continue\n                elif \"Question_ID :\" in output_line:\n                    sentence = []\n                    continue\n                else:\n                    #print(output_line)\n                    sentences.append(sentence)\n                    if len(sentence)>max_len:\n                        max_len=len(sentence)\n                    sentence=[]\n                \n            \n\n        else:\n            line_values=line.strip().split()\n\n            gold_word=line_values[0]\n            gold_label=line_values[1]\n            raw_word=line_values[2]\n            raw_label=line_values[3]\n\n            \n\n            gold_word=\" \".join(gold_word.split('-----'))\n            \n\n\n            gold_label_name= gold_label.replace(\"B-\",\"\").replace(\"I-\",\"\")\n            if gold_label_name not in set_of_selected_tags:\n                gold_label=\"O\"\n\n            if parameters['segmentation_only']:\n                if gold_label!=\"O\":\n                    # print(gold_label)\n                    gold_label_prefix=gold_label.split(\"-\")[0]\n                    gold_label=gold_label_prefix+\"-\"+\"Name\"\n                    # print(gold_label)\n                    # print(\"updated gold label\")\n\n            \n\n           \n            raw_label_name=raw_label.replace(\"B-\",\"\").replace(\"I-\",\"\")\n            \n            word_info=[gold_word, raw_label_name, raw_label, gold_label]\n            \n            sentence.append(word_info)\n\n    \n\n\n    sentences_preds = []\n    sentence_pred = []\n    \n    for line in open(path_segmenter_pred_file):\n        if line.strip()==\"\":\n            if len(sentence_pred) > 0:\n                sentences_preds.append(sentence_pred)\n                sentence_pred=[]\n        else:\n            line_values=line.strip().split()\n            pred_word= ' '.join(line_values[:-2])\n            pred_label=line_values[-1]\n\n            word_info=[pred_word,  pred_label]\n            sentence_pred.append(word_info)\n\n    # print(len(sentences_preds),len(sentences))\n\n   \n\n\n\n    pred_merged_sentences = []\n    for sent_index in range(len(sentences)):\n        main_sent = sentences[sent_index]\n        pred_sent = sentences_preds[sent_index]\n        \n\n        new_sent = []\n        new_word_info =[]\n\n        for word_index in range(len(main_sent)):\n            [gold_word, raw_label_name, raw_label, gold_label] = main_sent[word_index]\n            [pred_word, pred_seg_label] = pred_sent[word_index]\n            \n\n            new_word_info = [gold_word, raw_label_name, raw_label,  pred_seg_label, gold_label]\n            new_sent.append(new_word_info)\n\n        if len(new_sent)>0:\n            pred_merged_sentences.append(new_sent)\n\n\n\n\n\n    print(\"------------------------------------------------------------\")\n    print(\"Number of questions in \", path, \" : \", count_question)\n    print(\"Number of answers in \", path, \" : \", count_answer)\n    print(\"Number of sentences in \", path, \" : \", len(sentences))\n    print(\"Number of sentences after merging : \" , len(pred_merged_sentences))\n    print(\"Max len sentences has\", max_len, \"words\")\n    print(\"------------------------------------------------------------\")\n    return pred_merged_sentences\n                \n\n\ndef load_sentences_conll(path, lower, zeros):\n    \"\"\"\n    Load sentences. A line must contain at least a word and its tag.\n    Sentences are separated by empty lines.\n    \"\"\"\n    sentences = []\n    sentence = []\n    for line in codecs.open(path, 'r', 'utf-8'):\n        line = zero_digits(line.rstrip()) if zeros else line.rstrip()\n        if not line:\n            if len(sentence) > 0:\n                if 'DOCSTART' not in sentence[0][0]:\n                    sentences.append(sentence)\n                sentence = []\n        else:\n            word = line.split()\n            assert len(word) >= 2\n            sentence.append(word)\n    if len(sentence) > 0:\n        if 'DOCSTART' not in sentence[0][0]:\n            sentences.append(sentence)\n    return sentences\n\n\ndef update_tag_scheme(sentences, tag_scheme):\n    \"\"\"\n    Check and update sentences tagging scheme to IOB2.\n    Only IOB1 and IOB2 schemes are accepted.\n    \"\"\"\n\n    for i, s in enumerate(sentences):\n        tags = [w[-1] for w in s]\n        #print(\"prev tags: \",tags)\n        # Check that tags are given in the IOB format\n        if not iob2(tags):\n            s_str = '\\n'.join(' '.join(w) for w in s)\n            raise Exception('Sentences should be given in IOB format! ' +\n                            'Please check sentence %i:\\n%s' % (i, s_str))\n        if tag_scheme == 'iob':\n            # If format was IOB1, we convert to IOB2\n            for word, new_tag in zip(s, tags):\n                word[-1] = new_tag\n        elif tag_scheme == 'iobes':\n            new_tags = iob_iobes(tags)\n            for word, new_tag in zip(s, new_tags):\n                word[-1] = new_tag\n\n        else:\n            raise Exception('Unknown tagging scheme!')\n        # tags = [w[-1] for w in s]\n        # print(\"new tags: \",tags)\n\n\n\ndef word_mapping(sentences, lower):\n    \"\"\"\n    Create a dictionary and a mapping of words, sorted by frequency.\n    \"\"\"\n    words = [[x[0].lower() if lower else x[0] for x in s] for s in sentences]\n    dico = create_dico(words) #dict with word frequency\n    # print(dico)\n\n    dico['<PAD>'] = 10000001\n    dico['<UNK>'] = 10000000\n    dico = {k:v for k,v in dico.items() if v>=3} #prune words which has occureced less than 3 times\n    word_to_id, id_to_word = create_mapping(dico)\n\n    print(\"Found %i unique words (%i in total)\" % (\n        len(dico), sum(len(x) for x in words)\n    ))\n\n    return dico, word_to_id, id_to_word\n\n\ndef char_mapping(sentences):\n    \"\"\"\n    Create a dictionary and mapping of characters, sorted by frequency.\n    \"\"\"\n    chars = [\"\".join([w[0] for w in s]) for s in sentences]\n    dico = create_dico(chars)\n    dico['<PAD>'] = 10000000\n    # dico[';'] = 0\n    char_to_id, id_to_char = create_mapping(dico)\n    print(\"Found %i unique characters\" % len(dico))\n    return dico, char_to_id, id_to_char\n\n\ndef tag_mapping(sentences):\n    \"\"\"\n    Create a dictionary and a mapping of tags, sorted by frequency.\n    \"\"\"\n    tags = [[word[-1] for word in s] for s in sentences]\n    dico = create_dico(tags)\n    dico[model.START_TAG] = -1\n    dico[model.STOP_TAG] = -2\n    tag_to_id, id_to_tag = create_mapping(dico)\n    print(\"Found %i unique named entity tags\" % len(dico))\n    # print(dico)\n    return dico, tag_to_id, id_to_tag\n\ndef cap_feature(s):\n    \"\"\"\n    Capitalization feature:\n    0 = low caps\n    1 = all caps\n    2 = first letter caps\n    3 = one capital (not first letter)\n    \"\"\"\n    if s.lower() == s:\n        return 0\n    elif s.upper() == s:\n        return 1\n    elif s[0].upper() == s[0]:\n        return 2\n    else:\n        return 3\n\n\ndef hand_features_to_idx(sentences):\n    hand_to_idx = []\n    count = 0\n    for s in sentences:\n        hand_to_idx.append(list(range(count, count + len(s))))\n        count += len(s)\n\n    return(hand_to_idx)\n\n\n\ndef prepare_sentence(str_words, word_to_id, char_to_id, lower=False):\n    \"\"\"\n    Prepare a sentence for evaluation.\n    \"\"\"\n    def f(x): return x.lower() if lower else x\n    words = [word_to_id[f(w) if f(w) in word_to_id else '<UNK>']\n             for w in str_words]\n    chars = [[char_to_id[c] for c in w if c in char_to_id]\n             for w in str_words]\n    caps = [cap_feature(w) for w in str_words]\n    return {\n        'str_words': str_words,\n        'words': words,\n        'chars': chars,\n        'caps': caps\n    }\n\ndef seg_pred_to_idx(sentence):\n    # print(type(sentence))\n    seg_pred_ids = []\n    for word_iter in range(len(sentence)):\n        word_info=sentence[word_iter]\n        raw_label=word_info[-2]\n        if raw_label[0]=='O':\n            seg_pred_ids.append(0)\n        else:\n            seg_pred_ids.append(1)\n    return seg_pred_ids\n\n\ndef seg_pred_to_idx_prev(sentence):\n    \n    seg_pred_ids = []\n    for word_iter in range(len(sentence)):\n        word_info=sentence[word_iter]\n        pred_label=word_info[-1]\n\n        if pred_label=='O':\n            seg_pred_ids.append(0)\n        else:\n            seg_pred_ids.append(1)\n        # elif pred_label.startswith(\"B\"):\n        #     code_pred_ids.append(1)\n        # elif pred_label.startswith(\"I\"):\n        #     code_pred_ids.append(2)\n\n    return seg_pred_ids\n\n\ndef ctc_pred_to_idx(sentence, ctc_pred_dict):\n    \n    ctc_pred_ids = []\n    for word_iter in range(len(sentence)):\n        word =sentence[word_iter][0]\n        if word in ctc_pred_dict:\n            ctc_pred_ids.append(int(ctc_pred_dict[word]))\n        else:\n            ctc_pred_ids.append(0)\n\n    # print(ctc_pred_ids)\n    return ctc_pred_ids\n\ndef ner_pred_to_idx(sentence, tag_to_id):\n    \n    ner_pred_ids = []\n    for word_iter in range(len(sentence)):\n        word_info=sentence[word_iter]\n        pred_label=word_info[3]\n\n        pred_label_id = tag_to_id[pred_label]\n        ner_pred_ids.append(pred_label_id)\n\n    return ner_pred_ids\n\n\ndef prepare_dataset(sentences, word_to_id, char_to_id, tag_to_id, ctc_pred_dict, lower=True):\n    \"\"\"\n    Prepare the dataset. Return a list of lists of dictionaries containing:\n        - word indexes\n        - word char indexes\n        - tag indexes\n    \"\"\"\n    def f(x): return x.lower() if lower else x\n    data = []\n    hands = hand_features_to_idx(sentences)\n    \n    for i, s in enumerate(sentences):\n        str_words = [w[0] for w in s]\n        words = [word_to_id[f(w) if f(w) in word_to_id else '<UNK>']\n                 for w in str_words]\n        # Skip characters that are not in the training set\n        chars = [[char_to_id[c] for c in w if c in char_to_id]\n                 for w in str_words]\n        caps = [cap_feature(w) for w in str_words]\n        tags = [tag_to_id[w[-1]] for w in s]\n        hand = hands[i]\n        seg_pred_ids=seg_pred_to_idx(s)\n        # seg_pred_ids = seg_pred_to_idx(s)\n        ctc_pred_ids = ctc_pred_to_idx(s, ctc_pred_dict)\n\n        \n\n        data.append({\n            'str_words': str_words,\n            'words': words,\n            'chars': chars,\n            'caps': caps,\n            'tags': tags,\n            'seg_pred': seg_pred_ids, #seg pred\n            'ctc_pred':ctc_pred_ids,\n            'handcrafted': hand\n        })\n    return data\n\n\ndef augment_with_pretrained(dictionary, ext_emb_path, words):\n    \"\"\"\n    Augment the dictionary with words that have a pretrained embedding.\n    If `words` is None, we add every word that has a pretrained embedding\n    to the dictionary, otherwise, we only add the words that are given by\n    `words` (typically the words in the development and test sets.)\n    \"\"\"\n    print('Loading pretrained embeddings from %s...' % ext_emb_path)\n    assert os.path.isfile(ext_emb_path)\n\n    #Load pretrained embeddings from file\n    pretrained = set([\n        line.rstrip().split()[0].strip()\n        for line in codecs.open(ext_emb_path, 'r', 'utf-8')\n        if len(ext_emb_path) > 0\n    ])\n\n    pretrained = []\n    for line in codecs.open(ext_emb_path, 'r', 'utf-8'):\n        if len(ext_emb_path) > 0:\n            try:\n                pretrained.append(line.rstrip().split()[0].strip())\n            except IndexError:\n                continue\n    pretrained = set(pretrained)\n    for word in words:\n        if word not in dictionary and any(x in pretrained for x in [word,word.lower(),re.sub('\\d', '0', word.lower())]):\n            dictionary[word] = 0 #add the word from dev & test pretrained embedding with 0 freq\n\n    # We either add every word in the pretrained file,\n    # or only words given in the `words` list to which\n    # we can assign a pretrained embedding\n\n    #JT: commented_below : as adding all words from embedding throws CUDA runtime errors\n    # if words is None:\n    #     for word in pretrained:\n    #         if word not in dictionary:\n    #             dictionary[word] = 0 #add the word from pretrained embedding with 0 freq\n    # else:\n    #     for word in words:\n    #         if any(x in pretrained for x in [\n    #             word,\n    #             word.lower(),\n    #             re.sub('\\d', '0', word.lower())\n    #         ]) and word not in dictionary:\n    #             dictionary[word] = 0 #add the word from pretrained embedding with 0 freq\n\n    word_to_id, id_to_word = create_mapping(dictionary)\n    return dictionary, word_to_id, id_to_word\n\n\ndef pad_seq(seq, max_length, PAD_token=0):\n    # add pads\n    seq += [PAD_token for i in range(max_length - len(seq))]\n    return seq\n\ndef get_batch(start, batch_size, datas, singletons=[]):\n    input_seqs = []\n    target_seqs = []\n    chars2_seqs = []\n\n    for data in datas[start:start+batch_size]:\n        # pair is chosen from pairs randomly\n        words = []\n        for word in data['words']:\n            if word in singletons and np.random.uniform() < 0.5:\n                words.append(1)\n            else:\n                words.append(word)\n        input_seqs.append(data['words'])\n        target_seqs.append(data['tags'])\n        chars2_seqs.append(data['chars'])\n\n    if input_seqs == []:\n        return [], [], [], [], [], []\n    seq_pairs = sorted(zip(input_seqs, target_seqs, chars2_seqs), key=lambda p: len(p[0]), reverse=True)\n    input_seqs, target_seqs, chars2_seqs = zip(*seq_pairs)\n\n    chars2_seqs_lengths = []\n    chars2_seqs_padded = []\n    for chars2 in chars2_seqs:\n        chars2_lengths = [len(c) for c in chars2]\n        chars2_padded = [pad_seq(c, max(chars2_lengths)) for c in chars2]\n        chars2_seqs_padded.append(chars2_padded)\n        chars2_seqs_lengths.append(chars2_lengths)\n\n    input_lengths = [len(s) for s in input_seqs]\n    # input_padded is batch * max_length\n    input_padded = [pad_seq(s, max(input_lengths)) for s in input_seqs]\n    target_lengths = [len(s) for s in target_seqs]\n    assert target_lengths == input_lengths\n    # target_padded is batch * max_length\n    target_padded = [pad_seq(s, max(target_lengths)) for s in target_seqs]\n\n    # var is max_length * batch_size\n    # input_var = Variable(torch.LongTensor(input_padded)).transpose(0, 1)\n    # target_var = Variable(torch.LongTensor(target_padded)).transpose(0, 1)\n    #\n    # if use_gpu:\n    #     input_var = input_var.cuda()\n    #     target_var = target_var.cuda()\n\n    return input_padded, input_lengths, target_padded, target_lengths, chars2_seqs_padded, chars2_seqs_lengths\n\n\ndef random_batch(batch_size, train_data, singletons=[]):\n    input_seqs = []\n    target_seqs = []\n    chars2_seqs = []\n\n\n    for i in range(batch_size):\n        # pair is chosen from pairs randomly\n        data = random.choice(train_data)\n        words = []\n        for word in data['words']:\n            if word in singletons and np.random.uniform() < 0.5:\n                words.append(1)\n            else:\n                words.append(word)\n        input_seqs.append(data['words'])\n        target_seqs.append(data['tags'])\n        chars2_seqs.append(data['chars'])\n\n    seq_pairs = sorted(zip(input_seqs, target_seqs, chars2_seqs), key=lambda p: len(p[0]), reverse=True)\n    input_seqs, target_seqs, chars2_seqs = zip(*seq_pairs)\n\n    chars2_seqs_lengths = []\n    chars2_seqs_padded = []\n    for chars2 in chars2_seqs:\n        chars2_lengths = [len(c) for c in chars2]\n        chars2_padded = [pad_seq(c, max(chars2_lengths)) for c in chars2]\n        chars2_seqs_padded.append(chars2_padded)\n        chars2_seqs_lengths.append(chars2_lengths)\n\n    input_lengths = [len(s) for s in input_seqs]\n    # input_padded is batch * max_length\n    input_padded = [pad_seq(s, max(input_lengths)) for s in input_seqs]\n    target_lengths = [len(s) for s in target_seqs]\n    assert target_lengths == input_lengths\n    # target_padded is batch * max_length\n    target_padded = [pad_seq(s, max(target_lengths)) for s in target_seqs]\n\n    # var is max_length * batch_size\n    # input_var = Variable(torch.LongTensor(input_padded)).transpose(0, 1)\n    # target_var = Variable(torch.LongTensor(target_padded)).transpose(0, 1)\n    #\n    # if use_gpu:\n    #     input_var = input_var.cuda()\n    #     target_var = target_var.cuda()\n\n    return input_padded, input_lengths, target_padded, target_lengths, chars2_seqs_padded, chars2_seqs_lengths\n"
  },
  {
    "path": "code/Attentive_BiLSTM/make_segment_pred.py",
    "content": "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# print(line)\n\t\tif line.strip()==\"\":\n\t\t\tfout.write(line)\n\t\t\tcontinue\n\t\tline_values = line.strip().split(' ')\n\t\t# print(line_values)\n\t\tword = line_values[0]\n\t\tgold_tag= line_values[-2]\n\t\tpred_tag=\"O\"\n\n\t\tr1 = random.randint(1,100)\n\n\t\tkeep_I=True\n\n\t\tif r1%79==0:\n\t\t\tkeep_I=False\n\n\t\tif gold_tag[0]==\"I\" and keep_I:\n\t\t\tpred_tag=\"Name\"\n\n\t\tif gold_tag[0]==\"B\":\n\t\t\tpred_tag=\"Name\"\n\n\t\tgold_tag=gold_tag.replace(\"B-\",\"\").replace(\"I-\",\"\")\n\n\t\topline = word+\" \"+gold_tag+\" \"+pred_tag+\"\\n\"\n\t\t# print(opline)\n\t\tfout.write(opline)\n\n\n\n\t\t# print(r1)\n\tfout.close()\n\n\t\t\n\n\n\nif __name__ == '__main__':\n\tip_file = \"pred.dev_7\"\n\tread_file(ip_file)\n\n\tip_file = \"pred.test_7\"\n\tread_file(ip_file)\n\n\tip_file = \"pred.train_7\"\n\tread_file(ip_file)\n\n\n\n\n\n"
  },
  {
    "path": "code/Attentive_BiLSTM/make_vocab.py",
    "content": "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\tif line.strip()==\"\":\n\t\t\tcontinue\n\t\tline_values = line.strip().split(' ')\n\t\tword = line_values[0]\n\n\t\tvocab[word]+=1\n\n\t\t\t\n\t\t\t\n\nif __name__ == '__main__':\n\tip_file = \"pred.dev_7\"\n\tread_file(ip_file)\n\n\tip_file = \"pred.test_7\"\n\tread_file(ip_file)\n\n\tip_file = \"pred.train_7\"\n\tread_file(ip_file)\n\n\tfout = open(\"vocab.tsv\",'w')\n\n\tfor w in vocab:\n\t\tprint(w, vocab[w])\n\t\topline=w+\"\\t\"+str(vocab[w])+\"\\n\"\n\t\tfout.write(opline)\n\tfout.close()\n"
  },
  {
    "path": "code/Attentive_BiLSTM/model.py",
    "content": "import torch\nimport torch.autograd as autograd\nfrom torch.autograd import Variable\n\n\n\nimport utils_so as utils \nfrom utils_so import *\n\nfrom config_so import parameters\n\ntorch.backends.cudnn.deterministic = True\ntorch.manual_seed(parameters[\"seed\"])\n\n\nfrom allennlp.modules.elmo import Elmo, batch_to_ids\nfrom allennlp.commands.elmo import ElmoEmbedder\n\n\nfrom HAN import *\nSTART_TAG = '<START>'\nSTOP_TAG = '<STOP>'\n\n\ndef to_scalar(var):\n    return var.view(-1).data.tolist()[0]\n\n\ndef argmax(vec):\n    _, idx = torch.max(vec, 1)\n    return to_scalar(idx)\n\n\ndef prepare_sequence(seq, to_ix):\n    idxs = [to_ix[w] for w in seq]\n    tensor = torch.LongTensor(idxs)\n    return Variable(tensor)\n\n\ndef log_sum_exp(vec):\n    # vec 2D: 1 * tagset_size\n    max_score = vec[0, argmax(vec)]\n    max_score_broadcast = max_score.view(1, -1).expand(1, vec.size()[1])\n    return max_score + \\\n        torch.log(torch.sum(torch.exp(vec - max_score_broadcast)))\n\ndef _align_word(input_matrix, word_pos_list=[1]):\n    \"\"\"\n        To change presentation of the batch.\n    Args:\n        input_matrix (autograd.Variable):  The the presentation of the word in the sentence. [sentence_num, sentence_embedding]\n        word_pos_list (list): The list contains the position of the word in the current sentence.\n        \n    Returns:\n        new_matrix (torch.FloatTensor): The aligned matrix, and its each row is one sentence in the passage.\n                                        [passage_num, max_len, embedding_size]\n    \"\"\"\n    # assert isinstance(input_matrix, torch.autograd.Variable), 'The input object must be Variable'\n\n    embedding_size = input_matrix.shape[-1]      # To get the embedding size of the sentence\n    number_of_words = len(word_pos_list)                  # To get the number of the sentences\n    # if sent_max is not None:\n    #     max_len = sent_max\n    # else:\n    #     max_len = torch.max(sent_num)\n    max_len=1\n    new_matrix = autograd.Variable(torch.zeros(number_of_words, max_len, embedding_size))\n    init_index = 0\n    for index, length in enumerate(word_pos_list):\n        end_index = init_index + length\n\n        # temp_matrix\n        temp_matrix = input_matrix[init_index:end_index, :]      # To get one passage sentence embedding.\n        if temp_matrix.shape[0] > max_len:\n            temp_matrix = temp_matrix[:max_len]\n        new_matrix[index, -length:, :] = temp_matrix\n\n        # update the init_index of the input matrix\n        init_index = length\n    return new_matrix\n\n\n\n\n\n    \nclass BiLSTM_CRF(nn.Module):\n\n    def __init__(self, vocab_size, tag_to_ix, embedding_dim, freq_embed_dim, markdown_embed_dim,seg_pred_embed_dim, hidden_dim, char_lstm_dim=25,\n                 char_to_ix=None, pre_word_embeds=None, word_freq_embeds=None, word_ner_pred_embeds=None, word_seg_pred_embeds=None, word_markdown_embeds=None, word_ctc_pred_embeds=None, char_embedding_dim=25, use_gpu=False,\n                 n_cap=None, cap_embedding_dim=None, use_crf=True, char_mode='CNN'):\n        super(BiLSTM_CRF, self).__init__()\n        self.use_gpu = use_gpu\n        self.embedding_dim = embedding_dim\n        self.hidden_dim = hidden_dim\n        self.vocab_size = vocab_size\n        self.tag_to_ix = tag_to_ix\n        self.n_cap = n_cap\n        self.cap_embedding_dim = cap_embedding_dim\n        self.use_crf = use_crf\n        self.tagset_size = len(tag_to_ix)\n        self.out_channels = char_lstm_dim\n        self.char_mode = char_mode\n\n        self.embed_attn = Embeeding_Attn()\n        self.word_attn = Word_Attn()\n\n\n\n        \n\n        #init elmo if use_elmo is set to True(1)\n        self.use_elmo = parameters['use_elmo']\n\n        if self.use_elmo:\n            options_file = parameters[\"elmo_options\"]\n            weight_file = parameters[\"elmo_weight\"]\n\n            self.elmo = Elmo(options_file, weight_file, 2, dropout=0)\n            self.elmo_2 = ElmoEmbedder(options_file, weight_file)\n            \n\n\n        print('char_mode: %s, out_channels: %d, hidden_dim: %d, ' % (char_mode, char_lstm_dim, hidden_dim))\n        # self.lstm=nn.LSTM(self.get_lstm_input_dim(),hidden_dim, bidirectional=True)\n        if parameters['use_han']:\n            self.lstm=nn.LSTM(300,hidden_dim, bidirectional=True)\n        else:\n            self.lstm=nn.LSTM(1824,hidden_dim, bidirectional=True)\n        \n        \n        \n\n        if self.use_elmo:\n            \n            if parameters['use_elmo_w_char']:\n                if self.n_cap and self.cap_embedding_dim:\n                    self.cap_embeds = nn.Embedding(self.n_cap, self.cap_embedding_dim)\n                    init_embedding(self.cap_embeds.weight)\n\n                if char_embedding_dim is not None:\n                    self.char_lstm_dim = char_lstm_dim\n                    self.char_embeds = nn.Embedding(len(char_to_ix), char_embedding_dim)\n                    init_embedding(self.char_embeds.weight)\n\n                    if self.char_mode == 'LSTM':\n                        self.char_lstm = nn.LSTM(char_embedding_dim, char_lstm_dim, num_layers=1, bidirectional=True)\n                        init_lstm(self.char_lstm)\n                    if self.char_mode == 'CNN':\n                        self.char_cnn3 = nn.Conv2d(in_channels=1, out_channels=self.out_channels, kernel_size=(3, char_embedding_dim), padding=(2,0))\n\n                    \n\n           \n\n        else:\n            if self.n_cap and self.cap_embedding_dim:\n                self.cap_embeds = nn.Embedding(self.n_cap, self.cap_embedding_dim)\n                init_embedding(self.cap_embeds.weight)\n\n            if char_embedding_dim is not None:\n                self.char_lstm_dim = char_lstm_dim\n                self.char_embeds = nn.Embedding(len(char_to_ix), char_embedding_dim)\n                init_embedding(self.char_embeds.weight)\n                \n                if self.char_mode == 'LSTM':\n                    self.char_lstm = nn.LSTM(char_embedding_dim, char_lstm_dim, num_layers=1, bidirectional=True)\n                    init_lstm(self.char_lstm)\n                if self.char_mode == 'CNN':\n                    self.char_cnn3 = nn.Conv2d(in_channels=1, out_channels=self.out_channels, kernel_size=(3, char_embedding_dim), padding=(2,0))\n\n            self.word_embeds = nn.Embedding(vocab_size, embedding_dim)\n            if pre_word_embeds is not None:\n                self.pre_word_embeds = True\n                self.word_embeds.weight = nn.Parameter(torch.FloatTensor(pre_word_embeds))\n            else:\n                self.pre_word_embeds = False\n\n            \n            \n            \n\n\n        self.dropout = nn.Dropout(parameters['dropout'])\n\n        #----------adding frequency embedding--------\n        self.freq_embeds = nn.Embedding(vocab_size, freq_embed_dim)\n        if word_freq_embeds is not None:\n            self.word_freq_embeds = True\n            self.freq_embeds.weight = nn.Parameter(torch.FloatTensor(word_freq_embeds))\n        else:\n            self.word_freq_embeds = False\n\n        #----------adding markdown embedding--------\n        # self.markdown_embeds = nn.Embedding(parameters['markdown_count'], markdown_embed_dim)\n        # if word_markdown_embeds is not None:\n        #     self.use_markdown_embed = True\n        #     self.markdown_embeds.weight = nn.Parameter(torch.FloatTensor(word_markdown_embeds))\n        # else:\n        #     self.use_markdown_embed = False\n\n        #----------adding segmentation embedding--------\n        self.seg_embeds = nn.Embedding(parameters['segmentation_count'], parameters['segmentation_dim'])\n        if word_seg_pred_embeds is not None:\n            self.use_seg_pred_embed = True\n            self.seg_embeds.weight = nn.Parameter(torch.FloatTensor(word_seg_pred_embeds))\n        else:\n            self.use_seg_pred_embed = False\n\n\n        #----------adding ctc prediction embedding--------\n        self.ctc_pred_embeds = nn.Embedding(parameters['code_recognizer_count'], parameters['code_recognizer_dim'])\n        if word_ctc_pred_embeds is not None:\n            self.use_ctc_pred_embed = True\n            self.ctc_pred_embeds.weight = nn.Parameter(torch.FloatTensor(word_ctc_pred_embeds))\n        else:\n            self.use_ctc_pred_embed = False\n\n\n        #----------adding ner prediction embedding--------\n        # self.ner_pred_embeds = nn.Embedding(parameters['ner_pred_count'], parameters['ner_pred_dim'])\n        # if word_ner_pred_embeds is not None:\n        #     self.use_ner_pred_embed = True\n        #     self.ner_pred_embeds.weight = nn.Parameter(torch.FloatTensor(word_ner_pred_embeds))\n        # else:\n        #     self.use_ner_pred_embed = False\n\n\n        init_lstm(self.lstm)\n        # init_lstm(self.lstm_2)\n        self.hw_trans = nn.Linear(self.out_channels, self.out_channels)\n        self.hw_gate = nn.Linear(self.out_channels, self.out_channels)\n        self.h2_h1 = nn.Linear(hidden_dim*2, hidden_dim)\n        self.tanh = nn.Tanh()\n        self.hidden2tag = nn.Linear(hidden_dim*2, self.tagset_size)\n        init_linear(self.h2_h1)\n        init_linear(self.hidden2tag)\n        init_linear(self.hw_gate)\n        init_linear(self.hw_trans)\n\n        if self.use_crf:\n            self.transitions = nn.Parameter(\n                torch.zeros(self.tagset_size, self.tagset_size))\n            self.transitions.data[tag_to_ix[START_TAG], :] = -10000\n            self.transitions.data[:, tag_to_ix[STOP_TAG]] = -10000\n\n    \n\n\n    \n    \n\n\n    def _score_sentence(self, feats, tags):\n        # tags is ground_truth, a list of ints, length is len(sentence)\n        # feats is a 2D tensor, len(sentence) * tagset_size\n        r = torch.LongTensor(range(feats.size()[0]))\n        if self.use_gpu:\n            r = r.cuda()\n            pad_start_tags = torch.cat([torch.cuda.LongTensor([self.tag_to_ix[START_TAG]]), tags])\n            pad_stop_tags = torch.cat([tags, torch.cuda.LongTensor([self.tag_to_ix[STOP_TAG]])])\n        else:\n            pad_start_tags = torch.cat([torch.LongTensor([self.tag_to_ix[START_TAG]]), tags])\n            pad_stop_tags = torch.cat([tags, torch.LongTensor([self.tag_to_ix[STOP_TAG]])])\n\n        score = torch.sum(self.transitions[pad_stop_tags, pad_start_tags]) + torch.sum(feats[r, tags])\n\n        return score    \n\n    def get_char_embedding(self, sentence, chars2, caps, chars2_length, d):\n\n        if self.char_mode == 'LSTM':\n            # self.char_lstm_hidden = self.init_lstm_hidden(dim=self.char_lstm_dim, bidirection=True, batchsize=chars2.size(0))\n            chars_embeds = self.char_embeds(chars2).transpose(0, 1)\n            packed = torch.nn.utils.rnn.pack_padded_sequence(chars_embeds, chars2_length)\n            lstm_out, _ = self.char_lstm(packed)\n            outputs, output_lengths = torch.nn.utils.rnn.pad_packed_sequence(lstm_out)\n            outputs = outputs.transpose(0, 1)\n            chars_embeds_temp = Variable(torch.FloatTensor(torch.zeros((outputs.size(0), outputs.size(2)))))\n            if self.use_gpu:\n                chars_embeds_temp = chars_embeds_temp.cuda()\n            for i, index in enumerate(output_lengths):\n                chars_embeds_temp[i] = torch.cat((outputs[i, index-1, :self.char_lstm_dim], outputs[i, 0, self.char_lstm_dim:]))\n            chars_embeds = chars_embeds_temp.clone()\n            for i in range(chars_embeds.size(0)):\n                chars_embeds[d[i]] = chars_embeds_temp[i]\n\n        if self.char_mode == 'CNN':\n            chars_embeds = self.char_embeds(chars2).unsqueeze(1)\n            # chars_cnn_out3 = self.char_cnn3(chars_embeds)\n            chars_cnn_out3 = nn.functional.relu(self.char_cnn3(chars_embeds))   \n            chars_embeds = nn.functional.max_pool2d(chars_cnn_out3,\n                                                 kernel_size=(chars_cnn_out3.size(2), 1)).view(chars_cnn_out3.size(0), self.out_channels)\n\n        # t = self.hw_gate(chars_embeds)\n        # g = nn.functional.sigmoid(t)\n        # h = nn.functional.relu(self.hw_trans(chars_embeds))\n        # chars_embeds = g * h + (1 - g) * chars_embeds\n\n        # embeds = self.word_embeds(sentence)\n        # # word_emebd_parameters = m.weight.numpy()\n        # if self.n_cap and self.cap_embedding_dim:\n        #     cap_embedding = self.cap_embeds(caps)\n\n        # if self.n_cap and self.cap_embedding_dim:\n        #     embeds = torch.cat((embeds, chars_embeds, cap_embedding), 1)\n        # else:\n        #     embeds = torch.cat((embeds, chars_embeds), 1)\n\n        # embeds = embeds.unsqueeze(1)\n        # embeds = self.dropout(embeds)\n        # lstm_out, _ = self.lstm(embeds)\n        # lstm_out = lstm_out.view(len(sentence), self.hidden_dim*2)\n        # lstm_out = self.dropout(lstm_out)\n        # lstm_feats = self.hidden2tag(lstm_out)\n        return chars_embeds\n\n    def _get_lstm_features_w_elmo_and_char(self, sentence_words, sentence,markdown, chars2, caps, chars2_length, d):\n        if self.char_mode == 'LSTM':\n            # self.char_lstm_hidden = self.init_lstm_hidden(dim=self.char_lstm_dim, bidirection=True, batchsize=chars2.size(0))\n            chars_embeds = self.char_embeds(chars2).transpose(0, 1)\n            packed = torch.nn.utils.rnn.pack_padded_sequence(chars_embeds, chars2_length)\n            lstm_out, _ = self.char_lstm(packed)\n            outputs, output_lengths = torch.nn.utils.rnn.pad_packed_sequence(lstm_out)\n            outputs = outputs.transpose(0, 1)\n            chars_embeds_temp = Variable(torch.FloatTensor(torch.zeros((outputs.size(0), outputs.size(2)))))\n            if self.use_gpu:\n                chars_embeds_temp = chars_embeds_temp.cuda()\n            for i, index in enumerate(output_lengths):\n                chars_embeds_temp[i] = torch.cat((outputs[i, index-1, :self.char_lstm_dim], outputs[i, 0, self.char_lstm_dim:]))\n            chars_embeds = chars_embeds_temp.clone()\n            for i in range(chars_embeds.size(0)):\n                chars_embeds[d[i]] = chars_embeds_temp[i]\n\n        if self.char_mode == 'CNN':\n            chars_embeds = self.char_embeds(chars2).unsqueeze(1)\n            # chars_cnn_out3 = self.char_cnn3(chars_embeds)\n            chars_cnn_out3 = nn.functional.relu(self.char_cnn3(chars_embeds))   \n            chars_embeds = nn.functional.max_pool2d(chars_cnn_out3,\n                                                 kernel_size=(chars_cnn_out3.size(2), 1)).view(chars_cnn_out3.size(0), self.out_channels)\n\n\n        character_ids = batch_to_ids([sentence_words])\n        if self.use_gpu:\n            character_ids = character_ids.cuda()\n        embeddings = self.elmo(character_ids)\n        embeddings = embeddings['elmo_representations'][0]\n        embeds = embeddings[0]\n       \n        \n        \n        if self.use_gpu:\n            embeds=embeds.cuda()\n\n        embeds = torch.cat((embeds, chars_embeds), 1)\n        \n        \n       \n\n       \n\n\n        embeds = embeds.unsqueeze(1)\n        # print(embeds.size())\n        embeds = self.dropout(embeds)\n        lstm_out, _ = self.lstm(embeds)\n        lstm_out = lstm_out.view(len(sentence_words), self.hidden_dim*2)\n        lstm_out = self.dropout(lstm_out)\n        lstm_feats = self.hidden2tag(lstm_out)\n        return lstm_feats\n\n    def apply_attention(self, elmo_embeds, seg_embeds, ctc_embeds):\n        word_tensor_list = []\n        word_pos_list=[]\n        sent_len =elmo_embeds.size()[0]\n\n        for index in range(sent_len):\n            elmo_rep = elmo_embeds[index]\n            ctc_rep = ctc_embeds[index]\n            seg_rep = seg_embeds[index]\n            comb_rep = torch.cat((elmo_rep, ctc_rep, seg_rep)).view(1, 1, -1)\n            # print(comb_rep.size())\n            attentive_rep=self.embed_attn(comb_rep)\n            word_tensor_list.append(attentive_rep)\n            word_pos_list.append(index+1)\n\n        word_tensor =  torch.stack(word_tensor_list)\n        if self.use_gpu:\n            word_tensor=word_tensor.cuda()\n\n        \n        x = _align_word(word_tensor, word_pos_list)\n        if self.use_gpu:\n            x=x.cuda()\n        y = self.word_attn(x)\n        # print(\"y size: \", y.size())\n        return y\n\n\n    def _get_lstm_features_w_elmo(self, sentence_words, sentence, seg_pred, ctc_pred):\n        \n\n        character_ids = batch_to_ids([sentence_words])\n        if self.use_gpu:\n            character_ids = character_ids.cuda()\n        embeddings = self.elmo(character_ids)\n        embeddings = embeddings['elmo_representations'][0]\n        embeds = embeddings[0]\n        # print(\"embeds size: \",embeds.size())\n        # bilm_layer_1 = embeddings[1]\n        # bilm_layer_2 = embeddings[2]\n        if self.use_gpu:\n            embeds=embeds.cuda()\n            elmo_embeds=embeds.cuda()\n\n        if parameters['use_freq_vector']:\n            frequency_embeddings = self.freq_embeds(sentence)\n            embeds = torch.cat((embeds, frequency_embeddings), 0)\n        \n        \n        \n        # # print(\"embeds size: \",embeds.size())\n        # # print(\"embeds size w current : \", embeds.size())\n        # # embeds = embeds.unsqueeze(1)\n        # # print(\"embeds size w current : \", embeds.size())\n\n\n        # \n        if parameters['use_segmentation_vector'] :\n            segment_embeddings = self.seg_embeds(seg_pred)\n            embeds = torch.cat((embeds, segment_embeddings), 1)\n        # print(\"markdown_embeddings.unsqueeze(1) size:\", markdown_embeddings.unsqueeze(1).size())\n\n        if parameters['use_code_recognizer_vector']:\n            ctc_pred_embeddings = self.ctc_pred_embeds(ctc_pred)\n            embeds = torch.cat((embeds, ctc_pred_embeddings), 1)\n        \n        \n\n        if parameters['use_han']:\n            attentive_word_embeds = self.apply_attention(elmo_embeds, segment_embeddings, ctc_pred_embeddings)\n            embeds=attentive_word_embeds\n\n        \n        else:\n            embeds = embeds.unsqueeze(1)\n\n\n        embeds = self.dropout(embeds)\n        \n\n        # embeds = self.dropout(merged_embeds)\n        lstm_out, _ = self.lstm(embeds)\n        #lstm_out, _ = self.lstm_2(lstm_out)\n        lstm_out = lstm_out.view(len(sentence_words), self.hidden_dim*2)\n        lstm_out = self.dropout(lstm_out)\n        lstm_feats = self.hidden2tag(lstm_out)\n        return lstm_feats\n\n\n\n    def _get_lstm_features_w_elmo_prev(self, sentence_words, sentence, markdown, seg_pred):\n        # print(sentence_words)\n        # print(sentence)\n        # print(markdown)\n        # print(seg_pred)\n\n        # print(len(sentence_words))\n        # embeddings =self.elmo_2.embed_sentence(sentence_words)\n        # char_layer_embed = embeddings[0]\n        # bilm_layer_1 = embeddings[1]\n        # bilm_layer_2 = embeddings[2]\n\n        # embeds=torch.from_numpy(bilm_layer_2).float()\n        # if self.use_gpu:\n        #     embeds=embeds.cuda()\n        # print(\"embeds size before: \", embeds.size())\n        # embeds = embeds.unsqueeze(1)\n        # print(\"embeds size before: \", embeds.size())\n\n\n\n        character_ids = batch_to_ids([sentence_words])\n        if self.use_gpu:\n            character_ids = character_ids.cuda()\n        embeddings = self.elmo(character_ids)\n        embeddings = embeddings['elmo_representations'][0]\n        embeds = embeddings[0]\n        # print(\"embeds size: \",embeds.size())\n        # bilm_layer_1 = embeddings[1]\n        # bilm_layer_2 = embeddings[2]\n        if self.use_gpu:\n            embeds=embeds.cuda()\n            elmo_embeds=embeds.cuda()\n\n        if parameters['use_freq_vector']:\n            frequency_embeddings = self.freq_embeds(sentence)\n            embeds = torch.cat((embeds, frequency_embeddings), 0)\n        \n        \n        \n        # print(\"embeds size: \",embeds.size())\n        # print(\"embeds size w current : \", embeds.size())\n        # embeds = embeds.unsqueeze(1)\n        # print(\"embeds size w current : \", embeds.size())\n\n\n        # \n        if parameters['use_markdown_vector'] :\n            markdown_embeddings = self.markdown_embeds(markdown)\n            embeds = torch.cat((embeds, markdown_embeddings), 1)\n\n        if parameters['use_segmentation_vector']:\n            seg_pred_embeddings = self.seg_pred_embeds(seg_pred)\n            embeds = torch.cat((embeds, seg_pred_embeddings), 1)\n\n        attentive_word_embeds = self.apply_attention(elmo_embeds, markdown_embeddings, seg_pred_embeddings)\n\n        print(\"attentive_word_embeds.size(): \",attentive_word_embeds.size())\n        print(\"embeds.size(): \", embeds.size())\n\n        embeds = embeds.unsqueeze(1)\n        print(\"embeds.unsqueeze(1): \",embeds.size())\n        embeds = self.dropout(embeds)\n        lstm_out, _ = self.lstm(embeds)\n        #lstm_out, _ = self.lstm_2(lstm_out)\n        lstm_out = lstm_out.view(len(sentence_words), self.hidden_dim*2)\n        lstm_out = self.dropout(lstm_out)\n        lstm_feats = self.hidden2tag(lstm_out)\n        return lstm_feats\n\n\n        \n\n    def _get_lstm_features(self, sentence, markdown, chars2, caps, chars2_length, d):\n\n        if self.char_mode == 'LSTM':\n            # self.char_lstm_hidden = self.init_lstm_hidden(dim=self.char_lstm_dim, bidirection=True, batchsize=chars2.size(0))\n            chars_embeds = self.char_embeds(chars2).transpose(0, 1)\n            packed = torch.nn.utils.rnn.pack_padded_sequence(chars_embeds, chars2_length)\n            lstm_out, _ = self.char_lstm(packed)\n            outputs, output_lengths = torch.nn.utils.rnn.pad_packed_sequence(lstm_out)\n            outputs = outputs.transpose(0, 1)\n            chars_embeds_temp = Variable(torch.FloatTensor(torch.zeros((outputs.size(0), outputs.size(2)))))\n            if self.use_gpu:\n                chars_embeds_temp = chars_embeds_temp.cuda()\n            for i, index in enumerate(output_lengths):\n                chars_embeds_temp[i] = torch.cat((outputs[i, index-1, :self.char_lstm_dim], outputs[i, 0, self.char_lstm_dim:]))\n            chars_embeds = chars_embeds_temp.clone()\n            for i in range(chars_embeds.size(0)):\n                chars_embeds[d[i]] = chars_embeds_temp[i]\n\n        if self.char_mode == 'CNN':\n            chars_embeds = self.char_embeds(chars2).unsqueeze(1)\n            # chars_cnn_out3 = self.char_cnn3(chars_embeds)\n            chars_cnn_out3 = nn.functional.relu(self.char_cnn3(chars_embeds))   \n            chars_embeds = nn.functional.max_pool2d(chars_cnn_out3,\n                                                 kernel_size=(chars_cnn_out3.size(2), 1)).view(chars_cnn_out3.size(0), self.out_channels)\n\n        # t = self.hw_gate(chars_embeds)\n        # g = nn.functional.sigmoid(t)\n        # h = nn.functional.relu(self.hw_trans(chars_embeds))\n        # chars_embeds = g * h + (1 - g) * chars_embeds\n\n        embeds = self.word_embeds(sentence)\n        \n\n\n        # word_emebd_parameters = m.weight.numpy()\n        if self.n_cap and self.cap_embedding_dim:\n            cap_embedding = self.cap_embeds(caps)\n\n        if self.n_cap and self.cap_embedding_dim:\n            embeds = torch.cat((embeds, chars_embeds, cap_embedding), 1)\n        else:\n            embeds = torch.cat((embeds, chars_embeds), 1)\n\n        if parameters['use_freq_vector']:\n            frequency_embeddings = self.freq_embeds(sentence)\n            embeds = torch.cat((embeds, frequency_embeddings), 1)\n        if parameters['use_markdown_vector'] :\n            markdown_embeddings = self.markdown_embeds(markdown)\n            embeds = torch.cat((embeds, markdown_embeddings), 1)\n        # print(\"embed before unsqueeze\")\n        # print(embeds.size())\n        # print(embeds)\n        embeds = embeds.unsqueeze(1) #what is done here\n        # print(\"embed after unsqueeze\")\n        # print(embeds.size())\n        # print(embeds)\n\n        embeds = self.dropout(embeds)\n        lstm_out, _ = self.lstm(embeds)\n\n        # print(lstm_out.size())\n        # print(len(sentence))\n\n        lstm_out = lstm_out.view(len(sentence), self.hidden_dim*2)\n        lstm_out = self.dropout(lstm_out)\n        lstm_feats = self.hidden2tag(lstm_out)\n        return lstm_feats\n\n    def _forward_alg(self, feats):\n        # calculate in log domain\n        # feats is len(sentence) * tagset_size\n        # initialize alpha with a Tensor with values all equal to -10000.\n        init_alphas = torch.Tensor(1, self.tagset_size).fill_(-10000.)\n        init_alphas[0][self.tag_to_ix[START_TAG]] = 0.\n        forward_var = autograd.Variable(init_alphas)\n        if self.use_gpu:\n            forward_var = forward_var.cuda()\n        for feat in feats:\n            emit_score = feat.view(-1, 1)\n            tag_var = forward_var + self.transitions + emit_score\n            max_tag_var, _ = torch.max(tag_var, dim=1)\n            tag_var = tag_var - max_tag_var.view(-1, 1)\n            forward_var = max_tag_var + torch.log(torch.sum(torch.exp(tag_var), dim=1)).view(1, -1) # ).view(1, -1)\n        terminal_var = (forward_var + self.transitions[self.tag_to_ix[STOP_TAG]]).view(1, -1)\n        alpha = log_sum_exp(terminal_var)\n        # Z(x)\n        return alpha\n\n    def viterbi_decode(self, feats):\n        backpointers = []\n        # analogous to forward\n        init_vvars = torch.Tensor(1, self.tagset_size).fill_(-10000.)\n        init_vvars[0][self.tag_to_ix[START_TAG]] = 0.0\n        forward_var = Variable(init_vvars)\n        if self.use_gpu:\n            forward_var = forward_var.cuda()\n        for feat in feats:\n            next_tag_var = forward_var.view(1, -1).expand(self.tagset_size, self.tagset_size) + self.transitions\n            _, bptrs_t = torch.max(next_tag_var, dim=1)\n            bptrs_t = bptrs_t.squeeze().data.cpu().numpy()\n            next_tag_var = next_tag_var.data.cpu().numpy()\n            viterbivars_t = next_tag_var[range(len(bptrs_t)), bptrs_t]\n            viterbivars_t = Variable(torch.FloatTensor(viterbivars_t))\n            if self.use_gpu:\n                viterbivars_t = viterbivars_t.cuda()\n            forward_var = viterbivars_t + feat\n            backpointers.append(bptrs_t)\n\n        terminal_var = forward_var + self.transitions[self.tag_to_ix[STOP_TAG]]\n        terminal_var.data[self.tag_to_ix[STOP_TAG]] = -10000.\n        terminal_var.data[self.tag_to_ix[START_TAG]] = -10000.\n        best_tag_id = argmax(terminal_var.unsqueeze(0))\n        path_score = terminal_var[best_tag_id]\n        best_path = [best_tag_id]\n        for bptrs_t in reversed(backpointers):\n            best_tag_id = bptrs_t[best_tag_id]\n            best_path.append(best_tag_id)\n        start = best_path.pop()\n        assert start == self.tag_to_ix[START_TAG]\n        best_path.reverse()\n        return path_score, best_path\n\n    def neg_log_likelihood(self, sentence_tokens, sentence, sentence_seg_preds,sentence_ctc_preds, tags, chars2, caps, chars2_length, d):\n        # sentence, tags is a list of ints\n        # features is a 2D tensor, len(sentence) * self.tagset_size\n        feats = self._get_lstm_features_w_elmo(sentence_tokens, sentence, sentence_seg_preds, sentence_ctc_preds)\n\n        # if self.use_elmo:\n        #     if parameters['use_elmo_w_char']:\n        #         feats = self._get_lstm_features_w_elmo_and_char(sentence_tokens, sentence, sentence_markdowns, chars2, caps, chars2_length, d)\n        #     else:\n        #         feats = self._get_lstm_features_w_elmo(sentence_tokens, sentence, sentence_seg_preds, sentence_ctc_preds)\n        # else:\n        #     feats = self._get_lstm_features(sentence,sentence_markdowns, chars2, caps, chars2_length, d)\n\n        if self.use_crf:\n            forward_score = self._forward_alg(feats)\n            gold_score = self._score_sentence(feats, tags)\n            return forward_score - gold_score\n        else:\n            tags = Variable(tags)\n            scores = nn.functional.cross_entropy(feats, tags)\n            return scores\n\n\n    def forward(self,sentence_tokens, sentence, sentence_seg_preds, sentence_ctc_preds, chars, caps, chars2_length, d):\n        feats = self._get_lstm_features_w_elmo(sentence_tokens,  sentence, sentence_seg_preds,sentence_ctc_preds)\n\n        # if self.use_elmo:\n        #     if parameters['use_elmo_w_char']:\n        #         feats = self._get_lstm_features_w_elmo_and_char(sentence_tokens, sentence,sentence_markdowns, chars, caps, chars2_length, d)\n        #     else:\n        #         feats = self._get_lstm_features_w_elmo(sentence_tokens,  sentence, sentence_markdowns,sentence_ctc_preds)\n            \n        # else:\n        #     feats = self._get_lstm_features(sentence,sentence_markdowns, chars, caps, chars2_length, d)\n        # viterbi to get tag_seq\n        if self.use_crf:\n            score, tag_seq = self.viterbi_decode(feats)\n        else:\n            score, tag_seq = torch.max(feats, 1)\n            tag_seq = list(tag_seq.cpu().data)\n\n        return score, tag_seq\n"
  },
  {
    "path": "code/Attentive_BiLSTM/other_files/oov_words.txt",
    "content": "influx\nTCP/IP\nPostgres\nindicated\ncd\nrabbitmq-plugins\nDevTools\nMe\n_ViewStart.cshtml\nDataView\nThus\ndonot\nBecome\nmetadata\nive\nmixing\nverbal\nColorBox\nfullfill\n_assignments\nmostly\nUIButtons\ndubious\n/var/log/apache2/error.log\nappSoundPlayer\nunderlying\nintelligent\nunmount\nCoding\nwww.site2.com\nMind\nsecure\nease\ncredit\nCD\npair\nedited\nGreatly\nDECIMAL\nsay.\nSpannedStringt/text\nstd::vector\nchange/add\nPrototype\nimpact\nRootViewController\ncontrolled\ngeneration\nfactoring\nDT\n.and\nserved\nLongInt\n()\nYEAR\nshapes\n-U\nperformDatabaseMethod\nKentico\n-T\nhttp://msdn.microsoft.com/en-us/library/ff772782.aspx\nDTS\ndisappearing\nhttps://regex101.com/r/GqtOuQ/3\n101))\najax-request\ncloud\nBlend\nvariety\nNearly\nscream\nObviously\n255.255.255.63\nwithText(\nBROWSER\nde-serialize\nimpressed\ndynamic_div\nValidationExpression\nundesired\nTO\nJsPerf\nslowness\nRecyclerView\nViews/Layouts\n_counts\nre-write\nchose\n.m\njqm\n$scope\nintend\ninfluence\nGST_DEBUG\nRange\nbrief\ngrowing\npython-dateutil\ndbase.so\nm*n\ntravelMode\nplaylist\nLAN\n4567\nunfortunate\n--root-directory\nnon-Spring\nmails\ncomparer\nstd::vector<char>\n0011\nepoch\nremarks\nconstruct\nclosed\nconsequently\nCM\nclickable\nschedulenotification\neveryone\nEspresso\nrelying\nDAY\nsource2-target2\ndelimeter\n2KB\nspecifically\ncol-lg-6\nfinderr\nfunctional\nUIWebView\nsector\nmobileinit\nScreenshot\ntop-most\nSettings.Default.Save()\nMost\n-I\n/abc/\n10.7\ncommenting\nHanselman\ntreat\nassignments\nUnion\nfriendly\n/mnt/dev/pts\n110\ntransformation\nhttp://plnkr.co/edit/lxPAbIJmRaLmyagXQAFC?p=info\nWHAT\nunblock\nMailGun\nnoted\nInformix\nProcess\nFoxPro9\nchroot\nfidelity\nFileInputStream\nRuntime\nexcel\nsource1-target1\nAndroidManifest.xml\n90%\n$wp_query\nJun\ncapitalized\nThu\nquarter\none-past-the-end\nimediatly\nsuperseded\nslugs\nSurname\n2012-12-03T00:00:00Z\ntring\nbubblesort\nfile.Here\nwordpress\n10130\nDATE\nUIView\npotentially\nsmtp\npreload\n40\nsetOnPreparedListener\nBitConverter.GetBytes\nfetchMetadata()\nSystem.Windows.Markup.XamlWriter.Save(myObject.Template)\n.ajax\nsensible\nMarc\nyour_password\ntracking\nstrong\nappreciative\nmb\nApiController\n/home\nUTC\nmalloc\nGuys\ncategorie\nWaypoints\nmigration\nBCP\ndistro\napi/db\nstuff\nlooped\nsupplier\n45+67\nsubview\nconvenience\nARScreen\nformer\ncomma\nWashington\nComboBox\nAllocate\nv4.2.0-r80737\nSave\nQWord\nPubNub\nRabbitMQ\nsubnet\ndateutil\nmillisecond\nexcercise\n1,000,000,000,000,000,000\nsocket\nAlbanian\nopposed\n.then(success,failed)\nConnect\nphp5\nexits\nresults--not\nuniform\nsq'\nAnyways\nfirstResponder\ncacheable\nGood\n</body>\n150px\nhttp://bost.ocks.org/mike/leaflet/\nTortoiseGit\nrepositioned\ncombobox\ntransforming\nยน\nPOP3\nGot\nIdeas\n776\njQuery.js\nFACTS\nghost\nMoreover\nsigmoid\nexec'ing\nre-creating\npreviously\nhidden-sm-down\nIDS\nsized\ndriving\nid=\"container\">\n<script>\nsayHello\nPossible\nsetSpan()\nMatConvNet\nRange.Find\nmargin\nSamsung\nnullable\nnon-elevated\nsharedInstance\nactionlink\ntarget1\ngeoip\nGridImageAdapter.java\ndb_name.schema_name.table_name\nReinstall\n3.0\nSources\nderive\nCookies\nPRO/1000MT\n$scope.$evalAsync()\nSettingsSingleFileGenerator\nshifting\nunderneath\nsource_server\nMatch\narrange\nBug\nStyles\nread()\nre-install\nconstant\ntables.Insert\nBalancer\nelectron\nAOL\nsource1\nlower(url)\nInsider\nnaive\nDependencyObject\nvendor\nAbandon\nvirtually\nso-far\n$scope.$apply()\n42540766411282592856904265327123268393\n\\h\nencounter\nRepository\n7.4.0\nspring-data-mongodb\nNexus\nModule\nsystems\nCOULD\ntransparent\nangular.module\nThor\nsolves\nAlvin\nkilled\nup-sampling\n-P\nsapply\n@varname\nexpanding\nbulk\nBigQuery\nlower-right\nmail\nsq\nOwain\nwidths\n`1\n$scope.$safeApply()\nTherefore\nPlasma\ntable_name.dat\nSockets\nviewDidLoad\nCamera\noccluded\nbusy\n20-digit\nsecurity\nfilled\navail\ncitext\nBreeze\nUIWebview\nNavigator\nStackoverflow\ndealloc\nrabbitmqctl\nsufficient\nreveal\nsource2\n$(\"#box\").slideToggle(\"slow\")\nseparation\nSettings\nthemeApp\nthis.value\nPseudo\ndialog-status\nreleases\nUITapGestureRecognizer\nguarantee\nabstracts\n/mnt/proc\nNUMERIC\nhttp://i.stack.imgur.com/zX3xC.png\nviewreset\nsynthesize\n<mount-point[e.g.\nrestrictions\nDid\nlocale\nSECOND\ninfrastructure\npull(download)/push(upload)\ndel\nroutes.rb\nurls\nProfile\nviewed\nwired\n2001:0db8:0000:0000:0000:ff00:0042:8329\narchitectural\nphone\nSUGGEST\ntap\ncorrelates\nbreeze\nconverged\ncompute\ninfluxdb\nreinvent\nfile3\n/abc/home\nPL/SQL\ntowards\nExpression\ncorrected\nweights\nsimulator\nGetting\ncellForItemAtIndexPath\n255.255.255.0\ngrub-install\n=\"*\nTimeout\nzooming\ncrucially\nwindow.innerWidth\nshader\nOptions\non-the-fly\n123\ngod\n28\n_SidebarMenu\nSlideUp\nlistens\nperformMethod\n1111\nUniversity\n$injector:nomod\nAesthetics\nUpdated\nmidpoint\ninspector\nreserve\ntrusted\nMain.java\nleast-significant\ntimestamp\nclient-server\nclouds\nconsuming\nremained\nordering\ndatasource\n_form.html.erb\nstarred\nlatitude\n.nvmrc\nhosts\nAttached\nserversocket\nFTP/SFTP/FUSE\nsyntactically\n0.00000\nwelcomed\nMeasurements\ntimestamps\nrepo\nwalking\nfavor\nstays\nappicon\nComboBoxStyle.DropDown\nDeveloper\nGB\nTook\nsite/repo\nreconstruction\noutputting\ncovers\nsees\nmeasurements\nMYSQL\nexpanded\nshard\nmetadataStore\n.h\nnotice|||||the|||||\nWANs\nComboBox.SelectedValue\nmounted\ne-mail\nharder\niVar\nSTDIN\nSSL\nshe\nentityManager.fetchMetadata()\nupdate-grub\nWin7+Chrome\naccessor\nbyte[]\ndiscussed\nBaseGameUtils\n@driis\nself.appSoundPlayer\nSDWebImage\nRecord\ndebounced\ndbspace\npopulates\nearly\nivec4\nlimited\nRerun\nBridged\nDNS\ndocs.oracle.com\nlow-order\nCommand\ncategories\nspaced\nexperience\nCLOB\nVB.NET\n8.4\ndownloads\nunrelated\ngmaps\nmajority\nlower-bound\nTell\n(color=sample(allcolors\n-collectionView\nbankAccountCombo.DropDownStyle\nslide\ngrasp\nfill()\nentityManager\narrive\n5.x\nmatcher\n--bind\ndestination_server\nAlbanian-specific\ndbase\nFileReader\nhappy\nASP.NET\nplot\nHandshake\n1996\nJsFiddle\nandroid:minSdkVersion\nembedded\nLoaderCallbacks\nBufferType.SPANNABLE\nlimitation\nmisunderstanding\ncomputers\nup-sample\nwindowWillReturnFieldEditor\nToString()\nremoveSpan()\nexert\nSpannedString\nInternal\ncompiles\nchoosed\neffort\ncontrib\nelevated\nPOP3S\naccessors\nCMX.dbf\nhttps://regex101.com/r/GqtOuQ/2/\ncost\ninstantly\nabc/parent/child\nfires\n+8\nGmail\nRestart\nnever-ending\nAppreciate\nAIX\nformatted\nconducting\nmangling\nAppPresser\nCode-behind\nFiddler\nNSTextView\nhosted\nBeginner\n1000000000\ncaptures\naccepting\nnet\nSql\n-rebuild\nremoves\nSave().\nimpressive\nSTL\nswitches\nadapter\nOthers\nconstraints\nres.php\nLst2\nwindow.onresize\nTime\nBLOB\nserialisation\nfgets\nhttps://github.com/WebDevStudios/AppPresser/blob/master/inc/theme-switcher.php\nsensing\nattribute/property\ndemonstration\n/parent/child\nOpenAsync\nforced\nViewHolder\nROWID/FRAGID\nhttp://www.php.net/manual/en/timezones.php\nedit.html.erb\nSpannableString(textView.getText())\nmounting\ndice\nforcing\nreferer\nunread\nUIScrollView\nalternatively\nslows\nMany\nsliding\nCST\nencountered\nprintwriter\nSelectButton\nprecisely\nalive\nmesh\nShard\nOpenConnection\nattempted\ntarget2\nstructures\nflexigrid\nMenu\nrepair-boot\n10:59:10\nDBConnector\nslideDown\ninactivity\nPROBLEM\n11111000000000\nupload\nPOSIX\nrng\nKB\nself.str\nmacros\nexceeds\nnum0\nre-importing\nlinq\nDLR\nSignalR\nCDT\nconverge\ntwo-item-column\nNEED\nsymmetric\nstumped\nClient\nFrameworkElement\nnearest\njvm\nbinded\nmeshes\nDependencyPropertyChangedEvent\nLVARCHAR\nTransport\nthe_title()\nUhm\nLaunch\n101\nVirtualBox\n-server\nCable\nlist_queues\n/mnt/dev\n.Find\nfeedforward\nlookup\noperate\ncrashing\nDataTable\nGPS\nChanging\nqsort\nquality\nprior\nappers\nhighlighting\ntemplates\nutility\nBYTE\n12+\nstringr::str_extract_all\nmod\n./node_modules/.bin/electron\neditable\nargue\npromise\nreleasing\nPATH\nscripting\nhav\nlongitude\ndelimited\nhttp://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html\nfile1\nnumberOfSetBits\nhttp://lite.ip2location.com/faqs\nsegfault\n$digest\naddys\ncomma-separated\nvisitor\nFoxpro\n12+(30-48)\nGenetic\nscroller\nideal\nwaypoints\nregistering\nproportion\ndistributed\nlogcat\nConfiguration\nrepositioning\nencrypted\n/dev/pts\ntilelayer\ndts\nArtices\n3*255+(20/2+1)\nproblematic\n3mb\nA*\nedit:managed\n/mnt/\nreset()\nspecifications\nsymmetrical\n10.5\nprovider\nmask\nhosting\n%Z\nobserve\nstopover\n33\nenforce\nFurthermore\nrecommand\n4.4.14\nBitArray\nafaik\ndowns\ninteracting\n.item2\nSidebar\ndomain\nmounts/etc\nMint\nexecutes\nLocationManager.m\ncorrelated\nloop+sleep\nPhoenix\nApril\nTLS\nbrowse\nViewModel\nexample.com/Funny_Thing_Happened_to_Me\nfull-screen\nContrary\ntechnical\nbitbucket\nsubqueries\nBounced\nDynamic\nParse\nlibgdx\nprohibiting\nps1\nftp\nhtpasswd\nExample:\nreadLine()\ndate.timezone\nNEEDS\nres/values\nhost-only\nmaximum-length\nstrptime\nunchanged\nhypothetical\nwanting\n.slideToggle()\nrealloc\nmenuForEvent\nsubstrings\n(=\nGridView\nanywhere.\nconstrain\nread/write/execute\ncommas\nlatter\ngrateful\n5.6\nCHAR\nranges\ngenetic\nfile2\n/sys\nRachel\nOracle\nbreeze.EntityManager('api/Db')\nfeed\nActivity\ntravel\nCanvas\nLIs\n2*D\nNetscape\nscrollToHolder(...)\nscale_color_manual\nIOSLauncher\ncontextual\nlife\nnvm\neasy_install\nMaster\nSpannble\nNative\nReceiving\ntended\nsubmits\nselecting\nflush()\nTo-Do\ngoogle.maps.LatLng\nsubquery\naway(beyond|||||4|||||meters)\nbringing\n.Selectยน\nDespite\nMetadata()\nthree-classes\nfdisk\nVARCHAR\nalgorithms\nHey\nTextView\n4.0\nhttp://www.breezejs.com/documentation/metadata\nshortest\nexample.com/23323\nGOAL\nd3\npaning\nregexes\nsigmoid/softmax\naccepts\n10.00\nUnity\nphp.ini\napparently\naddon\nREG_NOSUB\nReboot\n/mnt/]>\nconstructed\nchannel\n.item1\nTextBox\nany|||||specific|||||text|||||in|||||your|||||recyclers\nintersect\nprovides\nsomebody\nmount\n;-)\ng\nhttps://www.youtube.com/watch?v=EpDhaM7ZhZs\nMSDN\nstd::array\nredirecting\npowershelly\n/dev/sda\ndoc.body.style.cssText\nInstall\nprofessionally\nGmailApp.search()\nSIU\nbeautiful\ndispatch_async(dispatch_get_main_queue\nIPV6\nflush\nGravell\nApple\nhttps://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/\napparent\nentitymanager\nSpannable\nindex.jsp\nslash-notation\ntheme\nnow()\ngoogle-play-services\noperating\nLocationManager.h\n\\\\n\nDECIMAL(20)\nTango\n/:_abc/:parent/:children\n255.255.255.252\npies\n=CONCATENATE(IMPORTRANGE(\"123123123\",\"SheetName!J1:Y1\"))\njsonp.js\nhttp://jsfiddle.net/nextstopsun/C3U8g/\naudiotoolbox\nmedia\nrepeatedly\ncircles\nIPv6\nemails\nlongint\nmessy\nIve\nLEt\nResizing\n-client\nworkspace\nwww.site1.com\nStates\nhints\nalign\nabc0\nPaste\nWarning\nsummarizing\nhigh-order\nFTP\nclassification\nthoroughly\n1.3\nlower/UPPER\nNSTextField\nmsdn\nMootools\nrebuilding\ndigg\nxcode\nhttp://www.kiabuzz.co.za/?feed=json&callback=\nCD/DVD\nsoundFileURL\n12+34\nprogrammatically\nTravelMode\nfunctionalities\nrepresents\nbindView()\nlinux\n1.6.7\n/:_abc/:grandparent/:parent/:children/\ngrew\nrabbitmq_management\nbranding\nreurn\nCurrent\nspeedier\nboxes\nmanifest\nShader\nhttp://www.breezejs.com/breeze-labs/breezedirectivesvalidation\nCategories\nI'v\ntaxonomy\ndescriptive\nnotified\nunderdevelopment\nMode\neliminated\nVideoView\nrooted\nthumb\nidiomatic\nproxies\n/etc/ld.so.cache\nwarnings\nawesome\nMaps\ndetected\nre-run\nrecreate\n.dbf\nBrenden\nstringr::str_extract\n-t\nessential\nexperimental\nTookit\nfoo()\nnewView()\nphp5.3\nage\ninbox\nnessecary\nFragment\nacej\n/path/to/directory/\nbooting\nnewView()/bindView()\naccessing\nmisspelled\nrecyclerview\nLogic\nARC\ngstreamer\nrecommends\nspelling\nAnwser\nbroke\nUserâs\nInt64\nTangoUnitySDK\nbias\ntransfer\ngoals\nfullscreen\nprintf\nphones\nPromiscuous\nAppreciated\nOcclusion\nuniqueness\nMichael\nlives\nlabeled\nthe_ID()\nRestore\nsingleton\n1100\nGREATLY\n2014\nSelectedValue\ndisplacement\nfall\ndatatype\nshall\ngeneralize\nIdle\nchat\nFateme\nmaintained\nAlgorithm\ninfinity\n/dev\nhttps://www.railstutorial.org/book/updating_and_deleting_users\nthough.\nmysql_real_escape_string\nSystem.Collections.Generic.List\nViewStart\nscatterpie\nType\nfakesink\nnick\n995\nDigg\n/dev/sdaXY]>\nrepository.Metadata()\njwplayer\npreferably\nscale_fill_manual\nSettings.Default\n1234\nyour_username\n<root-partition[e.g.\ntextview\nsubpaths\nComputer\nadda\nShirmohammadi\nonLoadFinished\n286\nFoo\nSysInternals\nconcerns\nsharded\nProjectName.MVCWebUI.Areas.Admin.Models.AdminMenuContent\nshenanigans\nre-arrange\nSELECT\nnewLabel\nschema.fields[].description\nv4-alpha\nattend\narc\nfunny\nSSD\nreviewed\nDeny\n_Layout.cshtml\n0.33.2\nfancybox\n$post\ninsensitive\nfull-filled\nvisually\ndialogs\ndiscontiguous\nvariany\nSituation\ndeduce\nNvm\nWE\nsingle.php\n\"lower()\"\nhighlight\nCheers\nJFilechooser\nLayer\n-1486618624\nforeground\nmysqli(\n4.0.5\nintegrated\nSqlConnection\nNode\n-sq\nect\nnoting\nminimize\nDeclare\nAutoFilter\nSysinternals\nip.\nemulate\nPartition\nincurring\nTTL.\nslided\nNPM\nbenchmark\nctrl\nViewMatcher\nrecent\ncoded\nz-index\ndilog\nProducts\npop3\nVARCHAR(255)\nplane\nRouter.go()\nVertex\nnum1\nThanks.\nMBR\n@christopher\nJ-Y\nrepair\nPassing\ndivide-and-conquer\nstreams.exe\nhouston\nHad\nfly\n/proc\nmat4\nrecalculated\nunlikely\nCONNECTION\nDATETIME\nservers\nmisconfigured\nGeneration\nConnection\nhacked\nlearned\nreasoning\n-downloadImageWithURL\nONLY\npreprocess\nbubbles\nPositionableRecyclerViewAction\n-l\neradicate\n/mnt/sys\nDesktop\napp.module.ts\ndiscontinuing\nanalises\nHartl\nProjectName.MVCWebUI.Models.Products\nwaypoint\nUIButton\nFluentd\nhttp://social.technet.microsoft.com/Forums/en/winserverpowershell/thread/0b5f1fa6-981e-4696-84bc-b8046564ec8b\nToolkit\nversus\nEnd\nhtt\nInstance\nLocal\nLiveCycle\nladenedge\nHTTP_REFERER\nAutomatically\nduplicate-able\ncommand-line\nbcp\nindexed\n3D\nculprit\nsoftmax\n=CONCATENATE(IMPORTRANGE(\"123123123\",\"SheetName!J\"&ROW()&\":Y\"&ROW()))\ntempted\n/dev/sda1\nRackspace\nmachines\npackage.json\nescaped\nactivation\ninputstream\nCMS\nprivate\n2012-11-26T00:00:00Z\nExcept\nGRUB\nfloor\nnum2\nhttps://stackoverflow.com/questions/21080839/pulling-objects-from-binary-file-and-putting-in-listt\nsubtract\nalphabitically\nleaflet\nmailgun\nultimately\nblur\n16x16\nRss\n:2\n@property\n-dealloc\n/mnt\nduration\n/home/xd/karthik\n.AutoFilters\nShdr\nVs\npre-scanned\nConnected\nlatencies\noff-by-one\nworld\noverwrites\noption_template\ntimezones\nState\nTEXT\nKDE\nCursorAdapter\nrely\nTARGET\nslides\nfrag\n:url\nWHOSE\nbubble\ncontractsBindingSource.InvoicingIBAN\nLets\nAdapter\nSecure\nTIMESTAMP\nrealised\nreside\nproc\nSelect\nsearches\nhttps://v4-alpha.getbootstrap.com/layout/responsive-utilities/\nfunc\nreformatted\nIntel\nnpm\nInfo\n3s\nrequesting\n;s\nMainViewController.m\nredirect.jsp\nAZ\namong\nhint\nChrome/Windows\npeculiarities\nwoudl\nrelay\ncopying/pasting\nreciving\n2010\nphpMyAdmin\nrsvp\nsitting\nattack\nBitbucket\nocclusion\nwell-documented\ntimezone.\nScott\nregularly\nadmin\nCLI\nin:inbox\noption_stylesheet\nrepeat\ngrub\nhttp://localhost:8080/document/getByCategory?categories=category1&categories=category2\nincur\nCD/USB\nrailstutorial.org\n32kb\nXY\nTX\nlistener\n#box\ntranslate\nstd::string\noverview\nĂĹźwhy\nElectron\n-S\n-Xmx256m\nsubclassing\n43.0.2357.130\n@sythesize\nfired\ncloser\nis:unread\nMight\nHDD\nAdobe\nnew.html.erb\nnon-homework\nhttp://jsfiddle.net/6QTyd/5/"
  },
  {
    "path": "code/Attentive_BiLSTM/other_files/vocab.tsv",
    "content": "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\t983\nimplicit\t4\ncast\t11\nto\t7039\nthe\t10177\nleft\t56\nhand\t23\ntype\t186\nThis\t486\ngoes\t26\nfor\t1682\nall\t557\ncomposed\t2\noperators\t11\nAs\t121\neveryone\t9\nalready\t99\nstated\t8\n,\t6386\nTo\t107\nhelp\t257\nillustrate\t1\nthat\t2233\nI\t5666\n'm\t566\ngoing\t82\nuse\t948\napp\t205\nwrote\t17\na\t4701\nwhile\t103\nback\t116\nis\t3818\nperfect\t6\nthese\t172\ntypes\t49\nof\t2808\nquestions\t37\nIt\t353\n's\t819\nonline\t11\ndisassembler\t1\nso\t564\nyou\t2546\ncan\t1304\ncheck\t132\nout\t255\nactual\t25\nbytecode\t2\nbeing\t109\nproduced\t3\nhttp://javabytes.herokuapp.com/\t1\nAnd\t153\ntable\t219\ntheir\t77\nmeanings\t2\nhttp://en.wikipedia.org/wiki/Java_bytecode_instruction_listings\t1\nSo\t297\nlet\t48\ntake\t83\nlook\t102\nat\t440\nfrom\t957\nsome\t461\nsimple\t130\ncode\t879\nDisassembled\t1\nMy\t206\ncomments\t29\nwill\t750\nhave\t1582\n//\t7\nin\t3036\nfront\t16\nSay\t6\nvector\t29\nname\t146\n\"\t1450\nstr\t9\nwhich\t639\ncontain\t28\nmany\t85\nstrings\t45\nlike\t826\ndata\t463\nframe\t19\nnamed\t15\n'\t505\nStates\t1\nNow\t116\nwant\t756\ngenerate\t53\nextra\t33\ncolumn\t132\nnames\t45\nState\t1\ncity\t5\nas\t996\npattern\t29\ngrep\t12\nif\t807\nmatch\t51\nhouston\t1\nthen\t557\nput\t133\nTX\t1\nnew\t304\nPhoenix\t1\nAZ\t1\nand\t3505\non\t1335\nFinally\t20\nget\t535\nthis\t2262\nWhat\t185\nbest\t81\nway\t465\ndo\t1095\nwithout\t146\nusing\t791\nsapply\t1\nor\t740\nloop\t112\n?\t1306\nFirst\t48\nconstruct\t8\nstring\t157\nstate\t41\nThen\t112\nstringr::str_extract_all\t1\nstringr::str_extract\t1\nextract\t20\nadd\t291\nmerge\t14\nearlier\t8\nframes\t8\nobtain\t10\nsuitable\t11\nAlthough\t7\nprevious\t35\nanswers\t25\nwork\t335\ngreat\t34\nhere\t298\nanother\t163\nsolution\t153\nrelying\t5\nexternal\t29\npackages\t7\ngives\t49\nremove\t55\ncontainer\t49\ndefined\t53\ndocker-compose.yml\t1\nfile\t561\nwhen\t612\nwe\t163\nrun\t208\ncomposition/override\t1\nwith\t1389\ndocker-compose.prod.yml\t1\nby\t577\nexample\t344\noverride\t32\nrunning\t141\nActually\t10\ni\t610\nwww\t4\ndb_for_development\t1\ntogether\t23\nonly\t391\nothers\t18\nLive\t3\nDemo\t13\nShdr\t1\nEditor\t6\nYou\t553\nNEED\t1\nchange\t214\ntop\t43\nright\t130\ncube\t8\nzoom\t7\nsee\t236\neffect\t22\nproperly\t44\nVertex\t1\nShader\t2\nCode\t39\nFragment\t4\nThe\t852\nintention\t3\nused\t205\nit\t2646\nrender\t24\n16x16\t1\nwindow\t55\nthus\t22\nwhy\t130\nconstrain\t2\nhard\t31\ncoding\t13\nmat4\t1\ntemporary\t6\nreal\t24\nlife\t7\napplication\t218\nintelligent\t1\nvalues\t154\nuniform\t2\nthem\t274\nEach\t20\nivec4\t1\nrepresents\t8\nquarter\t1\nscreen\t65\n(\t1460\n64\t5\npixels\t8\n)\t1395\n;\t238\neach\t247\nint\t29\nrow\t90\n16\t2\nbit\t68\none\t474\npixel\t15\nThus\t6\ncoded\t5\nmatrix\t24\nvalue\t289\nhash\t13\nshould\t440\nhighlight\t7\nhalf\t8\nbottom\t25\nthoroughly\t1\nconfused\t22\nmostly\t7\nneed\t593\nsomeone\t64\nwho\t29\nn't\t885\nseen\t27\nmy\t1017\nbefore\t141\nthrough\t143\nfind\t193\nwhere\t248\nwent\t10\nwrong\t116\nstumped\t3\nfrag\t3\nshader\t5\nlast\t73\ntwo\t191\nlines\t54\nfloor\t1\nmod\t1\n2\t206\neither\t64\n0\t121\n1\t215\nwhat\t453\nrendered\t9\nshow\t113\nHere\t244\ns\t13\ntrying\t297\nextend\t10\ntextbox\t6\nmicrosoft\t2\najax\t34\nlibary\t1\nOn\t53\nPage\t7\nfollows\t42\n.js\t3\nerror\t330\ndebug\t42\nam\t618\ndoing\t141\nwebapp\t4\nwritten\t42\nspring\t14\n3\t110\nstruts\t1\nhosted\t4\nglassfish\t7\nserver\t206\nwebservices\t2\nbackground\t71\ndelaying\t1\naccessed\t10\nmethod\t302\nresponse\t68\nnow\t131\nbean\t19\nuses\t61\ninstance\t101\norg.springframework.core.task.TaskExecutor\t1\nthere\t549\nthread\t126\nIs\t201\ncorrect/best\t1\npractice\t17\napproach\t70\ncontext\t38\ndiscouraged\t2\ncreate\t280\nyour\t989\nown\t87\nthreads\t29\nbecause\t235\nmeant\t8\nbe\t1355\ncharge\t2\nSee\t41\nspawning\t1\nEE\t3\nHowever\t137\nespecially\t14\nmight\t149\nOK\t16\nfixed\t35\npool\t6\nBe\t4\nsure\t138\nare\t951\ngone\t10\nundeploy\t2\nexpect\t37\nSpring\t29\nclasses\t81\nhandle\t58\ndisposal\t1\n/\t51\nshutdown\t7\ncorrectly\t50\ndeclare\t17\nwithin\t66\n'd\t121\nsend\t93\nPHP\t75\npage\t216\nFormData\t6\nString\t51\nJS\t32\nside\t61\nsaying\t15\nid\t88\nset\t321\nguessing\t9\ncomes\t38\nprocessData\t1\nfalse\t24\ncall\t199\nBut\t269\ninevitable\t1\nIllegal\t1\nInvocation\t1\ncoming\t14\nany\t409\nAND\t7\nsame\t349\nThanks\t162\n!\t247\nassume\t24\nobject\t201\ncase\t195\nappend\t21\npass\t57\nparameter\t50\njQuery\t60\n$\t24\n.ajax\t3\nreside\t1\nphone\t16\nvisible\t23\nicon\t13\npossible\t166\nclose\t41\nrefresh\t18\nother\t258\nPossible\t2\nmay\t127\nappicon\t1\ntransparent\t7\nApple\t8\nDocumentation\t4\nsays\t34\nhttps://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/\t1\npart\t104\nbecome\t27\nblack\t6\nhaving\t93\nproblems\t49\nindexed\t2\nassignments\t1\nSTL\t2\ncount\t32\ngiven\t65\ncalled\t116\n_assignments\t2\nfunction\t325\nprinting\t13\ndemonstration\t2\nassigning\t10\n_counts\t1\nAlso\t103\nprints\t16\n1)\t35\nblank\t25\nline\t198\nprinted\t9\n2)\t34\nEx\t6\nIf\t457\noutput\t127\nspaced\t1\nEdit\t39\nsuggested\t13\nchanged\t38\nreserve\t1\nresize\t14\nproblem\t390\ngoal\t8\nentity\t25\npush\t13\nmanager\t16\n've\t252\ncreated\t114\nable\t162\nfetch\t17\nmetadata\t17\nfirst\t243\nentityManager.fetchMetadata()\t2\nTypeError\t5\nCannot\t5\nundefined\t18\nseeing\t15\nfetchMetadata()\t2\ntries\t12\nhttp\t18\nGET\t13\nsomewhere\t22\nanywhere.\t1\nHow\t204\nUPDATE\t27\nfollowing\t305\nsuggestions\t34\nrewrite\t11\ninto\t330\nBreeze\t1\ninformation\t86\nabout\t226\nobjects\t94\nserver-side\t15\nyourself\t13\nbreeze\t6\nvar\t17\nentityManager\t2\nbreeze.EntityManager('api/Db')\t1\napi/db\t1\nasp.net\t12\ncontroller\t87\nMetadata()\t1\nreturns\t71\nrepository.Metadata()\t1\njs\t26\n.then(success,failed)\t1\nAfter\t51\npromise\t3\nresolved\t15\nvariable\t111\nfull-filled\t1\nstart\t97\nworking\t211\nalso\t300\nfly\t7\nmetadataStore\t1\nattach\t8\nentitymanager\t1\nPseudo\t1\nsample\t49\non-the-fly\t1\nhttp://www.breezejs.com/breeze-labs/breezedirectivesvalidation\t1\nclick\t117\nbutton\t160\njust\t411\ngo\t112\nhttp://plnkr.co/edit/lxPAbIJmRaLmyagXQAFC?p=info\t1\nsources\t6\nlink\t94\ndocs\t15\nhttp://www.breezejs.com/documentation/metadata\t1\nFirefox\t13\nDeveloper\t2\nEdition\t3\nstruggling\t10\nWebIDE\t2\nproject\t152\nsmartphone\t1\ndocumentation\t57\nsaid\t21\nChrome\t30\n37+\t1\nandroid\t34\nWhen\t174\nconnect\t37\nmac\t9\nrecognize\t4\ndevice\t29\ntry\t190\nOperation\t4\nfailed\t27\ninstalling\t8\nCa\t4\ninstall\t61\nmissing\t37\nsetup\t27\ndeveloper\t16\nmode\t27\nturned\t10\ndebugg\t1\nusb\t1\nadvance\t59\nprogram\t99\nnever\t56\nseems\t124\nupdate\t107\ntarget\t23\ninput\t124\ndave\t2\nremain\t5\nno\t291\nmatter\t18\nhow\t403\ncalls\t42\nmade\t63\nfriend\t5\nvia\t74\naddFriend\t1\nfirstFriend\t1\nend\t103\nup\t241\nwhatever\t33\nadded\t74\nwas\t320\ninputted\t1\nwere\t47\nrob\t1\nbill\t1\ntravis\t4\nwould\t588\nelse\t64\nneeds\t57\naway\t23\nchecks\t19\nstraight\t7\nChange\t16\nreturn\t118\nnull\t49\nmentioned\t21\nabove\t126\nalways\t114\niteration\t17\nperson\t16\nfound\t132\nreturned\t33\nbranch\t28\nInstead\t30\nkeep\t64\niterating\t3\nuntil\t53\ncorrect\t83\nexhaust\t2\nlist\t238\ncondition\t34\nBTW\t9\nsubset\t9\nfirstPerson\t1\nimmediately\t16\nremoved\t22\nasked\t12\nquestion\t187\nretrieving\t7\npdf\t10\ndatabase\t145\ngot\t103\nanswer\t105\nEventhough\t1\nme\t344\ncurrently\t63\nretrieve\t16\ncontents\t24\n%\t21\nPDF-1.4\t1\nobj\t4\n<</AcroForm\t1\n<</DR\t1\n<</Font\t1\n<</Helvetica\t1\n220\t1\nR>>\t1\n/ProcSet\t1\n[/PDF\t1\n/Text]>>\t1\n/Fields\t1\nuploaded\t8\nfiled\t1\nvarchar\t9\nsuppose\t14\nJFilechooser\t1\nchoosed\t1\ntext\t125\ncontained\t4\nsay.\t1\nhello\t15\nworld\t10\nprint\t51\nhappens\t52\nagain\t94\njava\t46\nstores\t9\nmemory\t63\nreads\t17\nconsequently\t2\nThat\t96\ndepends\t20\nrules\t16\nread\t164\nFileInputStream\t1\nFileReader\t1\nlatest\t20\ncontent\t71\nOS\t31\noptimize\t7\nedited\t5\nsimply\t90\nself\t9\nconstructed\t5\nbuffer\t32\ne.g\t72\nbyte[]\t3\nchanges\t71\ncourse\t35\nremained\t2\nunchanged\t2\nFile\t9\nnothing\t65\nactually\t91\nlocation\t52\nstored\t27\nsetting\t60\nGPS\t2\nversus\t1\ndriving\t3\nFrom\t50\nJavadoc\t2\n'll\t88\nYes/No\t1\nActiveYN\t3\nYes\t24\nHide\t1\nNo\t27\naccess\t87\ninside\t117\nJQuery\t9\nshow/hide\t1\naccordingly\t11\nitself\t57\nknow\t284\nrazor\t1\nsyntax\t33\nidea\t87\nclient-side\t5\nclass\t283\nEdited\t6\nafter\t205\nforget\t13\naltogether\t3\nUse\t57\nstatement\t67\nhandler\t34\nremember\t11\ncontains\t60\nanywhere\t16\nmake\t276\nmore\t294\nprecise\t4\nregular\t23\nexpressions\t19\nsearch\t67\nexactly\t47\nDEMO\t4\nsort\t47\ncommand\t123\nLinux\t22\nnon\t9\nletter\t9\ncharacters\t34\nsuch\t118\n{%^$@#)(\t1\nnoticed\t11\nignores\t3\nbased\t71\nletters\t6\nASCII\t10\nlocale\t9\nC\t43\nforce\t17\nbitwise\t2\ncollation\t1\nwell\t100\niddiagrama\t1\nnombre\t1\ntipo\t2\ndescripcion\t1\nnote\t36\nthan\t170\ndont\t30\nmaybe\t33\narray\t173\nsomething\t271\ndescription\t13\n*\t74\nthing\t74\nlenght\t2\ncharacteres\t1\nquery\t150\nsince\t113\nwebservice\t9\nmanuallity\t1\nlibrary\t69\nconcatenate\t6\nform\t141\naround\t64\n're\t149\nJSON\t35\nformat\t77\ngoogle-gson\t1\nparse\t34\nmanually\t45\nfairly\t13\niOS\t38\ndevelopment\t13\ndecide\t18\nParse\t5\nbackend\t6\nbetter\t110\nunsure\t9\nfar\t78\noptions\t46\nCreate\t23\nseparate\t48\n.h\t8\n.m\t5\nfiles\t176\naccessors\t2\nstatic\t37\nmethods\t95\nbase\t17\ninherit\t14\nUIViewController\t9\nderive\t2\nview\t157\ncontrollers\t9\nWhich\t31\nOr\t63\nWhile\t25\npurely\t6\nopinion\t6\nargue\t1\ncreates\t30\ngood\t85\nseparation\t2\nmakes\t40\nclear\t39\nlocated\t12\nboth\t128\nlooking\t82\nCompare\t2\n[\t100\nDBConnector\t2\nperformDatabaseMethod\t2\n]\t101\nsecond\t103\nweird\t24\nplace\t61\nsubclass\t23\nAnother\t27\noption\t72\nsingleton\t8\naccessor\t3\nsharedInstance\t2\nperformMethod\t1\nlooks\t95\nUsing\t53\nflexigrid\t1\nbuttons\t24\ndelete\t23\ntoolbar\t6\nclicked\t28\nfancybox\t1\nCheck\t23\nColorBox\t1\nplugin\t32\nExcel\t34\nData\t23\nTable\t19\nconnects\t6\nconnection\t51\nsql\t23\nprocedure\t15\naccepts\t3\nparameters\t36\nquerys\t1\nexcel\t16\nworked\t46\nquite\t44\nusers\t75\nstarted\t33\nrandomly\t2\nmessage\t106\nhappening\t30\nuser\t281\nworks\t219\nNothing\t6\nspreadsheet\t15\nlimitation\t6\nisolate\t1\ncause\t36\nclipboard\t6\ncauses\t22\nconflict\t3\nrecords\t29\nclearing\t3\nrefreshing\t2\nfine\t108\nmost\t68\nflaw\t1\nversion\t108\n-\t393\n2016\t7\ncalculator\t3\nunfortunately\t10\ngetting\t126\nstuck\t15\nparsing\t18\ntakes\t53\ndisplays\t18\nEditText\t7\net2\t1\njob\t30\nequal\t29\nkey\t68\npressed\t8\nNumberFormatException\t1\nlog\t50\nnone\t17\nInteger\t7\nFollow\t2\nnumber\t160\nprovided\t29\nlogcat\t4\nmistake\t14\nmust\t79\nhappened\t5\nleftString\t1\nconverted\t9\nfloat/Integer\t1\ninvalid\t15\ncannot\t95\nparsed\t7\nsuggestion\t25\nregex\t27\nperform\t35\nNote\t62\ntry-catch\t2\nblock\t40\ncatch\t23\nException\t13\nthinking\t21\n.NET\t26\nDLR\t4\n2010\t13\nDoes\t48\nanyone\t103\nmaintained\t1\nbeen\t134\nsuperseded\t1\nanything\t66\nafraid\t5\nheavily\t3\nlonger\t33\nsupported\t15\nMicrosoft\t21\nintegrated\t3\n.net\t6\n4.0\t5\nApril\t1\nupdated\t26\nanymore\t20\nmsdn\t1\noverview\t1\nDynamic\t3\nLanguage\t2\nRuntime\t5\nOverview\t4\nsocket\t17\nio\t1\nclient\t81\ntwice\t19\ndouble\t28\nangular\t18\ntypescript\t1\ntried\t209\nshows\t43\ntell\t43\ninitialized\t3\n==\t48\n>\t25\nreally\t113\n:(\t10\nthis.s\t2\nuninitialized\t3\nthis.io\t1\nreceives\t7\nevent\t136\ninitializing\t6\nsubscribe\t5\nevents\t63\nupon\t14\nSwitching\t1\ntrick\t9\nattempting\t22\nBy\t19\nmoving\t15\nthis.s.on\t1\nthis.io.on\t1\ncallback\t16\nensure\t21\nListView\t25\ndraw\t16\nbasic\t32\nshapes\t1\nitem\t76\nexamples\t30\nViews/Layouts\t1\nimage\t137\netc\t100\nCanvas\t7\nsimilar\t82\nFurthermore\t2\nseem\t57\nslightly\t14\ndifferent\t205\nways\t34\nwondering\t27\nstrategy\t7\nAt\t34\nmoment\t23\nMain\t5\npopulates\t3\nMain.java\t1\ngather\t4\nAdapter\t8\nwrite\t111\npossibly\t9\nextends\t9\nView\t30\ncustom\t81\nimplementation\t55\nreplacing\t5\n..\t203\nappropriate\t26\nFor\t205\nSurfaceView\t2\ntested\t22\nhopefully\t6\ndrive\t13\ndirection\t18\nMake\t14\ndrawing\t14\ncaching\t7\navailable\t57\npreprocess\t1\nGoogle\t48\nWeb\t15\nTookit\t1\nAPI\t115\nlanguage\t61\nbehind\t21\nscenes\t3\nONLY\t1\nJavaScript\t33\nWHOSE\t1\nTARGET\t1\nBROWSER\t1\nNEEDS\t1\ndevelopers\t8\nfeature\t29\npure\t8\nAnwser\t1\nWHAT\t1\nCOULD\t1\nWE\t1\nSUGGEST\t1\norder\t92\nfullfill\t1\nrequirement\t16\nsuggest\t48\nflag\t28\ncompiler\t33\nYahoo\t2\nanalises\t1\nour\t29\ngenerates\t10\nFramework\t19\nneeded\t29\nExample\t41\nhypothetical\t1\nframework\t45\nMootools\t1\nPrototype\t1\nect\t2\nsayHello\t2\nits\t176\ndependencies\t20\nfiltered\t4\nlighter\t3\nlearning\t11\nunderstanding\t11\nvarious\t23\npeculiarities\t1\nDOM\t22\nimplementations\t11\nwriting\t45\nnecessary\t24\ndeal\t20\nre-creating\t1\nhandling\t21\nshenanigans\t1\nnick\t1\nrelevant\t18\ntechniques\t5\nlibraries\t29\nlearn\t11\nlot\t56\nunderstand\t80\nintegrate\t7\nthose\t87\nHaving\t8\nprofessionally\t1\n1996\t1\ninitially\t6\ntempted\t1\napparent\t1\nease\t2\noffered\t3\nfollowed\t20\neven\t117\noptimal\t9\nexisting\t33\nwell-documented\t1\nevery\t131\nsingle\t68\nNetscape\t1\nNavigator\t1\nscream\t1\n;-)\t2\nframeworks\t5\nDojo\t2\nToolkit\t1\nadvantage\t14\npublic\t17\nCDN\t3\ncopy\t66\nsource\t66\nsite\t53\nAOL\t1\nserved\t2\ncacheable\t1\ndownload\t24\ncost\t14\nrequesting\t3\nentire\t33\njQuery.js\t1\neliminated\t2\ngenerating\t10\nharder\t2\ndefining\t12\nprobably\t71\nunlikely\t3\nproblematic\t2\nassuming\t31\nsensibly\t2\npulling\t3\ncommon\t35\nrequire\t22\nparticular\t31\ninfrastructure\t1\nGWT\t13\nacej\t1\nalgorithm\t22\noutputting\t2\nresult\t121\nstack\t25\noverflow\t6\nfix\t63\nLets\t2\ncloser\t2\nstd::vector<char>\t2\nrecursive\t8\ninfinity\t1\niterate\t12\nover\t80\nelement\t94\nunrelated\t3\nconstant\t9\nreference\t58\nDid\t13\nintend\t3\nstd::string\t2\nincorrect\t11\ninstead\t180\nOutput\t15\nsorry\t10\nsay\t62\ngitHub\t2\nsourceForge.net\t1\nca\t123\ngiga\t1\n510199112\t1\nbytes\t19\nftp\t3\ntime-out\t1\nmanage\t11\ntime\t277\nbutdo\t1\nproceed\t8\ncurrent\t82\ngets\t66\nlogout\t6\n10\t49\nseconds\t30\nstaying\t1\nKeep\t12\nmind\t23\ntesting\t23\npurposes\t8\ncloses\t7\nbrowser\t63\nthey\t205\nthought\t33\nlogging\t17\nexit\t11\nyet\t31\nfigure\t40\nexiting\t2\nentails\t1\ntab\t25\ntabs\t17\nopen\t95\nbrowsers\t13\ndetermine\t23\nexited\t1\nonBeforeUnload\t1\ncovers\t6\nClosing\t1\nregardless\t7\nExiting\t1\nNavigating\t1\nRefreshing\t1\ninline\t20\nattributes\t24\ntrigger\t39\nfunctions\t46\nnotify\t7\nThere\t134\nseveral\t48\naccomplish\t25\nhowever\t61\nattempted\t5\nspeaking\t2\nSO\t7\nHope\t39\nhelps\t34\njquery\t18\nslideDown\t2\nSlideUp\t1\nslide\t4\ndiv\t58\n#box\t1\nslided\t1\ndown\t67\nclicking\t18\n.slideToggle()\t1\n$(\"#box\").slideToggle(\"slow\")\t1\nserver-client\t1\nTCP\t9\nsockets\t6\ncommands\t24\nreceived\t17\nscreenshot\t10\ntasks\t22\ndone\t90\nrealized\t7\nkind\t43\nport\t43\nRadmin\t1\nnetsupport\t1\nports\t8\nreceiving\t6\nsends\t9\nnetwork\t21\nex:9090\t1\nJob\t8\nthree\t36\nAdded\t3\nlets\t10\ncmdClient\t1\n11589then\t1\nThread\t5\ndataClient\t2\n1800\t1\nMethod\t7\nhappene\t1\nwise\t3\nmultiple\t104\ntransfers\t4\nadvanced\t3\nprotocol\t25\nstill\t124\nduring\t37\nrecommend\t34\narbitrary\t6\nA\t126\ntransfer\t9\nCmdPort\t2\nClient\t10\n->\t41\nServer\t32\nHey\t2\nXXX\t2\nsize\t103\nYYYY\t1\nRoger\t1\n8217\t3\nConnects\t1\ndisconnect\t5\nChecks\t1\ntransferred\t2\nmatches\t21\nspecified\t28\nstep\t36\n#1\t6\nallows\t41\nLet\t19\nlistening\t9\ntells\t11\nselect\t66\nfree\t35\nSocket.LocalEndpoint\t1\nsending\t25\n#2\t6\nSocket.SendFile\t1\neffective\t1\nfastest\t4\nFTP\t2\nbittorrent\t1\ndownloading\t6\nweb\t78\nThey\t30\nextreme\t2\nsplits\t2\nbandwidth\t6\nthrottling\t1\ncomment\t33\ndid\t126\nspecify\t33\noriginal\t52\nBatch\t1\nfilename+size\t1\n#3\t2\nunless\t30\noperation\t32\ni.e\t52\nThreading\t2\naccept\t13\nconnections\t11\nStreamReader\t2\ncould\t276\nparser\t3\nRECIEVE\t1\nFILE\t3\nsent\t25\nIMAGE\t1\nAn\t35\nmulti\t2\nthreaded\t3\nservers\t9\nhttp://csharp.net-informations.com/communications/csharp-multi-threaded-server-socket.htm\t1\nroute\t29\npaths\t18\ntemplate\t62\n/abc/home\t2\n/home\t2\nhome\t9\nsubpaths\t2\nabc/parent/child\t1\n/parent/child\t1\npath\t55\nrepeat\t7\nonce\t68\nconvenience\t2\nminimize\t2\nerrors\t50\nrepeating\t4\nmyself\t21\ndefine\t32\nrouting\t4\n/:_abc/:parent/:children\t1\n/:_abc/:grandparent/:parent/:children/\t1\nmessy\t3\nRouter.go()\t1\nremoves\t4\n/abc/\t1\nurl\t56\nundesired\t1\nshared\t16\nCan\t82\ncomma-separated\t1\nefficiently\t3\nexpression\t37\nincludes\t17\nscanFileName\t1\nJlabel\t1\ndirectly\t53\nshowing\t37\n\"\"\t5\nPlease\t71\nWait\t2\nLoading\t2\nDatabase\t13\ngrateful\t7\nStart\t4\nConcurrency\t1\nSwing\t6\nmeans\t63\nblocks\t9\nThread.sleep\t1\nprevent\t25\nprocessing\t24\nincluding\t29\npaint\t3\nrequests\t39\neasiest\t17\njavax.swing.Timer\t1\nTake\t5\nTimers\t1\ndetails\t47\nTLDR\t1\nGetting\t5\nfatal\t3\nprocess\t131\ntimes\t41\ncross-native\t1\nbuild\t87\ngcc\t12\nreport_times\t8\ngcc.c\t3\nOR\t12\ndisable\t13\nlibiberty\t3\npex_get_times\t3\nDETAIL\t1\nbeating\t1\nhead\t10\nagainst\t19\nfinally\t10\nsuccessfully\t22\nAndroid\t52\nNDK\t1\nstandalone\t5\ntoolchain\t3\nbinutils\t2\n2.23\t1\n4.70\t1\nstandard\t38\ncopied\t8\ntest\t109\narm-linux-eabi-gcc\t4\nhello.c\t2\n-o\t2\ndirectory\t55\nmuch\t112\nexcept\t27\nlinks\t29\nExamining\t1\nmodule\t54\nextension\t34\n....\t4\nm\t12\n--disable-build-libiberty\t1\nhost\t15\nNookHD\t1\nquestion(s)\t1\nportion\t3\nsafely\t1\neasily\t34\n...\t46\neverything\t53\nassociated\t15\nNOT\t14\nhost/target\t1\nll\t1\nresearching\t2\nawaiting\t4\nFound\t11\nhour\t12\nposting\t6\nMaybe\t23\nApparently\t2\ndebugging\t24\nsymbols\t4\n(?)\t2\nGCC\t2\nexclude\t5\nrelease\t30\ninfo\t32\nhttp://www-gpsg.mit.edu/~simon/gcc_g77_install/build.html\t1\nBUT\t5\nomitted\t3\n-g\t2\nLIBCXXFLAGS\t1\nLIBCFLAGS\t1\nLIBCPPFLAGS\t1\nRan\t1\nDESTDIR\t1\n/staging/install/path\t1\ninstall-host\t1\ntarballed\t1\nrelated\t28\nmain\t94\nreason\t58\ngiving\t26\nInternal\t2\nflow\t10\ngstreamer\t1\nunfortunate\t2\nRerun\t1\nenvironment\t26\nGST_DEBUG\t1\n=\"*\t1\n:2\t1\nwarnings\t7\npotential\t5\nreasons\t13\ninternal\t18\nencounter\t3\nfakesink\t1\nscript\t113\npretty\t55\nlong\t66\nwrap\t12\ncodeblocks\t1\nchangeing\t1\nscope\t20\nspeacking\t1\ncontainers\t7\nhtml\t53\nvoid\t4\nc\t11\nlanguages\t20\nstructur\t1\nchanging\t39\nscopes\t4\nPowerShell\t11\nISE\t3\n#region\t1\ncollapse\t2\nindividual\t17\nregion\t5\nnest\t2\nBasically\t28\nbox\t54\nsuggests\t7\nresults\t74\nlive\t21\nres.php\t2\nrequest\t100\ndisplay\t82\nonclick\t8\nreplace\t54\nreplaced\t12\nUniversity\t1\nWashington\t1\nsolve\t59\ndays\t12\nAny\t112\ngreatly\t19\nappreciated\t57\ninterested\t12\nassign\t24\nitems\t78\npassing\t20\nthis.value\t1\nfill()\t2\nEDIT\t54\nmixing\t2\nplain\t20\nequivalent\t15\nadding\t76\nadds\t20\nLIs\t1\nfill\t20\nJust\t43\ntag\t46\nbelow\t144\nValgrind\t6\nconcern\t7\nbig\t26\nmagic\t7\nintercept/redirect\t1\ntrack\t23\nredirection\t4\nachieved\t5\nobject/function\t2\npatterns\t9\nmatched\t4\nredirect\t19\naddresses\t6\nChecking\t1\nvalgrind\t8\nnotion\t4\nredirector\t1\nm_redir.c\t4\n4)\t12\nSpecs\t1\nprovide\t39\naddress\t32\nmappings\t7\nActives\t1\nrepresent\t13\nthemselves\t9\nActive\t6\ncomputation\t1\n120\t4\nconflicting\t2\nredirections\t1\ntoo\t71\n15\t14\ninterests\t2\nsake\t4\nwarning\t22\ngenerated\t34\n66\t1\nsafe\t12\nmessages\t41\nnormal\t33\nlikely\t23\nspec\t3\nReferences\t2\nmanual\t13\n3.6.1\t1\nGUI\t12\nautomation\t4\nwhereby\t3\nlistview\t9\nSysListView32\t1\nstyles\t16\nLVS_OWNERDRAWFIXED\t1\nGenerally\t2\nAllocate\t3\nspace\t29\nSend\t5\npointer\t27\nallocated\t4\nRead\t10\nownerdrawn\t1\nappears\t37\ndrawn\t3\nowner\t12\nlistitem\t1\ndiscussed\t4\nhooking\t1\napi\t14\nwhatsoever\t2\ncontrol\t75\nLVITEMs\t1\nobligation\t1\nuseful\t27\nSpecifying\t1\npszText\t1\niImage\t1\nimplement\t72\nWM_DRAWITEM\t2\nfake\t6\nalbeit\t2\nvery\t140\ninject\t7\nHDC\t1\nOCR\t2\nmajor\t8\noutlier\t1\nRealistically\t1\nthrow\t20\ntowel\t1\nGuys\t1\nmisunderstanding\t4\njavascript\t49\najax-request\t1\nfoo()\t3\nreurn\t1\nattribute\t46\ndialog\t40\ndialog-status\t1\ncreating\t65\nTry\t77\nMakefile\t6\nEverything\t14\nunder\t25\nwhenever\t16\n.cpp\t3\n.hpp\t1\nmodified\t15\nintended\t9\nbehavior\t38\nWindows\t86\nmachines\t9\nmachine\t32\n***\t2\nmixed\t2\ndeprecated\t14\nwo\t45\ncurious\t5\nfunctioning\t2\nGNU\t4\n4.1\t4\nBuilt\t2\ni686-w64-mingw32\t1\nx86_64-pc-linux-gnu\t1\nUbuntu\t10\nVM\t8\nVirtualBox\t2\nv4.2.0-r80737\t1\n7\t39\nhosting\t4\ngit\t30\nrepo\t4\nwebsite\t41\nfew\t53\ndev\t6\ntools\t19\naccessible\t14\nproxies\t1\nunable\t25\nsite/repo\t1\nAttached\t4\nBridged\t1\nType\t6\nIntel\t1\nPRO/1000MT\t1\nDesktop\t1\nPromiscuous\t1\nMode\t2\nDeny\t1\nCable\t1\nConnected\t1\nguess\t40\nwebpage\t9\nLAN\t3\nrather\t54\nwider\t3\nInternet\t6\nblocked\t6\nawesome\t4\nentry\t18\nhosts\t1\neasier\t26\nUsually\t7\ncompletely\t28\nboot\t15\nHave\t26\nhost-only\t1\nadapter\t12\nhad\t94\nseemed\t6\nworth\t9\nshot\t5\nTell\t2\napache\t8\nmath\t6\nscala\t2\nhttp://commons.apache.org/proper/commons-math/userguide/random.html\t1\nplease\t82\ndetailed\t9\nfolder\t54\nbuild.sbt\t2\nsbt\t3\nconsole\t50\neclipse\t12\nScala\t8\ngeneral\t26\nsyntactic\t2\nunlike\t8\nvariables\t55\nnor\t9\nsemicolon\t1\nrequired\t43\nimport\t35\nRandomDataGenerator\t1\norg.apache.commons.math3.random.RandomDataGenerator\t1\nApache\t14\ntends\t3\nterrible\t3\nexplaining\t2\nDownload\t6\neverywhere\t6\njars\t3\nDo\t48\nproper\t22\nsystem\t73\nSBT\t4\nMaven\t8\nalthough\t17\nverbosity\t1\nOnce\t28\ninstalled\t35\nCentral\t1\ncommons-math\t1\nOkay\t3\nfull\t25\nnowhere\t1\nconvenient\t1\nWith\t39\nlittle\t35\nGoogling\t1\nresource\t24\ngive\t75\nnext\t60\nformula\t15\nconvert\t53\nIPV6\t2\nIP\t11\nmap\t58\ngeoip\t1\nInput\t7\n2001:0db8:0000:0000:0000:ff00:0042:8329\t1\nNumber\t5\n42540766411282592856904265327123268393\t1\nThanks.\t1\nBelow\t25\ncodes\t14\nIPv6\t1\ntaken\t16\nhttp://lite.ip2location.com/faqs\t1\nC#\t49\nVB.NET\t3\nconsider\t24\nnon-homework\t1\nexercise\t7\nconverting\t10\nslash-notation\t1\n24\t7\n30\t14\nsubnet\t1\nmask\t4\nBitArray\t5\nordering\t4\nleads\t11\nnumberOfSetBits\t1\nToString()\t3\n255.255.255.0\t2\nbits\t6\nsymmetrical\t1\n255.255.255.63\t1\nexpected\t42\n255.255.255.252\t1\nrealize\t8\nhandles\t13\nchildren\t10\nold\t26\ndiscussion\t10\nissue\t143\nnever-ending\t1\nargument\t34\nlove\t6\ngod\t1\ntreat\t4\n1111\t2\n1100\t1\n(=\t3\n25\t5\nmangling\t1\n0011\t1\n6\t22\n3)\t20\nbelieve\t33\nThank\t57\nshifting\t1\ninteger\t16\nBitConverter.GetBytes\t1\nWould\t16\nsets\t20\nhigh-order\t1\nlow-order\t1\nreasoning\t1\nprecisely\t1\nlinked\t20\nleast-significant\t1\ndigits\t23\nlowest\t4\nindex\t64\n11111000000000\t1\nspring-data-mongodb\t1\nController\t18\nservice\t56\nRepository\t2\nrepository\t30\nempty\t42\nURL\t56\nthink\t143\nquotes\t15\nhttp://localhost:8080/document/getByCategory?categories=category1&categories=category2\t1\nVB2010\t1\ninputs\t12\nroutine\t6\ncycles\t3\npairs\t10\ncategories\t6\nincrement\t9\ndigit\t8\noverlap\t4\n0.000\t1\n0.0\t4\n164.04\t1\nSeemed\t1\nVB6\t1\nwanted\t34\nideas\t38\naccounted\t1\n9\t22\nUpdate\t26\nended\t6\npositive\t8\nnegative\t8\nnumbers\t45\nintegers\t11\nfloats\t9\n1.Find\t1\ndecimal\t9\npoints\t38\np\t17\n2.multiply\t1\n10^p\t2\nincrease\t11\ndivide\t2\nsomewhat\t3\ncomplicated\t10\nslider\t13\nCycle\t2\nperfectly\t15\nbunch\t10\nfinished\t8\ntransition\t4\nstarts\t25\nwacky\t1\nhides\t1\ntext.\t1\n.stop()\t1\nremedy\t1\ndidnt.\t1\nFigured\t2\nHad\t3\n.slideUp\t1\n.slidedown\t1\nhappen\t28\n.animate()\t1\nIGrouping\t2\nmapping\t23\nViewPage\t1\ndeclaration\t19\nhelping\t4\naction\t64\nlists\t23\nspeak\t6\nKey\t5\ngrouped\t3\nproperty\t92\nViewData[\"Products\"]\t1\ncollection\t32\naspx\t1\nWe\t36\nIIS\t4\nJBoss\t3\n5\t51\nconcept\t15\nCould\t23\nadvice\t16\ngoogle\t21\nfinal\t19\ninvoked\t2\nruns\t38\nhttp://13.10.15.48\t1\ngrab\t8\ndefault\t106\nhandlers\t7\nShould\t18\nTomcat\t3\nroot\t24\npoint\t89\ndeploying\t5\nWAR\t2\n/WEB-INF/jboss\t1\n-web.xml\t1\nexist\t26\nEAR\t1\ncontext-root\t2\n/META-INF/application.xml\t1\nrefer\t19\nGood\t10\nluck\t15\nhttps://community.jboss.org/wiki/HowDoIOverrideTheWebContextRoot\t1\nconsisting\t6\nWindow\t7\ncontaining\t25\nrootCanvas\t2\napply\t26\nTransforms\t1\nchild\t33\ncanvas\t8\nLayoutTransform\t1\nprogrammatically\t7\nXAML\t12\nSome\t25\ntransforms\t1\nwhilst\t2\nLayoutTranform\t1\nRotateTransform\t1\nTranslateTransform\t2\ntranslation\t4\nappear\t37\napplied\t20\ncorner\t6\nMatrixTransform\t1\napplying\t7\nrotation\t4\nextremely\t8\nexplain\t30\ntranslations\t1\nWibbs\t1\nremarks\t2\nFrameworkElement.LayoutTransform\t1\nProperty\t7\nUIElement.RenderTransform\t1\nUIGestureRecognizer\t2\ntask\t33\nunlock\t6\niphone\t2\nsliding\t3\ncircle\t12\nanimation\t17\ngave\t7\nkey-words\t1\nhappy\t5\n:)\t36\nmaxi\t1\nhttps://github.com/iosdeveloper/SlideToCancel\t1\nstarting\t27\nhttp://denizdemir.com/2011/03/07/animated-slider-iphones-cool-first-impression/\t1\ninvolve\t6\nfair\t3\ngesture\t1\nlock\t7\nmove\t45\nhttp://iphonedevelopment.blogspot.com/2009/04/detecting-circle-gesture.html\t1\nhttp://forum.unity3d.com/threads/13494-Messing-around-with-gestures\t1\nsimpler\t8\naware\t12\nLuck\t1\nfreeze\t2\npanel\t29\nformatting\t7\nthings\t61\nSpreadsheets\t1\nSpreadsheet_paul.xls\t1\nSpreadsheet_Nick.xls\t1\n........\t1\ncorresponding\t24\ncommented\t4\nquesions\t1\nask\t27\nsaves\t7\nwokrbooks\t1\nworkbook\t2\nsaved\t26\n@dmitry\t1\n-pavliv\t1\nmodify\t32\nfunctionality\t34\nspecific\t89\nSheets\t1\ncomprehensions\t1\nPython\t35\nwords\t5\nduplicates\t13\nrid\t7\nutilize\t5\nset()\t3\nletterlist\t1\ncomprehension\t4\nTherefore\t7\nexecuted\t33\ndefinition\t43\nconverts\t5\nGives\t1\nsuffer\t2\nresolve\t15\nandhow\t1\nexplicitly\t14\ndecrease\t4\nreadability\t5\nC++11\t5\n14\t6\nauto\t8\ntrailing\t3\nomit\t3\ntypename\t1\nB<T>:\t2\nknows\t15\nglobal\t26\nunqualifed\t1\nlookup\t5\nfurther\t14\nb\t20\nlooked\t15\nB<T>\t1\nqualify\t1\n[basic.lookup.unqual]/8\t1\nbolded\t1\nPDF\t10\nAdobe\t2\nAcrobat\t1\naccessibility\t3\nJasperReports\t1\n6.3.1\t1\nprimary\t7\ntitle\t27\nJRXML\t1\nelements\t69\nfields\t46\ndownloads\t3\nps1\t1\npowershell\t5\nunblock\t2\npost\t55\nScott\t1\nHanselman\t1\nexplains\t5\nzone\t3\nembedded\t8\nalternate\t4\nstream\t34\nknowledge\t10\ntool\t31\nstreams.exe\t1\nSysInternals\t1\nGot\t4\nforum\t11\nNot\t22\n@driis\t1\npowershelly\t1\nhttp://social.technet.microsoft.com/Forums/en/winserverpowershell/thread/0b5f1fa6-981e-4696-84bc-b8046564ec8b\t1\nperformance\t30\njvm\t2\n-client\t2\n-server\t2\nswitch\t27\namong\t3\ncommand-line\t2\nswitches\t3\n-Xmx256m\t1\nCommand\t3\nLine\t6\nOptions\t6\nRun\t10\nConfiguration\t4\nconfigurations\t4\nGo\t7\nLaunch\t1\nconfiguration\t30\nAdd\t24\nMore\t12\nEclipse\t16\nHelp\t13\nPhoneGap\t2\n480\t2\nwidth\t49\nviewport\t12\nignored\t2\ndevices\t11\nemulators\t1\nsmaller\t12\nmu\t2\nSamsung\t3\nGT\t1\nlaunched\t1\ntablet\t2\n800\t3\nAm\t19\nobvious\t13\nhours\t20\nWebView\t8\nignore\t7\nexplicty\t1\ntold\t7\nloaded\t40\nOverviewMode\t1\ncome\t40\ntarget-densityDpi\t1\ndevice-dpi\t1\naccepted\t7\nGalaxy\t1\nNexus\t2\nJSF\t2\ndiving\t1\ndeep\t6\nsecurity\t11\nhence\t8\nunique\t19\nsession\t53\nID\t44\nencryption\t5\nlogs\t20\nguide\t12\ntransmitted\t1\nAttempting\t1\nlayer\t20\nsuccessful\t8\nlower\t9\nlevel\t26\nservlet\t10\napproaches\t3\nserver-specific\t1\nSPI\t1\nexists\t23\nrewriting\t2\nrequests/responses\t1\nFilter\t3\ninsufficient\t2\nviability\t1\ncookie\t20\nusually\t27\nJSESSIONID\t1\nYour\t62\nfilter\t23\nmaintain\t8\nids\t6\nsecure\t10\nlistener\t7\nsessions\t3\navoid\t41\nleaks\t1\ndoubt\t7\nIDs\t8\nones\t19\ncontainer-specific\t1\nintercept\t2\ngetSession(false))\t1\nMY_SESSION_ID\t2\ncompare\t25\nreject\t1\ngetSession(true))\t1\nsuper-secure\t1\nstore\t76\ndisadvantage\t1\nautomatically\t50\nstrictly\t2\nJSPs\t1\ncomponent\t26\nlarge\t34\ndrop\t34\ndowns\t1\nboxes\t9\nmajority\t6\nturn\t25\nred\t16\ndefaults\t5\noff\t37\nconsuming\t2\nturns\t10\nstays\t5\nfeel\t17\nscripting\t1\nenter\t22\nLiveCycle\t1\nDesigner\t9\nhighlighting\t3\nscripts\t18\nfield\t82\naudio\t24\nstreaming\t8\nmedia\t15\nplayer\t8\ncapture\t17\nsound\t10\nplayed\t4\nMediaPlayer\t3\nrecord\t35\nMediaRecorder\t1\nnon-trivial\t2\nundertaking\t1\nimplements\t7\nwrites\t8\nspeaker\t2\ndeveloping\t14\nc#\t9\nEF5\t1\nDB\t18\nentities\t10\nupdating\t16\nrelationships\t9\nrelationship\t13\nProject\t5\n<-\t1\nProjectCategoryIntersection\t1\nCategory\t2\nModel\t9\nSave\t3\nexception\t77\nreceive\t22\ninstances\t24\nChangeTracker\t1\nmodel\t81\nSolution\t5\nremoving\t12\nTProject\t1\n{\t55\nprivate\t18\n}\t56\nApperantly\t1\nEF\t4\nIds\t2\nreferences\t17\nyearly\t3\nsalary\t2\nweekly\t2\n312,000\t1\n$6000\t1\ndesired\t17\nhourly\t2\n52\t2\nweeks\t6\nyear\t20\nweeklySalary\t2\nyearlySalary\t1\n40\t5\nweek\t13\nhourlySalary\t1\nbetween\t135\n2*D\t1\ngrid\t16\nconstraints\t8\nex\t5\ntargets\t4\nsource1\t2\ntarget1\t2\n4\t69\nsource2\t2\ntarget2\t2\nshortest\t1\ncombinations\t8\ndonot\t1\nintersect\t1\nminimum\t8\ncomplexity\t10\nGenetic\t1\nAlgorithm\t2\ncomparing\t9\nsource1-target1\t1\nsource2-target2\t1\nlead\t6\nfact\t37\nexperience\t16\ngenetic\t1\nalgorithms\t4\nA*\t1\nwindows\t51\nALT+SHIFT\t1\nRussian\t2\nEnglish\t5\napplications\t15\nALT+TAB\t1\nrestart\t13\nItellij\t1\nIDEA\t4\nAnybody\t2\ndescribe\t13\nkeyboard\t9\npreferences\t4\nshortcut-function\t1\nbound\t10\nALT+\t2\nSHIFT\t1\nIntelliJ\t3\nAFAIK\t3\ndecided\t10\nstart-up\t2\nexperienced\t4\narguments\t22\ncountdown\t3\ntimer\t22\nactivated\t5\naccount\t38\ncounting\t5\nregister\t9\nlogin\t38\ndisplayed\t30\nPS\t11\ndummy\t5\nDreamweaver\t1\ngeneration\t7\ntimestamp\t10\nregistering\t3\nmysql\t19\ninsert\t33\nlogged\t10\nsubtract\t5\nregistered\t8\ntimestam\t1\ndashboard\t8\ncontinues\t6\ninterval\t5\nsetTimeout\t1\nDefault\t4\nfired\t11\nfinish\t10\nregistration\t5\nsteps\t24\nphp\t38\nLoad\t6\nscrolling\t12\nlistView\t1\nSQLite\t4\nGitHub\t4\nsave\t43\nlisview\t1\nactivity\t20\nListView.ListViewListener\t1\nautomatic\t8\nsummarization\t1\nC++\t31\nregarding\t13\ncomparisons\t3\nstatements\t29\nchecking\t32\nwhether\t43\nsentence\t4\nbegun\t1\nanalyzed\t1\ndealt\t3\nlater\t29\nconditionals\t1\ndiscovered\t3\n-1\t17\ncharacter\t43\nvalid\t27\nget()\t2\ndue\t31\nreached\t7\neof()\t1\ntrue\t48\nfail\t8\naccident\t1\n127\t2\nchar\t20\nunsigned\t3\n/J\t1\nVC++\t1\nEOF\t2\nrare\t3\nguaranteed\t5\nLatin-1\t1\nÿ\t1\nPutting\t1\nfailure\t2\neof())\t1\nsimplest\t10\nAlternatively\t12\nch\t1\ntolower\t2\nrange\t33\nUCHAR_MAX\t1\n—\t7\nsigned\t3\nguaranteeing\t2\nallow\t42\nchaining\t1\ncases\t36\nFWIW\t1\ntechnique\t4\npushing\t2\nlogic\t22\nkeeping\t12\nfilled\t11\ndate\t82\ndefinitely\t9\nconstants\t6\ncarriage\t2\n\\r\t2\nSimilarly\t2\nnewline\t2\n\\n\t11\nouter\t6\nwhitespace\t4\nisspace\t1\nstatic_cast\t1\n<unsigned\t1\nchar>\t1\nsentenceCheck.second\t1\nfails\t20\nsentences\t3\nquote\t4\nabbreviations\t2\nMr\t1\nJones\t1\nhere.\t1\nbeyond\t8\nassignment\t11\nfully\t6\nsolvable\t2\nsometimes\t17\nOracle\t6\nPL/SQL\t1\ncomplex\t11\nproc\t1\ncorrelated\t2\nsubquery\t8\nlearned\t4\ndivide-and-conquer\t1\ncut\t6\nsmall\t35\npieces\t9\ncommenting\t1\nso-far\t1\nSELECT\t13\n@varname\t1\nleast\t38\nMYSQL\t2\n5.x\t1\nSQL\t40\ndebugger\t7\nbreakpoints\t13\nforth\t5\ntypical\t6\nfeatures\t18\nGet\t10\nUIViews\t1\nx/y\t1\nposition\t50\noften\t19\nchecked\t25\npositions\t8\nsomehow\t16\nhiding\t7\nalpha\t5\n0.5\t2\nuserInteractionEnabled\t1\nNO\t4\nre-showing\t1\nEventMachine\t2\nRuby\t25\nmy_app.rb\t1\nrun.rb\t1\nRabbitMQ\t1\nfinding\t15\nqueue\t41\nnon-Spring\t1\nRight\t10\nexec'ing\t1\nshell\t18\nrabbitmqctl\t1\nlist_queues\t1\nresults--not\t1\nenable\t19\nmanagement\t6\nrabbitmq-plugins\t1\nrabbitmq_management\t1\nexecute\t60\njson\t21\npiece\t13\nbigger\t15\nweb-application\t1\ndeployed\t11\nWSDL\t5\nauth\t4\nheader\t45\nplaintext\t1\nusername/password\t2\ndeploy\t9\nSP0105\t2\nEither\t10\nSymmetricBinding/AsymmetricBinding/TransportBinding\t1\nassertion\t2\npresent\t15\nwsdl\t4\noutside\t29\nhints\t3\nhttp://www.javadb.com/using-a-message-handler-to-alter-the-soap-header-in-a-web-service-client\t1\nfragment\t13\nresolving\t2\nendpoint\t11\ncalling\t53\nEndpointResolver.java\t1\nHeaderHandlerResolver\t1\nimplementing\t18\njavax.xml.ws.handler.HandlerResolver\t1\nimportant\t23\nmethid\t1\nHeaderHandler\t1\nedit\t38\npolicy\t3\nmetro\t2\n2.1.1\t1\nlib/webservices\t2\n-rt.jar\t1\n-tools.jar\t1\nlib/endorsed/webservices\t1\n-api.jar\t1\nsolved\t25\nClassCastException\t1\nheaders\t20\ndeleted\t12\nHeaderHandler/HeaderHandlerResolver\t1\nredirecting\t5\nJSP\t11\nForm\t9\nsubmit\t32\nChanging\t3\nsequence\t14\nindex.jsp\t2\ninclude\t51\njqm\t4\ncss\t30\nmobileinit\t1\nsettings\t35\nredirect.jsp\t1\nstrange\t16\nReorderList\t1\nvertically\t9\nscrollable\t3\nDIV\t3\nscrollbar\t10\nscrolled\t1\nre-order\t2\nhttp://forums.asp.net/p/1068063/1550532.aspx\t1\n3.5\t6\nassembly\t10\nAjaxControlToolkit\t2\ncodeplex\t3\nre-build\t1\ntoolkit\t4\ncompatible\t9\nVisual\t25\nStudio\t29\n2008\t4\nresponses\t5\nschedulenotification\t1\nclosed\t12\nforeground\t11\nkilled\t2\nIm\t12\nsheet\t18\nlocal\t53\nuploads\t1\ncalculations\t5\nsupposed\t25\nrunnable\t11\njar\t19\npopup\t16\nOccurred\t1\nload\t81\nbreaks\t10\nwhole\t39\nbreak\t26\ndouble-clicking\t1\nlaunch\t10\njavaw.exe\t1\ntherefore\t16\nreports\t7\ntrace\t14\nprompt\t6\ncd\t3\nsupposing\t1\nMyJarFile.jar\t1\njava.exe\t1\nprintStackTrace()\t1\noffending\t3\nposted\t15\nAh\t2\nthird\t16\nparty\t8\ndependency\t13\nspecifying\t7\nclasspath\t4\n\\to\t1\nApachePoiJarName\t1\nMyAppJarFile\t1\nmy.main.class.package\t1\nMyMainClass\t1\nPOI\t1\nrequires\t18\nseparated\t7\nsemicolons\t3\nspaces\t10\nreply\t5\nTried\t5\nlimit\t19\nExport\t2\nRunnable\t1\nJAR\t4\nNext\t7\nSelect\t7\ndrop-down\t4\nlaunches\t3\ndestination\t8\nbrowse\t8\nexported\t6\nchoose\t44\nUnder\t1\nLibrary\t5\nPackage\t3\nFinish\t1\nnormally\t10\nopens\t14\njavaw\t1\n-jar\t3\nMyJarName.jar\t1\ntrouble\t21\nlibgdx\t1\ncomputers\t2\nbackup\t4\ncomputer\t16\nrestore\t5\ngoogle-play-services\t1\nBaseGameUtils\t1\nre-importing\t1\nrecommand\t1\nGit\t12\nBitbucket\t1\nInstall\t2\nTortoiseGit\t3\nbitbucket\t1\nLocal\t5\nMatch\t1\nrepositories\t6\npull(download)/push(upload)\t1\nhelpful\t19\nKilled\t1\nstuff\t18\nseparately\t7\nДопоможіть\t1\nхто\t1\nзможе\t1\nservice_name\t3\nobviously\t13\nfulfills\t2\ncriteria\t5\nbegin\t9\ncommits\t15\nsuicide\t1\nremains\t9\nkill\t2\ncmd\t4\n\"s[e]rvice_name\"\t1\nprefer\t20\n|grep\t1\n-v\t2\npipe\t2\nawk\t3\nsync\t7\nSVN\t5\n/home/site/public_html/\t1\noverwrite\t8\n/usr/bin/svn/project\t1\nthough\t54\nsvn\t11\ncheckout\t6\nexport\t13\n/home/site/public_html\t1\nPersonally\t8\nhook\t10\ncommit\t22\ncommitting\t2\neffectively\t12\nhide\t12\ninherited\t5\nmembers\t12\nrecent\t9\ndescendant\t2\nproperties\t49\nvestigial\t1\nconfusing\t8\nIntelliSense\t1\nvisual\t9\ndesigner\t4\nThese\t22\ncontrols\t22\ncompiled\t13\nWPF\t11\nSilverlight\t12\n2.0\t27\nICustomTypeDescriptor\t2\nICustomPropertyProvider\t1\ncertain\t37\nfunctional\t5\nusability\t1\nancestors\t1\ndesigning\t3\nmember\t17\nridiculous\t3\nhackish\t1\ncomposition\t2\nopposed\t6\ninheritance\t8\ninterface\t35\nderived\t15\nConsider\t12\n3rd\t12\nDLL\t2\n.Net\t4\ngetThisValue\t1\nsetThisValue\t1\nwanting\t2\nengine\t15\nbuilding\t24\nrestrictions\t2\nmarked\t5\nvirtual\t16\nvalueEnum\t1\nAPIUsageClass\t2\nAPIClass\t2\npeople\t22\nUltimately\t1\nmaking\t53\nexpose\t4\nlength\t31\nenough\t45\nsyntactically\t1\nexact\t14\nreformatted\t1\ncorrected\t1\n2KB\t1\npages\t19\nbrief\t2\nexplanation\t10\nfinderr\t1\ntotal\t23\nlower-bound\t2\napplies\t6\nInformix\t2\nSE\t3\nIDS\t3\n255\t7\nsystems\t11\nvariety\t1\nsensible\t1\nsufficient\t5\n10.00\t2\ndbspace\t1\nlarger\t26\nSince\t41\nmaximum\t7\n3*255+(20/2+1)\t1\n776\t1\nrule\t12\nthumb\t4\nmaximum-length\t1\nROWID/FRAGID\t1\noverhead\t8\n8\t15\nper\t24\nKB\t5\nAIX\t2\nstoring\t8\nVARCHAR(255)\t1\nDATE\t3\nperhaps\t11\nDATETIME\t2\nYEAR\t2\nTO\t2\nDAY\t1\nspelling\t2\nunderlying\t9\ndisk\t15\nSECOND\t1\nfunny\t4\nTIMESTAMP\t2\nnum0\t1\nnum1\t1\nnum2\t1\ndubious\t1\nNUMERIC\t1\nDECIMAL\t1\nDECIMAL(20)\t1\ndatabases\t4\n20-digit\t1\nfloating\t10\ndirect\t7\nVARCHAR\t1\ncolumns\t61\nLVARCHAR\t1\n32\t7\nCHAR\t1\nTEXT\t2\nGB\t3\nCLOB\t2\nlimited\t8\nBYTE\t1\nBLOB\t1\ndescriptor\t2\ntowards\t5\nbringing\t2\naccurate\t5\nbug\t49\nUIButtons\t3\nUIView\t4\nUIScrollView\t1\nclickable\t3\nscroller\t3\nunderneath\t5\ndetail\t13\nslides\t3\nreveal\t2\nstation\t2\nselected\t38\nselecting\t9\nhit\t17\nvisually\t1\ntap\t7\nhold\t12\nsimulator\t1\ncursor\t8\nfires\t3\nscroll\t27\nlatter\t9\nwired\t1\nculprit\t1\nmisconfigured\t1\nUITapGestureRecognizer\t1\nsit\t2\nSimply\t4\ninit\t9\nsolves\t2\nencountered\t7\nclient-server\t1\nchat\t11\nserversocket\t1\nincoming\t9\ninputstream\t1\nreleases\t6\ndocs.oracle.com\t1\nanybody\t15\nreadLine()\t1\nwaiting\t20\nsees\t7\ndelimeter\t1\n\\\\n\t1\nflush()\t1\nforgot\t3\n2nd\t9\nprintwriter\t2\nflush\t2\nbasically\t25\nloads\t14\nLike\t9\nloading\t34\nScreenshot\t1\nalternatively\t3\npreload\t2\nUI\t44\nImagePlot\t2\nImageJ\t2\nmacro\t5\nvisualize\t1\nimages\t69\naverage\t8\ncolor\t34\nsaturation\t1\nmedium\t1\nbrightness\t1\ndifferently\t11\nEditText(Android)\t1\nCordova\t3\ncame\t20\nacross\t23\nDell\t5\nOne\t48\n19\t3\nday\t23\nwondered\t1\nDev\t1\nMulti-Touch\t3\nAnyone\t9\ndevelop\t7\nHP\t2\nTouchSmart\t1\nSDK\t23\nRocks\t1\nepisode\t2\nhoping\t10\nnative\t27\ntouch\t5\nsupport\t57\nIdeally\t2\nSurface\t8\nbrought\t3\ntouch-enabled\t1\nscreens\t8\nWin\t6\ninsight\t4\nwhats\t5\nperspective\t4\nmulti-touch\t2\nRC\t9\nTim\t2\nJ\t1\naddition\t22\nAPIs\t9\nextend/build\t1\npresentation\t6\nFunny\t2\nXT2\t1\n64bit\t3\ndream\t1\nNTrig\t2\ndrivers\t1\nnice\t21\nBeta\t2\nsamples\t7\nreasonably\t2\nfun\t4\nHello\t9\ntextview\t3\nTextView\t8\nSpannble\t2\nSpannable\t4\npassed\t30\nerror/warning\t3\nthrowing\t13\nError\t26\nSpannedStringt/text\t1\nSpannedString\t2\nBufferType.SPANNABLE\t1\nSpannableString(textView.getText())\t1\nSorry\t11\nremoveSpan()\t1\nsetSpan()\t1\nSafari\t18\nScan\t2\nCredit\t2\nCard\t2\nusername\t11\npassword\t23\nreplied\t1\nImage\t6\nshown\t27\nversions\t24\nemail\t50\nrecipients\t1\nphpMailer\t1\nDepending\t10\nseach\t1\n$maileremail\t1\n$add\t1\nEDITED\t1\nmisunderstood\t2\nBrian\t2\nminimal\t7\nrepetition\t1\nclone\t5\n$mail\t2\nforeach($add)\t1\nallowing\t8\nbodies\t1\nsubjects\t2\nsomebody\t6\nhav\t2\nAngular\t14\nmigration\t2\nappers\t1\n$injector:nomod\t1\nModule\t2\nmisspelled\t1\nvariany\t1\nangular.module\t1\napp.module.ts\t1\npackage.json\t3\nsupports\t20\n|\t27\ntranslate\t3\nlisted\t12\nCM\t1\n7.1\t5\nUS\t4\nAlbanian\t3\npresume\t2\nsq\t1\nres/values\t2\n-sq\t2\nsq'\t1\nclarify\t6\nreinvent\t1\nswitching\t6\ninfluence\t1\nselector\t14\nmatters\t6\nandroid:minSdkVersion\t2\nvendor\t3\nchose\t6\nphones\t1\ndistributed\t2\nforcing\t1\ndoable\t4\nafaik\t1\nresources\t25\nrecreate\t4\nleave\t13\nAlbanian-specific\t1\nforced\t4\nbootstrap\t7\ndisappear\t7\nmobile\t11\ndepending\t23\nBootstrap\t11\nhidden-sm-down\t1\nv4-alpha\t1\nhttps://v4-alpha.getbootstrap.com/layout/responsive-utilities/\t1\nim\t8\nenglish\t6\nbad\t28\nAPP\t2\n2012\t8\nexpress\t7\nAll\t45\n23\t2\ntopics\t1\nresearch\t14\ntotally\t5\n17\t7\nemulator\t2\nlayout\t52\njtds.jdbe\t1\ndriver\t12\narrange\t1\nmoves\t5\nzooming\t2\nwhite\t12\ncrucially\t1\nCSS\t51\nCheers\t6\nOwain\t1\nunderstood\t8\nshall\t3\nattribute/property\t1\n.item1\t1\n.item2\t1\nAdding\t10\ntwo-item-column\t1\nrelative\t5\nparts\t15\nWaypoints\t2\nMap\t4\ntravelMode\t2\ntravel\t2\napparently\t5\nwaypoints\t1\nwalking\t3\nwalk\t3\nwaypoint\t2\nstopover\t1\ngmaps\t1\ngoogle.maps.LatLng\t1\nlatitude\t2\nlongitude\t1\norigin\t3\naccording\t17\nMaps\t8\nTravelMode\t1\nspan\t9\nwidths\t4\nbehaving\t2\ncol-lg-6\t1\nexpanding\t2\npast\t20\nprohibiting\t1\nexpanded\t3\nfigured\t14\nMVC\t23\n_ViewStart.cshtml\t1\n_Layout.cshtml\t1\nViewStart\t1\nRecently\t4\nmission\t1\nhttps\t5\ntomcat\t7\nbidirectional\t3\nauthentication\t14\ncert\t12\ntrustKeyStoreFile\t2\nvisit\t8\nrestarting\t4\ntrusted\t5\nreread\t1\nopening\t17\nforbidden\t1\ninstall/download\t1\nbinaries\t4\nremote\t19\ncapabilities\t8\nUpsettingly\t1\noffer\t10\ntelnet\t1\nscripted\t1\nredirected\t7\ncaptured\t5\nMSWinsock.Winsock.1\t1\nCOM\t1\nPortQry\t1\nPsPing\t1\nwonderful\t1\ndespite\t4\nrely\t2\n.bat\t3\ninternally\t3\nPowershell\t4\nbatch\t6\nmsbuild\t3\nTest-NetConnection\t1\noffers\t7\n-Port\t1\nmysql_real_escape_string\t2\nhacked\t1\nSample\t7\nmysqli\t4\nnotice\t6\ni)\t4\nPDO\t4\nprepared\t3\nqueries\t18\nAccording\t9\nunderdevelopment\t1\nextensions\t4\nUsage\t5\nholding\t4\nstrong\t2\nSelectButton\t2\nsoon\t16\nexits\t6\nreleased\t7\nretained\t2\nsubview\t2\nrespond\t11\npreferably\t1\nUIButton\t3\ntaps\t5\nIBAction\t3\nctrl\t2\ndragging\t9\ninspector\t1\ndot\t5\npointed\t9\nX\t19\nword\t21\nfoo\t16\nvariations\t3\nthanks\t30\nPOSIX\t2\ncompliant\t1\negrep\t3\n(.*\t1\nfoo.*\t1\nIDE\t4\nkeeps\t13\nrecently\t24\nhotfixes\t1\ncrashes\t8\nVS10-KB2275326-x86\t1\ncopy-paste\t2\nVS10-KB2251084-x86\t1\nincreased\t2\nVS10-KB2268081-x86\t1\nunnescessarily\t1\nmenus\t4\nVS10-KB2345133-x86\t1\nhotfix\t1\nKB2275326\t1\nâ€\t1\ncheckbox\t9\nstudio\t16\nasks\t8\ncrashing\t3\nMint\t4\nKDE\t1\nPlasma\t1\nSSD\t3\n30GB\t2\nPartition\t1\nremaining\t2\nstorage\t3\nComputer\t1\nBoot\t8\nGRUB\t5\nMaster\t1\nRecord\t2\nMBR\t4\nCD/USB\t1\nDrive\t5\nfollow\t22\nre-install\t1\nmount\t9\npartition\t10\nXY\t1\ndistro\t1\nsudo\t15\n<root-partition[e.g.\t1\n/dev/sdaXY]>\t1\n<mount-point[e.g.\t2\n/mnt/]>\t2\nbind\t16\nessential\t1\ndirectories\t5\nmounted\t2\n/mnt\t2\n--bind\t4\n/dev\t2\n/mnt/dev\t1\n&&\t6\n/dev/pts\t1\n/mnt/dev/pts\t1\n/proc\t1\n/mnt/proc\t1\n/sys\t1\n/mnt/sys\t1\nnewly\t3\nchroot\t1\ngrub-install\t3\nHDD\t2\n/dev/sda\t2\ngrub\t3\nentries\t12\ndetected\t3\noperating\t7\nupdate-grub\t2\nunmount\t1\nbinded\t1\nreboot\t4\nhope\t35\nsector\t1\nlinux\t6\nrepair\t5\nbooting\t1\nrepair-boot\t1\nRestart\t1\nCD\t1\nCD/DVD\t1\nflash\t4\nBecome\t1\nList\t12\npartitions\t5\nfdisk\t1\n-l\t1\nalmost\t29\ncertainly\t9\n/dev/sda1\t2\nReinstall\t1\n--root-directory\t1\n/mnt/\t1\nReboot\t1\n-r\t3\nRestore\t1\nmenu\t48\n@christopher\t1\nz\t3\nabc0\t1\nloops\t18\noperate\t5\nrandom\t29\ncollect\t2\nprior\t7\nleaving\t4\nStringBuilder\t2\nloader\t2\nprocessor\t5\nsoftware\t17\nremotely\t4\nkeil\t1\nuvision\t1\nV5.20.0.0\t1\nFlash.c\t1\nstartup_efm32zg.s\t2\nstartup_efm32zg.c\t1\nem_dma.c\t1\nconfigured\t13\nRAM\t9\nZero\t1\noptions/properties\t1\nStack\t12\n0x0000\t2\n0800\t1\nWizard\t1\nSilicon\t1\nLabs\t1\nflash.c\t2\nflash.h\t1\nRAMFUNC\t1\nredundant\t6\nKeil\t1\nFLASH_write\t4\nsupposedly\t1\nDMA\t1\nmoved\t8\nDMA->CHENS\t2\n&\t29\nDMA_CHENS_CH0ENS\t2\nwrapper\t7\nActivate\t1\nchannel\t11\nFLASH_init()\t1\ninitial\t23\nentering\t5\ninfinite\t7\ninterrupts\t3\nFLASH_erasePage\t1\n2400\t1\nWhere\t21\nstartAddress\t1\n0x00002400\t1\nflashBuffer\t1\nuint8_t\t1\nflashBuffer[256]\t1\n#define\t2\nBLOCK_SIZE\t1\n256\t3\nEventually\t3\nexecution\t15\nstops\t9\nCall\t6\nclears\t2\n0x00000000\t1\nALL\t3\n0xAA\t1\naside\t4\n9K\t1\nbootloader\t1\nTarget\t6\nMemory\t2\nTarget1\t1\nIROM1\t1\nStart[0x0]\t1\nSize[0x2400]\t1\nIRAM1\t1\nStart[0x20000000]\t1\nSize:[0x1000]\t1\nearth\t1\nconcerns\t4\nexecuting\t19\nLocation/Value\t1\nstepped\t1\n0x000008A4\t1\nflash!(?)\t1\nRAM_FUNC\t1\nstackoverflow\t5\niframe\t15\nheight\t42\ndynamically\t30\ndynamic_div\t2\n150px\t1\nless\t33\n150\t4\nP.S\t6\ndynamic\t15\nMany\t7\nBecause\t18\n<div\t2\nid=\"container\">\t1\nAutomatically\t2\nwont\t8\ntall\t5\nstyle\t44\nunknown\t3\ndoc.body.style.cssText\t1\noverwrites\t1\n100%\t8\nanyway\t9\nworry\t12\nJSFiddle\t6\nFACTS\t1\nsearches\t4\ninbox\t8\nunread\t3\nstarred\t4\nlabel\t19\nfilters\t6\naddys\t1\nGOAL\t1\nExcept\t1\nstay\t7\nPROBLEM\t1\nMost\t7\nemails\t7\nprocessed\t8\nOnly\t14\nlabeled\t2\nnewLabel\t1\nGmail\t1\nScript\t5\npicking\t2\nmails\t4\nindicated\t4\nGmailApp.search()\t1\nis:unread\t1\nin:inbox\t1\ndash\t4\nRad\t1\nBeacon\t2\nDot\t2\nnotification\t18\nhis\t9\nhe\t24\nhim\t6\nconnected\t16\nCloud\t2\nPlatform\t3\ntracking\t5\ncredentials\t9\nattachments\t4\nDashboard\t2\nPanel\t3\nachieve\t39\ndislikes\t1\nyourwebsite.com/beacon-track\t2\nyourwebsite.com/beacon\t1\nyourwebsite.com\t1\npull\t14\nJ-Y\t1\nspecifically\t4\nhorizontal\t7\nranges\t3\ncell\t50\n=CONCATENATE(IMPORTRANGE(\"123123123\",\"SheetName!J1:Y1\"))\t1\nputs\t6\ndrag\t22\nlower-right\t1\npasted\t3\ndragged\t2\n=CONCATENATE(IMPORTRANGE(\"123123123\",\"SheetName!J\"&ROW()&\":Y\"&ROW()))\t1\nsailsjs\t1\nmongodb\t1\nmodels\t10\nUserInterest.js\t1\nUserProfile.js\t1\nprofile\t27\npopulate\t17\nduplicated\t3\nsails\t1\nduplicate\t17\nPlay\t3\n2.1.2\t1\nclean\t15\ninstructions\t7\nclosing\t6\nreliable\t5\nstick\t9\ntimeout\t17\nacknowledge\t2\n--->\t1\nexpires\t4\nplatform\t7\noperations\t27\ndb\t9\ncoul\t1\nacceptable\t1\ntimed\t3\nrepeatedly\t2\nperforms\t8\nbulk\t6\ntick\t4\nSomething\t10\nhttp://www.poornerd.com/2014/04/01/how-to-implement-a-session-timeout-in-play-framework-2/\t1\nserves\t2\ntexture\t7\natlas\t1\n3D\t3\nfits\t5\n4k*4K\t1\nspritesheet\t1\nSeems\t4\nresolution\t8\n420x768px\t1\ngraphics\t9\nsuited\t3\ntextures\t4\ncocos2d\t3\nanimations\t3\n3d\t1\nheavy\t5\nsprite\t3\nlimitations\t2\ngame\t22\nbusy\t1\nvalidation\t28\nduplicate-able\t2\nblur\t2\nName\t9\nSurname\t2\nMind\t2\nGreatly\t1\nAppreciated\t1\nJsFiddle\t1\nJavascript\t35\nHTML\t68\nhttp://jsfiddle.net/6QTyd/5/\t1\nareas\t8\ncordova\t1\nQuestion\t16\ncontinue\t9\nwait\t21\nbackground.The\t1\ntaking\t14\nMinutes\t1\ncomplete\t35\nSync\t2\nprogress\t7\nforces\t3\ncompletion\t9\ndisturbing\t1\nhttps://github.com/katzer/cordova-plugin-background-mode\t1\nmeaning\t11\n1234\t2\n12+34\t2\npair\t2\n123\t3\n12+(30-48)\t1\n12+\t1\nIve\t3\nsitting\t2\ncant\t15\ntips\t6\nwelcomed\t2\nStrings\t2\n4567\t1\n45+67\t1\nd3\t1\nsvg\t10\ncircles\t5\nleaflet\t1\nfiddle\t12\nhttp://jsfiddle.net/nextstopsun/C3U8g/\t1\nreset()\t1\nviewreset\t2\ncalculate\t11\ntransformation\t5\ng\t12\noriginally\t8\nhttp://bost.ocks.org/mike/leaflet/\t1\nrecalculated\t1\nrepositioned\t2\nalign\t6\ntilelayer\t1\nok\t11\npaning\t1\nrepositioning\t1\ntransforming\t2\nreset\t6\ncoordinates\t16\nUpdated\t3\njsfiddle\t6\nmorning\t1\npreferred\t8\nembed\t2\ncocoa\t1\nexecutables\t2\nsection\t32\nruntime\t23\nmechanism\t5\nMac\t15\nicons\t1\nstatusmenu\t1\ndistribute\t2\nvast\t2\npostpone\t1\ncreation\t8\nimmutable\t2\ncached\t6\nreusable\t5\nquick\t19\nrepresentation\t6\nemit\t1\ncreator\t4\nNSImage\t1\nCGImage\t1\nfavor\t2\natypical\t1\ncopying\t13\nSubiste\t1\nSharePoint\t10\nDeigner\t1\n2013\t5\nHTTP\t26\nsuccesfuly\t1\ntip\t4\nhttp://mysharepointinsight.blogspot.com/2013/05/using-sharepoint-rest-services-from.html\t1\nsubsite\t2\n/SITE/_api/web/lists/getbytitle('Test')/items\t1\n/SITE/18/_api/web/lists/getbytitle('Test')/items\t1\n18\t1\nAction\t3\nscenario\t20\nSP.Data.TestListItem\t1\nhttp://msdn.microsoft.com/en-us/library/jj822159.aspx\t1\nSaaS\t1\nwildcard\t3\nSSL\t5\ndomain\t27\n.webapp.com\t1\nCustomers\t1\nclient.webapp.com\t1\nCNAME\t4\nclientdomain.com\t1\nclients\t15\ndomains\t4\nWebapp\t1\nhttps://client.webapp.com\t1\nhttps://clientdomain.com\t1\nPlesk\t1\nprocedural\t2\ngrasp\t1\nnessecary\t1\ncopying/pasting\t1\n1D\t5\nmidpoint\t4\ndisplacement\t1\ncompleted\t10\nmistakes\t3\nexpecting\t6\nimpressed\t1\nmanaged\t18\noff-by-one\t1\ncompute\t4\ncenter\t6\namount\t18\nmissed\t7\nterms\t15\nsegment\t4\nrest\t20\nproportion\t2\ndistance\t7\nproduces\t5\nWithin\t6\nApiController\t1\nduration\t3\nSql\t1\nConnection\t4\nminutes\t24\nOpenAsync\t1\nhuge\t8\n3s\t2\nimmediate\t3\neradicate\t1\ncrazy\t7\nslowness\t1\nSqlConnection\t4\nOpenConnection\t3\nincur\t2\nHence\t10\nscheduled\t7\nAzure\t14\nminute\t9\nopened\t12\nip.\t1\nDNS\t5\nTTL.\t1\nTime\t6\nobserved\t2\nhtt\t1\nlatencies\t1\ndns\t2\nsummarizing\t1\nobserve\t1\ndifference\t42\nspent\t12\nTCP/IP\t1\nConnect\t2\nHTTPS\t7\nHandshake\t1\nFiddler\t3\nfocus\t16\nalive\t4\nincurring\t2\ninactivity\t1\nrealised\t3\nregularly\t5\nstrangely\t2\ncorrelates\t1\nBalancer\t1\nIdle\t1\nTimeout\t1\nadmin\t5\nprotected\t9\nhtaccess\t5\nfile.Here\t1\nhtpasswd\t1\nencrypted\t2\nR\t22\nplots\t4\ncolors\t12\n2-million\t1\nsimulation\t2\ndataset\t9\nfactor\t17\nshort\t18\nsnippet\t21\nstatistics\t4\nscatterplot\t2\nE\t5\nplotted\t2\nmagenta\t3\nB\t55\nD\t5\nN\t12\ngreen\t5\nblue\t13\ncyan\t1\nyellow\t3\nplot\t30\nColor\t1\ngradient\t3\nelevation\t1\nXYZ\t1\nLattice\t1\nfactors\t5\ncolours\t1\nlattice\t1\ngrouping\t5\ngroups.factor\t1\nmyData$Class\t1\ntests\t17\nJeremyCG\t1\nfuture\t10\nshowed\t2\nClass\t12\n@jeremycg\t1\n14.04\t1\ncuda\t2\n6.5\t2\nnvidia\t3\n340.29\t1\nregisters\t8\nopenGL\t1\ncopies\t5\nPBO\t3\nglTexSubImage2D\t1\ndraws\t2\nimage-generation\t1\nkernel\t14\ngdb\t1\nsegmentation\t4\nfault\t7\ncudaGraphicsGLRegisterBuffer\t2\nmain.cu\t1\nGLdisplay.cu\t1\nGLdisplay.h\t1\nvert.glsl\t1\nfrag.glsl\t1\nUpdating\t1\n346.47\t1\nnvidia-smi\t1\nterminal\t7\nNVIDIA-SMI\t1\n346.xx\t1\nxx\t1\nnewest\t2\nCUDA\t9\nships\t1\noutdated\t2\nlacks\t3\nforemost\t1\nstatus\t13\nOpenGL\t5\nhunch\t3\nunbind\t1\nmapped\t9\nsegfault\t2\npin\t4\nunit\t11\ngwt\t1\nHTMLPanel\t3\nfired.Like\t1\nmouse\t22\nHTMLPanel(response.getText())\t1\nrootPanel.add(image)\t1\nPradeep\t1\nSVG\t7\nXML\t50\nURI\t5\nAttach\t1\nsharded\t1\ntables\t39\ndaily\t2\ndoc\t12\nimplemented\t26\nREST\t13\nBigQuery\t1\ntables.Insert\t1\nschema.fields[].description\t1\nBundle\t3\nApp\t21\nStore\t4\nApps\t3\nbundle\t6\nprice\t7\nTier\t2\ntalks\t2\nreduced\t2\npack\t4\ngroup\t33\napps\t18\nanswers/comments\t1\nTier-0\t1\nbundles\t2\nDespite\t4\nahead\t8\nreview\t3\napproved\t3\n$1\t1\na.k.a\t1\ntier-1\t1\nradar\t1\nagree\t5\ndupe\t1\nbugreport.apple.com\t1\nMe\t1\nreturning\t19\nadda\t1\nDateTime\t11\nlinq\t4\nGREATLY\t1\nbeautiful\t1\n;s\t1\nactionlink\t1\ncomparer\t1\nmillisecond\t1\nnullable\t1\nserialize\t5\nde-serialize\t1\nbinary\t24\ndescribed\t13\nhttps://stackoverflow.com/questions/21080839/pulling-objects-from-binary-file-and-putting-in-listt\t1\nserialisation\t3\ngrowing\t1\nappended\t10\nreading\t34\ndeserialization\t3\nretrieved\t5\nzero\t18\nlooped\t1\ncontrolled\t1\nAppreciate\t1\nThor\t2\nFateme\t2\nShirmohammadi\t1\nStackoverflow\t3\nreader\t4\nreaches\t8\nread()\t1\nattached\t27\ncredit\t3\nladenedge\t1\nMarc\t1\nGravell\t1\nanswered\t8\nP\t3\nPostgres\t4\nArtices\t1\nslugs\t2\narticles\t6\nexample.com/23323\t1\nexample.com/Funny_Thing_Happened_to_Me\t1\nstraightforward\t9\ngrew\t1\ncapitalized\t1\nurls\t4\ninsensitive\t6\nenforce\t3\nuniqueness\t5\nmanner\t5\nquickly\t10\nconducting\t1\nlower(url)\t1\nmean\t49\n\"lower()\"\t1\n8.4\t1\ncontrib\t1\ncitext\t1\nabstracts\t3\nlower/UPPER\t1\nperforming\t4\nafternoon\t1\nformulas\t2\nunits\t4\nsold\t2\nBogota\t3\ncities\t3\n<>\t4\nplacing\t5\nSummation\t1\nSomeone\t4\nlogical\t5\nBOGOTA\t1\n=SUMIF(DATOS!$G$4:$G$146;\"<>BOGOTA\")\t1\nHibernate\t2\nPostgreSQL\t6\n9.5\t1\ntrimmed\t3\nElse\t3\nupdatedAt\t1\nentirely\t7\nEntity\t5\nSchema\t4\nDefinition\t4\nSDWebImage\t1\niPhone\t7\niPad\t6\ncellForItemAtIndexPath\t2\nconcurrent\t11\n-collectionView\t1\nexecutes\t6\nAssuming\t11\n-downloadImageWithURL\t1\ninstantly\t3\ndispatch_async(dispatch_get_main_queue\t1\n()\t3\nwrapping\t6\nOtherwise\t19\nguarantee\t1\nexplained\t9\narchitectural\t1\ndifferences\t12\ntechnical\t2\nspecifications\t1\ntring\t1\nocclusion\t4\nTango\t6\nUnity\t5\nhidden\t30\nimpressive\t1\nvideo\t29\nhttps://www.youtube.com/watch?v=EpDhaM7ZhZs\t1\nEnable\t2\nCamera\t4\nmesh\t2\nreconstruction\t3\ncloud\t4\nOcclusion\t1\nexperimental\t1\nhigh\t12\nfidelity\t1\ncouple\t27\nfunctionalities\t1\nmeshes\t1\npre-scanned\t1\nessentially\t9\noccluded\t1\nup-sampling\t1\ndepth\t6\nclouds\t1\nplane\t5\nup-sample\t2\nrendering\t19\nARScreen\t1\nTangoUnitySDK\t1\nDue\t4\nsensing\t1\nhardware\t9\nquality\t5\nideal\t6\nphysical\t6\nmeters\t1\ntalbe\t1\ntextboxes\t3\nsubmitted\t17\nthanx\t2\nmiss\t6\ncommunicate\t6\nmonitor\t4\ncommunications\t1\nFinding\t3\ninteresting\t8\npresents\t1\nSituation\t1\n3.0\t4\nupcoming\t3\nwants\t8\nattend\t1\nmodal\t24\ne-mail\t4\nvisitor\t2\nclicks\t13\nfills\t7\nsubmits\t4\nInfo\t3\nWordpress\t7\nCMS\t2\nmarkup\t5\nwordpress\t2\nthe_title()\t1\nsituation\t21\ntemplates\t10\ngrabbing\t3\nthe_ID()\t1\nTwo\t2\nnoting\t3\npotentially\t4\nrsvp\t1\nformatted\t2\nfaster\t14\nbenchmark\t2\nJsPerf\t2\npython\t38\ncompares\t1\nnetaddr\t1\nSnippet\t4\n192.168.1.1\t2\nhost1\t1\n192.168.1.2\t2\nhost2\t1\n192.168.1.3\t1\nassistance\t3\nEasy\t3\ninitialize\t12\nip\t9\ninitiate\t2\nediting\t26\nSystem.Windows.Forms.PropertyGrid\t1\nGridItem\t1\nTAB\t3\nreviewed\t3\nnode\t41\nsubqueries\t3\nspeedier\t1\nadjust\t5\nconfigure\t21\nCruise\t1\nControl\t7\nbeginning\t13\nsubversion\t3\nwatch\t5\nwindow.innerWidth\t2\n$scope\t5\n$digest\t3\nresizing\t2\nexpand\t4\nconsole.log\t5\nfire\t8\nResizing\t1\nre-run\t1\ndirective\t20\nie\t9\nbinding\t20\nwindow.onresize\t1\ndecorate\t3\nviewed\t3\nfull-screen\t1\nDigg\t4\n</body>\t1\norphan\t2\nbehaviour\t12\nbroke\t3\ntook\t13\n<script>\t2\ndigg\t1\nTook\t1\nghost\t3\nxcode\t4\npicture\t9\nRootViewController\t1\nIOSLauncher\t1\npies\t4\nscatterpie\t2\n101\t1\ndifferentiate\t5\n(color=sample(allcolors\t1\n101))\t1\nAesthetics\t1\n286\t1\ncolour\t3\nscale_color_manual\t1\nscale_fill_manual\t1\nNVD3\t2\nneed.I\t1\nv3\t2\nD3\t2\nchart\t6\nreload\t5\njwplayer\t1\nreciving\t1\nplaylist\t4\nRss\t1\nfullscreen\t3\nsupplied\t7\nroutes\t5\nThu\t1\nJun\t1\n10:59:10\t1\nCDT\t2\n2014\t1\ndatetime\t6\n%Z\t1\ndateutil\t2\nformats\t10\neffort\t3\neasy_install\t1\ntimezone\t4\nthough.\t1\nparses\t5\nit.\t2\nusual\t7\nstrptime\t1\nUTC\t1\nEST\t3\nCST\t1\npython-dateutil\t1\nnaive\t1\ntimezone.\t1\nstructure\t30\nprojects\t12\nchoosing\t6\nMark\t3\nDirectory\t2\nExcluded\t1\nbower-components/\t1\nnode-modules\t2\netc.\t1\nSettings\t5\nTypes\t1\nFiles\t7\nfolders\t8\ndeclarations\t2\nmodules\t17\nlose\t4\nnavigation\t8\nIssues\t1\nls\t1\nGIT\t1\nunicode\t3\nfilenames\t4\n???\t2\nmp\t1\n-A\t1\nstat\t1\nexample/\t1\nmp3\t5\nMSysGit\t1\n1.7.10\t1\nUnicode\t5\ntweak\t2\ntruetype\t1\nfont\t11\nexplanations\t2\nMsysgit\t1\nnon-ASCII\t1\n80\t3\nCygwin\t6\npackage\t41\nUTF-8\t10\nraw\t6\nmediaplayr\t1\nplay\t25\nvideos\t10\nbishop\t1\nFakhry\t1\nhow-to-play-videos-in-android-from-assets-folder-or-raw-folder\t1\nminidump\t1\ncrash\t12\ndump\t14\nsizes\t9\nh1\t1\ntags\t23\nOf\t9\nalert\t18\nachive\t2\nthis.\t5\ntrick.\t1\n$(obj)\t1\nfind()\t2\n:selected\t1\npseudo-selector\t1\nholds\t6\nfacing\t10\nSet\t23\nSeq\t1\nchooses\t3\n\"(...).distinct.sameElements(...)\"\t1\ndeeper\t2\nequality\t8\ncheck.\t1\ncondensed\t1\ndistinct.sameElements\t1\ncomplaining\t2\nmeanwhile\t1\narose\t1\nsequences\t4\ndepend\t3\nm2-construct\t1\naccessing\t11\nm2\t1\nbehave\t5\ncontrast\t2\nm1\t1\nmaps\t15\nintuitively\t2\narea--testing\t1\nlike--are\t1\nhashCode\t5\nequals\t11\nstable\t4\ndistinct\t10\ntoSet\t1\nwhereas\t6\nprove\t8\nourselves\t1\nmatching\t9\nThing\t1\nWarning\t3\nmismatches\t2\nfrequently\t3\nprimitives\t1\ncatches\t2\nCase\t5\npossibilities\t1\noverrode\t1\nwrapped\t4\nprimitive\t2\nmismatch\t4\nbite\t2\neasy\t54\narises\t3\nmapValues\t1\nfilterKeys\t1\nquestionable\t1\nchoice\t12\ndesign\t15\nconcrete\t3\n.force\t2\nviews\t19\nresort\t1\nIO\t2\ncase--where\t1\nvalues--is\t1\npick\t15\ntaxonomy\t2\ncategorie\t1\nbranding\t2\nterm\t10\ntheme\t7\nblog\t2\nsingle.php\t1\nthemeApp\t1\nAppPresser\t1\nhttps://github.com/WebDevStudios/AppPresser/blob/master/inc/theme-switcher.php\t1\noption_template\t1\noption_stylesheet\t1\ncategory\t8\nearly\t3\nWordPress\t3\n$post\t1\n$wp_query\t1\naccomplished\t4\nupgrading\t1\n7.4.1\t1\nCourier\t1\nMedia\t4\nenvironments\t1\nthrown\t9\npackaging\t1\n2005\t4\ndts\t1\nNeed\t9\nDTS\t1\nBCP\t3\nutility\t3\nbcp\t2\ndb_name.schema_name.table_name\t2\ntable_name.dat\t2\n-c\t6\n-t\t2\n-S\t2\nsource_server\t1\n-T\t3\ndestination_server\t1\n-U\t2\nyour_username\t1\n-P\t2\nyour_password\t1\nhttp://msdn.microsoft.com/en-us/library/ff772782.aspx\t1\nLink\t7\nWANs\t1\npoor\t7\nWord\t8\ncumbersome\t1\nbullet\t5\nprovides\t16\nexcellent\t2\nhttps://support.microsoft.com/en-us/kb/323567\t1\nsymbol\t10\n0149\t1\nselection\t6\ncells\t28\nHome\t2\nalignment\t1\nCustom\t1\n@\t7\nClick\t9\nALT-0149\t1\ncontextual\t1\neditor\t18\nNSTextView\t1\nNSTextField\t2\nfirstResponder\t1\nsubclassing\t3\noverriding\t6\nmenuForEvent\t1\nwindowWillReturnFieldEditor\t1\ndelegate\t14\nCLI\t2\ninflux\t3\nshard\t9\nseries\t18\ntimestamps\t2\nthank\t8\nQ\t3\ninfluxdb\t1\n1.3\t1\nlives\t1\nGiven\t17\nShard\t2\nMeasurements\t1\nnoted\t6\nmeasurements\t3\nfall\t4\n2012-11-26T00:00:00Z\t1\n2012-12-03T00:00:00Z\t1\ndisappearing\t1\nMichael\t3\nHartl\t2\nrailstutorial.org\t1\nfactoring\t3\nchapter\t5\nlisting\t2\n10.5\t1\n10.6\t5\n10.7\t2\n:url\t1\nhttps://www.railstutorial.org/book/updating_and_deleting_users\t1\n_form.html.erb\t1\nedit.html.erb\t1\nnew.html.erb\t1\navail\t4\nfailing\t8\nroutes.rb\t2\nsmtp\t2\nmailgun\t3\nKentico\t1\npop3\t2\nBounced\t1\nBrenden\t1\nMailGun\t1\ndiscontinuing\t1\nPOP3\t3\nalternative\t21\nsupplier\t1\narticle\t26\nRackspace\t1\nlistens\t1\nlisten\t5\n110\t1\nPOP3S\t1\nTransport\t1\nLayer\t3\nSecurity\t6\nTLS\t1\nSecure\t1\nSockets\t1\n995\t1\nmail\t2\nprovider\t4\nteam\t12\nadvise\t8\nHierachicalDataTemplate\t1\ninvolved\t6\nDataTemplate\t3\nhigher\t4\nprecedence\t5\nStyle\t4\nposts\t4\npartial\t8\nsp1\t1\ndropdownlist\t4\nwhose\t9\nautopostback\t1\nRequired\t1\nField\t3\nValidator\t1\npurpose\t21\nbriefly\t3\npostback\t5\npopulating\t5\ncascading\t2\nvalidating\t4\nchoise\t1\nPopulates\t1\nDDL\t2\nchosen\t8\nTextBox\t4\nButton\t9\ngroups\t7\nddl1\t2\nvalidated\t4\nSelectedIndexChanged\t1\ntxt1\t1\nOnClick\t3\nFacebook\t11\nsubscribed\t1\n20,000\t1\nhooks\t2\nunsubscribe\t5\nquicker\t4\ntoken\t16\nexpired\t2\nAccess\t10\nToken\t2\nDELETE\t3\nLocationManager.h\t2\nLocationManager.m\t2\nMainViewController.m\t1\n0.00000\t1\nimediatly\t1\nknown\t20\nupdates\t19\nlocations\t11\nUser\t20\nCurrent\t2\nLocation\t8\nReceiving\t1\nService\t15\napple\t5\nrecommends\t1\nage\t1\nvertx\t3\nOSGi\t3\nbndtools/eclipse\t1\nNetty\t1\n3.3.3\t1\nbndtools\t3\nmaven\t8\nimported\t8\ncnf\t1\nactivator\t2\n```\t2\nmix\t1\nmodes\t4\ncloned\t5\nParemus\t1\ndemonstrate\t2\nVert.x\t1\nhttps://github.com/gadieichhorn/hello-examples/tree/hello-1.13.x\t1\nVertx\t1\ninitialization\t7\nPlatformDependent0\t1\nsun.misc\t3\norg.osgi.framework.system.packages.extra\t1\nFelix\t2\nfelix.config.properties\t1\noccurs\t19\nimplicitly\t4\njava.lang\t1\nutil\t4\ndocument\t45\nVs\t1\npower\t5\nimpact\t1\nbubbles\t1\ntop-most\t1\nAnyways\t1\nskipping\t3\nnearest\t4\nparent\t39\nsubstrings\t4\n/etc/ld.so.cache\t2\nNearly\t1\nregexes\t1\nparentheses\t9\nspecial\t22\nescaped\t4\ncaptures\t2\nREG_NOSUB\t1\nprintf\t4\ntd2\t2\ntd3\t2\nfadeout\t1\nupwards\t2\nre-clicking\t2\nticket\t5\nforever\t3\nfade\t1\n.td2\t1\n;)\t5\nmysql(innodb)\t1\nschema\t13\nmulti_index_test_tbl_1\t2\nquery_index_1\t2\nExtra\t2\nelaborate.\t1\nInnoDB\t2\nPRIMARY\t2\nKEY\t4\nsecondary\t2\nMyISAM\t2\nEXPLAIN\t2\nFORMAT\t1\n1000000000\t1\nn\t24\n-1486618624\t1\nlongint\t1\n000\t5\nm*n\t1\n1,000,000,000,000,000,000\t1\nfit\t11\nLongInt\t1\nInt64\t1\nQWord\t1\nscenario's\t1\nProcessing\t7\nwindow/tab\t2\nfinishes\t2\nnotifying\t1\nchallenges\t1\nwonder\t6\nGetRecords\t1\npresented\t7\nissues\t32\nability\t9\nProcess/Process\t1\neffects\t9\nscheduling\t3\nWaitTillCompleted\t1\nspinner\t1\nLong\t1\nProcess\t2\nindicator\t2\n/3\t1\ninitiated\t1\nactions\t16\nsituations\t5\ndisplaying\t14\nre-processing\t1\ncompletes\t1\npresenting\t1\nwarning/error\t1\npop\t9\nmodifying\t8\ninstantiation\t2\nhands\t2\nre-use\t1\ninitialise\t2\nArguably\t1\npersonally\t2\nasking\t13\nrecycle\t4\noptimisation\t1\nabsolutely\t9\ntend\t2\ndecreases\t3\nlikelihood\t1\nsubtle\t2\n.NET/C\t1\n#\t6\nWebForm\t1\nSession\t4\nRequest\t12\n.aspx\t2\nprefix\t8\nHttpContext.Current\t2\nfirst.\t1\nfrankly\t1\nstrongly\t8\nlimiting\t5\nASP.NET\t16\nSystem.Web.SessionState\t2\nNamespace\t1\nAssembly\t1\nSystem.Web\t1\nSystem.Web.dll\t1\nAngularJS\t5\nprocesses\t13\nSignalR\t8\nmillions\t5\npasses\t5\nlies\t4\n$scope.$apply()\t3\nslows\t1\n$scope.$evalAsync()\t2\ntended\t1\n$scope.$safeApply()\t1\ndebounced\t1\nhttp://i.stack.imgur.com/zX3xC.png\t1\nbar\t14\n21\t4\n33\t1\ncommas\t2\ninternet\t11\nAbandon\t1\nAutoFilter\t1\nRange.Find\t1\nultimately\t2\n.AutoFilters\t1\ncollecting\t2\n.Find\t1\nUnion\t1\nsense\t22\nRange\t3\n.Selectยน\t1\nEnd\t1\nwoudl\t1\nrng\t1\ndiscontiguous\t1\nยน\t1\nVBA\t6\nmacros\t6\nactivate\t4\ngoals\t1\nx\t43\n1.5\t5\n<\t21\n14.1\t1\nDouble\t8\nFloat\t8\n<=\t6\nconditions\t15\nusage\t10\n14th\t1\n1.4\t2\n0.1\t5\nterminate\t3\n1.41\t1\n141\t1\niterations\t2\nmonetary\t1\nlack\t5\nprecision\t5\nclaims\t1\n1.0\t11\nreported\t7\nsubstract\t1\n1.11022302462516e-16\t1\nunprecise\t1\n0.9\t3\n5.96046e-08\t1\ndirections\t2\n4.440892.e-16\t1\n2.38419e-07\t1\n1.33226e-15\t1\n7.1525e-07\t1\noccur\t7\nx.isLess(than:1.0)\t1\nbasis\t5\nhttps://developer.apple.com/reference/swift/floatingpoint/1849403-isless\t1\nisLessThanOrEqualTo(1.0)\t1\nreliably\t2\nin-depth\t2\nSwift\t8\nBoth\t14\nuseless\t3\nrounded\t3\nyours\t4\nround\t6\ncomparison\t11\nadress\t1\nbrowsing\t1\nmap`\t1\nhttp://www.levinor.es/pruebas/pagina-ejemplo/\t1\nallowed\t8\n.levinor.es/\t1\ngoogle-maps.js\t1\nplaced\t7\nfuncionts.php\t1\nreferencing\t4\ndoubled\t3\nheader.php\t2\ngratefull\t1\ndisabled\t7\npt\t4\nauthorized\t1\nobtained\t8\nhttps://developers.google.com/maps/documentation/javascript/tutorial\t1\nreport\t7\nDS1\t2\nExecutes\t1\nSP\t2\nTruncates\t1\nperiod\t9\nDS2\t2\nDS3\t2\nSSRS\t1\nSets\t1\ntransaction\t13\nsequentially\t2\nparallel\t7\nhttp://blogs.msdn.com/b/robertbruckner/archive/2008/08/07/dataset-execution-order.aspx\t1\ndeployment\t6\nprocess.php\t2\ncontradicting\t1\nstupid\t7\nbacktick\t1\n=>\t10\n`\t4\nphpMyAdmin\t3\n4.4.14\t1\nWin7+Chrome\t1\nMySQL\t31\n5.6\t1\n+8\t2\nnow()\t1\nGeneration\t4\nLook\t8\nAlvin\t1\nSIU\t1\nPrint\t4\nphp.ini\t4\nchange/add\t1\ndate.timezone\t1\ntimezones\t1\nhttp://www.php.net/manual/en/timezones.php\t1\ninteracting\t2\nUnfortunately\t15\nworkspace\t2\nStyles\t1\nchance\t3\nChrome/Windows\t1\nCurrently\t17\n43.0.2357.130\t1\nInsider\t1\nPreview\t3\n10130\t1\nDevTools\t3\neditable\t3\nSources\t2\nOther\t16\nFTP/SFTP/FUSE\t1\nmounts/etc\t1\nfilesystem\t5\nstructures\t3\nlocally\t15\ncomfortable\t2\nmounting\t1\nslow\t11\n#ordernum\t1\ndivs\t20\nrows\t48\nappends\t2\n$.each()\t1\n$('#ordernum').text(row[0].order)\t1\n$rows\t1\nSQLSERVER\t1\neverthing\t1\nresponse.order\t1\n.each\t1\n$.parseJSON(response)\t1\nu\t5\nresopnse\t1\nreformat\t2\nDjango\t22\nHeadless\t1\nproduce\t7\ndocuments\t8\nlots\t12\nPDFs\t2\nkills\t1\nrenders\t2\ninefficient\t2\nheadless\t2\nconnecting\t6\nImportantly\t1\nrespecting\t1\nJAX-WS\t1\nspecification\t3\nWS\t2\ncom.sun.xml.ws.Closeable\t1\nCXF\t2\njava.io.Closeable\t1\nclose()\t1\nMUCH\t2\nWS-RM\t1\nJMS\t1\ndisconnected\t4\nsooner\t2\nsuccess\t23\nstop\t22\nchatroom.php\t1\nChatroom.java\t1\nLogCat\t2\nHTTP_REFERER\t2\nreferer\t1\nSaving\t2\ncookies\t9\nCookies\t1\nRetrieving\t2\nMatConvNet\t1\nfeedforward\t1\nnet\t4\nthree-classes\t1\nclassification\t2\ntopology\t4\nweights\t3\nbias\t2\nactivation\t3\nfunc\t8\nsigmoid\t2\nnodes\t20\nsoftmax\t1\nloss\t6\nalong\t19\nlayers\t7\nMoreover\t2\nconverge\t1\nepoch\t1\nconverged\t1\nnormalized\t2\nsigmoid/softmax\t1\nvocals\t1\nnear\t6\ngathering\t1\nvowels\t3\nCouple\t2\nVKP\t1\nCASE\t10\nadditional\t25\nSecond\t7\nsign\t5\nTHEN\t4\nsuccesfully\t1\nNULL\t11\n@vocales\t1\n@resultado\t1\ndeclared\t11\nrevise\t1\nallocation\t9\nincreases\t4\n32kb\t1\n.and\t1\nreach\t10\nmb\t2\n3mb\t1\naudiotoolbox\t1\nmalloc\t2\nnumerous\t4\nsuper\t7\ndealloc\t7\n-dealloc\t3\nreleasing\t2\nsoundFileURL\t1\ncamel\t7\nviewDidLoad\t5\nviewdidload\t2\nappSoundPlayer\t1\nself.appSoundPlayer\t1\nnil\t7\nhighly\t5\nprogramming\t19\nhttp://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html\t1\nsmartphones\t1\nsections\t6\nDesktop/Laptop\t1\nResolution\t2\nmax-width\t5\nQuery\t10\nLarge\t1\nSimple\t5\nStandard\t3\nRes\t1\nOSX\t3\nusr\t1\nevhttp.h\t1\n#include\t2\n-I\t6\n/missed_include\t2\noctopus\t1\n/Users/batuhangoksu/Desktop/test.c\t1\n-levent\t1\n-lpthread\t1\nsubmitting\t3\nServer.js\t3\nCMD\t4\nclose/disconnected\t1\nNodeJS\t2\nstops/shuts\t1\nEven\t15\nre-launch\t2\nshuts\t3\nNPM\t2\nliterally\t6\nthats\t6\nclose'\t1\neventhandler\t2\nA.start()\t1\nfirering\t1\n:-)\t10\nDownload-manager.js\t1\nWsclient.js\t1\nactive\t25\nshut\t1\ndiscover\t2\npreventing\t2\nrestricting\t2\nverify\t9\nsymptoms\t2\nonto\t10\nwed\t2\nAre\t19\nexec\t3\nserver.js\t2\nFYI\t4\nre-establish\t1\nwebSocket\t1\nVideoView\t4\nhelper\t9\ndialogs\t7\nActivity\t12\nxml\t22\ndilog\t1\nsetOnPreparedListener\t1\nDialog\t8\nemulate\t1\nmanifest\t3\nAndroidManifest.xml\t3\nplan\t7\nsaving\t17\nPerhaps\t11\nStudios\t1\nProperties\t3\nsounds\t8\nProperties.Settings\t1\nuser-specific\t1\nbreakdown\t1\nUIWebView\t3\npicker\t3\npicked\t8\nupload\t20\nExample:\t1\nUIWebview\t3\nfeed\t8\nwww.site1.com\t1\nsafari\t3\ndoesnt\t10\nchrome\t11\nfirefox\t5\nwww.site2.com\t1\nive\t2\njsonp.js\t1\nsorts\t5\ndice\t1\nappreciative\t1\ncross\t11\njsonp\t4\nhttp://www.kiabuzz.co.za/?feed=json&callback=\t1\nPaste\t1\nObviously\t4\ndatatype\t3\nSuppose\t4\nShape\t3\nAssume\t4\ninstantiated\t4\nCircle\t1\nSquare\t1\nTriangle\t1\nshape\t4\nsolving\t6\nVyrx\t1\nWeakReference\t1\ngarbage\t5\nreflection\t9\nReflection\t2\ninteract\t4\never\t11\ndubugging\t1\nI.e\t3\nWinDbg\t1\nSOS\t1\nsaw\t8\nhttp://livedemo00.template-help.com/wordpress_39638/contacts/\t1\nliked\t2\nhttp://maps.google.com/mapsf=q&source=s_q&hl=en&geocode=&q=Brooklyn,+NY,+USA&aq=0&sll=37.0625,-95.677068&sspn=47.704107,79.013672&ie=UTF8&hq=&hnear=Brooklyn,+Kings,+New+York&ll=40.649974,-73.949919&spn=0.01628,0.028238&z=14&iwloc=A&output=embed\t1\nhttps://developers.google.com/maps/documentation/embed/start\t1\ndbase\t1\nphp5.3\t1\n.dbf\t1\ndbase.so\t1\nphp5\t1\nCMX.dbf\t1\nFoxPro9\t1\nread/write/execute\t1\npermissions\t9\nenabled\t9\nexert\t1\n/var/log/apache2/error.log\t1\n28\t1\ndescriptive\t2\ntypically\t5\nFoxpro\t1\nCONNECTION\t1\nPATH\t2\n25000\t1\n761\t1\nxgboost\t1\nlevels\t5\ndetection\t4\n1%\t2\nobservations\t3\nBefore\t7\nXgboost\t2\nnumeric\t15\nlevels(output)[levels(output)==\"-1\"]\t1\nlabels\t16\nXGBoost\t1\nConcurrentModificationException\t1\nsubList\t2\nindependent\t7\nWithout\t7\nsomeList\t1\nsynchronization\t6\nsynchronized\t2\nattempt\t16\nsub-list\t2\nshooting\t1\ndark\t4\nmiddle\t4\niterator.remove()\t1\nsublist\t1\nmodifiable\t1\n/home/xd/karthik\t1\nexceeds\t1\n90%\t2\nrm\t5\n/path/to/directory/\t1\nhierarchy\t3\nrooted\t1\nSometimes\t8\narc\t1\nintroduced\t9\n@property\t3\niVar\t1\nARC\t3\nDeclare\t2\nsynthesize\t2\n@sythesize\t1\nself.str\t1\ngeneralize\t1\nComboBox\t7\npossibility\t9\nLogic\t1\nDependencyPropertyChangedEvent\t1\nCode-behind\t3\nrelatively\t5\nFrameworkElement\t1\ninherits\t3\nDependencyObject\t1\nWhenever\t11\npress\t12\nproduct\t15\npreview\t10\nLinq\t2\nLINQ\t11\nstop/stuck\t1\nVersion\t8\nLuna\t1\nRelease\t3\n4.4.2\t1\nDeleting\t1\nhistory\t7\nindexes\t20\ntemp\t7\npersistent\t4\nfooters/headers\t1\ntapping\t1\ndata-role=\"content\"\t1\nfooter\t16\nTapping\t1\nprototype\t11\nestate\t1\nclunky\t1\nviewing\t2\nshorter\t1\ndesktop\t8\nclimbs\t1\ndata-position\t1\ndata-tap-toggle\t1\nhttp://api.jquerymobile.com/fixedtoolbar/#option-tapToggle\t1\nDataGrid\t12\nMSDN\t3\nExpression\t1\nBlend\t2\nContrary\t1\nRachel\t2\nshe\t2\nSystem.Windows.Markup.XamlWriter.Save(myObject.Template)\t1\ndatasource\t4\nDataTable\t8\nDataView\t1\ncombobox\t7\nComboBox.SelectedValue\t2\nDT\t1\nSelectedValue\t2\nText\t8\ncontractsBindingSource.InvoicingIBAN\t1\nEnsure\t2\nbankAccountCombo.DropDownStyle\t1\nComboBoxStyle.DropDown\t1\nMaterial\t3\nresponsive\t10\n960\t1\ndetect\t14\nsizing\t1\nhid\t2\nfxShow\t1\nfxhide\t1\nfile1\t2\nfile2\t2\nmerged\t7\nfile3\t4\nsorted\t15\nalphabitically\t1\nbubblesort\t1\nedit:managed\t1\nverbal\t1\npointers\t17\nchars\t5\nrealloc\t2\nbubble\t1\nqsort\t3\nre-write\t1\nCoding\t1\nexcercise\t1\nhint\t5\nfgets\t1\ncomma\t8\ndelimited\t4\nValidationExpression\t1\naccepting\t1\nsymmetric\t2\nhttps://regex101.com/r/GqtOuQ/2/\t1\nfriendly\t4\n\\h\t1\nhttps://regex101.com/r/GqtOuQ/3\t1\nsecuview\t1\ndvr\t5\nmikrotik\t2\nforwarding\t3\n192.168.100.2\t2\nconfig\t15\ndst-nat\t1\nchain\t8\ndstnat\t1\ndst-port\t1\nDst\t1\nAddress\t1\n41.78.x.x\t1\ntcp\t2\nto-addresses\t1\nto-ports\t1\nkinect\t2\nfusion\t1\nNewcombe\t1\nKinect\t6\nv2.0\t1\nprinciple\t2\nfamous\t1\npcl\t1\nopensource\t2\nrefactor\t3\nrefactoring\t1\ncamera\t3\noutputs\t8\ncompensate\t1\nnoisy\t1\nincreasing\t2\nsmoothing\t3\nbilateral\t1\nfiltering\t5\ndistorted\t1\nlibfreenect2\t1\nmechanize\t1\nwebsites\t4\nanchor\t5\nbrowser.submit()\t1\nMechanize\t1\nclick_link\t1\nLinks\t2\nsites\t10\nPhantomJS\t3\nnodejs\t3\nwebkit\t1\nheart\t1\nSelenium\t8\nprogramatically\t3\nbet\t4\nGET/POST\t1\nappearing\t5\ngenerally\t7\nscrape\t2\nusable\t4\nclientside\t1\nmsec/sec\t1\ntime.sleep()\t1\nadjacency\t7\nrelation\t13\ngraph\t35\nbeginner\t9\nreferential\t1\nabstraction\t4\nneightbours\t1\nAdjacency\t8\nMatrix\t5\nmatrices\t2\nrelations\t4\nvertices\t15\nedge\t13\nvertex\t8\nMatrices\t1\nLists\t2\nallocate\t10\n2D\t8\nc++\t1\nedges\t10\nwherever\t2\ngonna\t4\noutgoing\t3\nde-allocate\t1\nGraph\t8\nNative\t1\naddon\t4\nElectron\t2\n.nvmrc\t1\nelectron\t1\n7.4.0\t3\n1.6.7\t1\nNode\t2\nNvm\t1\n0.33.2\t1\n4.0.5\t1\nsolutions\t19\n./node_modules/.bin/electron\t1\n-rebuild\t1\nrebuilding\t1\nnvm\t1\nnpm\t6\nrebuild\t2\nStill\t5\nBeginner\t2\nProducts\t2\nCategories\t1\nSidebar\t1\nMenu\t5\nPartial\t3\n_SidebarMenu\t2\ndictionary\t10\nSystem.Collections.Generic.List\t1\n`1\t1\nProjectName.MVCWebUI.Models.Products\t1\nProjectName.MVCWebUI.Areas.Admin.Models.AdminMenuContent\t1\nvirtually\t1\nimpossible\t11\notherwise\t18\nFoo\t4\nViewModel\t6\nIntList\t2\nmeet\t1\n\"_BLOCK_TYPE_IS_VALID(pHead->nBlockUse)\t1\nPubNub\t1\nrelay\t1\nFluentd\t2\nperiodically\t2\narrive\t2\nsuspect\t10\nloop+sleep\t1\nLEt\t1\ncentered\t5\npreviously\t4\n¿why\t1\npositioning\t7\nattack\t2\nhorizontally\t5\nmargin\t1\nabsolute\t12\nz-index\t1\nre-arrange\t1\nserial\t5\n00\t5\nF0\t1\nF1\t3\nD6\t1\nF2\t2\nSerialPort\t1\nRead(...)\t1\nWrite(...)\t1\nFirstly\t4\nserialPort1\t2\nWrite()\t1\nRead()\t1\ndeduce\t1\nidiomatic\t1\none-past-the-end\t1\niterators\t6\nOthers\t2\nstd::array\t1\narrays\t13\nstd::vector\t2\nsized\t3\napache2\t1\nOpen\t6\nResult\t6\nhinted\t1\nsession.auto_start\t2\nsession_write_close()\t1\ncache\t24\nreloading\t1\nflawed\t2\nFire\t1\nwget\t2\nproxy\t10\npacket\t2\nsniffing\t1\nWireshark\t1\nconcurrently\t2\nnews\t7\ncontroller.But\t1\nobject.So\t1\nFilterNews()\t1\nuid\t1\n1.But\t1\nincluded\t26\nAlways\t3\nforgetting\t1\n$query->execute();\"\t1\nhttps://github.com/Schweriner/tgm_lazynews/blob/master/ext_typoscript_setup.txt\t1\ndeletes\t5\nLst2\t1\nPassing\t1\ndel\t1\nSTDIN\t1\nsubitem\t4\nWinforms\t3\nUnless\t4\nfundamental\t3\nFullRowSelect\t1\nTrue\t6\nNeither\t2\nDataGridView\t9\nrepresented\t8\nListViewItem\t6\nSubItems\t2\nProfile\t1\nR2\t5\nSettingsSingleFileGenerator\t1\nelevated\t3\nnon-elevated\t1\nSettings.Default.Save()\t1\nSysinternals\t1\nExplorer\t4\nSettings.Default\t1\nInstance\t1\nSave().\t1\nMight\t3\nBug\t2\nappreciate\t19\n2.2.3\t1\nsuddenly\t4\nSoft\t1\nKeyboard\t2\nsetShowSoftInputOnFocus()\t1\nSTBs\t1\nsetShowSoftInputOnFocus(false)\t1\nmessed\t4\nGridView\t5\nCursorAdapter\t2\nnewView()\t2\nbindView()\t2\nGridImageAdapter.java\t1\nnewView()/bindView()\t1\nreaching\t3\nWell\t21\nlate\t5\nTo-Do\t1\nonCreate\t4\nLoaderCallbacks\t1\nonLoadFinished\t1\nI'v\t1\nformer\t4\nnotified\t4\nrecyclerview\t2\nEspresso\t1\nIdeas\t2\nUhm\t1\nRecyclerView\t7\nsearching\t20\nViewMatcher\t1\nwithText\t1\nrecyclers\t1\nViewHolder\t1\nmatcher\t1\nPositionableRecyclerViewAction\t1\nscrollToHolder(...)\t1\ntriggers\t14\n300\t4\ntriggered\t10\nJobKey\t2\nPause\t1\nJobKeys\t1\nhte\t2\n.config\t1\nShowJobs\t1\nlocate\t5\npseudo\t4\n......\t2\nPersistJobDataAfterExecution\t1\nPersistJobDataAfterExecutionAttribute\t1\npersist\t5\n/dev/\t1\nmtd0\t2\nmtd7\t1\nmtdblock0\t1\nmtdblock7\t1\nmtd\t4\nUpon\t2\nmtdblock\t1\nMTD\t1\nboard\t3\nBSP\t1\nmtdparts\t1\nmtdinfo\t1\n/proc/mtd\t1\nstart-end\t1\narch/arm/mach-omap2/board\t1\n-omap3beagle.c\t1\nbeagleboard\t1\nmtd4\t1\nhard-coded\t5\nKernel\t1\nGPU\t2\nhistogram\t8\nkernels\t2\npictures\t9\nvectors\t3\nl\t1\natomicAdds\t1\ndimGrid\t1\ndimBlock\t1\nEdit2\t1\n-arch\t4\nsm_11\t2\ncompilation\t5\nsm\t1\n1.1\t7\narchitecture\t5\natomic\t8\nSM\t3\nbackward\t2\ncompatibility\t5\n64-bit\t8\nints\t3\nrecompile\t4\nsm_20\t1\nDrawer\t2\nLayout\t3\nGravityCompat\t2\ncomponents\t10\nputting\t14\nEND\t3\nSTART\t1\nDrawerLayout\t1\ntools:openDrawer\t2\ntoggle\t2\ndrawer\t4\nthrows\t12\nactionbar\t1\napp_bar.xml\t1\ndrawerLayout\t1\nLIKE\t2\neg\t12\nFOOID.\t1\n@Martin\t1\nConvert\t5\nsilly\t4\nUrl\t3\nFaceboook\t1\nImplement\t1\nLuigi\t1\nIMHO\t2\nintegrating\t1\nFB\t4\nframing\t1\nhappier\t1\niMovie\t1\nus\t10\nShareKit\t2\nplatforms\t1\npopular\t7\nindeed\t6\nOded\t1\nPlease.\t1\ntooltip\t2\nhttp://jsfiddle.net/dvqFj/1/\t1\nD3.js\t1\nsucess\t2\nmouseover\t1\nhttp://jsfiddle.net/dvqFj/5/\t1\nexpense\t1\nreducing\t3\ncustomisation\t1\nhttp://jsfiddle.net/ezUex/\t1\nArrayList\t13\ntoggling\t1\nsetChoiceMode\t1\nR.layout.listview_item_text.xml\t1\ninflate\t1\nlistview_item_checkbox.xml\t1\nwidget\t10\nCheckable\t2\nandroid.R.layout.simple_list_item_multiple_choice\t1\nimprove\t12\nyur\t1\nCheckableFrameLayout\t2\nItem\t5\nBooleanSparseArray\t1\ngetCheckedItemPositions())\t1\ngrepcode\t1\nsat\t2\nLab9\t1\n//compiles\t1\ntraffic\t3\njams\t1\nopenstreetmaps.in\t1\nnavigating\t1\njam\t2\nroutes.how\t1\nopenstreetmaps\t1\nA1\t1\nA2\t1\nrouters\t1\nOSM\t1\nGraphHopper\t1\ninfluenced\t1\nblogged\t1\nstreets\t1\nblocking\t6\nweighting\t1\nskills\t6\nmodification\t3\nskill\t7\nfast\t17\nSKILL\t1\naim\t3\nclasic\t1\npersons\t4\npersonToSkill\t1\ntempting\t1\nmaitnence\t1\nhell\t1\npretend\t1\nassociates\t1\nforeign\t7\nrespective\t2\nindicate\t5\nJohn\t8\nDoe\t1\nBenny\t2\nHill\t2\nLinus\t2\nTorvalds\t2\nSwimming\t1\nDonald\t2\nKnuth\t2\npilots\t1\nwriter\t2\nNone\t7\nAstronaut\t1\nalarm\t1\nalarms\t3\nreboots\t1\nreceiver\t16\nbroadcastReceiver\t2\nonReceive\t3\nintent\t8\npaste\t8\nbootReceiver\t2\nrequestCode\t1\nReceiver\t2\nbroadcast\t4\nresponds\t4\nandroid.intent.action.BOOT_COMPLETED\t2\nBroadcastReceiver\t1\nManifest\t4\nhttp://developer.android.com/reference/android/content/BroadcastReceiver.html\t1\npracticing\t1\nfresher\t1\ninterview\t1\nNeon\t1\nJVM\t5\nheap\t4\nDataInputStream\t1\n32-bit\t1\n900\t3\nmillion\t4\ncomplains\t4\nstepping\t2\nScanner\t4\nscrapping\t1\ninformations\t1\nproducts\t1\nsmart\t5\nimg\t10\nserver/link\t1\nsrc\t7\ncompared\t6\ntheirs\t1\nplanet\t1\nmarginal\t1\nserving\t1\nsame-sized\t1\nhot\t1\nlinking\t7\n5-10\t2\ndesire\t1\nscaling\t5\nw/o\t1\nopt-in\t3\n5-6\t2\nLinearLayout\t3\nwant(blankHeight=(ListViewHeight-count*rowHeight)>0)\t1\nheightToPlus\t1\nblankHeight/count\t1\nrowHeight+heightToPlus\t1\ngetHeight\t1\nsetHeight\t1\ncustomValidator\t3\nPOSTBACK\t1\nrequiredFieldValidator\t1\nfomer\t1\nOption\t4\nvalidator\t2\nvalidate\t11\nunnecessary\t5\nsafety\t3\nmeasure\t2\npostbacks\t1\nhomebrew\t3\nguidelines\t3\ncurl\t2\nrvm\t3\nrails\t7\n1.9.3\t1\nlion\t2\n1.7.4\t1\nXcode\t7\n4.3.2\t1\nlibksba\t2\nbrew\t7\nBrew\t1\n/usr/bin/ruby\t2\n-e\t1\n/usr/bin/curl\t1\n-fsSL\t1\nhttps://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb\t1\nMacPorts\t1\nerased\t1\nconflicts\t2\n!!\t5\ncommunity\t2\nmachined\t1\ncritically\t1\nruby\t10\nSnowLeopard\t1\n10.6.8\t2\nvary\t3\nuninstall\t1\n/Developer/Library/uninstall\t1\n-devtools\t1\n--mode\t1\nrsync\t1\n/System/Library/Frameworks/Ruby.framework\t3\n/usr/bin\t2\n/usr/bin/{erb,gem,irb,rdoc,ri,ruby,testrb}\t1\nsymlinks\t1\nerb\t1\n../../System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/erb\t2\nre-symlinked\t1\nln\t1\n-s\t2\n./erb\t1\nexecutable\t9\nhear\t3\nsymlinking\t1\nostruct\t1\nlib\t5\nminor\t5\ndoctor\t1\nmacports\t1\nimprovement\t7\n5000\t3\nkeys\t32\nlongest\t3\ndefg\t1\nklmno'`\t1\ngenerator\t3\nescape\t6\ninterest\t4\nmax\t7\nlens\t1\ngrails\t1\n2.3.x\t1\nasync\t6\nonError\t1\nclosure\t7\nonComplete\t3\nThread.sleep()\t2\npratically\t1\nhttp://grails.org/doc/latest/guide/async.html\t1\nGPars\t1\nrequest/action\t1\nwaitAll()\t2\nEasiest\t2\nlist.get()\t1\nTroubleShooting->Logs\t1\nTrace->Server\t1\nLog\t1\nDetails\t3\nLevel\t4\ntracing\t2\nreflect\t2\nWAS\t2\nZ/OS\t1\nmainframe\t1\nTroubleShooting\t1\nLogs\t1\nTrace\t2\nDiagnostic\t1\nenable/disable\t1\nrollover\t1\nz/OS\t1\nprivileges\t3\nAdministrators\t1\nUsers\t4\nGroups\t3\nAdministrative\t1\nRoles\t2\nnamely\t3\nenabling\t1\nwsadmin\t1\nhttp://pic.dhe.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.express.doc%2Finfo%2Fexp%2Fae%2Ftxml_profiletrace.html\t1\n<p:calendar>\t1\ntoday\t8\nplaceholder\t5\nOmniFaces\t1\n#{now}\t1\ncombination\t15\na:placeholder\t1\nsomeproperty\t1\njava.util.date\t1\ndd.MM.yyyy\t1\nHH:mm\t1\nof:formatDate()\t1\nEL\t3\nreuse\t7\ncalendar\t21\n#{component}\t1\nthreading\t2\nsyntax/concepts\t1\nlovely\t1\nDispatcher\t1\nBackGroundWorker\t1\nhitting\t6\nwalls\t1\nalone\t4\ntonight\t1\nWorking\t7\nfooling\t1\nowns\t2\ntackling\t1\neat\t1\nglaring\t1\nsilliness\t1\nObservableCollection\t2\nproperties-I\t1\nrequested\t8\noccurrs\t1\nherring\t1\nInnerException\t1\nnight\t2\nconfusion\t7\nfeeling\t2\nsplit\t14\ngetfiltered\t1\nresidents\t1\nawait\t4\nToday\t2\ngenius\t1\nsingle-page\t2\ntutorial\t16\nages\t2\ngoogling\t3\npeaceful\t1\nholidays\t1\nnested\t11\nRest\t3\nserializers\t2\ncreate()\t2\nprices\t3\nPOST\t9\nPresumably\t3\nPrice\t3\nserializer\t5\nopportunity\t1\nassociate\t2\nPriceSerializer\t1\nMeta.exclude\t1\nMeta.fields\t1\nPrimaryKeyRelatedField\t1\nmass\t1\n<b></b>\t1\nnewlines\t1\npreg_replace\t1\nshitty\t1\ntutorials\t7\nregards\t8\ndeterminate\t1\nwraps\t3\n<br>\t1\n<pre>\t1\npseudo-element\t1\n:first-line\t1\nparagraph\t1\nhttp://www.ideone.com/1pTwD\t1\nNSMutableArrays\t1\nNSNumbers\t1\nNSCoding\t1\npresently\t1\nincremental\t2\ndirty\t1\nCore\t6\nNSTimer\t1\nMongocxx\t1\nhorrible\t1\nRelevant\t2\nhttp://mongodb.github.io/mongo-cxx-driver/api/mongocxx-3.1.1/classmongocxx_1_1bulk__write.html\t1\nbulk_write::bulk_write()\t1\nbulk_write::append()\t1\nmongo\t3\nhttps://docs.mongodb.com/manual/reference/method/Bulk/\t1\nbulk_write\t1\nMongo\t3\nv2\t4\nmaven-android-sdk-deployer\t1\nmvn\t3\nappcompat\t2\nC:\\Program\t6\n\\adt-bundle-windows-x86\\adt-bundle-windows-x86\\sdk\\extras\\android\\support\\v7\t1\npackag\t1\nManager\t2\nExtras\t1\nasynctask\t2\nAsyncTask\t16\ndoInBackground\t1\nvague\t4\nYet\t3\nnewer\t4\nandroids\t1\nonPostExecute()\t5\nnewbie\t4\nTerminal\t5\nupgrade\t5\n1.8.7\t2\n10.7.3\t1\ninstallation\t6\npre-installed\t1\nfashioning\t1\nGame\t4\nMaker\t1\nSplitContainer\t1\nPanel1\t1\nTreeView\t2\nPanel2\t3\nself-contained\t1\nhacky\t1\nworkaround\t12\nuser-controls\t1\nsplitContainer\t1\nhttp://i.stack.imgur.com/CG6kO.png\t1\nThose\t4\nReplaceControl\t1\na-form-inside-a-form\t1\nforms\t14\nPut\t5\nAdd()\t2\ndocking\t1\nprogrammaticaly\t1\n54\t1\nBasic\t3\niharob\t1\nsatisfaction\t1\nContext\t6\nForms\t3\nWin7\t3\nActiveX\t10\ncustomizable\t1\nprevented\t2\nokay\t7\nSearch\t4\nmention\t15\nWndProc\t2\nref\t1\nMessage\t6\nPass-through\t1\nOverflow\t7\nmentions\t3\nIMessageFilters\t1\nwinforms\t4\nApplication-Wide\t2\nLeft\t8\nMouse\t8\nEvent\t2\nHandling\t1\nCapturing\t1\nEvents\t1\nWInForm\t1\nExperiment\t1\nextensively\t1\nIMessageFilter\t1\nopt-out\t2\nshare\t16\nFiltering\t1\ncaused\t11\naverted\t1\ncarefully\t4\n/.NET\t2\nEnableWindow(hand,FALSE)\t1\nuppermost\t1\nhwnd\t1\nHandle\t1\nPOLYGONS\t1\nPOLYINES\t1\npolygon\t2\npolyline\t3\npolygons\t2\nPolygons\t1\npolylines.I\t1\nJson\t4\nhere.sorry\t1\nHopefully\t4\nkindly\t4\n.Demo\t1\ngoogle.maps.PolylineOptions\t1\ngoogle.maps.PolygonOptions\t1\nproof\t3\nrefreshed\t1\nImages\t3\n.php\t2\n<li\t2\nreloadImages()\t1\nflickering\t3\nflicker\t1\nPreload\t1\nfolowing\t1\nis'n\t1\nhttps://github.com/desandro/imagesloaded\t1\ndestionation\t1\nGhost\t2\nBlogging\t1\n62rem\t1\nvs\t12\nblockquote\t1\nCODE\t3\nborders\t5\nborder\t12\nFiddle\t9\n.container\t1\nreorganize\t1\nFIDDLE\t3\ntargeted\t2\npain\t3\nnode/express\t1\nres.render\t1\nreq.user\t2\nsnippets\t2\nJADE\t1\nAaron\t1\nlineedit\t1\ndelgate\t1\nQCompleter\t1\nmodifications\t3\nrecived_model\t3\nConsidering\t2\ndelegates\t3\ncompleter\t2\nQStringList\t1\nconstains\t1\nredone\t1\nModelWithoutDuplicatesProxy\t1\nImplementation\t2\ndeleter\t1\nDrupal\t2\npage-node-1.tpl\t1\nblock-modulename-2.tpl\t1\ndelta\t4\nassigns\t2\nadmin/build/block\t1\nadmin/build/block/configure/views/news\t1\n-block_2\t1\nViews\t2\nnews-block_2\t1\nModules\t2\nGulp\t1\nsass\t4\nimagemin\t1\njus\t1\ngulp\t3\nstopped\t9\nends\t8\ngulpfile.js\t1\napprox\t4\n20secs\t1\nfixes\t4\nhttp://example.com/ViewVacancy.aspx?ID=8674\t1\ndirected\t2\nhttp://m.example.com/vacancy.aspx?name=8674\t2\nhttp://example.com\t1\nhttp://m.example.com\t1\nhttp://example.com/viewvacancy.aspx?id=8674\t1\nString.Replace()\t1\nhang\t2\nefficient\t20\nWondering\t1\nre\t2\npractices\t6\nsimplify\t4\ncover\t2\nsimplified\t4\nspecifies\t2\nseparates\t1\nanonymous\t7\nconcatenated\t2\nfilename\t6\n.on()\t3\ncommonParentElementHere\t1\ngui\t3\nmypic\t2\nmytext\t2\nintroducing\t1\nworking.\t3\ntailor\t1\nComponents\t2\nmyText\t1\nmyPic\t1\nJFrame\t11\noverlaying\t1\nJLayeredPane\t1\nwish\t12\noutcome\t3\nTutorial\t4\nmanagers\t1\nWidget\t2\nWeather\t1\nReact\t3\nFirebase\t2\nmessagesRef.child\t1\ntee\t1\nmessagesRef\t2\nfirebase.database().ref('messages').limitToLast(30)\t1\nfirebase.database.Query\t1\nfirebase.database.Reference\t1\nReference\t7\nfirebase.database().ref('messages/users').limitToLast(30)\t1\nPlain\t1\nArduino\t9\nOOP\t4\ngain\t2\npractical\t4\ndeveloped\t7\nindependently\t4\nresembles\t2\nclosely\t3\nidentical\t4\nProgramming\t3\nmixture\t2\nportable\t2\nMCU\t3\nAVR\t1\ndrawbacks\t1\ninherently\t1\nugly\t4\namongst\t1\nol\t1\nGrab\t1\nAtmel\t1\nI/O\t3\ntimers\t3\navr-gcc\t2\navr-objcopy\t1\navrdude\t1\nprograms\t7\nC-only\t1\nconvention\t5\nstock\t1\nlower-level\t2\nUid\t1\nnamespace\t14\nav:Canvas.Top\t1\n-TIA\t1\nnamespaces\t3\nSelectSingleNode\t1\nSaved\t2\nmvc\t8\nhttps://www.google.com\t1\n@Url\t1\nhelpers\t3\npointing\t7\ntableView\t3\nself.listData\t1\nNSInteger\t1\nUITableView\t13\nnumberOfRowsInSection\t1\nSimple_TableViewController\t1\nrespectively\t3\nUITableViewDelegate\t1\nUITableViewDataSource\t1\n<UITableViewDelegate,\t1\nUITableViewDataSource>\t1\nbuilt\t10\nCocoa\t5\nTouch\t2\noptional\t20\nInventory\t2\nProduct\t2\nSales\t2\nObject\t13\nsuperclass\t1\nSKTextureAtlas\t1\nanimate\t4\nSKSpriteNode\t1\ny\t17\namounts\t4\nSKAction.animateWithTextures(atlasFrames,timePerFrame:0.1,resize:true,restore:false)\t1\npersists\t2\nheard\t2\ninvisible\t6\nhttps://www.youtube.com/watch?v=TDwSR3e6nN0\t1\nautocommit\t1\ncommiting\t2\nmid\t1\ncon.commit()\t1\nsharing\t3\naffect\t8\nShivam\t1\nKalra\t1\npools\t1\nsingletons\t1\nmethod-local\t1\neconomize\t1\ndestroying\t2\nintegration\t10\ninserting\t6\nretrieves\t2\nNHibernate\t7\nTransactionScope\t7\ntxScope.Complete()\t2\ninserted\t15\nrolled\t1\npossible.\t1\ntxScope\t1\ndeptAdapter\t2\nempAdapter\t1\ntransactions\t6\nBeginTransaction()\t1\nRollbackTransaction()\t1\nsurrounding\t1\nroll\t2\nEssentially\t5\ntracks\t4\nambient\t1\nTransaction\t14\nScope\t1\nenlist\t1\nCaution\t2\nescalate\t1\nDistribtued\t1\nensuring\t2\ndispose\t3\nrollback\t1\nDTC\t1\nthread-specific\t1\npushes\t2\nincrements\t2\ncounter\t13\nDispose\t1\ncomitted\t1\nrolls\t1\nmagically\t2\nemptAdapter\t1\ncommit/rollback\t1\npropogate\t1\nvarying\t1\ncoordinators\t1\nscratch\t5\nSimpleXML\t3\nDocument\t2\nDTD\t3\nproviding\t6\nstructure/content\t1\nconforms\t2\nDTD/Schema\t1\nwell-formedness\t1\nillegal\t2\ndescribes\t3\nexample.dtd\t1\nprefixing\t1\ndoctypes\t1\nFortunately\t1\ndom_import_simplexml\t1\ninstantiate\t4\nBar\t3\nBaz\t1\nBar.prototype\t1\nFoo()\t1\nbeloved\t1\nIE\t24\nClassy\t1\nJS.Class\t1\norientation\t4\nad\t2\npreferable\t3\nintermediate\t3\nconstructor\t13\ndecouple\t1\nprototypes\t4\nremark\t1\nflaws\t1\nexpects\t3\nNSURLSession\t3\nfile-sync-client\t1\nmacOS\t3\nDropbox/GoogleDrive/pCloud\t1\nrespect\t4\nfacilities\t1\nthrottle\t1\nrate\t6\nProvide\t1\nin-app\t1\nConfigure\t1\nMVP\t5\nin-general\t1\nyears\t4\ndigest\t1\npresenter\t10\ndisregard\t2\nguides\t2\nMosby\t1\nkosher\t1\nfeedback\t6\nheading\t6\nBase\t2\nPresenter\t3\nPhotoRecyclerPresenter\t1\ncommunicates\t1\nPhotoRecyclerFragment\t1\nrequirements\t3\nconform\t4\nagnostic\t2\nrecommended\t8\nself-doubt\t1\nStackOverflow\t2\nshed\t2\nlight\t5\nthreadIdx.x\t2\nblockIdx.x\t1\nRunning\t3\nlaunching\t3\nwarp\t4\nconsists\t8\nconditional\t9\nlockstep\t2\nbecomes\t19\ndispatch\t5\nsimultaneous\t2\nunspecified\t1\nreasonable\t7\nwarps\t3\ndisperse\t1\nrandomize\t1\nemanating\t1\noccurring\t7\ndiverges\t1\n!=\t5\nconvergence\t1\n1.4.0.M3\t1\n@Entity\t1\n@Transactional\t3\n@Commit\t1\nDataIntegrityViolationException\t2\nJUnit\t1\n@WebAppConfiguration\t1\n@ResponseStatus\t1\n@ControllerAdvice\t1\n.So\t3\nsuit\t1\n@NotTransactional\t1\nannotation\t3\nexcluded\t3\ntransactional\t3\nhttp://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/testing.html#integration-testing-annotations\t1\nTransactional\t1\nNon\t1\npropagation\t1\nPropagation.NEVER\t1\ndesirable\t4\nBased\t8\nM.Deinum\t1\nStephane\t1\nNicoll\t1\nJSTL\t2\ncore\t12\njstl.jar\t1\njsp\t2\nhttp://java.sun.com/jsp/jstl/core\t1\nhttp://www.java2s.com/Code/Jar/j/Downloadjstljar.htm\t1\nImport\t3\nNetBeans\t2\n.jar\t5\njavax.servlet.jsp.jstl.core.*\t1\nxmpp\t1\noffline\t3\nfriends\t4\npresence\t2\nBlank\t1\noutputing\t1\nlog-file_2014.02.20.xml\t2\nlog-file_2014.02.20.1.xml\t1\nlog-file_2014.02.20.2.xml\t1\nactively\t2\nreplaces\t4\n.1\t3\nya\t1\nconfigration\t1\nBehgozin_DB\t1\ndetach\t1\nexplorer\t4\nIts\t8\nbin\t12\n\\debug\t6\noverwriting\t6\nrun-time\t4\nNever\t1\naccidently\t1\nManually\t1\nReplace\t9\n|DataDirectory|\t2\nread/write\t2\nCloudStorage\t1\nGCE\t1\nRedirect\t1\nGenerated\t2\nbugging\t2\nbi-directional\t1\nEmployee\t10\nVehicles\t2\nassigned\t8\npersisted\t4\nVehicle\t6\nemployee_id\t1\nemployee\t3\nrealise\t3\nafterwards\t3\nJPA\t1\nMuch\t2\ncleaner\t3\ncascade\t3\nvehicles\t1\nassociatedEmployee\t1\npersisting\t1\nhierarchical\t1\nTree\t3\npretty-printed\t2\nsub\t8\nlft\t1\nrgt\t1\nlft-rgt\t1\n7040\t1\nmanages\t1\nEXPLAINs\t1\nFINALLY\t1\nbenefit\t4\n7.2.5.1\t1\nSingle-Part\t1\nIndexes\t1\nunion\t3\nselects\t4\nIPython\t1\nSympy\t2\nstartup\t13\nsympy\t8\nlatex/unicode\t1\nSteps\t3\nipython\t2\nSimilar\t5\nqtconsole/notebook\t1\ninit_printing\t2\nAdditionally\t4\nadditionally\t3\n0.7.3\t2\nipython3\t2\nmatplotlib\t1\n1.3.1\t1\nnumpy\t3\n1.7.1\t2\nscipy\t1\n0.12.0\t1\n13.10\t1\nIncidentally\t1\npython3\t3\nPYTHONSTARTUP\t1\nJakob\t1\n1.1.0\t1\ninteractive\t2\ntheoretically\t1\nnasty\t5\nkeen\t1\nbundled\t1\n00-startup.py\t1\nipython_config.py\t1\ndocx\t2\ntest.php\t2\nleading\t4\ndoc||docx\t1\n.htaccess\t5\n<a\t2\nhref=''>\t1\nintervention\t1\nswap\t5\nmouse-1\t1\nmouse-2\t1\nEmacs\t1\n.emacs\t1\nE.g\t7\nmouse-1-click-follows-link\t1\ndownladed\t1\nOBJ\t2\nmeta\t6\nIFC\t1\nAutodesk\t1\nForge\t5\ncleanliness\t1\nmaintenance\t1\nelsewhere\t6\nControllers\t1\nintro\t1\nUIViewControllers\t1\nPlacing\t1\n-Prefix.pch\t2\napplicable\t3\ntied\t3\nSubclassing\t1\nMySubclassedViewController.h\t1\nMySubclassedViewController.m\t1\nUIViewController+\t2\nSpecialCatrgory.h\t1\nSpecialCatrgory.m\t1\nDedicated\t1\nMyHelperClass.h\t2\nMyHelperClass.m\t1\nimporting\t4\ndequeueing\t2\nrequeueing\t2\ndeadlock\t5\ndeadloks\t1\ngoroutines\t5\nrace\t3\nPlayground\t4\nMinimal\t1\nhttp://play.golang.org/p/Vb4-RFEmm3\t1\n26\t3\ninstructs\t1\nschedule\t9\ngoroutine\t4\nnecessarily\t3\n1001\t3\n1000\t3\nfunc()\t1\nconcurrency\t4\nFAQ\t2\nwiki\t2\ndeclaring\t6\nbraces\t3\n:=\t5\narr\t1\nredeclaring\t1\n0-9\t2\narguably\t2\nelegant\t1\nredeclare\t1\nparam\t5\nweird-looking\t1\nbehaves\t2\n_\t4\nenqueue\t1\nodd\t3\n1001s\t1\nconsume\t3\nzillion\t1\noverusing\t1\n100\t15\ndequeued\t1\nquitting\t1\nhttp://play.golang.org/p/bBM3uTnvxi\t1\nmultiplying\t2\neventually\t5\nlowish-level\t1\nbuilt-in\t10\nlegal\t3\nreflexive\t1\nlen\t1\nrep\t1\nhttps://stackoverflow.com/a/21034111/432509\t1\nHoudini\t1\nschool\t1\nPNG\t6\nfamiliar\t6\nclues\t1\nring\t5\nconveniently\t2\nvars\t3\nthe-state\t1\ncompojure\t1\nmain-routes\t1\ninjecting\t2\n:init\t1\nmiddleware\t4\nbinds\t2\ninjects\t1\ndefroutes\t1\ndefinitions\t6\nNSTableview\t1\n50\t8\nNSTableView\t1\nNsTableview\t1\nmotive\t1\nDown\t2\nTrying\t5\nOpenMP\t1\n2017\t4\nc3005\t1\nunexpected\t7\nopenmp\t1\nOpenMP2\t1\nOpenMP4.5\t1\nVS\t4\nclang-cl\t3\nfallback\t2\nhttp://llvm.org/builds/\t1\nVS2017\t1\nhttps://bugs.llvm.org/show_bug.cgi?id=33672\t1\nhttps://www.reddit.com/r/cpp/comments/6oepq4/making_windows_clang_401_play_nice_with_visual/\t1\nhttps://github.com/WubbaLubba/LlvmForVS2017\t1\n/fallback\t1\n/MP\t1\nhack\t6\nhttp://clang-developers.42468.n3.nabble.com/clang-windows-clang-cl-support-for-MP-tp4045651p4045659.html\t1\nIQKeyboardManager\t1\nUItextField\t1\nUIDatePicker\t1\npad\t2\ncapable\t1\ngraphical\t3\nDate\t3\nde\t3\nnaissance\t1\nIQDropDownTextField.h\t2\n#import\t1\nUITextField\t1\nIQDropDownTextField\t3\nweak\t1\nnonatomic\t1\nIBOutlet\t1\nmyTextField\t1\nInterface\t2\nBuilder\t1\n.xib\t1\nIdentity\t1\nInspector\t1\nMohd\t1\nIftekhar\t1\nQurashi\t1\navoided\t2\nsetCustomDoneTarget:action\t1\ndoneAction\t1\ncustomised\t1\nIQUIView+\t2\nIQKeyboardToolbar.h\t2\nprevious/next/done\t2\nTextFieldViewController.m\t1\n/var/www/html/dashboard.php\t1\n1021\t2\nTaking\t1\nFirewall\t2\nLinux/Unix\t1\nSCP\t1\nscp\t2\n[[user@]host1:]file1\t1\n[[user@]host2:]file2\t1\nconfuse\t2\nresulting\t11\nhql\t1\nhibernate\t3\n#option\t1\nsurvey\t3\ncount()\t1\n5.1\t4\nJS/HTML5\t1\nsubpage\t1\nhistory.state\t2\ncpp\t1\n./MyApp\t1\nExplanation\t4\nanalysis\t8\nfine.\t1\naggregate\t4\nself.counters\t2\ndict\t1\ngrant\t3\nread-only\t4\neditDependent\t1\nemployee.html\t2\nrouted\t2\ninner\t11\nui-view\t2\ntwo-way\t1\nEmployeeService\t1\nEmployeeController\t1\nbuttons(new/edit)\t1\nng-view=\"editDependent()\"\t1\nRoot\t1\nParent\t4\nChild\t5\nINSERT\t1\nFOREIGN\t1\nid_root\t1\nid_parent\t1\nviolation\t3\nUNIQUE\t1\nAuto_increment\t1\nrejected\t3\nApart\t2\nHotKey\t3\nCtrl\t2\nSpace\t1\nsubsequently\t2\nunhandle\t3\nkeystrokes\t4\nunregister\t1\nbool\t2\nKeyDown\t1\ncpython\t1\nIronPython\t1\nCommunication\t1\nFoundation\t2\nWCF\t16\ncommunication\t7\ncommonly\t3\nSOAP\t4\nDive\t1\nInto\t1\nunified\t1\nsuds\t1\nexposed\t6\nservices\t14\nRESTful\t2\nmassaging\t1\nscans\t2\n00:00\t1\nwouldnt\t1\nDateTime.Now\t1\nSDL\t1\nconstantly\t7\nloc\t1\nalter\t3\nreduce\t5\nseparating\t3\nNSURLConnection\t4\ncontnent\t1\nNSLog\t1\ntransform\t4\nNSMutableData\t2\nNSArray\t3\nArrays\t2\nTableView\t7\nsynchronous\t4\nbeware\t1\nasynchronously\t3\nthread/UI\t1\nGCD\t2\nasynchronous\t4\ndata-object\t1\nhttps://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html#//apple_ref/doc/uid/20001836-BAJEAIEE\t1\nPrivateMessages\t1\nSender==QueryString('idCompany')\t1\nprivateMessage\t1\nSender\t1\n???????\t1\nsender\t5\nconst\t6\nSelecting\t1\nWhereParameters\t1\nDepends\t1\nflavor\t1\nsuits\t2\n500\t7\nworse\t4\nkinds\t4\ntitles\t2\nduper\t1\namoled\t1\nTV\t2\nworks.\t1\ncharacthers\t1\nall.\t1\npostData\t1\nde-serialized\t1\nstruct\t15\nstructs\t4\nlvalue\t6\noperand\t3\nletting\t2\nbane\t1\nMyStruct\t3\nMyStruct::*\t1\nAllStructs\t1\nallocating\t1\ninitialised\t3\nregions\t3\nschools\t3\ndropdown\t13\nselections\t1\nsearch.php\t2\nThx\t1\ngetschools()\t1\ntwilio\t2\nIVR\t1\nmood\t2\nrecording\t13\npodcast\t7\nTWIML\t1\nSkip\t1\nskip\t12\nplaying\t5\ngoto\t4\ncontinuously\t1\nyes\t7\nTwilio\t1\nevangelist\t1\npossible*\t1\nslices\t1\nsimultaneously\t4\nvoice\t3\nTwiML\t1\n/voice/check\t1\n-digits\t1\ndirects\t1\nconference\t2\ndial\t1\nhangup\t1\ndials\t1\ncaller\t4\nEspecially\t4\n<Gather>\t1\nasterisk\t2\nbuild.xml\t5\nAnt\t2\nProbably\t3\nErlang\t4\nspawn\t1\narguments.callee\t1\nMDC\t1\ncuriosity\t1\nprorotyping\t1\nrumour\t1\nofficial\t9\nphases\t2\nDSL\t2\nErlang/OTP\t1\n17.0-rc1\t1\n1Mb\t1\nSQlite\t1\ndecision\t16\nPersistence\t1\ncurves\t1\nsynchronize\t2\niCloud\t3\nDropbox\t1\nShall\t1\nsetText(String)\t1\nDoc\t1\nGridLayout\t3\nViewGroup\t2\nBaseAdapter\t1\nalias\t12\nexecl\t1\nksh/bash\t1\ncharm\t2\nmin\t5\nsqrt\t1\ndist\t2\nEg\t1\nMin\t1\n5th\t2\nhardcoded\t4\n1200x800\t1\nhowever.\t1\nonPrepare\t1\nuser-agent\t1\nprotractor/nodeJS\t1\ngrunt\t1\n375x667\t1\nfix/track\t1\nmytestconfig.conf.js\t1\nrecurrence\t1\ntheorem\t1\nSubtraction\t1\nConquer\t1\nsubstitution\t3\ncommitted\t1\nequation\t11\n1st\t6\nAttempt\t1\nB()\t1\nthis.arr\t1\nPrototypes\t1\nchains\t1\ntone\t1\nprop\t3\ncaveat\t1\nprototypal\t1\nAnything\t2\nlocalised\t1\nglance\t2\nclassic\t5\nHi\t6\nCSV\t11\n.csv\t2\n9876542\t1\nresetting\t2\n$max\t1\nPROCESS\t3\nID(id)\t1\nwt\t1\nthis->\t1\nWrite->\t1\nRead->\t1\nFree\t1\ndone.\t1\n/A\t1\npt[0]\t1\ncorrect.1\t1\ncalloc\t2\nfree(pt)\t1\nFotenotes\t1\n1Note\t1\nreadable\t4\ndiamond\t4\narrangement\t2\nd\t6\nf\t6\nh\t1\ne\t6\nrectangular\t2\n5-elements\t1\ndiamonds\t1\ncomputing\t2\nL1\t1\ntaxicab\t1\nthreshold\t1\nReactor\t2\nManaged\t1\nExtensibility\t1\nMEF\t1\nadpators\t1\naddins\t1\nstackoverlow\t1\nspecificity\t2\ncontacting\t2\nEziriz\t1\nobfuscate\t2\nTextField\t5\nradio\t6\nScenario\t2\nlocationno\t4\nentered\t13\nforward\t15\nlocationDetails\t3\npage.its\t1\nenters\t6\nlocationAllDetails\t3\npage.Here\t1\nfetching\t3\nOutputtype\t1\nwww.mywebsite.com\t1\nfetches\t6\nasset\t3\nhttp://www.mywebsite.com/styles/app.css\t1\n/styles/app.css\t1\nhttp://www.mywebsite.com\t1\nhttp://localhost:3000/mywebsite/\t1\nhttp://localhost:3000/mywebsite/styles/app.css\t1\nnginx\t5\nquit\t1\nwww.mywebsite.com/styles/app.css\t1\napp.css\t1\ndataframe\t4\nuniquely\t2\nidentified\t3\ndocnr\t1\nclientid\t1\n700k\t1\ndoSNOW\t1\nscale\t7\nsqldf\t2\nderivative\t3\njoins\t5\nobliged\t1\nknew\t3\nave\t1\nwil\t1\ndata.table\t3\ndatases\t1\nbillions\t1\nanalog\t3\nseq_len(.N)\t1\nrole\t13\nseq_along\t1\nshift\t5\ncumsum(x)\t1\ndplyr\t1\ndf1\t1\nZSL\t1\ncamera2\t1\nLEVEL-3\t1\nYUV_REPROCESSING\t1\nReprocessableCaptureSession\t2\nReprocessableCatureSession\t1\nYUV\t8\n4608\t2\n3456\t2\nSize\t2\nCameraCharacteristics\t1\ngetInputSizes(ImageFormat.YUV_420_888)\t1\nYUV_420_888\t2\nImageReader\t3\nJPEG\t4\n4608x3456\t1\nFormat\t2\nRAW\t3\nsensor\t1\nCaptureRequest\t2\nRingQueue\t1\nready\t2\ntaked\t1\nreprocessed\t1\nwant(ZSL)\t1\nreprocess\t1\nMAX\t10\nSIZE(4608x3456)\t1\nbytearrays\t1\nSame\t6\nMAXIMUM\t1\nReprocessableCaptureRequest\t1\nCTS\t1\nimageReader\t1\nByte[]\t1\njQuery-generated\t1\njQ\t1\ngallery\t3\nnav\t3\nblindspot\t1\nregard\t1\nListItemIndex\t1\nSlide\t1\nsvs\t1\njsFiddle\t3\nbasics\t5\nappending\t1\n$(this)\t1\nconstructing\t4\nli\t1\ndemo\t9\nhttp://jsfiddle.net/meo/yKgSf/​\t1\nfancy\t5\nhttp://jsfiddle.net/meo/yKgSf/2/\t1\nW3C\t3\nHTML4\t1\nThats\t3\ntill\t3\nuploading\t4\nplugins\t5\n<input\t4\ntype=\"file\"\t1\nname=\"userfile\">\t1\nMultiple\t2\nArray\t13\nCodeIgniter\t2\nInside\t4\ninvoke\t10\nKindly\t2\nConstants\t1\nSomewhere\t1\nChristian\t1\nSub_Init_Globals()\t1\nSubProcedure\t1\nSubProcedures\t1\nleaves\t2\nWorkbook_Open\t1\nvba\t1\nWorkbook\t1\nProcedures\t1\nconstraint\t9\nroom\t7\ndepDt\t1\nWHERE\t8\nCONSTRAINTS\t1\nexclusion\t2\nbtree_gist\t1\nGiST\t1\nscalar\t2\nboolean\t12\nCHECK\t1\nuncomment\t2\n:SQL\t1\nissuing\t2\nCREATE\t3\nTRIGGER\t2\ndatevalue\t1\nconversion\t8\nMarch\t1\n7:04:28\t1\nPM\t1\nGMT-07:00\t1\nSAP\t2\n=DATEVALUE(B26)\t1\nchances\t2\nGert\t1\nregional\t2\ndate/time\t3\nGMT\t1\nco-erce\t1\n=LEFT(B26,FIND(\"GMT\",B26)-1)+0\t1\nm/d/yy\t1\nhh:mm\t1\nc++11\t1\nconcepts\t3\nseed\t6\ndistribution\t6\nexamples/sites/articles\t1\ntalking\t7\ncryptography\t1\nsuspicion\t2\nstd::mt19937\t2\nstd::default_random_engine\t1\nstd::random_device\t7\ndestroy\t1\nunnecessarily\t1\nlibc++\t2\nthin\t2\nstd::fopen(\"/dev/urandom\")\t1\npay\t7\ncosts\t1\ncrypto\t3\neverytime\t4\nnegligible\t1\nties\t1\nmandated\t1\nboost\t3\nmt19937\t1\npaper\t4\ncross-platform\t1\nconfident\t1\nquerying\t3\nopaque\t1\nacquired\t1\ntons\t4\nseeds\t1\nacts\t2\ncryptographic\t1\nsadly\t1\ncorrespond\t3\n/dev/random\t2\nunix\t3\n/dev/urandom/\t1\nMSVC\t1\nmingw\t1\ncross-compile\t1\nconsistent\t8\nentropy\t1\ndog\t2\nimproved\t6\nseeding\t1\ntime(NULL)\t3\nlow\t4\ncrappy\t1\nconsidered\t5\nHas\t4\nUnknown\t1\nCost\t3\npersonal\t10\nslower\t2\nPseudo-randomic\t1\nCPU\t8\nDeterministic\t1\nplayers\t5\nbracket\t8\narrow\t14\nlayouts\t3\ntextviews\t3\ndrawables\t4\n16/8/4/2\t1\nQuestions\t3\nsetContentView(int)\t1\nidentify\t8\naddView(View)\t1\nremoveView(View)\t1\ndifficult\t7\nanswering\t4\nclassifier\t2\nweka\t2\n:java\t1\n-classpath\t2\nweka.jar\t2\nweka-src.jar\t2\nweka.gui.GUIChooser\t1\nclassifiers\t1\nC:/..\t1\nc:/.../weka.jar\t1\nneeeded\t1\nscript/batch\t1\nMemoryStream\t3\ndownloaded\t18\nObjects\t4\nPCI\t1\nscraping\t2\nattacks\t1\nnumerical\t1\noccurrences\t4\ncombined\t2\nsum\t18\n2041\t1\n318\t1\n358\t2\n865\t1\n1818\t1\n920\t1\n898\t1\n31\t2\n470\t1\n725\t1\n114\t1\n56\t1\n55\t1\nhundreds\t3\nthousands\t2\nPrinciple\t1\ntheory\t2\nNodeJs\t1\nnotes\t2\n1-10000\t1\nlinear\t1\ntranslating\t1\nself-explanatory\t1\nto_array()\t1\nsoft\t3\n->find(true)\t1\nFalse\t2\nmultidimensional\t3\nstrlen\t2\norder())\t1\n70\t1\nwanna\t2\n99999\t1\nminus\t2\nin_array\t1\nstates\t10\ntweaks\t1\nFeel\t1\nhttp://codepad.viper-7.com/INvSNo\t1\n285\t1\nDetailed\t1\nusernames\t1\npasswords\t1\ncouchdb\t4\nhandled\t11\nanyanything\t1\nauthenticate\t4\nimagine\t7\nrecieve\t1\nsecret\t4\nAuthentication\t2\nJWT\t2\nhttps://github.com/dmunch/couch_jwt_auth\t1\nfork\t4\nplus\t7\nCouchDB\t3\nverifies\t1\nintegrity\t1\nHS256\t1\nVery\t3\nviewmodel\t9\nStaff\t2\nstaff\t4\ncredential\t6\nIEnumerable\t2\nCredential\t1\nadds/edits\t1\npartialview\t1\nplaces\t6\nunmanageable\t2\nhid7\t1\nmess\t1\nreinventing\t1\nwheel\t3\ninstinct\t1\nforbids\t1\nload/save\t1\nlosing\t1\nHTTPPOST\t1\nGROUP_CONCAT\t1\nMySql\t1\nDB2\t5\nAggrigate\t1\nfuncton\t1\ncocating\t1\nmurows\t1\ndistinct/Unique\t1\nValue\t10\nBASIC_SKILL2\t1\nBASIC_SKILL1\t1\njoin\t7\nbys\t1\nCame\t2\nDISTINCT\t2\nclearer\t2\nsubselects\t1\nXMLELEMENT\t1\nboilerplate\t2\nelided\t1\nclarity\t2\nXMLQUERY\t1\nXSLTRANSFORM\t1\nerror-prone\t2\ntpl\t3\ndisplayfield\t2\ntextarea\t3\nrowexpander\t1\nXTemplate\t1\nhttps://fiddle.sencha.com/#fiddle/14sf\t1\nhttps://fiddle.sencha.com/#fiddle/14t7\t1\nunsuccessfully\t1\nDisplay\t1\nrenderer\t1\nhttps://fiddle.sencha.com/#fiddle/14il\t1\nmongoDB\t2\nsucceeded\t1\nNumeric\t5\no/p\t1\nPrism\t5\n2.2\t1\ndemand\t1\nondemand\t1\ncatalog\t2\nxaml\t1\nModuleManager\t1\nprism\t2\npan\t1\nfolks\t4\nhttp://compositewpf.codeplex.com/Thread/View.aspx?ThreadId=47957\t2\nFileDownloader\t1\nFileDownloaderWithProgress\t2\nWebClient\t1\nDownloadProgressChanged\t2\nIFileDownloader\t1\npublish\t7\nRetrieve\t3\nShowing\t1\nhttp://localhost:1693/Product/Delete?id=16\t1\n404\t6\n/Product\t1\nmentioning\t2\nDelete\t2\nASP.Net\t2\nWebAPI\t1\ncare\t16\n.delete\t1\n$http\t1\nfoo-tables\t1\n$('.footable').footable({})\t1\ntoggled\t2\nun-rendered\t1\nFooTable\t1\n2.0.3\t1\njQuery-1.11.1\t1\nv1.11.0\t1\n2014-06-26\t1\n46.0.2490.80\t1\nfootables\t1\nreferenced\t4\nfootable\t1\nstampede\t1\n;¬)\t1\nSynopsis\t1\ndraft\t1\nConcept\t1\nbounds\t4\nauto-scrolls\t1\narea\t14\nfinite\t2\nearliest\t1\ngrows\t4\ncollapses\t1\nscrolls\t3\nJuly\t1\n2011\t1\npulls\t1\nmonth\t13\nspans\t1\ncaption\t1\nCappuccino\t3\nCappuccino/Cocoa\t1\nThoughts\t1\ndividing\t2\nSplitView\t1\nvertical\t12\ndivider\t1\nresp\t2\nsufficiently\t1\nbare\t2\nCPView\t3\ndrawRect\t2\nCPControl\t3\nCPBox\t1\nsetBackgroundColor\t1\nsubviews\t2\nmouseDown\t1\nCPScrollView\t2\nSynchronise\t1\nCPTableView\t1\nScrolling\t1\nscrollToPoint\t1\nnutshell\t2\ninteraction\t2\ncandidates\t1\ndegree(degcode,name,subject)\t1\ncandidate(seatno,degcode,name)\t1\nmarks(seatno,dedcode,mark)\t1\nsqlfiddle\t2\nclairty\t1\ntextfield\t5\nnon-final\t1\net.getText().toString()\t1\nDoor\t1\ntreasure\t3\ncard\t4\nDeck\t1\nliberty\t1\nrenaming\t2\ndoor\t1\nxeditable\t1\nbothered\t1\nlol\t3\nencoding\t13\nus-ascii\t1\nencoding='us-ascii'\t1\ndiferently\t1\nhttp://msdn.microsoft.com/en-us/library/ms534370(VS.85).aspx\t1\nnode.js\t5\nresearched\t2\nLogger\t1\nstdout\t3\nstart.js\t2\nlogger.js\t2\nstartAdminInterface.js\t1\nenormous\t1\nselenium\t6\nTestNG\t4\npreserve-order\t1\nTestNG.XML\t1\nTestNG.XMl\t1\nsetTestNames\t1\nA.class\t1\n@Test\t1\ntestcases\t1\nTestng\t1\ntestNg\t1\nsearched\t8\nannotatios\t1\ntestng.xml\t1\nIMethodInterceptor\t1\nwindows/dialogs\t1\npop-up\t21\nfrustration\t1\nintrusive\t3\nstudies\t1\ntalk\t10\nrates\t3\nmodals\t2\ngalleries\t1\nstandpoint\t4\nexcluding\t3\nstartling\t1\ncohesive\t1\naforementioned\t5\nAside\t2\nserve\t5\nreaders\t1\ninterpret\t2\ncombat\t1\ndegrade\t1\ngracefully\t1\nopinions\t2\nconcerned\t3\ndecent\t4\nattention\t3\nthemed\t1\ninterrupted\t2\nlayered\t2\nappearance\t3\nunavailable\t1\nModal\t2\nimmune\t1\nblockers\t1\ndesigned\t8\nNon-modal\t1\nnon-modal\t1\nnarrow\t1\ninappropriately\t1\n\\main\\resources\\wsdl\\\t1\nWeblogic\t1\n12C\t1\nweb-service\t4\nCammel\t1\n2.18.3\t1\nRouteBuilder\t1\npom.xml\t5\nStep\t6\nGenerate\t2\nwsdl2java\t1\nMention\t1\n.Show\t1\nMVVM\t4\nSalesView.xaml\t2\nControl(WPF)\t2\nDashboard.xaml\t2\nApp.xaml\t1\nSimplest\t1\nNormally\t3\ncontroller/view\t1\nvm\t1\nrepeated\t2\nidentifier\t3\ntargeting\t3\nDom\t1\n$(\"form[action='/haters']\")\t1\ncodepen\t2\nhttp://codepen.io/marc313/pen/uphiv\t1\nindividually\t2\nDeryck\t1\nParticularly\t2\nact\t3\nMarkup\t2\n.eq()\t1\nrefers\t2\n$('input[type=submit'])\t1\nsystemically\t1\nfor()\t1\nwhile()\t1\neq(0)\t1\ngreater\t8\n$('input[type=submit]').length)\t1\nCodePen\t2\nalert()\t1\nreimplementing\t1\nmousePressEvent\t1\ncue\t1\nbg\t1\ntriangle\t4\nQStyleItemDelegate\t1\nPOS\t2\ntagger\t2\n3.7.0\t1\nconfig/modules.config.php\t5\nautoloader\t2\ncomposer\t9\nZF3\t1\nZend\t11\nComponent\t5\nInstaller\t4\nmodules.config.php\t1\nextra.zf.component\t2\ncomposer.json\t3\n\\\\Form\t1\nSkeleton\t1\nApplication\t8\nHttpSession\t1\njsf\t1\nchronometer\t1\ngladly\t2\ninvestigating\t1\nNodaTime\t3\nLocalDate\t5\nBCL\t1\nDateTime/DateTimeOffset\t1\nambiguous\t1\nleverage\t3\ndates\t15\nYYYY-MM-DD\t2\nserializing\t3\ndeserialize\t1\nLocateDate\t1\n1970-01-01\t2\nPeopleController.cs\t1\nGlobal.asax.cs\t1\nJanuary\t1\n1970\t1\nStepping\t1\nconfirm\t6\nbirthday\t7\nserialization\t3\nserialized\t1\nbinder\t1\nbinders\t1\nNoda\t1\nserialziation\t1\nJson.net\t2\nbody\t17\npractically\t2\ngrey\t6\nEvery\t6\n80%\t3\nfinger\t1\nNSLogs\t1\nbroken\t3\ncellForRowAtIndexPath\t2\nnearly\t5\nanyways\t2\nUITableViewCell\t5\ntableView:cellForRowAtIndexPath\t1\nIB\t1\nre-read\t1\nmonths\t3\ninterchangeable\t2\nsubclasses\t3\nvice\t3\nversa\t3\nidentifiers\t3\ndeep-link\t1\nIntent\t1\ntuples\t3\nrepresenting\t3\nconsecutive\t2\ncompact\t3\nHaskell\t12\nSure\t4\njpg\t4\nmute\t1\nmicrophone\t2\nFMIS\t1\nAS3\t3\ndo-able\t1\nNetConnection\t1\npublishes\t1\nNetStream\t2\nFMS\t1\nhits\t7\nNetStream.send()\t2\nsubscribing\t2\ndisplay/hide\t1\nreverse\t5\nsubscriber\t1\ntoggleAwayImageDisplay\t1\njoomla\t4\n2.5\t3\nError::raiseNotice()\t1\nexceptions\t10\nreporting\t8\nindex.php\t8\nerror_reporting\t1\nE_ALL\t1\n^\t5\nE_DEPRECATED\t1\nhttp://php.net/manual/en/function.error-reporting.php\t1\nerror.php\t1\nraise\t4\ntextbox1\t3\ntextbox2\t4\ncheckboxes\t4\nwebform\t1\nseats\t1\n11/12/2010\t2\nseat_select\t2\n13/12/2010\t1\nSystem.Data.DataSetExtensions.dll\t1\nSystem.Core.dll\t1\nsmiley\t2\ntouches\t1\n@Benito\t1\n-Bertoli\t1\nRadioButton\t1\ndrawable\t2\nGive\t4\nradiobutton\t1\ncustom_btn_radio.xml\t1\nandroid:button\t1\n@btmImage\t1\nVF\t2\npageblock\t1\naint\t1\nc:batchDetailsComponent.BatchJobDetails\t1\nvisualforce\t1\n<apex:component\t1\naccess=\"global\"\t1\ncontroller=\"BatchOpportunityDetailsExtension\">\t1\nHadoop\t3\nmongo-hadoop\t1\nhttps://repo1.maven.org/maven2/org/apache/commons/commons-math3/3.4.1/commons-math3-3.4.1.jar\t1\nfirewall\t5\nrestarted\t5\nLaravel\t9\nscaffolding\t2\nartisan\t1\nfresh\t3\nAuth\t1\npassword-reset\t2\nManuel\t1\ndetermining\t3\nauthenticated\t4\nmigrations\t2\npassword_resets\t1\n\\config\\auth.php\t1\nclue\t4\nCustomerID\t2\nnon-null\t1\nrights\t4\nRevision\t1\nnon-printable\t2\nfiring\t5\nMay\t3\nFurther\t4\nkick\t2\nburied\t1\nhttp://dev.mysql.com/doc/refman/5.7/en/show-triggers.html\t1\nhttp://dev.mysql.com/doc/refman/5.7/en/trigger-syntax.html\t1\nUITableViewStyleGrouped\t1\ncorners\t5\nBorderless\t1\nRounded\t1\nguys\t5\nconfirmed\t4\ndblWordFreqByCluster\t1\n<KeyValuePair<string,\t1\ndouble>>\t1\nforeach\t10\nverbose\t2\ntodo\t1\npatching\t2\n:complete\t1\nlink_to\t1\nfeels\t3\nticked\t4\nResources\t1\nface\t8\nmigrated\t1\n:completed\t1\nsimple_form\t1\ntodo(edit)\t1\nPATCH\t1\nrockstar\t1\nenum\t12\nclassical\t1\nUX\t1\nfoundation\t1\nenhance\t1\n3-second\t1\nserie\t1\naverages\t1\nperiod.apply\t2\nxts\t3\nendpoints\t3\ndat\t1\ncalculates\t1\nalign.time\t2\naggregate.zoo\t1\ndec\t1\n=\".\"\t1\nread.zoo\t2\nrails-api\t1\ngem\t16\nng-resource\t1\npost=>\t1\n\"kind\"=>\"GGG\"\t2\n400\t1\nBad\t1\nfactory\t1\ndeclerations\t1\nassert\t3\nC89\t1\nbash\t17\ndollar\t2\nZ\t2\ncrude\t1\nslowing\t2\nspeculate\t2\n$line\t1\nFibonacci\t1\ninstantaneously\t1\nApologies\t2\nbelongs\t2\ncodereview\t1\nGordan\t1\nDavisson\t1\nAnswer\t4\nAgain\t8\n@thatotherguy\t1\nsed\t12\n-n\t4\nWords.txt\t4\nsteal\t1\nFD\t1\n-u3\t1\nsubprocesses\t1\necho\t7\nwc\t2\nCreating\t7\nexpensive\t3\n${letter[i]}\t1\n370,101\t2\nHERE\t2\nBash\t5\n7.8\t1\nmicroseconds\t1\nalphabet\t1\nPrints\t1\n1:55\t1\nFar\t2\n580\t1\nms\t1\ngluing\t1\nperl\t8\nEasier\t1\nlydskrift\t1\nSurprisingly\t1\nInterestingly\t3\nfour\t10\nDATA\t1\n<FILE>\t1\nwhile(\t1\nif(\t1\n~\t12\nm/\t1\n(.+)/)\t1\n$_\t1\nwhile(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1)\t1\nThough\t5\nRoutes\t1\nlimits\t6\n<ul></ul>\t1\n/<li\t2\n[^>]*>.*<\\/li>/g\t1\nhttps://regex101.com/r/KXEkJz/1\t1\n[^>]*>[\\s\\S]*<\\/li>/g\t1\ngiant\t1\n[^>]*>.*<\\/li>\t1\n\\n?\t1\n<li>\t1\nFirstClass\t2\npressing\t5\nThanking\t1\nanticipation\t1\nintroduces\t1\ncoupling\t1\nuserNameFld\t2\nshowDialog\t1\nTableClass\t2\nF\t7\nkeydown/keyup/keypress\t1\nkeystroke\t1\n←\t1\n→\t1\nABCDEF|\t1\nhttp://jsfiddle.net/Vsafv/\t1\ncross-browser\t2\nhttp://blog.josh420.com/archives/2007/10/setting-cursor-position-in-a-textbox-or-textarea-with-javascript.aspx\t1\n37\t1\n38\t2\n39\t1\ntackle\t5\nbounding\t2\nscene\t3\nQGraphicsItems\t1\nQGraphicsItem::ItemIgnoresTransformations\t1\nQGraphicsItem::deviceTransform()\t1\nQGraphicsView::viewportTransform()\t1\nReturns\t4\nInverting\t1\nvp_trans\t1\n2.0.4\t1\nTwitter\t1\nshadow\t3\nnav-bar\t1\nupgraded\t6\n2.2.1\t2\nnavbar\t1\n2.1.2-WIP\t1\nradius\t2\nmiles\t6\nsurprising\t2\nkm\t4\nas-is\t4\nroughly\t2\npip\t6\nmodule_name\t1\nestimated\t1\nwinpython\t1\nhttp://hastebin.com/qiconesoje.apache\t1\nvirtualenv\t1\nretain\t1\nstands\t1\nSystem.arrayCopy\t1\nsecondArray\t1\nlooping\t1\ndatatable\t5\nrefid\t1\nwriteXML\t1\nhttp://msdn.microsoft.com/en-us/library/system.data.datatable.writexml.aspx\t1\nregex.syntax\t1\ntokens\t6\nsimplified/optimized\t1\ntraverse\t6\ntree\t16\nfmt.Println(p)\t1\nregexp\t1\nsyntax.Regexp\t2\nSub\t1\nsubexpressions\t1\nslice\t2\ninspecting\t1\nOp\t1\nRune\t1\njade\t1\nProblem\t17\nJade\t1\nSystem.out.println(\"something\")\t1\nalerted\t2\npermitted\t3\nGuide\t6\ncertificates\t1\nprofiles\t10\nentitlements\t2\ninsanely\t1\nfrustrating\t3\nWelcome\t1\nmeantime\t2\nfile://\t2\ninputFromKafka\t1\nKAFKA\t1\nHeaders\t2\n9c8f09e6-4b28-5aa1-c74c-ebfa53c01ae4\t1\n1437066957272}\t1\nSending\t1\nKafka\t4\nKafkaHeaders.MESSAGE_KEY\t1\nProducer\t1\nKafkaProducerMessageHandler\t1\nmessageHeaders\t1\ntopic\t4\npayload\t1\nmessageKey\t2\nConsumer\t2\nKafkaHighLevelConsumerMessageSource\t1\nKafkaMessageDrivenChannelAdapter\t1\n<int-kafka:message-driven-channel-adapter>\t1\nstruggled\t1\nhandy\t4\nflexbox\t2\ngoogled\t2\nflex-direction\t2\ncodepen.io\t1\ngeneric\t10\nmodern\t1\nviable\t1\nhttps://codepen.io/anon/pen/VjOKGX\t1\nWrap\t5\nuneven\t2\nflex\t6\nthere.\t1\nRevised\t2\nCodepen\t3\nNotes\t5\nInclude\t2\npadding\t5\nflex-wrap\t1\nnowrap\t2\nsiblings\t2\nForce\t2\nweaker\t1\nsub-section\t1\n.long\t3\n33.33\t3\nshorthand\t3\nflex-grow\t2\nflex-shrink\t1\nflex-basis\t8\n66.67\t1\nre-declare\t1\nintact\t1\nprevails\t1\na.Lat\t1\nAWE_Propvids\t1\nclause\t17\nHAVING\t1\nIN\t2\nFROM\t7\ncheckboxTree\t1\ncheckboxtree\t1\n4000\t1\ncheckBoxTree.getCheckBoxTreeSelectionModel().setDigIn(true)\t1\nJQM\t1\nmigrate\t2\nAdjust\t3\nbattling\t1\nrecreated\t2\nwww.site.co.za/mens-clothing-3\t2\npopulated\t3\nwww.site.co.za/mens-clothing\t1\nhtacess\t1\nmens-clothing\t1\nobviosuly\t1\nmagento\t2\nhttp://www.magentocommerce.com/wiki/modules_reference/english/mage_adminhtml/urlrewrite/index\t1\nmany-to-many\t1\njunction\t2\nAirports\t1\nAeroplanes\t1\nshouldn't\t1\nairport\t2\nplanes\t1\nairports\t1\nareoplanes\t1\nPrimary\t1\nairports_and_planes\t1\nrepsective\t1\nexceptions/crashes\t1\nstacktrace\t7\nCSScript\t1\nCS-Script\t2\nreflected\t2\nnavigate\t3\nCommand-line\t1\n.pdb\t3\noptimization\t13\ncscs.exe\t1\n/dbg\t1\n/d\t1\n.exe\t1\n.dll\t3\nTest.cs\t2\nTest.exe\t1\nTest.pdb\t1\nExecuting\t2\nDebugBuild\t1\nEvaluatorConfig\t1\nBUt\t1\nLoadCode\t1\nLoadXXX\t1\nprettier\t1\nimportrange\t1\nYES\t4\nonedit\t1\nonEdit\t1\nOnEdit\t1\nreact\t6\nTime-driven\t1\nvim\t3\n/text\t1\n\\n[\\t].\\n[\\t]\t2\nhighlighted\t5\ntext/\t1\n^($/p\t1\nyourfile\t1\n-AN\t1\nInterop\t5\nasp\t1\nXLSX\t6\nXLS\t2\nread/edit/create\t1\nMS\t9\nOpenXML\t1\nV\t4\nhttp://msdn.microsoft.com/en-us/library/bb448854%28office.14%29.aspx\t1\nread+write\t1\nOffice\t2\nhttp://www.codeproject.com/KB/office/OpenXML.aspx\t1\nIF\t4\nolder\t11\ncommercial\t2\nClosedXML\t1\nEPPlus\t1\nAspose.Cells\t2\nSpreadsheetGear\t1\nLibXL\t1\nFlexcel\t2\nsever-scenarios\t1\nExcelDataReader\t1\nXLS/XLSX\t1\nReader\t1\nRia\t1\nServices\t6\nSL\t3\nStartLongOperation\t7\nInvoke\t1\nThread.Sleep\t2\nGetStatus\t5\nserverside\t1\nworker\t3\nseperate\t2\nClient-side\t1\npoll\t2\nGetStatusCompleted\t1\nMeaning\t1\nsystem_name\t2\narrival_time\t1\ntabular\t2\nJsp\t1\ndiv1\t2\nposition:absolute\t1\ndisappears\t6\nprintout\t1\nDirectoryStream\t2\nFiles.newDirectoryStream\t1\nNIO.2\t1\ncombining\t2\n:hidden\t1\nClientIDMode\t1\nStatic\t2\nmaster\t10\nangular-cli\t2\n16.04.2\t1\nLTS\t1\nangluar-cli\t1\nng\t1\n@angular\t1\n/cli\t1\n@latest\t1\nglobally\t1\nFixing\t1\ntxt\t4\nfour-letter\t1\nlength-delimited\t1\n4th\t2\nTreeSet\t1\n.toUpperCase()\t1\n.toLowerCase()\t1\n0.45\t2\n90\t2\n1.30\t1\nTimeSerial\t1\nsimplicity\t2\nfront-end\t10\n@date\t1\nJbuilder\t1\nActiveModel\t1\nSerializers\t1\nLots\t2\ngems\t2\nNet::HTTP\t1\nResource\t4\nbacked\t2\nCreate-Read-Update-Destroy\t1\nURLs\t2\nauto-magically\t1\nActiveResource-based\t1\nActiveRecord\t1\nRails\t19\ngaining\t1\nsplitting\t2\ncompelling\t1\nAWS\t9\nWorkMail\t1\njohn@mycompany.com\t1\nhttps://mail.mycompany.com\t1\nhttps://mycompany.awsapps.com\t1\nsub-domain\t1\nmail.mycompany.com\t1\nmycompany.awsapps.com\t1\nCloudFront\t5\nadmit\t1\nmywebmail.mydomain.com\t4\nmyaws.awsapps.com/workmail\t1\nmyaws.awsapps.com\t2\nLogin\t6\nhttps://console.aws.amazon.com/cloudfront/\t1\nDistribution\t1\nOrigin-Domain\t1\n5)\t6\nOrigin-URI\t1\n/workmail\t1\nScroll\t1\naliases\t3\nNotice\t2\nmine\t3\n10-20\t1\nCloundFront\t1\norganization\t4\nYourDomainName\t1\nbehaviours\t1\nKind\t2\nRegards\t5\nHeider\t1\nSati\t1\n$postid\t1\nescaping\t3\nZend_Db_Select\t1\ndropped\t1\nplaceholders\t1\nhttp://framework.zend.com/manual/en/zend.db.statement.html\t1\ndb->query\t1\nquery()\t1\nsanitization\t1\nsub-directories\t2\nphase\t6\n1.0.0d0\t1\nd(ev)\t1\na(lpha)\t1\nb(eta)\t1\nf(inal)\t1\n16.0.0a2\t1\nalphabetical\t6\n16.0.0d24\t1\nadapt\t8\nsorting\t6\nalphabetic\t1\npriority\t1\nadequate\t2\nreplacements\t2\ncredited\t1\nAacini\t1\naschipfl\t1\nAmpscript\t1\nGetContent\t1\nLOY\t1\nIndexOf()\t1\nSFMC\t1\ndedicated\t3\nSF\t1\nhttp://salesforce.stackexchange.com\t1\nyeah\t1\nmaby\t1\nREALLY\t1\nemployees\t2\nMonoTouch\t1\nMonoMac\t1\nGithub\t1\npromising\t1\n2010/2011\t1\nup-to-date\t4\nreal-world\t2\nAppStore\t1\nnowadays\t2\nalternatives\t1\nbeside\t1\nObjective\t3\nstumbled\t3\nTrackbar\t1\ntrackbar\t5\nleft/right\t1\nopposite\t1\nmanipulate\t4\nup/down\t2\nPageUp/PageDown\t1\ncounter-intuitive\t1\nArrow\t1\nUAC\t1\nund\t1\nPgUp\t1\nPrivacy\t2\nergonomics\t1\nclockwise\t2\nmanipulation\t3\nHuman\t1\nFactors\t1\nErgonomics\t1\ninclined\t2\nlaid\t1\nWM_HSCROLL\t1\nWM_VSCROLL\t1\nscrollbars\t1\nUp\t2\nleftwards\t1\nmovement\t2\ndownwards\t2\nrightwards\t1\nconventions\t3\nprinciples\t1\nexperimenting\t3\nOrientDB\t1\ndisjunctive\t1\nPerson\t14\nStudent\t7\nWorker\t7\nAlberto\t5\nintroduce\t6\nWorkingStudent\t1\nextending\t3\ncluster\t3\nexplicit\t5\nstudent\t3\npresumably\t2\ngraduates\t1\nMoving\t1\nconsiderable\t1\nSpouse\t1\nfantastic\t2\nadvantages\t2\nOrientDb\t2\nNet::SMTPAuthenticationError\t1\nenv\t1\nHeroku\t2\n2-factor\t2\ngmail\t3\nautt\t1\nconfig/development.rb\t1\nconfig/production.rb\t1\nmailer\t1\nPushWatir::StackoMailer.success_mail.deliver_now\t1\ncausing\t10\nBig\t1\nAccount\t2\nSign\t2\nAllow\t1\nhttps://support.google.com/accounts/answer/6010255\t1\necommerce\t2\nLemonstand\t2\nshop\t1\nsells\t1\nbooks\t3\nebooks\t2\nshipping\t11\nsubtotal\t7\ncart\t16\n$7\t1\n$20\t2\n$14\t1\ncalculating\t4\nbuilt_in\t1\nupdate_shipping_quote\t2\ncalculated\t4\nnon-ebooks\t1\nhttps://v1.lemonstand.com/api/event/shop:onupdateshippingquote/\t1\n($non_ebook_subtotal)\t1\n$shipping_option\t1\n$params\t2\nAJAX\t10\n1.calling\t1\n2.ajax_js2.php\t1\nscript.What\t1\nTest\t5\neval()\t4\ninnerHTML\t5\ntest()\t1\ninjection\t3\np.s\t3\neval\t3\nevil\t1\nbrazil\t1\nkeystore\t1\njre7/bin\t1\n\\Java\\jdk1.7.0_51\\bin\t1\nwriten\t1\nportuguese\t1\nInforme\t1\nsenha\t1\nda\t2\nárea\t1\narmazenamento\t1\nchaves\t1\nencrypt\t3\nPasswords\t1\nshadowed\t1\nstorepass\t2\nkeypass\t2\nparametrs\t1\nTheir\t2\nhelped\t3\nsleep\t3\npausing\t1\nRef\t1\nhttps://msdn.microsoft.com/en-us/library/d00bd51t(v=vs.110).aspx\t1\npauses\t1\nHapi\t2\n('/')\t1\nindex.html\t3\n/public/index.html\t1\nTeam\t2\nPipeline\t1\nartifacts\t5\ndacpacs\t1\nPipelines\t1\nartifact\t3\npipelines\t2\nBuild\t6\npipeline\t11\nexternally\t1\ncapability\t3\ncompliance\t1\nfirm\t1\nCopy\t6\nPublish\t3\nArtifacts\t2\nSource\t3\nFolder\t2\nSuch\t4\nC:\\project\\a\t2\nContents\t1\nwildcards\t1\n**\\*\t1\nsubfilder\t1\n$(build.artifactstagingdirectory)\t2\nPath\t4\nagent\t2\n_GET\t1\nRegardless\t2\nhttp://www.example.com/page.php#tabname?color=red\t1\nhttp://www.example.com/page.php?color=red#tabname\t1\ndll\t8\nDllImport\t1\nknowing\t4\nthankful\t3\nconfirmation\t4\nFile_name.xls\t1\nVerified\t1\ncorrupted\t2\nfile.\t2\nBit\t1\napplication/ms\t1\n-excel\t1\ncrushing\t2\nScreen\t6\nShot\t1\nXamarin\t6\nHeader\t4\nBackground\t6\nDark\t1\nAssist\t1\nXamarin.Forms\t1\nUWP\t1\ncode.\t2\nnon-void\t1\ndo.\t1\nReplaced\t1\nignoring\t3\nblgz.co\t1\npinpoint\t1\n=(\t1\nfloat\t11\n#content\t3\n-inner\t2\nsidebar-second\t1\nlayout.\t1\nfetched\t3\nresults.\t1\nFetching\t1\npredicate\t4\ntyped\t9\nbtnTester\t1\nestablished\t2\nbacking\t1\np:message\t2\n:\\\t1\ngrowl\t1\np:messages\t1\ninferred\t1\nCalendar\t1\ntimeMin\t2\ntimeMax\t2\nsingleEvents\t1\norderBy\t1\nhttps://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\t1\nprojection\t2\ndating\t2\n8/2008\t1\nMastoll\t1\nhttps://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&\t1\nstart-min\t1\nstart-max\t1\nfutureevents\t1\nhttps://developers.google.com/google-apps/calendar/v2/reference?hl=de&csw=1#Parameters\t1\ntrials\t1\noffset\t1\nmandatory\t2\ndocumented\t3\nhttps://developers.google.com/google-apps/calendar/concepts\t1\nhttps://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\t1\nofferings\t1\nOfferings\t1\nJAXB\t2\nsub-Class\t1\nModifiers\t2\nOrdering\t1\nRules\t1\nOrder\t3\nOffering\t2\nanotations\t1\noffering\t1\nmodifiers\t1\n@XmlTransient\t1\n@XmlElement\t1\ntwitter\t2\nhttp://www.silverlightshow.net/items/Silvester-A-Silverlight-Twitter-Widget.aspx\t1\nsilverlight\t2\nclearly\t9\nFeb\t1\n201\t1\nhttp://ie.microsoft.com/testdrive/Browser/ActiveXFiltering/About.html\t1\nproven\t4\nUniversal\t1\nPro\t3\nDEP0700\t1\nsub-error\t1\nwell-known\t1\nGUID\t1\nblah\t3\nAppxManifest\t1\nopening/editing\t1\nApxManifest\t1\nhttp://ms-iot.github.io/content/en-US/win10/samples/SerialSample.htm\t1\n2015\t3\nappxmanifest\t6\naffects\t3\nserialcommunication\t2\ncorrupt\t2\nDevice\t2\nlost\t6\neditting\t1\nright-clicking\t2\nMs\t1\ncobbled\t1\n429\t1\nactivex\t1\nADO\t1\n6.0\t2\nFollowHyperlink\t1\nCreateObject\t2\ntyping\t7\nbaz\t1\n<return>\t1\nVim\t3\nIncSearch\t1\n:set\t1\nhlsearch\t1\nincsearch\t1\nrecommendations\t3\nrobust\t2\nstreams\t2\ngetline()\t2\nuserStringPrompt()\t1\nconsonants\t1\nfunction/method\t1\ncalculation\t7\nuserStringPrompt\t1\nWorld\t2\ncapturing\t1\ngetline(cin,\t1\nstring)\t1\nguidance/hints\t1\nF5\t1\npause\t4\nRemove\t3\nnslayoutconstraints.the\t1\ntableview\t9\ncollectionview\t1\nview.When\t1\n0x27126d67\t1\n0x34c61c77\t1\n0x27047237\t1\n0x2704701b\t1\n0xe1333\t1\n0xe0bc1\t1\n0x1c6ca7\t1\n0x1d24e1\t1\n0x9b59cb\t1\n0x9b59b7\t1\n0x9b9411\t1\n0x270ecc41\t1\n0x270eb361\t1\n0x27038981\t1\n0x27038793\t1\n0x2e3e8051\t1\n0x2a62a981\t1\n0x1d72b5\t1\n0x351fdaaf\t1\nabi.dylib\t1\nterminating\t1\nuncaught\t1\nNSException\t1\nNIL\t1\ntablview\t1\nIBOUTLET\t1\nstoryboard.When\t1\nruns.but\t1\ndata.Can\t1\nviewWillAppear\t2\nviewDidLayoutSubviews\t1\nsynthesizing\t1\nuser_agent\t1\noptimized\t5\nevaluate\t14\nreferrers\t1\nBrowser\t3\nJavaScript.I\t1\ngetter\t2\ncreative\t1\nClean\t1\nPlugin\t2\n/out/\t1\ndocpad\t3\n--env\t2\ncontent.html\t1\n/content/index.html\t1\nbehavious\t1\nsight\t1\ncaught\t6\nglitch\t1\nsdk\t8\nIOS\t3\n1.Open\t1\n5.0\t2\n2.Select\t1\nproject->Targets->your\t2\nproject->Search\t1\nDeployment\t1\n7.0\t2\n3.Also\t1\nLatest\t1\nios\t3\nproject->Build\t1\nSettings->Base\t1\nit.then\t1\nnobody\t1\ncool.\t1\nOSResultStruct\t1\nosedition\t1\nOSResultStruct.OSEdition\t1\nimplimented\t1\nDefine\t4\ninstantiable\t1\nType.GetProperty\t1\nIgnoreCase\t1\nGetValue\t1\nupper1\t2\nupper2\t2\nupper3\t2\n$('#next')\t1\n.click\t1\nfunction()\t2\nwaits\t1\nattr\t1\nrotate\t2\ncasting\t2\nspecialiased\t1\nabstract\t16\nexcusable\t1\nBencoding\t1\nBitTorrent\t1\nBItem\t4\nDecode(string)\t1\ndecode\t2\nBencoded\t1\nBString\t1\nBInteger\t1\nBList\t3\nBDictionary\t3\nencoded\t8\ntricky\t5\nthis[int]\t1\nthis[string]\t1\narray-like\t1\nqualities\t1\nhorrific\t1\nOuch\t1\neyes\t1\nbrain\t2\nWow\t1\nhey\t1\npresto\t2\nsell\t1\nsoul\t1\nimplying\t1\ntorrent[\"info\"][\"files\"][0][\"length\"]\t1\ntorrent[\"announce-list\"][0][0]\t1\ntorrent\t1\nGenerics\t1\natleast\t1\ndot-points\t1\nBItems\t2\ncollections\t3\nindexers\t2\nindexer\t1\nBCollection\t3\nmile\t1\nReadibility\t1\ntrade\t2\nreusability\t1\nMacro\t3\npointe\t1\nCognos\t1\nCube\t1\npublished\t1\ncompany\t6\nNOTE-Cognos\t1\nunsupported\t1\nfeasible\t1\nd:\\Cognos\\PowerCubes\\Build\t1\nd:\\Cognos\\PowerCubes\\Live\t2\nd:\\Cognos\\PowerCubes\\Build\\yourcube.mdc\t1\n/Y\t1\n/B\t1\nscheduler\t3\nHTH\t2\nmycube.mdc\t1\ndiffrents\t1\n.Hence\t1\ndata-binding\t4\nTypeDescriptor\t2\nSystem.ComponentModel\t1\nTypeConverter\t1\nCustomTypeDescriptor\t1\nPropertyDescriptor\t1\nper-instance\t1\nwide\t2\nscenarios\t1\ntrivial\t10\nhashtable\t2\nflexibility\t5\ninterpreted\t5\nconstrained\t2\nstd::cbegin()\t1\n5.4.0\t1\n/usr/include/c\t1\n++\t5\n/5/bits/range_access.h\t1\nstd::begin()\t1\ncommittee\t3\nunlimited\t1\nC++14\t2\nstd::make_unique\t1\nThings\t2\nproposal\t4\nfavour\t1\nN167\t1\nattitude\t1\naffected\t5\nDefect\t1\nReport\t1\n2128\t1\nadopted\t1\n2.1\t1\nis_float\t1\nMatches\t1\n[0-9,]+\t1\n(?:\\.\t1\n*)\t5\n1+\t3\nhyphens\t1\n\\d+\t2\n\\d\t1\n\\\t9\nliteral\t17\nmetacharacter\t1\ndenote\t2\nbonus\t1\nexponent\t1\nvariant\t2\nregular-expressions.info\t1\n-+\t2\n?)\t1\nnon-capturing\t1\n/i\t1\nmodifier\t1\n\\d+`\t1\nsize(y,\t1\ncorrepond\t1\nj\t10\ny(i)\t1\nOctave\t1\n3.6.3\t1\nbroadcasting\t1\ntranspose\t1\nY\t4\ntransposed\t1\ny==(1:3)')\t1\nrename\t5\nPicture00000001.jpg\t1\n00000001\t1\npark\t1\nbread\t1\nbutter\t1\ngas\t1\nOCD\t1\nFilenameWithOutExtension\t1\nf.DirectoryName\t1\nf.BaseName\t1\nbasename\t2\nBasename\t2\nFileInfo\t1\nCommunity\t1\nExtensions\t2\nadministrator\t2\nshots\t1\nJoomla3.x\t1\n1.Customize\t1\ntemplateDetails.xml\t2\nnewposition\t1\n2.create\t1\ntemplates/your_template/index.php\t1\nextensions->modules\t1\nPYTHON\t1\n3.3\t2\npartitioned\t3\nprogrammes\t1\nNTFS\t1\nfat32\t1\nmanuals\t1\nsys.path\t3\npermanently\t1\nIDLE\t1\nirritation\t1\napologize\t2\n/home/me/mypy\t1\nhttp://www.johnny-lin.com/cdat_tips/tips_pylang/path.html\t1\nPYTHONPATH\t3\nchromebook\t1\nmagnifying\t3\ntext/images\t1\nhovers\t2\nupper\t3\nglass\t1\nmanifest.json\t1\nhttp://www.supertecho.com/background.html\t1\nmagnification\t1\npopup.html\t2\nbackground.html\t1\nunclear\t3\nbrowsed\t2\ninjected\t1\nhttp://code.google.com/chrome/extensions/content_scripts.html\t1\n$name\t5\nsubmit.php\t1\nhighcharts\t1\nXX\t1\nconsideration\t1\nscores\t6\nscore\t10\ngraphs\t2\nAmpserand.js\t1\nteams\t1\nhttp://jsfiddle.net/ma50685a/5/\t1\nAnyway\t3\nif-else\t1\nwebserver\t2\n2000\t7\nregistry\t12\nvolatile\t1\nVStudio.NET\t1\nHKEY_LOCAL_MACHINE\\Software\t1\ndenied\t2\nregedit\t2\nhives/keys\t1\nHalf\t1\nsubject\t8\nDO\t2\nportions\t1\nutterly\t1\n=)\t4\nOh\t2\nRegEdit\t3\nXP\t5\nincompatible\t2\ntouble\t1\nRegEdt32.exe\t1\nMachine\t3\nNetwork\t3\nRegistry\t8\navd\t1\n--*\t3\nContent-Disposition\t3\nform-data\t3\nvalue1\t1\nvalue2\t1\n1.jpg\t1\nContent-Type\t1\nimage/jpeg\t1\nresponsible\t2\nLooking\t2\n.jjt\t1\nfile.I\t1\njjtThis.setName()\t1\njjtThis.type\t1\njjtThis.setLength()\t1\njjtThis.correlationName\t1\njjtThis.setScale()\t1\njjtThis.setPrecision()\t1\njjtThis.add()\t1\njjtThis.tableName\t1\njjtThis.name\t1\njjtThis.position\t1\njjtThis.length\t1\njjtThis\t1\n?..\t1\nhttps://javacc.java.net/doc/JJTree.html\t1\nadjusted\t1\nSQLFIDDLE\t1\nhttp://sqlfiddle.com/#!9/11093\t1\ntraditional\t1\nEXISTS\t2\nillustrating\t1\nBeej\t1\nrecv()\t1\nsend()\t1\nof-course\t1\nhaven\t1\ngetinput\t1\nUninitialized\t1\nnon-static\t1\nindeterminate\t2\nseemingly\t2\nscanf\t1\n3+mio\t2\nClustered\t1\nId\t9\nnon-clustered\t1\ncWrh\t1\ncStg\t1\nattaching\t2\ndeadlog\t1\nredacted\t1\nDB.wrh.Cars\t1\nDeadlock\t1\nReset\t1\nRecalculate\t1\ninserts\t1\nspeeds\t2\nsignificantly\t2\nintensive\t1\n@KamranFarzami\t1\n@Grantly\t1\nIsolation\t1\nSNAPSHOT\t1\nprevents\t5\ndeadlocks\t1\nocurring\t1\nx2\t5\ntextContent\t1\nparseInt()\t1\nparseFloat()\t1\nsuper()\t7\nsuper().parent_method()\t1\nself.parent_method()\t1\nsugar\t1\naka\t1\nself.method_name()\t1\nrecursion\t4\nRuntimeError\t1\nexceeded\t1\ntest_a\t3\ntest_b\t1\nself.test_a()\t3\noverride/overwrite\t3\nimplementation.\t1\nsuper().test_a()\t2\ntest_a()\t1\nsubclasses.\t1\nnonsense\t1\nexplore\t1\ntest_b()\t1\nC1\t1\nC2\t1\nB1\t1\nB2\t1\nB2.test_b\t1\nsibling\t3\nobscure\t1\nmore-derived\t1\nCs\t1\nless-derived\t1\nself.whatever\t1\nkeywords\t2\nCarinherits\t1\nNSObject\t3\nkey-value-coding\t1\nsetValue:forKey\t1\nKVC\t1\nguards\t1\nhaskell\t2\nmost/some\t1\nhaskells\t3\nstatically\t4\nimaginable\t1\nlogically\t3\nprimarily\t3\nExamples\t1\nterse\t1\nsuccinctly\t1\nexpressed\t2\nrarely\t3\nneeding\t2\nCaml\t5\nSML\t4\nLisp\t2\npeforms\t1\nprogrammer\t3\nreconstruct\t2\nimpredicative\t1\npolymorphism\t1\nproduction-ready\t1\noverloading\t2\nWhether\t3\nprogrammers\t4\ndislike\t2\nelegantly\t1\nJulia\t1\nexistential\t1\nGADTs\t1\nGHC\t1\ndependent\t3\nCoq\t1\nAgda\t1\nIdris\t1\ngeneral-purpose\t1\nOO\t7\nmonad\t1\nside-effect-free\t2\nreferentially\t1\nprone\t2\nbugs\t4\nmutable\t4\ntype-checking\t1\nprecede\t1\nmodifies\t2\nhttps://www.youtube.com/watch?v=XPpsI8mWKmg\t1\ncaptions\t4\nisCC\t3\nhttps://developers.google.com/youtube/v3/docs/captions\t1\nCC\t2\nreferring\t4\nsubtitles\t2\ndistinction\t1\ncaptioning\t2\npaid\t1\nmovies\t2\nYouTube\t1\nyoutube\t2\nCollection\t7\nhttp://way2java.com/collections/hashtable-about/\t1\nHashtable\t9\nkeys()\t3\nkeySet()\t2\nsimilarity\t5\nreflects\t1\nEnumeration<K>\t1\nlegacy\t3\nHashMap\t3\nConcurrentHashMap\t1\n†\t2\nexisted\t1\nJCF\t3\nEnumeration\t2\n1.2\t3\nretrofitted\t1\nachieves\t1\nconveys\t1\nreinforces\t1\nmathematical\t3\nIterable\t1\n<T>,\t1\nEnumerable<T>\t1\nenumeration\t1\nmongoDb\t1\nlend\t1\nupsert\t2\n$set\t1\nstudent_record}\t1\nstudent_grade\t1\nflag.lower()\t1\nLast\t3\nupdate_one\t1\n1.2.3\t1\nUpgrading\t1\nscaffold\t1\nwizard\t3\nActionWebService\t1\npops\t3\nactionwebservice\t1\nrefuses\t1\nnon-POST\t1\nSpecifically\t1\naction_controller_dispatcher.rb\t1\nGETting\t1\noverwritten\t1\nZack\t2\nChandler\t1\nQuickBooks\t2\nquoting\t2\ndispatch_web_service_request\t1\nreposting\t1\nc'\t1\nsuite\t3\n4:10\t1\nnucleotides\t1\nlookbehind\t1\napart\t3\nextracts\t1\n0.2\t1\n3-million\t1\nOriginal\t3\nsubstr()\t1\nExtract\t1\nckeditor\t1\nalfresco\t3\nckeditor-forms-master\t2\ngithub\t8\nant\t3\ndist-jar\t2\n-Dtomcat.home\t1\nC:/Alfresco/tomcat\t1\nhotcopy-tomcat-jar\t1\nRestarted\t1\ncreate/edit\t1\n4.2.f\t1\nSencha\t1\ntabPanel\t4\nmaptestPanel\t1\nsteer\t1\nsencha\t1\nmapPanel\t1\nBesides\t2\noutermost\t1\nadd()\t2\ndoLayout()\t1\nbtnPanel\t2\nvbox\t1\nkinesis\t2\nconsumers\t4\nlambda\t5\niterator\t10\nstream/shard\t1\nshards\t2\ninvocations\t1\nexecutions\t1\nSeethis\t1\nEnumDropDownListFor\t1\nform.But\t1\nfirstly\t1\nEvaluation.My\t1\neasly\t1\nSlideshow\t1\nendless\t1\nhttp://jsfiddle.net/2VQ9A/\t1\nrecognized\t5\ndefinetely\t1\nprobme.Try\t1\ntemp_09.jwn\t1\ncobrand_bank_id\t1\nALTER\t1\nTABLE\t3\nSchema-less\t1\nNoSQL\t2\nRDBMS\t3\nscheme\t4\naltered\t3\nbought\t1\nshoes\t1\ntoss\t1\n–\t7\nvolume\t1\nnosql\t1\nschema-flexible\t1\nrelational\t1\nflexible\t3\nHANA\t1\nWITH\t1\nSCHEMA\t1\nFLEXIBILITY\t1\nCentOS\t2\nNAT\t1\nHost\t9\nping\t6\nslave1\t1\nslave2\t1\n8.8.8.8\t3\nPING\t1\n56(84)\t1\nout.\t1\ngoogle.com\t2\nunkown\t1\nenp0s3\t1\nNAT(on)\t1\ninet\t1\n10.0.2.15\t1\nnetmask\t1\nenp0s8\t1\nhost(on)\t1\n192.168.56.101\t1\nspending\t1\nNetwrok\t1\nadaptateur\t1\nEnabled\t1\nBridge\t1\nConnections\t1\nObtain\t2\nloginfragment\t1\nloginlayout\t1\nDevelopers\t1\ntraining\t3\nhttp://developer.android.com/training/basics/network-ops/connecting.html\t1\nhttp://developer.android.com/training/multiple-threads/index.html\t1\nCRLF\t1\nOAuth\t6\n**\t7\nencapsulation\t2\nGSON\t5\nhttps://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/Gson.html\t1\nJSONArray\t1\nJSONObject\t1\nhttp://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/\t1\nOverall\t1\nWeb-service\t2\nShow\t4\nFragments\t1\nrich\t5\nQComboBox\t1\nQLabel\t1\nQListView/QListWidget\t1\nwidgets\t5\nDOMDocument\t2\nDOMDocument::schemaValidate()\t1\nElement\t1\nExpected\t3\n{url}foo\t2\n{url}bar\t1\n'{url}foo'\t1\nnotation\t8\nreferred\t5\nClark\t2\nJames\t1\npromoted\t1\nunqualified\t2\n{}foo\t1\ntelling\t3\nnamespace-qualfied\t1\nProbable\t1\nclassify\t1\nr\t3\ndistinguish\t2\nstrsplit\t1\nstr_split\t1\ncategorize\t1\nstringr\t1\nrebus\t1\nintuitive\t1\nin-house\t2\ncertificate\t17\nappeared\t6\npacked\t1\nthumbprint\t1\nco-admin\t1\ncontact\t4\nwhom\t1\nissuer\t1\ncertification\t1\nauthority\t1\nindices\t6\nnon-coprime\t1\nGCD(Ai,\t1\nAj)\t1\nAi\t1\nAj\t1\nbrute\t1\nO(n^2))\t1\nBinary\t1\nO(NlogN)\t1\nafford\t2\nprimes\t3\naverage/random\t1\nworst\t6\nO(N*N)\t2\nApproach\t6\nMapxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1[N]\t1\nclosestNeigh[]\t1\nO(N)\t1\nclosest\t10\nprefix/sufix\t1\nsums\t1\neliminate\t3\nneighbor\t1\nbring\t5\nrelief\t1\nO\t3\nN*\t1\n<num_distict_factors>\t2\nwilling\t1\nfactorization\t1\nhashing\t1\nprime\t5\ntraversal\t9\nconduct\t1\nnearer\t1\nWriteableBitmap.GetPixels()\t1\nwriteablebitmap\t1\ncloning\t3\nWriteablebitmap\t1\ndownloadable\t1\n1.0.2\t1\n1.0.5\t2\nuntested\t2\nsourcecode\t1\nwriteablebitmapex\t1\ntr\t7\niterated\t2\n$rootScope\t2\nhttp://jsfiddle.net/ae8neq3k/\t1\n$responses\t2\nprint_r\t2\nprint_r($output)\t1\nvar_dump\t1\ninheriting\t2\niter\t1\nreproducible\t1\npairsRef\t1\nTest2\t1\nunexported\t1\nBiostrings\t1\nResults\t4\nnon-function\t1\nBen\t1\nnextElem\t1\nMongoDB\t3\nSUM\t3\n11\t4\n12\t1\nShell\t2\nllovet\t1\naggregation\t5\n$project\t1\nran\t6\nprefectly\t1\njsonString\t1\nnullpoiterexeption\t1\n\"W1121000-00002\":\t1\n\"clnt\":1023\t1\n\"srvr\":870\t1\nclnt\t1\nPyhton3.4.1\t1\nwin7\t1\nnotepad\t2\nans\t2\ntextedit\t1\ndoubting\t1\nPlus\t2\nmac(Python3.4.1,OS10.9)\t1\nNotepad\t4\nreencoded\t1\nauto-detected\t1\nQuoting\t1\nopen()\t1\nutf-8-sig\t1\nauto-detect\t1\nUTF-16\t3\nencodings\t3\nANSI\t2\ncodepage\t2\n936\t1\nGBK\t1\ncodecs\t1\nCompile\t1\n-fdump-class-hierarchy\t1\nemits\t1\nsignificance\t2\nnearly-empty\t2\nhasa\t1\nvtable\t3\nABI\t1\nconstruction\t2\nbases\t1\nNSJSONSerialization\t1\nprops\t1\nindicates\t9\nrequiring\t2\nhttp://screencast.com/t/chDMshKPl\t1\nOpera\t7\n11.01\t1\n5.0.3\t1\noverflow-y\t1\n10.10\t2\n3.0.195.38\t1\nMozilla\t3\n3.5.6\t1\nKendo\t4\nCodeigniter\t1\ncodeigniter\t3\nshoot\t2\nhttp://prntscr.com/5bmn3n\t1\nrecived\t1\nhttp://prntscr.com/5bmne5\t1\nprntscr.com/5bmnib\t1\nprntscr.com/5bmnni\t1\ncross-domain\t2\nMVC5\t1\nculture\t11\nde-CH\t4\ndefaulting\t1\nGerman\t4\nweb.config\t1\nglobalization\t1\nuiCulture\t1\njquery.globalize\t1\nLocally\t1\nvalidates\t1\n100.00\t1\nIIS7\t1\nWin8\t1\n0.00\t1\nrejects\t1\nARE\t2\nfalling\t1\nde-DE\t1\nenabled/installed\t1\nde-AT\t1\nhonored\t1\nWeb.Config\t1\nScrapy\t3\ncopy/paste\t3\nBurp\t1\nscrapy.http.Request\t1\nClearly\t1\nTwisted\t1\ntransport\t1\nhttp.py\t1\nhttp11.py\t1\nduplicating\t1\nScrapy/Twisted\t1\nscrapy\t2\nplenty\t3\nassembled\t1\nscrapy/core/downloader/handlers/http11.py\t1\nScrapyAgent.download_request\t2\nhttps://github.com/scrapy/scrapy/blob/master/scrapy/core/downloader/handlers/http11.py#L270\t1\nmonkey\t1\nScrapyAgent\t1\nHTTP11DownloadHandler\t2\nAgent\t2\nDOWNLOAD_HANDLER\t1\nsettings.py\t2\nhttps://doc.scrapy.org/en/latest/topics/settings.html#download-handlers\t1\nsniffer\t1\noverkill\t4\nAssigning\t1\ndimensions\t3\nrectangle\t1\nsurface\t1\nRect\t1\nerase\t2\nicosahedron\t2\nMATLAB\t4\nmid-points\t1\nrecomputing\t1\nfaces\t6\nrecompute\t1\nneighbours\t1\nup-sampled\t1\n3}\t1\nsubdividing\t1\nc}\t1\ntriangles\t1\nsize(S.vertices)+1\t1\n3*size(S.faces)\t1\nVx(f,:)\t1\nVx(:,1)\t1\nVx(:,3)<-\t1\nVx(:,2)\t1\ncat\t2\npermute\t1\nreshape\t2\nincomprehensible\t1\nplug\t2\nm*3\t1\nS\t12\nnodemon\t1\nBitnami\t1\npowered\t2\nssh-ing\t1\nperimision\t1\n27017\t1\ngcloud\t1\nfirewall-rules\t1\nallow-mongodb\t1\n--allow\t1\ntcp:27017\t1\nmongodb.config\t1\nbind_ip\t1\n0.0.0.0\t1\nfrustating\t1\napreciate\t1\nprinter\t3\nshreds\t1\nshredder\t1\nsecurely\t1\nVB.Net\t3\nnul\t2\nDOS\t1\nhttp://www.markmmanning.com/blog/2009/01/creating-fake-printer-devnull-for.html\t1\niText\t2\nUnix\t3\nexploitation\t1\ncontacted\t1\ntroubles\t1\nAcroaxxxxx\t1\n/tmp\t3\ntmp\t1\nThnks\t1\napache_setenv\t1\n'sessionID'\t1\nsession_id()\t1\nTRUE\t2\nsessionID\t2\nGETs\t2\ngif\t2\nGateway\t4\nUnable\t2\npayments\t2\nauthorize.net\t1\nAuthorize.net\t2\npayment\t2\nverified\t5\ntrans\t1\ncURL\t6\nfirewalls\t1\ntestmode\t1\nexception.log\t1\nSystem->Configuration->PaymentMethods\t1\nTurns\t1\nnameservers\t1\nhttp://www.magentocommerce.com/boards/viewthread/50611/\t1\narchive\t4\nhttps://web.archive.org/web/20150315055800/http://www.magentocommerce.com/boards/viewthread/50611\t1\naccounts.authorize.net\t1\nTools\t6\nFraud\t1\nSuite\t1\nAuthorized\t1\nAIM\t1\nuniversity\t2\n$_POST['ids']\t2\ncicle\t1\n$service_info\t1\nvar_dump()\t1\nechoing\t3\nMobile\t2\n__createdAt\t3\nplanning\t2\npreorder\t2\ndataTemplateSelector\t1\nItemTemplate\t3\nFollowing\t5\nVerticalContentAlignment\t1\nStretch\t1\nstretches\t1\nItemTemplateSelector\t1\nGrid\t9\nRow\t2\n<Grid\t1\nGrid.Row=\"1\"\t1\nstretch\t2\nHeight\t1\nActualHeight\t1\nListView.ItemContainerStyle\t1\nsetter\t2\nAuto\t1\nOrderAmount\t1\norders\t2\nextracted\t2\nRubygems\t2\nGemfile\t1\ninteracts\t1\nminimise\t1\ndevelop/test\t1\ncycle\t11\ncontradict\t1\npushed\t4\nbundler\t1\nrubygems\t1\nheader.tpl\t1\nproduct.tpl\t2\nSEO\t1\nmodifiy\t1\n$description\t1\n<?php\t1\n$heading_title\t1\n?>\t1\nmodel/controller\t1\nwasting\t1\npreg_replace()\t1\neliminates\t1\nparadox\t1\nseperation\t1\n.html.erb\t1\n@consumer\t2\n.name\t1\nfacebook_consumer.js\t1\n<%=\t1\n@consumer.name\t1\n%>\t2\njs.erb\t1\nthoughts\t5\n.js.erb\t1\napp-wide\t1\ndata-table\t1\nstrongly-typed\t1\ninvokes\t2\nrefresh()\t2\ndatalines\t1\nunresponsive\t3\n.cs\t6\nDataSet\t1\nUiDataSource\t1\nCurrentSamples\t1\n@ChrisF\t1\ndatabinding\t1\ndataTable\t2\nraises\t2\nWinForms\t1\nSTA\t1\nLikely\t1\nbackwards\t3\nenterprise\t1\nadapters\t1\nBindingList\t1\ncross-thread\t1\nprogressively\t1\nDataSource\t1\ntd\t3\nzebra\t2\nphoto\t1\nanimals\t4\nquantity\t5\nunsuccessful\t2\nxpath\t3\nclassName\t2\nlocator\t1\ncssselector\t1\nline_item\t3\nZebra\t1\nWebElement\t1\n<td>\t1\nWebElements\t1\nunbinds\t1\nstartService()\t1\nbindService()\t1\nunbindService()\t2\nneither\t8\nbuild.gradle\t3\napplicationId\t1\ntablets\t1\nhttp://getbootstrap.com/css/#grid-column-ordering\t1\nPlace\t2\nviewports\t3\nreorder\t2\nfell\t1\nargparse\t1\ntoying\t1\narchives\t1\ncompress\t1\ntest1.txt\t1\nArchive.zip\t1\nChanged\t2\nidiot\t2\nbiggest\t3\nhttps://docs.python.org/3.3/using/windows.html\t1\nhttps://docs.python.org/3.3/using/unix.html\t1\nbeans\t5\nrerun\t1\nofcourse\t1\ndoLogin.jsp\t1\nformError.java\t1\nBeans\t1\naddGenError\t1\nsetGenError\t1\nloginFormData\t1\nindividuals\t1\nHappens\t1\nBare\t1\nbones\t1\nFileSystemObject\t1\nfso\t1\nLate\t1\ninterrogate\t1\nScripting.FileSystemObject\t1\nScripting\t2\nhttps://stackoverflow.com/a/3236348/491557\t1\nNational\t1\nGeographic\t1\nswiped\t1\ncontentView\t1\nkinda\t2\nswipe\t3\ngestures\t1\ntabview\t1\nxib\t1\nCustomCell\t1\nCustomCell.swift\t1\n100pt\t1\nstoryboard\t3\nBear\t1\nengines\t1\ndeleting\t7\nimplies\t3\nprotection\t2\nsheets\t2\nReading\t2\nImplies\t1\nprotect\t1\nonEdit(e)\t2\nadding/deleting\t1\nonEdit()\t1\nonChange()\t1\nspreadsheets\t1\namend\t2\nhttp://d.pr/86DH+\t1\nformatter\t2\nngClick\t2\nwatch/monitor\t1\nprocesss/compile\t1\ndirectives\t3\nng-click\t1\nDatagrid\t3\nVIEW\t2\ncode-behind\t4\nleader\t1\nthru\t1\nOmitted\t1\nexceed\t2\nproceeded\t2\nmultibind\t1\ndatagridcell\t1\ndatacontext\t3\ndatagridrow\t1\nAlternative\t2\nand/or\t5\nsupporting\t3\nSelectedItem\t2\nCurrentItem\t1\nCurrentCell\t1\nFuthermore\t1\ncouldnt\t1\nBinding\t2\ntransmit\t1\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid%28v=vs.110%29.aspx\t1\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid.currentitem%28v=vs.110%29.aspx\t1\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selectedvalue%28v=vs.110%29.aspx\t1\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selecteditem%28v=vs.110%29.aspx\t1\nbindable\t1\nMultiBinding\t1\nhttp://msdn.microsoft.com/en-us/library/system.windows.data.multibinding%28v=vs.110%29.aspx\t1\nICommand\t5\nPropertyChangedCallback\t1\nPreviewKeyDown\t1\n@Value\t2\n@AID\t1\nsubscription\t1\nvoila\t1\nTest.xlsx\t2\n\"='C:[Sample.xlsx]Sheet1'!B14\"\t1\nSmaple.xlsx\t1\nB14\t1\nOptions->\t1\nAdvanced\t3\n->General\t1\nun-checking\t1\nAsk\t1\nvaiable\t1\nReveiveSMS.class\t1\nReceiveSMS.class\t1\nmessageBody\t2\nSharedPreferences\t1\nReceiveSMS\t1\nswitched\t2\ndistributions\t1\nAnaconda\t4\nContinuum\t2\nAnalytics\t2\nSublime\t2\nunbuffered\t1\n-u\t1\nOutlook\t2\nself-cert\t1\nMy_Org_VBA_Macro_Cert\t3\nMMC\t1\nsnap-in\t1\ndigital\t2\nsignature\t10\ncerts\t3\nrebooting\t1\nTools->Digital\t1\nSignature\t1\nChoose\t1\nCert\t1\nsigning\t2\ngloss\t1\ndata-item\t1\ndata-variable\t1\nel\t3\nUPD\t2\nreplaceWith\t2\nthx\t2\n@Barmar\t1\nreplacement\t3\nkept\t2\nhttps://github.com/vinkla/instagram\t1\ninstruction\t4\nhints/suggestions\t1\n\\Exceptions\\Handler.php\t1\nlaravel\t2\n5.2\t1\nhttps://github.com/laravel/framework/issues/9650\t1\nHandler\t2\nvendor/Illuminate/Foundation/Bootstrap/HandleExceptions\t1\n@handleException\t1\ndd($e)\t1\nPuzzle\t1\n20\t7\nMB\t2\nAPK\t1\nhttps://docs.unity3d.com/Manual/ReducingFilesize.html\t1\nembedding\t1\nmono\t2\nunity\t2\npuzzle\t1\nManual\t4\nReducing\t1\nIT\t1\nvisits\t3\nCake\t2\nrevisit\t1\n$this->cookie->read('Auth.User')\t1\nFireFox\t1\nsetcookie()\t2\nCookie\t1\nbypasses\t1\ncake\t1\ncakes\t2\ncookie.php\t2\nbegan\t4\nfunky\t1\ncreate/save\t1\nprohibited\t1\n1.9\t2\n2.3.9\t2\nmistaken\t2\nchangelog\t1\nruby-on-rails-2-3-9-released\t1\nnuance\t1\nLudoCore/Singleton.h\t2\nQuick\t3\n<class\t1\nC>\t1\nSingleton\t2\npredeclaration\t1\nincomplete\t1\nLudoTimer\t1\nSingleton.h\t1\ndefines\t6\nVRAM\t3\nGraphics\t2\nAnalyzer\t1\ngraphic\t2\nmegabytes\t1\nccavenue\t2\nprestashop\t1\n1.2.5.0\t1\nshopping\t1\nCCavenue\t1\nPayment\t1\nbluezeal.in\t1\nmerchant\t2\nReturn\t3\nhttp://myshop\t1\n/modules/ccavenue/validation.php\t1\nccavenue.php\t1\n$Url\t1\nhttp://'.htmlspecialchars($_SERVER['HTTP_HOST'\t1\nENT_COMPAT\t1\n.__PS_BASE_URI__\t1\nmodules/ccavenue/validation.php\t1\nvalidation.php\t1\nIe\t1\nAuthDesc\t1\nOrder_Id\t1\nregenerating\t1\nsettings.\t1\nexport_folder_path\t1\nslanted\t1\ntreated\t6\nliterals\t1\ncopypasting\t1\nblogs\t1\nnaming\t6\nmutators\t1\nprefixes\t2\nunderstandable\t2\nmyMember\t2\nMember\t1\nsetMyMember\t1\ngetMyMember\t1\nhistorical\t1\nget*\t1\nset*\t1\nJavaBeans\t1\nJackson\t1\nmapper\t2\nget/setters\t1\nannotations\t6\nPerl\t3\n->someProperty()\t1\n->someProperty($newValue)\t1\nSingle-Row\t1\nTile\t1\ntile\t1\noverlays\t5\noverlay\t3\npositioned\t3\nway.\t1\ntileSources\t1\nTiledImage.imageToViewportRectangle\t1\nhttps://codepen.io/hussainb/pen/QQPPvL\t1\nLooks\t3\nOpenSeadragon\t1\nhttps://github.com/openseadragon/openseadragon/issues/1412\t1\nviewer\t8\nhttps://codepen.io/iangilman/pen/aqgzJZ\t1\nbelong\t4\nx-axis\t1\naxis\t2\nmarkers\t2\nhttp://i.stack.imgur.com/FNcob.png\t1\nViktor\t1\nMatplotlib\t1\nsnaps\t1\nwind\t2\nboundary\t5\nax.margins\t1\nautoscaling\t1\n13\t6\ndateadd()\t1\nchild_process\t1\nconfigurable\t1\nnode.gyp\t1\nbuiltinLibs\t1\nlib/internal/module.js\t1\nbenchmarks\t1\nchild_proccess\t1\nlib/internal/v8_prof_polyfill.js\t1\nlib/internal/cluster/master.js\t1\ncommence\t1\nstating\t3\nobjective\t3\n13-bit\t1\ntrillions\t1\nimperative\t1\nutilizes\t1\n2.7\t5\npyopencl\t1\naveraging\t1\nGFlops\t1\nATI\t1\nRadeon\t1\n6870\t1\ncaring\t1\n<,\t3\n>,\t1\nbyte\t7\n(as\t1\nnow),\t1\nspeed\t11\norm\t2\nrefrence\t1\ngroup_by\t1\naggregates\t1\nannotate\t1\ndjango\t5\nperson_name\t1\nCar\t4\ncar_owner\t1\nperson_id\t1\ncars\t3\nbelonging\t1\ngroup_by(person_name)\t2\n%x%\t1\ncar_id\t1\n>=\t3\nCars\t1\nOwners\t1\nhttps://reqres.in/api/users/2\t1\navatar\t1\nObservable\t3\napproached\t1\nswitchMap\t1\nconcatMap\t1\nmergeMap\t1\nSubmit\t4\n_self\t1\nnon-AJAX\t1\nzoomPlot.generatePlot()\t1\n.png\t2\nElsewhere\t1\nIframe\t1\nVisually\t1\nvisibility\t3\ndestroys\t1\nPrevent\t2\nsubmission\t6\n#results\t1\n-container\t1\nNOTE\t2\nFORGET\t1\n:::EDIT::\t1\nRespond\t1\nmatchmaker\t2\nself()\t1\nThreads\t1\ntids\t1\nmake_match()\t2\nmake_match\t1\nmutex\t6\npthread.h\t1\nmustbe\t1\ncorrectness\t1\nwether\t1\nRg.Plugins.Popup\t1\nItem1\t1\nTaskCompletionSource\t1\nPopupAlert\t1\nMessagingCenter\t1\nmat\t5\nfirst.mat\t1\nsecond.mat\t1\nthird.mat\t1\n,..\t1\nvariable1\t1\n<3400x1\t1\ndouble>\t3\nvariable2<1143x1\t1\nvariable3<1141x1\t1\nmatlab\t1\ncombine\t4\nexpansion\t3\ndownloader\t1\nvalues-v9/styles.xml\t1\npreAPI9\t1\napi9\t1\n<uses-sdk\t1\nandroid:minSdkVersion=\"8\"\t1\nandroid:targetSdkVersion=\"9\"\t1\n/>\t3\nnaively\t1\napi8\t1\nmarket\t2\nvalues-9\t1\nbtw\t3\nDescription\t4\nandroid:TextAppearance.StatusBar.EventContent.Title\t2\nstyles.xml\t2\n/Google\t2\nDownloader\t2\nLibrary/res/values\t2\n-v9\t2\nAAPT\t2\napk\t6\nlibs\t2\nvalues-v9\t1\nrebuilt\t2\nDownloadManager\t1\n2.3.3\t1\nbuiding\t1\nvalues-v9/\t1\nRemoving\t5\nbesides\t4\nToolbar\t2\nhttp://developer.android.com/training/appbar/index.html\t1\nSLIDE\t1\nUP\t1\nonAnimationEnd\t6\nincremented\t2\ntickerView.startAnimation(animSlideUp)\t1\nAvoid\t2\nscaleY\t1\nLinearInterpolator\t1\nRepeat\t1\nsec\t1\nOnAnimationEnd()\t1\nFirebug\t2\nfirebug\t1\nmarks\t3\ninspect\t3\nFireBug\t1\naccounts\t1\nNSTabview\t2\nbars\t1\ntabless\t1\nQt\t10\ngraphicsView\t2\nfitInView\t2\nnicely\t3\nmaximize\t1\nmaximized\t2\nQuite\t1\nresizeEvent\t1\nrelies\t2\nQGraphicsView\t1\nQGraphicsScene\t1\nInstagram\t1\nKingfisher\t2\nthroughout\t2\nUIImageViews\t1\nobjective-C\t1\nRename\t1\n.igo\t1\ninstagram\t2\nexclusive\t2\nscarce\t1\nspecially\t2\nUIBarButtonItem\t1\nSystem\t6\nexcludedActivityTypes\t1\ncomplete/exhaustive\t1\nUIActivityTypes\t1\ngleaned\t1\ncode-complete\t1\ncommand-clicking\t1\nUIActivity\t1\nUIImage\t1\nSharing\t1\nDFD\t1\nVC\t1\nGDI+\t6\ncontexts\t1\nFont\t3\nSolidBrush\t1\nWhite\t1\nBlack.\t1\nPen.\t1\nwidely\t1\navoids\t2\ncreate/dispose\t2\nthread-safety\t1\naccesses\t1\nlifetime\t1\n200\t6\nshort-life\t2\ndisposed\t1\nasap\t1\nsometime\t2\noutage\t1\nwiser\t1\nconclusions\t2\ntheses\t1\nstrategies\t2\nCaching\t2\nSystem.Drawing\t2\ncheap\t1\n65535\t1\nbrush\t1\npen\t1\nmicrosecond\t1\nminiscule\t1\ninvolves\t2\nsizable\t1\nchunk\t4\ncaches\t2\nhogging\t1\nneedlessly\t1\ndangerous\t1\nblindly\t1\nfinalizer\t1\npainting\t1\nGC\t2\nquota\t1\nGDI\t2\n10,000\t2\nwrappers\t1\n10000\t3\nfinalizers\t1\ndiagnose\t1\nTask\t5\nColumns\t2\nUSER\t3\nleaked\t1\neye\t1\ncounts\t1\nsteadily\t1\nclimbing\t1\nspells\t1\ndoom\t1\nSitecore\t3\nSPEAK\t1\nwidth/height\t1\nbears\t1\nresemblance\t2\nSheerResponse.ShowModalDialog\t2\nsuffixed\t1\npx\t5\nSPEAK-based\t1\n7.5\t1\n8.0\t2\ncustomize\t3\n\\sitecore\\shell\\Controls\\jQueryModalDialogs.html\t1\nstring.Empty\t1\nForceDialogSize\t1\ninterfaces\t4\nconsiderations\t1\nProviding\t1\ngreatest\t1\nimplementers\t1\nimplementer\t1\nall--and\t1\nensures\t1\nALWAYS\t2\nNegative\t1\ngoo\t1\npseudocode\t2\nIVehicle\t3\nPutCarInGear()\t1\nfulfill\t1\nexpectation\t3\nCryptoJS\t1\naes256\t1\n//.Net\t1\nencode\t2\nBase64\t3\nJavascript(Cordova)\t1\ndata.frame\t2\nlogged_in\t2\ndeauthorize\t3\ncoercion\t1\nEventName\t1\nquicken\t1\nas.numeric(df$EventName)\t1\ndiff(as.numeric(df$EventName))\t1\nrecognition\t1\ndetector\t2\nsqllite\t1\n3.4\t2\nopencv\t5\n??\t6\nIndexing\t1\nzero-based\t1\n36\t2\nauthorization\t4\naccess_token\t1\nFunction\t2\ngetUser\t1\nfan\t2\nwall\t1\ncronjob\t2\nCoreData\t4\nthumbnail\t1\nTransformable\t1\nDoing\t3\nInspecting\t1\nsqlite\t1\ninform\t4\nrow/cell\t1\ntable/uicollectionview\t1\ncallbacks\t2\nlocking\t2\nconfinement\t5\nobsolete\t2\nperformBlock\t1\nperformBlockAndWait\t1\nenqueued\t1\nTypically\t3\nNSFetchedResultsController\t1\nobserves\t1\ninforms\t1\nBufferedImage\t2\nsquare\t5\nrotated\t2\nangle\t3\nintersects\t1\nGraphics2D\t1\nGridView1\t1\nrunat\t1\nGridview\t2\ncontens\t1\n.aspx.vb\t1\nmodally\t1\ndictated\t1\nmodalTransitionStyle\t1\ndismissViewControllerAnimated:completion\t1\nViewController\t1\nUINavigationController\t3\nsecondViewController\t1\nperformSegueWithIdentifier:sender\t1\nsegue\t2\nperformed\t3\ninstantiateViewControllerWithIdentifier\t1\nAvplayer\t1\nresume\t5\nCMtime\t2\ncurrenttime\t2\nseek(to:)\t1\nAVAudioPlayer\t1\nAVplayer\t2\nAudio\t3\nUnwind\t1\n2.in\t1\nre-download\t1\npurse\t1\nTextViews\t1\n.gradlew\t1\ncreateCoverageReport\t1\ncrashing.\t1\n98%\t1\nnexus\t1\n4.4.\t1\nplug-in\t2\nBill\t1\ngradle\t3\njacoco\t3\npackaged\t1\nInstrumentation\t1\njava.lang.VerifyError\t1\n21+\t1\nHooray\t1\ntestCoverageEnabled\t1\n.ec\t1\nApplying\t1\nhurt\t1\nreportsDir\t1\nbuild/outputs/reports/coverage/debug/index.html\t1\ncraigslist\t2\naddress(zip)\t1\ncity-wise/state\t1\n-wise\t1\nIndeed\t1\nCraigslist\t1\nsites/cities\t1\nprebuild\t1\ngeocoding\t1\nTiny\t1\nGeocoder\t1\nBing\t1\nsort-by-nearest\t1\ngeospatial\t1\nMongoDB's\t1\nreproduced\t1\noptimizations\t1\nreplicates\t1\nassembler\t1\nbuggy\t1\nEnv\t1\n2003\t1\nSP1\t1\nVS2008\t2\nfatally\t1\nconfuses\t1\nJIT\t2\noptimizer\t3\n41\t1\nconcluded\t2\nString.Concat()\t1\n5c\t1\nconnect.microsoft.com\t1\nbeta\t1\nx86\t4\ndisassembly\t1\nnobugz\t1\nunoptimized\t1\nforge\t2\ndwg\t2\npreparing\t1\nconman\t1\nSummary\t2\nRVT\t1\nexternalId\t2\nRevit\t5\nUniqueId\t1\nRvtMetaProp\t1\nadd-in\t7\nsuccinct\t1\nUnique\t1\nViewer\t3\nElements\t2\ndealing\t4\ndbId\t1\n.getProperties()\t1\nElementID\t1\n12345\t1\nUniqueID\t1\n.getProperty()\t1\nsurprised\t1\nevoke\t1\nFEB\t1\nAuthorization\t1\npostman\t2\nhttp://localhost/forms-basic/secure/org/data/f0720c16-d4b8-442f-8674-2d7fbdab8afc/F_Form1/8d4dfeed-aa11-45fc-a958-23d62d9328cc\t1\napplication/atom\t1\n+xml\t2\nCombobox\t1\nwich\t3\ntheese\t2\ndatavalidation\t1\nICollection\t1\nintitialized\t1\nPersistentGenericSet\t3\n-or\t1\nISet\t1\nIesi.Collections\t1\ngap\t1\nBag\t1\nIList\t2\n<T>\t1\nSet<T>\t1\nw\t2\nfacade\t1\nDTOs\t1\nJimmy\t1\nBogards\t1\nAutomapper\t1\nre-reading\t1\nDavid\t1\nBrion\t1\ninstaller\t7\nInstallshield\t1\nRegDBGetKeyValueEx\t1\nInstallscript\t3\nbackslash\t3\nTARGETDIR\t2\nChinese\t1\nJapanese\t1\nKorean\t1\nbackslash.This\t1\npollutes\t1\nwrongly\t1\ntranslates\t1\nroot-cause\t1\nUNICODE\t1\ncurrency\t7\nhttp://www.siao2.com/2005/09/17/469941.aspx\t1\nm_reqPath\t1\ntreating\t3\nnull-terminated\t3\nRegQueryValueEx()\t2\nChances\t1\nterminator\t4\nterminated\t1\nleaking\t1\nRegOpenKeyEx()\t1\nsucceeds\t1\nRegGetValue()\t1\ndeals\t4\nhttp://codepen.io/colintoh/pen/tGmDp\t1\nfixing\t2\nhttps://jsfiddle.net/rq9nm772/1/\t1\nparseResponse()\t1\nonPostExecute\t1\nprogressbar\t2\nnotifydatasetchange\t1\nnotifyDataSetChange()\t1\ndoInBackground()\t2\nsuspicious\t2\ncityList\t3\nactiveOrders\t3\nre-drawn\t1\nsetNotifyOnChange(false)\t1\nmAdapter\t1\ndelay\t5\nnotifyDataSetChanged()\t1\nhttp://developer.android.com/reference/android/widget/ArrayAdapter.html#setNotifyOnChange(boolean)\t1\nMulti-threading\t1\nAsyncTasks\t1\nappearing/attempting\t1\npitfalls\t1\nprivilege\t1\nlisteners\t3\nordersDatabase\t1\nRewriteRule\t2\nCondition\t1\nsecure-email\t1\n2.4\t1\nmod_rewrite\t2\nparticularly\t3\nProgressive\t1\nsynonyms\t1\nsynonym\t1\ntuple\t4\ndifficulty\t2\ndeciphering\t1\nwound\t1\ncomposing\t1\nfst\t5\nsnd\t1\nshaped\t1\nconsumes\t1\nobserving\t2\nPGM\t1\nlecture\t1\nsemester\t3\nDefines\t1\n\\ifdefined\t2\n\\fi\t1\nIncomplete\t1\nelses\t1\nPlots\t1\ncurved\t1\nbook\t11\nsimple/basic\t1\nManipulate\t1\nparameterized\t1\ninspiration\t1\nDemonstrations\t1\ntriangle-related\t1\ndemonstrations\t2\ngeometry-related\t2\nJay\t1\nWarendorff\t1\nHe\t1\nstructured\t1\nangleArc\t1\nhierarchial\t1\ndimensional\t2\n-3\t2\n&$a\t1\nnon-root\t1\nparents\t1\nrecordset\t1\nEnter\t1\nParameter\t2\nBeyond\t1\nDAO\t1\nExecute\t1\ndbFailOnError\t1\nImagine\t3\nRegarding\t2\nbranching\t1\nensured\t2\nevaluated\t5\nefficent\t1\nretrace\t1\ninterupt\t1\ndo/while\t1\ninvoking\t7\narithmetic\t6\nActingPointer\t2\nOriginPointer\t1\nSOME_GIVEN_AMOUNT\t1\ndecremented\t2\nGson\t3\nWrite\t2\ntoString()\t1\nLjava.lang.String\t1\n@5527f4f9\t1\nxmlHttpRequestObject.responseText\t2\n$http.get().success\t1\n$.ajax({success})\t1\ndual\t1\nthumbs\t1\n.change\t1\nhttps://fiddle.jshell.net/elliottjb7/fj9ot08v/\t1\n(.change())\t1\n8-10\t1\nJPanel\t4\nGameWindow\t3\npanels\t8\nMainMenuPanel\t1\nbeans.xml\t1\nemployed\t2\nCache-Control\t1\nno-cache\t1\nno-store\t1\nPreferences\t1\nfascinated\t1\nember.js\t3\nnode.I\t1\nmailgun-js\t2\nparse-cloud\t1\nember\t2\nEmber\t1\ncircumstances\t2\nmail-sending\t1\njQuery-Ajax-Call\t1\nobservable\t8\nDrag\t2\nDrop\t4\nAlt\t1\nDragDrop\t2\nirregular\t1\n/Left\t1\ndetermined\t6\nSpecially\t1\nDragLeave\t7\ndelete/add\t1\nGridData\t1\nTelerik\t1\nsignal\t3\ndisambiguate\t1\ndropping\t1\nsatisfied\t6\nOverride\t2\nbindings\t6\norganize\t2\nbaseline\t3\noptionally\t2\ncrc\t1\nchecksum\t8\nreplication\t4\nlengthy\t1\nSERVER\t1\nchecksum_binary\t1\nAlter\t1\nseparator\t6\nconcat\t1\nmessing\t2\nnode_modules\t5\nhttps://npmjs.org/doc/json.html\t1\nkeyword\t6\nfinalAnswer\t1\nBreakpoints\t1\nonResume()\t1\ndoinbackground\t1\n.gradle\t1\n.AndroidStudioPreview\t1\nnuclear\t1\ndataframes\t1\nlist1\t1\ndplyr::filter\t1\n%in%\t1\nRichard\t1\nBackbone\t2\nrouter\t1\npushState\t1\nbackbone\t2\nproblem/question\t1\nClients\t1\nDash.Views.Dashboard\t1\nrenderDashboard()\t1\n/dashboard\t2\nafther\t1\n$el\t2\n$(this.el)\t1\nalway\t1\nassumption\t5\n.dashboard\t1\nthis.el\t2\nsetElement\t1\nparams\t6\nresponse_status\t1\nhostname\t2\naltbeacon\t1\ndidEnterRegion\t1\nnotifier\t1\nbeacon\t2\nscan\t9\nfrequency\t3\nforewarned\t1\nbattery\t8\ntolerance\t1\ndrain\t2\n5*3600l\t1\nL\t1\nscanning\t1\ntradeoff\t1\nfor4.3\t1\n4.4\t2\njudgment\t1\nweeklyPlan\t1\nhasNext()\t1\nclosures\t8\ngroovy-code\t1\npesky\t1\nweeklyPlan.add\t1\njumped\t1\ndescribing\t3\nconstructs\t1\nrapidly\t1\nlargely\t1\npolitical\t1\naddressing\t2\notherwize\t1\nAjax\t2\nScripts\t1\nresponding\t5\ndata.Code\t1\nalert({}.Code)\t1\n{Code:''};alert(data.Code)\t1\nalerts\t1\nAFNetworking\t1\ngerman\t1\nä\t1\nü\t1\nö\t1\nSIGABRT\t1\nPrevSpeedDic\t1\ncircumstance\t1\nDriveInfoDic\t1\nEngine\t7\nunicodecsv\t1\nBlobstore\t2\nUnforuntately\t1\nblobstore\t1\ncron\t5\nBlobstoreDownloadHandler\t1\nblob\t5\nkeep/manage\t1\nyourapp\t1\nhttps://developers.google.com/appengine/docs/python/blobstore/overview#Writing_Files_to_the_Blobstore\t1\nIPA\t3\nlazy\t7\nXcode6\t2\nIdentifier\t1\nUPDATED\t2\nproject.pbxproj\t2\n@colinta\t1\ndiff\t1\npagerank\t1\nmxm\t1\nIteration\t5\nVariables\t1\nq\t7\nhost_rank[k]\t1\nk\t6\neucl\t1\ndo-while\t1\nsumPR\t1\nrepeats\t1\nUS$\t2\nXX.xx\t1\nGBP£\t1\nYY.yy\t1\nGBP\t2\nratio\t1\nUSD$\t1\nending\t6\n.xx\t1\nPrices\t1\ncents\t1\njquery.each()\t1\njquery(this).html(\"GBP£YY.yy\")\t1\nANY\t2\nso.\t1\nbenefits\t4\nalot\t2\ntextnodes\t1\nbenefitial\t1\nfastdom\t2\ndom\t2\nloose\t2\ninstant\t3\nblade\t6\ntemplating\t1\nOddly\t1\nattempts\t8\nClear\t1\nBlade\t1\nServlets\t1\n5.5\t2\n30minutes\t1\nsayin\t1\nSounds\t4\ntiming\t2\nweb.xml\t2\n60\t3\nsymptom\t1\nfashioned\t1\nscriptlets\t1\n<%\t1\nservlets\t1\nrequest/response\t1\nbusiness\t7\nnaildown\t1\nNullPointerException\t1\nhomepage_jsp.java\t1\n107\t1\ntrackback\t1\nhomepage.jsp\t1\nrequest.getSession()\t1\nrequest.getSession(false)\t1\netcetera\t1\norientdb\t1\nmvc-dispacher-servlet.xml\t1\n2.2.13\t1\nconfiguring\t1\nit.if\t1\nNT\t3\nAutomation\t1\nxls\t1\nxlsx\t1\nxlsm\t1\nthreading/security/license\t1\nimposed\t1\nup/embraced\t1\n2007\t2\nimpovement\t1\nSpreadsheetGear.Net\t1\npurchase\t1\nEvaluated\t1\ncollegue\t1\nAppeared\t1\ncomparable\t1\nGemBox\t1\nMapper\t1\nSmartXls\t1\nActiveXls\t1\nFairly\t1\npreference\t5\nMethods\t1\nclaim\t1\n1M\t1\ncheaper\t1\nFlexCel\t1\nhelp/API\t1\nKoogra\t1\ndocumentations/information\t1\nFileHelpers\t1\nLowest\t1\nproximity\t1\nSyncFusion\t1\nBackOffice\t1\nMedium\t1\ninconsistent\t4\nAttempted\t1\nencourage\t1\nie10\t1\nwork-around\t1\nbackground-color\t1\nIE10\t1\nVirtual\t1\nretarded\t1\nbelive\t1\n<html>\t1\nYep\t1\nExplorer.\t1\n:hover\t1\n<a>\t1\n<button>\t1\nSSIS\t1\ncrashed.I\t1\neventviewer\t1\nordered\t7\nmutator\t2\nmutations\t1\nQuickly\t1\nscrapy.item.Item\t1\ntouched\t3\nItems\t2\nrestructure\t1\nchild-parent\t1\ndimension\t5\nsubarrays\t1\nmultisort\t1\nSort\t3\nmulti-dimensional\t1\nBorderLayout\t4\nJComponents\t1\nJLabels\t2\nJTable\t1\nJScrollPane\t1\nrich:dataTable\t1\nrendering.I\t1\nbacking-bean\t1\nJSF-2.0\t1\nRichFaces-4\t1\nnullpointerexception\t1\neaser\t1\na4j:jsFunction\t1\nreRender\t1\nDOMXpath\t1\ninputbox\t1\nevent.In\t1\ncalender\t1\ndatepicker\t2\nflawlessly\t2\nLambda\t5\nProxy\t4\nIntegration\t1\nun-check\t1\nmalformed\t1\nPOJO\t2\nArdent\t1\ncustomers\t3\nCanadian\t1\nzip\t3\n5-9\t1\nstrip\t2\npunctuation\t1\npostal\t1\npostal_codes\t1\nzip_code\t1\nTheoretically\t1\ncountry\t1\nrequired_without\t1\nraspberry\t2\npi\t3\ndies\t1\nPi\t1\n/var/log/wtmp\t1\nflags\t4\n-F\t1\n-R\t2\nsuppresses\t1\n-x\t1\nen\t2\nrunlevel\t1\nrecomend\t1\nflushed\t1\nelapsed\t1\nrecover\t3\n4.4.12(1)-release\t1\nPowerline\t2\n2.5.2-1\t1\nPS1\t1\nconfig.json\t1\ncolors.json\t1\ncolorschemes/shell/default.json\t1\nthemes/shell/default.json\t1\nps\t2\npowerline\t1\nnotifications\t6\nscheduleNotification\t1\nnotifies\t1\nEmployeeNo\t2\nEngagementID\t2\n0507\t1\nEngagement\t1\nDie\t1\ndie\t3\nbrackets\t4\ngetFaceValue\t1\nrolling\t2\nrowA\t3\n=[\t2\nindex-variable\t1\nduplicity\t1\nsubroutines\t1\nTry_2.pl\t3\nsubroutine\t1\nTry_1.pl\t2\nTry_1.pm\t1\n.pm\t1\n.pl\t1\nVectors\t1\nHashMp\t1\nbank\t3\nArrayList/Vector\t1\nkey-value\t2\ngo-to\t1\ntrees\t1\nforest\t1\nVector\t6\n2001\t1\nrountine\t1\nhover\t2\n0.100000000000001\t1\n5.2.1\t1\ncompiling\t4\nrepresentable\t1\nIEEE\t1\nfalls\t1\ncamp\t1\napproximation\t2\n0.25\t1\nfixed-sized\t1\ninherent\t1\nchop\t2\nnib\t3\nresident\t2\ninelegant\t1\nunloaded\t1\nviewDidUnload\t3\nprerequisite\t1\nlow-memory\t1\n-(void)viewDidUnload\t1\nsetRootTableViewController\t2\nUITableViewController\t1\nreloadData\t2\nCustomTableViewController\t1\nrootViewController\t1\ninitWithRootViewController\t1\n\"\",'',[]\t1\nhttps://support.microsoft.com/en-us/kb/298955\t1\nTRANIN'AS\t1\nNAME\t3\nWHEN\t3\nALT3.TRANINDT\t2\nBETWEEN\t2\n20150603\t1\n20150601\t1\nAS\t3\nCurrentMonth\t1\n20150501\t1\n20150531\t1\nLastMonth\t1\nALT3\t1\nago\t7\nperson__name\t2\nperson__email\t2\nhttp://jsfiddle.net/376fLujs/3/\t1\nconsole.log(\"working\")\t1\nre-using\t1\nhttp://jsfiddle.net/376fLujs/4/\t1\nGitLab\t2\nbellow\t2\nunzip\t1\nMAC\t2\n.git\t3\nnuisance\t1\ntreats\t1\nhonest\t3\n10.8.4\t1\nGroupMe\t3\ninvite\t1\nScringo\t3\nGroup\t1\nimply\t2\nrooms\t1\nchats\t1\ncustomizing\t2\ninvitation\t3\nScringoCommentButton\t1\nhttp://www.scringo.com/docs/android-guides/popular/setup-chat-rooms-and-forums/#Adhoc\t1\nscringo_comment_button.xml\t1\ncsv\t10\naccountID\t1\n000005\t1\n000016\t1\nzeroes\t1\nwebtest\t1\nMKV\t2\nsubtitle\t1\n4K\t1\nmkv\t3\n20GB\t1\nFAT16/32\t1\nexFAT\t1\n4GB\t1\nFAT32\t1\ngb\t1\n2GB\t1\n3Gb\t1\nmain.mkv\t2\nmovie\t1\nfolder/\t1\npart1.dat\t1\npart2.dat\t1\npart3.dat\t1\npart4.dat\t1\nxen\t1\nwin\t2\nxp\t2\npc\t4\nselenium-rc\t1\npear\t2\nsits\t2\nremote-controlled\t1\nwindowses\t1\ngray\t4\nbase64_decode()\t1\nos\t2\ncorruption\t1\nPhotoshop\t1\nweigh\t1\n0.7k\t1\nrecognizes\t3\n1440\t2\n8-bit/color\t1\nRGB\t1\nnon-interlaced\t1\nrc\t3\nselenium-server.jar\t1\naccross\t1\n1.0.1\t1\n$this->selenium->windowMaximize()\t1\n$screenshot\t1\n$this->selenium->captureScreenshotToString()\t1\nTesting_Selenium\t1\nAndras\t1\nforums\t1\ndesperate\t1\nimput\t1\napologies\t1\nupsets\t1\n16:38:24.562\t1\nINFO\t2\nbase64\t4\na5304a287eb244028c8c843b294bf98f\t1\njava.net.SocketException\t1\nSoftware\t1\nabort\t1\njava.net.SocketOutputStream.socketWrite0(NativeMethod)\t1\njava.net.SocketOutputStream.socketWrite(UnknownSource)\t1\njava.net.SocketOutputStream.write(UnknownSource)\t1\norg.mortbay.http.ChunkingOutputStream.bypassWrite(ChunkingOutputStream.java:151)\t1\norg.mortbay.http.BufferedOutputStream.write(BufferedOutputStream.java:142)\t1\norg.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:423)\t1\norg.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:414)\t1\norg.openqa.selenium.server.SeleniumDriverResourceHandler.handleCommandRequest(SeleniumDriverResourceHandler.java:370)\t1\norg.openqa.selenium.server.SeleniumDriverResourceHandler.handle(SeleniumDriverResourceHandler.java:125)\t1\norg.mortbay.http.HttpContext.handle(HttpContext.java:1530)\t1\norg.mortbay.http.HttpContext.handle(HttpContext.java:1482)\t1\norg.mortbay.http.HttpServer.service(HttpServer.java:909)\t1\norg.mortbay.http.HttpConnection.service(HttpConnection.java:820)\t1\norg.mortbay.http.HttpConnection.handleNext(HttpConnection.java:986)\t1\norg.mortbay.http.HttpConnection.handle(HttpConnection.java:837)\t1\norg.mortbay.http.SocketListener.handleConnection(SocketListener.java:245)\t1\norg.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)\t1\norg.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)\t1\nBrowserMob\t1\nmonitoring\t3\nscreenshots\t6\nVNC\t2\nauto-logs\t1\nProgram\t2\nFiles->Startup\t1\nadventures\t1\noutlined\t2\nstar\t6\nstars\t4\nim1\t1\nim4\t1\nR.drawable.star\t1\nreact-native\t2\nrnpm-install\t1\nERR\t1\nlinking.\t1\nUIAppFonts\t1\naccidentally\t2\nInfo.plist\t1\nRestoring\t1\nmarking\t2\nasterix\t1\nSurely\t1\n/n\t1\nwxWidgets\t4\nborderless\t2\nmovable\t1\nwxPanel\t1\nwxPython\t1\narticle/question\t1\nEVT_LEFT_DOWN\t2\nhttp://docs.wxwidgets.org/2.6/wx_samples.html\t1\nhttp://docs.wxwidgets.org/2.6/wx_eventhandlingoverview.html#eventhandlingoverview\t1\ncritical\t2\nsemaphores\t1\ngranted\t1\ncan't\t1\nMacOS\t2\nLion\t2\nhost-part\t1\nGRANT\t1\n@'localhost'\t1\nTravis\t3\n.env\t2\nenv-file\t1\nafter_failure\t1\n/Users/travis/.opam/system/build/topkg.0.9.0/topkg\t1\n-19768-81a3ce.env\t1\nyml\t1\nbefore_install\t2\nideally\t3\nmaintaining\t3\nbisect\t1\nAboveNumber\t1\nunordered\t1\nSSO\t1\nWaffle\t3\nseams\t1\nKerberos\t4\ntrust\t1\ndo-loop\t1\nThomas\t1\nSSPI\t1\ninvolving\t1\ntickets\t1\nbehalf\t2\nguarantees\t1\nTicket\t1\nGranting\t1\nWindows-specific\t1\nMIT\t1\nelasticsearch\t2\nenron\t1\nlocalhost:9200/_search\t1\nlocalhist\t1\nsite:example.com\t1\ninurl\t1\nhttps://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\t1\nUncaught\t2\nSpark\t7\n1.5.1\t1\nobservation\t5\nDataFrame\t7\nknwn\t1\ncomplicates\t1\nskipped\t3\nzero323\t1\nsucceed\t3\n''\t6\ntranslate''\t1\nPyspark\t2\npyspark\t2\nColumn\t4\nrdd\t1\nCloudera\t1\nspark-ts\t1\nsequential\t4\ntime-windowed\t1\nimputing\t1\nhttp://blog.cloudera.com/blog/2015/12/spark-ts-a-new-library-for-analyzing-time-series-data-with-apache-spark/\t1\npopup()function\t1\npopup()\t1\nBetter\t3\nexcel2007\t1\npoi.jar\t1\njdk1.6.But\t1\nphenomenon\t1\nHashMap())\t1\njava.util.ArrayList\t1\nMap.clear()\t1\nArrayList.add()\t1\noverridden\t1\nSnippets\t1\nrowForSheet(List)\t1\nAmazon\t7\nRedshift\t8\nunload\t4\nRedShift\t1\nS3\t4\nbucket\t3\ngraceful\t2\ncleanup\t2\nenumerate\t8\ns3cmd\t1\ns3tools\t1\nhttp://s3tools.org/s3cmd\t1\nroles\t9\nnet.tcp\t1\n808\t1\n810\t1\n811\t4\nUserService\t1\n<AllowAllTraffic/>\t1\n<WhenSource\t1\n...>\t1\nFixedPort\t1\nPortRange\t1\n=\"*\"\t1\nNetworkTrafficRules\t1\nWebRole.cs\t1\nsudden\t1\nreceiving(Internal)\t1\nWebRole\t1\nIP-addresses\t1\nc:\\data\t1\nquotes/tabs/newlines\t1\nc:\\\\data\t1\nc:/data\t1\nslash\t3\nr'c:\\data'\t1\ncareful\t3\nmultiplication\t4\n3*\t1\nbackslah\t1\nunclosed\t1\nRefer\t1\nString.replaceFirst\t2\nuntrusted\t3\nappropriately\t4\nString.substring\t1\nmulti-digit\t1\ncharArray\t2\narray.char[][]\t1\nchar[6][6]\t1\nguidance\t2\n6*6\t1\nflat\t1\nkeyField\t1\nvalueField\t1\nCustomerNumbers\t1\ncustomer_number\t1\nCustomerNumbers.customer_number\t1\nGroups.name\t1\nshoud\t1\n@drmonkeyninja\t1\nCustomer\t1\nNumbers\t1\nCakePhp\t1\nsoultion\t1\nMyApp.Web\t2\nMyApp.Logic\t3\nMyApp.Data\t3\ngridview\t2\ntablename\t1\npaging\t1\nGet_Data\t1\ntier\t1\ncreate/load/consume\t1\nspecialize\t1\ncommunicating\t1\ncustomer\t6\nhotel\t2\nbooked\t1\nsimplyfy\t1\nrecommendation\t2\ndatatables\t1\nmotivation\t2\ncraig\t1\nlarman\t1\numl\t1\nIE8\t2\nIE11\t4\n4.5\t1\nintranet\t1\nUICollectionViewController\t1\n>2000\t1\nbecame\t1\nchoppy\t1\nInstruments\t1\nlayoutAttributesForElementsInRect\t1\nprepareLayout\t1\n25%\t1\ncpu\t5\nenumerating\t3\nNSIndexPath\t1\nisEqual\t1\nsectioned\t1\nUICollectionViewFlowLayout\t1\nsmooth\t2\ndictionaries\t1\nNSPredicate\t1\n1.5.4\t2\n1.6.5\t1\nvirtualen\t1\nv)\t1\nre-deploy\t1\n--upgrade\t1\nexpert\t2\nDriven\t1\nDevelopment\t2\nEd\t1\nWindoze\t1\nW10\t1\n3.6\t2\npip3\t2\n1.11.8\t1\nknowledgeable\t2\n3.x\t1\nweblogic\t2\nredis\t3\nreal-time\t1\nmotors\t1\nMDI\t1\nMultithreading\t1\nVCL\t2\nTThread\t1\ndoubles\t3\nChildForm\t2\nSynchronize\t2\nCriticalSection\t1\nPostMessage\t2\nintermediary\t1\nTThreadList\t1\nmaintainable\t2\nreadings\t2\ninvest\t1\nFIFO\t1\nmessaging\t1\nDelphi\t1\nfreely\t2\nTAnyValue\t1\nhttp://www.cromis.net/blog/downloads/\t1\nproduction\t7\nemailing\t1\nnee\t1\ndataname\t1\npush()\t3\nconcat()\t1\nSOLUTION\t1\noldish\t2\nSymfony2\t3\n2.0-RC6\t2\n__construct\t2\nRoleSecurityIdentity\t4\nDecember\t2\nRole\t3\nRoleInstance\t2\nACL\t3\nROLE_GROUP1\t5\nROLE_GROUP\t1\nobject-level\t1\nACE\t1\nROLE_GROUP2\t1\ndrilled\t1\nSymfony\t1\npermission\t3\n$sid->getRole()\t1\nthis->role\t1\nmark\t5\nForeign-key\t1\nFkOriginalTextId\t1\nOriginalText\t5\nkey/value\t1\ncustomized\t2\nCustomText\t6\nStaff-member\t1\nLambda/Linq\t1\nTextValue\t1\noverriden\t2\nCTE\t2\npercentages\t7\n<h1>,\t1\n<h2>\t1\npercentage\t2\nh2\t1\nH1\t3\nH2\t1\nfalowing\t1\nFONT\t1\nSIZE\t1\nem\t4\none()\t1\ndelegated\t1\n1.7\t2\nlive()\t1\nnon-dynamic\t1\n.one\t1\nsense.\t1\nHiddenfield\t1\nvalue.\t1\nhttp://jsfiddle.net/sushanth009/Fakb5/\t1\n.live\t1\ndumb\t2\nplayerHand\t2\nrandint\t1\nconfusingly\t1\n@IfProfileValue\t14\n@Profile\t6\n@ActiveProfiles\t9\nEnvironment\t4\nWut\t1\ndeprecate\t1\n@IfEnvironment\t1\n@IfProfile\t1\n@ActivateProfiles\t1\nCommentary\t1\nAnswers\t1\nactiveProfiles\t2\nActiveProfiles\t1\nhttps://stackoverflow.com/a/23627479/388980\t1\nyesterday\t1\nevolution\t1\nselectively\t1\n@Service\t1\n@Configuration\t1\n@Bean\t1\nApplicationContext\t3\ndesignate\t1\n3.1\t1\nmisleading\t1\nconsidering\t5\nsemantics\t2\nJavaDoc\t1\nspring.profiles.active\t2\nAbstractEnvironment.ACTIVE_PROFILES_PROPERTY_NAME\t1\nharmony\t1\nconsult\t1\nJIRA\t1\ndiscussions\t2\nhttps://jira.spring.io/browse/SPR-7754\t1\nhttps://jira.spring.io/browse/SPR-8982\t1\nhttps://jira.spring.io/browse/SPR-11677\t1\nclarifies\t1\nSam\t3\nauthor\t3\nTestContext\t1\nnailed\t1\npropagate\t1\nSystem.property\t1\nassumeTrue/False\t1\nflyway/other\t1\nForm1\t2\nwithDataGridView`\t1\nSHORT\t1\nDESCRIPTION\t3\nForm2\t4\ntextBox1\t1\ntextbox4\t1\n\\Form1\t1\nMove\t1\nForm_Load\t1\nmc\t1\nAMO\t1\neditors\t2\nAddon\t1\nreviewing\t1\nunsafe\t3\ninsertion\t4\nunsanitized\t2\nParts\t1\nUi\t1\nsanitized\t1\nfirebase\t3\nrealtime\t1\ndivided\t1\n11G\t1\nREGEXP_REPLACE\t1\nSUBSTR\t1\n^-\t1\nnon-hyphen\t1\nhyphen\t2\nvalues.Something\t1\narray($my_arr)\t2\n4($my_arr[0]....$my_arr[4])\t1\narray_slice\t2\nksort\t1\ndateStart\t1\ndateEnd\t1\ntabled-valued\t1\nScalaTest\t2\nSystem.getProperty\t1\nIntellij\t1\n-Dmy.command-line.property\t1\nwww.example.com/getTest/1/\t1\n'yescourse:academypage_url'\t1\nargs\t5\nNone]\t1\nNoReverseMatch\t1\nReverse\t2\nacademypage_url\t1\n'{}'\t1\nfirsty\t1\nsub-pattern\t1\nnumerics\t1\nkwargs\t1\nDuring\t2\nhttp.authorizeRequests()'s\t1\n/bla\t2\nadmins\t1\nbla\t1\ndynamicaly\t1\nspring-loaded\t1\nJRebel\t1\nauthorisations\t1\nSphinx\t1\ncharset_table\t3\nnatural\t3\nrestated\t1\ncollations\t1\nutf8_general_ci\t1\nhttp://thefsb.wordpress.com/2010/12/\t1\nunsafeNew\t3\nhttps://hackage.haskell.org/package/vector-0.11.0.0/docs/src/Data-Vector-Generic-Mutable.html#new\t1\nbasicInitialize\t1\nJquery\t1\nSupersized\t1\nMagento\t1\nsustitute\t1\nsupersized\t1\njQuery.noConflict()\t1\nsupersized()\t1\nFull\t1\n‌\t3\nalert(document.getElementsByTagName('div')[0].innerHTML)\t1\n<div>This\t3\nzero-width&zwnj;non-joiner,\t3\nnon-breaking&nbsp;space\t3\n&amp;\t3\nampersand</div>\t3\nhttps://jsfiddle.net/yst1Lanv/\t1\n\\u200c\t1\ndocument.getElementsByTagName\t2\n('div')[0]\t2\n.innerHTML.replace\t2\n\\u200c/g\t1\n‌'\t2\n(/‌/\t1\nYong\t1\nQuan\t1\nnicer\t1\nsales\t4\naggregated\t1\n22Gb\t1\nPlenty\t1\nsqlsrv\t1\nMSSQL\t1\nERP\t1\nguessed\t1\norders/transactions\t1\nSubqueries\t1\nWebApi\t2\nback-end\t1\nAdmin\t1\nReadonly\t2\n403\t2\nForbidden\t2\nif(User.IsInRole(\"Readonly\"))\t1\nForbidden()\t1\nupdate-able\t1\nNotAuthorized\t1\nAuthorize()\t1\nforbid\t2\nrestricted\t2\nself-reference\t1\nparent_id\t1\nfolloed\t1\ndoctrine\t2\nCategory->addChildren\t1\nDoctrine\t1\nLWJGL\t2\nbackups\t2\n8.1\t4\nincompatibility\t1\ninbuilt\t1\nGL11.glEnable(GL11.GL_DEPTH_TEST)\t1\nforgotten\t3\n-Kore\t1\naswell\t1\nGL11\t1\nglClear(GL11\t1\nGL_COLOR_BUFFER_BIT|GL11\t1\nGL_DEPTH_BUFFER_BIT\t1\n);\t1\nLocationManager\t1\nGets\t2\nCalls\t1\nPOIs\t1\nTabActivity\t3\nBearing\t1\ndocked\t2\ncopes\t1\naccuracy\t1\nmapview\t1\nrough\t1\nMartin\t1\nsussed\t1\nLocationListener\t1\nlopper\t1\nLooper.Loop()\t1\nrequestLocationUpdates\t1\nlocationmanager\t1\nlooper.quit()\t1\ncancelling\t2\nlooper\t1\ncancelled\t2\nUIImageView\t4\nimageView\t2\nalloc\t2\ninitWithFrame:CGRectMake(0,40,100,100)\t2\nincorporate\t1\nhttp://placehold.it/250x250\t1\nhttp://placehold.it/100x100\t1\nimageView.layer.rasterizationScale\t1\nimageView.layer.shouldRasterize\t1\nNSData\t1\ndataWithContentsOfURL\t1\nNEVER\t1\ncase.\t1\ntest.doc\t1\ncommons\t1\nFormFile\t1\ndoc.The\t1\nAdvance\t2\nmime\t1\nhttps://technet.microsoft.com/en-us/library/ee309278(office.12).aspx\t1\nArrayBuffer\t1\nBlob\t2\nEncoding\t1\nPop\t1\nclauses\t7\nORs\t1\nStops\t1\nshort-circuiting\t1\nhttp://en.wikipedia.org/wiki/Short-circuit_evaluation\t1\nhttps://developer.mozilla.org/en/JavaScript/Reference/Operators/Logical_Operators\t1\ncopy/drag\t1\n0s\t1\nPick\t1\nzipcodes\t2\nchloropleth\t1\nggplot\t1\nlat\t1\nhavent\t1\nFit\t8\nElizabeth\t10\nBennett\t10\n90.0\t2\nFitzwilliam\t2\nDarcy\t2\n90.55\t1\nRomeo\t2\nMontague\t2\n90.3\t1\nJuliet\t2\nCapulet\t2\n.......................................................\t1\nconcatenating\t1\n(\"+\")\t1\nextraneous\t1\nNew\t5\n0.55\t1\n0.3\t1\n..............................................\t1\nthankfully\t1\nsolid\t2\nconclusion\t1\nSyntax\t1\nInvalid\t2\nclarification\t1\nunusual\t1\nmassively\t1\nadmittedly\t2\nleft-associative\t1\nunary\t3\n\\t\t6\nUnary\t1\npromotion\t1\nSystem.out.println\t5\n\\t'\t3\nsigns\t1\nRemember\t3\n+2\t1\n-2\t6\nHello9\t1\nrotating\t1\nfyi\t1\nMandrill\t3\nchoices\t1\ntrouble-shooting\t1\nChris\t3\nM\t6\nhttps://mandrillapp.com/api/docs/messages.php.html\t1\ncontacts\t4\nFixed3D\t1\nsunken\t1\nFixedSingle\t1\nMagnifier\t1\ntwo-pixel\t1\ntwo-pixel-wide\t1\nrectangles\t3\nAffectedControl\t1\nweirdly\t1\ncom.mysite.bookingmeeting.dao.implementation.UserProfileDaoImpl.findAllUsers(UserProfileDaoImpl.java:47)\t1\norg.apache.jsp.admin.ManageUsers_jsp._jspService(ManageUsers_jsp.java:133)\t1\nfindAllUsers()\t1\nUserProfileDaoImpl()\t1\nManageUsers.jsp\t1\nDeleteUserForm.jspf\t1\nDeleteUserForm.jsp\t1\nUserProfile\t1\nSpotDetails\t2\nprogramically\t1\nUntill\t1\nWindRose\t4\nAsynTask\t1\nExperience\t1\nsuffering\t1\nDrawRose\t1\nDraw\t1\ninjectible\t3\nSubject\t2\nreactive\t1\n1.create\t1\nDTO\t1\n2.import\t1\n3.create\t1\n4.access\t1\n1.4.1\t1\nlaptop\t1\ninteractively\t1\nHomebrew\t1\nspark-submit\t3\n/usr/local/Cellar/apache-spark/1.4.1/\t1\nincorrectly\t3\n@Def_Os\t1\ndrops\t3\nAllowDrop\t2\nhooked\t1\nDragEnter\t2\nDragOver\t1\nUIElement\t1\nbubbling\t3\nenables\t2\nnesting\t2\ninter-application\t1\npresses\t1\nEsc\t1\ncancel\t8\ne.OriginalSource\t2\nhittesting\t2\nItemsControl\t6\nListbox\t1\nvisuals\t2\nGrids\t2\ntextblocks\t1\nhappily\t1\nexpands\t1\ncancels\t1\nundoes\t1\nListBox\t6\nhopes\t1\nPreviewMouseMove\t1\nenacting\t1\nDoDragDrop\t2\nanalyze\t1\nDataObject\t1\nDragEventArgs\t1\nlistbox\t1\ne.Source\t2\nDropTarget\t1\nDropOver\t1\nProtractor\t1\nrepeater\t1\nsummary\t5\ne2e\t1\ngetText()\t1\ngetText()'s\t1\ninnodb\t1\ninnodb_file_per_table\t1\nibd\t2\n3GB\t1\nfile(a.sql)\t1\na.sql\t4\n2.5Gb\t1\nb.sql\t2\nibdata1\t2\ndest\t1\nwon\t1\nCoda\t1\nlocation.href\t1\nurl.value\t1\nw3schools\t1\nManga\t1\nREFERRER\t1\nhomepage\t1\nHTTP-REFERRER\t1\nhttp://centraldemangas.com.br/\t1\nEstou\t1\ntentando\t1\nsalvar\t1\numa\t1\nimagem\t1\nque\t1\nvem\t1\nmas\t1\nsempre\t1\ncai\t1\nadjacent\t2\ntechnology/language\t1\n--what\t1\nautomating\t2\nprocessing/summary\t1\nclean-up\t1\nsummaries\t2\npost-processing\t1\nautomate\t4\nmethod(s)\t1\ndbs\t1\nMAW\t1\nintervals\t1\nDBMS\t1\njobs\t3\nprocedures/commands\t1\ntagged\t2\nhttp://dev.mysql.com/tech-resources/articles/event-feature.html\t1\nchecklist\t1\nGREEN\t1\nYork\t2\ndata-city\t2\ncorresponds\t2\nth\t3\ntds\t1\nhttp://jsbin.com/leqinun/1/edit?html,js,output\t1\nmissmatch\t1\ngenerics\t1\nT\t2\nMcKeown\t1\nBaseRequest\t2\nListAlertsRequest\t2\nDoGetRequest\t1\nBaseRequest<BaseResponse>\t1\n<BaseResponse>\t1\nwa\t1\nEDIT2\t1\nevent.target.files\t1\ndefaultImg\t1\nsomthing\t3\n2nd-order\t2\nCRF\t1\nTensorflow\t2\ntf.contrib.crf.crf_log_likelihood\t1\nSecond-order\t1\nPreviously\t1\nRNN\t1\nimageupload\t2\nBest\t3\nHendrik\t1\nhttp://malsup.com/jquery/form/#options-object\t1\ndiver\t1\nHtml\t1\nuniversal\t1\nparagraphs\t2\nORDER\t1\nBY\t1\nunderscores\t1\nequally\t2\nnon-Abstract\t1\nheres\t1\nmetronome\t2\nhttp://www.cs.cmu.edu/~illah/CLASSDOCS/javasound.pdf\t1\nJButtton\t1\nClickForSound\t1\nPlsWork\t2\nPLEASE\t1\nactionPerformed\t1\nactionPreformed\t1\n@Override\t1\nnon-compile\t1\nnon-abstract\t1\nSHA\t1\nFind\t3\n--merges\t2\n--ancestry-path\t1\nbranches\t5\ngitk\t2\nmasterthat\t1\nAD\t13\nDeprovisioned\t1\nOkta\t6\nreactivate\t2\nMatt\t1\nEgan\t1\nhttps://github.com/mbegan/Okta-PSModule\t1\ndeprovisioned\t2\nProvisioned\t1\nprofiled\t1\ndeactivated\t2\nmastered\t2\n/api/v1/users/{{userId}}/lifecycle/activate?sendEmail=false\t1\nactivating\t2\nreactivated\t1\nvarbinary\t1\nXMl\t1\n$multi_array[0][1]\t1\ncount($ALPHABET[0][0])\t1\nTreat\t1\n$multiarray[0][1]\t1\ncount($multiarray[$index])\t1\ndoxygen\t1\nfile(s)\t1\nDoxygen\t1\nGuid\t1\nbigint\t1\nGuids\t1\nrebasing\t1\nrebase\t4\n-i\t3\nHEAD\t3\nsquash\t2\ncommit-4\t1\ncherry\t2\ncommit-2\t1\nassumed\t1\nCommits\t1\nEnterprise\t1\nCreated\t1\nsex\t2\nWill\t6\ndatasets\t2\n100k\t1\nobs\t1\nsurely\t1\nnHibernate\t1\ndrawback\t1\nkeyed\t1\nLK\t7\nvakue\t1\nLaziale\t1\nmet\t3\n2d\t1\nbarcode\t1\nscanner\t3\nCtrl+v\t2\nv\t2\nautofocus\t1\nFormatted\t1\nCFML\t2\nstring/text/base64\t1\novercome\t1\nCF\t1\nportability\t1\nexposes\t1\nbearing\t1\nBot\t1\nright-click\t1\ntop-level\t8\nsubmodules\t3\nrecorded\t5\nsubmodule\t3\nsubmodule-a.git\t2\nsubmodule-b.git\t1\nthinks\t4\nTop-level\t1\nSubmodule\t1\n--all\t1\nPlatform/Version\t1\nGNU/Linux\t1\n4.2.6-200.fc22.x86_64\t1\n2.4.3\t1\n2.5.0\t1\nre-confirmed\t1\nin-place\t1\nFedora\t1\n2.7.4\t2\npreserved\t1\ndisappeared\t1\nretrospective\t1\nreproduce\t3\nCI\t1\n120+\t1\nunhandled\t2\nBONUS\t1\nstabs\t1\nstaring\t1\nhttp://www.[yourwebsite].com/src/main/webapp/resources/js/template/Event/EventMainTemplate.html\t1\ny'all\t1\n#messages\t1\nscroll-able\t1\nul.messages\t1\nmsg-con\t1\ncompeting\t1\nfaced\t2\ncanonical\t3\nexpressive\t1\nintersection\t1\nconverters\t1\nexchange\t4\nXSD\t5\nsimples\t1\nB/C\t2\ndeconstructed\t1\nformalized\t2\nschemes\t3\nnontrivial\t1\ndesribed\t1\ndead\t1\nmirrored\t3\nsubspace\t3\nidentifying\t2\ntransparently\t1\nreasoner\t1\nspot\t4\nincoherent\t1\ndiscuss\t2\nexperts\t1\nontologies\t3\nimpression\t2\nontology\t8\nlong-lived\t1\ncoherent\t1\nsemantic\t2\nconstituents\t1\nmanaging\t1\ncomplexities\t1\nmachinery\t1\n-taken\t1\npermanent\t1\ndissipating\t1\nreconnecting\t1\nout-of-the-box\t1\ncompanies\t1\noff-the-shelf\t1\nAbstracting\t1\nmeta-model\t2\nMeta\t3\nFacility\t2\nMOF\t2\nTopic\t4\nInfoGrid\t1\nvocabulary\t1\nthesaurus\t1\nSpecification\t1\nIntroduction\t1\nTM4J\t1\nOpenDDS\t1\nPart\t1\nOCI\t1\nPaws\t1\nmetacpan.org\t1\nGCM\t4\nirrelevant\t2\nbtaylor\t1\nhttps://www.facebook.com/btaylor\t1\nhttps://graph.facebook.com/btaylor\t1\nwishlist\t1\ntracker\t1\nuploads/forms\t1\nFileField\t2\nUploads\t1\nCripsy\t1\ncustomise\t1\ntransport.FileSender\t1\nMGBNSender\t1\nclass-path\t1\nSun\t1\nOct\t1\n15:30:30\t1\nFriday\t2\n20:00:00\t1\nMST\t2\nSept\t1\nSunday\t5\n21:00:00\t1\nSep\t2\n14:30:30\t1\nCarbon\t2\nhttps://packagist.org/packages/nesbot/carbon\t1\nComposer\t2\nAlex\t1\nCodecourse\t1\nstackexchange\t2\nphotos\t3\nreputation\t2\n.do\t1\nhttp://webapps2.rrc.state.tx.us/EWA/productionQueryAction.do\t1\ncounty/query/submission\t1\ntedious\t1\nmonthly\t1\ncounties\t1\ndistricts\t1\n2-3\t2\nautomate/ease\t1\nautomated\t1\napologise\t1\nnon-specific\t1\nprefixed\t2\nsearchArgs\t1\nmonth/year/.\t1\nactionManager\t1\nimediately\t1\nqueried\t1\nintroduction\t1\nprevalent\t1\nAnusha\t1\nassociation\t2\nsubclasses/types\t1\nTemplateType2\t1\nloan1\t1\nloan1.TemplateInstances.add(foo)\t1\n…\t1\nInstanceType2\t1\nexposing\t1\nsavingchanges\t1\n((Question)(Left_Node)(right_node))\t1\ntraversed\t1\nrecursively\t1\nleaf\t2\npyparsing\t5\ngrammar\t4\nPyparsing\t2\nsimplifies\t2\ngruping\t1\nvarname\t1\noperatorPrecedence\t2\nternary\t3\nright-associative\t1\n4-function\t1\nsketchy\t2\nspeech\t1\nsimliar\t1\nquoted\t1\npost-parsing\t1\nchicken-and-egg\t1\npreface\t1\nForward\t1\n<<\t2\nliberties\t1\nelse-clause\t1\nOptional\t2\nGroup(action)(\"elseAction\")\t1\ndump()\t1\nparseString\t1\nhttp://pastebin.com/DnaNrx7j\t1\nstage\t2\nevaluating\t2\nSimpleBool.py\t1\nhttp://pyparsing.wikispaces.com/file/view/simpleBool.py\t1\ncallable\t1\nlocalize\t1\nCurrentUICulture\t4\nCurrentCulture\t4\nCultureInfo(\"fr-FR\")\t2\nFrench\t2\ndictate\t1\nculture-specific\t1\nsatellite\t1\n=P\t1\nPreconditions\t1\nlocalized\t1\nsatellites\t3\nLanguages\t1\nNewbie\t1\ncoder\t1\nmini_magick20130627-17452-1k48fim.png\t1\nImageMagick\t2\nErrno::ENOENT\t1\nSitesController\t1\n#create\t1\n-quiet\t1\n-ping\t1\n/tmp/mini_magick20130627\t1\n-17452-1k48fim.png\t1\ndevelopment.rb\t1\npassenger\t2\nproduction.rb\t1\nPassenger\t4\nCarrierwave\t1\nPhusion\t2\nhttpd-vhosts.conf\t1\nhttp://blog.phusion.nl/2008/12/16/passing-environment-variables-to-ruby-from-phusion-passenger/\t1\n/etc/bashrc\t3\n/etc/profile\t3\nbashrc/profile\t1\ninduction\t1\nPass\t2\nprocessDate.getFullYear()==>\t1\nprocessDate.getFullYear().toDateString()\t1\nevaluates\t1\nloses\t2\nid=\"txt\"\t1\nonchange=\"inputChange(this.value)\"\t1\n@gurvinder372\t1\nonkeyup\t1\ntype=\"text\"\t1\nid=\"input\">\t1\ncollapsible\t1\ndiagram\t1\ncollapsed\t2\nhttp://bl.ocks.org/david4096/6168323\t1\n43.0.4\t1\nplunker\t4\npartially\t1\ncollpased\t1\nnon-working\t1\ngetAllNetworkInfo()\t2\ngetActiveNetworkInfo()\t1\ndetecting\t1\nintance\t1\nsupermatrix(5:10,:,2:3)\t1\nlegend\t1\n\"supermatrix(5:10,:,2:3)\"\t1\ndfig\t1\nF.Moisy\t1\nfigures\t2\nplotting\t1\noverall\t2\nThermal\t2\nPrinter\t2\nweb-view\t5\nOver\t1\nOn-click\t1\nOut\t1\nweb-view.\t3\nFine\t1\nOpens\t1\nReceive\t1\nAlong\t2\nWeb-view\t1\nOutside\t1\nMeans\t1\n@Sujal\t1\nMandal\t1\nKnow\t1\nme.\t2\nkind.\t1\ntext-view\t1\ngetIntent().getStringExtra(\"STRING_DATA\")\t1\noncreate\t1\n15px\t2\n2px\t1\nangular5\t1\nauthenticating\t2\nazure\t3\nwarn\t1\nserializeable\t1\ncontract\t2\nfiguring\t2\nmoderately\t2\nhttp://json2csharp.com/\t2\nhttp://json2csharp.com\t1\nName:Mike\t1\nScore:10\t1\nName:Peter\t1\nScore:5\t1\nbronze\t2\nsilver\t2\ngold\t2\nmedal\t1\nUnderneath\t1\nplayername(s)\t1\nwinners\t1\nTotalViewModel\t1\nTotal\t2\nScores\t1\nDataContext\t2\nUserControl\t1\n1/2/3\t1\nFirstOne\t1\npropertychanged\t1\ng++\t2\n5.4\t1\nclang\t2\n3.8\t1\ndiagnostics\t1\nclash\t1\nclock\t1\ntime.h\t1\nstd\t1\n<ctime>\t2\n__BEGIN_NAMESPACE_STD\t1\nC-library\t1\nstd::clock\t1\n::clock\t1\n<c*>\t1\n<*.h>\t1\nlocalhost\t5\nStruggling\t1\nReferring\t1\nLabel\t1\nTab\t2\nÂ\t1\nunintentional\t1\ntemplated\t1\nredoing\t1\nbrso05\t1\ndocument.getElementById(\"myInput\").value\t1\ndocument.getElementById(\"myDiv\").innerHTML\t1\ngroup_concat\t1\nyii2\t1\nmaths\t1\ng_sname\t1\ncolumn()\t1\nwkhtmltopdf\t1\nOpenSCAP\t1\nSLES\t1\nhttp://www.w3schools.com/php/php_ajax_database.asp\t1\ncollects\t2\ngotten\t2\n.txtHint\t2\n#sideWays\t3\nrecognising\t1\nMWE\t1\nMainActivity.java\t2\nactivity_main.xml\t1\nWear\t1\nconcretely\t1\nexamine\t4\nthereabouts\t1\ngyrations\t1\nguts\t1\nNullWebViewFactoryProvider\t1\n/5\t1\n/home/user/test.pl\t1\n59\t1\njan\t1\nfeb\t1\nmar\t1\napr\t1\n.----\t1\nsun\t1\nmon\t1\ntue\t1\nthu\t1\nfri\t1\nCronjobs\t1\ndeamon\t1\nweekday\t1\nScrollViewer\t2\nListBoxItem\t3\nvirtualization\t1\nviewers\t1\nListBox.ItemTemplate\t1\nItemsSource\t2\nThrough\t2\nXaml\t1\nTemplate\t5\nBehind\t1\nstrlen()\t3\nsize_t\t5\nmulti-gigabyte\t1\nmulti-terabyte\t1\nStrLenAsync()\t2\nultra\t2\n40TB\t1\nSound\t1\nYea\t1\nproposed\t5\njoke\t1\ntypedef\t1\nvaries\t1\narchitectures\t1\nlargest\t2\npupil\t3\npythonwith\t1\nopencvpackage\t1\nreflection/\t1\nglare\t1\naccurately\t2\nwebsocket\t4\nbasicly\t1\nWebSocket\t2\nwss://192.168.1.8/ws\t1\nhandshake\t1\ncanceled\t2\nPRO\t1\nx6\t1\nreimplement\t1\nself-signed\t1\n@BenDarnell\t1\nflight\t1\nITA\t1\nhttp://matrix.itasoftware.com/\t1\npassengers\t2\nClicking\t1\nteaching\t1\nclever\t2\nXPath\t1\nNUMBER_OF_PASSENGERS\t1\nXMPPUserCoreDataStorageObject\t1\ncleaned.So\t1\nwindow+alt+shift+\t1\nEMACS\t1\n24.3\t1\nrecentf\t2\nmakefiles\t2\nsticky\t1\nbookmark\t1\nhttp://www.emacswiki.org/emacs/BookMarks\t1\nC-x\t2\nbookmarks\t1\ndired\t1\nbuffers\t7\nbookmarked\t1\nhttp://www.emacswiki.org/emacs-es/RecentFiles\t1\n16.04\t1\nComposer.org\t1\nline->\t1\ncopy('https://getcomposer\t1\n.org/installer\t1\ncomposer-setup.php\t1\nTrough\t1\napt\t1\natp\t1\ntrough\t3\nComboTree\t1\njeasyui.com\t1\nindex.js\t1\ncshtml\t1\nloadData\t1\ntree_data1.json\t1\ncomboTreeDirective\t1\ncomboe\t1\nAsync/Await\t1\nHTTPClient\t1\n@TheESJ\t1\nawaits\t1\nfashion\t2\npaused\t2\nfacilitate\t1\nkicked\t1\n.ContinueWith\t1\nTask.WhenAll\t1\nDear\t1\nExpert\t1\ntglawal\t1\ntglakhir\t1\n2016-12-04\t3\n2016-12-06\t1\nto_secs\t1\n3600\t1\nLiferays\t1\ninput-date\t1\nsuccessfull\t1\nmesses\t1\n18.08.2017\t1\nd.08.2017\t1\nundoing\t1\nerros\t1\nLiferay.Form\t1\nMOBILE\t1\nMIN\t1\ndegradation\t1\nprogressive\t2\nenhancement\t2\nre-engineer\t1\nMIN-width\t2\nMAX-width\t1\n95%\t1\nMAIN\t1\n--MEDIA\t2\n@media\t2\nMin-width\t1\nmin-width\t2\neffecting\t1\n740px\t1\n900px\t1\n-When\t1\nmin/max\t1\n-sizes\t1\nre-sized\t1\n-Here\t1\nendeavours\t1\nhttp://css-tricks.com/snippets/css/media-queries-for-standard-devices/\t1\n400px\t1\nminumum\t1\noptimizing\t2\nEm\t1\nPx\t1\nfont-size\t1\nproportionally\t1\nadjusts\t1\nPercentages\t1\nskinny\t1\nAbsolutely\t1\nPositioned\t1\ndifficuly\t1\nunittest\t5\ntest_code\t1\n-m\t2\ncartesian\t3\n$array1\t1\n$array2\t1\nangularjs\t4\nmywebservice.com\t2\nChoiceBox\t3\npane\t2\nLater\t2\nGroovy\t1\n90,000\t1\n00-90\t1\n90000\t1\nCorrect\t1\nprepend\t2\nhttps://jsfiddle.net/rzpL34ef/3/\t1\nJSDoc\t1\nZimbra\t1\nfrontend\t3\nDwtComposite\t1\ncoverage\t3\nJasmine\t3\n3.2.2\t1\nJsTestDriver\t1\nmetrics\t2\nJSCoverage\t1\nband\t1\nline.\t1\nJesCov\t2\nJRE\t1\njescov-0.0.1.jar\t1\none.js\t1\ntwo.js\t1\nthree.js\t1\nGrails\t1\nhearing\t1\nHidden\t1\ntype='hidden'>\t1\nfile_get_Contents\t1\nfile_get_contents\t1\ntagit\t1\nmen\t1\nthis.Also\t1\nJuno\t1\nOpenCV4Android\t1\nver\t1\n2.4.5\t1\nandroid-ndk\t1\njniVideoCapture.cpp\t1\nAndroid.mk\t1\ndir\t3\nlibopencv_java.so\t1\njniVideoCapture\t1\nMainActivity\t2\nlibs/\t1\n40M\t1\nRows\t1\nchunks\t2\noccurance\t1\ntable2\t1\ntable1\t2\ncleanse\t1\nsanitised\t2\nDump\t1\npk/clustered\t1\njoining\t1\nquickest\t2\nidentity\t2\nbatches\t1\ncomponent_summary\t1\nlabref='A'\t1\nSuggestions\t2\nCakePHP\t3\nlest\t1\neditAll\t2\nchildren_ids\t4\ncount_children\t1\nfind_in_set()\t1\nStoring\t1\nhotels\t1\nhotls1\t1\nhotels.id\t1\nhotels1.I\t1\nsplit()\t1\nADBannerView\t1\nCocos2d\t1\nbanner\t7\napears\t1\nlandscape\t2\nM_PI\t1\nmath.h\t1\nrect\t1\nshouldAutorotateToInterfaceOrientation\t1\nAJ\t1\nPanels\t1\nactivities\t1\nrevalidate\t1\nOperating\t1\nSystems\t2\nadhere\t1\nexpectations\t2\ninitalise\t1\nswaps\t1\ninital\t1\nopt\t1\ninitalisation\t1\nSpeaking\t1\nCardLayout\t1\n171\t1\n$f\t1\n$data\t3\n$did\t1\nquotations\t1\nLearn\t1\nmysql_\t1\nmysql_query\t1\nHttpClient\t2\nStorage\t1\nXamarin.iOS\t2\nalright\t1\nContent-Length\t4\nTryAddWithoutValidation\t1\nworkings\t1\nCheckName()\t1\nhttps://github.com/mono/mono/blob/master/mcs/class/System.Net.Http/System.Net.Http.Headers/HttpHeaders.cs\t1\nknown_headers\t1\nwidth:200px\t1\nhttp://jsfiddle.net/ebG9N/45/\t1\nwhite-space\t1\noverflowing\t1\nSTRICTLY\t1\nWITHIN\t1\noverflow:auto\t1\nii)\t1\nWRAP\t1\ndisplay:table\t1\nSyslog\t1\nwild\t1\nhay-wire\t1\nthousand\t1\nVIM\t1\n^M\t3\n^J\t1\n0x0a\t1\n0x0d\t1\nseparators\t1\nCR-LF\t2\nUnix-based\t1\nLF\t2\nCR\t1\ndetects\t1\nfileformats\t1\nISO-8859-1\t1\nInputStreamReader\t1\nbreaks.\t1\nBufferedReader.readLine()\t1\n\\r\\n\t2\nWebsite\t1\numbraco\t2\nStatus\t1\nLogged\t1\nUmbraco\t1\ninbound\t1\nEmail\t3\nCE\t1\n6.5.17\t1\nunchecked\t1\n.load\t1\ndivs(non-nested)..\t1\nOk\t7\n#div_1\t1\nLolipop\t1\nsharp\t1\nstretching\t1\ndensity\t1\nconverter\t1\nLollipop\t1\nPNGs\t1\nraster\t1\nyield\t1\nassets\t2\nIllustrator\t1\nVectorDrawable\t1\nDPI\t1\nbuckets\t1\npre-5.0\t1\npostgresql\t1\nMockTable\t2\nrecieving\t1\nall-lowercase\t4\ncapitalization\t1\nHours\t4\nHOURS\t1\nlowercase\t1\ndouble-quotes\t1\nreserved\t3\nmagnitude\t1\nmeaningless\t1\nmerely\t1\ndamned\t1\nnon-numeric\t1\nrouting.yml\t1\ncrawler\t1\nrestrict\t2\ntoy\t4\nReingold-Tilford\t1\nhttp://igraph.sourceforge.net/doc/python/igraph.Graph-class.html#layout_reingold_tilford\t1\n<Text\t3\nstyle={{color:\t2\n'blue'}}\t1\ngetHighlightColor\t1\nselectionColor='red'></Text>,\t1\ndon't\t1\n'blue'}}></Text>\t1\ngetCurrentTextColor\t1\nsetTextColor\t1\nSomeComponent.js\t1\nStyleSheets\t1\ndmg\t3\nuploader\t1\nported\t1\nunidentified\t1\nopted\t1\ninorder\t1\nerrors/warnings\t1\nnovice\t2\nunverified\t1\nDMG\t1\nhttp://osxdaily.com/2012/07/27/app-cant-be-opened-because-it-is-from-an-unidentified-developer/\t1\nPOSTMAN\t1\nTown\t1\nProvince\t1\nSpring-data-jpa\t1\nPOJOs\t1\nEntities\t3\nSwap\t1\n@JsonBackReference\t1\n@JsonManagedReference\t1\ncase-insensitively\t2\napplepie()\t1\ncaps\t1\napplepie\t1\n$@\t1\ncase-insensitive\t1\ntrap\t1\nApPlE\t2\ncommand_not_found_handle\t1\nlower-cases\t1\nobtuse\t1\none-liner\t2\nbc\t1\nosx\t1\n2^n\t1\nFiddles\t1\ntoupper()\t1\nreassembles\t1\nAssumes\t1\nRestful\t1\nrestful\t1\n-servlet.xml\t1\nAbove\t1\nMyApp/WebContent/images/logo.jpg\t1\nMyApp/WebContent/WEB-INF/view/home.jsp\t1\n<'img\t2\nsrc=\"<%=request.getContextPath()%>\t1\n/images/logo.jpg\t1\n>and\t1\nsrc=\"<'c:url\t1\nvalue='<%=request.getContextPath()%>/images/logo.jpg'>\t1\nMyApp\t2\n\\src\\main\\webapp\\images\\logo.jpg\t1\n\\src\\main\\webapp\\web-inf\\views\\home.jsp\t1\nReally\t1\nhttp://www.tutorialspoint.com/spring/spring_static_pages_example.htm\t1\nservlet.xml\t1\nMapping\t1\nspringmvc-servlet.xml\t1\nnsmutablestring\t1\nobject1\t1\nobject2\t1\nobject3\t1\nobject4\t1\nobject5\t1\nuiimageview\t1\nNSString\t3\nprogramm\t1\nUICollectionView\t1\nsetPrefetchingEnabled\t1\nUILabels\t1\ncolon\t3\nLabel1\t1\nlabel1\t1\nLabel2\t2\nAutoLayout\t1\nTitle\t2\nLabels\t2\nAligned\t4\n:1\t1\n:100\t1\nspacing\t3\nstringwithFormat\t1\n:%d\t1\nillustrates\t1\nAutolayout\t2\ncentre\t4\nderives\t1\npinned\t1\n|[label1]-[label2]|\t1\ncrashlytics\t1\ndecipher\t1\ngist\t1\ndSYM\t1\nCrashlytics\t1\nAppDelegate.cs\t1\nFabric\t1\nBucket\t1\ncloudfront\t1\nEC2\t2\nRTMP\t1\npagination\t3\nRoute\t1\nmodel-function\t1\nqueryParams\t1\nhttp://emberjs.com/guides/routing/query-params/\t1\nhttp://yourdomain.com/someroute?limit=15\t1\nCart\t5\n$id\t2\nqty\t1\nrowId\t1\nCart::search()\t1\n$cartItem\t1\nhttps://github.com/Crinsane/LaravelShoppingcart\t1\nCaseMilestone\t4\nMilestoneType\t5\nCaseMilestones\t2\nRelationship\t3\nLookup\t1\nloan\t2\nprofessor\t1\njigsaw\t1\njumps\t1\nloop.\t1\nrobustness\t1\nprocess()\t1\nBreak\t2\nstopping\t3\nGOTO\t1\nONIX\t2\nhttp://www.editeur.org/93/Release-3.0-Downloads/\t1\nhttp://www.editeur.org/files/ONIX%203/ONIX_BookProduct_XSD_schema+codes_Issue_25.zip\t1\nxsd\t1\nyour.xsd\t1\n/classes\t1\nXml\t1\nSerializer\t2\ndrill\t1\nQT\t1\ncoordinate\t5\ndivision\t1\nregisered\t1\ncourses\t2\nPSY1\t2\nfufills\t1\nBOTH\t1\nCond1\t1\nCond\t1\n1004\t1\npsy1\t1\nDoesnt\t1\nED\t1\nstudents\t2\nteh\t1\nammount\t1\nOTHER\t1\nfufill\t1\nbot\t1\ncond1\t1\ncond2\t1\nUntested\t1\nstarter\t3\nINNER\t1\nJOIN\t2\nLEFT\t1\nCOUNT\t1\nCOALESCE(COUNT))\t1\nRoot/uploads/images\t1\nhelpfull\t1\nstuch\t1\nscalesPageToFit\t1\ncompleteness\t2\nmultitouch\t1\nscalesPagesToFit\t1\nhttp://iphoneincubator.com/blog/windows-views/right-scale-for-a-uiwebview\t1\nMarshmallow\t2\nImageView\t1\nRelativeLayout\t2\nlayout_alignBaseline\t1\nemulatr\t1\nsolely\t1\nhttps://github.com/mikegr/baseline\t1\nhttps://code.google.com/p/android/issues/detail?id=73697&thanks=73697\t1\nAPI11\t2\nandroid:baselineAlignBottom\t1\ngetBaseLine()\t1\nSupport\t1\n23.2.1\t1\nfread\t4\nSetting\t3\nweirdness\t1\nHBase\t6\nFollowed\t1\nKundera\t1\ndefinitive\t1\nUno\t1\nvoltage\t3\n5V\t2\nmotor\t7\npwm\t1\n2.5V\t1\nPWM\t5\n255pwm(5V)\t1\n127V\t1\n50%\t1\ntwitch\t1\nvolts\t1\nA3\t2\nDC\t1\nservo\t1\nstepper\t1\ncapacitor\t1\nL*C\t1\nNoting\t1\nanalogWrite\t1\n490Hz\t1\ncap\t3\nlows\t1\nduty\t1\ncapacitance\t1\nimpedance\t1\nsupply\t5\n20ma\t1\npulses\t1\nstall\t1\nperiods\t3\ntransistor\t1\nON-OFF\t1\ninertia\t1\nadafruit-arduino-lesson-13-dc-motors/breadboard\t1\n-layout\t1\nmenu-bar\t1\nSnow\t2\nLeopard\t2\nAnytime\t1\nTheWindowController\t1\nIdea\t1\nBtw\t2\nNIB\t2\n10.7-specific\t1\nbuilds\t2\npost-10.6\t1\nCompatibility\t1\nMONGOHQ_URL\t2\nhttp://docs.mongohq.com/languages/nodejs.html\t1\nSabari\t1\n/.bash_profile\t2\nNode.js\t1\ndotenv\t1\nMongoHQ\t1\nmootools\t2\nclickRecord(id)\t1\n=\"\"\t1\nstranger\t1\nonmousedown\t2\nonclick()\t1\nbreaking\t3\nonmousedownevent\t1\nnavigates\t1\nunsolved\t1\nraised\t3\n1995\t1\nevent.stop()\t1\nid=\"1\">\t1\nMetaTrader\t2\nbroker\t1\nMQL4\t1\ntrully\t1\noffline-charts\t1\ncharts\t3\nevent-flow\t1\nMT4-Server\t1\nretaining\t1\nTOHLCV-data\t1\nTimeZone\t1\nshifts\t1\nsynthetic\t1\nBar(s)\t1\nadditions\t3\nadaptations\t1\ntransformed\t2\nTOHLCV-history\t1\nfacility\t1\nMT4\t2\nHistory\t1\nCentre\t1\nlive-quote-stream\t1\nTrading\t1\nunwanted\t3\nanFxQuoteStreamPROCESSOR\t1\nQuoteStreamDATA\t1\nMetaQuotes\t1\nInc\t1\npostulated\t1\nServer/Terminal\t1\nreverse-engineer\t1\nunlawfull\t1\nconsequences\t1\ncarefull\t1\nrisk\t1\nQuotes\t1\nfed\t2\nmt4\t1\nevented\t1\nmetatrader\t1\nAnkhSVN\t7\nVS2012\t6\nSubversion\t5\nVS2010\t4\n2.4.11610.27\t1\nUltimate\t1\nTortoiseSVN\t2\nreinstalling\t1\nCollabNet\t1\ntools->options->source\t1\nuninstall/reinstall\t2\nblank.ex\t4\niex\t3\nweather\t2\nelixirc\t1\nbeam\t3\nsecondly\t1\nElixir.Blank.Integer.beam\t1\nElixir.Blank.List.beam\t1\nOpenfire\t1\nlive.Please\t1\n2017.08.23\t1\n09:37:35\t1\norg.jivesoftware.openfire.plugin.rest.exceptions.RESTExceptionMapper\t1\nUserAlreadyExistsException\t1\nressource\t1\natg\t1\njivesoftware\t3\nopenfire\t3\nPluginManager\t1\nloadPlugin(PluginManager\t1\njavaorg\t2\nPluginMonitor$MonitorTask$4\t2\ncall(PluginMonitor\t2\njavaat\t1\nFutureTask\t1\nrun(FutureTask\t1\n262\t1\nThreadPoolExecutor\t1\nrunWorker(ThreadPoolExecutor\t1\nThreadPoolExecutor$Worker\t1\nrun(ThreadPoolExecutor\t1\nlang\t2\nrank\t1\nReferenceError\t2\nascending\t2\ndescending\t1\nrevert\t2\nng-repeat\t4\nRetrofit\t2\n@Expose\t1\nteacherServiceId\t1\n840\t2\nPLC\t1\nModbus\t2\nhttp://www.codeproject.com/Tips/16260/Modbus-TCP-class\t1\nMaster.ReadHoldingRegister(ushortid,byteunit,ushortstartAddress,ushortnumInputs)\t1\n144\t1\n1680\t1\n125\t1\nHolding\t2\nRegisters\t2\nspliting\t1\nstudy\t1\ntriggering\t1\nsnapshot\t2\nXButtonExit_Click\t1\nEventArgs\t1\n//This\t1\nClose()\t1\n;}\t2\nTextBoxes\t1\ntax\t1\nSubtotal\t1\n//Take\t1\nxTextBoxTotal\t1\nFormatException\t1\nConvert.toInt16(xtextboxTotal.text)\t1\nformating\t1\nre-convert\t1\ncurency\t1\nhttp://msdn.microsoft.com/en-us/library/3s27fasw.aspx\t1\nspring-boot-starter-ws\t1\nstarter-web\t1\nlog4j\t6\nlogger\t9\nTRACE\t2\nlogback\t2\nlogback.xml\t5\nstarter-logging\t1\napplication.properties\t2\nWEB-INF\t1\nlogging.level.org.springframework\t2\nlogging.path\t2\nEndpoint\t1\nBasicly\t1\nshipped\t1\nDEBUG\t1\nperformant\t1\n//Update\t1\nbase.xml\t1\nBlocks\t1\nbefore/after\t1\ncentering\t1\nwebpack\t3\nhttps://webpack.js.org/loaders/\t1\n\\.css$/\t1\nfront/back\t1\nslashes\t1\n2.4.10\t3\nofficials\t1\nOpenCV\t2\n2.4.0.3\t1\nClone\t1\nhttps://github.com/opencv/opencv.git\t1\nSwitch/Checkout\t2\nOpenCV-2.4.10\t1\nBranch\t1\nTag\t3\nsubfolder\t2\nopencv-2.4.10\t1\nJoin\t2\nPig\t5\nHive\t7\ninequality\t1\nCROSS\t4\nFILTER\t1\nreducer\t1\nggnetwork\t1\nscaled\t3\nscale_size_area()\t1\nshrink\t2\nboils\t1\ngeoms\t1\nscale_size_area\t1\nmax_size\t1\nscale_size_continuous\t1\nc(1,6))\t1\nAlmost\t2\nggplot2\t1\ndual-scaling\t1\ny-axes\t1\nscales\t2\ncontradicts\t1\nCKEDITOR\t1\nbase64_encode\t1\n-signs\t1\nwhitespaces\t1\nCKEditor\t1\nvar_dumped\t1\nhorribly\t2\nmulti-threading\t1\nholder\t1\nhistograms\t1\ndatas\t3\nconcurently\t1\n0-255\t1\nneglect\t1\nthermal\t1\nsignificant\t2\n0-65535\t1\npreallocated\t1\ncircular\t1\n-notify\t1\ntoy.h\t1\ndifficulties\t1\naspect\t2\nget_buffer())\t1\nBuf_start\t1\n_Buf_end\t1\nseeking\t3\noverload\t3\nbuffer()\t1\nunique_lock\t1\n_mtx_foreground\t1\noutbound\t1\nsatisfy\t3\nremake\t1\nredo\t1\ndeeply\t1\ntoy2\t1\nJobs\t1\nTasks\t2\ntasksCount\t1\ntricks\t2\ntwig\t6\nhydrate\t1\nGravatar\t2\nRSAPKCS1Signatureformatter\t2\nRSACryptoServiceProvider\t2\nRSAPKCS1SignatureFormatter\t1\nRSACryptoServiceProvider.SignHash\t1\nPsychic\t1\nSignData\t1\nRSA\t1\nhashed\t3\nSignHash\t1\npre-digested\t1\ntoolset\t1\n1:1\t1\nController+View\t1\nhttps://github.com/angular-ui/ui-router\t1\ntying\t2\npartials\t1\nng-include\t5\ncoupled\t1\nng-controller\t4\nPlunker\t2\nswapping\t1\nfeasibility\t1\ncostly\t2\n40-400\t1\nparticles\t1\nparticle\t2\nParticleAI\t1\nUpdate()\t2\nParticle\t1\nefficiency\t2\n100-2000\t1\n60FPS\t1\nnulls\t2\nAI\t1\nunexpectedly\t1\nsheer\t1\nparticleAI\t2\nreusing\t1\nNull\t2\nLinkedList\t1\nto-be-replaced\t1\nCollections.emptyList()\t1\nsafer\t2\nworthwile\t1\nalgorithmic\t1\nSpending\t1\nQueues\t1\nPriorities\t1\nquests\t1\nquest\t3\nnotepad++\t1\nBrackets\t1\nfind/replace\t1\n\\[\\]]*\\[([^\\]]+)\\]\t1\n\\1\\n\t1\nRE\t3\nmetacharacters\t1\nconsist\t1\n((\t1\n^\\\t1\n+))\t1\n\\1\t2\nwindows-style\t1\nlineendings\t1\nLayoutManager\t2\nLeanback\t2\nleanback\t1\nfocused\t2\nsetStackFromEnd(true)\t1\nsetReverseLayout(true)\t1\nslashdot\t1\nstory\t1\ntidbit\t1\nscoured\t2\nhttp://infoworld.com/d/developer-world/12-programming-mistakes-avoid-292\t1\ngroovy\t1\nCoin\t1\nhttps://wiki.openjdk.java.net/display/Coin/2009+Proposals+TOC\t1\nElvis\t2\nNull-Safe\t1\nOperators\t1\nunpredictable\t1\nsetups\t1\ntermed\t1\ncoalesce\t1\nrails4-application\t1\nheroku\t2\ngithub-repository\t1\nRuby/rails\t1\nhttps://devcenter.heroku.com/articles/ruby-support#debugger-gems-fail-to-install\t1\nsqlserver\t3\nini\t1\ntriying\t1\ngivme\t1\nPhp\t1\nconect\t1\n:S\t1\nwasnt\t1\nigniter\t1\nbecouse\t1\ndatabase.php\t1\nSolved\t2\nhttps://www.atlassian.com/git/tutorials/setting-up-a-repository/git-clone\t1\n--global\t1\nshortcut\t2\nsynatax\t1\ndidnt\t1\nalias.<alias>\t1\nNEW\t2\nhp\t1\nIMABigBaboon\t1\nNotificationCenter\t1\nClosures\t1\nURLSession\t1\nResponse\t2\nobservers\t1\nlightweight\t2\npositively\t1\ntoPost\t1\nsubmit_data\t1\nSerialization\t3\nfield_name_1\t1\nfield_value_1&field_name_2\t1\nfield_value_2\t1\n$_POST['field_name_1']\t1\n$_POST['field_name_2']\t1\nprint_r($_POST)\t1\nrow_selected\t1\n.svn\t3\ndeas\t1\n-type\t2\n-rf\t1\n`find\t1\n-name\t2\nnumeric(15,6)\t1\nDecimalField\t1\nhttp://www.postgresql.org/docs/current/interactive/datatype-numeric.html#DATATYPE-NUMERIC-DECIMAL\t1\nhttps://docs.djangoproject.com/en/1.8/ref/forms/fields/#decimalfield\t1\nsolutions.MY\t1\nsignup\t2\nadministration.But\t1\nforms.py\t1\nviews.py\t1\nmodels.py\t4\n\"mail_base,provider=email.split(\"@\")\"\t1\nforms.py.Please\t1\nSignUp\t1\nEmailField(blank=True))\t1\nself.cleaned_data.get('email')\t1\nmail_base\t1\nemail.split('@')\t1\nemail.split(\"@\")\t1\nintellisense\t1\nu.Id\t2\nug.UserId\t2\nANSWER\t1\nNorthwind\t1\n.sql\t1\nstuff.sql\t1\nStatement\t1\nmemory-only\t1\n:MEMORY\t1\nMEMORY\t2\nHEAP\t1\nINNODB\t1\n1TB\t1\nimpractical\t1\nrecreating\t1\nMPxCommand\t1\nMArgList\t2\ndoIt()\t1\nMArgParser\t1\nasStringArray(index)\t1\nasIntArray(index)\t1\nself.myStr\t2\ncmds.myCommand\t2\nOpenID\t1\nIdP\t3\nRP\t2\nworking-\t1\nauthenticate/authorize\t1\nverification\t1\ndug\t1\nYadis\t2\nrealm\t1\nshoots\t1\n302\t3\nAccept\t2\napplication/xrds\t1\nX-XRDS-Location\t1\nrework\t1\ngolden\t1\nhttp://blog.nerdbank.net/2008/06/why-yahoo-says-your-openid-site.html\t1\nUIPickerView\t1\nsecondviewcontroller\t1\nfirstviewcontroller\t1\nsegues\t1\nrudimentary\t1\nbrand\t2\nUnlock\t1\nDeviceAdminReceiver\t1\nCSS3\t1\nbackground-size\t1\n.active\t1\nhttp://jsfiddle.net/VQaGh/22/\t1\nhttp://jsfiddle.net/Sk2sX/\t1\nhas_and_belongs_to_many\t2\nOrb\t1\nBook\t1\n_form\t1\nanywere\t1\nhttps://github.com/senayar/books\t1\nnotresolved\t2\nCURRENT_TIMESTAMP\t1\nDatetime\t1\nTimestamp\t1\nhttp://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_datediff\t1\nRufinus\t1\nrow-wise\t1\nnp.unique\t1\ndifferentiation\t1\nExtending\t1\nextended\t1\navoiding\t1\npure-Python\t1\nical\t1\nattachment\t1\nicalendar\t1\nhttps://www.addevent.com/\t1\noriented\t1\ntoward\t1\ninvitations\t1\n100/day\t1\nDealt\t1\n.ical\t1\nattache\t1\n2.0.1\t1\nwierd\t1\nfonts\t7\nFF\t4\nUiBinder\t1\nshowcases\t1\nstyling\t1\n.gwt.xml\t1\nGwtOverride.css\t1\nWinXP\t1\nannoying\t3\nnullify\t1\nGentoo\t1\namd6\t1\nreneders\t1\nmodeless\t2\nDesired\t2\nwhichever\t1\ntopmost\t1\nOnInitDialog()\t1\nSetWindowPos(&this->wndTop,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE)\t1\nSetWindowPos(&this->wndTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE)\t1\nm_subDlg1->Create\t1\nSubDlg1::IDD\t1\nowned\t2\nowned/child\t1\nparent/owner\t1\nowner/child\t1\ncovered\t1\nparent/child/owned\t1\nMFC\t2\nBOOL\t1\nWnd\t1\n::\t2\nCreateDlgIndirect(LPCDLGTEMPLATE\t1\nlpDialogTemplate\t1\nCWnd\t1\npParentWnd\t2\nHINSTANCE\t1\nhInst\t1\nSetParent(NULL)\t1\nASSERTs\t1\nCheckBoxes\t1\nofc\t1\nnr\t1\n1.5.7\t1\nChecked\t1\n+check\t1\nSWT\t2\nawt\t3\nCheckBox\t2\nCheckbox\t1\nBottom\t1\nCheckboxGroup\t2\nexperiment\t1\ntf.idf\t1\nGeolocation\t1\nHarvesine\t1\ndistance.\t1\nstudying\t2\nSimilarity\t5\nprocede\t1\nIIUC\t1\nindexing\t4\nExtend\t2\nDefaultSimilarity\t1\nSimilarityDelegator\t1\npayloads\t1\nterm-specific\t1\nlat-long\t1\nSimilarity.setDefault(mySimilarity)\t1\ncorpus\t1\nSearcher\t1\nLucene\t2\npredict\t1\nprohibitive\t1\nnevertheless\t1\nMining\t1\nMassive\t1\nDatasets\t1\nhashes\t1\nshingling\t1\nPatrick\t1\nGrant\t2\nIngersoll\t1\nDragons\t1\nCustomizing\t1\nspatial\t1\nfindability\t1\nrelevance\t1\n.svc\t1\nWebservice\t1\ncertficiate\t1\nhttp://localhost/myws.svc/\t1\nWorks\t1\nhttps://localhost/myws.svc/\t1\nhttp://blogs.microsoft.co.il/blogs/shair/archive/2008/07/28/how-to-create-sql-server-management-studio-addin.aspx\t1\nhttp://jcooney.net/post/2007/11/26/The-Black-Art-of-Writing-a-SQL-Server-Management-Studio-2005-Add-In.aspx\t1\nSMSS2008r2\t1\nSSMS\t1\nSSMS2008\t1\nAdd-In\t1\ndefbug\t1\nSSMS2012\t1\nssmsboost\t1\nwelcome\t5\nssms\t1\nMemento\t6\nPattern\t2\nbehavioural\t1\nroll-back/save\t1\nreverting\t2\nserialised\t1\nConversely\t2\nUndo\t2\n<select>\t1\nstd::condition_variable\t3\nspurious\t3\nwakeups\t1\nis_ready\t1\nnotify_one()\t1\nnotify_all())\t1\ncondition_variable\t4\nconsumer\t2\nnon-empty\t1\nget_from_queue\t1\nthe_queue.empty()\t1\nwake\t1\nups\t1\natomics\t1\npolling\t3\n99.6\t1\ninfinitely\t1\ninefficiency\t1\nought\t2\ngrins\t1\naugmented\t1\nwakeup\t2\nAutosuggestion\t2\nselect2.css\t1\nselect2.js\t1\njquery-2.1.1.js\t1\nFront-End\t1\nchallenge\t2\nhtml/css\t1\n<td>,\t1\n<th>\t2\nMAY\t1\ncmdlet\t1\ncmdlets\t1\nadblock\t1\nAdblock\t1\nhttp://domain.com/ads/\t1\nAdBlock\t1\nFlash\t7\nembeds\t2\nroll-over\t1\nexpecially\t1\nannounced\t1\navailability\t1\nDocumentDB\t3\ntechnological\t1\nground\t1\nKnockBack\t1\ncomputed\t3\nKnockout\t3\njsfiddles\t1\npreamble\t1\nKnockback\t3\nVVM\t1\ndutifully\t1\nAlive\t2\npsql.exe\t2\nPGOPTIONS='-c\t1\ntcp_keepalives_idle\t1\ntcp_keepalives_interval\t1\ntcp_keepalives_count=10\t1\npsql\t1\nVacuum\t1\nJDBC\t1\nODBC\t1\nNpgSQL\t1\nDraft-JS\t2\nconsumption\t1\nUL\t1\nLI\t1\nTextarea\t1\nExporting\t1\nRedo\t1\nregenerate\t2\nYou.\t1\nfinance\t1\nbranch_master\t1\ncircumvented\t1\n@Thorsten\t1\ncircumvent\t1\nIBM\t4\nlogins\t2\ndebugged\t1\nknock-on\t1\ndisabling\t2\ninspection\t1\ninspected\t1\nTADOQuery.sql.add()\t2\nTADOQuery\t3\npropery\t1\nadoqry.sql.add\t1\nServer-SQL\t1\nRequests\t1\nPrepare\t1\nDescribe\t1\nadoqry.active\t1\nOpen/Describe\t1\ntraced\t1\nsql.add()\t1\nConnectionString\t3\nADOQuery\t1\ncombines\t1\nundesirable\t1\nSeparate\t1\nADOConnection\t3\nSpecify\t1\nADOQuery.Connection\t1\nADOConnection.Open\t1\n87\t1\nBoy\t1\nclaimed\t1\nCP\t3\ncarry\t6\nborrow\t3\nSUB\t4\nZ80\t1\ntypo\t1\nADD\t1\ncomplement\t1\nGameBoy\t1\nSBC\t1\nSUB/SBC/CP\t1\nZ-80\t1\n8080\t1\nMAME\t1\nMESS\t1\necommerece\t1\ncountries\t3\nindia\t1\nsingapore\t1\nusa\t1\nregisterd\t1\nguest\t1\nThanx\t1\nShipping\t1\nsystem->configuration->shipping\t1\nmethods->your\t1\nmethod->Ship\t1\nApplicable\t2\nCountries\t3\nShip\t1\nSpecific\t1\naviable\t1\nfeald\t1\nJsonResult\t1\nREMOVE\t1\nPropertyToNOTExpose\t1\nNewtonsoft.Json.Linq.JObject\t1\nJObject.Remove\t1\nScriptIgnore\t1\nJavaScriptSerializer\t1\n<span>\t1\ndiminished\t1\nstylesheet\t3\nunadorned\t1\nPeriodSender\t1\n.Dynamically\t1\nMyReceiver21\t1\nMY_ACTION1\t1\nbroadcasts\t2\nregisterReceiver()\t1\nMainActivity.onCreate()\t1\nBroadcastIntents\t1\nKivy\t1\nEarlier\t1\nwidget.pos\t1\nhero\t1\nFLoatLayout\t1\nFloatLayout\t1\nco-ordinates\t1\nhttp://kivy.org/docs/api-kivy.uix.relativelayout.html\t1\nPeace\t1\n8.2\t1\nreferrer\t1\nadvertisement\t1\nwhoever\t1\nlowly\t1\nintern\t1\nvarchar(50)\t1\ntasked\t1\nadvisable\t1\nINET_ATON\t1\none-off\t2\nIPAddress\t2\nfrequent\t2\nRoll\t2\ncomplained\t1\nPhoto\t1\nAlbum\t1\npickup\t1\nsynced\t1\niTunes\t1\nALAssetsGroupLibrary\t1\nvariants\t2\nALAssetsGroupType\t1\nallAssets\t1\nallVideos\t1\nallPhotos\t1\nrack\t3\naap\t1\npuma\t1\nworkers\t1\nhttps://devcenter.heroku.com/articles/ruby-websockets\t1\nSublimeREPl\t1\nSublimeREPL\t1\nObjective-C\t3\nApples\t1\nNSMutableArray\t1\nobjectAtIndex:i\t2\nclaiming\t1\nidiosyncrasies\t2\nborne\t1\nWalt\t1\nWilliams\t1\nPossibly\t1\nWain\t1\nobjectAtIndex\t1\nbuy\t1\nactiveden\t1\narabic\t1\nrtl\t1\nTLFTextfield\t1\nTLFTextField\t2\nas3\t1\nTLF\t1\n57\t1\ndisplay:none\t1\nnon-functional\t1\ndisables\t1\n1998\t1\ndangerously\t1\noccupied\t1\ndeallocated\t1\ninvalidate\t1\narraylist\t1\nuri\t2\nrecieved\t1\nheader.endpoints\t1\nrecipient\t2\nEIP\t2\nN+\t1\ndestinations\t1\nhttp://camel.apache.org/recipient-list.html\t1\ntoD\t2\n1.N\t1\nquads\t2\nquad\t13\ncolored\t5\nflagged\t1\n50x50\t1\ncoordinated\t1\nvert\t1\nx1\t1\nyellow/green\t1\nDodd\t2\nscreen-space\t2\ncenters\t1\ngl_FragCoord\t1\nhalf-by-half\t1\nhalf-cut\t1\ninterpolant\t1\nvec2\t1\nquadCoord\t1\nvertexes\t1\nquadCoordIn\t1\nquadCoord.xy\t1\nArrayLists\t1\nachieving\t1\nclumsy\t1\nlists.\t1\npredictable\t1\nsophisticated\t2\nlineIsComment\t1\naddToList\t1\n<Integer>\t1\nNAnt\t2\nNant\t1\ndefault.build\t1\nActionResult\t1\nGlobalFilterCollection\t1\nSystem.Web.Mvc.dll\t3\nSystem.Web.MVC\t1\ndefaul\t1\neverybody\t1\nAssemblies\t2\nfiles(x86)\t1\n-->\t5\nhttp://www.microsoft.com/download/en/details.aspx?displaylang=en&id=4211\t1\nhttp://weblogs.asp.net/scottgu/archive/2011/05/03/asp-net-mvc-3-tools-update.aspx\t1\ntooling\t1\nimprovements\t3\nallot\t1\nplagued\t1\nappspot.com\t1\napp.yaml\t1\nmain.py\t2\nXAMPP\t1\nGAE\t1\nhttp://www.youtube.com/watch?v=IFuNNddWQIo\t1\ndoubts\t2\nif(\"status\".equalsIgnoreCase((nNode.getNodeName())))\t1\nnNode.setTextContent(\"2000000\")\t1\npreppend\t1\n<span>word</span>\t1\nnode.rendered\t1\nnode.childrenrendered\t1\nPretty\t2\nexcludes\t1\nJUST\t1\nexplosion\t3\nhitTestObject\t1\nExplosion\t1\nmovieclip\t1\nkeyframe\t2\nstop()\t1\n1009\t1\ntruly\t1\ncollected\t1\ncollector\t1\nGarbage\t1\nionic\t1\nTabs.ts\t1\ntabs.html\t2\nhome.ts\t1\nhome.html\t2\ntrainning\t1\nyea\t1\ntabs.ts\t1\nthis.navCtrl.push(TrainingPage,this.token)\t1\nthis.navCtrl.select\t1\nthis.token\t1\nsearch/highlight\t1\nCGPDFScanner\t1\nPDFKitten\t1\ntamarin\t1\n2.x\t2\nPaginator\t1\nIE9\t1\ndebuging\t1\nconclude\t1\nASPX\t1\nF12\t1\n<head>\t1\ncall.enqueue()\t1\nGlide\t1\nPissaco\t3\nquestuion\t1\nrepeatable\t1\nmaterial\t3\nArticle\t2\nArticleType\t1\nfewer\t1\nContact\t4\nFirstName\t1\nLastName\t1\nbitten\t1\nprojections\t1\nTransformers.AliasToBean\t1\nResearch\t1\nonsubmit\t3\nrefreshes\t2\nHTML5\t2\ntime()\t1\nrand()\t1\ntempnam()\t1\nbanners\t5\nBanner\t3\nSelectable\t1\nselectable\t1\nSpecial\t1\ncarousel\t3\nselectablebanners\t1\nselectedbanners\t1\nul\t2\n#sortable1\t1\ndefaultbanner\t1\nselectablebanner\t1\nwin32\t1\ncmd.exe\t2\nExternal\t1\nStartup\t1\nsubsystem\t3\nofferring\t1\n-Oisin\t1\ncassandra\t1\nNode1\t1\nNode2\t1\nNode3\t1\nnodetool\t1\nreplication_factor\t2\n1.You\t1\n2.Your\t1\ndatacenter\t2\nSimpleStrategy\t1\nreplica\t1\npartitioner\t1\nAdditional\t4\nreplicas\t1\nhttps://docs.datastax.com/en/cassandra/3.0/cassandra/architecture/archDataDistributeReplication.html\t1\nTodoItem\t1\nunnamed\t1\nchronologically\t1\nSorted\t1\nWhatever\t1\nReminder\t1\nsortInPlace\t1\nsubtracted\t1\nSubtracting\t1\nTimespan\t1\ndays/hours/mins/secs/milliseconds/ticks\t1\noccured\t2\nDateTimes\t1\nTimeSpan\t1\nprocedures\t1\nAddDays\t1\nSimilarlly\t1\nAddHours\t1\nAddMonths\t1\nAddMilliseconds\t1\nhttp://msdn.microsoft.com/en-us/library/system.datetime_members.aspx\t1\nclustered\t1\noutliers\t1\nvisiting\t2\nvisited\t4\nunvisited\t2\nminimizing\t1\nFileHandlers\t3\npreformatted\t1\nFileHandler\t3\nrun()\t1\npublish()\t2\nLogRecord\t1\ntraces\t1\nFormatter\t2\ncontinuing\t2\nAROUND\t1\njava.util.Logger\t2\nJDK\t1\nLogging\t2\nremarkable\t1\nNecessary\t1\nLog4j2.xml\t1\nloggign\t1\nSLF4J\t2\nhttp://saltnlight5.blogspot.ca/2013/08/how-to-configure-slf4j-with-different.html\t1\nhttp://www.slf4j.org/manual.html\t1\nlogwriters\t1\nnon-blocking\t2\nlog(logLevel,\t1\nlogOrigin,\t1\nlogMessage)\t1\nhood\t1\nlogwriter\t4\nqueues\t1\nAVAssetReaderOutput\t4\nAVAsset\t2\nRemoteIO\t1\nAU\t1\nAudioOutputUnitStop\t2\nplayback\t6\nAudioOutputUnitStart\t1\ncopyNextSampleBuffer\t3\nAVAssetReader\t5\nAVAssetReaderStatusFailed\t1\nDomain\t1\nAVFoundationErrorDomain\t1\n-11847\t1\nInterrupted\t1\nUserInfo\t1\n0x1d8b6100\t1\nNSLocalizedRecoverySuggestion\t1\nStop\t1\nNSLocalizedDescription\t1\nInterrupted}\t1\nreinitialize\t1\nHoping\t1\nAVAssetReaders\t1\nsurvive\t1\nback.\t1\nentitled\t1\ninterruptions\t1\nAVAudioSession\t1\nAVAudioSessionDelegates\t1\nendInterruptionWithFlags\t1\nAudioPlayer\t1\nAudioReader\t2\nSetup\t2\nRender\t1\nRenderCallback\t1\nAVReader\t2\nunderpinnings\t1\nconnected/linked\t1\ndecides\t1\nbeginBackgroundTaskWithName:expirationHandler\t1\ndevs\t2\nQA\t1\nWILL\t2\nreaderOutput\t1\nAVAssetReader.error.code\t1\nAVErrorOperationInterrupted\t1\ngapless\t1\nrecovery\t1\nencapsulated\t3\nseek\t3\nAVAssetReader.timeRange\t1\nkAudioUnitRenderAction_OutputIsSilence\t1\nStarting\t1\nserious\t1\ninterruption\t1\nlie\t1\nAUGraph\t2\ntear\t1\nreconnect\t1\nReconnect\t1\nUsername\t1\nPassword\t1\nincorrect.\t1\npassword_verify\t3\n5.3.2\t1\n$hashed\t1\npassword_hash\t1\n$password\t1\nPASSWORD_BCRYPT\t1\nextent\t2\npls\t1\nClojure\t1\nKoans\t1\nhttps://github.com/functional-koans/clojure-koans/blob/master/src/koans/10_lazy_sequences.clj\t1\nbuiltin\t2\nblanks\t1\nseq\t2\nparenthesis\t1\nRe-read\t1\nnth\t1\nkoan\t1\nAsking\t1\nsatisfactory\t1\ninventive\t1\n100.0\t1\noval\t1\npaintComponent\t1\nsoultions\t1\nRacerMain.java\t1\nDot.java\t1\nFlowLayout\t1\nrespects\t1\ngetPreferredSize\t1\n#setVisible\t1\nTYIA\t1\n/bash_login\t1\n/.profile\t1\n/.bashrc\t1\n/bin/cat\t1\nproperly-speaking\t1\ncom.apple.Terminal\t2\npath/to/saved.plist\t2\nroleDefinitionBindings\t2\n:{\t2\n-2147024891\t1\nSystem.UnauthorizedAccessException\t1\nen-US\t1\n}}}\t1\ngetUserRole(appWeburl,\t1\nprincipalid,success,failed)\t1\nappWeburl+\t1\n/_api/web/RoleAssignments\t1\n('\t1\nprincipalid\t1\n/roleDefinitionBindings\t1\napplication/json\t1\nodata\t1\nfunction(data)\t1\nSuccess\t1\ndata.d.results\t1\nFailed\t2\nfailed()\t1\nsonarqube-6.7.1\t1\nsonar-scanner-3.0.3.778\t1\nsonar-scanner-msbuild-4.0.2.892\t1\nKit\t1\n4.6.2\t1\nscan(sonar)\t1\nOur\t1\nBuild.bat\t2\nSonarQube\t4\n\\Jenkins\\workspace\\CSS_SQ>exit\t1\nCSS_SQ\t1\nFiles(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\MSBuild.SonarQube.Runner.exe\"\t1\n/d:sonar.login\t1\n******\t1\n********\t1\nMSBuild\t4\n4.0.2\t1\nFiles(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml\t1\n\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml\t1\nPost-processing\t2\nsonar-properties\t1\n14:36:16.988\t1\nmarkdown\t5\n14:36:16.989\t1\nExit\t1\nERROR\t2\nExecution\t1\nFinished\t1\nFAILURE\t1\nAbout\t2\n.sonarqube\t1\n.sln\t1\nOlder\t1\ninvestigated\t1\nSlave\t1\n/d:sonar.verbose\t1\nsubfolders\t1\nC:\\Windows\t1\nJenkins\t1\nslave\t1\nDFS\t1\narraylists\t1\nGraph.txt\t1\nviz\t1\nviz[node]\t1\npop()\t4\n(array\t1\nstacks\t1\npeek()\t2\nStacks\t1\nfirst-in\t1\nlast-out\t1\npopping\t1\nPushing\t1\nCharlie\t1\nAdam\t2\nsqlite3\t2\nIntel-PIN\t1\nPinCRT\t2\nPin\t2\n_OS_RETURN_CODE\t3\ntens\t4\nGigabytes\t1\nunpack\t1\nmmap\t1\nctypes\t1\nspecialized\t1\nCython-coded\t1\nFortran\t1\ninterfaced\t1\nhumongous\t1\npeculiar\t1\nintrinsically\t1\noffsets\t4\nhandily-formatted\t1\nauxiliary\t1\nlengths\t1\ncompositions\t1\ngigabytes\t1\nEtc\t1\nwow\t1\nthereof\t1\ngenerators\t1\ninput.txt\t1\nberry\t3\nberries\t5\nsimplistic\t1\nsays.\t1\noriginal.txt\t1\nloganberry\t1\nstrawberries\t1\nSlider\t1\nemulation\t1\ntool-tips\t2\nIPhone\t2\n6s\t1\nremarable\t1\ntooltips\t1\ngwtbootstrap3\t1\nlibrary.For\t1\npending\t1\nMyThreadYield\t1\nworkes\t1\ngetcontext(&(save.context))\t1\naddToQueue(save)\t1\nthread-safe\t2\nmulti-threaded\t1\nremoveFromQueue()\t3\naddToQueue()\t1\nrear\t4\nqueue[front]\t1\ngrow\t1\nindefinitely\t1\nsuperficially\t1\nlong-term\t1\narray-based\t1\nmodulo\t1\ndisaster\t1\nDefinitely\t1\ntail\t1\nhttp://en.wikipedia.org/wiki/Queue_(abstract_data_type)#Queue_implementation\t1\ndestroyed\t2\nrevisited\t1\nretract\t1\npropdel\t1\nsvn:ignore\t2\ningnores\t1\nConflict\t1\nmisinterpreting\t1\nJDT\t1\nAST\t1\n7+\t1\nJARs\t2\nNoClassDefFoundError\t1\nTrial\t1\nCtrl-T\t1\nview/locate\t1\nanalyzer\t1\nJarAnalyzer\t1\nJars\t1\nunused\t1\nClassPathHelper\t1\nunresolved\t1\nidentifies\t1\nobscured\t1\ninline-block\t2\n32%\t1\ntext-align\t2\ndiv-container\t1\nresizeFunction\t1\ndiv.content-wrapper\t1\ndisplay:inline-block\t1\ndiv.content\t1\nGreetz\t1\nFlex\t1\nSomebody\t2\nsintaxys\t1\nHeadache\t1\n5.0.51b\t1\nInfinity\t1\nSiride\t1\nTRIGGUER\t2\nsemi-colon\t1\nwordToDisplay\t1\ntextView\t1\nsetText();\t1\nandroid:id\t1\n@+\t1\nid/mytextview\t1\ntv\t1\n(TextView)findViewById(R.id.mytextview)\t1\ntv.setText(\"foo\")\t1\nsecured\t1\nNTLM\t2\nmaven-jaxb2-plugin\t1\njaxb2:generate\t1\nRoute53\t1\ndelegation\t2\nsets.But\t1\nwirte\t1\ndoenst\t1\nlseek\t1\ninconsistently\t1\nleft-over\t1\nsyncfs\t1\nsuperfluous\t1\nmain.cpp\t1\nmain.pro\t1\nPlayer\t1\nScore\t1\nrow+\t3\nPlayer1\t1\n____playerScore1\t1\nPlayer2\t1\n____playerScore2\t1\nPlayer3\t1\n____playerScore3\t1\nHarry\t1\nUITable\t1\nCheckout\t3\nhttp://www.littlecomputers.net/2009/?page_id=549\t1\nhttp://www.icodeblog.com/2008/08/08/iphone-programming-tutorial-populating-uitableview-with-an-nsarray/\t1\nhttp://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html\t1\nunderscore\t1\ne.gr\t1\nrationale\t2\nGuidelines\t1\nIntellisense\t1\nthis.variablename\t1\n_variablename\t1\nnote/label\t1\nwhen/if\t1\nmostUpTodateNewsItemsFromRealm\t1\nnumberOFChannelSubscribedToIs\t1\n.......\t1\nstucked\t1\nCause\t1\npivot\t2\ncouldn\t1\nt\t2\nCol5\t1\nOutPut\t1\ncol6\t2\ncol5\t1\ncol3\t1\nCol4\t2\n****\t1\ncomments*******\t1\nProvided\t1\n*Query\t1\nOUTPUT\t1\nSelectQuery\t2\npredicates.\t1\nbuilding.\t1\naddConditions\t3\noverloaded\t3\n[Collection\t1\nConditions\t1\nmylist\t1\n.i\t1\nprintList()\t2\nworking.how\t1\nNodes\t2\ndocument.createTextNode()\t1\ndocument.appendChild()\t1\ndocument.write\t1\nSecondly\t1\nappendChild\t2\ndocument.createTextNode\t1\nshades\t1\n@DonJuwe\t1\nhttp://jsbin.com/xakifequ/1/edit\t1\nJSBin\t2\n.html-file\t1\nUrls\t1\n//code.jquery.com/jquery\t1\n-1.9.1.js\t1\nhttp://localhost/yourfile.html\t1\nhttp://\t3\n:D\t1\ntext-editor\t1\nsyntax-coloring\t1\nFile/Open\t1\npdb\t1\nPrior\t1\nPDB\t2\nFile->Open\t1\nreflector\t1\nstatic_assert\t1\nconstexpr\t1\nSIZE_MAX\t1\n<stdint.h>\t1\nsize_t(-1)\t1\nhttp://en.cppreference.com/w/cpp/types/climits\t1\nSurveys\t3\nrequest_id\t1\nsurveys\t3\nto_json\t1\nadvertised\t1\nyou''ll\t1\nlegged\t1\nnon-service\t1\nhttps://developers.google.com/identity/protocols/OAuth2WebServer\t1\n./example_client.py\t1\n--client_secrets_file\t1\nlocalhost:8080\t1\n2004-03-01-22.58.00.912933\t1\nf1\t1\nfractions\t1\nmusic\t1\nSpotify\t4\nspotify\t1\nnumbers/urls\t1\nimportantly\t1\nTerms\t2\nuser-supplied\t1\np+1\t1\n=p\t1\nch>='a'\t2\nch='z'\t1\nif()\t1\nha\t2\nthen(<)\t1\nch<='z'\t1\nLHS\t3\nRHS\t1\nlavalue\t1\nselected/clicked\t2\nTHANKS\t1\ngrid_filename\t2\npositives\t1\nsuppress\t1\nstare\t1\ntoolbox\t1\nproducing\t1\n.cgi\t1\nindex.cgi\t1\nevrything\t1\ncorectly\t1\n:/\t1\n<3\t1\n:')\t1\ninsecure\t1\nHTML::Template\t1\ncgi\t1\noccurrence\t1\ncygwin\t1\n46\t1\nstyled\t2\nContextMenu.Resources\t1\nContextMenu\t2\nSeparator\t3\nthird-party\t1\ndiffer\t2\noperands\t2\narguement\t1\naccorind\t1\n1+5+\t1\nvarargs\t2\nStringTokenizer\t1\nOpenTok\t4\nWebRTC\t11\nFlash-based\t1\nTB.min.js\t1\ninteroperate\t2\nChromes\t1\n2.0/WebRTC\t1\n0.9/Flash\t1\nFrame\t1\nIE6+\t1\n23+\t1\n22+\t1\nChrome/Firefox\t1\nmedium-sized\t1\nNuke\t1\nnuke\t3\nNews\t1\npandas\t5\nrow-by-row\t1\ncoefficients\t1\nsympy.sympify()\t1\ndataFrame\t2\noutPut\t1\nDF\t1\nsympify()\t1\nElaborating\t1\nlambdify\t1\nindustry\t3\nindustry.rb\t1\n:sector\t1\nindustries\t1\nalphabetically\t1\noptions_from_collection_for_select\t2\nvalue_method\t1\ntext_method\t1\naltera\t1\nDE0\t1\nDE2\t1\nDE1-SoC\t1\nboards\t1\nisa\t1\nnios\t1\nII\t4\ntest-and-set\t3\nISA\t1\nenforces\t1\nmutual\t1\ntiny\t1\nmain()\t4\nInterrupt\t1\nRoutine\t1\nlocks\t1\nNios\t3\nprocessors\t1\nHardware\t2\nMutex\t1\nperipheral\t1\ntest-and-test\t1\nAltera\t1\nMultiprocessor\t1\nClientConfigurationFactory\t1\ncom.amazonaws.ClientConfigurationFactory\t1\naws-java-sdk-core\t1\n//i2cjni.java\t1\n//i2c.java\t1\n//I2CBoard.java\t1\n-when\t1\nU2C_GetDeviceCount()\t1\n.c\t2\nCoffeScript\t1\nwebService.coffe\t1\nsimplificated\t2\n_Class.logout\t1\nhandleResult\t1\n102\t1\nwebService.coffee\t1\nhi\t1\narrayContactsFromAddressbook\t1\nschemaLocation\t3\nxml-file\t1\nxsd-File\t1\nXSLT\t4\nxmlns\t1\nhttp://www.w3schools.com\t3\nschool/personen/person\t1\nXSLT/XPath\t1\nxpath-default-namespace\t1\nxmlns:df\t1\ndf:school/df:personen/df:person\t1\ndf:name\t1\nWSO2\t1\nBAM\t2\nmediator\t2\nPayload\t2\ncapital\t1\nPascalCase\t1\nPoint\t5\nPrompt\t1\nPoints\t1\noriginal_points\t1\n99\t3\npush_back()\t1\noccurred\t2\noperator>>(...)\t1\njump\t1\np.x\t1\np.y\t1\nskip_to_character(...)\t1\ndlopen/dlsym\t1\n.so(dlclose)\t1\n.so\t4\nnc\t2\nsegv\t1\nrpm\t2\nyum\t1\nmain.js\t1\nShared\t1\n../shared/index\t1\nloaders\t1\ntransform-runtime\t1\nCol\t4\n18.2\t1\n10/29\t1\n11/15\t1\nsubstring\t4\nOP\t1\nSwipe\t1\nTouchAction\t1\nAppium\t1\n1.4.13\t1\nDraco\t1\n//Method\t1\ndriver.swipe(startingXCoordinate,StartingYCoordinate,EndXCoordinate,EndYCoordinate,timeForSwipe)\t1\n100th\t1\n450th\t1\ncoordinate.that\t1\nmilliseconds\t1\nhttp://imgur.com/qBGvP\t1\nmonospace\t1\npixel-for-pixel\t1\nUserRoles\t1\nWebForm_FireDefaultButton\t1\ntextbox1.Focus()\t1\nwebresource.axd\t1\ninaccessible\t1\nISAPI\t1\nhttp://dormfair.com/about.php\t1\n#B7DDF2\t3\n.ui-widget-content\t4\njquery-ui.css\t1\n1px\t1\n.ui-menu\t1\nui-widget\t1\nui-widget-content\t1\nui-corner-all\t1\nmouseup\t1\nonBlur\t4\nclicked/has\t1\nonCLick\t1\nOnBlur\t2\nonClick\t2\ndebuggers\t1\nbreakpoint\t3\nmouseUp\t2\nhttp://jsfiddle.net/alaa13212/Gs5Y2/\t1\nfocusout\t1\ntabindex\t1\nfocusable\t1\ncontact-us\t2\nUs\t2\nInitially\t1\ntoggle()\t1\ndiv>s\t1\nhttp://jsfiddle.net/8wbXV/\t1\n$('a')\t1\nillustration\t2\nUeditor\t1\nflip\t1\njWysiwyg\t1\nWeird\t1\ngrips\t1\nAutofac\t1\nGuice\t2\nannotations/ways\t1\nconstructors\t2\nautofac\t1\nMessageBox\t1\nShowDialog()\t1\nSystem.Windows.MessageBox.Show()\t1\nhttps://stackoverflow.com/a/20098381/2190520\t1\nstand\t1\n1-2\t1\nconnection.disconnect()\t1\nUPDATE1\t1\n$.post{}\t1\nalert(data)\t1\ndisplaying.\t1\nerror_reporting(E_ALL)\t1\ndeliberately\t1\nbirthdays\t3\npulled\t3\nprivacy\t1\nMM/dd\t1\ndateFormatterWithFormat\t1\nNSDateFormatter\t1\ndifference.day\t2\ndancing\t1\nNSDate\t4\nrip\t1\nassemble\t1\nnoon\t1\n23:00:00\t1\n00:00:00\t1\ntomorrow\t1\nbirthdayComponents\t1\nES5\t3\nbabel\t9\ntranspile\t1\nprimer\t1\nES2015\t1\nES6\t1\nsetTimeout()\t2\n200ms\t1\nSalty\t1\njeroen\t1\nwysiwyg\t1\npostContentClr\t1\nhtml()\t1\nJitter\t1\npreloading\t1\noverlooking\t1\nMemSQL\t2\nanalytical\t1\nMySQL-compatible\t1\nrowstores\t1\nhttps://github.com/the4thdoctor/pg_chameleon\t1\nadapted\t1\nshovel\t1\nNOTIFY/LISTEN\t1\nWinSCP\t1\nhttp://winscp.net/eng/index.php\t1\nubuntu\t2\nputty\t1\nwinscp\t1\nsuperuser\t1\nunpacked\t1\ngetPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionCode\t1\ngetPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionName\t1\nassets/\t1\ngetAssets()\t1\n360\t1\ndegrees\t1\npanorama\t1\nlatitude-longitude\t1\nskybox\t2\nskyboxes\t1\nplanned\t1\nstreetview\t1\nDesperately\t1\nashamed\t1\nExt.js\t1\nmy.items.push\t1\nMixedCollection\t2\ninitComponent\t1\nExt.apply\t1\nnvarchar(MAX)\t1\n2016-04-15\t1\n13:30:00.000\t1\n>>\t1\nInvalidOperationException\t1\nSequence\t1\nJeffN825\t1\nHV\t1\nM2\t1\nCB\t1\nsheet2\t1\nsheet3\t1\nsheet4\t1\nsheet5\t1\n161\t1\nPackagePart\t1\ndamn\t1\n.Single()\t2\nFirstOrDefault()\t1\nnon-LINQ\t1\n.FirstOrDefault()\t1\nhttp/2\t1\nreachable\t1\n443\t4\nloadbalancer\t1\nHTTP/2\t4\nProxyPass\t1\nmod_proxy_http\t1\nwebservers/loadbalancers\t1\nNginx\t4\nHTTP/1.1\t1\nHTTP2\t1\nJsonTextReader\t2\njson.net\t1\nhttp://pastebin.com/DbSDVt2K\t1\nTextReader\t2\nhttp://pastebin.com/iwF3xuUp\t1\nmyString\t2\nreader.ReadAsString()\t2\nUnexpected\t1\nStartArray\t1\nDeserialize\t2\nJsonConvert\t1\nDeserialze\t1\nspecifiy\t1\nJsonReader\t1\nJObject\t1\nJToken.CreateReader\t1\nNewtonsoft\t1\nreq.isAuthenticated()\t1\nIDispatch\t2\nIMyInterface\t1\nInterfaceType(ComInterfaceType.InterfaceIsIDispatch)\t1\nworksheet_change\t1\nworksheet\t1\nSheet1\t2\nG8\t1\nbeleive\t1\nsheet4.conditions\t1\nAwesome\t1\nhttps://jsfiddle.net/b1rw80jz/1/\t1\nflex-box\t1\n+CSS\t1\n+HTML\t1\npseudo-elements::before\t1\nbell\t1\nhttps://jsfiddle.net/b1rw80jz/6/\t1\nwalkthrough\t2\nComponentGroup\t1\nWiX\t1\n3.10\t1\nThink\t2\nwpf\t1\nVenue\t1\ncellular\t1\ntriangulation\t2\ncoordinates(latitude/longitude)\t1\nlat/lon\t1\ntower\t1\nNaN\t1\ncontinous\t1\nTryStart\t1\nsynchronously\t1\nisChecked()\t5\nDeprecated\t2\nUiAutomator\t1\nmathod\t1\nuiobject\t1\ngetValue()\t1\ngetValue\t1\nnotavaible\t1\nUIObject\t1\ncheckable'=>true\t1\nCheckedTextView\t1\nisChecked()\"\t1\nsuspiciously\t1\nhttp://developer.android.com/reference/android/widget/CheckedTextView.html#isChecked()\t1\nApplescript\t1\nAppleScript\t3\nproperty-value\t1\nOpening\t1\nrecompiling\t1\nresets\t1\nhttp://blueflame-software.com/using-highcharts-with-codeigniter/\t1\nhttps://blueflame-software.com/using-highcharts-with-codeigniter/\t2\nSoundCloud\t1\n<error>401\t1\nUnauthorized</error>\t1\nhttp://api.soundcloud.com/tracks?client_id=xxxx&q=punk\t1\n401\t1\nhttps://api.soundcloud.com/tracks?q=track&client_id=aeb03ac55f278fc7e579c744144b1d5d\t1\nquerystring\t1\ndiffering\t1\nwell.Thanks\t1\n@alphabets\t1\nxyz\t1\nStructure\t1\njsx\t1\n--out-dir\t1\ndevDependencies\t1\nlegitimate\t1\nRealized\t1\nbabel.rc\t1\naginst\t1\nAttribute\t1\nlookups\t1\nsenior\t1\nturning\t2\nnose\t1\nAttributes\t1\nintegral\t1\nmere\t1\ntechnicality\t1\nAttributeManager\t1\nslowly\t1\nmigrating\t1\ntracked\t1\nAdministrator\t1\n\\Administrator\t1\nMakes\t1\nlogged-in\t1\nlaptops\t1\nsynchronizing\t1\nWebService\t1\nMule\t2\n3.1.0\t1\nfooImpl\t1\nvomited\t1\nmule\t1\nExceptionTransformer\t2\ndefault-exception-strategy\t2\n<custom-exception-strategy\t1\nclass=\"com.arcusys.nkeservice.mule.dynasty.ExceptionTest\">\t1\nExceptionTest\t1\n@override\t1\nhandleException\t1\n3.1.3\t1\nhttp://mule.1045714.n5.nabble.com/mule-scm-mule-22344-branches-mule-3-1-x-modules-cxf-src-test-resources-EE-2273-td4557349.html\t1\nEE-2273\t1\nhttp://www.mulesoft.org/documentation/display/current/Mule+ESB+3.1.3+Release+Notes\t1\n<Item>\t1\nsetID()\t1\nistringstream\t1\nifstream\t1\ninput(file_name)\t1\npython-markdown\t1\ncleanest\t1\nsad\t1\nArrayAdapter\t1\ninadvertantly\t1\nrecycled\t1\nAbsListAdapter\t1\nCoreHourID\t2\nEntry\t3\nHour\t2\nWorkingFromHome\t1\nEmployeeNumber\t1\nJustifyDate\t2\nEntryDate\t2\nInHour\t2\nCoreHour\t1\nEntryID\t1\nOutHour\t2\ncomments/questions\t1\nArbitraryText\t1\nExecuteQuery\t2\nColumnAttribute\t1\nDataContext.ExecuteQuery\t1\nPOCO\t1\nLINQ-mapped\t1\nsub-optimal\t1\ngrungy\t1\nmarry\t1\nUDF\t2\ncomment-id\t1\nthings.\t2\nside-step\t1\nCent\t1\nsudoers\t1\nworkflow\t1\nWork\t1\nre-base\t2\nRe-base\t1\nwells\t1\nfeature2\t1\n<branch>\t1\nbalancer\t1\nIPs\t1\n.mp3\t3\nDSX\t4\nMusic\t1\nInformation\t1\nRetrieval\t1\nlibrosa\t1\nabsence\t1\nffmpeg\t4\nwalk-around\t1\nnotebook\t1\n--user\t1\nrequest/idea\t1\nhttps://ibmwatsondataplatform.ideas.aha.io/?category=6441922592725708622\t1\nCharles\t1\nfellow\t2\nProgrammers\t1\nTypo3\t1\nsidebars\t1\nWP\t1\nfunctions.php\t1\nbio\t1\nfooter.php\t1\nProblems\t1\nContent\t1\nthemes\t1\nwp-content/debug.log\t1\nwp-config.php\t1\nsKylo\t1\n%d\t5\ndecimals\t1\ncodex\t2\nregister_sidebars\t1\nSidebar-1\t1\nSidebar-2\t1\nSidebar-3\t1\nhighest\t2\nRandom\t1\nrand\t1\nRandom()\t1\nrand.Next()%15\t1\n-12\t1\nrand.Next()\t1\nhttps://math.stackexchange.com/questions/519845/modulo-of-a-negative-number\t1\n14}\t1\n\"rand.Next()\t1\n\"rand.Next(15)\"\t1\nrand.Next(minValue,maxValue)\t1\nminValue\t1\ninclusive\t2\nmaxValue\t1\ncode-first\t1\nSeveral\t1\nGridRow\t1\nimplied\t1\nModify\t1\noccasion\t1\nlong-running\t1\nDbContext\t5\nSaveChanges()\t1\nlegwork\t1\nnotably\t1\nunit-of-work\t1\nherself\t1\nwins\t2\nnudge\t1\nwishy-washy\t1\nliving\t1\nimprecise\t1\nEDIT1\t1\nexistance\t1\nDbSet\t1\ninvites\t1\nindefinate\t1\nodds\t1\noccaisionally\t1\nTrigger\t1\nedits\t1\nunsaved\t1\ndraggable\t1\nboundaries\t1\nVisualTreeHelper.FindElementsInHostCoordinates\t1\nTransformToVisual\t1\nmousemove\t1\nClip\t1\nshortcuts\t1\nwebcam\t1\nx264\t2\ncodec\t6\npoping\t1\nVirtualDub\t1\nHack\t1\ndub\t1\nlatency\t2\nemgu\t1\nfourcc\t2\nx264wfv\t1\n.content\t1\n.nav-wrapper\t1\nTOP\t1\nspecifics\t1\nes6\t3\nsyntax.Either\t1\ntranspiler(Babel)\t1\nNeo4J\t2\nevaluator\t4\nwalked\t1\nevaluation\t1\nmaintains\t1\ncandidate\t4\nbegins\t1\nA-D\t1\nA-B\t1\nB-C\t2\nD-E\t1\ndetermination\t1\nTraversalDescription\t2\nPaths\t1\ncomplaint\t1\nRELATIONSHIP_GLOBAL\t1\nbroadly\t1\ntraversers\t1\ntermination\t1\nPyQt\t2\nbear\t1\n.py\t4\nhate\t1\nekhumoro\t1\npyuic\t2\nimports\t1\nexample_rc\t1\nlowers\t1\nproductivity\t1\n.ui\t1\nui\t1\nuic.loadUi('example.ui')\t1\nui.setupUi()\t1\nordinary\t1\nQMainWindow\t1\nQDialog\t1\nQWidget\t1\nsetupUi\t1\nMainWindow\t1\nUi_MainWindow\t1\nO(n^2)\t7\nexamining\t1\nproving\t1\nn^2\t2\nO(n^3)\t1\ninverse\t1\nsubsection\t1\nquadratic\t1\nO(n2))\t1\ndominant\t2\nn-1\t2\nO(n)\t1\nt_j\t2\ndecrementing\t1\nsumming\t1\npaying\t1\nn+1\t1\nwolfram\t1\n/2\t1\ndominate\t1\nblacberry\t1\nVOIP\t1\ndelivering\t1\nByteArrayOutputStream\t2\ndataOut\t1\nRTP\t1\nlower-case\t1\nupper-case\t1\napproximate\t1\nQuadratic\t1\nBSpline\t1\nCurve\t1\nB-spline\t1\ncurve\t2\nfitting\t1\nadaptive\t1\nrefinement\t1\nPark\t1\nLee\t1\nFair\t1\ninterpolation\t1\nB-splines\t1\nenergy\t1\nminimization\t1\nVassilev\t1\nConverting\t1\ncurvature\t2\n1.6\t1\ntrunk\t2\n30000\t1\n/trunk\t1\nsubdirectory\t1\nsub-folders\t1\n30,000\t1\nnoticeable\t1\nnetworked\t1\nLC3\t2\ndevides\t1\nremainder\t1\nR0.In\t1\nR1\t3\n0.Else\t1\nbeginner.Could\t1\n#25\t1\nmessage.Thank\t1\nunauthorized\t1\ndetaisl\t1\ncolossal\t1\nmassive\t1\nknees\t1\nlack-of-scalability\t1\nDataTables\t2\nnifty\t1\nsuffice\t1\nhurry\t1\nton\t2\njudicious\t1\nmotion\t1\nadage\t1\n20%\t2\nNail\t1\ncleanly\t1\ntown\t1\nflashy\t1\nfluff\t1\nIS\t1\nEXT.JS\t1\n1.8\t3\nREE\t1\nFixnum\t11\nCalling\t3\nobject-oriented\t2\nreceiver(!)\t1\nsymmetry\t2\nQuaternion\t10\nQuaternions\t4\nthoughtful\t1\nFixnums\t1\nFixnum#\t2\nreverses\t1\nsubtyping\t1\nunderstands\t1\nviolates\t1\nRope\t1\nto_str\t3\nIS-A\t2\nString#\t2\nstring-like\t1\nPeople\t1\ncomplications\t1\nMutable\t1\nmoments\t1\nstdlib\t1\nformal\t1\ndouble-dispatch\t1\ncoerce\t5\nIOW\t1\n#coerce\t2\nQuaternion.new(2,0,0,0)\t1\nQuaternion.new(1,0,0,0)\t1\nFixnum#+\t1\nequivalence\t4\n#equal\t2\n#eql\t1\n#hash\t1\nMindful\t1\nequips\t1\nher\t1\nGoing\t1\n#<=>\t1\nthree-way\t1\nmethod,\t1\nComparable\t1\nmodule,\t1\n#==,\t1\n#<,\t1\n#>\t1\n#sort\t1\noperator-like\t1\nmindful\t1\nexistence\t1\nundergoing\t1\nFormCollection\t1\nHTTPPost\t1\ndecorated\t1\ncontroller.There\t1\nhttp://tutorial.techaltum.com/Form-collection-in-MVC.html\t1\nhttp://www.c-sharpcorner.com/UploadFile/dacca2/understand-formcollection-in-mvc-controller/\t1\nexoplayer\t1\nAMR\t2\nFFmpeg\t1\nExtension\t1\naar\t1\nextension-ffmpeg-debug.arr\t1\nloosely\t1\nlumping\t1\nMyAllIncludingEnumType\t1\nrawValues\t1\nAnyObject\t1\n.rawValue\t1\nship\t1\nGM\t1\nKametrixom\t1\nenums\t3\nRawRepresentable\t2\napproval\t1\napprover\t3\nOffer\t1\nDetail\t1\nfinds\t2\naudit\t1\ncolum\t2\naligned\t1\n.Parent\t2\n#main\t5\nDiv\t1\nrecognise\t1\nstrech\t1\nDave\t1\nfloated\t1\noverflow:hidden\t1\noptionall\t1\nclear:both\t1\nCapabilitie\t1\nEN\t1\nENGLISH\t1\nCentos\t1\niptables\t2\nPrtg\t1\nSolarwinds\t2\nOpmanger\t1\nMonitor\t1\nLinuxScript\t1\nthwack\t1\nurls.py\t2\ndiv_val\t1\nrefering\t1\nleas\t1\nrender()\t1\nhttps://medium.com/@adamzerner/client-side-rendering-vs-server-side-rendering-a32d2cf3bfcc\t1\nEmployees\t1\nprofile.html\t1\n$_SESSION\t2\nprofile.php\t1\ninterpreter\t1\n.html\t1\nsurrounded\t1\nthrew\t1\ndecays\t1\nchar*\t2\nstd::exception\t2\nsuper-FAQ\t1\nyou/\t1\nC-string\t1\nchar[13]\t1\nC-Arrays\t1\ndecay\t1\npredefined\t1\n<stdexcept>\t1\nstd::logic_error\t1\nstd::range_error\t1\nstd::bad_alloc\t1\nso-called\t1\nunwinding\t1\nrethrow\t3\nstd::terminate()\t1\naborted\t1\ntry/catch\t3\nCases\t1\ntreatment\t1\nrealistically\t1\nexceptional\t1\ncatch(...)\t1\n//..\t1\nerrno\t1\nthrow/catch\t1\nprocess_several_files()\t1\nnon-cacheable\t1\nDRAM\t1\nkmalloc()\t1\nget_free_pages\t1\nvmalloc\t1\ndrivers/char/mem.c\t1\nChapter\t2\nDrivers\t1\npie\t1\nchart.js\t1\npro\t1\ndynamics\t1\nObserver\t1\nBeautiful\t1\nSoup\t1\nbs4/__init__.py\t1\n219\t1\nReasons\t1\npromote\t1\nWarnings\t1\nExceptions\t1\nwarnings.simplefilter\t1\nwarnings.filterwarnings\t2\ntraceback\t1\nPythons\t1\npdbs\t1\npost-mortem\t1\ndig\t1\n-W\t2\nUSER_SITE\t2\nsite._script()\"\t1\nusercustomize.py\t1\nCredits\t1\ndatetimes\t3\n2013-07-22\t1\n2013-07-28\t4\n2013-07-23\t1\n2013-07-24\t2\n2013-07-25\t2\n2013-07-26\t2\n2013-07-27\t1\nRequire\t1\n$interval\t3\n3.\t1\n$period\t2\nLikewise\t1\npoof\t1\nGone\t1\nCODEPEN\t1\nuiGmapgoogle-maps\t3\ndependecies\t1\nng-href\t1\nhref\t3\npreparation\t1\nJhon\t1\nPapa\t1\nngRepeat\t1\nhttp://codepen.io/anon/pen/BKLdyP?editors=1011\t1\nAFIK\t1\nwhite/blank\t1\nsine\t1\nwave\t1\naxes\t1\n$('#my_id')\t1\n.on\t1\n'page\t1\n.dt\t1\nperPageFunctionCall()\t1\n;})\t1\n.dataTable(soonansoforth)\t1\nredisplays\t1\ntrip\t1\nsubsequent\t1\ntrips\t1\nsomeway\t1\nfavorite\t1\nassociative\t1\nuser_id\t1\nforum_id\t1\nuser_forum_subscriptions\t1\nforum.users\t1\nSubscription\t1\nsubscriptions\t2\nhave_many\t1\nadded/removed/edited\t1\nestablish\t1\ntwitter-like\t1\ngrade_id\t1\nwhereLoose()\t1\nwhere()\t1\nInt\t1\nactivates\t1\nrobotic\t1\narm\t1\nrobot\t2\n..//../Karel/RIGHT1\t1\nrightmanual.stm\t1\nimage/button\t1\nonegrey.jpg\t1\nbtnRedirect\t1\n:P\t1\nTimerTask\t1\nstandby\t1\nWake\t1\nLock\t1\nWakeLock\t2\ntask/runnable\t1\nwakelock\t1\nconsole.log(e)\t1\ndone()\t1\nextern\t2\nkernel.s\t1\nSelf\t1\nHosted\t1\n2.2.0\t1\nHub\t2\n28-30\t1\nsecs\t1\nAbort\t1\nunblocked\t1\nTask.Factory.StartNew\t1\n(()\t1\nhubConnection.Stop());)\t1\nTL\t1\n;D\t1\nhttps://github.com/SignalR/SignalR/issues/3102\t1\nhub\t2\nacknowledgement\t1\nWebdriver\t2\ndropUp\t1\nmenu_tab\t1\nTIA\t1\nclearTimeout()\t1\nisn't\t1\nhttp://jsfiddle.net/YFPey/\t1\nSolidus\t3\nUK\t1\nZip\t1\nPost\t1\nlocalization\t1\nforked\t1\nSpree\t2\ninternationalization\t1\nsolidus_i18n\t1\nInstallation\t1\nInstructions\t1\nreadme\t1\nconfig/initializers/spree.rb\t1\nInternationalization\t1\ndocumenation\t1\ndialogueService\t1\nDialogue.component.ts\t1\nDialogue.component.spec.ts\t1\nCancel\t2\n#myDiv\t1\n$myDialog\t1\nautoOpen\t1\nover-ride\t1\njquery.ui.theme.css\t1\n.ui-state-default\t3\n.ui-widget-header\t2\nClose\t1\n.ui-icon\t1\nDialogue\t1\nupvoted\t1\ndialogClass\t1\nmyDialogCSS\t1\nMyStyleSheet.css\t1\nPlayerData\t1\nXCode\t2\nresulted\t1\nNPE\t1\nmaaartinus\t1\nsloppy\t1\nVrushank\t1\nDesai\t1\nInstanceCreator\t1\n----\t4\n2013-05-30\t1\n2013-05-29\t1\n2013-05-28\t1\n2013-05-27\t1\ngsub\t5\ntalling\t1\ndashes\t1\nas.Date\t2\nProduces\t1\ntimeseries\t1\nGWT+Hibernate+Gilead\t1\nhttps://developers.google.com/web-toolkit/articles/using_gwt_with_hibernate\t1\nGilead\t3\n1.3.2\t1\n2010-05-22\t1\n3.5.x\t1\nhttp://sourceforge.net/projects/gilead/forums/forum/868076/topic/4525959\t1\ne-commerce\t1\nshopify\t1\nsitemap\t1\nShopify\t2\ncart0\t4\nadd/update/change\t1\nchained\t1\nadditions/changes\t1\n/cart/update.js\t1\nquantities\t1\nhttps://help.shopify.com/themes/development/getting-started/using-ajax-api#update-cart\t1\nsingle-line\t1\nreliability\t1\njavafx\t1\ndataTypeColumn\t1\nreuses\t1\nintervene\t1\nValues\t2\nDataType\t2\nFactory\t1\nIntegers\t1\nCellValueFactories\t1\nassoziated\t1\nreacts\t1\ncommited\t2\nsetPlaceholder\t1\nComboBoxTableCell\t1\nsuddendly\t1\nObservableList\t1\nRather\t1\nbuf\t1\ncellFactory\t1\ndatagrid\t1\non.\t1\ngcov\t1\nMerge\t2\nhttp://www.opensource.apple.com/source/gcc/gcc-5646/gcc/libgcov.c\t1\nsanity\t1\n.gcda\t2\ngains\t1\nprofilable\t1\nstuff.c\t3\nmain.c\t2\nmain.o\t2\nstuff.o\t2\ntestexe\t1\n-fprofile-arcs\t1\n-ftest-coverage\t1\nprofiling\t2\nexecuatable\t1\nmain.gcda\t2\nstuff.gcda\t2\n#if\t2\nrelink\t2\nxargs\t1\nre-check\t1\nopenssl\t1\n0.9.8g\t1\nX509_verify\t1\n0/1\t1\nobj_ID\t1\ncursors\t2\nHelper\t1\nngShow\t1\ncrossfade\t1\nhttp://plnkr.co/edit/EcT2oOmClz65WUgXgG4g?p=preview\t1\n1.2.4\t1\nng-animate\t1\nfading\t2\nin/out\t1\noverlapping\t1\ncrossfading\t1\nutilization\t4\nresourceName.utilization()\t1\nStatistics\t2\nstatisticName.mean()\t2\nAnyLogic\t1\nresetStats()\t1\naveraged\t1\nsymphony\t2\nhttps://www.npmjs.com/package/gulp-twig\t1\ntest.twig\t2\nhttps://github.com/justjohn/twig.js/wiki/Implementation-Notes\t1\nhttps://developers.google.com/web-toolkit/tools/gwtdesigner/features/menu_editing\t1\nReturning\t1\ngwtearthdemo\t1\n96\t1\njavax.swing.JFrame\t1\nDitto\t1\nJMenuBar\t1\nJMenu\t1\nsuggesting\t1\nClasses\t1\ntrial\t1\nQuest\t1\nOptimizer\t1\ndramatically\t1\nPlan\t2\n831\t1\nElapsed\t2\n00:00:21.40\t1\nRecords\t2\n40,717\t2\n686\t1\n00:00:00.95\t1\nre-arranging\t1\n||\t2\nAA\t1\nVERSION_NAME\t1\nRob\t1\ntune\t1\nGather\t1\nstats\t1\nDBA\t1\nhttp://www.adobe.com/devnet/flash/quickstart/datagrid_pt3/\t1\nCellRenderer\t1\nCellRenderers\t1\ntetris\t1\nFatal\t1\nnon-object\t1\nbelows\t1\nhelper.php\t1\nmod_feedGrabber.php\t1\nmod_feedGrabber.xml\t1\ndefault.php\t1\nfieldset\t1\nWin32\t1\nMMDeviceEnumerator\t1\nIaudiosessionManager\t1\nDirectShow\t1\nPatterns\t1\nRegExp\t3\nreformats\t1\nGeoJSON\t2\nMultiPolygon\t1\nMb\t1\nreformatting\t1\ncomplain\t1\nunbalanced\t1\nextensive\t1\n2017-01-07\t1\nGPS-points\t1\nFeature\t1\n35.642.1.001_001\t1\n-p\t1\nsuffix\t2\nquotation\t2\nPlatypus\t2\nprompts\t1\nTkinter\t2\nLINK\t2\n/LINK\t2\nhref=url>url</a>\t1\na-zA-Z0-9_-.\t1\nCatch\t1\nhttps://\t2\nexample.com/google.com\t1\npreg_replace_callback()\t1\nxss\t1\nStrip\t1\nBB\t1\nAnalyses\t7\ncolumns(id\t2\ngame_id(FK\t1\n));\t2\nGames\t2\nround_id(FK\t1\nRound\t2\ncolumns(id,\t1\nround)\t1\nround_id\t2\nAnalyses::orderBy('round_id')->get()\t1\nanalyses\t1\norderby\t2\ngames\t2\neagerloading\t1\nexemple\t2\ngame_id\t1\nAnalyse\t1\norderedby\t1\nLazy\t3\nEager\t1\nExplicit\t1\nreps\t2\nReps\t1\nReps_Zones\t1\nReps_Prerequisites\t1\nReps_Languages\t1\nappointments\t2\nperformances\t1\nLazy-loading\t1\nDBcontext\t1\ndatalayer\t1\nproperites\t1\nisnt\t1\nToList()\t1\nfacebook\t2\nhttp://developers.facebook.com/bugs/298512163544012?browse=search_4f3c5c801a70d4639459595\t1\nprioritized\t1\n520px\t2\ngriffon\t1\nsvg-edit.html\t1\njs/css\t1\nSVG-Edit\t1\nTwoWay\t1\nSelectionChanged\t1\nfpr\t1\nScreenshots\t1\nincude\t1\nissue.\t1\n42\t1\nMSIE\t1\n5.1.7\t1\n-webkit-linear-gradient(#FFF,#000)\t1\nexterning\t1\nMain.cpp\t1\nfunctions.cpp\t1\nstd::vector<Point2f>\t1\nobj_corners(4)\t1\ninitializer\t1\nEqual\t1\nunwrap\t1\nequatable\t1\noptionals\t5\nperson.name\t2\nduplication\t2\nminimized\t1\nextracting\t1\ngenes\t2\nbooks.models\t1\nRouter\t1\nrouters.py\t1\nprogmatically.\t1\nquerysets\t1\n10px\t1\nproduct-category\t2\nli.product-category\t2\nproduct>img\t1\n<product>\t1\nli-s\t1\ning\t1\n<img>\t1\nhomePage\t1\nProgressSample\t1\nmain(......)\t1\nplz\t3\nur\t1\nfoo.bar\t2\nOperator\t1\noperator->\t2\nfoo->bar\t2\nptr\t1\n.bar\t1\noverloads\t1\nspec/services/\t1\napp/services\t1\nrspec\t1\nassociations\t4\n@account\t2\n:confirmed\t2\nTransaction.pay\t2\nmock\t1\nFactoryGirl\t2\nDevise\t3\nStub\t2\nBusiness\t1\nstub\t1\nstubbed\t1\nconsistently\t1\nTransactionID\t1\nDoctorID\t2\nPatientID\t3\nTotalMedicine\t2\nMedicineID\t1\nmultiples\t1\nsmallest\t1\nDoctor\t1\ndidnot\t1\nmultiplies\t1\n4.\t1\nCast(Substring(PatientId\t1\nLen(PatientId\t1\ntableHeader\t1\nchar(5)\t1\nRTRIM\t1\nthis->forward404\t1\ngetApplicationConfiguration()\t1\nsettings.yml\t1\n.actions\t1\nerror_404_module\t1\nerror_404_action\t1\ncustom404\t1\nforward404\t2\ncustom404Success.php\t1\nprod\t3\ndirtiest\t1\nCommonActions\t1\nsfError404Exception\t1\nenviroment\t1\nset_exception_handler(\"my_handle\")\t1\nPardon\t1\nstupidity\t1\nCLRv2\t1\nEric\t1\nLippert\t1\nrethrows\t1\nDivisionByZeroException\t1\nre-throwing\t1\nre-set\t1\nDurable\t2\nOrchestration\t2\ndocumentation.So\t1\nverb\t1\nresponded\t2\nNotFound\t2\n.Why\t1\ntriggred\t1\ndurable\t1\norchestration\t1\napproach.Is\t1\nFunctions\t1\nHttpTrigger\t1\nhttps://github.com/Azure/Azure-Functions/issues/552\t1\nhttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook\t1\nTimer\t1\nhttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer\t1\ntimer-triggered\t1\nOrchestrationClient\t1\nintentionally\t1\n#git\t1\nreporting_date\t1\ninterest_payment\t1\nbalance\t5\n200401\t1\n.Is\t1\nes-spec\t1\nbabel-2015\t1\npreset\t2\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names\t1\nes2015\t1\nBabel\t1\nconsoling\t1\n<script\t1\nsrc=\"https://cdnjs.cloudflare.com/ajax/libs/babel-core/6.1.19/browser.min.js\"></script>\t1\n0Aconst%20A%20%3D%20%7B%5BL%5D%3A%20responses%7D%0Aconsole.log(A)%0A\t1\nappinventor\t1\nhttps://docs.google.com/document/d/1Xc9yt02x3BRoq5m1PJHBr81OOv69rEBy8LVG_84j9jc/pub#h.5p32kqx16c2d\t1\ninventor\t1\nhttps://github.com/mit-cml/appinventor-sources.git\t1\ntired\t1\nwindows/\t1\ncorporate\t1\nunset\t1\nTextbox\t1\nFORM\t1\nWhats\t1\nmessage.Please\t1\n.keyup()\t1\nmyObject\t1\nMyObject\t1\nhttp://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmObjectOwnership.html#//apple_ref/doc/uid/20000043-SW4\t1\nImportant\t1\nZigglzworth\t1\n-(void)dealloc\t1\nMoved\t1\nNP-hard\t5\ntraveling\t1\nsalesman\t1\nMAX-SAT\t1\nchromatic\t1\nIntuitively\t1\nco-NP\t2\nrefute\t1\nwitness\t3\nKnowing\t1\nPSPACE-hard\t1\nbroad\t1\nsatisfying\t1\nprecludes\t1\nMAX-CNF-SAT\t1\nscored\t1\nfloor(k/N)\t3\ncomputable\t1\npolynomial\t3\nvaluation\t4\nyields\t2\nmaximizing\t1\nFLOOR-CNF-SAT\t2\nTAUTOLOGY\t4\nnegate\t1\nNegation\t1\nsolver\t1\ndeems\t1\ncrafted\t2\nsatisfies\t1\ncheating\t1\nartificially\t1\nco-NP-complete\t2\nco-NP-hard\t1\nreduction\t2\narbitrarily\t1\n1}\t1\nK\t2\ncheat\t1\nnegated\t1\nd1\t1\ndN\t1\n2N\t2\nregularity\t1\nscoring\t1\nis-optimal\t1\nall:/\t1\ngreedy\t1\nMOST\t1\nPentaho\t1\nKettle\t1\nInternal.Job.Filename.Directory\t4\nSPoon.bat\t1\njob/xfrm\t1\nrunnig\t1\nspoon.bat\t1\nSpoon\t1\nhttp://jira.pentaho.com/browse/PDI-7434\t1\ncatching\t1\nfull-blown\t1\n5xx\t2\nJson()\t1\nC-based\t1\nJSON-C\t1\nJansson\t1\noly\t1\ndata.pdf\t1\noutput.csv\t1\npdfminer\t1\ntabula\t1\nnon-graphic\t1\nLocations\t1\n-100\t2\n21x21\t1\nranging\t1\n-10\t1\n+10\t1\nLIVE\t1\nFunktion\t1\ngetLocation(x,y)\t1\nRevolution\t1\nRAM-sized\t1\nSurvSplit()\t1\nsurvival\t1\nsymfony\t1\nfgetcsv\t1\ncolor.Is\t1\nhttps://git.webworks-nuernberg.de/webworks-nuernberg/parsecsv\t1\ncweiske\t1\n.xls\t1\n.odt\t1\nDate(2016,\t1\n4,\t1\nJSbin\t1\nhttp://jsbin.com/catolumifa/edit?html,output\t1\n<meta>\t1\nsheets,\t1\n<link>\t2\nvote\t2\nstylesheets\t1\nHW\t1\nMultivariate\t1\nAnalysis\t1\nPROC\t2\nPLOT\t1\n.05\t1\ninch+\t1\ninformative\t1\nSAS\t2\nskilled\t1\nods\t1\nSGPLOT\t1\nCRUD\t1\npost_save\t1\nsignals\t5\nCRUD_Storage\t2\npre(post)init\t1\nDRY\t1\ndismissing\t1\ndismiss\t1\ndecorator\t1\nskip_signal\t1\nhelpdesk\t2\nEmails\t1\nXPages\t1\ncourtesy\t1\nhttp://techdriveactive.blogspot.co.uk/2012/11/open-attachments-in-xpage-in-client.html\t1\nHelpDeskOpenDoc.xsp\t1\nXPage\t1\nRich\t2\nContentPane\t1\nXPiNC\t1\nWAMP\t2\nMean\t1\nsever\t1\nWIN\t1\ncoz\t1\n.cancel()\t1\nNotifications\t1\nreciever\t1\nnotificationId\t1\nmNotificationManager\t1\nnotify(1\t1\nmBuilder\t1\n())\t1\nputExtra\t1\ntelephone\t2\nworkarounds\t1\nscreenshoting\t1\nverifying\t1\nRootFrame.Obscured\t1\nhttp://www.wintellect.com/CS/blogs/jprosise/archive/2011/02/11/silverlight-for-windows-phone-programming-tip-6.aspx\t1\nCOPY\t1\nguillemet\t1\n(Âť)\t1\nLoads\t1\ndots\t1\nINSERTs\t1\nchar_length\t1\nUTF8/UNICODE\t1\nMultibyte\t1\nhttp://docs.aws.amazon.com/redshift/latest/dg/multi-byte-character-load-errors.html\t1\neuclidean\t2\nnorm\t1\nsquared\t1\ndistances\t1\n=3\t1\npdist2\t2\nPairwise\t1\nbigList\t1\nlittleList\t1\nleverages\t1\nBenchmarking\t2\nBenchmark\t1\nruntimes\t1\nShai\t1\nbsxfun\t2\nwinner\t1\nmousedown\t3\nunforcused\t1\ndeselected\t1\ndirective/\t1\nevent.stopPropagation()\t1\nuninstalled\t4\nAPN\t1\nabsent\t1\nAPNS\t1\nconclusively\t1\nng-map.min.js\t1\napplicatoion\t1\n.How\t1\nsong\t2\nbrowses\t1\nIphone\t1\nhtml5\t1\nplaybackrate\t2\nBrowsers\t1\nweb-audio\t1\nmobiles\t1\ntempo\t2\nschedules\t1\nBPM\t3\nAudioBufferSourceNode\t1\npre\t1\nplaybackRate\t1\npitch\t1\ncorrection\t1\nhttps://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode\t1\nuid='0\t1\ndisapeared\t1\nciv_alive='0\t1\nmariadb\t2\npandas.DataFrame\t1\nfloat64\t3\nmyComplexFunc()\t4\n`̀N\t1\ndf\t1\ndtype\t1\nselect_dtypes\t1\naggreagate\t1\nSeries\t1\ndf.A\t1\nbadly\t1\nCompose\t4\nTabBar\t1\nToolBar\t3\ntabBar\t1\nhidesBottomBarWhenPushed\t2\nSMS\t1\nTotally\t1\ntabbar\t2\ncompose\t1\nMFMessageComposeViewController\t1\nHappy\t1\nIssue\t1\ntraying\t1\nImapClient\t1\nSystem.Exception\t1\nAE.Net.Mail.dll\t1\nxm003\t1\nBAD\t1\nAE.Net.Mail\t2\nhttps://github.com/andyedinborough/aenetmail/issues/197\t1\nReplacing\t1\nSearchCondition\t1\n@Ahmado\t1\nalso.for\t1\napplicatin\t1\nnuget\t1\nOpenPop.NET\t1\nStep1\t1\n:Each\t1\nSox\t1\narmeabi\t1\narmeabiv7\t1\nheartly\t1\nhttps://github.com/guardianproject/android-ffmpeg\t1\nrefuse\t1\niter()\t1\nnext()\t1\nStopIteration\t1\nerror.You\t1\ntry-except\t1\nitertools.izip()\t1\nzip(l,l[1:])\t1\nneighbour\t1\nKasra\t1\niter()-based\t1\npage-specific\t1\nimport.php\t2\nstyles.css.php\t4\nstdClass\t1\nse\t1\n$_GET['name']\t1\napi-oauth/openconnect/identity\t1\nfederation/sign\t1\nprotocols\t1\nauthorize\t1\nSign-in\t1\naspects\t1\nAuthorizing\t1\ndocumentations\t1\nflights\t1\nfirst_value()\t1\nlast_value()\t1\nFIRST_VALUE\t1\nLAST_VALUE\t1\nSQLServer\t1\nsymbiosis\t1\nYogesh\t1\nSharma\t1\n3.2.0\t1\n-D\t1\n-M\t1\nGeneralized\t1\nLibstree\t1\nmulti-character\t1\nUTF\t1\ncodepoint\t1\noverlaps\t1\nOutputting\t1\ncodepoints\t1\nmanipulating\t2\nIMO\t1\nUTF-32\t2\nnix\t1\nimbue\t4\nfacet\t1\nfacets\t2\nhttp://www.boost.org/doc/libs/1_38_0/libs/serialization/doc/codecvt.html\t1\n1.46\t1\nwritting\t1\nUTF-16/32\t1\nDifferent\t1\nDinkumware\t1\nhttp://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=index_cvt.html#Code%20Conversions\t1\nUTF-X\t1\nUCS-Y\t1\ntechnically\t1\ninconsequential\t1\nStick\t1\nSurrogate\t1\n-O3\t2\n0.014\t1\n-O0\t1\n0.000000\t1\n-03\t1\nsummarize\t1\nelimination\t1\nas-if\t1\nomits\t1\nspend\t1\npowerless\t1\nmystery\t1\nQtCreator\t1\nPopulation\t5\nevolve\t1\nPopulationMember\t2\npopulation\t3\nPopulation::evaluate()\t1\nstrangest\t1\nreport()\t2\nexperimentation\t1\nstd::sort\t1\nqSort\t1\nPopulation->evaluate()\t1\naddres\t1\n0xbffff628\t2\npopulation_->members_.count()\t1\nprintouts\t1\nevaluate()\t1\nproblem_\t2\n0xbffff780\t1\n344\t3\npuzzling\t1\nevaluate(PopulationMember&)const\t1\nPopulation-instances\t1\nownsMembers_\t1\nfishy\t1\ndestructors/constructors\t1\nlifecycle\t1\nPopulation&\t1\nPopulationMembers\t1\nPopulations\t1\nFix\t1\nSOF\t1\njoy\t1\n"
  },
  {
    "path": "code/Attentive_BiLSTM/print_result.py",
    "content": "import tolatex\nimport json\n\nimport utils_so as utils \n\n\nfrom config_so import parameters\n\ndef print_result(eval_result,epoch_count, sorted_entity_list_file, entity_category_code, entity_category_human_language):\n\tresult={}\n\tresult[\"header\"]=[\"\", \"Precision\", \"Recall\", \"F1\", \"Predicted\", \"Correctly Predicted\"]\n\tresult[\"rows\"]=[]\n\t\n\tover_all_result= eval_result['overall']\n\tby_category_result = eval_result['by_category']\n\t#load_sorted_entity_file\n\twith open(sorted_entity_list_file) as f:\n\t\tsorted_entity_list = json.load(f)\n\n\n\tfor entity in sorted_entity_list: \n\t\tif entity not in by_category_result: \n\t\t\tcontinue\n\t\tl = [entity, by_category_result[entity][\"P\"], by_category_result[entity][\"R\"], by_category_result[entity][\"F1\"], by_category_result[entity][\"Total Predicted\"], by_category_result[entity][\"Correctly Predicted\"] ]\n\t\tresult[\"rows\"].append(l)\n\t\n\tl=[\"overall\", over_all_result[\"P\"],over_all_result[\"R\"], over_all_result[\"F1\"], over_all_result[\"Total Predicted\"], over_all_result[\"Correctly Predicted\"]]\n\tresult[\"rows\"].append(l)\n\t#tolatex.tolatex(result)\n\n\t# global epoch_count\n\t# epoch_count+=1\n\top_str=[str(elem) for elem in l]\n\t\n\t# Fout_Perf_by_Epoch = open(utils.perf_per_epoch_file_all,'a')\n\t# Fout_Perf_by_Epoch.write(\"epoch_count:\"+ str(epoch_count)+ \"\\t\" +\"\\t\".join(op_str)+\"\\n\")\n\t# Fout_Perf_by_Epoch.close()\n\n\n\tresult={}\n\tresult[\"header\"]=[\"\", \"Precision\", \"Recall\", \"F1\"]\n\tresult[\"rows\"]=[]\n\t\n\tover_all_result= eval_result['overall']\n\tby_category_result = eval_result['by_category']\n\t\n\tcount_code=0\n\tp_code=0.0\n\tr_code=0.0\n\tf1_code=0.0\n\n\tif not parameters['segmentation_only']:\n\n\t\tfor entity in sorted_entity_list: \n\t\t\tif entity not in by_category_result: \n\t\t\t\tcontinue\n\t\t\t# if entity not in entity_category_code:\n\t\t\t# \tcontinue\n\n\t\t\tp_code+=float(by_category_result[entity][\"P\"])\n\t\t\tr_code+=float(by_category_result[entity][\"R\"])\n\t\t\tf1_code+=float(by_category_result[entity][\"F1\"])\n\n\t\t\tcount_code+=1\n\n\t\t\tl = [entity, by_category_result[entity][\"P\"], by_category_result[entity][\"R\"], by_category_result[entity][\"F1\"]]\n\t\t\tresult[\"rows\"].append(l)\n\n\t\t# l=[\"Code Entity Avg\", round((p_code/count_code),2), round((r_code/count_code),2), round((f1_code/count_code),2)]\n\t\t# result[\"rows\"].append(l)\n\n\t\t# count_human_lang=0\n\t\t# p_human_lang=0.0\n\t\t# r_human_lang=0.0\n\t\t# f1_human_lang=0.0\n\t\t# for entity in sorted_entity_list: \n\t\t# \tif entity not in by_category_result: \n\t\t# \t\tcontinue\n\t\t# \tif entity not in entity_category_human_language:\n\t\t# \t\tcontinue\n\n\t\t# \tp_human_lang+=float(by_category_result[entity][\"P\"])\n\t\t# \tr_human_lang+=float(by_category_result[entity][\"R\"])\n\t\t# \tf1_human_lang+=float(by_category_result[entity][\"F1\"])\n\n\t\t# \tcount_human_lang+=1\n\n\t\t# \tl = [entity, by_category_result[entity][\"P\"], by_category_result[entity][\"R\"], by_category_result[entity][\"F1\"]]\n\t\t# \tresult[\"rows\"].append(l)\n\n\t\t# l=[\"Human Lang Entity Avg\", round((p_human_lang/count_human_lang),2), round((r_human_lang/count_human_lang),2), round((f1_human_lang/count_human_lang),2)]\n\t\t# result[\"rows\"].append(l)\n\n\tl=[\"overall\",over_all_result[\"P\"],over_all_result[\"R\"], over_all_result[\"F1\"]]\n\tresult[\"rows\"].append(l)\n\n\ttolatex.tolatex(result)\n\n\n"
  },
  {
    "path": "code/Attentive_BiLSTM/sorted_entity_list_by_count_all.json",
    "content": "[\"Class\", \"Application\", \"Variable\", \"User_Interface_Element\", \"Code_Block\", \"Function\", \"Language\", \"Library\", \"Data_Structure\", \"Data_Type\", \"File_Type\", \"File_Name\", \"Version\", \"HTML_XML_Tag\", \"Device\", \"Operating_System\", \"User_Name\", \"Website\", \"Output_Block\", \"Error_Name\", \"Algorithm\", \"Organization\", \"Keyboard_IP\", \"Licence\"]"
  },
  {
    "path": "code/Attentive_BiLSTM/test_char_embeddings.py",
    "content": "# coding=utf-8\n\nfrom __future__ import print_function\nimport optparse\nimport itertools\nfrom collections import OrderedDict\nimport torch\nimport time\nimport pickle\nfrom torch.optim import lr_scheduler\nfrom torch.autograd import Variable\n# import matplotlib.pyplot as plt     #JT: commented it\nimport sys\nimport os\nimport json\nimport numpy as np\nimport codecs\n# import Visdom     #JT: commented it\n# from utils import *\n# from loader import *\n# from config import opts\n\n\n# from model_wo_char import BiLSTM_CRF\nfrom model import BiLSTM_CRF\n\n\nimport utils_so as utils    #JT: utils for SO\nimport loader_so as loader  #JT: loader for SO\nfrom config_so import parameters\nfrom config_so import opts\nfrom utils_so import Sort_Entity_by_Count\nimport shutil\n\n# from evaluate_so import evaluating\n# sys.path.append('../../utility/')\nimport print_result \nimport conlleval_py \nimport tolatex\n\n\ntorch.backends.cudnn.deterministic = True\ntorch.manual_seed(parameters[\"seed\"])\n\nnp.random.seed(parameters[\"seed\"])\n\n\n\nfrom sklearn.metrics.pairwise import cosine_similarity\nfrom collections import defaultdict\n\n\nassert os.path.isfile(parameters[\"train\"])\nassert os.path.isfile(parameters[\"dev\"])\nassert os.path.isfile(parameters[\"test\"])\nassert parameters['char_dim'] > 0 or parameters['word_dim'] > 0\nassert 0. <= parameters['dropout'] < 1.0\nassert parameters['tag_scheme'] in ['iob', 'iobes']\nassert not parameters['all_emb'] or parameters['pre_emb']\nassert not parameters['pre_emb'] or parameters['word_dim'] > 0\n# assert not parameters['pre_emb'] or os.path.isfile(parameters['pre_emb'])\n\n\n\n\n\n\n\ndef prepare_train_set_dev_data():\n\n    lower = parameters['lower']\n    zeros = parameters['zeros']\n    tag_scheme = parameters['tag_scheme']\n\n    #------------------------------------------------------------------\n    #------------- prepare the training data --------------------------\n    #------------- merge labels and select category specific entities -\n    #------------------------------------------------------------------\n\n    input_train_file=utils.Merge_Label(parameters[\"train\"])\n    \n    Sort_Entity_by_Count(input_train_file,parameters[\"sorted_entity_list_file_name\"])\n\n    with open(parameters[\"sorted_entity_list_file_name\"]) as f:\n        sorted_entity_list = json.load(f)\n\n    set_of_selected_tags=[]\n\n\n\n\n    entity_category_code=parameters[\"entity_category_code\"]\n    entity_category_human_language=parameters[\"entity_category_human_language\"]\n\n\n    set_of_selected_tags.extend(sorted_entity_list[0:-6])\n\n    if parameters['entity_category']=='code':\n        for entity in entity_category_human_language:\n            if entity in entity_category_human_language and entity in set_of_selected_tags:\n                set_of_selected_tags.remove(entity)\n\n        \n\n    if parameters['entity_category']=='human_lang':\n        for entity in entity_category_code:\n            if entity in entity_category_code and entity in set_of_selected_tags:\n                set_of_selected_tags.remove(entity)\n\n        if 'Algorithm' not in set_of_selected_tags:\n            set_of_selected_tags.append('Algorithm')\n\n    if parameters['entity_category']=='all':\n        if 'Algorithm' not in set_of_selected_tags:\n            set_of_selected_tags.append('Algorithm')\n\n\n\n\n    print(\"set_of_selected_tags: \", set_of_selected_tags)\n\n    merge_tags=parameters['merge_tags']\n\n\n    train_sentences = loader.load_sentences_so(parameters[\"train\"], lower, zeros,merge_tags, set_of_selected_tags)\n    dev_sentences = loader.load_sentences_so(parameters[\"dev\"], lower, zeros,merge_tags, set_of_selected_tags)\n    test_sentences = loader.load_sentences_so(parameters[\"test\"], lower, zeros,merge_tags, set_of_selected_tags)\n\n\n    loader.update_tag_scheme(train_sentences, tag_scheme)\n    loader.update_tag_scheme(dev_sentences, tag_scheme)\n    loader.update_tag_scheme(test_sentences, tag_scheme)\n\n\n    dico_words_train = loader.word_mapping(train_sentences, lower)[0]\n    dico_chars, char_to_id, id_to_char = loader.char_mapping(train_sentences)\n    dico_tags, tag_to_id, id_to_tag = loader.tag_mapping(train_sentences)\n\n    #------------------------------------------------------------------------------------------------------------\n    #------------- based on parameters setting(should be set by command line argutments) ------------------------\n    #------------- load pretrained word embeddings --------------------------------------------------------------\n    #------------------------------------------------------------------------------------------------------------\n\n\n    if parameters['all_emb']:\n        all_dev_test_words=[w[0][0] for w in dev_sentences+test_sentences]\n    else:\n        all_dev_test_words = []\n\n\n    if parameters['use_pre_emb']:\n        dico_words, word_to_id, id_to_word = loader.augment_with_pretrained(\n                dico_words_train.copy(),\n                parameters['pre_emb'],\n                all_dev_test_words\n            )\n    else:\n        dico_words = dico_words_train\n        word_to_id, id_to_word = loader.create_mapping(dico_words_train.copy())\n\n    train_data = loader.prepare_dataset(train_sentences, word_to_id, char_to_id, tag_to_id, lower)\n    dev_data = loader.prepare_dataset(dev_sentences, word_to_id, char_to_id, tag_to_id, lower)\n    test_data = loader.prepare_dataset(test_sentences, word_to_id, char_to_id, tag_to_id, lower)\n\n\n    all_word_embeds = {}\n    if parameters['use_pre_emb']:\n        for i, line in enumerate(codecs.open(opts.pre_emb, 'r', 'utf-8')):\n            # print(line)\n            s = line.strip().split()\n            if len(s) == parameters['word_dim'] + 1:\n                all_word_embeds[s[0]] = np.array([float(i) for i in s[1:]])\n\n    word_embeds = np.random.uniform(-np.sqrt(0.06), np.sqrt(0.06), (len(word_to_id), opts.word_dim))\n\n    if parameters['use_pre_emb']:\n        for w in word_to_id:\n            if w in all_word_embeds:\n                word_embeds[word_to_id[w]] = all_word_embeds[w]\n            elif w.lower() in all_word_embeds:\n                word_embeds[word_to_id[w]] = all_word_embeds[w.lower()]\n\n\n    print('Loaded %i pretrained embeddings.' % len(all_word_embeds))\n\n\n    mapping_file = parameters[\"models_path\"]+'/mapping.pkl'\n\n    with open(mapping_file, 'wb') as f:\n        mappings = {\n            'word_to_id': word_to_id,\n            'id_to_word': id_to_word,\n            'tag_to_id': tag_to_id,\n            'char_to_id': char_to_id,\n            'id_to_char': id_to_char,\n            'parameters': parameters,\n            'word_embeds': word_embeds\n        }\n        pickle.dump(mappings, f, protocol=4)\n\n\n    return train_data, dev_data, test_data, word_to_id, id_to_word,  tag_to_id, id_to_tag, char_to_id, id_to_char, word_embeds\n\n\n\n\n\n# vis = visdom.Visdom() #JT: no need of visualization for now\n# sys.stdout.flush()\n\n\ndef evaluating(model, datas, best_F, epoch_count, phase_name):\n    \n    print(\"-----------------------------------\")\n    print(\"now evaluating: \",phase_name)\n    print(\"-----------------------------------\")\n    prediction = []\n    save = False\n    new_F = 0.0\n    confusion_matrix = torch.zeros((len(tag_to_id) - 2, len(tag_to_id) - 2))\n\n    iter_count=0\n    for data in datas:\n        ground_truth_id = data['tags']\n        words = data['str_words']\n        chars2 = data['chars']\n        caps = data['caps']\n\n        if parameters['char_mode'] == 'LSTM':\n            chars2_sorted = sorted(chars2, key=lambda p: len(p), reverse=True)\n            d = {}\n            for i, ci in enumerate(chars2):\n                for j, cj in enumerate(chars2_sorted):\n                    if ci == cj and not j in d and not i in d.values():\n                        d[j] = i\n                        continue\n            chars2_length = [len(c) for c in chars2_sorted]\n            char_maxl = max(chars2_length)\n            chars2_mask = np.zeros((len(chars2_sorted), char_maxl), dtype='int')\n            for i, c in enumerate(chars2_sorted):\n                chars2_mask[i, :chars2_length[i]] = c\n            chars2_mask = Variable(torch.LongTensor(chars2_mask))\n\n        if parameters['char_mode'] == 'CNN':\n            d = {}\n            chars2_length = [len(c) for c in chars2]\n            char_maxl = max(chars2_length)\n            chars2_mask = np.zeros((len(chars2_length), char_maxl), dtype='int')\n            for i, c in enumerate(chars2):\n                chars2_mask[i, :chars2_length[i]] = c\n            chars2_mask = Variable(torch.LongTensor(chars2_mask))\n\n        dwords = Variable(torch.LongTensor(data['words']))\n        dcaps = Variable(torch.LongTensor(caps))\n        if use_gpu:\n            val, out = model(dwords.cuda(), chars2_mask.cuda(), dcaps.cuda(), chars2_length, d)\n        else:\n            val, out = model(dwords, chars2_mask, dcaps, chars2_length, d)\n        \n        predicted_id = out\n        for (word, true_id, pred_id) in zip(words, ground_truth_id, predicted_id):\n            line = ' '.join([word, id_to_tag[true_id], id_to_tag[pred_id]])\n            prediction.append(line)\n            confusion_matrix[true_id, pred_id] += 1\n        prediction.append('')\n\n    predf = parameters[\"eval_temp\"] + '/pred.' + name +\"_\"+str(epoch_count)\n    scoref = parameters[\"eval_temp\"] + '/score.' + name+\"_\"+str(epoch_count)\n\n\n    with open(predf, 'w') as f:\n        f.write('\\n'.join(prediction))\n\n    eval_result = conlleval_py.evaluate_conll_file(inputFile=predf)\n\n    os.system('%s < %s > %s' % (eval_script, predf, scoref))\n\n    eval_lines = [l.rstrip() for l in codecs.open(scoref, 'r', 'utf8')]\n\n    for i, line in enumerate(eval_lines):\n        print(line)\n        if i == 1:\n            new_F = float(line.strip().split()[-1])\n            if new_F > best_F:\n                best_F = new_F\n                save = True\n                print('the best F is ', new_F)\n\n\n    #-------------------------------------------------------------------------------------------------\n    #--------------- only print the performnace on dev/test set. do not print for train set ----------\n    #-------------------------------------------------------------------------------------------------\n\n    if phase_name==\"dev\" or phase_name==\"test\":\n        print_result.print_result(eval_result, epoch_count, parameters[\"sorted_entity_list_file_name\"], parameters[\"entity_category_code\"], parameters[\"entity_category_human_language\"])\n        print(\"-----------------------------------\")\n        over_all_p=eval_result['overall']['P']\n        over_all_r=eval_result['overall']['R']\n        over_all_f1=eval_result['overall']['F1']\n        op_line = phase_name+ \": epoch: \"+str(epoch_count) +\" P: \"+ str(over_all_p)+\" R: \"+str(over_all_r)+\" F1: \"+str(over_all_f1)+\"\\n\"\n        # fout_per_epoch.write(op_line)\n        # fout_per_epoch.flush()\n    return best_F, new_F, save\n\n\ndef save_char_embed(sentence_words, char_embed_dict, char_embed_vectors):\n    # print(sentence_words)\n    # print(char_embed_dict)\n    # print(char_embed_vectors)\n    \n\n    for sent_iter in range(len(sentence_words)):\n        word = sentence_words[sent_iter]\n        word_char_vector = char_embed_vectors[sent_iter]\n        char_embed_dict[word]=word_char_vector\n        # print(word, word_char_vector)\n\n    return char_embed_dict\n\ndef train_model(model, step_lr_scheduler, optimizer, train_data, dev_data, test_data):\n    char_embed_dict = {}\n\n    losses = []\n    loss = 0.0\n    best_dev_F = -1.0\n    best_test_F = -1.0\n    best_train_F = -1.0\n    all_F = [[0, 0, 0]]\n    plot_every = 10\n    eval_every = 20\n    count = 0\n\n    model.train(True)\n    for epoch in range(1, parameters[\"epochs\"]+1):\n        \n        print(\"---------epoch count: \", epoch)\n        for i, index in enumerate(np.random.permutation(len(train_data))):\n            \n            tr = time.time()\n            count += 1\n            data = train_data[index]\n            #what is the data instance looks like\"\n            # 'str_words': ['Trial', 'and', 'error', 'seems', 'a', 'very', 'dumb', '(', 'and', 'annoying', ')', 'approach', 'to', 'solve', 'this', 'problem', '.'], \n            #'words': [1, 9, 76, 179, 7, 215, 1, 26, 9, 1, 29, 332, 4, 310, 15, 64, 3], \n            #'chars': [[26, 8, 5, 4, 10], [4, 6, 11], [1, 8, 8, 3, 8], [7, 1, 1, 14, 7], [4], [22, 1, 8, 17], [11, 13, 14, 21], [35], [4, 6, 11], [4, 6, 6, 3, 17, 5, 6, 16], [34], [4, 15, 15, 8, 3, 4, 12, 9], [2, 3], [7, 3, 10, 22, 1], [2, 9, 5, 7], [15, 8, 3, 21, 10, 1, 14], [20]], \n            #'caps': [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], \n            #'tags': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'handcrafted': [28052, 28053, 28054, 28055, 28056, 28057, 28058, 28059, 28060, 28061, 28062, 28063, 28064, 28065, 28066, 28067, 28068]\n            model.zero_grad()\n\n            sentence_in = data['words']\n            \n            tags = data['tags']\n            chars2 = data['chars']\n\n            # print(data)\n\n            sentence_in = Variable(torch.LongTensor(sentence_in))\n\n            ######### char lstm\n            if parameters['char_mode'] == 'LSTM':\n                chars2_sorted = sorted(chars2, key=lambda p: len(p), reverse=True)\n                d = {}\n                for i, ci in enumerate(chars2):\n                    for j, cj in enumerate(chars2_sorted):\n                        if ci == cj and not j in d and not i in d.values():\n                            d[j] = i\n                            continue\n                chars2_length = [len(c) for c in chars2_sorted]\n                char_maxl = max(chars2_length)\n                chars2_mask = np.zeros((len(chars2_sorted), char_maxl), dtype='int')\n                for i, c in enumerate(chars2_sorted):\n                    chars2_mask[i, :chars2_length[i]] = c\n                chars2_mask = Variable(torch.LongTensor(chars2_mask))\n\n            # ######## char cnn\n            if parameters['char_mode'] == 'CNN':\n                d = {}\n                chars2_length = [len(c) for c in chars2]\n                char_maxl = max(chars2_length)\n                chars2_mask = np.zeros((len(chars2_length), char_maxl), dtype='int')\n                for i, c in enumerate(chars2):\n                    chars2_mask[i, :chars2_length[i]] = c\n                # print(chars2_mask)\n                chars2_mask = Variable(torch.LongTensor(chars2_mask))\n\n\n            targets = torch.LongTensor(tags)\n            caps = Variable(torch.LongTensor(data['caps']))\n            if use_gpu:\n                neg_log_likelihood = model.neg_log_likelihood(sentence_in.cuda(), targets.cuda(), chars2_mask.cuda(), caps.cuda(), chars2_length, d)\n            else:\n                neg_log_likelihood = model.neg_log_likelihood(sentence_in, targets, chars2_mask, caps, chars2_length, d)\n            # loss += neg_log_likelihood.data[0] / len(data['words'])\n\n            if use_gpu:\n                char_embed_op = model.get_char_embedding(sentence_in.cuda(), chars2_mask.cuda(), caps.cuda(), chars2_length, d).clone().data.cpu().numpy()\n            else:\n                char_embed_op = model.get_char_embedding(sentence_in, chars2_mask, caps, chars2_length, d).clone().data.cpu().numpy()\n\n            char_embed_dict = save_char_embed( data['str_words'], char_embed_dict, char_embed_op)\n\n            # print(char_embed_op)\n            loss += neg_log_likelihood.data.item() / len(data['words']) #JT : data[0]> data.item()\n            neg_log_likelihood.backward()\n            # torch.nn.utils.clip_grad_norm(model.parameters(), 5.0)\n            torch.nn.utils.clip_grad_norm_(model.parameters(), 5.0) #JT\n            optimizer.step()\n\n            \n\n            \n\n\n            if count % len(train_data) == 0:\n                utils.adjust_learning_rate(optimizer, lr=learning_rate/(1+0.05*count/len(train_data)))\n\n        #JT: evaluate after 1 epoch\n        model.train(False)\n\n        best_train_F, new_train_F, _ = evaluating(model, train_data,  best_train_F,  epoch, \"train\")\n        best_dev_F, new_dev_F, save = evaluating(model, dev_data, best_dev_F, epoch, \"dev\") \n        if save:\n            torch.save(model, model_name)\n        best_test_F, new_test_F = 0, 0\n        all_F.append([new_train_F, new_dev_F, new_test_F])\n        step_lr_scheduler.step()\n\n        \n        \n        # word_embeding_weights=model.word_embeds.weight.data.cpu().numpy()\n        # print(\"type(word_embeding_weights): \", type(word_embeding_weights))\n        # print(\"shape word_embeding_weights: \", word_embeding_weights.shape)\n        # print(\"shape word_embeding_weights: \", model.word_embeds.weight.data.size())\n        # print(\"shape word_embeding_weights: \", model.word_embeds.weight.data[0])\n\n        #-------------------------------------------------------------------------------------------------\n        #--------------------- save model for each epoch, after finding the optimal epoch ----------------\n        #--------------------- save model from last epoch only -------------------------------------------\n        #-------------------------------------------------------------------------------------------------\n\n        PATH=parameters[\"models_path\"]+\"/model_epoch.\"+str(epoch)\n        torch.save(model, PATH)\n        model.train(True)\n\n\n    return char_embed_dict\n\n    \n\n\n    \n\ndef get_char_embedding_dict(datas, model, parameters):\n    char_embed_dict={}\n    for data in datas:\n        sentence_in = data['words']\n        chars2 = data['chars']\n        sentence_in = Variable(torch.LongTensor(sentence_in))\n        if parameters['char_mode'] == 'LSTM':\n            chars2_sorted = sorted(chars2, key=lambda p: len(p), reverse=True)\n            d = {}\n            for i, ci in enumerate(chars2):\n                for j, cj in enumerate(chars2_sorted):\n                    if ci == cj and not j in d and not i in d.values():\n                        d[j] = i\n                        continue\n            chars2_length = [len(c) for c in chars2_sorted]\n            char_maxl = max(chars2_length)\n            chars2_mask = np.zeros((len(chars2_sorted), char_maxl), dtype='int')\n            for i, c in enumerate(chars2_sorted):\n                chars2_mask[i, :chars2_length[i]] = c\n            chars2_mask = Variable(torch.LongTensor(chars2_mask))\n\n        # ######## char cnn\n        if parameters['char_mode'] == 'CNN':\n            d = {}\n            chars2_length = [len(c) for c in chars2]\n            char_maxl = max(chars2_length)\n            chars2_mask = np.zeros((len(chars2_length), char_maxl), dtype='int')\n            for i, c in enumerate(chars2):\n                chars2_mask[i, :chars2_length[i]] = c\n            # print(chars2_mask)\n            chars2_mask = Variable(torch.LongTensor(chars2_mask))\n\n        caps = Variable(torch.LongTensor(data['caps']))\n        \n        if use_gpu:\n            char_embed_op = model.get_char_embedding(sentence_in.cuda(), chars2_mask.cuda(), caps.cuda(), chars2_length, d).clone().data.cpu().numpy()\n        else:\n            char_embed_op = model.get_char_embedding(sentence_in, chars2_mask, caps, chars2_length, d).clone().data.cpu().numpy()\n\n        char_embed_dict = save_char_embed( data['str_words'], char_embed_dict, char_embed_op)\n\n    \n    print(len(char_embed_dict.keys()))\n    return char_embed_dict\n   \n\n\ndef test_dev_oov_char_embedding(train_data, dev_data, model, parameters, train_data_char_embed_dict):\n    dev_data_char_embed_dict=get_char_embedding_dict(dev_data, model, parameters)\n    # train_data_char_embed_dict=get_char_embedding_dict(train_data, model, parameters)\n    print(len(train_data_char_embed_dict.keys()))\n\n\n    oov_list=set(dev_data_char_embed_dict.keys()) - set((train_data_char_embed_dict.keys()))\n    fout=open(\"oov_words.txt\",'w')\n    fout.write(\"\\n\".join(oov_list))\n    fout.close()\n\n\n    outfile=open(\"train_vocab.txt\",'w')\n    outfile.write(\"\\n\".join(train_data_char_embed_dict.keys()))\n    outfile.close()\n    # print(oov_list)\n    # print(len(oov_list))\n    return dev_data_char_embed_dict\n\ndef find_similar_word(train_char_embedding, word_char_embed, limit = 11):\n\n    \n    similarity_dict=defaultdict(float)\n    for w in train_char_embedding:\n        try:\n            char_embedding= train_char_embedding[w]\n            similarity = cosine_similarity(word_char_embed.reshape(1,-1), char_embedding.reshape(1,-1))\n            similarity_dict[w]=similarity\n        except Exception as e:\n            continue\n        \n\n    count = 0\n    for w in sorted(similarity_dict, key=similarity_dict.get, reverse=True):\n        print(w, similarity_dict[w])\n        count+=1\n        if count==limit:\n            break\n\n\n\nif __name__ == '__main__':\n    eval_script= parameters[\"eval_script\"]\n\n    eval_temp= parameters[\"eval_temp\"]\n    try:\n        shutil.rmtree(eval_temp)\n    except Exception as e:\n        pass\n\n\n    fout_per_epoch = open(parameters[\"perf_per_epoch_file\"],'w')\n    fout_per_epoch.close()\n\n    if not os.path.isfile(eval_script):\n        raise Exception('CoNLL evaluation script not found at \"%s\"' % eval_script)\n    if not os.path.exists(eval_temp):\n        os.makedirs(eval_temp)\n    if not os.path.exists(parameters[\"models_path\"]):\n        os.makedirs(parameters[\"models_path\"])\n\n    \n    train_data, dev_data, test_data, word_to_id, id_to_word,  tag_to_id, id_to_tag, char_to_id, id_to_char, word_embeds=prepare_train_set_dev_data()\n\n\n    use_gpu = parameters['use_gpu']\n    gpu_id = parameters[\"gpu_id\"]\n\n    name = parameters['name']\n    model_name = parameters[\"models_path\"] + name #get_name(parameters)\n    tmp_model = model_name + '.tmp'\n\n    model = BiLSTM_CRF(vocab_size=len(word_to_id),\n                       tag_to_ix=tag_to_id,\n                       embedding_dim=parameters['word_dim'],\n                       hidden_dim=parameters['word_lstm_dim'],\n                       use_gpu=use_gpu,\n                       char_to_ix=char_to_id,\n                       pre_word_embeds=word_embeds,\n                       use_crf=parameters['crf'],\n                       char_mode=parameters['char_mode'],\n                       # n_cap=4,\n                       # cap_embedding_dim=10\n                       )\n    model=torch.load('model_epoch.24',map_location='cpu')\n\n    with open('char_embed_dict_6.json', 'rb') as handle:\n        train_data_char_embed_dict = pickle.load(handle)\n\n    with open('mapping.pkl', 'rb') as handle:\n        mappings = pickle.load(handle)\n    \n    # print(char_embed_dict)\n    # print(mappings)\n    word_to_id=mappings['word_to_id']\n    tag_to_id=mappings['tag_to_id']\n    char_to_id=mappings['char_to_id']\n    parameters=mappings['parameters']\n    # print(char_to_id)\n\n\n\n    dev_data_char_embed_dict = test_dev_oov_char_embedding(train_data, dev_data, model, parameters, train_data_char_embed_dict)\n\n    selected_word = \"4.1.2\"\n    # selected_word_char_emebd=train_data_char_embed_dict[selected_word]\n    selected_word_char_emebd=dev_data_char_embed_dict[selected_word]\n    find_similar_word(dev_data_char_embed_dict, selected_word_char_emebd)\n\n    \n    \n    \n\n    \n    \n\n"
  },
  {
    "path": "code/Attentive_BiLSTM/test_script.py",
    "content": "import utils_so as utils\nimport loader_so as loader\nfrom config_so import parameters\nfrom utils_so import Sort_Entity_by_Count\nimport json\n\n\nlower = parameters['lower']\nzeros = parameters['zeros']\ntag_scheme = parameters['tag_scheme']\n\nmerge_tags=parameters['merge_tags']\n\n\ninput_train_file=utils.Merge_Label(parameters[\"train\"])\n    \nSort_Entity_by_Count(input_train_file,parameters[\"sorted_entity_list_file_name\"])\n\nwith open(parameters[\"sorted_entity_list_file_name\"]) as f:\n    sorted_entity_list = json.load(f)\n\nset_of_selected_tags=[]\n\n\n\n\nentity_category_code=parameters[\"entity_category_code\"]\nentity_category_human_language=parameters[\"entity_category_human_language\"]\n\n\nset_of_selected_tags.extend(sorted_entity_list[0:-6])\n\ntest_sentences = loader.load_sentences_so(parameters[\"test\"], lower, zeros,merge_tags, set_of_selected_tags)\ntest_sentences = loader.load_sentences_so(parameters[\"dev\"], lower, zeros,merge_tags, set_of_selected_tags)"
  },
  {
    "path": "code/Attentive_BiLSTM/tolatex.py",
    "content": "def tolatex(table_dict,caption=\"\"):\n\tprint(\"\\n\\n\\n\")\n\tprint(\"\\\\begin{table}[htbp]\")\n\tprint(\"\\\\centering\")\n\tprint(\"\\\\begin{tabular}{|\",end='')\n\tfor i in range(len(table_dict[\"header\"])):\n\t\tprint(\"c|\",end='')\n\tprint(\"}\")\n\theader=\" & \".join(table_dict[\"header\"])+\"\\\\\\\\\"\n\tprint(\"\\\\hline\")\n\tprint(header)\n\tprint(\"\\\\hline\")\n\tfor row in table_dict[\"rows\"]:\n\t\trow_=[str(x).replace(\"_\",\" \").replace(\"%\",\"\\\\%\") for x in row]\n\t\trow_str=\" & \".join(row_)+\"\\\\\\\\\"\n\t\tprint(row_str)\n\t\t# print(\"\\\\hline\")\n\tprint(\"\\\\hline\")\n\tprint(\"\\\\end{tabular}\")\n\tprint(\"\\\\caption{\"+caption+\"}\")\n\t#print(\"\\\\label{tab:-----}\")\n\tprint(\"\\\\end{table}\")\n\n\tprint(\"\\n\\n\\n\")\n\n\n\nif __name__ == '__main__':\n\ttable_dict={}\n\ttable_dict[\"header\"]=['','Precision', 'Recall', 'F1']\n\ttable_dict[\"rows\"]=[['Algorithm','100.00', '100.00', '100.00'], ['Algorithm','100.00', '100.00', '100.00']]\n\ttolatex(table_dict)"
  },
  {
    "path": "code/Attentive_BiLSTM/train_so.py",
    "content": "# coding=utf-8\n\nfrom __future__ import print_function\nimport optparse\nimport itertools\nfrom collections import OrderedDict\nimport torch\nimport time\nimport pickle\nfrom torch.optim import lr_scheduler\nfrom torch.autograd import Variable\n# import matplotlib.pyplot as plt     #JT: commented it\nimport sys\nimport os\nimport json\nimport numpy as np\nimport codecs\n# import Visdom     #JT: commented it\n# from utils import *\n# from loader import *\n# from config import opts\n\n\n# from model_wo_char import BiLSTM_CRF\nfrom model import BiLSTM_CRF\n\n\nimport utils_so as utils    #JT: utils for SO\nimport loader_so as loader  #JT: loader for SO\nfrom config_so import parameters\nfrom config_so import opts\nfrom utils_so import Sort_Entity_by_Count\nimport shutil\n\n# from evaluate_so import evaluating\n# sys.path.append('../../utility/')\nimport print_result \nimport conlleval_py \nimport tolatex\nimport time\nfrom Word_Freqency_Mapper import Word_Freqency_Mapper\n\ntorch.backends.cudnn.deterministic = True\ntorch.manual_seed(parameters[\"seed\"])\n\nnp.random.seed(parameters[\"seed\"])\n\n\nassert os.path.isfile(parameters[\"train\"])\nassert os.path.isfile(parameters[\"dev\"])\nassert os.path.isfile(parameters[\"test\"])\nassert parameters['char_dim'] > 0 or parameters['word_dim'] > 0\nassert 0. <= parameters['dropout'] < 1.0\nassert parameters['tag_scheme'] in ['iob', 'iobes']\nassert not parameters['all_emb'] or parameters['pre_emb']\nassert not parameters['pre_emb'] or parameters['word_dim'] > 0\n# assert not parameters['pre_emb'] or os.path.isfile(parameters['pre_emb'])\n\n\n\n\n\ndef create_frequecny_vector():\n    # print(\"***********\",parameters[\"freq_mapper_bin_count\"], type(parameters[\"freq_mapper_bin_count\"]))\n    freq_mapper = Word_Freqency_Mapper(bins=parameters[\"freq_mapper_bin_count\"],w=parameters[\"freq_mapper_bin_width\"])\n    freq_mapper = Word_Freqency_Mapper()\n    freq_mapper.Find_Train_Data_Freq(parameters[\"train\"])\n    freq_mapper.Read_Dev_Data(parameters[\"dev\"])\n    freq_mapper.Read_Test_Data(parameters[\"test\"])\n    freq_mapper.Find_Gaussian_Bining_For_Training_Data_Freq()\n    freq_mapper.Find_Freq_Vector_for_words()\n    freq_mapper.Write_Freq_To_File(parameters['freq_vector_file'])\n\n\ndef save_char_embed(sentence_words, char_embed_dict, char_embed_vectors):\n    # print(sentence_words)\n    # print(char_embed_dict)\n    # print(char_embed_vectors)\n    \n\n    for sent_iter in range(len(sentence_words)):\n        word = sentence_words[sent_iter]\n        word_char_vector = char_embed_vectors[sent_iter]\n        char_embed_dict[word]=word_char_vector\n        # print(word, word_char_vector)\n\n    return char_embed_dict\n\n\ndef read_ctc_pred_file():\n    ctc_pred_dict = {}\n    for line in open(parameters[\"ctc_pred\"]):\n        if line.strip()==\"\":\n            continue\n        line_values= line.strip().split(\"\\t\")\n        word, ctc_pred = line_values[0], line_values[-1]\n        # print(word, ctc_pred)\n        ctc_pred_dict[word]=ctc_pred\n\n    return ctc_pred_dict\n        \ndef prepare_train_set_dev_data():\n\n    lower = parameters['lower']\n    zeros = parameters['zeros']\n    tag_scheme = parameters['tag_scheme']\n\n    #------------------------------------------------------------------\n    #------------- create the frequency vector-------------------------\n    #------------------------------------------------------------------\n    if parameters['use_freq_vector']:\n        create_frequecny_vector()\n\n        # print(\"completed frequency vector creation\")\n\n    #------------------------------------------------------------------\n    #------------- create the ctc_dict-------------------------\n    #------------------------------------------------------------------\n    ctc_pred_dict = read_ctc_pred_file()\n\n    print(\"completed ctc predictions reading \")\n\n    #------------------------------------------------------------------\n    #------------- prepare the training data --------------------------\n    #------------- merge labels and select category specific entities -\n    #------------------------------------------------------------------\n\n    input_train_file=utils.Merge_Label(parameters[\"train\"])\n    \n    Sort_Entity_by_Count(input_train_file,parameters[\"sorted_entity_list_file_name\"])\n\n    with open(parameters[\"sorted_entity_list_file_name\"]) as f:\n        sorted_entity_list = json.load(f)\n\n    set_of_selected_tags=[]\n\n\n\n\n    entity_category_code=parameters[\"entity_category_code\"]\n    entity_category_human_language=parameters[\"entity_category_human_language\"]\n\n\n    set_of_selected_tags.extend(sorted_entity_list[0:-6])\n\n    if parameters['entity_category']=='code':\n        for entity in entity_category_human_language:\n            if entity in entity_category_human_language and entity in set_of_selected_tags:\n                set_of_selected_tags.remove(entity)\n\n        \n\n    if parameters['entity_category']=='human_lang':\n        for entity in entity_category_code:\n            if entity in entity_category_code and entity in set_of_selected_tags:\n                set_of_selected_tags.remove(entity)\n\n        if 'Algorithm' not in set_of_selected_tags:\n            set_of_selected_tags.append('Algorithm')\n\n    if parameters['entity_category']=='all':\n        if 'Algorithm' not in set_of_selected_tags:\n            set_of_selected_tags.append('Algorithm')\n\n\n\n\n    print(\"set of entities: \", set_of_selected_tags)\n\n    merge_tags=parameters['merge_tags']\n\n\n    train_sentences = loader.load_sentences_so_w_pred(parameters[\"train\"], parameters[\"train_pred\"],  lower, zeros,merge_tags, set_of_selected_tags)\n    \n    if parameters[\"mode\"]==\"dev\":\n        dev_sentences = loader.load_sentences_so_w_pred(parameters[\"dev\"], parameters[\"dev_pred\"],lower, zeros,merge_tags, set_of_selected_tags)\n        test_sentences = dev_sentences\n    elif parameters[\"mode\"]==\"test\":\n        dev_sentences = loader.load_sentences_so_w_pred(parameters[\"test\"], parameters[\"test_pred\"],lower, zeros,merge_tags, set_of_selected_tags)\n        test_sentences = dev_sentences\n    # test_sentences = loader.load_sentences_so(parameters[\"test\"], lower, zeros,merge_tags, set_of_selected_tags)\n\n\n    loader.update_tag_scheme(train_sentences, tag_scheme)\n    loader.update_tag_scheme(dev_sentences, tag_scheme)\n    loader.update_tag_scheme(test_sentences, tag_scheme)\n\n\n    dico_words_train = loader.word_mapping(train_sentences, lower)[0]\n    dico_chars, char_to_id, id_to_char = loader.char_mapping(train_sentences)\n    dico_tags, tag_to_id, id_to_tag = loader.tag_mapping(train_sentences)\n    # print(tag_to_id)\n    \n\n    #------------------------------------------------------------------------------------------------------------\n    #------------- based on parameters setting(should be set by command line argutments) ------------------------\n    #------------- load pretrained word embeddings --------------------------------------------------------------\n    #------------------------------------------------------------------------------------------------------------\n\n\n    if parameters['all_emb']:\n        all_dev_test_words=[w[0][0] for w in dev_sentences+test_sentences]\n    else:\n        all_dev_test_words = []\n\n\n    if parameters['use_pre_emb']:\n        dico_words, word_to_id, id_to_word = loader.augment_with_pretrained(\n                dico_words_train.copy(),\n                parameters['pre_emb'],\n                all_dev_test_words\n            )\n    else:\n        dico_words = dico_words_train\n        word_to_id, id_to_word = loader.create_mapping(dico_words_train.copy())\n\n    train_data = loader.prepare_dataset(train_sentences, word_to_id, char_to_id, tag_to_id, ctc_pred_dict, lower)\n    dev_data = loader.prepare_dataset(dev_sentences, word_to_id, char_to_id, tag_to_id, ctc_pred_dict, lower)\n    test_data = loader.prepare_dataset(test_sentences, word_to_id, char_to_id, tag_to_id,ctc_pred_dict, lower)\n\n    all_freq_embed={}\n    for line in open(parameters['freq_vector_file']):\n            # print(line)\n            s = line.strip().split()\n            if len(s) == parameters['freq_dim'] + 1:\n                all_freq_embed[s[0]] = np.array([float(i) for i in s[1:]])\n            else:\n                print(\"freq dim mismatch: \",\"required: \", parameters['freq_dim'], \"given: \",len(s)-1)\n\n    # print(all_freq_embed)\n    freq_embeds = np.random.uniform(-np.sqrt(0.06), np.sqrt(0.06), (len(word_to_id), parameters['freq_dim']))\n    for w in word_to_id:\n        \n        if w in all_freq_embed:\n            freq_embeds[word_to_id[w]] = all_freq_embed[w]\n        elif w.lower() in all_freq_embed:\n            freq_embeds[word_to_id[w]] = all_freq_embed[w.lower()]\n\n\n    # print(\"done loading freq embeds\")\n\n\n    all_word_embeds = {}\n    if parameters['use_pre_emb']:\n        for i, line in enumerate(codecs.open(parameters['pre_emb'] , 'r', 'utf-8')):\n            # print(line)\n            s = line.strip().split()\n            if len(s) == parameters['word_dim'] + 1:\n                all_word_embeds[s[0]] = np.array([float(i) for i in s[1:]])\n\n\n    word_embeds = np.random.uniform(-np.sqrt(0.06), np.sqrt(0.06), (len(word_to_id), parameters['word_dim']))\n    seg_pred_embeds = np.random.uniform(-np.sqrt(0.06), np.sqrt(0.06), (parameters['segmentation_count'] , parameters['segmentation_dim']))\n    ctc_pred_embeds = np.random.uniform(-np.sqrt(0.06), np.sqrt(0.06), (parameters['code_recognizer_count'], parameters['code_recognizer_dim']))\n    \n\n    \n    # code_pred_embeds = np.random.uniform(-np.sqrt(0.06), np.sqrt(0.06), (parameters['code_pred_count'], parameters['code_pred_dim']))\n\n    if parameters['use_pre_emb']:\n        for w in word_to_id:\n            if w in all_word_embeds:\n                word_embeds[word_to_id[w]] = all_word_embeds[w]\n            elif w.lower() in all_word_embeds:\n                word_embeds[word_to_id[w]] = all_word_embeds[w.lower()]\n\n\n    # print('Loaded %i pretrained embeddings.' % len(all_word_embeds))\n    # print('Loaded %i pretrained freq embeddings.' % len(all_freq_embed))\n\n    # freq_combined_word_vec=np.hstack((word_embeds,freq_embeds))\n    # word_embeds=freq_combined_word_vec\n\n\n    # mapping_file = parameters[\"models_path\"]+'/mapping.pkl'\n\n    # with open(mapping_file, 'wb') as f:\n    #     mappings = {\n    #         'word_to_id': word_to_id,\n    #         'id_to_word': id_to_word,\n    #         'tag_to_id': tag_to_id,\n    #         'char_to_id': char_to_id,\n    #         'id_to_char': id_to_char,\n    #         'parameters': parameters,\n    #         'word_embeds': word_embeds,\n    #         'freq_embeds': freq_embeds,\n    #         'seg_pred_embeds': ctc_pred_embeds\n    #     }\n    #     pickle.dump(mappings, f, protocol=4)\n\n\n    return train_data, dev_data, test_data, word_to_id, id_to_word,  tag_to_id, id_to_tag, char_to_id, id_to_char, word_embeds, freq_embeds, seg_pred_embeds, ctc_pred_embeds\n\n\n\n# vis = visdom.Visdom() #JT: no need of visualization for now\n# sys.stdout.flush()\n\n\ndef evaluating(model, datas, best_F, epoch_count, phase_name):\n    fout_per_epoch = open(parameters[\"perf_per_epoch_file\"],'a')\n    print(\"-----------------------------------\")\n    print(\"now evaluating: \",phase_name)\n    print(\"-----------------------------------\")\n    prediction = []\n    save = False\n    new_F = 0.0\n    confusion_matrix = torch.zeros((len(tag_to_id) - 2, len(tag_to_id) - 2))\n\n    iter_count=0\n    for data in datas:\n        ground_truth_id = data['tags']\n        words = data['str_words']\n        chars2 = data['chars']\n        caps = data['caps']\n        sentence_seg_preds = data['seg_pred']\n        sentence_ctc_preds = data['ctc_pred']\n        \n\n\n\n        if parameters['char_mode'] == 'LSTM':\n            chars2_sorted = sorted(chars2, key=lambda p: len(p), reverse=True)\n            d = {}\n            for i, ci in enumerate(chars2):\n                for j, cj in enumerate(chars2_sorted):\n                    if ci == cj and not j in d and not i in d.values():\n                        d[j] = i\n                        continue\n            chars2_length = [len(c) for c in chars2_sorted]\n            char_maxl = max(chars2_length)\n            chars2_mask = np.zeros((len(chars2_sorted), char_maxl), dtype='int')\n            for i, c in enumerate(chars2_sorted):\n                chars2_mask[i, :chars2_length[i]] = c\n            chars2_mask = Variable(torch.LongTensor(chars2_mask))\n\n        if parameters['char_mode'] == 'CNN':\n            d = {}\n            chars2_length = [len(c) for c in chars2]\n            char_maxl = max(chars2_length)\n            chars2_mask = np.zeros((len(chars2_length), char_maxl), dtype='int')\n            for i, c in enumerate(chars2):\n                chars2_mask[i, :chars2_length[i]] = c\n            chars2_mask = Variable(torch.LongTensor(chars2_mask))\n\n        dwords = Variable(torch.LongTensor(data['words']))\n\n        sentence_seg_preds = Variable(torch.LongTensor(sentence_seg_preds))\n        sentence_ctc_preds = Variable(torch.LongTensor(sentence_ctc_preds))\n        \n\n\n        dcaps = Variable(torch.LongTensor(caps))\n        \n\n        if use_gpu:\n            val, out = model(words, dwords.cuda(), sentence_seg_preds.cuda(),sentence_ctc_preds.cuda(),  chars2_mask.cuda(), dcaps.cuda(), chars2_length, d)\n        else:\n            val, out = model(words, dwords, sentence_seg_preds, sentence_ctc_preds, chars2_mask, dcaps, chars2_length, d)\n        \n        predicted_id = out\n        for (word, true_id, pred_id) in zip(words, ground_truth_id, predicted_id):\n            line = ' '.join([word, id_to_tag[true_id], id_to_tag[pred_id]])\n            prediction.append(line)\n            confusion_matrix[true_id, pred_id] += 1\n        prediction.append('')\n\n    predf = parameters[\"eval_temp\"] + '/pred.' + phase_name +\"_\"+str(epoch_count)\n    scoref = parameters[\"eval_temp\"] + '/score.' + phase_name+\"_\"+str(epoch_count)\n\n\n    with open(predf, 'w') as f:\n        f.write('\\n'.join(prediction))\n\n    eval_result = conlleval_py.evaluate_conll_file(inputFile=predf)\n\n    os.system('%s < %s > %s' % (eval_script, predf, scoref))\n\n    eval_lines = [l.rstrip() for l in codecs.open(scoref, 'r', 'utf8')]\n\n    for i, line in enumerate(eval_lines):\n        print(line)\n        if i == 1:\n            new_F = float(line.strip().split()[-1])\n            if new_F > best_F:\n                best_F = new_F\n                save = True\n                print('the best F is ', new_F)\n\n\n    #-------------------------------------------------------------------------------------------------\n    #--------------- only print the performnace on dev/test set. do not print for train set ----------\n    #-------------------------------------------------------------------------------------------------\n\n    if phase_name==\"dev\" or phase_name==\"test\":\n        print_result.print_result(eval_result, epoch_count, parameters[\"sorted_entity_list_file_name\"], parameters[\"entity_category_code\"], parameters[\"entity_category_human_language\"])\n        print(\"-----------------------------------\")\n        over_all_p=eval_result['overall']['P']\n        over_all_r=eval_result['overall']['R']\n        over_all_f1=eval_result['overall']['F1']\n        op_line = phase_name+ \": epoch: \"+str(epoch_count) +\" P: \"+ str(over_all_p)+\" R: \"+str(over_all_r)+\" F1: \"+str(over_all_f1)+\"\\n\"\n        fout_per_epoch.write(op_line)\n        fout_per_epoch.flush()\n    return best_F, new_F, save\n\n\n\n\ndef train_model(model, step_lr_scheduler, optimizer, train_data, dev_data, test_data):\n    char_embed_dict = {}\n\n    losses = []\n    loss = 0.0\n    best_dev_F = -1.0\n    best_test_F = -1.0\n    best_train_F = -1.0\n    all_F = [[0, 0, 0]]\n    plot_every = 10\n    eval_every = 20\n    count = 0\n\n    model.train(True)\n    start = time.time()\n    for epoch in range(1, parameters[\"epochs\"]+1):\n        \n        print(\"---------epoch count: \", epoch)\n        for i, index in enumerate(np.random.permutation(len(train_data))):\n            \n            tr = time.time()\n            count += 1\n            data = train_data[index]\n            # print(\"from train_so: \",data)\n            #what is the data instance looks like\"\n            #'str_words': ['Trial', 'and', 'error', 'seems', 'a', 'very', 'dumb', '(', 'and', 'annoying', ')', 'approach', 'to', 'solve', 'this', 'problem', '.'], \n            #'words':    [1, 9, 76, 179, 7, 215, 1, 26, 9, 1, 29, 332, 4, 310, 15, 64, 3], \n            #'markdown': [0, 0, 0, 0, 0, 0, 0,  0, 0, 0,  0, 0, 0, 0,  0,  0, 0],\n            #'chars': [[26, 8, 5, 4, 10], [4, 6, 11], [1, 8, 8, 3, 8], [7, 1, 1, 14, 7], [4], [22, 1, 8, 17], [11, 13, 14, 21], [35], [4, 6, 11], [4, 6, 6, 3, 17, 5, 6, 16], [34], [4, 15, 15, 8, 3, 4, 12, 9], [2, 3], [7, 3, 10, 22, 1], [2, 9, 5, 7], [15, 8, 3, 21, 10, 1, 14], [20]], \n            #'caps': [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], \n            #'tags': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'handcrafted': [28052, 28053, 28054, 28055, 28056, 28057, 28058, 28059, 28060, 28061, 28062, 28063, 28064, 28065, 28066, 28067, 28068]\n            model.zero_grad()\n\n            sentence_in = data['words']\n            sentence_tokens=data['str_words']\n            sentence_seg_preds = data['seg_pred']\n            sentence_ctc_preds = data['ctc_pred']\n\n            \n\n\n\n            \n            tags = data['tags']\n            chars2 = data['chars']\n\n            # print(data)\n\n            sentence_in = Variable(torch.LongTensor(sentence_in))\n            sentence_seg_preds = Variable(torch.LongTensor(sentence_seg_preds))\n            sentence_ctc_preds = Variable(torch.LongTensor(sentence_ctc_preds))\n            \n\n            ######### char lstm\n            if parameters['char_mode'] == 'LSTM':\n                chars2_sorted = sorted(chars2, key=lambda p: len(p), reverse=True)\n                d = {}\n                for i, ci in enumerate(chars2):\n                    for j, cj in enumerate(chars2_sorted):\n                        if ci == cj and not j in d and not i in d.values():\n                            d[j] = i\n                            continue\n                chars2_length = [len(c) for c in chars2_sorted]\n                char_maxl = max(chars2_length)\n                chars2_mask = np.zeros((len(chars2_sorted), char_maxl), dtype='int')\n                for i, c in enumerate(chars2_sorted):\n                    chars2_mask[i, :chars2_length[i]] = c\n                chars2_mask = Variable(torch.LongTensor(chars2_mask))\n\n            # ######## char cnn\n            if parameters['char_mode'] == 'CNN':\n                d = {}\n                chars2_length = [len(c) for c in chars2]\n                char_maxl = max(chars2_length)\n                chars2_mask = np.zeros((len(chars2_length), char_maxl), dtype='int')\n                for i, c in enumerate(chars2):\n                    chars2_mask[i, :chars2_length[i]] = c\n                # print(chars2_mask)\n                chars2_mask = Variable(torch.LongTensor(chars2_mask))\n\n\n            targets = torch.LongTensor(tags)\n            caps = Variable(torch.LongTensor(data['caps']))\n            if use_gpu:\n                neg_log_likelihood = model.neg_log_likelihood(sentence_tokens, sentence_in.cuda(), sentence_seg_preds.cuda(),sentence_ctc_preds.cuda(),  targets.cuda(), chars2_mask.cuda(), caps.cuda(), chars2_length, d)\n            else:\n                neg_log_likelihood = model.neg_log_likelihood(sentence_tokens,sentence_in,sentence_seg_preds,sentence_ctc_preds,  targets, chars2_mask, caps, chars2_length, d)\n            # loss += neg_log_likelihood.data[0] / len(data['words'])\n\n           \n\n            #JT : added the following to save char embed (for evaluating char embeds)\n            # if use_gpu:\n            #     char_embed_op = model.get_char_embedding(sentence_in.cuda(), chars2_mask.cuda(), caps.cuda(), chars2_length, d).clone().data.cpu().numpy()\n            # else:\n            #     char_embed_op = model.get_char_embedding(sentence_in, chars2_mask, caps, chars2_length, d).clone().data.cpu().numpy()\n\n            # char_embed_dict = save_char_embed( data['str_words'], char_embed_dict, char_embed_op)\n\n            # char_embed_dict_name= \"char_embed_dict_\"+str(epoch)+\".json\"\n            \n            # with open(char_embed_dict_name, 'wb') as fp:\n            #     pickle.dump(char_embed_dict, fp)\n\n            # print(char_embed_op)\n\n\n            loss += neg_log_likelihood.data.item() / len(data['words']) #JT : data[0]> data.item()\n            neg_log_likelihood.backward()\n            # torch.nn.utils.clip_grad_norm(model.parameters(), 5.0)\n            torch.nn.utils.clip_grad_norm_(model.parameters(), 5.0) #JT : clip_grad_norm > clip_grad_norm_\n            optimizer.step()\n\n            \n\n            \n\n\n            if count % len(train_data) == 0:\n                utils.adjust_learning_rate(optimizer, lr=learning_rate/(1+0.05*count/len(train_data)))\n\n        #JT: evaluate after 1 epoch\n        model.train(False)\n\n        best_train_F, new_train_F, _ = evaluating(model, train_data,  best_train_F,  epoch, \"train\")\n\n        if parameters[\"mode\"]==\"dev\":\n            phase_name=\"dev\"\n        else:\n            phase_name=\"test\"\n\n        best_dev_F, new_dev_F, save = evaluating(model, dev_data, best_dev_F, epoch, phase_name) \n        if save:\n            torch.save(model, model_name)\n        best_test_F, new_test_F = 0, 0\n        all_F.append([new_train_F, new_dev_F, new_test_F])\n        step_lr_scheduler.step()\n\n        \n        \n        # word_embeding_weights=model.word_embeds.weight.data.cpu().numpy()\n        # print(\"type(word_embeding_weights): \", type(word_embeding_weights))\n        # print(\"shape word_embeding_weights: \", word_embeding_weights.shape)\n        # print(\"shape word_embeding_weights: \", model.word_embeds.weight.data.size())\n        # print(\"shape word_embeding_weights: \", model.word_embeds.weight.data[0])\n\n        #-------------------------------------------------------------------------------------------------\n        #--------------------- save model for each epoch, after finding the optimal epoch ----------------\n        #--------------------- save model from last epoch only -------------------------------------------\n        #-------------------------------------------------------------------------------------------------\n\n        PATH=parameters[\"models_path\"]+\"/model_epoch.\"+str(epoch)\n        torch.save(model, PATH)\n        model.train(True)\n        end = time.time()\n        time_in_this_epoch = end - start\n        print(\"time in this epoch: \", time_in_this_epoch, \"secs\")\n        start=end\n\n\n    return char_embed_dict\n\n    \n\n\n    \n\n\n\nif __name__ == '__main__':\n    eval_script= parameters[\"eval_script\"]\n\n    eval_temp= parameters[\"eval_temp\"]\n    try:\n        shutil.rmtree(eval_temp)\n    except Exception as e:\n        pass\n\n\n    fout_per_epoch = open(parameters[\"perf_per_epoch_file\"],'w')\n    fout_per_epoch.close()\n\n    if not os.path.isfile(eval_script):\n        raise Exception('CoNLL evaluation script not found at \"%s\"' % eval_script)\n    if not os.path.exists(eval_temp):\n        os.makedirs(eval_temp)\n    if not os.path.exists(parameters[\"models_path\"]):\n        os.makedirs(parameters[\"models_path\"])\n\n    \n    train_data, dev_data, test_data, word_to_id, id_to_word,  tag_to_id, id_to_tag, char_to_id, id_to_char, word_embeds, freq_embeds, seg_pred_embeds, ctc_pred_embeds =prepare_train_set_dev_data()\n\n\n    use_gpu = parameters['use_gpu']\n    gpu_id = parameters[\"gpu_id\"]\n\n    name = parameters['name']\n    model_name = parameters[\"models_path\"] + name #get_name(parameters)\n    tmp_model = model_name + '.tmp'\n\n    model = BiLSTM_CRF(vocab_size=len(word_to_id),\n                       tag_to_ix=tag_to_id,\n                       embedding_dim=parameters['word_dim'],\n                       freq_embed_dim=parameters['freq_dim'], \n                       markdown_embed_dim=parameters['markdown_dim'],\n                       seg_pred_embed_dim=parameters['segmentation_dim'],\n                       hidden_dim=parameters['word_lstm_dim'],\n                       use_gpu=use_gpu,\n                       char_to_ix=char_to_id,\n                       pre_word_embeds=word_embeds,\n                       word_freq_embeds=freq_embeds,\n                       word_seg_pred_embeds=seg_pred_embeds,\n                       word_ctc_pred_embeds=ctc_pred_embeds,\n                       use_crf=parameters['crf'],\n                       char_mode=parameters['char_mode'],\n                       # n_cap=4,\n                       # cap_embedding_dim=10\n                       )\n    if parameters['reload']:\n        model.load_state_dict(torch.load(model_name))\n\n    if use_gpu:\n        GPU_id=gpu_id\n        print(\"GPU ID = \", GPU_id)\n        torch.cuda.set_device(GPU_id)\n        model.cuda()\n\n        \n\n\n    learning_rate = parameters[\"LR\"]\n    optimizer = torch.optim.SGD(model.parameters(), lr=learning_rate, momentum=0.9)\n    step_lr_scheduler = lr_scheduler.StepLR(optimizer, step_size=5, gamma=0.8)\n\n    t = time.time()\n    \n    train_model(model, step_lr_scheduler, optimizer, train_data, dev_data, test_data)\n\n   \n\n    print(\"total time in training: \",time.time() - t)\n    \n    try:\n        os.remove(parameters[\"sorted_entity_list_file_name\"])\n    except Exception as e:\n        pass\n    \n\n"
  },
  {
    "path": "code/Attentive_BiLSTM/utils_so.py",
    "content": "from __future__ import print_function\nimport os\nimport re\nimport numpy as np\n\nfrom collections import Counter\nimport json\n\n\nimport torch.nn as nn\nfrom torch.nn import init\n\nfrom config_so import parameters\n\n#so far best: 9911: f1= 48.83: epoch 24\n# seed = parameters[\"seed\"]\nnp.random.seed(parameters[\"seed\"])\n\n\n\n\n\ndef get_name(parameters):\n    \"\"\"\n    Generate a model name from its parameters.\n    \"\"\"\n    l = []\n    for k, v in parameters.items():\n        if type(v) is str and \"/\" in v:\n            l.append((k, v[::-1][:v[::-1].index('/')][::-1]))\n        else:\n            l.append((k, v))\n    name = \",\".join([\"%s=%s\" % (k, str(v).replace(',', '')) for k, v in l])\n    return \"\".join(i for i in name if i not in \"\\/:*?<>|\")\n\n\ndef set_values(name, param, pretrained):\n    \"\"\"\n    Initialize a network parameter with pretrained values.\n    We check that sizes are compatible.\n    \"\"\"\n    param_value = param.get_value()\n    if pretrained.size != param_value.size:\n        raise Exception(\n            \"Size mismatch for parameter %s. Expected %i, found %i.\"\n            % (name, param_value.size, pretrained.size)\n        )\n    param.set_value(np.reshape(\n        pretrained, param_value.shape\n    ).astype(np.float32))\n\n\ndef create_dico(item_list):\n    \"\"\"\n    Create a dictionary of items from a list of list of items.\n    \"\"\"\n    assert type(item_list) is list\n    dico = {}\n    for items in item_list:\n        for item in items:\n            if item not in dico:\n                dico[item] = 1\n            else:\n                dico[item] += 1\n    return dico\n\n\ndef create_mapping(dico):\n    \"\"\"\n    Create a mapping (item to ID / ID to item) from a dictionary.\n    Items are ordered by decreasing frequency.\n    \"\"\"\n    sorted_items = sorted(dico.items(), key=lambda x: (-x[1], x[0]))\n    id_to_item = {i: v[0] for i, v in enumerate(sorted_items)}\n    item_to_id = {v: k for k, v in id_to_item.items()}\n    return item_to_id, id_to_item\n\n\ndef zero_digits(s):\n    \"\"\"\n    Replace every digit in a string by a zero.\n    \"\"\"\n    return re.sub('\\d', '0', s)\n\n\ndef iob2(tags):\n    \"\"\"\n    Check that tags have a valid IOB format.\n    Tags in IOB1 format are converted to IOB2.\n    \"\"\"\n    for i, tag in enumerate(tags):\n        if tag == 'O':\n            continue\n        split = tag.split('-')\n        if len(split) != 2 or split[0] not in ['I', 'B']:\n            return False\n        if split[0] == 'B':\n            continue\n        elif i == 0 or tags[i - 1] == 'O':  # conversion IOB1 to IOB2\n            tags[i] = 'B' + tag[1:]\n        elif tags[i - 1][1:] == tag[1:]:\n            continue\n        else:  # conversion IOB1 to IOB2\n            tags[i] = 'B' + tag[1:]\n    return True\n\n\ndef iob_iobes(tags):\n    \"\"\"\n    IOB -> IOBES\n    \"\"\"\n    new_tags = []\n    for i, tag in enumerate(tags):\n        if tag == 'O':\n            new_tags.append(tag)\n        elif tag.split('-')[0] == 'B':\n            if i + 1 != len(tags) and \\\n               tags[i + 1].split('-')[0] == 'I':\n                new_tags.append(tag)\n            else:\n                new_tags.append(tag.replace('B-', 'S-'))\n        elif tag.split('-')[0] == 'I':\n            if i + 1 < len(tags) and \\\n                    tags[i + 1].split('-')[0] == 'I':\n                new_tags.append(tag)\n            else:\n                new_tags.append(tag.replace('I-', 'E-'))\n        else:\n            raise Exception('Invalid IOB format!')\n    return new_tags\n\n\ndef iobes_iob(tags):\n    \"\"\"\n    IOBES -> IOB\n    \"\"\"\n    new_tags = []\n    for i, tag in enumerate(tags):\n        if tag.split('-')[0] == 'B':\n            new_tags.append(tag)\n        elif tag.split('-')[0] == 'I':\n            new_tags.append(tag)\n        elif tag.split('-')[0] == 'S':\n            new_tags.append(tag.replace('S-', 'B-'))\n        elif tag.split('-')[0] == 'E':\n            new_tags.append(tag.replace('E-', 'I-'))\n        elif tag.split('-')[0] == 'O':\n            new_tags.append(tag)\n        else:\n            raise Exception('Invalid format!')\n    return new_tags\n\n\ndef insert_singletons(words, singletons, p=0.5):\n    \"\"\"\n    Replace singletons by the unknown word with a probability p.\n    \"\"\"\n    new_words = []\n    for word in words:\n        if word in singletons and np.random.uniform() < p:\n            new_words.append(0)\n        else:\n            new_words.append(word)\n    return new_words\n\n\ndef pad_word_chars(words):\n    \"\"\"\n    Pad the characters of the words in a sentence.\n    Input:\n        - list of lists of ints (list of words, a word being a list of char indexes)\n    Output:\n        - padded list of lists of ints\n        - padded list of lists of ints (where chars are reversed)\n        - list of ints corresponding to the index of the last character of each word\n    \"\"\"\n    max_length = max([len(word) for word in words])\n    char_for = []\n    char_rev = []\n    char_pos = []\n    for word in words:\n        padding = [0] * (max_length - len(word))\n        char_for.append(word + padding)\n        char_rev.append(word[::-1] + padding)\n        char_pos.append(len(word) - 1)\n    return char_for, char_rev, char_pos\n\n\ndef create_input(data, parameters, add_label, singletons=None):\n    \"\"\"\n    Take sentence data and return an input for\n    the training or the evaluation function.\n    \"\"\"\n    words = data['words']\n    chars = data['chars']\n    if singletons is not None:\n        words = insert_singletons(words, singletons)\n    if parameters['cap_dim']:\n        caps = data['caps']\n    char_for, char_rev, char_pos = pad_word_chars(chars)\n    input = []\n    if parameters['word_dim']:\n        input.append(words)\n    if parameters['char_dim']:\n        input.append(char_for)\n        if parameters['char_bidirect']:\n            input.append(char_rev)\n        input.append(char_pos)\n    if parameters['cap_dim']:\n        input.append(caps)\n    if add_label:\n        input.append(data['tags'])\n    return input\n\n\ndef init_embedding(input_embedding):\n    \"\"\"\n    Initialize embedding\n    \"\"\"\n    bias = np.sqrt(3.0 / input_embedding.size(1))\n    # nn.init.uniform(input_embedding, -bias, bias)\n    nn.init.uniform_(input_embedding, -bias, bias)\n\ndef init_linear(input_linear):\n    \"\"\"\n    Initialize linear transformation\n    \"\"\"\n    bias = np.sqrt(6.0 / (input_linear.weight.size(0) + input_linear.weight.size(1)))\n    #nn.init.uniform(input_linear.weight, -bias, bias)\n    nn.init.uniform_(input_linear.weight, -bias, bias)\n    if input_linear.bias is not None:\n        input_linear.bias.data.zero_()\n\ndef adjust_learning_rate(optimizer, lr):\n    \"\"\"\n    shrink learning rate for pytorch\n    \"\"\"\n    for param_group in optimizer.param_groups:\n        param_group['lr'] = lr\n\n\ndef init_lstm(input_lstm):\n    \"\"\"\n    Initialize lstm\n    \"\"\"\n    for ind in range(0, input_lstm.num_layers):\n        weight = eval('input_lstm.weight_ih_l' + str(ind))\n        bias = np.sqrt(6.0 / (weight.size(0) / 4 + weight.size(1)))\n        # nn.init.uniform(weight, -bias, bias)\n        nn.init.uniform_(weight, -bias, bias)\n\n        weight = eval('input_lstm.weight_hh_l' + str(ind))\n        bias = np.sqrt(6.0 / (weight.size(0) / 4 + weight.size(1)))\n        # nn.init.uniform(weight, -bias, bias)\n        nn.init.uniform_(weight, -bias, bias)\n\n    if input_lstm.bidirectional:\n        for ind in range(0, input_lstm.num_layers):\n            weight = eval('input_lstm.weight_ih_l' + str(ind) + '_reverse')\n            bias = np.sqrt(6.0 / (weight.size(0) / 4 + weight.size(1)))\n            # nn.init.uniform(weight, -bias, bias)\n            nn.init.uniform_(weight, -bias, bias)\n            weight = eval('input_lstm.weight_hh_l' + str(ind) + '_reverse')\n            bias = np.sqrt(6.0 / (weight.size(0) / 4 + weight.size(1)))\n            # nn.init.uniform(weight, -bias, bias)\n            nn.init.uniform_(weight, -bias, bias)\n\n    if input_lstm.bias:\n        for ind in range(0, input_lstm.num_layers):\n            weight = eval('input_lstm.bias_ih_l' + str(ind))\n            weight.data.zero_()\n            weight.data[input_lstm.hidden_size: 2 * input_lstm.hidden_size] = 1\n            weight = eval('input_lstm.bias_hh_l' + str(ind))\n            weight.data.zero_()\n            weight.data[input_lstm.hidden_size: 2 * input_lstm.hidden_size] = 1\n        if input_lstm.bidirectional:\n            for ind in range(0, input_lstm.num_layers):\n                weight = eval('input_lstm.bias_ih_l' + str(ind) + '_reverse')\n                weight.data.zero_()\n                weight.data[input_lstm.hidden_size: 2 * input_lstm.hidden_size] = 1\n                weight = eval('input_lstm.bias_hh_l' + str(ind) + '_reverse')\n                weight.data.zero_()\n                weight.data[input_lstm.hidden_size: 2 * input_lstm.hidden_size] = 1\n\n\n\ndef init_gru(input_gru):\n    \"\"\"\n    Initialize lstm\n    \"\"\"\n    for ind in range(0, input_gru.num_layers):\n        weight = eval('input_gru.weight_ih_l' + str(ind))\n        bias = np.sqrt(6.0 / (weight.size(0) / 4 + weight.size(1)))\n        # nn.init.uniform(weight, -bias, bias)\n        nn.init.uniform_(weight, -bias, bias)\n\n        weight = eval('input_gru.weight_hh_l' + str(ind))\n        bias = np.sqrt(6.0 / (weight.size(0) / 4 + weight.size(1)))\n        # nn.init.uniform(weight, -bias, bias)\n        nn.init.uniform_(weight, -bias, bias)\n\n    if input_gru.bidirectional:\n        for ind in range(0, input_gru.num_layers):\n            weight = eval('input_gru.weight_ih_l' + str(ind) + '_reverse')\n            bias = np.sqrt(6.0 / (weight.size(0) / 4 + weight.size(1)))\n            # nn.init.uniform(weight, -bias, bias)\n            nn.init.uniform_(weight, -bias, bias)\n            weight = eval('input_gru.weight_hh_l' + str(ind) + '_reverse')\n            bias = np.sqrt(6.0 / (weight.size(0) / 4 + weight.size(1)))\n            # nn.init.uniform(weight, -bias, bias)\n            nn.init.uniform_(weight, -bias, bias)\n\n    if input_gru.bias:\n        for ind in range(0, input_gru.num_layers):\n            weight = eval('input_gru.bias_ih_l' + str(ind))\n            weight.data.zero_()\n            weight.data[input_gru.hidden_size: 2 * input_gru.hidden_size] = 1\n            weight = eval('input_gru.bias_hh_l' + str(ind))\n            weight.data.zero_()\n            weight.data[input_gru.hidden_size: 2 * input_gru.hidden_size] = 1\n        if input_gru.bidirectional:\n            for ind in range(0, input_gru.num_layers):\n                weight = eval('input_gru.bias_ih_l' + str(ind) + '_reverse')\n                weight.data.zero_()\n                weight.data[input_gru.hidden_size: 2 * input_gru.hidden_size] = 1\n                weight = eval('input_gru.bias_hh_l' + str(ind) + '_reverse')\n                weight.data.zero_()\n                weight.data[input_gru.hidden_size: 2 * input_gru.hidden_size] = 1\n\n\n                \n#------------------------------------------------------------------------------------------------------------------\n#  added by JT to merge low freq labels\n#------------------------------------------------------------------------------------------------------------------\ndef Merge_Label(inputFile):\n    merging_dict={}\n    merging_dict[\"Library_Function\"]=\"Function\"\n    merging_dict[\"Function_Name\"]=\"Function\"\n\n    merging_dict[\"Class_Name\"]=\"Class\"\n    merging_dict[\"Library_Class\"]=\"Class\"\n\n    merging_dict[\"Library_Variable\"]=\"Variable\"\n    merging_dict[\"Variable_Name\"]=\"Variable\"\n\n    merging_dict[\"Website\"]=\"Website\"\n    merging_dict[\"Organization\"]=\"Website\"\n\n    modified_file=inputFile[:-4]+\"_merged_labels.txt\"\n    Fout=open(modified_file,\"w\")\n    line_count=0\n    for line in open(inputFile):\n        line_count+=1\n        # print(\"line: in Merge_Label: utils_so:  \",line)\n        # print(inputFile,\":\", line_count)\n        line_values=line.strip().split()\n        if len(line_values)<2:\n            opline=line\n            Fout.write(opline)\n            continue\n            \n\n        gold_word=line_values[0]\n        gold_label=line_values[1]\n        raw_word=line_values[2]\n        raw_label=line_values[3]\n        #print(line_values)\n        if gold_word!=raw_word:\n            print(\"wrong mapping: \", line)\n\n        word=gold_word\n        label=gold_label\n\n        if label==\"O\":\n            opline=line\n            Fout.write(opline)\n            continue\n        # print(label)\n\n        label_split=label.split(\"-\",1)\n\n        label_prefix=label_split[0]\n        label_name=label_split[1]\n        #print(label_name)\n        \n        if label_name in merging_dict:\n            label_name=merging_dict[label_name]\n            #print(label_name)\n\n        new_label=label_prefix+\"-\"+label_name\n        #opline=word+\" \"+new_label+\"\\n\"\n        opline=word+\" \"+new_label+\" \"+raw_word+\" \"+raw_label+\"\\n\"\n        Fout.write(opline)\n\n\n    Fout.close()\n    return modified_file\n\n\n\n\n    return modified_file\n\n\n\n\n\n\nclass Sort_Entity_by_Count:\n    \"\"\"docstring for Sort_Entity_by_Count\"\"\"\n    def __init__(self, train_file,output_file):\n        l = self.Read_File(train_file)\n        #\n        self.list_of_train_sentence_words=l[0]\n        self.list_of_train_sentence_labels=l[1]\n        self.train_ques_count=l[2]\n        self.train_answer_count=l[3]\n\n        train_label_counter = Counter(x for xs in self.list_of_train_sentence_labels for x in xs)\n        train_result=self.get_label_counter(train_label_counter)\n\n\n        list_keys= [x[0] for x in train_result[\"label_phrase_counter\"].most_common()]\n        with open(output_file, 'w') as outfile:\n            json.dump(list_keys, outfile)\n\n\n\n    def get_label_counter(self, label_counter):\n        label_phrase_counter=Counter()\n        label_word_counter=Counter()\n\n        word_count=0\n        entities_count=0\n\n        for c in label_counter:\n            split_c=c.split(\"-\",1)\n            type_c=split_c[0]\n            if type_c==\"O\":\n                word_count+=label_counter[c]\n                continue\n            entity_name=split_c[1]\n            #print(entity_name, split_c, type_c)\n            if type_c==\"B\":\n                label_phrase_counter[entity_name]+=label_counter[c]\n                label_word_counter[entity_name]+=label_counter[c]\n                word_count+=label_counter[c]\n                entities_count+=label_counter[c]\n            elif type_c==\"I\":\n                label_word_counter[entity_name]+=label_counter[c]\n\n        result={}\n        result[\"label_phrase_counter\"]=label_phrase_counter\n        result[\"word_count\"]=word_count\n        result[\"entity_count\"]=entities_count\n        result[\"label_word_counter\"]=label_word_counter\n        return result\n\n\n    def Read_File(self, ip_file):\n        list_of_sentence_words_in_file=[]\n        list_of_sentence_labels_in_file=[]\n        current_sent_words=[]\n        current_sent_labels=[]\n        count_question=0\n        count_answer=0\n\n        for line in open(ip_file):\n            #print(line)\n            if line.startswith(\"Question_ID\"):\n                #print(line)\n                count_question+=1\n            if line.startswith(\"Answer_to_Question_ID\"):\n                count_answer+=1\n            if line.strip()==\"\":\n                if len(current_sent_words)>0:\n                    output_line = \" \".join(current_sent_words)\n                    #print(output_line)\n                    if \"code omitted for annotation\" in output_line and \"CODE_BLOCK :\" in output_line:\n                        current_sent_words=[]\n                        current_sent_labels=[]\n                        continue\n                    elif \"omitted for annotation\" in output_line and \"OP_BLOCK :\" in output_line:\n                        current_sent_words=[]\n                        current_sent_labels=[]\n                        continue\n                    elif \"Question_URL :\" in output_line:\n                        current_sent_words=[]\n                        current_sent_labels=[]\n                        continue\n                    elif \"Question_ID :\" in output_line:\n                        current_sent_words=[]\n                        current_sent_labels=[]\n                        continue\n                    else:\n                        list_of_sentence_words_in_file.append(current_sent_words)\n                        list_of_sentence_labels_in_file.append(current_sent_labels)\n                        \n                        current_sent_words=[]\n                        current_sent_labels=[]\n                    \n                    \n            else:\n                #print(line)\n                line_values=line.strip().split()\n                gold_word=line_values[0]\n                gold_label=line_values[1]\n                raw_word=line_values[2]\n                raw_label=line_values[3]\n                current_sent_words.append(gold_word)\n                current_sent_labels.append(gold_label)\n                \n        \n        return [list_of_sentence_words_in_file, list_of_sentence_labels_in_file, count_question, count_answer]"
  },
  {
    "path": "code/BERT_NER/E2E_SoftNER.py",
    "content": "from utils_preprocess import *\nfrom utils_preprocess.format_markdown import *\nfrom utils_preprocess.anntoconll import *\n\nimport glob\n\nfrom utils_ctc import *\nfrom utils_ctc.prediction_ctc import *\nimport argparse\n\nimport subprocess\n\nimport shutil\n\nimport softner_segmenter_preditct_from_file\nimport softner_ner_predict_from_file\n\ndef read_file(input_file, output_folder):\n\n\tinfo_extractor = Stackoverflow_Info_Extract(output_folder)\n\n\tpost_id = 0\n\n\tfor line in open(input_file):\n\t\tif line.strip()==\"\":\n\t\t\tcontinue\n\t\tpost_id+=1\n\n\t\t# if \"--INLINE_CODE_BEGIN---\" in line:\n\t\t# \tprint(post_id)\n\t\t\n\t\tinfo_extractor.tokenize_and_annotae_post_body(line,str(post_id).zfill(6))\n\n\ndef merge_all_conll_files(conlll_folder, output_file):\n\tfout = open(output_file,'w')\n\n\tlist_of_text_files = [f for f in os.listdir(conlll_folder) if f.endswith('.txt')]\n\t# print(list_of_text_files)\n\n\tfor file_name in sorted(list_of_text_files):\n\t\tfile_path = conlll_folder+\"/\"+file_name\n\t\tfor line in open(file_path):\n\t\t\tline=line.strip()\n\n\t\t\t\n\t\t\tif line==\"\":\n\t\t\t\tfout.write(\"\\n\")\n\t\t\t\tcontinue\n\n\t\t\tline_values = line.strip().split()\n\t\t\t# print(line_values, len(line_values))\n\t\t\tif len(line_values)==2:\n\t\t\t\t# print(line)\n\t\t\t\tfout.write(line)\n\t\t\t\tfout.write(\"\\n\")\n\t\tfout.flush()\n\t\tfout.write(\"\\n\")\n\n\t# print(output_file)\n\n\tfout.close()\n\n\ndef create_segmenter_input(conll_format_file, segmenter_input_file, ctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features):\n\t\n\n\n\tfout=open(segmenter_input_file,'w')\n\n\tfor line in open(conll_format_file):\n\t\tif line.strip()==\"\":\n\t\t\tfout.write(\"\\n\")\n\t\t\tcontinue\n\n\t\t# print(\"--------------\",line)\n\t\t\n\t\tline_values = line.strip().split()\n\t\tif len(line_values)!=2:\n\t\t\tprint(line)\n\t\t\tcontinue\n\t\telse:\n\t\t\tword, md = line.split()\n\n\t\tctc = prediction_on_token_input(word, ctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features)\n\t\t# print(word, md, ctc)\n\n\t\tif md!=\"O\":\n\t\t\tmd = \"Name\"\n\t\topline = word+\"\\t\"+\"O\"+\"\\t\"+\"CTC_PRED:\"+str(ctc)+\"\\t\"+\"md_label:\"+md+\"\\n\"\n\t\t# print(opline)\n\t\tfout.write(opline)\n\n\tfout.close()\n\t\t\n\ndef create_ner_input(segmenter_output_file, ner_input_file, ctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features):\n\t\n\n\n\tfout=open(ner_input_file,'w')\n\n\tfor line in open(segmenter_output_file):\n\t\tif line.strip()==\"\":\n\t\t\tfout.write(\"\\n\")\n\t\t\tcontinue\n\n\t\t# print(\"--------------\",line)\n\t\t\n\t\tline_values = line.strip().split()\n\t\tif len(line_values)!=2:\n\t\t\tprint(line)\n\t\t\tcontinue\n\t\telse:\n\t\t\tword, seg = line.split()\n\n\t\tctc = prediction_on_token_input(word, ctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features)\n\t\t# print(word, md, ctc)\n\n\t\tif seg!=\"O\":\n\t\t\tseg = \"Name\"\n\n\t\topline = word+\"\\t\"+\"O\"+\"\\t\"+\"CTC_PRED:\"+str(ctc)+\"\\t\"+\"pred_seg_label:\"+seg+\"\\n\"\n\t\t# print(opline)\n\t\tfout.write(opline)\n\n\tfout.close()\n\t\t\n\ndef parse_args():\n    parser = argparse.ArgumentParser()\n\n\n    # Required parameters\n    parser.add_argument(\n        \"--input_file_with_so_body\",\n        default='xml_filted_body.txt',\n        type=str,\n    )\n\n    args = parser.parse_args()\n\n    \n\n\n    return args\n\n\ndef Extract_NER(input_file):\n\n\n\ttrain_file=parameters_ctc['train_file']\n\ttest_file=parameters_ctc['test_file']\n\t\n\tctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features= train_ctc_model(train_file, test_file)\n\n\n\tbase_temp_dir = \"temp_files/\"\n\tstandoff_folder = \"temp_files/standoff_files/\"\n\tconlll_folder = \"temp_files/conll_files/\"\n\tconll_file = \"temp_files/conll_format_txt.txt\"\n\n\tsegmenter_input_file = \"temp_files/segmenter_ip.txt\"\n\n\tsegmenter_output_file = \"temp_files/segemeter_preds.txt\"\n\n\tner_input_file = \"temp_files/ner_ip.txt\"\n\n\tner_output_file = \"ner_preds.txt\"\n\n\tif not os.path.exists(base_temp_dir): os.makedirs(base_temp_dir)\n\tif not os.path.exists(standoff_folder): os.makedirs(standoff_folder)\n\tif not os.path.exists(conlll_folder): os.makedirs(conlll_folder)\n\n\t\n\t\n\t\n\n\tread_file(input_file, standoff_folder)\n\t\n\tconvert_standoff_to_conll(standoff_folder, conlll_folder)\n\tmerge_all_conll_files(conlll_folder, conll_file)\n\n\tcreate_segmenter_input(conll_file, segmenter_input_file, ctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features)\n\n\tsoftner_segmenter_preditct_from_file.predict_segments(segmenter_input_file, segmenter_output_file)\n\n\tcreate_ner_input(segmenter_output_file, ner_input_file, ctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features)\n\n\tsoftner_ner_predict_from_file.predict_entities(ner_input_file,ner_output_file)\n\n\n\t\n\n\tshutil.rmtree(base_temp_dir, ignore_errors=True)\n\n\nif __name__ == '__main__':\n\n\targs = parse_args()\n\tinput_file = args.input_file_with_so_body\n\n\tinput_file = \"xml_filted_body.txt\"\n\n\n\tExtract_NER(input_file)\n\n\t\n\n\n\n"
  },
  {
    "path": "code/BERT_NER/softner_ner_predict_from_file.py",
    "content": "# coding=utf-8\n# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.\n# Copyright (c) 2018, NVIDIA CORPORATION.  All rights reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\"\"\" Fine-tuning the library models for named entity recognition on CoNLL-2003 (Bert or Roberta). \"\"\"\n\n\nimport argparse\nimport glob\nimport logging\nimport os\nimport random\n\nimport numpy as np\nimport torch\n\n\nfrom seqeval.metrics import f1_score, precision_score, recall_score\nfrom torch.nn import CrossEntropyLoss\nfrom torch.utils.data import DataLoader, RandomSampler, SequentialSampler, TensorDataset\nfrom torch.utils.data.distributed import DistributedSampler\nfrom tqdm import tqdm, trange\n\nfrom transformers import (\n    MODEL_FOR_TOKEN_CLASSIFICATION_MAPPING_Soft_NER,\n    WEIGHTS_NAME,\n    AdamW,\n    AutoConfig,\n    AutoModelForTokenClassification_Soft_NER,\n    AutoTokenizer,\n    get_linear_schedule_with_warmup,\n)\nfrom utils_ner import convert_examples_to_features, get_labels, read_examples_from_file\n\n\ntry:\n    from torch.utils.tensorboard import SummaryWriter\nexcept ImportError:\n    from tensorboardX import SummaryWriter\n\n\nlogger = logging.getLogger(__name__)\n\nMODEL_CONFIG_CLASSES = list(MODEL_FOR_TOKEN_CLASSIFICATION_MAPPING_Soft_NER.keys())\nMODEL_TYPES = tuple(conf.model_type for conf in MODEL_CONFIG_CLASSES)\n\nALL_MODELS = sum((tuple(conf.pretrained_config_archive_map.keys()) for conf in MODEL_CONFIG_CLASSES), ())\n\nTOKENIZER_ARGS = [\"do_lower_case\", \"strip_accents\", \"keep_accents\", \"use_fast\"]\n\ndef set_seed(args):\n    random.seed(args.seed)\n    np.random.seed(args.seed)\n    torch.manual_seed(args.seed)\n    if args.n_gpu > 0:\n        torch.cuda.manual_seed_all(args.seed)\n\n\ndef train(args, train_dataset, model, tokenizer, labels, pad_token_label_id):\n    \"\"\" Train the model \"\"\"\n    if args.local_rank in [-1, 0]:\n        tb_writer = SummaryWriter()\n\n    args.train_batch_size = args.per_gpu_train_batch_size * max(1, args.n_gpu)\n    train_sampler = RandomSampler(train_dataset) if args.local_rank == -1 else DistributedSampler(train_dataset)\n    train_dataloader = DataLoader(train_dataset, sampler=train_sampler, batch_size=args.train_batch_size)\n\n    if args.max_steps > 0:\n        t_total = args.max_steps\n        args.num_train_epochs = args.max_steps // (len(train_dataloader) // args.gradient_accumulation_steps) + 1\n    else:\n        t_total = len(train_dataloader) // args.gradient_accumulation_steps * args.num_train_epochs\n\n    # Prepare optimizer and schedule (linear warmup and decay)\n    no_decay = [\"bias\", \"LayerNorm.weight\"]\n    optimizer_grouped_parameters = [\n        {\n            \"params\": [p for n, p in model.named_parameters() if not any(nd in n for nd in no_decay)],\n            \"weight_decay\": args.weight_decay,\n        },\n        {\"params\": [p for n, p in model.named_parameters() if any(nd in n for nd in no_decay)], \"weight_decay\": 0.0},\n    ]\n    optimizer = AdamW(optimizer_grouped_parameters, lr=args.learning_rate, eps=args.adam_epsilon)\n    scheduler = get_linear_schedule_with_warmup(\n        optimizer, num_warmup_steps=args.warmup_steps, num_training_steps=t_total\n    )\n\n    # Check if saved optimizer or scheduler states exist\n    if os.path.isfile(os.path.join(args.model_name_or_path, \"optimizer.pt\")) and os.path.isfile(\n        os.path.join(args.model_name_or_path, \"scheduler.pt\")\n    ):\n        # Load in optimizer and scheduler states\n        optimizer.load_state_dict(torch.load(os.path.join(args.model_name_or_path, \"optimizer.pt\")))\n        scheduler.load_state_dict(torch.load(os.path.join(args.model_name_or_path, \"scheduler.pt\")))\n\n    if args.fp16:\n        try:\n            from apex import amp\n        except ImportError:\n            raise ImportError(\"Please install apex from https://www.github.com/nvidia/apex to use fp16 training.\")\n        model, optimizer = amp.initialize(model, optimizer, opt_level=args.fp16_opt_level)\n\n    # multi-gpu training (should be after apex fp16 initialization)\n    if args.n_gpu > 1:\n        model = torch.nn.DataParallel(model)\n\n    # Distributed training (should be after apex fp16 initialization)\n    if args.local_rank != -1:\n        model = torch.nn.parallel.DistributedDataParallel(\n            model, device_ids=[args.local_rank], output_device=args.local_rank, find_unused_parameters=True\n        )\n\n    # Train!\n    # logger.info(\"***** Running training *****\")\n    # logger.info(\"  Num Epochs = %d\", args.num_train_epochs)\n    # logger.info(\"  Instantaneous batch size per GPU = %d\", args.per_gpu_train_batch_size)\n    \n\n    global_step = 0\n    epochs_trained = 0\n    steps_trained_in_current_epoch = 0\n    # Check if continuing training from a checkpoint\n    if os.path.exists(args.model_name_or_path):\n        # set global_step to gobal_step of last saved checkpoint from model path\n        try:\n            global_step = int(args.model_name_or_path.split(\"-\")[-1].split(\"/\")[0])\n        except ValueError:\n            global_step = 0\n        epochs_trained = global_step // (len(train_dataloader) // args.gradient_accumulation_steps)\n        steps_trained_in_current_epoch = global_step % (len(train_dataloader) // args.gradient_accumulation_steps)\n\n        # logger.info(\"  Continuing training from checkpoint, will skip to saved global_step\")\n        # logger.info(\"  Continuing training from epoch %d\", epochs_trained)\n        # logger.info(\"  Continuing training from global step %d\", global_step)\n        # logger.info(\"  Will skip the first %d steps in the first epoch\", steps_trained_in_current_epoch)\n\n    tr_loss, logging_loss = 0.0, 0.0\n    model.zero_grad()\n    train_iterator = trange(\n        epochs_trained, int(args.num_train_epochs), desc=\"Epoch\"\n    )\n    set_seed(args)  # Added here for reproductibility\n    for _ in train_iterator:\n        epoch_iterator = tqdm(train_dataloader, desc=\"Progress\")\n        for step, batch in enumerate(epoch_iterator):\n\n            # Skip past any already trained steps if resuming training\n            if steps_trained_in_current_epoch > 0:\n                steps_trained_in_current_epoch -= 1\n                continue\n\n            model.train()\n            batch = tuple(t.to(args.device) for t in batch)\n            inputs = {\"input_ids\": batch[0], \"attention_mask\": batch[1], \"labels\": batch[3], \"labels_ctc\": batch[4], \"labels_seg\": batch[5]}\n            if args.model_type != \"distilbert\":\n                inputs[\"token_type_ids\"] = (\n                    batch[2] if args.model_type in [\"bert\", \"xlnet\"] else None\n                )  # XLM and RoBERTa don\"t use segment_ids\n\n            outputs = model(**inputs)\n            loss = outputs[0]  # model outputs are always tuple in pytorch-transformers (see doc)\n\n            if args.n_gpu > 1:\n                loss = loss.mean()  # mean() to average on multi-gpu parallel training\n            if args.gradient_accumulation_steps > 1:\n                loss = loss / args.gradient_accumulation_steps\n\n            if args.fp16:\n                with amp.scale_loss(loss, optimizer) as scaled_loss:\n                    scaled_loss.backward()\n            else:\n                loss.backward()\n\n            tr_loss += loss.item()\n            if (step + 1) % args.gradient_accumulation_steps == 0:\n                if args.fp16:\n                    torch.nn.utils.clip_grad_norm_(amp.master_params(optimizer), args.max_grad_norm)\n                else:\n                    torch.nn.utils.clip_grad_norm_(model.parameters(), args.max_grad_norm)\n\n                optimizer.step()\n                scheduler.step()  # Update learning rate schedule\n                model.zero_grad()\n                global_step += 1\n\n                if args.local_rank in [-1, 0] and args.logging_steps > 0 and global_step % args.logging_steps == 0:\n                    # Log metrics\n                    if (\n                        args.local_rank == -1 and args.evaluate_during_training\n                    ):  # Only evaluate when single GPU otherwise metrics may not average well\n                        results, _ = evaluate(args, model, tokenizer, labels, pad_token_label_id, mode=\"dev\")\n                        for key, value in results.items():\n                            tb_writer.add_scalar(\"eval_{}\".format(key), value, global_step)\n                    tb_writer.add_scalar(\"lr\", scheduler.get_lr()[0], global_step)\n                    tb_writer.add_scalar(\"loss\", (tr_loss - logging_loss) / args.logging_steps, global_step)\n                    logging_loss = tr_loss\n\n                if args.local_rank in [-1, 0] and args.save_steps > 0 and global_step % args.save_steps == 0:\n                    # Save model checkpoint\n                    output_dir = os.path.join(args.output_dir, \"checkpoint-{}\".format(global_step))\n                    if not os.path.exists(output_dir):\n                        os.makedirs(output_dir)\n                    model_to_save = (\n                        model.module if hasattr(model, \"module\") else model\n                    )  # Take care of distributed/parallel training\n                    model_to_save.save_pretrained(output_dir)\n                    tokenizer.save_pretrained(output_dir)\n\n                    torch.save(args, os.path.join(output_dir, \"training_args.bin\"))\n                    # logger.info(\"Saving model checkpoint to %s\", output_dir)\n\n                    torch.save(optimizer.state_dict(), os.path.join(output_dir, \"optimizer.pt\"))\n                    torch.save(scheduler.state_dict(), os.path.join(output_dir, \"scheduler.pt\"))\n                    # logger.info(\"Saving optimizer and scheduler states to %s\", output_dir)\n\n            if args.max_steps > 0 and global_step > args.max_steps:\n                epoch_iterator.close()\n                break\n        if args.max_steps > 0 and global_step > args.max_steps:\n            train_iterator.close()\n            break\n\n    if args.local_rank in [-1, 0]:\n        tb_writer.close()\n\n    return global_step, tr_loss / global_step\n\n\ndef evaluate(args, model, tokenizer, labels, pad_token_label_id, mode, prefix=\"\", path=None):\n    eval_dataset = load_and_cache_examples(args, tokenizer, labels, pad_token_label_id, mode=mode, path=path)\n\n    args.eval_batch_size = args.per_gpu_eval_batch_size * max(1, args.n_gpu)\n    # Note that DistributedSampler samples randomly\n    eval_sampler = SequentialSampler(eval_dataset) if args.local_rank == -1 else DistributedSampler(eval_dataset)\n    eval_dataloader = DataLoader(eval_dataset, sampler=eval_sampler, batch_size=args.eval_batch_size)\n\n    # multi-gpu evaluate\n    if args.n_gpu > 1:\n        model = torch.nn.DataParallel(model)\n\n    # Eval!\n    # logger.info(\"***** Running evaluation %s *****\", prefix)\n    eval_loss = 0.0\n    nb_eval_steps = 0\n    preds = None\n    out_label_ids = None\n    model.eval()\n    for batch in tqdm(eval_dataloader, desc=\"Evaluating\", disable=True):\n        batch = tuple(t.to(args.device) for t in batch)\n\n        with torch.no_grad():\n            inputs = {\"input_ids\": batch[0], \"attention_mask\": batch[1], \"labels\": batch[3], \"labels_ctc\": batch[4], \"labels_seg\": batch[5]}\n            if args.model_type != \"distilbert\":\n                inputs[\"token_type_ids\"] = (\n                    batch[2] if args.model_type in [\"bert\", \"xlnet\"] else None\n                )  # XLM and RoBERTa don\"t use segment_ids\n            outputs = model(**inputs)\n            tmp_eval_loss, logits = outputs[:2]\n\n            if args.n_gpu > 1:\n                tmp_eval_loss = tmp_eval_loss.mean()  # mean() to average on multi-gpu parallel evaluating\n\n            eval_loss += tmp_eval_loss.item()\n        nb_eval_steps += 1\n        if preds is None:\n            preds = logits.detach().cpu().numpy()\n            out_label_ids = inputs[\"labels\"].detach().cpu().numpy()\n        else:\n            preds = np.append(preds, logits.detach().cpu().numpy(), axis=0)\n            out_label_ids = np.append(out_label_ids, inputs[\"labels\"].detach().cpu().numpy(), axis=0)\n\n    eval_loss = eval_loss / nb_eval_steps\n    preds = np.argmax(preds, axis=2)\n\n    label_map = {i: label for i, label in enumerate(labels)}\n\n    out_label_list = [[] for _ in range(out_label_ids.shape[0])]\n    preds_list = [[] for _ in range(out_label_ids.shape[0])]\n\n    for i in range(out_label_ids.shape[0]):\n        for j in range(out_label_ids.shape[1]):\n            if out_label_ids[i, j] != pad_token_label_id:\n                out_label_list[i].append(label_map[out_label_ids[i][j]])\n                preds_list[i].append(label_map[preds[i][j]])\n\n    results = {\n        \"precision\": precision_score(out_label_list, preds_list),\n        \"recall\": recall_score(out_label_list, preds_list),\n        \"f1\": f1_score(out_label_list, preds_list),\n    }\n\n    \n\n    # logger.info(\"***** Eval results %s *****\", prefix)\n    # for key in sorted(results.keys()):\n    #     logger.info(\"  %s = %s\", key, str(results[key]))\n\n    return results, preds_list\n\n\ndef load_and_cache_examples(args, tokenizer, labels, pad_token_label_id, mode, path=None):\n    if args.local_rank not in [-1, 0] and not evaluate:\n        torch.distributed.barrier()  # Make sure only the first process in distributed training process the dataset, and the others will use the cache\n\n    # Load data features from cache or dataset file\n    cached_features_file = os.path.join(\n        args.data_dir,\n        \"cached_{}_{}_{}\".format(\n            mode, list(filter(None, args.model_name_or_path.split(\"/\"))).pop(), str(args.max_seq_length)\n        ),\n    )\n    \n    examples = read_examples_from_file(args.data_dir, mode, path)\n    features = convert_examples_to_features(\n        examples,\n        labels,\n        args.max_seq_length,\n        tokenizer,\n        cls_token_at_end=bool(args.model_type in [\"xlnet\"]),\n        # xlnet has a cls token at the end\n        cls_token=tokenizer.cls_token,\n        cls_token_segment_id=2 if args.model_type in [\"xlnet\"] else 0,\n        sep_token=tokenizer.sep_token,\n        sep_token_extra=bool(args.model_type in [\"roberta\"]),\n        # roberta uses an extra separator b/w pairs of sentences, cf. github.com/pytorch/fairseq/commit/1684e166e3da03f5b600dbb7855cb98ddfcd0805\n        pad_on_left=bool(args.model_type in [\"xlnet\"]),\n        # pad on the left for xlnet\n        pad_token=tokenizer.pad_token_id,\n        pad_token_segment_id=tokenizer.pad_token_type_id,\n        pad_token_label_id=pad_token_label_id,\n    )\n\n    if args.local_rank == 0 and not evaluate:\n        torch.distributed.barrier()  # Make sure only the first process in distributed training process the dataset, and the others will use the cache\n\n    # Convert to Tensors and build dataset\n    all_input_ids = torch.tensor([f.input_ids for f in features], dtype=torch.long)\n    all_input_mask = torch.tensor([f.input_mask for f in features], dtype=torch.long)\n    all_segment_ids = torch.tensor([f.segment_ids for f in features], dtype=torch.long)\n    all_label_ids = torch.tensor([f.label_ids for f in features], dtype=torch.long)\n    all_label_ids_ctc = torch.tensor([f.label_ids_ctc for f in features], dtype=torch.long)\n    all_label_ids_seg = torch.tensor([f.label_ids_seg for f in features], dtype=torch.long)\n\n    dataset = TensorDataset(all_input_ids, all_input_mask, all_segment_ids, all_label_ids, all_label_ids_ctc, all_label_ids_seg)\n    return dataset\n\n\n\ndef parse_args():\n    parser = argparse.ArgumentParser()\n\n    # Required parameters\n    parser.add_argument(\n        \"--input_file_for_ner\",\n        default='./utils_fine_tune/dev.txt',\n        type=str,\n    )\n\n    parser.add_argument(\n        \"--output_file_for_ner\",\n        default='ner_preds.txt',\n        type=str,\n    )\n\n    parser.add_argument(\n        \"--data_dir\",\n        default='./utils_fine_tune/ip_ner/',\n        type=str,\n        help=\"The input data dir. Should contain the training files for the CoNLL-2003 NER task.\",\n    )\n    parser.add_argument(\n        \"--model_type\",\n        default='bert',\n        type=str,\n        help=\"Model type selected in the list: \" + \", \".join(MODEL_TYPES),\n    )\n    parser.add_argument(\n        \"--model_name_or_path\",\n        default='./utils_fine_tune/word_piece_ner/',\n        type=str,\n        help=\"Path to pre-trained model or shortcut name selected in the list: \" + \", \".join(ALL_MODELS),\n    )\n    parser.add_argument(\n        \"--output_dir\",\n        default='./utils_fine_tune/bert-word-piece-softner/',\n        type=str,\n        help=\"The output directory where the model predictions and checkpoints will be written.\",\n    )\n\n    # Other parameters\n    parser.add_argument(\n        \"--labels\",\n        default=\"./utils_fine_tune/labels_so.txt\",\n        type=str,\n        help=\"Path to a file containing all labels. If not specified, CoNLL-2003 labels are used.\",\n    )\n    parser.add_argument(\n        \"--config_name\", default=\"\", type=str, help=\"Pretrained config name or path if not the same as model_name\"\n    )\n    parser.add_argument(\n        \"--tokenizer_name\",\n        default=\"\",\n        type=str,\n        help=\"Pretrained tokenizer name or path if not the same as model_name\",\n    )\n    parser.add_argument(\n        \"--cache_dir\",\n        default=\"\",\n        type=str,\n        help=\"Where do you want to store the pre-trained models downloaded from s3\",\n    )\n    parser.add_argument(\n        \"--max_seq_length\",\n        default=128,\n        type=int,\n        help=\"The maximum total input sequence length after tokenization. Sequences longer \"\n        \"than this will be truncated, sequences shorter will be padded.\",\n    )\n    parser.add_argument(\"--do_train\", action=\"store_true\", help=\"Whether to run training.\")\n    parser.add_argument(\"--do_eval\", action=\"store_true\", help=\"Whether to run eval on the dev set.\")\n    parser.add_argument(\"--do_predict\", action=\"store_true\", help=\"Whether to run predictions on the test set.\")\n    parser.add_argument(\n        \"--evaluate_during_training\",\n        action=\"store_true\",\n        help=\"Whether to run evaluation during training at each logging step.\",\n    )\n    parser.add_argument(\n        \"--do_lower_case\", action=\"store_true\", help=\"Set this flag if you are using an uncased model.\"\n    )\n    parser.add_argument(\n        \"--keep_accents\", action=\"store_const\", const=True, help=\"Set this flag if model is trained with accents.\"\n    )\n    parser.add_argument(\n        \"--strip_accents\", action=\"store_const\", const=True, help=\"Set this flag if model is trained without accents.\"\n    )\n    parser.add_argument(\"--use_fast\", action=\"store_const\", const=True, help=\"Set this flag to use fast tokenization.\")\n    parser.add_argument(\"--per_gpu_train_batch_size\", default=4, type=int, help=\"Batch size per GPU/CPU for training.\")\n    parser.add_argument(\n        \"--per_gpu_eval_batch_size\", default=8, type=int, help=\"Batch size per GPU/CPU for evaluation.\"\n    )\n    parser.add_argument(\n        \"--gradient_accumulation_steps\",\n        type=int,\n        default=1,\n        help=\"Number of updates steps to accumulate before performing a backward/update pass.\",\n    )\n    parser.add_argument(\"--learning_rate\", default=5e-5, type=float, help=\"The initial learning rate for Adam.\")\n    parser.add_argument(\"--weight_decay\", default=0.0, type=float, help=\"Weight decay if we apply some.\")\n    parser.add_argument(\"--adam_epsilon\", default=1e-8, type=float, help=\"Epsilon for Adam optimizer.\")\n    parser.add_argument(\"--max_grad_norm\", default=1.0, type=float, help=\"Max gradient norm.\")\n    parser.add_argument(\n        \"--num_train_epochs\", default=5.0, type=float, help=\"Total number of training epochs to perform.\"\n    )\n    parser.add_argument(\n        \"--max_steps\",\n        default=-1,\n        type=int,\n        help=\"If > 0: set total number of training steps to perform. Override num_train_epochs.\",\n    )\n    parser.add_argument(\"--warmup_steps\", default=0, type=int, help=\"Linear warmup over warmup_steps.\")\n\n    parser.add_argument(\"--logging_steps\", type=int, default=500, help=\"Log every X updates steps.\")\n    parser.add_argument(\"--save_steps\", type=int, default=500, help=\"Save checkpoint every X updates steps.\")\n    parser.add_argument(\n        \"--eval_all_checkpoints\",\n        action=\"store_true\",\n        help=\"Evaluate all checkpoints starting with the same prefix as model_name ending and ending with step number\",\n    )\n    parser.add_argument(\"--no_cuda\", action=\"store_true\", help=\"Avoid using CUDA when available\")\n    parser.add_argument(\n        \"--overwrite_output_dir\", action=\"store_true\", help=\"Overwrite the content of the output directory\"\n    )\n    parser.add_argument(\n        \"--overwrite_cache\", action=\"store_true\", help=\"Overwrite the cached training and evaluation sets\"\n    )\n    parser.add_argument(\"--seed\", type=int, default=0, help=\"random seed for initialization\")\n\n    parser.add_argument(\n        \"--fp16\",\n        action=\"store_true\",\n        help=\"Whether to use 16-bit (mixed) precision (through NVIDIA apex) instead of 32-bit\",\n    )\n    parser.add_argument(\n        \"--fp16_opt_level\",\n        type=str,\n        default=\"O1\",\n        help=\"For fp16: Apex AMP optimization level selected in ['O0', 'O1', 'O2', and 'O3'].\"\n        \"See details at https://nvidia.github.io/apex/amp.html\",\n    )\n    parser.add_argument(\"--local_rank\", type=int, default=-1, help=\"For distributed training: local_rank\")\n    parser.add_argument(\"--server_ip\", type=str, default=\"\", help=\"For distant debugging.\")\n    parser.add_argument(\"--server_port\", type=str, default=\"\", help=\"For distant debugging.\")\n    args = parser.parse_args()\n\n    if (\n        os.path.exists(args.output_dir)\n        and os.listdir(args.output_dir)\n        and args.do_train\n        and not args.overwrite_output_dir\n    ):\n        raise ValueError(\n            \"Output directory ({}) already exists and is not empty. Use --overwrite_output_dir to overcome.\".format(\n                args.output_dir\n            )\n        )\n\n    # Setup distant debugging if needed\n    if args.server_ip and args.server_port:\n        # Distant debugging - see https://code.visualstudio.com/docs/python/debugging#_attach-to-a-local-script\n        import ptvsd\n\n        print(\"Waiting for debugger attach\")\n        ptvsd.enable_attach(address=(args.server_ip, args.server_port), redirect_output=True)\n        ptvsd.wait_for_attach()\n    \n\n\n    return args\n\n\n\n\ndef predict_entities(input_file,output_prediction_file):\n    args = parse_args()\n    \n    # Setup CUDA, GPU & distributed training\n    if args.local_rank == -1 or args.no_cuda:\n        device = torch.device(\"cuda\" if torch.cuda.is_available() and not args.no_cuda else \"cpu\")\n        args.n_gpu = 0 if args.no_cuda else torch.cuda.device_count()\n    else:  # Initializes the distributed backend which will take care of sychronizing nodes/GPUs\n        torch.cuda.set_device(args.local_rank)\n        device = torch.device(\"cuda\", args.local_rank)\n        torch.distributed.init_process_group(backend=\"nccl\")\n        args.n_gpu = 1\n    args.device = device\n\n    \n    args.do_eval = True\n    args.do_predict = True\n\n    # Setup logging\n    logging.basicConfig(\n        format=\"%(asctime)s - %(levelname)s - %(name)s -   %(message)s\",\n        datefmt=\"%m/%d/%Y %H:%M:%S\",\n        level=logging.INFO if args.local_rank in [-1, 0] else logging.WARN,\n    )\n    # logger.warning(\n    #     \"Process rank: %s, device: %s, n_gpu: %s, distributed training: %s, 16-bits training: %s\",\n    #     args.local_rank,\n    #     device,\n    #     args.n_gpu,\n    #     bool(args.local_rank != -1),\n    #     args.fp16,\n    # )\n\n    # Set seed\n    set_seed(args)\n\n    # Prepare CONLL-2003 task\n    labels = get_labels(args.labels)\n    num_labels = len(labels) - 4\n    # Use cross entropy ignore index as padding label id so that only real label ids contribute to the loss later\n    pad_token_label_id = CrossEntropyLoss().ignore_index\n\n    # Load pretrained model and tokenizer\n    if args.local_rank not in [-1, 0]:\n        torch.distributed.barrier()  # Make sure only the first process in distributed training will download model & vocab\n\n    args.model_type = args.model_type.lower()\n    config = AutoConfig.from_pretrained(\n        args.config_name if args.config_name else args.model_name_or_path,\n        num_labels=num_labels,\n        id2label={str(i): label for i, label in enumerate(labels)},\n        label2id={label: i for i, label in enumerate(labels)},\n        cache_dir=args.cache_dir if args.cache_dir else None,\n    )\n    tokenizer_args = {k: v for k, v in vars(args).items() if v is not None and k in TOKENIZER_ARGS}\n    # logger.info(\"Tokenizer arguments: %s\", tokenizer_args)\n    # tokenizer = AutoTokenizer.from_pretrained(\n    #     args.tokenizer_name if args.tokenizer_name else args.model_name_or_path,\n    #     cache_dir=args.cache_dir if args.cache_dir else None,\n    #     **tokenizer_args,\n    # )\n    tokenizer = AutoTokenizer.from_pretrained(args.model_name_or_path,cache_dir=args.cache_dir if args.cache_dir else None,**tokenizer_args)\n    model = AutoModelForTokenClassification_Soft_NER.from_pretrained(\n        args.model_name_or_path,\n        from_tf=bool(\".ckpt\" in args.model_name_or_path),\n        config=config,\n        cache_dir=args.cache_dir if args.cache_dir else None,\n    )\n\n    if args.local_rank == 0:\n        torch.distributed.barrier()  # Make sure only the first process in distributed training will download model & vocab\n\n    model.to(args.device)\n\n    logger.info(\"Parameters %s\", args)\n\n    \n\n    # Evaluation\n    # Save results on test\n\n    tokenizer = AutoTokenizer.from_pretrained(args.output_dir, **tokenizer_args)\n    model = AutoModelForTokenClassification_Soft_NER.from_pretrained(args.output_dir)\n    model.to(args.device)\n\n\n    result, predictions = evaluate(args, model, tokenizer, labels, pad_token_label_id, mode=\"\", path=input_file )\n    # print(len(predictions[0]))\n    # Save results on test\n    output_test_results_file = os.path.join(args.output_dir, \"test_results.txt\")\n    with open(output_test_results_file, \"w\") as writer:\n        for key in sorted(result.keys()):\n            writer.write(\"{} = {}\\n\".format(key, str(result[key])))\n    # Save predictions\n    output_test_predictions_file = output_prediction_file\n    with open(output_test_predictions_file, \"w\") as writer:\n        with open(input_file, \"r\") as f:\n            example_id = 0\n            for line in f:\n                if line.startswith(\"-DOCSTART-\") or line == \"\" or line == \"\\n\":\n                    writer.write(line)\n                    # print(example_id)\n                    if not predictions[example_id]:\n                        example_id += 1\n                elif predictions[example_id]:\n                    output_line = line.split()[0] + \" \" + predictions[example_id].pop(0) + \"\\n\"\n                    writer.write(output_line)\n                else:\n                    # logger.warning(\"Maximum sequence length exceeded: No prediction for '%s'.\", line.split()[0])\n                    continue\n\n    print(\"\\n\\n\")\n    print(\"-------------------------------------------------------------------------------------------------\")\n    print(\"***** Perdictions on sentences is stored at \", output_prediction_file,\"*****\" )\n    print(\"-------------------------------------------------------------------------------------------------\")\n    print(\"\\n\\n\")\n\n    \n\n    \n    \n    \n\n    \n\n\nif __name__ == \"__main__\":\n    args = parse_args()\n    input_file=args.input_file_for_ner\n    output_prediction_file=args.output_file_for_ner\n\n    predict_entities(input_file, output_prediction_file)\n"
  },
  {
    "path": "code/BERT_NER/softner_segmenter_preditct_from_file.py",
    "content": "# coding=utf-8\n# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.\n# Copyright (c) 2018, NVIDIA CORPORATION.  All rights reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\"\"\" Fine-tuning the library models for named entity recognition on CoNLL-2003 (Bert or Roberta). \"\"\"\n\n\nimport argparse\nimport glob\nimport logging\nimport os\nimport random\n\nimport numpy as np\nimport torch\n\n\nfrom seqeval.metrics import f1_score, precision_score, recall_score\nfrom torch.nn import CrossEntropyLoss\nfrom torch.utils.data import DataLoader, RandomSampler, SequentialSampler, TensorDataset\nfrom torch.utils.data.distributed import DistributedSampler\nfrom tqdm import tqdm, trange\n\nfrom transformers import (\n    MODEL_FOR_TOKEN_CLASSIFICATION_MAPPING,\n    MODEL_FOR_TOKEN_CLASSIFICATION_MAPPING_Seg,\n    WEIGHTS_NAME,\n    AdamW,\n    AutoConfig,\n    AutoModelForTokenClassification,\n    AutoModelForTokenClassification_Seg,\n    AutoTokenizer,\n    get_linear_schedule_with_warmup,\n)\nfrom utils_seg import convert_examples_to_features, get_labels, read_examples_from_file\n\n\ntry:\n    from torch.utils.tensorboard import SummaryWriter\nexcept ImportError:\n    from tensorboardX import SummaryWriter\n\n\nlogger = logging.getLogger(__name__)\n\nMODEL_CONFIG_CLASSES = list(MODEL_FOR_TOKEN_CLASSIFICATION_MAPPING.keys())\nMODEL_TYPES = tuple(conf.model_type for conf in MODEL_CONFIG_CLASSES)\n\nALL_MODELS = sum((tuple(conf.pretrained_config_archive_map.keys()) for conf in MODEL_CONFIG_CLASSES), ())\n\nTOKENIZER_ARGS = [\"do_lower_case\", \"strip_accents\", \"keep_accents\", \"use_fast\"]\n\n\ndef set_seed(args):\n    random.seed(args.seed)\n    np.random.seed(args.seed)\n    torch.manual_seed(args.seed)\n    if args.n_gpu > 0:\n        torch.cuda.manual_seed_all(args.seed)\n\n\ndef train(args, train_dataset, model, tokenizer, labels, pad_token_label_id):\n    \"\"\" Train the model \"\"\"\n    if args.local_rank in [-1, 0]:\n        tb_writer = SummaryWriter()\n\n    args.train_batch_size = args.per_gpu_train_batch_size * max(1, args.n_gpu)\n    train_sampler = RandomSampler(train_dataset) if args.local_rank == -1 else DistributedSampler(train_dataset)\n    train_dataloader = DataLoader(train_dataset, sampler=train_sampler, batch_size=args.train_batch_size)\n\n    if args.max_steps > 0:\n        t_total = args.max_steps\n        args.num_train_epochs = args.max_steps // (len(train_dataloader) // args.gradient_accumulation_steps) + 1\n    else:\n        t_total = len(train_dataloader) // args.gradient_accumulation_steps * args.num_train_epochs\n\n    # Prepare optimizer and schedule (linear warmup and decay)\n    no_decay = [\"bias\", \"LayerNorm.weight\"]\n    optimizer_grouped_parameters = [\n        {\n            \"params\": [p for n, p in model.named_parameters() if not any(nd in n for nd in no_decay)],\n            \"weight_decay\": args.weight_decay,\n        },\n        {\"params\": [p for n, p in model.named_parameters() if any(nd in n for nd in no_decay)], \"weight_decay\": 0.0},\n    ]\n    optimizer = AdamW(optimizer_grouped_parameters, lr=args.learning_rate, eps=args.adam_epsilon)\n    scheduler = get_linear_schedule_with_warmup(\n        optimizer, num_warmup_steps=args.warmup_steps, num_training_steps=t_total\n    )\n\n    # Check if saved optimizer or scheduler states exist\n    if os.path.isfile(os.path.join(args.model_name_or_path, \"optimizer.pt\")) and os.path.isfile(\n        os.path.join(args.model_name_or_path, \"scheduler.pt\")\n    ):\n        # Load in optimizer and scheduler states\n        optimizer.load_state_dict(torch.load(os.path.join(args.model_name_or_path, \"optimizer.pt\")))\n        scheduler.load_state_dict(torch.load(os.path.join(args.model_name_or_path, \"scheduler.pt\")))\n\n    if args.fp16:\n        try:\n            from apex import amp\n        except ImportError:\n            raise ImportError(\"Please install apex from https://www.github.com/nvidia/apex to use fp16 training.\")\n        model, optimizer = amp.initialize(model, optimizer, opt_level=args.fp16_opt_level)\n\n    # multi-gpu training (should be after apex fp16 initialization)\n    if args.n_gpu > 1:\n        model = torch.nn.DataParallel(model)\n\n    # Distributed training (should be after apex fp16 initialization)\n    if args.local_rank != -1:\n        model = torch.nn.parallel.DistributedDataParallel(\n            model, device_ids=[args.local_rank], output_device=args.local_rank, find_unused_parameters=True\n        )\n\n    # Train!\n    # logger.info(\"***** Running training *****\")\n    # logger.info(\"  Num Epochs = %d\", args.num_train_epochs)\n    # logger.info(\"  Instantaneous batch size per GPU = %d\", args.per_gpu_train_batch_size)\n    \n\n    global_step = 0\n    epochs_trained = 0\n    steps_trained_in_current_epoch = 0\n    # Check if continuing training from a checkpoint\n    if os.path.exists(args.model_name_or_path):\n        # set global_step to gobal_step of last saved checkpoint from model path\n        try:\n            global_step = int(args.model_name_or_path.split(\"-\")[-1].split(\"/\")[0])\n        except ValueError:\n            global_step = 0\n        epochs_trained = global_step // (len(train_dataloader) // args.gradient_accumulation_steps)\n        steps_trained_in_current_epoch = global_step % (len(train_dataloader) // args.gradient_accumulation_steps)\n\n        # logger.info(\"  Continuing training from checkpoint, will skip to saved global_step\")\n        # logger.info(\"  Continuing training from epoch %d\", epochs_trained)\n        # logger.info(\"  Continuing training from global step %d\", global_step)\n        # logger.info(\"  Will skip the first %d steps in the first epoch\", steps_trained_in_current_epoch)\n\n    tr_loss, logging_loss = 0.0, 0.0\n    model.zero_grad()\n    train_iterator = trange(\n        epochs_trained, int(args.num_train_epochs), desc=\"Epoch\", disable=args.local_rank not in [-1, 0]\n    )\n    set_seed(args)  # Added here for reproductibility\n    for _ in train_iterator:\n        epoch_iterator = tqdm(train_dataloader, desc=\"Iteration\", disable=args.local_rank not in [-1, 0])\n        for step, batch in enumerate(epoch_iterator):\n\n            # Skip past any already trained steps if resuming training\n            if steps_trained_in_current_epoch > 0:\n                steps_trained_in_current_epoch -= 1\n                continue\n\n            model.train()\n            batch = tuple(t.to(args.device) for t in batch)\n            inputs = {\"input_ids\": batch[0], \"attention_mask\": batch[1], \"labels\": batch[3], \"labels_ctc\": batch[4], \"labels_md\": batch[5], \"freq_ids\": batch[6]}\n            if args.model_type != \"distilbert\":\n                inputs[\"token_type_ids\"] = (\n                    batch[2] if args.model_type in [\"bert\", \"xlnet\"] else None\n                )  # XLM and RoBERTa don\"t use segment_ids\n\n            outputs = model(**inputs)\n            loss = outputs[0]  # model outputs are always tuple in pytorch-transformers (see doc)\n\n            if args.n_gpu > 1:\n                loss = loss.mean()  # mean() to average on multi-gpu parallel training\n            if args.gradient_accumulation_steps > 1:\n                loss = loss / args.gradient_accumulation_steps\n\n            if args.fp16:\n                with amp.scale_loss(loss, optimizer) as scaled_loss:\n                    scaled_loss.backward()\n            else:\n                loss.backward()\n\n            tr_loss += loss.item()\n            if (step + 1) % args.gradient_accumulation_steps == 0:\n                if args.fp16:\n                    torch.nn.utils.clip_grad_norm_(amp.master_params(optimizer), args.max_grad_norm)\n                else:\n                    torch.nn.utils.clip_grad_norm_(model.parameters(), args.max_grad_norm)\n\n                optimizer.step()\n                scheduler.step()  # Update learning rate schedule\n                model.zero_grad()\n                global_step += 1\n\n                if args.local_rank in [-1, 0] and args.logging_steps > 0 and global_step % args.logging_steps == 0:\n                    # Log metrics\n                    if (\n                        args.local_rank == -1 and args.evaluate_during_training\n                    ):  # Only evaluate when single GPU otherwise metrics may not average well\n                        results, _ = evaluate(args, model, tokenizer, labels, pad_token_label_id, mode=\"dev\")\n                        for key, value in results.items():\n                            tb_writer.add_scalar(\"eval_{}\".format(key), value, global_step)\n                    tb_writer.add_scalar(\"lr\", scheduler.get_lr()[0], global_step)\n                    tb_writer.add_scalar(\"loss\", (tr_loss - logging_loss) / args.logging_steps, global_step)\n                    logging_loss = tr_loss\n\n                if args.local_rank in [-1, 0] and args.save_steps > 0 and global_step % args.save_steps == 0:\n                    # Save model checkpoint\n                    output_dir = os.path.join(args.output_dir, \"checkpoint-{}\".format(global_step))\n                    if not os.path.exists(output_dir):\n                        os.makedirs(output_dir)\n                    model_to_save = (\n                        model.module if hasattr(model, \"module\") else model\n                    )  # Take care of distributed/parallel training\n                    model_to_save.save_pretrained(output_dir)\n                    tokenizer.save_pretrained(output_dir)\n\n                    torch.save(args, os.path.join(output_dir, \"training_args.bin\"))\n                    # logger.info(\"Saving model checkpoint to %s\", output_dir)\n\n                    torch.save(optimizer.state_dict(), os.path.join(output_dir, \"optimizer.pt\"))\n                    torch.save(scheduler.state_dict(), os.path.join(output_dir, \"scheduler.pt\"))\n                    # logger.info(\"Saving optimizer and scheduler states to %s\", output_dir)\n\n            if args.max_steps > 0 and global_step > args.max_steps:\n                epoch_iterator.close()\n                break\n        if args.max_steps > 0 and global_step > args.max_steps:\n            train_iterator.close()\n            break\n\n    if args.local_rank in [-1, 0]:\n        tb_writer.close()\n\n    return global_step, tr_loss / global_step\n\n\ndef evaluate(args, model, tokenizer, labels, pad_token_label_id, mode, prefix=\"\", path=None):\n    eval_dataset = load_and_cache_examples(args, tokenizer, labels, pad_token_label_id, mode=mode, path=path)\n\n    args.eval_batch_size = args.per_gpu_eval_batch_size * max(1, args.n_gpu)\n    # Note that DistributedSampler samples randomly\n    eval_sampler = SequentialSampler(eval_dataset) if args.local_rank == -1 else DistributedSampler(eval_dataset)\n    eval_dataloader = DataLoader(eval_dataset, sampler=eval_sampler, batch_size=args.eval_batch_size)\n\n    # multi-gpu evaluate\n    if args.n_gpu > 1:\n        model = torch.nn.DataParallel(model)\n\n    # Eval!\n    # logger.info(\"***** Running evaluation %s *****\", prefix)\n    eval_loss = 0.0\n    nb_eval_steps = 0\n    preds = None\n    out_label_ids = None\n    model.eval()\n    for batch in tqdm(eval_dataloader, desc=\"Evaluating\", disable=True):\n        batch = tuple(t.to(args.device) for t in batch)\n\n        with torch.no_grad():\n            inputs = {\"input_ids\": batch[0], \"attention_mask\": batch[1], \"labels\": batch[3], \"labels_ctc\": batch[4], \"labels_md\": batch[5], \"freq_ids\": batch[6]}\n            if args.model_type != \"distilbert\":\n                inputs[\"token_type_ids\"] = (\n                    batch[2] if args.model_type in [\"bert\", \"xlnet\"] else None\n                )  # XLM and RoBERTa don\"t use segment_ids\n            outputs = model(**inputs)\n            tmp_eval_loss, logits = outputs[:2]\n\n            if args.n_gpu > 1:\n                tmp_eval_loss = tmp_eval_loss.mean()  # mean() to average on multi-gpu parallel evaluating\n\n            eval_loss += tmp_eval_loss.item()\n        nb_eval_steps += 1\n        if preds is None:\n            preds = logits.detach().cpu().numpy()\n            out_label_ids = inputs[\"labels\"].detach().cpu().numpy()\n        else:\n            preds = np.append(preds, logits.detach().cpu().numpy(), axis=0)\n            out_label_ids = np.append(out_label_ids, inputs[\"labels\"].detach().cpu().numpy(), axis=0)\n\n    eval_loss = eval_loss / nb_eval_steps\n    preds = np.argmax(preds, axis=2)\n\n    label_map = {i: label for i, label in enumerate(labels)}\n\n    out_label_list = [[] for _ in range(out_label_ids.shape[0])]\n    preds_list = [[] for _ in range(out_label_ids.shape[0])]\n\n    for i in range(out_label_ids.shape[0]):\n        for j in range(out_label_ids.shape[1]):\n            if out_label_ids[i, j] != pad_token_label_id:\n                out_label_list[i].append(label_map[out_label_ids[i][j]])\n                preds_list[i].append(label_map[preds[i][j]])\n\n    results = {\n        \"precision\": precision_score(out_label_list, preds_list),\n        \"recall\": recall_score(out_label_list, preds_list),\n        \"f1\": f1_score(out_label_list, preds_list),\n    }\n\n    # fout_r = open(\"result.txt\",'w')\n    # opline = \"precision: \"+ str(results['precision'])+\"\\n\"\n    # opline += \"recall: \"+ str(results['recall'])+\"\\n\"\n    # opline += \"f1: \"+ str(results['f1'])+\"\\n\"\n    # fout_r.write(opline)\n    # fout_r.close()\n\n    # logger.info(\"***** Eval results %s *****\", prefix)\n    # logger.info(\"***** Input Files Path %s *****\", path)\n    # logger.info(\"***** Mode %s *****\", mode)\n    # for key in sorted(results.keys()):\n    #     logger.info(\"  %s = %s\", key, str(results[key]))\n\n    return results, preds_list\n\n\ndef load_and_cache_examples(args, tokenizer, labels, pad_token_label_id, mode, path=None):\n    if args.local_rank not in [-1, 0] and not evaluate:\n        torch.distributed.barrier()  # Make sure only the first process in distributed training process the dataset, and the others will use the cache\n\n    # Load data features from cache or dataset file\n    cached_features_file = os.path.join(\n        args.data_dir,\n        \"cached_{}_{}_{}\".format(\n            mode, list(filter(None, args.model_name_or_path.split(\"/\"))).pop(), str(args.max_seq_length)\n        ),\n    )\n    if os.path.exists(cached_features_file) and not args.overwrite_cache:\n        # logger.info(\"Loading features from cached file %s\", cached_features_file)\n\n        features = torch.load(cached_features_file)\n    else:\n        # logger.info(\"Creating features from dataset file at %s\", args.data_dir)\n        examples = read_examples_from_file(args.data_dir, mode, path)\n        \n        features = convert_examples_to_features(\n            examples,\n            labels,\n            args.max_seq_length,\n            tokenizer,\n            cls_token_at_end=bool(args.model_type in [\"xlnet\"]),\n            # xlnet has a cls token at the end\n            cls_token=tokenizer.cls_token,\n            cls_token_segment_id=2 if args.model_type in [\"xlnet\"] else 0,\n            sep_token=tokenizer.sep_token,\n            sep_token_extra=bool(args.model_type in [\"roberta\"]),\n            # roberta uses an extra separator b/w pairs of sentences, cf. github.com/pytorch/fairseq/commit/1684e166e3da03f5b600dbb7855cb98ddfcd0805\n            pad_on_left=bool(args.model_type in [\"xlnet\"]),\n            # pad on the left for xlnet\n            pad_token=tokenizer.pad_token_id,\n            pad_token_md_id=tokenizer.pad_token_type_id,\n            pad_token_label_id=pad_token_label_id,\n        )\n        # if args.local_rank in [-1, 0]:\n        #     logger.info(\"Saving features into cached file %s\", cached_features_file)\n        #     torch.save(features, cached_features_file)\n\n    if args.local_rank == 0 and not evaluate:\n        torch.distributed.barrier()  # Make sure only the first process in distributed training process the dataset, and the others will use the cache\n\n    # Convert to Tensors and build dataset\n    all_input_ids = torch.tensor([f.input_ids for f in features], dtype=torch.long)\n    all_input_freq_ids = torch.tensor([f.input_freq_ids for f in features], dtype=torch.long)\n    all_input_mask = torch.tensor([f.input_mask for f in features], dtype=torch.long)\n    all_md_ids = torch.tensor([f.md_ids for f in features], dtype=torch.long)\n    all_label_ids = torch.tensor([f.label_ids for f in features], dtype=torch.long)\n    all_label_ids_ctc = torch.tensor([f.label_ids_ctc for f in features], dtype=torch.long)\n    all_label_ids_md = torch.tensor([f.label_ids_md for f in features], dtype=torch.long)\n\n    dataset = TensorDataset(all_input_ids, all_input_mask, all_md_ids, all_label_ids, all_label_ids_ctc, all_label_ids_md, all_input_freq_ids)\n    return dataset\n\n\ndef parse_args():\n    parser = argparse.ArgumentParser()\n\n    parser.add_argument(\n        \"--input_file_for_segmenter\",\n        default='./utils_fine_tune/ip_seg/dev.txt',\n        type=str,\n    )\n\n    parser.add_argument(\n        \"--output_file_for_segmenter\",\n        default='segemeter_preds.txt',\n        type=str,\n    )\n\n\n    \n\n    parser.add_argument(\n        \"--data_dir\",\n        default='./utils_fine_tune/ip_seg/',\n        type=str,\n        help=\"The input data dir. Should contain the training files for the CoNLL-2003 NER task.\",\n    )\n    parser.add_argument(\n        \"--model_type\",\n        default='bert',\n        type=str,\n        help=\"Model type selected in the list: \" + \", \".join(MODEL_TYPES),\n    )\n    parser.add_argument(\n        \"--model_name_or_path\",\n        default='./utils_fine_tune/word_piece_seg/',\n        type=str,\n        help=\"Path to pre-trained model or shortcut name selected in the list: \" + \", \".join(ALL_MODELS),\n    )\n    parser.add_argument(\n        \"--output_dir\",\n        default='./utils_fine_tune/bert-word-piece-seg/',\n        type=str,\n        help=\"The output directory where the model predictions and checkpoints will be written.\",\n    )\n\n    # Other parameters\n    parser.add_argument(\n        \"--labels\",\n        default='./utils_fine_tune/labels_seg.txt',\n        type=str,\n        help=\"Path to a file containing all labels. If not specified, CoNLL-2003 labels are used.\",\n    )\n    parser.add_argument(\n        \"--config_name\", default=\"\", type=str, help=\"Pretrained config name or path if not the same as model_name\"\n    )\n    parser.add_argument(\n        \"--tokenizer_name\",\n        default=\"\",\n        type=str,\n        help=\"Pretrained tokenizer name or path if not the same as model_name\",\n    )\n    parser.add_argument(\n        \"--cache_dir\",\n        default=\"\",\n        type=str,\n        help=\"Where do you want to store the pre-trained models downloaded from s3\",\n    )\n    parser.add_argument(\n        \"--max_seq_length\",\n        default=128,\n        type=int,\n        help=\"The maximum total input sequence length after tokenization. Sequences longer \"\n        \"than this will be truncated, sequences shorter will be padded.\",\n    )\n    parser.add_argument(\"--do_train\", action=\"store_true\", help=\"Whether to run training.\")\n    parser.add_argument(\"--do_eval\", action=\"store_true\", help=\"Whether to run eval on the dev set.\")\n    parser.add_argument(\"--do_predict\", action=\"store_true\", help=\"Whether to run predictions on the test set.\")\n    parser.add_argument(\n        \"--evaluate_during_training\",\n        action=\"store_true\",\n        help=\"Whether to run evaluation during training at each logging step.\",\n    )\n    parser.add_argument(\n        \"--do_lower_case\", action=\"store_true\", help=\"Set this flag if you are using an uncased model.\"\n    )\n    parser.add_argument(\n        \"--keep_accents\", action=\"store_const\", const=True, help=\"Set this flag if model is trained with accents.\"\n    )\n    parser.add_argument(\n        \"--strip_accents\", action=\"store_const\", const=True, help=\"Set this flag if model is trained without accents.\"\n    )\n    parser.add_argument(\"--use_fast\", action=\"store_const\", const=True, help=\"Set this flag to use fast tokenization.\")\n    parser.add_argument(\"--per_gpu_train_batch_size\", default=4, type=int, help=\"Batch size per GPU/CPU for training.\")\n    parser.add_argument(\n        \"--per_gpu_eval_batch_size\", default=8, type=int, help=\"Batch size per GPU/CPU for evaluation.\"\n    )\n    parser.add_argument(\n        \"--gradient_accumulation_steps\",\n        type=int,\n        default=1,\n        help=\"Number of updates steps to accumulate before performing a backward/update pass.\",\n    )\n    parser.add_argument(\"--learning_rate\", default=5e-5, type=float, help=\"The initial learning rate for Adam.\")\n    parser.add_argument(\"--weight_decay\", default=0.0, type=float, help=\"Weight decay if we apply some.\")\n    parser.add_argument(\"--adam_epsilon\", default=1e-8, type=float, help=\"Epsilon for Adam optimizer.\")\n    parser.add_argument(\"--max_grad_norm\", default=1.0, type=float, help=\"Max gradient norm.\")\n    parser.add_argument(\n        \"--num_train_epochs\", default=5, type=float, help=\"Total number of training epochs to perform.\"\n    )\n    parser.add_argument(\n        \"--max_steps\",\n        default=-1,\n        type=int,\n        help=\"If > 0: set total number of training steps to perform. Override num_train_epochs.\",\n    )\n    parser.add_argument(\"--warmup_steps\", default=0, type=int, help=\"Linear warmup over warmup_steps.\")\n\n    parser.add_argument(\"--logging_steps\", type=int, default=500, help=\"Log every X updates steps.\")\n    parser.add_argument(\"--save_steps\", type=int, default=500, help=\"Save checkpoint every X updates steps.\")\n    parser.add_argument(\n        \"--eval_all_checkpoints\",\n        action=\"store_true\",\n        help=\"Evaluate all checkpoints starting with the same prefix as model_name ending and ending with step number\",\n    )\n    parser.add_argument(\"--no_cuda\", action=\"store_true\", help=\"Avoid using CUDA when available\")\n    parser.add_argument(\n        \"--overwrite_output_dir\", action=\"store_true\", help=\"Overwrite the content of the output directory\"\n    )\n    parser.add_argument(\n        \"--overwrite_cache\", action=\"store_true\", help=\"Overwrite the cached training and evaluation sets\"\n    )\n    parser.add_argument(\"--seed\", type=int, default=1, help=\"random seed for initialization\")\n\n    parser.add_argument(\n        \"--fp16\",\n        action=\"store_true\",\n        help=\"Whether to use 16-bit (mixed) precision (through NVIDIA apex) instead of 32-bit\",\n    )\n    parser.add_argument(\n        \"--fp16_opt_level\",\n        type=str,\n        default=\"O1\",\n        help=\"For fp16: Apex AMP optimization level selected in ['O0', 'O1', 'O2', and 'O3'].\"\n        \"See details at https://nvidia.github.io/apex/amp.html\",\n    )\n    parser.add_argument(\"--local_rank\", type=int, default=-1, help=\"For distributed training: local_rank\")\n    parser.add_argument(\"--server_ip\", type=str, default=\"\", help=\"For distant debugging.\")\n    parser.add_argument(\"--server_port\", type=str, default=\"\", help=\"For distant debugging.\")\n    args = parser.parse_args()\n\n    # if (\n    #     os.path.exists(args.output_dir)\n    #     and os.listdir(args.output_dir)\n    #     and args.do_train\n    #     and not args.overwrite_output_dir\n    # ):\n    #     raise ValueError(\n    #         \"Output directory ({}) already exists and is not empty. Use --overwrite_output_dir to overcome.\".format(\n    #             args.output_dir\n    #         )\n    #     )\n\n    # Setup distant debugging if needed\n    if args.server_ip and args.server_port:\n        # Distant debugging - see https://code.visualstudio.com/docs/python/debugging#_attach-to-a-local-script\n        import ptvsd\n\n        print(\"Waiting for debugger attach\")\n        ptvsd.enable_attach(address=(args.server_ip, args.server_port), redirect_output=True)\n        ptvsd.wait_for_attach()\n    \n\n\n    return args\n\n\n\n\ndef predict_segments(input_file,output_prediction_file):\n    \n    args = parse_args()\n    # Setup CUDA, GPU & distributed training\n    if args.local_rank == -1 or args.no_cuda:\n        device = torch.device(\"cuda\" if torch.cuda.is_available() and not args.no_cuda else \"cpu\")\n        args.n_gpu = 0 if args.no_cuda else torch.cuda.device_count()\n    else:  # Initializes the distributed backend which will take care of sychronizing nodes/GPUs\n        torch.cuda.set_device(args.local_rank)\n        device = torch.device(\"cuda\", args.local_rank)\n        torch.distributed.init_process_group(backend=\"nccl\")\n        args.n_gpu = 1\n    args.device = device\n\n    # input_file=args.input_file_for_segmenter\n    # output_prediction_file=args.output_file_for_segmenter\n\n    # Setup logging\n    logging.basicConfig(\n        format=\"%(asctime)s - %(levelname)s - %(name)s -   %(message)s\",\n        datefmt=\"%m/%d/%Y %H:%M:%S\",\n        level=logging.INFO if args.local_rank in [-1, 0] else logging.WARN,\n    )\n    # logger.warning(\n    #     \"Process rank: %s, device: %s, n_gpu: %s, distributed training: %s, 16-bits training: %s\",\n    #     args.local_rank,\n    #     device,\n    #     args.n_gpu,\n    #     bool(args.local_rank != -1),\n    #     args.fp16,\n    # )\n\n    # Set seed\n    set_seed(args)\n\n    # Prepare CONLL-2003 task\n    labels = get_labels(args.labels)\n    num_labels = len(labels) - 4\n    # Use cross entropy ignore index as padding label id so that only real label ids contribute to the loss later\n    pad_token_label_id = CrossEntropyLoss().ignore_index\n\n    # Load pretrained model and tokenizer\n    if args.local_rank not in [-1, 0]:\n        torch.distributed.barrier()  # Make sure only the first process in distributed training will download model & vocab\n\n    args.model_type = args.model_type.lower()\n    config = AutoConfig.from_pretrained(\n        args.config_name if args.config_name else args.model_name_or_path,\n        num_labels=num_labels,\n        id2label={str(i): label for i, label in enumerate(labels)},\n        label2id={label: i for i, label in enumerate(labels)},\n        cache_dir=args.cache_dir if args.cache_dir else None,\n    )\n    tokenizer_args = {k: v for k, v in vars(args).items() if v is not None and k in TOKENIZER_ARGS}\n    # logger.info(\"Tokenizer arguments: %s\", tokenizer_args)\n    # tokenizer = AutoTokenizer.from_pretrained(\n    #     args.tokenizer_name if args.tokenizer_name else args.model_name_or_path,\n    #     cache_dir=args.cache_dir if args.cache_dir else None,\n    #     **tokenizer_args,\n    # )\n    tokenizer = AutoTokenizer.from_pretrained(args.model_name_or_path,cache_dir=args.cache_dir if args.cache_dir else None,**tokenizer_args)\n    model = AutoModelForTokenClassification_Seg.from_pretrained(\n        args.model_name_or_path,\n        from_tf=bool(\".ckpt\" in args.model_name_or_path),\n        config=config,\n        cache_dir=args.cache_dir if args.cache_dir else None,\n    )\n\n    if args.local_rank == 0:\n        torch.distributed.barrier()  # Make sure only the first process in distributed training will download model & vocab\n\n    model.to(args.device)\n\n    logger.info(\"Parameters %s\", args)\n\n    \n\n    \n    tokenizer = AutoTokenizer.from_pretrained(args.output_dir, **tokenizer_args)\n    model = AutoModelForTokenClassification_Seg.from_pretrained(args.output_dir)\n    model.to(args.device)\n\n    \n    result, predictions = evaluate(args, model, tokenizer, labels, pad_token_label_id, mode=\"\", path=input_file)\n    output_test_results_file =  \"temp_results.txt\"\n    with open(output_test_results_file, \"w\") as writer:\n        for key in sorted(result.keys()):\n            writer.write(\"{} = {}\\n\".format(key, str(result[key])))\n    # Save predictions\n    output_test_predictions_file = output_prediction_file\n    with open(output_test_predictions_file, \"w\") as writer:\n        with open(input_file, \"r\") as f:\n            example_id = 0\n            for line in f:\n                if line.startswith(\"-DOCSTART-\") or line == \"\" or line == \"\\n\":\n                    writer.write(line)\n                    if not predictions[example_id]:\n                        example_id += 1\n                elif predictions[example_id]:\n                    output_line = line.split()[0] + \" \" + predictions[example_id].pop(0) + \"\\n\"\n                    writer.write(output_line)\n                else:\n                    # logger.warning(\"Maximum sequence length exceeded: No prediction for '%s'.\", line.split()[0])\n                    continue\n\n\n    # print(\"\\n\\n\")\n    # print(\"-------------------------------------------------------------------------------------------------\")\n    # print(\"***** Perdictions on sentences in \", input_file, \" is stored at \", output_prediction_file,\"*****\" )\n    # print(\"-------------------------------------------------------------------------------------------------\")\n    # print(\"\\n\\n\")\n\n    \n\n\n\n       \n\n\nif __name__ == \"__main__\":\n    args = parse_args()\n    input_file=args.input_file_for_segmenter\n    output_prediction_file=args.output_file_for_segmenter\n\n    predict_segments(input_file, output_prediction_file)\n"
  },
  {
    "path": "code/BERT_NER/utils_ctc/binning.py",
    "content": "# -*- coding: utf-8 -*-\n\nimport numpy as np\n\n\ndef gaussian(diff, sig):\n    return np.exp(-np.power(diff, 2.) / (2 * sig * sig))\n\n\nclass GaussianBinner:\n\n    def __init__(self, bins=10, w=0.2):\n        self.bin_values, self.sigmas = [], []\n        self.bins = bins\n        self.width = w\n        self.eps = 0.000001\n\n    def fit(self, x, features_to_be_binned):\n        for index in range(0, features_to_be_binned):\n\n            dimension = x[:, index]\n            bin_divisions = np.histogram(dimension, bins=self.bins)[1]\n\n            bin_means = [(bin_divisions[i] + bin_divisions[i+1]) / 2.0\n                         for i in range(0, len(bin_divisions) - 1)]\n\n            half_width = abs(bin_divisions[1] - bin_divisions[0]) / 2.0\n            bin_means[0:0] = [bin_divisions[0] - half_width]\n            bin_means.append(bin_divisions[len(bin_divisions) - 1] + half_width)\n            self.bin_values.append(bin_means)\n\n            self.sigmas.append(abs(bin_divisions[1] - bin_divisions[0]) * self.width)\n        print(self.sigmas)\n\n    def transform(self, x, features_to_be_binned):\n        expanded_features = [x[:, features_to_be_binned:]]\n        for index in range(0, features_to_be_binned):\n\n            bin_means = np.array(self.bin_values[index])\n\n            projected_features = gaussian(np.tile(x[:, index], (self.bins + 2, 1)).T - bin_means,\n                                              self.sigmas[index])\n\n            sum_f = np.sum(projected_features, axis=1)\n            sum_f[sum_f == 0] = self.eps\n            projected_features = (projected_features.T / sum_f).T\n            expanded_features.append(projected_features)\n\n        return np.concatenate(expanded_features, axis=1)\n"
  },
  {
    "path": "code/BERT_NER/utils_ctc/config_ctc.py",
    "content": "parameters_ctc = {}\n\n\n\n\nparameters_ctc['train_file']=\"/data/jeniya/STACKOVERFLOW_DATA/CTC/data/train_updated.tsv\"\nparameters_ctc['test_file']=\"/data/jeniya/STACKOVERFLOW_DATA/CTC/data/test_updated.tsv\"\n\n\nparameters_ctc['LR']=0.0015\nparameters_ctc['epochs']=70\nparameters_ctc['word_dim']=300\nparameters_ctc['hidden_layer_1_dim']=300\n\n"
  },
  {
    "path": "code/BERT_NER/utils_ctc/features.py",
    "content": "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# assume script in brat tools/ directory, extend path to find sentencesplit.py\nsys_path.append(path_join(dirname(__file__), '.'))\n\nsys.path.append('.')\n\n\n\nimport re\nimport math\nimport kenlm\n# import enchant\nimport numpy as np\nfrom binning import GaussianBinner\n\n\nclass Features:\n    def __init__(self, resources, n=5):\n\n        self.gigaword_char = kenlm.Model(resources[\"gigaword_char\"])\n        self.gigaword_word = kenlm.Model(resources[\"gigaword_word\"])\n        self.stackoverflow_char = kenlm.Model(resources[\"stackoverflow_char\"])\n        self.stackoverflow_word = kenlm.Model(resources[\"stackoverflow_word\"])\n\n        self.N = n\n        self.binner = GaussianBinner(100)\n        # self.en = enchant.Dict(\"en_US\")\n        # print(\"Done loading resources\")\n\n    def get_feature_vector(self, word):\n\n        fv = list()\n\n        fv.append(self.gigaword_char.score(\" \".join(word.lower())))\n        fv.append(self.gigaword_word.score(word.lower(), eos=False, bos=False))\n\n        fv.append(self.stackoverflow_char.score(\" \".join(word)))\n        score = self.stackoverflow_word.score(word)\n        fv.append(score)\n\n        fv.append(word.startswith(\"http\") * 1.0)\n        # fv.append((\"/\" in word and all([self.en.check(t) for t in word.split(\"/\") if len(t) > 0])) * 1.0)\n        return fv\n\n    def get_features_from_token(self, token, train):\n        # print(\"Start feature extraction\")\n        words = []\n        labels = []\n        features = []\n       \n        label = int(0) \n\n        \n        # label = 0 if label == 2 else 1\n\n        words.append(token)\n        labels.append(label)\n        features.append(self.get_feature_vector(token))\n\n        # print(\"Done feature extraction\", set(labels))\n        features = self.transform_features(features, train)\n        return words, features, labels\n\n\n    def get_features(self, file_name, train):\n        # print(\"Start feature extraction\")\n\n        words = []\n        labels = []\n        features = []\n        for line in open(file_name):\n            tokens = line.strip().split(\"\\t\")\n            if (len(tokens))!=2: continue\n            label_val = int(tokens[1]) \n\n            if label_val==3 or label_val==2:\n                label=0\n            else:\n                label=1\n            # label = 0 if label == 2 else 1\n\n            words.append(tokens[0])\n            labels.append(label)\n            features.append(self.get_feature_vector(tokens[0]))\n\n\n            \n        # print(\"Done feature extraction\", set(labels))\n        features = self.transform_features(features, train)\n        return words, features, labels\n\n    def transform_features(self, features, train_flag):\n        features = np.array(features)\n        if train_flag:\n            self.binner.fit(features, self.N)\n        return self.binner.transform(features, self.N)\n"
  },
  {
    "path": "code/BERT_NER/utils_ctc/model.py",
    "content": "import torch\nimport argparse\nimport numpy as np\nfrom features import Features\nfrom sklearn.metrics import *\nfrom torch.autograd import Variable\nimport rules\nfrom config_ctc import parameters_ctc\n\n\ndevice = torch.device('cuda' if torch.cuda.is_available() else 'cpu')\nif device=='cuda':\n    torch.set_default_tensor_type('torch.cuda.FloatTensor')\n\nclass NeuralClassifier(torch.nn.Module):\n    def __init__(self, input_feat_dim, target_label_dim, vocab_size, pre_word_embeds=None):\n        super(NeuralClassifier, self).__init__()\n\n        \n        hidden_layer_node = parameters_ctc['hidden_layer_1_dim']\n        self.Linear_Layer_1=torch.nn.Linear(input_feat_dim, hidden_layer_node)\n        \n        self.Tanh_Layer=torch.nn.Tanh()\n        \n\n        self.Word_Embeds = torch.nn.Embedding(vocab_size, parameters_ctc['word_dim'])\n        if pre_word_embeds.any():\n            self.Word_Embeds.weight = torch.nn.Parameter(torch.FloatTensor(pre_word_embeds))\n\n        self.Linear_Layer_2=torch.nn.Linear(hidden_layer_node, target_label_dim)\n        self.Linear_Layer_2=torch.nn.Linear(hidden_layer_node, hidden_layer_node)\n\n        self.Linear_Layer_3=torch.nn.Linear(hidden_layer_node+parameters_ctc['word_dim'], target_label_dim)\n\n        \n\n        self.Softmax_Layer=torch.nn.Softmax(dim=1)\n\n\n        self.loss_fn = torch.nn.CrossEntropyLoss()\n\n\n    def forward(self, features, word_ids):\n        scores = self.get_scores(features, word_ids)\n        # print(device)\n\n        if torch.cuda.is_available():\n            # print(\"---------------------\")\n            scores_ = scores.cpu().data.numpy()\n        else:\n            scores_ = scores.data.numpy()\n        predictions = [np.argmax(sc) for sc in scores_]\n\n        \n        return scores, predictions\n\n    \n    def get_scores(self, features, word_ids):\n        features_x = Variable(torch.FloatTensor(features).to(device))\n        word_ids=word_ids.to(device)\n\n        liner1_op = self.Linear_Layer_1(features_x)\n        tanh_op = self.Tanh_Layer(liner1_op)\n\n        # liner2_op = self.Linear_Layer_2(tanh_op)\n        # tanh_op = self.Tanh_Layer(liner2_op)\n\n\n\n        word_embeds=self.Word_Embeds(word_ids)\n\n        # print(type(tanh_op))\n        # print(tanh_op.size())\n        # print(type(word_embeds))\n        # print(word_embeds.size())\n\n\n\n        features_embed_cat = torch.cat((word_embeds,tanh_op ),dim=1)\n\n        liner3_op=self.Linear_Layer_3(features_embed_cat)\n\n        # print(features_embed_cat.size())\n\n        \n        scores = self.Softmax_Layer(liner3_op)\n\n        return scores\n\n    def CrossEntropy(self, features, word_ids, gold_labels):\n        # features_x = Variable(torch.FloatTensor(features))\n        scores= self.get_scores(features, word_ids)\n        loss = self.loss_fn(scores, gold_labels)\n\n        return loss\n\n\n    def predict(self, features, word_ids):\n        scores= self.get_scores(features, word_ids).data.numpy()\n        predictions = [np.argmax(sc) for sc in scores]\n\n        return predictions\n\n\n\n"
  },
  {
    "path": "code/BERT_NER/utils_ctc/prediction_ctc.py",
    "content": "\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# assume script in brat tools/ directory, extend path to find sentencesplit.py\nsys_path.append(path_join(dirname(__file__), '.'))\n\nsys.path.append('.')\n\nimport torch\nimport argparse\nimport numpy as np\nfrom features import Features\nfrom sklearn.metrics import *\nfrom torch.autograd import Variable\nimport rules\n\nimport fasttext\n\nfrom model import NeuralClassifier\nfrom config_ctc import parameters_ctc\nfrom collections import Counter\nfrom torch.optim import lr_scheduler\n\n\nfasttext_model = fasttext.load_model('/data/jeniya/STACKOVERFLOW_DATA/POST_PROCESSED/fasttext_model/fasttext.bin')\ndevice = torch.device('cuda' if torch.cuda.is_available() else 'cpu')\n\nif device=='cuda':\n    torch.set_default_tensor_type('torch.cuda.FloatTensor')\n\nRESOURCES = {\n    \"train\": \"/data/jeniya/STACKOVERFLOW_DATA/CTC/data/train_freq.txt\",\n    \"gigaword_word\": \"/data/jeniya/STACKOVERFLOW_DATA/CTC/data/gigaword_gt_2.bin\",\n    \"gigaword_char\": \"/data/jeniya/STACKOVERFLOW_DATA/CTC/data/gigaword_char_unique.bin\",\n    \"stackoverflow_char\": \"/data/jeniya/STACKOVERFLOW_DATA/CTC/data/no_eng_char_uniq.bin\",\n    \"stackoverflow_word\": \"/data/jeniya/STACKOVERFLOW_DATA/CTC/data/words.bin\",\n    \"cs\": \"/data/jeniya/STACKOVERFLOW_DATA/CTC/data/sorted_semantic_scholar_words.txt\"\n}\n\ndef eval(predictions, gold_labels, phase):\n    # print(predictions)\n    print(\"--------------------\",phase,\"--------------------\")\n    precision = round(precision_score(gold_labels, predictions) * 100.0, 4)\n    recall = round(recall_score(gold_labels, predictions) * 100.0, 4)\n    f1 = round(f1_score(gold_labels, predictions) * 100.0, 4)\n\n    print(\"P: \", precision, \" R:\", recall, \" F: \", f1)\n\n    print(classification_report(gold_labels, predictions))\n\n    print(\"-------------------------------------------------\")\n\ndef get_word_dict_pre_embeds(train_file, test_file):\n    word_id=0\n    id_to_word={}\n    word_to_id={}\n    word_to_vec={}\n\n    for line in open(train_file):\n        word=line.split()[0]\n        if word not in word_to_id:\n            word=word.strip()\n            \n            word_to_id[word]=word_id\n            id_to_word[word_id]=word\n            word_to_vec[word]=fasttext_model[word]\n            word_id+=1\n\n\n\n\n    for line in open(test_file):\n        word=line.split()[0]\n        if word not in word_to_id:\n            word=word.strip()\n            \n            word_to_id[word]=word_id\n            id_to_word[word_id]=word\n            word_to_vec[word]=fasttext_model[word]\n\n            word_id+=1\n\n\n\n    \n\n   \n\n    vocab_size = len(word_to_id)\n\n    return vocab_size, word_to_id, id_to_word, word_to_vec\n\ndef popluate_word_id_from_file(file_name, word_to_id):\n    list_of_ids=[]\n    for line in open(file_name):\n        word=line.split()[0].strip()\n        word_one_hot_vec= np.zeros(len(word_to_id))\n        word_id=word_to_id[word]\n        word_one_hot_vec[word_id]=1.0\n\n        # list_of_ids.append(word_one_hot_vec)\n        list_of_ids.append(word_id)\n\n    arr2d = np.array(list_of_ids)\n    # print(arr2d.shape)\n    return arr2d\n\ndef popluate_word_id_from_token(token, word_to_id):\n    list_of_ids=[]\n    \n    word=token.split()[0].strip()\n    if word not in word_to_id:\n        word= \"**UNK**\"\n        \n    word_one_hot_vec= np.zeros(len(word_to_id))\n    word_id=word_to_id[word]\n    word_one_hot_vec[word_id]=1.0\n\n    # list_of_ids.append(word_one_hot_vec)\n    list_of_ids.append(word_id)\n\n    arr2d = np.array(list_of_ids)\n    # print(arr2d.shape)\n    return arr2d\n\n\ndef get_train_test_word_id(train_file, test_file, word_to_id):\n    train_ids=popluate_word_id_from_file(train_file, word_to_id)\n    test_ids=popluate_word_id_from_file(test_file, word_to_id)\n    \n\n    return train_ids, test_ids\n\ndef prediction_on_token_input(ctc_ip_token, ctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features):\n    \n\n    \n    ctc_tokens, ctc_features, ctc_labels = features.get_features_from_token(ctc_ip_token, False)\n    \n    ctc_ids=popluate_word_id_from_token(ctc_ip_token, word_to_id)\n\n\n    \n    ctc_x = Variable(torch.FloatTensor(ctc_features))\n    ctc_x_words = Variable(torch.LongTensor(ctc_ids))\n    ctc_y = Variable(torch.LongTensor(ctc_labels))\n\n    \n    ctc_scores, ctc_preds = ctc_classifier(ctc_features, ctc_x_words)\n    preds=[]\n    # fp = open(\"ctc_ops.tsv\", \"w\")\n    # fp.write(\"token\"+\"\\t\"+\"true_label\"+\"\\t\"+\"pred_label\"+\"\\t\"+\"scores\"+\"\\n\")\n    for tok, gold, pred, sc in zip(ctc_tokens, ctc_labels, ctc_preds, ctc_scores):\n        if rules.IS_NUMBER(tok):\n            pred=1\n        if rules.IS_URL(tok):\n            pred=0\n        if pred==1:\n            # print(tok, pred)\n            pred=1\n        preds.append(pred)\n\n    # for tok, gold, pred, sc in zip(ctc_tokens, ctc_labels, ctc_preds, ctc_scores):\n\n    #     fp.write(tok + \"\\t\"  + str(pred) + \"\\n\")\n\n    # fp.close()\n    # print(preds[0])\n    return preds[0]\n\n\ndef prediction_on_file_input(ctc_input_file, ctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features):\n    \n\n    \n    ctc_tokens, ctc_features, ctc_labels = features.get_features(ctc_input_file, False)\n    \n    ctc_ids=popluate_word_id_from_file(ctc_input_file, word_to_id)\n\n\n    \n    ctc_x = Variable(torch.FloatTensor(ctc_features))\n    ctc_x_words = Variable(torch.LongTensor(ctc_ids))\n    ctc_y = Variable(torch.LongTensor(ctc_labels))\n\n    \n    ctc_scores, ctc_preds = ctc_classifier(ctc_features, ctc_x_words)\n    preds=[]\n    fp = open(\"ctc_ops.tsv\", \"w\")\n    # fp.write(\"token\"+\"\\t\"+\"true_label\"+\"\\t\"+\"pred_label\"+\"\\t\"+\"scores\"+\"\\n\")\n    for tok, gold, pred, sc in zip(ctc_tokens, ctc_labels, ctc_preds, ctc_scores):\n        if rules.IS_NUMBER(tok):\n            pred=1\n        if rules.IS_URL(tok):\n            pred=0\n        if pred==1:\n            # print(tok, pred)\n            pred=1\n        preds.append(pred)\n\n    for tok, gold, pred, sc in zip(ctc_tokens, ctc_labels, ctc_preds, ctc_scores):\n\n        fp.write(tok + \"\\t\"  + str(pred) + \"\\n\")\n\n    fp.close()\n\n\n\n\n\n\ndef train_ctc_model(train_file, test_file):\n\n    train_file=parameters_ctc['train_file']\n    test_file=parameters_ctc['test_file']\n\n\n    features = Features(RESOURCES)\n\n    train_tokens, train_features, train_labels = features.get_features(train_file, True)\n    test_tokens, test_features, test_labels = features.get_features(test_file, False)\n    \n\n    vocab_size, word_to_id, id_to_word, word_to_vec = get_word_dict_pre_embeds(train_file, test_file)\n    train_ids, test_ids = get_train_test_word_id(train_file, test_file,  word_to_id)\n\n\n    \n    \n\n    word_embeds = np.random.uniform(-np.sqrt(0.06), np.sqrt(0.06), (vocab_size, parameters_ctc['word_dim']))\n\n    for word in word_to_vec:\n        word_embeds[word_to_id[word]]=word_to_vec[word]\n\n    \n\n\n    ctc_classifier = NeuralClassifier(len(train_features[0]), max(train_labels) + 1, vocab_size, word_embeds)\n    ctc_classifier.to(device)\n    \n\n\n    optimizer = torch.optim.Adam(ctc_classifier.parameters(), lr=parameters_ctc[\"LR\"])\n    step_lr_scheduler = lr_scheduler.StepLR(optimizer, step_size=5, gamma=0.8)\n\n    \n    train_x = Variable(torch.FloatTensor(train_features).to(device))\n    train_x_words = Variable(torch.LongTensor(train_ids).to(device))\n    train_y = Variable(torch.LongTensor(train_labels).to(device))\n\n\n    test_x = Variable(torch.FloatTensor(test_features).to(device))\n    test_x_words = Variable(torch.LongTensor(test_ids).to(device))\n    test_y = Variable(torch.LongTensor(test_labels).to(device))\n\n    \n\n    for epoch in range(parameters_ctc['epochs']):\n        loss = ctc_classifier.CrossEntropy(train_features, train_x_words, train_y)\n        optimizer.zero_grad()\n        loss.backward()\n        optimizer.step()\n\n        train_scores,  train_preds = ctc_classifier(train_features, train_x_words)\n        \n\n        test_scores, test_preds = ctc_classifier(test_features, test_x_words)\n        # eval(test_preds, test_labels, \"test\")\n\n    return ctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features\n\n    \n\n    \n\n\n    \n\n    \n\n\n\n\n\n\n\n\nif __name__ == '__main__':\n\n    train_file=parameters_ctc['train_file']\n    test_file=parameters_ctc['test_file']\n\n    ctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features= train_model(train_file, test_file)\n    \n    ip_token = \"app\"\n    op_ctc = prediction_on_token_input(ip_token, ctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features)\n    print(op_ctc)\n\n    \n    ip_token = \"commit-2\"\n    op_ctc =prediction_on_token_input(ip_token, ctc_classifier, vocab_size, word_to_id, id_to_word, word_to_vec, features)\n    print(op_ctc)\n\n\n\n\n"
  },
  {
    "path": "code/BERT_NER/utils_ctc/rules.py",
    "content": "import re\n\n# items=\"a|b => regex_or(items) ==> (?:a|b)\ndef regex_or(*items):\n    return '(?:' + '|'.join(items) + ')'\nBound = r\"(?:\\W|^|$)\"\n\npunctChars = r\"['\\\"“”‘’.?!…,:;]\"\n# punctSeq   = punctChars+\"+\"  #'anthem'. => ' anthem '.\npunctSeq = r\"['\\\"“”‘’]+|[.?!,…]+|[:;]+\"  # 'anthem'. => ' anthem ' .\nentity = r\"&(?:amp|lt|gt|quot);\"  # html tag entities &quot; => \"\n\n\nurlStart1 = r\"(?:https?://|\\bwww\\.)\"\ncommonTLDs = r\"(?:com|org|edu|gov|net|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|pro|tel|travel|xxx|aspx)\"\nccTLDs = r\"(?:ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|\" + \\\n         r\"bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|\" + \\\n         r\"er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|\" + \\\n         r\"hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|\" + \\\n         r\"lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|\" + \\\n         r\"nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|\" + \\\n         r\"sl|sm|sn|so|sr|ss|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|\" + \\\n         r\"va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw)\"  # TODO: remove obscure country domains?\nurlStart2 = r\"\\b(?:[A-Za-z\\d-])+(?:\\.[A-Za-z0-9]+){0,3}\\.\" + regex_or(commonTLDs,\n                                                                      ccTLDs) + r\"(?:\\.\" + ccTLDs + r\")?(?=\\W|$)\"\nurlBody = r\"(?:[^\\.\\s<>][^\\s<>]*?)?\"\nurlExtraCrapBeforeEnd = regex_or(punctChars, entity) + \"+?\"\nurlEnd = r\"(?:\\.\\.+|[<>]|\\s|$)\"\nurl = regex_or(urlStart1, urlStart2) + urlBody + \"(?=(?:\" + urlExtraCrapBeforeEnd + \")?\" + urlEnd + \")\"\nurl_rule=re.compile(url)\n\n\n# JT: 2018-08\n# '.html.erb' => '. html . erb' :: WRONG\n# '.html.erb' => '.html.erb' :: WRONG\nFile_Ext = r\"[.]?[\\w.\\-]*\\.[\\w]+(?=\" + Bound + \")\"\n\n# JT: 2018-08\nPath = r'(?:/?[\\w\\-.]+\\/+)+'\n# Path=r'(?:/?[\\w\\-.]+\\/+[\\w\\-.]*)+'\n\n# JT: 2018-08\n# '/templates/your_template/.php.ini' => '/templates/your_template/ . php . ini' :: WRONG\n# '/templates/your_template/.php.ini' => '/templates/your_template/.php.ini' :: RIGHT\nFile_Path_W_File_Name = Path + \"(?:\" + File_Ext + \")*\"\nfile_rule = re.compile(File_Path_W_File_Name)\n\ndef IS_URL(token):\n\tlist_test=url_rule.findall(token)\n\tif len(list_test)>0:\n\t\treturn True\n\treturn False\n\n\ndef IS_NUMBER(token):\n\ttoken_updated=token.replace(\".\",\"\").replace(\"-\",\"\").replace(\"+\",\"\")\n\tif token_updated.isdigit():\n\t\treturn True\n\treturn False\n\n\ndef IS_FILE_NAME(token):\n\tlist_test=file_rule.findall(token)\n\tif len(list_test)>0:\n\t\treturn True\n\treturn False\n\nif __name__ == '__main__':\n\t\n\tstr_test= \"-12.4a\"\n\t\n\t# print(IF_URL(str_test))\n\tprint(IS_NUMBER(str_test))\n"
  },
  {
    "path": "code/BERT_NER/utils_ner.py",
    "content": "# coding=utf-8\n# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.\n# Copyright (c) 2018, NVIDIA CORPORATION.  All rights reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\"\"\" Named entity recognition fine-tuning: utilities to work with CoNLL-2003 task. \"\"\"\n\n\nimport logging\nimport os\nimport json\n\nlogger = logging.getLogger(__name__)\n\n\nclass InputExample(object):\n    \"\"\"A single training/test example for token classification.\"\"\"\n\n    def __init__(self, guid, words, labels):\n        \"\"\"Constructs a InputExample.\n\n        Args:\n            guid: Unique id for the example.\n            words: list. The words of the sequence.\n            labels: (Optional) list. The labels for each word of the sequence. This should be\n            specified for train and dev examples, but not for test examples.\n        \"\"\"\n        self.guid = guid\n        self.words = words\n        self.labels = labels\n\n\nclass InputFeatures(object):\n    \"\"\"A single set of features of data.\"\"\"\n\n    def __init__(self, input_ids, input_mask, freq_ids, segment_ids, label_ids, label_ids_ctc, label_ids_seg):\n        self.input_ids = input_ids\n        self.input_freq_ids = freq_ids\n        self.input_mask = input_mask\n        self.segment_ids = segment_ids\n        self.label_ids = label_ids\n        self.label_ids_ctc = label_ids_ctc\n        self.label_ids_seg = label_ids_seg\n\n\ndef read_examples_from_file(data_dir, mode, path):\n    if path!=None:\n        file_path=path\n    else:\n        file_path = os.path.join(data_dir, \"{}.txt\".format(mode))\n    guid_index = 1\n    examples = []\n\n    with open(file_path, encoding=\"utf-8\") as f:\n        words = []\n        labels = []\n        for line in f:\n            if line.startswith(\"-DOCSTART-\") or line == \"\" or line == \"\\n\":\n                if words:\n                    examples.append(InputExample(guid=\"{}-{}\".format(mode, guid_index), words=words, labels=labels))\n                    guid_index += 1\n                    words = []\n                    labels = []\n            else:\n                splits = line.strip().split(\"\\t\")\n                words.append(splits[0])\n                if len(splits) > 1:\n                    labels.append(splits[1:])\n                else:\n                    # Examples could have no label for mode = \"test\"\n                    labels.append(\"O\")\n        if words:\n            examples.append(InputExample(guid=\"{}-{}\".format(mode, guid_index), words=words, labels=labels))\n    return examples\n\n\ndef convert_examples_to_features(\n    examples,\n    label_list,\n    max_seq_length,\n    tokenizer,\n    cls_token_at_end=False,\n    cls_token=\"[CLS]\",\n    cls_token_segment_id=1,\n    sep_token=\"[SEP]\",\n    sep_token_extra=False,\n    pad_on_left=False,\n    pad_token=0,\n    pad_token_segment_id=0,\n    pad_token_label_id=-100,\n    sequence_a_segment_id=0,\n    mask_padding_with_zero=True,\n):\n    \"\"\" Loads a data file into a list of `InputBatch`s\n        `cls_token_at_end` define the location of the CLS token:\n            - False (Default, BERT/XLM pattern): [CLS] + A + [SEP] + B + [SEP]\n            - True (XLNet/GPT pattern): A + [SEP] + B + [SEP] + [CLS]\n        `cls_token_segment_id` define the segment id associated to the CLS token (0 for BERT, 2 for XLNet)\n    \"\"\"\n\n    label_map = {label: i for i, label in enumerate(label_list)}\n    word_to_id = json.load(open(\"word_to_id.json\",\"r\"))\n    word_id_pad = word_to_id[\"***PADDING***\"]\n\n    # print(\"*********************************\")\n    # print(label_map)\n    # print(\"*********************************\")\n\n    features = []\n    for (ex_index, example) in enumerate(examples):\n        # if ex_index % 10000 == 0:\n        #     logger.info(\"Writing example %d of %d\", ex_index, len(examples))\n\n        tokens = []\n        label_ids = []\n        label_ids_ctc = []\n        label_ids_seg = []\n        word_freq_ids = []\n        for word, label in zip(example.words, example.labels):\n            # print(\"*********************************\")\n            # print(word)\n            # print(label)\n            # print(\"*********************************\")\n            word_tokens = tokenizer.tokenize(word)\n\n            if word not in word_to_id:\n                word_id=word_to_id[\"UNK\"]\n            else:\n                word_id = word_to_id[word]\n\n            # bert-base-multilingual-cased sometimes output \"nothing ([]) when calling tokenize with just a space.\n            if len(word_tokens) > 0:\n                tokens.extend(word_tokens)\n                # Use the real label id for the first token of the word, and padding ids for the remaining tokens\n                label_ids.extend([label_map[label[0]]] + [pad_token_label_id] * (len(word_tokens) - 1))\n                label_ids_ctc.extend([label_map[label[1]]] + [pad_token_label_id] * (len(word_tokens) - 1))\n                label_ids_seg.extend([label_map[label[2]]] + [pad_token_label_id] * (len(word_tokens) - 1))\n                word_freq_ids.append(word_id)\n\n            \n\n        # Account for [CLS] and [SEP] with \"- 2\" and with \"- 3\" for RoBERTa.\n        special_tokens_count = tokenizer.num_special_tokens_to_add() #num_added_tokens()\n        if len(tokens) > max_seq_length - special_tokens_count:\n            tokens = tokens[: (max_seq_length - special_tokens_count)]\n            label_ids = label_ids[: (max_seq_length - special_tokens_count)]\n            label_ids_ctc = label_ids_ctc[: (max_seq_length - special_tokens_count)]\n            label_ids_seg = label_ids_seg[: (max_seq_length - special_tokens_count)]\n            word_freq_ids = word_freq_ids[: (max_seq_length - special_tokens_count)]\n\n        # The convention in BERT is:\n        # (a) For sequence pairs:\n        #  tokens:   [CLS] is this jack ##son ##ville ? [SEP] no it is not . [SEP]\n        #  type_ids:   0   0  0    0    0     0       0   0   1  1  1  1   1   1\n        # (b) For single sequences:\n        #  tokens:   [CLS] the dog is hairy . [SEP]\n        #  type_ids:   0   0   0   0  0     0   0\n        #\n        # Where \"type_ids\" are used to indicate whether this is the first\n        # sequence or the second sequence. The embedding vectors for `type=0` and\n        # `type=1` were learned during pre-training and are added to the wordpiece\n        # embedding vector (and position vector). This is not *strictly* necessary\n        # since the [SEP] token unambiguously separates the sequences, but it makes\n        # it easier for the model to learn the concept of sequences.\n        #\n        # For classification tasks, the first vector (corresponding to [CLS]) is\n        # used as as the \"sentence vector\". Note that this only makes sense because\n        # the entire model is fine-tuned.\n        tokens += [sep_token]\n        word_freq_ids+=[word_id_pad]\n        label_ids += [pad_token_label_id]\n        label_ids_ctc += [pad_token_label_id]\n        label_ids_seg += [pad_token_label_id]\n        if sep_token_extra:\n            # roberta uses an extra separator b/w pairs of sentences\n            tokens += [sep_token]\n            word_freq_ids+=[word_id_pad]\n            label_ids += [pad_token_label_id]\n            label_ids_ctc += [pad_token_label_id]\n            label_ids_seg += [pad_token_label_id]\n        segment_ids = [sequence_a_segment_id] * len(tokens)\n\n        if cls_token_at_end:\n            tokens += [cls_token]\n            word_freq_ids+=[word_id_pad]\n            label_ids += [pad_token_label_id]\n            label_ids_ctc += [pad_token_label_id]\n            label_ids_seg += [pad_token_label_id]\n            segment_ids += [cls_token_segment_id]\n        else:\n            tokens = [cls_token] + tokens\n            word_freq_ids = [word_id_pad] + word_freq_ids \n            label_ids = [pad_token_label_id] + label_ids\n            label_ids_ctc = [pad_token_label_id] + label_ids_ctc\n            label_ids_seg = [pad_token_label_id] + label_ids_seg\n            segment_ids = [cls_token_segment_id] + segment_ids\n\n        input_ids = tokenizer.convert_tokens_to_ids(tokens)\n\n        # The mask has 1 for real tokens and 0 for padding tokens. Only real\n        # tokens are attended to.\n        input_mask = [1 if mask_padding_with_zero else 0] * len(input_ids)\n\n        # Zero-pad up to the sequence length.\n        padding_length = max_seq_length - len(input_ids)\n\n        if pad_on_left:\n            input_ids = ([pad_token] * padding_length) + input_ids\n            input_mask = ([0 if mask_padding_with_zero else 1] * padding_length) + input_mask\n            word_freq_ids = ([word_id_pad]* padding_length) + word_freq_ids \n            segment_ids = ([pad_token_segment_id] * padding_length) + segment_ids\n            label_ids = ([pad_token_label_id] * padding_length) + label_ids\n            label_ids_ctc = ([pad_token_label_id] * padding_length) + label_ids_ctc\n            label_ids_seg = ([pad_token_label_id] * padding_length) + label_ids_seg\n        else:\n            input_ids += [pad_token] * padding_length\n            input_mask += [0 if mask_padding_with_zero else 1] * padding_length\n            word_freq_ids += [word_id_pad]* padding_length\n            segment_ids += [pad_token_segment_id] * padding_length\n            label_ids += [pad_token_label_id] * padding_length\n            label_ids_ctc += [pad_token_label_id] * padding_length\n            label_ids_seg += [pad_token_label_id] * padding_length\n\n\n        \n        while len(word_freq_ids)!=max_seq_length:\n            word_freq_ids.append(word_id_pad)\n\n        # print(len(word_freq_ids), len(input_ids))\n\n\n        assert len(input_ids) == max_seq_length\n        assert len(input_mask) == max_seq_length\n        assert len(word_freq_ids) == max_seq_length\n        assert len(segment_ids) == max_seq_length\n        assert len(label_ids) == max_seq_length\n        assert len(label_ids_ctc) == max_seq_length\n        assert len(label_ids_seg) == max_seq_length\n\n        # if ex_index < 5:\n        #     logger.info(\"*** Example ***\")\n        #     logger.info(\"guid: %s\", example.guid)\n        #     logger.info(\"tokens: %s\", \" \".join([str(x) for x in tokens]))\n        #     logger.info(\"input_ids: %s\", \" \".join([str(x) for x in input_ids]))\n        #     logger.info(\"input_mask: %s\", \" \".join([str(x) for x in input_mask]))\n        #     logger.info(\"segment_ids: %s\", \" \".join([str(x) for x in segment_ids]))\n        #     logger.info(\"label_ids: %s\", \" \".join([str(x) for x in label_ids]))\n        #     logger.info(\"label_ids_ctc: %s\", \" \".join([str(x) for x in label_ids_ctc]))\n        #     logger.info(\"label_ids_seg: %s\", \" \".join([str(x) for x in label_ids_seg]))\n\n        features.append(\n            InputFeatures(input_ids=input_ids, input_mask=input_mask, freq_ids=word_freq_ids, segment_ids=segment_ids, label_ids=label_ids, label_ids_ctc=label_ids_ctc, label_ids_seg=label_ids_seg)\n        )\n    return features\n\n\ndef get_labels(path):\n    if path:\n        with open(path, \"r\") as f:\n            labels = f.read().splitlines()\n        if \"O\" not in labels:\n            labels = [\"O\"] + labels\n        labels.append(\"CTC_PRED:0\")\n        labels.append(\"CTC_PRED:1\")\n        labels.append(\"pred_seg_label:O\")\n        labels.append(\"pred_seg_label:Name\")\n        return labels\n    else:\n        return [\"O\", \"B-MISC\", \"I-MISC\", \"B-PER\", \"I-PER\", \"B-ORG\", \"I-ORG\", \"B-LOC\", \"I-LOC\"]\n"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/__init__.py",
    "content": ""
  },
  {
    "path": "code/BERT_NER/utils_preprocess/anntoconll.py",
    "content": "#!/usr/bin/env python\n\n# Convert text and standoff annotations into CoNLL format.\n\nfrom __future__ import print_function\n\nimport os\nfrom glob import glob\nimport re\nimport sys\nfrom collections import namedtuple\nfrom io import StringIO\nfrom os import path\n\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# assume script in brat tools/ directory, extend path to find sentencesplit.py\nsys_path.append(path_join(dirname(__file__), '.'))\n\nsys.path.append('.')\n\n\nfrom sentencesplit import sentencebreaks_to_newlines\n\n\noptions = None\n\nEMPTY_LINE_RE = re.compile(r'^\\s*$')\nCONLL_LINE_RE = re.compile(r'^\\S+\\t\\d+\\t\\d+.')\n\n \nimport stokenizer #JT: Dec 6\n\nimport ftfy #JT: Feb 20\n\n\nfrom map_text_to_char import map_text_to_char  #JT: Dec 6\n\n\ndef argparser():\n    import argparse\n\n    ap = argparse.ArgumentParser(description='Convert text and standoff ' +\n                                 'annotations into CoNLL format.')\n    ap.add_argument('-a', '--annsuffix', default=\".ann\",\n                    help='Standoff annotation file suffix (default \"ann\")')\n    ap.add_argument('-c', '--singleclass', default=None,\n                    help='Use given single class for annotations')\n    ap.add_argument('-n', '--nosplit', default=True, action='store_true',\n                    help='No sentence splitting')\n    ap.add_argument('-o', '--outsuffix', default=\"conll\",\n                    help='Suffix to add to output files (default \"conll\")')\n    ap.add_argument('-v', '--verbose', default=False, action='store_true',\n                    help='Verbose output')\n    # ap.add_argument('text', metavar='TEXT', nargs='+',\n    #                 help='Text files (\"-\" for STDIN)')\n    return ap\n\n\ndef read_sentence(f):\n    \"\"\"Return lines for one sentence from the CoNLL-formatted file.\n\n    Sentences are delimited by empty lines.\n    \"\"\"\n\n    lines = []\n    for l in f:\n        lines.append(l)\n        if EMPTY_LINE_RE.match(l):\n            break\n        if not CONLL_LINE_RE.search(l):\n            raise FormatError(\n                'Line not in CoNLL format: \"%s\"' %\n                l.rstrip('\\n'))\n    return lines\n\n\n\ndef strip_labels(lines):\n    \"\"\"Given CoNLL-format lines, strip the label (first TAB-separated field)\n    from each non-empty line.\n\n    Return list of labels and list of lines without labels. Returned\n    list of labels contains None for each empty line in the input.\n    \"\"\"\n\n    labels, stripped = [], []\n\n    labels = []\n    for l in lines:\n        if EMPTY_LINE_RE.match(l):\n            labels.append(None)\n            stripped.append(l)\n        else:\n            fields = l.split('\\t')\n            labels.append(fields[0])\n            stripped.append('\\t'.join(fields[1:]))\n\n    return labels, stripped\n\n\n\ndef attach_labels(labels, lines):\n    \"\"\"Given a list of labels and CoNLL-format lines, affix TAB-separated label\n    to each non-empty line.\n\n    Returns list of lines with attached labels.\n    \"\"\"\n\n    assert len(labels) == len(\n        lines), \"Number of labels (%d) does not match number of lines (%d)\" % (len(labels), len(lines))\n\n    attached = []\n    for label, line in zip(labels, lines):\n        empty = EMPTY_LINE_RE.match(line)\n        assert (label is None and empty) or (label is not None and not empty)\n\n        if empty:\n            attached.append(line)\n        else:\n            attached.append('%s\\t%s' % (label, line))\n\n    return attached\n\n\n\ndef text_to_conll(f):\n    \"\"\"Convert plain text into CoNLL format.\"\"\"\n    global options\n\n    if options.nosplit:\n        sentences = f.readlines()\n    else:\n        sentences = []\n        for l in f:\n            l = sentencebreaks_to_newlines(l)\n            sentences.extend([s for s in NEWLINE_TERM_REGEX.split(l) if s])\n\n    lines = []\n\n    offset = 0\n    # print(sentences)\n    #JT: Feb 19: added it for resolving char encoding issues\n    fixed_sentences = []\n    for s in sentences:\n        # print(s)\n        # fixed_s = ftfy.fix_text(s)\n        # # print(fixed_s)\n        # fixed_sentences.append(fixed_s)\n        fixed_sentences.append(s)\n\n    # for s in sentences:\n    for s in fixed_sentences:\n        nonspace_token_seen = False\n        # print(s)\n        \n        \n        \n        try:\n            tokens = stokenizer.tokenize(s)\n        except stokenizer.TimedOutExc as e:\n            try:\n                print(\"***********using ark tokenizer\")\n                tokens = ark_twokenize.tokenizeRawTweetText(s)\n            except Exception as e:\n                    print(e)\n        # print(\"tokens: \", tokens)\n        token_w_pos = map_text_to_char(s, tokens, offset)\n        # print(\"token_w_pos: \",token_w_pos)\n\n        for(t, pos) in token_w_pos:\n            if not t.isspace():\n                lines.append(['O', pos, pos + len(t), t])\n        \n        lines.append([])\n\n        offset+=len(s)\n\n\n        # tokens = [t for t in TOKENIZATION_REGEX.split(s) if t] # JT : Dec 6\n        # for t in tokens:\n        #     if not t.isspace():\n        #         lines.append(['O', offset, offset + len(t), t])\n        #         nonspace_token_seen = True\n        #     offset += len(t)\n\n        # # sentences delimited by empty lines\n        # if nonspace_token_seen:\n        #     lines.append([])\n\n    # add labels (other than 'O') from standoff annotation if specified\n    if options.annsuffix:\n        lines = relabel(lines, get_annotations(f.name), f)\n\n    # lines = [[l[0], str(l[1]), str(l[2]), l[3]] if l else l for l in lines] #JT: Dec 6\n    lines = [[l[3],l[0]] if l else l for l in lines] #JT: Dec 6\n    return StringIO('\\n'.join(('\\t'.join(l) for l in lines)))\n\n\ndef relabel(lines, annotations, file_name):\n    # print(\"lines: \",lines)\n    # print(\"annotations\", annotations)\n    global options\n\n    # TODO: this could be done more neatly/efficiently\n    offset_label = {}\n\n    for tb in annotations:\n        for i in range(tb.start, tb.end):\n            if i in offset_label:\n                print(\"Warning: overlapping annotations in \", file=sys.stderr)\n            offset_label[i] = tb\n\n    prev_label = None\n    for i, l in enumerate(lines):\n        if not l:\n            prev_label = None\n            continue\n        tag, start, end, token = l\n\n        # TODO: warn for multiple, detailed info for non-initial\n        label = None\n        for o in range(start, end):\n            if o in offset_label:\n                if o != start:\n                    print('Warning: annotation-token boundary mismatch: \"%s\" --- \"%s\"' % (\n                        token, offset_label[o].text), file=sys.stderr)\n                label = offset_label[o].type\n                break\n\n        if label is not None:\n            if label == prev_label:\n                tag = 'I-' + label\n            else:\n                tag = 'B-' + label\n        prev_label = label\n\n        lines[i] = [tag, start, end, token]\n\n    # optional single-classing\n    if options.singleclass:\n        for l in lines:\n            if l and l[0] != 'O':\n                l[0] = l[0][:2] + options.singleclass\n\n    return lines\n\n\n\n\ndef process_files(files, output_directory, phase_name=\"\"):\n    global options\n    # print(\"phase_name: \",phase_name)\n\n    nersuite_proc = []\n\n    \n    for fn in sorted(files):\n        # print(\"now_processing: \",fn)\n        with open(fn, 'rU') as f:\n            try:\n                lines = text_to_conll(f)\n            except:\n                continue\n\n            # TODO: better error handling\n            if lines is None:\n                print(\"Line is None\")\n                continue\n            file_name=fn.split(\"/\")[-1][0:-4]\n            ofn = output_directory+file_name+\"_\" +options.outsuffix.replace(\".\",\"\")+\"_\"+phase_name.replace(\"/\",\"\")+\".txt\"\n            with open(ofn, 'wt') as of:\n                of.write(''.join(lines))\n\n         \nTEXTBOUND_LINE_RE = re.compile(r'^T\\d+\\t')\n\nTextbound = namedtuple('Textbound', 'start end type text')\n\n\ndef parse_textbounds(f):\n    \"\"\"Parse textbound annotations in input, returning a list of Textbound.\"\"\"\n\n    textbounds = []\n\n    for l in f:\n        l = l.rstrip('\\n')\n\n        if not TEXTBOUND_LINE_RE.search(l):\n            continue\n\n        id_, type_offsets, text = l.split('\\t')\n        type_, start, end = type_offsets.split()\n        start, end = int(start), int(end)\n\n        textbounds.append(Textbound(start, end, type_, text))\n\n    return textbounds\n\n\ndef eliminate_overlaps(textbounds):\n    eliminate = {}\n\n    # TODO: avoid O(n^2) overlap check\n    for t1 in textbounds:\n        for t2 in textbounds:\n            if t1 is t2:\n                continue\n            if t2.start >= t1.end or t2.end <= t1.start:\n                continue\n            # eliminate shorter\n            if t1.end - t1.start > t2.end - t2.start:\n                print(\"Eliminate %s due to overlap with %s\" % (\n                    t2, t1), file=sys.stderr)\n                eliminate[t2] = True\n            else:\n                print(\"Eliminate %s due to overlap with %s\" % (\n                    t1, t2), file=sys.stderr)\n                eliminate[t1] = True\n\n    return [t for t in textbounds if t not in eliminate]\n\n\ndef get_annotations(fn):\n    global options\n\n    annfn = path.splitext(fn)[0] + options.annsuffix\n\n    with open(annfn, 'rU') as f:\n        textbounds = parse_textbounds(f)\n\n    textbounds = eliminate_overlaps(textbounds)\n\n    return textbounds\n\n\ndef Read_Main_Input_Folder(input_folder):\n    start_dir = input_folder\n    \n    pattern   = \"*.txt\"\n    file_location_list=[]\n    for dir,_,_ in os.walk(start_dir):\n        file_location_list.extend(glob(os.path.join(dir,pattern))) \n    \n    return file_location_list\n\n\n\ndef process_folder(source_folder, output_dir_ann, min_folder_number = 1, max_folder_number=10 ):\n    # for i in range(min_folder_number,max_folder_number+1):\n        # for j in range(1,6):\n            # phase_name=\"phase_\"+str(i).zfill(2) + \"_\"+str(j).zfill(2)+\"/\"\n    input_folder=source_folder\n    print(input_folder)\n    list_of_files=Read_Main_Input_Folder(input_folder)\n    process_files(list_of_files, output_dir_ann)\n\n\ndef convert_standoff_to_conll(source_directory_ann, output_directory_conll):\n    global options\n    \n\n    \n    argv = sys.argv\n\n    \n    options = argparser().parse_args(argv[1:])\n\n\n    # print(options)\n    # sorce_folder = \"checked_annotation/\"\n    # phase_name=\"phase_02_05/\"\n    # input_folder=sorce_folder+phase_name\n    # list_of_files=Read_Main_Input_Folder(input_folder)\n    # output_dir_ann = \"Conlll_Output_ANN/\"\n    # process_files(list_of_files, output_dir_ann, phase_name)\n\n    \n\n    \n    process_folder(source_directory_ann, output_directory_conll)\n    \n\n    \n\n\n    # sorce_folder = \"raw_data/\"\n    # output_dir_raw = \"Conlll_Output_RAW/\"\n\n\n    # sorce_folder = \"raw_data/\"\n    # phase_name=\"phase_02_05/\"\n    # input_folder=sorce_folder+phase_name\n    # list_of_files=Read_Main_Input_Folder(input_folder)\n    # output_dir_ann = \"Conlll_Output_RAW/\"\n    # process_files(list_of_files, output_dir_ann, phase_name)\n\n\n\n\n\n\n\n\nif __name__ == '__main__':\n    source_directory_ann = \"../temp_files/standoff_files/\"\n    output_directory_conll = \"../temp_files/conll_files/\"\n    convert_standoff_to_conll(source_directory_ann, output_directory_conll)\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/fix_char_encoding.py",
    "content": "import ftfy\nimport stokenizer\nimport ark_twokenize\n\nclass Fix_Char_Code:\n\t\"\"\"docstring for Fix_Char_Code\"\"\"\n\tdef __init__(self):\n\t\tpass\n\n\tdef Get_List_of_Labels(self, tokenized_word_list_len, main_label):\n\t\tif main_label==\"O\":\n\t\t\tnew_label=\"O\"\n\t\telif main_label[0]==\"B\":\n\t\t\tnew_label=main_label.replace(\"B-\",\"I-\")\n\t\telse:\n\t\t\tnew_label= main_label\n\n\t\tnew_label_list=[main_label]\n\t\tfor i in range(tokenized_word_list_len-1):\n\t\t\tnew_label_list.append(new_label)\n\t\t# print(tokenized_word_list_len, main_label, new_label_list)\n\t\treturn new_label_list\n\n\tdef Fix_Word_Label(self, word, gold_label, raw_label):\n\t\tif \"&zwnj\" in word or \"&nbsp\" in word or \"&amp\" in word:\n\t\t\treturn ([word], [gold_label], [raw_label], False)\n\n\t\tfixed_word = ftfy.fix_text(word)\n\t\t#the following line is found from error analysis over the fixed encoding by finding  && in the text file\n\n\t\tfixed_word=fixed_word.replace(\"´\",\"'\").replace(\"ÂŁ\",\"£\").replace('Ăż','ÿ').replace('Âż','¿').replace('ÂŹ','¬').replace('รก','á').replace(\"â\",\"†\").replace(\"`ĚN\",\"`̀N\")\n\t\tmodified=True\n\t\tif fixed_word==word:\n\t\t\tmodified = False\n\t\t\treturn ([fixed_word], [gold_label], [raw_label], modified)\n\t\ttry:\n\t\t\tfixed_word_tokenized= stokenizer.tokenize(fixed_word)\n\n\t\texcept stokenizer.TimedOutExc as e:\n\t\t\ttry:\n\t\t\t\tfixed_word_tokenized= ark_twokenize.tokenizeRawTweetText(fixed_word)\n\t\t\texcept Exception as e:\n\t\t\t\tprint(e)\n\t\tif len(fixed_word_tokenized)==2 and fixed_word_tokenized[0]==\"'\":\n\t\t\treturn ([fixed_word], [gold_label], [raw_label],modified)\n\t\t\n\t\t# print(word, fixed_word, fixed_word_tokenized)\n\t\tnew_gold_label_list = self.Get_List_of_Labels(len(fixed_word_tokenized), gold_label)\n\t\tnew_raw_label_list = self.Get_List_of_Labels(len(fixed_word_tokenized), raw_label)\n\t\treturn (fixed_word_tokenized, new_gold_label_list, new_raw_label_list,modified)\n\n\tdef Read_File(self, ip_file):\n\t\toutput_file_name = ip_file[:-4]+\"_char_embed_resolved.txt\"\n\t\tfout= open(output_file_name,'w')\n\n\t\t\n\t\t\n\n\t\tfor line in open(ip_file):\n\t\t\tif line.strip()==\"\":\n\t\t\t\tfout.write(line)\n\t\t\t\tcontinue\n\n\t\t\tline_values=line.strip().split()\n\t\t\tgold_word=line_values[0]\n\t\t\tgold_label=line_values[1]\n\t\t\traw_word=line_values[2]\n\t\t\traw_label=line_values[3]\n\t\t\t(new_tokenized_word_list, new_gold_label_list, new_raw_label_list, if_modified) = self.Fix_Word_Label(gold_word, gold_label, raw_label)\n\t\t\tif if_modified:\n\t\t\t\tprint(line.strip())\n\t\t\t\tprint(new_tokenized_word_list)\n\t\t\t\tprint(\"----\")\n\t\t\t# print(new_tokenized_word_list, new_gold_label_list, new_raw_label_list)\n\t\t\tfor word_iter in range(len(new_tokenized_word_list)):\n\t\t\t\tword = new_tokenized_word_list[word_iter]\n\t\t\t\tif word.strip()==\"\":\n\t\t\t\t\tcontinue\n\n\t\t\t\tgold_label = new_gold_label_list[word_iter]\n\n\t\t\t\tif word == \"'s\":\n\t\t\t\t\tgold_label=\"O\"\n\n\t\t\t\traw_label = new_raw_label_list[word_iter]\n\t\t\t\top_line = word+\"\\t\"+gold_label+\"\\t\"+word+\"\\t\"+raw_label+\"\\n\"\n\t\t\t\t# print(op_line)\n\t\t\t\tfout.write(op_line)\n\n\t\t\t\n\t\t\n\t\t\n\n\n\t\t\nif __name__ == '__main__':\n\tfcc = Fix_Char_Code()\n\n\tip_file_name = \"test_gold_raw_merged_04_05.txt\"\n\tfcc.Read_File(ip_file_name)\n\n\tip_file_name = \"train_gold_raw_merged_04_05.txt\"\n\tfcc.Read_File(ip_file_name)\n\n\n\tip_file_name = \"dev_gold_raw_merged_04_05.txt\"\n\tfcc.Read_File(ip_file_name)\n\n\n\n"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/format_markdown.py",
    "content": "import sys\nimport codecs\nimport os\n\n\n#from lxml import etree\n#import lxml.etree.ElementTree as ET\nimport nltk\nimport os\nfrom xmlr import xmliter\nimport re\n\nfrom bs4 import BeautifulSoup\n\nimport csv\n\nimport unicodedata\n\nimport json\n\nfrom collections import Counter\n\nfrom nltk.tokenize import sent_tokenize\nfrom nltk.tokenize.punkt import PunktSentenceTokenizer, PunktParameters\npunkt_param = PunktParameters()\nabbreviation = ['u.s.a', 'fig', 'etc', 'eg', 'mr', 'mrs', 'e.g', 'no', 'vs', 'i.e']\npunkt_param.abbrev_types = set(abbreviation)\ntokenizer = PunktSentenceTokenizer(punkt_param)\n\n\n\ndef find_string_indices(input_string,string_to_search):\n\tstring_indices=[]\n\tlocation=-1\n\twhile True:\n\t    location = input_string.find(string_to_search, location + 1)\n\t    if location == -1: break\n\t    string_indices.append(location)\n\treturn string_indices\n\n\n\nclass Stackoverflow_Info_Extract:\n\tdef __init__(self,  annotattion_folder):\n\t\t\n\t\tself.annotattion_folder=annotattion_folder\n\n\n\t\n\n\n\tdef Extract_Text_From_XML(self,input_text):\n\t\n\t\tinput_text_str = input_text.encode(\"utf-8\").strip()\n\t\textracted_text=\"\"\n\n\t\t\n\n\t\t\n\t\tsoup = BeautifulSoup(input_text_str,\"lxml\")\n\t\tall_tags = soup.find_all(True)\n\t\tfor para in soup.body:\n\t\t\ttext_for_current_block=str(para)\n\t\t\t\n\t\t\t#\n\t\t\ttemp_soup = BeautifulSoup(text_for_current_block,\"lxml\")\n\t\t\tlist_of_tags = [tag.name for tag in temp_soup.find_all()]\n\t\t\ttag_len=len(list_of_tags)\n\n\t\t\tif set(list_of_tags)==set(['html', 'body', 'pre', 'code']):\n\t\t\t\t\n\t\t\t\tcode_string = temp_soup.pre.string\n\t\t\t\t\n\t\t\t\ttemp_soup.pre.string=\"CODE_BLOCK: id_\"+str(self.code_file_number)+\" (code omitted for annotation)\\n\"\n\t\t\t\t\n\t\t\t\t\n\n\n\n\t\t\telif \"code\" in list_of_tags:\n\t\t\t\tall_inline_codes=temp_soup.find_all(\"code\")\n\t\t\t\t\n\t\t\t\tfor inline_code in all_inline_codes:\n\t\t\t\t\tinline_code_string_raw=str(inline_code)\n\t\t\t\t\t\n\t\t\t\t\ttemp_code_soup = BeautifulSoup(inline_code_string_raw,\"lxml\")\n\t\t\t\t\tinline_code_string_list_of_text = temp_code_soup.findAll(text=True)\n\t\t\t\t\tinline_code_string_text =\"\".join(inline_code_string_list_of_text).strip()\n\t\t\t\t\t\n\n\t\t\t\t\ttry:\n\t\t\t\t\t\tif \"\\n\" in inline_code_string_text:\n\t\t\t\t\t\t\tcode_string = inline_code_string_text\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tinline_code.string=\"CODE_BLOCK: id_\"+str(self.code_file_number)+\" (code omitted for annotation)\\n\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\telif inline_code_string_text.count('.')>=1:\n\t\t\t\t\t\t\tinline_code.string = \"--INLINE_CODE_BEGIN---\"+ inline_code_string_text.replace(\".\",\"..\").replace('\\r', '').replace('\\n', '') +\"--INLINE_CODE_END---\"\n\n\t\t\t\t\t\telif inline_code_string_text.count('?')>=1:\n\t\t\t\t\t\t\tinline_code.string = \"--INLINE_CODE_BEGIN---\"+ inline_code_string_text.replace(\"?\",\"<?-?>\").replace('\\r', '').replace('\\n', '') +\"--INLINE_CODE_END---\"\n\t\t\t\t\t\telse:\n\t\t\t\t\t\t\tinline_code.string = \"--INLINE_CODE_BEGIN---\"+ inline_code_string_text.replace('\\r', '').replace('\\n', '') +\"--INLINE_CODE_END---\"\n\t\t\t\t\texcept Exception as e:\n\t\t\t\t\t\t\n\t\t\t\t\t\tprint(\"DEBUG----- inisde except for inline code -------- error\", e)\n\t\t\t\t\t\t\n\t\t\t\t\t\tcontinue\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\n\n\n\n\n\t\t\tif \"blockquote\" in list_of_tags:\n\t\t\t\t\n\t\t\t\top_string = temp_soup.blockquote.string\n\t\t\t\ttemp_soup.blockquote.string=\"OP_BLOCK: (output omitted for annotation)\\n\"\n\t\t\t\t\n\t\t\t\t\n\n\t\t\tif \"kbd\" in list_of_tags:\n\t\t\t\tall_keyboard_ip=temp_soup.find_all(\"kbd\")\n\t\t\t\t# print(\"DEBUG-keyboard-input\", all_keyboard_ip)\n\t\t\t\t# print(\"DEBUG---inputxml: \",input_text_str)\n\t\t\t\tfor keyboard_ip in all_keyboard_ip:\n\t\t\t\t\tprint(\"DEBUG-keyboard-input\", keyboard_ip.string)\n\t\t\t\t\tkeyboard_ip.string = \"--KEYBOARD_IP_BEGIN---\"+ keyboard_ip.string +\"--KEYBOARD_IP_END---\"\n\n\t\t\t\t\t# print(keyboard_ip.string)\n\n\n\n\t\t\tlist_of_texts=temp_soup.findAll(text=True)\n\t\t\ttext=\"\".join(list_of_texts)\n\t\t\t\n\t\t\textracted_text+=text\n\t\t\textracted_text+=\"\\n\\n\"\n\n\t\t\t\n\n\t\t\t\n\t\t\t\n\t\t# print(\"DEBUG--extracted-text-for-xml: \\n\",extracted_text)\n\t\t\n\t\treturn extracted_text\n\n\tdef tokenize_and_annotae_post_body(self, xml_filtered_string, post_id):\n\n\t\ttext_file_name=self.annotattion_folder+post_id+\".txt\"\n\t\tann_file_name=self.annotattion_folder+post_id+\".ann\"\n\n\t\tf_out_txt=open(text_file_name,'w')\n\t\tf_out_ann=open(ann_file_name,'w')\n\n\t\t#print \"-----------------------\"\n\n\n\t\ttokenized_body=tokenizer.tokenize(xml_filtered_string)\n\n\t\t#tokenized_body_extra_stop_removed = [sentence.replace(\"..\",\".\") for sentence in tokenized_body if \"--INLINE_CODE_BEGIN---\" in sentence]\n\t\ttokenized_body_extra_qmark_and_stop_removed = []\n\t\tfor sentence in tokenized_body:\n\t\t\tif \"--INLINE_CODE_BEGIN---\" in sentence:\n\t\t\t\tsentence=sentence.replace(\"..\",\".\")\n\t\t\t\tsentence = sentence.replace(\"<?-?>\",\"?\")\n\t\t\ttokenized_body_extra_qmark_and_stop_removed.append(sentence)\n\n\t\t#tokenized_body_extra_q_mark_removed = [sentence.replace(\"<?-?>\",\"?\") for sentence in tokenized_body_extra_stop_removed]\n\t\ttokenized_body_new_line_removed=[re.sub(r\"\\n+\", \"\\n\", sentence) for sentence in tokenized_body_extra_qmark_and_stop_removed]\n\t\t#print tokenized_body\n\t\t#print tokenized_body_new_line_removed\n\t\ttokenized_body_str=\"\\n\".join(tokenized_body_new_line_removed)\n\t\t#print tokenized_body_str\n\n\t\t#-----------------postions for inline codes------------------------------\n\n\t\tinline_code_begining_positions=find_string_indices(tokenized_body_str,\"--INLINE_CODE_BEGIN\")\n\t\tinline_code_ending_positions_=find_string_indices(tokenized_body_str,\"INLINE_CODE_END---\")\n\t\tlen_inline_code_end_tag=len(\"INLINE_CODE_END---\")\n\t\tinline_code_ending_positions = [x+len_inline_code_end_tag for x in inline_code_ending_positions_]\n\n\t\t#-----------------postions for keyboard inputs------------------------------\n\n\t\tkeyboard_ip_begining_positions=find_string_indices(tokenized_body_str,\"--KEYBOARD_IP_BEGIN\")\n\t\tkeyboard_ip_ending_positions_=find_string_indices(tokenized_body_str,\"KEYBOARD_IP_END---\")\n\t\tlen_keyboard_ip_end_tag=len(\"KEYBOARD_IP_END---\")\n\t\tkeyboard_ip_ending_positions = [x+len_keyboard_ip_end_tag for x in keyboard_ip_ending_positions_]\n\t\tre\n\n\t\t#-----------------postions for code blocks-----------------------------\n\n\t\tcode_block_begining_positions=find_string_indices(tokenized_body_str,\"CODE_BLOCK:\")\n\t\tcode_block_ending_positions_=find_string_indices(tokenized_body_str,\"(code omitted for annotation)\")\n\t\tlen_code_block_end_tag=len(\"(code omitted for annotation)\")\n\t\tcode_block_ending_positions = [x+len_code_block_end_tag for x in code_block_ending_positions_]\n\n\t\t#-----------------postions for output blocks------------------------------\n\n\t\top_block_begining_positions=find_string_indices(tokenized_body_str,\"OP_BLOCK:\")\n\t\top_block_ending_positions_=find_string_indices(tokenized_body_str,\"(output omitted for annotation)\")\n\t\tlen_op_block_end_tag=len(\"(output omitted for annotation)\")\n\t\top_block_ending_positions = [x+len_op_block_end_tag for x in op_block_ending_positions_]\n\n\n\t\tquestion_url_text=\"Question_URL: \"+\"https://stackoverflow.com/questions/\"+str(post_id)+\"/\"\n\t\tintro_text=\"\"\n\n\t\tf_out_txt.write(intro_text)\n\t\top_string=tokenized_body_str.replace(\"--INLINE_CODE_BEGIN---\",\"\").replace(\"--INLINE_CODE_END---\",\"\").replace(\"--KEYBOARD_IP_BEGIN---\",\"\").replace(\"--KEYBOARD_IP_END---\",\"\")\n\t\tf_out_txt.write(op_string)\n\t\tf_out_txt.write(\"\\n\")\n\t\tf_out_txt.close()\n\n\t\t#-----------------creating automated annotations---------------------------\n\t\ttag_counter=1\n\t\tinit_offset=len(intro_text)\n\n\t\tlen_keyboard_tag_str=len(\"--KEYBOARD_IP_BEGIN---\"+\"--KEYBOARD_IP_END---\")\n\t\tlen_inline_code_tag_str= len(\"--INLINE_CODE_BEGIN---\" +\"--INLINE_CODE_END---\")\n\n\n\n\n\n\t\t#-----------------annotation for inline codes------------------------------\n\t\t\n\t\tnumber_of_inline_codes=len(inline_code_begining_positions)\n\t\t\n\t\tinline_code_tag_offset=len(\"--INLINE_CODE_BEGIN---\")+len(\"--INLINE_CODE_END---\")\n\n\t\t\n\t\tfor postion in range(0,number_of_inline_codes):\n\t\t\tbegining_pos=inline_code_begining_positions[postion]\n\t\t\tending_pos=inline_code_ending_positions[postion]\n\t\t\tcode_string= tokenized_body_str[begining_pos:ending_pos].replace(\"--INLINE_CODE_BEGIN---\",\"\").replace(\"--INLINE_CODE_END---\",\"\").replace('\\r', '').replace('\\n', '')\n\t\t\t#print(code_string)\n\t\t\ttag_text=\"T\"+str(tag_counter)\n\t\t\tannotation_text=\"Code_Block\"\n\n\t\t\tadjusted_begining_pos = begining_pos \n\t\t\tadjusted_ending_pos = ending_pos\n\t\t\t\n\n\t\t\t#---------adjust annoatiotion location for keyboard ips------------------------\n\t\t\tfor keyboard_ip_pos in keyboard_ip_begining_positions:\n\t\t\t\tif begining_pos > keyboard_ip_pos:\n\t\t\t\t\tadjusted_begining_pos= adjusted_begining_pos - len_keyboard_tag_str\n\t\t\t\t\tadjusted_ending_pos= adjusted_ending_pos - len_keyboard_tag_str\n\t\t\t\t\n\t\t\tbegin_loc=adjusted_begining_pos+init_offset\n\t\t\tending_loc=adjusted_ending_pos+init_offset\n\n\n\t\t\tbegin_loc=adjusted_begining_pos+init_offset-(postion*inline_code_tag_offset)\n\t\t\tending_loc=adjusted_ending_pos+init_offset-((postion+1)*inline_code_tag_offset)\n\t\t\t\n\t\t\t\n\t\t\topline=tag_text+\"\\t\"+annotation_text+\" \"+str(begin_loc)+\" \"+str(ending_loc)+\"\\t\"+code_string+\"\\n\"\n\t\t\t#print(\"************\")\n\t\t\t#print(opline)\n\t\t\tf_out_ann.write(opline)\n\t\t\ttag_counter+=1\n\n\n\n\t\t#-----------------annotation for output block------------------------------\n\n\t\tnumber_of_op_blocks=len(op_block_begining_positions)\n\n\t\tfor postion in range(0,number_of_op_blocks):\n\t\t\tbegining_pos=op_block_begining_positions[postion]\n\t\t\tending_pos=op_block_ending_positions[postion]\n\t\t\top_string= tokenized_body_str[begining_pos:ending_pos]\n\t\t\t#print(code_string)\n\t\t\ttag_text=\"T\"+str(tag_counter)\n\t\t\tannotation_text=\"Output_Block\"\n\n\t\t\tadjusted_begining_pos = begining_pos \n\t\t\tadjusted_ending_pos = ending_pos\n\t\t\t#---------adjust annoatiotion location for inline code---------------\n\t\t\tfor inline_code_pos in inline_code_begining_positions:\n\t\t\t\t#print \"DBUG---inline code inline_code_begining_position :\",inline_code_pos, type(inline_code_pos), begining_pos, type(begining_pos)\n\t\t\t\tif begining_pos > inline_code_pos:\n\t\t\t\t\tadjusted_begining_pos= adjusted_begining_pos - len_inline_code_tag_str\n\t\t\t\t\tadjusted_ending_pos= adjusted_ending_pos - len_inline_code_tag_str\n\t\t\t\t\t#print \"DBUG---if of inline code adjust :\", adjusted_begining_pos, adjusted_ending_pos\n\n\t\t\t#---------adjust annoatiotion location for keyboard ips------------------------\n\t\t\tfor keyboard_ip_pos in keyboard_ip_begining_positions:\n\t\t\t\tif begining_pos > keyboard_ip_pos:\n\t\t\t\t\tadjusted_begining_pos= adjusted_begining_pos - len_keyboard_tag_str\n\t\t\t\t\tadjusted_ending_pos= adjusted_ending_pos - len_keyboard_tag_str\n\t\t\t\t\n\t\t\tbegin_loc=adjusted_begining_pos+init_offset\n\t\t\tending_loc=adjusted_ending_pos+init_offset\n\t\t\t\n\t\t\t\n\t\t\topline=tag_text+\"\\t\"+annotation_text+\" \"+str(begin_loc)+\" \"+str(ending_loc)+\"\\t\"+op_string+\"\\n\"\n\t\t\t#print(\"************\")\n\t\t\t#print(opline)\n\t\t\tf_out_ann.write(opline)\n\t\t\ttag_counter+=1\n\n\t\t#-----------------annotation for keyboard input------------------------------\n\t\tnumber_of_keyboard_ips=len(keyboard_ip_begining_positions)\n\t\t\n\t\tkeyboard_tag_offset=len(\"--KEYBOARD_IP_BEGIN---\")+len(\"--KEYBOARD_IP_END---\")\n\n\t\t\n\t\tfor postion in range(0,number_of_keyboard_ips):\n\t\t\tbegining_pos=keyboard_ip_begining_positions[postion]\n\t\t\tending_pos=keyboard_ip_ending_positions[postion]\n\t\t\tkeyboard_ip_string= tokenized_body_str[begining_pos:ending_pos].replace(\"--KEYBOARD_IP_BEGIN---\",\"\").replace(\"--KEYBOARD_IP_END---\",\"\")\n\t\t\t#print(code_string)\n\t\t\ttag_text=\"T\"+str(tag_counter)\n\t\t\tannotation_text=\"Keyboard_IP\"\n\n\t\t\tadjusted_begining_pos = begining_pos \n\t\t\tadjusted_ending_pos = ending_pos\n\n\t\t\t#---------adjust annoatiotion location for inline code---------------\n\t\t\tfor inline_code_pos in inline_code_begining_positions:\n\t\t\t\t#print \"DBUG---inline code inline_code_begining_position :\",inline_code_pos, type(inline_code_pos), begining_pos, type(begining_pos)\n\t\t\t\tif begining_pos > inline_code_pos:\n\t\t\t\t\tadjusted_begining_pos= adjusted_begining_pos - len_inline_code_tag_str\n\t\t\t\t\tadjusted_ending_pos= adjusted_ending_pos - len_inline_code_tag_str\n\t\t\t\t\t#print \"DBUG---if of inline code adjust :\", adjusted_begining_pos, adjusted_ending_pos\n\n\t\t\n\t\t\t\n\n\t\t\tbegin_loc=adjusted_begining_pos+init_offset-(postion*keyboard_tag_offset)\n\t\t\tending_loc = adjusted_ending_pos+init_offset-((postion+1)*keyboard_tag_offset)\n\t\t\t\n\t\t\t\n\t\t\topline=tag_text+\"\\t\"+annotation_text+\" \"+str(begin_loc)+\" \"+str(ending_loc)+\"\\t\"+keyboard_ip_string+\"\\n\"\n\t\t\t#print(\"************\")\n\t\t\t#print(opline)\n\t\t\tf_out_ann.write(opline)\n\t\t\ttag_counter+=1\n\n\t\t#-----------------annotation for code block------------------------------\n\n\t\tnumber_of_code_blocks=len(code_block_begining_positions)\n\t\t#print \"DEBUG--codeblock\"\n\t\t#print \"DEBUG--question id : \",post_id\n\t\t#print \"DEBUG---inputs:\",tokenized_body_str\n\t\t#print \"DEBUG---input len:\",len(tokenized_body_str)\n\t\t#print \"DEBUG---itro text len:\",len(intro_text)\n\n\t\t#print \"DBUG---code_block_begining_positions:\",code_block_begining_positions\n\t\t#print \"DBUG---code_block_ending_positions:\",code_block_ending_positions\n\t\t#print \"DBUG---init offset :\",init_offset\n\n\t\tfor postion in range(0,number_of_code_blocks):\n\t\t\tbegining_pos=code_block_begining_positions[postion]\n\t\t\tending_pos=code_block_ending_positions[postion]\n\t\t\tcode_string= tokenized_body_str[begining_pos:ending_pos]\n\t\t\t#print(code_string)\n\t\t\ttag_text=\"T\"+str(tag_counter)\n\t\t\tannotation_text=\"Code_Block\"\n\n\t\t\tadjusted_begining_pos = begining_pos \n\t\t\tadjusted_ending_pos = ending_pos\n\t\t\t#---------adjust annoatiotion location for inline code---------------\n\t\t\tfor inline_code_pos in inline_code_begining_positions:\n\t\t\t\t#print \"DBUG---inline code inline_code_begining_position :\",inline_code_pos, type(inline_code_pos), begining_pos, type(begining_pos)\n\t\t\t\tif begining_pos > inline_code_pos:\n\t\t\t\t\tadjusted_begining_pos= adjusted_begining_pos - len_inline_code_tag_str\n\t\t\t\t\tadjusted_ending_pos= adjusted_ending_pos - len_inline_code_tag_str\n\t\t\t\t\t#print \"DBUG---if of inline code adjust :\", adjusted_begining_pos, adjusted_ending_pos\n\n\t\t\t#---------adjust annoatiotion location for keyboard ips------------------------\n\t\t\tfor keyboard_ip_pos in keyboard_ip_begining_positions:\n\t\t\t\tif begining_pos > keyboard_ip_pos:\n\t\t\t\t\tadjusted_begining_pos= adjusted_begining_pos - len_keyboard_tag_str\n\t\t\t\t\tadjusted_ending_pos= adjusted_ending_pos - len_keyboard_tag_str\n\t\t\t\t\n\t\t\tbegin_loc=adjusted_begining_pos+init_offset\n\t\t\tending_loc=adjusted_ending_pos+init_offset\n\t\t\t\n\t\t\t#print \"DEBUG--begining postion+init offset : \",begin_loc, begining_pos+init_offset\n\t\t\t#print \"DEBUG--ending postion+init offset : \",ending_loc, begining_pos+init_offset \n\t\t\topline=tag_text+\"\\t\"+annotation_text+\" \"+str(begin_loc)+\" \"+str(ending_loc)+\"\\t\"+code_string+\"\\n\"\n\t\t\t#print(\"************\")\n\t\t\t#print \"DEBUG--code block ann : \",opline\n\t\t\tf_out_ann.write(opline)\n\t\t\ttag_counter+=1\n\t\t#print \"------------DEBUG-----\",post_id\n\t\tf_out_ann.close()\n\n\t\t\n\n\n\n\n\n\t\t\n\t\t\n\n\t\t\n\t\t"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/map_text_to_char.py",
    "content": "import stokenizer #JT: Dec 6\n\n\ndef map_text_to_char(main_sent, tokens, offset):\n\ttokenized_sent=\" \".join(tokens)\n\t# print(\"tokenized_sent: \", tokenized_sent)\n\n\tmain_sent_iter=0\n\ttokenized_sent_iter=0\n\ttokenized_sent_actual_indices=[]\n\twhile(tokenized_sent_iter<len(tokenized_sent)):\n\t\tif tokenized_sent_iter< len(tokenized_sent):\n\t\t\ttokenized_sent_char=tokenized_sent[tokenized_sent_iter]\n\t\tif main_sent_iter< len(main_sent):\n\t\t\tmain_sent_char=main_sent[main_sent_iter]\n\n\t\twhile main_sent_char!=tokenized_sent_char and main_sent_char==\" \":\n\t\t\tif main_sent_iter+1==len(main_sent):break\n\t\t\tmain_sent_iter+=1\n\t\t\tmain_sent_char=main_sent[main_sent_iter]\n\n\t\twhile main_sent_char!=tokenized_sent_char and tokenized_sent_char==\" \":\n\t\t\tif tokenized_sent_iter+1==len(tokenized_sent):break\n\t\t\ttokenized_sent_iter+=1\n\t\t\ttokenized_sent_char=tokenized_sent[tokenized_sent_iter]\n\t\tif tokenized_sent_char!=\" \":\n\t\t\ttokenized_sent_actual_indices.append((tokenized_sent_char, main_sent_iter))\n\t\tmain_sent_iter+=1\n\t\ttokenized_sent_iter+=1\n\n\n\n\n\t\t# print(main_sent_char, tokenized_sent_char)\n\t# print(tokenized_sent_actual_indices)\n\tword=\"\"\n\tword_start_at=0\n\tindex=0\n\ttoken_iter=0\n\ttoken_start_pos=[]\n\tfor t in tokens:\n\n\t\t# print(\"len(tokenized_sent_actual_indices: \",len(tokenized_sent_actual_indices), token_iter)\n\t\t# print(t, tokenized_sent_actual_indices[token_iter][1])\n\t\tt1=t.replace(\"-----\",\" \")\n\t\tif token_iter<len(tokenized_sent_actual_indices):\n\t\t\ttoken_start_pos.append((t, tokenized_sent_actual_indices[token_iter][1]+offset))\n\t\ttoken_iter+=len(t1)\n\t\t\n\t\n\n\n\treturn token_start_pos\n\n\n\nif __name__ == '__main__':\n\t# text=\"TextView       has setText(String), but when looking on the Doc, I don't see one for GridLayout.\"\n\ttext=\"   NetBeans: How to use .jar files in NetBeans want(With-----a-----maximum-----size-----of-----4608x3456)?\"\n\tprint(\"main text: \",text)\n\ttokens = stokenizer.tokenize(text)\n\tprint(\"split_token: \", tokens)\n\ttoken_W_pos = map_text_to_char(text, tokens, 0)\n\tprint(\"token_W_pos: \", token_W_pos)\n\n"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/sentencesplit.py",
    "content": "#!/usr/bin/env python\n\n\"\"\"Basic sentence splitter using brat segmentation to add newlines to input\ntext at likely sentence boundaries.\"\"\"\n\nimport sys\nfrom os.path import join as path_join\nfrom os.path import dirname\nfrom sys import path as sys_path\n\nsys_path.append(path_join(dirname(__file__), '.'))\n\n# import brat sentence boundary generator\nfrom ssplit import regex_sentence_boundary_gen\n\n\ndef _text_by_offsets_gen(text, offsets):\n    for start, end in offsets:\n        yield text[start:end]\n\n\ndef _normspace(s):\n    import re\n    return re.sub(r'\\s', ' ', s)\n\n\ndef sentencebreaks_to_newlines(text):\n    # print(\"text: \",text)\n    offsets = [o for o in regex_sentence_boundary_gen(text)]\n\n    # break into sentences\n    sentences = [s for s in _text_by_offsets_gen(text, offsets)]\n    # print(sentences)\n\n    # join up, adding a newline for space where possible\n    orig_parts = []\n    new_parts = []\n\n    sentnum = len(sentences)\n    for i in range(sentnum):\n        sent = sentences[i]\n        orig_parts.append(sent)\n        new_parts.append(sent)\n\n        if i < sentnum - 1:\n            orig_parts.append(text[offsets[i][1]:offsets[i + 1][0]])\n\n            if (offsets[i][1] < offsets[i + 1][0] and\n                    text[offsets[i][1]].isspace()):\n                # intervening space; can add newline\n                new_parts.append(\n                    '\\n' + text[offsets[i][1] + 1:offsets[i + 1][0]])\n            else:\n                new_parts.append(text[offsets[i][1]:offsets[i + 1][0]])\n\n    if len(offsets) and offsets[-1][1] < len(text):\n        orig_parts.append(text[offsets[-1][1]:])\n        new_parts.append(text[offsets[-1][1]:])\n\n    # sanity check\n    # assert text == ''.join(orig_parts), \"INTERNAL ERROR:\\n    '%s'\\nvs\\n    '%s'\" % (\n    #     text, ''.join(orig_parts))\n\n    splittext = ''.join(new_parts)\n\n    # sanity\n    # assert len(text) == len(splittext), \"INTERNAL ERROR\"\n    # assert _normspace(text) == _normspace(splittext), \"INTERNAL ERROR:\\n    '%s'\\nvs\\n    '%s'\" % (\n    #     _normspace(text), _normspace(splittext))\n    # print(\"splittext: \",splittext)\n\n    return splittext\n\n\ndef main(argv):\n    while True:\n        text = sys.stdin.readline()\n        if len(text) == 0:\n            break\n        sys.stdout.write(sentencebreaks_to_newlines(text))\n\n\nif __name__ == \"__main__\":\n    sys.exit(main(sys.argv))\n"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/ssplit.py",
    "content": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n\n\n\n\"\"\"Primitive sentence splitting using Sampo Pyysalo's GeniaSS sentence split\nrefiner. Also a primitive Japanese sentence splitter without refinement.\n\nAuthor:     Pontus Stenetorp <pontus stenetorp se>\nVersion:    2011-05-09\n\"\"\"\n\nfrom re import compile as re_compile\nfrom re import DOTALL, VERBOSE\n\n# Constants\n# Reasonably well-behaved sentence end regular expression\nSENTENCE_END_REGEX = re_compile(r'''\n        # Require a leading non-whitespace character for the sentence\n        \\S\n        # Then, anything goes, but don't be greedy\n        .*?\n        # Anchor the sentence at...\n        (:?\n            # One (or multiple) terminal character(s)\n            #   followed by one (or multiple) whitespace\n            (:?(\\.|!|\\?|。|！|？)+(?=\\s+))\n        | # Or...\n            # Newlines, to respect file formatting\n            (:?(?=\\n+))\n        | # Or...\n            # End-of-file, excluding whitespaces before it\n            (:?(?=\\s*$))\n        )\n    ''', DOTALL | VERBOSE)\n# Only newlines can end a sentence to preserve pre-processed formatting\nSENTENCE_END_NEWLINE_REGEX = re_compile(r'''\n        # Require a leading non-whitespace character for the sentence\n        \\S\n        # Then, anything goes, but don't be greedy\n        .*?\n        # Anchor the sentence at...\n        (:?\n            # One (or multiple) newlines\n            (:?(?=\\n+))\n        | # Or...\n            # End-of-file, excluding whitespaces before it\n            (:?(?=\\s*$))\n        )\n    ''', DOTALL | VERBOSE)\n###\n\n\ndef _refine_split(offsets, original_text):\n    # Postprocessor expects newlines, so add. Also, replace\n    # sentence-internal newlines with spaces not to confuse it.\n    new_text = '\\n'.join((original_text[o[0]:o[1]].replace('\\n', ' ')\n                          for o in offsets))\n\n    from sspostproc import refine_split\n    output = refine_split(new_text)\n\n    # Align the texts and see where our offsets don't match\n    old_offsets = offsets[::-1]\n    # Protect against edge case of single-line docs missing\n    #   sentence-terminal newline\n    if len(old_offsets) == 0:\n        old_offsets.append((0, len(original_text), ))\n    new_offsets = []\n    for refined_sentence in output.split('\\n'):\n        new_offset = old_offsets.pop()\n        # Merge the offsets if we have received a corrected split\n        while new_offset[1] - new_offset[0] < len(refined_sentence) - 1:\n            _, next_end = old_offsets.pop()\n            new_offset = (new_offset[0], next_end)\n        new_offsets.append(new_offset)\n\n    # Protect against missing document-final newline causing the last\n    #   sentence to fall out of offset scope\n    if len(new_offsets) != 0 and new_offsets[-1][1] != len(original_text) - 1:\n        start = new_offsets[-1][1] + 1\n        while start < len(original_text) and original_text[start].isspace():\n            start += 1\n        if start < len(original_text) - 1:\n            new_offsets.append((start, len(original_text) - 1))\n\n    # Finally, inject new-lines from the original document as to respect the\n    #   original formatting where it is made explicit.\n    last_newline = -1\n    while True:\n        try:\n            orig_newline = original_text.index('\\n', last_newline + 1)\n        except ValueError:\n            # No more newlines\n            break\n\n        for o_start, o_end in new_offsets:\n            if o_start <= orig_newline < o_end:\n                # We need to split the existing offsets in two\n                new_offsets.remove((o_start, o_end))\n                new_offsets.extend(((o_start, orig_newline, ),\n                                    (orig_newline + 1, o_end), ))\n                break\n            elif o_end == orig_newline:\n                # We have already respected this newline\n                break\n        else:\n            # Stand-alone \"null\" sentence, just insert it\n            new_offsets.append((orig_newline, orig_newline, ))\n\n        last_newline = orig_newline\n\n    new_offsets.sort()\n    return new_offsets\n\n\ndef _sentence_boundary_gen(text, regex):\n    for match in regex.finditer(text):\n        yield match.span()\n\n\ndef regex_sentence_boundary_gen(text):\n    for o in _refine_split([_o for _o in _sentence_boundary_gen(\n            text, SENTENCE_END_REGEX)], text):\n        yield o\n\n\ndef newline_sentence_boundary_gen(text):\n    for o in _sentence_boundary_gen(text, SENTENCE_END_NEWLINE_REGEX):\n        yield o\n\n\nif __name__ == '__main__':\n    from sys import argv\n\n    from annotation import open_textfile\n\n    def _text_by_offsets_gen(text, offsets):\n        for start, end in offsets:\n            yield text[start:end]\n\n    if len(argv) > 1:\n        try:\n            for txt_file_path in argv[1:]:\n                print()\n                print('### Splitting:', txt_file_path)\n                with open_textfile(txt_file_path, 'r') as txt_file:\n                    text = txt_file.read()\n                print('# Original text:')\n                print(text.replace('\\n', '\\\\n'))\n                offsets = [o for o in newline_sentence_boundary_gen(text)]\n                print('# Offsets:')\n                print(offsets)\n                print('# Sentences:')\n                for sentence in _text_by_offsets_gen(text, offsets):\n                    # These should only be allowed when coming from original\n                    #   explicit newlines.\n                    #assert sentence, 'blank sentences disallowed'\n                    # assert not sentence[0].isspace(), (\n                    #        'sentence may not start with white-space \"%s\"' % sentence)\n                    print('\"%s\"' % sentence.replace('\\n', '\\\\n'))\n        except IOError:\n            pass  # Most likely a broken pipe\n    else:\n        sentence = 'This is a short sentence.\\nthis is another one.'\n        print('Sentence:', sentence)\n        print('Len sentence:', len(sentence))\n\n        ret = [o for o in en_sentence_boundary_gen(sentence)]\n        last_end = 0\n        for start, end in ret:\n            if last_end != start:\n                print('DROPPED: \"%s\"' % sentence[last_end:start])\n            print('SENTENCE: \"%s\"' % sentence[start:end])\n            last_end = end\n        print(ret)\n\n        sentence = '　変しん！　両になった。うそ！　かも　'\n        print('Sentence:', sentence)\n        print('Len sentence:', len(sentence))\n\n        ret = [o for o in jp_sentence_boundary_gen(sentence)]\n        ans = [(1, 5), (6, 12), (12, 15), (16, 18)]\n        assert ret == ans, '%s != %s' % (ret, ans)\n        print('Successful!')\n\n        sentence = ' One of these days Jimmy, one of these days. Boom! Kaboom '\n        print('Sentence:', sentence)\n        print('Len sentence:', len(sentence))\n\n        ret = [o for o in en_sentence_boundary_gen(sentence)]\n        ans = [(1, 44), (45, 50), (51, 57)]\n        assert ret == ans, '%s != %s' % (ret, ans)\n        print('Successful!')\n"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/stokenizer.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nAuthor: Jeniya Tabassum <jeniya.tabassum@gmail.com>\n\nstokenizer -- a tokenizer designed for StackOverflow text.\n\nThis tokenizer is build on top of a tweet tokenizer : https://github.com/myleott/ark-twokenize-py/blob/master/twokenize.py\nWe updated the rules in tweet tokenizer to adjust with the software domain texts.\n\nBelow is the history of the development fo the  tweet tokenizer\n(1) Brendan O'Connor wrote original version in Python, http://github.com/brendano/tweetmotif\n       TweetMotif: Exploratory Search and Topic Summarization for Twitter.\n       Brendan O'Connor, Michel Krieger, and David Ahn.\n       ICWSM-2010 (demo track), http://brenocon.com/oconnor_krieger_ahn.icwsm2010.tweetmotif.pdf\n(2a) Kevin Gimpel and Daniel Mills modified it for POS tagging for the CMU ARK Twitter POS Tagger\n(2b) Jason Baldridge and David Snyder ported it to Scala\n(3) Brendan bugfixed the Scala port and merged with POS-specific changes\n    for the CMU ARK Twitter POS Tagger\n(4) Tobi Owoputi ported it back to Java and added many improvements (2012-06)\n(5) Myle Ott ported it to Python3 .\n\n\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport operator\nimport re\nimport sys\n\nimport signal\n\n\n\ntry:\n    from html.parser import HTMLParser\nexcept ImportError:\n    from HTMLParser import HTMLParser\n\ntry:\n    import html\nexcept ImportError:\n    pass\n\n#timeout function is adapted from here: https://dreamix.eu/blog/webothers/timeout-function-in-python-3\n\n\n\n#items=\"a|b => regex_or(items) ==> (?:a|b)\ndef regex_or(*items):\n    return '(?:' + '|'.join(items) + ')'\n\n\nContractions = re.compile(u\"(?i)(\\w+)(n['’′]t|['’′]ve|['’′]ll|['’′]d|['’′]re|['’′]s|['’′]m)$\", re.UNICODE)\nWhitespace = re.compile(u\"[\\s\\u0020\\u00a0\\u1680\\u180e\\u202f\\u205f\\u3000\\u2000-\\u200a]+\", re.UNICODE)\n\npunctChars = r\"['\\\"“”‘’.?!…,:;]\"\n#punctSeq   = punctChars+\"+\"  #'anthem'. => ' anthem '.\npunctSeq   = r\"['\\\"“”‘’]+|[.?!,…]+|[:;]+\" #'anthem'. => ' anthem ' .\nentity     = r\"&(?:amp|lt|gt|quot);\" #html tag entities &quot; => \"\n#  URLs\n\n\n# BTO 2012-06: everyone thinks the daringfireball regex should be better, but they're wrong.\n# If you actually empirically test it the results are bad.\n# Please see https://github.com/brendano/ark-tweet-nlp/pull/9\n\nurlStart1  = r\"(?:https?://|\\bwww\\.)\"\ncommonTLDs = r\"(?:com|org|edu|gov|net|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|pro|tel|travel|xxx|aspx)\"\nccTLDs   = r\"(?:ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|\" + \\\nr\"bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|\" + \\\nr\"er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|\" + \\\nr\"hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|\" + \\\nr\"lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|\" + \\\nr\"nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|\" + \\\nr\"sl|sm|sn|so|sr|ss|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|\" + \\\nr\"va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw)\" #TODO: remove obscure country domains?\nurlStart2  = r\"\\b(?:[A-Za-z\\d-])+(?:\\.[A-Za-z0-9]+){0,3}\\.\" + regex_or(commonTLDs, ccTLDs) + r\"(?:\\.\"+ccTLDs+r\")?(?=\\W|$)\"\nurlBody    = r\"(?:[^\\.\\s<>][^\\s<>]*?)?\"\nurlExtraCrapBeforeEnd = regex_or(punctChars, entity) + \"+?\"\nurlEnd     = r\"(?:\\.\\.+|[<>]|\\s|$)\"\nurl        = regex_or(urlStart1, urlStart2) + urlBody + \"(?=(?:\"+urlExtraCrapBeforeEnd+\")?\"+urlEnd+\")\"\n\n\n# Numeric\ntimeLike   = r\"\\d+(?::\\d+){1,2}\"\n#numNum     = r\"\\d+\\.\\d+\"\nnumberWithCommas = r\"(?:(?<!\\d)\\d{1,3},)+?\\d{3}\" + r\"(?=(?:[^,\\d]|$))\"\nnumComb  = u\"[\\u0024\\u058f\\u060b\\u09f2\\u09f3\\u09fb\\u0af1\\u0bf9\\u0e3f\\u17db\\ua838\\ufdfc\\ufe69\\uff04\\uffe0\\uffe1\\uffe5\\uffe6\\u00a2-\\u00a5\\u20a0-\\u20b9]?\\\\d+(?:\\\\.\\\\d+)+%?\"\n\n# Abbreviations\nboundaryNotDot = regex_or(\"$\", r\"\\s\", r\"[“\\\"?!,:;]\", entity)\naa1  = r\"(?:[A-Za-z]\\.){2,}(?=\" + boundaryNotDot + \")\"\naa2  = r\"[^A-Za-z](?:[A-Za-z]\\.){1,}[A-Za-z](?=\" + boundaryNotDot + \")\"\nstandardAbbreviations = r\"\\b(?:[Mm]r|[Mm]rs|[Mm]s|[Dd]r|[Ss]r|[Jj]r|[Rr]ep|[Ss]en|[Ss]t)\\.\"\narbitraryAbbrev = regex_or(aa1, aa2, standardAbbreviations)\nseparators  = \"(?:--+|―|—|~|–|=)\"\ndecorations = u\"(?:[♫♪]+|[★☆]+|[♥❤♡]+|[\\u2639-\\u263b]+|[\\ue001-\\uebbb]+)\"\nthingsThatSplitWords = r\"[^\\s\\.,?\\\"]\"\nembeddedApostrophe = thingsThatSplitWords+r\"+['’′]\" + thingsThatSplitWords + \"*\"\n\n#  Emoticons\n# myleott: in Python the (?iu) flags affect the whole expression\n#normalEyes = \"(?iu)[:=]\" # 8 and x are eyes but cause problems\nnormalEyes = \"[:=]\" # 8 and x are eyes but cause problems\nwink = \"[;]\"\nnoseArea = \"(?:|-|[^a-zA-Z0-9 ])\" # doesn't get :'-(\nhappyMouths = r\"[D\\)\\]\\}]+\"\nsadMouths = r\"[\\(\\[\\{]+\"\ntongue = \"[pPd3]+\"\notherMouths = r\"(?:[oO]+|[/\\\\]+|[vV]+|[Ss]+|[|]+)\" # remove forward slash if http://'s aren't cleaned\n\n# mouth repetition examples:\n# @aliciakeys Put it in a love song :-))\n# @hellocalyclops =))=))=)) Oh well\n\n# myleott: try to be as case insensitive as possible, but still not perfect, e.g., o.O fails\n#bfLeft = u\"(♥|0|o|°|v|\\\\$|t|x|;|\\u0ca0|@|ʘ|•|・|◕|\\\\^|¬|\\\\*)\".encode('utf-8')\nbfLeft = u\"(♥|0|[oO]|°|[vV]|\\\\$|[tT]|[xX]|;|\\u0ca0|@|ʘ|•|・|◕|\\\\^|¬|\\\\*)\"\nbfCenter = r\"(?:[\\.]|[_-]+)\"\nbfRight = r\"\\2\"\ns3 = r\"(?:--['\\\"])\"\ns4 = r\"(?:<|&lt;|>|&gt;)[\\._-]+(?:<|&lt;|>|&gt;)\"\ns5 = \"(?:[.][_]+[.])\"\n# myleott: in Python the (?i) flag affects the whole expression\n#basicface = \"(?:(?i)\" +bfLeft+bfCenter+bfRight+ \")|\" +s3+ \"|\" +s4+ \"|\" + s5\nbasicface = \"(?:\" +bfLeft+bfCenter+bfRight+ \")|\" +s3+ \"|\" +s4+ \"|\" + s5\n\neeLeft = r\"[＼\\\\ƪԄ\\(（<>;ヽ\\-=~\\*]+\"\neeRight= u\"[\\\\-=\\\\);'\\u0022<>ʃ）/／ノﾉ丿╯σっµ~\\\\*]+\"\neeSymbol = r\"[^A-Za-z0-9\\s\\(\\)\\*:=-]\"\neastEmote = eeLeft + \"(?:\"+basicface+\"|\" +eeSymbol+\")+\" + eeRight\n\noOEmote = r\"(?:[oO]\" + bfCenter + r\"[oO])\"\n\n\nemoticon = regex_or(\n        # Standard version  :) :( :] :D :P\n        \"(?:>|&gt;)?\" + regex_or(normalEyes, wink) + regex_or(noseArea,\"[Oo]\") + regex_or(tongue+r\"(?=\\W|$|RT|rt|Rt)\", otherMouths+r\"(?=\\W|$|RT|rt|Rt)\", sadMouths, happyMouths),\n\n        # reversed version (: D:  use positive lookbehind to remove \"(word):\"\n        # because eyes on the right side is more ambiguous with the standard usage of : ;\n        regex_or(\"(?<=(?: ))\", \"(?<=(?:^))\") + regex_or(sadMouths,happyMouths,otherMouths) + noseArea + regex_or(normalEyes, wink) + \"(?:<|&lt;)?\",\n\n        #inspired by http://en.wikipedia.org/wiki/User:Scapler/emoticons#East_Asian_style\n        eastEmote.replace(\"2\", \"1\", 1), basicface,\n        # iOS 'emoji' characters (some smileys, some symbols) [\\ue001-\\uebbb]\n        # TODO should try a big precompiled lexicon from Wikipedia, Dan Ramage told me (BTO) he does this\n\n        # myleott: o.O and O.o are two of the biggest sources of differences\n        #          between this and the Java version. One little hack won't hurt...\n        oOEmote\n)\n\nHearts = \"(?:<+/?3+)+\" #the other hearts are in decorations\n\nArrows = regex_or(r\"(?:<*[-―—=]*>+|<+[-―—=]*>*)\", u\"[\\u2190-\\u21ff]+\")\n\n\n# BTO 2011-06: restored Hashtag, AtMention protection (dropped in original scala port) because it fixes\n# \"hello (#hashtag)\" ==> \"hello (#hashtag )\"  WRONG\n# \"hello (#hashtag)\" ==> \"hello ( #hashtag )\"  RIGHT\n# \"hello (@person)\" ==> \"hello (@person )\"  WRONG\n# \"hello (@person)\" ==> \"hello ( @person )\"  RIGHT\n# ... Some sort of weird interaction with edgepunct I guess, because edgepunct\n# has poor content-symbol detection.\n\n# This also gets #1 #40 which probably aren't hashtags .. but good as tokens.\n# If you want good hashtag identification, use a different regex.\nHashtag = \"#[a-zA-Z0-9_]+\"  #optional: lookbehind for \\b\n#optional: lookbehind for \\b, max length 15\nAtMention = \"[@＠][a-zA-Z0-9_]+\"\n\n# I was worried this would conflict with at-mentions\n# but seems ok in sample of 5800: 7 changes all email fixes\n# http://www.regular-expressions.info/email.html\nBound = r\"(?:\\W|^|$)\"\nEmail = regex_or(\"(?<=(?:\\W))\", \"(?<=(?:^))\") + r\"[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,4}(?=\" +Bound+\")\"\n\n# JT's additions to rules are as the following: \n# File_Ext, Path, OR_Words, File_Path_W_File_Name, Windows Path, Class_Name, Func_Name, Func_Name_Recursive, Class_Func_Name, HTML_Tag, Comparison Operation, Numbered_List, SPECIAL_WORDS\n\n# JT: 2018-08\n# '.html.erb' => '. html . erb' :: WRONG\n# '.html.erb' => '.html.erb' :: WRONG\nFile_Ext = r\"[.]?[\\w.\\-]*\\.[\\w]+(?=\" +Bound+\")\"\n\n# JT: 2018-08\nPath=r'(?:/?[\\w\\-.]+\\/+)+'\n#Path=r'(?:/?[\\w\\-.]+\\/+[\\w\\-.]*)+'\n\n# JT: 2018-08\n# '/templates/your_template/.php.ini' => '/templates/your_template/ . php . ini' :: WRONG\n# '/templates/your_template/.php.ini' => '/templates/your_template/.php.ini' :: RIGHT\nFile_Path_W_File_Name=Path +\"(?:\" + File_Ext + \")*\"\n\n\n# JT: 2018-08\n# 'GNU/LINUX' => 'GNU / LINUX' :: WRONG\n# 'GNU/LINUX' => 'GNU/LINUX' :: RIGHT\nOR_Words=r'([\\w\\-.:]*\\/[\\w\\.:]*)+'+\"(?=\" +Bound+\")\"\n\n\n# JT: 2018-08\n# 'd:\\\\ProgramFiles\\x07dtbundle' => 'd : \\\\ProgramFiles\\x07dtbundle' :: WRONG\n# 'd:\\\\ProgramFiles\\x07dtbundle' => 'd:\\\\ProgramFiles\\x07dtbundle' :: RIGHT\nWindows_Path=r'((?:(?:[a-zA-Z]:)?\\\\)[\\\\\\S|*\\S]?\\S*)'+\"(?=\" +Bound+\")\"\n\n\n# JT: 2018-08\n# 'javax.swing.Timer' => 'javax . swing . Timer' :: WRONG\n# 'javax.swing.Timer' => 'javax.swing.Timer' :: RIGHT\nClass_Name  =r\"[\\w.:\\-\\>]*[\\.:\\-\\>][\\w\\*]*(?=\" +Bound+\")\"\n\n# JT: 2018-08\nFunc_Name =  r\"([\\w@\\-]+\\((?:[\\w@\\-]+(?:,\\s*)?)*\\))\"+\"(?=\" +Bound+\")\" #-----this will not allow space and quote in function argument\n# Func_Name = r\"([\\w@\\-]+\\((?:[\\$\\w@\\-\\'\\\"\\s?]+(?:,\\s*)?)*\\))\"+\"(?=\" +Bound+\")\"\n\n# JT: 2018-08\n#Func_Name_Recursive = r\"([\\w@\\-.\\(\\)]+\\((?:[\\$\\w@\\-\\'\\\"\\s?]+(?:,\\s*)?)*\\))\"+\"(?=\" +Bound+\")\"\n# Func_Name_Recursive = r\"([$\\w@\\-.\\(\\)]+\\((?:[\\$\\w@\\-\\'\\\"\\s?]+(?:,\\s*)?)*\\)(?:[.][\\w@\\-]*)*)\"+\"(?=\" +Bound+\")\" #last part is included for words like $http.get().success\n#Func_Name_Recursive = r\"([\\w@\\-.\\(\\)]+\\((?:[\\$\\w@\\-\\'\\\"\\s?]+(?:,\\s*)?)*\\)(?:[.][\\w@\\-]*)*)\"+\"(?=\" +Bound+\")\"\n\n# JT: 2018-08\n# 'txScope.Complete()' => 'txScope.Complete(arg1, arg2)' :: RIGHT\n# 'txScope.Complete()' => 'txScope . Complete(arg1 , arg2 )' :: WRONG\nClass_Func_Name = r\"([\\w.:\\-\\>]*[\\.:\\-\\>][\\w]*\\((?:[\\w@\\-]+[\\.:\\-\\>\\s=]*[\\w]*(?:,\\s*)?)*\\))\"+\"(?=\" +Bound+\")\" #-----this will not allow space and quote in function argument\n# Class_Func_Name = r\"([\\$\\w.:\\-\\>]*[\\.:\\-\\>][\\w\\$]*\\((?:[\\$\\w@\\-\\\"\\'\\s]+[\\.:\\-\\>\\s=]*[\\$\\w]*(?:,\\s*)?)*\\))\"+\"(?=\" +Bound+\")\" \n\n# JT: 2018-08\n# '<%=@consumer.name%>' => '<%= @consumer . name% >' :: WRONG\n# '<%=@consumer.name%>' => '<%=@consumer.name%>' :: RIGHT\nHTML_Tag=r\"<.*>\"+\"(?=\" +Bound+\")\"\n\n# JT: 2018-08\n# '==' => \"= =\" :: WRONG\n# '==' => \"==\" :: RIGHT\nComparison_Operators=r\"==|!=|<=|>=|:=\"\n\n# JT: 2018-09\n# adding the rule to stop mask word splitting\n\n# JT: 2018-08\n# num2roman(num) and  generate_number_list(limit) are the function for genrating the numbered list in roman and english numerics, followed by )\ndef num2roman(num):\n    num_map = [(1000, 'M'), (900, 'CM'), (500, 'D'), (400, 'CD'), (100, 'C'), (90, 'XC'),\n           (50, 'L'), (40, 'XL'), (10, 'X'), (9, 'IX'), (5, 'V'), (4, 'IV'), (1, 'I')]\n\n    roman = ''\n\n    while num > 0:\n        for i, r in num_map:\n            while num >= i:\n                roman += r\n                num -= i\n\n    return roman\n\n# JT: 2018-08\ndef generate_number_list(limit):\n    numbered_lists_joined_string=r\"\"\n    for i in range(1,limit+1):\n        roman_upper_case = num2roman(i)\n        roman_lower_case = roman_upper_case.lower()\n        numeric_str= str(i)\n        current_string=roman_upper_case+\"\\)|\"+roman_lower_case+\"\\)|\"+numeric_str+\"\\)|\"\n        if i==limit:\n            current_string=current_string[:-1]\n        \n        numbered_lists_joined_string+=current_string\n    return numbered_lists_joined_string\n\n\n\n\n# Numbered_List for genrating the numbered list in roman and english numerics, followed by )  and we protect these number from splitting\n# \"ii)\" => \"ii ) \" :: WRONG\n# \"ii)\" => \"ii) \" :: RIGHT\n\n#set upto which number we want to generate the numebered list, for now we set this value to 5, we can increase it later\nUpper_Limit_For_Numbered_List=5\nNumbered_List=\"(?=\" +Bound+\")\"+generate_number_list(Upper_Limit_For_Numbered_List)+\"(?=\" +Bound+\")\" \n\n\n# JT: 2018-08\n# Additionally, these words are \"protected\", meaning they shouldn't be further split themselves.\nSPECIAL_WORDS=r\"^http:|^HTTP:|^vs.|^c#.net|^C#.net|^'ve|^'s|^'re\"+\"(?=\" +Bound+\")\"\n\n\n# JT: 2018-09\n# Protect masked words\n\n\nMask_Rule=r\"x{80,80}[0-9]{1,2}\"\n# We will be tokenizing using these regexps as delimiters\n# Additionally, these things are \"protected\", meaning they shouldn't be further split themselves.\nProtected  = re.compile(\n    regex_or(\n        arbitraryAbbrev,\n        Mask_Rule, #JT\n        # Func_Name_Recursive, #JT\n        Hearts,\n        url,\n        Email,\n        SPECIAL_WORDS, #JT\n        OR_Words, #JT\n        Numbered_List, #JT\n        Windows_Path, #JT\n        Class_Func_Name, #JT\n        emoticon,\n        Func_Name, #JT\n        Comparison_Operators, #JT\n        Class_Name, #JT\n        File_Path_W_File_Name, #JT\n        #OR_Words, #JT\n        File_Ext, #JT\n        Hashtag,\n        #HTML_Tag, #JT\n        Path, #JT\n        timeLike,\n        #numNum,\n        numberWithCommas,\n        numComb,\n        emoticon,\n        Arrows,\n        entity,\n        punctSeq,\n        \n        separators,\n        decorations,\n        embeddedApostrophe,\n        AtMention), re.UNICODE)\n\n\n# Edge punctuation\n# Want: 'foo' => ' foo '\n# While also:   don't => don't\n# the first is considered \"edge punctuation\".\n# the second is word-internal punctuation -- don't want to mess with it.\n# BTO (2011-06): the edgepunct system seems to be the #1 source of problems these days.\n# I remember it causing lots of trouble in the past as well.  Would be good to revisit or eliminate.\n\n# Note the 'smart quotes' (http://en.wikipedia.org/wiki/Smart_quotes)\n#edgePunctChars    = r\"'\\\"“”‘’«»{}\\(\\)\\[\\]\\*&\" #add \\\\p{So}? (symbols)\nedgePunctChars    = u\"'\\\"“”‘’«»{}\\\\(\\\\)\\\\[\\\\]\\\\*&\" #add \\\\p{So}? (symbols)\nedgePunct    = \"[\" + edgePunctChars + \"]\"\nnotEdgePunct = \"[a-zA-Z0-9]\" # content characters\noffEdge = r\"(^|$|:|;|\\s|\\.|,)\"  # colon here gets \"(hello):\" ==> \"( hello ):\"\nEdgePunctLeft  = re.compile(offEdge + \"(\"+edgePunct+\"+)(\"+notEdgePunct+\")\", re.UNICODE)\nEdgePunctRight = re.compile(\"(\"+notEdgePunct+\")(\"+edgePunct+\"+)\" + offEdge, re.UNICODE)\n\n#JT: splitEdgePunct_software is adapted from splitEdgePunct function of tweet tokenizer \n#JT: we  donot have to add Func Rule here as Func Rule are not spiltted by edgePucnLeft & edgePucnRight\ndef splitEdgePunct_software(input):\n    # ##print(\"splitEdgePunct_software input: \",input)\n    # #first find the word identified by Func_Name_Recursive\n    # Func_Name_Recursive_Rule=re.compile(Func_Name_Recursive)\n    # Func_Name_Recursive_Words = Func_Name_Recursive_Rule.findall(input)\n\n    # ##print(\"Func_Name_Recursive_Words: \", Func_Name_Recursive_Words)\n\n\n    # #remove white space from the words identified by Func_Name_Recursive_Rule & save them to Func_Name_Recursive_Words_modified\n    # Func_Name_Recursive_Words_modified=[]\n    # Func_Name_Recursive_Words_white_space_removed=[]\n    \n\n    # for w in Func_Name_Recursive_Words:\n    #     #print(w)\n    #     w_ = re.sub(r\"[\\s]\", '', w)\n    #     Func_Name_Recursive_Words_white_space_removed.append((w,w_))\n    #     Func_Name_Recursive_Words_modified.append(w_)\n    \n    # #remove white space from the main input for those words which are identified by Func_Name_Recursive_Func_Rule\n    # for w in Func_Name_Recursive_Words_white_space_removed:\n    #     main_string = w[0]\n    #     space_removed_string = w[1]\n    #     input=input.replace(main_string,space_removed_string)\n\n    ##print(\"input: after removing spaces Func_Name_Recursive_Words_white_space_removed: \",input)\n    #first find the word identified by Class_Func_Rule\n    Class_Func_Rule=re.compile(Class_Func_Name)\n    Class_Func_Words = Class_Func_Rule.findall(input)\n\n\n    #remove white space from the words identified by Class_Func_Rule & save them to Class_Func_Words_modified\n    Class_Func_Words_modified=[]\n    Class_Func_Words_white_space_removed=[]\n    \n\n    for w in Class_Func_Words:\n        #print(\"Class_Func_Words: \",w)\n        w_ = re.sub(r\"[\\s]\", '', w)\n        #w_ = White_Space_Remove_From_Word(w)\n        #print(\"Class_Func_Words_white_space_removed: \",w_)\n        Class_Func_Words_white_space_removed.append((w,w_))\n        Class_Func_Words_modified.append(w_)\n    \n    #remove white space from the main input for those words which are identified by Class_Func_Rule\n    for w in Class_Func_Words_white_space_removed:\n        main_string = w[0]\n        space_removed_string = w[1]\n        input=input.replace(main_string,space_removed_string)\n\n\n    Func_Name_Rule=re.compile(Func_Name)\n    Func_Name_Words= Func_Name_Rule.findall(input)\n\n    Func_Name_Words_modified=[]\n    Func_Name_Words_white_space_removed=[]\n\n    \n\n    #now split sentence by white space\n    split_input=input.split()\n    \n\n    \n    ##print(\"Func_Name_Recursive_Words_modified: \",Func_Name_Recursive_Words_modified )\n    ##print(\"split input: \",split_input)\n\n   \n    \n    #apply EdgePunct rules on each word\n    special_words=[\"vs.\",\"http:\"]\n    output_tokens=[]\n    for word_main in split_input:\n        if word_main.lower() in special_words:\n            split_words=[word_main]\n        else:\n            split_words=Split_End_of_Sentence_Punc([word_main])\n\n        for word in split_words:\n            # if word in Func_Name_Recursive_Words_modified:\n            #     ##print(\"word found: \",word)\n            #     output_tokens.append(word)\n            if word in Class_Func_Words_modified:\n                output_tokens.append(word)\n            else:\n              word = EdgePunctLeft.sub(r\"\\1\\2 \\3\", word)  \n              word = EdgePunctRight.sub(r\"\\1\\2 \\3\", word) \n              output_tokens.append(word)\n\n\n    #join the extracted words\n    # \n    modified_input=\" \".join(output_tokens)\n    ##print(\"modified_input: \",modified_input)\n    ##print(\"\\n\\n\")\n\n    \n    #---------------------------------------------------------------------------------------------------------------------------\n    #---------------------------------------------------------------------------------------------------------------------------\n    #---------------------------------------------------------------------------------------------------------------------------\n    #-----------------sept 19: to add the space back to function names uncoment the following 2 loops---------------------------\"\n    #---------------------------------------------------------------------------------------------------------------------------\n    #---------------------------------------------------------------------------------------------------------------------------\n    #---------------------------------------------------------------------------------------------------------------------------\n    \n    #add the white space in the function back to revert to original input\n    # for w in Func_Name_Recursive_Words_white_space_removed:\n    #     main_string = w[0]\n    #     main_string_replace_space_w_bar=re.sub(r\"[\\s]\", '-----', main_string)\n    #     space_removed_string = w[1]\n    #     #modified_input=modified_input.replace(space_removed_string, main_string)\n    #     modified_input=modified_input.replace(space_removed_string, main_string_replace_space_w_bar)\n\n\n    # #add the white space in the function back to revert to original input\n    # for w in Class_Func_Words_white_space_removed:\n\n    #     main_string = w[0]\n    #     #print(\"main_string: \", main_string)\n    #     main_string_replace_space_w_bar=re.sub(r\"[\\s]\", '-----', main_string)\n    #     #print(\"main_string_replace_space_w_bar: \", main_string_replace_space_w_bar)\n    #     space_removed_string = w[1]\n    #     #modified_input=modified_input.replace(space_removed_string, main_string)\n    #     modified_input=modified_input.replace(space_removed_string, main_string_replace_space_w_bar)\n\n\n    \n\n   \n\n    #print(\"modified_input: \",modified_input)\n\n    return modified_input\n\n\n# JT: 2018-08: Split_End_of_Sentence_Punc(token_list) split the punctuation letter form the last token\n# 'Update the sdk version.' => 'Update the sdk version . '\n\ndef Split_End_of_Sentence_Punc(token_list):\n    if len(token_list)<=1:\n        return token_list\n    if len(token_list[-1])==1:\n        return token_list\n\n    arbitraryAbbrev_rule=re.compile(arbitraryAbbrev)\n    list_of_abbrev= arbitraryAbbrev_rule.findall(token_list[-1])\n    if len(list_of_abbrev)>0:\n        return token_list\n\n    list_of_punctuations=[\".\",\":\",\"?\",\";\",\"-\",\"!\",\",\"]\n    \n    \n    end_token=[s for s in list_of_punctuations if s==token_list[-1][-1] and s!=token_list[-1][-2]]\n    #print(\"end_token: \",end_token)\n    #if token_list[-1][-1]==\".\":\n    if len(end_token)==1:\n        end_punc_char=end_token[0]\n        token_list[-1]=token_list[-1][:-1]\n        token_list.append(end_punc_char)\n    return token_list\n\n\n\n\n\n\n\n# simpleTokenize_software is adapted from simpleTokenize function of the tweet tokenizaer only \n\ndef simpleTokenize_software(text):\n\n    # JT:2018-08:  Do the software domain specific splitting \n    splitPunctText = splitEdgePunct_software(text)\n\n    textLength = len(splitPunctText)\n    ##print(\"splitPunctText: \",splitPunctText)\n\n    # BTO: the logic here got quite convoluted via the Scala porting detour\n    # It would be good to switch back to a nice simple procedural style like in the Python version\n    # ... Scala is such a pain.  Never again.\n\n    # Find the matches for subsequences that should be protected,\n    # e.g. URLs, 1.0, U.N.K.L.E., 12:53\n    bads = []\n    badSpans = []\n\n    for match in Protected.finditer(splitPunctText):\n        # The spans of the \"bads\" should not be split.\n        ##print(match)\n        if (match.start() != match.end()): #unnecessary?\n            bads.append( [splitPunctText[match.start():match.end()]] )\n            badSpans.append( (match.start(), match.end()) )\n    ##print(\"bads: \",bads)\n    # Create a list of indices to create the \"goods\", which can be\n    # split. We are taking \"bad\" spans like\n    #     List((2,5), (8,10))\n    # to create\n    #     List(0, 2, 5, 8, 10, 12)\n    # where, e.g., \"12\" here would be the textLength\n    # has an even length and no indices are the same\n    indices = [0]\n    for (first, second) in badSpans:\n        indices.append(first)\n        indices.append(second)\n    indices.append(textLength)\n\n    # Group the indices and map them to their respective portion of the string\n    splitGoods = []\n    for i in range(0, len(indices), 2):\n        goodstr = splitPunctText[indices[i]:indices[i+1]]\n        splitstr = goodstr.strip().split(\" \")\n        splitGoods.append(splitstr)\n\n    #  Reinterpolate the 'good' and 'bad' Lists, ensuring that\n    #  additonal tokens from last good item get included\n    zippedStr = []\n    for i in range(len(bads)):\n        zippedStr = addAllnonempty(zippedStr, splitGoods[i])\n        zippedStr = addAllnonempty(zippedStr, bads[i])\n    zippedStr = addAllnonempty(zippedStr, splitGoods[len(bads)])\n\n    # BTO: our POS tagger wants \"ur\" and \"you're\" to both be one token.\n    # Uncomment to get \"you 're\"\n    splitStr = []\n    for tok in zippedStr:\n       splitStr.extend(splitToken(tok))\n    zippedStr = splitStr\n    ##print(\"zippedStr: \",zippedStr)\n    return zippedStr\n\n    #zippedStr_updated=Split_End_of_Sentence_Punc(zippedStr)\n\n    # #print(\"zippedStr\", zippedStr)\n    # #print(\"zippedStr_updated\", zippedStr_updated)\n\n    #return zippedStr_updated\n\n\n\ndef addAllnonempty(master, smaller):\n    for s in smaller:\n        strim = s.strip()\n        if (len(strim) > 0):\n            master.append(strim)\n    return master\n\n# \"foo   bar \" => \"foo bar\"\ndef squeezeWhitespace(input):\n    return Whitespace.sub(\" \", input).strip()\n\n# Final pass tokenization based on special patterns\ndef splitToken(token):\n    m = Contractions.search(token)\n    if m:\n        return [m.group(1), m.group(2)]\n    return [token]\n\n# Assume 'text' has no HTML escaping.\ndef tokenize_text(text):\n    return simpleTokenize_software(squeezeWhitespace(text))\n\n\n# Twitter text comes HTML-escaped, so unescape it.\n# We also first unescape &amp;'s, in case the text has been buggily double-escaped.\ndef normalizeTextForTagger(text):\n    assert sys.version_info[0] >= 3 and sys.version_info[1] > 3, 'Python version >3.3 required'\n    text = text.replace(\"&amp;\", \"&\")\n    text = html.unescape(text)\n    return text\n\n\n# JT: 2018-08:  Split_On_Multiple_Dot(input_word), \n# 'the queries....it' => \"queries .... it\"\ndef Split_On_Multiple_Dot(input_word):\n    new_tokens=[input_word]\n    if len(input_word)<=0: \n        return new_tokens\n\n    multiple_dot=r'\\w*[.][.]+\\w*'\n    multiple_dot_rule=re.compile(multiple_dot)\n    words_with_multiple_dots = multiple_dot_rule.findall(input_word)\n\n    new_tokens=[]\n    for word in words_with_multiple_dots:\n        splitter=\"\"\n        for i in range(0,word.count(\".\")):\n            splitter+=\".\"\n        word_splitted = word.split(splitter)\n        \n        split_word_index=0\n        for split_word in word_splitted:\n            if split_word ==\"\":continue\n            if split_word_index>0:\n                new_tokens.append(splitter)\n            new_tokens.append(split_word)\n            split_word_index+=1\n        if split_word_index==1:\n            new_tokens.append(splitter)\n    return new_tokens\n\n# JT:2018-08: Split_On_Non_function_end_parenthesis(input_word) splits the surrounding parenthesis of a word only if the word is not a function\n# '{\"kind\"=>\"GGG\"}' =>>  ' { \"kind\"=>\"GGG\" } '\ndef Split_On_Non_function_end_parenthesis(input_word):\n    ##print(\"input_word for Split_On_Non_function_end_parenthesis:\", input_word)\n    new_token=[input_word]\n\n    if len(input_word)==1:\n        return new_token\n\n    #if the word is from a numbered list do not split end bracket\n    numbered_list_rule=re.compile(Numbered_List)\n    numbered_list_words = numbered_list_rule.findall(input_word)\n\n    if len(numbered_list_words)>0:\n        return new_token\n\n    #if the word is from a emoticon do not split end bracket\n    emoticon_rule=re.compile(emoticon)\n    emoticon_words = emoticon_rule.findall(input_word)\n\n    if len(emoticon_words)>0:\n        return new_token\n\n    #if the word is from a class function do not split end bracket\n    class_func_name_rule=re.compile(Class_Func_Name)\n    class_func_words = class_func_name_rule.findall(input_word)\n\n    if len(class_func_words)>0:\n        return new_token\n\n    #if the word is from a function do not split end bracket\n    func_name_rule=re.compile(Func_Name)\n    func_words = func_name_rule.findall(input_word)\n    if len(func_words)>0:\n        return new_token\n\n    #otherwise check if there is any end bracket, if then add space infront of it\n    if \")\" in input_word and \"(\" not in input_word:\n        input_word_updated=input_word.replace(\")\",\" ) \")\n        new_token=[input_word_updated]\n    elif \"(\" in input_word and \")\" not in input_word:\n        input_word_updated=input_word.replace(\"(\",\" ( \")\n        new_token=[input_word_updated]\n\n    elif \"]\" in input_word and \"[\" not in input_word:\n        input_word_updated=input_word.replace(\"]\",\" ] \")\n        new_token=[input_word_updated]\n\n    elif \"[\" in input_word and \"]\" not in input_word:\n        input_word_updated=input_word.replace(\"[\",\" [ \")\n        new_token=[input_word_updated]\n    \n    return new_token\n\n# JT: 2018-08: Split_On_last_letter_Colon_Mark(input_word) will create a spcace between Quote and letter\n# ' Example:\"'=>'Example :\"'\ndef Split_On_last_letter_Colon_Mark(input_word):\n    #print(\"inside Split_On_last_letter_Punc_Mark\", input_word, len(input_word))\n    new_token=[input_word]\n    if len(input_word)<=0: \n        return new_token\n\n    sp_rule=re.compile(SPECIAL_WORDS)\n    sp_rule_words=sp_rule.findall(input_word)\n    if len(sp_rule_words)<=0:\n        return new_token\n\n    \n    if len(input_word)==1:\n        return new_token\n\n    #if count of \":\" is more than word then it is probably a word mentioning a class name, so then we are not going to split it\n    if input_word.count(\":\")>1:\n        return new_token\n    #if is not a class name, then we are going to add space before token, Netbeans: >> Netbeans :\n    if input_word[-1]==\":\":\n        input_word_updated=input_word[:-1]\n        #input_word_updated=input_word[:-1]+' :'\n        ##print(\"input_word_updated: \", input_word_updated)\n        new_token=[input_word_updated,\":\"]\n    return new_token\n\n# JT: 2018-08: Split_On_last_letter_Quote_Mark(input_word) will create a spcace between Quote and letter\n# ' Netbeans\"'=>'Netbeans \"'\ndef Split_On_last_letter_Quote_Mark(input_word):\n    ##print(\"input_word for Split_On_Non_function_end_parenthesis:\", input_word)\n    new_token=[input_word]\n\n    if len(input_word)<=1:\n        return new_token\n\n    #if the word is from a class function do not split end bracket\n    class_func_name_rule=re.compile(Class_Func_Name)\n    class_func_words = class_func_name_rule.findall(input_word)\n\n    if len(class_func_words)>0:\n        return new_token\n\n    #if the word is from a function do not split end bracket\n    func_name_rule=re.compile(Func_Name)\n    func_words = func_name_rule.findall(input_word)\n    if len(func_words)>0:\n        return new_token\n    if input_word.count(\"'\")==1 and input_word[-1]==\"'\":\n        #input_word_updated=input_word[:-1]+\" '\"\n        #new_token=[input_word_updated]\n        input_word_updated=input_word[:-1]\n        new_token=[input_word_updated,\" '\"]\n    \n    if input_word.count('\"')==1 and input_word[-1]=='\"':\n        #input_word_updated=input_word[:-1]+' \"'\n        #new_token=[input_word_updated]\n        input_word_updated=input_word[:-1]\n        new_token=[input_word_updated,' \"']\n    \n        \n    \n    return new_token\n\n# JT: 2018-08: Split_Words_Inside_Parenthesis(input_word) will create a in between spcace between parenthesis words\n# '{2,4,5,6,7,8}' => ' { 2 , 4 , 5 , 6 , 7 , 8 } ' \n\ndef Split_Words_Inside_Parenthesis(input_word):\n    new_token=[input_word]\n    if len(input_word)<=0:\n        return new_token\n\n    if (input_word[0]==\"[\" and input_word[-1]==\"]\") or (input_word[0]==\"{\"and input_word[-1]==\"}\") or (input_word[0]==\"(\"and input_word[-1]==\")\"):\n        #print(input_word)\n        input_word = input_word.replace(\",\",\" , \")\n        input_word = input_word.replace(\"{\",\" { \")\n        input_word = input_word.replace(\"}\",\" } \")\n        input_word = input_word.replace(\"[\",\" [ \")\n        input_word = input_word.replace(\"]\",\" ] \")\n        new_token=[input_word]\n        #print(input_word)\n    return new_token\n\n# JT: 2018-08: Split_Parenthesis_At_End_of_URL(input_word) will split the end of closing parenthesis from the input word if the input word is a url\n# 'https://www.sample-videos.com/text/Sample-text-file-10kb.txt)' => 'https://www.sample-videos.com/text/Sample-text-file-10kb.txt )'\n# 'https://www.sample-videos.com/text/(Sample-text-file-10kb.txt)' => 'https://www.sample-videos.com/text/(Sample-text-file-10kb.txt)'\n\ndef Split_Parenthesis_At_End_of_URL(input_word):\n    new_token=[input_word]\n    if len(input_word)<=0:\n        return new_token\n        \n    url_rule=re.compile(url)\n    url_words = url_rule.findall(input_word)\n    word_wo_balanced_paren = []\n    for word in url_words:\n        bal_paren_word = find_word_w_balanced_paren(word)\n        if len(bal_paren_word)==0:\n            word_wo_balanced_paren.append(word)\n    if len(url_words)>0 and len(word_wo_balanced_paren)>0:\n        if input_word[-1]==\")\" or input_word[-1]==\"]\" or input_word==\"}\":\n            main_url=input_word[:-1]\n            end_paren=\")\"\n            new_token=[main_url,end_paren]\n            #print(input_word2)\n\n\n    #print(url_words)\n    return new_token\n\ndef Split_Punc_At_End_of_Word(input_word):\n    new_token=[input_word]\n    list_of_punctuations=[\".\",\":\",\"?\",\";\",\"-\",\"!\",\",\"]\n    if input_word[-1] in list_of_punctuations:\n        new_token=[]\n        wo_punc_word=input_word[:-1]\n        punc_mark = input_word[-1]\n        new_token.append(wo_punc_word)\n        new_token.append(punc_mark)\n\n    return new_token\n\n\ndef SO_Tokenizer_wrapper(tokens):\n    #print(\"input token to SO_TOkenizer_wrapper: \",tokens)\n    end_of_sent_punc_split_tokens=Split_End_of_Sentence_Punc(tokens)\n    end_of_word_punc_split_tokens=[]\n\n    for w in end_of_sent_punc_split_tokens: \n        end_of_word_punc_split_tokens.extend((Split_Punc_At_End_of_Word(w)))\n    \n    dot_split_tokens=[]\n\n    for token in end_of_word_punc_split_tokens:\n        multiple_dot_splitted_result = Split_On_Multiple_Dot(token)\n        if len(multiple_dot_splitted_result)==0:\n            dot_split_tokens.append(token)\n            continue\n        dot_split_tokens.extend(multiple_dot_splitted_result)\n\n    end_parenthesis_split_tokens=[]\n\n    for token in dot_split_tokens:\n        end_parenthesis_split_tokens.extend(Split_On_Non_function_end_parenthesis(token))\n\n    end_paren_split_tokens=[]\n    for token in end_parenthesis_split_tokens:\n        end_paren_split_tokens.extend(Split_On_last_letter_Colon_Mark(token))\n\n    end_of_quote_split_tokens=[]\n    for token in end_paren_split_tokens:\n        end_of_quote_split_tokens.extend(Split_On_last_letter_Quote_Mark(token))\n\n    inside_parenthesis_split_words=[]\n    for token in end_of_quote_split_tokens:\n        inside_parenthesis_split_words.extend(Split_Words_Inside_Parenthesis(token))\n\n    \n\n    url_word_end_paren_removed_tokens=[]\n    for token in inside_parenthesis_split_words:\n        url_word_end_paren_removed_tokens.extend(Split_Parenthesis_At_End_of_URL(token))\n\n\n    new_tokens=url_word_end_paren_removed_tokens\n\n\n    multi_space_removed_tokens=[]\n    for w in new_tokens:\n        #print(w,len(w))\n        w =re.sub( '\\s+', ' ',w).strip()\n        \n        #print(w,len(w))\n        multi_space_removed_tokens.append(w)\n\n\n    \n\n   \n    new_token=multi_space_removed_tokens\n    # print(\"new_tokens\", new_tokens)\n\n    return new_tokens\n\ndef match_paren(current,previous):\n    if current==\")\" and previous==\"(\":\n        return True\n    if current==\"}\" and previous==\"{\":\n        return True\n    if current==\"]\" and previous==\"[\":\n        return True\n    return False\n\ndef find_word_w_balanced_paren(line):\n    list_of_w_balaned_parentheses=[]\n    opening_barckets=[\"(\",\"[\",\"{\"]\n    closing_barckets=[\")\",\"]\",\"}\"]\n    for word in line.split():\n        count_first=word.count(\"(\")\n        count_second=word.count(\"{\")\n        count_third=word.count(\"[\")\n        if count_first+count_second+count_third <=1 and (word[0]==\"(\" or word[0]==\"{\" and word[0]==\"[\"): continue\n        stack=[]\n        paren_found=False\n        paren_balanced=False\n        if \"(\" in word and \")\" not in word or \")\" in word and \"(\" not in word: \n            continue\n        if \"{\" in word and \"}\" not in word or \"}\" in word and \"{\" not in word: \n            continue\n        if \"[\" in word and \"]\" not in word or \"]\" in word and \"[\" not in word: \n            continue\n        for char in word:\n            if char in opening_barckets:\n                ##print(word,char)\n                paren_found=True\n                stack.append(char)\n            if char in closing_barckets:\n                ##print(word,char)\n                if len(stack)>0:\n                    prev_paren=stack.pop()\n                    ##print(char,prev_paren)\n                    paren_balanced=match_paren(char,prev_paren)\n                    ##print(paren_balanced)\n                if paren_balanced==False:\n                    break\n        if len(stack)==0 and paren_found==True and paren_balanced==True:\n            list_of_w_balaned_parentheses.append(word)\n            \n    return list_of_w_balaned_parentheses\n\n\ndef Mask_Nested_Paren_HTML_Word(text):\n    base=\"\"\n    counter=0\n    Nested_Parenthesis_Words_Dict={}\n\n    for i in range(0,80):\n        base+=\"x\"\n    ##print(base)\n    HTML_Tag_Rule=re.compile(HTML_Tag)\n    HTML_Tag_Words = HTML_Tag_Rule.findall(text)\n\n    #print(\"HTML_Tag_Words: \",HTML_Tag_Words)\n\n    for w in HTML_Tag_Words:\n        counter+=1\n        mask_string=base+str(counter)\n        #print(\"mask stirng: \", mask_string)\n        Nested_Parenthesis_Words_Dict[mask_string]=w\n        #print(\"text before replace: \",text)\n        text=text.replace(w,mask_string)\n        #print(\"text after replace: \",text)\n\n    #print(\"HTML_masked_text: \",text)\n    Neseted_Paren_Words = find_word_w_balanced_paren(text)\n    \n    #print(\"Neseted_Paren_Words from Mask_Nested_Parenthesis_Words: \",Neseted_Paren_Words)\n    \n    \n    modified_text_input=[]\n    for word in text.split():\n        if word in Neseted_Paren_Words:\n            #c#print(word)\n            counter+=1\n            mask_string=base+str(counter)\n            Nested_Parenthesis_Words_Dict[mask_string]=word\n            modified_text_input.append(mask_string)\n        else:\n            modified_text_input.append(word)\n    #print(\"modified_text_input tokens: \", modified_text_input)\n    modified_text_input_str=\" \".join(modified_text_input)\n    return (Nested_Parenthesis_Words_Dict, modified_text_input_str,base)\n\n\n\ndef Resotre_Masked_Words(tokens,nested_parenthesis_words_dict, base):\n    tokens_unmasked= []\n    #print(\"input to Resotre_Masked_Words: \", tokens, nested_parenthesis_words_dict)\n    #print(\"nested_parenthesis_words_dict : \",nested_parenthesis_words_dict)\n    mask_base=\"\"\n    mask_base=\"\"\n\n\n    for i in range(0,79):\n        mask_base+=\"x\"\n    for token in tokens:\n        #print(\"token: \",token)\n        token_nested=False\n        mask_val=\"\"\n        for nested_word in nested_parenthesis_words_dict:\n            #print(nested_words)\n            if nested_word in token:\n                token_nested=True\n                mask_val=nested_word\n                break\n        if token_nested and mask_val!=\"\":\n            main_word=nested_parenthesis_words_dict[mask_val]\n            unmasked_word=token.replace(mask_val, main_word)\n            tokens_unmasked.append(unmasked_word)\n        else:\n            tokens_unmasked.append(token)\n\n\n        # if token not in nested_parenthesis_words_dict:\n        #     tokens_unmasked.append(token)\n        # else:\n        #     main_word=nested_parenthesis_words_dict[token]\n        #     tokens_unmasked.append(main_word)\n    tokens_unmasked_wrapper=[]\n    for token in tokens_unmasked:\n        if base in token:\n            split_token=token.split()\n            for t in split_token:\n                if t in nested_parenthesis_words_dict:\n                    t=nested_parenthesis_words_dict[t]\n                tokens_unmasked_wrapper.append(t)\n        else:\n            tokens_unmasked_wrapper.append(token)\n\n            \n    ##print(len(tokens_unmaskedc))\n    return tokens_unmasked_wrapper\n\n\n# This is intended for raw tweet text -- we do some HTML entity unescaping before running the tagger.\n#\n# This function normalizes the input text BEFORE calling the tokenizer.\n# So the tokens you get back may not exactly correspond to\n# substrings of the original text.\n\ndef tokenize(text):\n    ##print(\"main input to tokenizer: \",text)\n    (nested_parenthesis_words_dict , nested_paren_masked_text ,base) = Mask_Nested_Paren_HTML_Word(text)\n    # print(\"nested_paren_masked_text: \", nested_paren_masked_text)\n    # print(\"nested_parenthesis_words_dict: \", nested_parenthesis_words_dict)\n    # print(\"nested_paren_masked_text: \",nested_paren_masked_text)\n    tokens = tokenize_text(normalizeTextForTagger(nested_paren_masked_text))\n\n    tokens_unmasked=Resotre_Masked_Words(tokens,nested_parenthesis_words_dict,base)\n    ##print(\"tokens_unmasked: \", tokens_unmasked)\n    tokens_wrapped = SO_Tokenizer_wrapper(tokens_unmasked)\n\n    # tokens_removed_empty=[w for w in tokens_wrapped if w.strip()!='']\n    tokens_removed_empty=[w for w in tokens_wrapped if w.strip()!='']\n    output=[]\n    for w in tokens_removed_empty:\n        w_split=w.split(\" \")\n        if len(w_split)>1:\n            output.extend(w_split)\n        else:\n            output.append(w)\n\n\n    \n    # print(\"tokens_removed_empty: \",tokens_removed_empty)\n    # return tokens_wrapped\n    # return tokens_removed_empty\n    return output\n\ndef White_Space_Remove_From_Word(word,filler_string=\"\"):\n    white_space_removed_word=\"\"\n    for w in word.split():\n        if w.strip()==\"\":\n            continue\n        white_space_removed_word+=filler_string+w\n    return white_space_removed_word\n\nif __name__ == '__main__':\n    # for line in sys.stdin:\n    #     #print(' '.join(tokenizeRawTweetText(line)))\n   # text=\"In js $http.get().success GNU/Linux 4.2.6-200.fc22.x86_64 you call entityManager.fetchMetadata().then(success, failed) method's first data parameter in templates/your_template/index.php;\"\n    #text='I do think that the request I send to my API\\'s should be more like {post=>{\"kind\"=>\"GGG\"}} and not {\"kind\"=>\"GGG\"} of I have to find a way for my api to work with the request I send now.'\n    #text=\"I tried to add a manual refresh on the history.state change, I found something like this:\"\n    #text=\"In js you call entityManager.fetchMetadata().then(success, failed); After the promise of fetchMetadata() is resolved, breeze metadata of variable entityManager is full-filled and you can start working with your server-side objects in js with breeze!\"\n    #text=\"Then in vs. e.g. another file (res.php) I have a sql request and I display results .\"\n    #text=\"Modify the img tag like: <'img src=\\\"<'c:url value='<%=request.getContextPath()%>/images/logo.jpg'> \"\n    #text=\"The KafkaMessageDrivenChannelAdapter (<int-kafka:message-driven-channel-adapter>) is for you!\"\n    #text=\"keys() doesn't return a Set, it returns an Enumeration<K>.\"\n    #text=\"localhost:9200/_search\"\n    #text=\"Finally, since O((n^2 , n) 2) = O(n^2) you get that the terms that include the sum dominate the runtime and that is why the algorithm is O(n^2)\"\n    #text=\"apache_setenv('sessionID', session_id(), TRUE)\"\n    #text=\":)\"\n    # #print(\"input text: \",text)\n    # text=\"Lines 2, 4, and 8 run in O(1) time, so {2,4,5,6,7,8} run in O(1 + 1 + A.Length + 1) = O(A.Length)time.\"\n    # text='Use android:button\"@btmImage link\"'\n    #text=\"[ERROR] [gwtearthdemo] - Line 96:  O(1) time, so {2,4,5,6,7,8} run in O(1 + 1 + A.Length + 1) = O(A.Length)time.\"\n    #text=\"So when we write a function like preorderTree :: Tree a -> [a].\"\n    #text=\"But now that the div's are vs. floating, they don't push #main's white background down c.net.\"\n    #text=\"Example: I've confirmed that if I pass a url to some other sample url like (https://www.sample-videos.com/text/Sample-text-file-10kb.txt), my custom webview and google docs will display the results correctly, so the failure only happens when using a url/download going to our custom server.\"\n    #text=\"Lines 2, 4, and 8 run in O(1) time, so {2,4,5,6,7,8} run in O(1 + 1 + A.Length + 1) = O(A.Length)time.\"\n    # text=\"TextView       has setText(String), but when looking on the Doc, I don't see one for GridLayout.\"\n    # text=\"Even when I       use SKAction.animateWithTextures(atlasFrames, timePerFrame: 0.1, resize: true, restore: false), with resize set to true and false, the problem persists.\"\n    text=\"C(Rest API)\"\n    print(\"main text: \",text)\n    tokens = tokenize(text)\n    print(\"output tokens: \",tokens)\n    print(\"output: \",\" \".join(tokens))\n\n    "
  },
  {
    "path": "code/BERT_NER/utils_preprocess/stokenizer_base_rules.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nAuthor: Jeniya Tabassum <jeniya.tabassum@gmail.com>\n\nstokenizer -- a tokenizer designed for StackOverflow text.\n\nThis tokenizer is build on top of a tweet tokenizer : https://github.com/myleott/ark-twokenize-py/blob/master/twokenize.py\nWe updated the rules in tweet tokenizer to adjust with the software domain texts.\n\nBelow is the history of the development fo the  tweet tokenizer\n(1) Brendan O'Connor wrote original version in Python, http://github.com/brendano/tweetmotif\n       TweetMotif: Exploratory Search and Topic Summarization for Twitter.\n       Brendan O'Connor, Michel Krieger, and David Ahn.\n       ICWSM-2010 (demo track), http://brenocon.com/oconnor_krieger_ahn.icwsm2010.tweetmotif.pdf\n(2a) Kevin Gimpel and Daniel Mills modified it for POS tagging for the CMU ARK Twitter POS Tagger\n(2b) Jason Baldridge and David Snyder ported it to Scala\n(3) Brendan bugfixed the Scala port and merged with POS-specific changes\n    for the CMU ARK Twitter POS Tagger\n(4) Tobi Owoputi ported it back to Java and added many improvements (2012-06)\n(5) Myle Ott ported it to Python3 .\n\n\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport operator\nimport re\nimport sys\n\ntry:\n    from html.parser import HTMLParser\nexcept ImportError:\n    from HTMLParser import HTMLParser\n\ntry:\n    import html\nexcept ImportError:\n    pass\n\n#items=\"a|b => regex_or(items) ==> (?:a|b)\ndef regex_or(*items):\n    return '(?:' + '|'.join(items) + ')'\n\nContractions = re.compile(u\"(?i)(\\w+)(n['’′]t|['’′]ve|['’′]ll|['’′]d|['’′]re|['’′]s|['’′]m)$\", re.UNICODE)\nWhitespace = re.compile(u\"[\\s\\u0020\\u00a0\\u1680\\u180e\\u202f\\u205f\\u3000\\u2000-\\u200a]+\", re.UNICODE)\n\npunctChars = r\"['\\\"“”‘’.?!…,:;]\"\n#punctSeq   = punctChars+\"+\"  #'anthem'. => ' anthem '.\npunctSeq   = r\"['\\\"“”‘’]+|[.?!,…]+|[:;]+\" #'anthem'. => ' anthem ' .\nentity     = r\"&(?:amp|lt|gt|quot);\" #html tag entities &quot; => \"\n#  URLs\n\n\n# BTO 2012-06: everyone thinks the daringfireball regex should be better, but they're wrong.\n# If you actually empirically test it the results are bad.\n# Please see https://github.com/brendano/ark-tweet-nlp/pull/9\n\nurlStart1  = r\"(?:https?://|\\bwww\\.)\"\ncommonTLDs = r\"(?:com|org|edu|gov|net|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|pro|tel|travel|xxx)\"\nccTLDs   = r\"(?:ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|\" + \\\nr\"bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|\" + \\\nr\"er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|\" + \\\nr\"hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|\" + \\\nr\"lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|\" + \\\nr\"nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|\" + \\\nr\"sl|sm|sn|so|sr|ss|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|\" + \\\nr\"va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw)\" #TODO: remove obscure country domains?\nurlStart2  = r\"\\b(?:[A-Za-z\\d-])+(?:\\.[A-Za-z0-9]+){0,3}\\.\" + regex_or(commonTLDs, ccTLDs) + r\"(?:\\.\"+ccTLDs+r\")?(?=\\W|$)\"\nurlBody    = r\"(?:[^\\.\\s<>][^\\s<>]*?)?\"\nurlExtraCrapBeforeEnd = regex_or(punctChars, entity) + \"+?\"\nurlEnd     = r\"(?:\\.\\.+|[<>]|\\s|$)\"\nurl        = regex_or(urlStart1, urlStart2) + urlBody + \"(?=(?:\"+urlExtraCrapBeforeEnd+\")?\"+urlEnd+\")\"\n\n\n# Numeric\ntimeLike   = r\"\\d+(?::\\d+){1,2}\"\n#numNum     = r\"\\d+\\.\\d+\"\nnumberWithCommas = r\"(?:(?<!\\d)\\d{1,3},)+?\\d{3}\" + r\"(?=(?:[^,\\d]|$))\"\nnumComb  = u\"[\\u0024\\u058f\\u060b\\u09f2\\u09f3\\u09fb\\u0af1\\u0bf9\\u0e3f\\u17db\\ua838\\ufdfc\\ufe69\\uff04\\uffe0\\uffe1\\uffe5\\uffe6\\u00a2-\\u00a5\\u20a0-\\u20b9]?\\\\d+(?:\\\\.\\\\d+)+%?\"\n\n# Abbreviations\nboundaryNotDot = regex_or(\"$\", r\"\\s\", r\"[“\\\"?!,:;]\", entity)\naa1  = r\"(?:[A-Za-z]\\.){2,}(?=\" + boundaryNotDot + \")\"\naa2  = r\"[^A-Za-z](?:[A-Za-z]\\.){1,}[A-Za-z](?=\" + boundaryNotDot + \")\"\nstandardAbbreviations = r\"\\b(?:[Mm]r|[Mm]rs|[Mm]s|[Dd]r|[Ss]r|[Jj]r|[Rr]ep|[Ss]en|[Ss]t)\\.\"\narbitraryAbbrev = regex_or(aa1, aa2, standardAbbreviations)\nseparators  = \"(?:--+|―|—|~|–|=)\"\ndecorations = u\"(?:[♫♪]+|[★☆]+|[♥❤♡]+|[\\u2639-\\u263b]+|[\\ue001-\\uebbb]+)\"\nthingsThatSplitWords = r\"[^\\s\\.,?\\\"]\"\nembeddedApostrophe = thingsThatSplitWords+r\"+['’′]\" + thingsThatSplitWords + \"*\"\n\n#  Emoticons\n# myleott: in Python the (?iu) flags affect the whole expression\n#normalEyes = \"(?iu)[:=]\" # 8 and x are eyes but cause problems\nnormalEyes = \"[:=]\" # 8 and x are eyes but cause problems\nwink = \"[;]\"\nnoseArea = \"(?:|-|[^a-zA-Z0-9 ])\" # doesn't get :'-(\nhappyMouths = r\"[D\\)\\]\\}]+\"\nsadMouths = r\"[\\(\\[\\{]+\"\ntongue = \"[pPd3]+\"\notherMouths = r\"(?:[oO]+|[/\\\\]+|[vV]+|[Ss]+|[|]+)\" # remove forward slash if http://'s aren't cleaned\n\n# mouth repetition examples:\n# @aliciakeys Put it in a love song :-))\n# @hellocalyclops =))=))=)) Oh well\n\n# myleott: try to be as case insensitive as possible, but still not perfect, e.g., o.O fails\n#bfLeft = u\"(♥|0|o|°|v|\\\\$|t|x|;|\\u0ca0|@|ʘ|•|・|◕|\\\\^|¬|\\\\*)\".encode('utf-8')\nbfLeft = u\"(♥|0|[oO]|°|[vV]|\\\\$|[tT]|[xX]|;|\\u0ca0|@|ʘ|•|・|◕|\\\\^|¬|\\\\*)\"\nbfCenter = r\"(?:[\\.]|[_-]+)\"\nbfRight = r\"\\2\"\ns3 = r\"(?:--['\\\"])\"\ns4 = r\"(?:<|&lt;|>|&gt;)[\\._-]+(?:<|&lt;|>|&gt;)\"\ns5 = \"(?:[.][_]+[.])\"\n# myleott: in Python the (?i) flag affects the whole expression\n#basicface = \"(?:(?i)\" +bfLeft+bfCenter+bfRight+ \")|\" +s3+ \"|\" +s4+ \"|\" + s5\nbasicface = \"(?:\" +bfLeft+bfCenter+bfRight+ \")|\" +s3+ \"|\" +s4+ \"|\" + s5\n\neeLeft = r\"[＼\\\\ƪԄ\\(（<>;ヽ\\-=~\\*]+\"\neeRight= u\"[\\\\-=\\\\);'\\u0022<>ʃ）/／ノﾉ丿╯σっµ~\\\\*]+\"\neeSymbol = r\"[^A-Za-z0-9\\s\\(\\)\\*:=-]\"\neastEmote = eeLeft + \"(?:\"+basicface+\"|\" +eeSymbol+\")+\" + eeRight\n\noOEmote = r\"(?:[oO]\" + bfCenter + r\"[oO])\"\n\n\nemoticon = regex_or(\n        # Standard version  :) :( :] :D :P\n        \"(?:>|&gt;)?\" + regex_or(normalEyes, wink) + regex_or(noseArea,\"[Oo]\") + regex_or(tongue+r\"(?=\\W|$|RT|rt|Rt)\", otherMouths+r\"(?=\\W|$|RT|rt|Rt)\", sadMouths, happyMouths),\n\n        # reversed version (: D:  use positive lookbehind to remove \"(word):\"\n        # because eyes on the right side is more ambiguous with the standard usage of : ;\n        regex_or(\"(?<=(?: ))\", \"(?<=(?:^))\") + regex_or(sadMouths,happyMouths,otherMouths) + noseArea + regex_or(normalEyes, wink) + \"(?:<|&lt;)?\",\n\n        #inspired by http://en.wikipedia.org/wiki/User:Scapler/emoticons#East_Asian_style\n        eastEmote.replace(\"2\", \"1\", 1), basicface,\n        # iOS 'emoji' characters (some smileys, some symbols) [\\ue001-\\uebbb]\n        # TODO should try a big precompiled lexicon from Wikipedia, Dan Ramage told me (BTO) he does this\n\n        # myleott: o.O and O.o are two of the biggest sources of differences\n        #          between this and the Java version. One little hack won't hurt...\n        oOEmote\n)\n\nHearts = \"(?:<+/?3+)+\" #the other hearts are in decorations\n\nArrows = regex_or(r\"(?:<*[-―—=]*>+|<+[-―—=]*>*)\", u\"[\\u2190-\\u21ff]+\")\n\n# BTO 2011-06: restored Hashtag, AtMention protection (dropped in original scala port) because it fixes\n# \"hello (#hashtag)\" ==> \"hello (#hashtag )\"  WRONG\n# \"hello (#hashtag)\" ==> \"hello ( #hashtag )\"  RIGHT\n# \"hello (@person)\" ==> \"hello (@person )\"  WRONG\n# \"hello (@person)\" ==> \"hello ( @person )\"  RIGHT\n# ... Some sort of weird interaction with edgepunct I guess, because edgepunct\n# has poor content-symbol detection.\n\n# This also gets #1 #40 which probably aren't hashtags .. but good as tokens.\n# If you want good hashtag identification, use a different regex.\nHashtag = \"#[a-zA-Z0-9_]+\"  #optional: lookbehind for \\b\n#optional: lookbehind for \\b, max length 15\nAtMention = \"[@＠][a-zA-Z0-9_]+\"\n\n# I was worried this would conflict with at-mentions\n# but seems ok in sample of 5800: 7 changes all email fixes\n# http://www.regular-expressions.info/email.html\nBound = r\"(?:\\W|^|$)\"\nEmail = regex_or(\"(?<=(?:\\W))\", \"(?<=(?:^))\") + r\"[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,4}(?=\" +Bound+\")\"\n\n# We will be tokenizing using these regexps as delimiters\n# Additionally, these things are \"protected\", meaning they shouldn't be further split themselves.\nProtected  = re.compile(\n    regex_or(\n        Hearts,\n        url,\n        Email,\n        timeLike,\n        #numNum,\n        numberWithCommas,\n        numComb,\n        emoticon,\n        Arrows,\n        entity,\n        punctSeq,\n        arbitraryAbbrev,\n        separators,\n        decorations,\n        embeddedApostrophe,\n        Hashtag,\n        AtMention), re.UNICODE)\n\n# Edge punctuation\n# Want: 'foo' => ' foo '\n# While also:   don't => don't\n# the first is considered \"edge punctuation\".\n# the second is word-internal punctuation -- don't want to mess with it.\n# BTO (2011-06): the edgepunct system seems to be the #1 source of problems these days.\n# I remember it causing lots of trouble in the past as well.  Would be good to revisit or eliminate.\n\n# Note the 'smart quotes' (http://en.wikipedia.org/wiki/Smart_quotes)\n#edgePunctChars    = r\"'\\\"“”‘’«»{}\\(\\)\\[\\]\\*&\" #add \\\\p{So}? (symbols)\nedgePunctChars    = u\"'\\\"“”‘’«»{}\\\\(\\\\)\\\\[\\\\]\\\\*&\" #add \\\\p{So}? (symbols)\nedgePunct    = \"[\" + edgePunctChars + \"]\"\nnotEdgePunct = \"[a-zA-Z0-9]\" # content characters\noffEdge = r\"(^|$|:|;|\\s|\\.|,)\"  # colon here gets \"(hello):\" ==> \"( hello ):\"\nEdgePunctLeft  = re.compile(offEdge + \"(\"+edgePunct+\"+)(\"+notEdgePunct+\")\", re.UNICODE)\nEdgePunctRight = re.compile(\"(\"+notEdgePunct+\")(\"+edgePunct+\"+)\" + offEdge, re.UNICODE)\n\ndef splitEdgePunct(input):\n    input = EdgePunctLeft.sub(r\"\\1\\2 \\3\", input)\n    input = EdgePunctRight.sub(r\"\\1 \\2\\3\", input)\n    return input\n\n# The main work of tokenizing a tweet.\ndef simpleTokenize(text):\n\n    # Do the no-brainers first\n    splitPunctText = splitEdgePunct(text)\n\n    textLength = len(splitPunctText)\n\n    # BTO: the logic here got quite convoluted via the Scala porting detour\n    # It would be good to switch back to a nice simple procedural style like in the Python version\n    # ... Scala is such a pain.  Never again.\n\n    # Find the matches for subsequences that should be protected,\n    # e.g. URLs, 1.0, U.N.K.L.E., 12:53\n    bads = []\n    badSpans = []\n    for match in Protected.finditer(splitPunctText):\n        # The spans of the \"bads\" should not be split.\n        if (match.start() != match.end()): #unnecessary?\n            bads.append( [splitPunctText[match.start():match.end()]] )\n            badSpans.append( (match.start(), match.end()) )\n\n    # Create a list of indices to create the \"goods\", which can be\n    # split. We are taking \"bad\" spans like\n    #     List((2,5), (8,10))\n    # to create\n    #     List(0, 2, 5, 8, 10, 12)\n    # where, e.g., \"12\" here would be the textLength\n    # has an even length and no indices are the same\n    indices = [0]\n    for (first, second) in badSpans:\n        indices.append(first)\n        indices.append(second)\n    indices.append(textLength)\n\n    # Group the indices and map them to their respective portion of the string\n    splitGoods = []\n    for i in range(0, len(indices), 2):\n        goodstr = splitPunctText[indices[i]:indices[i+1]]\n        splitstr = goodstr.strip().split(\" \")\n        splitGoods.append(splitstr)\n\n    #  Reinterpolate the 'good' and 'bad' Lists, ensuring that\n    #  additonal tokens from last good item get included\n    zippedStr = []\n    for i in range(len(bads)):\n        zippedStr = addAllnonempty(zippedStr, splitGoods[i])\n        zippedStr = addAllnonempty(zippedStr, bads[i])\n    zippedStr = addAllnonempty(zippedStr, splitGoods[len(bads)])\n\n    # BTO: our POS tagger wants \"ur\" and \"you're\" to both be one token.\n    # Uncomment to get \"you 're\"\n    splitStr = []\n    for tok in zippedStr:\n       splitStr.extend(splitToken(tok))\n    zippedStr = splitStr\n\n    return zippedStr\n\ndef addAllnonempty(master, smaller):\n    for s in smaller:\n        strim = s.strip()\n        if (len(strim) > 0):\n            master.append(strim)\n    return master\n\n# \"foo   bar \" => \"foo bar\"\ndef squeezeWhitespace(input):\n    return Whitespace.sub(\" \", input).strip()\n\n# Final pass tokenization based on special patterns\ndef splitToken(token):\n    m = Contractions.search(token)\n    if m:\n        return [m.group(1), m.group(2)]\n    return [token]\n\n# Assume 'text' has no HTML escaping.\ndef tokenize(text):\n    return simpleTokenize(squeezeWhitespace(text))\n\n\n# Twitter text comes HTML-escaped, so unescape it.\n# We also first unescape &amp;'s, in case the text has been buggily double-escaped.\ndef normalizeTextForTagger(text):\n    assert sys.version_info[0] >= 3 and sys.version_info[1] > 3, 'Python version >3.3 required'\n    text = text.replace(\"&amp;\", \"&\")\n    text = html.unescape(text)\n    return text\n\n# This is intended for raw tweet text -- we do some HTML entity unescaping before running the tagger.\n#\n# This function normalizes the input text BEFORE calling the tokenizer.\n# So the tokens you get back may not exactly correspond to\n# substrings of the original text.\ndef tokenizeRawText(text):\n    tokens = tokenize(normalizeTextForTagger(text))\n    return tokens\n\n\nif __name__ == '__main__':\n    for line in sys.stdin:\n        print(' '.join(tokenizeRawTweetText(line)))\n"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/tokenize_base_rules.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nTwokenize -- a tokenizer designed for Twitter text in English and some other European languages.\nThis tokenizer code has gone through a long history:\n\n(1) Brendan O'Connor wrote original version in Python, http://github.com/brendano/tweetmotif\n       TweetMotif: Exploratory Search and Topic Summarization for Twitter.\n       Brendan O'Connor, Michel Krieger, and David Ahn.\n       ICWSM-2010 (demo track), http://brenocon.com/oconnor_krieger_ahn.icwsm2010.tweetmotif.pdf\n(2a) Kevin Gimpel and Daniel Mills modified it for POS tagging for the CMU ARK Twitter POS Tagger\n(2b) Jason Baldridge and David Snyder ported it to Scala\n(3) Brendan bugfixed the Scala port and merged with POS-specific changes\n    for the CMU ARK Twitter POS Tagger\n(4) Tobi Owoputi ported it back to Java and added many improvements (2012-06)\n\nCurrent home is http://github.com/brendano/ark-tweet-nlp and http://www.ark.cs.cmu.edu/TweetNLP\n\nThere have been at least 2 other Java ports, but they are not in the lineage for the code here.\n\nPorted to Python by Myle Ott <myleott@gmail.com>.\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport operator\nimport re\nimport sys\n\ntry:\n    from html.parser import HTMLParser\nexcept ImportError:\n    from HTMLParser import HTMLParser\n\ntry:\n    import html\nexcept ImportError:\n    pass\n\n#items=\"a|b => regex_or(items) ==> (?:a|b)\ndef regex_or(*items):\n    return '(?:' + '|'.join(items) + ')'\n\nContractions = re.compile(u\"(?i)(\\w+)(n['’′]t|['’′]ve|['’′]ll|['’′]d|['’′]re|['’′]s|['’′]m)$\", re.UNICODE)\nWhitespace = re.compile(u\"[\\s\\u0020\\u00a0\\u1680\\u180e\\u202f\\u205f\\u3000\\u2000-\\u200a]+\", re.UNICODE)\n\npunctChars = r\"['\\\"“”‘’.?!…,:;]\"\n#punctSeq   = punctChars+\"+\"  #'anthem'. => ' anthem '.\npunctSeq   = r\"['\\\"“”‘’]+|[.?!,…]+|[:;]+\" #'anthem'. => ' anthem ' .\nentity     = r\"&(?:amp|lt|gt|quot);\" #html tag entities &quot; => \"\n#  URLs\n\n\n# BTO 2012-06: everyone thinks the daringfireball regex should be better, but they're wrong.\n# If you actually empirically test it the results are bad.\n# Please see https://github.com/brendano/ark-tweet-nlp/pull/9\n\nurlStart1  = r\"(?:https?://|\\bwww\\.)\"\ncommonTLDs = r\"(?:com|org|edu|gov|net|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|pro|tel|travel|xxx)\"\nccTLDs   = r\"(?:ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|\" + \\\nr\"bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|\" + \\\nr\"er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|\" + \\\nr\"hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|\" + \\\nr\"lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|\" + \\\nr\"nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|\" + \\\nr\"sl|sm|sn|so|sr|ss|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|\" + \\\nr\"va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw)\" #TODO: remove obscure country domains?\nurlStart2  = r\"\\b(?:[A-Za-z\\d-])+(?:\\.[A-Za-z0-9]+){0,3}\\.\" + regex_or(commonTLDs, ccTLDs) + r\"(?:\\.\"+ccTLDs+r\")?(?=\\W|$)\"\nurlBody    = r\"(?:[^\\.\\s<>][^\\s<>]*?)?\"\nurlExtraCrapBeforeEnd = regex_or(punctChars, entity) + \"+?\"\nurlEnd     = r\"(?:\\.\\.+|[<>]|\\s|$)\"\nurl        = regex_or(urlStart1, urlStart2) + urlBody + \"(?=(?:\"+urlExtraCrapBeforeEnd+\")?\"+urlEnd+\")\"\n\n\n# Numeric\ntimeLike   = r\"\\d+(?::\\d+){1,2}\"\n#numNum     = r\"\\d+\\.\\d+\"\nnumberWithCommas = r\"(?:(?<!\\d)\\d{1,3},)+?\\d{3}\" + r\"(?=(?:[^,\\d]|$))\"\nnumComb  = u\"[\\u0024\\u058f\\u060b\\u09f2\\u09f3\\u09fb\\u0af1\\u0bf9\\u0e3f\\u17db\\ua838\\ufdfc\\ufe69\\uff04\\uffe0\\uffe1\\uffe5\\uffe6\\u00a2-\\u00a5\\u20a0-\\u20b9]?\\\\d+(?:\\\\.\\\\d+)+%?\"\n\n# Abbreviations\nboundaryNotDot = regex_or(\"$\", r\"\\s\", r\"[“\\\"?!,:;]\", entity)\naa1  = r\"(?:[A-Za-z]\\.){2,}(?=\" + boundaryNotDot + \")\"\naa2  = r\"[^A-Za-z](?:[A-Za-z]\\.){1,}[A-Za-z](?=\" + boundaryNotDot + \")\"\nstandardAbbreviations = r\"\\b(?:[Mm]r|[Mm]rs|[Mm]s|[Dd]r|[Ss]r|[Jj]r|[Rr]ep|[Ss]en|[Ss]t)\\.\"\narbitraryAbbrev = regex_or(aa1, aa2, standardAbbreviations)\nseparators  = \"(?:--+|―|—|~|–|=)\"\ndecorations = u\"(?:[♫♪]+|[★☆]+|[♥❤♡]+|[\\u2639-\\u263b]+|[\\ue001-\\uebbb]+)\"\nthingsThatSplitWords = r\"[^\\s\\.,?\\\"]\"\nembeddedApostrophe = thingsThatSplitWords+r\"+['’′]\" + thingsThatSplitWords + \"*\"\n\n#  Emoticons\n# myleott: in Python the (?iu) flags affect the whole expression\n#normalEyes = \"(?iu)[:=]\" # 8 and x are eyes but cause problems\nnormalEyes = \"[:=]\" # 8 and x are eyes but cause problems\nwink = \"[;]\"\nnoseArea = \"(?:|-|[^a-zA-Z0-9 ])\" # doesn't get :'-(\nhappyMouths = r\"[D\\)\\]\\}]+\"\nsadMouths = r\"[\\(\\[\\{]+\"\ntongue = \"[pPd3]+\"\notherMouths = r\"(?:[oO]+|[/\\\\]+|[vV]+|[Ss]+|[|]+)\" # remove forward slash if http://'s aren't cleaned\n\n# mouth repetition examples:\n# @aliciakeys Put it in a love song :-))\n# @hellocalyclops =))=))=)) Oh well\n\n# myleott: try to be as case insensitive as possible, but still not perfect, e.g., o.O fails\n#bfLeft = u\"(♥|0|o|°|v|\\\\$|t|x|;|\\u0ca0|@|ʘ|•|・|◕|\\\\^|¬|\\\\*)\".encode('utf-8')\nbfLeft = u\"(♥|0|[oO]|°|[vV]|\\\\$|[tT]|[xX]|;|\\u0ca0|@|ʘ|•|・|◕|\\\\^|¬|\\\\*)\"\nbfCenter = r\"(?:[\\.]|[_-]+)\"\nbfRight = r\"\\2\"\ns3 = r\"(?:--['\\\"])\"\ns4 = r\"(?:<|&lt;|>|&gt;)[\\._-]+(?:<|&lt;|>|&gt;)\"\ns5 = \"(?:[.][_]+[.])\"\n# myleott: in Python the (?i) flag affects the whole expression\n#basicface = \"(?:(?i)\" +bfLeft+bfCenter+bfRight+ \")|\" +s3+ \"|\" +s4+ \"|\" + s5\nbasicface = \"(?:\" +bfLeft+bfCenter+bfRight+ \")|\" +s3+ \"|\" +s4+ \"|\" + s5\n\neeLeft = r\"[＼\\\\ƪԄ\\(（<>;ヽ\\-=~\\*]+\"\neeRight= u\"[\\\\-=\\\\);'\\u0022<>ʃ）/／ノﾉ丿╯σっµ~\\\\*]+\"\neeSymbol = r\"[^A-Za-z0-9\\s\\(\\)\\*:=-]\"\neastEmote = eeLeft + \"(?:\"+basicface+\"|\" +eeSymbol+\")+\" + eeRight\n\noOEmote = r\"(?:[oO]\" + bfCenter + r\"[oO])\"\n\n\nemoticon = regex_or(\n        # Standard version  :) :( :] :D :P\n        \"(?:>|&gt;)?\" + regex_or(normalEyes, wink) + regex_or(noseArea,\"[Oo]\") + regex_or(tongue+r\"(?=\\W|$|RT|rt|Rt)\", otherMouths+r\"(?=\\W|$|RT|rt|Rt)\", sadMouths, happyMouths),\n\n        # reversed version (: D:  use positive lookbehind to remove \"(word):\"\n        # because eyes on the right side is more ambiguous with the standard usage of : ;\n        regex_or(\"(?<=(?: ))\", \"(?<=(?:^))\") + regex_or(sadMouths,happyMouths,otherMouths) + noseArea + regex_or(normalEyes, wink) + \"(?:<|&lt;)?\",\n\n        #inspired by http://en.wikipedia.org/wiki/User:Scapler/emoticons#East_Asian_style\n        eastEmote.replace(\"2\", \"1\", 1), basicface,\n        # iOS 'emoji' characters (some smileys, some symbols) [\\ue001-\\uebbb]\n        # TODO should try a big precompiled lexicon from Wikipedia, Dan Ramage told me (BTO) he does this\n\n        # myleott: o.O and O.o are two of the biggest sources of differences\n        #          between this and the Java version. One little hack won't hurt...\n        oOEmote\n)\n\nHearts = \"(?:<+/?3+)+\" #the other hearts are in decorations\n\nArrows = regex_or(r\"(?:<*[-―—=]*>+|<+[-―—=]*>*)\", u\"[\\u2190-\\u21ff]+\")\n\n# BTO 2011-06: restored Hashtag, AtMention protection (dropped in original scala port) because it fixes\n# \"hello (#hashtag)\" ==> \"hello (#hashtag )\"  WRONG\n# \"hello (#hashtag)\" ==> \"hello ( #hashtag )\"  RIGHT\n# \"hello (@person)\" ==> \"hello (@person )\"  WRONG\n# \"hello (@person)\" ==> \"hello ( @person )\"  RIGHT\n# ... Some sort of weird interaction with edgepunct I guess, because edgepunct\n# has poor content-symbol detection.\n\n# This also gets #1 #40 which probably aren't hashtags .. but good as tokens.\n# If you want good hashtag identification, use a different regex.\nHashtag = \"#[a-zA-Z0-9_]+\"  #optional: lookbehind for \\b\n#optional: lookbehind for \\b, max length 15\nAtMention = \"[@＠][a-zA-Z0-9_]+\"\n\n# I was worried this would conflict with at-mentions\n# but seems ok in sample of 5800: 7 changes all email fixes\n# http://www.regular-expressions.info/email.html\nBound = r\"(?:\\W|^|$)\"\nEmail = regex_or(\"(?<=(?:\\W))\", \"(?<=(?:^))\") + r\"[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,4}(?=\" +Bound+\")\"\n\n# We will be tokenizing using these regexps as delimiters\n# Additionally, these things are \"protected\", meaning they shouldn't be further split themselves.\nProtected  = re.compile(\n    regex_or(\n        Hearts,\n        url,\n        Email,\n        timeLike,\n        #numNum,\n        numberWithCommas,\n        numComb,\n        emoticon,\n        Arrows,\n        entity,\n        punctSeq,\n        arbitraryAbbrev,\n        separators,\n        decorations,\n        embeddedApostrophe,\n        Hashtag,\n        AtMention), re.UNICODE)\n\n# Edge punctuation\n# Want: 'foo' => ' foo '\n# While also:   don't => don't\n# the first is considered \"edge punctuation\".\n# the second is word-internal punctuation -- don't want to mess with it.\n# BTO (2011-06): the edgepunct system seems to be the #1 source of problems these days.\n# I remember it causing lots of trouble in the past as well.  Would be good to revisit or eliminate.\n\n# Note the 'smart quotes' (http://en.wikipedia.org/wiki/Smart_quotes)\n#edgePunctChars    = r\"'\\\"“”‘’«»{}\\(\\)\\[\\]\\*&\" #add \\\\p{So}? (symbols)\nedgePunctChars    = u\"'\\\"“”‘’«»{}\\\\(\\\\)\\\\[\\\\]\\\\*&\" #add \\\\p{So}? (symbols)\nedgePunct    = \"[\" + edgePunctChars + \"]\"\nnotEdgePunct = \"[a-zA-Z0-9]\" # content characters\noffEdge = r\"(^|$|:|;|\\s|\\.|,)\"  # colon here gets \"(hello):\" ==> \"( hello ):\"\nEdgePunctLeft  = re.compile(offEdge + \"(\"+edgePunct+\"+)(\"+notEdgePunct+\")\", re.UNICODE)\nEdgePunctRight = re.compile(\"(\"+notEdgePunct+\")(\"+edgePunct+\"+)\" + offEdge, re.UNICODE)\n\ndef splitEdgePunct(input):\n    input = EdgePunctLeft.sub(r\"\\1\\2 \\3\", input)\n    input = EdgePunctRight.sub(r\"\\1 \\2\\3\", input)\n    return input\n\n# The main work of tokenizing a tweet.\ndef simpleTokenize(text):\n\n    # Do the no-brainers first\n    splitPunctText = splitEdgePunct(text)\n\n    textLength = len(splitPunctText)\n\n    # BTO: the logic here got quite convoluted via the Scala porting detour\n    # It would be good to switch back to a nice simple procedural style like in the Python version\n    # ... Scala is such a pain.  Never again.\n\n    # Find the matches for subsequences that should be protected,\n    # e.g. URLs, 1.0, U.N.K.L.E., 12:53\n    bads = []\n    badSpans = []\n    for match in Protected.finditer(splitPunctText):\n        # The spans of the \"bads\" should not be split.\n        if (match.start() != match.end()): #unnecessary?\n            bads.append( [splitPunctText[match.start():match.end()]] )\n            badSpans.append( (match.start(), match.end()) )\n\n    # Create a list of indices to create the \"goods\", which can be\n    # split. We are taking \"bad\" spans like\n    #     List((2,5), (8,10))\n    # to create\n    #     List(0, 2, 5, 8, 10, 12)\n    # where, e.g., \"12\" here would be the textLength\n    # has an even length and no indices are the same\n    indices = [0]\n    for (first, second) in badSpans:\n        indices.append(first)\n        indices.append(second)\n    indices.append(textLength)\n\n    # Group the indices and map them to their respective portion of the string\n    splitGoods = []\n    for i in range(0, len(indices), 2):\n        goodstr = splitPunctText[indices[i]:indices[i+1]]\n        splitstr = goodstr.strip().split(\" \")\n        splitGoods.append(splitstr)\n\n    #  Reinterpolate the 'good' and 'bad' Lists, ensuring that\n    #  additonal tokens from last good item get included\n    zippedStr = []\n    for i in range(len(bads)):\n        zippedStr = addAllnonempty(zippedStr, splitGoods[i])\n        zippedStr = addAllnonempty(zippedStr, bads[i])\n    zippedStr = addAllnonempty(zippedStr, splitGoods[len(bads)])\n\n    # BTO: our POS tagger wants \"ur\" and \"you're\" to both be one token.\n    # Uncomment to get \"you 're\"\n    splitStr = []\n    for tok in zippedStr:\n       splitStr.extend(splitToken(tok))\n    zippedStr = splitStr\n\n    return zippedStr\n\ndef addAllnonempty(master, smaller):\n    for s in smaller:\n        strim = s.strip()\n        if (len(strim) > 0):\n            master.append(strim)\n    return master\n\n# \"foo   bar \" => \"foo bar\"\ndef squeezeWhitespace(input):\n    return Whitespace.sub(\" \", input).strip()\n\n# Final pass tokenization based on special patterns\ndef splitToken(token):\n    m = Contractions.search(token)\n    if m:\n        return [m.group(1), m.group(2)]\n    return [token]\n\n# Assume 'text' has no HTML escaping.\ndef tokenize(text):\n    return simpleTokenize(squeezeWhitespace(text))\n\n\n# Twitter text comes HTML-escaped, so unescape it.\n# We also first unescape &amp;'s, in case the text has been buggily double-escaped.\ndef normalizeTextForTagger(text):\n    assert sys.version_info[0] >= 3 and sys.version_info[1] > 3, 'Python version >3.3 required'\n    text = text.replace(\"&amp;\", \"&\")\n    text = html.unescape(text)\n    return text\n\n# This is intended for raw tweet text -- we do some HTML entity unescaping before running the tagger.\n#\n# This function normalizes the input text BEFORE calling the tokenizer.\n# So the tokens you get back may not exactly correspond to\n# substrings of the original text.\ndef tokenizeRawTweetText(text):\n    tokens = tokenize(normalizeTextForTagger(text))\n    return tokens\n\n\nif __name__ == '__main__':\n    line=\"I am not sure how you are calling it but I did find this command line documentation(it seems that the position in their help file is not reflected in their URL, you need to navigate to Overview -> Command-line interface).\"\n    \n    print(' '.join(tokenizeRawTweetText(line)))\n"
  },
  {
    "path": "code/BERT_NER/utils_seg.py",
    "content": "# coding=utf-8\n# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.\n# Copyright (c) 2018, NVIDIA CORPORATION.  All rights reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\"\"\" Named entity recognition fine-tuning: utilities to work with CoNLL-2003 task. \"\"\"\n\n\nimport logging\nimport os\nimport json\n\nlogger = logging.getLogger(__name__)\n\n\nclass InputExample(object):\n    \"\"\"A single training/test example for token classification.\"\"\"\n\n    def __init__(self, guid, words, labels):\n        \"\"\"Constructs a InputExample.\n\n        Args:\n            guid: Unique id for the example.\n            words: list. The words of the sequence.\n            labels: (Optional) list. The labels for each word of the sequence. This should be\n            specified for train and dev examples, but not for test examples.\n        \"\"\"\n        self.guid = guid\n        self.words = words\n        self.labels = labels\n\n\nclass InputFeatures(object):\n    \"\"\"A single set of features of data.\"\"\"\n\n    def __init__(self, input_ids, input_mask, freq_ids, md_ids, label_ids, label_ids_ctc, label_ids_md):\n        self.input_ids = input_ids\n        self.input_freq_ids = freq_ids\n        self.input_mask = input_mask\n        self.md_ids = md_ids\n        self.label_ids = label_ids\n        self.label_ids_ctc = label_ids_ctc\n        self.label_ids_md = label_ids_md\n\n\ndef read_examples_from_file(data_dir, mode, path=None):\n    file_path = os.path.join(data_dir, \"{}.txt\".format(mode))\n    if path!=None:\n        file_path = path\n    guid_index = 1\n    examples = []\n    with open(file_path, encoding=\"utf-8\") as f:\n        words = []\n        labels = []\n        for line in f:\n            if line.startswith(\"-DOCSTART-\") or line == \"\" or line == \"\\n\":\n                if words:\n                    examples.append(InputExample(guid=\"{}-{}\".format(mode, guid_index), words=words, labels=labels))\n                    guid_index += 1\n                    words = []\n                    labels = []\n            else:\n                splits = line.strip().split(\"\\t\")\n                words.append(splits[0])\n                if len(splits) > 1:\n                    labels.append(splits[1:])\n                else:\n                    # Examples could have no label for mode = \"test\"\n                    labels.append(\"O\")\n        if words:\n            examples.append(InputExample(guid=\"{}-{}\".format(mode, guid_index), words=words, labels=labels))\n    return examples\n\n\ndef convert_examples_to_features(\n    examples,\n    label_list,\n    max_seq_length,\n    tokenizer,\n    cls_token_at_end=False,\n    cls_token=\"[CLS]\",\n    cls_token_segment_id=1,\n    sep_token=\"[SEP]\",\n    sep_token_extra=False,\n    pad_on_left=False,\n    pad_token=0,\n    pad_token_md_id=0,\n    pad_token_label_id=-100,\n    sequence_a_markdown_id=0,\n    mask_padding_with_zero=True,\n):\n    \"\"\" Loads a data file into a list of `InputBatch`s\n        `cls_token_at_end` define the location of the CLS token:\n            - False (Default, BERT/XLM pattern): [CLS] + A + [SEP] + B + [SEP]\n            - True (XLNet/GPT pattern): A + [SEP] + B + [SEP] + [CLS]\n        `cls_token_segment_id` define the segment id associated to the CLS token (0 for BERT, 2 for XLNet)\n    \"\"\"\n\n    label_map = {label: i for i, label in enumerate(label_list)}\n    word_to_id = json.load(open(\"word_to_id.json\",\"r\"))\n    word_id_pad = word_to_id[\"***PADDING***\"]\n\n    # print(\"*********************************\")\n    # print(label_map)\n    # print(\"*********************************\")\n\n    features = []\n    for (ex_index, example) in enumerate(examples):\n        # if ex_index % 10000 == 0:\n        #     logger.info(\"Writing example %d of %d\", ex_index, len(examples))\n\n        tokens = []\n        label_ids = []\n        label_ids_ctc = []\n        label_ids_md = []\n        word_freq_ids = []\n        for word, label in zip(example.words, example.labels):\n            # print(\"*********************************\")\n            # print(word)\n            # print(label)\n            # print(\"*********************************\")\n            word_tokens = tokenizer.tokenize(word)\n\n            if word not in word_to_id:\n                word_id=word_to_id[\"UNK\"]\n            else:\n                word_id = word_to_id[word]\n\n            # bert-base-multilingual-cased sometimes output \"nothing ([]) when calling tokenize with just a space.\n            if len(word_tokens) > 0:\n                tokens.extend(word_tokens)\n                # Use the real label id for the first token of the word, and padding ids for the remaining tokens\n                label_ids.extend([label_map[label[0]]] + [pad_token_label_id] * (len(word_tokens) - 1))\n                label_ids_ctc.extend([label_map[label[1]]] + [pad_token_label_id] * (len(word_tokens) - 1))\n                label_ids_md.extend([label_map[label[2]]] + [pad_token_label_id] * (len(word_tokens) - 1))\n                word_freq_ids.append(word_id)\n\n            \n\n        # Account for [CLS] and [SEP] with \"- 2\" and with \"- 3\" for RoBERTa.\n        special_tokens_count = tokenizer.num_special_tokens_to_add() #num_added_tokens()\n        if len(tokens) > max_seq_length - special_tokens_count:\n            tokens = tokens[: (max_seq_length - special_tokens_count)]\n            label_ids = label_ids[: (max_seq_length - special_tokens_count)]\n            label_ids_ctc = label_ids_ctc[: (max_seq_length - special_tokens_count)]\n            label_ids_md = label_ids_md[: (max_seq_length - special_tokens_count)]\n            word_freq_ids = word_freq_ids[: (max_seq_length - special_tokens_count)]\n\n        # The convention in BERT is:\n        # (a) For sequence pairs:\n        #  tokens:   [CLS] is this jack ##son ##ville ? [SEP] no it is not . [SEP]\n        #  type_ids:   0   0  0    0    0     0       0   0   1  1  1  1   1   1\n        # (b) For single sequences:\n        #  tokens:   [CLS] the dog is hairy . [SEP]\n        #  type_ids:   0   0   0   0  0     0   0\n        #\n        # Where \"type_ids\" are used to indicate whether this is the first\n        # sequence or the second sequence. The embedding vectors for `type=0` and\n        # `type=1` were learned during pre-training and are added to the wordpiece\n        # embedding vector (and position vector). This is not *strictly* necessary\n        # since the [SEP] token unambiguously separates the sequences, but it makes\n        # it easier for the model to learn the concept of sequences.\n        #\n        # For classification tasks, the first vector (corresponding to [CLS]) is\n        # used as as the \"sentence vector\". Note that this only makes sense because\n        # the entire model is fine-tuned.\n        tokens += [sep_token]\n        word_freq_ids+=[word_id_pad]\n        label_ids += [pad_token_label_id]\n        label_ids_ctc += [pad_token_label_id]\n        label_ids_md += [pad_token_label_id]\n        if sep_token_extra:\n            # roberta uses an extra separator b/w pairs of sentences\n            tokens += [sep_token]\n            word_freq_ids+=[word_id_pad]\n            label_ids += [pad_token_label_id]\n            label_ids_ctc += [pad_token_label_id]\n            label_ids_md += [pad_token_label_id]\n        md_ids = [sequence_a_markdown_id] * len(tokens)\n\n        if cls_token_at_end:\n            tokens += [cls_token]\n            word_freq_ids+=[word_id_pad]\n            label_ids += [pad_token_label_id]\n            label_ids_ctc += [pad_token_label_id]\n            label_ids_md += [pad_token_label_id]\n            md_ids += [cls_token_segment_id]\n        else:\n            tokens = [cls_token] + tokens\n            word_freq_ids = [word_id_pad] + word_freq_ids \n            label_ids = [pad_token_label_id] + label_ids\n            label_ids_ctc = [pad_token_label_id] + label_ids_ctc\n            label_ids_md = [pad_token_md_id] + label_ids_md\n            md_ids = [cls_token_segment_id] + md_ids\n\n        input_ids = tokenizer.convert_tokens_to_ids(tokens)\n\n        # The mask has 1 for real tokens and 0 for padding tokens. Only real\n        # tokens are attended to.\n        input_mask = [1 if mask_padding_with_zero else 0] * len(input_ids)\n\n        # Zero-pad up to the sequence length.\n        padding_length = max_seq_length - len(input_ids)\n\n        if pad_on_left:\n            input_ids = ([pad_token] * padding_length) + input_ids\n            input_mask = ([0 if mask_padding_with_zero else 1] * padding_length) + input_mask\n            word_freq_ids = ([word_id_pad]* padding_length) + word_freq_ids \n            md_ids = ([pad_token_md_id] * padding_length) + md_ids\n            label_ids = ([pad_token_label_id] * padding_length) + label_ids\n            label_ids_ctc = ([pad_token_label_id] * padding_length) + label_ids_ctc\n            label_ids_md = ([pad_token_label_id] * padding_length) + label_ids_md\n        else:\n            input_ids += [pad_token] * padding_length\n            input_mask += [0 if mask_padding_with_zero else 1] * padding_length\n            word_freq_ids += [word_id_pad]* padding_length\n            md_ids += [pad_token_md_id] * padding_length\n            label_ids += [pad_token_label_id] * padding_length\n            label_ids_ctc += [pad_token_label_id] * padding_length\n            label_ids_md += [pad_token_label_id] * padding_length\n\n\n        \n        while len(word_freq_ids)!=max_seq_length:\n            word_freq_ids.append(word_id_pad)\n\n        # print(len(word_freq_ids), len(input_ids))\n\n\n        assert len(input_ids) == max_seq_length\n        assert len(input_mask) == max_seq_length\n        assert len(word_freq_ids) == max_seq_length\n        assert len(md_ids) == max_seq_length\n        assert len(label_ids) == max_seq_length\n        assert len(label_ids_ctc) == max_seq_length\n        assert len(label_ids_md) == max_seq_length\n\n        # if ex_index < 5:\n        #     logger.info(\"*** Example ***\")\n        #     logger.info(\"guid: %s\", example.guid)\n        #     logger.info(\"tokens: %s\", \" \".join([str(x) for x in tokens]))\n        #     logger.info(\"input_ids: %s\", \" \".join([str(x) for x in input_ids]))\n        #     logger.info(\"input_mask: %s\", \" \".join([str(x) for x in input_mask]))\n        #     logger.info(\"md_ids: %s\", \" \".join([str(x) for x in md_ids]))\n        #     logger.info(\"label_ids: %s\", \" \".join([str(x) for x in label_ids]))\n        #     logger.info(\"label_ids_ctc: %s\", \" \".join([str(x) for x in label_ids_ctc]))\n        #     logger.info(\"label_ids_md: %s\", \" \".join([str(x) for x in label_ids_md]))\n\n        features.append(\n            InputFeatures(input_ids=input_ids, input_mask=input_mask, freq_ids=word_freq_ids, md_ids=md_ids, label_ids=label_ids, label_ids_ctc=label_ids_ctc, label_ids_md=label_ids_md)\n        )\n    return features\n\n\ndef get_labels(path):\n    if path:\n        with open(path, \"r\") as f:\n            labels = f.read().splitlines()\n        if \"O\" not in labels:\n            labels = [\"O\"] + labels\n        labels.append(\"CTC_PRED:0\")\n        labels.append(\"CTC_PRED:1\")\n        labels.append(\"md_label:O\")\n        labels.append(\"md_label:Name\")\n        return labels\n    else:\n        return [\"O\", \"B-MISC\", \"I-MISC\", \"B-PER\", \"I-PER\", \"B-ORG\", \"I-ORG\", \"B-LOC\", \"I-LOC\"]\n"
  },
  {
    "path": "code/BERT_NER/xml_filted_body.txt",
    "content": "There are many folks out there that claim their singleton implementation to be robust and general because it uses metaprogramming constructs.\n\nMy goal is to enforce a singleton policy onto a derived class so that I do not have to explicitly (manually) declare the derived class' constructors as private.\n\nI think there's a way to naively add the instance static variable and the getter as a policy by making the templated singleton a friend of the class you derive.\n\nBut that's not at all elegant.\n\nI started with this code, that, among other things, is given as being a correct (i.e. complete) design of a singleton, while it is clearly allowing for multiple instances:\n\nAnd a singleton client of this \"policy\", using CRTP:\n\nNOTE this is not a correct implementation of a CRTP Singleton policy, it's merely part of the question!The code won't compile as is.\n\nThe base singleton policy class has its constructor declared private, so it can't support derived instances unless the child is a friend of this class.\n\nPeople usually make the constructors protected, which means there's nothing to keep a user from making derived class non-singletonian.\n\nProblem/Question: Is there any mechanism to enforce a singleton policy without having to make the derived class' constructors private manually?\n\nI've got this as XML:\n\nI've got this as php:\n\nNow the problem is this, I'm forced to have --INLINE_CODE_BEGIN---$testcase--INLINE_CODE_END--- in a lowercase form (defaultimage) BUT in the XML file the name of the child is: --INLINE_CODE_BEGIN---defaultImage--INLINE_CODE_END--- (note the uppercase I)\n\n\nQuestion: How can I handle all the children as lowercases?\n\nWhile you cannot prevent usage of those inherited members to my knowledge, you should be able to hide them from IntelliSense using the EditorBrowsableAttribute:\n\nEdit: Just saw this in the documentation comments, which makes it kinda useless for this purpose:\n"
  },
  {
    "path": "code/DataReader/Posts_Small.xml",
    "content": "  <row Id=\"13347179\" PostTypeId=\"1\" AcceptedAnswerId=\"13347433\" CreationDate=\"2012-11-12T16:09:49.260\" Score=\"0\" ViewCount=\"1505\" Body=\"&lt;p&gt;There are many folks out there that claim their singleton implementation to be robust and general because it uses metaprogramming constructs.&lt;/p&gt;&#xA;&#xA;&lt;p&gt;My goal is to enforce a singleton policy onto a derived class so that I do not have to explicitly (manually) declare the derived class' constructors as private. I think there's a way to naively add the instance static variable and the getter as a policy by making the templated singleton a friend of the class you derive. But that's not at all elegant.&lt;/p&gt;&#xA;&#xA;&lt;p&gt;I started with this code, that, among other things, is given as being a correct (i.e. complete) design of a singleton, while it is clearly allowing for multiple instances:&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;template &amp;lt;class CWrappedClass&amp;gt;&#xA;class CSingleton&#xA;{&#xA;protected:&#xA;    static CWrappedClass* ms_instance;&#xA;private:&#xA;    CSingleton(){}&#xA;    CSingleton(const CSingleton&amp;amp; ) {}&#xA;    CSingleton&amp;amp; operator = (const CSingleton&amp;amp;) {}&#xA;&#xA;public:&#xA;    static CWrappedClass&amp;amp; GetInstance()&#xA;    {&#xA;        if (ms_instance == NULL)&#xA;            ms_instance = new CWrappedClass;&#xA;        return *ms_instance;&#xA;    }&#xA;};&#xA;&#xA;template &amp;lt;class CWrappedClass&amp;gt;&#xA;CWrappedClass* CSingleton&amp;lt;CWrappedClass&amp;gt;::ms_instance = NULL;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;And a singleton client of this &quot;policy&quot;, using CRTP:&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;class CThing : public CSingleton&amp;lt;CThing&amp;gt;&#xA;{&#xA;     // friend class CSingleton&amp;lt;CThing&amp;gt;; // only if ctor is private!&#xA;public:&#xA;    void DoNothing()&#xA;    {&#xA;        std::cout&amp;lt;&amp;lt;&quot; Nothing \\n&quot;;&#xA;    }&#xA;    CThing()&#xA;    {&#xA;        std::cout&amp;lt;&amp;lt;&quot; single &quot;;&#xA;    }&#xA;};&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;&lt;strong&gt;NOTE&lt;/strong&gt; this is not a correct implementation of a CRTP Singleton policy, it's merely part of the question!&lt;/p&gt;&#xA;&#xA;&lt;p&gt;The code &lt;em&gt;won't&lt;/em&gt; compile as is. The base singleton policy class has its constructor declared private, so it can't support derived instances unless the child is a friend of this class. People usually make the constructors protected, which means there's nothing to keep a user from making derived class non-singletonian.&lt;/p&gt;&#xA;&#xA;&lt;p&gt;&lt;strong&gt;Problem/Question&lt;/strong&gt;: Is there any mechanism to enforce a singleton policy without having to make the derived class' constructors private manually?&lt;/p&gt;&#xA;\" OwnerUserId=\"1256811\" LastEditorUserId=\"1256811\" LastEditDate=\"2012-11-12T16:19:32.020\" LastActivityDate=\"2012-11-12T16:25:38.137\" Title=\"Templated Singleton Policy using CRTP in C++\" Tags=\"&lt;c++&gt;&lt;templates&gt;&lt;design-patterns&gt;&lt;singleton&gt;\" AnswerCount=\"1\" CommentCount=\"5\" FavoriteCount=\"1\" />\r\n  <row Id=\"13352832\" PostTypeId=\"1\" AcceptedAnswerId=\"13353144\" CreationDate=\"2012-11-12T22:45:07.810\" Score=\"0\" ViewCount=\"796\" Body=\"&lt;p&gt;I've got this as XML:&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;...&#xA;&amp;lt;product&amp;gt;&#xA;&amp;lt;id&amp;gt;1&amp;lt;/id&amp;gt;&#xA;&amp;lt;defaultImage&amp;gt;test.jpg&amp;lt;/defaultImage&amp;gt;&#xA;&amp;lt;/product&amp;gt;&#xA;...&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;I've got this as php:&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;$testcase = 'defaultimage';&#xA;$xml = simplexml_load_file('./temp/'.$i.'.xml');&#xA;foreach ($xml-&amp;gt;children() as $child) {&#xA;    $child-&amp;gt;$testcase;&#xA;}&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;Now the problem is this, I'm forced to have &lt;code&gt;$testcase&lt;/code&gt; in a lowercase form (defaultimage) BUT in the XML file the name of the child is: &lt;code&gt;defaultImage&lt;/code&gt; (note the uppercase I)&lt;/p&gt;&#xA;&#xA;&lt;p&gt;Question: How can I handle all the children as lowercases?&lt;/p&gt;&#xA;\" OwnerUserId=\"1501285\" LastEditorUserId=\"363262\" LastEditDate=\"2012-11-12T23:29:08.180\" LastActivityDate=\"2012-11-12T23:29:08.180\" Title=\"PHP simplexml children to lowercase\" Tags=\"&lt;php&gt;&lt;simplexml&gt;&lt;lowercase&gt;\" AnswerCount=\"1\" CommentCount=\"0\" />\r\n  <row Id=\"1533\" PostTypeId=\"2\" ParentId=\"1528\" CreationDate=\"2008-08-04T19:19:33.013\" Score=\"16\" Body=\"&lt;p&gt;While you cannot prevent usage of those inherited members to my knowledge, you should be able to hide them from IntelliSense using the &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/system.componentmodel.editorbrowsableattribute.aspx&quot; rel=&quot;noreferrer&quot;&gt;EditorBrowsableAttribute&lt;/a&gt;:&lt;/p&gt;&#xA;&#xA;&lt;pre&gt;&lt;code&gt;Using System.ComponentModel;&#xA;&#xA;[EditorBrowsable(EditorBrowsableState.Never)]&#xA;private string MyHiddenString = &quot;Muahahahahahahahaha&quot;;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;&lt;em&gt;Edit:&lt;/em&gt; Just saw this in the documentation comments, which makes it kinda useless for this purpose:&lt;/p&gt;&#xA;&#xA;&lt;blockquote&gt;&#xA;  &lt;p&gt;There is a prominent note that states that this attribute &quot;does not suppress members from a class in the same assembly&quot;. That is true but not complete. Actually, the attribute does not suppress members from a class in the same solution.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;\" OwnerUserId=\"91\" LastEditorUserId=\"91\" LastEditDate=\"2009-11-19T17:51:07.720\" LastActivityDate=\"2009-11-19T17:51:07.720\" CommentCount=\"0\" />\r\n  \r\n"
  },
  {
    "path": "code/DataReader/loader_so.py",
    "content": "import json\nimport sys\n\n\ndef Merge_Label(inputFile):\n    merging_dict={}\n    merging_dict[\"Library_Function\"]=\"Function\"\n    merging_dict[\"Function_Name\"]=\"Function\"\n\n    merging_dict[\"Class_Name\"]=\"Class\"\n    merging_dict[\"Library_Class\"]=\"Class\"\n\n    merging_dict[\"Library_Variable\"]=\"Variable\"\n    merging_dict[\"Variable_Name\"]=\"Variable\"\n\n    merging_dict[\"Website\"]=\"Website\"\n    merging_dict[\"Organization\"]=\"Website\"\n\n    modified_file=inputFile[:-4]+\"_merged_labels.txt\"\n    Fout=open(modified_file,\"w\")\n    line_count=0\n    for line in open(inputFile):\n        line_count+=1\n        # print(\"line: in Merge_Label: utils_so:  \",line)\n        # print(inputFile,\":\", line_count)\n        line_values=line.strip().split()\n        if len(line_values)<2:\n            opline=line\n            Fout.write(opline)\n            continue\n            \n\n        gold_word=line_values[0]\n        gold_label=line_values[1]\n        raw_word=line_values[2]\n        raw_label=line_values[3]\n        #print(line_values)\n        if gold_word!=raw_word:\n            print(\"wrong mapping: \", line)\n\n        word=gold_word\n        label=gold_label\n\n        if label==\"O\":\n            opline=line\n            Fout.write(opline)\n            continue\n        # print(label)\n\n        label_split=label.split(\"-\",1)\n\n        label_prefix=label_split[0]\n        label_name=label_split[1]\n        #print(label_name)\n        \n        if label_name in merging_dict:\n            label_name=merging_dict[label_name]\n            #print(label_name)\n\n        new_label=label_prefix+\"-\"+label_name\n        #opline=word+\" \"+new_label+\"\\n\"\n        opline=word+\" \"+new_label+\" \"+raw_word+\" \"+raw_label+\"\\n\"\n        Fout.write(opline)\n\n\n    Fout.close()\n    return modified_file\n\n\n\n\n    return modified_file\n\n\n\n\ndef loader_so_text(path, merge_tag=True, replace_low_freq_tags=True):\n\tif merge_tag:\n\t\tpath=Merge_Label(path)\n\n\tset_of_selected_tags = []\n\n\tif replace_low_freq_tags:\n\t\tsorted_entity_list = [\"Class\",\"Class_Name\", \"Library_Class\", \"Application\", \"Library_Variable\", \"Variable_Name\", \"Variable\", \"User_Interface_Element\", \"Code_Block\", \"Library_Function\",\"Function_Name\", \"Function\", \"Language\", \"Library\", \"Data_Structure\", \"Data_Type\", \"File_Type\", \"File_Name\", \"Version\", \"HTML_XML_Tag\", \"Device\", \"Operating_System\", \"User_Name\", \"Website\", \"Output_Block\", \"Error_Name\", \"Algorithm\", \"Organization\", \"Keyboard_IP\", \"Licence\", \"Organization\"]\n\t\tset_of_selected_tags.extend(sorted_entity_list[0:-6])\n\t\tif 'Algorithm' not in set_of_selected_tags: set_of_selected_tags.append('Algorithm')\n\n\n\tsentence = [] #list of words in the current sentence in formate each word list looks like [word, markdow tag name, mark down tag, NER tag]\n\tsentences = [] #list of sentences\n\n\n\n\tcount_question=0\n\tcount_answer=0\n\n\n\tmax_len=0\n\n\tfor line in open(path):\n\t\tif line.startswith(\"Question_ID\"):\n\t\t\tcount_question+=1\n\n\t\tif line.startswith(\"Answer_to_Question_ID\"):\n\t\t\tcount_answer+=1\n\n\t\tif line.strip()==\"\":\n\t\t\tif len(sentence) > 0:\n\t\t\t\toutput_line = \" \".join(w[0] for w in sentence)\n\n\t\t\t\tif \"code omitted for annotation\" in output_line and \"CODE_BLOCK :\" in output_line:\n\t\t\t\t\tsentence = []\n\t\t\t\t\tcontinue\n\n\t\t\t\telif \"omitted for annotation\" in output_line and \"OP_BLOCK :\" in output_line:\n\t\t\t\t\tsentence = []\n\t\t\t\t\tcontinue\n\n\t\t\t\telif \"Question_URL :\" in output_line:\n\t\t\t\t\tsentence = []\n\t\t\t\t\tcontinue\n\n\t\t\t\telif \"Question_ID :\" in output_line:\n\t\t\t\t\tsentence=[]\n\t\t\t\t\tcontinue\n\n\t\t\t\telse:\n\t\t\t\t\tsentences.append(sentence)\n\t\t\t\t\tif len(sentence)>max_len:\n\t\t\t\t\t\tmax_len=len(sentence)\n\n\t\t\t\t\tsentence=[]\n\n\t\telse:\n\n\t\t\tline_values=line.strip().split()\n\n\t\t\tgold_word=line_values[0]\n\t\t\tgold_label=line_values[1]\n\t\t\traw_word=line_values[2]\n\t\t\traw_label=line_values[3]\n\n\t\t\tgold_word=\" \".join(gold_word.split('-----'))\n\n\t\t\tgold_label_name= gold_label.replace(\"B-\",\"\").replace(\"I-\",\"\")\n\n\t\t\tif gold_label_name not in set_of_selected_tags:\n\t\t\t\tgold_label=\"O\"\n\n\t\t\tword_info=[gold_word, raw_label, gold_label]\n\t\t\tsentence.append(word_info)\n\tprint(\"------------------------------------------------------------\")\n\tprint(\"Number of questions in \", path, \" : \", count_question)\n\tprint(\"Number of answers in \", path, \" : \", count_answer)\n\tprint(\"Number of sentences in \", path, \" : \", len(sentences))\n\tprint(\"Max len sentences has\", max_len, \"words\")\n\tprint(\"------------------------------------------------------------\")\n\treturn sentences\n\n        \n    \n\nif __name__ == '__main__':\n\n\tpath_to_file = \"../../resources/annotated_ner_data/StackOverflow/train.txt\"\n\tmerge_tag= True\n\treplace_low_freq_tags= True\n\n\tall_sentneces = loader_so_text(path_to_file, merge_tag, replace_low_freq_tags)\n\n\n\n\n"
  },
  {
    "path": "code/DataReader/read_so_post_info.py",
    "content": "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 import xmliter\nimport re\n\nfrom bs4 import BeautifulSoup\n\nimport csv\n\nimport unicodedata\n\nimport json\n\nfrom collections import Counter\n\nfrom nltk.tokenize import sent_tokenize\nfrom nltk.tokenize.punkt import PunktSentenceTokenizer, PunktParameters\npunkt_param = PunktParameters()\nabbreviation = ['u.s.a', 'fig', 'etc', 'eg', 'mr', 'mrs', 'e.g', 'no', 'vs', 'i.e']\npunkt_param.abbrev_types = set(abbreviation)\ntokenizer = PunktSentenceTokenizer(punkt_param)\n\n\n\ndef find_string_indices(input_string,string_to_search):\n\tstring_indices=[]\n\tlocation=-1\n\twhile True:\n\t    location = input_string.find(string_to_search, location + 1)\n\t    if location == -1: break\n\t    string_indices.append(location)\n\treturn string_indices\n\n\n\n\nclass Stackoverflow_Info_Extract:\n\tdef __init__(self,annotattion_folder):\n\t\tself.code_file_number = 1\n\n\t\t\n\t\tself.annotattion_folder=annotattion_folder\n\n\n\t\n\n\n\tdef Extract_Text_From_XML(self,input_text):\n\t\n\t\tinput_text_str = input_text.encode(\"utf-8\").strip()\n\t\textracted_text=\"\"\n\n\t\t\n\n\t\t\n\t\tsoup = BeautifulSoup(input_text_str,\"lxml\")\n\t\tall_tags = soup.find_all(True)\n\t\tfor para in soup.body:\n\t\t\ttext_for_current_block=str(para)\n\t\t\t\n\t\t\t#\n\t\t\ttemp_soup = BeautifulSoup(text_for_current_block,\"lxml\")\n\t\t\tlist_of_tags = [tag.name for tag in temp_soup.find_all()]\n\t\t\ttag_len=len(list_of_tags)\n\n\t\t\tif set(list_of_tags)==set(['html', 'body', 'pre', 'code']):\n\t\t\t\t\n\t\t\t\tcode_string = temp_soup.pre.string\n\t\t\t\t\n\t\t\t\ttemp_soup.pre.string=\"CODE_BLOCK: Q_\"+str(self.code_file_number)+\" (code omitted for annotation)\\n\"\n\t\t\t\t\n\n\n\n\t\t\telif \"code\" in list_of_tags:\n\t\t\t\tall_inline_codes=temp_soup.find_all(\"code\")\n\t\t\t\t\n\t\t\t\tfor inline_code in all_inline_codes:\n\t\t\t\t\tinline_code_string_raw=str(inline_code)\n\t\t\t\t\t\n\t\t\t\t\ttemp_code_soup = BeautifulSoup(inline_code_string_raw,\"lxml\")\n\t\t\t\t\tinline_code_string_list_of_text = temp_code_soup.findAll(text=True)\n\t\t\t\t\tinline_code_string_text =\"\".join(inline_code_string_list_of_text).strip()\n\t\t\t\t\t\n\n\t\t\t\t\ttry:\n\t\t\t\t\t\tif \"\\n\" in inline_code_string_text:\n\t\t\t\t\t\t\tcode_string = inline_code_string_text\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tinline_code.string=\"CODE_BLOCK: Q_\"+str(self.code_file_number)+\" (code omitted for annotation)\\n\"\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\telif inline_code_string_text.count('.')>=1:\n\t\t\t\t\t\t\tinline_code.string = \"--INLINE_CODE_BEGIN---\"+ inline_code_string_text.replace(\".\",\"..\").replace('\\r', '').replace('\\n', '') +\"--INLINE_CODE_END---\"\n\n\t\t\t\t\t\telif inline_code_string_text.count('?')>=1:\n\t\t\t\t\t\t\tinline_code.string = \"--INLINE_CODE_BEGIN---\"+ inline_code_string_text.replace(\"?\",\"<?-?>\").replace('\\r', '').replace('\\n', '') +\"--INLINE_CODE_END---\"\n\t\t\t\t\t\telse:\n\t\t\t\t\t\t\tinline_code.string = \"--INLINE_CODE_BEGIN---\"+ inline_code_string_text.replace('\\r', '').replace('\\n', '') +\"--INLINE_CODE_END---\"\n\t\t\t\t\texcept Exception as e:\n\t\t\t\t\t\t\n\t\t\t\t\t\tprint(\"DEBUG----- inisde except for inline code -------- error\", e)\n\t\t\t\t\t\t\n\t\t\t\t\t\tcontinue\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\n\n\n\n\n\t\t\tif \"blockquote\" in list_of_tags:\n\t\t\t\t\n\t\t\t\top_string = temp_soup.blockquote.string\n\t\t\t\ttemp_soup.blockquote.string=\"OP_BLOCK: (output omitted for annotation)\\n\"\n\t\t\t\t\n\t\t\t\t\n\n\t\t\tif \"kbd\" in list_of_tags:\n\t\t\t\tall_keyboard_ip=temp_soup.find_all(\"kbd\")\n\t\t\t\t# print(\"DEBUG-keyboard-input\", all_keyboard_ip)\n\t\t\t\t# print(\"DEBUG---inputxml: \",input_text_str)\n\t\t\t\tfor keyboard_ip in all_keyboard_ip:\n\t\t\t\t\tprint(\"DEBUG-keyboard-input\", keyboard_ip.string)\n\t\t\t\t\tkeyboard_ip.string = \"--KEYBOARD_IP_BEGIN---\"+ keyboard_ip.string +\"--KEYBOARD_IP_END---\"\n\n\t\t\t\t\t# print(keyboard_ip.string)\n\n\n\n\t\t\tlist_of_texts=temp_soup.findAll(text=True)\n\t\t\ttext=\"\".join(list_of_texts)\n\t\t\t\n\t\t\textracted_text+=text\n\t\t\textracted_text+=\"\\n\\n\"\n\n\t\t\t\n\n\t\t\t\n\t\t\t\n\t\t# print(\"DEBUG--extracted-text-for-xml: \\n\",extracted_text)\n\t\t\n\t\treturn extracted_text\n\n\tdef tokenize_and_annotae_post_body(self, xml_filtered_string,post_id):\n\n\t\ttext_file_name=self.annotattion_folder+str(post_id)+\".txt\"\n\n\t\tf_out_txt=open(text_file_name,'w')\n\t\t\n\n\t\t\n\n\n\t\ttokenized_body=tokenizer.tokenize(xml_filtered_string)\n\t\t\n\t\ttokenized_body_extra_qmark_and_stop_removed = []\n\t\tfor sentence in tokenized_body:\n\t\t\tif \"--INLINE_CODE_BEGIN---\" in sentence:\n\t\t\t\tsentence=sentence.replace(\"..\",\".\")\n\t\t\t\tsentence = sentence.replace(\"<?-?>\",\"?\")\n\t\t\ttokenized_body_extra_qmark_and_stop_removed.append(sentence)\n\n\t\t\n\t\ttokenized_body_new_line_removed=[re.sub(r\"\\n+\", \"\\n\", sentence) for sentence in tokenized_body_extra_qmark_and_stop_removed]\n\t\t\n\t\t\n\t\ttokenized_body_str=\"\\n\".join(tokenized_body_new_line_removed)\n\t\t\n\n\t\t#-----------------postions for inline codes------------------------------\n\n\t\tinline_code_begining_positions=find_string_indices(tokenized_body_str,\"--INLINE_CODE_BEGIN\")\n\t\tinline_code_ending_positions_=find_string_indices(tokenized_body_str,\"INLINE_CODE_END---\")\n\t\tlen_inline_code_end_tag=len(\"INLINE_CODE_END---\")\n\t\tinline_code_ending_positions = [x+len_inline_code_end_tag for x in inline_code_ending_positions_]\n\n\t\t#-----------------postions for keyboard inputs------------------------------\n\n\t\tkeyboard_ip_begining_positions=find_string_indices(tokenized_body_str,\"--KEYBOARD_IP_BEGIN\")\n\t\tkeyboard_ip_ending_positions_=find_string_indices(tokenized_body_str,\"KEYBOARD_IP_END---\")\n\t\tlen_keyboard_ip_end_tag=len(\"KEYBOARD_IP_END---\")\n\t\tkeyboard_ip_ending_positions = [x+len_keyboard_ip_end_tag for x in keyboard_ip_ending_positions_]\n\t\tre\n\n\t\t#-----------------postions for code blocks-----------------------------\n\n\t\tcode_block_begining_positions=find_string_indices(tokenized_body_str,\"CODE_BLOCK:\")\n\t\tcode_block_ending_positions_=find_string_indices(tokenized_body_str,\"(code omitted for annotation)\")\n\t\tlen_code_block_end_tag=len(\"(code omitted for annotation)\")\n\t\tcode_block_ending_positions = [x+len_code_block_end_tag for x in code_block_ending_positions_]\n\n\t\t#-----------------postions for output blocks------------------------------\n\n\t\top_block_begining_positions=find_string_indices(tokenized_body_str,\"OP_BLOCK:\")\n\t\top_block_ending_positions_=find_string_indices(tokenized_body_str,\"(output omitted for annotation)\")\n\t\tlen_op_block_end_tag=len(\"(output omitted for annotation)\")\n\t\top_block_ending_positions = [x+len_op_block_end_tag for x in op_block_ending_positions_]\n\n\n\t\tquestion_url_text=\"Question_URL: \"+\"https://stackoverflow.com/questions/\"+str(post_id)+\"/\"\n\t\tintro_text=\"Question_ID: \"+str(post_id)+\"\\n\"+question_url_text+\"\\n\\n\"\n\n\t\tf_out_txt.write(intro_text)\n\t\top_string=tokenized_body_str.replace(\"--INLINE_CODE_BEGIN---\",\"\").replace(\"--INLINE_CODE_END---\",\"\").replace(\"--KEYBOARD_IP_BEGIN---\",\"\").replace(\"--KEYBOARD_IP_END---\",\"\")\n\t\tf_out_txt.write(op_string)\n\t\tf_out_txt.write(\"\\n\")\n\t\tf_out_txt.close()\n\n\t\t\n\n\n\n\n\n\t\t\n\t\t\n\n\t\t\n\t\t\t\n\n\tdef read_file(self, input_file):\n\n\t\tline_to_add_begining_of_row=\"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\"?>\"+\"\\n\"+\"<posts>\"\n\t\tline_to_add_ending_of_row=\"</posts>\"\n\t\t#print question_input_file\n\n\t\tfor line in open(input_file,'r'):\n\t\t\t# print(line)\n\t\t\txml_doc=line_to_add_begining_of_row+line+line_to_add_ending_of_row\n\t\t\ttemp_xml=\"temp_xml.xml\"\n\t\t\tf_temp=open(temp_xml,'w')\n\t\t\tf_temp.write(xml_doc)\n\t\t\tf_temp.flush()\n\t\t\tf_temp.close()\n\n\t\t\tfor d in xmliter(temp_xml, 'row'):\n\t\t\t\tpost_id = d['@Id'].encode(\"utf-8\").strip()\n\t\t\t\tpost_id= str(post_id.decode(\"utf-8\") )\n\n\t\t\t\tpost_type_id = d['@PostTypeId']\n\n\t\t\t\tif post_type_id == \"2\":\n\t\t\t\t\tquestion_id = d['@ParentId'].encode(\"utf-8\").strip().decode(\"utf-8\")\n\t\t\t\t\t# print(question_id)\n\t\t\t\t\t\n\t\t\t\t\tprint(\"now processing answer with : \", post_id, \", from question with id: \", question_id )\n\t\t\t\t\tpost_id = question_id+\"_\"+post_id\n\n\t\t\t\telse:\n\t\t\t\t\tprint(\"now processing question with id: \", post_id )\n\n\n\t\t\t\tbody = d['@Body']\n\t\t\t\tbody_xml_filtered = self.Extract_Text_From_XML(body)\n\t\t\t\t\n\t\t\t\tannotated_tokenized_text=self.tokenize_and_annotae_post_body(body_xml_filtered,post_id)\n\n\nif __name__ == '__main__':\n\t\n\toutput_folder=\"text_files/\"\n\n\n\tip_file = \"Posts_Small.xml\"\n\tinfo_extractor = Stackoverflow_Info_Extract(output_folder)\n\tinfo_extractor.read_file(ip_file)\n\n\n\n"
  },
  {
    "path": "code/DataReader/temp_xml.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<posts>  \n</posts>"
  },
  {
    "path": "code/DataReader/text_files/13347179.txt",
    "content": "Question_ID: 13347179\nQuestion_URL: https://stackoverflow.com/questions/13347179/\n\nThere are many folks out there that claim their singleton implementation to be robust and general because it uses metaprogramming constructs.\nMy goal is to enforce a singleton policy onto a derived class so that I do not have to explicitly (manually) declare the derived class' constructors as private.\nI think there's a way to naively add the instance static variable and the getter as a policy by making the templated singleton a friend of the class you derive.\nBut that's not at all elegant.\nI started with this code, that, among other things, is given as being a correct (i.e. complete) design of a singleton, while it is clearly allowing for multiple instances:\nCODE_BLOCK: Q_1 (code omitted for annotation)\nAnd a singleton client of this \"policy\", using CRTP:\nCODE_BLOCK: Q_1 (code omitted for annotation)\nNOTE this is not a correct implementation of a CRTP Singleton policy, it's merely part of the question!\nThe code won't compile as is.\nThe base singleton policy class has its constructor declared private, so it can't support derived instances unless the child is a friend of this class.\nPeople usually make the constructors protected, which means there's nothing to keep a user from making derived class non-singletonian.\nProblem/Question: Is there any mechanism to enforce a singleton policy without having to make the derived class' constructors private manually?\n"
  },
  {
    "path": "code/DataReader/text_files/13352832.txt",
    "content": "Question_ID: 13352832\nQuestion_URL: https://stackoverflow.com/questions/13352832/\n\nI've got this as XML:\nCODE_BLOCK: Q_1 (code omitted for annotation)\nI've got this as php:\nCODE_BLOCK: Q_1 (code omitted for annotation)\nNow the problem is this, I'm forced to have $testcase in a lowercase form (defaultimage) BUT in the XML file the name of the child is: defaultImage (note the uppercase I)\nQuestion: How can I handle all the children as lowercases?\n"
  },
  {
    "path": "code/DataReader/text_files/1528_1533.txt",
    "content": "Question_ID: 1528_1533\nQuestion_URL: https://stackoverflow.com/questions/1528_1533/\n\nWhile you cannot prevent usage of those inherited members to my knowledge, you should be able to hide them from IntelliSense using the EditorBrowsableAttribute:\nCODE_BLOCK: Q_1 (code omitted for annotation)\nEdit: Just saw this in the documentation comments, which makes it kinda useless for this purpose:\nOP_BLOCK: (output omitted for annotation)\n"
  },
  {
    "path": "code/Readme.md",
    "content": "# Running BERT NER Model:\n\n## Prerequisitie:\n1. Install the modified version of [huggingface transformers](https://github.com/jeniyat/Attentive_Transformer_NER) and [pretrained BERTOverflow](https://github.com/lanwuwei/BERTOverflow). These respositories contains all the necessary checkpoints and modifications that we have made in order to adapt the generel `BertTokenClassifier` with embedding level attention.\n\n2. Download the [utils_fine_tune.zip](https://mega.nz/file/bRp3lTBY#lHamCVxeVr6wfsdjFpgqimvWZ5vJoeRyoaU40-7pl5c) and unzip inside `BERT_NER`.\n\n3. Download the [data_ctc.zip](https://mega.nz/file/DVYUkATS#DqDKlYPT2zfXSaAy5oTvolNrBLJzS5bRV5m_m3qUreU) and unzip. Update the `parameters_ctc['RESOURCES_base_directory']` path with the abosolute path of the unzipped folder. The `parameters_ctc['RESOURCES_base_directory']` is defined inside the `utils_ctc/config_ctc.py` file.\n\n\n## Extract the prediction on a new input file:\n\nTo extract the software entities from a given file run the following:\n\n```\n    python E2E_SoftNER.py --input_file_with_so_body xml_filted_body\n```\n\n- It will save the predictions on the input file at `ner_preds.txt`\n\n\n## Replicate the reported results:\n\n\n\n# Running Attentive-BiLSTM NER Model:\n\nDownlaod all the pretrained in-domain word vectors and put them in the `resources/pretrained_word_vectors/`.\n\nInside the `NER` folder run the following command:\n\n```\n    python train_so.py \n```\n\n\nBy default it will show the evaluation on the `test` set. To evaluate on the dev set run the following command:\n\n```\n    python train_so.py -mode dev\n```\n\nBy default this code base will run on GPU. You can disable it by the `-use_gpu` paramerter as below:\n\n```\n    python train_so.py -use_gpu 0\n```\n\nBy default this code base will run on GPU ID `0`. You can change the gpu id by the `-gpu_id` paramerter as below:\n\n```\n    python train_so.py -gpu_id 1\n```\n\n\n# Loading the annotated files:\n\nTo read the dataset only use the loader_so.py file from `DataReader` folder as below:\n\n\n```\n    import loader_so\n    path_to_file = \"../../resources/annotated_ner_data/StackOverflow/train.txt\"\n    all_sentneces = loader_so.loader_so_text(path_to_file)\n \n```\n\nBy default the `loader_so_text` function merges the following 6 entities to 3 as below: \n\n```\n    \"Library_Function\" -> \"Function\"\n    \"Function_Name\" -> \"Function\"\n\n    \"Class_Name\" -> \"Class\"\n    \"Library_Class\" -> \"Class\"\n\n    \"Library_Variable\" -> \"Variable\"\n    \"Variable_Name\" -> \"Variable\"\n\n    \"Website\" -> \"Website\"\n    \"Organization\" -> \"Website\"\n\n```\n\nTo skip this merging, set `merge_tag= False` as below:\n\n```\n    import loader_so\n    path_to_file = \"../../resources/annotated_ner_data/StackOverflow/train.txt\"\n    all_sentneces = loader_so.loader_so_text(path_to_file,merge_tag=False)\n \n```\n\n\nBy default the `loader_so_text` function will convert the 5 low frequency enttiy as \"O\". To skip this conversion, set `replace_low_freq_tags= False` as below:\n\n\n\n```\n    import loader_so\n    path_to_file = \"../../resources/annotated_ner_data/StackOverflow/train.txt\"\n    all_sentneces = loader_so.loader_so_text(path_to_file, replace_low_freq_tags= False)\n \n```\n\n# Run the Tokenizer:\n\nTo tokenized the code-mixed texts from StackOverflow utilized the source codes insides the `SOTokenizer` folder as below:\n\n```\n\timport stokenizer\n\tsentence = 'I do think that the request I send to my API should be more like {post=>{\"kind\"=>\"GGG\"}} and not {\"kind\"=>\"GGG\"}.'\n\ttokens = stokenizer.tokenize(sentence)\n\tprint(\"tokens: \",tokens)\n\n```\nTokenized Output:\n\n```\n\ttokens:  ['I', 'do', 'think', 'that', 'the', 'request', 'I', 'send', 'to', 'my', 'API', 'should', 'be', 'more', 'like', ' { post=> { \"kind\"=>\"GGG\" }  } ', 'and', 'not', ' { \"kind\"=>\"GGG\" } ', '.']\n\n```\n# Resources:\n\nAll the required resource files can be found here: https://mega.nz/folder/ycxnmSJL#8ZQgHEqBAaGbij3uAHhsSw\n"
  },
  {
    "path": "code/SOTokenizer/ark_twokenize.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nTwokenize -- a tokenizer designed for Twitter text in English and some other European languages.\nThis tokenizer code has gone through a long history:\n\n(1) Brendan O'Connor wrote original version in Python, http://github.com/brendano/tweetmotif\n       TweetMotif: Exploratory Search and Topic Summarization for Twitter.\n       Brendan O'Connor, Michel Krieger, and David Ahn.\n       ICWSM-2010 (demo track), http://brenocon.com/oconnor_krieger_ahn.icwsm2010.tweetmotif.pdf\n(2a) Kevin Gimpel and Daniel Mills modified it for POS tagging for the CMU ARK Twitter POS Tagger\n(2b) Jason Baldridge and David Snyder ported it to Scala\n(3) Brendan bugfixed the Scala port and merged with POS-specific changes\n    for the CMU ARK Twitter POS Tagger\n(4) Tobi Owoputi ported it back to Java and added many improvements (2012-06)\n\nCurrent home is http://github.com/brendano/ark-tweet-nlp and http://www.ark.cs.cmu.edu/TweetNLP\n\nThere have been at least 2 other Java ports, but they are not in the lineage for the code here.\n\nPorted to Python by Myle Ott <myleott@gmail.com>.\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport operator\nimport re\nimport sys\n\ntry:\n    from html.parser import HTMLParser\nexcept ImportError:\n    from HTMLParser import HTMLParser\n\ntry:\n    import html\nexcept ImportError:\n    pass\n\n#items=\"a|b => regex_or(items) ==> (?:a|b)\ndef regex_or(*items):\n    return '(?:' + '|'.join(items) + ')'\n\nContractions = re.compile(u\"(?i)(\\w+)(n['’′]t|['’′]ve|['’′]ll|['’′]d|['’′]re|['’′]s|['’′]m)$\", re.UNICODE)\nWhitespace = re.compile(u\"[\\s\\u0020\\u00a0\\u1680\\u180e\\u202f\\u205f\\u3000\\u2000-\\u200a]+\", re.UNICODE)\n\npunctChars = r\"['\\\"“”‘’.?!…,:;]\"\n#punctSeq   = punctChars+\"+\"  #'anthem'. => ' anthem '.\npunctSeq   = r\"['\\\"“”‘’]+|[.?!,…]+|[:;]+\" #'anthem'. => ' anthem ' .\nentity     = r\"&(?:amp|lt|gt|quot);\" #html tag entities &quot; => \"\n#  URLs\n\n\n# BTO 2012-06: everyone thinks the daringfireball regex should be better, but they're wrong.\n# If you actually empirically test it the results are bad.\n# Please see https://github.com/brendano/ark-tweet-nlp/pull/9\n\nurlStart1  = r\"(?:https?://|\\bwww\\.)\"\ncommonTLDs = r\"(?:com|org|edu|gov|net|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|pro|tel|travel|xxx)\"\nccTLDs   = r\"(?:ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|\" + \\\nr\"bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|\" + \\\nr\"er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|\" + \\\nr\"hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|\" + \\\nr\"lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|\" + \\\nr\"nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|\" + \\\nr\"sl|sm|sn|so|sr|ss|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|\" + \\\nr\"va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw)\" #TODO: remove obscure country domains?\nurlStart2  = r\"\\b(?:[A-Za-z\\d-])+(?:\\.[A-Za-z0-9]+){0,3}\\.\" + regex_or(commonTLDs, ccTLDs) + r\"(?:\\.\"+ccTLDs+r\")?(?=\\W|$)\"\nurlBody    = r\"(?:[^\\.\\s<>][^\\s<>]*?)?\"\nurlExtraCrapBeforeEnd = regex_or(punctChars, entity) + \"+?\"\nurlEnd     = r\"(?:\\.\\.+|[<>]|\\s|$)\"\nurl        = regex_or(urlStart1, urlStart2) + urlBody + \"(?=(?:\"+urlExtraCrapBeforeEnd+\")?\"+urlEnd+\")\"\n\n\n# Numeric\ntimeLike   = r\"\\d+(?::\\d+){1,2}\"\n#numNum     = r\"\\d+\\.\\d+\"\nnumberWithCommas = r\"(?:(?<!\\d)\\d{1,3},)+?\\d{3}\" + r\"(?=(?:[^,\\d]|$))\"\nnumComb  = u\"[\\u0024\\u058f\\u060b\\u09f2\\u09f3\\u09fb\\u0af1\\u0bf9\\u0e3f\\u17db\\ua838\\ufdfc\\ufe69\\uff04\\uffe0\\uffe1\\uffe5\\uffe6\\u00a2-\\u00a5\\u20a0-\\u20b9]?\\\\d+(?:\\\\.\\\\d+)+%?\"\n\n# Abbreviations\nboundaryNotDot = regex_or(\"$\", r\"\\s\", r\"[“\\\"?!,:;]\", entity)\naa1  = r\"(?:[A-Za-z]\\.){2,}(?=\" + boundaryNotDot + \")\"\naa2  = r\"[^A-Za-z](?:[A-Za-z]\\.){1,}[A-Za-z](?=\" + boundaryNotDot + \")\"\nstandardAbbreviations = r\"\\b(?:[Mm]r|[Mm]rs|[Mm]s|[Dd]r|[Ss]r|[Jj]r|[Rr]ep|[Ss]en|[Ss]t)\\.\"\narbitraryAbbrev = regex_or(aa1, aa2, standardAbbreviations)\nseparators  = \"(?:--+|―|—|~|–|=)\"\ndecorations = u\"(?:[♫♪]+|[★☆]+|[♥❤♡]+|[\\u2639-\\u263b]+|[\\ue001-\\uebbb]+)\"\nthingsThatSplitWords = r\"[^\\s\\.,?\\\"]\"\nembeddedApostrophe = thingsThatSplitWords+r\"+['’′]\" + thingsThatSplitWords + \"*\"\n\n#  Emoticons\n# myleott: in Python the (?iu) flags affect the whole expression\n#normalEyes = \"(?iu)[:=]\" # 8 and x are eyes but cause problems\nnormalEyes = \"[:=]\" # 8 and x are eyes but cause problems\nwink = \"[;]\"\nnoseArea = \"(?:|-|[^a-zA-Z0-9 ])\" # doesn't get :'-(\nhappyMouths = r\"[D\\)\\]\\}]+\"\nsadMouths = r\"[\\(\\[\\{]+\"\ntongue = \"[pPd3]+\"\notherMouths = r\"(?:[oO]+|[/\\\\]+|[vV]+|[Ss]+|[|]+)\" # remove forward slash if http://'s aren't cleaned\n\n# mouth repetition examples:\n# @aliciakeys Put it in a love song :-))\n# @hellocalyclops =))=))=)) Oh well\n\n# myleott: try to be as case insensitive as possible, but still not perfect, e.g., o.O fails\n#bfLeft = u\"(♥|0|o|°|v|\\\\$|t|x|;|\\u0ca0|@|ʘ|•|・|◕|\\\\^|¬|\\\\*)\".encode('utf-8')\nbfLeft = u\"(♥|0|[oO]|°|[vV]|\\\\$|[tT]|[xX]|;|\\u0ca0|@|ʘ|•|・|◕|\\\\^|¬|\\\\*)\"\nbfCenter = r\"(?:[\\.]|[_-]+)\"\nbfRight = r\"\\2\"\ns3 = r\"(?:--['\\\"])\"\ns4 = r\"(?:<|&lt;|>|&gt;)[\\._-]+(?:<|&lt;|>|&gt;)\"\ns5 = \"(?:[.][_]+[.])\"\n# myleott: in Python the (?i) flag affects the whole expression\n#basicface = \"(?:(?i)\" +bfLeft+bfCenter+bfRight+ \")|\" +s3+ \"|\" +s4+ \"|\" + s5\nbasicface = \"(?:\" +bfLeft+bfCenter+bfRight+ \")|\" +s3+ \"|\" +s4+ \"|\" + s5\n\neeLeft = r\"[＼\\\\ƪԄ\\(（<>;ヽ\\-=~\\*]+\"\neeRight= u\"[\\\\-=\\\\);'\\u0022<>ʃ）/／ノﾉ丿╯σっµ~\\\\*]+\"\neeSymbol = r\"[^A-Za-z0-9\\s\\(\\)\\*:=-]\"\neastEmote = eeLeft + \"(?:\"+basicface+\"|\" +eeSymbol+\")+\" + eeRight\n\noOEmote = r\"(?:[oO]\" + bfCenter + r\"[oO])\"\n\n\nemoticon = regex_or(\n        # Standard version  :) :( :] :D :P\n        \"(?:>|&gt;)?\" + regex_or(normalEyes, wink) + regex_or(noseArea,\"[Oo]\") + regex_or(tongue+r\"(?=\\W|$|RT|rt|Rt)\", otherMouths+r\"(?=\\W|$|RT|rt|Rt)\", sadMouths, happyMouths),\n\n        # reversed version (: D:  use positive lookbehind to remove \"(word):\"\n        # because eyes on the right side is more ambiguous with the standard usage of : ;\n        regex_or(\"(?<=(?: ))\", \"(?<=(?:^))\") + regex_or(sadMouths,happyMouths,otherMouths) + noseArea + regex_or(normalEyes, wink) + \"(?:<|&lt;)?\",\n\n        #inspired by http://en.wikipedia.org/wiki/User:Scapler/emoticons#East_Asian_style\n        eastEmote.replace(\"2\", \"1\", 1), basicface,\n        # iOS 'emoji' characters (some smileys, some symbols) [\\ue001-\\uebbb]\n        # TODO should try a big precompiled lexicon from Wikipedia, Dan Ramage told me (BTO) he does this\n\n        # myleott: o.O and O.o are two of the biggest sources of differences\n        #          between this and the Java version. One little hack won't hurt...\n        oOEmote\n)\n\nHearts = \"(?:<+/?3+)+\" #the other hearts are in decorations\n\nArrows = regex_or(r\"(?:<*[-―—=]*>+|<+[-―—=]*>*)\", u\"[\\u2190-\\u21ff]+\")\n\n# BTO 2011-06: restored Hashtag, AtMention protection (dropped in original scala port) because it fixes\n# \"hello (#hashtag)\" ==> \"hello (#hashtag )\"  WRONG\n# \"hello (#hashtag)\" ==> \"hello ( #hashtag )\"  RIGHT\n# \"hello (@person)\" ==> \"hello (@person )\"  WRONG\n# \"hello (@person)\" ==> \"hello ( @person )\"  RIGHT\n# ... Some sort of weird interaction with edgepunct I guess, because edgepunct\n# has poor content-symbol detection.\n\n# This also gets #1 #40 which probably aren't hashtags .. but good as tokens.\n# If you want good hashtag identification, use a different regex.\nHashtag = \"#[a-zA-Z0-9_]+\"  #optional: lookbehind for \\b\n#optional: lookbehind for \\b, max length 15\nAtMention = \"[@＠][a-zA-Z0-9_]+\"\n\n# I was worried this would conflict with at-mentions\n# but seems ok in sample of 5800: 7 changes all email fixes\n# http://www.regular-expressions.info/email.html\nBound = r\"(?:\\W|^|$)\"\nEmail = regex_or(\"(?<=(?:\\W))\", \"(?<=(?:^))\") + r\"[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,4}(?=\" +Bound+\")\"\n\n# We will be tokenizing using these regexps as delimiters\n# Additionally, these things are \"protected\", meaning they shouldn't be further split themselves.\nProtected  = re.compile(\n    regex_or(\n        Hearts,\n        url,\n        Email,\n        timeLike,\n        #numNum,\n        numberWithCommas,\n        numComb,\n        emoticon,\n        Arrows,\n        entity,\n        punctSeq,\n        arbitraryAbbrev,\n        separators,\n        decorations,\n        embeddedApostrophe,\n        Hashtag,\n        AtMention), re.UNICODE)\n\n# Edge punctuation\n# Want: 'foo' => ' foo '\n# While also:   don't => don't\n# the first is considered \"edge punctuation\".\n# the second is word-internal punctuation -- don't want to mess with it.\n# BTO (2011-06): the edgepunct system seems to be the #1 source of problems these days.\n# I remember it causing lots of trouble in the past as well.  Would be good to revisit or eliminate.\n\n# Note the 'smart quotes' (http://en.wikipedia.org/wiki/Smart_quotes)\n#edgePunctChars    = r\"'\\\"“”‘’«»{}\\(\\)\\[\\]\\*&\" #add \\\\p{So}? (symbols)\nedgePunctChars    = u\"'\\\"“”‘’«»{}\\\\(\\\\)\\\\[\\\\]\\\\*&\" #add \\\\p{So}? (symbols)\nedgePunct    = \"[\" + edgePunctChars + \"]\"\nnotEdgePunct = \"[a-zA-Z0-9]\" # content characters\noffEdge = r\"(^|$|:|;|\\s|\\.|,)\"  # colon here gets \"(hello):\" ==> \"( hello ):\"\nEdgePunctLeft  = re.compile(offEdge + \"(\"+edgePunct+\"+)(\"+notEdgePunct+\")\", re.UNICODE)\nEdgePunctRight = re.compile(\"(\"+notEdgePunct+\")(\"+edgePunct+\"+)\" + offEdge, re.UNICODE)\n\ndef splitEdgePunct(input):\n    input = EdgePunctLeft.sub(r\"\\1\\2 \\3\", input)\n    input = EdgePunctRight.sub(r\"\\1 \\2\\3\", input)\n    return input\n\n# The main work of tokenizing a tweet.\ndef simpleTokenize(text):\n\n    # Do the no-brainers first\n    splitPunctText = splitEdgePunct(text)\n\n    textLength = len(splitPunctText)\n\n    # BTO: the logic here got quite convoluted via the Scala porting detour\n    # It would be good to switch back to a nice simple procedural style like in the Python version\n    # ... Scala is such a pain.  Never again.\n\n    # Find the matches for subsequences that should be protected,\n    # e.g. URLs, 1.0, U.N.K.L.E., 12:53\n    bads = []\n    badSpans = []\n    for match in Protected.finditer(splitPunctText):\n        # The spans of the \"bads\" should not be split.\n        if (match.start() != match.end()): #unnecessary?\n            bads.append( [splitPunctText[match.start():match.end()]] )\n            badSpans.append( (match.start(), match.end()) )\n\n    # Create a list of indices to create the \"goods\", which can be\n    # split. We are taking \"bad\" spans like\n    #     List((2,5), (8,10))\n    # to create\n    #     List(0, 2, 5, 8, 10, 12)\n    # where, e.g., \"12\" here would be the textLength\n    # has an even length and no indices are the same\n    indices = [0]\n    for (first, second) in badSpans:\n        indices.append(first)\n        indices.append(second)\n    indices.append(textLength)\n\n    # Group the indices and map them to their respective portion of the string\n    splitGoods = []\n    for i in range(0, len(indices), 2):\n        goodstr = splitPunctText[indices[i]:indices[i+1]]\n        splitstr = goodstr.strip().split(\" \")\n        splitGoods.append(splitstr)\n\n    #  Reinterpolate the 'good' and 'bad' Lists, ensuring that\n    #  additonal tokens from last good item get included\n    zippedStr = []\n    for i in range(len(bads)):\n        zippedStr = addAllnonempty(zippedStr, splitGoods[i])\n        zippedStr = addAllnonempty(zippedStr, bads[i])\n    zippedStr = addAllnonempty(zippedStr, splitGoods[len(bads)])\n\n    # BTO: our POS tagger wants \"ur\" and \"you're\" to both be one token.\n    # Uncomment to get \"you 're\"\n    splitStr = []\n    for tok in zippedStr:\n       splitStr.extend(splitToken(tok))\n    zippedStr = splitStr\n\n    return zippedStr\n\ndef addAllnonempty(master, smaller):\n    for s in smaller:\n        strim = s.strip()\n        if (len(strim) > 0):\n            master.append(strim)\n    return master\n\n# \"foo   bar \" => \"foo bar\"\ndef squeezeWhitespace(input):\n    return Whitespace.sub(\" \", input).strip()\n\n# Final pass tokenization based on special patterns\ndef splitToken(token):\n    m = Contractions.search(token)\n    if m:\n        return [m.group(1), m.group(2)]\n    return [token]\n\n# Assume 'text' has no HTML escaping.\ndef tokenize(text):\n    return simpleTokenize(squeezeWhitespace(text))\n\n\n# Twitter text comes HTML-escaped, so unescape it.\n# We also first unescape &amp;'s, in case the text has been buggily double-escaped.\ndef normalizeTextForTagger(text):\n    assert sys.version_info[0] >= 3 and sys.version_info[1] > 3, 'Python version >3.3 required'\n    text = text.replace(\"&amp;\", \"&\")\n    text = html.unescape(text)\n    return text\n\n# This is intended for raw tweet text -- we do some HTML entity unescaping before running the tagger.\n#\n# This function normalizes the input text BEFORE calling the tokenizer.\n# So the tokens you get back may not exactly correspond to\n# substrings of the original text.\ndef tokenizeRawTweetText(text):\n    tokens = tokenize(normalizeTextForTagger(text))\n    return tokens\n\n\nif __name__ == '__main__':\n    for line in sys.stdin:\n        print(' '.join(tokenizeRawTweetText(line)))\n"
  },
  {
    "path": "code/SOTokenizer/stokenizer.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nAuthor: Jeniya Tabassum <jeniya.tabassum@gmail.com>\n\nstokenizer -- a tokenizer designed for StackOverflow text.\n\nThis tokenizer is build on top of a tweet tokenizer : https://github.com/myleott/ark-twokenize-py/blob/master/twokenize.py\nWe updated the rules in tweet tokenizer to adjust with the software domain texts.\n\nBelow is the history of the development fo the  tweet tokenizer\n(1) Brendan O'Connor wrote original version in Python, http://github.com/brendano/tweetmotif\n       TweetMotif: Exploratory Search and Topic Summarization for Twitter.\n       Brendan O'Connor, Michel Krieger, and David Ahn.\n       ICWSM-2010 (demo track), http://brenocon.com/oconnor_krieger_ahn.icwsm2010.tweetmotif.pdf\n(2a) Kevin Gimpel and Daniel Mills modified it for POS tagging for the CMU ARK Twitter POS Tagger\n(2b) Jason Baldridge and David Snyder ported it to Scala\n(3) Brendan bugfixed the Scala port and merged with POS-specific changes\n    for the CMU ARK Twitter POS Tagger\n(4) Tobi Owoputi ported it back to Java and added many improvements (2012-06)\n(5) Myle Ott ported it to Python3 .\n\n\n\"\"\"\nfrom __future__ import unicode_literals\n\nimport operator\nimport re\nimport sys\n\ntry:\n    from html.parser import HTMLParser\nexcept ImportError:\n    from HTMLParser import HTMLParser\n\ntry:\n    import html\nexcept ImportError:\n    pass\n\n#items=\"a|b => regex_or(items) ==> (?:a|b)\ndef regex_or(*items):\n    return '(?:' + '|'.join(items) + ')'\n\n\nContractions = re.compile(u\"(?i)(\\w+)(n['’′]t|['’′]ve|['’′]ll|['’′]d|['’′]re|['’′]s|['’′]m)$\", re.UNICODE)\nWhitespace = re.compile(u\"[\\s\\u0020\\u00a0\\u1680\\u180e\\u202f\\u205f\\u3000\\u2000-\\u200a]+\", re.UNICODE)\n\npunctChars = r\"['\\\"“”‘’.?!…,:;]\"\n#punctSeq   = punctChars+\"+\"  #'anthem'. => ' anthem '.\npunctSeq   = r\"['\\\"“”‘’]+|[.?!,…]+|[:;]+\" #'anthem'. => ' anthem ' .\nentity     = r\"&(?:amp|lt|gt|quot);\" #html tag entities &quot; => \"\n#  URLs\n\n\n# BTO 2012-06: everyone thinks the daringfireball regex should be better, but they're wrong.\n# If you actually empirically test it the results are bad.\n# Please see https://github.com/brendano/ark-tweet-nlp/pull/9\n\nurlStart1  = r\"(?:https?://|\\bwww\\.)\"\ncommonTLDs = r\"(?:com|org|edu|gov|net|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|pro|tel|travel|xxx|aspx)\"\nccTLDs   = r\"(?:ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|\" + \\\nr\"bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|\" + \\\nr\"er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|\" + \\\nr\"hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|\" + \\\nr\"lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|\" + \\\nr\"nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|\" + \\\nr\"sl|sm|sn|so|sr|ss|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|\" + \\\nr\"va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw)\" #TODO: remove obscure country domains?\nurlStart2  = r\"\\b(?:[A-Za-z\\d-])+(?:\\.[A-Za-z0-9]+){0,3}\\.\" + regex_or(commonTLDs, ccTLDs) + r\"(?:\\.\"+ccTLDs+r\")?(?=\\W|$)\"\nurlBody    = r\"(?:[^\\.\\s<>][^\\s<>]*?)?\"\nurlExtraCrapBeforeEnd = regex_or(punctChars, entity) + \"+?\"\nurlEnd     = r\"(?:\\.\\.+|[<>]|\\s|$)\"\nurl        = regex_or(urlStart1, urlStart2) + urlBody + \"(?=(?:\"+urlExtraCrapBeforeEnd+\")?\"+urlEnd+\")\"\n\n\n# Numeric\ntimeLike   = r\"\\d+(?::\\d+){1,2}\"\n#numNum     = r\"\\d+\\.\\d+\"\nnumberWithCommas = r\"(?:(?<!\\d)\\d{1,3},)+?\\d{3}\" + r\"(?=(?:[^,\\d]|$))\"\nnumComb  = u\"[\\u0024\\u058f\\u060b\\u09f2\\u09f3\\u09fb\\u0af1\\u0bf9\\u0e3f\\u17db\\ua838\\ufdfc\\ufe69\\uff04\\uffe0\\uffe1\\uffe5\\uffe6\\u00a2-\\u00a5\\u20a0-\\u20b9]?\\\\d+(?:\\\\.\\\\d+)+%?\"\n\n# Abbreviations\nboundaryNotDot = regex_or(\"$\", r\"\\s\", r\"[“\\\"?!,:;]\", entity)\naa1  = r\"(?:[A-Za-z]\\.){2,}(?=\" + boundaryNotDot + \")\"\naa2  = r\"[^A-Za-z](?:[A-Za-z]\\.){1,}[A-Za-z](?=\" + boundaryNotDot + \")\"\nstandardAbbreviations = r\"\\b(?:[Mm]r|[Mm]rs|[Mm]s|[Dd]r|[Ss]r|[Jj]r|[Rr]ep|[Ss]en|[Ss]t)\\.\"\narbitraryAbbrev = regex_or(aa1, aa2, standardAbbreviations)\nseparators  = \"(?:--+|―|—|~|–|=)\"\ndecorations = u\"(?:[♫♪]+|[★☆]+|[♥❤♡]+|[\\u2639-\\u263b]+|[\\ue001-\\uebbb]+)\"\nthingsThatSplitWords = r\"[^\\s\\.,?\\\"]\"\nembeddedApostrophe = thingsThatSplitWords+r\"+['’′]\" + thingsThatSplitWords + \"*\"\n\n#  Emoticons\n# myleott: in Python the (?iu) flags affect the whole expression\n#normalEyes = \"(?iu)[:=]\" # 8 and x are eyes but cause problems\nnormalEyes = \"[:=]\" # 8 and x are eyes but cause problems\nwink = \"[;]\"\nnoseArea = \"(?:|-|[^a-zA-Z0-9 ])\" # doesn't get :'-(\nhappyMouths = r\"[D\\)\\]\\}]+\"\nsadMouths = r\"[\\(\\[\\{]+\"\ntongue = \"[pPd3]+\"\notherMouths = r\"(?:[oO]+|[/\\\\]+|[vV]+|[Ss]+|[|]+)\" # remove forward slash if http://'s aren't cleaned\n\n# mouth repetition examples:\n# @aliciakeys Put it in a love song :-))\n# @hellocalyclops =))=))=)) Oh well\n\n# myleott: try to be as case insensitive as possible, but still not perfect, e.g., o.O fails\n#bfLeft = u\"(♥|0|o|°|v|\\\\$|t|x|;|\\u0ca0|@|ʘ|•|・|◕|\\\\^|¬|\\\\*)\".encode('utf-8')\nbfLeft = u\"(♥|0|[oO]|°|[vV]|\\\\$|[tT]|[xX]|;|\\u0ca0|@|ʘ|•|・|◕|\\\\^|¬|\\\\*)\"\nbfCenter = r\"(?:[\\.]|[_-]+)\"\nbfRight = r\"\\2\"\ns3 = r\"(?:--['\\\"])\"\ns4 = r\"(?:<|&lt;|>|&gt;)[\\._-]+(?:<|&lt;|>|&gt;)\"\ns5 = \"(?:[.][_]+[.])\"\n# myleott: in Python the (?i) flag affects the whole expression\n#basicface = \"(?:(?i)\" +bfLeft+bfCenter+bfRight+ \")|\" +s3+ \"|\" +s4+ \"|\" + s5\nbasicface = \"(?:\" +bfLeft+bfCenter+bfRight+ \")|\" +s3+ \"|\" +s4+ \"|\" + s5\n\neeLeft = r\"[＼\\\\ƪԄ\\(（<>;ヽ\\-=~\\*]+\"\neeRight= u\"[\\\\-=\\\\);'\\u0022<>ʃ）/／ノﾉ丿╯σっµ~\\\\*]+\"\neeSymbol = r\"[^A-Za-z0-9\\s\\(\\)\\*:=-]\"\neastEmote = eeLeft + \"(?:\"+basicface+\"|\" +eeSymbol+\")+\" + eeRight\n\noOEmote = r\"(?:[oO]\" + bfCenter + r\"[oO])\"\n\n\nemoticon = regex_or(\n        # Standard version  :) :( :] :D :P\n        \"(?:>|&gt;)?\" + regex_or(normalEyes, wink) + regex_or(noseArea,\"[Oo]\") + regex_or(tongue+r\"(?=\\W|$|RT|rt|Rt)\", otherMouths+r\"(?=\\W|$|RT|rt|Rt)\", sadMouths, happyMouths),\n\n        # reversed version (: D:  use positive lookbehind to remove \"(word):\"\n        # because eyes on the right side is more ambiguous with the standard usage of : ;\n        regex_or(\"(?<=(?: ))\", \"(?<=(?:^))\") + regex_or(sadMouths,happyMouths,otherMouths) + noseArea + regex_or(normalEyes, wink) + \"(?:<|&lt;)?\",\n\n        #inspired by http://en.wikipedia.org/wiki/User:Scapler/emoticons#East_Asian_style\n        eastEmote.replace(\"2\", \"1\", 1), basicface,\n        # iOS 'emoji' characters (some smileys, some symbols) [\\ue001-\\uebbb]\n        # TODO should try a big precompiled lexicon from Wikipedia, Dan Ramage told me (BTO) he does this\n\n        # myleott: o.O and O.o are two of the biggest sources of differences\n        #          between this and the Java version. One little hack won't hurt...\n        oOEmote\n)\n\nHearts = \"(?:<+/?3+)+\" #the other hearts are in decorations\n\nArrows = regex_or(r\"(?:<*[-―—=]*>+|<+[-―—=]*>*)\", u\"[\\u2190-\\u21ff]+\")\n\n# BTO 2011-06: restored Hashtag, AtMention protection (dropped in original scala port) because it fixes\n# \"hello (#hashtag)\" ==> \"hello (#hashtag )\"  WRONG\n# \"hello (#hashtag)\" ==> \"hello ( #hashtag )\"  RIGHT\n# \"hello (@person)\" ==> \"hello (@person )\"  WRONG\n# \"hello (@person)\" ==> \"hello ( @person )\"  RIGHT\n# ... Some sort of weird interaction with edgepunct I guess, because edgepunct\n# has poor content-symbol detection.\n\n# This also gets #1 #40 which probably aren't hashtags .. but good as tokens.\n# If you want good hashtag identification, use a different regex.\nHashtag = \"#[a-zA-Z0-9_]+\"  #optional: lookbehind for \\b\n#optional: lookbehind for \\b, max length 15\nAtMention = \"[@＠][a-zA-Z0-9_]+\"\n\n# I was worried this would conflict with at-mentions\n# but seems ok in sample of 5800: 7 changes all email fixes\n# http://www.regular-expressions.info/email.html\nBound = r\"(?:\\W|^|$)\"\nEmail = regex_or(\"(?<=(?:\\W))\", \"(?<=(?:^))\") + r\"[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,4}(?=\" +Bound+\")\"\n\n# JT's additions to rules are as the following: \n# File_Ext, Path, OR_Words, File_Path_W_File_Name, Windows Path, Class_Name, Func_Name, Func_Name_Recursive, Class_Func_Name, HTML_Tag, Comparison Operation, Numbered_List, SPECIAL_WORDS\n\n# JT: 2018-08\n# '.html.erb' => '. html . erb' :: WRONG\n# '.html.erb' => '.html.erb' :: WRONG\nFile_Ext = r\"[.]?[\\w.\\-]*\\.[\\w]+(?=\" +Bound+\")\"\n\n# JT: 2018-08\nPath=r'(?:/?[\\w\\-.]+\\/+)+'\n#Path=r'(?:/?[\\w\\-.]+\\/+[\\w\\-.]*)+'\n\n# JT: 2018-08\n# '/templates/your_template/.php.ini' => '/templates/your_template/ . php . ini' :: WRONG\n# '/templates/your_template/.php.ini' => '/templates/your_template/.php.ini' :: RIGHT\nFile_Path_W_File_Name=Path +\"(?:\" + File_Ext + \")*\"\n\n\n# JT: 2018-08\n# 'GNU/LINUX' => 'GNU / LINUX' :: WRONG\n# 'GNU/LINUX' => 'GNU/LINUX' :: RIGHT\nOR_Words=r'([\\w\\-.:]*\\/[\\w\\.:]*)+'+\"(?=\" +Bound+\")\"\n\n\n# JT: 2018-08\n# 'd:\\\\ProgramFiles\\x07dtbundle' => 'd : \\\\ProgramFiles\\x07dtbundle' :: WRONG\n# 'd:\\\\ProgramFiles\\x07dtbundle' => 'd:\\\\ProgramFiles\\x07dtbundle' :: RIGHT\nWindows_Path=r'((?:(?:[a-zA-Z]:)?\\\\)[\\\\\\S|*\\S]?\\S*)'+\"(?=\" +Bound+\")\"\n\n\n# JT: 2018-08\n# 'javax.swing.Timer' => 'javax . swing . Timer' :: WRONG\n# 'javax.swing.Timer' => 'javax.swing.Timer' :: RIGHT\nClass_Name  =r\"[\\w.:\\-\\>]*[\\.:\\-\\>][\\w\\*]*(?=\" +Bound+\")\"\n\n# JT: 2018-08\n#Func_Name =  r\"([\\w@\\-]+\\((?:[\\w@\\-]+(?:,\\s*)?)*\\))\"+\"(?=\" +Bound+\")\" #-----this will not allow space and quote in function argument\nFunc_Name = r\"([\\w@\\-]+\\((?:[\\$\\w@\\-\\'\\\"\\s?]+(?:,\\s*)?)*\\))\"+\"(?=\" +Bound+\")\"\n\n# JT: 2018-08\nFunc_Name_Recursive = r\"([\\w@\\-.\\(\\)]+\\((?:[\\$\\w@\\-\\'\\\"\\s?]+(?:,\\s*)?)*\\))\"+\"(?=\" +Bound+\")\"\n#Func_Name_Recursive = r\"([$\\w@\\-.\\(\\)]+\\((?:[\\$\\w@\\-\\'\\\"\\s?]+(?:,\\s*)?)*\\)(?:[.][\\w@\\-]*)*)\"+\"(?=\" +Bound+\")\" #last part is included for words like $http.get().success\n#Func_Name_Recursive = r\"([\\w@\\-.\\(\\)]+\\((?:[\\$\\w@\\-\\'\\\"\\s?]+(?:,\\s*)?)*\\)(?:[.][\\w@\\-]*)*)\"+\"(?=\" +Bound+\")\"\n\n# JT: 2018-08\n# 'txScope.Complete()' => 'txScope.Complete(arg1, arg2)' :: RIGHT\n# 'txScope.Complete()' => 'txScope . Complete(arg1 , arg2 )' :: WRONG\n#Class_Func_Name = r\"([\\w.:\\-\\>]*[\\.:\\-\\>][\\w]*\\((?:[\\w@\\-]+[\\.:\\-\\>\\s=]*[\\w]*(?:,\\s*)?)*\\))\"+\"(?=\" +Bound+\")\" #-----this will not allow space and quote in function argument\nClass_Func_Name = r\"([\\$\\w.:\\-\\>]*[\\.:\\-\\>][\\w\\$]*\\((?:[\\$\\w@\\-\\\"\\'\\s]+[\\.:\\-\\>\\s=]*[\\$\\w]*(?:,\\s*)?)*\\))\"+\"(?=\" +Bound+\")\" \n\n# JT: 2018-08\n# '<%=@consumer.name%>' => '<%= @consumer . name% >' :: WRONG\n# '<%=@consumer.name%>' => '<%=@consumer.name%>' :: RIGHT\nHTML_Tag=r\"<.*>\"+\"(?=\" +Bound+\")\"\n\n# JT: 2018-08\n# '==' => \"= =\" :: WRONG\n# '==' => \"==\" :: RIGHT\nComparison_Operators=r\"==|!=|<=|>=|:=\"\n\n# JT: 2018-08\n# num2roman(num) and  generate_number_list(limit) are the function for genrating the numbered list in roman and english numerics, followed by )\ndef num2roman(num):\n    num_map = [(1000, 'M'), (900, 'CM'), (500, 'D'), (400, 'CD'), (100, 'C'), (90, 'XC'),\n           (50, 'L'), (40, 'XL'), (10, 'X'), (9, 'IX'), (5, 'V'), (4, 'IV'), (1, 'I')]\n\n    roman = ''\n\n    while num > 0:\n        for i, r in num_map:\n            while num >= i:\n                roman += r\n                num -= i\n\n    return roman\n\n# JT: 2018-08\ndef generate_number_list(limit):\n    numbered_lists_joined_string=r\"\"\n    for i in range(1,limit+1):\n        roman_upper_case = num2roman(i)\n        roman_lower_case = roman_upper_case.lower()\n        numeric_str= str(i)\n        current_string=roman_upper_case+\"\\)|\"+roman_lower_case+\"\\)|\"+numeric_str+\"\\)|\"\n        if i==limit:\n            current_string=current_string[:-1]\n        \n        numbered_lists_joined_string+=current_string\n    return numbered_lists_joined_string\n\n\n\n\n# Numbered_List for genrating the numbered list in roman and english numerics, followed by )  and we protect these number from splitting\n# \"ii)\" => \"ii ) \" :: WRONG\n# \"ii)\" => \"ii) \" :: RIGHT\n\n#set upto which number we want to generate the numebered list, for now we set this value to 5, we can increase it later\nUpper_Limit_For_Numbered_List=5\nNumbered_List=generate_number_list(Upper_Limit_For_Numbered_List)+\"(?=\" +Bound+\")\" \n\n\n# JT: 2018-08\n# Additionally, these words are \"protected\", meaning they shouldn't be further split themselves.\nSPECIAL_WORDS=r\"^http:|^HTTP:|^vs.|^c#.net|^C#.net\"+\"(?=\" +Bound+\")\"\n\n# We will be tokenizing using these regexps as delimiters\n# Additionally, these things are \"protected\", meaning they shouldn't be further split themselves.\nProtected  = re.compile(\n    regex_or(\n        Func_Name_Recursive, #JT\n        Hearts,\n        url,\n        Email,\n        SPECIAL_WORDS, #JT\n        OR_Words, #JT\n        Numbered_List, #JT\n        Windows_Path, #JT\n        Class_Func_Name, #JT\n        emoticon,\n        Func_Name, #JT\n        Comparison_Operators, #JT\n        Class_Name, #JT\n        File_Path_W_File_Name, #JT\n        #OR_Words, #JT\n        File_Ext, #JT\n        Hashtag,\n        #HTML_Tag, #JT\n        Path, #JT\n        timeLike,\n        #numNum,\n        numberWithCommas,\n        numComb,\n        emoticon,\n        Arrows,\n        entity,\n        punctSeq,\n        arbitraryAbbrev,\n        separators,\n        decorations,\n        embeddedApostrophe,\n        AtMention), re.UNICODE)\n\n\n# Edge punctuation\n# Want: 'foo' => ' foo '\n# While also:   don't => don't\n# the first is considered \"edge punctuation\".\n# the second is word-internal punctuation -- don't want to mess with it.\n# BTO (2011-06): the edgepunct system seems to be the #1 source of problems these days.\n# I remember it causing lots of trouble in the past as well.  Would be good to revisit or eliminate.\n\n# Note the 'smart quotes' (http://en.wikipedia.org/wiki/Smart_quotes)\n#edgePunctChars    = r\"'\\\"“”‘’«»{}\\(\\)\\[\\]\\*&\" #add \\\\p{So}? (symbols)\nedgePunctChars    = u\"'\\\"“”‘’«»{}\\\\(\\\\)\\\\[\\\\]\\\\*&\" #add \\\\p{So}? (symbols)\nedgePunct    = \"[\" + edgePunctChars + \"]\"\nnotEdgePunct = \"[a-zA-Z0-9]\" # content characters\noffEdge = r\"(^|$|:|;|\\s|\\.|,)\"  # colon here gets \"(hello):\" ==> \"( hello ):\"\nEdgePunctLeft  = re.compile(offEdge + \"(\"+edgePunct+\"+)(\"+notEdgePunct+\")\", re.UNICODE)\nEdgePunctRight = re.compile(\"(\"+notEdgePunct+\")(\"+edgePunct+\"+)\" + offEdge, re.UNICODE)\n\n#JT: splitEdgePunct_software is adapted from splitEdgePunct function of tweet tokenizer \n#JT: we  donot have to add Func Rule here as Func Rule are not spiltted by edgePucnLeft & edgePucnRight\ndef splitEdgePunct_software(input):\n    ##print(\"splitEdgePunct_software input: \",input)\n    #first find the word identified by Func_Name_Recursive\n    Func_Name_Recursive_Rule=re.compile(Func_Name_Recursive)\n    Func_Name_Recursive_Words = Func_Name_Recursive_Rule.findall(input)\n\n    ##print(\"Func_Name_Recursive_Words: \", Func_Name_Recursive_Words)\n\n\n    #remove white space from the words identified by Func_Name_Recursive_Rule & save them to Func_Name_Recursive_Words_modified\n    Func_Name_Recursive_Words_modified=[]\n    Func_Name_Recursive_Words_white_space_removed=[]\n    \n\n    for w in Func_Name_Recursive_Words:\n        w_ = re.sub(r\"[\\s]\", '', w)\n        Func_Name_Recursive_Words_white_space_removed.append((w,w_))\n        Func_Name_Recursive_Words_modified.append(w_)\n    \n    #remove white space from the main input for those words which are identified by Func_Name_Recursive_Func_Rule\n    for w in Func_Name_Recursive_Words_white_space_removed:\n        main_string = w[0]\n        space_removed_string = w[1]\n        input=input.replace(main_string,space_removed_string)\n\n    ##print(\"input: after removing spaces Func_Name_Recursive_Words_white_space_removed: \",input)\n    #first find the word identified by Class_Func_Rule\n    Class_Func_Rule=re.compile(Class_Func_Name)\n    Class_Func_Words = Class_Func_Rule.findall(input)\n\n\n    #remove white space from the words identified by Class_Func_Rule & save them to Class_Func_Words_modified\n    Class_Func_Words_modified=[]\n    Class_Func_Words_white_space_removed=[]\n    \n\n    for w in Class_Func_Words:\n        w_ = re.sub(r\"[\\s]\", '', w)\n        Class_Func_Words_white_space_removed.append((w,w_))\n        Class_Func_Words_modified.append(w_)\n    \n    #remove white space from the main input for those words which are identified by Class_Func_Rule\n    for w in Class_Func_Words_white_space_removed:\n        main_string = w[0]\n        space_removed_string = w[1]\n        input=input.replace(main_string,space_removed_string)\n\n\n    #now split sentence by white space\n    split_input=input.split()\n    \n\n    \n    ##print(\"Func_Name_Recursive_Words_modified: \",Func_Name_Recursive_Words_modified )\n    ##print(\"split input: \",split_input)\n\n   \n    \n    #apply EdgePunct rules on each word\n    special_words=[\"vs.\",\"http:\"]\n    output_tokens=[]\n    for word_main in split_input:\n        if word_main.lower() in special_words:\n            split_words=[word_main]\n        else:\n            split_words=Split_End_of_Sentence_Punc([word_main])\n\n        for word in split_words:\n            if word in Func_Name_Recursive_Words_modified:\n                ##print(\"word found: \",word)\n                output_tokens.append(word)\n            elif word in Class_Func_Words_modified:\n                output_tokens.append(word)\n            else:\n              word = EdgePunctLeft.sub(r\"\\1\\2 \\3\", word)  \n              word = EdgePunctRight.sub(r\"\\1\\2 \\3\", word) \n              output_tokens.append(word)\n\n\n    #join the extracted words\n    # \n    modified_input=\" \".join(output_tokens)\n    ##print(\"modified_input: \",modified_input)\n    ##print(\"\\n\\n\")\n\n    #add the white space in the function back to revert to original input\n    for w in Func_Name_Recursive_Words_white_space_removed:\n        main_string = w[0]\n        space_removed_string = w[1]\n        modified_input=modified_input.replace(space_removed_string, main_string)\n\n\n    #add the white space in the function back to revert to original input\n    for w in Class_Func_Words_white_space_removed:\n        main_string = w[0]\n        space_removed_string = w[1]\n        modified_input=modified_input.replace(space_removed_string, main_string)\n\n\n    \n\n   \n\n    ##print(\"modified_input: \",modified_input)\n\n    return modified_input\n\n\n# JT: 2018-08: Split_End_of_Sentence_Punc(token_list) split the punctuation letter form the last token\n# 'Update the sdk version.' => 'Update the sdk version . '\n\ndef Split_End_of_Sentence_Punc(token_list):\n    if len(token_list[-1])==1:\n        return token_list\n\n    arbitraryAbbrev_rule=re.compile(arbitraryAbbrev)\n    list_of_abbrev= arbitraryAbbrev_rule.findall(token_list[-1])\n    if len(list_of_abbrev)>0:\n        return token_list\n\n    list_of_punctuations=[\".\",\":\",\"?\",\";\",\"-\",\"!\"]\n    \n    \n    end_token=[s for s in list_of_punctuations if s==token_list[-1][-1] and s!=token_list[-1][-2]]\n    ##print(\"end_token: \",end_token)\n    #if token_list[-1][-1]==\".\":\n    if len(end_token)==1:\n        end_punc_char=end_token[0]\n        token_list[-1]=token_list[-1][:-1]\n        token_list.append(end_punc_char)\n    return token_list\n\n\n\n\n\n\n\n# simpleTokenize_software is adapted from simpleTokenize function of the tweet tokenizaer only \n\ndef simpleTokenize_software(text):\n\n    # JT:2018-08:  Do the software domain specific splitting \n    splitPunctText = splitEdgePunct_software(text)\n\n    textLength = len(splitPunctText)\n    ##print(\"splitPunctText: \",splitPunctText)\n\n    # BTO: the logic here got quite convoluted via the Scala porting detour\n    # It would be good to switch back to a nice simple procedural style like in the Python version\n    # ... Scala is such a pain.  Never again.\n\n    # Find the matches for subsequences that should be protected,\n    # e.g. URLs, 1.0, U.N.K.L.E., 12:53\n    bads = []\n    badSpans = []\n\n    for match in Protected.finditer(splitPunctText):\n        # The spans of the \"bads\" should not be split.\n        ##print(match)\n        if (match.start() != match.end()): #unnecessary?\n            bads.append( [splitPunctText[match.start():match.end()]] )\n            badSpans.append( (match.start(), match.end()) )\n    ##print(\"bads: \",bads)\n    # Create a list of indices to create the \"goods\", which can be\n    # split. We are taking \"bad\" spans like\n    #     List((2,5), (8,10))\n    # to create\n    #     List(0, 2, 5, 8, 10, 12)\n    # where, e.g., \"12\" here would be the textLength\n    # has an even length and no indices are the same\n    indices = [0]\n    for (first, second) in badSpans:\n        indices.append(first)\n        indices.append(second)\n    indices.append(textLength)\n\n    # Group the indices and map them to their respective portion of the string\n    splitGoods = []\n    for i in range(0, len(indices), 2):\n        goodstr = splitPunctText[indices[i]:indices[i+1]]\n        splitstr = goodstr.strip().split(\" \")\n        splitGoods.append(splitstr)\n\n    #  Reinterpolate the 'good' and 'bad' Lists, ensuring that\n    #  additonal tokens from last good item get included\n    zippedStr = []\n    for i in range(len(bads)):\n        zippedStr = addAllnonempty(zippedStr, splitGoods[i])\n        zippedStr = addAllnonempty(zippedStr, bads[i])\n    zippedStr = addAllnonempty(zippedStr, splitGoods[len(bads)])\n\n    # BTO: our POS tagger wants \"ur\" and \"you're\" to both be one token.\n    # Uncomment to get \"you 're\"\n    splitStr = []\n    for tok in zippedStr:\n       splitStr.extend(splitToken(tok))\n    zippedStr = splitStr\n    ##print(\"zippedStr: \",zippedStr)\n    return zippedStr\n\n    #zippedStr_updated=Split_End_of_Sentence_Punc(zippedStr)\n\n    # #print(\"zippedStr\", zippedStr)\n    # #print(\"zippedStr_updated\", zippedStr_updated)\n\n    #return zippedStr_updated\n\n\n\ndef addAllnonempty(master, smaller):\n    for s in smaller:\n        strim = s.strip()\n        if (len(strim) > 0):\n            master.append(strim)\n    return master\n\n# \"foo   bar \" => \"foo bar\"\ndef squeezeWhitespace(input):\n    return Whitespace.sub(\" \", input).strip()\n\n# Final pass tokenization based on special patterns\ndef splitToken(token):\n    m = Contractions.search(token)\n    if m:\n        return [m.group(1), m.group(2)]\n    return [token]\n\n# Assume 'text' has no HTML escaping.\ndef tokenize_text(text):\n    return simpleTokenize_software(squeezeWhitespace(text))\n\n\n# Twitter text comes HTML-escaped, so unescape it.\n# We also first unescape &amp;'s, in case the text has been buggily double-escaped.\ndef normalizeTextForTagger(text):\n    assert sys.version_info[0] >= 3 and sys.version_info[1] > 3, 'Python version >3.3 required'\n    text = text.replace(\"&amp;\", \"&\")\n    text = html.unescape(text)\n    return text\n\n\n# JT: 2018-08:  Split_On_Multiple_Dot(input_word), \n# 'the queries....it' => \"queries .... it\"\ndef Split_On_Multiple_Dot(input_word):\n    multiple_dot=r'\\w*[.][.]+\\w*'\n    multiple_dot_rule=re.compile(multiple_dot)\n    words_with_multiple_dots = multiple_dot_rule.findall(input_word)\n\n    new_tokens=[]\n    for word in words_with_multiple_dots:\n        splitter=\"\"\n        for i in range(0,word.count(\".\")):\n            splitter+=\".\"\n        word_splitted = word.split(splitter)\n        \n        split_word_index=0\n        for split_word in word_splitted:\n            if split_word ==\"\":continue\n            if split_word_index>0:\n                new_tokens.append(splitter)\n            new_tokens.append(split_word)\n            split_word_index+=1\n        if split_word_index==1:\n            new_tokens.append(splitter)\n    return new_tokens\n\n# JT:2018-08: Split_On_Non_function_end_parenthesis(input_word) splits the surrounding parenthesis of a word only if the word is not a function\n# '{\"kind\"=>\"GGG\"}' =>>  ' { \"kind\"=>\"GGG\" } '\ndef Split_On_Non_function_end_parenthesis(input_word):\n    ##print(\"input_word for Split_On_Non_function_end_parenthesis:\", input_word)\n    new_token=[input_word]\n\n    if len(input_word)==1:\n        return new_token\n\n    #if the word is from a numbered list do not split end bracket\n    numbered_list_rule=re.compile(Numbered_List)\n    numbered_list_words = numbered_list_rule.findall(input_word)\n\n    if len(numbered_list_words)>0:\n        return new_token\n\n    #if the word is from a emoticon do not split end bracket\n    emoticon_rule=re.compile(emoticon)\n    emoticon_words = emoticon_rule.findall(input_word)\n\n    if len(emoticon_words)>0:\n        return new_token\n\n    #if the word is from a class function do not split end bracket\n    class_func_name_rule=re.compile(Class_Func_Name)\n    class_func_words = class_func_name_rule.findall(input_word)\n\n    if len(class_func_words)>0:\n        return new_token\n\n    #if the word is from a function do not split end bracket\n    func_name_rule=re.compile(Func_Name)\n    func_words = func_name_rule.findall(input_word)\n    if len(func_words)>0:\n        return new_token\n\n    #otherwise check if there is any end bracket, if then add space infront of it\n    if \")\" in input_word and \"(\" not in input_word:\n        input_word_updated=input_word.replace(\")\",\" )\")\n        new_token=[input_word_updated]\n    elif \"(\" in input_word and \")\" not in input_word:\n        input_word_updated=input_word.replace(\"(\",\"( \")\n        new_token=[input_word_updated]\n\n    elif \"]\" in input_word and \"[\" not in input_word:\n        input_word_updated=input_word.replace(\"]\",\" ]\")\n        new_token=[input_word_updated]\n\n    elif \"[\" in input_word and \"]\" not in input_word:\n        input_word_updated=input_word.replace(\"[\",\"[ \")\n        new_token=[input_word_updated]\n    \n    return new_token\n\n# JT: 2018-08: Split_On_last_letter_Colon_Mark(input_word) will create a spcace between Quote and letter\n# ' Example:\"'=>'Example :\"'\ndef Split_On_last_letter_Colon_Mark(input_word):\n    ##print(\"inside Split_On_last_letter_Punc_Mark\", input_word)\n    new_token=[input_word]\n\n    sp_rule=re.compile(SPECIAL_WORDS)\n    sp_rule_words=sp_rule.findall(input_word)\n    if len(sp_rule_words)>0:\n        return new_token\n\n    \n    if len(input_word)==1:\n        return new_token\n\n    #if count of \":\" is more than word then it is probably a word mentioning a class name, so then we are not going to split it\n    if input_word.count(\":\")>1:\n        return new_token\n    #if is not a class name, then we are going to add space before token, Netbeans: >> Netbeans :\n    if input_word[-1]==\":\":\n        input_word_updated=input_word[:-1]\n        #input_word_updated=input_word[:-1]+' :'\n        ##print(\"input_word_updated: \", input_word_updated)\n        new_token=[input_word_updated,\":\"]\n    return new_token\n\n# JT: 2018-08: Split_On_last_letter_Quote_Mark(input_word) will create a spcace between Quote and letter\n# ' Netbeans\"'=>'Netbeans \"'\ndef Split_On_last_letter_Quote_Mark(input_word):\n    ##print(\"input_word for Split_On_Non_function_end_parenthesis:\", input_word)\n    new_token=[input_word]\n\n    if len(input_word)==1:\n        return new_token\n\n    #if the word is from a class function do not split end bracket\n    class_func_name_rule=re.compile(Class_Func_Name)\n    class_func_words = class_func_name_rule.findall(input_word)\n\n    if len(class_func_words)>0:\n        return new_token\n\n    #if the word is from a function do not split end bracket\n    func_name_rule=re.compile(Func_Name)\n    func_words = func_name_rule.findall(input_word)\n    if len(func_words)>0:\n        return new_token\n    if input_word.count(\"'\")==1 and input_word[-1]==\"'\":\n        #input_word_updated=input_word[:-1]+\" '\"\n        #new_token=[input_word_updated]\n        input_word_updated=input_word[:-1]\n        new_token=[input_word_updated,\" '\"]\n    \n    if input_word.count('\"')==1 and input_word[-1]=='\"':\n        #input_word_updated=input_word[:-1]+' \"'\n        #new_token=[input_word_updated]\n        input_word_updated=input_word[:-1]\n        new_token=[input_word_updated,' \"']\n    \n        \n    \n    return new_token\n\n# JT: 2018-08: Split_Words_Inside_Parenthesis(input_word) will create a in between spcace between parenthesis words\n# '{2,4,5,6,7,8}' => ' { 2 , 4 , 5 , 6 , 7 , 8 } ' \n\ndef Split_Words_Inside_Parenthesis(input_word):\n    new_token=[input_word]\n    if (input_word[0]==\"[\" and input_word[-1]==\"]\") or (input_word[0]==\"{\"and input_word[-1]==\"}\") or (input_word[0]==\"(\"and input_word[-1]==\")\"):\n        #print(input_word)\n        input_word = input_word.replace(\",\",\" , \")\n        input_word = input_word.replace(\"{\",\" { \")\n        input_word = input_word.replace(\"}\",\" } \")\n        input_word = input_word.replace(\"[\",\" [ \")\n        input_word = input_word.replace(\"]\",\" ] \")\n        new_token=[input_word]\n        #print(input_word)\n    return new_token\n\n# JT: 2018-08: Split_Parenthesis_At_End_of_URL(input_word) will split the end of closing parenthesis from the input word if the input word is a url\n# 'https://www.sample-videos.com/text/Sample-text-file-10kb.txt)' => 'https://www.sample-videos.com/text/Sample-text-file-10kb.txt )'\n# 'https://www.sample-videos.com/text/(Sample-text-file-10kb.txt)' => 'https://www.sample-videos.com/text/(Sample-text-file-10kb.txt)'\n\ndef Split_Parenthesis_At_End_of_URL(input_word):\n    new_token=[input_word]\n    url_rule=re.compile(url)\n    url_words = url_rule.findall(input_word)\n    word_wo_balanced_paren = []\n    for word in url_words:\n        bal_paren_word = find_word_w_balanced_paren(word)\n        if len(bal_paren_word)==0:\n            word_wo_balanced_paren.append(word)\n    if len(url_words)>0 and len(word_wo_balanced_paren)>0:\n        if input_word[-1]==\")\" or input_word[-1]==\"]\" or input_word==\"}\":\n            main_url=input_word[:-1]\n            end_paren=\")\"\n            new_token=[main_url,end_paren]\n            #print(input_word2)\n\n\n    #print(url_words)\n    return new_token\n\n\ndef SO_Tokenizer_wrapper(tokens):\n    #print(\"input token to SO_TOkenizer_wrapper: \",tokens)\n    end_of_sent_punc_split_tokens=Split_End_of_Sentence_Punc(tokens)\n\n    dot_split_tokens=[]\n    for token in end_of_sent_punc_split_tokens:\n        multiple_dot_splitted_result = Split_On_Multiple_Dot(token)\n        if len(multiple_dot_splitted_result)==0:\n            dot_split_tokens.append(token)\n            continue\n        dot_split_tokens.extend(multiple_dot_splitted_result)\n\n    end_parenthesis_split_tokens=[]\n\n    for token in dot_split_tokens:\n        end_parenthesis_split_tokens.extend(Split_On_Non_function_end_parenthesis(token))\n\n    end_paren_split_tokens=[]\n    for token in end_parenthesis_split_tokens:\n        end_paren_split_tokens.extend(Split_On_last_letter_Colon_Mark(token))\n\n    end_of_quote_split_tokens=[]\n    for token in end_paren_split_tokens:\n        end_of_quote_split_tokens.extend(Split_On_last_letter_Quote_Mark(token))\n\n    inside_parenthesis_split_words=[]\n    for token in end_of_quote_split_tokens:\n        inside_parenthesis_split_words.extend(Split_Words_Inside_Parenthesis(token))\n\n    \n\n    url_word_end_paren_removed_tokens=[]\n    for token in inside_parenthesis_split_words:\n        url_word_end_paren_removed_tokens.extend(Split_Parenthesis_At_End_of_URL(token))\n\n\n    new_tokens=url_word_end_paren_removed_tokens\n\n\n    multi_space_removed_tokens=[]\n    for w in new_tokens:\n        #print(w,len(w))\n        w =re.sub( '\\s+', ' ',w).strip()\n        \n        #print(w,len(w))\n        multi_space_removed_tokens.append(w)\n\n\n    \n\n   \n    new_token=multi_space_removed_tokens\n    ##print(\"new_tokens\", new_tokens)\n\n    return new_tokens\n\ndef match_paren(current,previous):\n    if current==\")\" and previous==\"(\":\n        return True\n    if current==\"}\" and previous==\"{\":\n        return True\n    if current==\"]\" and previous==\"[\":\n        return True\n    return False\n\ndef find_word_w_balanced_paren(line):\n    list_of_w_balaned_parentheses=[]\n    opening_barckets=[\"(\",\"[\",\"{\"]\n    closing_barckets=[\")\",\"]\",\"}\"]\n    for word in line.split():\n        count_first=word.count(\"(\")\n        count_second=word.count(\"{\")\n        count_third=word.count(\"[\")\n        if count_first+count_second+count_third <=1 and (word[0]==\"(\" or word[0]==\"{\" and word[0]==\"[\"): continue\n        stack=[]\n        paren_found=False\n        paren_balanced=False\n        if \"(\" in word and \")\" not in word or \")\" in word and \"(\" not in word: \n            continue\n        if \"{\" in word and \"}\" not in word or \"}\" in word and \"{\" not in word: \n            continue\n        if \"[\" in word and \"]\" not in word or \"]\" in word and \"[\" not in word: \n            continue\n        for char in word:\n            if char in opening_barckets:\n                ##print(word,char)\n                paren_found=True\n                stack.append(char)\n            if char in closing_barckets:\n                ##print(word,char)\n                prev_paren=stack.pop()\n                ##print(char,prev_paren)\n                paren_balanced=match_paren(char,prev_paren)\n                ##print(paren_balanced)\n                if paren_balanced==False:\n                    break\n        if len(stack)==0 and paren_found==True and paren_balanced==True:\n            list_of_w_balaned_parentheses.append(word)\n            \n    return list_of_w_balaned_parentheses\n\n\ndef Mask_Nested_Paren_HTML_Word(text):\n    base=\"\"\n    counter=0\n    Nested_Parenthesis_Words_Dict={}\n\n    for i in range(0,80):\n        base+=\"x\"\n    ##print(base)\n    HTML_Tag_Rule=re.compile(HTML_Tag)\n    HTML_Tag_Words = HTML_Tag_Rule.findall(text)\n\n    ##print(\"HTML_Tag_Words: \",HTML_Tag_Words)\n\n    for w in HTML_Tag_Words:\n        counter+=1\n        mask_string=base+str(counter)\n        Nested_Parenthesis_Words_Dict[mask_string]=w\n        text=text.replace(w,mask_string)\n\n    ##print(\"HTML_masked_text: \",text)\n    Neseted_Paren_Words = find_word_w_balanced_paren(text)\n    \n    ##print(\"Neseted_Paren_Words from Mask_Nested_Parenthesis_Words: \",Neseted_Paren_Words)\n    \n    \n    modified_text_input=[]\n    for word in text.split():\n        if word in Neseted_Paren_Words:\n            #c#print(word)\n            counter+=1\n            mask_string=base+str(counter)\n            Nested_Parenthesis_Words_Dict[mask_string]=word\n            modified_text_input.append(mask_string)\n        else:\n            modified_text_input.append(word)\n    ##print(\"modified_text_input tokens: \", modified_text_input)\n    modified_text_input_str=\" \".join(modified_text_input)\n    return (Nested_Parenthesis_Words_Dict, modified_text_input_str,base)\n\n\n\ndef Resotre_Masked_Words(tokens,nested_parenthesis_words_dict, base):\n    tokens_unmasked= []\n    ##print(\"input to Resotre_Masked_Words: \", tokens, nested_parenthesis_words_dict)\n    for token in tokens:\n        ##print(\"token: \",token)\n        if token not in nested_parenthesis_words_dict:\n            tokens_unmasked.append(token)\n        else:\n            main_word=nested_parenthesis_words_dict[token]\n            tokens_unmasked.append(main_word)\n    tokens_unmasked_wrapper=[]\n    for token in tokens_unmasked:\n        if base in token:\n            split_token=token.split()\n            for t in split_token:\n                if t in nested_parenthesis_words_dict:\n                    t=nested_parenthesis_words_dict[t]\n                tokens_unmasked_wrapper.append(t)\n        else:\n            tokens_unmasked_wrapper.append(token)\n\n            \n    ##print(len(tokens_unmaskedc))\n    return tokens_unmasked_wrapper\n\n\n# This is intended for raw tweet text -- we do some HTML entity unescaping before running the tagger.\n#\n# This function normalizes the input text BEFORE calling the tokenizer.\n# So the tokens you get back may not exactly correspond to\n# substrings of the original text.\ndef tokenize(text):\n    ##print(\"main input to tokenizer: \",text)\n    (nested_parenthesis_words_dict , nested_paren_masked_text ,base) = Mask_Nested_Paren_HTML_Word(text)\n    ##print(\"nested_paren_masked_text: \", nested_paren_masked_text)\n    ##print(\"nested_parenthesis_words_dict: \", nested_parenthesis_words_dict)\n    \n    tokens = tokenize_text(normalizeTextForTagger(nested_paren_masked_text))\n\n    tokens_unmasked=Resotre_Masked_Words(tokens,nested_parenthesis_words_dict,base)\n    ##print(\"tokens_unmasked: \", tokens_unmasked)\n    tokens_wrapped = SO_Tokenizer_wrapper(tokens_unmasked)\n\n    \n    return tokens_wrapped\n\n\nif __name__ == '__main__':\n    # for line in sys.stdin:\n    #     #print(' '.join(tokenizeRawTweetText(line)))\n    text=\"In js $http.get().success GNU/Linux 4.2.6-200.fc22.x86_64 you call entityManager.fetchMetadata().then(success, failed) method's first data parameter in templates/your_template/index.php;\"\n    #text='I do think that the request I send to my API\\'s should be more like {post=>{\"kind\"=>\"GGG\"}} and not {\"kind\"=>\"GGG\"} of I have to find a way for my api to work with the request I send now.'\n    #text=\"I tried to add a manual refresh on the history.state change, I found something like this:\"\n    #text=\"In js you call entityManager.fetchMetadata().then(success, failed); After the promise of fetchMetadata() is resolved, breeze metadata of variable entityManager is full-filled and you can start working with your server-side objects in js with breeze!\"\n    #text=\"Then in vs. e.g. another file (res.php) I have a sql request and I display results .\"\n    #text=\"Modify the img tag like: <'img src=\\\"<'c:url value='<%=request.getContextPath()%>/images/logo.jpg'> \"\n    #text=\"localhost:9200/_search\"\n    #text=\"Finally, since O((n^2 , n) 2) = O(n^2) you get that the terms that include the sum dominate the runtime and that is why the algorithm is O(n^2)\"\n    #text=\"apache_setenv('sessionID', session_id(), TRUE)\"\n    #text=\":)\"\n    # #print(\"input text: \",text)\n    # text=\"Lines 2, 4, and 8 run in O(1) time, so {2,4,5,6,7,8} run in O(1 + 1 + A.Length + 1) = O(A.Length)time.\"\n    # text='Use android:button\"@btmImage link\"'\n    #text=\"[ERROR] [gwtearthdemo] - Line 96:  O(1) time, so {2,4,5,6,7,8} run in O(1 + 1 + A.Length + 1) = O(A.Length)time.\"\n    #text=\"So when we write a function like preorderTree :: Tree a -> [a].\"\n    #text=\"But now that the div's are vs. floating, they don't push #main's white background down c.net.\"\n    #text=\"Example: I've confirmed that if I pass a url to some other sample url like (https://www.sample-videos.com/text/Sample-text-file-10kb.txt), my custom webview and google docs will display the results correctly, so the failure only happens when using a url/download going to our custom server.\"\n    #text=\"Lines 2, 4, and 8 run in O(1) time, so {2,4,5,6,7,8} run in O(1 + 1 + A.Length + 1) = O(A.Length)time.\"\n    tokens = tokenize(text)\n    print(\"output tokens: \",tokens)\n    print(\"output: \",\" \".join(tokens))\n\n    "
  },
  {
    "path": "resources/annotated_ner_data/GitHub/GH_test_set.txt",
    "content": "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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/11\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/11\tO\n\t\n@petergoldstein\tB-User_Name\t@petergoldstein\tO\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nsubmitting\tO\tsubmitting\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nclosing\tO\tclosing\tO\nin\tO\tin\tO\nfavor\tO\tfavor\tO\nof\tO\tof\tO\n#13\tO\t#13\tO\nand\tO\tand\tO\nother\tO\tother\tO\nchanges\tO\tchanges\tO\nalready\tO\talready\tO\nin\tO\tin\tO\nmaster\tO\tmaster\tO\nthat\tO\tthat\tO\nsupport\tO\tsupport\tO\nActiveRecord\tB-Library\tActiveRecord\tO\n4+\tB-Version\t4+\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nwe\tO\twe\tO\n're\tO\t're\tO\nmissing\tO\tmissing\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/8\tO\thttps://github.com/rpcope1/Hantek6022API/issues/8\tO\n\t\nCurrently\tO\tCurrently\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nOK\tO\tOK\tO\nif\tO\tif\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nscope\tO\tscope\tO\nis\tO\tis\tO\npresent\tO\tpresent\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthe\tO\tthe\tO\nsetup()\tB-Library_Function\tsetup()\tO\nmethod\tO\tmethod\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndiscriminating\tO\tdiscriminating\tO\ndevices\tO\tdevices\tO\nby\tO\tby\tO\nserial\tO\tserial\tO\nnumber\tO\tnumber\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwe\tO\twe\tO\nautomatically\tO\tautomatically\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nscope\tO\tscope\tO\nwe\tO\twe\tO\nfind\tO\tfind\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwell\tO\twell\tO\nif\tO\tif\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\ndevices\tO\tdevices\tO\nwe\tO\twe\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nutilize\tO\tutilize\tO\npresent\tO\tpresent\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nTwo\tO\tTwo\tO\nchanges\tO\tchanges\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\noccur\tO\toccur\tO\n:\tO\t:\tO\nfirst\tO\tfirst\tO\nsetup\tO\tsetup\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nan\tO\tan\tO\noptional\tO\toptional\tO\nparameter\tO\tparameter\tO\nto\tO\tto\tO\nforce\tO\tforce\tO\nthe\tO\tthe\tO\nselection\tO\tselection\tO\nof\tO\tof\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nserial\tO\tserial\tO\nnumber\tO\tnumber\tO\nfor\tO\tfor\tO\nselecting\tO\tselecting\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ndevice\tO\tdevice\tO\nagain\tO\tagain\tO\nafter\tO\tafter\tO\ncode\tO\tcode\tO\nload\tO\tload\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ndevices\tO\tdevices\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsorted\tO\tsorted\tO\nby\tO\tby\tO\nserial\tO\tserial\tO\nnumber\tO\tnumber\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\nID\tO\tID\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nchosen\tO\tchosen\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nas\tO\tas\tO\ndevices\tO\tdevices\tO\nmove\tO\tmove\tO\naround\tO\taround\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbus\tO\tbus\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nunfortunately\tO\tunfortunately\tO\nhappens\tO\thappens\tO\nwhen\tO\twhen\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\ndisappears\tO\tdisappears\tO\nand\tO\tand\tO\nreappears\tO\treappears\tO\nas\tO\tas\tO\nthough\tO\tthough\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbeen\tO\tbeen\tO\nunplugged/replugged\tO\tunplugged/replugged\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/10\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/10\tO\n\t\nR.I.Pineear\tB-User_Name\tR.I.Pineear\tO\nhas\tO\thas\tO\na\tO\ta\tO\nnice\tO\tnice\tO\nblog\tO\tblog\tO\npost\tO\tpost\tO\n(\tO\t(\tO\npartially\tO\tpartially\tO\n)\tO\t)\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\nof\tO\tof\tO\nrepository\tO\trepository\tO\nand\tO\tand\tO\nbuild\tO\tbuild\tO\nmetadata\tO\tmetadata\tO\nembedded\tO\tembedded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nboth\tO\tboth\tO\ndocker\tB-Application\tdocker\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nACI\tO\tACI\tO\nspec\tO\tspec\tO\nonly\tO\tonly\tO\nallow\tO\tallow\tO\nstring\tB-Data_Type\tstring\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ndocker\tB-Application\tdocker\tO\ndocumentation\tO\tdocumentation\tO\nshows\tO\tshows\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nwith\tO\twith\tO\na\tO\ta\tO\nJSON\tB-File_Type\tJSON\tO\nblob\tO\tblob\tO\n,\tO\t,\tO\nrepresented\tO\trepresented\tO\nas\tO\tas\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\n,\tO\t,\tO\n@jonboulle\tB-User_Name\t@jonboulle\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nyou\tO\tyou\tO\nlinked\tO\tlinked\tO\nto\tO\tto\tO\nreferences\tO\treferences\tO\nimage\tB-User_Interface_Element\timage\tO\n\"\tO\t\"\tO\nlabels\tO\tlabels\tO\n\"\tO\t\"\tO\nalthough\tO\talthough\tO\nthe\tO\tthe\tO\nspec\tO\tspec\tO\nsays\tO\tsays\tO\nthey\tO\tthey\tO\nshould\tO\tshould\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nimage\tB-User_Interface_Element\timage\tO\ndiscovery\tO\tdiscovery\tO\nand\tO\tand\tO\ndependency\tO\tdependency\tO\n,\tO\t,\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nannotations\tO\tannotations\tO\n\"\tO\t\"\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nconfusing\tO\tconfusing\tO\n:)\tO\t:)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/8\tO\thttps://github.com/contributte/logging/issues/8\tO\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nShame\tO\tShame\tO\non\tO\ton\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\n👍\tO\t👍\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nJonathanPannell/ProgrammeTest_01_01\tO\tJonathanPannell/ProgrammeTest_01_01\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/JonathanPannell/ProgrammeTest_01_01/issues/1\tO\thttps://github.com/JonathanPannell/ProgrammeTest_01_01/issues/1\tO\n\t\nSeverity\tO\tSeverity\tO\nS1\tO\tS1\tO\n-\tO\t-\tO\nCrash\tO\tCrash\tO\nS2\tO\tS2\tO\n-\tO\t-\tO\nWrong\tO\tWrong\tO\nResult\tO\tResult\tO\nS3\tO\tS3\tO\n-\tO\t-\tO\nLegal\tO\tLegal\tO\nReason\tO\tReason\tO\nS4\tO\tS4\tO\n-\tO\t-\tO\nBad\tO\tBad\tO\nVisual\tO\tVisual\tO\nS5\tO\tS5\tO\n-\tO\t-\tO\nBad\tO\tBad\tO\nText\tO\tText\tO\nS6\tO\tS6\tO\n-\tO\t-\tO\nUnClear\tO\tUnClear\tO\nRequirement\tO\tRequirement\tO\nS7\tO\tS7\tO\n-\tO\t-\tO\nS8\tO\tS8\tO\n-\tO\t-\tO\nS9\tO\tS9\tO\n-\tO\t-\tO\nS10\tO\tS10\tO\n-\tO\t-\tO\nTest\tO\tTest\tO\nData\tO\tData\tO\nS11\tO\tS11\tO\n-\tO\t-\tO\nTest\tO\tTest\tO\nEnvironment\tO\tEnvironment\tO\nS20\tO\tS20\tO\n-\tO\t-\tO\nTask\tO\tTask\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/8\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/8\tO\n\t\nThanks\tO\tThanks\tO\n@ph\tB-User_Name\t@ph\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/7\tO\thttps://github.com/zeroepoch/plotbitrate/issues/7\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nrecently\tO\trecently\tO\nencountered\tO\tencountered\tO\na\tO\ta\tO\nstream\tO\tstream\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nimages\tB-User_Interface_Element\timages\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nno\tO\tno\tO\ntimestamp\tO\ttimestamp\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\n<frame\tB-Code_Block\t<frame\tB-Code_Block\nmedia_type=\"video\"\tI-Code_Block\tmedia_type=\"video\"\tI-Code_Block\nstream_index=\"3\"\tI-Code_Block\tstream_index=\"3\"\tI-Code_Block\nkey_frame=\"1\"\tI-Code_Block\tkey_frame=\"1\"\tI-Code_Block\npkt_size=\"23754\"\tI-Code_Block\tpkt_size=\"23754\"\tI-Code_Block\nwidth=\"600\"\tI-Code_Block\twidth=\"600\"\tI-Code_Block\nheight=\"882\"\tI-Code_Block\theight=\"882\"\tI-Code_Block\npix_fmt=\"yuvj444p\"\tI-Code_Block\tpix_fmt=\"yuvj444p\"\tI-Code_Block\npict_type=\"I\"\tI-Code_Block\tpict_type=\"I\"\tI-Code_Block\ncoded_picture_number=\"0\"\tI-Code_Block\tcoded_picture_number=\"0\"\tI-Code_Block\ndisplay_picture_number=\"0\"\tI-Code_Block\tdisplay_picture_number=\"0\"\tI-Code_Block\ninterlaced_frame=\"0\"\tI-Code_Block\tinterlaced_frame=\"0\"\tI-Code_Block\ntop_field_first=\"0\"\tI-Code_Block\ttop_field_first=\"0\"\tI-Code_Block\nrepeat_pict=\"0\"\tI-Code_Block\trepeat_pict=\"0\"\tI-Code_Block\ncolor_range=\"pc\"\tI-Code_Block\tcolor_range=\"pc\"\tI-Code_Block\ncolor_space=\"bt470bg\"\tI-Code_Block\tcolor_space=\"bt470bg\"\tI-Code_Block\nchroma_location=\"center\"/>\tI-Code_Block\tchroma_location=\"center\"/>\tI-Code_Block\n\t\nThis\tO\tThis\tO\nhappens\tO\thappens\tO\nwhen\tO\twhen\tO\nframes\tO\tframes\tO\nare\tO\tare\tO\nattached\tO\tattached\tO\n:\tO\t:\tO\n\t\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nffmpeg\tB-Application\tffmpeg\tO\ndocs\tO\tdocs\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\nV\tO\tV\tO\n\"\tO\t\"\tO\nas\tO\tas\tO\nstream\tO\tstream\tO\noption\tO\toption\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nv\tO\tv\tO\n\"\tO\t\"\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\n\"\tO\t\"\tO\nvideo\tO\tvideo\tO\n\"\tO\t\"\tO\noption\tO\toption\tO\nto\tO\tto\tO\nignore\tO\tignore\tO\nattachments\tO\tattachments\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nfixes\tO\tfixes\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/1\tO\thttps://github.com/zeroepoch/plotbitrate/issues/1\tO\n\t\nThis\tO\tThis\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nffmpeg/ffprobe\tB-Application\tffmpeg/ffprobe\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nprovide\tO\tprovide\tO\nthe\tO\tthe\tO\npkt_pts_time\tB-Library_Variable\tpkt_pts_time\tB-Code_Block\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nWithout\tO\tWithout\tO\nthis\tO\tthis\tO\nfield\tO\tfield\tO\nyou\tO\tyou\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nx-axis\tO\tx-axis\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nffmpeg\tB-Application\tffmpeg\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ninstalled\tO\tinstalled\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nfurther\tO\tfurther\tO\ndebug\tO\tdebug\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ntry\tO\ttry\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nline\tO\tline\tO\nright\tO\tright\tO\nbefore\tO\tbefore\tO\nframe_time\tB-Library_Variable\tframe_time\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\n(\tO\t(\tO\nbetween\tO\tbetween\tO\n156\tO\t156\tO\nand\tO\tand\tO\n157\tO\t157\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_503\tI-Code_Block\tGR_503\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nRahmadax/CaveExplorer\tO\tRahmadax/CaveExplorer\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/Rahmadax/CaveExplorer/issues/1\tO\thttps://github.com/Rahmadax/CaveExplorer/issues/1\tO\n\t\nTrader\tO\tTrader\tO\nFix\tO\tFix\tO\n-\tO\t-\tO\nImproved\tO\tImproved\tO\n.\tO\t.\tO\n\t\nAI\tO\tAI\tO\nFix\tO\tFix\tO\n.\tO\t.\tO\n\t\nVisited\tO\tVisited\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nNew\tO\tNew\tO\nMonsters\tO\tMonsters\tO\n.\tO\t.\tO\n\t\nFix\tO\tFix\tO\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nReal\tO\tReal\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nItems\tO\tItems\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\npickaxe\tO\tpickaxe\tO\nstuff\tO\tstuff\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nFires\tO\tFires\tO\n-\tO\t-\tO\nDone\tO\tDone\tO\nWater\tO\tWater\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndhrrgn/codeigniter\tO\tdhrrgn/codeigniter\tO\n-uhoh\tO\t-uhoh\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dhrrgn/codeigniter-uhoh/issues/5\tO\thttps://github.com/dhrrgn/codeigniter-uhoh/issues/5\tO\n\t\nLine\tO\tLine\tO\n66\tO\t66\tO\nof\tO\tof\tO\nMy_Exceptions.php\tB-File_Name\tMy_Exceptions.php\tO\nneeds\tO\tneeds\tO\nupdating\tO\tupdating\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nlatest\tO\tlatest\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nCodeigniter\tB-Library\tCodeigniter\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nparent::CI_Exceptions()\tB-Code_Block\tparent::CI_Exceptions()\tO\n;\tO\t;\tO\n\t\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n\t\nparent::__construct()\tB-Code_Block\tparent::__construct()\tO\n;\tO\t;\tO\n\t\nOtherwise\tO\tOtherwise\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\na\tO\ta\tO\nwhite\tO\twhite\tO\nscreen\tO\tscreen\tO\nof\tO\tof\tO\ndeath\tO\tdeath\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\npoint\tO\tpoint\tO\nCI\tB-Library\tCI\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nhook\tO\thook\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncjcliffe/CubicSDR\tO\tcjcliffe/CubicSDR\tO\n-flatpak\tO\t-flatpak\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/cjcliffe/CubicSDR-flatpak/issues/4\tO\thttps://github.com/cjcliffe/CubicSDR-flatpak/issues/4\tO\n\t\nLooks\tO\tLooks\tO\ngood\tO\tgood\tO\n;\tO\t;\tO\nthanks\tO\tthanks\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nManuelDeLeon/vmc2jsx\tO\tManuelDeLeon/vmc2jsx\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/2\tO\thttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/2\tO\n\t\nTake\tO\tTake\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nwith\tO\twith\tO\na\tO\ta\tO\ngrain\tO\tgrain\tO\nof\tO\tof\tO\nsalt\tO\tsalt\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\npersonally\tO\tpersonally\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nReact\tB-Library\tReact\tO\ncomponent\tO\tcomponent\tO\nlibraries\tO\tlibraries\tO\nbecause\tO\tbecause\tO\nthey\tO\tthey\tO\nforce\tO\tforce\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ntheir\tO\ttheir\tO\ncomponents\tO\tcomponents\tO\nin\tO\tin\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\n2-way\tO\t2-way\tO\nbindings\tO\tbindings\tO\non\tO\ton\tO\ninputs\tO\tinputs\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwire\tO\twire\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nonChange\tB-Library_Function\tonChange\tO\nevent\tO\tevent\tO\nand\tO\tand\tO\nmanually\tO\tmanually\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nreason\tO\treason\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nalready\tO\talready\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nSemantic-UI\tB-Library\tSemantic-UI\tO\n,\tO\t,\tO\nsemantic-ui-react\tB-Library\tsemantic-ui-react\tO\nis\tO\tis\tO\nyet\tO\tyet\tO\nanother\tO\tanother\tO\ndependency\tO\tdependency\tO\nand\tO\tand\tO\nlevel\tO\tlevel\tO\nof\tO\tof\tO\nabstraction\tO\tabstraction\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nIMO\tO\tIMO\tO\nthe\tO\tthe\tO\nbenefits\tO\tbenefits\tO\nare\tO\tare\tO\nslim\tO\tslim\tO\n(\tO\t(\tO\nmainly\tO\tmainly\tO\nremoving\tO\tremoving\tO\nJQuery\tB-Library\tJQuery\tO\n)\tO\t)\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nyet\tO\tyet\tO\nanother\tO\tanother\tO\nAPI\tB-Library\tAPI\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\nand\tO\tand\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nby\tO\tby\tO\nall\tO\tall\tO\nmeans\tO\tmeans\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\njibes\tO\tjibes\tO\nwith\tO\twith\tO\nyou\tO\tyou\tO\nthen\tO\tthen\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\nmy\tO\tmy\tO\nopinion\tO\topinion\tO\nand\tO\tand\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncivey/where\tO\tcivey/where\tO\n-should-we-eat\tO\t-should-we-eat\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/civey/where-should-we-eat/issues/3\tO\thttps://github.com/civey/where-should-we-eat/issues/3\tO\n\t\nwhere2eat.today\tB-Website\twhere2eat.today\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/25\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/25\tO\n\t\nOh\tO\tOh\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoso/flexgrid\tO\tmoso/flexgrid\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moso/flexgrid/issues/2\tO\thttps://github.com/moso/flexgrid/issues/2\tO\n\t\nReversing\tO\tReversing\tO\nseems\tO\tseems\tO\nbroken\tO\tbroken\tO\nbut\tO\tbut\tO\nafter\tO\tafter\tO\nresearching\tO\tresearching\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nlogical\tO\tlogical\tO\nreason\tO\treason\tO\nwhy\tO\twhy\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n.row\tB-Class_Name\t.row\tB-Code_Block\nworks\tO\tworks\tO\nwith\tO\twith\tO\nflex-direction\tB-Code_Block\tflex-direction\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nrow\tI-Code_Block\trow\tI-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nan\tO\tan\tO\nimpossible\tO\timpossible\tO\nmedia-query\tO\tmedia-query\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nflex-direction\tB-Code_Block\tflex-direction\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ncolumn\tI-Code_Block\tcolumn\tI-Code_Block\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbreak\tO\tbreak\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nlayout\tO\tlayout\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nunnecessary\tO\tunnecessary\tO\nclasses\tO\tclasses\tO\njust\tO\tjust\tO\nfor\tO\tfor\tO\nreversing\tO\treversing\tO\non\tO\ton\tO\nmobile\tB-Device\tmobile\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nuntil\tO\tuntil\tO\nsomeone\tO\tsomeone\tO\nactually\tO\tactually\tO\nuses\tO\tuses\tO\nreversing\tO\treversing\tO\nwith\tO\twith\tO\nflex\tO\tflex\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nremoved\tO\tremoved\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/3\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/3\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nneed\tO\tneed\tO\nour\tO\tour\tO\nforked\tO\tforked\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nUnreal\tB-Application\tUnreal\tO\nEngine\tI-Application\tEngine\tO\n:\tO\t:\tO\nhttps://github.com/google-ar-unreal/UnrealEngine/tree/4.18-arcore-sdk-preview2\tO\thttps://github.com/google-ar-unreal/UnrealEngine/tree/4.18-arcore-sdk-preview2\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nEpic\tB-Organization\tEpic\tO\n's\tO\t's\tO\nUnreal\tB-Application\tUnreal\tO\n4.18.3\tB-Version\t4.18.3\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nrelease\tO\trelease\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/tree/sdk-preview\tO\thttps://github.com/google-ar/arcore-unreal-sdk/tree/sdk-preview\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/14\tO\thttps://github.com/spacetelescope/specview/issues/14\tO\n\t\nClosing\tO\tClosing\tO\n,\tO\t,\tO\nrepository\tO\trepository\tO\nbeing\tO\tbeing\tO\narchived\tO\tarchived\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/7\tO\thttps://github.com/contributte/logging/issues/7\tO\n\t\nWorks\tO\tWorks\tO\n,\tO\t,\tO\nThx\tO\tThx\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nxslcljg/hello\tO\txslcljg/hello\tO\n-world\tO\t-world\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/xslcljg/hello-world\tO\thttps://github.com/xslcljg/hello-world\tO\n\t\nhello-world\tO\thello-world\tO\n\t\nHi\tO\tHi\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\ntest\tO\ttest\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark/issues/38\tO\thttps://github.com/ben-eb/metalsmith-remark/issues/38\tO\n\t\nHello\tO\tHello\tO\nlovely\tO\tlovely\tO\nhumans\tO\thumans\tO\n,\tO\t,\tO\n\t\neslint-plugin-babel\tB-Library\teslint-plugin-babel\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n4.0.0\tB-Version\t4.0.0\tO\n.\tO\t.\tO\n\t\nState\tO\tState\tO\n\t\n\t\nUpdate\tO\tUpdate\tO\n:rocket\tO\t:rocket\tO\n:\tO\t:\tO\n\t\n\t\nDependency\tO\tDependency\tO\n\t\n\t\n\t\neslint-plugin-babel\tB-Library\teslint-plugin-babel\tO\n\t\n\t\nNew\tO\tNew\tO\nversion\tO\tversion\tO\n\t\n\t\n\t\n4.0.0\tB-Version\t4.0.0\tO\n\t\n\t\nType\tO\tType\tO\n\t\n\t\n\t\ndevDependency\tO\tdevDependency\tO\n\t\n\t\nThis\tO\tThis\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nWithout\tO\tWithout\tO\naccepting\tO\taccepting\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nnew\tO\tnew\tO\nfeatures\tO\tfeatures\tO\n,\tO\t,\tO\nfixes\tO\tfixes\tO\nand\tO\tand\tO\nperf\tO\tperf\tO\nimprovements\tO\timprovements\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmaintainers\tO\tmaintainers\tO\nworked\tO\tworked\tO\non\tO\ton\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nget\tO\tget\tO\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\neslint-plugin-babel\tB-Library\teslint-plugin-babel\tO\n.\tO\t.\tO\n\t\nGiven\tO\tGiven\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndecent\tO\tdecent\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\n,\tO\t,\tO\na\tO\ta\tO\npassing\tO\tpassing\tO\nbuild\tO\tbuild\tO\nis\tO\tis\tO\na\tO\ta\tO\nstrong\tO\tstrong\tO\nindicator\tO\tindicator\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nby\tO\tby\tO\nmerging\tO\tmerging\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nchange\tO\tchange\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nthis\tO\tthis\tO\nbranch\tO\tbranch\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimprove\tO\timprove\tO\nthese\tO\tthese\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n?\tO\t?\tO\n\t\nDid\tO\tDid\tO\nI\tO\tI\tO\nreport\tO\treport\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nunsure\tO\tunsure\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nfrequently\tO\tfrequently\tO\nasked\tO\tasked\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\na\tO\ta\tO\nbot\tO\tbot\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\nteach\tO\tteach\tO\nme\tO\tme\tO\nnew\tO\tnew\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nthem\tO\tthem\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\nrock\tO\trock\tO\n!\tO\t!\tO\n\t\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nGitHub\tB-Website\tGitHub\tO\nRelease\tO\tRelease\tO\n\t\nBreaking\tO\tBreaking\tO\nChange\tO\tChange\tO\n\t\nDrop\tO\tDrop\tO\nnode\tO\tnode\tO\n<\tO\t<\tO\n4\tO\t4\tO\n#113\tO\t#113\tO\n\t\nNew\tO\tNew\tO\nFeature\tO\tFeature\tO\n\t\nbabel/no\tB-Code_Block\tbabel/no\tB-Code_Block\n-invalid-this\tI-Code_Block\t-invalid-this\tI-Code_Block\n:\tO\t:\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nfail\tO\tfail\tO\nwhen\tO\twhen\tO\ninside\tO\tinside\tO\nclass\tO\tclass\tO\nproperties\tO\tproperties\tO\n#101\tO\t#101\tO\n\t\nclass\tO\tclass\tO\nA\tB-Class_Name\tA\tO\n{\tO\t{\tO\na\tO\ta\tO\n=\tO\t=\tO\nthis.b\tO\tthis.b\tO\n;\tO\t;\tO\n}\tO\t}\tO\n\t\nDeprecated\tO\tDeprecated\tO\nRules\tO\tRules\tO\n#115\tO\t#115\tO\n\t\nMany\tO\tMany\tO\nrules\tO\trules\tO\nare\tO\tare\tO\nbuilt-in\tO\tbuilt-in\tO\nnow\tO\tnow\tO\nsince\tO\tsince\tO\nESLint\tB-Library\tESLint\tO\nsupports\tO\tsupports\tO\nes2017\tB-Version\tes2017\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n\t\nbabel/generator\tB-Code_Block\tbabel/generator\tB-Code_Block\n-star-spacing\tI-Code_Block\t-star-spacing\tI-Code_Block\n:\tO\t:\tO\nUse\tO\tUse\tO\ngenerator-star-spacing\tB-Code_Block\tgenerator-star-spacing\tB-Code_Block\n.\tO\t.\tO\n\t\nbabel/object\tB-Code_Block\tbabel/object\tB-Code_Block\n-shorthand\tI-Code_Block\t-shorthand\tI-Code_Block\n:\tO\t:\tO\nUse\tO\tUse\tO\nobject-shorthand\tB-Code_Block\tobject-shorthand\tB-Code_Block\n.\tO\t.\tO\n\t\nbabel/arrow\tB-Code_Block\tbabel/arrow\tB-Code_Block\n-parens\tI-Code_Block\t-parens\tI-Code_Block\n:\tO\t:\tO\nUse\tO\tUse\tO\narrow-parens\tB-Code_Block\tarrow-parens\tB-Code_Block\n.\tO\t.\tO\n\t\nbabel/func\tB-Code_Block\tbabel/func\tB-Code_Block\n-params-comma-dangle\tI-Code_Block\t-params-comma-dangle\tI-Code_Block\n:\tO\t:\tO\nUse\tO\tUse\tO\ncomma-dangle\tB-Code_Block\tcomma-dangle\tB-Code_Block\n.\tO\t.\tO\n\t\nbabel/array\tB-Code_Block\tbabel/array\tB-Code_Block\n-bracket-spacing\tI-Code_Block\t-bracket-spacing\tI-Code_Block\n:\tO\t:\tO\nUse\tO\tUse\tO\narray-bracket-spacing\tB-Code_Block\tarray-bracket-spacing\tB-Code_Block\n.\tO\t.\tO\n\t\nbabel/flow\tB-Code_Block\tbabel/flow\tB-Code_Block\n-object-type\tI-Code_Block\t-object-type\tI-Code_Block\n:\tO\t:\tO\nUse\tO\tUse\tO\nflowtype/object\tB-Code_Block\tflowtype/object\tB-Code_Block\n-type-delimiter\tI-Code_Block\t-type-delimiter\tI-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\ndiffers\tO\tdiffers\tO\nby\tO\tby\tO\n14\tO\t14\tO\ncommits\tO\tcommits\tO\n.\tO\t.\tO\n\t\nbe8d95c\tO\tbe8d95c\tB-Code_Block\n4.0.0\tB-Version\t4.0.0\tI-Code_Block\n\t\n483586f\tO\t483586f\tB-Code_Block\nreadme\tO\treadme\tI-Code_Block\n:\tO\t:\tI-Code_Block\ndrop\tO\tdrop\tI-Code_Block\nnode\tO\tnode\tI-Code_Block\n<\tO\t<\tI-Code_Block\n4\tO\t4\tI-Code_Block\n[\tO\t[\tI-Code_Block\nskip\tO\tskip\tI-Code_Block\nci\tO\tci\tI-Code_Block\n]\tO\t]\tI-Code_Block\n\t\n8073c22\tO\t8073c22\tB-Code_Block\nBreaking\tO\tBreaking\tI-Code_Block\n:\tO\t:\tI-Code_Block\nDeprecate\tO\tDeprecate\tI-Code_Block\nbuilt-in\tO\tbuilt-in\tI-Code_Block\nrules\tO\trules\tI-Code_Block\n(\tO\t(\tI-Code_Block\n#115\tO\t#115\tI-Code_Block\n)\tO\t)\tI-Code_Block\n\t\nac482de\tO\tac482de\tB-Code_Block\nchore(package)\tO\tchore(package)\tI-Code_Block\n:\tO\t:\tI-Code_Block\nupdate\tO\tupdate\tI-Code_Block\ndependencies\tO\tdependencies\tI-Code_Block\n(\tO\t(\tI-Code_Block\n#109\tO\t#109\tI-Code_Block\n)\tO\t)\tI-Code_Block\n\t\naa69a6f\tO\taa69a6f\tB-Code_Block\nUpdated\tO\tUpdated\tI-Code_Block\nNode\tB-Application\tNode\tI-Code_Block\nversions\tO\tversions\tI-Code_Block\nto\tO\tto\tI-Code_Block\ntest\tO\ttest\tI-Code_Block\nagainst\tO\tagainst\tI-Code_Block\nin\tO\tin\tI-Code_Block\nthe\tO\tthe\tI-Code_Block\nTravis\tB-Application\tTravis\tI-Code_Block\nconfiguration\tO\tconfiguration\tI-Code_Block\n.\tO\t.\tI-Code_Block\n(\tO\t(\tI-Code_Block\n#110\tO\t#110\tI-Code_Block\n)\tO\t)\tI-Code_Block\n\t\nfc11860\tO\tfc11860\tB-Code_Block\nDrop\tO\tDrop\tI-Code_Block\nsupport\tO\tsupport\tI-Code_Block\nof\tO\tof\tI-Code_Block\nNode\tB-Application\tNode\tI-Code_Block\n<\tO\t<\tI-Code_Block\n4\tB-Version\t4\tI-Code_Block\n(\tO\t(\tI-Code_Block\n#113\tO\t#113\tI-Code_Block\n)\tO\t)\tI-Code_Block\n\t\n026eab8\tO\t026eab8\tB-Code_Block\nMerge\tO\tMerge\tI-Code_Block\npull\tO\tpull\tI-Code_Block\nrequest\tO\trequest\tI-Code_Block\n#101\tO\t#101\tI-Code_Block\nfrom\tO\tfrom\tI-Code_Block\nmathieumg/no\tB-User_Name\tmathieumg/no\tI-Code_Block\n-invalid-this\tO\t-invalid-this\tI-Code_Block\n\t\n7e00840\tO\t7e00840\tB-Code_Block\nAdded\tO\tAdded\tI-Code_Block\nbabel/no\tB-Library\tbabel/no\tI-Code_Block\n-invalid-this\tO\t-invalid-this\tI-Code_Block\nrule\tO\trule\tI-Code_Block\n.\tO\t.\tI-Code_Block\n(\tO\t(\tI-Code_Block\nCloses\tO\tCloses\tI-Code_Block\n#12\tO\t#12\tI-Code_Block\n)\tO\t)\tI-Code_Block\n\t\n80d66bc\tO\t80d66bc\tB-Code_Block\nImported\tO\tImported\tI-Code_Block\nand\tO\tand\tI-Code_Block\nadapted\tO\tadapted\tI-Code_Block\nno-invalid-this\tO\tno-invalid-this\tI-Code_Block\nrule\tO\trule\tI-Code_Block\nfrom\tO\tfrom\tI-Code_Block\nESLint\tB-Library\tESLint\tI-Code_Block\n.\tO\t.\tI-Code_Block\n\t\nc0a49d2\tO\tc0a49d2\tB-Code_Block\nchore(package)\tO\tchore(package)\tI-Code_Block\n:\tO\t:\tI-Code_Block\nupdate\tO\tupdate\tI-Code_Block\nmocha\tB-Library\tmocha\tI-Code_Block\nto\tO\tto\tI-Code_Block\nversion\tO\tversion\tI-Code_Block\n3.0.0\tB-Version\t3.0.0\tI-Code_Block\n(\tO\t(\tI-Code_Block\n#79\tO\t#79\tI-Code_Block\n)\tO\t)\tI-Code_Block\n\t\n8cf55d4\tO\t8cf55d4\tB-Code_Block\nchore(package)\tO\tchore(package)\tI-Code_Block\n:\tO\t:\tI-Code_Block\nupdate\tO\tupdate\tI-Code_Block\neslint\tB-Library\teslint\tI-Code_Block\nto\tO\tto\tI-Code_Block\nversion\tO\tversion\tI-Code_Block\n3.0.0\tB-Version\t3.0.0\tI-Code_Block\n(\tO\t(\tI-Code_Block\n#70\tO\t#70\tI-Code_Block\n)\tO\t)\tI-Code_Block\n\t\n078258a\tO\t078258a\tB-Code_Block\nUpdate\tO\tUpdate\tI-Code_Block\nDependencies\tO\tDependencies\tI-Code_Block\n(\tO\t(\tI-Code_Block\n#67\tO\t#67\tI-Code_Block\n)\tO\t)\tI-Code_Block\n\t\n4995439\tO\t4995439\tB-Code_Block\n--save-dev\tB-Code_Block\t--save-dev\tI-Code_Block\ninstead\tO\tinstead\tI-Code_Block\nof\tO\tof\tI-Code_Block\n-D\tB-Code_Block\t-D\tI-Code_Block\n[\tI-Code_Block\t[\tI-Code_Block\nskip\tI-Code_Block\tskip\tI-Code_Block\nci\tI-Code_Block\tci\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n\t\n27a7360\tO\t27a7360\tB-Code_Block\nRun\tO\tRun\tI-Code_Block\nTravis\tB-Application\tTravis\tI-Code_Block\nCI\tI-Application\tCI\tI-Code_Block\nin\tO\tin\tI-Code_Block\nsame\tO\tsame\tI-Code_Block\nNode\tB-Application\tNode\tI-Code_Block\nversions\tO\tversions\tI-Code_Block\nas\tO\tas\tI-Code_Block\nbabel-eslint\tB-Library\tbabel-eslint\tI-Code_Block\n(\tO\t(\tI-Code_Block\n#68\tO\t#68\tI-Code_Block\n)\tO\t)\tI-Code_Block\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndiff\tO\tdiff\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\ngreenkeeper.io\tB-Application\tgreenkeeper.io\tO\n.\tO\t.\tO\n\t\nTired\tO\tTired\tO\nof\tO\tof\tO\nseeing\tO\tseeing\tO\nthis\tO\tthis\tO\nsponsor\tO\tsponsor\tO\nmessage\tO\tmessage\tO\n?\tO\t?\tO\n\t\n:zap\tO\t:zap\tO\n:\tO\t:\tO\ngreenkeeper\tB-Code_Block\tgreenkeeper\tB-Code_Block\nupgrade\tI-Code_Block\tupgrade\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndavidmottet/snippets\tO\tdavidmottet/snippets\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/davidmottet/snippets\tO\thttps://github.com/davidmottet/snippets\tO\n\t\nsnippets\tB-Application\tsnippets\tO\n\t\nInstall\tO\tInstall\tO\nNode.js\tB-Application\tNode.js\tO\n\t\nDownload\tO\tDownload\tO\nand\tO\tand\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\nnode.js\tB-Application\tnode.js\tO\nbinaries\tO\tbinaries\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nplatform\tO\tplatform\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nNode.js\tB-Application\tNode.js\tO\ndownload\tO\tdownload\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nGetting\tO\tGetting\tO\nStarted\tO\tStarted\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_3425\tI-Code_Block\tGR_3425\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDependencies\tO\tDependencies\tO\n\t\nCreators\tO\tCreators\tO\n\t\nDavid\tB-User_Name\tDavid\tO\nMOTTET\tI-User_Name\tMOTTET\tO\n\t\nhttps://twitter.com/davidmottet\tO\thttps://twitter.com/davidmottet\tO\n\t\nhttps://github.com/davidmottet\tO\thttps://github.com/davidmottet\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/libp2p/interface-record-store/issues/2\tO\thttps://github.com/libp2p/interface-record-store/issues/2\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\npersonally\tO\tpersonally\tO\na\tO\ta\tO\nfan\tO\tfan\tO\nof\tO\tof\tO\ntape\tB-Library\ttape\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndecision\tO\tdecision\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nmade\tO\tmade\tO\nof\tO\tof\tO\npersonal\tO\tpersonal\tO\ntaste\tO\ttaste\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n:)\tO\t:)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfollowed\tO\tfollowed\tO\nthe\tO\tthe\tO\npattern\tO\tpattern\tO\nset\tO\tset\tO\nby\tO\tby\tO\nhttps://github.com/maxogden/abstract-blob-store\tO\thttps://github.com/maxogden/abstract-blob-store\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n\"\tO\t\"\tO\nabstract\tO\tabstract\tO\n-\tO\t-\tO\n\"\tO\t\"\tO\nmodule\tO\tmodule\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nuses\tO\tuses\tO\ntape\tO\ttape\tO\nand\tO\tand\tO\nin\tO\tin\tO\nfact\tO\tfact\tO\nmakes\tO\tmakes\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nif\tO\tif\tO\n\"\tO\t\"\tO\nyou\tO\tyou\tO\n\"\tO\t\"\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nask\tO\task\tO\nsomeone\tO\tsomeone\tO\nto\tO\tto\tO\nimport\tO\timport\tO\nyour\tO\tyour\tO\ntests\tO\ttests\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nbetter\tO\tbetter\tO\nmake\tO\tmake\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nstandardized\tO\tstandardized\tO\nway\tO\tway\tO\nand\tO\tand\tO\nsince\tO\tsince\tO\ntape\tB-Library\ttape\tO\nis\tO\tis\tO\ntap\tO\ttap\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nrunning\tO\trunning\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\nand\tO\tand\tO\nin\tO\tin\tO\nNode.js\tB-Application\tNode.js\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\na\tO\ta\tO\nProtocol\tO\tProtocol\tO\n,\tO\t,\tO\nmakes\tO\tmakes\tO\nit\tO\tit\tO\neasier\tO\teasier\tO\nfor\tO\tfor\tO\neveryone\tO\teveryone\tO\nelse\tO\telse\tO\nto\tO\tto\tO\naccept\tO\taccept\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app/issues/22\tO\thttps://github.com/lbarasti/gps_app/issues/22\tO\n\t\nnot\tO\tnot\tO\ncertain\tO\tcertain\tO\nwhy\tO\twhy\tO\nthese\tO\tthese\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ncopy\tO\tcopy\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\n..\tO\t..\tO\n.\tO\t.\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nof\tO\tof\tO\ncolourising\tO\tcolourising\tO\nthe\tO\tthe\tO\nicons\tB-User_Interface_Element\ticons\tO\nanyway\tO\tanyway\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/41\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/41\tO\n\t\nLGTM\tO\tLGTM\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsdookadr/overflow\tO\twsdookadr/overflow\tO\n-checker\tO\t-checker\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsdookadr/fieldtop/issues/6\tO\thttps://github.com/wsdookadr/fieldtop/issues/6\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\nyes\tO\tyes\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nok\tO\tok\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nsaid\tO\tsaid\tO\nnot\tO\tnot\tO\nevery\tO\tevery\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nhas\tO\thas\tO\nan\tO\tan\tO\nindex\tO\tindex\tO\nso\tO\tso\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nnormal\tO\tnormal\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nCPU\tB-Device\tCPU\tO\nintensive\tO\tintensive\tO\n.\tO\t.\tO\n\t\nAbout\tO\tAbout\tO\nthe\tO\tthe\tO\nnon\tO\tnon\tO\nASCII\tB-Algorithm\tASCII\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nname\tO\tname\tO\n:\tO\t:\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nHTML\tB-Language\tHTML\tO\noutput\tO\toutput\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nindeed\tO\tindeed\tO\nsurprising\tO\tsurprising\tO\n(\tO\t(\tO\nhence\tO\thence\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n;)\tO\t;)\tO\n)\tO\t)\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\noutput\tO\toutput\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\ni\tO\ti\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ni\tO\ti\tO\n'll\tO\t'll\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\none\tO\tone\tO\nPR\tO\tPR\tO\nfor\tO\tfor\tO\nnon\tO\tnon\tO\nASCII\tB-Algorithm\tASCII\tO\nhandling\tO\thandling\tO\n,\tO\t,\tO\nand\tO\tand\tO\none\tO\tone\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nthe\tO\tthe\tO\nhostname\tO\thostname\tO\n(\tO\t(\tO\nlocalhost\tO\tlocalhost\tO\nis\tO\tis\tO\nhardcoded\tO\thardcoded\tO\n)\tO\t)\tO\n\t\nBest\tO\tBest\tO\nregards\tO\tregards\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/13\tO\thttps://github.com/contributte/logging/issues/13\tO\n\t\nTagged\tO\tTagged\tO\nas\tO\tas\tO\nv0.2.2\tB-Version\tv0.2.2\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark/issues/12\tO\thttps://github.com/ben-eb/metalsmith-remark/issues/12\tO\n\t\nHello\tO\tHello\tO\n:wave\tO\t:wave\tO\n:\tO\t:\tO\n\t\n:rocket::rocket::rocket\tO\t:rocket::rocket::rocket\tO\n:\tO\t:\tO\n\t\nava\tB-Library\tava\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n0.13.0\tB-Version\t0.13.0\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\npasses\tO\tpasses\tO\nyour\tO\tyour\tO\ntests\tO\ttests\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\npublish\tO\tpublish\tO\nyour\tO\tyour\tO\nsoftware\tO\tsoftware\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nava\tB-Library\tava\tO\n–\tO\t–\tO\notherwise\tO\totherwise\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nbranch\tO\tbranch\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nadaptions\tO\tadaptions\tO\nand\tO\tand\tO\nfixes\tO\tfixes\tO\n.\tO\t.\tO\n\t\nHappy\tO\tHappy\tO\nfixing\tO\tfixing\tO\nand\tO\tand\tO\nmerging\tO\tmerging\tO\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nGitHub\tB-Website\tGitHub\tO\nRelease\tO\tRelease\tO\n\t\nThe\tO\tThe\tO\nmost\tO\tmost\tO\nexciting\tO\texciting\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nrelease\tO\trelease\tO\nare\tO\tare\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nusing\tO\tusing\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nBabel\tB-Library\tBabel\tO\nconfig\tO\tconfig\tO\nwith\tO\twith\tO\nAVA\tB-Library\tAVA\tO\nand\tO\tand\tO\nan\tO\tan\tO\nintelligent\tO\tintelligent\tO\nwatch\tO\twatch\tO\nmode\tO\tmode\tO\nthat\tO\tthat\tO\nwatches\tO\twatches\tO\nfor\tO\tfor\tO\ntest\tO\ttest\tO\nand\tO\tand\tO\nsource\tO\tsource\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\nruns\tO\truns\tO\nonly\tO\tonly\tO\ntests\tO\ttests\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\naffected\tO\taffected\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nnow\tO\tnow\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nawesome\tO\tawesome\tO\nlist\tO\tlist\tO\n.\tO\t.\tO\n\t\nOur\tO\tOur\tO\nESLint\tB-Library\tESLint\tO\nplugin\tO\tplugin\tO\ngot\tO\tgot\tO\nsome\tO\tsome\tO\nnew\tO\tnew\tO\nrules\tO\trules\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\n@novemberborn\tB-User_Name\t@novemberborn\tO\nis\tO\tis\tO\na\tO\ta\tO\nteam\tO\tteam\tO\nmember\tO\tmember\tO\n!\tO\t!\tO\n\t\nHighlights\tO\tHighlights\tO\n\t\nAdded\tO\tAdded\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nBabel\tB-Library\tBabel\tO\nconfig\tO\tconfig\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nava\tB-Library\tava\tB-Code_Block\nconfig\tO\tconfig\tO\npackage.json\tB-File_Name\tpackage.json\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nlet\tO\tlet\tO\nyou\tO\tyou\tO\nconfigure\tO\tconfigure\tO\nAVA\tB-Library\tAVA\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nBabel\tB-Library\tBabel\tO\nconfig\tO\tconfig\tO\n(\tO\t(\tO\n.babelrc\tB-File_Type\t.babelrc\tO\nor\tO\tor\tO\nbabel\tB-Library\tbabel\tB-Code_Block\nin\tO\tin\tO\npackage.json\tB-File_Name\tpackage.json\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\na03f826\tO\ta03f826\tO\n\t\nAdded\tO\tAdded\tO\nintelligent\tO\tintelligent\tO\nwatch\tO\twatch\tO\nmode\tO\tmode\tO\n.\tO\t.\tO\n\t\nf0f4f34\tO\tf0f4f34\tO\n\t\nAdded\tO\tAdded\tO\ntodo\tO\ttodo\tB-Code_Block\ntest\tO\ttest\tO\nmodifier\tO\tmodifier\tO\n.\tO\t.\tO\n\t\ne697629\tO\te697629\tO\n\t\nAdded\tO\tAdded\tO\nability\tO\tability\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nonly\tO\tonly\tO\ntests\tO\ttests\tO\nwith\tO\twith\tO\nmatching\tO\tmatching\tO\ntitles\tO\ttitles\tO\n.\tO\t.\tO\n\t\nc928cb5\tO\tc928cb5\tO\n\t\nt.throws()\tB-Library_Function\tt.throws()\tB-Code_Block\nnow\tO\tnow\tO\nreturns\tO\treturns\tO\nerror\tO\terror\tO\nor\tO\tor\tO\nrejection\tO\trejection\tO\nreason\tO\treason\tO\nof\tO\tof\tO\npromise\tO\tpromise\tO\n.\tO\t.\tO\n\t\ne03b82c\tO\te03b82c\tO\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\ncoerce\tO\tcoerce\tO\nnon-Error\tO\tnon-Error\tO\npromise\tO\tpromise\tO\nrejection\tO\trejection\tO\nto\tO\tto\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\n5e02387\tO\t5e02387\tO\n\t\ntest.only()\tB-Library_Function\ttest.only()\tB-Code_Block\nnow\tO\tnow\tO\nworks\tO\tworks\tO\nacross\tO\tacross\tO\nall\tO\tall\tO\ntest\tO\ttest\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\n6b1617a\tO\t6b1617a\tO\n\t\nFixed\tO\tFixed\tO\nAVA\tB-Library\tAVA\tO\nhanging\tO\thanging\tO\nwhen\tO\twhen\tO\ntest\tB-Library_Function\ttest\tB-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\nincorrectly\tO\tincorrectly\tO\n.\tO\t.\tO\n\t\n94c03f6\tO\t94c03f6\tO\n\t\nAdded\tO\tAdded\tO\nTypeScript\tB-Language\tTypeScript\tO\ntypings\tO\ttypings\tO\n.\tO\t.\tO\n\t\n0e18865\tO\t0e18865\tO\n\t\nAdded\tO\tAdded\tO\nTypeScript\tB-Language\tTypeScript\tO\nrecipe\tO\trecipe\tO\n.\tO\t.\tO\n\t\n20c66fe\tO\t20c66fe\tO\n\t\nAdded\tO\tAdded\tO\nbrowser\tO\tbrowser\tO\ntesting\tO\ttesting\tO\nrecipe\tO\trecipe\tO\n.\tO\t.\tO\n\t\n2f10448\tO\t2f10448\tO\n\t\nChanges\tO\tChanges\tO\n\t\n0\tO\t0\tO\n...\tB-Version\t...\tO\nv0\tI-Version\tv0\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\ndiffers\tO\tdiffers\tO\nby\tO\tby\tO\n81\tO\t81\tO\ncommits\tO\tcommits\tO\n.\tO\t.\tO\n\t\na723eb1\tO\ta723eb1\tB-Code_Block\n0.13.0\tB-Version\t0.13.0\tI-Code_Block\n\t\ne9de64b\tO\te9de64b\tB-Code_Block\nadd\tO\tadd\tI-Code_Block\ngif\tB-File_Type\tgif\tI-Code_Block\nof\tO\tof\tI-Code_Block\nthe\tO\tthe\tI-Code_Block\nmini\tO\tmini\tI-Code_Block\nreporter\tO\treporter\tI-Code_Block\n\t\n83ab1e4\tO\t83ab1e4\tB-Code_Block\nMerge\tO\tMerge\tI-Code_Block\npull\tO\tpull\tI-Code_Block\nrequest\tO\trequest\tI-Code_Block\n#621\tO\t#621\tI-Code_Block\nfrom\tO\tfrom\tI-Code_Block\nsindresorhus/sticky\tO\tsindresorhus/sticky\tI-Code_Block\n-only\tO\t-only\tI-Code_Block\n\t\nb4abee1\tO\tb4abee1\tB-Code_Block\nmake\tO\tmake\tI-Code_Block\n.only\tO\t.only\tI-Code_Block\nsticky\tO\tsticky\tI-Code_Block\nin\tO\tin\tI-Code_Block\nwatch\tO\twatch\tI-Code_Block\nmode\tO\tmode\tI-Code_Block\n\t\ne810ed4\tO\te810ed4\tB-Code_Block\nMerge\tO\tMerge\tI-Code_Block\npull\tO\tpull\tI-Code_Block\nrequest\tO\trequest\tI-Code_Block\n#624\tO\t#624\tI-Code_Block\nfrom\tO\tfrom\tI-Code_Block\nsindresorhus/watch\tO\tsindresorhus/watch\tI-Code_Block\n-and-syntax-errors\tO\t-and-syntax-errors\tI-Code_Block\n\t\nf1966d9\tO\tf1966d9\tB-Code_Block\nMerge\tO\tMerge\tI-Code_Block\npull\tO\tpull\tI-Code_Block\nrequest\tO\trequest\tI-Code_Block\n#618\tO\t#618\tI-Code_Block\nfrom\tO\tfrom\tI-Code_Block\nsindresorhus/mini\tO\tsindresorhus/mini\tI-Code_Block\n-reporter-color\tO\t-reporter-color\tI-Code_Block\n\t\n73c8b6b\tO\t73c8b6b\tB-Code_Block\nMerge\tO\tMerge\tI-Code_Block\npull\tO\tpull\tI-Code_Block\nrequest\tO\trequest\tI-Code_Block\n#627\tO\t#627\tI-Code_Block\nfrom\tO\tfrom\tI-Code_Block\nforresst/link\tO\tforresst/link\tI-Code_Block\n-watch-mode-french\tO\t-watch-mode-french\tI-Code_Block\n\t\nd74335e\tO\td74335e\tB-Code_Block\nDocs\tO\tDocs\tI-Code_Block\n:\tO\t:\tI-Code_Block\nLink\tO\tLink\tI-Code_Block\nto\tO\tto\tI-Code_Block\nFrench\tO\tFrench\tI-Code_Block\ntranslation\tO\ttranslation\tI-Code_Block\nfor\tO\tfor\tI-Code_Block\nwatch\tO\twatch\tI-Code_Block\nmode\tO\tmode\tI-Code_Block\n\t\n768ef9d\tO\t768ef9d\tB-Code_Block\nhandle\tO\thandle\tI-Code_Block\nexceptions\tB-Library_Class\texceptions\tI-Code_Block\nwhen\tO\twhen\tI-Code_Block\ninitially\tO\tinitially\tI-Code_Block\nrunning\tO\trunning\tI-Code_Block\nfiles\tO\tfiles\tI-Code_Block\n\t\n901c48c\tO\t901c48c\tB-Code_Block\nmove\tO\tmove\tI-Code_Block\nunreportedFiles\tO\tunreportedFiles\tI-Code_Block\ncloser\tO\tcloser\tI-Code_Block\nto\tO\tto\tI-Code_Block\nwhere\tO\twhere\tI-Code_Block\nit\tO\tit\tI-Code_Block\n's\tO\t's\tI-Code_Block\nused\tO\tused\tI-Code_Block\n\t\n9c867e9\tO\t9c867e9\tB-Code_Block\nremove\tO\tremove\tI-Code_Block\ncolor\tO\tcolor\tI-Code_Block\nfrom\tO\tfrom\tI-Code_Block\ntest\tO\ttest\tI-Code_Block\ntitle\tO\ttitle\tI-Code_Block\nin\tO\tin\tI-Code_Block\nmini\tO\tmini\tI-Code_Block\nreporter\tO\treporter\tI-Code_Block\n\t\n76860dd\tO\t76860dd\tB-Code_Block\nClose\tO\tClose\tI-Code_Block\n#599\tO\t#599\tI-Code_Block\nPR\tO\tPR\tI-Code_Block\n:\tO\t:\tI-Code_Block\nAdd\tO\tAdd\tI-Code_Block\nbusy\tO\tbusy\tI-Code_Block\nindicator\tO\tindicator\tI-Code_Block\nto\tO\tto\tI-Code_Block\nmini\tO\tmini\tI-Code_Block\nreporter\tO\treporter\tI-Code_Block\n.\tO\t.\tI-Code_Block\nFixes\tO\tFixes\tI-Code_Block\n#598\tO\t#598\tI-Code_Block\n\t\ncac933e\tO\tcac933e\tB-Code_Block\nMerge\tO\tMerge\tI-Code_Block\npull\tO\tpull\tI-Code_Block\nrequest\tO\trequest\tI-Code_Block\n#607\tO\t#607\tI-Code_Block\nfrom\tO\tfrom\tI-Code_Block\nsindresorhus/document\tO\tsindresorhus/document\tI-Code_Block\n-watch\tO\t-watch\tI-Code_Block\n\t\n81b7f1e\tO\t81b7f1e\tB-Code_Block\nalso\tO\talso\tI-Code_Block\nrerun\tO\trerun\tI-Code_Block\ntests\tO\ttests\tI-Code_Block\nwhen\tO\twhen\tI-Code_Block\n'\tO\t'\tI-Code_Block\nr\tO\tr\tI-Code_Block\n'\tO\t'\tB-Code_Block\nis\tO\tis\tI-Code_Block\nentered\tO\tentered\tI-Code_Block\n\t\n755849f\tO\t755849f\tB-Code_Block\nadd\tO\tadd\tI-Code_Block\n-S\tO\t-S\tI-Code_Block\nshorthand\tO\tshorthand\tI-Code_Block\nfor\tO\tfor\tI-Code_Block\n--source\tO\t--source\tI-Code_Block\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\n81\tO\t81\tO\ncommits\tO\tcommits\tO\nin\tO\tin\tO\ntotal\tO\ttotal\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndiff\tO\tdiff\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\ngreenkeeper.io\tB-Application\tgreenkeeper.io\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nkeeps\tO\tkeeps\tO\nyour\tO\tyour\tO\nsoftware\tO\tsoftware\tO\n,\tO\t,\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\n,\tO\t,\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nTired\tO\tTired\tO\nof\tO\tof\tO\nseeing\tO\tseeing\tO\nthis\tO\tthis\tO\nsponsor\tO\tsponsor\tO\nmessage\tO\tmessage\tO\n?\tO\t?\tO\n\t\nUpgrade\tO\tUpgrade\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsupporter\tO\tsupporter\tO\nplan\tO\tplan\tO\n!\tO\t!\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nalso\tO\talso\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\nfaster\tO\tfaster\tO\n:zap\tO\t:zap\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/7\tO\thttps://github.com/svenstaro/flamejam/issues/7\tO\n\t\nDone\tO\tDone\tO\nby\tO\tby\tO\nbeedee\tB-User_Name\tbeedee\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nT-Dawg/dojo_rules\tO\tT-Dawg/dojo_rules\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/T-Dawg/dojo_rules/issues/1\tO\thttps://github.com/T-Dawg/dojo_rules/issues/1\tO\n\t\nPull\tO\tPull\tO\nme\tO\tme\tO\nin\tO\tin\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db\tO\thttps://github.com/demigor/lex.db\tO\n\t\nLex.DB\tO\tLex.DB\tO\n\t\nLex.DB\tB-Application\tLex.DB\tO\nis\tO\tis\tO\na\tO\ta\tO\nlightweight\tO\tlightweight\tO\n,\tO\t,\tO\nsuperfast\tO\tsuperfast\tO\n,\tO\t,\tO\nin-process\tO\tin-process\tO\ndatabase\tO\tdatabase\tO\nengine\tO\tengine\tO\n,\tO\t,\tO\ncompletely\tO\tcompletely\tO\nwritten\tO\twritten\tO\nin\tO\tin\tO\nAnyCPU\tO\tAnyCPU\tO\nC#\tB-Language\tC#\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\n?\tO\t?\tO\n\t\nWe\tO\tWe\tO\nfeel\tO\tfeel\tO\nthe\tO\tthe\tO\nneed\tO\tneed\tO\nin\tO\tin\tO\nsmall\tO\tsmall\tO\n,\tO\t,\tO\nfast\tO\tfast\tO\nand\tO\tand\tO\nplatform-neutral\tO\tplatform-neutral\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nand\tO\tand\tO\naccess\tO\taccess\tO\ndata\tO\tdata\tO\nlocally\tO\tlocally\tO\n.\tO\t.\tO\n\t\nSQLite\tB-Application\tSQLite\tO\nis\tO\tis\tO\nalmost\tO\talmost\tO\ngood\tO\tgood\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbinary\tO\tbinary\tO\nplatform-specific\tO\tplatform-specific\tO\n(\tO\t(\tO\nx32/x64/ARM\tO\tx32/x64/ARM\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nSQLite.dll\tB-File_Name\tSQLite.dll\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nreal\tO\treal\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nSilverlight\tB-Library\tSilverlight\tO\n.\tO\t.\tO\n\t\nSupported\tO\tSupported\tO\nplatforms\tO\tplatforms\tO\n:\tO\t:\tO\n\t\nNew\tO\tNew\tO\n:\tO\t:\tO\nXamarin.iOS\tB-Application\tXamarin.iOS\tO\n&\tO\t&\tO\nXamarin.Android\tB-Application\tXamarin.Android\tO\n.\tO\t.\tO\n\t\nNew\tO\tNew\tO\n:\tO\t:\tO\nUniversal\tB-Application\tUniversal\tO\nWindows\tI-Application\tWindows\tO\nStore\tI-Application\tStore\tO\nApps\tI-Application\tApps\tO\nSupport\tO\tSupport\tO\n\t\nNew\tO\tNew\tO\n:\tO\t:\tO\nPCL\tB-Library\tPCL\tO\nversion\tO\tversion\tO\nfor\tO\tfor\tO\nsupported\tO\tsupported\tO\nplatforms\tO\tplatforms\tO\n\t\n.NET\tB-Library\t.NET\tO\n4.0\tB-Version\t4.0\tO\n+\tI-Version\t+\tO\n,\tO\t,\tO\n\t\nSilverlight\tB-Library\tSilverlight\tO\n5.0\tB-Version\t5.0\tO\n+\tI-Version\t+\tO\n,\tO\t,\tO\n\t\nWindows\tB-Operating_System\tWindows\tO\nPhone\tI-Operating_System\tPhone\tO\n8.0\tB-Version\t8.0\tO\n+\tI-Version\t+\tO\n,\tO\t,\tO\n\t\nWinRT+\tB-Application\tWinRT+\tO\n.\tO\t.\tO\n\t\nWrite\tO\tWrite\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\naccess\tO\taccess\tO\nlayer\tO\tlayer\tO\nonce\tO\tonce\tO\n,\tO\t,\tO\nrun\tO\trun\tO\neverywhere\tO\teverywhere\tO\n(\tO\t(\tO\nx64\tO\tx64\tO\n,\tO\t,\tO\nx32\tO\tx32\tO\n,\tO\t,\tO\nARM\tO\tARM\tO\n)\tO\t)\tO\nwithout\tO\twithout\tO\nrecompilation\tO\trecompilation\tO\n.\tO\t.\tO\n\t\nLex.DB\tB-Application\tLex.DB\tO\nsupports\tO\tsupports\tO\nconcurrent\tO\tconcurrent\tO\ndatabase\tO\tdatabase\tO\naccess\tO\taccess\tO\n,\tO\t,\tO\nso\tO\tso\tO\nmultiple\tO\tmultiple\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nare\tO\tare\tO\nsafe\tO\tsafe\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n(\tO\t(\tO\n.NET\tB-Library\t.NET\tO\n,\tO\t,\tO\nSilverlight\tB-Library\tSilverlight\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nLex.DB\tB-Application\tLex.DB\tO\nalso\tO\talso\tO\nprovides\tO\tprovides\tO\nboth\tO\tboth\tO\nsynchronous\tO\tsynchronous\tO\nand\tO\tand\tO\nasynchronous\tO\tasynchronous\tO\ndatabase\tO\tdatabase\tO\ninterface\tO\tinterface\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nUI\tO\tUI\tO\nblockage\tO\tblockage\tO\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\nis\tO\tis\tO\ngreatly\tO\tgreatly\tO\ninspired\tO\tinspired\tO\nby\tO\tby\tO\nSterling\tB-Library\tSterling\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nperformance\tO\tperformance\tO\nis\tO\tis\tO\nfaster\tO\tfaster\tO\nthan\tO\tthan\tO\nnative\tO\tnative\tO\nSQLite\tB-Application\tSQLite\tO\n.\tO\t.\tO\n\t\nLex.DB.Sync\tB-Library\tLex.DB.Sync\tO\n-\tO\t-\tO\nlightweight\tO\tlightweight\tO\ndata\tO\tdata\tO\nsynchronization\tO\tsynchronization\tO\nframework\tO\tframework\tO\nis\tO\tis\tO\nlogical\tO\tlogical\tO\nextensions\tO\textensions\tO\nof\tO\tof\tO\nLex.DB\tB-Application\tLex.DB\tO\n.\tO\t.\tO\n\t\nFeatures\tO\tFeatures\tO\nstill\tO\tstill\tO\nin\tO\tin\tO\ndevelopment\tO\tdevelopment\tO\n\t\nSerialization\tO\tSerialization\tO\nof\tO\tof\tO\ncomplex\tO\tcomplex\tO\ntypes\tO\ttypes\tO\n\t\nSerialization\tO\tSerialization\tO\nof\tO\tof\tO\nreferences\tO\treferences\tO\n&\tO\t&\tO\nlists\tO\tlists\tO\nof\tO\tof\tO\nreferences\tO\treferences\tO\n(\tO\t(\tO\none-to-many\tO\tone-to-many\tO\n,\tO\t,\tO\nmany-to-many\tO\tmany-to-many\tO\nassociations\tO\tassociations\tO\n)\tO\t)\tO\n\t\nSingle\tO\tSingle\tO\nfile\tO\tfile\tO\nschema\tO\tschema\tO\n(\tO\t(\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\neach\tO\teach\tO\ntable\tB-Data_Structure\ttable\tO\nhas\tO\thas\tO\ntwo\tO\ttwo\tO\nfiles\tO\tfiles\tO\n:\tO\t:\tO\nindex\tO\tindex\tO\nand\tO\tand\tO\ndata\tO\tdata\tO\n)\tO\t)\tO\n\t\nCheck\tO\tCheck\tO\nauthor\tO\tauthor\tO\nblog\tO\tblog\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nLex.DB\tB-Application\tLex.DB\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/6\tO\thttps://github.com/zeroepoch/plotbitrate/issues/6\tO\n\t\nHi\tO\tHi\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nwonder\tO\twonder\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nforce\tO\tforce\tO\na\tO\ta\tO\nscale\tO\tscale\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbitrate\tO\tbitrate\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\ncase\tO\tcase\tO\none\tO\tone\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\ndifferent\tO\tdifferent\tO\nencodings\tO\tencodings\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfile\tO\tfile\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nhelp\tO\thelp\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nthe\tO\tthe\tO\ndifferent\tO\tdifferent\tO\nbitrate\tO\tbitrate\tO\ndistribution\tO\tdistribution\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nthe\tO\tthe\tO\nscale\tO\tscale\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbitrate\tO\tbitrate\tO\nalways\tO\talways\tO\nadapts\tO\tadapts\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbig\tO\tbig\tO\nchange\tO\tchange\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbitrate\tO\tbitrate\tO\ndistribution\tO\tdistribution\tO\n.\tO\t.\tO\n\t\nLets\tO\tLets\tO\nsay\tO\tsay\tO\nif\tO\tif\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nminimun\tO\tminimun\tO\nand\tO\tand\tO\nmaximum\tO\tmaximum\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nfirst\tO\tfirst\tO\nplot\tO\tplot\tO\ncould\tO\tcould\tO\nI\tO\tI\tO\nthen\tO\tthen\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\nlike\tO\tlike\tO\n-scalemin\tB-Code_Block\t-scalemin\tO\n0\tI-Code_Block\t0\tO\n-scalemax\tI-Code_Block\t-scalemax\tO\n60000\tI-Code_Block\t60000\tO\n?\tO\t?\tO\n\t\nPlease\tO\tPlease\tO\nconsider\tO\tconsider\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nfeature\tO\tfeature\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nlike\tO\tlike\tO\nreporting\tO\treporting\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\n!\tO\t!\tO\n\t\n:)\tO\t:)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlobbin/chrome\tO\tlobbin/chrome\tO\n-die2nitemapupdater\tO\t-die2nitemapupdater\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lobbin/chrome-die2nitemapupdater/issues/1\tO\thttps://github.com/lobbin/chrome-die2nitemapupdater/issues/1\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\napplied\tO\tapplied\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/2\tO\thttps://github.com/numen31337/AKVideoImageView/issues/2\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\non\tO\ton\tO\na\tO\ta\tO\nUITableViewCell\tB-Library_Class\tUITableViewCell\tO\nsubclass\tO\tsubclass\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\ncrash\tO\tcrash\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\n***\tO\t***\tO\nTerminating\tO\tTerminating\tO\napp\tO\tapp\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nuncaught\tO\tuncaught\tO\nexception\tO\texception\tO\n'\tO\t'\tO\nNSInvalidArgumentException\tB-Library_Class\tNSInvalidArgumentException\tO\n'\tO\t'\tO\n,\tO\t,\tO\nreason\tO\treason\tO\n:\tO\t:\tO\n'\tO\t'\tO\n***\tO\t***\tO\n-\tO\t-\tO\n[\tO\t[\tO\nAVAssetReaderTrackOutput\tO\tAVAssetReaderTrackOutput\tO\ninitWithTrack:outputSettings\tO\tinitWithTrack:outputSettings\tO\n:\tO\t:\tO\n]\tO\t]\tO\ninvalid\tB-Error_Name\tinvalid\tO\nparameter\tI-Error_Name\tparameter\tO\nnot\tI-Error_Name\tnot\tO\nsatisfying\tI-Error_Name\tsatisfying\tO\n:\tO\t:\tO\ntrack\tO\ttrack\tO\n!=\tO\t!=\tO\n(\tO\t(\tO\n(\tO\t(\tO\nvoid\tO\tvoid\tO\n*\tO\t*\tO\n)\tO\t)\tO\n0\tO\t0\tO\n)\tO\t)\tO\n'\tO\t'\tO\n\"\tO\t\"\tO\n\t\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_63731\tI-Code_Block\tGR_63731\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nsubview\tO\tsubview\tO\nto\tO\tto\tO\nself\tB-Library_Class\tself\tO\nand\tO\tand\tO\nself.contentView\tB-Library_Class\tself.contentView\tO\nand\tO\tand\tO\nsame\tO\tsame\tO\nresult\tO\tresult\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmongrate/mongrate.com\tO\tmongrate/mongrate.com\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mongrate/mongrate.com/issues/2\tO\thttps://github.com/mongrate/mongrate.com/issues/2\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/2\tO\thttps://github.com/numen31337/AKVideoImageView/issues/2\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nissues\tO\tissues\tO\nwhen\tO\twhen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nlibrary\tO\tlibrary\tO\nwith\tO\twith\tO\nswift\tB-Language\tswift\tO\n3\tB-Version\t3\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\ncomplainig\tO\tcomplainig\tO\nabout\tO\tabout\tO\nNSURL\tB-Library_Class\tNSURL\tO\n(\tO\t(\tO\nnow\tO\tnow\tO\nnamed\tO\tnamed\tO\nURL\tO\tURL\tO\n)\tO\t)\tO\nand\tO\tand\tO\nalso\tO\talso\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nremoved\tO\tremoved\tO\nthe\tO\tthe\tO\nasserts\tO\tasserts\tO\nfor\tO\tfor\tO\nNSURL\tB-Library_Class\tNSURL\tO\n,\tO\t,\tO\nI\tO\tI\tO\nreceive\tO\treceive\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\n[\tO\t[\tO\nAVAssetReaderTrackOutput\tO\tAVAssetReaderTrackOutput\tO\ninitWithTrack:outputSettings\tO\tinitWithTrack:outputSettings\tO\n:\tO\t:\tO\n]\tO\t]\tO\ninvalid\tB-Error_Name\tinvalid\tO\nparameter\tI-Error_Name\tparameter\tO\nnot\tI-Error_Name\tnot\tO\nsatisfying\tI-Error_Name\tsatisfying\tO\n:\tO\t:\tO\ntrack\tO\ttrack\tO\n!=\tO\t!=\tO\n(\tO\t(\tO\n(\tO\t(\tO\nvoid\tO\tvoid\tO\n*\tO\t*\tO\n)\tO\t)\tO\n0\tO\t0\tO\n)\tO\t)\tO\n\"\tO\t\"\tO\n\t\nhelp\tO\thelp\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app/issues/9\tO\thttps://github.com/lbarasti/gps_app/issues/9\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nage\tO\tage\tO\n\"\tO\t\"\tO\nof\tO\tof\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nis\tO\tis\tO\ndetermined\tO\tdetermined\tO\nby\tO\tby\tO\na\tO\ta\tO\ncomparison\tO\tcomparison\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nphone\tB-Device\tphone\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbus\tO\tbus\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nconsistent\tO\tconsistent\tO\ntimestamp\tO\ttimestamp\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nserver\tO\tserver\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\ndelta\tO\tdelta\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntimestamp\tO\ttimestamp\tO\nby\tO\tby\tO\nrecording\tO\trecording\tO\nthe\tO\tthe\tO\nreceivedAt\tB-Variable_Name\treceivedAt\tO\ntimestamp\tO\ttimestamp\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nmessage\tO\tmessage\tO\nand\tO\tand\tO\ndiff-ing\tO\tdiff-ing\tO\nwith\tO\twith\tO\ncurrentTime\tB-Variable_Name\tcurrentTime\tO\non\tO\ton\tO\nresponding\tO\tresponding\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprogdude/Flicks\tO\tprogdude/Flicks\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/progdude/Flicks/issues/1\tO\thttps://github.com/progdude/Flicks/issues/1\tO\n\t\n/cc\tO\t/cc\tO\n@codepathreview\tB-User_Name\t@codepathreview\tO\nFinished\tO\tFinished\tO\nfirst\tO\tfirst\tO\n3\tO\t3\tO\nvideos\tB-User_Interface_Element\tvideos\tO\n.\tO\t.\tO\n\t\nIntent\tO\tIntent\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndesign\tO\tdesign\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nmore\tO\tmore\tO\nfeatures\tO\tfeatures\tO\nduring\tO\tduring\tO\nor\tO\tor\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nlab\tO\tlab\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app/issues/10\tO\thttps://github.com/lbarasti/gps_app/issues/10\tO\n\t\nThe\tO\tThe\tO\ntransparent\tO\ttransparent\tO\noverlay\tO\toverlay\tO\nwas\tO\twas\tO\nachieved\tO\tachieved\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nexpense\tO\texpense\tO\nof\tO\tof\tO\nspecifying\tO\tspecifying\tO\nthe\tO\tthe\tO\nheight\tO\theight\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmap\tO\tmap\tO\nin\tO\tin\tO\npixels\tO\tpixels\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nmap\tO\tmap\tO\nto\tO\tto\tO\nonce\tO\tonce\tO\nagain\tO\tagain\tO\nfill\tO\tfill\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\nscreen\tB-User_Interface_Element\tscreen\tO\n,\tO\t,\tO\nkeeping\tO\tkeeping\tO\nthe\tO\tthe\tO\nbus\tO\tbus\tO\nroute\tO\troute\tO\nlatitude\tO\tlatitude\tO\ncentral\tO\tcentral\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/5\tO\thttps://github.com/zeroepoch/plotbitrate/issues/5\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nffprobe\tB-Application\tffprobe\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nproduce\tO\tproduce\tO\nxml\tB-Language\txml\tO\nfields\tO\tfields\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npkt_pts_time\tB-Library_Variable\tpkt_pts_time\tB-Code_Block\nattribute\tO\tattribute\tO\n.\tO\t.\tO\n\t\nMight\tO\tMight\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nffprobe\tB-Application\tffprobe\tO\nswitch\tO\tswitch\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ndecipher\tO\tdecipher\tO\nthe\tO\tthe\tO\npoor\tO\tpoor\tO\nFFMPEG\tB-Application\tFFMPEG\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nhoumadi/hello\tO\thoumadi/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/houmadi/hello-world/issues/1\tO\thttps://github.com/houmadi/hello-world/issues/1\tO\n\t\nit\tO\tit\tO\nseems\tO\tseems\tO\ncool\tO\tcool\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander/issues/11\tO\thttps://github.com/SivanMehta/wander/issues/11\tO\n\t\nAs\tO\tAs\tO\nprevious\tO\tprevious\tO\nsuggestion\tO\tsuggestion\tO\n,\tO\t,\tO\nremoved\tO\tremoved\tO\nthe\tO\tthe\tO\nmovie\tB-User_Interface_Element\tmovie\tO\n,\tO\t,\tO\ngif\tB-File_Type\tgif\tO\nand\tO\tand\tO\nXD\tB-Application\tXD\tO\nfiles\tO\tfiles\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nwere\tO\twere\tO\ntaking\tO\ttaking\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nmemory\tO\tmemory\tO\n-\tO\t-\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nnow\tO\tnow\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nhttps://drive.google.com/drive/folders/0B5InXd2CuDuSdEExNWVteENVMmc?usp=sharing\tO\thttps://drive.google.com/drive/folders/0B5InXd2CuDuSdEExNWVteENVMmc?usp=sharing\tO\nand\tO\tand\tO\nlinked\tO\tlinked\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nread\tO\tread\tO\nme\tO\tme\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsdookadr/overflow\tO\twsdookadr/overflow\tO\n-checker\tO\t-checker\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsdookadr/fieldtop/issues/7\tO\thttps://github.com/wsdookadr/fieldtop/issues/7\tO\n\t\nHi\tO\tHi\tO\nI\tO\tI\tO\n've\tO\t've\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nmodification\tO\tmodification\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nhost\tO\thost\tO\nconfiguration\tO\tconfiguration\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconfig\tO\tconfig\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nDefault\tO\tDefault\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nlocalhost\tO\tlocalhost\tO\n.\tO\t.\tO\n\t\nBest\tO\tBest\tO\nregards\tO\tregards\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/12\tO\thttps://github.com/koding/kd-atom/issues/12\tO\n\t\n@sinan\tB-User_Name\t@sinan\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nincrease\tO\tincrease\tO\ncommit\tO\tcommit\tO\n,\tO\t,\tO\nmerging\tO\tmerging\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nZorros/copycat\tO\tZorros/copycat\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/Zorros/copycat/issues/2\tO\thttps://github.com/Zorros/copycat/issues/2\tO\n\t\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n\t\nin\tO\tin\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nrace\tO\trace\tO\ncondition\tO\tcondition\tO\nbetween\tO\tbetween\tO\nchecking\tO\tchecking\tO\nif\tO\tif\tO\na\tO\ta\tO\nkey\tO\tkey\tO\nalready\tO\talready\tO\nexists\tO\texists\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\ninserting\tO\tinserting\tO\nthat\tO\tthat\tO\nkey\tO\tkey\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nadapter\tO\tadapter\tO\nthrow\tO\tthrow\tO\nan\tO\tan\tO\nexception\tO\texception\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\ninsert\tO\tinsert\tO\na\tO\ta\tO\nkey\tO\tkey\tO\nthat\tO\tthat\tO\nalready\tO\talready\tO\nexists\tO\texists\tO\n\t\nthe\tO\tthe\tO\nfix\tO\tfix\tO\n\t\nit\tO\tit\tO\nrescue\tO\trescue\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nexception\tO\texception\tO\nand\tO\tand\tO\nthrow\tO\tthrow\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nwarning\tO\twarning\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\nalso\tO\talso\tO\nintroduce\tO\tintroduce\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nsilence_warnings\tB-Library_Variable\tsilence_warnings\tO\n\"\tO\t\"\tO\nconfiguration\tO\tconfiguration\tO\nfor\tO\tfor\tO\nCopycat\tB-Library\tCopycat\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/12\tO\thttps://github.com/contributte/logging/issues/12\tO\n\t\nHey\tO\tHey\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncreate\tO\tcreate\tO\nlog\tO\tlog\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nparent\tO\tparent\tO\ndirectory\tO\tdirectory\tO\nof\tO\tof\tO\n$\tB-Code_Block\t$\tB-Code_Block\nthis->directory\tI-Code_Block\tthis->directory\tI-Code_Block\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nskip\tO\tskip\tO\ndot\tO\tdot\tO\ndirectories\tO\tdirectories\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nignore\tO\tignore\tO\nthem\tO\tthem\tO\n\t\nFix\tO\tFix\tO\nbug\tO\tbug\tO\nwhen\tO\twhen\tO\n$\tB-Code_Block\t$\tB-Code_Block\nthis->directory\tI-Code_Block\tthis->directory\tI-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nend\tO\tend\tO\nwith\tO\twith\tO\ndirectory\tO\tdirectory\tO\nseparator\tO\tseparator\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nreproduce\tO\treproduce\tO\n?\tO\t?\tO\n\t\n:\tO\t:\tO\n\t\nSet\tO\tSet\tO\nyour\tO\tyour\tO\nlogDir\tB-File_Name\tlogDir\tB-Code_Block\nfor\tO\tfor\tO\nTracyLogging\tB-Library_Class\tTracyLogging\tB-Code_Block\nas\tO\tas\tO\n%appDir%\tB-File_Name\t%appDir%\tB-Code_Block\n/../log\tI-File_Name\t/../log\tI-Code_Block\n\t\nSet\tO\tSet\tO\nmodo\tO\tmodo\tO\nto\tO\tto\tO\nproduction\tO\tproduction\tO\n\t\nPut\tO\tPut\tO\nsomewhere\tO\tsomewhere\tO\nin\tO\tin\tO\npresenter\tO\tpresenter\tO\naction\tO\taction\tO\nthrow\tB-Code_Block\tthrow\tB-Code_Block\nnew\tI-Code_Block\tnew\tI-Code_Block\n\\Nette\\InvalidArgumentException('TEST')\tI-Code_Block\t\\Nette\\InvalidArgumentException('TEST')\tI-Code_Block\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nfirst\tO\tfirst\tO\nthrow\tO\tthrow\tO\n.html\tB-File_Type\t.html\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nlog\tO\tlog\tO\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsecond\tO\tsecond\tO\n.html\tB-File_Type\t.html\tO\n,\tO\t,\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nexception\tB-Library_Class\texception\tO\n,\tO\t,\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nparent\tO\tparent\tO\nof\tO\tof\tO\nlog\tO\tlog\tO\ndir\tO\tdir\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/5\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/5\tO\n\t\nEspn\tB-Organization\tEspn\tO\ngives\tO\tgives\tO\nbad\tO\tbad\tO\ndata\tO\tdata\tO\nsometimes\tO\tsometimes\tO\n:\tO\t:\tO\nhttp://scores.espn.go.com/ncf/playbyplay?gameId=400547677\tO\thttp://scores.espn.go.com/ncf/playbyplay?gameId=400547677\tO\n\t\nGames\tO\tGames\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nthis\tO\tthis\tO\nsometimes\tO\tsometimes\tO\nflood\tO\tflood\tO\nduplicate\tO\tduplicate\tO\nand\tO\tand\tO\nout\tO\tout\tO\nof\tO\tof\tO\norder\tO\torder\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nshould\tO\tshould\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\ncheck\tO\tcheck\tO\nto\tO\tto\tO\nverify\tO\tverify\tO\nthat\tO\tthat\tO\nvalues\tO\tvalues\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\nex\tO\tex\tO\n.\tO\t.\tO\n\t\nIncomplete\tO\tIncomplete\tO\npass\tO\tpass\tO\non\tO\ton\tO\n4th&\tO\t4th&\tO\n2\tO\t2\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nplay\tO\tplay\tO\nbeing\tO\tbeing\tO\n2nd\tO\t2nd\tO\n&\tO\t&\tO\n14\tO\t14\tO\n@\tO\t@\tO\nthe\tO\tthe\tO\n28\tO\t28\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nclearly\tO\tclearly\tO\nduplicated\tO\tduplicated\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmay\tO\tmay\tO\nrequire\tO\trequire\tO\ncross\tO\tcross\tO\nchecking\tO\tchecking\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\nsite\tO\tsite\tO\n's\tO\t's\tO\nPBP\tO\tPBP\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnerab/TaskWarriorMail\tO\tnerab/TaskWarriorMail\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/nerab/TaskWarriorMail\tO\thttps://github.com/nerab/TaskWarriorMail\tO\n\t\ntwmail\tO\ttwmail\tO\n\t\ntwmail\tB-Application\ttwmail\tB-Code_Block\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nmail\tO\tmail\tO\nnew\tO\tnew\tO\ntasks\tO\ttasks\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\ninbox\tO\tinbox\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_79102\tI-Code_Block\tGR_79102\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsage\tO\tUsage\tO\n\t\nInstall\tO\tInstall\tO\nruby\tB-Language\truby\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\ngem\tO\tgem\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\n~\tB-Code_Block\t~\tB-Code_Block\n/.fetchmailrc\tI-Code_Block\t/.fetchmailrc\tI-Code_Block\nyet\tO\tyet\tO\n,\tO\t,\tO\ncopy\tO\tcopy\tO\ndoc/fetchmailrc.sample\tB-Code_Block\tdoc/fetchmailrc.sample\tB-Code_Block\nto\tO\tto\tO\n~\tB-Code_Block\t~\tB-Code_Block\n/.fetchmailrc\tI-Code_Block\t/.fetchmailrc\tI-Code_Block\n\t\nEdit\tO\tEdit\tO\n~\tB-Code_Block\t~\tB-Code_Block\n/.fetchmailrc\tI-Code_Block\t/.fetchmailrc\tI-Code_Block\nand\tO\tand\tO\nadjust\tO\tadjust\tO\nmail\tO\tmail\tO\naccount\tO\taccount\tO\nsettings\tO\tsettings\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nwas\tO\twas\tO\nmade\tO\tmade\tO\nfor\tO\tfor\tO\nGoogle\tB-Application\tGoogle\tO\nMail\tI-Application\tMail\tO\naccount\tO\taccount\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nin\tO\tin\tO\ndoubt\tO\tdoubt\tO\n,\tO\t,\tO\nconsult\tO\tconsult\tO\nthe\tO\tthe\tO\nfetchmail\tB-Application\tfetchmail\tB-Code_Block\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nby\tO\tby\tO\nexecuting\tO\texecuting\tO\nman\tB-Code_Block\tman\tB-Code_Block\nfetchmailconf\tI-Code_Block\tfetchmailconf\tI-Code_Block\nin\tO\tin\tO\na\tO\ta\tO\nterminal\tB-Application\tterminal\tO\n.\tO\t.\tO\n\t\nMotivation\tO\tMotivation\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\ntasks\tO\ttasks\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\ninbox\tO\tinbox\tO\nfrom\tO\tfrom\tO\nremote\tO\tremote\tO\nplaces\tO\tplaces\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nimmediate\tO\timmediate\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\npersonal\tO\tpersonal\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\ndatabase\tO\tdatabase\tO\n;\tO\t;\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\niPhone\tB-Device\tiPhone\tO\n,\tO\t,\tO\nfrom\tO\tfrom\tO\nwork\tO\twork\tO\n(\tO\t(\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\npersonal\tO\tpersonal\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\ninstallation\tO\tinstallation\tO\n)\tO\t)\tO\nor\tO\tor\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\ncomputer\tO\tcomputer\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\neMail\tO\teMail\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\ncandidate\tO\tcandidate\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\n(\tO\t(\tO\nor\tO\tor\tO\ncannot\tO\tcannot\tO\n)\tO\t)\tO\ninstall\tO\tinstall\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\non\tO\ton\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nplaces\tO\tplaces\tO\nand\tO\tand\tO\nmachines\tO\tmachines\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ntasks\tO\ttasks\tO\nfrom\tO\tfrom\tO\n.\tO\t.\tO\n\t\nSending\tO\tSending\tO\na\tO\ta\tO\nnote\tO\tnote\tO\nas\tO\tas\tO\neMail\tO\teMail\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nuniversally\tO\tuniversally\tO\navailable\tO\tavailable\tO\n.\tO\t.\tO\n\t\nMany\tO\tMany\tO\napplications\tO\tapplications\tO\nwere\tO\twere\tO\nnot\tO\tnot\tO\nmade\tO\tmade\tO\nfor\tO\tfor\tO\nintegration\tO\tintegration\tO\nwith\tO\twith\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\neven\tO\teven\tO\nthe\tO\tthe\tO\ndumbest\tO\tdumbest\tO\niPhone\tB-Device\tiPhone\tO\napp\tO\tapp\tO\ncan\tO\tcan\tO\nforward\tO\tforward\tO\ntext\tO\ttext\tO\nor\tO\tor\tO\na\tO\ta\tO\nURL\tO\tURL\tO\nvia\tO\tvia\tO\neMail\tO\teMail\tO\n.\tO\t.\tO\n\t\neMail\tO\teMail\tO\nis\tO\tis\tO\nasynchronous\tO\tasynchronous\tO\nby\tO\tby\tO\ndesign\tO\tdesign\tO\n(\tO\t(\tO\nfire\tO\tfire\tO\nand\tO\tand\tO\nforget\tO\tforget\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nif\tO\tif\tO\ndisconnected\tO\tdisconnected\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nnet\tO\tnet\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\neMail\tO\teMail\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nwill\tO\twill\tO\ndeliver\tO\tdeliver\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nvery\tO\tvery\tO\nnext\tO\tnext\tO\noccassion\tO\toccassion\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nmissing\tO\tmissing\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\nperspective\tO\tperspective\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\nis\tO\tis\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthese\tO\tthese\tO\nmails\tO\tmails\tO\nto\tO\tto\tO\na\tO\ta\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\ninstallation\tO\tinstallation\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nArchitecture\tO\tArchitecture\tO\n\t\nThe\tO\tThe\tO\nsimplest\tO\tsimplest\tO\nsolution\tO\tsolution\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\ncome\tO\tcome\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nA\tO\tA\tO\ndedicated\tO\tdedicated\tO\nemail\tO\temail\tO\naccount\tO\taccount\tO\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\ncollect\tO\tcollect\tO\nthe\tO\tthe\tO\ntasks\tO\ttasks\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\nimports\tO\timports\tO\nall\tO\tall\tO\neMails\tO\teMails\tO\nas\tO\tas\tO\nnew\tO\tnew\tO\ntasks\tO\ttasks\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nprerequisite\tO\tprerequisite\tO\n,\tO\t,\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\nis\tO\tis\tO\nassumed\tO\tassumed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ninstalled\tO\tinstalled\tO\nand\tO\tand\tO\nconfigured\tO\tconfigured\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthis\tO\tthis\tO\narchitecture\tO\tarchitecture\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfunctionality\tO\tfunctionality\tO\nis\tO\tis\tO\nrather\tO\trather\tO\nsimple\tO\tsimple\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_79103\tI-Code_Block\tGR_79103\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\nword\tO\tword\tO\nTransaction\tB-Library_Class\tTransaction\tB-Code_Block\nimplies\tO\timplies\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\noperation\tO\toperation\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\natomic\tO\tatomic\tO\nper\tO\tper\tO\nmail\tO\tmail\tO\n.\tO\t.\tO\n\t\nNo\tO\tNo\tO\ntask\tO\ttask\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nadded\tO\tadded\tO\nif\tO\tif\tO\nfetching\tO\tfetching\tO\na\tO\ta\tO\nmail\tO\tmail\tO\nwent\tO\twent\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nand\tO\tand\tO\nno\tO\tno\tO\nmail\tO\tmail\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\ndeleted\tO\tdeleted\tO\nif\tO\tif\tO\nstoring\tO\tstoring\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\nin\tO\tin\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\nfailed\tO\tfailed\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\npresented\tO\tpresented\tO\nhere\tO\there\tO\nmaintains\tO\tmaintains\tO\na\tO\ta\tO\none-to-one\tO\tone-to-one\tO\nrelation\tO\trelation\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nINBOX\tO\tINBOX\tO\nof\tO\tof\tO\nan\tO\tan\tO\nmail\tO\tmail\tO\naccount\tO\taccount\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nComponents\tO\tComponents\tO\n\t\nMail\tO\tMail\tO\nfetching\tO\tfetching\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\nfetchmail\tB-Application\tfetchmail\tB-Code_Block\n,\tO\t,\tO\na\tO\ta\tO\nproven\tO\tproven\tO\nsolution\tO\tsolution\tO\navailable\tO\tavailable\tO\non\tO\ton\tO\nall\tO\tall\tO\nmajor\tO\tmajor\tO\nUnices\tB-Operating_System\tUnices\tO\nincl\tO\tincl\tO\n.\tO\t.\tO\n\t\nMacOS\tB-Operating_System\tMacOS\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nconfigured\tO\tconfigured\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ntwmail\tB-Application\ttwmail\tB-Code_Block\nscript\tO\tscript\tO\nas\tO\tas\tO\na\tO\ta\tO\nmail\tO\tmail\tO\ndelivery\tO\tdelivery\tO\nagent\tO\tagent\tO\n(\tO\t(\tO\nmda\tO\tmda\tO\n)\tO\t)\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmeans\tO\tmeans\tO\nnothing\tO\tnothing\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nthat\tO\tthat\tO\nfetchmail\tB-Application\tfetchmail\tB-Code_Block\nfetches\tO\tfetches\tO\nthe\tO\tthe\tO\nmail\tO\tmail\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nconfigured\tO\tconfigured\tO\naccount\tO\taccount\tO\nand\tO\tand\tO\nhands\tO\thands\tO\nit\tO\tit\tO\nover\tO\tover\tO\nto\tO\tto\tO\nour\tO\tour\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nfurther\tO\tfurther\tO\nstorage\tO\tstorage\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nreceived\tO\treceived\tO\nmails\tO\tmails\tO\nexcept\tO\texcept\tO\nin\tO\tin\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\n.\tO\t.\tO\n\t\nError\tO\tError\tO\nHandling\tO\tHandling\tO\n\t\nIf\tO\tIf\tO\nour\tO\tour\tO\nMDA\tO\tMDA\tO\nreturns\tO\treturns\tO\nnon-zero\tO\tnon-zero\tO\n,\tO\t,\tO\nfetchmail\tB-Application\tfetchmail\tB-Code_Block\nwill\tO\twill\tO\nnot\tO\tnot\tO\nassume\tO\tassume\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nprocessed\tO\tprocessed\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ntry\tO\ttry\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nAlternatives\tO\tAlternatives\tO\n\t\nOne\tO\tOne\tO\nmight\tO\tmight\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\nmore\tO\tmore\tO\nelaborate\tO\telaborate\tO\napplications\tO\tapplications\tO\nthat\tO\tthat\tO\ndo\tO\tdo\tO\nmore\tO\tmore\tO\nclever\tO\tclever\tO\nthings\tO\tthings\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthis\tO\tthis\tO\nsolution\tO\tsolution\tO\nwith\tO\twith\tO\nas\tO\tas\tO\nfew\tO\tfew\tO\nexternal\tO\texternal\tO\ndependencies\tO\tdependencies\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nfetchmail\tB-Application\tfetchmail\tB-Code_Block\nis\tO\tis\tO\navailable\tO\tavailable\tO\non\tO\ton\tO\nall\tO\tall\tO\nUnices\tB-Operating_System\tUnices\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwho\tO\twho\tO\ncan\tO\tcan\tO\nafford\tO\tafford\tO\nto\tO\tto\tO\nlive\tO\tlive\tO\nwithout\tO\twithout\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\nanyway\tO\tanyway\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nplayed\tO\tplayed\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nthought\tO\tthought\tO\nof\tO\tof\tO\na\tO\ta\tO\ncentral\tO\tcentral\tO\ntasks\tO\ttasks\tO\nserver\tO\tserver\tO\nthat\tO\tthat\tO\nreceives\tO\treceives\tO\nmail\tO\tmail\tO\nfrom\tO\tfrom\tO\nservices\tO\tservices\tO\nlike\tO\tlike\tO\nCloudMailIn\tB-Application\tCloudMailIn\tO\nand\tO\tand\tO\nauto-adds\tO\tauto-adds\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\ndifferent\tO\tdifferent\tO\n(\tO\t(\tO\nbesides\tO\tbesides\tO\nbeing\tO\tbeing\tO\nmore\tO\tmore\tO\ncomplex\tO\tcomplex\tO\n)\tO\t)\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\npresented\tO\tpresented\tO\nhere\tO\there\tO\n:\tO\t:\tO\nNo\tO\tNo\tO\ntask\tO\ttask\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfetched\tO\tfetched\tO\ninto\tO\tinto\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nmachine\tO\tmachine\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\ndatabase\tO\tdatabase\tO\nis\tO\tis\tO\nonline\tO\tonline\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nalternative\tO\talternative\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nto\tO\tto\tO\nJSON\tB-File_Type\tJSON\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\n's\tO\t's\tO\nimport\tO\timport\tO\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\nallow\tO\tallow\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nand\tO\tand\tO\nannotate\tO\tannotate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ntask\tO\ttask\tO\nin\tO\tin\tO\none\tO\tone\tO\nstep\tO\tstep\tO\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\nbin/task\tB-Code_Block\tbin/task\tB-Code_Block\n-uuid\tI-Code_Block\t-uuid\tI-Code_Block\nworkaround\tO\tworkaround\tO\n.\tO\t.\tO\n\t\nAdvanced\tO\tAdvanced\tO\nUsage\tO\tUsage\tO\n\t\nFiltering\tO\tFiltering\tO\nand\tO\tand\tO\nRouting\tO\tRouting\tO\n\t\nMany\tO\tMany\tO\nmore\tO\tmore\tO\nadvanced\tO\tadvanced\tO\nuse\tO\tuse\tO\ncases\tO\tcases\tO\nlike\tO\tlike\tO\nfiltering\tO\tfiltering\tO\nand\tO\tand\tO\nrouting\tO\trouting\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nimplemented\tO\timplemented\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmail\tO\tmail\tO\nserver\tB-Application\tserver\tO\nside\tI-Application\tside\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nplenty\tO\tplenty\tO\nof\tO\tof\tO\nuser\tO\tuser\tO\ninterfaces\tO\tinterfaces\tO\nfor\tO\tfor\tO\nrouting\tO\trouting\tO\neMails\tO\teMails\tO\nbased\tO\tbased\tO\non\tO\ton\tO\ntheir\tO\ttheir\tO\nsubject\tO\tsubject\tO\n,\tO\t,\tO\nsender\tO\tsender\tO\n,\tO\t,\tO\nbody\tO\tbody\tO\ntext\tO\ttext\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsimplest\tO\tsimplest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nthese\tO\tthese\tO\nfeatures\tO\tfeatures\tO\nwith\tO\twith\tO\ntwmail\tB-Application\ttwmail\tB-Code_Block\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nIMAP\tB-Algorithm\tIMAP\tO\nfolders\tO\tfolders\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nall\tO\tall\tO\nfiltering\tO\tfiltering\tO\nand\tO\tand\tO\nrouting\tO\trouting\tO\n,\tO\t,\tO\neach\tO\teach\tO\neMail\tO\teMail\tO\nmust\tO\tmust\tO\nend\tO\tend\tO\nup\tO\tup\tO\nin\tO\tin\tO\na\tO\ta\tO\ndedicated\tO\tdedicated\tO\nIMAP\tB-Algorithm\tIMAP\tO\nfolder\tO\tfolder\tO\n(\tO\t(\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nall\tO\tall\tO\ntasks\tO\ttasks\tO\nare\tO\tare\tO\nfetched\tO\tfetched\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nINBOX\tO\tINBOX\tO\nfolder\tO\tfolder\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\ntwmail\tB-Application\ttwmail\tB-Code_Block\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nbe\tO\tbe\tO\nconfigured\tO\tconfigured\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\ndifferent\tO\tdifferent\tO\nthings\tO\tthings\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhich\tO\twhich\tO\nIMAP\tB-Algorithm\tIMAP\tO\nfolder\tO\tfolder\tO\na\tO\ta\tO\nmail\tO\tmail\tO\ncame\tO\tcame\tO\nfrom\tO\tfrom\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nto\tO\tto\tO\nroute\tO\troute\tO\neMails\tO\teMails\tO\nto\tO\tto\tO\ndifferent\tO\tdifferent\tO\nprojects\tO\tprojects\tO\nin\tO\tin\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\n,\tO\t,\tO\nbased\tO\tbased\tO\non\tO\ton\tO\ntheir\tO\ttheir\tO\nsubject\tO\tsubject\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nSet\tO\tSet\tO\nup\tO\tup\tO\na\tO\ta\tO\ndedicated\tO\tdedicated\tO\nIMAP\tB-Algorithm\tIMAP\tO\nfolder\tO\tfolder\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nproject\tO\tproject\tO\nyou\tO\tyou\tO\nwork\tO\twork\tO\non\tO\ton\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nBuild\tO\tBuild\tO\nBikeshed\tO\tBikeshed\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nReading\tO\tReading\tO\nList\tO\tList\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nGet\tO\tGet\tO\nRich\tO\tRich\tO\nFast\tO\tFast\tO\n\"\tO\t\"\tO\n\t\nConfigure\tO\tConfigure\tO\nthe\tO\tthe\tO\nmail\tO\tmail\tO\nserver\tB-Application\tserver\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nevery\tO\tevery\tO\nmail\tO\tmail\tO\nfrom\tO\tfrom\tO\nINBOX\tO\tINBOX\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n\t\n\"\tO\t\"\tO\nBuild\tO\tBuild\tO\nBikeshed\tO\tBikeshed\tO\n\"\tO\t\"\tO\nfolder\tO\tfolder\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nmail\tO\tmail\tO\nsubject\tO\tsubject\tO\ncontains\tO\tcontains\tO\n\"\tO\t\"\tO\nproject:Bikeshed\tO\tproject:Bikeshed\tO\n\"\tO\t\"\tO\n\t\n\"\tO\t\"\tO\nReading\tO\tReading\tO\nList\tO\tList\tO\n\"\tO\t\"\tO\nfolder\tO\tfolder\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nmail\tO\tmail\tO\nsubject\tO\tsubject\tO\ncontains\tO\tcontains\tO\n\"\tO\t\"\tO\nproject:Reading\tO\tproject:Reading\tO\n\"\tO\t\"\tO\n\t\n\"\tO\t\"\tO\nGet\tO\tGet\tO\nRich\tO\tRich\tO\nFast\tO\tFast\tO\n\"\tO\t\"\tO\nfolder\tO\tfolder\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nmail\tO\tmail\tO\nsubject\tO\tsubject\tO\ncontains\tO\tcontains\tO\n\"\tO\t\"\tO\nproject:GetRichFast\tO\tproject:GetRichFast\tO\n\"\tO\t\"\tO\n\t\nTell\tO\tTell\tO\ntwmail\tB-Application\ttwmail\tB-Code_Block\nto\tO\tto\tO\nfetch\tO\tfetch\tO\nmails\tO\tmails\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nBuild\tO\tBuild\tO\nBikeshed\tO\tBikeshed\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nReading\tO\tReading\tO\nList\tO\tList\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nGet\tO\tGet\tO\nRich\tO\tRich\tO\nFast\tO\tFast\tO\n\"\tO\t\"\tO\nIMAP\tB-Algorithm\tIMAP\tO\nfolders\tO\tfolders\tO\n(\tO\t(\tO\nin\tO\tin\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nINBOX\tO\tINBOX\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\napproach\tO\tapproach\tO\nchosen\tO\tchosen\tO\nfor\tO\tfor\tO\ntwmail\tB-Application\ttwmail\tB-Code_Block\nalso\tO\talso\tO\naddresses\tO\taddresses\tO\nSPAM\tO\tSPAM\tO\nfiltering\tO\tfiltering\tO\n.\tO\t.\tO\n\t\nHandling\tO\tHandling\tO\nthat\tO\tthat\tO\nremains\tO\tremains\tO\nthe\tO\tthe\tO\nresponsibility\tO\tresponsibility\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmail\tO\tmail\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nAnything\tO\tAnything\tO\nthat\tO\tthat\tO\nmakes\tO\tmakes\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nINBOX\tO\tINBOX\tO\nis\tO\tis\tO\ntreated\tO\ttreated\tO\nas\tO\tas\tO\ntask\tO\ttask\tO\n.\tO\t.\tO\n\t\nHooks\tO\tHooks\tO\n\t\ntwmail\tB-Application\ttwmail\tB-Code_Block\ncomes\tO\tcomes\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nadvanced\tO\tadvanced\tO\nimplementation\tO\timplementation\tO\nthat\tO\tthat\tO\nsupports\tO\tsupports\tO\nhooks\tO\thooks\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmakes\tO\tmakes\tO\nhandling\tO\thandling\tO\nincoming\tO\tincoming\tO\nmail\tO\tmail\tO\nvery\tO\tvery\tO\nsimple\tO\tsimple\tO\nfor\tO\tfor\tO\nsomeone\tO\tsomeone\tO\nfamiliar\tO\tfamiliar\tO\nwith\tO\twith\tO\nshell\tO\tshell\tO\nscripting\tO\tscripting\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\ntwmail\tB-Application\ttwmail\tB-Code_Block\nscripts\tO\tscripts\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\ncustomize\tO\tcustomize\tO\nits\tO\tits\tO\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nfetchmail\tB-Application\tfetchmail\tB-Code_Block\nis\tO\tis\tO\nconfigured\tO\tconfigured\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ntwmail-hook\tB-Application\ttwmail-hook\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ntwmail\tB-Application\ttwmail\tB-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nwill\tO\twill\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\ntwmail-hook\tB-Application\ttwmail-hook\tB-Code_Block\ncommand\tO\tcommand\tO\n(\tO\t(\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\n$PATH\tB-Library_Variable\t$PATH\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWithin\tO\tWithin\tO\nthe\tO\tthe\tO\nhook\tO\thook\tO\nscript\tO\tscript\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfields\tO\tfields\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nparsed\tO\tparsed\tO\nemail\tO\temail\tO\nare\tO\tare\tO\navailable\tO\tavailable\tO\nas\tO\tas\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_79104\tI-Code_Block\tGR_79104\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\ntest/helpers/test_hook\tO\ttest/helpers/test_hook\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nsimple\tO\tsimple\tO\nimplementation\tO\timplementation\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nprefer\tO\tprefer\tO\na\tO\ta\tO\nhook\tO\thook\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nname\tO\tname\tO\n,\tO\t,\tO\nspecify\tO\tspecify\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nTWMAIL_HOOK\tB-Library_Variable\tTWMAIL_HOOK\tB-Code_Block\nenvironment\tO\tenvironment\tO\nvariable\tO\tvariable\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\n.fetchmailrc\tB-File_Type\t.fetchmailrc\tB-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nhome\tO\thome\tO\ndirectory\tO\tdirectory\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nscript\tO\tscript\tO\ncalled\tO\tcalled\tO\ntaskwarrior-import.sh\tB-File_Name\ttaskwarrior-import.sh\tB-Code_Block\n,\tO\t,\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\nmda\tB-Code_Block\tmda\tB-Code_Block\nline\tO\tline\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_79105\tI-Code_Block\tGR_79105\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHousekeeping\tO\tHousekeeping\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\nfetchmail\tB-Application\tfetchmail\tB-Code_Block\nwill\tO\twill\tO\nmark\tO\tmark\tO\nretrieved\tO\tretrieved\tO\nmessages\tO\tmessages\tO\nas\tO\tas\tO\nread\tO\tread\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nleave\tO\tleave\tO\nthem\tO\tthem\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nhousekeeping\tO\thousekeeping\tO\npurposes\tO\tpurposes\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\ndesirable\tO\tdesirable\tO\nto\tO\tto\tO\ndelete\tO\tdelete\tO\nmessages\tO\tmessages\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nonce\tO\tonce\tO\nthey\tO\tthey\tO\nwere\tO\twere\tO\nsuccessfully\tO\tsuccessfully\tO\nimported\tO\timported\tO\ninto\tO\tinto\tO\nTaskWarrior\tB-Application\tTaskWarrior\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nways\tO\tways\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nfilter\tO\tfilter\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nside\tI-Application\tside\tO\nthat\tO\tthat\tO\ndeletes\tO\tdeletes\tO\nall\tO\tall\tO\nread\tO\tread\tO\nmail\tO\tmail\tO\nto\tO\tto\tO\na\tO\ta\tO\ndedicated\tO\tdedicated\tO\nfolder\tO\tfolder\tO\n(\tO\t(\tO\nperhaps\tO\tperhaps\tO\n\"\tO\t\"\tO\nArchive\tO\tArchive\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\nTrash\tO\tTrash\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\n,\tO\t,\tO\nor\tO\tor\tO\nsimply\tO\tsimply\tO\ndeletes\tO\tdeletes\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nfetchmail\tB-Application\tfetchmail\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\n--nokeep\tB-Code_Block\t--nokeep\tB-Code_Block\noption\tO\toption\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\ndelete\tO\tdelete\tO\nretrieved\tO\tretrieved\tO\nmessages\tO\tmessages\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\noption\tO\toption\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncapabilities\tO\tcapabilities\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nmail\tO\tmail\tO\nserver\tB-Application\tserver\tO\n(\tO\t(\tO\nGoogle\tB-Application\tGoogle\tO\nMail\tI-Application\tMail\tO\ncannot\tO\tcannot\tO\nhandle\tO\thandle\tO\nmails\tO\tmails\tO\nbased\tO\tbased\tO\non\tO\ton\tO\ntheir\tO\ttheir\tO\nread\tO\tread\tO\nstatus\tO\tstatus\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nlevel\tO\tlevel\tO\nof\tO\tof\tO\ntrust\tO\ttrust\tO\nin\tO\tin\tO\ntwmail\tB-Application\ttwmail\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nleaving\tO\tleaving\tO\nmails\tO\tmails\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nuntil\tO\tuntil\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nconfident\tO\tconfident\tO\nthat\tO\tthat\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nTesting\tO\tTesting\tO\n\t\ntwmail\tB-Application\ttwmail\tB-Code_Block\ncomes\tO\tcomes\tO\nwith\tO\twith\tO\na\tO\ta\tO\nbasic\tO\tbasic\tO\nset\tO\tset\tO\nof\tO\tof\tO\ntests\tO\ttests\tO\n.\tO\t.\tO\n\t\nExecute\tO\tExecute\tO\nthem\tO\tthem\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\nrake\tB-Code_Block\trake\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ncloned\tO\tcloned\tO\nsource\tO\tsource\tO\nrepo\tO\trepo\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nCocMap/opencv_starter\tO\tCocMap/opencv_starter\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/CocMap/opencv_starter/issues/1\tO\thttps://github.com/CocMap/opencv_starter/issues/1\tO\n\t\nHello\tO\tHello\tO\n,\tO\t,\tO\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\njoin\tO\tjoin\tO\nthe\tO\tthe\tO\ngroup\tO\tgroup\tO\nplease\tO\tplease\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nvery\tO\tvery\tO\npleased\tO\tpleased\tO\nto\tO\tto\tO\ncontribute\tO\tcontribute\tO\nand\tO\tand\tO\nhelp\tO\thelp\tO\neveryone\tO\teveryone\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ngroup\tO\tgroup\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\ntheir\tO\ttheir\tO\nskills\tO\tskills\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nconsider\tO\tconsider\tO\nmy\tO\tmy\tO\nrequest\tO\trequest\tO\nas\tO\tas\tO\na\tO\ta\tO\nfriend\tO\tfriend\tO\nalso\tO\talso\tO\nas\tO\tas\tO\na\tO\ta\tO\nboy\tO\tboy\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/24\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/24\tO\n\t\nThis\tO\tThis\tO\nPR\tO\tPR\tO\nadds\tO\tadds\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\next\tO\text\tO\nfilesystems\tO\tfilesystems\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nalso\tO\talso\tO\nchanges\tO\tchanges\tO\nthe\tO\tthe\tO\nAPI\tB-Library\tAPI\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\n3.0.0\tB-Version\t3.0.0\tO\n\t\nNew\tO\tNew\tO\nthings\tO\tthings\tO\n:\tO\t:\tO\n\t\nimagefs.interact(disk,partitions)\tB-Library_Function\timagefs.interact(disk,partitions)\tB-Code_Block\nreturns\tO\treturns\tO\na\tO\ta\tO\ndisposer\tO\tdisposer\tO\nof\tO\tof\tO\nan\tO\tan\tO\nfs\tO\tfs\tB-Code_Block\ninterface\tO\tinterface\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nwhatever\tO\twhatever\tO\nhe\tO\the\tO\nwants\tO\twants\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npartition\tO\tpartition\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nexported\tO\texported\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nimagefs.listDirectory\tB-Library_Function\timagefs.listDirectory\tB-Code_Block\nnow\tO\tnow\tO\nlists\tO\tlists\tO\nall\tO\tall\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nthose\tO\tthose\tO\nthat\tO\tthat\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndot\tO\tdot\tO\n(\tO\t(\tO\nI\tO\tI\tO\ntook\tO\ttook\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nbump\tO\tbump\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthis\tO\tthis\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nimagefs.write\tB-Library_Function\timagefs.write\tB-Code_Block\nnow\tO\tnow\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\nand\tO\tand\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\nof\tO\tof\tO\na\tO\ta\tO\nWriteStream\tB-Library_Class\tWriteStream\tB-Code_Block\n.\tO\t.\tO\n\t\nReturning\tO\tReturning\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nwas\tO\twas\tO\nuseless\tO\tuseless\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nwas\tO\twas\tO\nalready\tO\talready\tO\nbeing\tO\tbeing\tO\nwritten\tO\twritten\tO\nand\tO\tand\tO\nit\tO\tit\tO\nforced\tO\tforced\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nlisten\tO\tlisten\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nclose\tO\tclose\tO\n'\tO\t'\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nfor\tO\tfor\tO\nimagefs.copy\tB-Library_Function\timagefs.copy\tB-Code_Block\nand\tO\tand\tO\nimagefs.replace\tB-Library_Function\timagefs.replace\tB-Code_Block\n:\tO\t:\tO\nthey\tO\tthey\tO\nnow\tO\tnow\tO\nreturn\tO\treturn\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\n.\tO\t.\tO\n\t\nimagefs.read\tB-Library_Function\timagefs.read\tB-Code_Block\nnow\tO\tnow\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nbluebird.disposer\tB-Library_Function\tbluebird.disposer\tB-Code_Block\nof\tO\tof\tO\na\tO\ta\tO\nReadStream\tB-Library_Class\tReadStream\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\nof\tO\tof\tO\na\tO\ta\tO\nReadStream\tB-Library_Class\tReadStream\tB-Code_Block\nto\tO\tto\tO\navoid\tO\tavoid\tO\nproblems\tO\tproblems\tO\nlike\tO\tlike\tO\nreading\tO\treading\tO\na\tO\ta\tO\nstream\tO\tstream\tO\nof\tO\tof\tO\na\tO\ta\tO\nclosed\tO\tclosed\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nanother\tO\tanother\tO\noption\tO\toption\tO\nfor\tO\tfor\tO\nimagefs.write\tB-Library_Function\timagefs.write\tB-Code_Block\n:\tO\t:\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\ndrop\tO\tdrop\tO\nthe\tO\tthe\tO\ninputStream\tB-Library_Class\tinputStream\tB-Code_Block\nparameter\tO\tparameter\tO\nand\tO\tand\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nbluebird.disposer\tB-Library_Function\tbluebird.disposer\tB-Code_Block\nof\tO\tof\tO\na\tO\ta\tO\nWriteStream\tB-Library_Class\tWriteStream\tB-Code_Block\nso\tO\tso\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\npipe\tO\tpipe\tO\nany\tO\tany\tO\ninput\tO\tinput\tO\nby\tO\tby\tO\nhimself\tO\thimself\tO\nin\tO\tin\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhich\tO\twhich\tO\noption\tO\toption\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/23\tO\thttps://github.com/mapbox/tile-count/issues/23\tO\n\t\nFalse\tO\tFalse\tO\nalarm\tO\talarm\tO\n:\tO\t:\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\ngamma\tB-Library_Variable\tgamma\tO\nsetting\tO\tsetting\tO\nduring\tO\tduring\tO\nretiling\tO\tretiling\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\ncollapsed\tO\tcollapsed\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nbrightness\tO\tbrightness\tO\nlevels\tO\tlevels\tO\ntogether\tO\ttogether\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/33\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/33\tO\n\t\nThe\tO\tThe\tO\nGoogleARCore\tB-Application\tGoogleARCore\tO\nplugin\tI-Application\tplugin\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nx86\tB-Version\tx86\tO\nbuild\tO\tbuild\tO\nhooked\tO\thooked\tO\nup\tO\tup\tO\nalready\tO\talready\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nyou\tO\tyou\tO\nsaw\tO\tsaw\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nlikely\tO\tlikely\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nUnreal\tB-Application\tUnreal\tO\nEngine\tI-Application\tEngine\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\ntried\tO\ttried\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nthird\tO\tthird\tO\nperson\tO\tperson\tO\ntemplate\tO\ttemplate\tO\nwithout\tO\twithout\tO\nARCore\tB-Application\tARCore\tO\nplugin\tI-Application\tplugin\tO\nin\tO\tin\tO\nx86\tB-Version\tx86\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreport\tO\treport\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nto\tO\tto\tO\nEpic\tB-Organization\tEpic\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucieSteiner/AMT_feature1\tO\tLucieSteiner/AMT_feature1\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucieSteiner/AMT_feature1/issues/4\tO\thttps://github.com/LucieSteiner/AMT_feature1/issues/4\tO\n\t\nSame\tO\tSame\tO\ncomments\tO\tcomments\tO\nmade\tO\tmade\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlogin\tB-User_Interface_Element\tlogin\tO\nform\tI-User_Interface_Element\tform\tO\n:\tO\t:\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nvisual\tO\tvisual\tO\nlayout\tO\tlayout\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nask\tO\task\tO\nonly\tO\tonly\tO\nonce\tO\tonce\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\npassword\tO\tpassword\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nmakes\tO\tmakes\tO\na\tO\ta\tO\ntypo\tO\ttypo\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngetconversio/mongoose\tO\tgetconversio/mongoose\tO\n-paginate\tO\t-paginate\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/getconversio/mongoose-paginate\tO\thttps://github.com/getconversio/mongoose-paginate\tO\n\t\nmongoose-paginate\tO\tmongoose-paginate\tO\n\t\nPagination\tO\tPagination\tO\nplugin\tO\tplugin\tO\nfor\tO\tfor\tO\nMongoose\tB-Application\tMongoose\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThis\tO\tThis\tO\nplugin\tO\tplugin\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nNode.js\tB-Library\tNode.js\tO\n>=\tO\t>=\tO\n4.2\tB-Version\t4.2\tO\nand\tO\tand\tO\nMongoose\tB-Application\tMongoose\tO\n>=\tO\t>=\tO\n4.2\tB-Version\t4.2\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_37744\tI-Code_Block\tGR_37744\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsage\tO\tUsage\tO\n\t\nAdd\tO\tAdd\tO\nplugin\tO\tplugin\tO\nto\tO\tto\tO\na\tO\ta\tO\nschema\tO\tschema\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nmodel\tB-Library_Class\tmodel\tO\npaginate\tB-Library_Function\tpaginate\tB-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_37745\tI-Code_Block\tGR_37745\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nModel.paginate\tB-Library_Class\tModel.paginate\tO\n(\tO\t(\tO\n[query]\tB-Library_Variable\t[query]\tO\n,\tO\t,\tO\n[\tO\t[\tO\noptions\tB-Library_Variable\toptions\tO\n]\tO\t]\tO\n,\tO\t,\tO\n[\tO\t[\tO\ncallback]\tB-Library_Variable\tcallback]\tO\n)\tO\t)\tO\n\t\nParameters\tO\tParameters\tO\n\t\n[\tO\t[\tB-Code_Block\nquery\tB-Library_Variable\tquery\tI-Code_Block\n]\tO\t]\tI-Code_Block\n{\tO\t{\tO\nObject\tB-Data_Structure\tObject\tO\n}\tO\t}\tO\n-\tO\t-\tO\nQuery\tO\tQuery\tO\ncriteria\tO\tcriteria\tO\n.\tO\t.\tO\n\t\nDocumentation\tO\tDocumentation\tO\n\t\n[\tO\t[\tB-Code_Block\noptions\tB-Library_Variable\toptions\tI-Code_Block\n]\tO\t]\tI-Code_Block\n{\tO\t{\tO\nObject\tB-Data_Structure\tObject\tO\n}\tO\t}\tO\n\t\n[\tO\t[\tB-Code_Block\nselect\tB-Library_Variable\tselect\tI-Code_Block\n]\tO\t]\tI-Code_Block\n{\tO\t{\tO\nObject\tB-Data_Structure\tObject\tO\n|\tO\t|\tO\nString}\tB-Data_Type\tString}\tO\n-\tO\t-\tO\nFields\tO\tFields\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\n(\tO\t(\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nreturns\tO\treturns\tO\nall\tO\tall\tO\nfields\tO\tfields\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nDocumentation\tO\tDocumentation\tO\n\t\n[\tO\t[\tB-Code_Block\nsort\tB-Library_Variable\tsort\tI-Code_Block\n]\tO\t]\tI-Code_Block\n{\tO\t{\tO\nObject\tB-Data_Structure\tObject\tO\n|\tO\t|\tO\nString}\tB-Data_Type\tString}\tO\n-\tO\t-\tO\nSort\tO\tSort\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nDocumentation\tO\tDocumentation\tO\n\t\n[\tO\t[\tB-Code_Block\npopulate\tB-Library_Variable\tpopulate\tI-Code_Block\n]\tO\t]\tI-Code_Block\n{\tO\t{\tO\nArray\tB-Data_Structure\tArray\tO\n|\tO\t|\tO\nObject\tB-Data_Structure\tObject\tO\n|\tO\t|\tO\nString}\tB-Data_Type\tString}\tO\n-\tO\t-\tO\nPaths\tO\tPaths\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\npopulated\tO\tpopulated\tO\nwith\tO\twith\tO\nother\tO\tother\tO\ndocuments\tO\tdocuments\tO\n.\tO\t.\tO\n\t\nDocumentation\tO\tDocumentation\tO\n\t\n[\tO\t[\tB-Code_Block\nlean=false\tB-Library_Variable\tlean=false\tI-Code_Block\n]\tO\t]\tI-Code_Block\n{\tO\t{\tO\nBoolean\tB-Data_Type\tBoolean\tO\n}\tO\t}\tO\n-\tO\t-\tO\nShould\tO\tShould\tO\nreturn\tO\treturn\tO\nplain\tO\tplain\tO\njavascript\tB-Language\tjavascript\tO\nobjects\tB-Data_Structure\tobjects\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nMongoose\tB-Application\tMongoose\tO\ndocuments\tO\tdocuments\tO\n?\tO\t?\tO\n\t\nDocumentation\tO\tDocumentation\tO\n\t\n[\tB-Library_Variable\t[\tB-Code_Block\nleanWithId=true\tI-Library_Variable\tleanWithId=true\tI-Code_Block\n]\tI-Library_Variable\t]\tI-Code_Block\n{\tO\t{\tO\nBoolean\tB-Data_Type\tBoolean\tO\n}\tO\t}\tO\n-\tO\t-\tO\nIf\tO\tIf\tO\nlean\tB-Library_Variable\tlean\tB-Code_Block\nand\tO\tand\tO\nleanWithId\tB-Library_Variable\tleanWithId\tB-Code_Block\nare\tO\tare\tO\ntrue\tO\ttrue\tB-Code_Block\n,\tO\t,\tO\nadds\tO\tadds\tO\nid\tB-Variable_Name\tid\tB-Code_Block\nfield\tO\tfield\tO\nwith\tO\twith\tO\nstring\tB-Data_Type\tstring\tO\nrepresentation\tO\trepresentation\tO\nof\tO\tof\tO\n_id\tO\t_id\tB-Code_Block\nto\tO\tto\tO\nevery\tO\tevery\tO\ndocument\tO\tdocument\tO\n\t\n[\tO\t[\tB-Code_Block\noffset=0\tB-Library_Variable\toffset=0\tI-Code_Block\n]\tO\t]\tI-Code_Block\n{\tO\t{\tO\nNumber\tB-Data_Type\tNumber\tO\n}\tO\t}\tO\n-\tO\t-\tO\nUse\tO\tUse\tO\noffset\tB-Library_Variable\toffset\tB-Code_Block\nor\tO\tor\tO\npage\tB-Library_Variable\tpage\tB-Code_Block\nto\tO\tto\tO\nset\tO\tset\tO\nskip\tO\tskip\tO\nposition\tO\tposition\tO\n\t\n[\tO\t[\tB-Code_Block\npage=1\tB-Library_Variable\tpage=1\tI-Code_Block\n]\tO\t]\tI-Code_Block\n{\tO\t{\tO\nNumber\tB-Data_Type\tNumber\tO\n}\tO\t}\tO\n\t\n[\tO\t[\tB-Code_Block\nlimit=10\tB-Library_Variable\tlimit=10\tI-Code_Block\n]\tO\t]\tI-Code_Block\n{\tO\t{\tO\nNumber\tB-Data_Type\tNumber\tO\n}\tO\t}\tO\n\t\n[\tO\t[\tB-Code_Block\ncallback(err,\tB-Library_Function\tcallback(err,\tI-Code_Block\nresult)\tB-Variable_Name\tresult)\tI-Code_Block\n]\tO\t]\tI-Code_Block\n-\tO\t-\tO\nIf\tO\tIf\tO\nspecified\tO\tspecified\tO\nthe\tO\tthe\tO\ncallback\tB-Library_Function\tcallback\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nonce\tO\tonce\tO\npagination\tO\tpagination\tO\nresults\tO\tresults\tO\nare\tO\tare\tO\nretrieved\tO\tretrieved\tO\nor\tO\tor\tO\nwhen\tO\twhen\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nhas\tO\thas\tO\noccurred\tO\toccurred\tO\n\t\nReturn\tO\tReturn\tO\nvalue\tO\tvalue\tO\n\t\nPromise\tO\tPromise\tO\nfulfilled\tO\tfulfilled\tO\nwith\tO\twith\tO\nobject\tO\tobject\tO\nhaving\tO\thaving\tO\nproperties\tO\tproperties\tO\n:\tO\t:\tO\n\t\ndocs\tB-Library_Variable\tdocs\tB-Code_Block\n{\tO\t{\tO\nArray\tB-Data_Structure\tArray\tO\n}\tO\t}\tO\n-\tO\t-\tO\nArray\tB-Data_Structure\tArray\tO\nof\tO\tof\tO\ndocuments\tO\tdocuments\tO\n\t\ntotal\tB-Library_Variable\ttotal\tB-Code_Block\n{\tO\t{\tO\nNumber\tB-Data_Type\tNumber\tO\n}\tO\t}\tO\n-\tO\t-\tO\nTotal\tO\tTotal\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ndocuments\tO\tdocuments\tO\nin\tO\tin\tO\ncollection\tO\tcollection\tO\nthat\tO\tthat\tO\nmatch\tO\tmatch\tO\na\tO\ta\tO\nquery\tO\tquery\tO\n\t\nlimit\tB-Library_Variable\tlimit\tB-Code_Block\n{\tO\t{\tO\nNumber\tB-Data_Type\tNumber\tO\n}\tO\t}\tO\n-\tO\t-\tO\nLimit\tO\tLimit\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nused\tO\tused\tO\n\t\n[\tO\t[\tB-Code_Block\npage\tB-Library_Variable\tpage\tI-Code_Block\n]\tO\t]\tI-Code_Block\n{\tO\t{\tO\nNumber\tB-Data_Type\tNumber\tO\n}\tO\t}\tO\n-\tO\t-\tO\nOnly\tO\tOnly\tO\nif\tO\tif\tO\nspecified\tO\tspecified\tO\nor\tO\tor\tO\ndefault\tO\tdefault\tO\npage/offset\tB-Library_Variable\tpage/offset\tB-Code_Block\nvalues\tO\tvalues\tO\nwere\tO\twere\tO\nused\tO\tused\tO\n\t\n[\tO\t[\tB-Code_Block\npages\tB-Library_Variable\tpages\tI-Code_Block\n]\tO\t]\tI-Code_Block\n{\tO\t{\tO\nNumber\tB-Data_Type\tNumber\tO\n}\tO\t}\tO\n-\tO\t-\tO\nOnly\tO\tOnly\tO\nif\tO\tif\tO\npage\tB-Library_Variable\tpage\tB-Code_Block\nspecified\tO\tspecified\tO\nor\tO\tor\tO\ndefault\tO\tdefault\tO\npage/offset\tB-Library_Variable\tpage/offset\tB-Code_Block\nvalues\tO\tvalues\tO\nwere\tO\twere\tO\nused\tO\tused\tO\n\t\n[\tO\t[\tB-Code_Block\noffset\tB-Library_Variable\toffset\tI-Code_Block\n]\tO\t]\tI-Code_Block\n{\tO\t{\tO\nNumber\tB-Data_Type\tNumber\tO\n}\tO\t}\tO\n-\tO\t-\tO\nOnly\tO\tOnly\tO\nif\tO\tif\tO\nspecified\tO\tspecified\tO\nor\tO\tor\tO\ndefault\tO\tdefault\tO\npage/offset\tB-Library_Variable\tpage/offset\tB-Code_Block\nvalues\tO\tvalues\tO\nwere\tO\twere\tO\nused\tO\tused\tO\n\t\nExamples\tO\tExamples\tO\n\t\nSkip\tO\tSkip\tO\n20\tO\t20\tO\ndocuments\tO\tdocuments\tO\nand\tO\tand\tO\nreturn\tO\treturn\tO\n10\tO\t10\tO\ndocuments\tO\tdocuments\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_37746\tI-Code_Block\tGR_37746\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwith\tO\twith\tO\noffset\tB-Library_Variable\toffset\tB-Code_Block\nand\tO\tand\tO\nlimit\tB-Library_Variable\tlimit\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_37747\tI-Code_Block\tGR_37747\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWith\tO\tWith\tO\npromise\tO\tpromise\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_37748\tI-Code_Block\tGR_37748\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMore\tO\tMore\tO\nadvanced\tO\tadvanced\tO\nexample\tO\texample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_37749\tI-Code_Block\tGR_37749\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nZero\tO\tZero\tO\nlimit\tO\tlimit\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nlimit\tB-Library_Variable\tlimit\tB-Code_Block\n=\tO\t=\tI-Code_Block\n0\tO\t0\tI-Code_Block\nto\tO\tto\tO\nget\tO\tget\tO\nonly\tO\tonly\tO\nmetadata\tO\tmetadata\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_37750\tI-Code_Block\tGR_37750\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSet\tO\tSet\tO\ncustom\tO\tcustom\tO\ndefault\tO\tdefault\tO\noptions\tO\toptions\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nqueries\tO\tqueries\tO\n\t\nconfig.js\tB-File_Name\tconfig.js\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_37751\tI-Code_Block\tGR_37751\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ncontroller.js\tB-File_Name\tcontroller.js\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_37752\tI-Code_Block\tGR_37752\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTests\tO\tTests\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_37753\tI-Code_Block\tGR_37753\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLicense\tO\tLicense\tO\n\t\nMIT\tB-Licence\tMIT\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/19\tO\thttps://github.com/koding/kd-atom/issues/19\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\na\tO\ta\tO\nPOC\tO\tPOC\tO\nto\tO\tto\tO\nlist\tO\tlist\tO\nmachines\tB-Device\tmachines\tO\nwith\tO\twith\tO\nsettings\tO\tsettings\tO\n.\tO\t.\tO\n\t\nImprovements\tO\tImprovements\tO\ncan\tO\tcan\tO\nand\tO\tand\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nmade\tO\tmade\tO\nbefore\tO\tbefore\tO\nmerging\tO\tmerging\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nor\tO\tor\tO\npossibly\tO\tpossibly\tO\npublishing\tO\tpublishing\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nm1k3/csv_base\tO\tm1k3/csv_base\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/m1k3/csv_base/issues/1\tO\thttps://github.com/m1k3/csv_base/issues/1\tO\n\t\nUTF-8\tB-Algorithm\tUTF-8\tO\ne\tO\te\tO\nUTF-16\tB-Algorithm\tUTF-16\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/17\tO\thttps://github.com/mapbox/tile-count/issues/17\tO\n\t\nChanging\tO\tChanging\tO\ncdf()\tB-Library_Function\tcdf()\tB-Code_Block\nnot\tO\tnot\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nduplicate\tO\tduplicate\tO\nvalues\tO\tvalues\tO\njust\tO\tjust\tO\npushes\tO\tpushes\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nfurther\tO\tfurther\tO\nout\tO\tout\tO\n,\tO\t,\tO\nleading\tO\tleading\tO\nto\tO\tto\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nheavy-handed\tO\theavy-handed\tO\nSIGKILL\tB-Code_Block\tSIGKILL\tB-Code_Block\nout\tB-Error_Name\tout\tO\nof\tI-Error_Name\tof\tO\nmemory\tI-Error_Name\tmemory\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/36\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/36\tO\n\t\nRef\tO\tRef\tO\n:\tO\t:\tO\nhttps://github.com/moxie-leean/ng-patternlab/blob/efc77d218a148971a35aac4bfb91d2ce13acd287/lib/organisms/gravity-form/gravity-form.controller.js#L29\tO\thttps://github.com/moxie-leean/ng-patternlab/blob/efc77d218a148971a35aac4bfb91d2ce13acd287/lib/organisms/gravity-form/gravity-form.controller.js#L29\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander/issues/1\tO\thttps://github.com/SivanMehta/wander/issues/1\tO\n\t\nThis\tO\tThis\tO\nPR\tO\tPR\tO\nmakes\tO\tmakes\tO\nbreaking\tO\tbreaking\tO\nchanges\tO\tchanges\tO\nso\tO\tso\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncommands\tO\tcommands\tO\nbefore\tO\tbefore\tO\nlooking\tO\tlooking\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_31114\tI-Code_Block\tGR_31114\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nbuild\tO\tbuild\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nwebpack\tB-Application\twebpack\tB-Code_Block\nversion\tO\tversion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nwrite\tO\twrite\tO\nit\tO\tit\tO\nto\tO\tto\tO\npublic/dist\tB-Code_Block\tpublic/dist\tB-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nport\tO\tport\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nsystem\tO\tsystem\tO\nlog\tO\tlog\tO\nfor\tO\tfor\tO\nwhich\tO\twhich\tO\none\tO\tone\tO\nyou\tO\tyou\tO\nhappened\tO\thappened\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\n)\tO\t)\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nhttps://cmuwander.herokuapp.com/\tO\thttps://cmuwander.herokuapp.com/\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\na\tO\ta\tO\nlive\tO\tlive\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nclarenceb/tdd_go_logo\tO\tclarenceb/tdd_go_logo\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/clarenceb/tdd_go_logo\tO\thttps://github.com/clarenceb/tdd_go_logo\tO\n\t\nTDD\tO\tTDD\tO\nGo\tB-Language\tGo\tO\nLogo\tI-Language\tLogo\tO\n\t\nThis\tO\tThis\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nTDD\tO\tTDD\tO\nexercise\tO\texercise\tO\nin\tO\tin\tO\nusing\tO\tusing\tO\nGo\tB-Language\tGo\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nbare\tO\tbare\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nreal\tO\treal\tO\ncode\tO\tcode\tO\n!\tO\t!\tO\n\t\nIdea\tO\tIdea\tO\n:\tO\t:\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nbasic\tO\tbasic\tO\nLogo\tB-Language\tLogo\tO\ninterpreter\tO\tinterpreter\tO\nin\tO\tin\tO\nGo\tB-Language\tGo\tO\nlang\tO\tlang\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nsubset\tO\tsubset\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlanguage\tO\tlanguage\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9138\tI-Code_Block\tGR_9138\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSee\tO\tSee\tO\nACSLogo\tB-Application\tACSLogo\tO\nFor\tO\tFor\tO\nMac\tB-Operating_System\tMac\tO\nOS\tI-Operating_System\tOS\tO\nX\tI-Operating_System\tX\tO\nas\tO\tas\tO\na\tO\ta\tO\nreal\tO\treal\tO\nLogo\tB-Language\tLogo\tO\nimplementation\tO\timplementation\tO\nand\tO\tand\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nyour\tO\tyour\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nACSLogo\tB-Application\tACSLogo\tO\n's\tO\t's\tO\nhelp\tO\thelp\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nis\tO\tis\tO\na\tO\ta\tO\nhandy\tO\thandy\tO\nreference\tO\treference\tO\nfor\tO\tfor\tO\nLogo\tB-Language\tLogo\tO\ncommands\tO\tcommands\tO\nand\tO\tand\tO\nusage\tO\tusage\tO\n.\tO\t.\tO\n\t\nSample\tO\tSample\tO\nusage\tO\tusage\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9139\tI-Code_Block\tGR_9139\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\noutput\tO\toutput\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nto\tO\tto\tO\na\tO\ta\tO\nPNG\tB-File_Type\tPNG\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nkeep\tO\tkeep\tO\nthings\tO\tthings\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\ninteractive\tO\tinteractive\tO\nand\tO\tand\tO\njust\tO\tjust\tO\noutputs\tO\toutputs\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndraw2d\tB-Library\tdraw2d\tO\npackage\tO\tpackage\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nas\tO\tas\tO\nan\tO\tan\tO\nlibrary\tO\tlibrary\tO\nto\tO\tto\tO\ndraw\tO\tdraw\tO\nto\tO\tto\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nSamples\tO\tSamples\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\ncode\tO\tcode\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ndraw2d\tB-Library\tdraw2d\tB-Code_Block\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nSetup\tO\tSetup\tO\n:\tO\t:\tO\n\t\nInstall\tO\tInstall\tO\nGo\tB-Language\tGo\tO\nlang\tO\tlang\tO\nand\tO\tand\tO\nset\tO\tset\tO\nyour\tO\tyour\tO\nGOPATH\tB-Library_Variable\tGOPATH\tO\nenvironment\tO\tenvironment\tO\nvariable\tO\tvariable\tO\n\t\nInstall\tO\tInstall\tO\nthe\tO\tthe\tO\npre-requisite\tO\tpre-requisite\tO\nlibrary\tO\tlibrary\tO\nfreetype-go\tB-Library\tfreetype-go\tB-Code_Block\n:\tO\t:\tO\n\t\ngo\tB-Code_Block\tgo\tO\nget\tI-Code_Block\tget\tO\ncode.google.com/p/freetype-go/freetype\tI-Code_Block\tcode.google.com/p/freetype-go/freetype\tO\n\t\nInstall\tO\tInstall\tO\nthe\tO\tthe\tO\ndraw2d\tB-Library\tdraw2d\tB-Code_Block\npackage\tO\tpackage\tO\n:\tO\t:\tO\n\t\ngo\tB-Code_Block\tgo\tO\nget\tI-Code_Block\tget\tO\ncode.google.com/p/draw2d/draw2d\tI-Code_Block\tcode.google.com/p/draw2d/draw2d\tO\n\t\nRun\tO\tRun\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nstarting\tO\tstarting\tO\napp\tO\tapp\tO\n:\tO\t:\tO\n\t\ngo\tB-Code_Block\tgo\tO\nbuild\tI-Code_Block\tbuild\tO\n\t\n./tdd_go_logo\tB-File_Name\t./tdd_go_logo\tO\ndraw_square.txt\tI-File_Name\tdraw_square.txt\tO\n\t\nCheck\tO\tCheck\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nimage\tB-User_Interface_Element\timage\tO\n:\tO\t:\tO\n\t\nopen\tO\topen\tO\nLogo-output.png\tB-File_Name\tLogo-output.png\tO\n\t\nStart\tO\tStart\tO\nTDDing\tO\tTDDing\tO\nyour\tO\tyour\tO\ntests\tO\ttests\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nreal\tO\treal\tO\nimplementation\tO\timplementation\tO\n!\tO\t!\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nbuilt-in\tO\tbuilt-in\tO\ntesting\tB-Library\ttesting\tB-Code_Block\npackage\tO\tpackage\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\ngoconvey\tB-Application\tgoconvey\tO\n.\tO\t.\tO\n\t\nExtensions\tO\tExtensions\tO\n:\tO\t:\tO\n\t\nDisplay\tO\tDisplay\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\na\tO\ta\tO\nwindow\tB-User_Interface_Element\twindow\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n\t\nInteractive\tO\tInteractive\tO\nuse\tO\tuse\tO\n\t\nSupport\tO\tSupport\tO\nmore\tO\tmore\tO\nLogo\tB-Language\tLogo\tO\ncommands\tO\tcommands\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncjcliffe/CubicSDR\tO\tcjcliffe/CubicSDR\tO\n-flatpak\tO\t-flatpak\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/cjcliffe/CubicSDR-flatpak/issues/3\tO\thttps://github.com/cjcliffe/CubicSDR-flatpak/issues/3\tO\n\t\nNewer\tO\tNewer\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nlibhackrf\tB-Library\tlibhackrf\tO\nrequire\tO\trequire\tO\nfftw3\tB-Library\tfftw3\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npatch\tO\tpatch\tO\nadds\tO\tadds\tO\nthat\tO\tthat\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/103\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/103\tO\n\t\n\t\nWhat\tO\tWhat\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nchange\tO\tchange\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\nintroduce\tO\tintroduce\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nBug\tO\tBug\tO\nfix\tO\tfix\tO\n,\tO\t,\tO\nfeature\tO\tfeature\tO\n,\tO\t,\tO\ndocs\tO\tdocs\tO\nupdate\tO\tupdate\tO\n,\tO\t,\tO\n..\tO\t..\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nadd\tO\tadd\tO\nalt\tB-HTML_XML_Tag\talt\tO\ntag\tO\ttag\tO\nin\tO\tin\tO\nimages\tB-User_Interface_Element\timages\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nbehavior\tO\tbehavior\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nan\tO\tan\tO\nopen\tO\topen\tO\nissue\tO\tissue\tO\nhere\tO\there\tO\n)\tO\t)\tO\nThe\tO\tThe\tO\nimages\tB-User_Interface_Element\timages\tO\ndont\tO\tdont\tO\nhave\tO\thave\tO\nalt\tB-HTML_XML_Tag\talt\tO\ntag\tO\ttag\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nbehavior\tO\tbehavior\tO\n(\tO\t(\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nfeature\tO\tfeature\tO\nchange\tO\tchange\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nAdd\tO\tAdd\tO\nthe\tO\tthe\tO\nalt\tB-HTML_XML_Tag\talt\tO\ntag\tO\ttag\tO\nin\tO\tin\tO\nimages\tB-User_Interface_Element\timages\tO\nfor\tO\tfor\tO\npass\tO\tpass\tO\nw3c\tB-Organization\tw3c\tO\nvalidation\tO\tvalidation\tO\n\t\nDoes\tO\tDoes\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\nintroduce\tO\tintroduce\tO\na\tO\ta\tO\nbreaking\tO\tbreaking\tO\nchange\tO\tchange\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nWhat\tO\tWhat\tO\nchanges\tO\tchanges\tO\nmight\tO\tmight\tO\nusers\tO\tusers\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\napplication\tO\tapplication\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nOther\tO\tOther\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nHackClub-SLHS/HackClub\tO\tHackClub-SLHS/HackClub\tO\n-Website\tO\t-Website\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/HackClub-SLHS/HackClub-Website/issues/7\tO\thttps://github.com/HackClub-SLHS/HackClub-Website/issues/7\tO\n\t\nforgot\tO\tforgot\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmjacobus/carrasco\tO\tmjacobus/carrasco\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mjacobus/carrasco/issues/7\tO\thttps://github.com/mjacobus/carrasco/issues/7\tO\n\t\ntypo\tO\ttypo\tO\nin\tO\tin\tO\nprofile\tO\tprofile\tO\nname\tO\tname\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP/issues/6\tO\thttps://github.com/McMenemy/GoDoRP/issues/6\tO\n\t\nduring\tO\tduring\tO\nstartup\tO\tstartup\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nis\tO\tis\tO\ndisplayed\tO\tdisplayed\tO\n,\tO\t,\tO\nhave\tO\thave\tO\nyou\tO\tyou\tO\nseen\tO\tseen\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\ndb_1\tB-Code_Block\tdb_1\tB-Code_Block\n|\tI-Code_Block\t|\tI-Code_Block\nFATAL\tI-Code_Block\tFATAL\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ndata\tI-Code_Block\tdata\tI-Code_Block\ndirectory\tI-Code_Block\tdirectory\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n/pgdata\tI-Code_Block\t/pgdata\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nhas\tI-Code_Block\thas\tI-Code_Block\nwrong\tI-Code_Block\twrong\tI-Code_Block\nownership\tI-Code_Block\townership\tI-Code_Block\n\t\ndb_1\tB-Code_Block\tdb_1\tB-Code_Block\n|\tI-Code_Block\t|\tI-Code_Block\nHINT\tI-Code_Block\tHINT\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nThe\tI-Code_Block\tThe\tI-Code_Block\nserver\tI-Code_Block\tserver\tI-Code_Block\nmust\tI-Code_Block\tmust\tI-Code_Block\nbe\tI-Code_Block\tbe\tI-Code_Block\nstarted\tI-Code_Block\tstarted\tI-Code_Block\nby\tI-Code_Block\tby\tI-Code_Block\nthe\tI-Code_Block\tthe\tI-Code_Block\nuser\tI-Code_Block\tuser\tI-Code_Block\nthat\tI-Code_Block\tthat\tI-Code_Block\nowns\tI-Code_Block\towns\tI-Code_Block\nthe\tI-Code_Block\tthe\tI-Code_Block\ndata\tI-Code_Block\tdata\tI-Code_Block\ndirectory\tI-Code_Block\tdirectory\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n\t\ngodorp_db_1\tB-Code_Block\tgodorp_db_1\tB-Code_Block\nexited\tI-Code_Block\texited\tI-Code_Block\nwith\tI-Code_Block\twith\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP/issues/4\tO\thttps://github.com/McMenemy/GoDoRP/issues/4\tO\n\t\nbuild\tO\tbuild\tO\nsuccess\tO\tsuccess\tO\nin\tO\tin\tO\ndocker\tB-Application\tdocker\tO\nenvironment\tO\tenvironment\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nbuild\tO\tbuild\tO\nfailed\tO\tfailed\tO\noutside\tO\toutside\tO\ndocker\tB-Application\tdocker\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\nbuild\tO\tbuild\tO\napi\tB-Library\tapi\tO\noutside\tO\toutside\tO\ndocker\tB-Application\tdocker\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_42234\tI-Code_Block\tGR_42234\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_42235\tI-Code_Block\tGR_42235\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ngolang\tB-Language\tgolang\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\n1.9.2\tB-Version\t1.9.2\tO\n;\tO\t;\tO\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nrelated\tO\trelated\tO\nwith\tO\twith\tO\nvendor\tO\tvendor\tO\nfearture\tO\tfearture\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\n.\tO\t.\tO\n\t\ncan\tO\tcan\tO\nyou\tO\tyou\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/11\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/11\tO\n\t\n\t\nAdded\tO\tAdded\tO\nRuby\tB-Language\tRuby\tO\n2.1.0\tB-Version\t2.1.0\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n.travis.yml\tB-File_Name\t.travis.yml\tO\n\t\nUpdated\tO\tUpdated\tO\nthe\tO\tthe\tO\nRubinius\tO\tRubinius\tO\nlabel\tO\tlabel\tO\nand\tO\tand\tO\nincluded\tO\tincluded\tO\nrequired\tO\trequired\tO\nRubinius\tO\tRubinius\tO\ngems\tO\tgems\tO\n\t\nAdded\tO\tAdded\tO\na\tO\ta\tO\ngemfile\tB-File_Type\tgemfile\tO\nfor\tO\tfor\tO\nActiveRecord\tB-Library\tActiveRecord\tO\n4.1.0.beta1\tB-Version\t4.1.0.beta1\tO\n\t\nMinor\tO\tMinor\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nspecs\tO\tspecs\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nacross\tO\tacross\tO\ndifferent\tO\tdifferent\tO\nRuby/ActiveRecord\tB-Language\tRuby/ActiveRecord\tO\ncombinations\tO\tcombinations\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP/issues/2\tO\thttps://github.com/McMenemy/GoDoRP/issues/2\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nan\tO\tan\tO\nextremely\tO\textremely\tO\nhandy\tO\thandy\tO\nstarter\tO\tstarter\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nfiling\tO\tfiling\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nan\tO\tan\tO\nenhancement\tO\tenhancement\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nintegrate\tO\tintegrate\tO\ncreate-react-app\tB-Application\tcreate-react-app\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfront-end\tO\tfront-end\tO\nand\tO\tand\tO\ngoose\tB-Application\tgoose\tO\n(\tO\t(\tO\nor\tO\tor\tO\nsome\tO\tsome\tO\nsuch\tO\tsuch\tO\n)\tO\t)\tO\ndatabase\tO\tdatabase\tO\nmigration\tO\tmigration\tO\ntool\tO\ttool\tO\n,\tO\t,\tO\non\tO\ton\tO\nthe\tO\tthe\tO\napi\tB-Library\tapi\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nCreating\tO\tCreating\tO\ntables\tB-Data_Structure\ttables\tO\nand\tO\tand\tO\ndatabases\tO\tdatabases\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nin\tO\tin\tO\na\tO\ta\tO\nreliable\tO\treliable\tO\n,\tO\t,\tO\nverifiable\tO\tverifiable\tO\nway\tO\tway\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\ntwo\tO\ttwo\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\na\tO\ta\tO\nAPI\tB-Library\tAPI\tO\nservice\tO\tservice\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nsql\tB-Language\tsql\tO\ncommands\tO\tcommands\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/24\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/24\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\npackaged\tO\tpackaged\tO\napp\tO\tapp\tO\nin\tO\tin\tO\nunreal\tB-Application\tunreal\tO\nengine.but\tI-Application\tengine.but\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nMoto\tB-Device\tMoto\tO\nG5S\tB-Version\tG5S\tO\nPlus\tI-Version\tPlus\tO\n.\tO\t.\tO\n\t\nRecently\tO\tRecently\tO\nit\tO\tit\tO\nis\tO\tis\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nsupported\tO\tsupported\tO\ndevices\tO\tdevices\tO\nrecently\tO\trecently\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nperfectly\tO\tperfectly\tO\nin\tO\tin\tO\nPixel\tB-Device\tPixel\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/381\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/381\tO\n\t\nhello\tO\thello\tO\nguys\tO\tguys\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\nfor\tO\tfor\tO\nresolve\tO\tresolve\tO\nmy\tO\tmy\tO\nsolution\tO\tsolution\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nadd\tO\tadd\tO\ncordova-plugin-background-mode\tB-Application\tcordova-plugin-background-mode\tO\n(\tO\t(\tO\nionic\tB-Code_Block\tionic\tO\ncordova\tI-Code_Block\tcordova\tO\nadd\tI-Code_Block\tadd\tO\ncordova-plugin-background-mode\tI-Code_Block\tcordova-plugin-background-mode\tO\n)\tO\t)\tO\n(\tO\t(\tO\nnpm\tB-Code_Block\tnpm\tO\ninstall\tI-Code_Block\tinstall\tO\n--save\tI-Code_Block\t--save\tO\n@ionic\tI-Code_Block\t@ionic\tO\n-native/background\tI-Code_Block\t-native/background\tO\n-mode\tI-Code_Block\t-mode\tO\n)\tO\t)\tO\nand\tO\tand\tO\ni\tO\ti\tO\nrun\tO\trun\tO\nios\tB-Operating_System\tios\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nstop\tO\tstop\tO\nrunning\tO\trunning\tO\nand\tO\tand\tO\nhe\tO\the\tO\ntake\tO\ttake\tO\nme\tO\tme\tO\nerror\tO\terror\tO\nint\tB-Code_Block\tint\tO\nretval\tI-Code_Block\tretval\tO\n=\tI-Code_Block\t=\tO\nuiapplicationMain(argc,argv,nil,@\"AppDelegate\")\tI-Code_Block\tuiapplicationMain(argc,argv,nil,@\"AppDelegate\")\tO\n;\tI-Code_Block\t;\tO\nThread\tI-Code_Block\tThread\tO\n1\tI-Code_Block\t1\tO\n:\tI-Code_Block\t:\tO\nsignal\tI-Code_Block\tsignal\tO\nSIGABRT\tI-Code_Block\tSIGABRT\tO\n\t\nand\tO\tand\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nremove\tO\tremove\tO\nionic\tB-Code_Block\tionic\tO\ncordova\tI-Code_Block\tcordova\tO\nadd\tI-Code_Block\tadd\tO\ncordova-plugin-background-mode\tI-Code_Block\tcordova-plugin-background-mode\tO\n(\tO\t(\tO\nionic\tB-Code_Block\tionic\tO\ncordova\tI-Code_Block\tcordova\tO\nrm\tI-Code_Block\trm\tO\ncordova-plugin-background-mode\tI-Code_Block\tcordova-plugin-background-mode\tO\n)\tO\t)\tO\n\t\nmy\tO\tmy\tO\napp\tO\tapp\tO\nrun\tO\trun\tO\nnormal\tO\tnormal\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nrun\tO\trun\tO\napp\tO\tapp\tO\nin\tO\tin\tO\nbackgroung\tO\tbackgroung\tO\nhe\tO\the\tO\ntake\tO\ttake\tO\nme\tO\tme\tO\nalert\tO\talert\tO\n(\tO\t(\tO\n\"\tO\t\"\tO\ncordova\tB-Error_Name\tcordova\tO\nnot\tI-Error_Name\tnot\tO\ninstall\tI-Error_Name\tinstall\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\n\t\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndhrrgn/codeigniter\tO\tdhrrgn/codeigniter\tO\n-uhoh\tO\t-uhoh\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/dhrrgn/codeigniter-uhoh\tO\thttps://github.com/dhrrgn/codeigniter-uhoh\tO\n\t\nCodeIgniter\tO\tCodeIgniter\tO\nUhOh\tO\tUhOh\tO\n!\tO\t!\tO\n\t\nVersion\tO\tVersion\tO\n:\tO\t:\tO\n1.5\tO\t1.5\tO\n\t\nUhOh\tO\tUhOh\tO\nis\tO\tis\tO\nan\tO\tan\tO\nextension\tO\textension\tO\non\tO\ton\tO\nCI_Extensions\tB-Library\tCI_Extensions\tO\nthat\tO\tthat\tO\nprovides\tO\tprovides\tO\nawesome\tO\tawesome\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\nwith\tO\twith\tO\nfull\tO\tfull\tO\nbacktraces\tO\tbacktraces\tO\nand\tO\tand\tO\na\tO\ta\tO\nview\tO\tview\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncatches\tO\tcatches\tO\nall\tO\tall\tO\nerrors\tO\terrors\tO\nincluding\tO\tincluding\tO\n:\tO\t:\tO\n\t\nE_PARSE\tB-Error_Name\tE_PARSE\tO\n\t\nE_ERROR\tB-Error_Name\tE_ERROR\tO\n\t\nE_USER_ERROR\tB-Error_Name\tE_USER_ERROR\tO\n\t\nE_COMPILE_ERROR\tB-Error_Name\tE_COMPILE_ERROR\tO\n\t\nE_ERROR\tB-Error_Name\tE_ERROR\tO\n\t\nE_USER_ERROR\tB-Error_Name\tE_USER_ERROR\tO\n\t\nE_PARSE\tB-Error_Name\tE_PARSE\tO\n\t\nE_WARNING\tB-Error_Name\tE_WARNING\tO\n\t\nE_USER_WARNING\tB-Error_Name\tE_USER_WARNING\tO\n\t\nE_STRICT\tB-Error_Name\tE_STRICT\tO\n\t\nE_NOTICE\tB-Error_Name\tE_NOTICE\tO\n\t\nE_RECOVERABLE_ERROR\tB-Error_Name\tE_RECOVERABLE_ERROR\tO\n\t\nIt\tO\tIt\tO\nalso\tO\talso\tO\noutputs\tO\toutputs\tO\nfull\tO\tfull\tO\nbacktraces\tO\tbacktraces\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nCodeIgniter\tB-Library\tCodeIgniter\tO\nsystem\tO\tsystem\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nNo\tO\tNo\tO\nmore\tO\tmore\tO\n\"\tO\t\"\tO\nWhere\tO\tWhere\tO\nis\tO\tis\tO\nit\tO\tit\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nload\tO\tload\tO\nthat\tO\tthat\tO\nview\tO\tview\tO\n?\tO\t?\tO\n\t\n\"\tO\t\"\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\ncalled\tO\tcalled\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsurrounding\tO\tsurrounding\tO\nlines\tO\tlines\tO\n.\tO\t.\tO\n\t\nCredit\tO\tCredit\tO\n\t\nAuthor\tO\tAuthor\tO\n(\tO\t(\tO\n\"\tO\t\"\tO\nporter\tB-User_Name\tporter\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nDan\tB-User_Name\tDan\tO\nHorrigan\tI-User_Name\tHorrigan\tO\n\"\tO\t\"\tO\n:http://dhorrigan.com\tO\t:http://dhorrigan.com\tO\n\t\nUhOh\tO\tUhOh\tO\n!\tO\t!\tO\n\t\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nKohana\tB-Library\tKohana\tO\nv3\tB-Version\tv3\tO\n's\tO\t's\tO\nerror\tO\terror\tO\nhandling\tO\thandling\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfile\tO\tfile\tO\ncontains\tO\tcontains\tO\nsome\tO\tsome\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nKohana\tB-Library\tKohana\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nKohana\tB-Licence\tKohana\tO\nLicense\tI-Licence\tLicense\tO\n\"\tO\t\"\tO\n:http://kohanaframework.org/license\tO\t:http://kohanaframework.org/license\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nCopy\tO\tCopy\tO\nthe\tO\tthe\tO\nhooks/uhoh.php\tB-File_Name\thooks/uhoh.php\tO\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nhooks\tO\thooks\tO\ndirectory\tO\tdirectory\tO\n\t\nCopy\tO\tCopy\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nconfig/hooks.php\tB-File_Name\tconfig/hooks.php\tO\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nhooks\tO\thooks\tO\nconfig\tO\tconfig\tO\n.\tO\t.\tO\n\t\nEnable\tO\tEnable\tO\nhooks\tO\thooks\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nconfig\tO\tconfig\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nCopy\tO\tCopy\tO\nthe\tO\tthe\tO\nlibraries/MY_Exceptions.php\tB-File_Name\tlibraries/MY_Exceptions.php\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\napplication/libraries\tB-File_Name\tapplication/libraries\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\n*\tO\t*\tO\n\t\nCopy\tO\tCopy\tO\nerrors/error_php_custom.php\tB-File_Name\terrors/error_php_custom.php\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\napplication/errors\tB-File_Name\tapplication/errors\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nCopy\tO\tCopy\tO\nerrors/error_general.php\tB-File_Name\terrors/error_general.php\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\napplication/errors\tB-File_Name\tapplication/errors\tO\nfolder\tI-File_Name\tfolder\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nCodeIgniter\tB-Library\tCodeIgniter\tO\n2.0\tB-Version\t2.0\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nMY_Exceptions.php\tB-File_Name\tMY_Exceptions.php\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\napplication/core\tB-File_Name\tapplication/core\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nlibraries\tO\tlibraries\tO\n.\tO\t.\tO\n\t\nThats\tO\tThats\tO\nit\tO\tit\tO\n...\tO\t...\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nintentionally\tO\tintentionally\tO\ncause\tO\tcause\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nProduction\tO\tProduction\tO\nMode\tO\tMode\tO\n\t\nYou\tO\tYou\tO\nprobably\tO\tprobably\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\ndetiailed\tO\tdetiailed\tO\nerrors\tO\terrors\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nproduction\tO\tproduction\tO\nserver\tO\tserver\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nMY_Exceptions.php\tB-File_Name\tMY_Exceptions.php\tO\non\tO\ton\tO\nline\tO\tline\tO\n6\tO\t6\tO\n,\tO\t,\tO\nsimply\tO\tsimply\tO\nchange\tO\tchange\tO\nIN_PRODUCTION\tB-Library_Variable\tIN_PRODUCTION\tO\nto\tO\tto\tO\nTRUE\tO\tTRUE\tO\nto\tO\tto\tO\ndisable\tO\tdisable\tO\nUhOh\tO\tUhOh\tO\n!\tO\t!\tO\n\t\nChangelog\tO\tChangelog\tO\n\t\nv1.5\tB-Version\tv1.5\tO\n\t\nAdded\tO\tAdded\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nto\tO\tto\tO\ndisable\tO\tdisable\tO\nUhOh\tO\tUhOh\tO\n!\tO\t!\tO\n\t\nin\tO\tin\tO\na\tO\ta\tO\nproduction\tO\tproduction\tO\nenvironment\tO\tenvironment\tO\n.\tO\t.\tO\n\t\nv1.4\tB-Version\tv1.4\tO\n\t\nFixed\tO\tFixed\tO\nissue\tO\tissue\tO\nthat\tO\tthat\tO\ncaused\tO\tcaused\tO\na\tO\ta\tO\nFatal\tO\tFatal\tO\nError\tO\tError\tO\nwhen\tO\twhen\tO\nshow_error()\tB-Function_Name\tshow_error()\tO\nwas\tO\twas\tO\ncalled\tO\tcalled\tO\nwith\tO\twith\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nv1.3\tB-Version\tv1.3\tO\n\t\nPatched\tO\tPatched\tO\nshow_error\tB-Function_Name\tshow_error\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nnow\tO\tnow\tO\ndetects\tO\tdetects\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nwas\tO\twas\tO\nthrown\tO\tthrown\tO\nby\tO\tby\tO\nan\tO\tan\tO\nextension\tO\textension\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\nMY_Loader\tB-Library\tMY_Loader\tO\n)\tO\t)\tO\n,\tO\t,\tO\nif\tO\tif\tO\nso\tO\tso\tO\ntreat\tO\ttreat\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nsystem\tO\tsystem\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nv1.2\tB-Version\tv1.2\tO\n\t\nThe\tO\tThe\tO\nshow_error\tB-Function_Name\tshow_error\tO\nnow\tO\tnow\tO\noutputs\tO\toutputs\tO\na\tO\ta\tO\nstack\tB-Data_Structure\tstack\tO\ntrace\tO\ttrace\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nshows\tO\tshows\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\ncaused\tO\tcaused\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\nloads\tO\tloads\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nv1.1\tB-Version\tv1.1\tO\n\t\nBetter\tO\tBetter\tO\nhandling\tO\thandling\tO\nfor\tO\tfor\tO\ngetting\tO\tgetting\tO\nabsolute\tO\tabsolute\tO\npaths\tO\tpaths\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nand\tO\tand\tO\napplication\tO\tapplication\tO\ndirectories\tO\tdirectories\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nlogs\tO\tlogs\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nCodeIgniter\tB-Library\tCodeIgniter\tO\nlog\tO\tlog\tO\nwhen\tO\twhen\tO\nenabled\tO\tenabled\tO\n.\tO\t.\tO\n\t\nAdded\tO\tAdded\tO\na\tO\ta\tO\nnicer\tO\tnicer\tO\nlooking\tO\tlooking\tO\nGeneral\tO\tGeneral\tO\nError\tO\tError\tO\ntemplate\tO\ttemplate\tO\n.\tO\t.\tO\n\t\nExtended\tO\tExtended\tO\nshow_error()\tB-Function_Name\tshow_error()\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nsend\tO\tsend\tO\nheaders\tO\theaders\tO\nif\tO\tif\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\nsent\tO\tsent\tO\n.\tO\t.\tO\n\t\nv1.0\tB-Version\tv1.0\tO\n\t\nInitial\tO\tInitial\tO\nRelease\tO\tRelease\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nskonves/Konves.Collections\tO\tskonves/Konves.Collections\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/skonves/Konves.Collections/issues/1\tO\thttps://github.com/skonves/Konves.Collections/issues/1\tO\n\t\nCreate\tO\tCreate\tO\ninterval\tB-Class_Name\tinterval\tO\ndictionary\tI-Class_Name\tdictionary\tO\nclass\tB-Data_Structure\tclass\tO\n.\tO\t.\tO\n\t\nRefactor\tO\tRefactor\tO\nand\tO\tand\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/9\tO\thttps://github.com/zeroepoch/plotbitrate/issues/9\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmapped\tO\tmapped\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\npink\tO\tpink\tO\n,\tO\t,\tO\nand\tO\tand\tO\njust\tO\tjust\tO\nleft\tO\tleft\tO\nit\tO\tit\tO\nshown\tO\tshown\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\nframe\tO\tframe\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nmaybe\tO\tmaybe\tO\na\tO\ta\tO\nmore\tO\tmore\tO\ngeneric\tO\tgeneric\tO\nmethod\tO\tmethod\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nimplemented\tO\timplemented\tO\n,\tO\t,\tO\nshowing\tO\tshowing\tO\nthese\tO\tthese\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\nUnknown\tO\tUnknown\tO\nframetype\tO\tframetype\tO\n\"\tO\t\"\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander/issues/8\tO\thttps://github.com/SivanMehta/wander/issues/8\tO\n\t\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSUSTC/sustech\tO\tSUSTC/sustech\tO\n-slides\tO\t-slides\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/SUSTC/sustech-slides\tO\thttps://github.com/SUSTC/sustech-slides\tO\n\t\nSUSTech\tO\tSUSTech\tO\nBeamer\tO\tBeamer\tO\nTemplate\tO\tTemplate\tO\n\t\nLaTeX\tB-Application\tLaTeX\tO\nBeamer\tI-Application\tBeamer\tO\npresentation\tO\tpresentation\tO\ntemplate\tO\ttemplate\tO\nderived\tO\tderived\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nMIT\tB-Organization\tMIT\tO\ntheme\tO\ttheme\tO\nby\tO\tby\tO\nJustin\tB-User_Name\tJustin\tO\nRiley\tI-User_Name\tRiley\tO\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\n\t\nFirst\tO\tFirst\tO\nclone\tO\tclone\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nusing\tO\tusing\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\nclone\tI-Code_Block\tclone\tI-Code_Block\nhttps://github.com/SUSTC/sustech-slides.git\tI-Code_Block\thttps://github.com/SUSTC/sustech-slides.git\tI-Code_Block\n\t\nEdit\tO\tEdit\tO\nslides.tex\tB-File_Name\tslides.tex\tB-Code_Block\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\n.\tO\t.\tO\n\t\nPut\tO\tPut\tO\nall\tO\tall\tO\nimages\tB-User_Interface_Element\timages\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfigures\tB-File_Name\tfigures\tB-Code_Block\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nembed\tO\tembed\tO\nvideos\tB-User_Interface_Element\tvideos\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nout/slides.tex\tB-File_Name\tout/slides.tex\tB-Code_Block\nfor\tO\tfor\tO\ndetails\tO\tdetails\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPreviewing\tO\tPreviewing\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nmake\tB-Code_Block\tmake\tB-Code_Block\nwith\tO\twith\tO\nxpdf\tB-Application\txpdf\tO\n,\tO\t,\tO\nokular\tB-Application\tokular\tO\n,\tO\t,\tO\nor\tO\tor\tO\nAcrobat\tB-Application\tAcrobat\tO\nReader\tI-Application\tReader\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_214519\tI-Code_Block\tGR_214519\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\n\"\tO\t\"\tO\nmake\tB-Code_Block\tmake\tO\nview-*\tI-Code_Block\tview-*\tO\n\"\tO\t\"\tO\ncommands\tO\tcommands\tO\nwill\tO\twill\tO\nautomatically\tO\tautomatically\tO\nbuild\tO\tbuild\tO\n$\tB-File_Name\t$\tO\nHOME/mit-beamer/out/slides.pdf\tI-File_Name\tHOME/mit-beamer/out/slides.pdf\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\n\t\nFor\tO\tFor\tO\nlive\tO\tlive\tO\nreloading\tO\treloading\tO\n,\tO\t,\tO\nrun\tO\trun\tO\npython\tB-Code_Block\tpython\tB-Code_Block\nbuild-daemon.py\tI-Code_Block\tbuild-daemon.py\tI-Code_Block\n.\tO\t.\tO\n\t\nDemo\tO\tDemo\tO\n\t\nSee\tO\tSee\tO\nout/slides.pdf\tB-File_Name\tout/slides.pdf\tB-Code_Block\nfor\tO\tfor\tO\ndemo\tO\tdemo\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmadison-kerndt/off\tO\tmadison-kerndt/off\tO\n-on-guard-synesthesia\tO\t-on-guard-synesthesia\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/madison-kerndt/off-on-guard-synesthesia\tO\thttps://github.com/madison-kerndt/off-on-guard-synesthesia\tO\n\t\nAvant\tO\tAvant\tO\nGarde\tO\tGarde\tO\nSynesthesia\tO\tSynesthesia\tO\n\t\nSetup\tO\tSetup\tO\nsetups\tO\tsetups\tO\n:\tO\t:\tO\n\t\nClone\tO\tClone\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\n.\tO\t.\tO\n\t\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n\t\nnpm\tB-Code_Block\tnpm\tB-Code_Block\nstart\tI-Code_Block\tstart\tI-Code_Block\nor\tO\tor\tO\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ntest\tI-Code_Block\ttest\tI-Code_Block\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/11\tO\thttps://github.com/contributte/logging/issues/11\tO\n\t\n\t\nCoverage\tO\tCoverage\tO\nremained\tO\tremained\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nat\tO\tat\tO\n44.444\tO\t44.444\tO\n%\tO\t%\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\n0ef348492cb99ffeb9294099b841c7b006fab110\tO\t0ef348492cb99ffeb9294099b841c7b006fab110\tO\non\tO\ton\tO\nRiKap:patch-2\tO\tRiKap:patch-2\tO\ninto\tO\tinto\tO\n67a02b3d1105c09e36f1041e7b90ea3ec3a36f50\tO\t67a02b3d1105c09e36f1041e7b90ea3ec3a36f50\tO\non\tO\ton\tO\ncontributte:master\tO\tcontributte:master\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/5\tO\thttps://github.com/contributte/logging/issues/5\tO\n\t\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nnette\tB-Library\tnette\tO\nuser\tO\tuser\tO\ncontext\tO\tcontext\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nphp\tB-Language\tphp\tO\ncontext\tO\tcontext\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP/issues/6\tO\thttps://github.com/McMenemy/GoDoRP/issues/6\tO\n\t\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nonly\tO\tonly\tO\nhappen\tO\thappen\tO\nin\tO\tin\tO\nwindows\tB-Operating_System\twindows\tO\ndocker\tB-Application\tdocker\tO\nenvironment\tO\tenvironment\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhappen\tO\thappen\tO\nin\tO\tin\tO\nmac\tB-Operating_System\tmac\tO\ndocker\tB-Application\tdocker\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucieSteiner/AMT_feature1\tO\tLucieSteiner/AMT_feature1\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucieSteiner/AMT_feature1/issues/1\tO\thttps://github.com/LucieSteiner/AMT_feature1/issues/1\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nGlassfish\tB-Application\tGlassfish\tO\nlog\tO\tlog\tO\nwhen\tO\twhen\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\n\"\tO\t\"\tO\ndocker-compose\tB-Code_Block\tdocker-compose\tO\nup\tI-Code_Block\tup\tO\n--build\tI-Code_Block\t--build\tO\n\"\tO\t\"\tO\n:\tO\t:\tO\n\t\nglassfish_1\tB-Output_Block\tglassfish_1\tB-Code_Block\n|\tI-Output_Block\t|\tI-Code_Block\nCaused\tI-Output_Block\tCaused\tI-Code_Block\nby\tI-Output_Block\tby\tI-Code_Block\n:\tI-Output_Block\t:\tI-Code_Block\njava.lang.ClassNotFoundException\tI-Output_Block\tjava.lang.ClassNotFoundException\tI-Code_Block\n:\tI-Output_Block\t:\tI-Code_Block\nch.heigvd.amt.mynewapp.web.RoutingFilter\tI-Output_Block\tch.heigvd.amt.mynewapp.web.RoutingFilter\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncjcliffe/CubicSDR\tO\tcjcliffe/CubicSDR\tO\n-flatpak\tO\t-flatpak\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/cjcliffe/CubicSDR-flatpak/issues/1\tO\thttps://github.com/cjcliffe/CubicSDR-flatpak/issues/1\tO\n\t\nref\tO\tref\tO\nhttps://github.com/jgaeddert/liquid-dsp/issues/47\tO\thttps://github.com/jgaeddert/liquid-dsp/issues/47\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/8\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/8\tO\n\t\nhttp://espn.go.com/ncf/playbyplay?gameId=400548257&period=0\tO\thttp://espn.go.com/ncf/playbyplay?gameId=400548257&period=0\tO\n\t\nIn\tO\tIn\tO\noregon\tO\toregon\tO\nvs\tO\tvs\tO\nSouth\tO\tSouth\tO\nDakota\tO\tDakota\tO\n,\tO\t,\tO\nESPN\tB-Organization\tESPN\tO\nabbreviates\tO\tabbreviates\tO\noregon\tO\toregon\tO\nas\tO\tas\tO\nEWU\tO\tEWU\tO\n,\tO\t,\tO\nThis\tO\tThis\tO\nis\tO\tis\tO\nincorrect\tO\tincorrect\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nunsure\tO\tunsure\tO\nhow\tO\thow\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nhandling\tO\thandling\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nwe\tO\twe\tO\nshould\tO\tshould\tO\nreplace\tO\treplace\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nyard\tO\tyard\tO\nline\tO\tline\tO\nof\tO\tof\tO\nabove\tO\tabove\tO\nand\tO\tand\tO\nbelow\tO\tbelow\tO\nabbreviation\tO\tabbreviation\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/269\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/269\tO\n\t\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nno\tO\tno\tO\nmore\tO\tmore\tO\nreply\tO\treply\tO\non\tO\ton\tO\nother\tO\tother\tO\npost\tO\tpost\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\npolats/unity3d\tO\tpolats/unity3d\tO\n-blockchain-wallet\tO\t-blockchain-wallet\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/alto-io/unity3d-blockchain-wallet/issues/1\tO\thttps://github.com/alto-io/unity3d-blockchain-wallet/issues/1\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ngreat\tO\tgreat\tO\ndemo\tO\tdemo\tO\nand\tO\tand\tO\nready-to-use\tO\tready-to-use\tO\nplugin\tO\tplugin\tO\n,\tO\t,\tO\nit\tO\tit\tO\nhelps\tO\thelps\tO\na\tO\ta\tO\nlot\tO\tlot\tO\non\tO\ton\tO\nunderstanding\tO\tunderstanding\tO\nEthereum\tB-Application\tEthereum\tO\nwith\tO\twith\tO\nUnity\tB-Application\tUnity\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nplugin\tO\tplugin\tO\ncan\tO\tcan\tO\nnow\tO\tnow\tO\ncreate\tO\tcreate\tO\nwallet\tO\twallet\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\ndata\tO\tdata\tO\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nlater\tO\tlater\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nlet\tO\tlet\tO\nplayers\tO\tplayers\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\ntheir\tO\ttheir\tO\nexisting\tO\texisting\tO\nwallets\tO\twallets\tO\nsecurely\tO\tsecurely\tO\n?\tO\t?\tO\n\t\nFew\tO\tFew\tO\nsolutions\tO\tsolutions\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\n:\tO\t:\tO\n\t\nLogin\tO\tLogin\tO\nthrough\tO\tthrough\tO\nMetaMask\tB-Application\tMetaMask\tO\n(\tO\t(\tO\nMetaMask\tB-Application\tMetaMask\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\nnative\tO\tnative\tO\nUnity\tB-Application\tUnity\tO\nplugin\tO\tplugin\tO\n,\tO\t,\tO\nso\tO\tso\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nweb\tO\tweb\tO\ninterface\tO\tinterface\tO\npopup\tO\tpopup\tO\nfor\tO\tfor\tO\nlogin\tO\tlogin\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nhard\tO\thard\tO\nand\tO\tand\tO\nrequire\tO\trequire\tO\nwell\tO\twell\tO\nunderstanding\tO\tunderstanding\tO\non\tO\ton\tO\nhow\tO\thow\tO\ndata\tO\tdata\tO\npass\tO\tpass\tO\naround\tO\taround\tO\n)\tO\t)\tO\n\t\nSimple\tO\tSimple\tO\nlet\tO\tlet\tO\nplayers\tO\tplayers\tO\nto\tO\tto\tO\ninput\tO\tinput\tO\nthe\tO\tthe\tO\nprivate\tO\tprivate\tO\nkey\tO\tkey\tO\nstring\tB-Data_Type\tstring\tO\n,\tO\t,\tO\nor\tO\tor\tO\nselect\tO\tselect\tO\nprivate\tO\tprivate\tO\nkey\tO\tkey\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nown\tO\town\tO\n(\tO\t(\tO\ncentralized\tO\tcentralized\tO\n)\tO\t)\tO\nserver\tB-Application\tserver\tO\nthat\tO\tthat\tO\nplayers\tO\tplayers\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\naccounts\tO\taccounts\tO\nand\tO\tand\tO\nlogin\tO\tlogin\tO\nwith\tO\twith\tO\nusernames\tO\tusernames\tO\nand\tO\tand\tO\npasswords\tO\tpasswords\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nwallet\tO\twallet\tO\nprivate\tO\tprivate\tO\nkeys\tO\tkeys\tO\nare\tO\tare\tO\nsaved\tO\tsaved\tO\non\tO\ton\tO\ndatabase\tO\tdatabase\tO\nwith\tO\twith\tO\ntheir\tO\ttheir\tO\naccounts\tO\taccounts\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nJust\tO\tJust\tO\nlike\tO\tlike\tO\nMetaMask\tB-Application\tMetaMask\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\ngame\tO\tgame\tO\n)\tO\t)\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nbecause\tO\tbecause\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nin\tO\tin\tO\nmobile\tO\tmobile\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\na\tO\ta\tO\nplayer\tO\tplayer\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nnew\tO\tnew\tO\nwallet\tO\twallet\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nhe\tO\the\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ndevices\tO\tdevices\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhe\tO\the\tO\ncan\tO\tcan\tO\nplay\tO\tplay\tO\non\tO\ton\tO\na\tO\ta\tO\nsame\tO\tsame\tO\ngame\tO\tgame\tO\nprogress\tO\tprogress\tO\nin\tO\tin\tO\nmultiply\tO\tmultiply\tO\ndevices\tO\tdevices\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/24\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/24\tO\n\t\n@lurch\tB-User_Name\t@lurch\tO\nthe\tO\tthe\tO\nMBR\tO\tMBR\tO\nfs\tO\tfs\tO\ntype\tO\ttype\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nprecise\tO\tprecise\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ntable\tB-User_Interface_Element\ttable\tO\nhere\tO\there\tO\nhttps://en.wikipedia.org/wiki/Partition_type\tO\thttps://en.wikipedia.org/wiki/Partition_type\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n0x83\tO\t0x83\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nlinux\tB-Operating_System\tlinux\tO\nfilesystems\tO\tfilesystems\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\npossibilities\tO\tpossibilities\tO\nfor\tO\tfor\tO\nFAT\tO\tFAT\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n\"\tO\t\"\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\n0x83\tO\t0x83\tO\ntry\tO\ttry\tO\next\tO\text\tO\n,\tO\t,\tO\nelse\tO\telse\tO\ntry\tO\ttry\tO\nfat\tO\tfat\tO\n;\tO\t;\tO\nif\tO\tif\tO\nboth\tO\tboth\tO\nfail\tO\tfail\tO\nraise\tO\traise\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nneed\tO\tneed\tO\nfor\tO\tfor\tO\nmmmmagic\tO\tmmmmagic\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\nalso\tO\talso\tO\nsupport\tO\tsupport\tO\nraw\tO\traw\tO\npartitions\tO\tpartitions\tO\n(\tO\t(\tO\nwithout\tO\twithout\tO\nMBR\tO\tMBR\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\nadd\tO\tadd\tO\nChange-Type\tO\tChange-Type\tO\n:\tO\t:\tO\nmajor\tO\tmajor\tO\ninthe\tO\tinthe\tO\ncommits\tO\tcommits\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nrepo\tO\trepo\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nVersionBot\tB-Library_Class\tVersionBot\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbumped\tO\tbumped\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nto\tO\tto\tO\n3.0.0\tB-Version\t3.0.0\tO\nmanually\tO\tmanually\tO\n.\tO\t.\tO\n\t\nAbout\tO\tAbout\tO\nlistDirecory\tB-Library_Function\tlistDirecory\tB-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthis\tO\tthis\tO\nlibrary\tO\tlibrary\tO\n's\tO\t's\tO\njob\tO\tjob\tO\nto\tO\tto\tO\nfilter\tO\tfilter\tO\nout\tO\tout\tO\nhidden\tO\thidden\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nmajor\tO\tmajor\tO\nversion\tO\tversion\tO\nchange\tO\tchange\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nmoment\tO\tmoment\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncomponents\tO\tcomponents\tO\nrelying\tO\trelying\tO\non\tO\ton\tO\nresin-image-fs\tB-Application\tresin-image-fs\tO\nwill\tO\twill\tO\nrequire\tO\trequire\tO\nchanges\tO\tchanges\tO\nanyway\tO\tanyway\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmegankweon/Lesson04\tO\tmegankweon/Lesson04\tO\n-assignment\tO\t-assignment\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/megankweon/Lesson04-assignment\tO\thttps://github.com/megankweon/Lesson04-assignment\tO\n\t\nDescription\tO\tDescription\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nan\tO\tan\tO\nassignment\tO\tassignment\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nresponsive\tO\tresponsive\tO\necommerce\tO\tecommerce\tO\nweb\tO\tweb\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nNav\tB-HTML_XML_Tag\tNav\tO\nand\tO\tand\tO\nproduct\tO\tproduct\tO\ncontainer\tO\tcontainer\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nflexbox\tB-Library_Class\tflexbox\tO\n.\tO\t.\tO\n\t\nSidebar/aside\tB-User_Interface_Element\tSidebar/aside\tO\nis\tO\tis\tO\na\tO\ta\tO\nmodule\tO\tmodule\tO\nthat\tO\tthat\tO\nchanges\tO\tchanges\tO\nlayout\tO\tlayout\tO\nand\tO\tand\tO\nlocation\tO\tlocation\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nwindow\tB-User_Interface_Element\twindow\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nSubmitting\tO\tSubmitting\tO\nthe\tO\tthe\tO\nmailing\tO\tmailing\tO\nlist\tO\tlist\tO\nsignup\tO\tsignup\tO\nform\tO\tform\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nuser\tO\tuser\tO\nfeedback\tO\tfeedback\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nClicking\tO\tClicking\tO\na\tO\ta\tO\nproduct\tO\tproduct\tO\n's\tO\t's\tO\n\"\tO\t\"\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\ncart\tO\tcart\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\nremove\tO\tremove\tO\nfrom\tO\tfrom\tO\ncart\tO\tcart\tO\n\"\tO\t\"\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nupdates\tO\tupdates\tO\ncart\tO\tcart\tO\ncount\tO\tcount\tO\nat\tO\tat\tO\ntop\tO\ttop\tO\n.\tO\t.\tO\n\t\nStudents\tO\tStudents\tO\nmay\tO\tmay\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nprovided\tO\tprovided\tO\nmockups\tO\tmockups\tO\nto\tO\tto\tO\nguide\tO\tguide\tO\ntheir\tO\ttheir\tO\ndesign\tO\tdesign\tO\nto\tO\tto\tO\nwhatever\tO\twhatever\tO\nextent\tO\textent\tO\nthey\tO\tthey\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nMatching\tO\tMatching\tO\nthe\tO\tthe\tO\nmockups\tO\tmockups\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrequired\tO\trequired\tO\n.\tO\t.\tO\n\t\nProvided\tO\tProvided\tO\nMaterials\tO\tMaterials\tO\n\t\nbasic\tO\tbasic\tO\nHTML\tB-Language\tHTML\tO\nand\tO\tand\tO\nCSS\tB-Language\tCSS\tO\n\t\nJSON\tB-File_Type\tJSON\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nproducts\tO\tproducts\tO\nin\tO\tin\tO\nscript.js\tB-File_Name\tscript.js\tO\nfile\tO\tfile\tO\n\t\nreset.css\tB-File_Name\treset.css\tO\n\t\nimages\tB-User_Interface_Element\timages\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nproducts\tO\tproducts\tO\n\t\nsuggested\tO\tsuggested\tO\ndesign\tO\tdesign\tO\nmockups\tO\tmockups\tO\n\t\nAssignments\tO\tAssignments\tO\n\t\nLesson\tO\tLesson\tO\n04\tO\t04\tO\n:\tO\t:\tO\n\t\nMake\tO\tMake\tO\ndesign\tO\tdesign\tO\ndecisions\tO\tdecisions\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nyour\tO\tyour\tO\nsite\tO\tsite\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nprovided\tO\tprovided\tO\nmockups\tO\tmockups\tO\nto\tO\tto\tO\nguide\tO\tguide\tO\nyour\tO\tyour\tO\ndesign\tO\tdesign\tO\nto\tO\tto\tO\nwhatever\tO\twhatever\tO\nextent\tO\textent\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\n-\tO\t-\tO\nfeel\tO\tfeel\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthem\tO\tthem\tO\nexactly\tO\texactly\tO\nor\tO\tor\tO\nmake\tO\tmake\tO\nup\tO\tup\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ndesign\tO\tdesign\tO\ncompletely\tO\tcompletely\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nbasic\tO\tbasic\tO\nCSS\tB-Language\tCSS\tO\nfor\tO\tfor\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nreset.css\tB-File_Name\treset.css\tB-Code_Block\nfile\tO\tfile\tO\nshould\tO\tshould\tO\nremain\tO\tremain\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nmain.css\tB-File_Name\tmain.css\tB-Code_Block\nfile\tO\tfile\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\n,\tO\t,\tO\nchanged\tO\tchanged\tO\n,\tO\t,\tO\nor\tO\tor\tO\ncompletely\tO\tcompletely\tO\nredone\tO\tredone\tO\n.\tO\t.\tO\n\t\nnav\tB-HTML_XML_Tag\tnav\tB-Code_Block\nul\tI-HTML_XML_Tag\tul\tI-Code_Block\nand\tO\tand\tO\n.item-container\tB-Class_Name\t.item-container\tB-Code_Block\nelements\tO\telements\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nstyled\tO\tstyled\tO\nas\tO\tas\tO\nflexbox\tB-Library_Class\tflexbox\tO\ncontainers\tO\tcontainers\tO\n.\tO\t.\tO\n\t\nImplement\tO\tImplement\tO\na\tO\ta\tO\nresponsive\tO\tresponsive\tO\ngrid\tB-User_Interface_Element\tgrid\tO\nsystem\tO\tsystem\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ndesign\tO\tdesign\tO\n,\tO\t,\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nlibrary\tO\tlibrary\tO\n,\tO\t,\tO\nor\tO\tor\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ngrid\tB-User_Interface_Element\tgrid\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nBe\tO\tBe\tO\nsure\tO\tsure\tO\nall\tO\tall\tO\nimportant\tO\timportant\tO\nsize\tO\tsize\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nproportional\tO\tproportional\tO\n(\tO\t(\tO\nem\tO\tem\tO\n,\tO\t,\tO\nrem\tO\trem\tO\n,\tO\t,\tO\n%\tO\t%\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\n'll\tO\t'll\tO\ncontinue\tO\tcontinue\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nCSS\tB-Language\tCSS\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nthroughout\tO\tthroughout\tO\nthe\tO\tthe\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nin\tO\tin\tO\nparticular\tO\tparticular\tO\nmaking\tO\tmaking\tO\nit\tO\tit\tO\nmore\tO\tmore\tO\nresponsive\tO\tresponsive\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nstyling\tO\tstyling\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nperfect\tO\tperfect\tO\nafter\tO\tafter\tO\nthis\tO\tthis\tO\nassignment\tO\tassignment\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nfine\tO\tfine\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nor\tO\tor\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nHTML\tB-Language\tHTML\tO\nas\tO\tas\tO\nnecessary\tO\tnecessary\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nstyling\tO\tstyling\tO\n.\tO\t.\tO\n\t\nLesson\tO\tLesson\tO\n05\tO\t05\tO\n:\tO\t:\tO\n\t\nWrite\tO\tWrite\tO\na\tO\ta\tO\nJS\tB-Language\tJS\tO\nform\tO\tform\tO\nhandler\tO\thandler\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ntriggered\tO\ttriggered\tO\non\tO\ton\tO\nform\tO\tform\tO\nsubmit\tO\tsubmit\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nprint\tO\tprint\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\na\tO\ta\tO\nfriendly\tO\tfriendly\tO\nmessage\tO\tmessage\tO\nthat\tO\tthat\tO\nincludes\tO\tincludes\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tB-User_Interface_Element\tform\tO\nelement\tO\telement\tO\nwith\tO\twith\tO\nname\tO\tname\tO\n\"\tO\t\"\tO\nemail\tO\temail\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nSomething\tO\tSomething\tO\nlike\tO\tlike\tO\n\"\tO\t\"\tO\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nsigning\tO\tsigning\tO\nup\tO\tup\tO\nfor\tO\tfor\tO\nour\tO\tour\tO\nmailing\tO\tmailing\tO\nlist\tO\tlist\tO\n,\tO\t,\tO\nbobross@example.com\tO\tbobross@example.com\tO\n!\tO\t!\tO\n\"\tO\t\"\tO\n\t\nLesson\tO\tLesson\tO\n06\tO\t06\tO\n:\tO\t:\tO\n\t\nServe\tO\tServe\tO\nappropriately\tO\tappropriately\tO\nsized\tO\tsized\tO\nimages\tO\timages\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nGIMP\tB-Application\tGIMP\tO\nor\tO\tor\tO\nanother\tO\tanother\tO\nphoto-editing\tO\tphoto-editing\tO\nprogram\tO\tprogram\tO\nto\tO\tto\tO\nresize\tO\tresize\tO\nall\tO\tall\tO\nimages\tB-User_Interface_Element\timages\tO\nto\tO\tto\tO\nmore\tO\tmore\tO\nreasonable\tO\treasonable\tO\n,\tO\t,\tO\nconsistent\tO\tconsistent\tO\ndimensions\tO\tdimensions\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nincludes\tO\tincludes\tO\nproduct\tO\tproduct\tO\nimages\tB-User_Interface_Element\timages\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlogo\tB-User_Interface_Element\tlogo\tO\n,\tO\t,\tO\nand\tO\tand\tO\nany\tO\tany\tO\nbackground\tB-User_Interface_Element\tbackground\tO\nor\tO\tor\tO\nother\tO\tother\tO\nimages\tB-User_Interface_Element\timages\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nincluded\tO\tincluded\tO\n.\tO\t.\tO\n\t\nLesson\tO\tLesson\tO\n07\tO\t07\tO\n:\tO\t:\tO\n\t\nWrite\tO\tWrite\tO\nJavascript\tB-Language\tJavascript\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\ntoggles\tO\ttoggles\tO\nthe\tO\tthe\tO\ninclusion\tO\tinclusion\tO\nof\tO\tof\tO\na\tO\ta\tO\nproduct\tO\tproduct\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\ncart\tO\tcart\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nAdd/edit\tO\tAdd/edit\tO\nHTML\tB-Language\tHTML\tO\nas\tO\tas\tO\nnecessary\tO\tnecessary\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\non\tO\ton\tO\nclick\tO\tclick\tO\nof\tO\tof\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nproduct\tO\tproduct\tO\n.\tO\t.\tO\n\t\nLesson\tO\tLesson\tO\n08\tO\t08\tO\n:\tO\t:\tO\n\t\nWrite\tO\tWrite\tO\nCSS\tB-Language\tCSS\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nlayouts/style\tO\tlayouts/style\tO\nbased\tO\tbased\tO\non\tO\ton\tO\ndevice\tO\tdevice\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nshoud\tO\tshoud\tO\nbe\tO\tbe\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\none\tO\tone\tO\nobvious\tO\tobvious\tO\nlayout\tO\tlayout\tO\nchange\tO\tchange\tO\nin\tO\tin\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nelements\tO\telements\tO\nfluidly\tO\tfluidly\tO\nchanging\tO\tchanging\tO\nwidth\tO\twidth\tO\n.\tO\t.\tO\n\t\nFinish\tO\tFinish\tO\nstyling\tO\tstyling\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nLesson\tO\tLesson\tO\n09\tO\t09\tO\n:\tO\t:\tO\n\t\nWrite\tO\tWrite\tO\nJavascript\tB-Language\tJavascript\tO\nthat\tO\tthat\tO\ncauses\tO\tcauses\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nnext\tO\tnext\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\nicon\tB-User_Interface_Element\ticon\tO\nwhen\tO\twhen\tO\nthat\tO\tthat\tO\ntotal\tO\ttotal\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nWrite\tO\tWrite\tO\nJavascript\tB-Language\tJavascript\tO\nthat\tO\tthat\tO\ndisplays\tO\tdisplays\tO\nthe\tO\tthe\tO\nfriendly\tO\tfriendly\tO\nmessage\tO\tmessage\tO\non\tO\ton\tO\nform\tB-User_Interface_Element\tform\tO\nsubmit\tO\tsubmit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\nthe\tO\tthe\tO\nHTML\tB-Language\tHTML\tO\nand\tO\tand\tO\nCSS\tB-Language\tCSS\tO\nas\tO\tas\tO\nnecessary\tO\tnecessary\tO\nto\tO\tto\tO\naccomodate\tO\taccomodate\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\nthe\tO\tthe\tO\nTesting\tO\tTesting\tO\nsection\tO\tsection\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nREADME\tB-File_Name\tREADME\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nExtra\tO\tExtra\tO\nChallenge\tO\tChallenge\tO\n:\tO\t:\tO\nIncorporate\tO\tIncorporate\tO\nunit\tO\tunit\tO\ntests\tO\ttests\tO\nwith\tO\twith\tO\nQunit\tB-Library\tQunit\tO\n.\tO\t.\tO\n\t\nExtra\tO\tExtra\tO\nChallenge\tO\tChallenge\tO\n:\tO\t:\tO\nCode\tO\tCode\tO\na\tO\ta\tO\npopup\tB-User_Interface_Element\tpopup\tO\nthat\tO\tthat\tO\ntoggles\tO\ttoggles\tO\nbetween\tO\tbetween\tO\nhidden\tO\thidden\tO\nand\tO\tand\tO\ndisplayed\tO\tdisplayed\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\ncart\tO\tcart\tO\nicon\tB-User_Interface_Element\ticon\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nshow\tO\tshow\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\n(\tO\t(\tO\nmaybe\tO\tmaybe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\nnames\tO\tnames\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nup\tO\tup\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nExtra\tO\tExtra\tO\nChallenge\tO\tChallenge\tO\n:\tO\t:\tO\nServe\tO\tServe\tO\nappropriately\tO\tappropriately\tO\nsized\tO\tsized\tO\nimages\tB-User_Interface_Element\timages\tO\nfor\tO\tfor\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\nmultiple\tO\tmultiple\tO\nsizes\tO\tsizes\tO\nof\tO\tof\tO\neach\tO\teach\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\nand\tO\tand\tO\nserve\tO\tserve\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\none\tO\tone\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsrcset\tB-HTML_XML_Tag\tsrcset\tB-Code_Block\nand\tO\tand\tO\nsizes\tB-HTML_XML_Tag\tsizes\tB-Code_Block\nattributes\tO\tattributes\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nimg\tB-HTML_XML_Tag\timg\tB-Code_Block\ntags\tO\ttags\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nrequire\tO\trequire\tO\nnaming\tO\tnaming\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimages\tB-User_Interface_Element\timages\tO\nconsistently\tO\tconsistently\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nombre-infinity400.jpg\tB-File_Name\tombre-infinity400.jpg\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nombre-infinity200.jpg\tB-File_Name\tombre-infinity200.jpg\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nabout\tO\tabout\tO\nsrcset\tB-HTML_XML_Tag\tsrcset\tO\n\t\nExtra\tO\tExtra\tO\nChallenge\tO\tChallenge\tO\n:\tO\t:\tO\nUse\tO\tUse\tO\nbrowser\tB-Application\tbrowser\tO\nstorage\tO\tstorage\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\ndetails\tO\tdetails\tO\nabout\tO\tabout\tO\na\tO\ta\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\ncart\tO\tcart\tO\nso\tO\tso\tO\nwhen\tO\twhen\tO\nthey\tO\tthey\tO\nrevisit\tO\trevisit\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nstate\tO\tstate\tO\nas\tO\tas\tO\nwhen\tO\twhen\tO\nthey\tO\tthey\tO\nleft\tO\tleft\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nabout\tO\tabout\tO\nbrowser\tB-Application\tbrowser\tO\nstorage\tO\tstorage\tO\n\t\nExtra\tO\tExtra\tO\nChallenge\tO\tChallenge\tO\n:\tO\t:\tO\nDynamically\tO\tDynamically\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nHTML\tB-Language\tHTML\tO\nfor\tO\tfor\tO\nproduct\tO\tproduct\tO\nlistings\tO\tlistings\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nJSON\tB-File_Type\tJSON\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\nscript.js\tB-File_Name\tscript.js\tO\n.\tO\t.\tO\n\t\nRequirements\tO\tRequirements\tO\n\t\nSite\tO\tSite\tO\nlayout\tO\tlayout\tO\nlooks\tO\tlooks\tO\ngood\tO\tgood\tO\non\tO\ton\tO\nall\tO\tall\tO\nsizes\tO\tsizes\tO\nof\tO\tof\tO\ndevices\tO\tdevices\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\na\tO\ta\tO\nminimum\tO\tminimum\tO\n,\tO\t,\tO\nelements\tO\telements\tO\nare\tO\tare\tO\nproportionally\tO\tproportionally\tO\nstyled\tO\tstyled\tO\nand\tO\tand\tO\naside\tO\taside\tO\nelement\tO\telement\tO\nchanges\tO\tchanges\tO\nlocation\tO\tlocation\tO\nand\tO\tand\tO\nlayout\tO\tlayout\tO\nat\tO\tat\tO\ndifferent\tO\tdifferent\tO\nscreen\tO\tscreen\tO\nsizes\tO\tsizes\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ntested\tO\ttested\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nvariety\tO\tvariety\tO\nof\tO\tof\tO\ndevices\tO\tdevices\tO\nand\tO\tand\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\none\tO\tone\tO\nonline\tO\tonline\tO\nbrowser\tB-Application\tbrowser\tO\ncompatiblity\tO\tcompatiblity\tO\ntesting\tO\ttesting\tO\ntool\tO\ttool\tO\n.\tO\t.\tO\n\t\nNav\tO\tNav\tO\nand\tO\tand\tO\nproduct\tO\tproduct\tO\ncontainer\tO\tcontainer\tO\nelements\tO\telements\tO\nare\tO\tare\tO\nstyled\tO\tstyled\tO\nusing\tO\tusing\tO\nflexbox\tO\tflexbox\tO\n.\tO\t.\tO\n\t\nAppropriately\tO\tAppropriately\tO\nsized\tO\tsized\tO\nimages\tB-User_Interface_Element\timages\tO\nare\tO\tare\tO\nserved\tO\tserved\tO\n.\tO\t.\tO\n\t\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nand\tO\tand\tO\nremove\tO\tremove\tO\nitems\tO\titems\tO\nfrom\tO\tfrom\tO\ntheir\tO\ttheir\tO\ncart\tO\tcart\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nchanges\tO\tchanges\tO\ncart\tO\tcart\tO\ncount\tO\tcount\tO\nnumber\tO\tnumber\tO\nat\tO\tat\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nREADME\tB-File_Name\tREADME\tO\nis\tO\tis\tO\nupdated\tO\tupdated\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\ntesting\tO\ttesting\tO\nsteps\tO\tsteps\tO\ntaken\tO\ttaken\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nsite\tO\tsite\tO\nquality\tO\tquality\tO\n.\tO\t.\tO\n\t\nSite\tO\tSite\tO\nis\tO\tis\tO\nlive\tO\tlive\tO\non\tO\ton\tO\nGH\tB-Website\tGH\tO\nPages\tI-Website\tPages\tO\nhosting\tO\thosting\tO\n.\tO\t.\tO\n\t\nGrading\tO\tGrading\tO\n\t\nEach\tO\tEach\tO\nweekly\tO\tweekly\tO\nassignment\tO\tassignment\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ngraded\tO\tgraded\tO\nindependently\tO\tindependently\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nfinal\tO\tfinal\tO\ngrade\tO\tgrade\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nTesting\tO\tTesting\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nthe\tO\tthe\tO\nquality\tO\tquality\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\n,\tO\t,\tO\nI\tO\tI\tO\nopened\tO\topened\tO\nand\tO\tand\tO\nran\tO\tran\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\non\tO\ton\tO\nmultiple\tO\tmultiple\tO\nbrowsers\tB-Application\tbrowsers\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nconsistent\tO\tconsistent\tO\nlayouts\tO\tlayouts\tO\namong\tO\tamong\tO\nbrowsers\tB-Application\tbrowsers\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nsure\tO\tsure\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\ndifferent\tO\tdifferent\tO\nwindow\tB-User_Interface_Element\twindow\tO\nsizes\tO\tsizes\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbrowsers\tB-Application\tbrowsers\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\ngrid\tB-User_Interface_Element\tgrid\tO\nsystem\tO\tsystem\tO\nwas\tO\twas\tO\nfunctional\tO\tfunctional\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njamstooks/django\tO\tjamstooks/django\tO\n-acme-challenge\tO\t-acme-challenge\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jamstooks/django-acme-challenge/issues/3\tO\thttps://github.com/jamstooks/django-acme-challenge/issues/3\tO\n\t\nHello\tO\tHello\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nLet\tB-Library\tLet\tO\n's\tO\t's\tO\nEncrypt\tI-Library\tEncrypt\tO\nthing\tB-Application\tthing\tO\n.\tI-Application\t.\tO\n\t\nYou\tO\tYou\tO\nsay\tO\tsay\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nset\tO\tset\tO\ntwo\tO\ttwo\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\nACME_CHALLENGE_URL_SLUG\tB-Library_Variable\tACME_CHALLENGE_URL_SLUG\tO\nand\tO\tand\tO\nACME_CHALLENGE_TEMPLATE_CONTENT\tB-Library_Variable\tACME_CHALLENGE_TEMPLATE_CONTENT\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nhttp://your-domain-name/.well-known/acme-challenge/ACME_CHALLENGE_URL_SLUG\tO\thttp://your-domain-name/.well-known/acme-challenge/ACME_CHALLENGE_URL_SLUG\tO\nwill\tO\twill\tO\nthen\tO\tthen\tO\nserve\tO\tserve\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nACME_CHALLENGE_TEMPLATE_CONTENT\tB-Library_Variable\tACME_CHALLENGE_TEMPLATE_CONTENT\tO\nfor\tO\tfor\tO\nvalidation\tO\tvalidation\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nyou\tO\tyou\tO\nsay\tO\tsay\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\nenv\tO\tenv\tO\nvariables\tO\tvariables\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\nmean\tO\tmean\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\nelse\tO\telse\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nacme\tO\tacme\tO\nchallenge\tO\tchallenge\tO\nchanges\tO\tchanges\tO\nits\tO\tits\tO\nstring\tO\tstring\tO\neverytime\tO\teverytime\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\ncertificate\tO\tcertificate\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nfollowed\tO\tfollowed\tO\nyour\tO\tyour\tO\nsteps\tO\tsteps\tO\nand\tO\tand\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nACME_CHALLENGE_URL_SLUG\tB-Code_Block\tACME_CHALLENGE_URL_SLUG\tO\n=\tI-Code_Block\t=\tO\nos.getenv('ACME_CHALLENGE_URL_SLUG')\tI-Code_Block\tos.getenv('ACME_CHALLENGE_URL_SLUG')\tO\nACME_CHALLENGE_TEMPLATE_CONTENT\tI-Code_Block\tACME_CHALLENGE_TEMPLATE_CONTENT\tO\n=\tI-Code_Block\t=\tO\nos.getenv('ACME_CHALLENGE_TEMPLATE_CONTENT')\tI-Code_Block\tos.getenv('ACME_CHALLENGE_TEMPLATE_CONTENT')\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\nclearly\tO\tclearly\tO\n,\tO\t,\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\nand\tO\tand\tO\nSaint\tO\tSaint\tO\nGoogle\tB-Website\tGoogle\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nbeen\tO\tbeen\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nguide\tO\tguide\tO\nme\tO\tme\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/6\tO\thttps://github.com/numen31337/AKVideoImageView/issues/6\tO\n\t\nNo\tO\tNo\tO\nfeedback\tO\tfeedback\tO\n,\tO\t,\tO\nclosing\tO\tclosing\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nalaingilbert/shortener\tO\talaingilbert/shortener\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/alaingilbert/shortener\tO\thttps://github.com/alaingilbert/shortener\tO\n\t\nFor\tO\tFor\tO\nhttps://www.freecodecamp.com/challenges/url-shortener-microservice\tO\thttps://www.freecodecamp.com/challenges/url-shortener-microservice\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/15\tO\thttps://github.com/mapbox/tile-count/issues/15\tO\n\t\nOh\tO\tOh\tO\nwow\tO\twow\tO\n,\tO\t,\tO\nso\tO\tso\tO\neven\tO\teven\tO\nfaster\tO\tfaster\tO\nand\tO\tand\tO\nlighter\tO\tlighter\tO\nweight\tO\tweight\tO\n?\tO\t?\tO\n\t\nWould\tO\tWould\tO\nlove\tO\tlove\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nbig\tO\tbig\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nT-Dawg/dojo_rules\tO\tT-Dawg/dojo_rules\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/T-Dawg/dojo_rules/issues/2\tO\thttps://github.com/T-Dawg/dojo_rules/issues/2\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/20\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/20\tO\n\t\nHi\tO\tHi\tO\n@RichardN\tB-User_Name\t@RichardN\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nfound\tO\tfound\tO\nyour\tO\tyour\tO\nsignature\tO\tsignature\tO\nin\tO\tin\tO\nour\tO\tour\tO\nrecords\tO\trecords\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nsigned\tO\tsigned\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\ne-mail\tO\te-mail\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nused\tO\tused\tO\nin\tO\tin\tO\nyout\tO\tyout\tO\nGit\tB-Application\tGit\tO\ncommit\tO\tcommit\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nadd\tO\tadd\tO\nboth\tO\tboth\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ne-mails\tO\te-mails\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nGithub\tB-Website\tGithub\tO\nprofile\tO\tprofile\tO\n(\tO\t(\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nhidden\tO\thidden\tO\n)\tO\t)\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nmatch\tO\tmatch\tO\nyour\tO\tyour\tO\ne-mails\tO\te-mails\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nGithub\tB-Website\tGithub\tO\nprofile\tO\tprofile\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/72\tO\thttps://github.com/spacetelescope/specview/issues/72\tO\n\t\nProvide\tO\tProvide\tO\nfor\tO\tfor\tO\nautomatic\tO\tautomatic\tO\nline\tO\tline\tO\nfinding\tO\tfinding\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\ninclude\tO\tinclude\tO\nboth\tO\tboth\tO\nabsorption\tO\tabsorption\tO\nand\tO\tand\tO\nemission\tO\temission\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nlight-weight\tO\tlight-weight\tO\n;\tO\t;\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nfit\tO\tfit\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nsimpler\tO\tsimpler\tO\npeak/valley\tO\tpeak/valley\tO\nlocator\tO\tlocator\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\na\tO\ta\tO\nprovision\tO\tprovision\tO\nto\tO\tto\tO\ngui-wise\tB-User_Interface_Element\tgui-wise\tO\ntweak\tO\ttweak\tO\nwhat\tO\twhat\tO\nwas\tO\twas\tO\nfound\tO\tfound\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nend\tO\tend\tO\nresult\tO\tresult\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nmodel\tO\tmodel\tO\nused\tO\tused\tO\nto\tO\tto\tO\nthen\tO\tthen\tO\ndo\tO\tdo\tO\na\tO\ta\tO\ncomposite\tO\tcomposite\tO\nfit\tO\tfit\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njacobratkiewicz/webgraph\tO\tjacobratkiewicz/webgraph\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/jacobratkiewicz/webgraph\tO\thttps://github.com/jacobratkiewicz/webgraph\tO\n\t\nwebgraph\tO\twebgraph\tO\n\t\nWebgraph++\tB-Application\tWebgraph++\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nhttp://cnets.indiana.edu/groups/nan/webgraph/\tO\thttp://cnets.indiana.edu/groups/nan/webgraph/\tO\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nused\tO\tused\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\npromise\tO\tpromise\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthorougly\tO\tthorougly\tO\ntested\tO\ttested\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nalmost\tO\talmost\tO\ncertainly\tO\tcertainly\tO\nsome\tO\tsome\tO\nstrange\tO\tstrange\tO\nbugs\tO\tbugs\tO\n!\tO\t!\tO\n\t\nYour\tO\tYour\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\nin\tO\tin\tO\nadding\tO\tadding\tO\ntests\tO\ttests\tO\nand\tO\tand\tO\ngenerally\tO\tgenerally\tO\ncleaning\tO\tcleaning\tO\nit\tO\tit\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmoved\tO\tmoved\tO\non\tO\ton\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nmuch\tO\tmuch\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\nquestions\tO\tquestions\tO\nabout\tO\tabout\tO\nsetup\tO\tsetup\tO\nand\tO\tand\tO\ncompilation\tO\tcompilation\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nprovided\tO\tprovided\tO\nAS-IS\tO\tAS-IS\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthat\tO\tthat\tO\nsaid\tO\tsaid\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhope\tO\thope\tO\nit\tO\tit\tO\nis\tO\tis\tO\nuseful\tO\tuseful\tO\nor\tO\tor\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\ninteresting\tO\tinteresting\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\ndefinitely\tO\tdefinitely\tO\nneed\tO\tneed\tO\nBoost\tB-Library\tBoost\tO\n(\tO\t(\tO\nhttp://www.boost.org/\tO\thttp://www.boost.org/\tO\n)\tO\t)\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nnotice\tO\tnotice\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nTODOs\tO\tTODOs\tO\nand\tO\tand\tO\ncommented-out\tO\tcommented-out\tO\nunimplemented\tO\tunimplemented\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nFeel\tO\tFeel\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthem\tO\tthem\tO\n:)\tO\t:)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/15\tO\thttps://github.com/mapbox/tile-count/issues/15\tO\n\t\nUnless\tO\tUnless\tO\nI\tO\tI\tO\nmessed\tO\tmessed\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nmath\tO\tmath\tO\nsomewhere\tO\tsomewhere\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\npixel\tO\tpixel\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\nthey\tO\tthey\tO\nlook\tO\tlook\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsdookadr/overflow\tO\twsdookadr/overflow\tO\n-checker\tO\t-checker\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsdookadr/fieldtop/issues/5\tO\thttps://github.com/wsdookadr/fieldtop/issues/5\tO\n\t\n\t\nThe\tO\tThe\tO\nCLI\tB-Application\tCLI\tO\nargument\tO\targument\tO\nhandling\tO\thandling\tO\nyou\tO\tyou\tO\nwrote\tO\twrote\tO\nis\tO\tis\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nopt\tO\topt\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nlightweight\tO\tlightweight\tO\napproach\tO\tapproach\tO\nhere\tO\there\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nminimize\tO\tminimize\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nPHP\tB-Language\tPHP\tO\nships\tO\tships\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ngetopt\tO\tgetopt\tO\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nequivalents\tO\tequivalents\tO\nin\tO\tin\tO\nother\tO\tother\tO\nlanguages\tO\tlanguages\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nwe\tO\twe\tO\nplease\tO\tplease\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nfunction\tO\tfunction\tO\ninside\tO\tinside\tO\nCheckCommand.php\tB-File_Name\tCheckCommand.php\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\nallow\tO\tallow\tO\nus\tO\tus\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\ndepend\tO\tdepend\tO\non\tO\ton\tO\nSymfony\tB-Library\tSymfony\tO\nin\tO\tin\tO\nparticular\tO\tparticular\tO\n\t\nWhy\tO\tWhy\tO\nare\tO\tare\tO\ndependencies\tO\tdependencies\tO\nyour\tO\tyour\tO\nconcern\tO\tconcern\tO\n?\tO\t?\tO\n\t\nThey\tO\tThey\tO\nare\tO\tare\tO\ninstalled\tO\tinstalled\tO\nby\tO\tby\tO\ncomposer\tB-Application\tcomposer\tO\nautomatically\tO\tautomatically\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\ncomposer\tB-Application\tcomposer\tO\nintegration\tO\tintegration\tO\nshines\tO\tshines\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nrather\tO\trather\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nSymfony\tB-Application\tSymfony\tO\nConsole\tI-Application\tConsole\tO\nas\tO\tas\tO\ndependency\tO\tdependency\tO\nthan\tO\tthan\tO\nfighting\tO\tfighting\tO\nwith\tO\twith\tO\ngetopt\tB-Library_Function\tgetopt\tO\nand\tO\tand\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nhelp\tO\thelp\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nargument\tO\targument\tO\nvalidation\tO\tvalidation\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nown\tO\town\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsdookadr/overflow\tO\twsdookadr/overflow\tO\n-checker\tO\t-checker\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsdookadr/fieldtop/issues/1\tO\thttps://github.com/wsdookadr/fieldtop/issues/1\tO\n\t\nUpdate\tO\tUpdate\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncivey/where\tO\tcivey/where\tO\n-should-we-eat\tO\t-should-we-eat\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/civey/where-should-we-eat/issues/2\tO\thttps://github.com/civey/where-should-we-eat/issues/2\tO\n\t\nBlocked\tO\tBlocked\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/1\tO\thttps://github.com/zeroepoch/plotbitrate/issues/1\tO\n\t\nDoes\tO\tDoes\tO\nthis\tO\tthis\tO\nhappen\tO\thappen\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nvideo\tB-File_Type\tvideo\tO\nfiles\tO\tfiles\tO\nyou\tO\tyou\tO\ntried\tO\ttried\tO\nor\tO\tor\tO\njust\tO\tjust\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nvideo\tB-File_Type\tvideo\tO\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/15\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/15\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\n9818679544/hello\tO\t9818679544/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/9818679544/hello-world/issues/1\tO\thttps://github.com/9818679544/hello-world/issues/1\tO\n\t\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nhuman\tO\thuman\tO\n'\tO\t'\tO\nget\tO\tget\tO\n'\tO\t'\tO\nme\tO\tme\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/36\tO\thttps://github.com/linked-statistics/xkos/issues/36\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nmodelization\tO\tmodelization\tO\ninspired\tO\tinspired\tO\nby\tO\tby\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nin\tO\tin\tO\nEurovoc\tB-Website\tEurovoc\tO\n:\tO\t:\tO\n\t\nthe\tO\tthe\tO\n*\tO\t*\tO\nNote\tO\tNote\tO\nproperty\tO\tproperty\tO\nlinks\tO\tlinks\tO\nthe\tO\tthe\tO\nclassification\tO\tclassification\tO\nitem\tO\titem\tO\nto\tO\tto\tO\na\tO\ta\tO\nresource\tO\tresource\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nissue\tO\tissue\tO\n#33\tO\t#33\tO\nsuggests\tO\tsuggests\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nExplanatoryNote\tB-Library_Class\tExplanatoryNote\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nbears\tO\tbears\tO\nthe\tO\tthe\tO\nlanguage\tO\tlanguage\tO\nproperty\tO\tproperty\tO\n:\tO\t:\tO\n\t\n<N>\tB-Code_Block\t<N>\tB-Code_Block\n<http://purl.org/dc/elements/1.1/language>\tI-Code_Block\t<http://purl.org/dc/elements/1.1/language>\tI-Code_Block\n\"fr\"^^<http://www.w3.org/2001/XMLSchema#language>\tI-Code_Block\t\"fr\"^^<http://www.w3.org/2001/XMLSchema#language>\tI-Code_Block\n\t\nbears\tO\tbears\tO\nalso\tO\talso\tO\nthe\tO\tthe\tO\nformatted\tO\tformatted\tO\ntext\tO\ttext\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnote\tO\tnote\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nhttp://eurovoc.europa.eu/schema#noteLiteral\tB-Code_Block\thttp://eurovoc.europa.eu/schema#noteLiteral\tB-Code_Block\npredicate\tO\tpredicate\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\ndatatype\tO\tdatatype\tO\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nXMLLiteral\tB-Library_Variable\tXMLLiteral\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nbears\tO\tbears\tO\nalso\tO\talso\tO\nother\tO\tother\tO\nproperties\tO\tproperties\tO\nfor\tO\tfor\tO\nauthoring\tO\tauthoring\tO\nand\tO\tand\tO\nversioning\tO\tversioning\tO\ninformation\tO\tinformation\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmodelization\tO\tmodelization\tO\nwas\tO\twas\tO\ndiscussed\tO\tdiscussed\tO\nin\tO\tin\tO\nDagstuhl\tB-Organization\tDagstuhl\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nspecification\tO\tspecification\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nintend\tO\tintend\tO\nto\tO\tto\tO\ndescribe\tO\tdescribe\tO\nit\tO\tit\tO\nin\tO\tin\tO\na\tO\ta\tO\nbest\tO\tbest\tO\npractice\tO\tpractice\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\nformatted\tO\tformatted\tO\ntext\tO\ttext\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nnote\tO\tnote\tO\n,\tO\t,\tO\njust\tO\tjust\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nartificial\tO\tartificial\tO\nto\tO\tto\tO\npresent\tO\tpresent\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nas\tO\tas\tO\nan\tO\tan\tO\nXHTML\tB-Language\tXHTML\tO\nfragment\tO\tfragment\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nneeded\tO\tneeded\tO\nis\tO\tis\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\ndatatype\tO\tdatatype\tO\nproperty\tO\tproperty\tO\n:\tO\t:\tO\n\t\n<N>\tB-Code_Block\t<N>\tB-Code_Block\nxkos:plainText\tI-Code_Block\txkos:plainText\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nCe\tI-Code_Block\tCe\tI-Code_Block\nposte\tI-Code_Block\tposte\tI-Code_Block\ncomprend\tI-Code_Block\tcomprend\tI-Code_Block\n..\tI-Code_Block\t..\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nis\tO\tis\tO\nimportant\tO\timportant\tO\nto\tO\tto\tO\nstandardize\tO\tstandardize\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nuniform\tO\tuniform\tO\nway\tO\tway\tO\nof\tO\tof\tO\naccessing\tO\taccessing\tO\nthe\tO\tthe\tO\nnote\tO\tnote\tO\ntexts\tO\ttexts\tO\nacross\tO\tacross\tO\nXKOS\tB-Library\tXKOS\tO\nimplementations\tO\timplementations\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app/issues/25\tO\thttps://github.com/lbarasti/gps_app/issues/25\tO\n\t\n…\tO\t…\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreen\tO\tgreen\tO\nbus\tO\tbus\tO\nbeing\tO\tbeing\tO\nmasked\tO\tmasked\tO\nas\tO\tas\tO\nit\tO\tit\tO\nappears\tO\tappears\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\none\tO\tone\tO\nof\tO\tof\tO\neach\tO\teach\tO\ncolour\tO\tcolour\tO\n(\tO\t(\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n…\tO\t…\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLanceKnight/WonderConverter\tO\tLanceKnight/WonderConverter\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LanceKnight/WonderConverter/issues/1\tO\thttps://github.com/LanceKnight/WonderConverter/issues/1\tO\n\t\nChange\tO\tChange\tO\nthe\tO\tthe\tO\ncore\tO\tcore\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nhtml-based\tB-Language\thtml-based\tO\nso\tO\tso\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\non\tO\ton\tO\ndifferent\tO\tdifferent\tO\nplatform\tO\tplatform\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncivey/where\tO\tcivey/where\tO\n-should-we-eat\tO\t-should-we-eat\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/civey/where-should-we-eat\tO\thttps://github.com/civey/where-should-we-eat\tO\n\t\nWhere\tO\tWhere\tO\nshould\tO\tshould\tO\nwe\tO\twe\tO\neat\tO\teat\tO\n?\tO\t?\tO\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\nnever\tO\tnever\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nask\tO\task\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nagain\tO\tagain\tO\n!\tO\t!\tO\n\t\nJust\tO\tJust\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nmachines\tO\tmachines\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n\t\nhttps://where-should-we-eat.surge.sh\tO\thttps://where-should-we-eat.surge.sh\tO\n\t\nFeel\tO\tFeel\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nor\tO\tor\tO\nchange\tO\tchange\tO\nrestaurants\tO\trestaurants\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nfeatures\tO\tfeatures\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/33\tO\thttps://github.com/demigor/lex.db/issues/33\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nunsigned\tO\tunsigned\tO\ndata\tO\tdata\tO\ntypes\tO\ttypes\tO\nand\tO\tand\tO\nbuilder\tO\tbuilder\tO\ndata\tO\tdata\tO\ntypes\tO\ttypes\tO\n:\tO\t:\tO\n\t\nsbyte\tB-Data_Type\tsbyte\tO\n\t\nushort\tB-Data_Type\tushort\tO\n\t\nuint\tB-Data_Type\tuint\tO\n\t\nulong\tB-Data_Type\tulong\tO\n\t\nStringBuilder\tB-Library_Class\tStringBuilder\tO\n\t\nUriBuilder\tB-Library_Class\tUriBuilder\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nxavierartot/grunt\tO\txavierartot/grunt\tO\n-parallax-scrollr-svg-png\tO\t-parallax-scrollr-svg-png\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/xavierartot/grunt-parallax-scrollr-svg-png\tO\thttps://github.com/xavierartot/grunt-parallax-scrollr-svg-png\tO\n\t\ngrunt-sass-bootstrap\tO\tgrunt-sass-bootstrap\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview\tO\thttps://github.com/spacetelescope/specview\tO\n\t\nOne-dimensional\tO\tOne-dimensional\tO\nInteractive\tO\tInteractive\tO\nSpectral\tO\tSpectral\tO\nAnalysis\tO\tAnalysis\tO\n:\tO\t:\tO\nSprint\tO\tSprint\tO\n201502\tO\t201502\tO\n\t\nIntroduction\tO\tIntroduction\tO\n\t\nThis\tO\tThis\tO\nrepo\tO\trepo\tO\nrepresents\tO\trepresents\tO\nthe\tO\tthe\tO\nwork\tO\twork\tO\ndone\tO\tdone\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nsprint\tO\tsprint\tO\naimed\tO\taimed\tO\nat\tO\tat\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\none-dimensional\tO\tone-dimensional\tO\nspectral\tO\tspectral\tO\nanalysis\tO\tanalysis\tO\ntool\tO\ttool\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\neffort\tO\teffort\tO\nis\tO\tis\tO\ndriven\tO\tdriven\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nJWST\tB-Organization\tJWST\tB-Code_Block\nData\tI-Organization\tData\tI-Code_Block\nAnalysis\tI-Organization\tAnalysis\tI-Code_Block\nTask\tI-Organization\tTask\tI-Code_Block\nForce_\tI-Organization\tForce_\tI-Code_Block\nand\tO\tand\tO\nis\tO\tis\tO\ndocumented\tO\tdocumented\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJWST\tB-Website\tJWST\tB-Code_Block\nData\tI-Website\tData\tI-Code_Block\nAnalysis\tI-Website\tAnalysis\tI-Code_Block\nForum_\tI-Website\tForum_\tI-Code_Block\n.\tO\t.\tO\n\t\nOrganization\tO\tOrganization\tO\n\t\nroot\tB-File_Name\troot\tO\n\t\nspecview\tB-File_Name\tspecview\tO\n:\tO\t:\tO\nInitial\tO\tInitial\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nproto\tB-File_Name\tproto\tO\n:\tO\t:\tO\nPrototype\tO\tPrototype\tO\n,\tO\t,\tO\npre-sprint\tO\tpre-sprint\tO\n,\tO\t,\tO\nor\tO\tor\tO\nother\tO\tother\tO\ncode\tO\tcode\tO\nused\tO\tused\tO\nas\tO\tas\tO\nreference\tO\treference\tO\nmaterial\tO\tmaterial\tO\n.\tO\t.\tO\n\t\nDevelopment\tO\tDevelopment\tO\n\t\nWhether\tO\tWhether\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nbase\tO\tbase\tO\nwill\tO\twill\tO\nbecome\tO\tbecome\tO\nan\tO\tan\tO\nastropy\tB-Library\tastropy\tO\naffiliate\tI-Library\taffiliate\tO\npackage\tI-Library\tpackage\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nframework\tO\tframework\tO\nas\tO\tas\tO\nbeen\tO\tbeen\tO\nplaced\tO\tplaced\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\npackage-template_\tB-Library\tpackage-template_\tB-Code_Block\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nmanaging\tO\tmanaging\tB-Code_Block\nthe\tO\tthe\tI-Code_Block\ntemplate\tO\ttemplate\tI-Code_Block\nfiles\tO\tfiles\tI-Code_Block\nvia\tO\tvia\tI-Code_Block\ngit_\tB-Application\tgit_\tI-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\n.\tO\t.\tO\n.\tO\t.\tO\n_JWST\tO\t_JWST\tO\nData\tO\tData\tO\nAnalysis\tO\tAnalysis\tO\nTask\tO\tTask\tO\nForce\tO\tForce\tO\n:\tO\t:\tO\nhttps://confluence.stsci.edu/display/JWSTDATF/JWST+Data+Analysis+Task+Force+Home\tO\thttps://confluence.stsci.edu/display/JWSTDATF/JWST+Data+Analysis+Task+Force+Home\tO\n.\tO\t.\tO\n.\tO\t.\tO\n_JWST\tO\t_JWST\tO\nData\tO\tData\tO\nAnalysis\tO\tAnalysis\tO\nForum\tO\tForum\tO\n:\tO\t:\tO\nhttps://confluence.stsci.edu/display/JWSTDATF/JWST+Data+Analysis+Development+Forum\tO\thttps://confluence.stsci.edu/display/JWSTDATF/JWST+Data+Analysis+Development+Forum\tO\n.\tO\t.\tO\n.\tO\t.\tO\n_package-template\tO\t_package-template\tO\n:\tO\t:\tO\nhttps://github.com/astropy/package-template\tO\thttps://github.com/astropy/package-template\tO\n.\tO\t.\tO\n.\tO\t.\tO\n_managing\tO\t_managing\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nfiles\tO\tfiles\tO\nvia\tO\tvia\tO\ngit\tO\tgit\tO\n:\tO\t:\tO\nhttp://astropy.readthedocs.org/en/latest/development/affiliated-packages.html#managing-the-template-files-via-git\tO\thttp://astropy.readthedocs.org/en/latest/development/affiliated-packages.html#managing-the-template-files-via-git\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build\tO\thttps://github.com/op-jenkins/op-build\tO\n\t\n==\tO\t==\tO\n=\tO\t=\tO\nBuilding\tO\tBuilding\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\n==\tO\t==\tO\n=\tO\t=\tO\n\t\ngit\tB-Code_Block\tgit\tO\nclone\tI-Code_Block\tclone\tO\n--recursive\tI-Code_Block\t--recursive\tO\ngit@github.com\tI-Code_Block\tgit@github.com\tO\n:open-power/op\tI-Code_Block\t:open-power/op\tO\n-build.git\tI-Code_Block\t-build.git\tO\ncd\tI-Code_Block\tcd\tO\nop-build\tI-Code_Block\top-build\tO\n\t\nop-build-env\tB-Code_Block\top-build-env\tO\nop-build\tI-Code_Block\top-build\tO\npalmetto_defconfig\tI-Code_Block\tpalmetto_defconfig\tO\n&&\tI-Code_Block\t&&\tO\nop-build\tI-Code_Block\top-build\tO\n\t\nBuilding\tO\tBuilding\tO\non\tO\ton\tO\n64-bit\tO\t64-bit\tO\nUbuntu/Debian\tB-Operating_System\tUbuntu/Debian\tO\nsystems\tO\tsystems\tO\n\t\nInstall\tO\tInstall\tO\nUbuntu\tB-Operating_System\tUbuntu\tO\n14.04\tB-Version\t14.04\tO\nor\tO\tor\tO\nDebian\tB-Operating_System\tDebian\tO\n7.5\tB-Version\t7.5\tO\n64-bit\tO\t64-bit\tO\n.\tO\t.\tO\n\t\nInstall\tO\tInstall\tO\nthe\tO\tthe\tO\npackages\tO\tpackages\tO\nnecessary\tO\tnecessary\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\n:\tO\t:\tO\n\t\nsudo\tB-Code_Block\tsudo\tO\napt-get\tI-Code_Block\tapt-get\tO\ninstall\tI-Code_Block\tinstall\tO\ncscope\tI-Code_Block\tcscope\tO\nctags\tI-Code_Block\tctags\tO\nlibz-dev\tI-Code_Block\tlibz-dev\tO\nlibexpat-dev\tI-Code_Block\tlibexpat-dev\tO\n\t\npython\tB-Code_Block\tpython\tO\nlanguage-pack-en\tI-Code_Block\tlanguage-pack-en\tO\ntexinfo\tI-Code_Block\ttexinfo\tO\n\t\nbuild-essential\tB-Code_Block\tbuild-essential\tO\ng++\tI-Code_Block\tg++\tO\ngit\tI-Code_Block\tgit\tO\nbison\tI-Code_Block\tbison\tO\nflex\tI-Code_Block\tflex\tO\nunzip\tI-Code_Block\tunzip\tO\n\t\nlibxml-simple-perl\tB-Code_Block\tlibxml-simple-perl\tO\nlibxml-sax-perl\tI-Code_Block\tlibxml-sax-perl\tO\nlibxml2-dev\tI-Code_Block\tlibxml2-dev\tO\nlibxml2-utils\tI-Code_Block\tlibxml2-utils\tO\nxsltproc\tI-Code_Block\txsltproc\tO\n\t\nContinue\tO\tContinue\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nclone\tO\tclone\tO\n,\tO\t,\tO\nenvironment\tO\tenvironment\tO\nsetup\tO\tsetup\tO\n,\tO\t,\tO\nand\tO\tand\tO\nbuild\tO\tbuild\tO\nas\tO\tas\tO\nnoted\tO\tnoted\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nBuilding\tO\tBuilding\tO\non\tO\ton\tO\n64-bit\tO\t64-bit\tO\nFedora\tB-Operating_System\tFedora\tO\nsystems\tO\tsystems\tO\n\t\nInstall\tO\tInstall\tO\nFedora\tB-Operating_System\tFedora\tO\n20\tB-Version\t20\tO\n64-bit\tO\t64-bit\tO\n.\tO\t.\tO\n\t\nInstall\tO\tInstall\tO\nthe\tO\tthe\tO\npackages\tO\tpackages\tO\nnecessary\tO\tnecessary\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\n:\tO\t:\tO\n\t\nsudo\tB-Code_Block\tsudo\tO\nyum\tI-Code_Block\tyum\tO\nupdate\tI-Code_Block\tupdate\tO\nvim-minimal\tI-Code_Block\tvim-minimal\tO\nsudo\tI-Code_Block\tsudo\tO\nyum\tI-Code_Block\tyum\tO\ninstall\tI-Code_Block\tinstall\tO\nvim\tI-Code_Block\tvim\tO\ngcc-c\tI-Code_Block\tgcc-c\tO\n++\tI-Code_Block\t++\tO\nflex\tI-Code_Block\tflex\tO\nbison\tI-Code_Block\tbison\tO\ngit\tI-Code_Block\tgit\tO\nctags\tI-Code_Block\tctags\tO\ncscope\tI-Code_Block\tcscope\tO\nexpat-devel\tI-Code_Block\texpat-devel\tO\npatch\tI-Code_Block\tpatch\tO\nglibc-devel.i686\tI-Code_Block\tglibc-devel.i686\tO\nlibgcc.i686\tI-Code_Block\tlibgcc.i686\tO\nzlib-devel\tI-Code_Block\tzlib-devel\tO\nzlib-static\tI-Code_Block\tzlib-static\tO\nlibstdc++\tI-Code_Block\tlibstdc++\tO\n.i686\tI-Code_Block\t.i686\tO\nlibxml2-devel.i686\tI-Code_Block\tlibxml2-devel.i686\tO\n\t\nInstall\tO\tInstall\tO\nPERL\tB-Language\tPERL\tO\nmodules\tO\tmodules\tO\nnecessary\tO\tnecessary\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\n:\tO\t:\tO\n\t\nsudo\tB-Code_Block\tsudo\tO\nyum\tI-Code_Block\tyum\tO\ninstall\tI-Code_Block\tinstall\tO\n\"perl(XML::Simple)\"\tI-Code_Block\t\"perl(XML::Simple)\"\tO\n\"perl(YAML)\"\tI-Code_Block\t\"perl(YAML)\"\tO\n\"perl(XML::SAX)\"\tI-Code_Block\t\"perl(XML::SAX)\"\tO\n\"perl(Fatal)\"\tI-Code_Block\t\"perl(Fatal)\"\tO\n\"perl(Thread::Queue)\"\tI-Code_Block\t\"perl(Thread::Queue)\"\tO\n\"perl(Env)\"\tI-Code_Block\t\"perl(Env)\"\tO\n\"perl(XML::LibXML)\"\tI-Code_Block\t\"perl(XML::LibXML)\"\tO\n\"perl(Digest::SHA1)\"\tI-Code_Block\t\"perl(Digest::SHA1)\"\tO\n\t\nTroubleshooting\tO\tTroubleshooting\tO\n\t\nIf\tO\tIf\tO\ngit\tB-Application\tgit\tO\nis\tO\tis\tO\ncomplaining\tO\tcomplaining\tO\nabout\tO\tabout\tO\n\"\tO\t\"\tO\nfatal\tB-Error_Name\tfatal\tO\n:\tO\t:\tO\nreference\tO\treference\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ntree\tO\ttree\tO\n\"\tO\t\"\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncommit\tO\tcommit\tO\nmatching\tO\tmatching\tO\na\tO\ta\tO\nbuildroot\tB-Application\tbuildroot\tO\nchange\tO\tchange\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\n:\tO\t:\tO\n\t\nrm\tB-Code_Block\trm\tO\n-rf\tI-Code_Block\t-rf\tO\nop-build/buildroot\tI-Code_Block\top-build/buildroot\tO\ncd\tI-Code_Block\tcd\tO\nop-build\tI-Code_Block\top-build\tO\ngit\tI-Code_Block\tgit\tO\nclone\tI-Code_Block\tclone\tO\n--recursive\tI-Code_Block\t--recursive\tO\ngit@github.com\tI-Code_Block\tgit@github.com\tO\n:open-power/buildroot.git\tI-Code_Block\t:open-power/buildroot.git\tO\n\t\nIf\tO\tIf\tO\nmake\tO\tmake\tO\nis\tO\tis\tO\ncomplaining\tO\tcomplaining\tO\nduring\tO\tduring\tO\nskiboot\tB-Application\tskiboot\tO\nlink\tO\tlink\tO\nphases\tO\tphases\tO\n,\tO\t,\tO\nrevert\tO\trevert\tO\nmake\tO\tmake\tO\nto\tO\tto\tO\nversion\tO\tversion\tO\n3.81\tB-Version\t3.81\tO\n-\tO\t-\tO\n-\tO\t-\tO\nOn\tO\tOn\tO\nFedora\tB-Operating_System\tFedora\tO\n-->\tO\t-->\tO\nsudo\tB-Code_Block\tsudo\tO\nrpm\tI-Code_Block\trpm\tO\n-del\tI-Code_Block\t-del\tO\n--nodeps\tI-Code_Block\t--nodeps\tO\nmake\tI-Code_Block\tmake\tO\n-->\tO\t-->\tO\nsudo\tB-Code_Block\tsudo\tO\nwget\tI-Code_Block\twget\tO\nftp://fr2.rpmfind.net/linux/centos/6.5/os/x86_64/Packages/make\tO\tftp://fr2.rpmfind.net/linux/centos/6.5/os/x86_64/Packages/make\tO\n-3.81-20.el6.x86_64.rpm\tO\t-3.81-20.el6.x86_64.rpm\tO\n-->\tO\t-->\tO\nsudo\tB-Code_Block\tsudo\tO\nrpm\tI-Code_Block\trpm\tO\n--install\tI-Code_Block\t--install\tO\nmake-3.81-20.el6.x86_64.rpm\tI-Code_Block\tmake-3.81-20.el6.x86_64.rpm\tO\n\t\n(\tO\t(\tO\ninstructions\tO\tinstructions\tO\nfor\tO\tfor\tO\nmake\tO\tmake\tO\nreversion\tO\treversion\tO\nfrom\tO\tfrom\tO\nhttp://curiositydrivendevelopment.blogspot.com\tO\thttp://curiositydrivendevelopment.blogspot.com\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/8\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/8\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\ncheck\tO\tcheck\tO\nwhich\tO\twhich\tO\nmodel\tO\tmodel\tO\nyour\tO\tyour\tO\nS7\tB-Device\tS7\tO\nEdge\tB-Version\tEdge\tO\nis\tO\tis\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthat\tO\tthat\tO\nmodel\tO\tmodel\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsupported\tO\tsupported\tO\ndevices\tO\tdevices\tO\nlist\tO\tlist\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nmight\tO\tmight\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-android-sdk/issues/197\tO\thttps://github.com/google-ar/arcore-android-sdk/issues/197\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/39\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/39\tO\n\t\nThis\tO\tThis\tO\nmitigates\tO\tmitigates\tO\nan\tO\tan\tO\nERR_BUFFER_OUT_OF_BOUNDS\tB-Error_Name\tERR_BUFFER_OUT_OF_BOUNDS\tO\nerror\tO\terror\tO\nwith\tO\twith\tO\nnode\tO\tnode\tO\n10\tO\t10\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nfatfs\tB-Library\tfatfs\tO\nlibrary\tO\tlibrary\tO\n\t\nChange-type\tO\tChange-type\tO\n:\tO\t:\tO\npatch\tO\tpatch\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/13\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/13\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\ncapture\tO\tcapture\tO\nanother\tO\tanother\tO\nlogcat\tB-Application\tlogcat\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\napply\tO\tapply\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nUE4\tB-Application\tUE4\tO\n\"\tO\t\"\tO\nfilter\tO\tfilter\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlogcat\tB-Application\tlogcat\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\nuseful\tO\tuseful\tO\ninformation\tO\tinformation\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsergio/ophmisu\tO\twsergio/ophmisu\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsergio/ophmisu/issues/1\tO\thttps://github.com/wsergio/ophmisu/issues/1\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nmy\tO\tmy\tO\nIRC\tB-Algorithm\tIRC\tO\nclient\tB-Application\tclient\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nquickly\tO\tquickly\tO\njoin\tO\tjoin\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nbig\tO\tbig\tO\nchannels\tO\tchannels\tO\n(\tO\t(\tO\nw/\tO\tw/\tO\n>1000\tO\t>1000\tO\nusers\tO\tusers\tO\n)\tO\t)\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\ndelays\tO\tdelays\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwencens/Arduino\tO\twencens/Arduino\tO\n-HMC5883L\tO\t-HMC5883L\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/wencens/Arduino-HMC5883L\tO\thttps://github.com/wencens/Arduino-HMC5883L\tO\n\t\nArduino-HMC5883L\tB-Device\tArduino-HMC5883L\tO\n\t\nHMC5883L\tB-Device\tHMC5883L\tO\nTriple\tI-Device\tTriple\tO\nAxis\tI-Device\tAxis\tO\nDigital\tI-Device\tDigital\tO\nCompass\tI-Device\tCompass\tO\nArduino\tI-Device\tArduino\tO\nLibrary\tO\tLibrary\tO\n\t\nTutorials\tO\tTutorials\tO\n:\tO\t:\tO\nhttp://www.jarzebski.pl/arduino/czujniki-i-sensory/3-osiowy-magnetometr-hmc5883l.html\tO\thttp://www.jarzebski.pl/arduino/czujniki-i-sensory/3-osiowy-magnetometr-hmc5883l.html\tO\n\t\nYouTube\tO\tYouTube\tO\n:\tO\t:\tO\nhttp://www.youtube.com/watch?v=zG3uzQW3wc0\tO\thttp://www.youtube.com/watch?v=zG3uzQW3wc0\tO\n\t\nThis\tO\tThis\tO\nlibrary\tO\tlibrary\tO\nuse\tO\tuse\tO\nI2C\tB-Device\tI2C\tO\nto\tO\tto\tO\ncommunicate\tO\tcommunicate\tO\n,\tO\t,\tO\n2\tO\t2\tO\npins\tO\tpins\tO\nare\tO\tare\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/4\tO\thttps://github.com/zeroepoch/plotbitrate/issues/4\tO\n\t\nffprobe\tB-Application\tffprobe\tO\ncan\tO\tcan\tO\nopen\tO\topen\tO\nremote\tO\tremote\tO\nfiles\tO\tfiles\tO\ntoo\tO\ttoo\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nlocal\tO\tlocal\tO\ninput\tO\tinput\tO\nfile\tO\tfile\tO\nexistence\tO\texistence\tO\nis\tO\tis\tO\nunwanted\tO\tunwanted\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucieSteiner/AMT_feature1\tO\tLucieSteiner/AMT_feature1\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucieSteiner/AMT_feature1\tO\thttps://github.com/LucieSteiner/AMT_feature1\tO\n\t\nAMT\tO\tAMT\tO\nBootcamp/Lab01\tO\tBootcamp/Lab01\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nRest\tB-Library\tRest\tO\nAPI\tI-Library\tAPI\tO\ndocumentation\tO\tdocumentation\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nlaunch\tO\tlaunch\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n\t\ncd\tB-Code_Block\tcd\tB-Code_Block\ntopology-amt\tI-Code_Block\ttopology-amt\tI-Code_Block\n\t\ndocker-compose\tB-Code_Block\tdocker-compose\tB-Code_Block\nup\tI-Code_Block\tup\tI-Code_Block\n--build\tI-Code_Block\t--build\tI-Code_Block\n\t\ngo\tO\tgo\tO\nto\tO\tto\tO\nhttp://192.168.99.100:8080/bootcamp2-1.0-SNAPSHOT\tO\thttp://192.168.99.100:8080/bootcamp2-1.0-SNAPSHOT\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nbuild\tO\tbuild\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\n/images/glassfish/bootcamp2\tB-File_Name\t/images/glassfish/bootcamp2\tO\n-1.0-SNAPSHOT.war\tI-File_Name\t-1.0-SNAPSHOT.war\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\n.war\tB-File_Type\t.war\tO\nhat\tO\that\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n/src/bootcamp2/target\tB-File_Name\t/src/bootcamp2/target\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nAbout\tO\tAbout\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nUser\tO\tUser\tO\nAccounts\tO\tAccounts\tO\n\"\tO\t\"\tO\npage\tB-User_Interface_Element\tpage\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nprobably\tO\tprobably\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthis\tO\tthis\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nreload\tO\treload\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\nmight\tO\tmight\tO\nhappen\tO\thappen\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nrequest\tO\trequest\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nsend\tO\tsend\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nRest\tB-Library\tRest\tO\nAPI\tI-Library\tAPI\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nHopefully\tO\tHopefully\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfixed\tO\tfixed\tO\nsoon\tO\tsoon\tO\n!\tO\t!\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/22\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/22\tO\n\t\nHi\tO\tHi\tO\n!\tO\t!\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nin\tO\tin\tO\nproduction\tO\tproduction\tO\nmode\tO\tmode\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_15519\tI-Code_Block\tGR_15519\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\non\tO\ton\tO\nline\tO\tline\tO\n2\tO\t2\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_15520\tI-Code_Block\tGR_15520\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOn\tO\tOn\tO\ndevelopment\tO\tdevelopment\tO\nmode\tO\tmode\tO\nall\tO\tall\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nrgeo\tB-Library\trgeo\tO\nv0.3.20\tB-Version\tv0.3.20\tO\nand\tO\tand\tO\nrgeo-activerecord\tB-Library\trgeo-activerecord\tO\nv4.0.0\tB-Version\tv4.0.0\tO\nand\tO\tand\tO\nrails\tB-Library\trails\tO\n4.2.2\tB-Version\t4.2.2\tO\n!\tO\t!\tO\n\t\nAny\tO\tAny\tO\nidea\tO\tidea\tO\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nset\tO\tset\tO\nconfig.eager_load\tB-Library_Variable\tconfig.eager_load\tB-Code_Block\nin\tO\tin\tO\nproduction\tO\tproduction\tO\nenvironment\tO\tenvironment\tO\nto\tO\tto\tO\nfalse\tO\tfalse\tO\n,\tO\t,\tO\nall\tO\tall\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n!\tO\t!\tO\n\t\nWhy\tO\tWhy\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/3\tO\thttps://github.com/numen31337/AKVideoImageView/issues/3\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nprovide\tO\tprovide\tO\nsome\tO\tsome\tO\nmore\tO\tmore\tO\ndetailed\tO\tdetailed\tO\ninfo\tO\tinfo\tO\n,\tO\t,\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nstack\tO\tstack\tO\ntrace\tO\ttrace\tO\n,\tO\t,\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nperfect\tO\tperfect\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/4\tO\thttps://github.com/zeroepoch/plotbitrate/issues/4\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/13\tO\thttps://github.com/smirarab/pasta/issues/13\tO\n\t\nPASTA\tB-Application\tPASTA\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nCUDA\tB-Application\tCUDA\tO\nenabled\tO\tenabled\tO\n.\tO\t.\tO\n\t\nMost\tO\tMost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrunning\tO\trunning\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\nspent\tO\tspent\tO\nin\tO\tin\tO\nMafft\tB-Application\tMafft\tO\nand\tO\tand\tO\nFastTree\tB-Application\tFastTree\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nfind\tO\tfind\tO\na\tO\ta\tO\ncuda-enabled\tB-Application\tcuda-enabled\tO\nMAFFT\tI-Application\tMAFFT\tO\nand\tO\tand\tO\nFastTree\tB-Application\tFastTree\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\nreplace\tO\treplace\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbin\tO\tbin\tO\ndirectory\tO\tdirectory\tO\nand\tO\tand\tO\nPASTA\tB-Application\tPASTA\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nWed\tO\tWed\tO\n,\tO\t,\tO\nOct\tO\tOct\tO\n19\tO\t19\tO\n,\tO\t,\tO\n2016\tO\t2016\tO\nat\tO\tat\tO\n8:58\tO\t8:58\tO\nAM\tO\tAM\tO\n,\tO\t,\tO\nPejvak1\tB-User_Name\tPejvak1\tO\nnotifications@github.com\tO\tnotifications@github.com\tO\nwrote\tO\twrote\tO\n:\tO\t:\tO\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\napologies\tO\tapologies\tO\nfor\tO\tfor\tO\nposting\tO\tposting\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\npost\tO\tpost\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nparallelise\tO\tparallelise\tO\nthe\tO\tthe\tO\nML\tO\tML\tO\ncaculations\tO\tcaculations\tO\nin\tO\tin\tO\nPASTA\tB-Application\tPASTA\tO\nusing\tO\tusing\tO\nCUDA\tB-Application\tCUDA\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nobtain\tO\tobtain\tO\nthe\tO\tthe\tO\nAnaconda\tB-Application\tAnaconda\tO\nAccelerate\tI-Application\tAccelerate\tO\nmodule\tO\tmodule\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nif\tO\tif\tO\nPASTA\tB-Application\tPASTA\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nCUDA-enabled\tB-Application\tCUDA-enabled\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nformer\tO\tformer\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n;\tO\t;\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nWould\tO\tWould\tO\ncalculations\tO\tcalculations\tO\nbecome\tO\tbecome\tO\nparallelised\tO\tparallelised\tO\nby\tO\tby\tO\njust\tO\tjust\tO\nhaving\tO\thaving\tO\nthe\tO\tthe\tO\nAnaconda\tB-Application\tAnaconda\tO\nAccelerate\tI-Application\tAccelerate\tO\nand\tO\tand\tO\nCUDA\tB-Application\tCUDA\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nwould\tO\twould\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\nAnaconda\tB-Application\tAnaconda\tO\nAccelerate\tI-Application\tAccelerate\tO\nmodule\tO\tmodule\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nPASTA\tB-Application\tPASTA\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nit\tO\tit\tO\njust\tO\tjust\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nmore\tO\tmore\tO\ncomplicated\tO\tcomplicated\tO\nthan\tO\tthan\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\n—\tO\t—\tO\nYou\tO\tYou\tO\nare\tO\tare\tO\nreceiving\tO\treceiving\tO\nthis\tO\tthis\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsubscribed\tO\tsubscribed\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nReply\tO\tReply\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nemail\tO\temail\tO\ndirectly\tO\tdirectly\tO\n,\tO\t,\tO\nview\tO\tview\tO\nit\tO\tit\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nhttps://github.com/smirarab/pasta/issues/13\tO\thttps://github.com/smirarab/pasta/issues/13\tO\n,\tO\t,\tO\nor\tO\tor\tO\nmute\tO\tmute\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nhttps://github.com/notifications/unsubscribe-auth/AAybuK22SrxTnn5IqZJoFJ38F7HTR8e3ks5q1j4SgaJpZM4KbJpw\tO\thttps://github.com/notifications/unsubscribe-auth/AAybuK22SrxTnn5IqZJoFJ38F7HTR8e3ks5q1j4SgaJpZM4KbJpw\tO\n.\tO\t.\tO\n\t\nSiavash\tB-User_Name\tSiavash\tO\nMirarab\tI-User_Name\tMirarab\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nForneus/programmering\tO\tForneus/programmering\tO\n-a-inlamningar\tO\t-a-inlamningar\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/Forneus/programmering-a-inlamningar/issues/1\tO\thttps://github.com/Forneus/programmering-a-inlamningar/issues/1\tO\n\t\nFlyttar\tO\tFlyttar\tO\nkommentaren\tO\tkommentaren\tO\nhit\tO\thit\tO\n:\tO\t:\tO\n\t\nLibbet\tO\tLibbet\tO\nhar\tO\thar\tO\ningen\tO\tingen\tO\nfunktion\tO\tfunktion\tO\nför\tO\tför\tO\nenkla\tO\tenkla\tO\nstreck\tO\tstreck\tO\n,\tO\t,\tO\nså\tO\tså\tO\ndu\tO\tdu\tO\nfår\tO\tfår\tO\ngå\tO\tgå\tO\nut\tO\tut\tO\ni\tO\ti\tO\nläget\tO\tläget\tO\n\"\tO\t\"\tO\nraw\tO\traw\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nsom\tO\tsom\tO\nvi\tO\tvi\tO\ngjorde\tO\tgjorde\tO\ni\tO\ti\tO\n\"\tO\t\"\tO\nglowing\tO\tglowing\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_19266\tI-Code_Block\tGR_19266\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRita\tO\tRita\tO\nförst\tO\tförst\tO\nett\tO\tett\tO\nenda\tO\tenda\tO\nstreck\tO\tstreck\tO\n.\tO\t.\tO\n\t\nUpprepa\tO\tUpprepa\tO\nsedan\tO\tsedan\tO\nritandet\tO\tritandet\tO\ni\tO\ti\tO\nen\tO\ten\tO\nloop\tO\tloop\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/8\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/8\tO\n\t\n\t\ndo\tO\tdo\tO\nn't\tO\tn't\tO\npublish\tO\tpublish\tO\nconfig\tO\tconfig\tO\nfiles\tO\tfiles\tO\nto\tO\tto\tO\nnpm\tB-Application\tnpm\tO\n\t\ndo\tO\tdo\tO\nn't\tO\tn't\tO\npublish\tO\tpublish\tO\ninternal\tO\tinternal\tO\ntypedefs\tB-Data_Type\ttypedefs\tO\nwith\tO\twith\tO\ntypedef\tB-Data_Type\ttypedef\tO\ndependencies\tO\tdependencies\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/24\tO\thttps://github.com/mapbox/tile-count/issues/24\tO\n\t\nsee\tO\tsee\tO\necs\tB-Application\tecs\tO\nbranch\tO\tbranch\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njkraemer/redmine_airbrake\tO\tjkraemer/redmine_airbrake\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jkraemer/redmine_airbrake/issues/2\tO\thttps://github.com/jkraemer/redmine_airbrake/issues/2\tO\n\t\nYeah\tO\tYeah\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nolder\tO\tolder\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\nan\tO\tan\tO\noption\tO\toption\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nfriend\tO\tfriend\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\ncause\tO\tcause\tO\nyou\tO\tyou\tO\nshift\tO\tshift\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nupgrade\tO\tupgrade\tO\n,\tO\t,\tO\ncause\tO\tcause\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\ndependencies\tO\tdependencies\tO\nforces\tO\tforces\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nabuse\tO\tabuse\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproject_key\tB-Library_Variable\tproject_key\tB-Code_Block\nand\tO\tand\tO\nmaybe\tO\tmaybe\tO\nthere\tO\tthere\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\noption\tO\toption\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nadditional\tO\tadditional\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\njson\tB-File_Type\tjson\tO\nrequest\tO\trequest\tO\nbody\tO\tbody\tO\nthere\tO\tthere\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nno\tO\tno\tO\npotential\tO\tpotential\tO\nlength\tO\tlength\tO\nlimits\tO\tlimits\tO\nlike\tO\tlike\tO\nin\tO\tin\tO\nHTTP\tO\tHTTP\tO\nheaders\tO\theaders\tO\nand\tO\tand\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\nget\tO\tget\tO\nparsed\tO\tparsed\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbody\tO\tbody\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmess\tO\tmess\tO\naround\tO\taround\tO\nwith\tO\twith\tO\nCGI.escape\tB-Library_Function\tCGI.escape\tB-Code_Block\nand\tO\tand\tO\nthat\tO\tthat\tO\nstuff\tO\tstuff\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndownside\tO\tdownside\tO\nis\tO\tis\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nchange\tO\tchange\tO\nin\tO\tin\tO\nairbrake-ruby\tB-Library\tairbrake-ruby\tB-Code_Block\nis\tO\tis\tO\nrequired\tO\trequired\tO\nand\tO\tand\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nkey\tO\tkey\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nairbrake\tB-Application\tairbrake\tO\njson\tB-File_Type\tjson\tO\nschema\tO\tschema\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nconfigurable\tO\tconfigurable\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app\tO\thttps://github.com/lbarasti/gps_app\tO\n\t\nFront\tO\tFront\tO\nend\tO\tend\tO\n\t\nGulp\tB-Library\tGulp\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ninstalled\tO\tinstalled\tO\nby\tO\tby\tO\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n-g\tI-Code_Block\t-g\tI-Code_Block\ngulp\tI-Code_Block\tgulp\tI-Code_Block\n(\tO\t(\tO\nrequires\tO\trequires\tO\nsudo\tO\tsudo\tO\non\tO\ton\tO\nUnix\tB-Operating_System\tUnix\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nrecommended\tO\trecommended\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\ncoffeescript\tB-Language\tcoffeescript\tO\nthrough\tO\tthrough\tO\nnpm\tB-Application\tnpm\tO\n(\tO\t(\tO\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n-g\tI-Code_Block\t-g\tI-Code_Block\ncoffee-script\tI-Code_Block\tcoffee-script\tI-Code_Block\n-\tO\t-\tO\nrequires\tO\trequires\tO\nsudo\tO\tsudo\tO\non\tO\ton\tO\nUnix\tB-Operating_System\tUnix\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\ndebian\tB-Operating_System\tdebian\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nPPAs\tB-Library\tPPAs\tO\nwill\tO\twill\tO\nprobably\tO\tprobably\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nold\tO\told\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\ncoffeescript\tB-Language\tcoffeescript\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nparticular\tO\tparticular\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbehaviour\tO\tbehaviour\tO\nof\tO\tof\tO\nlines\tO\tlines\tO\nthat\tO\tthat\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\na\tO\ta\tO\nperiod\tO\tperiod\tO\nhas\tO\thas\tO\nchanged\tO\tchanged\tO\nbetween\tO\tbetween\tO\nverions\tO\tverions\tO\nof\tO\tof\tO\ncoffeescript\tB-Language\tcoffeescript\tO\n\t\nBack\tO\tBack\tO\nend\tO\tend\tO\n\t\nThis\tO\tThis\tO\nrequires\tO\trequires\tO\nruby\tB-Language\truby\tO\n2.0\tB-Version\t2.0\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\ndebian\tB-Operating_System\tdebian\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmay\tO\tmay\tO\nrequire\tO\trequire\tO\na\tO\ta\tO\nthird-party\tO\tthird-party\tO\nPPA\tB-Library\tPPA\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npackage\tO\tpackage\tO\nname\tO\tname\tO\nis\tO\tis\tO\nusually\tO\tusually\tO\nruby2.0\tB-Language\truby2.0\tB-Code_Block\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nsudo\tB-Code_Block\tsudo\tB-Code_Block\nupdate-alternatives\tI-Code_Block\tupdate-alternatives\tI-Code_Block\n--config\tI-Code_Block\t--config\tI-Code_Block\nruby\tI-Code_Block\truby\tI-Code_Block\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nruby\tB-Language\truby\tO\nversion\tO\tversion\tO\nthat\tO\tthat\tO\n/usr/bin/ruby\tB-File_Name\t/usr/bin/ruby\tB-Code_Block\npoints\tO\tpoints\tO\nto\tO\tto\tO\nin\tO\tin\tO\ndebian\tB-Operating_System\tdebian\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nsudo\tB-Code_Block\tsudo\tB-Code_Block\ngem\tI-Code_Block\tgem\tI-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nbundle\tI-Code_Block\tbundle\tI-Code_Block\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nbundle\tO\tbundle\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\ninstalls\tO\tinstalls\tO\nruby\tO\truby\tO\ndependencies\tO\tdependencies\tO\nas\tO\tas\tO\ndescribed\tO\tdescribed\tO\nby\tO\tby\tO\nGemfile\tO\tGemfile\tO\nand\tO\tand\tO\nGemfile.lock\tO\tGemfile.lock\tO\n)\tO\t)\tO\n\t\nDo\tO\tDo\tO\nbundle\tB-Code_Block\tbundle\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\ndependencies\tO\tdependencies\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nGemfile\tB-File_Type\tGemfile\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nmay\tO\tmay\tO\nfail\tO\tfail\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nruby\tB-Language\truby\tO\n2.x\tB-Version\t2.x\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/21\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/21\tO\n\t\nCamilo\tB-User_Name\tCamilo\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\ncomponent\tO\tcomponent\tO\nfor\tO\tfor\tO\nSkaled\tB-Application\tSkaled\tO\nwhich\tO\twhich\tO\nconverts\tO\tconverts\tO\na\tO\ta\tO\nselect\tB-HTML_XML_Tag\tselect\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nul\tB-HTML_XML_Tag\tul\tO\n(\tO\t(\tO\non\tO\ton\tO\ndesktop\tB-Device\tdesktop\tO\nonly\tO\tonly\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\nstyling\tO\tstyling\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nshould\tO\tshould\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nin\tO\tin\tO\nto\tO\tto\tO\nng-patterns\tB-HTML_XML_Tag\tng-patterns\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/30\tO\thttps://github.com/mapbox/tile-count/issues/30\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_34666\tI-Code_Block\tGR_34666\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nHackClub-SLHS/HackClub\tO\tHackClub-SLHS/HackClub\tO\n-Website\tO\t-Website\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/HackClub-SLHS/HackClub-Website/issues/10\tO\thttps://github.com/HackClub-SLHS/HackClub-Website/issues/10\tO\n\t\nReverts\tO\tReverts\tO\nHackClub-SLHS/HackClub\tO\tHackClub-SLHS/HackClub\tO\n-SLHS.github.io#9\tO\t-SLHS.github.io#9\tO\n\t\nbug\tO\tbug\tO\ndetected\tO\tdetected\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/libp2p/interface-record-store/issues/8\tO\thttps://github.com/libp2p/interface-record-store/issues/8\tO\n\t\nHello\tO\tHello\tO\nlovely\tO\tlovely\tO\nhumans\tO\thumans\tO\n,\tO\t,\tO\n\t\nmultihashing\tO\tmultihashing\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n0.3.0\tB-Version\t0.3.0\tO\n.\tO\t.\tO\n\t\nState\tO\tState\tO\n\t\n\t\nUpdate\tO\tUpdate\tO\n:rocket\tO\t:rocket\tO\n:\tO\t:\tO\n\t\n\t\nDependency\tO\tDependency\tO\n\t\n\t\n\t\nmultihashing\tO\tmultihashing\tO\n\t\n\t\nNew\tO\tNew\tO\nversion\tO\tversion\tO\n\t\n\t\n\t\n0.3.0\tB-Version\t0.3.0\tO\n\t\n\t\nType\tO\tType\tO\n\t\n\t\n\t\ndependency\tO\tdependency\tO\n\t\n\t\nThis\tO\tThis\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nWithout\tO\tWithout\tO\naccepting\tO\taccepting\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nnew\tO\tnew\tO\nfeatures\tO\tfeatures\tO\n,\tO\t,\tO\nfixes\tO\tfixes\tO\nand\tO\tand\tO\nperf\tO\tperf\tO\nimprovements\tO\timprovements\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmaintainers\tO\tmaintainers\tO\nworked\tO\tworked\tO\non\tO\ton\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nget\tO\tget\tO\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nmultihashing\tO\tmultihashing\tO\n.\tO\t.\tO\n\t\nGiven\tO\tGiven\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndecent\tO\tdecent\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\n,\tO\t,\tO\na\tO\ta\tO\npassing\tO\tpassing\tO\nbuild\tO\tbuild\tO\nis\tO\tis\tO\na\tO\ta\tO\nstrong\tO\tstrong\tO\nindicator\tO\tindicator\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nby\tO\tby\tO\nmerging\tO\tmerging\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nchange\tO\tchange\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nthis\tO\tthis\tO\nbranch\tO\tbranch\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimprove\tO\timprove\tO\nthese\tO\tthese\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n?\tO\t?\tO\n\t\nDid\tO\tDid\tO\nI\tO\tI\tO\nreport\tO\treport\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nunsure\tO\tunsure\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nfrequently\tO\tfrequently\tO\nasked\tO\tasked\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\na\tO\ta\tO\nbot\tO\tbot\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\nteach\tO\tteach\tO\nme\tO\tme\tO\nnew\tO\tnew\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nthem\tO\tthem\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\nrock\tO\trock\tO\n!\tO\t!\tO\n\t\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\ndiffers\tO\tdiffers\tO\nby\tO\tby\tO\n4\tO\t4\tO\ncommits\tO\tcommits\tO\n.\tO\t.\tO\n\t\n2e8d8df\tB-Code_Block\t2e8d8df\tB-Code_Block\nadded\tI-Code_Block\tadded\tI-Code_Block\nblake2b/s\tI-Code_Block\tblake2b/s\tI-Code_Block\nsupport\tI-Code_Block\tsupport\tI-Code_Block\n\t\n14186b2\tB-Code_Block\t14186b2\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nrelease\tI-Code_Block\trelease\tI-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\nv0.2.3\tI-Code_Block\tv0.2.3\tI-Code_Block\n\t\n0db8379\tB-Code_Block\t0db8379\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\ncontributors\tI-Code_Block\tcontributors\tI-Code_Block\n\t\n4e3cf24\tB-Code_Block\t4e3cf24\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nnew\tI-Code_Block\tnew\tI-Code_Block\naegir\tI-Code_Block\taegir\tI-Code_Block\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndiff\tO\tdiff\tO\n.\tO\t.\tO\n\t\n✨\tO\t✨\tO\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nall\tO\tall\tO\nnew\tO\tnew\tO\nGreenkeeper\tB-Application\tGreenkeeper\tO\nGitHub\tB-Website\tGitHub\tO\nIntegration\tO\tIntegration\tO\n✨\tO\t✨\tO\n\t\nWith\tO\tWith\tO\nIntegrations\tO\tIntegrations\tO\nfirst-class\tO\tfirst-class\tO\nbot\tO\tbot\tO\nsupport\tO\tsupport\tO\nlanded\tO\tlanded\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nand\tO\tand\tO\nwe\tO\twe\tO\n've\tO\t've\tO\nrewritten\tO\trewritten\tO\nGreenkeeper\tB-Application\tGreenkeeper\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nfull\tO\tfull\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSimpler\tO\tSimpler\tO\nsetup\tO\tsetup\tO\n,\tO\t,\tO\nfewer\tO\tfewer\tO\npull-requests\tO\tpull-requests\tO\n,\tO\t,\tO\nfaster\tO\tfaster\tO\nthan\tO\tthan\tO\never\tO\tever\tO\n.\tO\t.\tO\n\t\nScreencast\tO\tScreencast\tO\nTry\tO\tTry\tO\nit\tO\tit\tO\ntoday\tO\ttoday\tO\n.\tO\t.\tO\n\t\nFree\tO\tFree\tO\nfor\tO\tfor\tO\nprivate\tO\tprivate\tO\nrepositories\tO\trepositories\tO\nduring\tO\tduring\tO\nbeta\tO\tbeta\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nCocMap/opencv_starter\tO\tCocMap/opencv_starter\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/CocMap/opencv_starter\tO\thttps://github.com/CocMap/opencv_starter\tO\n\t\nopencv-starter\tO\topencv-starter\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/22\tO\thttps://github.com/rpcope1/Hantek6022API/issues/22\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nadded\tO\tadded\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nprint\tO\tprint\tO\nstatements\tO\tstatements\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12012\tI-Code_Block\tGR_12012\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12013\tI-Code_Block\tGR_12013\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWith\tO\tWith\tO\n1\tO\t1\tO\nminute\tO\tminute\tO\npassing\tO\tpassing\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\n\"\tO\t\"\tO\nwriting\tO\twriting\tO\nbyte\tO\tbyte\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nprinted\tO\tprinted\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/5\tO\thttps://github.com/numen31337/AKVideoImageView/issues/5\tO\n\t\nYour\tO\tYour\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\ncool\tO\tcool\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\nif\tO\tif\tO\nused\tO\tused\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nintegration\tO\tintegration\tO\ndirectly\tO\tdirectly\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstoryboard\tO\tstoryboard\tO\n(\tO\t(\tO\nchange\tO\tchange\tO\nUIImageView\tB-Library_Class\tUIImageView\tO\ninto\tO\tinto\tO\nAKVideoImageView\tB-Class_Name\tAKVideoImageView\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnecessary\tO\tnecessary\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nvideoURL\tB-Variable_Name\tvideoURL\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nnul\tO\tnul\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nplayvideo\tB-Function_Name\tplayvideo\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nplayVideo\tB-Function_Name\tplayVideo\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsetVideoURL\tB-Function_Name\tsetVideoURL\tO\nmethod\tO\tmethod\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nvideoURL\tB-Variable_Name\tvideoURL\tO\nwas\tO\twas\tO\nnil\tO\tnil\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsurol/speedtest\tO\tsurol/speedtest\tO\n-cli\tO\t-cli\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/surol/speedtest-cli/issues/4\tO\thttps://github.com/surol/speedtest-cli/issues/4\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\ncreate\tO\tcreate\tO\nanother\tO\tanother\tO\nPR\tO\tPR\tO\nto\tO\tto\tO\nintroduce\tO\tintroduce\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nCI\tB-Application\tCI\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\ncatch\tO\tcatch\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nerror\tO\terror\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nPR\tO\tPR\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nthinking\tO\tthinking\tO\nCircleCI\tB-Application\tCircleCI\tO\nas\tO\tas\tO\ntheir\tO\ttheir\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nworkflows\tO\tworkflows\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\ngo\tO\tgo\tO\nTravisCI\tB-Application\tTravisCI\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\n@surol\tB-User_Name\t@surol\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\ndiscuss\tO\tdiscuss\tO\nit\tO\tit\tO\non\tO\ton\tO\nanother\tO\tanother\tO\nPR\tO\tPR\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/8\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/8\tO\n\t\n\t\nCoverage\tO\tCoverage\tO\nremained\tO\tremained\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nat\tO\tat\tO\n86.957\tO\t86.957\tO\n%\tO\t%\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\n6251c61aa001f6fa3c495028371726a4bc55325a\tO\t6251c61aa001f6fa3c495028371726a4bc55325a\tO\non\tO\ton\tO\nfix-publication\tO\tfix-publication\tO\ninto\tO\tinto\tO\nb2a4c42789a750b7ef3fdbf71c954923c87f23d1\tO\tb2a4c42789a750b7ef3fdbf71c954923c87f23d1\tO\non\tO\ton\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/2\tO\thttps://github.com/zeroepoch/plotbitrate/issues/2\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\nthe\tO\tthe\tO\nshutil.which\tB-Library_Function\tshutil.which\tO\nmethod\tO\tmethod\tO\nonly\tO\tonly\tO\nexists\tO\texists\tO\nin\tO\tin\tO\nPython\tB-Language\tPython\tO\n3.3\tB-Version\t3.3\tO\n+\tI-Version\t+\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nan\tO\tan\tO\neffort\tO\teffort\tO\nto\tO\tto\tO\nmodernize\tO\tmodernize\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\nI\tO\tI\tO\nstarted\tO\tstarted\tO\nwith\tO\twith\tO\nPython\tB-Language\tPython\tO\n3\tB-Version\t3\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\nwould\tO\twould\tO\ntake\tO\ttake\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nPython\tB-Language\tPython\tO\n2\tB-Version\t2\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nGoogle\tB-Website\tGoogle\tO\nsearch\tO\tsearch\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\none\tO\tone\tO\nline\tO\tline\tO\nchange\tO\tchange\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nshutil.which\tB-Library_Function\tshutil.which\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/1\tO\thttps://github.com/zeroepoch/plotbitrate/issues/1\tO\n\t\nTraceback\tO\tTraceback\tO\n(\tO\t(\tO\nmost\tO\tmost\tO\nrecent\tO\trecent\tO\ncall\tO\tcall\tO\nlast\tO\tlast\tO\n)\tO\t)\tO\n:\tO\t:\tO\nFile\tB-Code_Block\tFile\tO\n\"\tI-Code_Block\t\"\tO\n/private/tmp/plotbitrate-master/plotbitrate.py\tI-Code_Block\t/private/tmp/plotbitrate-master/plotbitrate.py\tO\n\"\tI-Code_Block\t\"\tO\n,\tI-Code_Block\t,\tO\nline\tI-Code_Block\tline\tO\n157\tI-Code_Block\t157\tO\n,\tI-Code_Block\t,\tO\nin\tI-Code_Block\tin\tO\nframe_time\tI-Code_Block\tframe_time\tO\n=\tI-Code_Block\t=\tO\nfloat(node.get('pkt_pts_time'))\tI-Code_Block\tfloat(node.get('pkt_pts_time'))\tO\nTypeError\tB-Error_Name\tTypeError\tO\n:\tO\t:\tO\nfloat()\tB-Code_Block\tfloat()\tO\nargument\tI-Code_Block\targument\tO\nmust\tI-Code_Block\tmust\tO\nbe\tI-Code_Block\tbe\tO\na\tI-Code_Block\ta\tO\nstring\tI-Code_Block\tstring\tO\nor\tI-Code_Block\tor\tO\na\tI-Code_Block\ta\tO\nnumber\tI-Code_Block\tnumber\tO\n\t\nUsing\tO\tUsing\tO\nPython\tB-Language\tPython\tO\n3.3\tB-Version\t3.3\tO\non\tO\ton\tO\na\tO\ta\tO\nmac\tB-Device\tmac\tO\n.\tO\t.\tO\n\t\nInstalled\tO\tInstalled\tO\nwith\tO\twith\tO\nmacports\tB-Application\tmacports\tO\n'\tO\t'\tO\nport\tB-Code_Block\tport\tO\ninstall\tI-Code_Block\tinstall\tO\npython33\tI-Code_Block\tpython33\tO\npy33-matplotlib\tI-Code_Block\tpy33-matplotlib\tO\n'\tO\t'\tO\nalso\tO\talso\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nline\tO\tline\tO\nto\tO\tto\tO\n'\tO\t'\tO\n#\tB-Code_Block\t#\tO\n!\tI-Code_Block\t!\tO\n/usr/bin/env\tI-Code_Block\t/usr/bin/env\tO\npython3.3\tI-Code_Block\tpython3.3\tO\n'\tO\t'\tO\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/10\tO\thttps://github.com/op-jenkins/op-build/issues/10\tO\n\t\nretest\tO\tretest\tO\nthis\tO\tthis\tO\nplease\tO\tplease\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/5\tO\thttps://github.com/contributte/logging/issues/5\tO\n\t\nsounds\tO\tsounds\tO\ncool\tO\tcool\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/10\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/10\tO\n\t\nUpgrade\tO\tUpgrade\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta\tO\thttps://github.com/smirarab/pasta\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nPASTA\tB-Algorithm\tPASTA\tO\n(\tO\t(\tO\nPractical\tB-Algorithm\tPractical\tO\nAlignment\tI-Algorithm\tAlignment\tO\nusing\tI-Algorithm\tusing\tO\nSate\tI-Algorithm\tSate\tO\nand\tI-Algorithm\tand\tO\nTrAnsitivity\tI-Algorithm\tTrAnsitivity\tO\n)\tO\t)\tO\nalgorithm\tO\talgorithm\tO\npublished\tO\tpublished\tO\nin\tO\tin\tO\nRECOMB-2014\tB-Organization\tRECOMB-2014\tO\nand\tO\tand\tO\nJCB\tB-Organization\tJCB\tO\n:\tO\t:\tO\n\t\nMirarab\tB-User_Name\tMirarab\tO\nS\tI-User_Name\tS\tO\n,\tO\t,\tO\nNguyen\tB-User_Name\tNguyen\tO\nN\tI-User_Name\tN\tO\n,\tO\t,\tO\nWarnow\tB-User_Name\tWarnow\tO\nT\tI-User_Name\tT\tO\n.\tI-User_Name\t.\tO\nPASTA\tB-Algorithm\tPASTA\tO\n:\tO\t:\tO\nultra-large\tO\tultra-large\tO\nmultiple\tO\tmultiple\tO\nsequence\tO\tsequence\tO\nalignment\tO\talignment\tO\n.\tO\t.\tO\n\t\nSharan\tB-User_Name\tSharan\tO\nR\tI-User_Name\tR\tO\n,\tO\t,\tO\ned\tO\ted\tO\n.\tO\t.\tO\n\t\nRes\tB-Organization\tRes\tO\nComput\tI-Organization\tComput\tO\nMol\tI-Organization\tMol\tO\nBiol\tI-Organization\tBiol\tO\n.\tO\t.\tO\n\t\n2014:177-191\tO\t2014:177-191\tO\n.\tO\t.\tO\n\t\nMirarab\tB-User_Name\tMirarab\tO\nS\tI-User_Name\tS\tO\n,\tO\t,\tO\nNguyen\tB-User_Name\tNguyen\tO\nN\tI-User_Name\tN\tO\n,\tO\t,\tO\nGuo\tB-User_Name\tGuo\tO\nS\tI-User_Name\tS\tO\n,\tO\t,\tO\nWang\tB-User_Name\tWang\tO\nL-S\tI-User_Name\tL-S\tO\n,\tO\t,\tO\nKim\tB-User_Name\tKim\tO\nJ\tI-User_Name\tJ\tO\n,\tO\t,\tO\nWarnow\tB-User_Name\tWarnow\tO\nT\tI-User_Name\tT\tO\n.\tI-User_Name\t.\tO\nPASTA\tB-Algorithm\tPASTA\tO\n:\tO\t:\tO\nUltra-Large\tO\tUltra-Large\tO\nMultiple\tO\tMultiple\tO\nSequence\tO\tSequence\tO\nAlignment\tO\tAlignment\tO\nfor\tO\tfor\tO\nNucleotide\tO\tNucleotide\tO\nand\tO\tand\tO\nAmino-Acid\tO\tAmino-Acid\tO\nSequences\tO\tSequences\tO\n.\tO\t.\tO\n\t\nJ\tB-Organization\tJ\tO\nComput\tI-Organization\tComput\tO\nBiol\tI-Organization\tBiol\tO\n.\tO\t.\tO\n\t\n2015;22(5):377-386\tO\t2015;22(5):377-386\tO\n.\tO\t.\tO\ndoi:10.1089/cmb.2014.0156\tO\tdoi:10.1089/cmb.2014.0156\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\ninquires\tO\tinquires\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\naddressed\tO\taddressed\tO\nto\tO\tto\tO\nour\tO\tour\tO\nuser\tO\tuser\tO\nemail\tO\temail\tO\ngroup\tO\tgroup\tO\n:\tO\t:\tO\npasta-users@googlegroups.com\tB-Code_Block\tpasta-users@googlegroups.com\tB-Code_Block\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ncheck\tO\tcheck\tO\nour\tO\tour\tO\nTutorial\tO\tTutorial\tO\nand\tO\tand\tO\nprevious\tO\tprevious\tO\nposts\tO\tposts\tO\nbefore\tO\tbefore\tO\nsending\tO\tsending\tO\nnew\tO\tnew\tO\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\nare\tO\tare\tO\ndeveloped\tO\tdeveloped\tO\nby\tO\tby\tO\nSiavash\tB-User_Name\tSiavash\tO\nMirarab\tI-User_Name\tMirarab\tO\nand\tO\tand\tO\nTandy\tB-User_Name\tTandy\tO\nWarnow\tI-User_Name\tWarnow\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nhelp\tO\thelp\tO\nfrom\tO\tfrom\tO\nNam\tB-User_Name\tNam\tO\nNguyen\tI-User_Name\tNguyen\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nincludes\tO\tincludes\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncode\tO\tcode\tO\ndecomposition\tO\tdecomposition\tO\ndesigned\tO\tdesigned\tO\nand\tO\tand\tO\nimplemented\tO\timplemented\tO\nby\tO\tby\tO\nUyen\tB-User_Name\tUyen\tO\nMai\tI-User_Name\tMai\tO\n.\tO\t.\tO\n\t\nAcknowledgment\tO\tAcknowledgment\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\ncurrent\tO\tcurrent\tO\nPASTA\tB-Application\tPASTA\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nheavily\tO\theavily\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nSATe\tB-Application\tSATe\tO\ncode\tO\tcode\tO\ndeveloped\tO\tdeveloped\tO\nby\tO\tby\tO\nMark\tB-User_Name\tMark\tO\nHolder\tI-User_Name\tHolder\tO\n's\tO\t's\tO\ngroup\tO\tgroup\tO\nat\tO\tat\tO\nKU\tO\tKU\tO\n.\tO\t.\tO\n\t\nRefer\tO\tRefer\tO\nto\tO\tto\tO\nsate-doc\tO\tsate-doc\tO\ndirectory\tO\tdirectory\tO\nfor\tO\tfor\tO\ndocumentation\tO\tdocumentation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nSATe\tB-Application\tSATe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nauthors\tO\tauthors\tO\n,\tO\t,\tO\nlicense\tO\tlicense\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nNiema\tB-User_Name\tNiema\tO\nMoshiri\tI-User_Name\tMoshiri\tO\nhas\tO\thas\tO\ncontributed\tO\tcontributed\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nimport\tO\timport\tO\nto\tO\tto\tO\ndendropy\tB-Library\tdendropy\tO\n4\tB-Version\t4\tO\nand\tO\tand\tO\npython\tB-Library\tpython\tO\n3\tB-Version\t3\tO\nand\tO\tand\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nDocker\tB-Application\tDocker\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nDocumentation\tO\tDocumentation\tO\n:\tO\t:\tO\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nREADME\tB-File_Name\tREADME\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nconsult\tO\tconsult\tO\nour\tO\tour\tO\nTutorial\tO\tTutorial\tO\n.\tO\t.\tO\n\t\nINSTALLATION\tO\tINSTALLATION\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nfour\tO\tfour\tO\noptions\tO\toptions\tO\nfor\tO\tfor\tO\ninstalling\tO\tinstalling\tO\nPASTA\tB-Application\tPASTA\tO\n.\tO\t.\tO\n\t\nWindows\tB-Operating_System\tWindows\tO\n:\tO\t:\tO\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nWindows\tB-Operating_System\tWindows\tO\nmachine\tO\tmachine\tO\n,\tO\t,\tO\ncurrently\tO\tcurrently\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nDocker\tB-Application\tDocker\tO\nimage\tB-User_Interface_Element\timage\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nVirtual\tB-Application\tVirtual\tO\nMachine\tI-Application\tMachine\tO\n(\tO\t(\tO\nVM\tB-Application\tVM\tO\n)\tO\t)\tO\nimage\tB-User_Interface_Element\timage\tO\nwe\tO\twe\tO\nprovide\tO\tprovide\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\nonly\tO\tonly\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nAmong\tO\tAmong\tO\nthose\tO\tthose\tO\ntwo\tO\ttwo\tO\noptions\tO\toptions\tO\n,\tO\t,\tO\nDocker\tB-Application\tDocker\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npreferred\tO\tpreferred\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nLinux\tB-Operating_System\tLinux\tO\n:\tO\t:\tO\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nLinux\tB-Operating_System\tLinux\tO\n(\tO\t(\tO\nor\tO\tor\tO\nother\tO\tother\tO\n*\tB-Operating_System\t*\tO\nnix\tI-Operating_System\tnix\tO\nsystems\tO\tsystems\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstill\tO\tstill\tO\nuse\tO\tuse\tO\nDocker\tB-Application\tDocker\tO\nor\tO\tor\tO\nVM\tB-Application\tVM\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndownloading\tO\tdownloading\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\ngithub\tB-Website\tgithub\tO\nand\tO\tand\tO\ninstalling\tO\tinstalling\tO\nit\tO\tit\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nwe\tO\twe\tO\nrecommend\tO\trecommend\tO\n.\tO\t.\tO\n\t\nMAC\tB-Operating_System\tMAC\tO\n:\tO\t:\tO\nWe\tO\tWe\tO\nhave\tO\thave\tO\nfour\tO\tfour\tO\noptions\tO\toptions\tO\nfor\tO\tfor\tO\nMAC\tB-Operating_System\tMAC\tO\n:\tO\t:\tO\nVM\tB-Application\tVM\tO\n,\tO\t,\tO\nDocker\tB-Application\tDocker\tO\n,\tO\t,\tO\ninstalling\tO\tinstalling\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndownloading\tO\tdownloading\tO\nthe\tO\tthe\tO\n.dmg\tB-File_Type\t.dmg\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nmostly\tO\tmostly\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nGUI\tO\tGUI\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nMAC\tB-Operating_System\tMAC\tO\n.dmg\tB-File_Type\t.dmg\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\na\tO\ta\tO\ngood\tO\tgood\tO\noption\tO\toption\tO\n(\tO\t(\tO\nalthough\tO\talthough\tO\nsometimes\tO\tsometimes\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nbehind\tO\tbehind\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\ncode\tO\tcode\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nreocmmend\tO\treocmmend\tO\neither\tO\teither\tO\nDocker\tB-Application\tDocker\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\npre-build\tO\tpre-build\tO\nMAC\tB-Operating_System\tMAC\tO\nimage\tB-User_Interface_Element\timage\tO\nfile\tO\tfile\tO\n\t\nDownload\tO\tDownload\tO\nthe\tO\tthe\tO\nMAC\tB-Operating_System\tMAC\tO\napplication\tO\tapplication\tO\n.dmg\tB-File_Type\t.dmg\tO\nfile\tO\tfile\tO\nhere\tO\there\tO\nor\tO\tor\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nwebsite\tO\twebsite\tO\n.\tO\t.\tO\n\t\nOpen\tO\tOpen\tO\nthe\tO\tthe\tO\n.dmg\tB-File_Type\t.dmg\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\ncopy\tO\tcopy\tO\nits\tO\tits\tO\ncontent\tO\tcontent\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\npreferred\tO\tpreferred\tO\ndestination\tO\tdestination\tO\n(\tO\t(\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\nPASTA\tB-Application\tPASTA\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nitself\tO\titself\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSimply\tO\tSimply\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nPASTA\tB-Application\tPASTA\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\ncopied\tO\tcopied\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCommon\tO\tCommon\tO\nProblems\tO\tProblems\tO\n:\tO\t:\tO\n\t\nIn\tO\tIn\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\npython\tB-Language\tpython\tO\ninstallation\tO\tinstallation\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\na\tO\ta\tO\nlocation\tO\tlocation\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nwhere\tO\twhere\tO\nPASTA\tB-Algorithm\tPASTA\tO\nis\tO\tis\tO\nhoping\tO\thoping\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthese\tO\tthese\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n:\tO\t:\tO\n\t\nPASTA\tB-Application\tPASTA\tO\nhas\tO\thas\tO\nencoutered\tO\tencoutered\tO\na\tO\ta\tO\nfatal\tB-Error_Name\tfatal\tO\nerror\tI-Error_Name\terror\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwill\tO\twill\tO\nnow\tO\tnow\tO\nterminate\tO\tterminate\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nPython\tB-Language\tPython\tO\nruntime\tO\truntime\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nlocated\tO\tlocated\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\na\tO\ta\tO\nframework\tO\tframework\tO\nbuild\tO\tbuild\tO\nof\tO\tof\tO\nPython\tB-Language\tPython\tO\n,\tO\t,\tO\nor\tO\tor\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\nPyRuntimeLocations\tB-Library_Variable\tPyRuntimeLocations\tO\narray\tO\tarray\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\napplication\tO\tapplication\tO\n's\tO\t's\tO\ninfo.plist\tB-File_Name\tinfo.plist\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\npython\tB-Language\tpython\tO\n2.7\tB-Version\t2.7\tO\ninstalled\tO\tinstalled\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nrun\tO\trun\tO\n\t\npython\tB-Code_Block\tpython\tB-Code_Block\n-c\tI-Code_Block\t-c\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\nimport\tI-Code_Block\timport\tI-Code_Block\nsys\tI-Code_Block\tsys\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nprint\tI-Code_Block\tprint\tI-Code_Block\nsys.prefix\tI-Code_Block\tsys.prefix\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\nwhere\tO\twhere\tO\nyour\tO\tyour\tO\npython\tB-Language\tpython\tO\nis\tO\tis\tO\nlocated\tO\tlocated\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nPASTA\tB-Application\tPASTA\tO\napp\tO\tapp\tO\nand\tO\tand\tO\nselect\tO\tselect\tO\nShow\tB-Code_Block\tShow\tB-Code_Block\nPackage\tI-Code_Block\tPackage\tI-Code_Block\nContent\tI-Code_Block\tContent\tI-Code_Block\n.\tO\t.\tO\n\t\nNavigate\tO\tNavigate\tO\nto\tO\tto\tO\nContents\tB-Code_Block\tContents\tB-Code_Block\nand\tO\tand\tO\nopen\tO\topen\tO\nInfo.plist\tB-File_Name\tInfo.plist\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntext\tB-Application\ttext\tO\neditor\tI-Application\teditor\tO\n.\tO\t.\tO\n\t\nReplace\tO\tReplace\tO\n/System/Library/Frameworks/Python.framework/Versions/2.7/\tB-Code_Block\t/System/Library/Frameworks/Python.framework/Versions/2.7/\tB-Code_Block\nunder\tO\tunder\tO\nPyRuntimeLocations\tB-Library_Variable\tPyRuntimeLocations\tB-Code_Block\n\t\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlocation\tO\tlocation\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\npython\tB-Language\tpython\tO\ninstallation\tO\tinstallation\tO\n(\tO\t(\tO\nlikely\tO\tlikely\tO\nit\tO\tit\tO\nis\tO\tis\tO\n/Library/Frameworks/Python.framework/Versions/2.7\tB-Code_Block\t/Library/Frameworks/Python.framework/Versions/2.7\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nApp\tO\tApp\tO\nagain\tO\tagain\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nsolution\tO\tsolution\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nor\tO\tor\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nother\tO\tother\tO\nerrors\tO\terrors\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nfirst\tO\tfirst\tO\ninstalling\tO\tinstalling\tO\nPASTA\tB-Application\tPASTA\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrun\tO\trun\tO\n./make\tB-Code_Block\t./make\tB-Code_Block\n-app.sh\tI-Code_Block\t-app.sh\tI-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npasta\tB-Application\tpasta\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nunder\tO\tunder\tO\n\t\ndist\tO\tdist\tB-Code_Block\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nand\tO\tand\tO\ncopy\tO\tcopy\tO\nto\tO\tto\tO\nany\tO\tany\tO\nother\tO\tother\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nSource\tO\tSource\tO\nCode\tO\tCode\tO\n\t\nThe\tO\tThe\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nPASTA\tB-Application\tPASTA\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ndeveloped\tO\tdeveloped\tO\nand\tO\tand\tO\ntested\tO\ttested\tO\nentirely\tO\tentirely\tO\non\tO\ton\tO\nLinux\tB-Operating_System\tLinux\tO\nand\tO\tand\tO\nMAC\tB-Operating_System\tMAC\tO\n.\tO\t.\tO\n\t\nWindows\tB-Operating_System\tWindows\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\ncurrently\tO\tcurrently\tO\n(\tO\t(\tO\nfuture\tO\tfuture\tO\nversions\tO\tversions\tO\nmay\tO\tmay\tO\nor\tO\tor\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\nWindows\tB-Operating_System\tWindows\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nPython\tB-Language\tPython\tO\n(\tO\t(\tO\nversion\tO\tversion\tO\n2.7\tB-Version\t2.7\tO\nor\tO\tor\tO\nlater\tO\tlater\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\npython\tB-Language\tpython\tO\n3)\tB-Version\t3)\tO\n\t\nDendropy\tB-Library\tDendropy\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nsetup\tO\tsetup\tO\nscript\tO\tscript\tO\nshould\tO\tshould\tO\nautomatically\tO\tautomatically\tO\ninstall\tO\tinstall\tO\ndendropy\tB-Library\tdendropy\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nit\tO\tit\tO\n)\tO\t)\tO\n\t\nJava\tB-Language\tJava\tO\n(\tO\t(\tO\nonly\tO\tonly\tO\nrequired\tO\trequired\tO\nfor\tO\tfor\tO\nusing\tO\tusing\tO\nOPAL\tB-Application\tOPAL\tO\n)\tO\t)\tO\n\t\nwxPython\tB-Application\twxPython\tO\n-\tO\t-\tO\nonly\tO\tonly\tO\nrequired\tO\trequired\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nGUI\tO\tGUI\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\nsteps\tO\tsteps\tO\n:\tO\t:\tO\n\t\nOpen\tO\tOpen\tO\na\tO\ta\tO\nterminal\tB-Application\tterminal\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nPASTA\tB-Application\tPASTA\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nmkdir\tB-Code_Block\tmkdir\tB-Code_Block\n~\tI-Code_Block\t~\tI-Code_Block\n/pasta\tI-Code_Block\t/pasta\tI-Code_Block\n-code\tI-Code_Block\t-code\tI-Code_Block\n.\tO\t.\tO\n\t\nGo\tO\tGo\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\ncd\tB-Code_Block\tcd\tB-Code_Block\n~\tI-Code_Block\t~\tI-Code_Block\n/pasta\tI-Code_Block\t/pasta\tI-Code_Block\n-code\tI-Code_Block\t-code\tI-Code_Block\n.\tO\t.\tO\n\t\nClone\tO\tClone\tO\nthe\tO\tthe\tO\nPASTA\tB-Application\tPASTA\tO\ncode\tO\tcode\tO\nrepository\tO\trepository\tO\nfrom\tO\tfrom\tO\nour\tO\tour\tO\ngithub\tB-Website\tgithub\tO\nrepository\tO\trepository\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\nclone\tI-Code_Block\tclone\tI-Code_Block\nhttps://github.com/smirarab/pasta.git\tI-Code_Block\thttps://github.com/smirarab/pasta.git\tI-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\ngit\tB-Application\tgit\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndirectly\tO\tdirectly\tO\ndownload\tO\tdownload\tO\na\tO\ta\tO\nzip\tB-File_Type\tzip\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nrepository\tO\trepository\tO\n\t\nand\tO\tand\tO\ndecompress\tO\tdecompress\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\ndesired\tO\tdesired\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nClone\tO\tClone\tO\nthe\tO\tthe\tO\nrelevant\tO\trelevant\tO\n\"\tO\t\"\tO\ntools\tO\ttools\tO\n\"\tO\t\"\tO\ndirectory\tO\tdirectory\tO\n(\tO\t(\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nalso\tO\talso\tO\nforked\tO\tforked\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nSATe\tO\tSATe\tO\nproject\tO\tproject\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\nrepositories\tO\trepositories\tO\nfor\tO\tfor\tO\nlinux\tB-Operating_System\tlinux\tO\n\t\nand\tO\tand\tO\nMAC\tB-Operating_System\tMAC\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\nclone\tI-Code_Block\tclone\tI-Code_Block\nhttps://github.com/smirarab/sate-tools-linux.git\tI-Code_Block\thttps://github.com/smirarab/sate-tools-linux.git\tI-Code_Block\nfor\tO\tfor\tO\nLinux\tB-Operating_System\tLinux\tO\nor\tO\tor\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\nclone\tI-Code_Block\tclone\tI-Code_Block\nhttps://github.com/smirarab/sate-tools-mac.git\tI-Code_Block\thttps://github.com/smirarab/sate-tools-mac.git\tI-Code_Block\nfor\tO\tfor\tO\nMAC\tB-Operating_System\tMAC\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndirectly\tO\tdirectly\tO\ndownload\tO\tdownload\tO\nthese\tO\tthese\tO\nas\tO\tas\tO\nzip\tB-File_Type\tzip\tO\nfiles\tO\tfiles\tO\nfor\tO\tfor\tO\nLinux\tB-Operating_System\tLinux\tO\nor\tO\tor\tO\nMAC\tB-Operating_System\tMAC\tO\n\t\nand\tO\tand\tO\ndecompress\tO\tdecompress\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ntarget\tO\ttarget\tO\ndirectory\tO\tdirectory\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\npasta-code\tB-Code_Block\tpasta-code\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntools\tO\ttools\tO\ndirectory\tO\tdirectory\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nPASTA\tB-Application\tPASTA\tO\ncode\tO\tcode\tO\ndirectory\tO\tdirectory\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nparent\tO\tparent\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nzip\tB-File_Type\tzip\tO\nfiles\tO\tfiles\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\ngit\tB-Application\tgit\tB-Code_Block\n,\tO\t,\tO\nafter\tO\tafter\tO\ndecompressing\tO\tdecompressing\tO\nthe\tO\tthe\tO\nzip\tB-File_Type\tzip\tO\nfile\tO\tfile\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nget\tO\tget\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\ncalled\tO\tcalled\tO\nsate-tools-mac-master\tB-Code_Block\tsate-tools-mac-master\tB-Code_Block\nor\tO\tor\tO\nsate-tools-linux-master\tB-Code_Block\tsate-tools-linux-master\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nsate-tools-mac\tB-Code_Block\tsate-tools-mac\tB-Code_Block\nor\tO\tor\tO\nsate-tools-linux\tB-Code_Block\tsate-tools-linux\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrename\tO\trename\tO\nthese\tO\tthese\tO\ndirectories\tO\tdirectories\tO\nand\tO\tand\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\n-master\tB-Code_Block\t-master\tB-Code_Block\npart\tO\tpart\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nthose\tO\tthose\tO\nwith\tO\twith\tO\n32-bit\tO\t32-bit\tO\nLinux\tB-Operating_System\tLinux\tO\nmachines\tO\tmachines\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\naware\tO\taware\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmaster\tO\tmaster\tO\nbranch\tO\tbranch\tO\nhas\tO\thas\tO\n64-bit\tO\t64-bit\tO\nbinaries\tO\tbinaries\tO\n.\tO\t.\tO\n\t\n32-bit\tO\t32-bit\tO\nbinaries\tO\tbinaries\tO\nare\tO\tare\tO\nprovided\tO\tprovided\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n32bit\tB-Code_Block\t32bit\tB-Code_Block\nbranch\tO\tbranch\tO\nof\tO\tof\tO\nsate-tools-linux\tB-Code_Block\tsate-tools-linux\tB-Code_Block\ngit\tB-Application\tgit\tO\nproject\tO\tproject\tO\n(\tO\t(\tO\nso\tO\tso\tO\ndownload\tO\tdownload\tO\nthis\tO\tthis\tO\nzip\tB-File_Type\tzip\tO\nfile\tO\tfile\tO\ninstead\tO\tinstead\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nMAFFT-Homologs\tB-Application\tMAFFT-Homologs\tO\nwithin\tO\twithin\tO\nPASTA\tB-Application\tPASTA\tO\n\t\ncd\tB-Code_Block\tcd\tB-Code_Block\nsate-tools-linux\tI-Code_Block\tsate-tools-linux\tI-Code_Block\nor\tO\tor\tO\ncd\tB-Code_Block\tcd\tB-Code_Block\nsate-tools-mac\tI-Code_Block\tsate-tools-mac\tI-Code_Block\n\t\nUse\tO\tUse\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\nclone\tI-Code_Block\tclone\tI-Code_Block\nhttps://github.com/kodicollins/pasta-databases\tI-Code_Block\thttps://github.com/kodicollins/pasta-databases\tI-Code_Block\nor\tO\tor\tO\ndownload\tO\tdownload\tO\ndirectly\tO\tdirectly\tO\nat\tO\tat\tO\nhttps://github.com/kodicollins/pasta-databases.git\tB-Code_Block\thttps://github.com/kodicollins/pasta-databases.git\tB-Code_Block\n\t\nBe\tO\tBe\tO\nsure\tO\tsure\tO\nto\tO\tto\tO\nleave\tO\tleave\tO\nthis\tO\tthis\tO\ndirectory\tO\tdirectory\tO\ncd\tB-Code_Block\tcd\tB-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\nbefore\tO\tbefore\tO\nstarting\tO\tstarting\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nstep\tO\tstep\tO\n\t\ncd\tB-Code_Block\tcd\tB-Code_Block\npasta\tI-Code_Block\tpasta\tI-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\ncd\tB-Code_Block\tcd\tB-Code_Block\npasta-master\tI-Code_Block\tpasta-master\tI-Code_Block\nif\tO\tif\tO\nyou\tO\tyou\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\nzip\tB-File_Type\tzip\tO\nfile\tO\tfile\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nclonning\tO\tclonning\tO\nthe\tO\tthe\tO\ngit\tB-Application\tgit\tO\nrepository\tO\trepository\tO\n)\tO\t)\tO\n\t\nThen\tO\tThen\tO\nrun\tO\trun\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_180916\tI-Code_Block\tGR_180916\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nroot\tO\troot\tO\naccess\tO\taccess\tO\n,\tO\t,\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nsudo\tB-Code_Block\tsudo\tB-Code_Block\npart\tO\tpart\tO\nand\tO\tand\tO\ninstead\tO\tinstead\tO\nuse\tO\tuse\tO\n--user\tB-Code_Block\t--user\tB-Code_Block\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n--prefix\tB-Code_Block\t--prefix\tB-Code_Block\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\nin\tO\tin\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nlocation\tO\tlocation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\ndifferent\tO\tdifferent\tO\nlocation\tO\tlocation\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nPYTHONPATH\tB-Code_Block\tPYTHONPATH\tB-Code_Block\nenvironmental\tO\tenvironmental\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nCommon\tO\tCommon\tO\nProblems\tO\tProblems\tO\n:\tO\t:\tO\n\t\nCould\tB-Code_Block\tCould\tB-Code_Block\nnot\tI-Code_Block\tnot\tI-Code_Block\nfind\tI-Code_Block\tfind\tI-Code_Block\nSATe\tI-Code_Block\tSATe\tI-Code_Block\ntools\tI-Code_Block\ttools\tI-Code_Block\nbundle\tI-Code_Block\tbundle\tI-Code_Block\ndirectory:\tI-Code_Block\tdirectory:\tI-Code_Block\n:\tO\t:\tO\nthis\tO\tthis\tO\nmeans\tO\tmeans\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ntools\tO\ttools\tO\ndirectory\tO\tdirectory\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\ndownloaded\tO\tdownloaded\tO\nMAC\tB-Operating_System\tMAC\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nLinux\tB-Operating_System\tLinux\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\ndirectory\tO\tdirectory\tO\nof\tO\tof\tO\nwhere\tO\twhere\tO\npasta\tO\tpasta\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n?\tO\t?\tO\n\t\nMost\tO\tMost\tO\nlikely\tO\tlikely\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\nzip\tB-File_Type\tzip\tO\nfiles\tO\tfiles\tO\nand\tO\tand\tO\nforgot\tO\tforgot\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nteh\tO\tteh\tO\n-master\tB-Code_Block\t-master\tB-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nmv\tB-Code_Block\tmv\tB-Code_Block\nsate-tools-mac-master\tI-Code_Block\tsate-tools-mac-master\tI-Code_Block\nsate-tools-mac\tI-Code_Block\tsate-tools-mac\tI-Code_Block\non\tO\ton\tO\nMAC\tB-Operating_System\tMAC\tO\nor\tO\tor\tO\nmv\tB-Code_Block\tmv\tB-Code_Block\nsate-tools-linux-master\tI-Code_Block\tsate-tools-linux-master\tI-Code_Block\nsate-tools-linux\tI-Code_Block\tsate-tools-linux\tI-Code_Block\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsetup.py\tB-File_Name\tsetup.py\tB-Code_Block\nscript\tO\tscript\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nsetuptools\tB-Library\tsetuptools\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nsometimes\tO\tsometimes\tO\nworks\tO\tworks\tO\nand\tO\tand\tO\nsometimes\tO\tsometimes\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nwith\tO\twith\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nlike\tO\tlike\tO\ninvalid\tB-Code_Block\tinvalid\tB-Code_Block\ncommand\tI-Code_Block\tcommand\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\ndevelop\tI-Code_Block\tdevelop\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nsetuptools\tB-Library\tsetuptools\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ninstalled\tO\tinstalled\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmanually\tO\tmanually\tO\ninstall\tO\tinstall\tO\nsetup\tB-Library\tsetup\tO\ntools\tI-Library\ttools\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\non\tO\ton\tO\nLinux\tB-Operating_System\tLinux\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\ncurl\tB-Code_Block\tcurl\tB-Code_Block\nhttps://bootstrap.pypa.io/ez_setup.py\tI-Code_Block\thttps://bootstrap.pypa.io/ez_setup.py\tI-Code_Block\n-o\tI-Code_Block\t-o\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n|\tI-Code_Block\t|\tI-Code_Block\nsudo\tI-Code_Block\tsudo\tI-Code_Block\npython\tI-Code_Block\tpython\tI-Code_Block\n\t\n(\tO\t(\tO\nbut\tO\tbut\tO\nnote\tO\tnote\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nother\tO\tother\tO\nways\tO\tways\tO\nof\tO\tof\tO\ninstalling\tO\tinstalling\tO\nsetuptools\tB-Library\tsetuptools\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPasta\tB-Application\tPasta\tO\nnow\tO\tnow\tO\nincludes\tO\tincludes\tO\nadditional\tO\tadditional\tO\naligners\tO\taligners\tO\nfor\tO\tfor\tO\nLinux\tB-Operating_System\tLinux\tO\nand\tO\tand\tO\nMAC\tB-Operating_System\tMAC\tO\nusers\tO\tusers\tO\n:\tO\t:\tO\nmafft-ginsi\tB-Application\tmafft-ginsi\tO\n,\tO\t,\tO\nmafft-homologs\tB-Application\tmafft-homologs\tO\n,\tO\t,\tO\ncontralign\tB-Application\tcontralign\tO\n(\tO\t(\tO\nversion\tB-Version\tversion\tO\n1)\tI-Version\t1)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nprobcons\tB-Application\tprobcons\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmafft-homologs\tB-Application\tmafft-homologs\tO\nand\tO\tand\tO\ncontralign\tB-Application\tcontralign\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nmust\tO\tmust\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nenvironment\tO\tenvironment\tO\nvariable\tO\tvariable\tO\nCONTRALIGN_DIR\tB-Code_Block\tCONTRALIGN_DIR\tO\n=\tI-Code_Block\t=\tO\n/dir/to/sate\tI-Code_Block\t/dir/to/sate\tO\n-tools-linux\tI-Code_Block\t-tools-linux\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\nstep-by-step\tO\tstep-by-step\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\na\tO\ta\tO\n.\tO\t.\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\ndirectory\tO\tdirectory\tO\nto\tO\tto\tO\nsate-tools-linux\tO\tsate-tools-linux\tO\n(\tO\t(\tO\nor\tO\tor\tO\nsate-tools-mac\tO\tsate-tools-mac\tO\n)\tO\t)\tO\n,\tO\t,\tO\ntype\tO\ttype\tO\npwd\tB-Code_Block\tpwd\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nb\tO\tb\tO\n.\tO\t.\tO\n\t\nvim\tB-Code_Block\tvim\tB-Code_Block\n~\tI-Code_Block\t~\tI-Code_Block\n/.bashrc\tI-Code_Block\t/.bashrc\tI-Code_Block\n,\tO\t,\tO\npress\tO\tpress\tO\ni\tO\ti\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ntype\tO\ttype\tO\nCONTRALIGN_DIR\tB-Code_Block\tCONTRALIGN_DIR\tO\n=(\tI-Code_Block\t=(\tO\npaste\tI-Code_Block\tpaste\tO\nthe\tI-Code_Block\tthe\tO\ncopied\tI-Code_Block\tcopied\tO\noutput/directory\tI-Code_Block\toutput/directory\tO\n)\tI-Code_Block\t)\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npress\tO\tpress\tO\nESC\tB-Keyboard_IP\tESC\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\n:wq\tO\t:wq\tO\nc\tO\tc\tO\n.\tO\t.\tO\nthen\tO\tthen\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\ntype\tO\ttype\tO\nsource\tB-Code_Block\tsource\tB-Code_Block\n~\tI-Code_Block\t~\tI-Code_Block\n/.bashrc\tI-Code_Block\t/.bashrc\tI-Code_Block\n\t\nTo\tO\tTo\tO\nuse\tO\tuse\tO\nthese\tO\tthese\tO\naligners\tO\taligners\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\npasta\tB-Application\tpasta\tO\nexecution\tO\texecution\tO\n--aligner\tB-Code_Block\t--aligner\tO\n=\tI-Code_Block\t=\tO\nNAME_OF_ALIGNER\tI-Code_Block\tNAME_OF_ALIGNER\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nNAME_OF_ALIGNER\tB-Library_Variable\tNAME_OF_ALIGNER\tO\nnow\tO\tnow\tO\nincludes\tO\tincludes\tO\n(\tO\t(\tO\nginsi\tB-Application\tginsi\tO\n,\tO\t,\tO\nhomologs\tB-Application\thomologs\tO\n,\tO\t,\tO\ncontralign\tB-Application\tcontralign\tO\n,\tO\t,\tO\nand\tO\tand\tO\nprobcons\tB-Application\tprobcons\tO\n)\tO\t)\tO\n\t\n3\tO\t3\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nDocker\tB-Application\tDocker\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nDocker\tB-Application\tDocker\tO\ninstalled\tO\tinstalled\tO\n\t\nRun\tO\tRun\tO\n\t\ndocker\tB-Code_Block\tdocker\tB-Code_Block\npull\tI-Code_Block\tpull\tI-Code_Block\nsmirarab/docker\tI-Code_Block\tsmirarab/docker\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_180917\tI-Code_Block\tGR_180917\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntest\tO\ttest\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_180918\tI-Code_Block\tGR_180918\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n4\tO\t4\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nVirtual\tB-Application\tVirtual\tO\nMachine\tI-Application\tMachine\tO\n(\tO\t(\tO\nVM\tB-Application\tVM\tO\n)\tO\t)\tO\n\t\nVM\tB-Application\tVM\tO\nImage\tI-Application\tImage\tO\n(\tO\t(\tO\nmostly\tO\tmostly\tO\nfor\tO\tfor\tO\nWindows\tB-Operating_System\tWindows\tO\nusers\tO\tusers\tO\n)\tO\t)\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\ndownload\tO\tdownload\tO\n(\tO\t(\tO\n~\tO\t~\tO\n3\tO\t3\tO\nGB\tO\tGB\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nis\tO\tis\tO\ndownloaded\tO\tdownloaded\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nVM\tB-Application\tVM\tO\nenvironment\tO\tenvironment\tO\n(\tO\t(\tO\nVirtualBox\tB-Application\tVirtualBox\tO\nis\tO\tis\tO\na\tO\ta\tO\ngood\tO\tgood\tO\noption\tO\toption\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nyou\tO\tyou\tO\ninstall\tO\tinstall\tO\nVirtualBox\tB-Application\tVirtualBox\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nFile/import\tO\tFile/import\tO\nto\tO\tto\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\n*\tB-File_Type\t*\tO\n.ova\tI-File_Type\t.ova\tO\nimage\tB-User_Interface_Element\timage\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ndownloaded\tO\tdownloaded\tO\n(\tO\t(\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nmachine\tO\tmachine\tO\nhas\tO\thas\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n3GB\tO\t3GB\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreduce\tO\treduce\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nto\tO\tto\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n512MB\tO\t512MB\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nVM\tB-Application\tVM\tO\nis\tO\tis\tO\nimported\tO\timported\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstart\tO\tstart\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nVirtualbox\tB-Application\tVirtualbox\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nasked\tO\tasked\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nusername\tO\tusername\tO\nand\tO\tand\tO\npasswords\tO\tpasswords\tO\nare\tO\tare\tO\n(\tO\t(\tO\nusername\tO\tusername\tO\n:\tO\t:\tO\nphylolab\tO\tphylolab\tO\n,\tO\t,\tO\npassword\tO\tpassword\tO\n:\tO\t:\tO\nphylolab\tO\tphylolab\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPASTA\tB-Application\tPASTA\tO\nis\tO\tis\tO\nalready\tO\talready\tO\ninstalled\tO\tinstalled\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nVM\tB-Application\tVM\tO\nmachine\tO\tmachine\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\nproceed\tO\tproceed\tO\nby\tO\tby\tO\nopening\tO\topening\tO\na\tO\ta\tO\nterminal\tB-Application\tterminal\tO\nand\tO\tand\tO\nrunning\tO\trunning\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nVM\tB-Application\tVM\tO\nversion\tO\tversion\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nolder\tO\tolder\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nEmail\tO\tEmail\tO\npasta-users@googlegroups.com\tB-Code_Block\tpasta-users@googlegroups.com\tB-Code_Block\nfor\tO\tfor\tO\ninstallation\tO\tinstallation\tO\nissues\tO\tissues\tO\n.\tO\t.\tO\n\t\nEXECUTION\tO\tEXECUTION\tO\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\nPASTA\tB-Application\tPASTA\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncommand-line\tO\tcommand-line\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_180919\tI-Code_Block\tGR_180919\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nDocker\tB-Application\tDocker\tO\n,\tO\t,\tO\nrun\tO\trun\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_180920\tI-Code_Block\tGR_180920\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPASTA\tB-Application\tPASTA\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\npicks\tO\tpicks\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nconfigurations\tO\tconfigurations\tO\nautomatically\tO\tautomatically\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nstarting\tO\tstarting\tO\ntree\tB-Data_Structure\ttree\tO\nis\tO\tis\tO\noptional\tO\toptional\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\nprovided\tO\tprovided\tO\n,\tO\t,\tO\nPASTA\tB-Application\tPASTA\tO\nestimates\tO\testimates\tO\na\tO\ta\tO\nstarting\tO\tstarting\tO\ntree\tB-Data_Structure\ttree\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_180921\tI-Code_Block\tGR_180921\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\nsee\tO\tsee\tO\nPASTA\tB-Application\tPASTA\tO\n's\tO\t's\tO\nvarious\tO\tvarious\tO\noptions\tO\toptions\tO\nand\tO\tand\tO\ndescription\tO\tdescription\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nthey\tO\tthey\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nGUI\tO\tGUI\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\nMAC\tB-Operating_System\tMAC\tO\n.dmg\tB-File_Type\t.dmg\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nPASTA\tB-Application\tPASTA\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ninstalled\tO\tinstalled\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\ncd\tB-Code_Block\tcd\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\ninstallation\tO\tinstallation\tO\ndirectory\tO\tdirectory\tO\nand\tO\tand\tO\nrun\tO\trun\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_180922\tI-Code_Block\tGR_180922\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\non\tO\ton\tO\nsome\tO\tsome\tO\nmachines\tO\tmachines\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npythonw\tB-Code_Block\tpythonw\tB-Code_Block\nrun_pasta_gui.py\tI-Code_Block\trun_pasta_gui.py\tI-Code_Block\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nOptions\tO\tOptions\tO\n\t\nPASTA\tB-Application\tPASTA\tO\nestimates\tO\testimates\tO\nalignments\tO\talignments\tO\nand\tO\tand\tO\nmaximum\tO\tmaximum\tO\nlikelihood\tO\tlikelihood\tO\n(\tO\t(\tO\nML\tO\tML\tO\n)\tO\t)\tO\ntrees\tB-Data_Structure\ttrees\tO\nfrom\tO\tfrom\tO\nunaligned\tO\tunaligned\tO\nsequences\tO\tsequences\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\niterative\tO\titerative\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\neach\tO\teach\tO\niteration\tO\titeration\tO\n,\tO\t,\tO\nit\tO\tit\tO\nfirst\tO\tfirst\tO\nestimates\tO\testimates\tO\na\tO\ta\tO\nmultiple\tO\tmultiple\tO\nsequence\tO\tsequence\tO\nalignment\tO\talignment\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nML\tO\tML\tO\ntree\tB-Data_Structure\ttree\tO\nis\tO\tis\tO\nestimated\tO\testimated\tO\non\tO\ton\tO\n(\tO\t(\tO\na\tO\ta\tO\nmasked\tO\tmasked\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nalignment\tO\talignment\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\nPASTA\tB-Application\tPASTA\tO\nperforms\tO\tperforms\tO\n3\tO\t3\tO\niterations\tO\titerations\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\na\tO\ta\tO\nhost\tO\thost\tO\nof\tO\tof\tO\noptions\tO\toptions\tO\nenable\tO\tenable\tO\nchanging\tO\tchanging\tO\nthat\tO\tthat\tO\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\neach\tO\teach\tO\niteration\tO\titeration\tO\n,\tO\t,\tO\na\tO\ta\tO\ndivide-and-conquer\tB-Algorithm\tdivide-and-conquer\tO\nstrategy\tO\tstrategy\tO\nis\tO\tis\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nestimating\tO\testimating\tO\nthe\tO\tthe\tO\nalignment\tO\talignment\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nset\tO\tset\tO\nof\tO\tof\tO\nsequences\tO\tsequences\tO\nis\tO\tis\tO\ndivided\tO\tdivided\tO\ninto\tO\tinto\tO\nsmaller\tO\tsmaller\tO\nsubsets\tO\tsubsets\tO\n,\tO\t,\tO\neach\tO\teach\tO\nof\tO\tof\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\naligned\tO\taligned\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\nalignment\tO\talignment\tO\ntool\tO\ttool\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\nMAFFT-L-ins-i\tB-Application\tMAFFT-L-ins-i\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nsubset\tO\tsubset\tO\nalignments\tO\talignments\tO\nare\tO\tare\tO\nthen\tO\tthen\tO\npairwise\tO\tpairwise\tO\nmerged\tO\tmerged\tO\n(\tO\t(\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nusing\tO\tusing\tO\nOpal\tB-Application\tOpal\tO\n)\tO\t)\tO\nand\tO\tand\tO\nfinally\tO\tfinally\tO\nthe\tO\tthe\tO\npairwise\tO\tpairwise\tO\nmerged\tO\tmerged\tO\nalignments\tO\talignments\tO\nare\tO\tare\tO\nmerged\tO\tmerged\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nfinal\tO\tfinal\tO\nalignment\tO\talignment\tO\nusing\tO\tusing\tO\ntransitivity\tO\ttransitivity\tO\nmerge\tO\tmerge\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndivision\tO\tdivision\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndataset\tO\tdataset\tO\ninto\tO\tinto\tO\nsmaller\tO\tsmaller\tO\nsubsets\tO\tsubsets\tO\nand\tO\tand\tO\nselecting\tO\tselecting\tO\nwhich\tO\twhich\tO\nalignments\tO\talignments\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\npairwise\tO\tpairwise\tO\nmerged\tO\tmerged\tO\nis\tO\tis\tO\nguided\tO\tguided\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ntree\tB-Data_Structure\ttree\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\niteration\tO\titeration\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nstep\tO\tstep\tO\ntherefore\tO\ttherefore\tO\nneeds\tO\tneeds\tO\nan\tO\tan\tO\ninitial\tO\tinitial\tO\ntree\tB-Data_Structure\ttree\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nGUI\tO\tGUI\tO\nis\tO\tis\tO\nused\tO\tused\tO\n,\tO\t,\tO\na\tO\ta\tO\nlimited\tO\tlimited\tO\nset\tO\tset\tO\nof\tO\tof\tO\nimportant\tO\timportant\tO\noptions\tO\toptions\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nadjusted\tO\tadjusted\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\nalso\tO\talso\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nalter\tO\talter\tO\nthe\tO\tthe\tO\nbehavior\tO\tbehavior\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\n,\tO\t,\tO\nand\tO\tand\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\nlarger\tO\tlarger\tO\nsets\tO\tsets\tO\nof\tO\tof\tO\noptions\tO\toptions\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nadjusted\tO\tadjusted\tO\n.\tO\t.\tO\n\t\nOptions\tO\tOptions\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\npassed\tO\tpassed\tO\nin\tO\tin\tO\nas\tO\tas\tO\nconfiguration\tB-File_Type\tconfiguration\tO\nfiles\tO\tfiles\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nformat\tO\tformat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_180923\tI-Code_Block\tGR_180923\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWith\tO\tWith\tO\nevery\tO\tevery\tO\nrun\tO\trun\tO\n,\tO\t,\tO\nPASTA\tB-Application\tPASTA\tO\nsaves\tO\tsaves\tO\nthe\tO\tthe\tO\nconfiguration\tB-File_Type\tconfiguration\tO\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nrun\tO\trun\tO\nas\tO\tas\tO\na\tO\ta\tO\ntemporary\tO\ttemporary\tO\nfile\tO\tfile\tO\ncalled\tO\tcalled\tO\n[jobname]_temp_pasta_config.txt\tB-File_Name\t[jobname]_temp_pasta_config.txt\tB-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\noutput\tO\toutput\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nMultiple\tO\tMultiple\tO\nconfiguration\tB-File_Type\tconfiguration\tO\nfiles\tO\tfiles\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nprovided\tO\tprovided\tO\n.\tO\t.\tO\n\t\nConfiguration\tB-File_Type\tConfiguration\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nread\tO\tread\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nthey\tO\tthey\tO\noccur\tO\toccur\tO\nas\tO\tas\tO\narguments\tO\targuments\tO\n(\tO\t(\tO\nwith\tO\twith\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nlater\tO\tlater\tO\nfiles\tO\tfiles\tO\nreplacing\tO\treplacing\tO\npreviously\tO\tpreviously\tO\nread\tO\tread\tO\nvalues\tO\tvalues\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOptions\tO\tOptions\tO\nspecified\tO\tspecified\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\nare\tO\tare\tO\nread\tO\tread\tO\nlast\tO\tlast\tO\n.\tO\t.\tO\n\t\nThus\tO\tThus\tO\n,\tO\t,\tO\nthese\tO\tthese\tO\nvalues\tO\tvalues\tO\n\"\tO\t\"\tO\noverwrite\tO\toverwrite\tO\n\"\tO\t\"\tO\nany\tO\tany\tO\nsettings\tO\tsettings\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nconfiguration\tB-File_Type\tconfiguration\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\n--auto\tB-Code_Block\t--auto\tO\noption\tO\toption\tO\ncan\tO\tcan\tO\noverwrite\tO\toverwrite\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\noptions\tO\toptions\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\ncommandline\tO\tcommandline\tO\nor\tO\tor\tO\nthrough\tO\tthrough\tO\nconfiguration\tB-File_Type\tconfiguration\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\noption\tO\toption\tO\nis\tO\tis\tO\ngenerally\tO\tgenerally\tO\nnot\tO\tnot\tO\nsuggested\tO\tsuggested\tO\n(\tO\t(\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nlegacy\tO\tlegacy\tO\noption\tO\toption\tO\nfrom\tO\tfrom\tO\nSATe\tB-Application\tSATe\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nis\tO\tis\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nimportant\tO\timportant\tO\noptions\tO\toptions\tO\nused\tO\tused\tO\nby\tO\tby\tO\nPASTA\tB-Application\tPASTA\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nPASTA\tB-Application\tPASTA\tO\npicks\tO\tpicks\tO\nthese\tO\tthese\tO\nparameters\tO\tparameters\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\never\tO\tever\tO\nchange\tO\tchange\tO\nthese\tO\tthese\tO\n:\tO\t:\tO\n\t\nInitial\tO\tInitial\tO\ntree\tB-Data_Structure\ttree\tO\n:\tO\t:\tO\nIf\tO\tIf\tO\na\tO\ta\tO\nstarting\tO\tstarting\tO\ntree\tB-Data_Structure\ttree\tO\nis\tO\tis\tO\nprovided\tO\tprovided\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n-t\tB-Code_Block\t-t\tB-Code_Block\noption\tO\toption\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthat\tO\tthat\tO\ntree\tB-Data_Structure\ttree\tO\nis\tO\tis\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nsequence\tO\tsequence\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nalready\tO\talready\tO\naligned\tO\taligned\tO\nand\tO\tand\tO\n--aligned\tB-Code_Block\t--aligned\tB-Code_Block\noption\tO\toption\tO\nis\tO\tis\tO\nprovided\tO\tprovided\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nPASTA\tB-Application\tPASTA\tO\ncomputes\tO\tcomputes\tO\nan\tO\tan\tO\nML\tO\tML\tO\ntree\tB-Data_Structure\ttree\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nalignment\tO\talignment\tO\nand\tO\tand\tO\nuses\tO\tuses\tO\nthat\tO\tthat\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nstarting\tO\tstarting\tO\ntree\tB-Data_Structure\ttree\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nsequences\tO\tsequences\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\naligned\tO\taligned\tO\n(\tO\t(\tO\nor\tO\tor\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\naligned\tO\taligned\tO\nand\tO\tand\tO\n--aligned\tB-Code_Block\t--aligned\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\ngiven\tO\tgiven\tO\n)\tO\t)\tO\n,\tO\t,\tO\nPASTA\tB-Application\tPASTA\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nprocedure\tO\tprocedure\tO\ndescribed\tO\tdescribed\tO\nbelow\tO\tbelow\tO\nfor\tO\tfor\tO\nestimating\tO\testimating\tO\nthe\tO\tthe\tO\nstarting\tO\tstarting\tO\nalignment\tO\talignment\tO\nand\tO\tand\tO\ntree\tB-Data_Structure\ttree\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_180924\tI-Code_Block\tGR_180924\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nData\tO\tData\tO\ntype\tO\ttype\tO\n:\tO\t:\tO\nPASTA\tB-Application\tPASTA\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nautomatically\tO\tautomatically\tO\ndetect\tO\tdetect\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nUnless\tO\tUnless\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nDNA\tO\tDNA\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ntype\tO\ttype\tO\nusing\tO\tusing\tO\n-d\tB-Code_Block\t-d\tB-Code_Block\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nSubset\tO\tSubset\tO\nalignment\tO\talignment\tO\ntool\tO\ttool\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\nMAFFT\tB-Application\tMAFFT\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\n--aligner\tB-Code_Block\t--aligner\tB-Code_Block\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nPairwise\tO\tPairwise\tO\nmerge\tO\tmerge\tO\ntool\tO\ttool\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\nOPAL\tB-Application\tOPAL\tO\nfor\tO\tfor\tO\ndna\tO\tdna\tO\nand\tO\tand\tO\nMuscle\tO\tMuscle\tO\nfor\tO\tfor\tO\nprotein\tO\tprotein\tO\n.\tO\t.\tO\n\t\nChange\tO\tChange\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\n--merger\tB-Code_Block\t--merger\tB-Code_Block\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nTree\tB-Data_Structure\tTree\tO\nestimation\tO\testimation\tO\ntool\tO\ttool\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\nFastTree\tB-Application\tFastTree\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nset\tO\tset\tO\nit\tO\tit\tO\nto\tO\tto\tO\nRAxML\tB-Application\tRAxML\tO\nusing\tO\tusing\tO\n--tree-estimator\tB-Code_Block\t--tree-estimator\tB-Code_Block\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nBe\tO\tBe\tO\naware\tO\taware\tO\nthat\tO\tthat\tO\nRAxML\tB-Application\tRAxML\tO\ntakes\tO\ttakes\tO\nmuch\tO\tmuch\tO\nlonger\tO\tlonger\tO\nthan\tO\tthan\tO\nFastTree\tB-Application\tFastTree\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nRAxML\tB-Application\tRAxML\tO\ntree\tB-Data_Structure\ttree\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nsuggest\tO\tsuggest\tO\nobtaining\tO\tobtaining\tO\none\tO\tone\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\nPASTA\tB-Application\tPASTA\tO\nalignment\tO\talignment\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nused\tO\tused\tO\nby\tO\tby\tO\nFastTree\tB-Application\tFastTree\tO\n(\tO\t(\tO\ndefault\tO\tdefault\tO\n:\tO\t:\tO\n-gtr\tB-Code_Block\t-gtr\tO\n-gammaq\tI-Code_Block\t-gammaq\tO\nfor\tO\tfor\tO\nnt\tO\tnt\tO\nand\tO\tand\tO\n-wag\tB-Code_Block\t-wag\tO\n-gamma\tI-Code_Block\t-gamma\tO\nfor\tO\tfor\tO\naa\tO\taa\tO\n)\tO\t)\tO\nor\tO\tor\tO\nRAxML\tB-Application\tRAxML\tO\n(\tO\t(\tO\ndefault\tO\tdefault\tO\nGTRGAMMA\tB-Code_Block\tGTRGAMMA\tO\nfor\tO\tfor\tO\nnt\tO\tnt\tO\nand\tO\tand\tO\nPROTWAGCAT\tB-Code_Block\tPROTWAGCAT\tO\nfor\tO\tfor\tO\nAA\tO\tAA\tO\n)\tO\t)\tO\nby\tO\tby\tO\nupdating\tO\tupdating\tO\nthe\tO\tthe\tO\n[\tB-Code_Block\t[\tB-Code_Block\nmodel\tI-Code_Block\tmodel\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nparameter\tO\tparameter\tO\nunder\tO\tunder\tO\n[\tB-Code_Block\t[\tB-Code_Block\nFastTree\tI-Code_Block\tFastTree\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nor\tO\tor\tO\n[\tB-Code_Block\t[\tB-Code_Block\nRAxML\tI-Code_Block\tRAxML\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nheader\tO\theader\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconfig\tB-File_Type\tconfig\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmodel\tO\tmodel\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\ncurrently\tO\tcurrently\tO\nupdated\tO\tupdated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nNumber\tO\tNumber\tO\nof\tO\tof\tO\niterations\tO\titerations\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\noption\tO\toption\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\niterations\tO\titerations\tO\nis\tO\tis\tO\n--iter-limit\tB-Code_Block\t--iter-limit\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nset\tO\tset\tO\na\tO\ta\tO\ntime\tO\ttime\tO\nlimit\tO\tlimit\tO\nusing\tO\tusing\tO\n--time-limit\tB-Code_Block\t--time-limit\tB-Code_Block\n,\tO\t,\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nPASTA\tB-Application\tPASTA\tO\nruns\tO\truns\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nlimit\tO\tlimit\tO\nis\tO\tis\tO\nreached\tO\treached\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncontinues\tO\tcontinues\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\niteration\tO\titeration\tO\nis\tO\tis\tO\nfinished\tO\tfinished\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nstops\tO\tstops\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nboth\tO\tboth\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nset\tO\tset\tO\n,\tO\t,\tO\nPASTA\tB-Application\tPASTA\tO\nstops\tO\tstops\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nlimit\tO\tlimit\tO\nis\tO\tis\tO\nreached\tO\treached\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nremaining\tO\tremaining\tO\noptions\tO\toptions\tO\nfor\tO\tfor\tO\nsetting\tO\tsetting\tO\niteration\tO\titeration\tO\nlimits\tO\tlimits\tO\nare\tO\tare\tO\nlegacies\tO\tlegacies\tO\nof\tO\tof\tO\nSATe\tB-Application\tSATe\tO\nand\tO\tand\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nrecommended\tO\trecommended\tO\n.\tO\t.\tO\n\t\nMasking\tO\tMasking\tO\n:\tO\t:\tO\nSince\tO\tSince\tO\nPASTA\tB-Application\tPASTA\tO\nproduces\tO\tproduces\tO\nvery\tO\tvery\tO\ngappy\tO\tgappy\tO\nalignments\tO\talignments\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nsites\tO\tsites\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nalmost\tO\talmost\tO\nexclusively\tO\texclusively\tO\ngaps\tO\tgaps\tO\nbefore\tO\tbefore\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nML\tO\tML\tO\ntree\tB-Data_Structure\ttree\tO\nestimation\tO\testimation\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nPASTA\tB-Application\tPASTA\tO\nremoves\tO\tremoves\tO\nsites\tO\tsites\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n99.9\tO\t99.9\tO\n%\tO\t%\tO\ngaps\tO\tgaps\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthat\tO\tthat\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n--mask-gappy-sites\tB-Code_Block\t--mask-gappy-sites\tB-Code_Block\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nMaximum\tO\tMaximum\tO\nsubset\tO\tsubset\tO\nsize\tO\tsize\tO\n:\tO\t:\tO\ntwo\tO\ttwo\tO\noptions\tO\toptions\tO\nare\tO\tare\tO\nprovided\tO\tprovided\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nmaximum\tO\tmaximum\tO\nsubset\tO\tsubset\tO\nsize\tO\tsize\tO\n:\tO\t:\tO\n--max-subproblem-frac\tB-Code_Block\t--max-subproblem-frac\tB-Code_Block\nand\tO\tand\tO\n--max-subproblem-size\tB-Code_Block\t--max-subproblem-size\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n--max-subproblem-frac\tB-Code_Block\t--max-subproblem-frac\tB-Code_Block\noption\tO\toption\tO\nis\tO\tis\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nbetween\tO\tbetween\tO\n0\tO\t0\tO\nand\tO\tand\tO\n1\tO\t1\tO\nand\tO\tand\tO\nsets\tO\tsets\tO\nthe\tO\tthe\tO\nmaximum\tO\tmaximum\tO\nsubset\tO\tsubset\tO\nsize\tO\tsize\tO\nas\tO\tas\tO\na\tO\ta\tO\nfraction\tO\tfraction\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\ndataset\tO\tdataset\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n--max-subproblem-size\tB-Code_Block\t--max-subproblem-size\tB-Code_Block\noption\tO\toption\tO\nsets\tO\tsets\tO\nthe\tO\tthe\tO\nmaximum\tO\tmaximum\tO\nsize\tO\tsize\tO\nas\tO\tas\tO\nan\tO\tan\tO\nabsolute\tO\tabsolute\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nboth\tO\tboth\tO\nnumbers\tO\tnumbers\tO\nare\tO\tare\tO\nprovided\tO\tprovided\tO\n(\tO\t(\tO\nin\tO\tin\tO\neither\tO\teither\tO\nconfiguration\tO\tconfiguration\tO\nfile\tO\tfile\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nLARGER\tO\tLARGER\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nan\tO\tan\tO\nunfortunate\tO\tunfortunate\tO\ndesign\tO\tdesign\tO\n(\tO\t(\tO\nlegacy\tO\tlegacy\tO\nof\tO\tof\tO\nSATe\tB-Application\tSATe\tO\n)\tO\t)\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nquite\tO\tquite\tO\nconfusing\tO\tconfusing\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nalways\tO\talways\tO\ndouble\tO\tdouble\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nsubset\tO\tsubset\tO\nsize\tO\tsize\tO\nreported\tO\treported\tO\nby\tO\tby\tO\nPASTA\tB-Application\tPASTA\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nintended\tO\tintended\tO\n.\tO\t.\tO\n\t\nTemporary\tO\tTemporary\tO\nfiles\tO\tfiles\tO\n:\tO\t:\tO\nPASTA\tB-Application\tPASTA\tO\ncreates\tO\tcreates\tO\nmany\tO\tmany\tO\ntemporary\tO\ttemporary\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndeletes\tO\tdeletes\tO\nmost\tO\tmost\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncontrol\tO\tcontrol\tO\nthe\tO\tthe\tO\nbehavior\tO\tbehavior\tO\nof\tO\tof\tO\ntemporary\tO\ttemporary\tO\nfiles\tO\tfiles\tO\nusing\tO\tusing\tO\n--temporaries\tB-Code_Block\t--temporaries\tB-Code_Block\n(\tO\t(\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ntempdirectory\tO\ttempdirectory\tO\n)\tO\t)\tO\n,\tO\t,\tO\n\t\n-k\tB-Code_Block\t-k\tB-Code_Block\n(\tO\t(\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\ntemporaries\tO\ttemporaries\tO\n)\tO\t)\tO\nand\tO\tand\tO\n--keepalignmenttemps\tB-Code_Block\t--keepalignmenttemps\tB-Code_Block\n(\tO\t(\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\neven\tO\teven\tO\nmore\tO\tmore\tO\ntemporaries\tO\ttemporaries\tO\n)\tO\t)\tO\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nPASTA\tB-Application\tPASTA\tO\nalso\tO\talso\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\ntemporary\tO\ttemporary\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\ndirectory\tO\tdirectory\tO\nand\tO\tand\tO\nnever\tO\tnever\tO\ndeletes\tO\tdeletes\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthese\tO\tthese\tO\ntemporary\tO\ttemporary\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\npotentially\tO\tpotentially\tO\nuseful\tO\tuseful\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n[jobname]_temp_*\tB-File_Name\t[jobname]_temp_*\tB-Code_Block\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimportant\tO\timportant\tO\nfiles\tO\tfiles\tO\ncreated\tO\tcreated\tO\nare\tO\tare\tO\nalignments\tO\talignments\tO\nand\tO\tand\tO\ntrees\tB-Data_Structure\ttrees\tO\nproduced\tO\tproduced\tO\nin\tO\tin\tO\nindividual\tO\tindividual\tO\nsteps\tO\tsteps\tO\n(\tO\t(\tO\nalignments\tO\talignments\tO\nare\tO\tare\tO\nsaved\tO\tsaved\tO\nboth\tO\tboth\tO\nin\tO\tin\tO\nmasked\tO\tmasked\tO\nand\tO\tand\tO\nunmasked\tO\tunmasked\tO\nversions\tO\tversions\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nintermediate\tO\tintermediate\tO\nfiles\tO\tfiles\tO\nall\tO\tall\tO\nhave\tO\thave\tO\ninternal\tO\tinternal\tO\nPASTA\tB-Application\tPASTA\tO\nsequence\tO\tsequence\tO\nnames\tO\tnames\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nslightly\tO\tslightly\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nactual\tO\tactual\tO\nsequence\tO\tsequence\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmapping\tO\tmapping\tO\nbetween\tO\tbetween\tO\nPASTA\tB-Application\tPASTA\tO\nand\tO\tand\tO\nreal\tO\treal\tO\nnames\tO\tnames\tO\nare\tO\tare\tO\ngiven\tO\tgiven\tO\nalso\tO\talso\tO\nas\tO\tas\tO\na\tO\ta\tO\ntemporary\tO\ttemporary\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n[jobname]_temp_name_translation.txt\tB-File_Name\t[jobname]_temp_name_translation.txt\tB-Code_Block\n.\tO\t.\tO\n\t\nDry\tO\tDry\tO\nrun\tO\trun\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\n--exportconfig\tB-Code_Block\t--exportconfig\tB-Code_Block\noption\tO\toption\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\ncrate\tO\tcrate\tO\na\tO\ta\tO\nconfig\tO\tconfig\tO\nfile\tO\tfile\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nchecked\tO\tchecked\tO\nfor\tO\tfor\tO\ncorrectness\tO\tcorrectness\tO\nbefore\tO\tbefore\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\njob\tO\tjob\tO\n.\tO\t.\tO\n\t\nCPUs\tB-Device\tCPUs\tO\n:\tO\t:\tO\nPASTA\tB-Application\tPASTA\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\navailable\tO\tavailable\tO\ncpus\tB-Device\tcpus\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nnum_cpus\tB-Library_Variable\tnum_cpus\tB-Code_Block\nto\tO\tto\tO\nadjust\tO\tadjust\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nthreads\tO\tthreads\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nremaining\tO\tremaining\tO\noptions\tO\toptions\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nPASTA\tB-Application\tPASTA\tO\nare\tO\tare\tO\nmostly\tO\tmostly\tO\nlegacies\tO\tlegacies\tO\nfrom\tO\tfrom\tO\nSATe\tB-Application\tSATe\tO\nand\tO\tand\tO\nare\tO\tare\tO\ngenerally\tO\tgenerally\tO\nnot\tO\tnot\tO\nuseful\tO\tuseful\tO\nfor\tO\tfor\tO\nPASTA\tB-Application\tPASTA\tO\nruns\tO\truns\tO\n.\tO\t.\tO\n\t\nOutput\tO\tOutput\tO\n\t\nPASTA\tB-Application\tPASTA\tO\noutputs\tO\toutputs\tO\nan\tO\tan\tO\nalignment\tO\talignment\tO\nand\tO\tand\tO\na\tO\ta\tO\ntree\tB-Data_Structure\ttree\tO\n,\tO\t,\tO\nin\tO\tin\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\na\tO\ta\tO\nhost\tO\thost\tO\nof\tO\tof\tO\nother\tO\tother\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nvarious\tO\tvarious\tO\noutput\tO\toutput\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\ndescribed\tO\tdescribed\tO\nin\tO\tin\tO\nmore\tO\tmore\tO\ndetail\tO\tdetail\tO\nin\tO\tin\tO\nour\tO\tour\tO\ntutorial\tO\ttutorial\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nsupport\tO\tsupport\tO\nvalues\tO\tvalues\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nPASTA\tB-Application\tPASTA\tO\noutput\tO\toutput\tO\ntree\tB-Data_Structure\ttree\tO\nare\tO\tare\tO\nlocal\tO\tlocal\tO\nSH-like\tO\tSH-like\tO\nsupport\tO\tsupport\tO\nvalues\tO\tvalues\tO\ncomputed\tO\tcomputed\tO\nby\tO\tby\tO\nFastTree\tB-Application\tFastTree\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nbootstrap\tO\tbootstrap\tO\nsupport\tO\tsupport\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nreliable\tO\treliable\tO\nmeasure\tO\tmeasure\tO\nof\tO\tof\tO\nsupport\tO\tsupport\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nbootstrapping\tO\tbootstrapping\tO\nprocedure\tO\tprocedure\tO\n,\tO\t,\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\nPASTA\tB-Application\tPASTA\tO\nalignments\tO\talignments\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nRAxML\tB-Application\tRAxML\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\npurpose\tO\tpurpose\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nDebug\tO\tDebug\tO\n\t\nTo\tO\tTo\tO\nshow\tO\tshow\tO\ndebugging\tO\tdebugging\tO\ninformation\tO\tinformation\tO\n,\tO\t,\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nenvironmental\tO\tenvironmental\tO\nvariables\tO\tvariables\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_180925\tI-Code_Block\tGR_180925\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nlast\tO\tlast\tO\nline\tO\tline\tO\nis\tO\tis\tO\noptional\tO\toptional\tO\n)\tO\t)\tO\n\t\nLICENSE\tO\tLICENSE\tO\n\t\nPASTA\tB-Application\tPASTA\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlicense\tO\tlicense\tO\nas\tO\tas\tO\nSATe\tB-Application\tSATe\tO\n(\tO\t(\tO\nGNU\tB-Licence\tGNU\tO\nPublic\tI-Licence\tPublic\tO\nLicense\tI-Licence\tLicense\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndhrrgn/codeigniter\tO\tdhrrgn/codeigniter\tO\n-uhoh\tO\t-uhoh\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dhrrgn/codeigniter-uhoh/issues/3\tO\thttps://github.com/dhrrgn/codeigniter-uhoh/issues/3\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nhv15\tB-User_Name\thv15\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nsolved\tO\tsolved\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nhaving\tO\thaving\tO\nwith\tO\twith\tO\nuhoh\tO\tuhoh\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/1\tO\thttps://github.com/op-jenkins/op-build/issues/1\tO\n\t\nretest\tO\tretest\tO\nthis\tO\tthis\tO\nplease\tO\tplease\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/9\tO\thttps://github.com/demigor/lex.db/issues/9\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nreproduce\tO\treproduce\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\npublic\tB-Code_Block\tpublic\tO\nclass\tI-Code_Block\tclass\tO\nTemplateModel\tI-Code_Block\tTemplateModel\tO\n{\tI-Code_Block\t{\tO\npublic\tI-Code_Block\tpublic\tO\nint\tI-Code_Block\tint\tO\nId\tI-Code_Block\tId\tO\n{\tI-Code_Block\t{\tO\nget\tI-Code_Block\tget\tO\n;\tI-Code_Block\t;\tO\nset\tI-Code_Block\tset\tO\n;\tI-Code_Block\t;\tO\n}\tI-Code_Block\t}\tO\n///\tI-Code_Block\t///\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_37401\tI-Code_Block\tGR_37401\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_37402\tI-Code_Block\tGR_37402\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/31\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/31\tO\n\t\nHmm\tO\tHmm\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nbinary\tO\tbinary\tO\nbuild\tO\tbuild\tO\nof\tO\tof\tO\nUnreal\tB-Application\tUnreal\tO\nEngine\tI-Application\tEngine\tO\nis\tO\tis\tO\nmissing\tO\tmissing\tO\nthe\tO\tthe\tO\nTools\tB-File_Name\tTools\tO\nfolder\tO\tfolder\tO\ninside\tO\tinside\tO\nGoogleARCore\tB-Application\tGoogleARCore\tO\nplugin\tI-Application\tplugin\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nUnreal\tB-Application\tUnreal\tO\nEngine\tI-Application\tEngine\tO\nand\tO\tand\tO\nbuild\tO\tbuild\tO\nyour\tO\tyour\tO\nself\tO\tself\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\n4.20\tB-Version\t4.20\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://github.com/EpicGames/UnrealEngine\tO\thttps://github.com/EpicGames/UnrealEngine\tO\nof\tO\tof\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nGoogleARCore\tB-Application\tGoogleARCore\tO\nintegration\tO\tintegration\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nGoogle\tB-Organization\tGoogle\tO\n's\tO\t's\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nUnreal\tB-Application\tUnreal\tO\nEngine\tI-Application\tEngine\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://github.com/google-ar-unreal/UnrealEngine\tO\thttps://github.com/google-ar-unreal/UnrealEngine\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nGoogle\tB-Organization\tGoogle\tO\n's\tO\t's\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\non\tO\ton\tO\n4.19\tB-Version\t4.19\tO\nfor\tO\tfor\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nWilsonHalChen/GeneralTimeToContact\tO\tWilsonHalChen/GeneralTimeToContact\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/WilsonHalChen/GeneralTimeToContact\tO\thttps://github.com/WilsonHalChen/GeneralTimeToContact\tO\n\t\nGeneralTimeToContact\tO\tGeneralTimeToContact\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkamarrcos/Hello\tO\tkamarrcos/Hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/kamarrcos/Hello-world/issues/1\tO\thttps://github.com/kamarrcos/Hello-world/issues/1\tO\n\t\nTest\tO\tTest\tO\npull\tO\tpull\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlobbin/chrome\tO\tlobbin/chrome\tO\n-die2nitemapupdater\tO\t-die2nitemapupdater\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lobbin/chrome-die2nitemapupdater/issues/2\tO\thttps://github.com/lobbin/chrome-die2nitemapupdater/issues/2\tO\n\t\nEvery\tO\tEvery\tO\ntime\tO\ttime\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\none\tO\tone\tO\nsquare\tO\tsquare\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbutton\tB-Device\tbutton\tO\nfor\tO\tfor\tO\nupdating\tO\tupdating\tO\nthe\tO\tthe\tO\nmap\tB-User_Interface_Element\tmap\tO\ndisappears\tO\tdisappears\tO\n,\tO\t,\tO\nand\tO\tand\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nadded\tO\tadded\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nrefresh\tO\trefresh\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app/issues/12\tO\thttps://github.com/lbarasti/gps_app/issues/12\tO\n\t\nMaybe\tO\tMaybe\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nindicate\tO\tindicate\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nbus\tO\tbus\tO\nhas\tO\thas\tO\nbroken\tO\tbroken\tO\ndown\tO\tdown\tO\nor\tO\tor\tO\na\tO\ta\tO\nreplacement\tO\treplacement\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\n,\tO\t,\tO\nor\tO\tor\tO\njust\tO\tjust\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\n(\tO\t(\tO\ntime\tO\ttime\tO\nlimited\tO\tlimited\tO\nand\tO\tand\tO\nmanageable\tO\tmanageable\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\n)\tO\t)\tO\nmessages\tO\tmessages\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nwebpage\tB-User_Interface_Element\twebpage\tO\ncan\tO\tcan\tO\npick\tO\tpick\tO\nup\tO\tup\tO\nand\tO\tand\tO\ndisplay\tO\tdisplay\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nbus\tO\tbus\tO\nbreaks\tO\tbreaks\tO\ndown\tO\tdown\tO\nat\tO\tat\tO\n0825\tO\t0825\tO\n,\tO\t,\tO\ndriver\tO\tdriver\tO\nor\tO\tor\tO\nreception\tO\treception\tO\nor\tO\tor\tO\nselected\tO\tselected\tO\nadmins\tO\tadmins\tO\npost\tO\tpost\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\n\"\tO\t\"\tO\nblack\tO\tblack\tO\nbus\tO\tbus\tO\nnot\tO\tnot\tO\nrunning\tO\trunning\tO\n\"\tO\t\"\tO\neither\tO\teither\tO\nwith\tO\twith\tO\na\tO\ta\tO\ntimeout\tO\ttimeout\tO\nof\tO\tof\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nadministrated\tO\tadministrated\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/34\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/34\tO\n\t\nIssue\tO\tIssue\tO\nresolved\tO\tresolved\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ninvitation\tO\tinvitation\tO\nwas\tO\twas\tO\navailable\tO\tavailable\tO\non\tO\ton\tO\ngithub\tB-Website\tgithub\tO\n,\tO\t,\tO\nemail\tO\temail\tO\ncame\tO\tcame\tO\nafter\tO\tafter\tO\nI\tO\tI\tO\naccepted\tO\taccepted\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\n4.20arcore\tB-Version\t4.20arcore\tO\n,\tO\t,\tO\nbuild\tO\tbuild\tO\n,\tO\t,\tO\nand\tO\tand\tO\nload\tO\tload\tO\neditor\tO\teditor\tO\nvia\tO\tvia\tO\nVS\tB-Application\tVS\tO\nwith\tO\twith\tO\nplugin\tO\tplugin\tO\nincluded\tO\tincluded\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSUSTC/sustech\tO\tSUSTC/sustech\tO\n-slides\tO\t-slides\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SUSTC/sustech-slides/issues/1\tO\thttps://github.com/SUSTC/sustech-slides/issues/1\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nquality\tO\tquality\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nimproved\tO\timproved\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nreverted\tO\treverted\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nRahmadax/CaveExplorer\tO\tRahmadax/CaveExplorer\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/Rahmadax/CaveExplorer\tO\thttps://github.com/Rahmadax/CaveExplorer\tO\n\t\nCaveExplorer\tO\tCaveExplorer\tO\n\t\nChristmas\tO\tChristmas\tO\nProject\tO\tProject\tO\n2017\tO\t2017\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/35\tO\thttps://github.com/rpcope1/Hantek6022API/issues/35\tO\n\t\n\t\nsample_rate_index\tB-Code_Block\tsample_rate_index\tO\n=\tI-Code_Block\t=\tO\n0x1E\tI-Code_Block\t0x1E\tO\n\t\n0x1E\tO\t0x1E\tO\nis\tO\tis\tO\n30\tO\t30\tO\nin\tO\tin\tO\ndecimal\tO\tdecimal\tO\nand\tO\tand\tO\nstands\tO\tstands\tO\nfor\tO\tfor\tO\n30\tO\t30\tO\nMHz\tO\tMHz\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmodded\tO\tmodded\tO\nfirmware\tO\tfirmware\tO\nand\tO\tand\tO\ncustom\tO\tcustom\tO\nfirmware\tO\tfirmware\tO\nsupport\tO\tsupport\tO\nsome\tO\tsome\tO\nnew\tO\tnew\tO\nsample\tO\tsample\tO\nrates\tO\trates\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nstock\tO\tstock\tO\nfirmware\tO\tfirmware\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nsample\tO\tsample\tO\nrates\tO\trates\tO\nis\tO\tis\tO\n:\tO\t:\tO\n10\tO\t10\tO\n,\tO\t,\tO\n20\tO\t20\tO\n,\tO\t,\tO\n50\tO\t50\tO\n=\tO\t=\tO\n100/200/500kHz\tO\t100/200/500kHz\tO\n,\tO\t,\tO\n1\tO\t1\tO\n,\tO\t,\tO\n2\tO\t2\tO\n,\tO\t,\tO\n4\tO\t4\tO\n,\tO\t,\tO\n8\tO\t8\tO\n,\tO\t,\tO\n12\tO\t12\tO\n,\tO\t,\tO\n16\tO\t16\tO\n,\tO\t,\tO\n24\tO\t24\tO\n,\tO\t,\tO\n30\tO\t30\tO\n,\tO\t,\tO\n48\tO\t48\tO\n=\tO\t=\tO\nsamplerate\tO\tsamplerate\tO\nin\tO\tin\tO\nMHz\tO\tMHz\tO\n.\tO\t.\tO\n\t\n48\tO\t48\tO\nMHz\tO\tMHz\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nUSB\tB-Device\tUSB\tO\n2.0\tB-Version\t2.0\tO\nis\tO\tis\tO\ntoo\tO\ttoo\tO\nslow\tO\tslow\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nsample_rate\tB-Library_Variable\tsample_rate\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nread_async\tB-Library_Function\tread_async\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\nhas\tO\thas\tO\nalways\tO\talways\tO\na\tO\ta\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\n12288000\tO\t12288000\tO\n(\tO\t(\tO\nwithin\tO\twithin\tO\none\tO\tone\tO\nsec\tO\tsec\tO\n)\tO\t)\tO\n,\tO\t,\tO\nregardless\tO\tregardless\tO\nof\tO\tof\tO\nchosen\tO\tchosen\tO\nsample\tO\tsample\tO\nrate\tO\trate\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nlooks\tO\tlooks\tO\nstrange\tO\tstrange\tO\n(\tO\t(\tO\ngaps\tO\tgaps\tO\nbetween\tO\tbetween\tO\nmeasured\tO\tmeasured\tO\nsamples\tO\tsamples\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\na\tO\ta\tO\nlimitation\tO\tlimitation\tO\n,\tO\t,\tO\nor\tO\tor\tO\nam\tO\tam\tO\nI\tO\tI\tO\nnot\tO\tnot\tO\nunderstanding\tO\tunderstanding\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nwhat\tO\twhat\tO\nhappens\tO\thappens\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nDid\tO\tDid\tO\nyou\tO\tyou\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\nmodded\tO\tmodded\tO\nfirmware\tO\tfirmware\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\ncustom\tO\tcustom\tO\nfirmware\tO\tfirmware\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\ntry\tO\ttry\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nUSB\tB-Device\tUSB\tO\nport/hub\tO\tport/hub\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nread\tO\tread\tO\nup\tO\tup\tO\nto\tO\tto\tO\n12\tO\t12\tO\nMB/s\tO\tMB/s\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nUSB\tB-Device\tUSB\tO\ndevice\tO\tdevice\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbus\tO\tbus\tO\nthat\tO\tthat\tO\nneeds\tO\tneeds\tO\nsome\tO\tsome\tO\nbandwidth\tO\tbandwidth\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nalso\tO\talso\tO\nexplains\tO\texplains\tO\nthe\tO\tthe\tO\ngaps\tO\tgaps\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsample\tO\tsample\tO\nup\tO\tup\tO\nto\tO\tto\tO\n30\tO\t30\tO\nMB/s\tO\tMB/s\tO\nwith\tO\twith\tO\nvery\tO\tvery\tO\nfew\tO\tfew\tO\ngaps\tO\tgaps\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nchoose\tO\tchoose\tO\n8MB/s\tO\t8MB/s\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nsample_rate_index\tB-Library_Variable\tsample_rate_index\tO\nto\tO\tto\tO\n8\tO\t8\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/26\tO\thttps://github.com/smirarab/pasta/issues/26\tO\n\t\nEliminated\tO\tEliminated\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nprint\tO\tprint\tO\ncommands\tO\tcommands\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nciti-onboarding/mandacaruBack\tO\tciti-onboarding/mandacaruBack\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/citi-onboarding/mandacaruBack/issues/1\tO\thttps://github.com/citi-onboarding/mandacaruBack/issues/1\tO\n\t\nfaltando\tO\tfaltando\tO\ncolocar\tO\tcolocar\tO\no\tO\to\tO\nvídeo\tO\tvídeo\tO\npromocional\tO\tpromocional\tO\n(\tO\t(\tO\njá\tO\tjá\tO\ntemos\tO\ttemos\tO\n,\tO\t,\tO\namém\tO\tamém\tO\n)\tO\t)\tO\ne\tO\te\tO\no\tO\to\tO\nfavicon\tO\tfavicon\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/5\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/5\tO\n\t\nFix\tO\tFix\tO\nsome\tO\tsome\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nloading\tO\tloading\tO\nof\tO\tof\tO\nmodules\tO\tmodules\tO\n.\tO\t.\tO\n\t\nLoaders\tO\tLoaders\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\nas\tO\tas\tO\npackages\tO\tpackages\tO\nto\tO\tto\tO\nload\tO\tload\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthis\tO\tthis\tO\nmakes\tO\tmakes\tO\nwebpack-sandboxed\tO\twebpack-sandboxed\tO\nmore\tO\tmore\tO\nresilient\tO\tresilient\tO\nto\tO\tto\tO\nawkward\tO\tawkward\tO\ndirectory\tO\tdirectory\tO\nconfigurations\tO\tconfigurations\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nin\tO\tin\tO\nexample/\tB-Code_Block\texample/\tB-Code_Block\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucieSteiner/AMT_feature1\tO\tLucieSteiner/AMT_feature1\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucieSteiner/AMT_feature1/issues/2\tO\thttps://github.com/LucieSteiner/AMT_feature1/issues/2\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\ndetail\tO\tdetail\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\ntransitions\tO\ttransitions\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nchecked\tO\tchecked\tO\nand\tO\tand\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nconsistent\tO\tconsistent\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/10\tO\thttps://github.com/op-jenkins/op-build/issues/10\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/libp2p/interface-record-store/issues/9\tO\thttps://github.com/libp2p/interface-record-store/issues/9\tO\n\t\nHello\tO\tHello\tO\nlovely\tO\tlovely\tO\nhumans\tO\thumans\tO\n,\tO\t,\tO\n\t\nmultihashing\tO\tmultihashing\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n0.3.1\tB-Version\t0.3.1\tO\n.\tO\t.\tO\n\t\nState\tO\tState\tO\n\t\n\t\nUpdate\tO\tUpdate\tO\n:rocket\tO\t:rocket\tO\n:\tO\t:\tO\n\t\n\t\nDependency\tO\tDependency\tO\n\t\n\t\n\t\nmultihashing\tO\tmultihashing\tO\n\t\n\t\nNew\tO\tNew\tO\nversion\tO\tversion\tO\n\t\n\t\n\t\n0.3.1\tB-Version\t0.3.1\tO\n\t\n\t\nType\tO\tType\tO\n\t\n\t\n\t\ndependency\tO\tdependency\tO\n\t\n\t\nThis\tO\tThis\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nWithout\tO\tWithout\tO\naccepting\tO\taccepting\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nnew\tO\tnew\tO\nfeatures\tO\tfeatures\tO\n,\tO\t,\tO\nfixes\tO\tfixes\tO\nand\tO\tand\tO\nperf\tO\tperf\tO\nimprovements\tO\timprovements\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmaintainers\tO\tmaintainers\tO\nworked\tO\tworked\tO\non\tO\ton\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nget\tO\tget\tO\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nmultihashing\tO\tmultihashing\tO\n.\tO\t.\tO\n\t\nGiven\tO\tGiven\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndecent\tO\tdecent\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\n,\tO\t,\tO\na\tO\ta\tO\npassing\tO\tpassing\tO\nbuild\tO\tbuild\tO\nis\tO\tis\tO\na\tO\ta\tO\nstrong\tO\tstrong\tO\nindicator\tO\tindicator\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nby\tO\tby\tO\nmerging\tO\tmerging\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nchange\tO\tchange\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nthis\tO\tthis\tO\nbranch\tO\tbranch\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimprove\tO\timprove\tO\nthese\tO\tthese\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n?\tO\t?\tO\n\t\nDid\tO\tDid\tO\nI\tO\tI\tO\nreport\tO\treport\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nunsure\tO\tunsure\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nfrequently\tO\tfrequently\tO\nasked\tO\tasked\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\na\tO\ta\tO\nbot\tO\tbot\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\nteach\tO\tteach\tO\nme\tO\tme\tO\nnew\tO\tnew\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nthem\tO\tthem\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\nrock\tO\trock\tO\n!\tO\t!\tO\n\t\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nGitHub\tO\tGitHub\tO\nRelease\tO\tRelease\tO\n\t\nBug\tO\tBug\tO\nFixes\tO\tFixes\tO\n\t\ndeps\tO\tdeps\tO\n:\tO\t:\tO\ndepend\tO\tdepend\tO\non\tO\ton\tO\nfixed\tO\tfixed\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nmultihashes\tO\tmultihashes\tO\n(\tO\t(\tO\nc859a5\tO\tc859a5\tO\n3)\tO\t3)\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\ndiffers\tO\tdiffers\tO\nby\tO\tby\tO\n7\tO\t7\tO\ncommits\tO\tcommits\tO\n.\tO\t.\tO\n\t\nd784617\tB-Code_Block\td784617\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nrelease\tI-Code_Block\trelease\tI-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\nv0.3.1\tI-Code_Block\tv0.3.1\tI-Code_Block\n\t\nb2dc6fa\tB-Code_Block\tb2dc6fa\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\ncontributors\tI-Code_Block\tcontributors\tI-Code_Block\n\t\nc859a53\tB-Code_Block\tc859a53\tB-Code_Block\nfix(deps)\tI-Code_Block\tfix(deps)\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ndepend\tI-Code_Block\tdepend\tI-Code_Block\non\tI-Code_Block\ton\tI-Code_Block\nfixed\tI-Code_Block\tfixed\tI-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\nof\tI-Code_Block\tof\tI-Code_Block\nmultihashes\tI-Code_Block\tmultihashes\tI-Code_Block\n\t\n2e8d8df\tB-Code_Block\t2e8d8df\tB-Code_Block\nadded\tI-Code_Block\tadded\tI-Code_Block\nblake2b/s\tI-Code_Block\tblake2b/s\tI-Code_Block\nsupport\tI-Code_Block\tsupport\tI-Code_Block\n\t\n14186b2\tB-Code_Block\t14186b2\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nrelease\tI-Code_Block\trelease\tI-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\nv0.2.3\tI-Code_Block\tv0.2.3\tI-Code_Block\n\t\n0db8379\tB-Code_Block\t0db8379\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\ncontributors\tI-Code_Block\tcontributors\tI-Code_Block\n\t\n4e3cf24\tB-Code_Block\t4e3cf24\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nnew\tI-Code_Block\tnew\tI-Code_Block\naegir\tI-Code_Block\taegir\tI-Code_Block\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndiff\tO\tdiff\tO\n.\tO\t.\tO\n\t\n✨\tO\t✨\tO\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nall\tO\tall\tO\nnew\tO\tnew\tO\nGreenkeeper\tB-Application\tGreenkeeper\tO\nGitHub\tB-Website\tGitHub\tO\nIntegration\tO\tIntegration\tO\n✨\tO\t✨\tO\n\t\nWith\tO\tWith\tO\nIntegrations\tO\tIntegrations\tO\nfirst-class\tO\tfirst-class\tO\nbot\tO\tbot\tO\nsupport\tO\tsupport\tO\nlanded\tO\tlanded\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nand\tO\tand\tO\nwe\tO\twe\tO\n've\tO\t've\tO\nrewritten\tO\trewritten\tO\nGreenkeeper\tB-Application\tGreenkeeper\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nfull\tO\tfull\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSimpler\tO\tSimpler\tO\nsetup\tO\tsetup\tO\n,\tO\t,\tO\nfewer\tO\tfewer\tO\npull-requests\tO\tpull-requests\tO\n,\tO\t,\tO\nfaster\tO\tfaster\tO\nthan\tO\tthan\tO\never\tO\tever\tO\n.\tO\t.\tO\n\t\nScreencast\tO\tScreencast\tO\nTry\tO\tTry\tO\nit\tO\tit\tO\ntoday\tO\ttoday\tO\n.\tO\t.\tO\n\t\nFree\tO\tFree\tO\nfor\tO\tfor\tO\nprivate\tO\tprivate\tO\nrepositories\tO\trepositories\tO\nduring\tO\tduring\tO\nbeta\tO\tbeta\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/1\tO\thttps://github.com/spacetelescope/specview/issues/1\tO\n\t\nGenerated\tO\tGenerated\tO\nfrom\tO\tfrom\tO\ntrello\tB-Application\ttrello\tO\nfeature\tO\tfeature\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nproposing\tO\tproposing\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nediting\tO\tediting\tO\ninterface\tO\tinterface\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nplace\tO\tplace\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nspectral\tO\tspectral\tO\nobject\tO\tobject\tO\npane\tO\tpane\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nviewer\tB-User_Interface_Element\tviewer\tO\nwindow\tI-User_Interface_Element\twindow\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npresumes\tO\tpresumes\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nexisting\tO\texisting\tO\nobjects\tO\tobjects\tO\nhave\tO\thave\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nname\tO\tname\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\nan\tO\tan\tO\nexpression\tO\texpression\tO\n(\tO\t(\tO\nand\tO\tand\tO\neven\tO\teven\tO\nif\tO\tif\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nobjects\tO\tobjects\tO\nare\tO\tare\tO\nsubsequently\tO\tsubsequently\tO\ndeleted\tO\tdeleted\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nviewer\tB-User_Interface_Element\tviewer\tO\npane\tI-User_Interface_Element\tpane\tO\n,\tO\t,\tO\nany\tO\tany\tO\nexpressions\tO\texpressions\tO\nthat\tO\tthat\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\nimply\tO\timply\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nobjects\tO\tobjects\tO\nstill\tO\tstill\tO\nare\tO\tare\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nreference\tO\treference\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\ngarbage\tO\tgarbage\tO\ncollected\tO\tcollected\tO\n)\tO\t)\tO\n[\tO\t[\tO\nthat\tO\tthat\tO\nmakes\tO\tmakes\tO\nme\tO\tme\tO\nwonder\tO\twonder\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\noptional\tO\toptional\tO\ndialog\tO\tdialog\tO\nfor\tO\tfor\tO\navailable\tO\tavailable\tO\nobjects\tO\tobjects\tO\nfor\tO\tfor\tO\nselection\tO\tselection\tO\nto\tO\tto\tO\nput\tO\tput\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nviewer\tB-User_Interface_Element\tviewer\tO\n]\tO\t]\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nenvision\tO\tenvision\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nviewer\tB-User_Interface_Element\tviewer\tO\npane\tI-User_Interface_Element\tpane\tO\nhas\tO\thas\tO\na\tO\ta\tO\nright\tO\tright\tO\nbutton\tB-User_Interface_Element\tbutton\tO\ndrop\tI-User_Interface_Element\tdrop\tO\ndown\tI-User_Interface_Element\tdown\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nadd\tO\tadd\tO\nexpression\tO\texpression\tO\n\"\tO\t\"\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nchosen\tO\tchosen\tO\n,\tO\t,\tO\nan\tO\tan\tO\nediting\tO\tediting\tO\nmode\tO\tmode\tO\nbegins\tO\tbegins\tO\n(\tO\t(\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ndialog\tO\tdialog\tO\n,\tO\t,\tO\nor\tO\tor\tO\njust\tO\tjust\tO\nediting\tO\tediting\tO\na\tO\ta\tO\nline\tO\tline\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npane\tB-User_Interface_Element\tpane\tO\nit\tO\tit\tO\nself--I\tO\tself--I\tO\n'\tO\t'\tO\nd\tO\td\tO\nargue\tO\targue\tO\nwhatever\tO\twhatever\tO\nis\tO\tis\tO\neasiest\tO\teasiest\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nnow\tO\tnow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nNormally\tO\tNormally\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nsay\tO\tsay\tO\nwe\tO\twe\tO\nallow\tO\tallow\tO\na\tO\ta\tO\nfree\tO\tfree\tO\nform\tO\tform\tO\nediting\tO\tediting\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nobject\tO\tobject\tO\nare\tO\tare\tO\nreferred\tO\treferred\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nexist\tO\texist\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nsyntax\tO\tsyntax\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\nis\tO\tis\tO\ninvalid\tO\tinvalid\tO\n,\tO\t,\tO\nor\tO\tor\tO\nuses\tO\tuses\tO\nfunctional\tO\tfunctional\tO\nforms\tO\tforms\tO\nnot\tO\tnot\tO\navailable\tO\tavailable\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nfound\tO\tfound\tO\n,\tO\t,\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nraised\tO\traised\tO\n.\tO\t.\tO\n\t\nPreferably\tO\tPreferably\tO\nthe\tO\tthe\tO\nexpression\tB-User_Interface_Element\texpression\tO\ntext\tI-User_Interface_Element\ttext\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nfurther\tO\tfurther\tO\nediting\tO\tediting\tO\n(\tO\t(\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nforce\tO\tforce\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nre-enter\tO\tre-enter\tO\nit\tO\tit\tO\nall\tO\tall\tO\nover\tO\tover\tO\nagain\tO\tagain\tO\n)\tO\t)\tO\nso\tO\tso\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\ncorrect\tO\tcorrect\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nmore\tO\tmore\tO\nfunctionality\tO\tfunctionality\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nsomeone\tO\tsomeone\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nexisting\tO\texisting\tO\nobjects\tO\tobjects\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsimplicity\tO\tsimplicity\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nsay\tO\tsay\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nname\tO\tname\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nsimpler\tO\tsimpler\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nimplementation\tO\timplementation\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nexpression\tO\texpression\tO\nitself\tO\titself\tO\nget\tO\tget\tO\na\tO\ta\tO\nname\tO\tname\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nreferred\tO\treferred\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\nso\tO\tso\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\nreferred\tO\treferred\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\nperhaps\tO\tperhaps\tO\nexpr1\tB-Variable_Name\texpr1\tO\n,\tO\t,\tO\nexpr2\tB-Variable_Name\texpr2\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\nis\tO\tis\tO\nan\tO\tan\tO\nassignment\tO\tassignment\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nidentifier\tO\tidentifier\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nbecomes\tO\tbecomes\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\ncreated\tO\tcreated\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\n\t\nscaled_spectrum\tB-Variable_Name\tscaled_spectrum\tO\n=\tO\t=\tO\n1.34\tO\t1.34\tO\n*\tO\t*\tO\nmyobs\tB-Variable_Name\tmyobs\tO\n\t\nPermitted\tO\tPermitted\tO\noperations\tO\toperations\tO\nand\tO\tand\tO\nfunctions\tO\tfunctions\tO\n\t\n+\tO\t+\tO\n,\tO\t,\tO\n-,/,*\tO\t-,/,*\tO\n(\tO\t(\tO\n**\tO\t**\tO\nonly\tO\tonly\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\nfor\tO\tfor\tO\nscalars\tB-Data_Structure\tscalars\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmaybe\tO\tmaybe\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n)\tO\t)\tO\nz(spectrum,\tB-Function_Name\tz(spectrum,\tO\nredshift)\tB-Library_Variable\tredshift)\tO\n\t\nImplementation\tO\tImplementation\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nof\tO\tof\tO\neval\tO\teval\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\nsolution\tO\tsolution\tO\n(\tO\t(\tO\nperhaps\tO\tperhaps\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\none\tO\tone\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nprovide\tO\tprovide\tO\nrestricted\tO\trestricted\tO\nusage\tO\tusage\tO\nfeatures\tO\tfeatures\tO\n(\tO\t(\tO\nThe\tO\tThe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\nfunction\tO\tfunction\tO\nthey\tO\tthey\tO\nwant\tO\twant\tO\n;\tO\t;\tO\nmaybe\tO\tmaybe\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\ngood\tO\tgood\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\ntool\tO\ttool\tO\nout\tO\tout\tO\nthere\tO\tthere\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nthing\tO\tthing\tO\nfor\tO\tfor\tO\nus\tO\tus\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\ninitial\tO\tinitial\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\neval\tO\teval\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nof\tO\tof\tO\nQuantities\tO\tQuantities\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nimplicitly\tO\timplicitly\tO\npermitted\tO\tpermitted\tO\nbut\tO\tbut\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nthought\tO\tthought\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njdefelice/Elasticquent\tO\tjdefelice/Elasticquent\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/jdefelice/Elasticquent\tO\thttps://github.com/jdefelice/Elasticquent\tO\n\t\nElasticquent\tB-Application\tElasticquent\tO\nBeta\tB-Version\tBeta\tO\n\t\nElasticsearch\tB-Application\tElasticsearch\tO\nfor\tO\tfor\tO\nEloquent\tB-Library\tEloquent\tO\nLaravel\tI-Library\tLaravel\tO\nModels\tO\tModels\tO\n\t\nElasticquent\tB-Application\tElasticquent\tO\nmakes\tO\tmakes\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nElasticsearch\tB-Application\tElasticsearch\tO\nand\tO\tand\tO\nEloquent\tB-Library\tEloquent\tO\nmodels\tO\tmodels\tO\neasier\tO\teasier\tO\nby\tO\tby\tO\nmapping\tO\tmapping\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nElasticsearch\tB-Application\tElasticsearch\tO\ntypes\tO\ttypes\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nsettings\tO\tsettings\tO\nor\tO\tor\tO\ndefine\tO\tdefine\tO\nhow\tO\thow\tO\nElasticsearch\tB-Application\tElasticsearch\tO\nshould\tO\tshould\tO\nindex\tO\tindex\tO\nand\tO\tand\tO\nsearch\tO\tsearch\tO\nyour\tO\tyour\tO\nEloquent\tB-Library\tEloquent\tO\nmodels\tO\tmodels\tO\nright\tO\tright\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nElasticquent\tB-Application\tElasticquent\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nElasticsearch\tB-Application\tElasticsearch\tO\nPHP\tB-Library\tPHP\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nstarted\tO\tstarted\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbasic\tO\tbasic\tO\nknowledge\tO\tknowledge\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nElasticsearch\tB-Application\tElasticsearch\tO\nworks\tO\tworks\tO\n(\tO\t(\tO\nindexes\tO\tindexes\tO\n,\tO\t,\tO\ntypes\tO\ttypes\tO\n,\tO\t,\tO\nmappings\tO\tmappings\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmeant\tO\tmeant\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\nwith\tO\twith\tO\nElasticsearch\tB-Application\tElasticsearch\tO\n1.x\tB-Version\t1.x\tO\n.\tO\t.\tO\n\t\nContents\tO\tContents\tO\n\t\nOverview\tO\tOverview\tO\n\t\nHow\tO\tHow\tO\nElasticquent\tB-Application\tElasticquent\tO\nWorks\tO\tWorks\tO\n\t\nSetup\tO\tSetup\tO\n\t\nElasticsearch\tB-Application\tElasticsearch\tO\nConfiguration\tO\tConfiguration\tO\n\t\nIndexes\tO\tIndexes\tO\nand\tO\tand\tO\nMapping\tO\tMapping\tO\n\t\nSetting\tO\tSetting\tO\na\tO\ta\tO\nCustom\tO\tCustom\tO\nIndex\tO\tIndex\tO\nName\tO\tName\tO\n\t\nSetting\tO\tSetting\tO\na\tO\ta\tO\nCustom\tO\tCustom\tO\nType\tO\tType\tO\nName\tO\tName\tO\n\t\nIndexing\tO\tIndexing\tO\nDocuments\tO\tDocuments\tO\n\t\nSearching\tO\tSearching\tO\n\t\nSearch\tO\tSearch\tO\nCollections\tO\tCollections\tO\n\t\nSearch\tO\tSearch\tO\nCollection\tO\tCollection\tO\nDocuments\tO\tDocuments\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nSearch\tO\tSearch\tO\nCollection\tO\tCollection\tO\nOutside\tO\tOutside\tO\nElasticquent\tB-Application\tElasticquent\tO\n\t\nMore\tO\tMore\tO\nOptions\tO\tOptions\tO\n\t\nDocument\tO\tDocument\tO\nIds\tO\tIds\tO\n\t\nDocument\tO\tDocument\tO\nData\tO\tData\tO\n\t\nUsing\tO\tUsing\tO\nElasticquent\tB-Application\tElasticquent\tO\nWith\tO\tWith\tO\nCustom\tO\tCustom\tO\nCollections\tO\tCollections\tO\n\t\nRoadmap\tO\tRoadmap\tO\n\t\nOverview\tO\tOverview\tO\n\t\nElasticquent\tB-Application\tElasticquent\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\ntake\tO\ttake\tO\nan\tO\tan\tO\nEloquent\tB-Library\tEloquent\tO\nmodel\tO\tmodel\tO\nand\tO\tand\tO\neasily\tO\teasily\tO\nindex\tO\tindex\tO\nand\tO\tand\tO\nsearch\tO\tsearch\tO\nits\tO\tits\tO\ncontents\tO\tcontents\tO\nin\tO\tin\tO\nElasticsearch\tB-Application\tElasticsearch\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7399\tI-Code_Block\tGR_7399\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nsearch\tO\tsearch\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nplain\tO\tplain\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nsearch\tO\tsearch\tO\nresults\tO\tresults\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ninstead\tO\tinstead\tO\nget\tO\tget\tO\nan\tO\tan\tO\nEloquent\tB-Library\tEloquent\tO\ncollection\tO\tcollection\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nspecial\tO\tspecial\tO\nElasticsearch\tB-Application\tElasticsearch\tO\nfunctionality\tO\tfunctionality\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7400\tI-Code_Block\tGR_7400\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlus\tO\tPlus\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstill\tO\tstill\tO\nuse\tO\tuse\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nEloquent\tB-Library\tEloquent\tO\ncollection\tO\tcollection\tO\nfunctionality\tO\tfunctionality\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7401\tI-Code_Block\tGR_7401\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCheck\tO\tCheck\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nfor\tO\tfor\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nstarted\tO\tstarted\tO\nusing\tO\tusing\tO\nElasticsearch\tB-Application\tElasticsearch\tO\nand\tO\tand\tO\nElasticquent\tB-Application\tElasticquent\tO\n!\tO\t!\tO\n\t\nHow\tO\tHow\tO\nElasticquent\tB-Application\tElasticquent\tO\nWorks\tO\tWorks\tO\n\t\nWhen\tO\tWhen\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nEloquent\tB-Library\tEloquent\tO\nmodels\tO\tmodels\tO\nare\tO\tare\tO\npopulated\tO\tpopulated\tO\nfrom\tO\tfrom\tO\ndata\tO\tdata\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nElasticquent\tB-Application\tElasticquent\tO\n,\tO\t,\tO\nmodels\tO\tmodels\tO\nare\tO\tare\tO\npopulated\tO\tpopulated\tO\nby\tO\tby\tO\ndata\tO\tdata\tO\nindexed\tO\tindexed\tO\nin\tO\tin\tO\nElasticsearch\tB-Application\tElasticsearch\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nwhole\tO\twhole\tO\nidea\tO\tidea\tO\nbehind\tO\tbehind\tO\nusing\tO\tusing\tO\nElasticsearch\tB-Application\tElasticsearch\tO\nfor\tO\tfor\tO\nsearch\tO\tsearch\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nits\tO\tits\tO\nfast\tO\tfast\tO\nand\tO\tand\tO\nlight\tO\tlight\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nmodel\tO\tmodel\tO\nfunctionality\tO\tfunctionality\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ndictated\tO\tdictated\tO\nby\tO\tby\tO\nwhat\tO\twhat\tO\ndata\tO\tdata\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nindexed\tO\tindexed\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\nSetup\tO\tSetup\tO\n\t\nBefore\tO\tBefore\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nusing\tO\tusing\tO\nElasticquent\tB-Application\tElasticquent\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ninstalled\tO\tinstalled\tO\nElasticsearch\tB-Application\tElasticsearch\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nstarted\tO\tstarted\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nElasticquent\tB-Application\tElasticquent\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\ncomposer.json\tB-File_Type\tcomposer.json\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7402\tI-Code_Block\tGR_7402\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nrun\tO\trun\tO\na\tO\ta\tO\ncomposer\tB-Code_Block\tcomposer\tB-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\n,\tO\t,\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nElasticquent\tB-Application\tElasticquent\tO\ntrait\tO\ttrait\tO\nto\tO\tto\tO\nany\tO\tany\tO\nEloquent\tB-Library\tEloquent\tO\nmodel\tO\tmodel\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nindex\tO\tindex\tO\nin\tO\tin\tO\nElasticsearch\tB-Application\tElasticsearch\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7403\tI-Code_Block\tGR_7403\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nyour\tO\tyour\tO\nEloquent\tB-Library\tEloquent\tO\nmodel\tO\tmodel\tO\nhas\tO\thas\tO\nsome\tO\tsome\tO\nextra\tO\textra\tO\nmethods\tO\tmethods\tO\nthat\tO\tthat\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nindex\tO\tindex\tO\nyour\tO\tyour\tO\nmodel\tO\tmodel\tO\n's\tO\t's\tO\ndata\tO\tdata\tO\nusing\tO\tusing\tO\nElasticsearch\tB-Application\tElasticsearch\tO\n.\tO\t.\tO\n\t\nElasticsearch\tB-Application\tElasticsearch\tO\nConfiguration\tO\tConfiguration\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npass\tO\tpass\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nconfiguration\tO\tconfiguration\tO\narray\tB-Data_Structure\tarray\tO\nElasticsearch\tB-Application\tElasticsearch\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nan\tO\tan\tO\nelasticquent.php\tB-File_Name\telasticquent.php\tB-Code_Block\nconfig\tO\tconfig\tO\nfile\tO\tfile\tO\nat\tO\tat\tO\n/app/config/elasticquent.php\tB-File_Name\t/app/config/elasticquent.php\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7404\tI-Code_Block\tGR_7404\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIndexes\tO\tIndexes\tO\nand\tO\tand\tO\nMapping\tO\tMapping\tO\n\t\nWhile\tO\tWhile\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndefinitely\tO\tdefinitely\tO\nbuild\tO\tbuild\tO\nyour\tO\tyour\tO\nindexes\tO\tindexes\tO\nand\tO\tand\tO\nmapping\tO\tmapping\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nElasticsearch\tB-Library\tElasticsearch\tO\nAPI\tI-Library\tAPI\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\nhelper\tO\thelper\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nindexes\tO\tindexes\tO\nand\tO\tand\tO\ntypes\tO\ttypes\tO\nright\tO\tright\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nmodels\tO\tmodels\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nindexes\tO\tindexes\tO\n,\tO\t,\tO\nElasticquent\tB-Application\tElasticquent\tO\nmodels\tO\tmodels\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7405\tI-Code_Block\tGR_7405\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFor\tO\tFor\tO\nmapping\tO\tmapping\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\na\tO\ta\tO\nmappingProperties\tB-Library_Variable\tmappingProperties\tB-Code_Block\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nmodel\tO\tmodel\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\nmapping\tO\tmapping\tO\nfunctions\tO\tfunctions\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7406\tI-Code_Block\tGR_7406\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsetup\tO\tsetup\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\n's\tO\t's\tO\ntype\tO\ttype\tO\nmapping\tO\tmapping\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nmapping\tO\tmapping\tO\nproperties\tO\tproperties\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7407\tI-Code_Block\tGR_7407\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\ndelete\tO\tdelete\tO\na\tO\ta\tO\nmapping\tO\tmapping\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7408\tI-Code_Block\tGR_7408\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nrebuild\tO\trebuild\tO\n(\tO\t(\tO\ndelete\tO\tdelete\tO\nand\tO\tand\tO\nre-add\tO\tre-add\tO\n,\tO\t,\tO\nuseful\tO\tuseful\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nmake\tO\tmake\tO\nimportant\tO\timportant\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nmapping\tO\tmapping\tO\n)\tO\t)\tO\na\tO\ta\tO\nmapping\tO\tmapping\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7409\tI-Code_Block\tGR_7409\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nmapping\tO\tmapping\tO\nand\tO\tand\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nit\tO\tit\tO\nexists\tO\texists\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7410\tI-Code_Block\tGR_7410\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSetting\tO\tSetting\tO\na\tO\ta\tO\nCustom\tO\tCustom\tO\nIndex\tO\tIndex\tO\nName\tO\tName\tO\n\t\nElastiquent\tB-Application\tElastiquent\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\ndefault\tB-Library_Variable\tdefault\tB-Code_Block\nas\tO\tas\tO\nyour\tO\tyour\tO\nindex\tO\tindex\tO\nname\tO\tname\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nindex\tO\tindex\tO\nname\tO\tname\tO\nby\tO\tby\tO\ncreating\tO\tcreating\tO\nan\tO\tan\tO\nelasticquent.php\tB-File_Name\telasticquent.php\tB-Code_Block\nconfig\tO\tconfig\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\n/app/config/\tB-Code_Block\t/app/config/\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7411\tI-Code_Block\tGR_7411\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSetting\tO\tSetting\tO\na\tO\ta\tO\nCustom\tO\tCustom\tO\nType\tO\tType\tO\nName\tO\tName\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nElasticquent\tB-Application\tElasticquent\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ntable\tO\ttable\tO\nname\tO\tname\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nmodels\tO\tmodels\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nname\tO\tname\tO\nfor\tO\tfor\tO\nindexing\tO\tindexing\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nit\tO\tit\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ngetTypeName\tB-Library_Function\tgetTypeName\tB-Code_Block\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7412\tI-Code_Block\tGR_7412\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nElasticquent\tO\tElasticquent\tO\nmodel\tO\tmodel\tO\nexists\tO\texists\tO\nyet\tO\tyet\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\ntypeExists\tB-Library_Function\ttypeExists\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7413\tI-Code_Block\tGR_7413\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIndexing\tO\tIndexing\tO\nDocuments\tO\tDocuments\tO\n\t\nTo\tO\tTo\tO\nindex\tO\tindex\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nentries\tO\tentries\tO\nin\tO\tin\tO\nan\tO\tan\tO\nEloquent\tB-Library\tEloquent\tO\nmodel\tO\tmodel\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\naddAllToIndex\tB-Library_Function\taddAllToIndex\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7414\tI-Code_Block\tGR_7414\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nindex\tO\tindex\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nmodels\tO\tmodels\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7415\tI-Code_Block\tGR_7415\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nindex\tO\tindex\tO\nindividual\tO\tindividual\tO\nentries\tO\tentries\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7416\tI-Code_Block\tGR_7416\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nreindex\tO\treindex\tO\nan\tO\tan\tO\nentire\tO\tentire\tO\nmodel\tO\tmodel\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7417\tI-Code_Block\tGR_7417\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSearching\tO\tSearching\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nways\tO\tways\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\nin\tO\tin\tO\nElasticquent\tB-Application\tElasticquent\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nis\tO\tis\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nterm\tO\tterm\tO\nsearch\tO\tsearch\tO\nthat\tO\tthat\tO\nsearches\tO\tsearches\tO\nall\tO\tall\tO\nfields\tO\tfields\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7418\tI-Code_Block\tGR_7418\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nis\tO\tis\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nbased\tO\tbased\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ncomplex\tO\tcomplex\tO\nsearching\tO\tsearching\tO\nneeds\tO\tneeds\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7419\tI-Code_Block\tGR_7419\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBoth\tO\tBoth\tO\nmethods\tO\tmethods\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nsearch\tO\tsearch\tO\ncollection\tO\tcollection\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\navailable\tO\tavailable\tO\nparamers\tO\tparamers\tO\n:\tO\t:\tO\n\t\nquery\tB-Library_Variable\tquery\tB-Code_Block\n-\tO\t-\tO\nYour\tO\tYour\tO\nElasticSearch\tB-Application\tElasticSearch\tO\nQuery\tO\tQuery\tO\n\t\naggregations\tB-Library_Variable\taggregations\tB-Code_Block\n-\tO\t-\tO\nThe\tO\tThe\tO\nAggregations\tO\tAggregations\tO\nyou\tO\tyou\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nAggregations\tO\tAggregations\tO\nfor\tO\tfor\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nsourceFields\tB-Library_Variable\tsourceFields\tB-Code_Block\n-\tO\t-\tO\nLimits\tO\tLimits\tO\nreturned\tO\treturned\tO\nset\tO\tset\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\nfields\tO\tfields\tO\nonly\tO\tonly\tO\n\t\nlimit\tB-Library_Variable\tlimit\tB-Code_Block\n-\tO\t-\tO\nNumber\tO\tNumber\tO\nof\tO\tof\tO\nrecords\tO\trecords\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\n\t\noffset\tB-Library_Variable\toffset\tB-Code_Block\n-\tO\t-\tO\nSets\tO\tSets\tO\nthe\tO\tthe\tO\nrecord\tO\trecord\tO\noffset\tO\toffset\tO\n(\tO\t(\tO\nuse\tO\tuse\tO\nfor\tO\tfor\tO\npaging\tO\tpaging\tO\nresults\tO\tresults\tO\n)\tO\t)\tO\n\t\nsort\tB-Library_Variable\tsort\tB-Code_Block\n-\tO\t-\tO\nYour\tO\tYour\tO\nsort\tO\tsort\tO\nquery\tO\tquery\tO\n\t\nSearch\tO\tSearch\tO\nCollections\tO\tCollections\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nsearch\tO\tsearch\tO\non\tO\ton\tO\nan\tO\tan\tO\nElasticquent\tB-Application\tElasticquent\tO\nmodel\tO\tmodel\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\na\tO\ta\tO\nsearch\tO\tsearch\tO\ncollection\tO\tcollection\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nspecial\tO\tspecial\tO\nfunctions\tO\tfunctions\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\ntotal\tO\ttotal\tO\nhits\tO\thits\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7420\tI-Code_Block\tGR_7420\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAccess\tO\tAccess\tO\nthe\tO\tthe\tO\nshards\tO\tshards\tO\narray\tB-Data_Structure\tarray\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7421\tI-Code_Block\tGR_7421\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAccess\tO\tAccess\tO\nthe\tO\tthe\tO\nmax\tO\tmax\tO\nscore\tO\tscore\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7422\tI-Code_Block\tGR_7422\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAccess\tO\tAccess\tO\nthe\tO\tthe\tO\ntimed\tO\ttimed\tO\nout\tO\tout\tO\nboolean\tB-Data_Type\tboolean\tO\nproperty\tO\tproperty\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7423\tI-Code_Block\tGR_7423\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\ntook\tO\ttook\tO\nproperty\tO\tproperty\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7424\tI-Code_Block\tGR_7424\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\naccess\tO\taccess\tO\nsearch\tO\tsearch\tO\naggregations\tO\taggregations\tO\n-\tO\t-\tO\nSee\tO\tSee\tO\nAggregations\tO\tAggregations\tO\nfor\tO\tfor\tO\ndetails\tO\tdetails\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7425\tI-Code_Block\tGR_7425\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSearch\tO\tSearch\tO\nCollection\tO\tCollection\tO\nDocuments\tO\tDocuments\tO\n\t\nItems\tO\tItems\tO\nin\tO\tin\tO\na\tO\ta\tO\nsearch\tO\tsearch\tO\nresult\tO\tresult\tO\ncollection\tO\tcollection\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nextra\tO\textra\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nElasticsearch\tB-Application\tElasticsearch\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalways\tO\talways\tO\ncheck\tO\tcheck\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nis\tO\tis\tO\na\tO\ta\tO\ndocument\tO\tdocument\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nisDocument\tB-Library_Function\tisDocument\tB-Code_Block\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7426\tI-Code_Block\tGR_7426\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nscore\tO\tscore\tO\nthat\tO\tthat\tO\nElasticsearch\tB-Application\tElasticsearch\tO\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\ndocument\tO\tdocument\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7427\tI-Code_Block\tGR_7427\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nSearch\tO\tSearch\tO\nCollection\tO\tCollection\tO\nOutside\tO\tOutside\tO\nof\tO\tof\tO\nElasticquent\tO\tElasticquent\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndealing\tO\tdealing\tO\nwith\tO\twith\tO\nraw\tO\traw\tO\nsearch\tO\tsearch\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nElasticquent\tB-Application\tElasticquent\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nElasticquent\tB-Application\tElasticquent\tO\nsearch\tO\tsearch\tO\nresults\tO\tresults\tO\ncollection\tO\tcollection\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7428\tI-Code_Block\tGR_7428\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMore\tO\tMore\tO\nOptions\tO\tOptions\tO\n\t\nDocument\tO\tDocument\tO\nIDs\tO\tIDs\tO\n\t\nElasticquent\tB-Application\tElasticquent\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nwhatever\tO\twhatever\tO\nis\tO\tis\tO\nset\tO\tset\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nprimaryKey\tB-Library_Variable\tprimaryKey\tB-Code_Block\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nEloquent\tB-Library\tEloquent\tO\nmodels\tO\tmodels\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nid\tO\tid\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nElasticsearch\tB-Application\tElasticsearch\tO\ndocuments\tO\tdocuments\tO\n.\tO\t.\tO\n\t\nDocument\tO\tDocument\tO\nData\tO\tData\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nElasticquent\tB-Application\tElasticquent\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nattribute\tO\tattribute\tO\narray\tB-Data_Structure\tarray\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nElasticsearch\tB-Application\tElasticsearch\tO\ndocuments\tO\tdocuments\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncustomize\tO\tcustomize\tO\nhow\tO\thow\tO\nyour\tO\tyour\tO\nsearch\tO\tsearch\tO\ndocuments\tO\tdocuments\tO\nare\tO\tare\tO\nstructured\tO\tstructured\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\na\tO\ta\tO\ngetIndexDocumentData\tB-Library_Function\tgetIndexDocumentData\tB-Code_Block\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\nyou\tO\tyou\tO\nown\tO\town\tO\ncustom\tO\tcustom\tO\ndocument\tO\tdocument\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7429\tI-Code_Block\tGR_7429\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBe\tO\tBe\tO\ncareful\tO\tcareful\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nas\tO\tas\tO\nElasticquent\tB-Application\tElasticquent\tO\nreads\tO\treads\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nsource\tO\tsource\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nEloquent\tB-Library\tEloquent\tO\nmodel\tO\tmodel\tO\nattributes\tO\tattributes\tO\nwhen\tO\twhen\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nsearch\tO\tsearch\tO\nresult\tO\tresult\tO\ncollection\tO\tcollection\tO\n,\tO\t,\tO\nso\tO\tso\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nindexing\tO\tindexing\tO\nenough\tO\tenough\tO\ndata\tO\tdata\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nfunctionality\tO\tfunctionality\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nElasticquent\tB-Application\tElasticquent\tO\nWith\tO\tWith\tO\nCustom\tO\tCustom\tO\nCollections\tO\tCollections\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ncollection\tO\tcollection\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nEloquent\tB-Library\tEloquent\tO\nmodels\tO\tmodels\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nElasticquentCollectionTrait\tB-Library_Variable\tElasticquentCollectionTrait\tB-Code_Block\nto\tO\tto\tO\nyour\tO\tyour\tO\ncollection\tO\tcollection\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\naddToIndex\tB-Library_Function\taddToIndex\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7430\tI-Code_Block\tGR_7430\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRoadmap\tO\tRoadmap\tO\n\t\nElasticquent\tB-Application\tElasticquent\tO\ncurrently\tO\tcurrently\tO\nneeds\tO\tneeds\tO\n:\tO\t:\tO\n\t\nTests\tO\tTests\tO\nthat\tO\tthat\tO\nmock\tO\tmock\tO\nES\tB-Library\tES\tO\nAPI\tI-Library\tAPI\tO\ncalls\tO\tcalls\tO\n.\tO\t.\tO\n\t\nSupport\tO\tSupport\tO\nfor\tO\tfor\tO\nroutes\tB-Library_Class\troutes\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkristinlin/turbo\tO\tkristinlin/turbo\tO\n-system\tO\t-system\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/kristinlin/turbo-system/issues/1\tO\thttps://github.com/kristinlin/turbo-system/issues/1\tO\n\t\nThis\tO\tThis\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\napproved\tO\tapproved\tO\n.\tO\t.\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nfamiliarize\tO\tfamiliarize\tO\nyourselves\tO\tyourselves\tO\nwith\tO\twith\tO\nSDL\tB-Library\tSDL\tO\nearly\tO\tearly\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nkey\tO\tkey\tO\nto\tO\tto\tO\ngetting\tO\tgetting\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\ndone\tO\tdone\tO\nin\tO\tin\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsdookadr/overflow\tO\twsdookadr/overflow\tO\n-checker\tO\t-checker\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsdookadr/fieldtop/issues/5\tO\thttps://github.com/wsdookadr/fieldtop/issues/5\tO\n\t\n@marcj\tB-User_Name\t@marcj\tO\nHi\tO\tHi\tO\nMarc\tB-User_Name\tMarc\tO\n,\tO\t,\tO\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nComposer\tB-Application\tComposer\tO\npackaging\tO\tpackaging\tO\nas\tO\tas\tO\nbeing\tO\tbeing\tO\nvery\tO\tvery\tO\nvaluable\tO\tvaluable\tO\nto\tO\tto\tO\nincrease\tO\tincrease\tO\nexposure\tO\texposure\tO\nand\tO\tand\tO\naccesibility\tO\taccesibility\tO\nand\tO\tand\tO\nultimately\tO\tultimately\tO\n,\tO\t,\tO\nincrease\tO\tincrease\tO\nuser-base\tO\tuser-base\tO\n\t\nThe\tO\tThe\tO\nCLI\tB-Application\tCLI\tO\nargument\tO\targument\tO\nhandling\tO\thandling\tO\nyou\tO\tyou\tO\nwrote\tO\twrote\tO\nis\tO\tis\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nopt\tO\topt\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nlightweight\tO\tlightweight\tO\napproach\tO\tapproach\tO\nhere\tO\there\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nminimize\tO\tminimize\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nPHP\tB-Language\tPHP\tO\nships\tO\tships\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ngetopt\tB-Library_Function\tgetopt\tO\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nequivalents\tO\tequivalents\tO\nin\tO\tin\tO\nother\tO\tother\tO\nlanguages\tO\tlanguages\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nwe\tO\twe\tO\nplease\tO\tplease\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nfunction\tO\tfunction\tO\ninside\tO\tinside\tO\nCheckCommand.php\tB-File_Name\tCheckCommand.php\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\nallow\tO\tallow\tO\nus\tO\tus\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\ndepend\tO\tdepend\tO\non\tO\ton\tO\nSymfony\tB-Library\tSymfony\tO\nin\tO\tin\tO\nparticular\tO\tparticular\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\nApplication.php\tB-File_Name\tApplication.php\tO\nonly\tO\tonly\tO\ndraws\tO\tdraws\tO\nfunctionality\tO\tfunctionality\tO\nfrom\tO\tfrom\tO\nCheckCommand.php\tB-File_Name\tCheckCommand.php\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\na\tO\ta\tO\nSymfony-centric\tB-Library\tSymfony-centric\tO\ncontext\tO\tcontext\tO\n,\tO\t,\tO\nApplication.php\tB-File_Name\tApplication.php\tO\nwould\tO\twould\tO\ndefinitely\tO\tdefinitely\tO\nalign\tO\talign\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\npractices\tO\tpractices\tO\nand\tO\tand\tO\ndesign\tO\tdesign\tO\npatterns\tO\tpatterns\tO\nthat\tO\tthat\tO\nSymfony\tB-Library\tSymfony\tO\nprovides\tO\tprovides\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nSymfony\tB-Library\tSymfony\tO\nusers\tO\tusers\tO\nmay\tO\tmay\tO\nfind\tO\tfind\tO\nthis\tO\tthis\tO\ntool\tO\ttool\tO\nuseful\tO\tuseful\tO\nand\tO\tand\tO\nwe\tO\twe\tO\nwould\tO\twould\tO\nwelcome\tO\twelcome\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ntool\tO\ttool\tO\n,\tO\t,\tO\nour\tO\tour\tO\ncommon\tO\tcommon\tO\ngoal\tO\tgoal\tO\nis\tO\tis\tO\nto\tO\tto\tO\nmaximize\tO\tmaximize\tO\nthe\tO\tthe\tO\nuser-base\tO\tuser-base\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nreach\tO\treach\tO\nthat\tO\tthat\tO\ngoal\tO\tgoal\tO\nwe\tO\twe\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nclose\tO\tclose\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nPHP\tB-Language\tPHP\tO\nships\tO\tships\tO\nwith\tO\twith\tO\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nfieldtop\tB-File_Name\tfieldtop\tO\n,\tO\t,\tO\nfieldtop.bat\tB-File_Name\tfieldtop.bat\tO\n,\tO\t,\tO\nfieldtop.php\tB-File_Name\tfieldtop.php\tO\nare\tO\tare\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\naddition\tO\taddition\tO\nsince\tO\tsince\tO\nthey\tO\tthey\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ntool\tO\ttool\tO\nportable\tO\tportable\tO\nand\tO\tand\tO\nusable\tO\tusable\tO\non\tO\ton\tO\nother\tO\tother\tO\nplatforms\tO\tplatforms\tO\n\t\nSince\tO\tSince\tO\nSymfony\tB-Library\tSymfony\tO\nwas\tO\twas\tO\nmentioned\tO\tmentioned\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nexpand\tO\texpand\tO\non\tO\ton\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nComposer\tB-Application\tComposer\tO\ninduces\tO\tinduces\tO\na\tO\ta\tO\nconstraint\tO\tconstraint\tO\nPHP\tB-Language\tPHP\tO\n>=\tO\t>=\tO\n5.3.2\tB-Version\t5.3.2\tO\nconstraint\tO\tconstraint\tO\n,\tO\t,\tO\nSymfony\tB-Library\tSymfony\tO\ntakes\tO\ttakes\tO\nthat\tO\tthat\tO\nfurther\tO\tfurther\tO\nto\tO\tto\tO\nPHP\tB-Language\tPHP\tO\n>=\tO\t>=\tO\n5.5.9\tB-Version\t5.5.9\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nimportant\tO\timportant\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nbe\tO\tbe\tO\nseparated\tO\tseparated\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nCLI\tB-Application\tCLI\tO\napplication\tO\tapplication\tO\n(\tO\t(\tO\nin\tO\tin\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nway\tO\tway\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\n)\tO\t)\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nany\tO\tany\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nCLI\tB-Application\tCLI\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nwho\tO\twho\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nit\tO\tit\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\ntheir\tO\ttheir\tO\nCakePHP/Laravel/Zend/Symfony\tB-Library\tCakePHP/Laravel/Zend/Symfony\tO\napplications\tO\tapplications\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nachieve\tO\tachieve\tO\nthat\tO\tthat\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nPayamEmami/percolator\tO\tPayamEmami/percolator\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/PayamEmami/percolator/issues/1\tO\thttps://github.com/PayamEmami/percolator/issues/1\tO\n\t\nAdding\tO\tAdding\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nlocation\tO\tlocation\tO\nof\tO\tof\tO\nPTM\tO\tPTM\tO\nis\tO\tis\tO\nbeyond\tO\tbeyond\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npeptide\tO\tpeptide\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nthe\tO\tthe\tO\ninsert\tO\tinsert\tO\nposition\tO\tposition\tO\nto\tO\tto\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npeptide\tO\tpeptide\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/105\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/105\tO\n\t\nThis\tO\tThis\tO\nmakes\tO\tmakes\tO\nuseful\tO\tuseful\tO\nto\tO\tto\tO\nlisten\tO\tlisten\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nevents\tO\tevents\tO\nemited\tO\temited\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nmake\tO\tmake\tO\ncomponents\tO\tcomponents\tO\ndependen\tO\tdependen\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbehavior\tO\tbehavior\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nadmin\tO\tadmin\tO\nbar\tB-User_Interface_Element\tbar\tO\nand\tO\tand\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\ncreatre\tO\tcreatre\tO\nisolated\tO\tisolated\tO\nservices\tO\tservices\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nrelies\tO\trelies\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nadmin\tO\tadmin\tO\nbar\tB-User_Interface_Element\tbar\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nManuelDeLeon/vmc2jsx\tO\tManuelDeLeon/vmc2jsx\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/3\tO\thttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/3\tO\n\t\nHi\tO\tHi\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\nequal\tB-Library_Function\tequal\tB-Code_Block\nvalidation\tO\tvalidation\tO\nsegment\tO\tsegment\tO\nof\tO\tof\tO\nan\tO\tan\tO\ninteger\tB-Data_Type\tinteger\tO\nproperty\tO\tproperty\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ncopy\tO\tcopy\tO\na\tO\ta\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvalidation\tO\tvalidation\tO\nsection\tO\tsection\tO\nexample\tO\texample\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nand\tO\tand\tO\nmodify\tO\tmodify\tO\nmin(18)\tB-Library_Function\tmin(18)\tB-Code_Block\nfor\tO\tfor\tO\nequal(18)\tB-Library_Function\tequal(18)\tB-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nfield\tO\tfield\tO\nis\tO\tis\tO\nalways\tO\talways\tO\ndisplayed\tO\tdisplayed\tO\nas\tO\tas\tO\nan\tO\tan\tO\nerror\tO\terror\tO\neven\tO\teven\tO\nif\tO\tif\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\n18\tO\t18\tO\n.\tO\t.\tO\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nwith\tO\twith\tO\nnotEqual\tB-Library_Function\tnotEqual\tB-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nwork\tO\twork\tO\nif\tO\tif\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nequal('18')\tB-Library_Function\tequal('18')\tB-Code_Block\n(\tO\t(\tO\nwith\tO\twith\tO\nquotes\tO\tquotes\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncounterintuitive\tO\tcounterintuitive\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nexpecting\tO\texpecting\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nsimplified\tO\tsimplified\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_63871\tI-Code_Block\tGR_63871\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nShubham4422/recipes\tO\tShubham4422/recipes\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/Shubham4422/recipes\tO\thttps://github.com/Shubham4422/recipes\tO\n\t\nRecipes\tO\tRecipes\tO\n\t\nThis\tO\tThis\tO\nrepository\tO\trepository\tO\ncontains\tO\tcontains\tO\nrecipes\tO\trecipes\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nfoods\tO\tfoods\tO\nI\tO\tI\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/7\tO\thttps://github.com/zeroepoch/plotbitrate/issues/7\tO\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nleave\tO\tleave\tO\nit\tO\tit\tO\nup\tO\tup\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n\"\tO\t\"\tO\naudio\tO\taudio\tO\n\"\tO\t\"\tO\n\"\tO\t\"\tO\nVideo\tO\tVideo\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nfor\tO\tfor\tO\n\"\tO\t\"\tO\nv\tO\tv\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nmakes\tO\tmakes\tO\nit\tO\tit\tO\ncaps\tO\tcaps\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nworawin/git10111\tO\tworawin/git10111\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/worawin/git10111\tO\thttps://github.com/worawin/git10111\tO\n\t\ngit10111\tO\tgit10111\tO\n\t\neiei\tO\teiei\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/75\tO\thttps://github.com/spacetelescope/specview/issues/75\tO\n\t\nImplemented\tO\tImplemented\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndrawback\tO\tdrawback\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ninfrastructure\tO\tinfrastructure\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nmodel\tB-Library\tmodel\tO\nupdates\tO\tupdates\tO\nwithout\tO\twithout\tO\nassociated\tO\tassociated\tO\nspectrum\tB-Library\tspectrum\tO\ntree\tI-Library\ttree\tO\nupdates\tO\tupdates\tO\n,\tO\t,\tO\ncomplete\tO\tcomplete\tO\nwith\tO\twith\tO\nnew\tO\tnew\tO\nmodel\tB-Library\tmodel\tO\nand\tO\tand\tO\nnew\tO\tnew\tO\nlayer\tO\tlayer\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nannoying\tO\tannoying\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsubject\tO\tsubject\tO\nof\tO\tof\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nticket\tO\tticket\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/16\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/16\tO\n\t\nNever\tO\tNever\tO\nmind\tO\tmind\tO\n,\tO\t,\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nit\tO\tit\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nI\tO\tI\tO\nforgot\tO\tforgot\tO\nto\tO\tto\tO\nplace\tO\tplace\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nContent/Movies\tB-File_Name\tContent/Movies\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\njust\tO\tjust\tO\nlinked\tO\tlinked\tO\ninside\tO\tinside\tO\nMovies\tB-File_Name\tMovies\tO\nfolder\tO\tfolder\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwas\tO\twas\tO\noutside\tO\toutside\tO\n,\tO\t,\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n👍\tO\t👍\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nluxflux/dotfiles\tO\tluxflux/dotfiles\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/luxflux/dotfiles\tO\thttps://github.com/luxflux/dotfiles\tO\n\t\nDotfilez\tO\tDotfilez\tO\n\t\nSetup\tO\tSetup\tO\n\t\nClone\tO\tClone\tO\nthe\tO\tthe\tO\nrepo\tO\trepo\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_94702\tI-Code_Block\tGR_94702\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLink\tO\tLink\tO\nthe\tO\tthe\tO\ndotfiles\tB-File_Type\tdotfiles\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_94703\tI-Code_Block\tGR_94703\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nInstall\tO\tInstall\tO\nthe\tO\tthe\tO\ndependencies\tO\tdependencies\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_94704\tI-Code_Block\tGR_94704\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBootstrap\tB-Library\tBootstrap\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_94705\tI-Code_Block\tGR_94705\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/97\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/97\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nupdated\tO\tupdated\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nand\tO\tand\tO\nvariable\tO\tvariable\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\nright\tO\tright\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nui-router\tB-Library\tui-router\tO\nand\tO\tand\tO\ndisqus\tB-Application\tdisqus\tO\ndependencies\tO\tdependencies\tO\non\tO\ton\tO\npatternlab\tB-Application\tpatternlab\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nwe\tO\twe\tO\n'll\tO\t'll\tO\nend\tO\tend\tO\nup\tO\tup\tO\nwith\tO\twith\tO\n100\tO\t100\tO\n's\tO\t's\tO\nof\tO\tof\tO\ndependencies\tO\tdependencies\tO\n,\tO\t,\tO\nmany\tO\tmany\tO\nof\tO\tof\tO\nwhich\tO\twhich\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\non\tO\ton\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/40\tO\thttps://github.com/rpcope1/Hantek6022API/issues/40\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nin\tO\tin\tO\ncontrol\tO\tcontrol\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n8051\tO\t8051\tO\ncode\tO\tcode\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\ndifficult\tO\tdifficult\tO\n(\tO\t(\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\n)\tO\t)\tO\n-\tO\t-\tO\npseudo\tO\tpseudo\tO\n:\tO\t:\tO\ntrigval\tO\ttrigval\tO\n=\tO\t=\tO\nx\tO\tx\tO\n;\tO\t;\tO\ntrig_dir\tO\ttrig_dir\tO\n=\tO\t=\tO\nrising\tO\trising\tO\n;\tO\t;\tO\nstart\tO\tstart\tO\nsampling\tO\tsampling\tO\ninto\tO\tinto\tO\ncircular\tO\tcircular\tO\nbuffer\tO\tbuffer\tO\nif\tO\tif\tO\n(\tO\t(\tO\nsample\tO\tsample\tO\ncount\tO\tcount\tO\n>\tO\t>\tO\nprebuffer\tO\tprebuffer\tO\n)\tO\t)\tO\n{\tO\t{\tO\nif\tO\tif\tO\n(\tO\t(\tO\nsample_prev\tO\tsample_prev\tO\n<\tO\t<\tO\nx\tO\tx\tO\n&&\tO\t&&\tO\nsample_new\tO\tsample_new\tO\n>\tO\t>\tO\n=\tO\t=\tO\nx\tO\tx\tO\n)\tO\t)\tO\ntrigged\tO\ttrigged\tO\nreached\tO\treached\tO\n-\tO\t-\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\n(\tO\t(\tO\ncircular\tO\tcircular\tO\nbuffer\tO\tbuffer\tO\nsize\tO\tsize\tO\n-\tO\t-\tO\nprebuffer\tO\tprebuffer\tO\n)\tO\t)\tO\nsamples\tO\tsamples\tO\n\t\nUpload\tO\tUpload\tO\nsamples\tO\tsamples\tO\nstarting\tO\tstarting\tO\nwith\tO\twith\tO\n(\tO\t(\tO\ntrig\tO\ttrig\tO\npoint\tO\tpoint\tO\n-\tO\t-\tO\nprebuffer\tO\tprebuffer\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/203\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/203\tO\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\ninstalled\tO\tinstalled\tO\nplugin\tO\tplugin\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nexample\tO\texample\tO\nput\tO\tput\tO\nit\tO\tit\tO\ninside\tO\tinside\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\ncatch\tO\tcatch\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nerror\tO\terror\tO\nappear\tO\tappear\tO\ncannot\tO\tcannot\tO\nread\tO\tread\tO\nproperty\tO\tproperty\tO\n'\tO\t'\tO\nbackgroundMode\tB-Library_Variable\tbackgroundMode\tO\n'\tO\t'\tO\nof\tO\tof\tO\nundefined\tO\tundefined\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app/issues/12\tO\thttps://github.com/lbarasti/gps_app/issues/12\tO\n\t\nIcons\tB-User_Interface_Element\tIcons\tO\ncould\tO\tcould\tO\nchange\tO\tchange\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nsome\tO\tsome\tO\n\"\tO\t\"\tO\nstate\tB-Variable_Name\tstate\tO\n\"\tO\t\"\tO\nvariable\tO\tvariable\tO\nthat\tO\tthat\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\nsent\tO\tsent\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nPOST\tO\tPOST\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnerab/TaskWarriorMail\tO\tnerab/TaskWarriorMail\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/nerab/TaskWarriorMail/issues/3\tO\thttps://github.com/nerab/TaskWarriorMail/issues/3\tO\n\t\nNow\tO\tNow\tO\nit\tO\tit\tO\ninstalled\tO\tinstalled\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nreply\tO\treply\tO\n!\tO\t!\tO\n\t\nMuch\tO\tMuch\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nfiguring\tO\tfiguring\tO\nit\tO\tit\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nZorros/copycat\tO\tZorros/copycat\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/Zorros/copycat/issues/1\tO\thttps://github.com/Zorros/copycat/issues/1\tO\n\t\njust\tO\tjust\tO\na\tO\ta\tO\nminor\tO\tminor\tO\nchange\tO\tchange\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nbugging\tO\tbugging\tO\nme\tO\tme\tO\n:)\tO\t:)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucieSteiner/AMT_feature1\tO\tLucieSteiner/AMT_feature1\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucieSteiner/AMT_feature1/issues/6\tO\thttps://github.com/LucieSteiner/AMT_feature1/issues/6\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nnew\tO\tnew\tO\naccount\tO\taccount\tO\nand\tO\tand\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nprotected\tO\tprotected\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ngoing\tO\tgoing\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\npage\tB-User_Interface_Element\tpage\tO\nand\tO\tand\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\nhappened\tO\thappened\tO\n..\tO\t..\tO\n.\tO\t.\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper\tO\thttps://github.com/rcfbanalysis/rcfbscraper\tO\n\t\nR\tB-Language\tR\tO\nCFB\tO\tCFB\tO\ndata\tO\tdata\tO\nscraper\tO\tscraper\tO\n\t\nThe\tO\tThe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\nare\tO\tare\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nefforts\tO\tefforts\tO\nby\tO\tby\tO\n\t\n/u/millsGT49\tB-User_Name\t/u/millsGT49\tO\nin\tO\tin\tO\n/r/CFBAnalysis\tB-Website\t/r/CFBAnalysis\tO\n.\tO\t.\tO\n\t\nDocumentation\tO\tDocumentation\tO\n\t\nPart\tO\tPart\tO\n1\tO\t1\tO\n\t\nPart\tO\tPart\tO\n2\tO\t2\tO\n\t\nPart\tO\tPart\tO\n3\tO\t3\tO\n\t\nPart\tO\tPart\tO\n4\tO\t4\tO\n\t\nPart\tO\tPart\tO\n5\tO\t5\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\npolats/unity3d\tO\tpolats/unity3d\tO\n-blockchain-wallet\tO\t-blockchain-wallet\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/polats/unity3d-blockchain-wallet\tO\thttps://github.com/polats/unity3d-blockchain-wallet\tO\n\t\nunity3d-blockchain-wallet\tB-Application\tunity3d-blockchain-wallet\tO\n\t\nCreate\tO\tCreate\tO\nwallets\tO\twallets\tO\nand\tO\tand\tO\nperform\tO\tperform\tO\ntransactions\tO\ttransactions\tO\non\tO\ton\tO\ncustom\tO\tcustom\tO\nERC20\tO\tERC20\tO\ntokens\tO\ttokens\tO\nvia\tO\tvia\tO\nUnity3D\tB-Application\tUnity3D\tO\n\t\nGetting\tO\tGetting\tO\nStarted\tO\tStarted\tO\n\t\nhttps://medium.com/@polats/lets-build-a-decentralized-game-economy-using-blockchains-cf0a80e43da1\tO\thttps://medium.com/@polats/lets-build-a-decentralized-game-economy-using-blockchains-cf0a80e43da1\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/10\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/10\tO\n\t\n\t\nCoverage\tO\tCoverage\tO\ndecreased\tO\tdecreased\tO\n(\tO\t(\tO\n-0.3\tO\t-0.3\tO\n%\tO\t%\tO\n)\tO\t)\tO\nto\tO\tto\tO\n87.081\tO\t87.081\tO\n%\tO\t%\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\n4c22c5d1b286e0dfbde81ac2039399e7632189b5\tO\t4c22c5d1b286e0dfbde81ac2039399e7632189b5\tO\non\tO\ton\tO\nupgrade-deps-7-7-17\tO\tupgrade-deps-7-7-17\tO\ninto\tO\tinto\tO\n6e613dbca9d5e2731097ffc1e0d277df94129bf1\tO\t6e613dbca9d5e2731097ffc1e0d277df94129bf1\tO\non\tO\ton\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/13\tO\thttps://github.com/smirarab/pasta/issues/13\tO\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\napologies\tO\tapologies\tO\nfor\tO\tfor\tO\nposting\tO\tposting\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\npost\tO\tpost\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nparallelise\tO\tparallelise\tO\nthe\tO\tthe\tO\nML\tO\tML\tO\ncaculations\tO\tcaculations\tO\nin\tO\tin\tO\nPASTA\tB-Application\tPASTA\tO\nusing\tO\tusing\tO\nCUDA\tB-Application\tCUDA\tO\n,\tO\t,\tO\ngiven\tO\tgiven\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nobtain\tO\tobtain\tO\nthe\tO\tthe\tO\nAnaconda\tB-Application\tAnaconda\tO\nAccelerate\tI-Application\tAccelerate\tO\nmodule\tO\tmodule\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nif\tO\tif\tO\nPASTA\tB-Application\tPASTA\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nCUDA-enabled\tB-Application\tCUDA-enabled\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nformer\tO\tformer\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n;\tO\t;\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nWould\tO\tWould\tO\ncalculations\tO\tcalculations\tO\nbecome\tO\tbecome\tO\nparallelised\tO\tparallelised\tO\nby\tO\tby\tO\njust\tO\tjust\tO\nhaving\tO\thaving\tO\nthe\tO\tthe\tO\nAnaconda\tB-Application\tAnaconda\tO\nAccelerate\tI-Application\tAccelerate\tO\nand\tO\tand\tO\nCUDA\tB-Application\tCUDA\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nwould\tO\twould\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\nAnaconda\tB-Application\tAnaconda\tO\nAccelerate\tI-Application\tAccelerate\tO\nmodule\tO\tmodule\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nPASTA\tB-Application\tPASTA\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nit\tO\tit\tO\njust\tO\tjust\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nmore\tO\tmore\tO\ncomplicated\tO\tcomplicated\tO\nthan\tO\tthan\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsdookadr/overflow\tO\twsdookadr/overflow\tO\n-checker\tO\t-checker\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsdookadr/fieldtop/issues/6\tO\thttps://github.com/wsdookadr/fieldtop/issues/6\tO\n\t\nHi\tO\tHi\tO\nJulien\tB-User_Name\tJulien\tO\n,\tO\t,\tO\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\nyou\tO\tyou\tO\nprovided\tO\tprovided\tO\nis\tO\tis\tO\nsurprising\tO\tsurprising\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntable\tB-Data_Structure\ttable\tO\nheader\tO\theader\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npresent\tO\tpresent\tO\n.\tO\t.\tO\n\t\nMoreover\tO\tMoreover\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ncalling\tO\tcalling\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nweb\tO\tweb\tO\nserver\tB-Application\tserver\tO\n(\tO\t(\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nfrom\tO\tfrom\tO\nCLI\tB-Application\tCLI\tO\n)\tO\t)\tO\n,\tO\t,\tO\none\tO\tone\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nHTML\tB-Language\tHTML\tO\nmarkup\tO\tmarkup\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npresent\tO\tpresent\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\n(\tO\t(\tO\nif\tO\tif\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nmistaken\tO\tmistaken\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ncurrently\tO\tcurrently\tO\nworks\tO\tworks\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAbout\tO\tAbout\tO\ncertain\tO\tcertain\tO\ncolumns\tO\tcolumns\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\nmatched\tO\tmatched\tO\n,\tO\t,\tO\n\t\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nfilter\tO\tfilter\tO\nfor\tO\tfor\tO\ntable/column\tB-Data_Structure\ttable/column\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfilter\tO\tfilter\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmodified\tO\tmodified\tO\nto\tO\tto\tO\naccept\tO\taccept\tO\nnon-ASCII\tB-Algorithm\tnon-ASCII\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nnames\tO\tnames\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nsend\tO\tsend\tO\na\tO\ta\tO\npull-request\tO\tpull-request\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAbout\tO\tAbout\tO\nyour\tO\tyour\tO\nuse-case\tO\tuse-case\tO\nwith\tO\twith\tO\n4001\tO\t4001\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\ncertainly\tO\tcertainly\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nthat\tO\tthat\tO\nsome\tO\tsome\tO\nsituations\tO\tsituations\tO\nrequire\tO\trequire\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ndone\tO\tdone\tO\nsome\tO\tsome\tO\nreading\tO\treading\tO\nand\tO\tand\tO\ndiscussed\tO\tdiscussed\tO\nthis\tO\tthis\tO\ntopic\tO\ttopic\tO\nwith\tO\twith\tO\na\tO\ta\tO\nfew\tO\tfew\tO\npeople\tO\tpeople\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nknowledgeable\tO\tknowledgeable\tO\nthan\tO\tthan\tO\nme\tO\tme\tO\non\tO\ton\tO\nthis\tO\tthis\tO\ntopic\tO\ttopic\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nreason\tO\treason\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\n's\tO\t's\tO\ntaking\tO\ttaking\tO\nhours\tO\thours\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nelaborate\tO\telaborate\tO\nmore\tO\tmore\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n)\tO\t)\tO\nare\tO\tare\tO\nprobably\tO\tprobably\tO\nnot\tO\tnot\tO\nequipped\tO\tequipped\tO\nwith\tO\twith\tO\nindexes\tO\tindexes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nas\tO\tas\tO\na\tO\ta\tO\nresult\tO\tresult\tO\n,\tO\t,\tO\nfull-table\tB-Data_Structure\tfull-table\tO\nscans\tO\tscans\tO\nare\tO\tare\tO\nbeing\tO\tbeing\tO\nperformed\tO\tperformed\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\npossible\tO\tpossible\tO\napproaches\tO\tapproaches\tO\n:\tO\t:\tO\n\t\nplacing\tO\tplacing\tO\nindexes\tO\tindexes\tO\non\tO\ton\tO\nnumeric\tO\tnumeric\tO\ncolumns\tO\tcolumns\tO\n[\tO\t[\tO\n2\tO\t2\tO\n]\tO\t]\tO\nand\tO\tand\tO\nexpression\tO\texpression\tO\nindexes\tO\tindexes\tO\n[\tO\t[\tO\n1\tO\t1\tO\n]\tO\t]\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlength\tB-Library_Function\tlength\tO\nfunction\tO\tfunction\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nstring/text\tB-Data_Type\tstring/text\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n\t\ncreating\tO\tcreating\tO\na\tO\ta\tO\ntable\tB-Data_Structure\ttable\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nalways\tO\talways\tO\nhold\tO\thold\tO\nmax/min\tO\tmax/min\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n.\tO\t.\tO\n\t\nplacing\tO\tplacing\tO\ntriggers\tO\ttriggers\tO\non\tO\ton\tO\nall\tO\tall\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nin\tO\tin\tO\nall\tO\tall\tO\ntables\tB-Data_Structure\ttables\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\npreviously\tO\tpreviously\tO\nmentioned\tO\tmentioned\tO\ntable\tB-Data_Structure\ttable\tO\n\t\nFor\tO\tFor\tO\nboth\tO\tboth\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\napproaches\tO\tapproaches\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nlogic\tO\tlogic\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nplaced\tO\tplaced\tO\nin\tO\tin\tO\nfieldtop\tB-Application\tfieldtop\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ntriggers/indexes\tO\ttriggers/indexes\tO\n(\tO\t(\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nchoose\tO\tchoose\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n)\tO\t)\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\nonly\tO\tonly\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nalready\tO\talready\tO\npresent\tO\tpresent\tO\n(\tO\t(\tO\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nnamed\tO\tnamed\tO\nin\tO\tin\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nway\tO\tway\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nidentify\tO\tidentify\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nwere\tO\twere\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\nfieldtop\tB-Application\tfieldtop\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnecessary\tO\tnecessary\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nin\tO\tin\tO\nsync\tO\tsync\tO\nwith\tO\twith\tO\ncolumn\tO\tcolumn\tO\nchanges\tO\tchanges\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\na\tO\ta\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nis\tO\tis\tO\nadded\tO\tadded\tO\n,\tO\t,\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nindex\tO\tindex\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n1st\tO\t1st\tO\napproach\tO\tapproach\tO\nor\tO\tor\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n2nd\tO\t2nd\tO\napproach\tO\tapproach\tO\n,\tO\t,\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ntrigger\tO\ttrigger\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\nsituations\tO\tsituations\tO\nwill\tO\twill\tO\nadd\tO\tadd\tO\noverhead\tO\toverhead\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nmuch\tO\tmuch\tO\noverhead\tO\toverhead\tO\n,\tO\t,\tO\nand\tO\tand\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nextent\tO\textent\tO\none\tO\tone\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nshould\tO\tshould\tO\nprobably\tO\tprobably\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsubject\tO\tsubject\tO\nof\tO\tof\tO\na\tO\ta\tO\nbenchmark\tO\tbenchmark\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nother\tO\tother\tO\napproaches\tO\tapproaches\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nwelcome\tO\twelcome\tO\nto\tO\tto\tO\nshare\tO\tshare\tO\nyour\tO\tyour\tO\nknowledge\tO\tknowledge\tO\nwith\tO\twith\tO\nus\tO\tus\tO\non\tO\ton\tO\nthis\tO\tthis\tO\ntopic\tO\ttopic\tO\n,\tO\t,\tO\nand\tO\tand\tO\nelaborate\tO\telaborate\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nintended\tO\tintended\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nalso\tO\talso\tO\nwelcome\tO\twelcome\tO\n(\tO\t(\tO\nand\tO\tand\tO\nencourage\tO\tencourage\tO\n)\tO\t)\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n1\tO\t1\tO\n]\tO\t]\tO\nAbout\tO\tAbout\tO\nexpression\tO\texpression\tO\nindexes\tO\tindexes\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nMySQL\tB-Application\tMySQL\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\navailable\tO\tavailable\tO\nand\tO\tand\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nclosest\tO\tclosest\tO\none\tO\tone\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nto\tO\tto\tO\nthose\tO\tthose\tO\nare\tO\tare\tO\ngenerated\tO\tgenerated\tO\ncolumns\tO\tcolumns\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n2\tO\t2\tO\n]\tO\t]\tO\nFor\tO\tFor\tO\nAUTO_INCREMENT\tB-Library_Variable\tAUTO_INCREMENT\tO\nnumeric\tO\tnumeric\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nfast\tO\tfast\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nmaximum\tO\tmaximum\tO\nvalue\tO\tvalue\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ninformation_schema\tO\tinformation_schema\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/9\tO\thttps://github.com/zeroepoch/plotbitrate/issues/9\tO\n\t\nWould\tO\tWould\tO\nyou\tO\tyou\tO\nsuggest\tO\tsuggest\tO\nwe\tO\twe\tO\nmap\tO\tmap\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nI\tO\tI\tO\n\"\tO\t\"\tO\nframes\tO\tframes\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\na\tO\ta\tO\n\"\tO\t\"\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\nframe\tO\tframe\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\naudio\tO\taudio\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\n?\tO\t?\tO\n\t\nWe\tO\tWe\tO\n'd\tO\t'd\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\na\tO\ta\tO\ngeneric\tO\tgeneric\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthat\tO\tthat\tO\nso\tO\tso\tO\nsomeone\tO\tsomeone\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nunexpected\tO\tunexpected\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/6\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/6\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nwork\tO\twork\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nnext\tO\tnext\tO\nfor\tO\tfor\tO\nparsing\tO\tparsing\tO\n,\tO\t,\tO\n\t\nTD\tO\tTD\tO\nlogic\tO\tlogic\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nbroken\tO\tbroken\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nOpenPrograms/MiscPrograms\tO\tOpenPrograms/MiscPrograms\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/OpenPrograms/MiscPrograms/issues/3\tO\thttps://github.com/OpenPrograms/MiscPrograms/issues/3\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nso\tO\tso\tO\nmac\tB-Operating_System\tmac\tO\nusers\tO\tusers\tO\nlike\tO\tlike\tO\nme\tO\tme\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\n.DS_Store\tB-File_Type\t.DS_Store\tO\nfile\tO\tfile\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nauto-generatored\tO\tauto-generatored\tO\nby\tO\tby\tO\nOS-X\tB-Operating_System\tOS-X\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nmost\tO\tmost\tO\npeople\tO\tpeople\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nthose\tO\tthose\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\n:\tO\t:\tO\nhttp://en.wikipedia.org/wiki/.DS_Store\tO\thttp://en.wikipedia.org/wiki/.DS_Store\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmongrate/mongrate.com\tO\tmongrate/mongrate.com\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mongrate/mongrate.com/issues/2\tO\thttps://github.com/mongrate/mongrate.com/issues/2\tO\n\t\nThere\tO\tThere\tO\nwere\tO\twere\tO\nno\tO\tno\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nbundle\tO\tbundle\tO\nregistration\tO\tregistration\tO\nin\tO\tin\tO\nSymfony\tB-Library\tSymfony\tO\napplication\tO\tapplication\tO\nkernel\tO\tkernel\tO\n.\tO\t.\tO\n\t\nThough\tO\tThough\tO\nit\tO\tit\tO\n's\tO\t's\tO\nobvious\tO\tobvious\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nexperienced\tO\texperienced\tO\nsymfony\tB-Library\tsymfony\tO\nuser\tO\tuser\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\ndocs\tO\tdocs\tO\n.\tO\t.\tO\n\t\nP.S\tO\tP.S\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nEnglish\tO\tEnglish\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncreepy\tO\tcreepy\tO\nsometimes\tO\tsometimes\tO\n,\tO\t,\tO\nfeel\tO\tfeel\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nanything\tO\tanything\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndoc\tO\tdoc\tO\n's\tO\t's\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/203\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/203\tO\n\t\n@GamalSebaee\tB-User_Name\t@GamalSebaee\tO\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nclosed\tO\tclosed\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nisnt\tO\tisnt\tO\nrunning\tO\trunning\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nplugin\tO\tplugin\tO\nprevents\tO\tprevents\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n(\tO\t(\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\n)\tO\t)\tO\nfrom\tO\tfrom\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nsleep\tO\tsleep\tO\nwhile\tO\twhile\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/libp2p/interface-record-store/issues/13\tO\thttps://github.com/libp2p/interface-record-store/issues/13\tO\n\t\n…\tO\t…\tO\nwhat\tO\twhat\tO\nhave\tO\thave\tO\nthey\tO\tthey\tO\nbeen\tO\tbeen\tO\nreplaced\tO\treplaced\tO\nby\tO\tby\tO\n?\tO\t?\tO\n-->\tO\t-->\tO\n\"\tO\t\"\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nT-Dawg/dojo_rules\tO\tT-Dawg/dojo_rules\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/T-Dawg/dojo_rules/issues/3\tO\thttps://github.com/T-Dawg/dojo_rules/issues/3\tO\n\t\nTo\tO\tTo\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\na\tO\ta\tO\npersonal\tO\tpersonal\tO\ntouch\tO\ttouch\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nprogrammer\tO\tprogrammer\tO\ngrievance\tO\tgrievance\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nkill_list.md\tB-File_Name\tkill_list.md\tO\n\"\tO\t\"\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/4\tO\thttps://github.com/numen31337/AKVideoImageView/issues/4\tO\n\t\nThis\tO\tThis\tO\nlibrary\tO\tlibrary\tO\nuses\tO\tuses\tO\nAVAssetReader\tB-Library_Class\tAVAssetReader\tO\nto\tO\tto\tO\nrender\tO\trender\tO\nvideo\tO\tvideo\tO\nframes\tO\tframes\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nsupporting\tO\tsupporting\tO\nonly\tO\tonly\tO\nlocal\tO\tlocal\tO\nURL\tO\tURL\tO\n's\tO\t's\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nCannot\tO\tCannot\tO\ninitialize\tO\tinitialize\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nAVAssetReader\tO\tAVAssetReader\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nasset\tO\tasset\tO\nat\tO\tat\tO\nnon-local\tO\tnon-local\tO\nURL\tO\tURL\tO\n\"\tO\t\"\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread\tO\tread\tO\nany\tO\tany\tO\nremote\tO\tremote\tO\nURL\tO\tURL\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/13\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/13\tO\n\t\nGlad\tO\tGlad\tO\nyou\tO\tyou\tO\ngot\tO\tgot\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\nagain\tO\tagain\tO\n!\tO\t!\tO\n\t\nClosing\tO\tClosing\tO\nthis\tO\tthis\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/7\tO\thttps://github.com/op-jenkins/op-build/issues/7\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark/issues/23\tO\thttps://github.com/ben-eb/metalsmith-remark/issues/23\tO\n\t\nHello\tO\tHello\tO\nlovely\tO\tlovely\tO\nhumans\tO\thumans\tO\n,\tO\t,\tO\n\t\neslint-config-cssnano\tB-Library\teslint-config-cssnano\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n3.0.0\tB-Version\t3.0.0\tO\n.\tO\t.\tO\n\t\nState\tO\tState\tO\n\t\n\t\nUpdate\tO\tUpdate\tO\n:rocket\tO\t:rocket\tO\n:\tO\t:\tO\n\t\n\t\nDependency\tO\tDependency\tO\n\t\n\t\n\t\neslint-config-cssnano\tB-Library\teslint-config-cssnano\tO\n\t\n\t\nNew\tO\tNew\tO\nversion\tO\tversion\tO\n\t\n\t\n\t\n3.0.0\tB-Version\t3.0.0\tO\n\t\n\t\nType\tO\tType\tO\n\t\n\t\n\t\ndevDependency\tO\tdevDependency\tO\n\t\n\t\nThis\tO\tThis\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nWithout\tO\tWithout\tO\naccepting\tO\taccepting\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nnew\tO\tnew\tO\nfeatures\tO\tfeatures\tO\n,\tO\t,\tO\nfixes\tO\tfixes\tO\nand\tO\tand\tO\nperf\tO\tperf\tO\nimprovements\tO\timprovements\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmaintainers\tO\tmaintainers\tO\nworked\tO\tworked\tO\non\tO\ton\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nget\tO\tget\tO\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\neslint-config-cssnano\tB-Library\teslint-config-cssnano\tO\n.\tO\t.\tO\n\t\nGiven\tO\tGiven\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndecent\tO\tdecent\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\n,\tO\t,\tO\na\tO\ta\tO\npassing\tO\tpassing\tO\nbuild\tO\tbuild\tO\nis\tO\tis\tO\na\tO\ta\tO\nstrong\tO\tstrong\tO\nindicator\tO\tindicator\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nby\tO\tby\tO\nmerging\tO\tmerging\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nchange\tO\tchange\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nthis\tO\tthis\tO\nbranch\tO\tbranch\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimprove\tO\timprove\tO\nthese\tO\tthese\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n?\tO\t?\tO\n\t\nDid\tO\tDid\tO\nI\tO\tI\tO\nreport\tO\treport\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nunsure\tO\tunsure\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nfrequently\tO\tfrequently\tO\nasked\tO\tasked\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\na\tO\ta\tO\nbot\tO\tbot\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\nteach\tO\tteach\tO\nme\tO\tme\tO\nnew\tO\tnew\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nthem\tO\tthem\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\nrock\tO\trock\tO\n!\tO\t!\tO\n\t\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\ndiffers\tO\tdiffers\tO\nby\tO\tby\tO\n4\tO\t4\tO\ncommits\tO\tcommits\tO\n.\tO\t.\tO\n\t\n4658eea\tO\t4658eea\tB-Code_Block\n3.0.0\tB-Version\t3.0.0\tI-Code_Block\n\t\n176c106\tO\t176c106\tB-Code_Block\nRule\tO\tRule\tI-Code_Block\ntweaks\tO\ttweaks\tI-Code_Block\n,\tO\t,\tI-Code_Block\nand\tO\tand\tI-Code_Block\nadd\tO\tadd\tI-Code_Block\nimport/export\tO\timport/export\tI-Code_Block\nlinting\tO\tlinting\tI-Code_Block\n.\tO\t.\tI-Code_Block\n\t\nf983b0b\tO\tf983b0b\tB-Code_Block\n2.1.0\tB-Version\t2.1.0\tI-Code_Block\n\t\nc8f925c\tO\tc8f925c\tB-Code_Block\nFix\tO\tFix\tI-Code_Block\nexport\tO\texport\tI-Code_Block\nfrom\tO\tfrom\tI-Code_Block\ndefinitions\tO\tdefinitions\tI-Code_Block\n.\tO\t.\tI-Code_Block\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndiff\tO\tdiff\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\ngreenkeeper.io\tB-Application\tgreenkeeper.io\tO\n.\tO\t.\tO\n\t\nTired\tO\tTired\tO\nof\tO\tof\tO\nseeing\tO\tseeing\tO\nthis\tO\tthis\tO\nsponsor\tO\tsponsor\tO\nmessage\tO\tmessage\tO\n?\tO\t?\tO\n\t\n:zap\tO\t:zap\tO\n:\tO\t:\tO\ngreenkeeper\tB-Code_Block\tgreenkeeper\tB-Code_Block\nupgrade\tI-Code_Block\tupgrade\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/24\tO\thttps://github.com/mapbox/tile-count/issues/24\tO\n\t\nYour\tO\tYour\tO\nchanges\tO\tchanges\tO\nlook\tO\tlook\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoso/flexgrid\tO\tmoso/flexgrid\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moso/flexgrid/issues/7\tO\thttps://github.com/moso/flexgrid/issues/7\tO\n\t\nAdd\tO\tAdd\tO\nauto-margins\tO\tauto-margins\tO\nfor\tO\tfor\tO\nbetter\tO\tbetter\tO\noffsetting\tO\toffsetting\tO\nand\tO\tand\tO\nboth\tO\tboth\tO\nhorizontal\tO\thorizontal\tO\nan\tO\tan\tO\nvertical\tO\tvertical\tO\npositioning\tO\tpositioning\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/12\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/12\tO\n\t\nUpgrade\tO\tUpgrade\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/77\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/77\tO\n\t\nWe\tO\tWe\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\naway\tO\taway\tO\nfrom\tO\tfrom\tO\ndifferentiating\tO\tdifferentiating\tO\ntech-preview\tO\ttech-preview\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nrepository\tO\trepository\tO\nlevel\tO\tlevel\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nus\tO\tus\tO\nmove\tO\tmove\tO\nforward\tO\tforward\tO\nwith\tO\twith\tO\ncontainer\tO\tcontainer\tO\nsigning\tO\tsigning\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwill\tO\twill\tO\nkeep\tO\tkeep\tO\nour\tO\tour\tO\npolicies\tO\tpolicies\tO\nlined\tO\tlined\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nhow\tO\thow\tO\nwe\tO\twe\tO\ntreat\tO\ttreat\tO\ntech\tO\ttech\tO\npreview\tO\tpreview\tO\nrpms\tO\trpms\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLanceKnight/WonderConverter\tO\tLanceKnight/WonderConverter\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/LanceKnight/WonderConverter\tO\thttps://github.com/LanceKnight/WonderConverter\tO\n\t\nWonder\tB-Application\tWonder\tO\nConverter\tI-Application\tConverter\tO\n\t\nAndroid\tB-Operating_System\tAndroid\tO\nApp\tO\tApp\tO\nfor\tO\tfor\tO\nconverting\tO\tconverting\tO\nsquare\tO\tsquare\tO\nfeet\tO\tfeet\tO\nto\tO\tto\tO\ncarton\tO\tcarton\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark/issues/19\tO\thttps://github.com/ben-eb/metalsmith-remark/issues/19\tO\n\t\nNo\tO\tNo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nmajor\tO\tmajor\tO\nupdate\tO\tupdate\tO\n(\tO\t(\tO\nas\tO\tas\tO\nit\tO\tit\tO\nbreaks\tO\tbreaks\tO\ncompatibility\tO\tcompatibility\tO\nwith\tO\twith\tO\nremark-highlight\tB-Library\tremark-highlight\tO\netc\tO\tetc\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\n've\tO\t've\tO\nupdated\tO\tupdated\tO\nhast-util-to-html\tB-Library\thast-util-to-html\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ndays\tO\tdays\tO\nago\tO\tago\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nchanges\tO\tchanges\tO\nHTML\tB-Language\tHTML\tO\noutput\tO\toutput\tO\n,\tO\t,\tO\ncausing\tO\tcausing\tO\na\tO\ta\tO\nmajor\tO\tmajor\tO\nrelease\tO\trelease\tO\nin\tO\tin\tO\nremark-html\tB-Library\tremark-html\tO\n(\tO\t(\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\ndone\tO\tdone\tO\nthat\tO\tthat\tO\nyet\tO\tyet\tO\n)\tO\t)\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nbump\tO\tbump\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nTL\tO\tTL\tO\n;D\tO\t;D\tO\nR\tO\tR\tO\n:\tO\t:\tO\nwait\tO\twait\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ndays\tO\tdays\tO\n'\tO\t'\tO\ntill\tO\ttill\tO\nremark-html\tB-Library\tremark-html\tO\nupdates\tO\tupdates\tO\nto\tO\tto\tO\n5.0.0\tB-Version\t5.0.0\tO\n:o\tO\t:o\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nULI-RubyonRails-2017/lab01\tO\tULI-RubyonRails-2017/lab01\tO\n-plp\tO\t-plp\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/ULI-RubyonRails-2017/lab01-plp\tO\thttps://github.com/ULI-RubyonRails-2017/lab01-plp\tO\n\t\nCoderRestaurant\tO\tCoderRestaurant\tO\nWebsite\tO\tWebsite\tO\n\t\nCoder\tO\tCoder\tO\nRestaurant\tO\tRestaurant\tO\nis\tO\tis\tO\na\tO\ta\tO\nRuby\tB-Library\tRuby\tO\non\tI-Library\ton\tO\nRails\tI-Library\tRails\tO\nrestaurant\tO\trestaurant\tO\nwebsite\tO\twebsite\tO\nlet\tO\tlet\tO\nusers\tO\tusers\tO\norder\tO\torder\tO\nfoods\tO\tfoods\tO\n.\tO\t.\tO\n\t\nSubmitted\tO\tSubmitted\tO\nby\tO\tby\tO\n:\tO\t:\tO\nYour\tO\tYour\tO\nname\tO\tname\tO\n\t\nTime\tO\tTime\tO\nspent\tO\tspent\tO\n:\tO\t:\tO\ntime\tO\ttime\tO\nhours\tO\thours\tO\nspent\tO\tspent\tO\nin\tO\tin\tO\ntotal\tO\ttotal\tO\n\t\nURL\tO\tURL\tO\n:\tO\t:\tO\n\t\nUser\tO\tUser\tO\nStories\tO\tStories\tO\n\t\nRequired\tO\tRequired\tO\n:\tO\t:\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\ntwo\tO\ttwo\tO\npages\tO\tpages\tO\n:\tO\t:\tO\nMenu\tO\tMenu\tO\n,\tO\t,\tO\nand\tO\tand\tO\nContact\tO\tContact\tO\nUs\tO\tUs\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\naddress\tO\taddress\tO\nand\tO\tand\tO\nphone\tO\tphone\tO\nnumber\tO\tnumber\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncontact\tO\tcontact\tO\nus\tO\tus\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\na\tO\ta\tO\nbasic\tO\tbasic\tO\ngoogle\tB-User_Interface_Element\tgoogle\tO\nmap\tI-User_Interface_Element\tmap\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nContact\tO\tContact\tO\nUs\tO\tUs\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nnavigate\tO\tnavigate\tO\nto\tO\tto\tO\na\tO\ta\tO\nmenu\tO\tmenu\tO\npage\tO\tpage\tO\nwith\tO\twith\tO\nfour\tO\tfour\tO\nsections\tO\tsections\tO\n:\tO\t:\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nBreakfast\tO\tBreakfast\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nLunch\tO\tLunch\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nDinner\tO\tDinner\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nDrinks\tO\tDrinks\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\nshould\tO\tshould\tO\nsee\tO\tsee\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n5\tO\t5\tO\nfood\tO\tfood\tO\nitems\tO\titems\tO\nin\tO\tin\tO\neach\tO\teach\tO\nsection\tO\tsection\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nEach\tO\tEach\tO\nfood\tO\tfood\tO\nitem\tO\titem\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nfields\tO\tfields\tO\n:\tO\t:\tO\n\t\nName\tO\tName\tO\n(\tO\t(\tO\nCanh\tO\tCanh\tO\nChua\tO\tChua\tO\n)\tO\t)\tO\n\t\nDescription\tO\tDescription\tO\n(\tO\t(\tO\nDelicious\tO\tDelicious\tO\nfish\tO\tfish\tO\nsoup\tO\tsoup\tO\n)\tO\t)\tO\n\t\nPrice\tO\tPrice\tO\n(\tO\t(\tO\nVND\tO\tVND\tO\n)\tO\t)\tO\n\t\nSection\tO\tSection\tO\n-\tO\t-\tO\nBreakfast\tO\tBreakfast\tO\n,\tO\t,\tO\nLunch\tO\tLunch\tO\n,\tO\t,\tO\nDinner\tO\tDinner\tO\n,\tO\t,\tO\nDrinks\tO\tDrinks\tO\n\t\nImage\tB-User_Interface_Element\tImage\tO\nURL\tO\tURL\tO\n-\tO\t-\tO\ndo\tO\tdo\tO\na\tO\ta\tO\ngoogle\tO\tgoogle\tO\nsearch\tO\tsearch\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\nLoremFlickr\tO\tLoremFlickr\tO\n:\tO\t:\tO\nhttp://loremflickr.com/320/240/canhchua\tO\thttp://loremflickr.com/320/240/canhchua\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nfilter\tO\tfilter\tO\nby\tO\tby\tO\nsection\tO\tsection\tO\nof\tO\tof\tO\nBreakfast\tO\tBreakfast\tO\n,\tO\t,\tO\nLunch\tO\tLunch\tO\n,\tO\t,\tO\nDinner\tO\tDinner\tO\n,\tO\t,\tO\nor\tO\tor\tO\nDrinks\tO\tDrinks\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nrelevant\tO\trelevant\tO\nitems\tO\titems\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nsort\tO\tsort\tO\nmenu\tO\tmenu\tO\nitems\tO\titems\tO\nby\tO\tby\tO\n\"\tO\t\"\tO\nalphabetical\tO\talphabetical\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nprice\tO\tprice\tO\nlow\tO\tlow\tO\nto\tO\tto\tO\nhigh\tO\thigh\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nprice\tO\tprice\tO\nhigh\tO\thigh\tO\nto\tO\tto\tO\nlow\tO\tlow\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nget\tO\tget\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nitem\tO\titem\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nClicking\tO\tClicking\tO\non\tO\ton\tO\nan\tO\tan\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nbrings\tO\tbrings\tO\nup\tO\tup\tO\nits\tO\tits\tO\ndetail\tO\tdetail\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ndescription\tO\tdescription\tO\nand\tO\tand\tO\na\tO\ta\tO\nlarger\tO\tlarger\tO\npicture\tB-User_Interface_Element\tpicture\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nclick\tO\tclick\tO\n\"\tO\t\"\tO\norder\tO\torder\tO\n\"\tO\t\"\tO\non\tO\ton\tO\na\tO\ta\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nitem\tO\titem\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nCreate\tO\tCreate\tO\nOrder\tO\tOrder\tO\n\"\tO\t\"\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\nis\tO\tis\tO\nable\tO\table\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\nname\tO\tname\tO\n,\tO\t,\tO\nphone\tO\tphone\tO\nnumber\tO\tnumber\tO\n,\tO\t,\tO\nand\tO\tand\tO\naddress\tO\taddress\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\nis\tO\tis\tO\ntaken\tO\ttaken\tO\nto\tO\tto\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\norder\tO\torder\tO\npage\tO\tpage\tO\n\"\tO\t\"\tO\nthat\tO\tthat\tO\nlists\tO\tlists\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nitem\tO\titem\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\ncost\tO\tcost\tO\n(\tO\t(\tO\ndelivery\tO\tdelivery\tO\nshould\tO\tshould\tO\ncost\tO\tcost\tO\n20,000\tO\t20,000\tO\nVND\tO\tVND\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nname\tO\tname\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\naddress\tO\taddress\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nin\tO\tin\tO\nhuman-readable\tO\thuman-readable\tO\nformat\tO\tformat\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nTuesday\tO\tTuesday\tO\n,\tO\t,\tO\nDecember\tO\tDecember\tO\n1\tO\t1\tO\n,\tO\t,\tO\n15:25\tO\t15:25\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOptional\tO\tOptional\tO\n:\tO\t:\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nfilter\tO\tfilter\tO\nby\tO\tby\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nCuisine\tO\tCuisine\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\ntimes\tO\ttimes\tO\neach\tO\teach\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nitem\tO\titem\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nviewed\tO\tviewed\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsort\tO\tsort\tO\nitems\tO\titems\tO\nby\tO\tby\tO\n\"\tO\t\"\tO\nmost\tO\tmost\tO\nviewed\tO\tviewed\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nleave\tO\tleave\tO\na\tO\ta\tO\nreview\tO\treview\tO\n(\tO\t(\tO\n1-5\tO\t1-5\tO\nstars\tO\tstars\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\ndish\tO\tdish\tO\n,\tO\t,\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\na\tO\ta\tO\ntext\tO\ttext\tO\nreview\tO\treview\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nreviews\tO\treviews\tO\nand\tO\tand\tO\nan\tO\tan\tO\naverage\tO\taverage\tO\nreview\tO\treview\tO\nscore\tO\tscore\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\ninput\tO\tinput\tO\n\"\tO\t\"\tO\nCODERSCHOOL\tO\tCODERSCHOOL\tO\n\"\tO\t\"\tO\nas\tO\tas\tO\na\tO\ta\tO\ncoupon\tO\tcoupon\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\ngive\tO\tgive\tO\na\tO\ta\tO\n50%\tO\t50%\tO\ndiscount\tO\tdiscount\tO\noff\tO\toff\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\norder\tO\torder\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\none\tO\tone\tO\ndish\tO\tdish\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\nreceives\tO\treceives\tO\nan\tO\tan\tO\nemail\tO\temail\tO\nupon\tO\tupon\tO\nplacing\tO\tplacing\tO\nan\tO\tan\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nThe\tO\tThe\tO\nRestaurant\tO\tRestaurant\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\n)\tO\t)\tO\nreceives\tO\treceives\tO\nan\tO\tan\tO\nemail\tO\temail\tO\nor\tO\tor\tO\nSMS\tO\tSMS\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nUser\tO\tUser\tO\nplaces\tO\tplaces\tO\nan\tO\tan\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nTwilio\tB-Application\tTwilio\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nSMS\tB-Application\tSMS\tO\nAPI\tI-Application\tAPI\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nPromo\tO\tPromo\tO\nCode\tO\tCode\tO\nCodeSchool15\tO\tCodeSchool15\tO\nfor\tO\tfor\tO\n$30\tO\t$30\tO\nfree\tO\tfree\tO\ncredit\tO\tcredit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nadditional\tO\tadditional\tO\nfeatures\tO\tfeatures\tO\nare\tO\tare\tO\nimplemented\tO\timplemented\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nknown\tO\tknown\tO\nissues\tO\tissues\tO\n:\tO\t:\tO\n\t\nList\tO\tList\tO\nbugs\tO\tbugs\tO\nor\tO\tor\tO\nthings\tO\tthings\tO\nthat\tO\tthat\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nyet\tO\tyet\tO\n\t\nVideo\tB-User_Interface_Element\tVideo\tO\nWalkthrough\tO\tWalkthrough\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nwalkthrough\tO\twalkthrough\tO\nof\tO\tof\tO\nimplemented\tO\timplemented\tO\nuser\tO\tuser\tO\nstories\tO\tstories\tO\n:\tO\t:\tO\n\t\nGIF\tB-File_Type\tGIF\tO\ncreated\tO\tcreated\tO\nwith\tO\twith\tO\nLiceCap\tB-Application\tLiceCap\tO\n.\tO\t.\tO\n\t\nNotes\tO\tNotes\tO\n\t\nDescribe\tO\tDescribe\tO\nany\tO\tany\tO\nchallenges\tO\tchallenges\tO\nencountered\tO\tencountered\tO\nwhile\tO\twhile\tO\nbuilding\tO\tbuilding\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nLicense\tO\tLicense\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_1134\tI-Code_Block\tGR_1134\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/15\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/15\tO\n\t\nIn\tO\tIn\tO\nAWS\tB-Application\tAWS\tO\nRuby\tI-Application\tRuby\tO\nSDK\tI-Application\tSDK\tO\nV2\tB-Version\tV2\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nproxy_uri\tB-Library_Variable\tproxy_uri\tO\noption\tO\toption\tO\nis\tO\tis\tO\nchanged\tO\tchanged\tO\nto\tO\tto\tO\nhttp_proxy\tB-Library_Variable\thttp_proxy\tO\n.\tO\t.\tO\n\t\nhttp://docs.aws.amazon.com/sdkforruby/api/Aws/EC2/Client.html#initialize-instance_method\tO\thttp://docs.aws.amazon.com/sdkforruby/api/Aws/EC2/Client.html#initialize-instance_method\tO\nhttps://forums.aws.amazon.com/thread.jspa?threadID=172034\tO\thttps://forums.aws.amazon.com/thread.jspa?threadID=172034\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nproxy_uri\tB-Library_Variable\tproxy_uri\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\nArgumentError\tB-Error_Name\tArgumentError\tO\n:\tO\t:\tO\ninvalid\tO\tinvalid\tO\nconfiguration\tO\tconfiguration\tO\noption\tO\toption\tO\n`:proxy_uri\tO\t`:proxy_uri\tO\n'\tO\t'\tO\n\t\nhttps://github.com/logstash-plugins/logstash-mixin-aws/blob/master/lib/logstash/plugin_mixins/aws_config/v2.rb#L20\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/blob/master/lib/logstash/plugin_mixins/aws_config/v2.rb#L20\tO\n\t\nA\tO\tA\tO\nfix\tO\tfix\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\njust\tO\tjust\tO\nchanging\tO\tchanging\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_20047\tI-Code_Block\tGR_20047\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_20048\tI-Code_Block\tGR_20048\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmakeen-project/makeen\tO\tmakeen-project/makeen\tO\n-hapi\tO\t-hapi\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/makeen-project/makeen-hapi\tO\thttps://github.com/makeen-project/makeen-hapi\tO\n\t\nMakeen\tB-Application\tMakeen\tO\n\t\nA\tO\tA\tO\nback-end\tO\tback-end\tO\ndevelopment\tO\tdevelopment\tO\nplatform\tO\tplatform\tO\nfor\tO\tfor\tO\nrapid\tO\trapid\tO\napplication\tO\tapplication\tO\ndevelopment\tO\tdevelopment\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nbattle\tO\tbattle\tO\ntested\tO\ttested\tO\nproduction\tO\tproduction\tO\nready\tO\tready\tO\n.\tO\t.\tO\n\t\nMakeen\tB-Application\tMakeen\tO\npromotes\tO\tpromotes\tO\na\tO\ta\tO\npluggable\tO\tpluggable\tO\narchitecture\tO\tarchitecture\tO\nthat\tO\tthat\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nbroad\tO\tbroad\tO\nrange\tO\trange\tO\nof\tO\tof\tO\npre-developed\tO\tpre-developed\tO\nplugins\tO\tplugins\tO\nwhich\tO\twhich\tO\nprovide\tO\tprovide\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfunctionality\tO\tfunctionality\tO\na\tO\ta\tO\nmodern\tO\tmodern\tO\napplication\tO\tapplication\tO\nmight\tO\tmight\tO\nneed\tO\tneed\tO\n:\tO\t:\tO\nuser\tO\tuser\tO\n,\tO\t,\tO\nstorage\tO\tstorage\tO\n,\tO\t,\tO\nmailing\tO\tmailing\tO\n,\tO\t,\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nREST\tB-Library\tREST\tO\nAPI\tI-Library\tAPI\tO\n,\tO\t,\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nbackend\tO\tbackend\tO\nperformance\tO\tperformance\tO\nmonitoring\tO\tmonitoring\tO\n,\tO\t,\tO\nCLI\tB-Application\tCLI\tO\nand\tO\tand\tO\ncloud\tO\tcloud\tO\n(\tO\t(\tO\nAW\tB-Application\tAW\tO\n&\tO\t&\tO\nAzure\tB-Application\tAzure\tO\n)\tO\t)\tO\nvirtual\tO\tvirtual\tO\ninstances\tO\tinstances\tO\nmangement\tO\tmangement\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmajority\tO\tmajority\tO\nof\tO\tof\tO\nmakeen\tB-Application\tmakeen\tO\nplugins\tI-Application\tplugins\tO\nare\tO\tare\tO\nhosted\tO\thosted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nmono-repository\tO\tmono-repository\tO\n.\tO\t.\tO\n\t\nTable\tO\tTable\tO\nof\tO\tof\tO\nContents\tO\tContents\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nUsage\tO\tUsage\tO\n\t\nDemo\tO\tDemo\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nPlugins\tI-Application\tPlugins\tO\n\t\nOctobus\tB-Library\tOctobus\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nRouter\tO\tRouter\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nCore\tO\tCore\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nMailer\tO\tMailer\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nUser\tO\tUser\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nStorage\tO\tStorage\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nMonitoring\tO\tMonitoring\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nDocumentation\tO\tDocumentation\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nVirtual\tO\tVirtual\tO\nMachines\tO\tMachines\tO\n\t\nBuild\tO\tBuild\tO\nand\tO\tand\tO\nDeployment\tO\tDeployment\tO\n\t\nContributing\tO\tContributing\tO\n\t\nCredits\tO\tCredits\tO\n\t\nLicense\tO\tLicense\tO\n\t\nGet\tO\tGet\tO\nin\tO\tin\tO\nTouch\tO\tTouch\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nBefore\tO\tBefore\tO\nramping\tO\tramping\tO\nup\tO\tup\tO\nmakeen\tO\tmakeen\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nrequirements\tO\trequirements\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nmet\tO\tmet\tO\n:\tO\t:\tO\n\t\nNode\tB-Application\tNode\tO\nv6\tB-Version\tv6\tO\nor\tO\tor\tO\nhigher\tO\thigher\tO\nversion\tO\tversion\tO\n\t\nmongodb\tB-Application\tmongodb\tO\nconnection\tO\tconnection\tO\n\t\nBecause\tO\tBecause\tO\nMakeen\tB-Application\tMakeen\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nplugins\tO\tplugins\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nHapi.js\tB-Library\tHapi.js\tO\nserver\tB-Application\tserver\tO\nto\tO\tto\tO\nload\tO\tload\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nspeed\tO\tspeed\tO\nthings\tO\tthings\tO\nup\tO\tup\tO\nMakeen\tB-Application\tMakeen\tO\nis\tO\tis\tO\nproviding\tO\tproviding\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\ncomponent\tO\tcomponent\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nshape\tO\tshape\tO\nof\tO\tof\tO\na\tO\ta\tO\nboilerplate\tO\tboilerplate\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nclone\tO\tclone\tO\nand\tO\tand\tO\ninstall\tO\tinstall\tO\n:\tO\t:\tO\n\t\ngit\tB-Code_Block\tgit\tB-Code_Block\nclone\tI-Code_Block\tclone\tI-Code_Block\ngit@github.com\tI-Code_Block\tgit@github.com\tI-Code_Block\n:makeen-project/boilerplate.git\tI-Code_Block\t:makeen-project/boilerplate.git\tI-Code_Block\n\t\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n\t\nFrom\tO\tFrom\tO\nhere\tO\there\tO\non\tO\ton\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nmakeen\tB-Application\tmakeen\tO\nplugin\tI-Application\tplugin\tO\nwill\tO\twill\tO\nrequire\tO\trequire\tO\nfirst\tO\tfirst\tO\ninstalling\tO\tinstalling\tO\nit\tO\tit\tO\nby\tO\tby\tO\nway\tO\tway\tO\nof\tO\tof\tO\nnpm\tB-Application\tnpm\tO\n:\tO\t:\tO\n\t\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nmakeen-core\tI-Code_Block\tmakeen-core\tI-Code_Block\n\t\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nmakeen-router\tI-Code_Block\tmakeen-router\tI-Code_Block\n\t\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nmakeen-documentation\tI-Code_Block\tmakeen-documentation\tI-Code_Block\n\t\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nmakeen-mailer\tI-Code_Block\tmakeen-mailer\tI-Code_Block\n\t\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nmakeen-storage\tI-Code_Block\tmakeen-storage\tI-Code_Block\n\t\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nmakeen-monitoring\tI-Code_Block\tmakeen-monitoring\tI-Code_Block\n\t\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nmakeen-vm\tI-Code_Block\tmakeen-vm\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nload\tO\tload\tO\nthem\tO\tthem\tO\nwhereve\tO\twhereve\tO\nneeded\tO\tneeded\tO\n,\tO\t,\tO\nbe\tO\tbe\tO\nit\tO\tit\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nhapijs\tB-Library\thapijs\tO\nplugin\tO\tplugin\tO\nor\tO\tor\tO\nanywhere\tO\tanywhere\tO\nelse\tO\telse\tO\nserver-side\tB-Application\tserver-side\tO\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\n\t\nThe\tO\tThe\tO\nMakeen\tB-Application\tMakeen\tO\nboilerplate\tO\tboilerplate\tO\nis\tO\tis\tO\ndelivered\tO\tdelivered\tO\nas\tO\tas\tO\na\tO\ta\tO\nfeature-rich\tO\tfeature-rich\tO\nextensible\tO\textensible\tO\nbackend\tO\tbackend\tO\nhapi.js\tB-Library\thapi.js\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nArchitecture\tO\tArchitecture\tO\nbeing\tO\tbeing\tO\nmodular\tO\tmodular\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nplugin\tO\tplugin\tO\nand\tO\tand\tO\nplug\tO\tplug\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\neasily\tO\teasily\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nwill\tO\twill\tO\ncover\tO\tcover\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\ncreation\tO\tcreation\tO\npart\tO\tpart\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nDemo\tO\tDemo\tO\nsection\tO\tsection\tO\nbut\tO\tbut\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nhapi.js\tB-Library\thapi.js\tO\nplugin\tO\tplugin\tO\nis\tO\tis\tO\ncomposed\tO\tcomposed\tO\nof\tO\tof\tO\npackage.json\tB-File_Name\tpackage.json\tB-Code_Block\nand\tO\tand\tO\nindex.js\tB-File_Name\tindex.js\tB-Code_Block\nfiles\tO\tfiles\tO\nwith\tO\twith\tO\na\tO\ta\tO\nregister\tO\tregister\tO\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nis\tO\tis\tO\njavascript\tB-Language\tjavascript\tO\nlogic\tO\tlogic\tO\n.\tO\t.\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nas\tO\tas\tO\na\tO\ta\tO\nwhole\tO\twhole\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nkey\tO\tkey\tO\nconcepts\tO\tconcepts\tO\nand\tO\tand\tO\nprinciples\tO\tprinciples\tO\nwhich\tO\twhich\tO\nwe\tO\twe\tO\n'll\tO\t'll\tO\ndiscuss\tO\tdiscuss\tO\n:\tO\t:\tO\n\t\nmodular\tO\tmodular\tO\nmessage\tO\tmessage\tO\ndriven\tO\tdriven\tO\narhitecture\tO\tarhitecture\tO\nby\tO\tby\tO\nway\tO\tway\tO\nof\tO\tof\tO\nOctobus.js\tB-Library\tOctobus.js\tO\n\t\nCRUD\tO\tCRUD\tO\ndatabase\tO\tdatabase\tO\noperations\tO\toperations\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfly\tO\tfly\tO\n\t\nCRUD\tO\tCRUD\tO\nREST\tB-Library\tREST\tO\nAPI\tI-Library\tAPI\tO\nendpoints\tO\tendpoints\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfly\tO\tfly\tO\n\t\nThe\tO\tThe\tO\nMakeen\tB-Application\tMakeen\tO\nPlugin\tI-Application\tPlugin\tB-Code_Block\n-\tO\t-\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nfledged\tO\tfledged\tO\nhapi.js\tB-Library\thapi.js\tO\nplugin\tO\tplugin\tO\ngenerator\tO\tgenerator\tO\n\t\nModular\tO\tModular\tO\nmessage\tO\tmessage\tO\ndriven\tO\tdriven\tO\narchitecture\tO\tarchitecture\tO\nby\tO\tby\tO\nway\tO\tway\tO\nof\tO\tof\tO\nOctobus.js\tB-Library\tOctobus.js\tO\n\t\nOctobus.js\tB-Library\tOctobus.js\tO\nis\tO\tis\tO\na\tO\ta\tO\nlibrary\tO\tlibrary\tO\nwhich\tO\twhich\tO\npromotes\tO\tpromotes\tO\ndecoupling\tO\tdecoupling\tO\napplication\tO\tapplication\tO\nlogic\tO\tlogic\tO\ninto\tO\tinto\tO\nisolated\tO\tisolated\tO\nmodules\tO\tmodules\tO\nand\tO\tand\tO\nenabling\tO\tenabling\tO\ncross-module\tO\tcross-module\tO\ninteraction\tO\tinteraction\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\ndriven\tO\tdriven\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nbasic\tO\tbasic\tO\nexample\tO\texample\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nconsider\tO\tconsider\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmonolithic\tO\tmonolithic\tO\nblock\tO\tblock\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nimplements\tO\timplements\tO\nmath\tO\tmath\tO\nlogic\tO\tlogic\tO\nand\tO\tand\tO\ncurrency\tO\tcurrency\tO\nlogic\tO\tlogic\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntwo\tO\ttwo\tO\nfunctions\tO\tfunctions\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12165\tI-Code_Block\tGR_12165\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\nlogic\tO\tlogic\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndecoupled\tO\tdecoupled\tO\ninto\tO\tinto\tO\nOctobus\tB-Library\tOctobus\tO\nservices\tO\tservices\tO\nas\tO\tas\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12166\tI-Code_Block\tGR_12166\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nabove\tO\tabove\tO\nimplementation\tO\timplementation\tO\nallows\tO\tallows\tO\nservices\tO\tservices\tO\nto\tO\tto\tO\nreside\tO\treside\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\nlocations\tO\tlocations\tO\nand\tO\tand\tO\nremoves\tO\tremoves\tO\nhard\tO\thard\tO\ndependency\tO\tdependency\tO\nby\tO\tby\tO\nrelying\tO\trelying\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndispatch\tO\tdispatch\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nall\tO\tall\tO\nexternal\tO\texternal\tO\nactions\tO\tactions\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\ntip\tO\ttip\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\niceberg\tO\ticeberg\tO\nbut\tO\tbut\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\na\tO\ta\tO\ntaste\tO\ttaste\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npower\tO\tpower\tO\nand\tO\tand\tO\nsimplicity\tO\tsimplicity\tO\nOctobus.js\tB-Library\tOctobus.js\tO\nbrings\tO\tbrings\tO\n.\tO\t.\tO\n\t\nCRUD\tO\tCRUD\tO\ndatabase\tO\tdatabase\tO\noperations\tO\toperations\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfly\tO\tfly\tO\n\t\nAnother\tO\tAnother\tO\nimportant\tO\timportant\tO\naspect\tO\taspect\tO\nwhen\tO\twhen\tO\nbuilding\tO\tbuilding\tO\nbackend\tO\tbackend\tO\nlogic\tO\tlogic\tO\nis\tO\tis\tO\ndatabase\tO\tdatabase\tO\naccess\tO\taccess\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nlogic\tO\tlogic\tO\nthat\tO\tthat\tO\nconnects\tO\tconnects\tO\nto\tO\tto\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\nperforms\tO\tperforms\tO\nboth\tO\tboth\tO\nCRUD\tO\tCRUD\tO\noperations\tO\toperations\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nreading\tO\treading\tO\n,\tO\t,\tO\ncreating\tO\tcreating\tO\n,\tO\t,\tO\nupdating\tO\tupdating\tO\n,\tO\t,\tO\ndeleting\tO\tdeleting\tO\nitems\tO\titems\tO\nand\tO\tand\tO\ncustom\tO\tcustom\tO\noperations\tO\toperations\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nCRUD\tO\tCRUD\tO\noparations\tO\toparations\tO\nbit\tO\tbit\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nhuge\tO\thuge\tO\nand\tO\tand\tO\nout\tO\tout\tO\nof\tO\tof\tO\ncontrol\tO\tcontrol\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\ncentralized\tO\tcentralized\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ncommon\tO\tcommon\tO\nset\tO\tset\tO\nof\tO\tof\tO\nactions\tO\tactions\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nmulltiple\tO\tmulltiple\tO\nrange\tO\trange\tO\nof\tO\tof\tO\nentities\tO\tentities\tO\n.\tO\t.\tO\n\t\nOctobus-CRUD\tB-Library\tOctobus-CRUD\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nrescue\tO\trescue\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\njust\tO\tjust\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nCRUD\tO\tCRUD\tO\ngenerator\tO\tgenerator\tO\nrequires\tO\trequires\tO\nan\tO\tan\tO\nentity\tO\tentity\tO\nschema\tO\tschema\tO\nand\tO\tand\tO\nan\tO\tan\tO\nOctobus-mongodb-store\tB-Application\tOctobus-mongodb-store\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12167\tI-Code_Block\tGR_12167\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWe\tO\tWe\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nMongo\tB-Application\tMongo\tO\nso\tO\tso\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nstore\tO\tstore\tO\nwe\tO\twe\tO\n're\tO\t're\tO\ngoing\tO\tgoing\tO\nwith\tO\twith\tO\nOctobus-mongodb-store\tB-Application\tOctobus-mongodb-store\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nserver\tI-Application\tserver\tO\nexposes\tO\texposes\tO\na\tO\ta\tO\nserver\tB-Application\tserver\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\njust\tO\tjust\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12168\tI-Code_Block\tGR_12168\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAt\tO\tAt\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nboth\tO\tboth\tO\nschema\tO\tschema\tB-Code_Block\nand\tO\tand\tO\nstore\tB-Variable_Name\tstore\tB-Code_Block\nso\tO\tso\tO\nwhe\tO\twhe\tO\ncan\tO\tcan\tO\ngo\tO\tgo\tO\nahead\tO\tahead\tO\nand\tO\tand\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nOctobus\tB-Library\tOctobus\tO\nCRUD\tO\tCRUD\tO\nservice\tO\tservice\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12169\tI-Code_Block\tGR_12169\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWith\tO\tWith\tO\njust\tO\tjust\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nwe\tO\twe\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\nthe\tO\tthe\tO\nBooksRepository\tB-Variable_Name\tBooksRepository\tO\nobject\tO\tobject\tO\nwhich\tO\twhich\tO\nexposes\tO\texposes\tO\nfull\tO\tfull\tO\nCRUD\tO\tCRUD\tO\ndatabase\tO\tdatabase\tO\noperations\tO\toperations\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nas\tO\tas\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12170\tI-Code_Block\tGR_12170\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12171\tI-Code_Block\tGR_12171\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nVoila\tO\tVoila\tO\n!\tO\t!\tO\n\t\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nserviceBus\tB-Library_Function\tserviceBus\tO\nor\tO\tor\tO\ndispatch\tB-Library_Function\tdispatch\tO\nmethod\tO\tmethod\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntrigger\tO\ttrigger\tO\nBooksRepository\tB-Variable_Name\tBooksRepository\tO\nrelated\tO\trelated\tO\nlogic\tO\tlogic\tO\nfrom\tO\tfrom\tO\ndifferent\tO\tdifferent\tO\nlocations\tO\tlocations\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\nneed\tO\tneed\tO\nof\tO\tof\tO\nimporting\tO\timporting\tO\nor\tO\tor\tO\nhard-requiring\tO\thard-requiring\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCRUD\tO\tCRUD\tO\nREST\tB-Library\tREST\tO\nAPI\tI-Library\tAPI\tO\nendpoints\tO\tendpoints\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfly\tO\tfly\tO\n\t\nNow\tO\tNow\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\n've\tO\t've\tO\nseen\tO\tseen\tO\nthe\tO\tthe\tO\npower\tO\tpower\tO\nof\tO\tof\tO\noctobus.js\tB-Library\toctobus.js\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\neasy\tO\teasy\tO\nway\tO\tway\tO\nof\tO\tof\tO\ncreating\tO\tcreating\tO\nCRUD\tO\tCRUD\tO\nstorage\tO\tstorage\tO\noctobus\tB-Library\toctobus\tO\nservices\tO\tservices\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nrequired\tO\trequired\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\nfunctionality\tO\tfunctionality\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\nREST\tB-Library\tREST\tO\nAPI\tI-Library\tAPI\tO\nendpoints\tO\tendpoints\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nexpose\tO\texpose\tO\nall\tO\tall\tO\nthis\tO\tthis\tO\nfunctionality\tO\tfunctionality\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\neasily\tO\teasily\tO\naccomplished\tO\taccomplished\tO\nusing\tO\tusing\tO\nmakeen-router\tB-Library\tmakeen-router\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nexported\tO\texported\tO\nclass\tO\tclass\tO\nMongoResourceRouter\tB-Library_Class\tMongoResourceRouter\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12172\tI-Code_Block\tGR_12172\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nit\tO\tit\tO\n!\tO\t!\tO\n\t\nwe\tO\twe\tO\nnow\tO\tnow\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nrange\tO\trange\tO\nof\tO\tof\tO\nCRUD\tO\tCRUD\tO\nendpoints\tO\tendpoints\tO\noperating\tO\toperating\tO\nfrom\tO\tfrom\tO\nHTTP\tB-Library_Function\tHTTP\tO\nrequest\tI-Library_Function\trequest\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndb\tO\tdb\tO\nlevel\tO\tlevel\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\ncustom\tO\tcustom\tO\nendpoints\tO\tendpoints\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\naccomplished\tO\taccomplished\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nnew\tO\tnew\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nBooksRouter\tB-Class_Name\tBooksRouter\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\ndecorating\tO\tdecorating\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n@route\tO\t@route\tO\ndecorator\tO\tdecorator\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12173\tI-Code_Block\tGR_12173\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nMakeen\tB-Library_Class\tMakeen\tO\nPlugin\tI-Library_Class\tPlugin\tB-Code_Block\n-\tO\t-\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nfledged\tO\tfledged\tO\nhapi.js\tB-Library\thapi.js\tO\nplugin\tO\tplugin\tO\ngenerator\tO\tgenerator\tO\n\t\nThe\tO\tThe\tO\nPlugin\tB-Library_Class\tPlugin\tB-Code_Block\nclass\tO\tclass\tO\nis\tO\tis\tO\na\tO\ta\tO\ncentral\tO\tcentral\tO\nconcept\tO\tconcept\tO\narround\tO\tarround\tO\nmakeen\tB-Application\tmakeen\tO\nplugins\tI-Application\tplugins\tO\ndevelopment\tO\tdevelopment\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nplugin\tO\tplugin\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nCRUD\tO\tCRUD\tO\nservice\tO\tservice\tO\ncontainer\tO\tcontainer\tO\nand\tO\tand\tO\nREST\tB-Library_Class\tREST\tO\nroutes\tI-Library_Class\troutes\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\ncustom\tO\tcustom\tO\nservice\tO\tservice\tO\ncontainers\tO\tcontainers\tO\nand\tO\tand\tO\nroutes\tO\troutes\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\noveridding\tO\toveridding\tO\nthe\tO\tthe\tO\nthe\tO\tthe\tO\nboot\tB-Library_Function\tboot\tB-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nbellow\tO\tbellow\tO\nexample\tO\texample\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nhapijs\tB-Library\thapijs\tO\nplugin\tO\tplugin\tO\ncontaining\tO\tcontaining\tO\nBooksRepository\tB-Variable_Name\tBooksRepository\tO\nservice\tO\tservice\tO\ncontainer\tO\tcontainer\tO\nand\tO\tand\tO\ncomplete\tO\tcomplete\tO\nREST\tB-Library_Class\tREST\tO\nCRUD\tI-Library_Class\tCRUD\tO\nroutes\tI-Library_Class\troutes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12174\tI-Code_Block\tGR_12174\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nonly\tO\tonly\tO\ntook\tO\ttook\tO\n6\tO\t6\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nhapi\tB-Library\thapi\tO\nplugin\tO\tplugin\tO\nwith\tO\twith\tO\nCRUD\tO\tCRUD\tO\nREST\tO\tREST\tO\nendpoints\tO\tendpoints\tO\nand\tO\tand\tO\na\tO\ta\tO\nCRUD\tO\tCRUD\tO\ndb\tO\tdb\tO\nservice\tO\tservice\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nsome\tO\tsome\tO\ncustom\tO\tcustom\tO\nservice\tO\tservice\tO\ncontainer\tO\tcontainer\tO\nand\tO\tand\tO\ncustom\tO\tcustom\tO\nREST\tB-Library_Class\tREST\tO\nroutes\tI-Library_Class\troutes\tO\nthat\tO\tthat\tO\ngo\tO\tgo\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\ninstantiate\tO\tinstantiate\tO\nthe\tO\tthe\tO\ncustom\tO\tcustom\tO\nservice\tO\tservice\tO\ncontainer\tO\tcontainer\tO\nand\tO\tand\tO\nCRUD\tB-Library_Class\tCRUD\tO\nREST\tI-Library_Class\tREST\tO\nrouter\tI-Library_Class\trouter\tO\ndirectly\tO\tdirectly\tO\nand\tO\tand\tO\npass\tO\tpass\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncreateResources\tB-Library_Function\tcreateResources\tB-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12175\tI-Code_Block\tGR_12175\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDemo\tO\tDemo\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nis\tO\tis\tO\ndelivered\tO\tdelivered\tO\nas\tO\tas\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\nfeature-rich\tO\tfeature-rich\tO\nextensible\tO\textensible\tO\nplugins\tO\tplugins\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\narchitecture\tO\tarchitecture\tO\nis\tO\tis\tO\nmodular\tO\tmodular\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ncustom\tO\tcustom\tO\nplugin\tO\tplugin\tO\nand\tO\tand\tO\nload\tO\tload\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nHapi.js\tB-Library\tHapi.js\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\nto\tO\tto\tO\nspeed\tO\tspeed\tO\nthis\tO\tthis\tO\npart\tO\tpart\tO\nmakeen\tO\tmakeen\tO\nalso\tO\talso\tO\ndelivers\tO\tdelivers\tO\na\tO\ta\tO\nboilerplate\tO\tboilerplate\tO\nproject\tO\tproject\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nHapi.js\tB-Library\tHapi.js\tO\nserver\tB-Application\tserver\tO\nif\tO\tif\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\nin\tO\tin\tO\naction\tO\taction\tO\nwe'll\tO\twe'll\tO\n:\tO\t:\tO\n\t\nrampup\tO\trampup\tO\nthe\tO\tthe\tO\nmakeen-boilerplate\tB-Library_Class\tmakeen-boilerplate\tO\nby\tO\tby\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nprovided\tO\tprovided\tO\ninstructions\tO\tinstructions\tO\n\t\nbuild\tO\tbuild\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nToDo\tO\tToDo\tO\nplugin\tO\tplugin\tO\nby\tO\tby\tO\nextending\tO\textending\tO\nthe\tO\tthe\tO\nPlugin\tB-Library_Class\tPlugin\tB-Code_Block\nclass\tO\tclass\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nmakeen-core\tB-Library\tmakeen-core\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nplugin\tO\tplugin\tO\nwill\tO\twill\tO\nprovide\tO\tprovide\tO\nbackend\tO\tbackend\tO\ntodo\tO\ttodo\tO\ntask\tO\ttask\tO\nmanagement\tO\tmanagement\tO\nlogic\tO\tlogic\tO\n.\tO\t.\tO\n\t\nStep\tO\tStep\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\npackage\tO\tpackage\tO\nstructure\tO\tstructure\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12176\tI-Code_Block\tGR_12176\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nStep\tO\tStep\tO\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nDefine\tO\tDefine\tO\ntodo\tO\ttodo\tO\nplugin\tO\tplugin\tO\nmain\tO\tmain\tO\nentities\tO\tentities\tO\nand\tO\tand\tO\ntheir\tO\ttheir\tO\ndata\tO\tdata\tO\nschema\tO\tschema\tO\n\t\nWe\tO\tWe\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nitems\tO\titems\tO\nand\tO\tand\tO\nitem\tO\titem\tO\nlists\tO\tlists\tO\nthus\tO\tthus\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nItem\tB-Library_Class\tItem\tO\nand\tO\tand\tO\nList\tB-Library_Class\tList\tO\nentities\tO\tentities\tO\n.\tO\t.\tO\n\t\nItem\tB-Library_Class\tItem\tO\nschema\tO\tschema\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12177\tI-Code_Block\tGR_12177\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nList\tB-Library_Class\tList\tO\nschema\tO\tschema\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12178\tI-Code_Block\tGR_12178\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nStep\tO\tStep\tO\n3\tO\t3\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\noctobus\tB-Library\toctobus\tO\nbased\tO\tbased\tO\nservices\tO\tservices\tO\nfor\tO\tfor\tO\nItem\tB-Library_Class\tItem\tO\nand\tO\tand\tO\nList\tB-Library_Class\tList\tO\n\t\nCreate\tO\tCreate\tO\n./packages/todo/src/services/ItemRepository.js\tB-File_Name\t./packages/todo/src/services/ItemRepository.js\tB-Code_Block\nfile\tO\tfile\tO\nWe\tO\tWe\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\na\tO\ta\tO\noctobus-crud\tB-Library\toctobus-crud\tO\npackage\tO\tpackage\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nfledged\tO\tfledged\tO\ndatabase\tO\tdatabase\tO\nintegrated\tO\tintegrated\tO\nCRUD\tO\tCRUD\tO\nset\tO\tset\tO\nof\tO\tof\tO\nactions\tO\tactions\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12179\tI-Code_Block\tGR_12179\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nCRUDServiceContainer\tB-Library_Class\tCRUDServiceContainer\tO\nclass\tO\tclass\tO\ntakes\tO\ttakes\tO\nin\tO\tin\tO\na\tO\ta\tO\nstore\tO\tstore\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nentity\tO\tentity\tO\nschema\tO\tschema\tO\nand\tO\tand\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nwith\tO\twith\tO\n:\tO\t:\tO\ncreate\tO\tcreate\tO\n,\tO\t,\tO\nread\tO\tread\tO\n,\tO\t,\tO\nupdate\tO\tupdate\tO\nand\tO\tand\tO\ndelete\tO\tdelete\tO\nmethods\tO\tmethods\tO\n\t\nCreate\tO\tCreate\tO\n./packages/todo/src/services/ListRepository.js\tB-File_Name\t./packages/todo/src/services/ListRepository.js\tB-Code_Block\nfile\tO\tfile\tO\n\t\nSame\tO\tSame\tO\nas\tO\tas\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nItem\tB-Library_Class\tItem\tO\nservice\tO\tservice\tO\nwe\tO\twe\tO\nwill\tO\twill\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nList\tB-Library_Class\tList\tO\nservice\tO\tservice\tO\nbut\tO\tbut\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nList\tB-Library_Class\tList\tO\nentity\tO\tentity\tO\nreferences\tO\treferences\tO\nand\tO\tand\tO\nlogically\tO\tlogically\tO\nowns\tO\towns\tO\nItems\tB-Library_Class\tItems\tO\nwe\tO\twe\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\noverwrite\tO\toverwrite\tO\nthe\tO\tthe\tO\ndelete\tB-Library_Function\tdelete\tO\nmethod\tO\tmethod\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nremoves\tO\tremoves\tO\nall\tO\tall\tO\nchild\tO\tchild\tO\nItem\tB-Library_Class\tItem\tO\nentities\tO\tentities\tO\n.\tO\t.\tO\n\t\ncustom\tO\tcustom\tO\nmethod\tO\tmethod\tO\ndeleteOne\tB-Library_Function\tdeleteOne\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12180\tI-Code_Block\tGR_12180\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncustom\tO\tcustom\tO\ndeleteOne\tB-Library_Function\tdeleteOne\tO\nmethod\tO\tmethod\tO\nfirst\tO\tfirst\tO\nremoves\tO\tremoves\tO\nthe\tO\tthe\tO\nqueries\tO\tqueries\tO\nList\tB-Library_Class\tList\tO\nand\tO\tand\tO\nnext\tO\tnext\tO\nit\tO\tit\tO\nremoves\tO\tremoves\tO\nall\tO\tall\tO\nItem\tB-Library_Class\tItem\tO\nentties\tO\tentties\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nreferencing\tO\treferencing\tO\nthis\tO\tthis\tO\nlist\tO\tlist\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\nItem\tB-Library_Class\tItem\tO\nand\tO\tand\tO\nList\tB-Library_Class\tList\tO\noctobus\tB-Library\toctobus\tO\nservices\tO\tservices\tO\nwith\tO\twith\tO\nall\tO\tall\tO\nCRUD\tO\tCRUD\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnext\tO\tnext\tO\nstep\tO\tstep\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nHTTP\tO\tHTTP\tO\nendpoints\tO\tendpoints\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nmethods\tO\tmethods\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\naccesible\tO\taccesible\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nworld\tO\tworld\tO\nthrough\tO\tthrough\tO\nHTTP\tB-Library_Function\tHTTP\tO\nrequests\tI-Library_Function\trequests\tO\n.\tO\t.\tO\n\t\nStep\tO\tStep\tO\n4\tO\t4\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\nHTTP\tO\tHTTP\tO\nendpoints\tO\tendpoints\tO\nfor\tO\tfor\tO\nItem\tB-Library_Class\tItem\tO\nand\tO\tand\tO\nList\tB-Library_Class\tList\tO\nCRUD\tO\tCRUD\tO\noperations\tO\toperations\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\nwe\tO\twe\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nmakeen-router\tB-Library\tmakeen-router\tO\npackage\tO\tpackage\tO\nwhich\tO\twhich\tO\ntakes\tO\ttakes\tO\nin\tO\tin\tO\na\tO\ta\tO\ngenerated\tO\tgenerated\tO\noctobus\tB-Library\toctobus\tO\nCRUD\tO\tCRUD\tO\nrepository\tO\trepository\tO\nand\tO\tand\tO\nbuilds\tO\tbuilds\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nCRUD\tO\tCRUD\tO\nendpoints\tO\tendpoints\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nMakeen-core\tB-Library\tMakeen-core\tO\nprovides\tO\tprovides\tO\nRouter\tB-Library_Class\tRouter\tO\nand\tO\tand\tO\nMongoResourceRouter\tB-Library_Class\tMongoResourceRouter\tO\nclasses\tO\tclasses\tO\n;\tO\t;\tO\nBy\tO\tBy\tO\nextending\tO\textending\tO\nthe\tO\tthe\tO\nRouter\tB-Library_Class\tRouter\tO\nclass\tO\tclass\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndefine\tO\tdefine\tO\nhapijs\tB-Library_Class\thapijs\tO\nroutes\tI-Library_Class\troutes\tO\nas\tO\tas\tO\nclass\tO\tclass\tO\nmethods\tO\tmethods\tO\nas\tO\tas\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12181\tI-Code_Block\tGR_12181\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBy\tO\tBy\tO\nextending\tO\textending\tO\nthe\tO\tthe\tO\nMongoResourceRouter\tB-Library_Class\tMongoResourceRouter\tO\nclass\tO\tclass\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndefine\tO\tdefine\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nset\tO\tset\tO\nof\tO\tof\tO\nCRUD\tO\tCRUD\tO\nroutes\tB-Library_Class\troutes\tO\n,\tO\t,\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\noctboud\tB-Library\toctboud\tO\nCRUD\tO\tCRUD\tO\nrepository\tO\trepository\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12182\tI-Code_Block\tGR_12182\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nit\tO\tit\tO\n!\tO\t!\tO\n\t\nby\tO\tby\tO\nmounting\tO\tmounting\tO\nthe\tO\tthe\tO\nnewly\tO\tnewly\tO\ncreated\tO\tcreated\tO\nCRUDTestRouter\tB-Library_Class\tCRUDTestRouter\tO\nclass\tO\tclass\tO\ninstance\tO\tinstance\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nwe\tO\twe\tO\nnow\tO\tnow\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\nCRUD\tO\tCRUD\tO\nAPI\tB-Library\tAPI\tO\navailable\tO\tavailable\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nItem\tB-Library_Class\tItem\tO\nand\tO\tand\tO\nList\tB-Library_Class\tList\tO\nentities\tO\tentities\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12183\tI-Code_Block\tGR_12183\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12184\tI-Code_Block\tGR_12184\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAbove\tO\tAbove\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nanother\tO\tanother\tO\nmakeen-router\tB-Library\tmakeen-router\tO\nfeature\tO\tfeature\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n@route\tO\t@route\tO\nfunction\tO\tfunction\tO\ndecorator\tO\tdecorator\tO\nwhich\tO\twhich\tO\ntakes\tO\ttakes\tO\nin\tO\tin\tO\nmetadata\tO\tmetadata\tO\nand\tO\tand\tO\ntransforms\tO\ttransforms\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nfunction\tO\tfunction\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nhapi\tB-Library\thapi\tO\nHTTP\tO\tHTTP\tO\nendpoint\tO\tendpoint\tO\n,\tO\t,\tO\nin\tO\tin\tO\nabove\tO\tabove\tO\ncase\tO\tcase\tO\nwe\tO\twe\tO\n've\tO\t've\tO\nused\tO\tused\tO\nit\tO\tit\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nendpoint\tO\tendpoint\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nfinally\tO\tfinally\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nOctbus\tB-Library\tOctbus\tO\nCRUD\tO\tCRUD\tO\nrepositories\tO\trepositories\tO\nand\tO\tand\tO\nmakeen-router\tB-Library\tmakeen-router\tO\nCRUD\tO\tCRUD\tO\nrouters\tB-Library_Class\trouters\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nassemble\tO\tassemble\tO\nall\tO\tall\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nbootstrap\tO\tbootstrap\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\nindex.js\tB-File_Name\tindex.js\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nStep\tO\tStep\tO\n6\tO\t6\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\nnew\tO\tnew\tO\nToDo\tO\tToDo\tO\nPlugin\tB-Library_Class\tPlugin\tO\nclass\tO\tclass\tO\n\t\nCreate\tO\tCreate\tO\n./packages/todo/src/index.js\tB-File_Name\t./packages/todo/src/index.js\tB-Code_Block\nfile\tO\tfile\tO\n\t\nInside\tO\tInside\tO\nit\tO\tit\tO\nwe\tO\twe\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nand\tO\tand\tO\nrouter\tO\trouter\tO\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12185\tI-Code_Block\tGR_12185\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nStep\tO\tStep\tO\n5\tO\t5\tO\n.\tO\t.\tO\n\t\nBootstrap\tO\tBootstrap\tO\nthe\tO\tthe\tO\ntodo\tO\ttodo\tO\nplugin\tO\tplugin\tO\n\t\nAdd\tO\tAdd\tO\nthe\tO\tthe\tO\nhapijs\tB-Library_Function\thapijs\tO\nregister\tI-Library_Function\tregister\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n./packages/todo/src/index.js\tB-File_Name\t./packages/todo/src/index.js\tB-Code_Block\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nInside\tO\tInside\tO\nthe\tO\tthe\tO\nregister\tB-Library_Function\tregister\tO\nfunction\tO\tfunction\tO\nwe\tO\twe\tO\n're\tO\t're\tO\ninstanciating\tO\tinstanciating\tO\nthe\tO\tthe\tO\nToDoPlugin\tB-Class_Name\tToDoPlugin\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nregister\tO\tregister\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nhapi\tB-Library\thapi\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12186\tI-Code_Block\tGR_12186\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMakeen\tB-Application\tMakeen\tO\nPlugins\tI-Application\tPlugins\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nforms\tO\tforms\tO\nan\tO\tan\tO\nechosistem\tO\techosistem\tO\nof\tO\tof\tO\nhapijs\tB-Library\thapijs\tO\nplugins\tO\tplugins\tO\nthat\tO\tthat\tO\ncombined\tO\tcombined\tO\ntogheter\tO\ttogheter\tO\ncan\tO\tcan\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\nfull-range\tO\tfull-range\tO\nof\tO\tof\tO\nfunctionalities\tO\tfunctionalities\tO\nrequired\tO\trequired\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nstack\tO\tstack\tO\nprofesional\tO\tprofesional\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\n:\tO\t:\tO\n\t\nOctobus\tB-Library\tOctobus\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nRouter\tO\tRouter\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nCore\tO\tCore\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nMailer\tO\tMailer\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nUser\tO\tUser\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nStorage\tO\tStorage\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nMonitoring\tO\tMonitoring\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nDocumentation\tO\tDocumentation\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nVirtual\tO\tVirtual\tO\nMachines\tO\tMachines\tO\n\t\nBuild\tO\tBuild\tO\nand\tO\tand\tO\nDeployment\tO\tDeployment\tO\n\t\nLorem\tO\tLorem\tO\nipsum\tO\tipsum\tO\ndolor\tO\tdolor\tO\nsit\tO\tsit\tO\namet\tO\tamet\tO\n,\tO\t,\tO\nan\tO\tan\tO\ncivibus\tO\tcivibus\tO\npartiendo\tO\tpartiendo\tO\ninterpretaris\tO\tinterpretaris\tO\nsed\tO\tsed\tO\n,\tO\t,\tO\npaulo\tO\tpaulo\tO\nmucius\tO\tmucius\tO\nut\tO\tut\tO\nvim\tO\tvim\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ndiceret\tO\tdiceret\tO\npropriae\tO\tpropriae\tO\nreformidans\tO\treformidans\tO\nest\tO\test\tO\n,\tO\t,\tO\net\tO\tet\tO\nnec\tO\tnec\tO\nfabellas\tO\tfabellas\tO\ndeserunt\tO\tdeserunt\tO\nquaestio\tO\tquaestio\tO\n,\tO\t,\tO\nut\tO\tut\tO\nagam\tO\tagam\tO\nlaudem\tO\tlaudem\tO\nreprehendunt\tO\treprehendunt\tO\nvix\tO\tvix\tO\n.\tO\t.\tO\n\t\nUsu\tO\tUsu\tO\nex\tO\tex\tO\nveritus\tO\tveritus\tO\naccusamus\tO\taccusamus\tO\n.\tO\t.\tO\n\t\nDuo\tO\tDuo\tO\nan\tO\tan\tO\nchoro\tO\tchoro\tO\nvoluptaria\tO\tvoluptaria\tO\n,\tO\t,\tO\ndiceret\tO\tdiceret\tO\ngraecis\tO\tgraecis\tO\nvivendo\tO\tvivendo\tO\nex\tO\tex\tO\nhas\tO\thas\tO\n.\tO\t.\tO\n\t\nContributing\tO\tContributing\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncontribute\tO\tcontribute\tO\nby\tO\tby\tO\n:\tO\t:\tO\n\t\ncreating\tO\tcreating\tO\na\tO\ta\tO\ngithub\tB-Website\tgithub\tO\nissue\tO\tissue\tO\n\t\ncreating\tO\tcreating\tO\na\tO\ta\tO\ngithub\tB-Website\tgithub\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n\t\ngetting\tO\tgetting\tO\nin\tO\tin\tO\ntouch\tO\ttouch\tO\n\t\nCredits\tO\tCredits\tO\n\t\nMeet\tO\tMeet\tO\nthe\tO\tthe\tO\nswiss-army\tO\tswiss-army\tO\nteam\tO\tteam\tO\nbehind\tO\tbehind\tO\nMakeen\tB-Application\tMakeen\tO\n:\tO\t:\tO\n\t\nAbdul\tB-User_Name\tAbdul\tO\nMasri\tI-User_Name\tMasri\tO\n\t\nAmeer\tB-User_Name\tAmeer\tO\nAl\tI-User_Name\tAl\tO\nSayyed\tI-User_Name\tSayyed\tO\n\t\nCatalin\tB-User_Name\tCatalin\tO\nRizea\tI-User_Name\tRizea\tO\n\t\nDan\tB-User_Name\tDan\tO\nOchiana\tI-User_Name\tOchiana\tO\n\t\nNick\tB-User_Name\tNick\tO\nBurke\tI-User_Name\tBurke\tO\n\t\nNicolas\tB-User_Name\tNicolas\tO\nEmbleton\tI-User_Name\tEmbleton\tO\n\t\nOlya\tB-User_Name\tOlya\tO\nSurits\tI-User_Name\tSurits\tO\n\t\nVictor\tB-User_Name\tVictor\tO\nZamfir\tI-User_Name\tZamfir\tO\n\t\nLicense\tO\tLicense\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nis\tO\tis\tO\nlicensed\tO\tlicensed\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nMIT\tB-Licence\tMIT\tO\nlicense\tI-Licence\tlicense\tO\n.\tO\t.\tO\n\t\nGet\tO\tGet\tO\nin\tO\tin\tO\nTouch\tO\tTouch\tO\n\t\nWhat\tO\tWhat\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nlet\tO\tlet\tO\nus\tO\tus\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\non\tO\ton\tO\n:\tO\t:\tO\n\t\nStackOverflow\tB-Website\tStackOverflow\tO\n\t\nTwitter\tB-Website\tTwitter\tO\n\t\nSlack\tB-Website\tSlack\tO\n\t\nReddit\tB-Website\tReddit\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/4\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/4\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\ntake\tO\ttake\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nIssue\tO\tIssue\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nwork\tO\twork\tO\non\tO\ton\tO\nparsing\tO\tparsing\tO\nout\tO\tout\tO\nof\tO\tof\tO\nPenalties/Kicks/Timeouts\tO\tPenalties/Kicks/Timeouts\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nlogic\tO\tlogic\tO\n.\tO\t.\tO\n\t\nRegex\tB-Algorithm\tRegex\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nmy\tO\tmy\tO\nstrong\tO\tstrong\tO\npoint\tO\tpoint\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyour\tO\tyour\tO\nsystem\tO\tsystem\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\npretty\tO\tpretty\tO\nwell\tO\twell\tO\n\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsurol/speedtest\tO\tsurol/speedtest\tO\n-cli\tO\t-cli\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/surol/speedtest-cli/issues/3\tO\thttps://github.com/surol/speedtest-cli/issues/3\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_38633\tI-Code_Block\tGR_38633\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nbrandonscott/nabu\tO\tbrandonscott/nabu\tO\n-ios\tO\t-ios\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/brandonscott/nabu-ios/issues/1\tO\thttps://github.com/brandonscott/nabu-ios/issues/1\tO\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ndouble\tO\tdouble\tO\ncheck\tO\tcheck\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nlocal\tO\tlocal\tO\nmachine\tO\tmachine\tO\nfirst\tO\tfirst\tO\nbefore\tO\tbefore\tO\nreplying\tO\treplying\tO\nback\tO\tback\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n:)\tO\t:)\tO\n\t\nThe\tO\tThe\tO\nApp\tO\tApp\tO\nID\tO\tID\tO\n's\tO\t's\tO\nare\tO\tare\tO\nprovided\tO\tprovided\tO\nper\tO\tper\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n've\tO\t've\tO\nalready\tO\talready\tO\nregistered\tO\tregistered\tO\none\tO\tone\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconfirm\tO\tconfirm\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nauthorisation\tO\tauthorisation\tO\nto\tO\tto\tO\nshare\tO\tshare\tO\nthis\tO\tthis\tO\ntoken\tO\ttoken\tO\nwith\tO\twith\tO\nyou\tO\tyou\tO\nas\tO\tas\tO\nobviously\tO\tobviously\tO\nwe\tO\twe\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\ntheir\tO\ttheir\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/12\tO\thttps://github.com/contributte/logging/issues/12\tO\n\t\n\t\nCoverage\tO\tCoverage\tO\ndecreased\tO\tdecreased\tO\n(\tO\t(\tO\n-0.4\tO\t-0.4\tO\n%\tO\t%\tO\n)\tO\t)\tO\nto\tO\tto\tO\n44.444\tO\t44.444\tO\n%\tO\t%\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\nc35d2f17e66a1ec29e3e621a6b006fb1d6e498b8\tO\tc35d2f17e66a1ec29e3e621a6b006fb1d6e498b8\tO\non\tO\ton\tO\nRiKap:patch-1\tO\tRiKap:patch-1\tO\ninto\tO\tinto\tO\na79d14d62b400a09cdf297de7a8db212541d7740\tO\ta79d14d62b400a09cdf297de7a8db212541d7740\tO\non\tO\ton\tO\ncontributte:master\tO\tcontributte:master\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/16\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/16\tO\n\t\nHello\tO\tHello\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntesting\tO\ttesting\tO\ncurrent\tO\tcurrent\tO\nbuild\tO\tbuild\tO\n,\tO\t,\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nsimple\tO\tsimple\tO\ncube\tO\tcube\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nanimated\tO\tanimated\tO\nmaterial\tO\tmaterial\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nvideo\tB-File_Type\tvideo\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\n:\tO\t:\tO\n\t\nVideo\tB-File_Type\tVideo\tO\nfile\tO\tfile\tO\n1024x1024px\tO\t1024x1024px\tO\n,\tO\t,\tO\nx.264\tO\tx.264\tO\nfrom\tO\tfrom\tO\nAfter\tB-Application\tAfter\tO\nEffects\tI-Application\tEffects\tO\n,\tO\t,\tO\n\t\nPlaced\tO\tPlaced\tO\nit\tO\tit\tO\nto\tO\tto\tO\nMovies\tB-File_Name\tMovies\tO\nfolder\tO\tfolder\tO\n,\tO\t,\tO\nprecache\tO\tprecache\tO\nin\tO\tin\tO\nunchecked\tO\tunchecked\tO\n,\tO\t,\tO\n\t\nCreated\tO\tCreated\tO\nregular\tO\tregular\tO\nsetup\tO\tsetup\tO\nfor\tO\tfor\tO\nloopable\tO\tloopable\tO\nmaterial\tO\tmaterial\tO\n:\tO\t:\tO\nMedia\tB-Application\tMedia\tO\nPlayer\tI-Application\tPlayer\tO\n,\tO\t,\tO\nUnlit\tB-Application\tUnlit\tO\nmaterial\tI-Application\tmaterial\tO\n,\tO\t,\tO\n\t\nCreated\tO\tCreated\tO\na\tO\ta\tO\nBP_Cube\tO\tBP_Cube\tO\nwith\tO\twith\tO\nEven\tO\tEven\tO\nBegin\tO\tBegin\tO\nPlay\tO\tPlay\tO\nand\tO\tand\tO\nMediaPlayer\tB-Application\tMediaPlayer\tO\n->\tO\t->\tO\nOpen\tO\tOpen\tO\nSOurce\tO\tSOurce\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nmaterial\tO\tmaterial\tO\nand\tO\tand\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nplay\tO\tplay\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nI\tO\tI\tO\nspawn\tO\tspawn\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\njust\tO\tjust\tO\ncomes\tO\tcomes\tO\nas\tO\tas\tO\na\tO\ta\tO\npure\tO\tpure\tO\nsuper\tO\tsuper\tO\nblack\tO\tblack\tO\nmaterial\tO\tmaterial\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nmaterials\tO\tmaterials\tO\nwork\tO\twork\tO\nplease\tO\tplease\tO\n?\tO\t?\tO\n\t\nUE\tB-Application\tUE\tO\n4.19.1\tB-Version\t4.19.1\tO\nArCore\tB-Application\tArCore\tO\n1.2\tB-Version\t1.2\tO\nrelease\tO\trelease\tO\n,\tO\t,\tO\nSamsung\tB-Device\tSamsung\tO\nS8\tI-Device\tS8\tO\n,\tO\t,\tO\nAndoid\tB-Operating_System\tAndoid\tO\n8\tB-Version\t8\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/3\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/3\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\none\tO\tone\tO\n:\tO\t:\tO\nhttps://github.com/moxienyc/skaled.com-web-app/tree/develop/app/components/widgets\tO\thttps://github.com/moxienyc/skaled.com-web-app/tree/develop/app/components/widgets\tO\n\t\nIt\tO\tIt\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nimproved\tO\timproved\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nconfig\tO\tconfig\tO\n(\tO\t(\tO\nvia\tO\tvia\tO\na\tO\ta\tO\nprovider\tO\tprovider\tO\nset\tO\tset\tO\nin\tO\tin\tO\napp.config\tB-File_Name\tapp.config\tO\n)\tO\t)\tO\nwhich\tO\twhich\tO\nlinks\tO\tlinks\tO\nwidgets\tO\twidgets\tO\nto\tO\tto\tO\nmolecules\tO\tmolecules\tO\n.\tO\t.\tO\n\t\nE.g\tO\tE.g\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nthe\tO\tthe\tO\nwidget\tB-Code_Block\twidget\tO\ntype\tI-Code_Block\ttype\tO\n=\tI-Code_Block\t=\tO\n'\tI-Code_Block\t'\tO\nleeanpreview\tI-Code_Block\tleeanpreview\tO\n'\tB-Code_Block\t'\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nmolecule\tO\tmolecule\tO\nx\tB-Variable_Name\tx\tO\n,\tO\t,\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\n'\tB-Code_Block\t'\tO\nleeanmenu\tI-Code_Block\tleeanmenu\tO\n'\tB-Code_Block\t'\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nln-m-menu\tB-Code_Block\tln-m-menu\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncould\tO\tcould\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\ndefault\tO\tdefault\tO\nsettings\tO\tsettings\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nleean\tO\tleean\tO\nwidgets\tO\twidgets\tO\n(\tO\t(\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\ncustom\tO\tcustom\tO\nwidgets\tO\twidgets\tO\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\nleean\tO\tleean\tO\nprefix\tO\tprefix\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nhoumadi/hello\tO\thoumadi/hello\tO\n-world\tO\t-world\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/houmadi/hello-world\tO\thttps://github.com/houmadi/hello-world\tO\n\t\nhello-world\tO\thello-world\tO\n\t\nthis\tO\tthis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nof\tO\tof\tO\ngitHub\tB-Website\tgitHub\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/9\tO\thttps://github.com/contributte/logging/issues/9\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ntherek/docker\tO\ttherek/docker\tO\n-icinga2ext\tO\t-icinga2ext\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/therek/docker-icinga2ext\tO\thttps://github.com/therek/docker-icinga2ext\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nicinga2ext\tO\ticinga2ext\tO\n\t\nThis\tO\tThis\tO\nrepository\tO\trepository\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nIcinga2\tB-Application\tIcinga2\tO\nDocker\tI-Application\tDocker\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\nheavily\tO\theavily\tO\non\tO\ton\tO\nJordan\tB-User_Name\tJordan\tO\nJethwa\tI-User_Name\tJethwa\tO\n's\tO\t's\tO\nIcinga2\tB-Application\tIcinga2\tO\nDocker\tI-Application\tDocker\tO\nimage\tB-User_Interface_Element\timage\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nadditions\tO\tadditions\tO\n:\tO\t:\tO\n\t\nadded\tO\tadded\tO\nnslookup\tB-Code_Block\tnslookup\tB-Code_Block\nand\tO\tand\tO\ndig\tB-Code_Block\tdig\tB-Code_Block\ncommands\tO\tcommands\tO\nfor\tO\tfor\tO\ncheck_dns\tB-Application\tcheck_dns\tB-Code_Block\nand\tO\tand\tO\ncheck_dig\tB-Application\tcheck_dig\tB-Code_Block\nplugins\tO\tplugins\tO\n;\tO\t;\tO\n\t\nadded\tO\tadded\tO\nwhois\tB-Code_Block\twhois\tB-Code_Block\ncommand\tO\tcommand\tO\n;\tO\t;\tO\n\t\nadded\tO\tadded\tO\nNet::SNMP\tB-Library\tNet::SNMP\tO\nPerl\tB-Language\tPerl\tO\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\nSNMP\tB-Application\tSNMP\tO\nManubulon\tI-Application\tManubulon\tO\nplugins\tO\tplugins\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ncontainer\tO\tcontainer\tO\nconfiguration\tO\tconfiguration\tO\nplease\tO\tplease\tO\nsee\tO\tsee\tO\njordan/icinga2\tO\tjordan/icinga2\tO\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\n\t\nStart\tO\tStart\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncontainer\tO\tcontainer\tO\nand\tO\tand\tO\nbind\tO\tbind\tO\nto\tO\tto\tO\nhost\tO\thost\tO\n's\tO\t's\tO\nport\tO\tport\tO\n80\tO\t80\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_2331\tI-Code_Block\tGR_2331\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/37\tO\thttps://github.com/spacetelescope/specview/issues/37\tO\n\t\nFixes\tO\tFixes\tO\nissue\tO\tissue\tO\n#35\tO\t#35\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmessixing/bootstrap\tO\tmessixing/bootstrap\tO\n-social\tO\t-social\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/messixing/bootstrap-social\tO\thttps://github.com/messixing/bootstrap-social\tO\n\t\nSocial\tO\tSocial\tO\nButtons\tB-User_Interface_Element\tButtons\tO\nfor\tO\tfor\tO\nBootstrap\tB-Library\tBootstrap\tO\n\t\nSocial\tO\tSocial\tO\nButtons\tB-User_Interface_Element\tButtons\tO\nmade\tO\tmade\tO\nin\tO\tin\tO\npure\tO\tpure\tO\nCSS\tB-Language\tCSS\tO\nbased\tO\tbased\tO\non\tO\ton\tO\n\t\nBootstrap\tB-Library\tBootstrap\tO\nand\tO\tand\tO\n\t\nFont\tB-Application\tFont\tO\nAwesome\tI-Application\tAwesome\tO\n!\tO\t!\tO\n\t\nCheck\tO\tCheck\tO\nthe\tO\tthe\tO\nlive\tO\tlive\tO\ndemo\tO\tdemo\tO\n!\tO\t!\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nInclude\tO\tInclude\tO\nthe\tO\tthe\tO\nbootstrap-social.css\tB-File_Name\tbootstrap-social.css\tB-Code_Block\nor\tO\tor\tO\nbootstrap-social.less\tB-File_Name\tbootstrap-social.less\tB-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nor\tO\tor\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\nBower\tB-Application\tBower\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4103\tI-Code_Block\tGR_4103\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAvailable\tO\tAvailable\tO\nclasses\tO\tclasses\tO\n\t\nbtn-adn\tB-Library_Class\tbtn-adn\tB-Code_Block\n\t\nbtn-bitbucket\tB-Library_Class\tbtn-bitbucket\tB-Code_Block\n\t\nbtn-dropbox\tB-Library_Class\tbtn-dropbox\tB-Code_Block\n\t\nbtn-facebook\tB-Library_Class\tbtn-facebook\tB-Code_Block\n\t\nbtn-flickr\tB-Library_Class\tbtn-flickr\tB-Code_Block\n\t\nbtn-foursquare\tB-Library_Class\tbtn-foursquare\tB-Code_Block\n\t\nbtn-github\tB-Library_Class\tbtn-github\tB-Code_Block\n\t\nbtn-google\tB-Library_Class\tbtn-google\tB-Code_Block\n\t\nbtn-instagram\tB-Library_Class\tbtn-instagram\tB-Code_Block\n\t\nbtn-linkedin\tB-Library_Class\tbtn-linkedin\tB-Code_Block\n\t\nbtn-microsoft\tB-Library_Class\tbtn-microsoft\tB-Code_Block\n\t\nbtn-odnoklassniki\tB-Library_Class\tbtn-odnoklassniki\tB-Code_Block\n\t\nbtn-openid\tB-Library_Class\tbtn-openid\tB-Code_Block\n\t\nbtn-pinterest\tB-Library_Class\tbtn-pinterest\tB-Code_Block\n\t\nbtn-reddit\tB-Library_Class\tbtn-reddit\tB-Code_Block\n\t\nbtn-soundcloud\tB-Library_Class\tbtn-soundcloud\tB-Code_Block\n\t\nbtn-tumblr\tB-Library_Class\tbtn-tumblr\tB-Code_Block\n\t\nbtn-twitter\tB-Library_Class\tbtn-twitter\tB-Code_Block\n\t\nbtn-vimeo\tB-Library_Class\tbtn-vimeo\tB-Code_Block\n\t\nbtn-vk\tB-Library_Class\tbtn-vk\tB-Code_Block\n\t\nbtn-yahoo\tB-Library_Class\tbtn-yahoo\tB-Code_Block\n\t\nExamples\tO\tExamples\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4104\tI-Code_Block\tGR_4104\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNotes\tO\tNotes\tO\n\t\nFor\tO\tFor\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\naccept\tO\taccept\tO\nany\tO\tany\tO\nrequest\tO\trequest\tO\nfor\tO\tfor\tO\nnew\tO\tnew\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nas\tO\tas\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nplanning\tO\tplanning\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nCSS\tB-Language\tCSS\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nseparate\tO\tseparate\tO\nfiles\tO\tfiles\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrequested\tO\trequested\tO\nones\tO\tones\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmakeen-project/makeen\tO\tmakeen-project/makeen\tO\n-hapi\tO\t-hapi\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/viczam/makeen-hapi/issues/55\tO\thttps://github.com/viczam/makeen-hapi/issues/55\tO\n\t\nWS\tO\tWS\tO\nJira\tB-Application\tJira\tO\nTicket\tO\tTicket\tO\n:\tO\t:\tO\nACP-44\tO\tACP-44\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/30\tO\thttps://github.com/mapbox/tile-count/issues/30\tO\n\t\nActually\tO\tActually\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\na\tO\ta\tO\ntypo\tO\ttypo\tO\nand\tO\tand\tO\nwas\tO\twas\tO\ndoing\tO\tdoing\tO\nbitmaps\tB-Data_Structure\tbitmaps\tO\nin\tO\tin\tO\nboth\tO\tboth\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n\t\nVector\tB-Data_Structure\tVector\tO\nsucceeded\tO\tsucceeded\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_32806\tI-Code_Block\tGR_32806\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nso\tO\tso\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nprobably\tO\tprobably\tO\nis\tO\tis\tO\na\tO\ta\tO\nPNG\tB-File_Type\tPNG\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/42\tO\thttps://github.com/demigor/lex.db/issues/42\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nresponding\tO\tresponding\tO\n-\tO\t-\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nboth\tO\tboth\tO\nwith\tO\twith\tO\n&\tO\t&\tO\nwithout\tO\twithout\tO\nreference\tO\treference\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\niOS\tB-Operating_System\tiOS\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nto\tO\tto\tO\nno\tO\tno\tO\navail\tO\tavail\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nalso\tO\talso\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nNative\tO\tNative\tO\nXamarin.iOS\tB-Application\tXamarin.iOS\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nscreenshot\tO\tscreenshot\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nXamarin\tB-Application\tXamarin\tO\nStudio\tI-Application\tStudio\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nmatters\tO\tmatters\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nv1.2.6\tB-Version\tv1.2.6\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlengchiva/ruc_github.com\tO\tlengchiva/ruc_github.com\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lengchiva/ruc_github.com/issues/1\tO\thttps://github.com/lengchiva/ruc_github.com/issues/1\tO\n\t\nJust\tO\tJust\tO\nsom\tO\tsom\tO\ncontent\tO\tcontent\tO\nhome\tO\thome\tO\npage\tO\tpage\tO\nupdate\tO\tupdate\tO\n:eyes\tO\t:eyes\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nForneus/programmering\tO\tForneus/programmering\tO\n-a-inlamningar\tO\t-a-inlamningar\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/Forneus/programmering-a-inlamningar\tO\thttps://github.com/Forneus/programmering-a-inlamningar\tO\n\t\nProgrammering\tO\tProgrammering\tO\nA\tO\tA\tO\nInlämningar\tO\tInlämningar\tO\n\t\nInlämning\tO\tInlämning\tO\nvt\tO\tvt\tO\n2012\tO\t2012\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/21\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/21\tO\n\t\nLGTM\tO\tLGTM\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/3\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/3\tO\n\t\nCool\tO\tCool\tO\n!\tO\t!\tO\n\t\nMan\tO\tMan\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\na\tO\ta\tO\nresponsive\tO\tresponsive\tO\nmaintainer\tO\tmaintainer\tO\n!\tO\t!\tO\n\t\n:)\tO\t:)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/3\tO\thttps://github.com/numen31337/AKVideoImageView/issues/3\tO\n\t\nHave\tO\tHave\tO\nbreakpoints\tO\tbreakpoints\tO\nenabled\tO\tenabled\tO\n:\tO\t:\tO\n\t\nThen\tO\tThen\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncrashes\tO\tcrashes\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nscreenshot\tO\tscreenshot\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstack\tO\tstack\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/5\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/5\tO\n\t\nPerhaps\tO\tPerhaps\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\nimplement\tO\timplement\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nchecks\tO\tchecks\tO\n:\tO\t:\tO\n\t\nIf\tB-Code_Block\tIf\tO\ndown\tI-Code_Block\tdown\tO\n<\tI-Code_Block\t<\tO\nprevious\tI-Code_Block\tprevious\tO\ndown\tI-Code_Block\tdown\tO\n&&\tI-Code_Block\t&&\tO\n!\tI-Code_Block\t!\tO\nfirst_down\tI-Code_Block\tfirst_down\tO\nERROR\tI-Code_Block\tERROR\tO\n\t\nif\tB-Code_Block\tif\tO\nSPOT\tI-Code_Block\tSPOT\tO\non\tI-Code_Block\ton\tO\n1st\tI-Code_Block\t1st\tO\ndown\tI-Code_Block\tdown\tO\nis\tI-Code_Block\tis\tO\n>=\tI-Code_Block\t>=\tO\nthan\tI-Code_Block\tthan\tO\nspot\tI-Code_Block\tspot\tO\non\tI-Code_Block\ton\tO\nprevious\tI-Code_Block\tprevious\tO\n1st\tI-Code_Block\t1st\tO\ndown\tI-Code_Block\tdown\tO\n-10\tI-Code_Block\t-10\tO\n.\tI-Code_Block\t.\tO\n\t\n(\tB-Code_Block\t(\tO\nunless\tI-Code_Block\tunless\tO\npenalties\tI-Code_Block\tpenalties\tO\n)\tI-Code_Block\t)\tO\nERROR\tB-Code_Block\tERROR\tO\n\t\nif\tB-Code_Block\tif\tO\nERROR\tI-Code_Block\tERROR\tO\n:\tI-Code_Block\t:\tO\nfor\tI-Code_Block\tfor\tO\nplay\tI-Code_Block\tplay\tO\nin\tI-Code_Block\tin\tO\ndrive\tI-Code_Block\tdrive\tO\n:\tI-Code_Block\t:\tO\n#remove\tI-Code_Block\t#remove\tO\nduplicate\tI-Code_Block\tduplicate\tO\nplays\tI-Code_Block\tplays\tO\n\t\nESPN\tB-Organization\tESPN\tO\nPBP\tO\tPBP\tO\ndata\tO\tdata\tO\nalso\tO\talso\tO\nwill\tO\twill\tO\nrecap\tO\trecap\tO\na\tO\ta\tO\ndrive\tO\tdrive\tO\n,\tO\t,\tO\nIt\tO\tIt\tO\nmay\tO\tmay\tO\nhelp\tO\thelp\tO\nif\tO\tif\tO\nwe\tO\twe\tO\ncross\tO\tcross\tO\ncheck\tO\tcheck\tO\nour\tO\tour\tO\n#\tO\t#\tO\nof\tO\tof\tO\nplays\tO\tplays\tO\nand\tO\tand\tO\nyards\tO\tyards\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ndata\tO\tdata\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/25\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/25\tO\n\t\nIn\tO\tIn\tO\nmodern\tO\tmodern\tO\nclustered\tO\tclustered\tO\nbuild\tO\tbuild\tO\nsystems\tO\tsystems\tO\n,\tO\t,\tO\nBuildHost\tO\tBuildHost\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\nuseful\tO\tuseful\tO\nanymore\tO\tanymore\tO\nand\tO\tand\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nhandled\tO\thandled\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\nsystem\tO\tsystem\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/13\tO\thttps://github.com/svenstaro/flamejam/issues/13\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nsmall\tO\tsmall\tO\nsuggestions\tO\tsuggestions\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\nthe\tO\tthe\tO\ndesign/usability\tO\tdesign/usability\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\n:\tO\t:\tO\n\t\njams/jamname/rate\tO\tjams/jamname/rate\tO\n:\tO\t:\tO\n\t\nMake\tO\tMake\tO\n\"\tO\t\"\tO\n<<\tO\t<<\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\njam\"\tO\tjam\"\tO\nmore\tO\tmore\tO\nvisible\tO\tvisible\tO\nor\tO\tor\tO\nmake\tO\tmake\tO\n\"loljam\"\tO\t\"loljam\"\tO\nin\tO\tin\tO\n\"loljam\tO\t\"loljam\tO\n>>\tO\t>>\tO\nrating\tO\trating\tO\n\"\tO\t\"\tO\nclickable\tO\tclickable\tO\n.\tO\t.\tO\n\t\njams/jamname\tO\tjams/jamname\tO\n:\tO\t:\tO\n\t\nChange\tO\tChange\tO\nentry\tO\tentry\tO\nname\tO\tname\tO\ncolor\tO\tcolor\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nentry\tO\tentry\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n've\tO\t've\tO\nalready\tO\talready\tO\nvoted\tO\tvoted\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nor\tO\tor\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nrated\tO\trated\tO\n\"\tO\t\"\tO\n/\tO\t/\tO\n\"\tO\t\"\tO\npending\tO\tpending\tO\n\"\tO\t\"\tO\nthing\tO\tthing\tO\n)\tO\t)\tO\n\t\njams/jamname/somegame\tO\tjams/jamname/somegame\tO\n:\tO\t:\tO\n\t\nShow\tO\tShow\tO\nthe\tO\tthe\tO\nvoting\tO\tvoting\tO\ndetails\tO\tdetails\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nvote\tO\tvote\tO\n,\tO\t,\tO\neven\tO\teven\tO\nif\tO\tif\tO\nratings\tO\tratings\tO\nare\tO\tare\tO\nhidden\tO\thidden\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nannouncement\tO\tannouncement\tO\nheader\tO\theader\tO\n:\tO\t:\tO\n\t\nGive\tO\tGive\tO\nit\tO\tit\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nbackground\tB-User_Interface_Element\tbackground\tO\ncolor\tO\tcolor\tO\n,\tO\t,\tO\nborder\tB-User_Interface_Element\tborder\tO\nor\tO\tor\tO\ndifferent\tO\tdifferent\tO\nalignment\tO\talignment\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nfeels\tO\tfeels\tO\nmore\tO\tmore\tO\nannouncement-ish\tO\tannouncement-ish\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nGame\tO\tGame\tO\njam\tO\tjam\tO\nstarted\tO\tstarted\tO\n\"\tO\t\"\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\n\"\tO\t\"\tO\nGame\tO\tGame\tO\njam\tO\tjam\tO\nloljam1\tO\tloljam1\tO\nstarted\tO\tstarted\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\nloljam1\tO\tloljam1\tO\nstarted\tO\tstarted\tO\n\"\tO\t\"\tO\n\t\nThe\tO\tThe\tO\nfront\tO\tfront\tO\npage\tO\tpage\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\npictures\tB-User_Interface_Element\tpictures\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\njam\tO\tjam\tO\ncould\tO\tcould\tO\nhave\tO\thave\tO\nits\tO\tits\tO\nown\tO\town\tO\nlittle\tO\tlittle\tO\nlogo/icon/picture\tB-User_Interface_Element\tlogo/icon/picture\tO\n-\tO\t-\tO\nthey\tO\tthey\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\njam\tO\tjam\tO\ntheme\tO\ttheme\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nhave\tO\thave\tO\na\tO\ta\tO\nrow\tO\trow\tO\nof\tO\tof\tO\nrandomly\tO\trandomly\tO\nselected\tO\tselected\tO\ngames\tO\tgames\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app/issues/3\tO\thttps://github.com/lbarasti/gps_app/issues/3\tO\n\t\nup\tO\tup\tO\nto\tO\tto\tO\n5\tO\t5\tO\nfading\tO\tfading\tO\nbuses\tO\tbuses\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nshown\tO\tshown\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngpavlidi/lufthansa\tO\tgpavlidi/lufthansa\tO\n-seat-checker\tO\t-seat-checker\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/gpavlidi/lufthansa-seat-checker\tO\thttps://github.com/gpavlidi/lufthansa-seat-checker\tO\n\t\nlufthansa-seat-checker\tO\tlufthansa-seat-checker\tO\n\t\nCronnable\tO\tCronnable\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nyour\tO\tyour\tO\nLufthansa\tB-Organization\tLufthansa\tO\nreservation\tO\treservation\tO\nseat\tO\tseat\tO\nnumbers\tO\tnumbers\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnotifies\tO\tnotifies\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nre\tO\tre\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\n?\tO\t?\tO\n\t\nAfter\tO\tAfter\tO\nrealising\tO\trealising\tO\n(\tO\t(\tO\na\tO\ta\tO\nday\tO\tday\tO\nbefore\tO\tbefore\tO\nmy\tO\tmy\tO\nflight\tO\tflight\tO\n)\tO\t)\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\nmonths-ago\tO\tmonths-ago\tO\nassigned\tO\tassigned\tO\n(\tO\t(\tO\nand\tO\tand\tO\npayed\tO\tpayed\tO\n)\tO\t)\tO\nseats\tO\tseats\tO\nare\tO\tare\tO\ngone\tO\tgone\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\nclosely\tO\tclosely\tO\nmonitor\tO\tmonitor\tO\nthe\tO\tthe\tO\nseat\tO\tseat\tO\nassignment\tO\tassignment\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nsince\tO\tsince\tO\nthis\tO\tthis\tO\nhas\tO\thas\tO\nhappened\tO\thappened\tO\nto\tO\tto\tO\nme\tO\tme\tO\ntwice\tO\ttwice\tO\nin\tO\tin\tO\ntwo\tO\ttwo\tO\nseparate\tO\tseparate\tO\nflights\tO\tflights\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nAhmedAMohamed/UberLikeApplicationService\tO\tAhmedAMohamed/UberLikeApplicationService\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/AhmedAMohamed/UberLikeApplicationService/issues/4\tO\thttps://github.com/AhmedAMohamed/UberLikeApplicationService/issues/4\tO\n\t\nSigned-off-by\tO\tSigned-off-by\tO\n:\tO\t:\tO\nAhmed\tB-User_Name\tAhmed\tO\nAlaa\tI-User_Name\tAlaa\tO\nahmedalaa3307023@gmail.com\tO\tahmedalaa3307023@gmail.com\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/4\tO\thttps://github.com/rpcope1/Hantek6022API/issues/4\tO\n\t\nNice\tO\tNice\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/diasdavid/interface-record-store\tO\thttps://github.com/diasdavid/interface-record-store\tO\n\t\ninterface-record-store\tB-Library\tinterface-record-store\tO\n\t\n\t\nA\tO\tA\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\nand\tO\tand\tO\ninterface\tO\tinterface\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\na\tO\ta\tO\nIPRS\tO\tIPRS\tO\ncompliant\tO\tcompliant\tO\nRecord\tB-Library\tRecord\tO\nStore\tI-Library\tStore\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nprimary\tO\tprimary\tO\ngoal\tO\tgoal\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nmodule\tO\tmodule\tO\nis\tO\tis\tO\nto\tO\tto\tO\nenable\tO\tenable\tO\ndevelopers\tO\tdevelopers\tO\nto\tO\tto\tO\npick\tO\tpick\tO\nand\tO\tand\tO\nswap\tO\tswap\tO\ntheir\tO\ttheir\tO\nRecord\tB-Library\tRecord\tO\nStore\tI-Library\tStore\tO\nmodule\tO\tmodule\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nsee\tO\tsee\tO\nfit\tO\tfit\tO\nfor\tO\tfor\tO\ntheir\tO\ttheir\tO\nlibp2p\tB-Library\tlibp2p\tO\ninstallation\tO\tinstallation\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nshims\tO\tshims\tO\nor\tO\tor\tO\ncompatibility\tO\tcompatibility\tO\nissues\tO\tissues\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmodule\tO\tmodule\tO\nand\tO\tand\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\nwere\tO\twere\tO\nheavily\tO\theavily\tO\ninspired\tO\tinspired\tO\nby\tO\tby\tO\nabstract-blob-store\tB-Library\tabstract-blob-store\tB-Code_Block\nand\tO\tand\tO\ninterface-stream-muxer\tB-Library\tinterface-stream-muxer\tB-Code_Block\n.\tO\t.\tO\n\t\nPublishing\tO\tPublishing\tO\na\tO\ta\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\nas\tO\tas\tO\na\tO\ta\tO\nmodule\tO\tmodule\tO\nlets\tO\tlets\tO\nmultiple\tO\tmultiple\tO\nmodules\tO\tmodules\tO\nall\tO\tall\tO\nensure\tO\tensure\tO\ncompatibility\tO\tcompatibility\tO\nsince\tO\tsince\tO\nthey\tO\tthey\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nAPI\tB-Library\tAPI\tO\nis\tO\tis\tO\npresented\tO\tpresented\tO\nwith\tO\twith\tO\nboth\tO\tboth\tO\nNode.js\tB-Application\tNode.js\tO\nand\tO\tand\tO\nGo\tB-Language\tGo\tO\nprimitives\tO\tprimitives\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nactual\tO\tactual\tO\nlimitations\tO\tlimitations\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nextended\tO\textended\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nother\tO\tother\tO\nlanguage\tO\tlanguage\tO\n,\tO\t,\tO\npushing\tO\tpushing\tO\nforward\tO\tforward\tO\nthe\tO\tthe\tO\ncross\tO\tcross\tO\ncompatibility\tO\tcompatibility\tO\nand\tO\tand\tO\ninterop\tO\tinterop\tO\nthrough\tO\tthrough\tO\ndiferent\tO\tdiferent\tO\nstacks\tO\tstacks\tO\n.\tO\t.\tO\n\t\nModules\tO\tModules\tO\nthat\tO\tthat\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\n\t\nipfs-distributed-record-store\tB-Library\tipfs-distributed-record-store\tO\n\t\nipfs-kad-record-store\tO\tipfs-kad-record-store\tO\n\t\nBadge\tO\tBadge\tO\n\t\nInclude\tO\tInclude\tO\nthis\tO\tthis\tO\nbadge\tO\tbadge\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nreadme\tB-File_Name\treadme\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nmodule\tO\tmodule\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ncompatible\tO\tcompatible\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ninterface-record-store\tB-Library\tinterface-record-store\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nvalidate\tO\tvalidate\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\ntests\tO\ttests\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nbattery\tO\tbattery\tO\nof\tO\tof\tO\ntests\tO\ttests\tO\n\t\nNode.js\tB-Application\tNode.js\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_188483\tI-Code_Block\tGR_188483\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGo\tB-Language\tGo\tO\n\t\nWIP\tO\tWIP\tO\n\t\nAPI\tB-Library\tAPI\tO\n\t\nA\tO\tA\tO\nvalid\tO\tvalid\tO\n(\tO\t(\tO\nread\tO\tread\tO\n:\tO\t:\tO\nthat\tO\tthat\tO\nfollows\tO\tfollows\tO\nthis\tO\tthis\tO\nabstraction\tO\tabstraction\tO\n)\tO\t)\tO\nstream\tO\tstream\tO\nmuxer\tO\tmuxer\tO\n,\tO\t,\tO\nmust\tO\tmust\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nAPI\tO\tAPI\tO\n.\tO\t.\tO\n\t\nObtain\tO\tObtain\tO\na\tO\ta\tO\nRecord\tO\tRecord\tO\n\t\nNode.js\tB-Application\tNode.js\tB-Code_Block\nrs.get\tB-Code_Block\trs.get\tO\n(\tB-Code_Block\t(\tO\nkey\tI-Code_Block\tkey\tO\n,\tI-Code_Block\t,\tO\nfunction\tI-Code_Block\tfunction\tO\n(\tI-Code_Block\t(\tO\nerr\tI-Code_Block\terr\tO\n,\tI-Code_Block\t,\tO\nrecords\tI-Code_Block\trecords\tO\n)\tI-Code_Block\t)\tO\n{}\tB-Code_Block\t{}\tO\n)\tI-Code_Block\t)\tO\n\t\nThis\tO\tThis\tO\nmethod\tO\tmethod\tO\nreturns\tO\treturns\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nrecords\tO\trecords\tO\n,\tO\t,\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nRecord\tB-Library\tRecord\tO\nStore\tI-Library\tStore\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nerr\tB-Library_Variable\terr\tB-Code_Block\nis\tO\tis\tO\npassed\tO\tpassed\tO\n,\tO\t,\tO\nrecords\tB-Library_Variable\trecords\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nundefined\tO\tundefined\tB-Code_Block\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nkey\tB-Library_Variable\tkey\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nmultihash\tO\tmultihash\tO\nvalue\tO\tvalue\tO\nthat\tO\tthat\tO\nrepresents\tO\trepresents\tO\nany\tO\tany\tO\narbitraty\tO\tarbitraty\tO\nrandom\tO\trandom\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nrecords\tO\trecords\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nStore\tO\tStore\tO\na\tO\ta\tO\nRecord\tO\tRecord\tO\n\t\nNode\tB-Application\tNode\tB-Code_Block\n.\tI-Application\t.\tI-Code_Block\njs\tI-Application\tjs\tI-Code_Block\nrs\tB-Code_Block\trs\tO\n.\tI-Code_Block\t.\tO\nput(key\tI-Code_Block\tput(key\tO\n,\tI-Code_Block\t,\tO\nrecordSignatureMultiHash\tI-Code_Block\trecordSignatureMultiHash\tO\n,\tI-Code_Block\t,\tO\nfunction\tI-Code_Block\tfunction\tO\n(\tI-Code_Block\t(\tO\nerr\tI-Code_Block\terr\tO\n)\tI-Code_Block\t)\tO\n{})\tI-Code_Block\t{})\tO\n\t\nrecordSignatureMultihash\tB-Library_Variable\trecordSignatureMultihash\tB-Code_Block\nis\tO\tis\tO\nmultihash\tO\tmultihash\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nRecord\tO\tRecord\tO\nSignature\tO\tSignature\tO\nMerkleDAG\tO\tMerkleDAG\tO\nobj\tO\tobj\tO\n,\tO\t,\tO\nas\tO\tas\tO\ndescribed\tO\tdescribed\tO\nby\tO\tby\tO\nIPRS\tO\tIPRS\tO\n-\tO\t-\tO\nInterPlanetary\tO\tInterPlanetary\tO\nRecord\tO\tRecord\tO\nSpec\tO\tSpec\tO\n\t\nif\tO\tif\tO\nerr\tB-Library_Variable\terr\tB-Code_Block\nis\tO\tis\tO\npassed\tO\tpassed\tO\n,\tO\t,\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nrecord\tO\trecord\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nstored\tO\tstored\tO\nproperly\tO\tproperly\tO\nor\tO\tor\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nunvalid\tO\tunvalid\tO\n.\tO\t.\tO\n\t\nImplementation\tO\tImplementation\tO\nconsiderations\tO\tconsiderations\tO\n\t\nthe\tO\tthe\tO\nkey\tB-Library_Variable\tkey\tO\nis\tO\tis\tO\na\tO\ta\tO\nmultihash\tO\tmultihash\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nnecessarily\tO\tnecessarily\tO\nthe\tO\tthe\tO\nhash\tO\thash\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrecord\tO\trecord\tO\nsignature\tO\tsignature\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\na\tO\ta\tO\nDRS\tO\tDRS\tO\ninstance\tO\tinstance\tO\nmust\tO\tmust\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmapping\tO\tmapping\tO\nof\tO\tof\tO\nkey->[hash(recordSignature)]\tB-Library_Variable\tkey->[hash(recordSignature)]\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhich\tO\twhich\tO\nrecords\tO\trecords\tO\nbelong\tO\tbelong\tO\nto\tO\tto\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nkey\tB-Library_Variable\tkey\tO\n(\tO\t(\tO\nprovided\tO\tprovided\tO\nvalue\tO\tvalue\tO\n)\tO\t)\tO\n\t\nDRS\tO\tDRS\tO\nimplements\tO\timplements\tO\nthe\tO\tthe\tO\ninterface-record-store\tB-Library\tinterface-record-store\tO\ninterface\tO\tinterface\tO\n\t\nDRS\tO\tDRS\tO\nmay\tO\tmay\tO\nlevarage\tO\tlevarage\tO\nother\tO\tother\tO\nimplementations\tO\timplementations\tO\nof\tO\tof\tO\ninterface-record-store\tB-Library\tinterface-record-store\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nrecords\tO\trecords\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nnetwork\tO\tnetwork\tO\nor\tO\tor\tO\nother\tO\tother\tO\nstorage\tO\tstorage\tO\nmechanisms\tO\tmechanisms\tO\n\t\nDRS\tO\tDRS\tO\nshould\tO\tshould\tO\nreturn\tO\treturn\tO\nevery\tO\tevery\tO\nvalid\tO\tvalid\tO\nrecord\tO\trecord\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nin\tO\tin\tO\na\tO\ta\tO\nquery\tO\tquery\tO\n\t\nall\tO\tall\tO\nunvalid\tO\tunvalid\tO\nrecords\tO\trecords\tO\ndetected\tO\tdetected\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndiscarded/deleted\tO\tdiscarded/deleted\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/249\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/249\tO\n\t\nOn\tO\tOn\tO\nAndroid\tB-Operating_System\tAndroid\tO\nthe\tO\tthe\tO\nnotification\tO\tnotification\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nrecreated\tO\trecreated\tO\nwhen\tO\twhen\tO\nupdating\tO\tupdating\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nwith\tO\twith\tO\ncordova.plugins.backgroundMode.configure\tB-Code_Block\tcordova.plugins.backgroundMode.configure\tB-Code_Block\n(\tB-Code_Block\t(\tB-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\ntext\tI-Code_Block\ttext\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nUpload\tI-Code_Block\tUpload\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\nof\tI-Code_Block\tof\tI-Code_Block\n20\tI-Code_Block\t20\tI-Code_Block\nimages\tI-Code_Block\timages\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n;\tB-Code_Block\t;\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\na\tO\ta\tO\nflickering\tO\tflickering\tO\nnotification\tO\tnotification\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nold\tO\told\tO\nnotification\tO\tnotification\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nreplaced\tO\treplaced\tO\nwith\tO\twith\tO\na\tO\ta\tO\nnew\tO\tnew\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nnotification\tO\tnotification\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nold\tO\told\tO\nNotification.Builder\tB-Library_Class\tNotification.Builder\tB-Code_Block\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/13\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/13\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nyou\tO\tyou\tO\ndescribe\tO\tdescribe\tO\nwhat\tO\twhat\tO\nhappened\tO\thappened\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nHelloAR\tB-Application\tHelloAR\tO\napp\tO\tapp\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/19\tO\thttps://github.com/koding/kd-atom/issues/19\tO\n\t\nTODO\tO\tTODO\tO\n:\tO\t:\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\ncheck\tO\tcheck\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlight\tO\tlight\tO\nui\tO\tui\tO\ntheme\tO\ttheme\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nturn\tO\tturn\tO\non/off\tO\ton/off\tO\nshould\tO\tshould\tO\nreceive\tO\treceive\tO\nrelated\tO\trelated\tO\nmachine\tB-Device\tmachine\tO\ninstance\tO\tinstance\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nshow\tO\tshow\tO\nlogs\tO\tlogs\tO\nshould\tO\tshould\tO\nreceive\tO\treceive\tO\nrelated\tO\trelated\tO\nmachine\tB-Device\tmachine\tO\ninstance\tO\tinstance\tO\n\t\nNot\tO\tNot\tO\nrequired\tO\trequired\tO\nbut\tO\tbut\tO\ngood\tO\tgood\tO\nimprovement\tO\timprovement\tO\n:\tO\t:\tO\n\t\nadd\tO\tadd\tO\nmount/unmount\tO\tmount/unmount\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nmachine\tB-Device\tmachine\tO\n\t\nadd\tO\tadd\tO\nshow\tO\tshow\tO\noffline\tO\toffline\tO\ncheckbox\tB-User_Interface_Element\tcheckbox\tO\nto\tO\tto\tO\nlist\tO\tlist\tO\nall\tO\tall\tO\nmachines\tB-Device\tmachines\tO\n\t\nbetter\tO\tbetter\tO\nfiltering\tO\tfiltering\tO\noptions\tO\toptions\tO\n(\tO\t(\tO\nfilter\tO\tfilter\tO\nby\tO\tby\tO\neach\tO\teach\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n)\tO\t)\tO\n\t\nuse\tO\tuse\tO\nSelectListView\tB-Library\tSelectListView\tB-Code_Block\nand\tO\tand\tO\nimplement\tO\timplement\tO\nkeybindings\tO\tkeybindings\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\naction\tO\taction\tO\nwhile\tO\twhile\tO\nthis\tO\tthis\tO\npanel\tO\tpanel\tO\nis\tO\tis\tO\nactivated\tO\tactivated\tO\n\t\nturn\tO\tturn\tO\non/off\tO\ton/off\tO\nkeybinding\tO\tkeybinding\tO\n\t\nshow\tO\tshow\tO\nlogs\tO\tlogs\tO\nkeybinding\tO\tkeybinding\tO\n\t\nset\tO\tset\tO\nalways\tO\talways\tO\non\tO\ton\tO\nstate\tO\tstate\tO\nkeybinding\tO\tkeybinding\tO\n\t\npossibly\tO\tpossibly\tO\nmount/unmount\tO\tmount/unmount\tO\nkeybinding\tO\tkeybinding\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/9\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/9\tO\n\t\nSimply\tO\tSimply\tO\nfixes\tO\tfixes\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nissues\tO\tissues\tO\n:\tO\t:\tO\n\t\nDrives\tO\tDrives\tO\ncan\tO\tcan\tO\nnow\tO\tnow\tO\nspan\tO\tspan\tO\nquarters\tO\tquarters\tO\n.\tO\t.\tO\n\t\nRemoves\tO\tRemoves\tO\n(\tO\t(\tO\nAlerts\tO\tAlerts\tO\n)\tO\t)\tO\nexact\tO\texact\tO\nduplicate\tO\tduplicate\tO\nplays\tO\tplays\tO\n.\tO\t.\tO\n\t\nAlerts\tO\tAlerts\tO\nwhen\tO\twhen\tO\nDrive\tO\tDrive\tO\nsummary\tO\tsummary\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatch\tO\tmatch\tO\nPBP\tO\tPBP\tO\ndata\tO\tdata\tO\n\t\nRemoved\tO\tRemoved\tO\ncsv\tB-File_Type\tcsv\tO\nand\tO\tand\tO\nTXT\tB-File_Type\tTXT\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nWere\tO\tWere\tO\nmaking\tO\tmaking\tO\ncommits\tO\tcommits\tO\nunmanageable\tO\tunmanageable\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/2\tO\thttps://github.com/numen31337/AKVideoImageView/issues/2\tO\n\t\nHey\tO\tHey\tO\n@zfrankz\tB-User_Name\t@zfrankz\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nthis\tO\tthis\tO\ntoday\tO\ttoday\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/34\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/34\tO\n\t\nGlad\tO\tGlad\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nClosing\tO\tClosing\tO\nthe\tO\tthe\tO\nbug\tO\tbug\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/9\tO\thttps://github.com/demigor/lex.db/issues/9\tO\n\t\nNice\tO\tNice\tO\ncatch\tO\tcatch\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\nbug\tO\tbug\tO\nwas\tO\twas\tO\ncaused\tO\tcaused\tO\nby\tO\tby\tO\nincorrect\tO\tincorrect\tO\n(\tO\t(\tO\nlegacy\tO\tlegacy\tO\n)\tO\t)\tO\nusage\tO\tusage\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nindexes\tO\tindexes\tO\nfor\tO\tfor\tO\nPK\tO\tPK\tO\nnodes\tO\tnodes\tO\nremoval\tO\tremoval\tO\n.\tO\t.\tO\n\t\nFixed\tO\tFixed\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/79\tO\thttps://github.com/spacetelescope/specview/issues/79\tO\n\t\n@ibusko\tB-User_Name\t@ibusko\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nsuperseded\tO\tsuperseded\tO\nby\tO\tby\tO\nspecviz\tB-Library\tspecviz\tB-Code_Block\n,\tO\t,\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsergio/ophmisu\tO\twsergio/ophmisu\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsergio/ophmisu/issues/1\tO\thttps://github.com/wsergio/ophmisu/issues/1\tO\n\t\nhttp://cl.ly/image/1a1D44053S1W\tO\thttp://cl.ly/image/1a1D44053S1W\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprogdude/Flicks\tO\tprogdude/Flicks\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/progdude/Flicks/issues/2\tO\thttps://github.com/progdude/Flicks/issues/2\tO\n\t\nHad\tO\tHad\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nfun\tO\tfun\tO\ncreating\tO\tcreating\tO\nthis\tO\tthis\tO\napp\tO\tapp\tO\n!\tO\t!\tO\n\t\nHope\tO\tHope\tO\nyou\tO\tyou\tO\nguys\tO\tguys\tO\nenjoy\tO\tenjoy\tO\nit\tO\tit\tO\n!\tO\t!\tO\n\t\n/cc\tO\t/cc\tO\n@codepathreview\tB-User_Name\t@codepathreview\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmakeen-project/makeen\tO\tmakeen-project/makeen\tO\n-hapi\tO\t-hapi\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/viczam/makeen-hapi/issues/52\tO\thttps://github.com/viczam/makeen-hapi/issues/52\tO\n\t\nWS\tO\tWS\tO\nJira\tB-Application\tJira\tO\nTicket\tO\tTicket\tO\n:\tO\t:\tO\nACP-47\tO\tACP-47\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/91\tO\thttps://github.com/svenstaro/flamejam/issues/91\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nactually\tO\tactually\tO\nneed\tO\tneed\tO\nmysql\tB-Application\tmysql\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\njust\tO\tjust\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\nin\tO\tin\tO\nparticular\tO\tparticular\tO\nuse\tO\tuse\tO\nmysql-python\tB-Application\tmysql-python\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nwhatever\tO\twhatever\tO\nbackend\tO\tbackend\tO\n.\tO\t.\tO\n\t\nDefault\tO\tDefault\tO\nis\tO\tis\tO\nsqlite\tB-Application\tsqlite\tO\nanyhow\tO\tanyhow\tO\n.\tO\t.\tO\n\t\nAnyone\tO\tAnyone\tO\nwho\tO\twho\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nmysql\tB-Application\tmysql\tO\nbackend\tO\tbackend\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nmysql\tB-Application\tmysql\tO\ninstalled\tO\tinstalled\tO\nanyhow\tO\tanyhow\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nmariadb\tB-Application\tmariadb\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nmysql\tB-Application\tmysql\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/1\tO\thttps://github.com/spacetelescope/specview/issues/1\tO\n\t\nCertainly\tO\tCertainly\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nall\tO\tall\tO\ngood\tO\tgood\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nadd\tO\tadd\tO\nwavelength\tB-Variable_Name\twavelength\tO\nmodifiers\tO\tmodifiers\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n(\tO\t(\tO\nz\tO\tz\tO\nbeing\tO\tbeing\tO\none\tO\tone\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nother\tO\tother\tO\nsimple\tO\tsimple\tO\ntransformations\tO\ttransformations\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nsimple\tO\tsimple\tO\noffset\tO\toffset\tO\nto\tO\tto\tO\ncorrespond\tO\tcorrespond\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nalignment\tO\talignment\tO\nneeds\tO\tneeds\tO\nof\tO\tof\tO\nJeff\tB-User_Name\tJeff\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nGlue\tB-Application\tGlue\tO\ndata\tO\tdata\tO\nset\tO\tset\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nshould\tO\tshould\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nwell\tO\twell\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nglue\tB-Application\tglue\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nthought\tO\tthought\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nnot\tO\tnot\tO\nimmediately\tO\timmediately\tO\nimplemented\tO\timplemented\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nandrewreeman/simpleSF_Player\tO\tandrewreeman/simpleSF_Player\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/andrewreeman/Simple-soundfile-player/issues/16\tO\thttps://github.com/andrewreeman/Simple-soundfile-player/issues/16\tO\n\t\nAppears\tO\tAppears\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nPA\tO\tPA\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nminim\tO\tminim\tO\nworking\tO\tworking\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/381\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/381\tO\n\t\nPlease\tO\tPlease\tO\ntell\tO\ttell\tO\nus\tO\tus\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/124\tO\thttps://github.com/linked-statistics/xkos/issues/124\tO\n\t\nOriginal\tO\tOriginal\tO\nissue\tO\tissue\tO\n:\tO\t:\tO\n#84\tO\t#84\tO\n\t\nNext\tO\tNext\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nXKOS\tB-Library\tXKOS\tO\nspec\tO\tspec\tO\n,\tO\t,\tO\na\tO\ta\tO\nguideline\tO\tguideline\tO\ndocument\tO\tdocument\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nproduced\tO\tproduced\tO\n,\tO\t,\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nindication\tO\tindication\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nXKOS\tB-Library\tXKOS\tO\nin\tO\tin\tO\nconjunction\tO\tconjunction\tO\nwith\tO\twith\tO\nother\tO\tother\tO\nvocabularies\tO\tvocabularies\tO\nto\tO\tto\tO\nexpress\tO\texpress\tO\nstatistical\tO\tstatistical\tO\nclassifications\tO\tclassifications\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkrodrigues/clientImageSelectCropper\tO\tkrodrigues/clientImageSelectCropper\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/krodrigues/clientImageSelectCropper\tO\thttps://github.com/krodrigues/clientImageSelectCropper\tO\n\t\nclientImageSelectCropper\tB-Application\tclientImageSelectCropper\tO\n\t\nSelect\tO\tSelect\tO\n,\tO\t,\tO\nCrop\tO\tCrop\tO\n,\tO\t,\tO\nPreview\tO\tPreview\tO\nand\tO\tand\tO\nSave\tO\tSave\tO\nimage\tB-User_Interface_Element\timage\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nside\tI-Application\tside\tO\nwith\tO\twith\tO\njavascript\tB-Language\tjavascript\tO\n\t\nAll\tO\tAll\tO\nin\tO\tin\tO\nClient\tB-Application\tClient\tO\nside\tI-Application\tside\tO\n\t\nUsing\tO\tUsing\tO\nJcrop\tB-Application\tJcrop\tO\nto\tO\tto\tO\ncrop\tO\tcrop\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\ndynamic\tO\tdynamic\tO\ncanvas\tB-Library_Class\tcanvas\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\nin\tO\tin\tO\nbase\tO\tbase\tO\n64\tO\t64\tO\nformat\tO\tformat\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\njquery\tB-Library\tjquery\tO\nplugin\tO\tplugin\tO\nenables\tO\tenables\tO\ndevelopers\tO\tdevelopers\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\na\tO\ta\tO\nfast\tO\tfast\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\ncrop\tO\tcrop\tO\ntheir\tO\ttheir\tO\nimages\tB-User_Interface_Element\timages\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\napproach\tO\tapproach\tO\nalso\tO\talso\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\ndevelopers\tO\tdevelopers\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nsaves\tO\tsaves\tO\na\tO\ta\tO\nprevious\tO\tprevious\tO\nimage\tB-User_Interface_Element\timage\tO\nsubmition\tO\tsubmition\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nhappens\tO\thappens\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ndeveloper\tO\tdeveloper\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nphisical\tO\tphisical\tO\nimage\tB-User_Interface_Element\timage\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nbefore\tO\tbefore\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n,\tO\t,\tO\nsaving\tO\tsaving\tO\nlogic\tO\tlogic\tO\nlike\tO\tlike\tO\ntemp\tO\ttemp\tO\nfolders\tO\tfolders\tO\nand\tO\tand\tO\ncleaning\tO\tcleaning\tO\nthis\tO\tthis\tO\ntemp\tO\ttemp\tO\nfolders\tO\tfolders\tO\n.\tO\t.\tO\n\t\nDependencies\tO\tDependencies\tO\n\t\njQuery\tB-Library\tjQuery\tO\n\t\nJCrop\tB-Application\tJCrop\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\ndemo\tO\tdemo\tO\n:\tO\t:\tO\n\t\n```html\tO\t```html\tO\n\t\n01\tO\t01\tO\n-\tO\t-\tO\nsimple\tO\tsimple\tO\nselect\tO\tselect\tO\nimage\tB-User_Interface_Element\timage\tO\nand\tO\tand\tO\ncrop\tO\tcrop\tO\n\t\nresult\tO\tresult\tO\n:\tO\t:\tO\n\t\n$\tO\t$\tO\n(\tO\t(\tO\n\"\tO\t\"\tO\n.imgTargetArea\tO\t.imgTargetArea\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\n.clientImageSelectCropper\tO\t.clientImageSelectCropper\tO\n(\tO\t(\tO\n{\tO\t{\tO\nafterCropped\tO\tafterCropped\tO\n:\tO\t:\tO\nfunction(imageUrl)\tO\tfunction(imageUrl)\tO\n{\tO\t{\tO\n//\tO\t//\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nimageUrl\tO\timageUrl\tO\n'\tO\t'\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nimage\tO\timage\tO\ncropped\tO\tcropped\tO\nurl\tO\turl\tO\n.\tO\t.\tO\n\t\n//\tO\t//\tO\nthis\tO\tthis\tO\nurl\tO\turl\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nin\tO\tin\tO\nbase\tO\tbase\tO\n64\tO\t64\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\n//\tO\t//\tO\nnow\tO\tnow\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npart\tO\tpart\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nto\tO\tto\tO\na\tO\ta\tO\n//\tO\t//\tO\nnormal\tO\tnormal\tO\nimage\tB-User_Interface_Element\timage\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\n,\tO\t,\tO\nor\tO\tor\tO\nsave\tO\tsave\tO\nthis\tO\tthis\tO\nstring\tB-Data_Type\tstring\tO\non\tO\ton\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n}\tO\t}\tO\n\t\n}\tO\t}\tO\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_51609\tI-Code_Block\tGR_51609\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ndefaults{\tO\tdefaults{\tO\ntextCropButton\tO\ttextCropButton\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nCrop\tO\tCrop\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n//\tO\t//\tO\ntext\tO\ttext\tO\nin\tO\tin\tO\ncrop\tO\tcrop\tO\nbutton\tO\tbutton\tO\ntextCleanButton\tO\ttextCleanButton\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nClean\tO\tClean\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n//\tO\t//\tO\ntext\tO\ttext\tO\nin\tO\tin\tO\nclean\tO\tclean\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n\t\ncropBackGroundColor\tO\tcropBackGroundColor\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\n#747474\tO\t#747474\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n//\tO\t//\tO\nbackground\tO\tbackground\tO\ncolor\tO\tcolor\tO\nof\tO\tof\tO\nunselected\tO\tunselected\tO\ncrop\tO\tcrop\tO\nimage\tO\timage\tO\ncropOpacity\tO\tcropOpacity\tO\n:\tO\t:\tO\n.4\tO\t.4\tO\n,\tO\t,\tO\n//\tO\t//\tO\nopacity\tO\topacity\tO\nof\tO\tof\tO\nbackground\tO\tbackground\tO\nunselected\tO\tunselected\tO\nimage\tO\timage\tO\ncropBoxWidth\tO\tcropBoxWidth\tO\n:\tO\t:\tO\n500\tO\t500\tO\n,\tO\t,\tO\n//\tO\t//\tO\nmax\tO\tmax\tO\nwidth\tO\twidth\tO\nof\tO\tof\tO\ncrop\tO\tcrop\tO\nimage\tO\timage\tO\ncropBoxHeight\tO\tcropBoxHeight\tO\n:\tO\t:\tO\n300\tO\t300\tO\n,\tO\t,\tO\n//\tO\t//\tO\nmax\tO\tmax\tO\nheight\tO\theight\tO\nof\tO\tof\tO\ncrop\tO\tcrop\tO\nimage\tO\timage\tO\n\t\npreviewPanel\tO\tpreviewPanel\tO\n:\tO\t:\tO\nundefined\tO\tundefined\tO\n,\tO\t,\tO\n//\tO\t//\tO\nDiv\tO\tDiv\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ndisplayed\tO\tdisplayed\tO\nan\tO\tan\tO\nimage\tO\timage\tO\npreview\tO\tpreview\tO\n\t\nerrorFileNotSupported\tO\terrorFileNotSupported\tO\n:\tO\t:\tO\nundefined\tO\tundefined\tO\n,\tO\t,\tO\n//\tO\t//\tO\nError\tO\tError\tO\nraised\tO\traised\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nsupported\tO\tsupported\tO\nafterImageUploaded\tO\tafterImageUploaded\tO\n:\tO\t:\tO\nundefined\tO\tundefined\tO\n,\tO\t,\tO\n//\tO\t//\tO\nEvent\tO\tEvent\tO\nraised\tO\traised\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nselect\tO\tselect\tO\nan\tO\tan\tO\nimage\tO\timage\tO\nafterCropped\tO\tafterCropped\tO\n:\tO\t:\tO\nundefined\tO\tundefined\tO\n,\tO\t,\tO\n//\tO\t//\tO\nEvent\tO\tEvent\tO\nraised\tO\traised\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncrop\tO\tcrop\tO\nthe\tO\tthe\tO\nimage\tO\timage\tO\nafterCleaned\tO\tafterCleaned\tO\n:\tO\t:\tO\nundefined\tO\tundefined\tO\n//\tO\t//\tO\nEvent\tO\tEvent\tO\nraised\tO\traised\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nclean/cancel\tO\tclean/cancel\tO\ncrop\tO\tcrop\tO\n}\tO\t}\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_51610\tI-Code_Block\tGR_51610\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmaemori/accon\tO\tmaemori/accon\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/maemori/accon/issues/1\tO\thttps://github.com/maemori/accon/issues/1\tO\n\t\nThe\tO\tThe\tO\nimage\tB-User_Interface_Element\timage\tO\nbreaks\tO\tbreaks\tO\non\tO\ton\tO\nstep\tO\tstep\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_71995\tI-Code_Block\tGR_71995\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthe\tO\tthe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_71996\tI-Code_Block\tGR_71996\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndhrrgn/codeigniter\tO\tdhrrgn/codeigniter\tO\n-uhoh\tO\t-uhoh\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dhrrgn/codeigniter-uhoh/issues/4\tO\thttps://github.com/dhrrgn/codeigniter-uhoh/issues/4\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nfilename\tO\tfilename\tO\nto\tO\tto\tO\nfrom\tO\tfrom\tO\nMy_exceptions.php\tB-File_Name\tMy_exceptions.php\tO\nto\tO\tto\tO\napp_Exceptions.php\tB-File_Name\tapp_Exceptions.php\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nin\tO\tin\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nreferences\tO\treferences\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nMy_exceptions\tB-Library_Class\tMy_exceptions\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/20\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/20\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfixed\tO\tfixed\tO\nup\tO\tup\tO\nmy\tO\tmy\tO\nfork\tO\tfork\tO\nof\tO\tof\tO\nhttps://github.com/RichardN/logstash-input-s3\tO\thttps://github.com/RichardN/logstash-input-s3\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nrspec\tB-Application\trspec\tO\npasses\tO\tpasses\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nchange\tO\tchange\tO\nis\tO\tis\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nmixin\tB-Library_Class\tmixin\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nlegacy\tO\tlegacy\tO\n\"\tO\t\"\tO\ncredentials\tO\tcredentials\tO\n\"\tO\t\"\tO\nsetting\tO\tsetting\tO\nis\tO\tis\tO\nremoved\tO\tremoved\tO\nany\tO\tany\tO\nplugin\tO\tplugin\tO\nwhich\tO\twhich\tO\nuses\tO\tuses\tO\nthis\tO\tthis\tO\nmixin\tB-Library_Class\tmixin\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/18\tO\thttps://github.com/rpcope1/Hantek6022API/issues/18\tO\n\t\nThis\tO\tThis\tO\npatch\tO\tpatch\tO\nadds\tO\tadds\tO\nmy\tO\tmy\tO\ncustom\tO\tcustom\tO\nfirmware\tO\tfirmware\tO\nand\tO\tand\tO\nit\tO\tit\tO\nadds\tO\tadds\tO\nisochronous\tO\tisochronous\tO\nsupport\tO\tsupport\tO\nto\tO\tto\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\nfirmware\tO\tfirmware\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nPython\tB-Language\tPython\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nperfect\tO\tperfect\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nis\tO\tis\tO\nmostly\tO\tmostly\tO\nready\tO\tready\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nbulk\tO\tbulk\tO\ntransfers\tO\ttransfers\tO\nand\tO\tand\tO\nstop_capture\tB-Library_Variable\tstop_capture\tB-Code_Block\n:\tO\t:\tO\nIf\tO\tIf\tO\nstop_capture\tB-Library_Variable\tstop_capture\tB-Code_Block\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\nwill\tO\twill\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nsend\tO\tsend\tO\nbulk\tO\tbulk\tO\npackages\tO\tpackages\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nbulk\tO\tbulk\tO\ntransfers\tO\ttransfers\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nclean\tO\tclean\tO\nthemselves\tO\tthemselves\tO\nup\tO\tup\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nstop_capture\tB-Library_Variable\tstop_capture\tO\nbefore\tO\tbefore\tO\nstopping\tO\tstopping\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nisochronous\tO\tisochronous\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nsuch\tO\tsuch\tO\nproblem\tO\tproblem\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nstill\tO\tstill\tO\nsend\tO\tsend\tO\nempty\tO\tempty\tO\npackets\tO\tpackets\tO\nevery\tO\tevery\tO\nmicro\tO\tmicro\tO\nframe\tO\tframe\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncustom\tO\tcustom\tO\nfirmware\tO\tfirmware\tO\nwill\tO\twill\tO\nlight\tO\tlight\tO\nthe\tO\tthe\tO\ngreen\tO\tgreen\tO\nled\tB-Device\tled\tO\nwhile\tO\twhile\tO\na\tO\ta\tO\ncapture\tO\tcapture\tO\nis\tO\tis\tO\nin\tO\tin\tO\nprogress\tO\tprogress\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nled\tB-Device\tled\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ngo\tO\tgo\tO\noff\tO\toff\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nconsider\tO\tconsider\tO\ncalling\tO\tcalling\tO\nstop_capture\tB-Library_Variable\tstop_capture\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nred\tO\tred\tO\nled\tB-Device\tled\tO\nwill\tO\twill\tO\nblink\tO\tblink\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nshort\tO\tshort\tO\ntime\tO\ttime\tO\nif\tO\tif\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\nis\tO\tis\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsirwilliamiv/api\tO\tsirwilliamiv/api\tO\n-bazam\tO\t-bazam\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/sirwilliamiv/api-bazam\tO\thttps://github.com/sirwilliamiv/api-bazam\tO\n\t\napi-bazam\tO\tapi-bazam\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkrodrigues/clientImageSelectCropper\tO\tkrodrigues/clientImageSelectCropper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/k30v1n/clientImageSelectCropper/issues/1\tO\thttps://github.com/k30v1n/clientImageSelectCropper/issues/1\tO\n\t\ncom.google.gson.JsonSyntaxException\tB-Code_Block\tcom.google.gson.JsonSyntaxException\tO\n:\tI-Code_Block\t:\tO\njava.lang.IllegalStateException\tI-Code_Block\tjava.lang.IllegalStateException\tO\n:\tI-Code_Block\t:\tO\nExpected\tI-Code_Block\tExpected\tO\nBEGIN_ARRAY\tI-Code_Block\tBEGIN_ARRAY\tO\nbut\tI-Code_Block\tbut\tO\nwas\tI-Code_Block\twas\tO\nBEGIN_OBJECT\tI-Code_Block\tBEGIN_OBJECT\tO\nat\tI-Code_Block\tat\tO\nline\tI-Code_Block\tline\tO\n1\tI-Code_Block\t1\tO\ncolumn\tI-Code_Block\tcolumn\tO\n1796\tI-Code_Block\t1796\tO\npath\tI-Code_Block\tpath\tO\n$.matches[0].participants[0].stats\tI-Code_Block\t$.matches[0].participants[0].stats\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/27\tO\thttps://github.com/spacetelescope/specview/issues/27\tO\n\t\nend\tO\tend\tO\n...\tO\t...\tO\nfor\tO\tfor\tO\nequivalent\tO\tequivalent\tO\nwidths\tO\twidths\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/5\tO\thttps://github.com/zeroepoch/plotbitrate/issues/5\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\npython\tB-Language\tpython\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ngive\tO\tgive\tO\nyour\tO\tyour\tO\nscript\tO\tscript\tO\na\tO\ta\tO\ntry\tO\ttry\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nbasic\tO\tbasic\tO\ncommand\tO\tcommand\tO\n\"\tO\t\"\tO\nplotbitrate.py\tB-Code_Block\tplotbitrate.py\tO\nWildlife.mwv\tI-Code_Block\tWildlife.mwv\tO\n\"\tO\t\"\tO\ngives\tO\tgives\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nline\tB-Code_Block\tline\tB-Code_Block\n151\tI-Code_Block\t151\tI-Code_Block\nframe_time\tI-Code_Block\tframe_time\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nfloat(node.get('pkt_pts_time'))\tI-Code_Block\tfloat(node.get('pkt_pts_time'))\tI-Code_Block\nwhich\tO\twhich\tO\nsays\tO\tsays\tO\nTypeError\tB-Error_Name\tTypeError\tB-Code_Block\n:\tO\t:\tI-Code_Block\nfloat()\tB-Code_Block\tfloat()\tI-Code_Block\nargument\tI-Code_Block\targument\tI-Code_Block\nmust\tI-Code_Block\tmust\tI-Code_Block\nbe\tI-Code_Block\tbe\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nstring\tI-Code_Block\tstring\tI-Code_Block\nor\tI-Code_Block\tor\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nnumber\tI-Code_Block\tnumber\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nnot\tI-Code_Block\tnot\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\nNoneType\tI-Code_Block\tNoneType\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\n.\tI-Code_Block\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nZeranoe\tB-Organization\tZeranoe\tO\nbuild\tO\tbuild\tO\n(\tO\t(\tO\nx64\tO\tx64\tO\nWindows\tB-Operating_System\tWindows\tO\n7\tB-Version\t7\tO\n)\tO\t)\tO\nof\tO\tof\tO\nffmpeg\tB-Application\tffmpeg\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\npath\tO\tpath\tO\n.\tO\t.\tO\n\t\nFFprobe\tB-Application\tFFprobe\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nvideo\tB-File_Type\tvideo\tO\nfile\tO\tfile\tO\nwithout\tO\twithout\tO\nproblems\tO\tproblems\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nexperience\tO\texperience\tO\nwith\tO\twith\tO\nprocessing\tO\tprocessing\tO\nxml\tB-Language\txml\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nvideo\tO\tvideo\tO\nsource\tO\tsource\tO\n,\tO\t,\tO\nffprobe\tB-Application\tffprobe\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\npython\tB-Language\tpython\tO\nscript\tO\tscript\tO\n?\tO\t?\tO\n\t\nUsing\tO\tUsing\tO\npython\tB-Language\tpython\tO\n3.5\tB-Version\t3.5\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nManuelDeLeon/vmc2jsx\tO\tManuelDeLeon/vmc2jsx\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/4\tO\thttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/4\tO\n\t\nWith\tO\tWith\tO\nviewmodel-react-plugin\tB-Library\tviewmodel-react-plugin\tO\n>=\tO\t>=\tO\n3.1.3\tB-Version\t3.1.3\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nwill\tO\twill\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\ncompile\tO\tcompile\tO\nif\tO\tif\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nb\tB-Variable_Name\tb\tO\n=\tO\t=\tO\n\"\tO\t\"\tO\ndefer\tO\tdefer\tO\n:\tO\t:\tO\ntrue\tO\ttrue\tO\n\"\tO\t\"\tO\nanywhere\tO\tanywhere\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nbabel\tB-Library\tbabel\tO\nerrors\tO\terrors\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_69195\tI-Code_Block\tGR_69195\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nof\tO\tof\tO\nupgrading\tO\tupgrading\tO\nMeteor\tB-Library\tMeteor\tO\n1.6->1.7\tB-Version\t1.6->1.7\tO\nand\tO\tand\tO\nReact\tB-Library\tReact\tO\n15->16\tB-Version\t15->16\tO\n,\tO\t,\tO\nI\tO\tI\tO\nlost\tO\tlost\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nbinding\tO\tbinding\tO\nin\tO\tin\tO\nself\tO\tself\tO\nclosing\tO\tclosing\tO\ntags\tO\ttags\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nupgraded\tO\tupgraded\tO\nto\tO\tto\tO\nviewmodel-react-plugin\tB-Library\tviewmodel-react-plugin\tO\n@3\tB-Version\t@3\tO\n.1.4\tI-Version\t.1.4\tO\nwhich\tO\twhich\tO\nfixes\tO\tfixes\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nproblem\tO\tproblem\tO\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\ncompiles\tO\tcompiles\tO\nunless\tO\tunless\tO\nI\tO\tI\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\ndefer\tO\tdefer\tO\nbindings\tO\tbindings\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ndowngrade\tO\tdowngrade\tO\nto\tO\tto\tO\nviewmodel-react-plugin\tB-Library\tviewmodel-react-plugin\tO\n@3\tB-Version\t@3\tO\n.1.0\tI-Version\t.1.0\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncompile\tO\tcompile\tO\nwith\tO\twith\tO\ndeferred\tO\tdeferred\tO\ncomponents\tO\tcomponents\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nbinding\tO\tbinding\tO\nin\tO\tin\tO\nself\tO\tself\tO\nclosing\tO\tclosing\tO\ntext\tO\ttext\tO\nis\tO\tis\tO\ngone\tO\tgone\tO\nagain\tO\tagain\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tB-Code_Block\ndeferWithRequire\tB-Library_Variable\tdeferWithRequire\tI-Code_Block\n\"\tO\t\"\tI-Code_Block\n:\tO\t:\tI-Code_Block\n\"\tO\t\"\tI-Code_Block\ntrue\tO\ttrue\tI-Code_Block\n\"\tO\t\"\tI-Code_Block\nbabel\tB-Library\tbabel\tO\nparameter\tO\tparameter\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nmade\tO\tmade\tO\nno\tO\tno\tO\ndifference\tO\tdifference\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nandrewreeman/simpleSF_Player\tO\tandrewreeman/simpleSF_Player\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/andrewreeman/simpleSF_Player\tO\thttps://github.com/andrewreeman/simpleSF_Player\tO\n\t\nsimpleSF_Player\tO\tsimpleSF_Player\tO\n\t\nDeveloping\tO\tDeveloping\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsound\tB-Application\tsound\tO\nfile\tI-Application\tfile\tO\nplayer\tI-Application\tplayer\tO\n.\tO\t.\tO\n\t\nExploring\tO\tExploring\tO\nvarious\tO\tvarious\tO\naudio\tO\taudio\tO\ndrivers\tB-Application\tdrivers\tO\n,\tO\t,\tO\naudio\tO\taudio\tO\nfile\tO\tfile\tO\nlibraries\tO\tlibraries\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nfinally\tO\tfinally\tO\nvarious\tO\tvarious\tO\ngraphics\tO\tgraphics\tO\nlibraries\tO\tlibraries\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/61\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/61\tO\n\t\nRHEL\tB-Application\tRHEL\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nproduct\tO\tproduct\tO\nname\tO\tname\tO\nin\tO\tin\tO\nBZ\tB-Application\tBZ\tO\n,\tO\t,\tO\nRed\tB-Application\tRed\tB-Code_Block\nHat\tI-Application\tHat\tI-Code_Block\nEnterprise\tI-Application\tEnterprise\tI-Code_Block\nLinux\tI-Application\tLinux\tI-Code_Block\n7\tB-Version\t7\tI-Code_Block\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/101\tO\thttps://github.com/linked-statistics/xkos/issues/101\tO\n\t\nthe\tO\tthe\tO\nfigure\tO\tfigure\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nExample\tO\tExample\tO\n6\tO\t6\tO\ngiven\tO\tgiven\tO\nbelow\tO\tbelow\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nHackClub-SLHS/HackClub\tO\tHackClub-SLHS/HackClub\tO\n-Website\tO\t-Website\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/HackClub-SLHS/HackClub-Website/issues/14\tO\thttps://github.com/HackClub-SLHS/HackClub-Website/issues/14\tO\n\t\nsearch\tO\tsearch\tO\nengine\tO\tengine\tO\noptimize\tO\toptimize\tO\nour\tO\tour\tO\nwebsite\tO\twebsite\tO\nso\tO\tso\tO\nsearch\tO\tsearch\tO\nengine\tO\tengine\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nit\tO\tit\tO\nand\tO\tand\tO\nget\tO\tget\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nscore\tO\tscore\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmongrate/mongrate.com\tO\tmongrate/mongrate.com\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mongrate/mongrate.com/issues/3\tO\thttps://github.com/mongrate/mongrate.com/issues/3\tO\n\t\nsee\tO\tsee\tO\nhttps://github.com/mongrate/mongrate-bundle/pull/27\tO\thttps://github.com/mongrate/mongrate-bundle/pull/27\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nManuelDeLeon/vmc2jsx\tO\tManuelDeLeon/vmc2jsx\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/2\tO\thttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/2\tO\n\t\nWonderful\tO\tWonderful\tO\n!\tO\t!\tO\n\t\nThanks\tO\tThanks\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nexcellent\tO\texcellent\tO\nwork\tO\twork\tO\nand\tO\tand\tO\nsupport\tO\tsupport\tO\n!\tO\t!\tO\n\t\nCa\tO\tCa\tO\nn't\tO\tn't\tO\nwait\tO\twait\tO\nto\tO\tto\tO\nexplore\tO\texplore\tO\nthese\tO\tthese\tO\nfunctionnalities\tO\tfunctionnalities\tO\nnow\tO\tnow\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/11\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/11\tO\n\t\n\t\nUpdate\tO\tUpdate\tO\ndocs\tO\tdocs\tO\n\t\nBREAKING\tO\tBREAKING\tO\n:\tO\t:\tO\nreturn\tO\treturn\tO\nraw\tO\traw\tO\nbuffers\tO\tbuffers\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nstrings\tB-Data_Type\tstrings\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/3\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/3\tO\n\t\nSorry\tO\tSorry\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nback\tO\tback\tO\nsooner\tO\tsooner\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nbusy\tO\tbusy\tO\n.\tO\t.\tO\n\t\nAnyway\tO\tAnyway\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nstack\tB-Data_Structure\tstack\tO\ntrace\tO\ttrace\tO\nI\tO\tI\tO\nget\tO\tget\tO\nwhen\tO\twhen\tO\nrunning\tO\trunning\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nRSpec\tB-Application\tRSpec\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_27469\tI-Code_Block\tGR_27469\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nthere\tO\tthere\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nActiveRecord\tB-Library\tActiveRecord\tO\nwhich\tO\twhich\tO\ncatches\tO\tcatches\tO\nthese\tO\tthese\tO\nerrors\tO\terrors\tO\nand\tO\tand\tO\nadds\tO\tadds\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nentry\tO\tentry\tO\ninto\tO\tinto\tO\nerrors\tB-Library_Variable\terrors\tB-Code_Block\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nsimpler\tO\tsimpler\tO\nexample\tO\texample\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_27470\tI-Code_Block\tGR_27470\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhich\tO\tWhich\tO\ngives\tO\tgives\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_27471\tI-Code_Block\tGR_27471\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ncaught\tO\tcaught\tO\nand\tO\tand\tO\ndealt\tO\tdealt\tO\nwith\tO\twith\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nActiveRecord\tB-Library\tActiveRecord\tO\nlevel\tO\tlevel\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsurol/speedtest\tO\tsurol/speedtest\tO\n-cli\tO\t-cli\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/surol/speedtest-cli/issues/1\tO\thttps://github.com/surol/speedtest-cli/issues/1\tO\n\t\nThe\tO\tThe\tO\npatch\tO\tpatch\tO\nfixes\tO\tfixes\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndata\tO\tdata\tO\nrace\tO\trace\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_66326\tI-Code_Block\tGR_66326\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP/issues/6\tO\thttps://github.com/McMenemy/GoDoRP/issues/6\tO\n\t\nHmmm\tO\tHmmm\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nwindows\tB-Operating_System\twindows\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nhave\tO\thave\tO\nyou\tO\tyou\tO\nupdated\tO\tupdated\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnewest\tO\tnewest\tO\n,\tO\t,\tO\nstable\tO\tstable\tO\nDocker\tB-Application\tDocker\tO\nfor\tO\tfor\tO\nWindows\tB-Operating_System\tWindows\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/6\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/6\tO\n\t\nWe\tO\tWe\tO\nmiss\tO\tmiss\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nscores\tO\tscores\tO\nbecause\tO\tbecause\tO\nESPN\tB-Organization\tESPN\tO\nDoes\tO\tDoes\tO\nn't\tO\tn't\tO\nalways\tO\talways\tO\nsay\tO\tsay\tO\nin\tO\tin\tO\nPBP\tO\tPBP\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\nfirst\tO\tfirst\tO\ndown\tO\tdown\tO\npossibly\tO\tpossibly\tO\ntoo\tO\ttoo\tO\n..\tO\t..\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nhttp://scores.espn.go.com/ncf/playbyplay?gameId=400609077&period=0\tO\thttp://scores.espn.go.com/ncf/playbyplay?gameId=400609077&period=0\tO\nWith\tO\tWith\tO\ngame\tO\tgame\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\n366038820141206\tO\t366038820141206\tO\n\t\nWhen\tO\tWhen\tO\nwe\tO\twe\tO\nparse\tO\tparse\tO\nout\tO\tout\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nmiss\tO\tmiss\tO\nall\tO\tall\tO\nscoring\tO\tscoring\tO\nplays\tO\tplays\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nparser\tO\tparser\tO\nprobably\tO\tprobably\tO\nsees\tO\tsees\tO\nthe\tO\tthe\tO\nword\tO\tword\tO\nkick\tO\tkick\tO\nand\tO\tand\tO\nignores\tO\tignores\tO\nit\tO\tit\tO\n\t\nWe\tO\tWe\tO\nshould\tO\tshould\tO\nhandle\tO\thandle\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nany\tO\tany\tO\nBOLD\tO\tBOLD\tO\nplay\tO\tplay\tO\n,\tO\t,\tO\nor\tO\tor\tO\nplay\tO\tplay\tO\nwith\tO\twith\tO\na\tO\ta\tO\nscore\tO\tscore\tO\ndisplaying\tO\tdisplaying\tO\ndifferent\tO\tdifferent\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nscore\tO\tscore\tO\nas\tO\tas\tO\na\tO\ta\tO\nscoring\tO\tscoring\tO\nplay\tO\tplay\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njamstooks/django\tO\tjamstooks/django\tO\n-acme-challenge\tO\t-acme-challenge\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jamstooks/django-acme-challenge/issues/1\tO\thttps://github.com/jamstooks/django-acme-challenge/issues/1\tO\n\t\nnevermind\tO\tnevermind\tO\n,\tO\t,\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nconfiguration\tO\tconfiguration\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/27\tO\thttps://github.com/koding/kd-atom/issues/27\tO\n\t\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/92\tO\thttps://github.com/svenstaro/flamejam/issues/92\tO\n\t\nBecause\tO\tBecause\tO\nwe\tO\twe\tO\nforgot\tO\tforgot\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/8\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/8\tO\n\t\nYeah\tO\tYeah\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnoticed\tO\tnoticed\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nonly\tO\tonly\tO\nhappened\tO\thappened\tO\nabout\tO\tabout\tO\n7\tO\t7\tO\nor\tO\tor\tO\n8\tO\t8\tO\ntimes\tO\ttimes\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ngames\tO\tgames\tO\nlast\tO\tlast\tO\nyear\tO\tyear\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nstill\tO\tstill\tO\nannoying\tO\tannoying\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nin\tO\tin\tO\nand\tO\tand\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nby\tO\tby\tO\nhand\tO\thand\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nvirresh/hello\tO\tvirresh/hello\tO\n-world\tO\t-world\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/virresh/hello-world\tO\thttps://github.com/virresh/hello-world\tO\n\t\nhello-world\tO\thello-world\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\ntest\tO\ttest\tO\nrepository\tO\trepository\tO\n,\tO\t,\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\ntemporary\tO\ttemporary\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nReally\tO\tReally\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nOpenPrograms/MiscPrograms\tO\tOpenPrograms/MiscPrograms\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/OpenPrograms/MiscPrograms/issues/10\tO\thttps://github.com/OpenPrograms/MiscPrograms/issues/10\tO\n\t\nHey\tO\tHey\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ncontribute\tO\tcontribute\tO\nmy\tO\tmy\tO\nhastebin\tB-Application\thastebin\tO\nprogram\tO\tprogram\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nopenprograms\tB-Application\topenprograms\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\n;)\tO\t;)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/libp2p/interface-record-store/issues/2\tO\thttps://github.com/libp2p/interface-record-store/issues/2\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\na\tO\ta\tO\ndiscussion\tO\tdiscussion\tO\nabout\tO\tabout\tO\ntesting\tO\ttesting\tO\nframeworks\tO\tframeworks\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nwondering\tO\twondering\tO\nwhy\tO\twhy\tO\nhere\tO\there\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\ntape\tB-Library\ttape\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\njs-ipfs-api\tB-Library\tjs-ipfs-api\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nmocha\tB-Library\tmocha\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2/issues/2\tO\thttps://github.com/thehyve/puppet-i2b2/issues/2\tO\n\t\nI\tO\tI\tO\nfixed\tO\tfixed\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npassword\tO\tpassword\tO\nreplacement\tO\treplacement\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nshortcomings\tO\tshortcomings\tO\n(\tO\t(\tO\nmentioned\tO\tmentioned\tO\nabove\tO\tabove\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nremain\tO\tremain\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrh443453518/wiki\tO\trh443453518/wiki\tO\n-word2vec\tO\t-word2vec\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/rh443453518/wiki-word2vec\tO\thttps://github.com/rh443453518/wiki-word2vec\tO\n\t\nWiki\tO\tWiki\tO\nWord2vec\tO\tWord2vec\tO\n\t\nTrain\tO\tTrain\tO\na\tO\ta\tO\ngensim\tB-Application\tgensim\tO\nword2vec\tO\tword2vec\tO\nmodel\tO\tmodel\tO\non\tO\ton\tO\nWikipedia\tB-Website\tWikipedia\tO\n.\tO\t.\tO\n\t\nMost\tO\tMost\tO\nof\tO\tof\tO\nit\tO\tit\tO\nis\tO\tis\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nblogpost\tO\tblogpost\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\ndiscussion\tO\tdiscussion\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nrepository\tO\trepository\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nmostly\tO\tmostly\tO\nfor\tO\tfor\tO\ntrying\tO\ttrying\tO\nout\tO\tout\tO\nmake\tB-Code_Block\tmake\tB-Code_Block\n,\tO\t,\tO\nsee\tO\tsee\tO\nThe\tO\tThe\tO\ngist\tO\tgist\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nimportant\tO\timportant\tO\nstuff\tO\tstuff\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nperformance\tO\tperformance\tO\ndepends\tO\tdepends\tO\nheavily\tO\theavily\tO\non\tO\ton\tO\ncorpus\tO\tcorpus\tO\nsize\tO\tsize\tO\nand\tO\tand\tO\nchosen\tO\tchosen\tO\nparameters\tO\tparameters\tO\n(\tO\t(\tO\nespecially\tO\tespecially\tO\nfor\tO\tfor\tO\nsmaller\tO\tsmaller\tO\ncorpora\tO\tcorpora\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nExamples\tO\tExamples\tO\nand\tO\tand\tO\nparameters\tO\tparameters\tO\nbelow\tO\tbelow\tO\nare\tO\tare\tO\ncherry-picked\tO\tcherry-picked\tO\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\n\t\nGet\tO\tGet\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nlanguage\tO\tlanguage\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nhere\tO\there\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nmake\tB-Code_Block\tmake\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nLANGUAGE\tB-Library_Variable\tLANGUAGE\tB-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nMakefile\tB-File_Name\tMakefile\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nSwahili\tO\tSwahili\tO\n(\tO\t(\tO\nsw\tO\tsw\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9901\tI-Code_Block\tGR_9901\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ngist\tO\tgist\tO\n\t\nIgnore\tO\tIgnore\tO\nmake\tB-Code_Block\tmake\tB-Code_Block\nand\tO\tand\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nbash\tO\tbash\tO\ncommands\tO\tcommands\tO\nfor\tO\tfor\tO\nSwahili\tO\tSwahili\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9902\tI-Code_Block\tGR_9902\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTrain\tO\tTrain\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nin\tO\tin\tO\nPython\tB-Language\tPython\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9903\tI-Code_Block\tGR_9903\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExample\tO\tExample\tO\n1\tO\t1\tO\n\t\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nold\tO\told\tO\nman:king\tO\tman:king\tO\nwoman\tO\twoman\tO\n:\tO\t:\tO\n?\tO\t?\tO\n\t\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9904\tI-Code_Block\tGR_9904\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nReturning\tO\tReturning\tO\nrespectively\tO\trespectively\tO\nqueen\tO\tqueen\tO\n(\tO\t(\tO\njackpot\tO\tjackpot\tO\n!\tO\t!\tO\n)\tO\t)\tO\n,\tO\t,\tO\nCambyses\tO\tCambyses\tO\nII\tO\tII\tO\n(\tO\t(\tO\na\tO\ta\tO\nPersian\tO\tPersian\tO\nking\tO\tking\tO\n)\tO\t)\tO\n,\tO\t,\tO\nSolomon\tO\tSolomon\tO\n(\tO\t(\tO\nking\tO\tking\tO\nof\tO\tof\tO\nIsrael\tO\tIsrael\tO\n)\tO\t)\tO\n,\tO\t,\tO\nKarolo\tO\tKarolo\tO\nMkuu\tO\tMkuu\tO\n?\tO\t?\tO\n(\tO\t(\tO\nCharlemagne\tO\tCharlemagne\tO\n?\tO\t?\tO\n)\tO\t)\tO\nand\tO\tand\tO\nCyrus\tO\tCyrus\tO\n(\tO\t(\tO\na\tO\ta\tO\nPersian\tO\tPersian\tO\nKing\tO\tKing\tO\n)\tO\t)\tO\n,\tO\t,\tO\n\t\nExample\tO\tExample\tO\n2\tO\t2\tO\n\t\nWhat\tO\tWhat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmatch\tO\tmatch\tO\n:\tO\t:\tO\ncar\tO\tcar\tO\n,\tO\t,\tO\ntrain\tO\ttrain\tO\nor\tO\tor\tO\nbreakfast\tO\tbreakfast\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9905\tI-Code_Block\tGR_9905\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDependencies\tO\tDependencies\tO\n\t\nPython\tB-Language\tPython\tO\n3\tB-Version\t3\tO\n\t\npip\tB-Code_Block\tpip\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\ngensim\tI-Code_Block\tgensim\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/3\tO\thttps://github.com/numen31337/AKVideoImageView/issues/3\tO\n\t\nNo\tO\tNo\tO\nfeedback\tO\tfeedback\tO\n,\tO\t,\tO\nclosing\tO\tclosing\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/2\tO\thttps://github.com/op-jenkins/op-build/issues/2\tO\n\t\nretest\tO\tretest\tO\nthis\tO\tthis\tO\nplease\tO\tplease\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/24\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/24\tO\n\t\nAh\tO\tAh\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nMoto\tB-Device\tMoto\tO\nG55\tB-Version\tG55\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\n64bit\tO\t64bit\tO\nbuild\tO\tbuild\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nuncheck\tO\tuncheck\tO\narm64\tO\tarm64\tO\nand\tO\tand\tO\ncheck\tO\tcheck\tO\narmv7\tO\tarmv7\tO\ncheckbox\tB-User_Interface_Element\tcheckbox\tO\nunder\tO\tunder\tO\nProject\tB-File_Name\tProject\tO\nSettings->Androids\tI-File_Name\tSettings->Androids\tO\nand\tO\tand\tO\npackage\tO\tpackage\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nagain\tO\tagain\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView\tO\thttps://github.com/numen31337/AKVideoImageView\tO\n\t\nAKVideoImageView\tB-Class_Name\tAKVideoImageView\tO\n\t\nMotivation\tO\tMotivation\tO\n\t\nAKVideoImageView\tB-Class_Name\tAKVideoImageView\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nsatisfied\tO\tsatisfied\tO\nwith\tO\twith\tO\nstandard\tO\tstandard\tO\nApple\tB-Organization\tApple\tO\nAVPlayer\tB-Library_Class\tAVPlayer\tO\nduring\tO\tduring\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nbackground\tO\tbackground\tO\nfor\tO\tfor\tO\none\tO\tone\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\napps\tO\tapps\tO\n.\tO\t.\tO\n\t\nAVPlayer\tB-Library_Class\tAVPlayer\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nphone\tB-Device\tphone\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nsleep\tO\tsleep\tO\nmode\tO\tmode\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ninsensibly\tO\tinsensibly\tO\nstart\tO\tstart\tO\na\tO\ta\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nframe\tO\tframe\tO\nwhen\tO\twhen\tO\napp\tO\tapp\tO\nenters\tO\tenters\tO\nbackground\tO\tbackground\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nclass\tO\tclass\tO\nsolves\tO\tsolves\tO\nthese\tO\tthese\tO\nproblems\tO\tproblems\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nperfect\tO\tperfect\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nmaking\tO\tmaking\tO\ngorgeous\tO\tgorgeous\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nbackgrounds\tO\tbackgrounds\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\napps\tO\tapps\tO\n.\tO\t.\tO\n\t\nFeatures\tO\tFeatures\tO\n\t\nAllows\tO\tAllows\tO\nthe\tO\tthe\tO\nphone\tB-Device\tphone\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsleep\tO\tsleep\tO\nmode\tO\tmode\tO\n\t\nAbility\tO\tAbility\tO\nto\tO\tto\tO\ndynamically\tO\tdynamically\tO\nswitch\tO\tswitch\tO\nvideos\tB-User_Interface_Element\tvideos\tO\n\t\nAuto\tO\tAuto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nframe\tO\tframe\tO\nof\tO\tof\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nseamless\tO\tseamless\tO\ntransition\tO\ttransition\tO\nwhen\tO\twhen\tO\napp\tO\tapp\tO\nreturns\tO\treturns\tO\nfrom\tO\tfrom\tO\nbackground\tO\tbackground\tO\n\t\nMinimal\tO\tMinimal\tO\nmemory\tO\tmemory\tO\nfootprint\tO\tfootprint\tO\n\t\nGood\tO\tGood\tO\nperformance\tO\tperformance\tO\n\t\nAbility\tO\tAbility\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmp4\tB-File_Type\tmp4\tO\nfiles\tO\tfiles\tO\nas\tO\tas\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nsource\tO\tsource\tO\n\t\nInterface\tO\tInterface\tO\nBuilder\tO\tBuilder\tO\nsupport\tO\tsupport\tO\n\t\nUsage\tO\tUsage\tO\n\t\nCompressing\tO\tCompressing\tO\nyour\tO\tyour\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nfile\tO\tfile\tO\n\t\nBefore\tO\tBefore\tO\nstarting\tO\tstarting\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nproperly\tO\tproperly\tO\ncompress\tO\tcompress\tO\nvideo\tB-User_Interface_Element\tvideo\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nlibx264\tB-Library\tlibx264\tO\ncompression\tO\tcompression\tO\noptions\tO\toptions\tO\non\tO\ton\tO\nOS\tB-Operating_System\tOS\tO\nX\tI-Operating_System\tX\tO\nsystem\tO\tsystem\tO\nusing\tO\tusing\tO\nffmpeg\tB-Application\tffmpeg\tO\nutility\tO\tutility\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_134667\tI-Code_Block\tGR_134667\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsing\tO\tUsing\tO\nInterface\tO\tInterface\tO\nBuilder\tO\tBuilder\tO\n\t\nJust\tO\tJust\tO\ndrag\tO\tdrag\tO\nthe\tO\tthe\tO\nUIImageView\tB-Library_Class\tUIImageView\tB-Code_Block\nto\tO\tto\tO\nyour\tO\tyour\tO\nUIView\tB-Library_Class\tUIView\tB-Code_Block\nand\tO\tand\tO\nset\tO\tset\tO\nits\tO\tits\tO\nclass\tO\tclass\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAKVideoImageView\tB-Class_Name\tAKVideoImageView\tB-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nAttributes\tO\tAttributes\tO\nInspector\tO\tInspector\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nVideo\tB-User_Interface_Element\tVideo\tB-Code_Block\nFile\tO\tFile\tI-Code_Block\nName\tO\tName\tI-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\n.mp4\tB-File_Type\t.mp4\tB-Code_Block\nvideo\tB-User_Interface_Element\tvideo\tO\nfile\tO\tfile\tO\nwithout\tO\twithout\tO\nextension\tO\textension\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nproject\tO\tproject\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\nis\tO\tis\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nCode\tO\tCode\tO\n\t\nObjective-C\tB-Language\tObjective-C\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_134668\tI-Code_Block\tGR_134668\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSwift\tB-Language\tSwift\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_134669\tI-Code_Block\tGR_134669\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDynamically\tO\tDynamically\tO\nchanging\tO\tchanging\tO\nvideo\tB-User_Interface_Element\tvideo\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_134670\tI-Code_Block\tGR_134670\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nInstallation\tO\tInstallation\tO\n\t\nManually\tO\tManually\tO\n\t\nJust\tO\tJust\tO\nadd\tO\tadd\tO\nAKVideoImageView.h\tB-File_Name\tAKVideoImageView.h\tO\nand\tO\tand\tO\nAKVideoImageView.m\tB-File_Name\tAKVideoImageView.m\tO\nfiles\tO\tfiles\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nCocoaPods\tB-Application\tCocoaPods\tO\n\t\nAdd\tO\tAdd\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nline\tO\tline\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nPodfile\tB-File_Type\tPodfile\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_134671\tI-Code_Block\tGR_134671\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nrun\tO\trun\tO\npod\tB-Code_Block\tpod\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n.\tO\t.\tO\n\t\nLicense\tO\tLicense\tO\n(\tO\t(\tO\nMIT\tB-Licence\tMIT\tO\n)\tO\t)\tO\n\t\nCopyright\tB-Licence\tCopyright\tO\n(\tI-Licence\t(\tO\nc\tI-Licence\tc\tO\n)\tI-Licence\t)\tO\n2017\tB-Licence\t2017\tO\nOleksandr\tI-Licence\tOleksandr\tO\nKirichenko\tI-Licence\tKirichenko\tO\n\t\nPermission\tO\tPermission\tO\nis\tO\tis\tO\nhereby\tO\thereby\tO\ngranted\tO\tgranted\tO\n,\tO\t,\tO\nfree\tO\tfree\tO\nof\tO\tof\tO\ncharge\tO\tcharge\tO\n,\tO\t,\tO\nto\tO\tto\tO\nany\tO\tany\tO\nperson\tO\tperson\tO\nobtaining\tO\tobtaining\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nsoftware\tO\tsoftware\tO\nand\tO\tand\tO\nassociated\tO\tassociated\tO\ndocumentation\tO\tdocumentation\tO\nfiles\tO\tfiles\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nSoftware\tO\tSoftware\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\n,\tO\t,\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSoftware\tO\tSoftware\tO\nwithout\tO\twithout\tO\nrestriction\tO\trestriction\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nwithout\tO\twithout\tO\nlimitation\tO\tlimitation\tO\nthe\tO\tthe\tO\nrights\tO\trights\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\ncopy\tO\tcopy\tO\n,\tO\t,\tO\nmodify\tO\tmodify\tO\n,\tO\t,\tO\nmerge\tO\tmerge\tO\n,\tO\t,\tO\npublish\tO\tpublish\tO\n,\tO\t,\tO\ndistribute\tO\tdistribute\tO\n,\tO\t,\tO\nsublicense\tO\tsublicense\tO\n,\tO\t,\tO\nand/or\tO\tand/or\tO\nsell\tO\tsell\tO\ncopies\tO\tcopies\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nSoftware\tO\tSoftware\tO\n,\tO\t,\tO\nand\tO\tand\tO\nto\tO\tto\tO\npermit\tO\tpermit\tO\npersons\tO\tpersons\tO\nto\tO\tto\tO\nwhom\tO\twhom\tO\nthe\tO\tthe\tO\nSoftware\tO\tSoftware\tO\nis\tO\tis\tO\nfurnished\tO\tfurnished\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n,\tO\t,\tO\nsubject\tO\tsubject\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nconditions\tO\tconditions\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\ncopyright\tO\tcopyright\tO\nnotice\tO\tnotice\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\npermission\tO\tpermission\tO\nnotice\tO\tnotice\tO\nshall\tO\tshall\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nall\tO\tall\tO\ncopies\tO\tcopies\tO\nor\tO\tor\tO\nsubstantial\tO\tsubstantial\tO\nportions\tO\tportions\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nSoftware\tO\tSoftware\tO\n.\tO\t.\tO\n\t\nTHE\tO\tTHE\tO\nSOFTWARE\tO\tSOFTWARE\tO\nIS\tO\tIS\tO\nPROVIDED\tO\tPROVIDED\tO\n\"\tO\t\"\tO\nAS\tO\tAS\tO\nIS\tO\tIS\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nWITHOUT\tO\tWITHOUT\tO\nWARRANTY\tO\tWARRANTY\tO\nOF\tO\tOF\tO\nANY\tO\tANY\tO\nKIND\tO\tKIND\tO\n,\tO\t,\tO\nEXPRESS\tO\tEXPRESS\tO\nOR\tO\tOR\tO\nIMPLIED\tO\tIMPLIED\tO\n,\tO\t,\tO\nINCLUDING\tO\tINCLUDING\tO\nBUT\tO\tBUT\tO\nNOT\tO\tNOT\tO\nLIMITED\tO\tLIMITED\tO\nTO\tO\tTO\tO\nTHE\tO\tTHE\tO\nWARRANTIES\tO\tWARRANTIES\tO\nOF\tO\tOF\tO\nMERCHANTABILITY\tO\tMERCHANTABILITY\tO\n,\tO\t,\tO\nFITNESS\tO\tFITNESS\tO\nFOR\tO\tFOR\tO\nA\tO\tA\tO\nPARTICULAR\tO\tPARTICULAR\tO\nPURPOSE\tO\tPURPOSE\tO\nAND\tO\tAND\tO\nNONINFRINGEMENT\tO\tNONINFRINGEMENT\tO\n.\tO\t.\tO\n\t\nIN\tO\tIN\tO\nNO\tO\tNO\tO\nEVENT\tO\tEVENT\tO\nSHALL\tO\tSHALL\tO\nTHE\tO\tTHE\tO\nAUTHORS\tO\tAUTHORS\tO\nOR\tO\tOR\tO\nCOPYRIGHT\tO\tCOPYRIGHT\tO\nHOLDERS\tO\tHOLDERS\tO\nBE\tO\tBE\tO\nLIABLE\tO\tLIABLE\tO\nFOR\tO\tFOR\tO\nANY\tO\tANY\tO\nCLAIM\tO\tCLAIM\tO\n,\tO\t,\tO\nDAMAGES\tO\tDAMAGES\tO\nOR\tO\tOR\tO\nOTHER\tO\tOTHER\tO\nLIABILITY\tO\tLIABILITY\tO\n,\tO\t,\tO\nWHETHER\tO\tWHETHER\tO\nIN\tO\tIN\tO\nAN\tO\tAN\tO\nACTION\tO\tACTION\tO\nOF\tO\tOF\tO\nCONTRACT\tO\tCONTRACT\tO\n,\tO\t,\tO\nTORT\tO\tTORT\tO\nOR\tO\tOR\tO\nOTHERWISE\tO\tOTHERWISE\tO\n,\tO\t,\tO\nARISING\tO\tARISING\tO\nFROM\tO\tFROM\tO\n,\tO\t,\tO\nOUT\tO\tOUT\tO\nOF\tO\tOF\tO\nOR\tO\tOR\tO\nIN\tO\tIN\tO\nCONNECTION\tO\tCONNECTION\tO\nWITH\tO\tWITH\tO\nTHE\tO\tTHE\tO\nSOFTWARE\tO\tSOFTWARE\tO\nOR\tO\tOR\tO\nTHE\tO\tTHE\tO\nUSE\tO\tUSE\tO\nOR\tO\tOR\tO\nOTHER\tO\tOTHER\tO\nDEALINGS\tO\tDEALINGS\tO\nIN\tO\tIN\tO\nTHE\tO\tTHE\tO\nSOFTWARE\tO\tSOFTWARE\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/2\tO\thttps://github.com/op-jenkins/op-build/issues/2\tO\n\t\nretest\tO\tretest\tO\nthis\tO\tthis\tO\nplease\tO\tplease\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode\tO\thttps://github.com/katzer/cordova-plugin-background-mode\tO\n\t\n\t\nSAMPLE\tO\tSAMPLE\tO\nAPP\tO\tAPP\tO\n:point_right\tO\t:point_right\tO\n:\tO\t:\tO\n\t\nCordova\tB-Library\tCordova\tO\nBackground\tO\tBackground\tO\nPlugin\tO\tPlugin\tO\n\t\nPlugin\tO\tPlugin\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nCordova\tB-Library\tCordova\tO\nframework\tO\tframework\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\ninfinite\tO\tinfinite\tO\nbackground\tO\tbackground\tO\nexecution\tO\texecution\tO\n.\tO\t.\tO\n\t\nMost\tO\tMost\tO\nmobile\tB-Device\tmobile\tO\noperating\tO\toperating\tO\nsystems\tO\tsystems\tO\nare\tO\tare\tO\nmultitasking\tO\tmultitasking\tO\ncapable\tO\tcapable\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmost\tO\tmost\tO\napps\tO\tapps\tO\ndont\tO\tdont\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nwhile\tO\twhile\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\npresent\tO\tpresent\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nTherefore\tO\tTherefore\tO\nthey\tO\tthey\tO\npause\tO\tpause\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\nmode\tO\tmode\tO\nand\tO\tand\tO\nresume\tO\tresume\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nbefore\tO\tbefore\tO\nswitching\tO\tswitching\tO\nto\tO\tto\tO\nforeground\tO\tforeground\tO\nmode\tO\tmode\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsystem\tO\tsystem\tO\nkeeps\tO\tkeeps\tO\nall\tO\tall\tO\nnetwork\tO\tnetwork\tO\nconnections\tO\tconnections\tO\nopen\tO\topen\tO\nwhile\tO\twhile\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ndeliver\tO\tdeliver\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nresumes\tO\tresumes\tO\n.\tO\t.\tO\n\t\nStore\tO\tStore\tO\nCompliance\tO\tCompliance\tO\n\t\nInfinite\tO\tInfinite\tO\nbackground\tO\tbackground\tO\ntasks\tO\ttasks\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nofficial\tO\tofficial\tO\nsupported\tO\tsupported\tO\non\tO\ton\tO\nmost\tO\tmost\tO\nmobile\tB-Device\tmobile\tO\noperation\tO\toperation\tO\nsystems\tO\tsystems\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\nnot\tO\tnot\tO\ncompliant\tO\tcompliant\tO\nwith\tO\twith\tO\npublic\tO\tpublic\tO\nstore\tO\tstore\tO\nvendors\tO\tvendors\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nsuccessful\tO\tsuccessful\tO\nsubmssion\tO\tsubmssion\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\ngaranteed\tO\tgaranteed\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nrisk\tO\trisk\tO\n!\tO\t!\tO\n\t\nSupported\tO\tSupported\tO\nPlatforms\tO\tPlatforms\tO\n\t\nAndroid/Amazon\tB-Operating_System\tAndroid/Amazon\tO\nFireOS\tI-Operating_System\tFireOS\tO\n\t\nBrowser\tB-Application\tBrowser\tO\n\t\niOS\tB-Operating_System\tiOS\tO\n\t\nWindows\tB-Operating_System\tWindows\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\n#222\tO\t#222\tO\n)\tO\t)\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nThe\tO\tThe\tO\nplugin\tO\tplugin\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ninstalled\tO\tinstalled\tO\nvia\tO\tvia\tO\nCordova-CLI\tB-Application\tCordova-CLI\tO\nand\tO\tand\tO\nis\tO\tis\tO\npublicly\tO\tpublicly\tO\navailable\tO\tavailable\tO\non\tO\ton\tO\nNPM\tB-Application\tNPM\tO\n.\tO\t.\tO\n\t\nExecute\tO\tExecute\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nprojects\tO\tprojects\tO\nroot\tO\troot\tO\nfolder\tO\tfolder\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7223\tI-Code_Block\tGR_7223\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\ninstall\tO\tinstall\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7224\tI-Code_Block\tGR_7224\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nhead\tO\thead\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7225\tI-Code_Block\tGR_7225\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\ninstall\tO\tinstall\tO\nfrom\tO\tfrom\tO\nlocal\tO\tlocal\tO\nsource\tO\tsource\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7226\tI-Code_Block\tGR_7226\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsage\tO\tUsage\tO\n\t\nThe\tO\tThe\tO\nplugin\tO\tplugin\tO\ncreates\tO\tcreates\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\ncordova.plugins.backgroundMode\tB-Library_Class\tcordova.plugins.backgroundMode\tB-Code_Block\nand\tO\tand\tO\nis\tO\tis\tO\naccessible\tO\taccessible\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\ndeviceready\tO\tdeviceready\tO\nevent\tO\tevent\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nfired\tO\tfired\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7227\tI-Code_Block\tGR_7227\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEnable\tO\tEnable\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nmode\tO\tmode\tO\n\t\nThe\tO\tThe\tO\nplugin\tO\tplugin\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nenabled\tO\tenabled\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nenabled\tO\tenabled\tO\nthe\tO\tthe\tO\nmode\tO\tmode\tO\nbecomes\tO\tbecomes\tO\nactive\tO\tactive\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nmoves\tO\tmoves\tO\nto\tO\tto\tO\nbackground\tO\tbackground\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7228\tI-Code_Block\tGR_7228\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\ndisable\tO\tdisable\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nmode\tO\tmode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7229\tI-Code_Block\tGR_7229\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCheck\tO\tCheck\tO\nif\tO\tif\tO\nrunning\tO\trunning\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nenabled\tO\tenabled\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nhas\tO\thas\tO\nentered\tO\tentered\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nmode\tO\tmode\tO\nbecomes\tO\tbecomes\tO\nactive\tO\tactive\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7230\tI-Code_Block\tGR_7230\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nA\tO\tA\tO\nnon-active\tO\tnon-active\tO\nmode\tO\tmode\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nin\tO\tin\tO\nforeground\tO\tforeground\tO\n.\tO\t.\tO\n\t\nListen\tO\tListen\tO\nfor\tO\tfor\tO\nevents\tO\tevents\tO\n\t\nThe\tO\tThe\tO\nplugin\tO\tplugin\tO\nfires\tO\tfires\tO\nan\tO\tan\tO\nevent\tO\tevent\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nits\tO\tits\tO\nstatus\tO\tstatus\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nchanged\tO\tchanged\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nevents\tO\tevents\tO\nare\tO\tare\tO\nenable\tB-Code_Block\tenable\tB-Code_Block\n,\tO\t,\tO\ndisable\tB-Code_Block\tdisable\tB-Code_Block\n,\tO\t,\tO\nactivate\tB-Code_Block\tactivate\tB-Code_Block\n,\tO\t,\tO\ndeactivate\tB-Code_Block\tdeactivate\tB-Code_Block\nand\tO\tand\tO\nfailure\tB-Code_Block\tfailure\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7231\tI-Code_Block\tGR_7231\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nremove\tO\tremove\tO\nan\tO\tan\tO\nevent\tO\tevent\tO\nlisteners\tO\tlisteners\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7232\tI-Code_Block\tGR_7232\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAndroid\tB-Operating_System\tAndroid\tO\nspecifics\tO\tspecifics\tO\n\t\nTransit\tO\tTransit\tO\nbetween\tO\tbetween\tO\napplication\tO\tapplication\tO\nstates\tO\tstates\tO\n\t\nAndroid\tB-Operating_System\tAndroid\tO\nallows\tO\tallows\tO\nto\tO\tto\tO\nprogrammatically\tO\tprogrammatically\tO\nmove\tO\tmove\tO\nfrom\tO\tfrom\tO\nforeground\tO\tforeground\tO\nto\tO\tto\tO\nbackground\tO\tbackground\tO\nor\tO\tor\tO\nvice\tO\tvice\tO\nversa\tO\tversa\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7233\tI-Code_Block\tGR_7233\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBack\tO\tBack\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n\t\nOverride\tO\tOverride\tO\nthe\tO\tthe\tO\nback\tO\tback\tO\nbutton\tB-User_Interface_Element\tbutton\tO\non\tO\ton\tO\nAndroid\tB-Operating_System\tAndroid\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nbackground\tO\tbackground\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nclosing\tO\tclosing\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7234\tI-Code_Block\tGR_7234\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRecent\tO\tRecent\tO\ntask\tO\ttask\tO\nlist\tO\tlist\tO\n\t\nExclude\tO\tExclude\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nrecent\tO\trecent\tO\ntask\tO\ttask\tO\nlist\tO\tlist\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nAndroid\tB-Operating_System\tAndroid\tO\n5.0\tB-Version\t5.0\tO\n+\tI-Version\t+\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7235\tI-Code_Block\tGR_7235\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDetect\tO\tDetect\tO\nscreen\tO\tscreen\tO\nstatus\tO\tstatus\tO\n\t\nThe\tO\tThe\tO\nmethod\tO\tmethod\tO\nworks\tO\tworks\tO\nasync\tB-Library_Function\tasync\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nisActive()\tB-Library_Function\tisActive()\tO\nor\tO\tor\tO\nisEnabled()\tB-Library_Function\tisEnabled()\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7236\tI-Code_Block\tGR_7236\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUnlock\tB-Library_Function\tUnlock\tO\nand\tO\tand\tO\nwake-up\tB-Library_Function\twake-up\tO\n\t\nA\tO\tA\tO\nwake-up\tB-Library_Function\twake-up\tO\nturns\tO\tturns\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nscreen\tB-Device\tscreen\tO\nwhile\tO\twhile\tO\nunlocking\tB-Library_Function\tunlocking\tO\nmoves\tO\tmoves\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nforeground\tO\tforeground\tO\neven\tO\teven\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\nis\tO\tis\tO\nlocked\tO\tlocked\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7237\tI-Code_Block\tGR_7237\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNotification\tO\tNotification\tO\n\t\nTo\tO\tTo\tO\nindicate\tO\tindicate\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nexecuting\tO\texecuting\tO\ntasks\tO\ttasks\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\nand\tO\tand\tO\nbeing\tO\tbeing\tO\npaused\tO\tpaused\tO\nwould\tO\twould\tO\ndisrupt\tO\tdisrupt\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nplug-in\tO\tplug-in\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\nwhile\tO\twhile\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\n-\tO\t-\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ndownload\tO\tdownload\tO\nprogress\tO\tprogress\tO\nbar\tO\tbar\tO\n.\tO\t.\tO\n\t\nOverride\tO\tOverride\tO\ndefaults\tO\tdefaults\tO\n\t\nThe\tO\tThe\tO\ntitle\tO\ttitle\tO\n,\tO\t,\tO\ntext\tB-User_Interface_Element\ttext\tO\nand\tO\tand\tO\nicon\tB-User_Interface_Element\ticon\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nnotification\tO\tnotification\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncustomized\tO\tcustomized\tO\nas\tO\tas\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nwill\tO\twill\tO\ncome\tO\tcome\tO\nto\tO\tto\tO\nforeground\tO\tforeground\tO\nwhen\tO\twhen\tO\ntapping\tO\ttapping\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nnotification\tO\tnotification\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nchanged\tO\tchanged\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nresume\tB-Library_Variable\tresume\tO\nto\tO\tto\tO\nfalse\tO\tfalse\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nAndroid\tB-Operating_System\tAndroid\tO\n5.0\tB-Version\t5.0\tO\n+\tI-Version\t+\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncolor\tO\tcolor\tO\noption\tO\toption\tO\nwill\tO\twill\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\ncolor\tO\tcolor\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnotification\tO\tnotification\tO\ncircle\tO\tcircle\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\non\tO\ton\tO\nAndroid\tB-Operating_System\tAndroid\tO\n5.0\tB-Version\t5.0\tO\n+\tI-Version\t+\tO\n,\tO\t,\tO\nsetting\tO\tsetting\tO\nhidden\tB-Library_Variable\thidden\tO\nto\tO\tto\tO\nfalse\tO\tfalse\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nnotification\tO\tnotification\tO\nvisible\tO\tvisible\tO\non\tO\ton\tO\nlockscreen\tB-User_Interface_Element\tlockscreen\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7238\tI-Code_Block\tGR_7238\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\ndisplayed\tO\tdisplayed\tO\nnotification\tO\tnotification\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7239\tI-Code_Block\tGR_7239\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nAll\tO\tAll\tO\nproperties\tO\tproperties\tO\nare\tO\tare\tO\noptional\tO\toptional\tO\n-\tO\t-\tO\nonly\tO\tonly\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\nthings\tO\tthings\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\nwithout\tO\twithout\tO\nnotification\tO\tnotification\tO\n\t\nIn\tO\tIn\tO\nsilent\tO\tsilent\tO\nmode\tO\tmode\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\ndisplay\tO\tdisplay\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\n-\tO\t-\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nBe\tO\tBe\tO\naware\tO\taware\tO\nthat\tO\tthat\tO\nAndroid\tB-Operating_System\tAndroid\tO\nrecommends\tO\trecommends\tO\nadding\tO\tadding\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\notherwise\tO\totherwise\tO\nthe\tO\tthe\tO\nOS\tO\tOS\tO\nmay\tO\tmay\tO\npause\tO\tpause\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7240\tI-Code_Block\tGR_7240\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuirks\tO\tQuirks\tO\n\t\nVarious\tO\tVarious\tO\nAPIs\tB-Library\tAPIs\tO\nlike\tO\tlike\tO\nplaying\tO\tplaying\tO\nmedia\tO\tmedia\tO\nor\tO\tor\tO\ntracking\tO\ttracking\tO\nGPS\tO\tGPS\tO\nposition\tO\tposition\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwhile\tO\twhile\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\neven\tO\teven\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nmode\tO\tmode\tO\nis\tO\tis\tO\nactive\tO\tactive\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nfix\tO\tfix\tO\nsuch\tO\tsuch\tO\nissues\tO\tissues\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\ndisable\tO\tdisable\tO\nmost\tO\tmost\tO\noptimizations\tO\toptimizations\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nAndroid/CrossWalk\tB-Operating_System\tAndroid/CrossWalk\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7241\tI-Code_Block\tGR_7241\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nCalling\tO\tCalling\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nled\tO\tled\tO\nto\tO\tto\tO\nincreased\tO\tincreased\tO\nresource\tO\tresource\tO\nand\tO\tand\tO\npower\tO\tpower\tO\nconsumption\tO\tconsumption\tO\n.\tO\t.\tO\n\t\nContributing\tO\tContributing\tO\n\t\nFork\tO\tFork\tO\nit\tO\tit\tO\n\t\nCreate\tO\tCreate\tO\nyour\tO\tyour\tO\nfeature\tO\tfeature\tO\nbranch\tO\tbranch\tO\n(\tO\t(\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\ncheckout\tI-Code_Block\tcheckout\tI-Code_Block\n-b\tI-Code_Block\t-b\tI-Code_Block\nmy-new-feature\tI-Code_Block\tmy-new-feature\tI-Code_Block\n)\tO\t)\tO\n\t\nCommit\tO\tCommit\tO\nyour\tO\tyour\tO\nchanges\tO\tchanges\tO\n(\tO\t(\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\ncommit\tI-Code_Block\tcommit\tI-Code_Block\n-am\tI-Code_Block\t-am\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\nAdd\tI-Code_Block\tAdd\tI-Code_Block\nsome\tI-Code_Block\tsome\tI-Code_Block\nfeature'\tI-Code_Block\tfeature'\tI-Code_Block\n)\tO\t)\tO\n\t\nPush\tO\tPush\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbranch\tO\tbranch\tO\n(\tO\t(\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\npush\tI-Code_Block\tpush\tI-Code_Block\norigin\tI-Code_Block\torigin\tI-Code_Block\nmy-new-feature\tI-Code_Block\tmy-new-feature\tI-Code_Block\n)\tO\t)\tO\n\t\nCreate\tO\tCreate\tO\nnew\tO\tnew\tO\nPull\tO\tPull\tO\nRequest\tO\tRequest\tO\n\t\nLicense\tO\tLicense\tO\n\t\nThis\tO\tThis\tO\nsoftware\tO\tsoftware\tO\nis\tO\tis\tO\nreleased\tO\treleased\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nApache\tB-Licence\tApache\tO\n2.0\tB-Version\t2.0\tO\nLicense\tO\tLicense\tO\n.\tO\t.\tO\n\t\nMade\tO\tMade\tO\nwith\tO\twith\tO\n:yum\tO\t:yum\tO\n:\tO\t:\tO\nfrom\tO\tfrom\tO\nLeipzig\tO\tLeipzig\tO\n\t\n?\tO\t?\tO\n\t\n2017\tO\t2017\tO\nappPlant\tB-Organization\tappPlant\tO\nGmbH\tI-Organization\tGmbH\tO\n&\tO\t&\tO\nmeshfields\tB-Organization\tmeshfields\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnerab/TaskWarriorMail\tO\tnerab/TaskWarriorMail\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/nerab/TaskWarriorMail/issues/3\tO\thttps://github.com/nerab/TaskWarriorMail/issues/3\tO\n\t\nHello\tO\tHello\tO\nthere\tO\tthere\tO\n!\tO\t!\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nsharing\tO\tsharing\tO\nyour\tO\tyour\tO\nawesome\tO\tawesome\tO\nplugin\tO\tplugin\tO\n.\tO\t.\tO\n\t\nDue\tO\tDue\tO\nto\tO\tto\tO\nenvironment\tO\tenvironment\tO\nrequirements\tO\trequirements\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nbounded\tO\tbounded\tO\nto\tO\tto\tO\nWindows\tB-Operating_System\tWindows\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nCygwin\tB-Application\tCygwin\tO\n,\tO\t,\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nterminal\tO\tterminal\tO\nemulator\tO\temulator\tO\nwith\tO\twith\tO\nPOSIX-environment\tO\tPOSIX-environment\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\ngem\tB-Code_Block\tgem\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\ntwmail\tI-Code_Block\ttwmail\tI-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_27437\tI-Code_Block\tGR_27437\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nidea\tO\tidea\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nis\tO\tis\tO\noccuring\tO\toccuring\tO\nwith\tO\twith\tO\ntwmail\tB-Application\ttwmail\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/13\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/13\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\narcore\tB-Application\tarcore\tO\nplugin\tI-Application\tplugin\tO\nin\tO\tin\tO\nunreal\tB-Application\tunreal\tO\nengine\tI-Application\tengine\tO\n4\tB-Version\t4\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nyour\tO\tyour\tO\nquickstart\tO\tquickstart\tO\nguide\tO\tguide\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\narcore\tB-Application\tarcore\tO\nv1.0\tB-Version\tv1.0\tO\nin\tO\tin\tO\nue4.18\tB-Application\tue4.18\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nOK\tO\tOK\tO\nwith\tO\twith\tO\neverithing\tO\teverithing\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\narcore\tB-Application\tarcore\tO\nv1.1\tB-Version\tv1.1\tO\nin\tO\tin\tO\nue4.19\tB-Application\tue4.19\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\narcore\tB-Application\tarcore\tO\nv1.1\tB-Version\tv1.1\tO\nin\tO\tin\tO\nue4.19\tB-Application\tue4.19\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\non\tO\ton\tO\nsamsung\tB-Device\tsamsung\tO\ns7e\tI-Device\ts7e\tO\nsm-g935fd\tB-Version\tsm-g935fd\tO\n\t\nLog.txt\tB-File_Name\tLog.txt\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/7\tO\thttps://github.com/svenstaro/flamejam/issues/7\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\ntake\tO\ttake\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nHas\tO\tHas\tO\nanyone\tO\tanyone\tO\nsigned\tO\tsigned\tO\nup\tO\tup\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nreCAPTCHA\tO\treCAPTCHA\tO\nkey\tO\tkey\tO\nyet\tO\tyet\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam\tO\thttps://github.com/svenstaro/flamejam\tO\n\t\nflamejam\tB-Application\tflamejam\tO\n-\tO\t-\tO\na\tO\ta\tO\ngame\tO\tgame\tO\njam\tO\tjam\tO\napplication\tO\tapplication\tO\nusing\tO\tusing\tO\nFlask\tB-Library\tFlask\tO\n\t\nDescription\tO\tDescription\tO\n\t\nflamejam\tB-Application\tflamejam\tO\nis\tO\tis\tO\na\tO\ta\tO\ngeneric\tO\tgeneric\tO\ngame\tO\tgame\tO\njam\tO\tjam\tO\napplication\tO\tapplication\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nFlask\tB-Library\tFlask\tO\nmicroframework\tO\tmicroframework\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwas\tO\twas\tO\ninitially\tO\tinitially\tO\ncreated\tO\tcreated\tO\nas\tO\tas\tO\na\tO\ta\tO\nvoting\tO\tvoting\tO\nplatforms\tO\tplatforms\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nBaconGameJam\tO\tBaconGameJam\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\ngeneric\tO\tgeneric\tO\nand\tO\tand\tO\nas\tO\tas\tO\nsuch\tO\tsuch\tO\nit\tO\tit\tO\nis\tO\tis\tO\nusable\tO\tusable\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nother\tO\tother\tO\ngame\tO\tgame\tO\njam\tO\tjam\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\napplication\tO\tapplication\tO\nis\tO\tis\tO\ndesigned\tO\tdesigned\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nparticipants\tO\tparticipants\tO\nvote\tO\tvote\tO\non\tO\ton\tO\nother\tO\tother\tO\nentries\tO\tentries\tO\nfairly\tO\tfairly\tO\nand\tO\tand\tO\nevenly\tO\tevenly\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ncurrently\tO\tcurrently\tO\nexpected\tO\texpected\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nPOSIX\tO\tPOSIX\tO\nsystem\tO\tsystem\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nLinux\tB-Operating_System\tLinux\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nsoftware\tO\tsoftware\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nbeen\tO\tbeen\tO\ntested\tO\ttested\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nwonder\tO\twonder\tO\nindeed\tO\tindeed\tO\nif\tO\tif\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ninstallation\tO\tinstallation\tO\nshould\tO\tshould\tO\ngenerally\tO\tgenerally\tO\nbe\tO\tbe\tO\nrather\tO\trather\tO\nsimple\tO\tsimple\tO\nprovided\tO\tprovided\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nvirtualenv\tB-Application\tvirtualenv\tO\nand\tO\tand\tO\npip\tB-Application\tpip\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nPATH\tB-Library_Variable\tPATH\tO\n.\tO\t.\tO\n\t\nShould\tO\tShould\tO\nthat\tO\tthat\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nas\tO\tas\tO\nsimple\tO\tsimple\tO\nas\tO\tas\tO\nrunning\tO\trunning\tO\n\t\n#\tB-Code_Block\t#\tB-Code_Block\nmake\tI-Code_Block\tmake\tI-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n\t\nTrue\tO\tTrue\tO\nenough\tO\tenough\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\nsoftware\tO\tsoftware\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nsystem\tO\tsystem\tO\nand\tO\tand\tO\nset\tO\tset\tO\nup\tO\tup\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ndependencies\tO\tdependencies\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\na\tO\ta\tO\nvirtualenv\tB-Application\tvirtualenv\tO\n.\tO\t.\tO\n\t\nShould\tO\tShould\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nto\tO\tto\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nroot\tO\troot\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n\t\n#\tB-Code_Block\t#\tB-Code_Block\nmake\tI-Code_Block\tmake\tI-Code_Block\nDESTDIR\tI-Code_Block\tDESTDIR\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n/some/else\tI-Code_Block\t/some/else\tI-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n\t\nCopy\tO\tCopy\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nconfig\tO\tconfig\tO\nfrom\tO\tfrom\tO\n/usr/share/doc/flamejam/flamejam.cfg.default\tB-File_Name\t/usr/share/doc/flamejam/flamejam.cfg.default\tB-Code_Block\nto\tO\tto\tO\n\t\n/etc/flamejam/flamejam.cfg\tB-File_Name\t/etc/flamejam/flamejam.cfg\tB-Code_Block\nand\tO\tand\tO\nconfigure\tO\tconfigure\tO\nit\tO\tit\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nneeds\tO\tneeds\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nnot\tO\tnot\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\nset\tO\tset\tO\npermissions\tO\tpermissions\tO\naccordingly\tO\taccordingly\tO\nas\tO\tas\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\ncontains\tO\tcontains\tO\ncleartext\tO\tcleartext\tO\npasswords\tO\tpasswords\tO\n.\tO\t.\tO\n\t\nCopy\tO\tCopy\tO\nthe\tO\tthe\tO\ncron\tB-File_Type\tcron\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\n/usr/share/doc/flamejam/flamejam.cron.d\tB-File_Name\t/usr/share/doc/flamejam/flamejam.cron.d\tB-Code_Block\nto\tO\tto\tO\n/etc/cron.d/flamejam\tB-File_Name\t/etc/cron.d/flamejam\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncronjob\tO\tcronjob\tO\nwill\tO\twill\tO\ntick\tO\ttick\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\nevery\tO\tevery\tO\nminute\tO\tminute\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nout\tO\tout\tO\nannouncements\tO\tannouncements\tO\non\tO\ton\tO\ntime\tO\ttime\tO\nif\tO\tif\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nConfigure\tO\tConfigure\tO\nyour\tO\tyour\tO\nwebserver\tB-Application\twebserver\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nApache\tB-Application\tApache\tO\nwith\tO\twith\tO\nmod_wsgi\tB-Application\tmod_wsgi\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nprovided\tO\tprovided\tO\nexample\tO\texample\tO\nvirtualhost\tO\tvirtualhost\tO\n/usr/share/doc/flamejam/apache\tB-File_Name\t/usr/share/doc/flamejam/apache\tB-Code_Block\n-vhost.conf\tI-File_Name\t-vhost.conf\tI-Code_Block\n.\tO\t.\tO\n\t\nInitialize\tO\tInitialize\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nusing\tO\tusing\tO\neither\tO\teither\tO\ntest\tO\ttest\tO\ndata\tO\tdata\tO\nor\tO\tor\tO\nan\tO\tan\tO\nadmin\tO\tadmin\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\neither\tO\teither\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprovided\tO\tprovided\tO\nscripts\tO\tscripts\tO\nin\tO\tin\tO\n/srv/flamejam/scripts/init\tB-File_Name\t/srv/flamejam/scripts/init\tB-Code_Block\n-db.py\tI-File_Name\t-db.py\tI-Code_Block\nor\tO\tor\tO\n\t\n/srv/flamejam/scripts/seed\tB-File_Name\t/srv/flamejam/scripts/seed\tB-Code_Block\n-db.py\tI-File_Name\t-db.py\tI-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\ninit-db.py\tB-File_Name\tinit-db.py\tB-Code_Block\non\tO\ton\tO\na\tO\ta\tO\nproduction\tO\tproduction\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nvirtualenv\tB-Application\tvirtualenv\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\n$\tB-Code_Block\t$\tB-Code_Block\nCONFIG_TYPE\tI-Code_Block\tCONFIG_TYPE\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nproduction\tI-Code_Block\tproduction\tI-Code_Block\npython\tI-Code_Block\tpython\tI-Code_Block\nscripts/init\tI-Code_Block\tscripts/init\tI-Code_Block\n-db.py\tI-Code_Block\t-db.py\tI-Code_Block\n<username>\tI-Code_Block\t<username>\tI-Code_Block\n<password>\tI-Code_Block\t<password>\tI-Code_Block\n<email>\tI-Code_Block\t<email>\tI-Code_Block\n\t\nDevelopment\tO\tDevelopment\tO\n\t\nFor\tO\tFor\tO\ndevelopment\tO\tdevelopment\tO\nand\tO\tand\tO\ntesting\tO\ttesting\tO\n,\tO\t,\tO\nfirstly\tO\tfirstly\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\nvirtualenv\tB-Application\tvirtualenv\tO\ncontaining\tO\tcontaining\tO\nall\tO\tall\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nyour\tO\tyour\tO\nconvenience\tO\tconvenience\tO\n,\tO\t,\tO\na\tO\ta\tO\nMakefile\tB-File_Name\tMakefile\tO\ntarget\tO\ttarget\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nprovided\tO\tprovided\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nmake\tB-Code_Block\tmake\tB-Code_Block\nsetup\tI-Code_Block\tsetup\tI-Code_Block\nto\tO\tto\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nset\tO\tset\tO\nup\tO\tup\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\n,\tO\t,\tO\nrun\tO\trun\tO\npython\tB-Code_Block\tpython\tB-Code_Block\nrunserver.py\tI-Code_Block\trunserver.py\tI-Code_Block\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nvirtualenv\tB-Application\tvirtualenv\tO\nto\tO\tto\tO\nfire\tO\tfire\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\ndebug\tO\tdebug\tO\nserver\tB-Application\tserver\tO\nand\tO\tand\tO\nnavigate\tO\tnavigate\tO\nto\tO\tto\tO\nhttp://localhost:5000\tO\thttp://localhost:5000\tO\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nmake\tB-Code_Block\tmake\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\n.\tO\t.\tO\n\t\nSupport\tO\tSupport\tO\nand\tO\tand\tO\ncontact\tO\tcontact\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nreceive\tO\treceive\tO\nhelp\tO\thelp\tO\nin\tO\tin\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\napplication\tO\tapplication\tO\nto\tO\tto\tO\nrun\tO\trun\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nask\tO\task\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nIRC\tO\tIRC\tO\nchannel\tO\tchannel\tO\n:\tO\t:\tO\n#bacongamejam\tO\t#bacongamejam\tO\non\tO\ton\tO\nirc.freenode.net\tO\tirc.freenode.net\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nreport\tO\treport\tO\nbugs\tO\tbugs\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nGithub\tB-Website\tGithub\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nwe\tO\twe\tO\nwill\tO\twill\tO\nsurely\tO\tsurely\tO\ncome\tO\tcome\tO\nback\tO\tback\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nPull\tO\tPull\tO\nrequest\tO\trequest\tO\nare\tO\tare\tO\nrather\tO\trather\tO\nwelcome\tO\twelcome\tO\n.\tO\t.\tO\n\t\nLicense\tO\tLicense\tO\n\t\nThis\tO\tThis\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nall\tO\tall\tO\nof\tO\tof\tO\nits\tO\tits\tO\nsources\tO\tsources\tO\nand\tO\tand\tO\nresources\tO\tresources\tO\nare\tO\tare\tO\nlicensed\tO\tlicensed\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nzlib\tB-Licence\tzlib\tO\nlicense\tI-Licence\tlicense\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nexceptions\tO\texceptions\tO\n:\tO\t:\tO\n\t\njquery\tB-Library\tjquery\tO\n\t\nlightbox\tB-Language\tlightbox\tO\n\t\nbootstrap\tB-Library\tbootstrap\tO\n\t\nThese\tO\tThese\tO\nexceptions\tO\texceptions\tO\nare\tO\tare\tO\nsubject\tO\tsubject\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\nown\tO\town\tO\ncopyrights\tO\tcopyrights\tO\nand\tO\tand\tO\nlicenses\tO\tlicenses\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nproject\tO\tproject\tO\nonly\tO\tonly\tO\nmakes\tO\tmakes\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nlicense\tO\tlicense\tO\ntext\tO\ttext\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nincluded\tO\tincluded\tO\nLICENSE\tB-File_Name\tLICENSE\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nm1k3/csv_base\tO\tm1k3/csv_base\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/m1k3/csv_base\tO\thttps://github.com/m1k3/csv_base\tO\n\t\nCsvBase\tB-Application\tCsvBase\tO\n\t\nA\tO\tA\tO\nfew\tO\tfew\tO\nutility\tO\tutility\tO\nmodules\tO\tmodules\tO\nthat\tO\tthat\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nexporting\tO\texporting\tO\ncsv\tB-File_Type\tcsv\tO\nusing\tO\tusing\tO\nPostgresql\tB-Application\tPostgresql\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nAdd\tO\tAdd\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n's\tO\t's\tO\nGemfile\tB-File_Type\tGemfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_169843\tI-Code_Block\tGR_169843\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nexecute\tO\texecute\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_169844\tI-Code_Block\tGR_169844\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\nyourself\tO\tyourself\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_169845\tI-Code_Block\tGR_169845\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsage\tO\tUsage\tO\n\t\nTODO\tO\tTODO\tO\n:\tO\t:\tO\nWrite\tO\tWrite\tO\nusage\tO\tusage\tO\ninstructions\tO\tinstructions\tO\nhere\tO\there\tO\n\t\nContributing\tO\tContributing\tO\n\t\nFork\tO\tFork\tO\nit\tO\tit\tO\n(\tO\t(\tO\nhttps://github.com/[my-github-username]/csv_base/fork\tO\thttps://github.com/[my-github-username]/csv_base/fork\tO\n)\tO\t)\tO\n\t\nCreate\tO\tCreate\tO\nyour\tO\tyour\tO\nfeature\tO\tfeature\tO\nbranch\tO\tbranch\tO\n(\tO\t(\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\ncheckout\tI-Code_Block\tcheckout\tI-Code_Block\n-b\tI-Code_Block\t-b\tI-Code_Block\nmy-new-feature\tI-Code_Block\tmy-new-feature\tI-Code_Block\n)\tO\t)\tO\n\t\nCommit\tO\tCommit\tO\nyour\tO\tyour\tO\nchanges\tO\tchanges\tO\n(\tO\t(\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\ncommit\tI-Code_Block\tcommit\tI-Code_Block\n-am\tI-Code_Block\t-am\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\nAdd\tI-Code_Block\tAdd\tI-Code_Block\nsome\tI-Code_Block\tsome\tI-Code_Block\nfeature'\tI-Code_Block\tfeature'\tI-Code_Block\n)\tO\t)\tO\n\t\nPush\tO\tPush\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbranch\tO\tbranch\tO\n(\tO\t(\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\npush\tI-Code_Block\tpush\tI-Code_Block\norigin\tI-Code_Block\torigin\tI-Code_Block\nmy-new-feature\tI-Code_Block\tmy-new-feature\tI-Code_Block\n)\tO\t)\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nPull\tO\tPull\tO\nRequest\tO\tRequest\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/23\tO\thttps://github.com/smirarab/pasta/issues/23\tO\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\nsome\tO\tsome\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\ncaused\tO\tcaused\tO\nthe\tO\tthe\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nrevert\tO\trevert\tO\nto\tO\tto\tO\na\tO\ta\tO\nprevious\tO\tprevious\tO\ncommit\tO\tcommit\tO\nbut\tO\tbut\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nrepository\tO\trepository\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmanually\tO\tmanually\tO\nremoved\tO\tremoved\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncommit\tO\tcommit\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nconflicts\tO\tconflicts\tO\nthat\tO\tthat\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nresolved\tO\tresolved\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/26\tO\thttps://github.com/smirarab/pasta/issues/26\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nMST\tO\tMST\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ndecomposition\tO\tdecomposition\tO\nuse\tO\tuse\tO\nprint\tO\tprint\tO\n.\tO\t.\tO\n\t\nAvoid\tO\tAvoid\tO\nusing\tO\tusing\tO\nprint\tO\tprint\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nlogging\tO\tlogging\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nuse\tO\tuse\tO\ninfo\tO\tinfo\tO\nfor\tO\tfor\tO\ncrucial\tO\tcrucial\tO\ninformation\tO\tinformation\tO\nand\tO\tand\tO\ndebug\tO\tdebug\tO\nfor\tO\tfor\tO\neverything\tO\teverything\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/26\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/26\tO\n\t\nWhen\tO\tWhen\tO\nchecking\tO\tchecking\tO\ndevice\tO\tdevice\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\narcore\tB-Application\tarcore\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nSupportedNotInstalled\tB-Error_Name\tSupportedNotInstalled\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nUnsupportedDeviceNotCapable\tB-Error_Name\tUnsupportedDeviceNotCapable\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoso/flexgrid\tO\tmoso/flexgrid\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moso/flexgrid/issues/4\tO\thttps://github.com/moso/flexgrid/issues/4\tO\n\t\nTo\tO\tTo\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\ncontainers\tO\tcontainers\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\n\"\tO\t\"\tO\noverspill\tO\toverspill\tO\n\"\tO\t\"\tO\ntheir\tO\ttheir\tO\nparent\tO\tparent\tO\ncontainer\tO\tcontainer\tO\n,\tO\t,\tO\n.container\tB-Class_Name\t.container\tB-Code_Block\nand\tO\tand\tO\n.container-fluid\tB-Class_Name\t.container-fluid\tB-Code_Block\nneeds\tO\tneeds\tO\nmax-width\tB-Code_Block\tmax-width\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n100%\tI-Code_Block\t100%\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nto\tO\tto\tO\nbegin\tO\tbegin\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nHackClub-SLHS/HackClub\tO\tHackClub-SLHS/HackClub\tO\n-Website\tO\t-Website\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/HackClub-SLHS/HackClub-Website/issues/15\tO\thttps://github.com/HackClub-SLHS/HackClub-Website/issues/15\tO\n\t\na\tO\ta\tO\nmore\tO\tmore\tO\nwelcoming\tO\twelcoming\tO\nfront\tO\tfront\tO\npage\tB-User_Interface_Element\tpage\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\nmore\tO\tmore\tO\ncontent\tO\tcontent\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njamstooks/django\tO\tjamstooks/django\tO\n-acme-challenge\tO\t-acme-challenge\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jamstooks/django-acme-challenge/issues/2\tO\thttps://github.com/jamstooks/django-acme-challenge/issues/2\tO\n\t\nGood\tO\tGood\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\n@flavoi\tB-User_Name\t@flavoi\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nup\tO\tup\tO\non\tO\ton\tO\nPyPI\tB-Library\tPyPI\tO\nnow\tO\tnow\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nReadMe\tB-File_Name\tReadMe\tO\nreflects\tO\treflects\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ninstall\tO\tinstall\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/35\tO\thttps://github.com/rpcope1/Hantek6022API/issues/35\tO\n\t\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nsharing\tO\tsharing\tO\nthe\tO\tthe\tO\napi\tB-Library\tapi\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ngather\tO\tgather\tO\ndata\tO\tdata\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nlonger\tO\tlonger\tO\nperiod\tO\tperiod\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nplayed\tO\tplayed\tO\naround\tO\taround\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncontinuous\tO\tcontinuous\tO\nread\tO\tread\tO\nscript\tO\tscript\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nquestions\tO\tquestions\tO\n.\tO\t.\tO\n\t\nsample_rate_index\tB-Code_Block\tsample_rate_index\tO\n=\tI-Code_Block\t=\tO\n0x1E\tI-Code_Block\t0x1E\tO\nWhat\tO\tWhat\tO\ndoes\tO\tdoes\tO\n0x1E\tO\t0x1E\tO\nstand\tO\tstand\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndictionary\tO\tdictionary\tO\nof\tO\tof\tO\nSAMPLE_RATES\tB-Library_Variable\tSAMPLE_RATES\tO\nin\tO\tin\tO\nLubUsbScope.py\tB-File_Name\tLubUsbScope.py\tO\n;\tO\t;\tO\nThe\tO\tThe\tO\noscilloscope\tO\toscilloscope\tO\ngathers\tO\tgathers\tO\n12\tO\t12\tO\nMillion\tO\tMillion\tO\ndata\tO\tdata\tO\nentries\tO\tentries\tO\nwithin\tO\twithin\tO\none\tO\tone\tO\nsecond\tO\tsecond\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nsampling\tO\tsampling\tO\nrate\tO\trate\tO\nof\tO\tof\tO\n12\tO\t12\tO\nMS\tO\tMS\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nsample_rate\tB-Library_Variable\tsample_rate\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nread_async\tB-Library_Function\tread_async\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\nhas\tO\thas\tO\nalways\tO\talways\tO\na\tO\ta\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\n12288000\tO\t12288000\tO\n(\tO\t(\tO\nwithin\tO\twithin\tO\none\tO\tone\tO\nsec\tO\tsec\tO\n)\tO\t)\tO\n,\tO\t,\tO\nregardless\tO\tregardless\tO\nof\tO\tof\tO\nchosen\tO\tchosen\tO\nsample\tO\tsample\tO\nrate\tO\trate\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nlooks\tO\tlooks\tO\nstrange\tO\tstrange\tO\n(\tO\t(\tO\ngaps\tO\tgaps\tO\nbetween\tO\tbetween\tO\nmeasured\tO\tmeasured\tO\nsamples\tO\tsamples\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\na\tO\ta\tO\nlimitation\tO\tlimitation\tO\n,\tO\t,\tO\nor\tO\tor\tO\nam\tO\tam\tO\nI\tO\tI\tO\nnot\tO\tnot\tO\nunderstanding\tO\tunderstanding\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\n'\tO\t'\tO\nAlso\tO\tAlso\tO\nthe\tO\tthe\tO\ndata_points\tB-Library_Variable\tdata_points\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\nconfused\tO\tconfused\tO\nabout\tO\tabout\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreat\tO\tgreat\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nclarify\tO\tclarify\tO\nthese\tO\tthese\tO\npoints\tO\tpoints\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n\t\npiotr\tB-User_Name\tpiotr\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsharanpatil01/drools\tO\tsharanpatil01/drools\tO\n-spring-maven-samples\tO\t-spring-maven-samples\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/sharanpatil01/drools-spring-maven-samples\tO\thttps://github.com/sharanpatil01/drools-spring-maven-samples\tO\n\t\nDrools\tB-Application\tDrools\tO\nSpring\tB-Library\tSpring\tO\nintegration\tO\tintegration\tO\nusing\tO\tusing\tO\nMaven\tB-Application\tMaven\tO\n\t\nThis\tO\tThis\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nmavenized\tO\tmavenized\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n2\tO\t2\tO\nDrools\tB-Application\tDrools\tO\nexamples\tO\texamples\tO\nBanking\tO\tBanking\tO\nexample\tO\texample\tO\nand\tO\tand\tO\n[\tO\t[\tO\nPricing\tO\tPricing\tO\nand\tO\tand\tO\nDecision\tO\tDecision\tO\nTable\tB-User_Interface_Element\tTable\tO\nRules\tO\tRules\tO\nexample\tO\texample\tO\n]\tO\t]\tO\n(\tO\t(\tO\nhttp://docs.jboss.org/drools/release/5.2.0.Final/drools-expert-docs/html/ch09.html#d0e9371\tO\thttp://docs.jboss.org/drools/release/5.2.0.Final/drools-expert-docs/html/ch09.html#d0e9371\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nrun\tO\trun\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_6375\tI-Code_Block\tGR_6375\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nsee\tO\tsee\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nsuccessful\tO\tsuccessful\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\ncompletely\tO\tcompletely\tO\nintegrated\tO\tintegrated\tO\nwith\tO\twith\tO\nSpring\tB-Library\tSpring\tO\nframework\tO\tframework\tO\nand\tO\tand\tO\nworks\tO\tworks\tO\nwith\tO\twith\tO\nspring-core\tB-Library\tspring-core\tO\nversion\tO\tversion\tO\n3.0.2-release\tB-Version\t3.0.2-release\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nissues\tO\tissues\tO\nhence\tO\thence\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\n3.1.1.release\tB-Version\t3.1.1.release\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nstill\tO\tstill\tO\nexploring\tO\texploring\tO\n.\tO\t.\tO\n\t\nFeel\tO\tFeel\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\n.\tO\t.\tO\n\t\nRefer\tO\tRefer\tO\nthis\tO\tthis\tO\nblog\tO\tblog\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nOpenPrograms/MiscPrograms\tO\tOpenPrograms/MiscPrograms\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/OpenPrograms/MiscPrograms/issues/9\tO\thttps://github.com/OpenPrograms/MiscPrograms/issues/9\tO\n\t\nnone\tO\tnone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/88\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/88\tO\n\t\nThe\tO\tThe\tO\ndocument\tO\tdocument\tO\nstates\tO\tstates\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\nlabels\tO\tlabels\tO\nare\tO\tare\tO\nrequired\tO\trequired\tO\n:\tO\t:\tO\n\t\nio.k8s.display-name\tB-Library_Variable\tio.k8s.display-name\tO\n(\tO\t(\tO\nName\tO\tName\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\ndisplayed\tO\tdisplayed\tO\nin\tO\tin\tO\nKubernetes\tB-Application\tKubernetes\tO\n)\tO\t)\tO\n\t\nio.openshift.tags\tB-Library_Variable\tio.openshift.tags\tO\n(\tO\t(\tO\ntags\tO\ttags\tO\nused\tO\tused\tO\nby\tO\tby\tO\nsearching\tO\tsearching\tO\nengine\tO\tengine\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nbuilder\tB-Application\tbuilder\tO\n,\tO\t,\tO\nphp\tB-Language\tphp\tO\n,\tO\t,\tO\nphp56\tB-Language\tphp56\tO\n,\tO\t,\tO\nrh-php56\tB-Language\trh-php56\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\n\t\nIs\tO\tIs\tO\nthat\tO\tthat\tO\ntrue\tO\ttrue\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nare\tO\tare\tO\nthose\tO\tthose\tO\nbeing\tO\tbeing\tO\nenforced\tO\tenforced\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/12\tO\thttps://github.com/contributte/logging/issues/12\tO\n\t\n@f3l1x\tB-User_Name\t@f3l1x\tO\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndagingaa/angular.js\tO\tdagingaa/angular.js\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/dagingaa/angular.js\tO\thttps://github.com/dagingaa/angular.js\tO\n\t\nAngularJS\tB-Library\tAngularJS\tO\n\t\nAngularJS\tB-Library\tAngularJS\tO\nlets\tO\tlets\tO\nyou\tO\tyou\tO\nwrite\tO\twrite\tO\nclient-side\tB-Application\tclient-side\tO\nweb\tO\tweb\tO\napplications\tO\tapplications\tO\nas\tO\tas\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhad\tO\thad\tO\na\tO\ta\tO\nsmarter\tO\tsmarter\tO\nbrowser\tB-Application\tbrowser\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nlets\tO\tlets\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\ngood\tO\tgood\tO\nold\tO\told\tO\nHTML\tB-Language\tHTML\tO\n(\tO\t(\tO\nor\tO\tor\tO\nHAML\tB-Language\tHAML\tO\n,\tO\t,\tO\nJade\tB-Language\tJade\tO\nand\tO\tand\tO\nfriends\tO\tfriends\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nas\tO\tas\tO\nyour\tO\tyour\tO\ntemplate\tO\ttemplate\tO\nlanguage\tO\tlanguage\tO\nand\tO\tand\tO\nlets\tO\tlets\tO\nyou\tO\tyou\tO\nextend\tO\textend\tO\nHTML\tB-Language\tHTML\tO\n's\tO\t's\tO\nsyntax\tO\tsyntax\tO\nto\tO\tto\tO\nexpress\tO\texpress\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n's\tO\t's\tO\ncomponents\tO\tcomponents\tO\nclearly\tO\tclearly\tO\nand\tO\tand\tO\nsuccinctly\tO\tsuccinctly\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nautomatically\tO\tautomatically\tO\nsynchronizes\tO\tsynchronizes\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nUI\tO\tUI\tO\n(\tO\t(\tO\nview\tO\tview\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nJavaScript\tB-Language\tJavaScript\tO\nobjects\tO\tobjects\tO\n(\tO\t(\tO\nmodel\tO\tmodel\tO\n)\tO\t)\tO\nthrough\tO\tthrough\tO\n2-way\tO\t2-way\tO\ndata\tO\tdata\tO\nbinding\tO\tbinding\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nstructure\tO\tstructure\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nbetter\tO\tbetter\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\n,\tO\t,\tO\nAngularJS\tB-Library\tAngularJS\tO\nteaches\tO\tteaches\tO\nthe\tO\tthe\tO\nbrowser\tO\tbrowser\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\ndependency\tO\tdependency\tO\ninjection\tO\tinjection\tO\nand\tO\tand\tO\ninversion\tO\tinversion\tO\nof\tO\tof\tO\ncontrol\tO\tcontrol\tO\n.\tO\t.\tO\n\t\nOh\tO\tOh\tO\nyeah\tO\tyeah\tO\nand\tO\tand\tO\nit\tO\tit\tO\nalso\tO\talso\tO\nhelps\tO\thelps\tO\nwith\tO\twith\tO\nserver-side\tB-Application\tserver-side\tO\ncommunication\tO\tcommunication\tO\n,\tO\t,\tO\ntaming\tO\ttaming\tO\nasync\tB-Library_Function\tasync\tO\ncallbacks\tO\tcallbacks\tO\nwith\tO\twith\tO\npromises\tO\tpromises\tO\nand\tO\tand\tO\ndeferreds\tO\tdeferreds\tO\n;\tO\t;\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nclient-side\tB-Application\tclient-side\tO\nnavigation\tO\tnavigation\tO\nand\tO\tand\tO\ndeeplinking\tO\tdeeplinking\tO\nwith\tO\twith\tO\nhashbang\tO\thashbang\tO\nurls\tO\turls\tO\nor\tO\tor\tO\nHTML5\tB-Language\tHTML5\tO\npushState\tB-Library_Function\tpushState\tO\na\tO\ta\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncake\tO\tcake\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\nof\tO\tof\tO\nall\tO\tall\tO\n:\tO\t:\tO\nit\tO\tit\tO\nmakes\tO\tmakes\tO\ndevelopment\tO\tdevelopment\tO\nfun\tO\tfun\tO\n!\tO\t!\tO\n\t\nWeb\tO\tWeb\tO\nsite\tO\tsite\tO\n:\tO\t:\tO\nhttp://angularjs.org\tO\thttp://angularjs.org\tO\n\t\nTutorial\tO\tTutorial\tO\n:\tO\t:\tO\nhttp://docs.angularjs.org/tutorial\tO\thttp://docs.angularjs.org/tutorial\tO\n\t\nAPI\tB-Library\tAPI\tO\nDocs\tO\tDocs\tO\n:\tO\t:\tO\nhttp://docs.angularjs.org/api\tO\thttp://docs.angularjs.org/api\tO\n\t\nDeveloper\tO\tDeveloper\tO\nGuide\tO\tGuide\tO\n:\tO\t:\tO\nhttp://docs.angularjs.org/guide\tO\thttp://docs.angularjs.org/guide\tO\n\t\nContribution\tO\tContribution\tO\nguidelines\tO\tguidelines\tO\n:\tO\t:\tO\nhttp://docs.angularjs.org/misc/contribute\tO\thttp://docs.angularjs.org/misc/contribute\tO\n\t\nDashboard\tB-User_Interface_Element\tDashboard\tO\n:\tO\t:\tO\nhttp://dashboard.angularjs.org\tO\thttp://dashboard.angularjs.org\tO\n\t\nBuilding\tO\tBuilding\tO\nAngularJS\tB-Library\tAngularJS\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nenvironment\tO\tenvironment\tO\nsetup\tO\tsetup\tO\njust\tO\tjust\tO\nrun\tO\trun\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_6093\tI-Code_Block\tGR_6093\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRunning\tO\tRunning\tO\nTests\tO\tTests\tO\n\t\nTo\tO\tTo\tO\nexecute\tO\texecute\tO\nall\tO\tall\tO\nunit\tO\tunit\tO\ntests\tO\ttests\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_6094\tI-Code_Block\tGR_6094\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nexecute\tO\texecute\tO\nend-to-end\tO\tend-to-end\tO\n(\tO\t(\tO\ne2e\tO\te2e\tO\n)\tO\t)\tO\ntests\tO\ttests\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_6095\tI-Code_Block\tGR_6095\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nlearn\tO\tlearn\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\ngrunt\tO\tgrunt\tO\ntasks\tO\ttasks\tO\n,\tO\t,\tO\nrun\tO\trun\tO\ngrunt\tB-Code_Block\tgrunt\tB-Code_Block\n--help\tI-Code_Block\t--help\tI-Code_Block\nand\tO\tand\tO\nalso\tO\talso\tO\nread\tO\tread\tO\nour\tO\tour\tO\ncontribution\tO\tcontribution\tO\nguidelines\tO\tguidelines\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nZorros/copycat\tO\tZorros/copycat\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/Zorros/copycat\tO\thttps://github.com/Zorros/copycat\tO\n\t\nCopycat\tO\tCopycat\tO\n#\tO\t#\tO\n\t\nCopycat\tB-Library\tCopycat\tO\nis\tO\tis\tO\na\tO\ta\tO\nRails\tB-Library\tRails\tO\nengine\tO\tengine\tO\nthat\tO\tthat\tO\nallows\tO\tallows\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nlive\tO\tlive\tO\nwebsite\tO\twebsite\tO\ncopy\tO\tcopy\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ngem\tB-Library\tgem\tO\nas\tO\tas\tO\na\tO\ta\tO\ntranslator\tO\ttranslator\tO\n/\tO\t/\tO\ncopywriter\tO\tcopywriter\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nadvised\tO\tadvised\tO\nway\tO\tway\tO\non\tO\ton\tO\nhow\tO\thow\tO\na\tO\ta\tO\ntranslator\tO\ttranslator\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\ncopycat\tO\tcopycat\tO\nto\tO\tto\tO\ntranslate\tO\ttranslate\tO\na\tO\ta\tO\nRails\tB-Library\tRails\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ngem\tB-Library\tgem\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nwritten\tO\twritten\tO\nfor\tO\tfor\tO\ntranslators\tO\ttranslators\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nfor\tO\tfor\tO\ndevelopers\tO\tdevelopers\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nof\tO\tof\tO\neffort\tO\teffort\tO\nit\tO\tit\tO\n's\tO\t's\tO\nfairly\tO\tfairly\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nall\tO\tall\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nAsk\tO\tAsk\tO\nyour\tO\tyour\tO\ndeveloper\tO\tdeveloper\tO\nif\tO\tif\tO\ndoubts\tO\tdoubts\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\n(\tO\t(\tO\nor\tO\tor\tO\nshould\tO\tshould\tO\n)\tO\t)\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntesting\tO\ttesting\tO\nand\tO\tand\tO\na\tO\ta\tO\nproduction\tO\tproduction\tO\nenvironment\tO\tenvironment\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nRails\tB-Library\tRails\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nIdeally\tO\tIdeally\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nnever\tO\tnever\tO\ndo\tO\tdo\tO\ntranslations\tO\ttranslations\tO\ndirectly\tO\tdirectly\tO\non\tO\ton\tO\nproduction\tO\tproduction\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\ntest\tO\ttest\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nimport\tO\timport\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\nproduction\tO\tproduction\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\na\tO\ta\tO\nwrong\tO\twrong\tO\ntranslation\tO\ttranslation\tO\nmight\tO\tmight\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndiscover\tO\tdiscover\tO\nerrors\tO\terrors\tO\non\tO\ton\tO\ntest\tO\ttest\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nproduction\tO\tproduction\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nyour\tO\tyour\tO\ntest\tO\ttest\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nhttp://your-test-application.com/copycat_translations\tO\thttp://your-test-application.com/copycat_translations\tO\nor\tO\tor\tO\n/translations\tO\t/translations\tO\n(\tO\t(\tO\nask\tO\task\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ndeveloper\tO\tdeveloper\tO\n)\tO\t)\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\naccess\tO\taccess\tO\nthat\tO\tthat\tO\nURL\tO\tURL\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nasked\tO\tasked\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nand\tO\tand\tO\npassword\tO\tpassword\tO\n(\tO\t(\tO\nget\tO\tget\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndeveloper\tO\tdeveloper\tO\n)\tO\t)\tO\n\t\nOnce\tO\tOnce\tO\nconnected\tO\tconnected\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\nshows\tO\tshows\tO\na\tO\ta\tO\nlanguage\tO\tlanguage\tO\ndrop\tB-User_Interface_Element\tdrop\tO\ndown\tI-User_Interface_Element\tdown\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nsearch\tB-User_Interface_Element\tsearch\tO\nbox\tI-User_Interface_Element\tbox\tO\n\t\nSelect\tO\tSelect\tO\nyour\tO\tyour\tO\nlanguage\tO\tlanguage\tO\nand\tO\tand\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ntext\tO\ttext\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange/translate\tO\tchange/translate\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ntranslation\tO\ttranslation\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\ncalled\tO\tcalled\tO\n\"\tO\t\"\tO\nSave\tB-Variable_Name\tSave\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nSave\tB-Variable_Name\tSave\tO\nnow\tI-Variable_Name\tnow\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\n\"\tO\t\"\tO\nSave\tB-Variable_Name\tSave\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nbox\tO\tbox\tO\n.\tO\t.\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nlanguage\tO\tlanguage\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ndictionary\tB-Data_Structure\tdictionary\tO\nof\tO\tof\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nlanguage\tO\tlanguage\tO\n,\tO\t,\tO\nleave\tO\tleave\tO\nthe\tO\tthe\tO\nsearch\tB-User_Interface_Element\tsearch\tO\nfield\tI-User_Interface_Element\tfield\tO\nempty\tO\tempty\tO\n,\tO\t,\tO\nand\tO\tand\tO\nclick\tO\tclick\tO\n\"\tO\t\"\tO\nsearch\tB-User_Interface_Element\tsearch\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nsee\tO\tsee\tO\nall\tO\tall\tO\ntranslations\tO\ttranslations\tO\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\ndictionary\tB-Variable_Name\tdictionary\tO\nkey\tI-Variable_Name\tkey\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\njust\tO\tjust\tO\n\"\tO\t\"\tO\nkey\tB-Variable_Name\tkey\tO\n\"\tO\t\"\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntranslation\tO\ttranslation\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nkey\tO\tkey\tO\nis\tO\tis\tO\nunique\tO\tunique\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndictionary\tB-Data_Structure\tdictionary\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nTexts\tO\tTexts\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nunique\tO\tunique\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\ncalled\tO\tcalled\tO\n\"\tO\t\"\tO\nsave\tB-Variable_Name\tsave\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ntranslation\tO\ttranslation\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nyet\tO\tyet\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\n,\tO\t,\tO\nRuby\tB-Library\tRuby\tO\non\tI-Library\ton\tO\nRails\tI-Library\tRails\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npublic\tO\tpublic\tO\npage\tB-User_Interface_Element\tpage\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nuppercasing\tO\tuppercasing\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\n,\tO\t,\tO\nand\tO\tand\tO\nremoving\tO\tremoving\tO\nall\tO\tall\tO\n_\tO\t_\tO\nsigns\tO\tsigns\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\na\tO\ta\tO\nkey\tO\tkey\tO\ncalled\tO\tcalled\tO\n\"\tO\t\"\tO\nsign_up_button\tB-Variable_Name\tsign_up_button\tO\n\"\tO\t\"\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nyet\tO\tyet\tO\ntranslated\tO\ttranslated\tO\n,\tO\t,\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nshown\tO\tshown\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\nSign\tB-User_Interface_Element\tSign\tO\nUp\tI-User_Interface_Element\tUp\tO\nButton\tI-User_Interface_Element\tButton\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nhover\tO\thover\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nword\tO\tword\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nmouse\tB-Device\tmouse\tO\n(\tO\t(\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\n)\tO\t)\tO\n,\tO\t,\tO\nRoR\tB-Library\tRoR\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\na\tO\ta\tO\ntooltip\tB-User_Interface_Element\ttooltip\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthat\tO\tthat\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ntranslation\tO\ttranslation\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nfound\tO\tfound\tO\nyour\tO\tyour\tO\nkey\tO\tkey\tO\nor\tO\tor\tO\nyour\tO\tyour\tO\ntext\tO\ttext\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nclick\tO\tclick\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nsee\tO\tsee\tO\nyour\tO\tyour\tO\nchanges\tO\tchanges\tO\ndirectly\tO\tdirectly\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ntest\tO\ttest\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nall\tO\tall\tO\ntranslations\tO\ttranslations\tO\nand\tO\tand\tO\ncopy\tO\tcopy\tO\nis\tO\tis\tO\nOK\tO\tOK\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nimported\tO\timported\tO\n/\tO\t/\tO\nmigrated\tO\tmigrated\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nproduction\tO\tproduction\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nproduction\tO\tproduction\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\n/copycat_translations\tB-File_Name\t/copycat_translations\tO\npath\tO\tpath\tO\n,\tO\t,\tO\npassword\tO\tpassword\tO\nsecured\tO\tsecured\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nIMPORT\tO\tIMPORT\tO\nall\tO\tall\tO\ntranslations\tO\ttranslations\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nsystem\tO\tsystem\tO\nat\tO\tat\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nlog\tO\tlog\tO\non\tO\ton\tO\nto\tO\tto\tO\nproduction\tO\tproduction\tO\n,\tO\t,\tO\nand\tO\tand\tO\nclick\tO\tclick\tO\n\"\tO\t\"\tO\nsynch\tB-User_Interface_Element\tsynch\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\noverwrite\tO\toverwrite\tO\nALL\tO\tALL\tO\nproduction\tO\tproduction\tO\ntranslations\tO\ttranslations\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntranslations\tO\ttranslations\tO\non\tO\ton\tO\ntest\tO\ttest\tO\n(\tO\t(\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\n!\tO\t!\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\nones\tO\tones\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\n!!\tO\t!!\tO\n!\tO\t!\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\non\tO\ton\tO\nproduction\tO\tproduction\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nclosed\tO\tclosed\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nsecurity\tO\tsecurity\tO\nreasons\tO\treasons\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nimport\tO\timport\tO\n/\tO\t/\tO\nmigration\tO\tmigration\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nAsk\tO\tAsk\tO\nyour\tO\tyour\tO\ndeveloper\tO\tdeveloper\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nBUT\tO\tBUT\tO\nI\tO\tI\tO\nWANT\tO\tWANT\tO\nTO\tO\tTO\tO\nEXPOT/IMPORT\tO\tEXPOT/IMPORT\tO\nFROM\tO\tFROM\tO\nEXCEL\tB-Application\tEXCEL\tO\n,\tO\t,\tO\nHOW\tO\tHOW\tO\nCAN\tO\tCAN\tO\nI\tO\tI\tO\nDO\tO\tDO\tO\nTHAT\tO\tTHAT\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmass-download\tO\tmass-download\tO\n,\tO\t,\tO\nmass-translate\tO\tmass-translate\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmass-upload\tO\tmass-upload\tO\ntranslations\tO\ttranslations\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nrecommend\tO\trecommend\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nhttp://www.activeadmin.info/\tO\thttp://www.activeadmin.info/\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\ngem\tB-Library\tgem\tO\nallows\tO\tallows\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\n,\tO\t,\tO\ndownload\tO\tdownload\tO\n,\tO\t,\tO\nfilter\tO\tfilter\tO\n,\tO\t,\tO\nupload\tO\tupload\tO\n,\tO\t,\tO\n..\tO\t..\tO\n.\tO\t.\tO\nRoR\tB-Library\tRoR\tO\ntables\tB-Data_Structure\ttables\tO\nvia\tO\tvia\tO\nonline\tO\tonline\tO\nweb\tO\tweb\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nWHY\tO\tWHY\tO\nARE\tO\tARE\tO\nTHERE\tO\tTHERE\tO\nSO\tO\tSO\tO\nMANY\tO\tMANY\tO\nEMPTY\tO\tEMPTY\tO\nKEYS\tO\tKEYS\tO\nIN\tO\tIN\tO\nTHE\tO\tTHE\tO\nDICTIONARY\tB-Data_Structure\tDICTIONARY\tO\n?\tO\t?\tO\n\t\nDO\tO\tDO\tO\nI\tO\tI\tO\nNEED\tO\tNEED\tO\nTO\tO\tTO\tO\nFILL\tO\tFILL\tO\nTHEM\tO\tTHEM\tO\nIN\tO\tIN\tO\n?\tO\t?\tO\n\t\nRails\tB-Library\tRails\tO\nuses\tO\tuses\tO\na\tO\ta\tO\nsmart\tO\tsmart\tO\ninheritance\tO\tinheritance\tO\nmechanism\tO\tmechanism\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nempty\tO\tempty\tO\nkeys\tO\tkeys\tO\nto\tO\tto\tO\noverwrite\tO\toverwrite\tO\ncertain\tO\tcertain\tO\ndefaults\tO\tdefaults\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nRails\tB-Library\tRails\tO\nwill\tO\twill\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\na\tO\ta\tO\nuser\tO\tuser\tO\n\"\tO\t\"\tO\nSave\tB-Variable_Name\tSave\tO\nuser\tI-Variable_Name\tuser\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nmakes\tO\tmakes\tO\nsense\tO\tsense\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\nkey\tO\tkey\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\noverwrite\tO\toverwrite\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nrails\tB-Library\trails\tO\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nkey\tO\tkey\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nup\tO\tup\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nadvised\tO\tadvised\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nall\tO\tall\tO\ntranslations\tO\ttranslations\tO\nis\tO\tis\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nscreens\tO\tscreens\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndictionary\tB-Data_Structure\tdictionary\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\nempty\tO\tempty\tO\nkeys\tO\tkeys\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscreens\tO\tscreens\tO\none\tO\tone\tO\nby\tO\tby\tO\none\tO\tone\tO\n,\tO\t,\tO\nand\tO\tand\tO\ntranslate\tO\ttranslate\tO\n/\tO\t/\tO\nchange\tO\tchange\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\nempty\tO\tempty\tO\nkeys\tO\tkeys\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\t\nAdd\tO\tAdd\tO\ncopycat\tB-Library\tcopycat\tB-Code_Block\nto\tO\tto\tO\nyour\tO\tyour\tO\nGemfile\tB-File_Type\tGemfile\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nbundle\tB-Code_Block\tbundle\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n.\tO\t.\tO\n\t\nCopycat\tB-Library\tCopycat\tO\nuses\tO\tuses\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\ntable\tB-Data_Structure\ttable\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\ncopy\tO\tcopy\tO\nitems\tO\titems\tO\n,\tO\t,\tO\nand\tO\tand\tO\nso\tO\tso\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnecessary\tO\tnecessary\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9707\tI-Code_Block\tGR_9707\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSince\tO\tSince\tO\nCopycat\tB-Library\tCopycat\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nstored\tO\tstored\tO\nlocally\tO\tlocally\tO\non\tO\ton\tO\nan\tO\tan\tO\nindexed\tB-Data_Structure\tindexed\tO\ntable\tI-Data_Structure\ttable\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nforeign\tO\tforeign\tO\nkeys\tO\tkeys\tO\n,\tO\t,\tO\npage\tB-User_Interface_Element\tpage\tO\nloads\tO\tloads\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\nfast\tO\tfast\tO\nand\tO\tand\tO\nchanges\tO\tchanges\tO\nappear\tO\tappear\tO\ninstantly\tO\tinstantly\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\na\tO\ta\tO\nview\tO\tview\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nRails\tB-Library\tRails\tO\ni18n\tI-Library\ti18n\tO\ntranslate\tO\ttranslate\tO\nmethod\tO\tmethod\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nsome\tO\tsome\tO\neditable\tO\teditable\tO\ncopy\tO\tcopy\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9708\tI-Code_Block\tGR_9708\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nVisit\tO\tVisit\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nbrowser\tB-Application\tbrowser\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nCopycat\tB-Library\tCopycat\tO\ntranslation\tO\ttranslation\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nvisit\tO\tvisit\tO\n/copycat_translations\tB-File_Name\t/copycat_translations\tB-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\nbrowser\tB-Application\tbrowser\tO\n,\tO\t,\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nusername\tO\tusername\tO\nand\tO\tand\tO\npassword\tO\tpassword\tO\ngenerated\tO\tgenerated\tO\nin\tO\tin\tO\nconfig/initializers/copycat.rb\tB-File_Name\tconfig/initializers/copycat.rb\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\ntoken\tO\ttoken\tO\n.\tO\t.\tO\n\t\nRails\tB-Library\tRails\tO\ni18n\tI-Library\ti18n\tO\nAPI\tI-Library\tAPI\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nRails\tB-Library\tRails\tO\ninternationalization\tI-Library\tinternationalization\tO\nframework\tI-Library\tframework\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nDeploying\tO\tDeploying\tO\n\t\nTo\tO\tTo\tO\ntransfer\tO\ttransfer\tO\nchanges\tO\tchanges\tO\nfrom\tO\tfrom\tO\nstaging\tO\tstaging\tO\nto\tO\tto\tO\nproduction\tO\tproduction\tO\n:\tO\t:\tO\n\t\nDownload\tO\tDownload\tO\ncopy\tO\tcopy\tO\nas\tO\tas\tO\nYAML\tB-Language\tYAML\tO\non\tO\ton\tO\nstaging\tO\tstaging\tO\n\t\nLogin\tO\tLogin\tO\nto\tO\tto\tO\nCopycat\tB-Library\tCopycat\tO\non\tO\ton\tO\nproduction\tO\tproduction\tO\n\t\nUpload\tO\tUpload\tO\nYAML\tB-Language\tYAML\tO\nto\tO\tto\tO\nproduction\tO\tproduction\tO\n\t\nSince\tO\tSince\tO\nthis\tO\tthis\tO\nprocess\tO\tprocess\tO\nrequires\tO\trequires\tO\nno\tO\tno\tO\ncode\tO\tcode\tO\ncommits\tO\tcommits\tO\n,\tO\t,\tO\nnon-developers\tO\tnon-developers\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\n'\tO\t'\tO\ndeploy\tO\tdeploy\tO\n'\tO\t'\tO\ncopy\tO\tcopy\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\ncommit\tO\tcommit\tO\nCopycat\tB-Library\tCopycat\tO\n's\tO\t's\tO\nYAML\tB-Language\tYAML\tO\nexport\tO\texport\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncompatible\tO\tcompatible\tO\nwith\tO\twith\tO\ni18n\tB-Library\ti18n\tO\n,\tO\t,\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ngit\tB-Application\tgit\tO\nrepository\tO\trepository\tO\n.\tO\t.\tO\n\t\nRoutes\tO\tRoutes\tO\n\t\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\nroute\tO\troute\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\ncopy\tO\tcopy\tO\nis\tO\tis\tO\n'\tO\t'\tO\n/copycat_translations\tB-File_Name\t/copycat_translations\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncustomized\tO\tcustomized\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninitializer\tO\tinitializer\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nCopycat\tB-Library\tCopycat\tO\nroutes\tO\troutes\tO\nare\tO\tare\tO\nconfigured\tO\tconfigured\tO\nautomatically\tO\tautomatically\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nengine\tO\tengine\tO\n,\tO\t,\tO\nafter\tO\tafter\tO\nyour\tO\tyour\tO\nRails\tB-Library\tRails\tO\napplication\tO\tapplication\tO\n's\tO\t's\tO\nroutes.rb\tB-File_Name\troutes.rb\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nroutes\tO\troutes\tO\ninclude\tO\tinclude\tO\na\tO\ta\tO\ncatchall\tO\tcatchall\tO\nroute\tO\troute\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nCopycat\tO\tCopycat\tO\nroute\tO\troute\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nmasked\tO\tmasked\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmanually\tO\tmanually\tO\ndraw\tO\tdraw\tO\nthe\tO\tthe\tO\nCopycat\tB-Library\tCopycat\tO\nroutes\tO\troutes\tO\nprior\tO\tprior\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncatchall\tO\tcatchall\tO\nroute\tO\troute\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nline\tO\tline\tO\nin\tO\tin\tO\nconfig/routes.rb\tB-File_Name\tconfig/routes.rb\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9709\tI-Code_Block\tGR_9709\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLogging\tO\tLogging\tO\n\t\nBecause\tO\tBecause\tO\nCopycat\tB-Library\tCopycat\tO\ndoes\tO\tdoes\tO\na\tO\ta\tO\nSQL\tB-Language\tSQL\tO\nquery\tO\tquery\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\ntoken\tO\ttoken\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nproduce\tO\tproduce\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nnoise\tO\tnoise\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlog\tO\tlog\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nTherefore\tO\tTherefore\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nthe\tO\tthe\tO\nlogger\tO\tlogger\tO\nis\tO\tis\tO\ndisabled\tO\tdisabled\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nCopycat\tB-Library_Class\tCopycat\tO\nActiveRecord\tI-Library_Class\tActiveRecord\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nenabled\tO\tenabled\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nenvironment\tO\tenvironment\tO\nvariable\tO\tvariable\tO\nCOPYCAT_DEBUG\tB-Library_Variable\tCOPYCAT_DEBUG\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9710\tI-Code_Block\tGR_9710\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExample\tO\tExample\tO\n\t\nSee\tO\tSee\tO\nan\tO\tan\tO\nexample\tO\texample\tO\napplication\tO\tapplication\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nDeveloping\tO\tDeveloping\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nRails\tB-Library\tRails\tO\nengine\tO\tengine\tO\n,\tO\t,\tO\nCopycat\tB-Library\tCopycat\tO\nis\tO\tis\tO\ndeveloped\tO\tdeveloped\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nnested\tO\tnested\tO\ndummy\tO\tdummy\tO\nRails\tB-Library\tRails\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\ncloning\tO\tcloning\tO\nthe\tO\tthe\tO\nrepository\tO\trepository\tO\nand\tO\tand\tO\nrunning\tO\trunning\tO\nbundler\tO\tbundler\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\ninstalled\tO\tinstalled\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndummy\tO\tdummy\tO\napp\tO\tapp\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9711\tI-Code_Block\tGR_9711\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9712\tI-Code_Block\tGR_9712\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLicense\tO\tLicense\tO\n\t\nCopycat\tB-Library\tCopycat\tO\nis\tO\tis\tO\nreleased\tO\treleased\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nMIT\tB-Licence\tMIT\tO\nlicense\tI-Licence\tlicense\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nMIT-LICENSE\tB-File_Name\tMIT-LICENSE\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nTMaluleke/hello\tO\tTMaluleke/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/TMaluleke/hello-world/issues/2\tO\thttps://github.com/TMaluleke/hello-world/issues/2\tO\n\t\nMore\tO\tMore\tO\nchanges\tO\tchanges\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmjacobus/carrasco\tO\tmjacobus/carrasco\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mjacobus/carrasco/issues/7\tO\thttps://github.com/mjacobus/carrasco/issues/7\tO\n\t\nTks\tO\tTks\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njeann2013/lqlt\tO\tjeann2013/lqlt\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/jeann2013/lqlt\tO\thttps://github.com/jeann2013/lqlt\tO\n\t\nlqlt\tO\tlqlt\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngengelbeck/ProgrammingAssignment2\tO\tgengelbeck/ProgrammingAssignment2\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/gengelbeck/ProgrammingAssignment2\tO\thttps://github.com/gengelbeck/ProgrammingAssignment2\tO\n\t\nIntroduction\tO\tIntroduction\tO\n\t\nThis\tO\tThis\tO\nsecond\tO\tsecond\tO\nprogramming\tO\tprogramming\tO\nassignment\tO\tassignment\tO\nwill\tO\twill\tO\nrequire\tO\trequire\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nan\tO\tan\tO\nR\tB-Language\tR\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nable\tO\table\tO\nto\tO\tto\tO\ncache\tO\tcache\tO\npotentially\tO\tpotentially\tO\ntime-consuming\tO\ttime-consuming\tO\ncomputations\tO\tcomputations\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ntaking\tO\ttaking\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\nof\tO\tof\tO\na\tO\ta\tO\nnumeric\tO\tnumeric\tO\nvector\tB-Data_Structure\tvector\tO\nis\tO\tis\tO\ntypically\tO\ttypically\tO\na\tO\ta\tO\nfast\tO\tfast\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nlong\tO\tlong\tO\nvector\tB-Data_Structure\tvector\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\ntake\tO\ttake\tO\ntoo\tO\ttoo\tO\nlong\tO\tlong\tO\nto\tO\tto\tO\ncompute\tO\tcompute\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nif\tO\tif\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncomputed\tO\tcomputed\tO\nrepeatedly\tO\trepeatedly\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\na\tO\ta\tO\nloop\tO\tloop\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\na\tO\ta\tO\nvector\tB-Data_Structure\tvector\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nchanging\tO\tchanging\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\nto\tO\tto\tO\ncache\tO\tcache\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nlooked\tO\tlooked\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncache\tO\tcache\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nrecomputed\tO\trecomputed\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nProgramming\tO\tProgramming\tO\nAssignment\tO\tAssignment\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscoping\tO\tscoping\tO\nrules\tO\trules\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nR\tB-Language\tR\tO\nlanguage\tO\tlanguage\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmanipulated\tO\tmanipulated\tO\nto\tO\tto\tO\npreserve\tO\tpreserve\tO\nstate\tO\tstate\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\nan\tO\tan\tO\nR\tB-Language\tR\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\nCaching\tO\tCaching\tO\nthe\tO\tthe\tO\nMean\tO\tMean\tO\nof\tO\tof\tO\na\tO\ta\tO\nVector\tB-Data_Structure\tVector\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nwe\tO\twe\tO\nintroduce\tO\tintroduce\tO\nthe\tO\tthe\tO\n<<\tB-Code_Block\t<<\tB-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\noperator\tO\toperator\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nan\tO\tan\tO\nenvironment\tO\tenvironment\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nenvironment\tO\tenvironment\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nfunctions\tO\tfunctions\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nused\tO\tused\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nstores\tO\tstores\tO\na\tO\ta\tO\nnumeric\tO\tnumeric\tO\nvector\tB-Data_Structure\tvector\tO\nand\tO\tand\tO\ncaches\tO\tcaches\tO\nits\tO\tits\tO\nmean\tO\tmean\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nmakeVector\tB-Function_Name\tmakeVector\tB-Code_Block\ncreates\tO\tcreates\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\n\"\tO\t\"\tO\nvector\tB-Data_Structure\tvector\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nreally\tO\treally\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\ncontaining\tO\tcontaining\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\n\t\nset\tO\tset\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvector\tB-Data_Structure\tvector\tO\n\t\nget\tO\tget\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvector\tB-Data_Structure\tvector\tO\n\t\nset\tO\tset\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\n\t\nget\tO\tget\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_3269\tI-Code_Block\tGR_3269\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nfunction\tO\tfunction\tO\ncalculates\tO\tcalculates\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nspecial\tO\tspecial\tO\n\"\tO\t\"\tO\nvector\tB-Data_Structure\tvector\tO\n\"\tO\t\"\tO\ncreated\tO\tcreated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nit\tO\tit\tO\nfirst\tO\tfirst\tO\nchecks\tO\tchecks\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\nhas\tO\thas\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\ncalculated\tO\tcalculated\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nso\tO\tso\tO\n,\tO\t,\tO\nit\tO\tit\tO\ngets\tO\tgets\tB-Code_Block\nthe\tO\tthe\tO\nmean\tO\tmean\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncache\tO\tcache\tO\nand\tO\tand\tO\nskips\tO\tskips\tO\nthe\tO\tthe\tO\ncomputation\tO\tcomputation\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncalculates\tO\tcalculates\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nand\tO\tand\tO\nsets\tO\tsets\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncache\tO\tcache\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nsetmean\tB-Function_Name\tsetmean\tB-Code_Block\n\t\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_3270\tI-Code_Block\tGR_3270\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAssignment\tO\tAssignment\tO\n:\tO\t:\tO\nCaching\tO\tCaching\tO\nthe\tO\tthe\tO\nInverse\tO\tInverse\tO\nof\tO\tof\tO\na\tO\ta\tO\nMatrix\tB-Data_Structure\tMatrix\tO\n\t\nMatrix\tB-Data_Structure\tMatrix\tO\ninversion\tO\tinversion\tO\nis\tO\tis\tO\nusually\tO\tusually\tO\na\tO\ta\tO\ncostly\tO\tcostly\tO\ncomputation\tO\tcomputation\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\nbenefit\tO\tbenefit\tO\nto\tO\tto\tO\ncaching\tO\tcaching\tO\nthe\tO\tthe\tO\ninverse\tO\tinverse\tO\nof\tO\tof\tO\na\tO\ta\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\ncomputing\tO\tcomputing\tO\nit\tO\tit\tO\nrepeatedly\tO\trepeatedly\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nalso\tO\talso\tO\nalternatives\tO\talternatives\tO\nto\tO\tto\tO\nmatrix\tB-Data_Structure\tmatrix\tO\ninversion\tO\tinversion\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\ndiscuss\tO\tdiscuss\tO\nhere\tO\there\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nassignment\tO\tassignment\tO\nis\tO\tis\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\npair\tO\tpair\tO\nof\tO\tof\tO\nfunctions\tO\tfunctions\tO\nthat\tO\tthat\tO\ncache\tO\tcache\tO\nthe\tO\tthe\tO\ninverse\tO\tinverse\tO\nof\tO\tof\tO\na\tO\ta\tO\nmatrix\tB-Data_Structure\tmatrix\tO\n.\tO\t.\tO\n\t\nWrite\tO\tWrite\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nfunctions\tO\tfunctions\tO\n:\tO\t:\tO\n\t\nmakeCacheMatrix\tB-Function_Name\tmakeCacheMatrix\tB-Code_Block\n:\tO\t:\tO\nThis\tO\tThis\tO\nfunction\tO\tfunction\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\n\"\tO\t\"\tO\nmatrix\tB-Data_Structure\tmatrix\tO\n\"\tO\t\"\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\ncache\tO\tcache\tO\nits\tO\tits\tO\ninverse\tO\tinverse\tO\n.\tO\t.\tO\n\t\ncacheSolve\tB-Function_Name\tcacheSolve\tB-Code_Block\n:\tO\t:\tO\nThis\tO\tThis\tO\nfunction\tO\tfunction\tO\ncomputes\tO\tcomputes\tO\nthe\tO\tthe\tO\ninverse\tO\tinverse\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nspecial\tO\tspecial\tO\n\"\tO\t\"\tO\nmatrix\tB-Data_Structure\tmatrix\tO\n\"\tO\t\"\tO\nreturned\tO\treturned\tO\nby\tO\tby\tO\nmakeCacheMatrix\tB-Function_Name\tmakeCacheMatrix\tB-Code_Block\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ninverse\tO\tinverse\tO\nhas\tO\thas\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\ncalculated\tO\tcalculated\tO\n(\tO\t(\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nchanged\tO\tchanged\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncacheSolve\tB-Function_Name\tcacheSolve\tB-Code_Block\nshould\tO\tshould\tO\nretrieve\tO\tretrieve\tO\nthe\tO\tthe\tO\ninverse\tO\tinverse\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncache\tO\tcache\tO\n.\tO\t.\tO\n\t\nComputing\tO\tComputing\tO\nthe\tO\tthe\tO\ninverse\tO\tinverse\tO\nof\tO\tof\tO\na\tO\ta\tO\nsquare\tO\tsquare\tO\nmatrix\tB-Data_Structure\tmatrix\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsolve\tB-Library_Function\tsolve\tB-Code_Block\n\t\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nR\tB-Language\tR\tO\n.\tO\t.\tO\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nX\tB-Variable_Name\tX\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nsquare\tO\tsquare\tO\ninvertible\tO\tinvertible\tO\nmatrix\tB-Data_Structure\tmatrix\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\n\t\nsolve(X)\tB-Library_Function\tsolve(X)\tB-Code_Block\nreturns\tO\treturns\tO\nits\tO\tits\tO\ninverse\tO\tinverse\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\nassignment\tO\tassignment\tO\n,\tO\t,\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nsupplied\tO\tsupplied\tO\nis\tO\tis\tO\nalways\tO\talways\tO\ninvertible\tO\tinvertible\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\nthis\tO\tthis\tO\nassignment\tO\tassignment\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nFork\tO\tFork\tO\nthe\tO\tthe\tO\nGitHub\tB-Website\tGitHub\tO\nrepository\tO\trepository\tO\ncontaining\tO\tcontaining\tO\nthe\tO\tthe\tO\nstub\tO\tstub\tO\nR\tB-File_Type\tR\tO\nfiles\tO\tfiles\tO\nat\tO\tat\tO\n\t\nhttps://github.com/rdpeng/ProgrammingAssignment2\tO\thttps://github.com/rdpeng/ProgrammingAssignment2\tO\n\t\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nunder\tO\tunder\tO\nyour\tO\tyour\tO\nown\tO\town\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nClone\tO\tClone\tO\nyour\tO\tyour\tO\nforked\tO\tforked\tO\nGitHub\tB-Website\tGitHub\tO\nrepository\tO\trepository\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncomputer\tO\tcomputer\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nlocally\tO\tlocally\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nmachine\tO\tmachine\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\nthe\tO\tthe\tO\nR\tB-File_Type\tR\tO\nfile\tO\tfile\tO\ncontained\tO\tcontained\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ngit\tB-Application\tgit\tO\nrepository\tO\trepository\tO\nand\tO\tand\tO\nplace\tO\tplace\tO\nyour\tO\tyour\tO\nsolution\tO\tsolution\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nplease\tO\tplease\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nrename\tO\trename\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCommit\tO\tCommit\tO\nyour\tO\tyour\tO\ncompleted\tO\tcompleted\tO\nR\tB-File_Type\tR\tO\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nYOUR\tO\tYOUR\tO\ngit\tO\tgit\tO\nrepository\tO\trepository\tO\nand\tO\tand\tO\npush\tO\tpush\tO\nyour\tO\tyour\tO\ngit\tO\tgit\tO\nbranch\tO\tbranch\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nGitHub\tB-Website\tGitHub\tO\nrepository\tO\trepository\tO\nunder\tO\tunder\tO\nyour\tO\tyour\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nSubmit\tO\tSubmit\tO\nto\tO\tto\tO\nCoursera\tB-Website\tCoursera\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nGitHub\tB-Website\tGitHub\tO\nrepository\tO\trepository\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\ncompleted\tO\tcompleted\tO\nR\tB-Language\tR\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nassignment\tO\tassignment\tO\n.\tO\t.\tO\n\t\nGrading\tO\tGrading\tO\n\t\nThis\tO\tThis\tO\nassignment\tO\tassignment\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ngraded\tO\tgraded\tO\nvia\tO\tvia\tO\npeer\tO\tpeer\tO\nassessment\tO\tassessment\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/2\tO\thttps://github.com/linked-statistics/xkos/issues/2\tO\n\t\nIssue\tO\tIssue\tO\nclosed\tO\tclosed\tO\nafter\tO\tafter\tO\nversion\tO\tversion\tO\n0.9.7\tB-Version\t0.9.7\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark/issues/19\tO\thttps://github.com/ben-eb/metalsmith-remark/issues/19\tO\n\t\n@wooorm\tB-User_Name\t@wooorm\tO\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\nany\tO\tany\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nreleasing\tO\treleasing\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\na\tO\ta\tO\npatch\tO\tpatch\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\nor\tO\tor\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\nsuggest\tO\tsuggest\tO\na\tO\ta\tO\nmajor\tO\tmajor\tO\nversion\tO\tversion\tO\ninstead\tO\tinstead\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/36\tO\thttps://github.com/smirarab/pasta/issues/36\tO\n\t\nHello\tO\tHello\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nencountering\tO\tencountering\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nwhen\tO\twhen\tO\nattemping\tO\tattemping\tO\nto\tO\tto\tO\nanalyze\tO\tanalyze\tO\na\tO\ta\tO\nFASTA\tB-Application\tFASTA\tO\ncollection\tO\tcollection\tO\nusing\tO\tusing\tO\nrun_pasta_gui.py\tB-File_Name\trun_pasta_gui.py\tO\n:\tO\t:\tO\n\t\nPASTA\tB-Error_Name\tPASTA\tO\nERROR\tI-Error_Name\tERROR\tO\n:\tO\t:\tO\nPASTA\tB-Application\tPASTA\tO\nis\tO\tis\tO\nexiting\tO\texiting\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nfile\tO\tfile\tO\n\"\tO\t\"\tO\n/home/nadaelnour/PASTA/pasta/tmpFXAY6D_internal.cfg\tO\t/home/nadaelnour/PASTA/pasta/tmpFXAY6D_internal.cfg\tO\n\"\tO\t\"\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nappear\tO\tappear\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nconfiguration\tO\tconfiguration\tO\nfile\tO\tfile\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nlacks\tO\tlacks\tO\nsection\tO\tsection\tO\nheaders\tO\theaders\tO\n.\tO\t.\tO\n\t\nJob\tB-Library_Class\tJob\tO\npastajob\tB-Variable_Name\tpastajob\tO\nis\tO\tis\tO\nfinished\tO\tfinished\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/5\tO\thttps://github.com/op-jenkins/op-build/issues/5\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark/issues/18\tO\thttps://github.com/ben-eb/metalsmith-remark/issues/18\tO\n\t\nHello\tO\tHello\tO\nlovely\tO\tlovely\tO\nhumans\tO\thumans\tO\n,\tO\t,\tO\n\t\nremark\tB-Library\tremark\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n5.0.1\tB-Version\t5.0.1\tO\n.\tO\t.\tO\n\t\nState\tO\tState\tO\n\t\n\t\nUpdate\tO\tUpdate\tO\n:rocket\tO\t:rocket\tO\n:\tO\t:\tO\n\t\n\t\nDependency\tO\tDependency\tO\n\t\n\t\n\t\nremark\tB-Library\tremark\tO\n\t\n\t\nNew\tO\tNew\tO\nversion\tO\tversion\tO\n\t\n\t\n\t\n5.0.1\tB-Version\t5.0.1\tO\n\t\n\t\nType\tO\tType\tO\n\t\n\t\n\t\ndependency\tO\tdependency\tO\n\t\n\t\nThis\tO\tThis\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nWithout\tO\tWithout\tO\naccepting\tO\taccepting\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nnew\tO\tnew\tO\nfeatures\tO\tfeatures\tO\n,\tO\t,\tO\nfixes\tO\tfixes\tO\nand\tO\tand\tO\nperf\tO\tperf\tO\nimprovements\tO\timprovements\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmaintainers\tO\tmaintainers\tO\nworked\tO\tworked\tO\non\tO\ton\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nget\tO\tget\tO\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nremark\tB-Library\tremark\tO\n.\tO\t.\tO\n\t\nGiven\tO\tGiven\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndecent\tO\tdecent\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\n,\tO\t,\tO\na\tO\ta\tO\npassing\tO\tpassing\tO\nbuild\tO\tbuild\tO\nis\tO\tis\tO\na\tO\ta\tO\nstrong\tO\tstrong\tO\nindicator\tO\tindicator\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nby\tO\tby\tO\nmerging\tO\tmerging\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nchange\tO\tchange\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nthis\tO\tthis\tO\nbranch\tO\tbranch\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimprove\tO\timprove\tO\nthese\tO\tthese\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n?\tO\t?\tO\n\t\nDid\tO\tDid\tO\nI\tO\tI\tO\nreport\tO\treport\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nunsure\tO\tunsure\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nfrequently\tO\tfrequently\tO\nasked\tO\tasked\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\na\tO\ta\tO\nbot\tO\tbot\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\nteach\tO\tteach\tO\nme\tO\tme\tO\nnew\tO\tnew\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nthem\tO\tthem\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\nrock\tO\trock\tO\n!\tO\t!\tO\n\t\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\ngreenkeeper.io\tB-Application\tgreenkeeper.io\tO\n.\tO\t.\tO\n\t\nTired\tO\tTired\tO\nof\tO\tof\tO\nseeing\tO\tseeing\tO\nthis\tO\tthis\tO\nsponsor\tO\tsponsor\tO\nmessage\tO\tmessage\tO\n?\tO\t?\tO\n\t\n:zap\tO\t:zap\tO\n:\tO\t:\tO\ngreenkeeper\tB-Code_Block\tgreenkeeper\tB-Code_Block\nupgrade\tI-Code_Block\tupgrade\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nStarkMike/Lab3\tO\tStarkMike/Lab3\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/StarkMike/Lab3\tO\thttps://github.com/StarkMike/Lab3\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nReadme\tB-File_Name\tReadme\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/2\tO\thttps://github.com/smirarab/pasta/issues/2\tO\n\t\nmasking\tO\tmasking\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nfor\tO\tfor\tO\nraxml\tB-Application\traxml\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark\tO\thttps://github.com/ben-eb/metalsmith-remark\tO\n\t\nmetalsmith-remark\tO\tmetalsmith-remark\tO\n\t\nConvert\tO\tConvert\tO\nmarkdown\tB-Language\tmarkdown\tO\nto\tO\tto\tO\nhtml\tB-Language\thtml\tO\nwith\tO\twith\tO\nremark\tO\tremark\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nplugin\tO\tplugin\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n\t\nremark\tO\tremark\tO\ntracker\tO\ttracker\tO\n.\tO\t.\tO\n\t\nInstall\tO\tInstall\tO\n\t\nWith\tO\tWith\tO\nnpm\tB-Application\tnpm\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_181807\tI-Code_Block\tGR_181807\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExample\tO\tExample\tO\n\t\nThe\tO\tThe\tO\nremark-html\tB-Library\tremark-html\tO\nplugin\tO\tplugin\tO\nis\tO\tis\tO\nbundled\tO\tbundled\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nautomatically\tO\tautomatically\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_181808\tI-Code_Block\tGR_181808\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAdd\tO\tAdd\tO\nfurther\tO\tfurther\tO\nplugins\tO\tplugins\tO\nby\tO\tby\tO\npassing\tO\tpassing\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_181809\tI-Code_Block\tGR_181809\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nContributing\tO\tContributing\tO\n\t\nPull\tO\tPull\tO\nrequests\tO\trequests\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nfunctionality\tO\tfunctionality\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nplease\tO\tplease\tO\nadd\tO\tadd\tO\nunit\tO\tunit\tO\ntests\tO\ttests\tO\nto\tO\tto\tO\ncover\tO\tcover\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nLicense\tO\tLicense\tO\n\t\nMIT\tB-Licence\tMIT\tO\n©\tO\t©\tO\nBen\tB-User_Name\tBen\tO\nBriggs\tI-User_Name\tBriggs\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/33\tO\thttps://github.com/svenstaro/flamejam/issues/33\tO\n\t\nSimple\tO\tSimple\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nChange\tO\tChange\tO\nwill\tO\twill\tO\nprohibit\tO\tprohibit\tO\nusernames\tO\tusernames\tO\ncontaining\tO\tcontaining\tO\ncharacters\tO\tcharacters\tO\nthat\tO\tthat\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nregular\tB-Algorithm\tregular\tO\nexpression\tI-Algorithm\texpression\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/8\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/8\tO\n\t\nThe\tO\tThe\tO\ncurrent\tO\tcurrent\tO\nplugins\tO\tplugins\tO\n*\tB-Application\t*\tO\nsqs\tI-Application\tsqs\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\n*\tB-Application\t*\tO\ns3\tI-Application\ts3\tO\nplugins\tO\tplugins\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\napi\tB-Library\tapi\tO\nv1\tB-Version\tv1\tO\n,\tO\t,\tO\nAmazon\tB-Organization\tAmazon\tO\nhave\tO\thave\tO\nreleased\tO\treleased\tO\na\tO\ta\tO\n2.0\tB-Version\t2.0\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\nlibraries\tO\tlibraries\tO\nand\tO\tand\tO\ndid\tO\tdid\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nchanges\tO\tchanges\tO\nthat\tO\tthat\tO\ncould\tO\tcould\tO\npotentially\tO\tpotentially\tO\nbreaks\tO\tbreaks\tO\nthe\tO\tthe\tO\nplugins\tO\tplugins\tO\nwe\tO\twe\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\nsto\tO\tsto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\nsince\tO\tsince\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\ndoing\tO\tdoing\tO\nbugfixes\tO\tbugfixes\tO\nin\tO\tin\tO\nv1\tB-Version\tv1\tO\n.\tO\t.\tO\n\t\nref\tO\tref\tO\n#7\tO\t#7\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ntkgjatqdfei/personal\tO\ttkgjatqdfei/personal\tO\n-hub\tO\t-hub\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/tkgjatqdfei/personal-hub\tO\thttps://github.com/tkgjatqdfei/personal-hub\tO\n\t\nsome\tO\tsome\tO\nbatch\tO\tbatch\tO\nfiles\tO\tfiles\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nharshnarang8/AcaConnectFour\tO\tharshnarang8/AcaConnectFour\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/harshnarang8/AcaConnectFour/issues/2\tO\thttps://github.com/harshnarang8/AcaConnectFour/issues/2\tO\n\t\nImplementation\tO\tImplementation\tO\nin\tO\tin\tO\njava\tB-Language\tjava\tO\n.\tO\t.\tO\n\t\nAI\tO\tAI\tO\nprogramming\tO\tprogramming\tO\nstill\tO\tstill\tO\nleft\tO\tleft\tO\nas\tO\tas\tO\nyet\tO\tyet\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/79\tO\thttps://github.com/spacetelescope/specview/issues/79\tO\n\t\nClosing\tO\tClosing\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nto\tO\tto\tO\narchive\tO\tarchive\tO\nthis\tO\tthis\tO\nrepo\tO\trepo\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nstill\tO\tstill\tO\nbe\tO\tbe\tO\nreadable\tO\treadable\tO\nif\tO\tif\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoso/flexgrid\tO\tmoso/flexgrid\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moso/flexgrid/issues/5\tO\thttps://github.com/moso/flexgrid/issues/5\tO\n\t\nAdd\tO\tAdd\tO\njustify-content\tB-Code_Block\tjustify-content\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nspace-evenly\tI-Code_Block\tspace-evenly\tI-Code_Block\nas\tO\tas\tO\nexperimental\tO\texperimental\tO\nfeature\tO\tfeature\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n\t\nMDN\tO\tMDN\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/34\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/34\tO\n\t\nThe\tO\tThe\tO\nmissing\tO\tmissing\tO\nGoogleARCoreServices\tB-Application\tGoogleARCoreServices\tO\nplugin\tI-Application\tplugin\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfixed\tO\tfixed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncoming\tO\tcoming\tO\nUnreal\tB-Application\tUnreal\tO\n4.20.3\tB-Version\t4.20.3\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\neither\tO\teither\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\none\tO\tone\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\nGoogle\tB-Organization\tGoogle\tO\n's\tO\t's\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nrelease\tO\trelease\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nrelease\tO\trelease\tO\nnote\tO\tnote\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nrepo\tO\trepo\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nget\tO\tget\tO\na\tO\ta\tO\n404\tB-Error_Name\t404\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\ngithub\tB-Website\tgithub\tO\naccount\tO\taccount\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nUnreal\tB-Application\tUnreal\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\nguide\tO\tguide\tO\nhere\tO\there\tO\nto\tO\tto\tO\ngain\tO\tgain\tO\naccess\tO\taccess\tO\n:\tO\t:\tO\nhttps://www.unrealengine.com/en-US/ue4-on-github\tO\thttps://www.unrealengine.com/en-US/ue4-on-github\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nOpenPrograms/MiscPrograms\tO\tOpenPrograms/MiscPrograms\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/OpenPrograms/MiscPrograms/issues/2\tO\thttps://github.com/OpenPrograms/MiscPrograms/issues/2\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\ncommits\tO\tcommits\tO\nfor\tO\tfor\tO\nwhat\tO\twhat\tO\ngot\tO\tgot\tO\nchanged\tO\tchanged\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoso/flexgrid\tO\tmoso/flexgrid\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moso/flexgrid/issues/1\tO\thttps://github.com/moso/flexgrid/issues/1\tO\n\t\nFixed\tO\tFixed\tO\nin\tO\tin\tO\n25e5d02\tO\t25e5d02\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/35\tO\thttps://github.com/rpcope1/Hantek6022API/issues/35\tO\n\t\nI\tO\tI\tO\nfinally\tO\tfinally\tO\ngot\tO\tgot\tO\naround\tO\taround\tO\nplaying\tO\tplaying\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nOscilloscope\tB-Device\tOscilloscope\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\npatch\tO\tpatch\tO\n:\tO\t:\tO\nhttps://github.com/jhoenicke/Hantek6022API/commit/6dfbf5261fcc69b01ae111ea29c98655fe55bbe7\tO\thttps://github.com/jhoenicke/Hantek6022API/commit/6dfbf5261fcc69b01ae111ea29c98655fe55bbe7\tO\n\t\nThe\tO\tThe\tO\nsample\tO\tsample\tO\nrate\tO\trate\tO\n0x1e\tO\t0x1e\tO\n=\tO\t=\tO\n30\tO\t30\tO\nwas\tO\twas\tO\ntoo\tO\ttoo\tO\nhigh\tO\thigh\tO\nfor\tO\tfor\tO\nisochronous\tO\tisochronous\tO\ntransfers\tO\ttransfers\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirmware\tO\tfirmware\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nreflashed\tO\treflashed\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nleads\tO\tleads\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npython\tB-Language\tpython\tO\nlibrary\tO\tlibrary\tO\nnot\tO\tnot\tO\nsupporting\tO\tsupporting\tO\nthe\tO\tthe\tO\nsingle\tO\tsingle\tO\nchannel\tO\tchannel\tO\nmode\tO\tmode\tO\n(\tO\t(\tO\nmaybe\tO\tmaybe\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\npython\tB-Language\tpython\tO\nlibrary\tO\tlibrary\tO\nto\tO\tto\tO\nautodetect\tO\tautodetect\tO\nsingle\tO\tsingle\tO\nchannel\tO\tchannel\tO\nsupport\tO\tsupport\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSingle\tO\tSingle\tO\nchannel\tO\tchannel\tO\nis\tO\tis\tO\nimportant\tO\timportant\tO\nto\tO\tto\tO\nget\tO\tget\tO\n24Msamples/s\tO\t24Msamples/s\tO\n,\tO\t,\tO\nand\tO\tand\tO\nexplains\tO\texplains\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\ngot\tO\tgot\tO\n12288000\tO\t12288000\tO\nsamples/s\tO\tsamples/s\tO\n(\tO\t(\tO\n3072\tO\t3072\tO\nbytes\tO\tbytes\tO\nper\tO\tper\tO\n1/8\tO\t1/8\tO\nms\tO\tms\tO\ndivided\tO\tdivided\tO\nby\tO\tby\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nchannels\tO\tchannels\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsergio/ophmisu\tO\twsergio/ophmisu\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsergio/ophmisu/issues/1\tO\thttps://github.com/wsergio/ophmisu/issues/1\tO\n\t\nNo\tO\tNo\tO\nworries\tO\tworries\tO\n.\tO\t.\tO\n\t\nFigured\tO\tFigured\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmongrate/mongrate.com\tO\tmongrate/mongrate.com\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mongrate/mongrate.com/issues/1\tO\thttps://github.com/mongrate/mongrate.com/issues/1\tO\n\t\nOops\tO\tOops\tO\n!\tO\t!\tO\n\t\nWill\tO\tWill\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nback\tO\tback\tO\nat\tO\tat\tO\nmy\tO\tmy\tO\nlaptop\tO\tlaptop\tO\nin\tO\tin\tO\n10\tO\t10\tO\nmins\tO\tmins\tO\n:)\tO\t:)\tO\nOn\tO\tOn\tO\n23\tO\t23\tO\nJun\tO\tJun\tO\n2016\tO\t2016\tO\n13:07\tO\t13:07\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nAleksandr\tB-User_Name\tAleksandr\tO\nVolochnev\tI-User_Name\tVolochnev\tO\n\"\tO\t\"\tO\nnotifications@github.com\tO\tnotifications@github.com\tO\nwrote\tO\twrote\tO\n:\tO\t:\tO\n\t\n[\tO\t[\tO\nimage\tO\timage\tO\n:\tO\t:\tO\nimage\tO\timage\tO\n]\tO\t]\tO\nhttps://cloud.githubusercontent.com/assets/1742301/16302512/d546c7aa-394b-11e6-92ff-67e648b08123.png\tO\thttps://cloud.githubusercontent.com/assets/1742301/16302512/d546c7aa-394b-11e6-92ff-67e648b08123.png\tO\n\t\n—\tO\t—\tO\nYou\tO\tYou\tO\nare\tO\tare\tO\nreceiving\tO\treceiving\tO\nthis\tO\tthis\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsubscribed\tO\tsubscribed\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nReply\tO\tReply\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nemail\tO\temail\tO\ndirectly\tO\tdirectly\tO\n,\tO\t,\tO\nview\tO\tview\tO\nit\tO\tit\tO\non\tO\ton\tO\nGitHub\tO\tGitHub\tO\nhttps://github.com/mongrate/mongrate.com/issues/1\tO\thttps://github.com/mongrate/mongrate.com/issues/1\tO\n,\tO\t,\tO\nor\tO\tor\tO\nmute\tO\tmute\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nhttps://github.com/notifications/unsubscribe/AAYTgo-Hjqexs7Mx1xBJe7sMCd6QJHOuks5qOncPgaJpZM4I8vTF\tO\thttps://github.com/notifications/unsubscribe/AAYTgo-Hjqexs7Mx1xBJe7sMCd6QJHOuks5qOncPgaJpZM4I8vTF\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/47\tO\thttps://github.com/mapbox/tile-count/issues/47\tO\n\t\nhttps://github.com/miloyip/dtoa-benchmark/issues/7\tO\thttps://github.com/miloyip/dtoa-benchmark/issues/7\tO\n\t\ncommit\tO\tcommit\tO\nfe550f38669fe0f488926c1ef0feb6c101f586d6\tO\tfe550f38669fe0f488926c1ef0feb6c101f586d6\tO\nAuthor\tO\tAuthor\tO\n:\tO\t:\tO\nEli\tB-User_Name\tEli\tO\nFidler\tI-User_Name\tFidler\tO\nefidler@topologyinc.com\tO\tefidler@topologyinc.com\tO\n\t\nDate\tO\tDate\tO\n:\tO\t:\tO\nTue\tO\tTue\tO\nMay\tO\tMay\tO\n31\tO\t31\tO\n11:51:37\tO\t11:51:37\tO\n2016\tO\t2016\tO\n-0400\tO\t-0400\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_58298\tI-Code_Block\tGR_58298\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/169\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/169\tO\n\t\nThat\tO\tThat\tO\nsounds\tO\tsounds\tO\nmore\tO\tmore\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\n.\tO\t.\tO\n\t\nBTW\tO\tBTW\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvisible\tO\tvisible\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nis\tO\tis\tO\nunlikely\tO\tunlikely\tO\nto\tO\tto\tO\nhappen\tO\thappen\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nManuelDeLeon/vmc2jsx\tO\tManuelDeLeon/vmc2jsx\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/3\tO\thttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/3\tO\n\t\nUpdate\tO\tUpdate\tO\nto\tO\tto\tO\nviewmodel-react\tB-Library\tviewmodel-react\tB-Code_Block\nv2.4.1\tB-Version\tv2.4.1\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\numebayashi/jQuery.Gantt\tO\tumebayashi/jQuery.Gantt\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/umebayashi/jQuery.Gantt\tO\thttps://github.com/umebayashi/jQuery.Gantt\tO\n\t\nDemo\tO\tDemo\tO\nand\tO\tand\tO\nDocumentation\tO\tDocumentation\tO\n\t\njQuery\tB-Library\tjQuery\tO\nGantt\tB-Application\tGantt\tO\nChart\tI-Application\tChart\tO\nis\tO\tis\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nchart\tB-User_Interface_Element\tchart\tO\nthat\tO\tthat\tO\nimplements\tO\timplements\tO\ngantt\tO\tgantt\tO\nfunctionality\tO\tfunctionality\tO\nas\tO\tas\tO\na\tO\ta\tO\njQuery\tB-Library\tjQuery\tO\ncomponent\tO\tcomponent\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nable\tO\table\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nRead\tO\tRead\tO\njson\tB-File_Type\tjson\tO\ndata\tO\tdata\tO\n\t\nPaging\tO\tPaging\tO\nresults\tO\tresults\tO\n\t\nDisplay\tO\tDisplay\tO\ndifferent\tO\tdifferent\tO\ncolours\tO\tcolours\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\ntask\tO\ttask\tO\n\t\nDisplay\tO\tDisplay\tO\nshort\tO\tshort\tO\ndescription\tO\tdescription\tO\nas\tO\tas\tO\nhints\tO\thints\tO\n\t\nMark\tO\tMark\tO\nholidays\tO\tholidays\tO\n\t\nPlugin\tO\tPlugin\tO\nwas\tO\twas\tO\ntested\tO\ttested\tO\nand\tO\tand\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\non\tO\ton\tO\n:\tO\t:\tO\n\t\nFirefox\tB-Application\tFirefox\tO\n4+\tB-Version\t4+\tO\n\t\nChrome\tB-Application\tChrome\tO\n13+\tB-Version\t13+\tO\n\t\nSafari\tB-Application\tSafari\tO\n5+\tB-Version\t5+\tO\n\t\nOpera\tB-Application\tOpera\tO\n9+\tB-Version\t9+\tO\n\t\nIE\tB-Application\tIE\tO\n8+\tB-Version\t8+\tO\n\t\nDistributed\tO\tDistributed\tO\nunder\tO\tunder\tO\nan\tO\tan\tO\nMIT\tB-Licence\tMIT\tO\nlicense\tI-Licence\tlicense\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/3\tO\thttps://github.com/op-jenkins/op-build/issues/3\tO\n\t\nretest\tO\tretest\tO\nthis\tO\tthis\tO\nplease\tO\tplease\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2/issues/2\tO\thttps://github.com/thehyve/puppet-i2b2/issues/2\tO\n\t\nForward\tO\tForward\tO\nall\tO\tall\tO\ntrafic\tO\ttrafic\tO\nto\tO\tto\tO\nsecure\tO\tsecure\tO\nconnections\tO\tconnections\tO\n.\tO\t.\tO\n\t\nChanged\tO\tChanged\tO\nthe\tO\tthe\tO\naxis2\tB-Application\taxis2\tO\nadmin\tO\tadmin\tO\npassword\tO\tpassword\tO\nfro\tO\tfro\tO\nmthe\tO\tmthe\tO\ndefault\tO\tdefault\tO\nto\tO\tto\tO\nsomething\tO\tsomething\tO\nnot\tO\tnot\tO\nt\tO\tt\tO\nbe\tO\tbe\tO\nguessed\tO\tguessed\tO\n.\tO\t.\tO\n\t\nIncreased\tO\tIncreased\tO\nthe\tO\tthe\tO\nmax\tO\tmax\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nconnections\tO\tconnections\tO\nfor\tO\tfor\tO\npostgreSQL\tB-Application\tpostgreSQL\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprateek-kacker/TensorFlow_CNN\tO\tprateek-kacker/TensorFlow_CNN\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/prateek-kacker/TensorFlow_CNN\tO\thttps://github.com/prateek-kacker/TensorFlow_CNN\tO\n\t\n#CNN\tB-Algorithm\t#CNN\tO\nTensorFLow\tB-Library\tTensorFLow\tO\nCIFAR-10\tB-Data_Set_Name\tCIFAR-10\tO\nis\tO\tis\tO\na\tO\ta\tO\ncommon\tO\tcommon\tO\nbenchmark\tO\tbenchmark\tO\nin\tO\tin\tO\nmachine\tO\tmachine\tO\nlearning\tO\tlearning\tO\nfor\tO\tfor\tO\nimage\tB-User_Interface_Element\timage\tO\nrecognition\tO\trecognition\tO\n.\tO\t.\tO\n\t\nLink\tO\tLink\tO\n:\tO\t:\tO\nhttp://www.cs.toronto.edu/~kriz/cifar.html\tO\thttp://www.cs.toronto.edu/~kriz/cifar.html\tO\n\t\nOverview\tO\tOverview\tO\n\t\nCode\tO\tCode\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ndirectory\tO\tdirectory\tO\ndemonstrates\tO\tdemonstrates\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nTensorFlow\tB-Library\tTensorFlow\tO\nto\tO\tto\tO\ntrain\tO\ttrain\tO\nand\tO\tand\tO\nevaluate\tO\tevaluate\tO\na\tO\ta\tO\nconvolutional\tB-Algorithm\tconvolutional\tO\nneural\tI-Algorithm\tneural\tO\nnetwork\tI-Algorithm\tnetwork\tO\n(\tO\t(\tO\nCNN\tB-Algorithm\tCNN\tO\n)\tO\t)\tO\non\tO\ton\tO\nboth\tO\tboth\tO\nCPU\tB-Device\tCPU\tO\nand\tO\tand\tO\nGPU\tB-Device\tGPU\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nalso\tO\talso\tO\ndemonstrate\tO\tdemonstrate\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ntrain\tO\ttrain\tO\na\tO\ta\tO\nCNN\tB-Algorithm\tCNN\tO\nover\tO\tover\tO\nmultiple\tO\tmultiple\tO\nGPUs\tB-Device\tGPUs\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\nUbuntu/Linux\tB-Operating_System\tUbuntu/Linux\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12116\tI-Code_Block\tGR_12116\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nModel\tO\tModel\tO\nArchitecture\tO\tArchitecture\tO\n\t\nThe\tO\tThe\tO\nmodel\tO\tmodel\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nCIFAR-10\tB-Data_Set_Name\tCIFAR-10\tO\ntutorial\tO\ttutorial\tO\nis\tO\tis\tO\na\tO\ta\tO\nmulti-layer\tO\tmulti-layer\tO\narchitecture\tO\tarchitecture\tO\nconsisting\tO\tconsisting\tO\nof\tO\tof\tO\nalternating\tO\talternating\tO\nconvolutions\tO\tconvolutions\tO\nand\tO\tand\tO\nnonlinearities\tO\tnonlinearities\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nlayers\tO\tlayers\tO\nare\tO\tare\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nfully\tO\tfully\tO\nconnected\tO\tconnected\tO\nlayers\tO\tlayers\tO\nleading\tO\tleading\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nsoftmax\tB-Algorithm\tsoftmax\tO\nclassifier\tO\tclassifier\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmodel\tO\tmodel\tO\nfollows\tO\tfollows\tO\nthe\tO\tthe\tO\narchitecture\tO\tarchitecture\tO\ndescribed\tO\tdescribed\tO\nby\tO\tby\tO\nAlex\tB-User_Name\tAlex\tO\nKrizhevsky\tI-User_Name\tKrizhevsky\tO\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ndifferences\tO\tdifferences\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nfew\tO\tfew\tO\nlayers\tO\tlayers\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmodel\tO\tmodel\tO\nachieves\tO\tachieves\tO\na\tO\ta\tO\npeak\tO\tpeak\tO\nperformance\tO\tperformance\tO\nof\tO\tof\tO\nabout\tO\tabout\tO\n86%\tO\t86%\tO\naccuracy\tO\taccuracy\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nhours\tO\thours\tO\nof\tO\tof\tO\ntraining\tO\ttraining\tO\ntime\tO\ttime\tO\non\tO\ton\tO\na\tO\ta\tO\nGPU\tB-Device\tGPU\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nsee\tO\tsee\tO\nbelow\tO\tbelow\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\n1,068,298\tO\t1,068,298\tO\nlearnable\tO\tlearnable\tO\nparameters\tO\tparameters\tO\nand\tO\tand\tO\nrequires\tO\trequires\tO\nabout\tO\tabout\tO\n19.5M\tO\t19.5M\tO\nmultiply-add\tO\tmultiply-add\tO\noperations\tO\toperations\tO\nto\tO\tto\tO\ncompute\tO\tcompute\tO\ninference\tO\tinference\tO\non\tO\ton\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nOrganization\tO\tOrganization\tO\n\t\nFile\tO\tFile\tO\n\t\nPurpose\tO\tPurpose\tO\n\t\ncifar10_input.py\tB-File_Name\tcifar10_input.py\tO\n\t\nReads\tO\tReads\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\nCIFAR-10\tB-Data_Set_Name\tCIFAR-10\tO\nbinary\tB-File_Type\tbinary\tO\nfile\tO\tfile\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\ncifar10.py\tB-File_Name\tcifar10.py\tO\n\t\nBuilds\tO\tBuilds\tO\nthe\tO\tthe\tO\nCIFAR-10\tB-Data_Set_Name\tCIFAR-10\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\ncifar10_train.py\tB-File_Name\tcifar10_train.py\tO\n\t\nTrains\tO\tTrains\tO\na\tO\ta\tO\nCIFAR-10\tB-Data_Set_Name\tCIFAR-10\tO\nmodel\tO\tmodel\tO\non\tO\ton\tO\na\tO\ta\tO\nCPU\tB-Device\tCPU\tO\nor\tO\tor\tO\nGPU\tB-Device\tGPU\tO\n.\tO\t.\tO\n\t\ncifar10_multi_gpu_train.py\tB-File_Name\tcifar10_multi_gpu_train.py\tO\n\t\nTrains\tO\tTrains\tO\na\tO\ta\tO\nCIFAR-10\tB-Data_Set_Name\tCIFAR-10\tO\nmodel\tO\tmodel\tO\non\tO\ton\tO\nmultiple\tO\tmultiple\tO\nGPUs\tB-Device\tGPUs\tO\n.\tO\t.\tO\n\t\ncifar10_eval.py\tB-File_Name\tcifar10_eval.py\tO\n\t\nEvaluates\tO\tEvaluates\tO\nthe\tO\tthe\tO\npredictive\tO\tpredictive\tO\nperformance\tO\tperformance\tO\nof\tO\tof\tO\nCIFAR10\tB-Data_Set_Name\tCIFAR10\tO\n\t\nCIFAR-10\tB-Data_Set_Name\tCIFAR-10\tO\nModel\tO\tModel\tO\n\t\nThe\tO\tThe\tO\nCIFAR-10\tB-Data_Set_Name\tCIFAR-10\tO\nnetwork\tO\tnetwork\tO\nis\tO\tis\tO\nlargely\tO\tlargely\tO\ncontained\tO\tcontained\tO\nin\tO\tin\tO\ncifar10.py\tB-File_Name\tcifar10.py\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncomplete\tO\tcomplete\tO\ntraining\tO\ttraining\tO\ngraph\tB-Data_Structure\tgraph\tO\ncontains\tO\tcontains\tO\nroughly\tO\troughly\tO\n765\tO\t765\tO\noperations\tO\toperations\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nfind\tO\tfind\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nmost\tO\tmost\tO\nreusable\tO\treusable\tO\nby\tO\tby\tO\nconstructing\tO\tconstructing\tO\nthe\tO\tthe\tO\ngraph\tB-Data_Structure\tgraph\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmodules\tO\tmodules\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12117\tI-Code_Block\tGR_12117\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nModel\tO\tModel\tO\nInputs\tO\tInputs\tO\n\t\nThe\tO\tThe\tO\ninput\tO\tinput\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nis\tO\tis\tO\nbuilt\tO\tbuilt\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nfunctions\tO\tfunctions\tO\ninputs()\tB-Library_Function\tinputs()\tB-Code_Block\nand\tO\tand\tO\ndistorted_inputs()\tB-Library_Function\tdistorted_inputs()\tB-Code_Block\nwhich\tO\twhich\tO\nread\tO\tread\tO\nimages\tB-User_Interface_Element\timages\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nCIFAR-10\tB-Data_Set_Name\tCIFAR-10\tO\nbinary\tB-File_Type\tbinary\tO\ndata\tO\tdata\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nfiles\tO\tfiles\tO\ncontain\tO\tcontain\tO\nfixed\tO\tfixed\tO\nbyte\tO\tbyte\tO\nlength\tO\tlength\tO\nrecords\tO\trecords\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwe\tO\twe\tO\nuse\tO\tuse\tO\ntf.FixedLengthRecordReader\tB-Library_Class\ttf.FixedLengthRecordReader\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nimages\tB-User_Interface_Element\timages\tO\nare\tO\tare\tO\nprocessed\tO\tprocessed\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12118\tI-Code_Block\tGR_12118\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFor\tO\tFor\tO\ntraining\tO\ttraining\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nadditionally\tO\tadditionally\tO\napply\tO\tapply\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\nrandom\tO\trandom\tO\ndistortions\tO\tdistortions\tO\nto\tO\tto\tO\nartificially\tO\tartificially\tO\nincrease\tO\tincrease\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nset\tO\tset\tO\nsize\tO\tsize\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12119\tI-Code_Block\tGR_12119\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nModel\tO\tModel\tO\nPredicition\tO\tPredicition\tO\n\t\nThe\tO\tThe\tO\nprediction\tO\tprediction\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nis\tO\tis\tO\nconstructed\tO\tconstructed\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ninference()\tB-Library_Function\tinference()\tB-Code_Block\nfunction\tO\tfunction\tO\nwhich\tO\twhich\tO\nadds\tO\tadds\tO\noperations\tO\toperations\tO\nto\tO\tto\tO\ncompute\tO\tcompute\tO\nthe\tO\tthe\tO\nlogits\tO\tlogits\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npredictions\tO\tpredictions\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nis\tO\tis\tO\norganized\tO\torganized\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nLayer\tO\tLayer\tO\nName\tO\tName\tO\n\t\nDescription\tO\tDescription\tO\n\t\nconv1\tO\tconv1\tO\n\t\nconvolution\tB-Algorithm\tconvolution\tO\nand\tO\tand\tO\nrectified\tB-Algorithm\trectified\tO\nlinear\tI-Algorithm\tlinear\tO\nactivation\tI-Algorithm\tactivation\tO\n.\tO\t.\tO\n\t\npool1\tO\tpool1\tO\n\t\nmax\tB-Algorithm\tmax\tO\npooling\tI-Algorithm\tpooling\tO\n.\tO\t.\tO\n\t\nconv2\tO\tconv2\tO\n\t\nconvolution\tB-Algorithm\tconvolution\tO\nand\tO\tand\tO\nrectified\tB-Algorithm\trectified\tO\nlinear\tI-Algorithm\tlinear\tO\nactivation\tI-Algorithm\tactivation\tO\n.\tO\t.\tO\n\t\nnorm2\tO\tnorm2\tO\n\t\nlocal\tB-Algorithm\tlocal\tO\nresponse\tI-Algorithm\tresponse\tO\nnormalization\tI-Algorithm\tnormalization\tO\n.\tO\t.\tO\n\t\npool2\tO\tpool2\tO\n\t\nmax\tB-Algorithm\tmax\tO\npooling\tI-Algorithm\tpooling\tO\n.\tO\t.\tO\n\t\nlocal3\tO\tlocal3\tO\n\t\nfully\tB-Algorithm\tfully\tO\nconnected\tI-Algorithm\tconnected\tO\nlayer\tI-Algorithm\tlayer\tO\nwith\tO\twith\tO\nrectified\tB-Algorithm\trectified\tO\nlinear\tI-Algorithm\tlinear\tO\nactivation\tI-Algorithm\tactivation\tO\n.\tO\t.\tO\n\t\nlocal4\tO\tlocal4\tO\n\t\nfully\tB-Algorithm\tfully\tO\nconnected\tI-Algorithm\tconnected\tO\nlayer\tI-Algorithm\tlayer\tO\nwith\tO\twith\tO\nrectified\tB-Algorithm\trectified\tO\nlinear\tI-Algorithm\tlinear\tO\nactivation\tI-Algorithm\tactivation\tO\n.\tO\t.\tO\n\t\nsoftmax_linear\tB-Algorithm\tsoftmax_linear\tO\n\t\nlinear\tO\tlinear\tO\ntransformation\tO\ttransformation\tO\nto\tO\tto\tO\nproduce\tO\tproduce\tO\nlogits\tO\tlogits\tO\n.\tO\t.\tO\n\t\nModel\tO\tModel\tO\nTraining\tO\tTraining\tO\n\t\nThe\tO\tThe\tO\nusual\tO\tusual\tO\nmethod\tO\tmethod\tO\nfor\tO\tfor\tO\ntraining\tO\ttraining\tO\na\tO\ta\tO\nnetwork\tO\tnetwork\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nN-way\tO\tN-way\tO\nclassification\tO\tclassification\tO\nis\tO\tis\tO\nmultinomial\tB-Algorithm\tmultinomial\tO\nlogistic\tI-Algorithm\tlogistic\tO\nregression\tI-Algorithm\tregression\tO\n,\tO\t,\tO\naka\tO\taka\tO\n.\tO\t.\tO\n\t\nsoftmax\tB-Algorithm\tsoftmax\tO\nregression\tI-Algorithm\tregression\tO\n.\tO\t.\tO\n\t\nSoftmax\tB-Algorithm\tSoftmax\tO\nregression\tI-Algorithm\tregression\tO\napplies\tO\tapplies\tO\na\tO\ta\tO\nsoftmax\tB-Algorithm\tsoftmax\tO\nnonlinearity\tI-Algorithm\tnonlinearity\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnetwork\tO\tnetwork\tO\nand\tO\tand\tO\ncalculates\tO\tcalculates\tO\nthe\tO\tthe\tO\ncross-entropy\tB-Algorithm\tcross-entropy\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nnormalized\tO\tnormalized\tO\npredictions\tO\tpredictions\tO\nand\tO\tand\tO\na\tO\ta\tO\n1-hot\tB-Algorithm\t1-hot\tO\nencoding\tI-Algorithm\tencoding\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlabel\tO\tlabel\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nregularization\tO\tregularization\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nalso\tO\talso\tO\napply\tO\tapply\tO\nthe\tO\tthe\tO\nusual\tO\tusual\tO\nweight\tO\tweight\tO\ndecay\tO\tdecay\tO\nlosses\tO\tlosses\tO\nto\tO\tto\tO\nall\tO\tall\tO\nlearned\tO\tlearned\tO\nvariables\tO\tvariables\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nobjective\tO\tobjective\tO\nfunction\tO\tfunction\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsum\tO\tsum\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncross\tB-Algorithm\tcross\tO\nentropy\tI-Algorithm\tentropy\tO\nloss\tI-Algorithm\tloss\tO\nand\tO\tand\tO\nall\tO\tall\tO\nthese\tO\tthese\tO\nweight\tO\tweight\tO\ndecay\tO\tdecay\tO\nterms\tO\tterms\tO\n,\tO\t,\tO\nas\tO\tas\tO\nreturned\tO\treturned\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nloss()\tB-Library_Function\tloss()\tB-Code_Block\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nLaunching\tO\tLaunching\tO\nand\tO\tand\tO\nTraining\tO\tTraining\tO\nthe\tO\tthe\tO\nModel\tO\tModel\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nbuilt\tO\tbuilt\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nnow\tO\tnow\tO\nlaunch\tO\tlaunch\tO\nit\tO\tit\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ntraining\tO\ttraining\tO\noperation\tO\toperation\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\ncifar10_train.py\tB-File_Name\tcifar10_train.py\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12120\tI-Code_Block\tGR_12120\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12121\tI-Code_Block\tGR_12121\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nscript\tO\tscript\tO\nreports\tO\treports\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\nloss\tO\tloss\tO\nevery\tO\tevery\tO\n10\tO\t10\tO\nsteps\tO\tsteps\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nthe\tO\tthe\tO\nspeed\tO\tspeed\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nbatch\tO\tbatch\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nwas\tO\twas\tO\nprocessed\tO\tprocessed\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nfew\tO\tfew\tO\ncomments\tO\tcomments\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12122\tI-Code_Block\tGR_12122\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nfollowed\tO\tfollowed\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nsteps\tO\tsteps\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nnow\tO\tnow\tO\nstarted\tO\tstarted\tO\ntraining\tO\ttraining\tO\na\tO\ta\tO\nCIFAR-10\tB-Data_Set_Name\tCIFAR-10\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nCongratulations\tO\tCongratulations\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\nterminal\tO\tterminal\tO\ntext\tO\ttext\tO\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\ncifar10_train.py\tB-File_Name\tcifar10_train.py\tB-Code_Block\nprovides\tO\tprovides\tO\nminimal\tO\tminimal\tO\ninsight\tO\tinsight\tO\ninto\tO\tinto\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nis\tO\tis\tO\ntraining\tO\ttraining\tO\n.\tO\t.\tO\n\t\nEvaluating\tO\tEvaluating\tO\na\tO\ta\tO\nModel\tO\tModel\tO\n\t\nLet\tO\tLet\tO\nus\tO\tus\tO\nnow\tO\tnow\tO\nevaluate\tO\tevaluate\tO\nhow\tO\thow\tO\nwell\tO\twell\tO\nthe\tO\tthe\tO\ntrained\tO\ttrained\tO\nmodel\tO\tmodel\tO\nperforms\tO\tperforms\tO\non\tO\ton\tO\na\tO\ta\tO\nhold-out\tO\thold-out\tO\ndata\tO\tdata\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nis\tO\tis\tO\nevaluated\tO\tevaluated\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\ncifar10_eval.py\tB-File_Name\tcifar10_eval.py\tB-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nconstructs\tO\tconstructs\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ninference()\tB-Library_Function\tinference()\tB-Code_Block\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nuses\tO\tuses\tO\nall\tO\tall\tO\n10,000\tO\t10,000\tO\nimages\tB-User_Interface_Element\timages\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nevaluation\tO\tevaluation\tO\nset\tO\tset\tO\nof\tO\tof\tO\nCIFAR-10\tB-Data_Set_Name\tCIFAR-10\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncalculates\tO\tcalculates\tO\nthe\tO\tthe\tO\nprecision\tO\tprecision\tO\nat\tO\tat\tO\n1\tO\t1\tO\n:\tO\t:\tO\nhow\tO\thow\tO\noften\tO\toften\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nprediction\tO\tprediction\tO\nmatches\tO\tmatches\tO\nthe\tO\tthe\tO\ntrue\tO\ttrue\tO\nlabel\tO\tlabel\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nmonitor\tO\tmonitor\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nimproves\tO\timproves\tO\nduring\tO\tduring\tO\ntraining\tO\ttraining\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nevaluation\tO\tevaluation\tO\nscript\tO\tscript\tO\nruns\tO\truns\tO\nperiodically\tO\tperiodically\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\ncheckpoint\tO\tcheckpoint\tO\nfiles\tO\tfiles\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncifar10_train.py\tB-File_Name\tcifar10_train.py\tB-Code_Block\n.\tI-File_Name\t.\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12123\tI-Code_Block\tGR_12123\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12124\tI-Code_Block\tGR_12124\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLaunching\tO\tLaunching\tO\nand\tO\tand\tO\nTraining\tO\tTraining\tO\nthe\tO\tthe\tO\nModel\tO\tModel\tO\non\tO\ton\tO\nMultiple\tO\tMultiple\tO\nGPU\tB-Device\tGPU\tO\ncards\tO\tcards\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nseveral\tO\tseveral\tO\nGPU\tB-Device\tGPU\tO\ncards\tO\tcards\tO\ninstalled\tO\tinstalled\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nmachine\tO\tmachine\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\ntrain\tO\ttrain\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nfaster\tO\tfaster\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncifar10_multi_gpu_train.py\tB-File_Name\tcifar10_multi_gpu_train.py\tB-Code_Block\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\nvariation\tO\tvariation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntraining\tO\ttraining\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\nparallelizes\tO\tparallelizes\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nacross\tO\tacross\tO\nmultiple\tO\tmultiple\tO\nGPU\tB-Device\tGPU\tO\ncards\tO\tcards\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_12125\tI-Code_Block\tGR_12125\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nContributions\tO\tContributions\tO\n\t\nhttp://tensorflow.org/tutorials\tO\thttp://tensorflow.org/tutorials\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/39\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/39\tO\n\t\nLGTM\tO\tLGTM\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/libp2p/interface-record-store/issues/5\tO\thttps://github.com/libp2p/interface-record-store/issues/5\tO\n\t\nCreated\tO\tCreated\tO\nwith\tO\twith\tO\nhttps://github.com/dkhamsing/frankenstein\tO\thttps://github.com/dkhamsing/frankenstein\tO\n\t\nGitHub\tB-Website\tGitHub\tO\nCorrected\tO\tCorrected\tO\nURLs\tO\tURLs\tO\n\t\nWas\tO\tWas\tO\n\t\nNow\tO\tNow\tO\n\t\nhttps://github.com/diasdavid/interface-stream-muxer\tO\thttps://github.com/diasdavid/interface-stream-muxer\tO\n\t\nhttps://github.com/libp2p/interface-stream-muxer\tO\thttps://github.com/libp2p/interface-stream-muxer\tO\n\t\nhttps://github.com/diasdavid/node-ipfs-distributed-record-store\tO\thttps://github.com/diasdavid/node-ipfs-distributed-record-store\tO\n\t\nhttps://github.com/libp2p/js-libp2p-distributed-record-store\tO\thttps://github.com/libp2p/js-libp2p-distributed-record-store\tO\n\t\nhttps://github.com/diasdavid/node-ipfs-kad-record-store\tO\thttps://github.com/diasdavid/node-ipfs-kad-record-store\tO\n\t\nhttps://github.com/libp2p/js-libp2p-kad-record-store\tO\thttps://github.com/libp2p/js-libp2p-kad-record-store\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nandrewreeman/simpleSF_Player\tO\tandrewreeman/simpleSF_Player\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/andrewreeman/Simple-soundfile-player/issues/7\tO\thttps://github.com/andrewreeman/Simple-soundfile-player/issues/7\tO\n\t\nhttp://stackoverflow.com/questions/3597900/qsettings-file-chooser-should-remember-the-last-directory\tO\thttp://stackoverflow.com/questions/3597900/qsettings-file-chooser-should-remember-the-last-directory\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njkraemer/redmine_airbrake\tO\tjkraemer/redmine_airbrake\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jkraemer/redmine_airbrake/issues/2\tO\thttps://github.com/jkraemer/redmine_airbrake/issues/2\tO\n\t\nHi\tO\tHi\tO\n@jkraemer\tB-User_Name\t@jkraemer\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nlot\tO\tlot\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nadditional\tO\tadditional\tO\nredmine\tB-Application\tredmine\tO\nparameters\tO\tparameters\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\njson\tB-File_Type\tjson\tO\nbody\tO\tbody\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnotice\tO\tnotice\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\ncould\tO\tcould\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nin\tO\tin\tO\nour\tO\tour\tO\nairbrake\tB-Application\tairbrake\tO\ninitializer\tO\tinitializer\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_74089\tI-Code_Block\tGR_74089\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\nconfig\tO\tconfig\tO\ninformation\tO\tinformation\tO\nafter\tO\tafter\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nbody\tO\tbody\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nclean\tO\tclean\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\n?\tO\t?\tO\n\t\nShould\tO\tShould\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nPR\tO\tPR\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\n9818679544/hello\tO\t9818679544/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/9818679544/hello-world/issues/2\tO\thttps://github.com/9818679544/hello-world/issues/2\tO\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nexperience\tO\texperience\tO\non\tO\ton\tO\ngithub\tB-Website\tgithub\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlobbin/chrome\tO\tlobbin/chrome\tO\n-die2nitemapupdater\tO\t-die2nitemapupdater\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lobbin/chrome-die2nitemapupdater/issues/2\tO\thttps://github.com/lobbin/chrome-die2nitemapupdater/issues/2\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nalso\tO\talso\tO\ndisappears\tO\tdisappears\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nrefresh\tO\trefresh\tO\n\"\tO\t\"\tO\nlinks\tO\tlinks\tO\nand/or\tO\tand/or\tO\nauto-refresh\tO\tauto-refresh\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nauto-search\tO\tauto-search\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmadison-kerndt/off\tO\tmadison-kerndt/off\tO\n-on-guard-synesthesia\tO\t-on-guard-synesthesia\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/11\tO\thttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/11\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/23\tO\thttps://github.com/demigor/lex.db/issues/23\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npack\tO\tpack\tO\nyour\tO\tyour\tO\ndatabase\tO\tdatabase\tO\nfiles\tO\tfiles\tO\ninto\tO\tinto\tO\nLex.Db\tO\tLex.Db\tO\n\\\tO\t\\\tO\n(\tO\t(\tO\nDbName\tO\tDbName\tO\n)\tO\t)\tO\nproject\tO\tproject\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\ndatabase\tO\tdatabase\tO\nnamed\tO\tnamed\tO\n\"\tO\t\"\tO\nDemo\tO\tDemo\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\ncopy\tO\tcopy\tO\nall\tO\tall\tO\n*\tB-File_Type\t*\tO\n.data\tI-File_Type\t.data\tO\nand\tO\tand\tO\n*\tB-File_Type\t*\tO\n.index\tI-File_Type\t.index\tO\nfiles\tO\tfiles\tO\ninto\tO\tinto\tO\n(\tO\t(\tO\nYourProjectRoot\tO\tYourProjectRoot\tO\n)\tO\t)\tO\n\\Lex.Db\\Demo\tO\t\\Lex.Db\\Demo\tO\nfolder\tO\tfolder\tO\n,\tO\t,\tO\ninclude\tO\tinclude\tO\nall\tO\tall\tO\nthese\tO\tthese\tO\nfiles\tO\tfiles\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nset\tO\tset\tO\ntheir\tO\ttheir\tO\nBuild\tO\tBuild\tO\nAction\tO\tAction\tO\n->\tO\t->\tO\nContent\tO\tContent\tO\nand\tO\tand\tO\nCopy\tO\tCopy\tO\nto\tO\tto\tO\nOutput\tO\tOutput\tO\nDirectory\tO\tDirectory\tO\n->\tO\t->\tO\nCopy\tO\tCopy\tO\nif\tO\tif\tO\nnewer\tO\tnewer\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\napplication\tO\tapplication\tO\ndeployment\tO\tdeployment\tO\nfolder\tO\tfolder\tO\nin\tO\tin\tO\nWinRT\tB-Application\tWinRT\tO\nis\tO\tis\tO\nread\tO\tread\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nmodify\tO\tmodify\tO\nany\tO\tany\tO\ndata\tO\tdata\tO\nlocated\tO\tlocated\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmakeen-project/makeen\tO\tmakeen-project/makeen\tO\n-hapi\tO\t-hapi\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/viczam/makeen-hapi/issues/36\tO\thttps://github.com/viczam/makeen-hapi/issues/36\tO\n\t\n\t\nsimple\tO\tsimple\tO\n\t\nbehind\tO\tbehind\tO\nauthentication\tO\tauthentication\tO\n(\tO\t(\tO\nwith\tO\twith\tO\nsigned\tO\tsigned\tO\ndownloads\tO\tdownloads\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/5\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/5\tO\n\t\nI\tO\tI\tO\nadded\tO\tadded\tO\ntwo\tO\ttwo\tO\nquick\tO\tquick\tO\nand\tO\tand\tO\ndirty\tO\tdirty\tO\nfilters\tO\tfilters\tO\nthat\tO\tthat\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nrequire\tO\trequire\tO\nheavy\tO\theavy\tO\nlogic\tO\tlogic\tO\n,\tO\t,\tO\ngiven\tO\tgiven\tO\nthat\tO\tthat\tO\nevery\tO\tevery\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nESPN\tB-Organization\tESPN\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nsaw\tO\tsaw\tO\nwas\tO\twas\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nduplicate\tO\tduplicate\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\nwrong\tO\twrong\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nwhen\tO\twhen\tO\nwe\tO\twe\tO\nDO\tO\tDO\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n\t\nFirst\tO\tFirst\tO\n:\tO\t:\tO\nplay_count\tB-Variable_Name\tplay_count\tO\n=\tO\t=\tO\n0\tO\t0\tO\nfor\tO\tfor\tO\nplay\tO\tplay\tO\nin\tO\tin\tO\ndrive.Play_List\tB-Variable_Name\tdrive.Play_List\tO\n:\tO\t:\tO\nif\tO\tif\tO\nplay.Play_Type\tB-Variable_Name\tplay.Play_Type\tO\nin\tO\tin\tO\n[\tO\t[\tO\n'PASS'\tO\t'PASS'\tO\n,\tO\t,\tO\n'RUSH'\tO\t'RUSH'\tO\n,\tO\t,\tO\n'SACK'\tO\t'SACK'\tO\n]\tO\t]\tO\n:\tO\t:\tO\nplay_count\tB-Variable_Name\tplay_count\tO\n+\tO\t+\tO\n=\tO\t=\tO\n1\tO\t1\tO\nif\tO\tif\tO\ndrive.Plays\tB-Variable_Name\tdrive.Plays\tO\n!=\tO\t!=\tO\nplay_count\tB-Variable_Name\tplay_count\tO\nand\tO\tand\tO\ndrive.Plays\tB-Variable_Name\tdrive.Plays\tO\n>\tO\t>\tO\n0\tO\t0\tO\n:\tO\t:\tO\nprint\tO\tprint\tO\n\"\tO\t\"\tO\nPlay\tO\tPlay\tO\nnumber\tO\tnumber\tO\nmismatch\tO\tmismatch\tO\n\"\tO\t\"\tO\n\t\nWe\tO\tWe\tO\ncompare\tO\tcompare\tO\nthe\tO\tthe\tO\ndrive\tO\tdrive\tO\nsummary\tO\tsummary\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n#\tO\t#\tO\nof\tO\tof\tO\nplays\tO\tplays\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nin\tO\tin\tO\nPBP\tO\tPBP\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nas\tO\tas\tO\na\tO\ta\tO\nCross\tO\tCross\tO\ncorrelation\tO\tcorrelation\tO\ncheck\tO\tcheck\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndrive\tO\tdrive\tO\nsummary\tO\tsummary\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nincorrect\tO\tincorrect\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nthough.\tO\tthough.\tO\n.\tO\t.\tO\nThat\tO\tThat\tO\n's\tO\t's\tO\nwhy\tO\twhy\tO\ni\tO\ti\tO\nmade\tO\tmade\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nsummary\tO\tsummary\tO\nhas\tO\thas\tO\n>0\tO\t>0\tO\nplays\tO\tplays\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_55158\tI-Code_Block\tGR_55158\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\n,\tO\t,\tO\nif\tO\tif\tO\nwe\tO\twe\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\nexact\tO\texact\tO\nduplicate\tO\tduplicate\tO\nplay\tO\tplay\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nyard\tO\tyard\tO\nline\tO\tline\tO\nand\tO\tand\tO\ndown\tO\tdown\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nalert\tO\talert\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nreasonable\tO\treasonable\tO\ntime\tO\ttime\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nEVER\tO\tEVER\tO\nhappen\tO\thappen\tO\nin\tO\tin\tO\na\tO\ta\tO\ngame\tO\tgame\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nHuge\tO\tHuge\tO\nloss\tO\tloss\tO\n,\tO\t,\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\na\tO\ta\tO\npenalty\tO\tpenalty\tO\nto\tO\tto\tO\nget\tO\tget\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nyard\tO\tyard\tO\nline\tO\tline\tO\n&\tO\t&\tO\nfirst\tO\tfirst\tO\ndown\tO\tdown\tO\n.\tO\t.\tO\n\t\nFollowed\tO\tFollowed\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nsame\tO\tsame\tO\nhuge\tO\thuge\tO\nloss\tO\tloss\tO\nagain.\tO\tagain.\tO\n.\tO\t.\tO\n\t\n1\tO\t1\tO\n&\tO\t&\tO\n10\tO\t10\tO\n@\tO\t@\tO\n30\tO\t30\tO\n-\tO\t-\tO\nsack\tO\tsack\tO\nfor\tO\tfor\tO\nloss\tO\tloss\tO\nof\tO\tof\tO\n20\tO\t20\tO\nyards\tO\tyards\tO\n.\tO\t.\tO\n\t\n2\tO\t2\tO\n&\tO\t&\tO\n30\tO\t30\tO\n@\tO\t@\tO\n50\tO\t50\tO\n-\tO\t-\tO\ndefensive\tO\tdefensive\tO\npass\tO\tpass\tO\ninterferance\tO\tinterferance\tO\n.\tO\t.\tO\n\t\n1st\tO\t1st\tO\ndown\tO\tdown\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\n30\tO\t30\tO\n1\tO\t1\tO\n&\tO\t&\tO\n10\tO\t10\tO\n@\tO\t@\tO\n30\tO\t30\tO\n-\tO\t-\tO\nsack\tO\tsack\tO\nfor\tO\tfor\tO\nloss\tO\tloss\tO\nof\tO\tof\tO\n20\tO\t20\tO\nyards\tO\tyards\tO\nAGAIN\tO\tAGAIN\tO\n(\tO\t(\tO\nThis\tO\tThis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmarked\tO\tmarked\tO\nas\tO\tas\tO\nduplicate\tO\tduplicate\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nchance\tO\tchance\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nactually\tO\tactually\tO\nhappening\tO\thappening\tO\nin\tO\tin\tO\na\tO\ta\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\nso\tO\tso\tO\nastronomically\tO\tastronomically\tO\nlow\tO\tlow\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nhindsight\tO\thindsight\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nold\tO\told\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nas\tO\tas\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nbelieve\tO\tbelieve\tO\nset()\tB-Library_Function\tset()\tO\nworks\tO\tworks\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nplay#\tO\tplay#\tO\nis\tO\tis\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nverify\tO\tverify\tO\nlater\tO\tlater\tO\ntoday\tO\ttoday\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/2\tO\thttps://github.com/linked-statistics/xkos/issues/2\tO\n\t\nComment\tO\tComment\tO\nadded\tO\tadded\tO\nin\tO\tin\tO\nversion\tO\tversion\tO\n0.9.6\tB-Version\t0.9.6\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\nthe\tO\tthe\tO\nlicense\tO\tlicense\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nontology\tO\tontology\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nDataCube\tB-Data_Structure\tDataCube\tO\nreferences\tO\treferences\tO\nthe\tO\tthe\tO\nOpen\tB-Licence\tOpen\tO\nData\tI-Licence\tData\tO\nCommons\tI-Licence\tCommons\tO\nPDDL\tI-Licence\tPDDL\tO\n(\tO\t(\tO\nhttp://opendatacommons.org/licenses/pddl/1.0/\tO\thttp://opendatacommons.org/licenses/pddl/1.0/\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSoapMedia/sensei\tO\tSoapMedia/sensei\tO\n-certificates\tO\t-certificates\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SoapMedia/sensei-certificates/issues/2\tO\thttps://github.com/SoapMedia/sensei-certificates/issues/2\tO\n\t\n…\tO\t…\tO\node\tO\tode\tO\n.\tO\t.\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/4\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/4\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\ntested\tO\ttested\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nand\tO\tand\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nhonest\tO\thonest\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nentire\tO\tentire\tO\nsure\tO\tsure\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nthing\tO\tthing\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\nname\tO\tname\tO\nneeds\tO\tneeds\tO\nchanging\tO\tchanging\tO\nto\tO\tto\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nparameter\tO\tparameter\tO\npassed\tO\tpassed\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/17\tO\thttps://github.com/mapbox/tile-count/issues/17\tO\n\t\nTrying\tO\tTrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nworldwide\tO\tworldwide\tO\ntileset\tO\ttileset\tO\nto\tO\tto\tO\nz22\tO\tz22\tO\nfailed\tO\tfailed\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_34248\tI-Code_Block\tGR_34248\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwas\tO\twas\tO\non\tO\ton\tO\na\tO\ta\tO\nmachine\tO\tmachine\tO\nwith\tO\twith\tO\n30GB\tO\t30GB\tO\nof\tO\tof\tO\nmemory\tB-Device\tmemory\tO\nand\tO\tand\tO\n16\tO\t16\tO\nCPUs\tB-Device\tCPUs\tO\n(\tO\t(\tO\nspot-c3.4xlarge\tB-Device\tspot-c3.4xlarge\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nevery\tO\tevery\tO\nthread\tO\tthread\tO\nhas\tO\thas\tO\ntwo\tO\ttwo\tO\npartial\tO\tpartial\tO\ntiles\tO\ttiles\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nzoom\tO\tzoom\tO\nlevel\tO\tlevel\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nstill\tO\tstill\tO\nonly\tO\tonly\tO\naccounts\tO\taccounts\tO\nfor\tO\tfor\tO\n1.5GB\tO\t1.5GB\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nestimators\tO\testimators\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndensity\tO\tdensity\tO\ndistribution\tO\tdistribution\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\npass\tO\tpass\tO\nbefore\tO\tbefore\tO\ncrashing\tO\tcrashing\tO\n.\tO\t.\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/37\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/37\tO\n\t\nAfter\tO\tAfter\tO\nthis\tO\tthis\tO\nmerge\tO\tmerge\tO\n:\tO\t:\tO\nhttps://github.com/rails/rails/pull/18937\tO\thttps://github.com/rails/rails/pull/18937\tO\n,\tO\t,\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nline\tO\tline\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_38727\tI-Code_Block\tGR_38727\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwill\tO\twill\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_38728\tI-Code_Block\tGR_38728\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nusingrgeo-activerecord\tB-Library\tusingrgeo-activerecord\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_38729\tI-Code_Block\tGR_38729\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\ndig\tO\tdig\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nsuggest\tO\tsuggest\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/8\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/8\tO\n\t\nWhen\tO\tWhen\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nif\tO\tif\tO\na\tO\ta\tO\nabbreviation\tO\tabbreviation\tO\nis\tO\tis\tO\nused\tO\tused\tO\nwhich\tO\twhich\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nrecognize\tO\trecognize\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nparser\tO\tparser\tO\nwill\tO\twill\tO\nguess\tO\tguess\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nteams\tO\tteams\tO\n.\tO\t.\tO\n\t\nPressing\tO\tPressing\tO\n1\tO\t1\tO\nor\tO\tor\tO\n0\tO\t0\tO\nwill\tO\twill\tO\nconfirm\tO\tconfirm\tO\nor\tO\tor\tO\ndeny\tO\tdeny\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nteam\tO\tteam\tO\n.\tO\t.\tO\n\t\nPressing\tO\tPressing\tO\n2\tO\t2\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ncandidate\tO\tcandidate\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nline\tO\tline\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nabbreviation\tO\tabbreviation\tO\nis\tO\tis\tO\ncompletely\tO\tcompletely\tO\nwrong\tO\twrong\tO\non\tO\ton\tO\nESPN\tB-Organization\tESPN\tO\n's\tO\t's\tO\nend\tO\tend\tO\n(\tO\t(\tO\nie\tO\tie\tO\n,\tO\t,\tO\nshowing\tO\tshowing\tO\nSCAR\tO\tSCAR\tO\nin\tO\tin\tO\nan\tO\tan\tO\nAkron\tO\tAkron\tO\nvs\tO\tvs\tO\nCalifornia\tO\tCalifornia\tO\ngame\tO\tgame\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nenter\tO\tenter\tO\neither\tO\teither\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nabbreviation\tO\tabbreviation\tO\n,\tO\t,\tO\nteam\tO\tteam\tO\nname\tO\tname\tO\n,\tO\t,\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\nt\tO\tt\tO\n+\tO\t+\tO\n'\tO\t'\tO\nteam\tO\tteam\tO\ncode\tO\tcode\tO\n'\tO\t'\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nparser\tO\tparser\tO\nwill\tO\twill\tO\ncontinue\tO\tcontinue\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/46\tO\thttps://github.com/mapbox/tile-count/issues/46\tO\n\t\nThanks\tO\tThanks\tO\nagain\tO\tagain\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nreport\tO\treport\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfixed\tO\tfixed\tO\nin\tO\tin\tO\n989a53d\tO\t989a53d\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndbarrosop/gobgp\tO\tdbarrosop/gobgp\tO\n-grpc-demo\tO\t-grpc-demo\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dbarrosop/gobgp-grpc-demo/issues/1\tO\thttps://github.com/dbarrosop/gobgp-grpc-demo/issues/1\tO\n\t\nThanks\tO\tThanks\tO\nDavid\tB-User_Name\tDavid\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ntry\tO\ttry\tO\nthat\tO\tthat\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/24\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/24\tO\n\t\nCould\tO\tCould\tO\nit\tO\tit\tO\n/\tO\t/\tO\nshould\tO\tshould\tO\nit\tO\tit\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\nchecking\tO\tchecking\tO\nthe\tO\tthe\tO\nFS\tO\tFS\tO\ntype\tO\ttype\tO\nreported\tO\treported\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nMBR\tO\tMBR\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwonder\tO\twonder\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nany\tO\tany\tO\nother\tO\tother\tO\ncomponents\tO\tcomponents\tO\n'\tO\t'\tO\nrelying\tO\trelying\tO\n'\tO\t'\tO\non\tO\ton\tO\nlistDirectory\tB-Library_Function\tlistDirectory\tB-Code_Block\nfiltering\tO\tfiltering\tO\nout\tO\tout\tO\ndotfiles\tO\tdotfiles\tO\n?\tO\t?\tO\n\t\nPerhaps\tO\tPerhaps\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ntransition\tO\ttransition\tO\neasier\tO\teasier\tO\nthere\tO\tthere\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\noptional\tO\toptional\tO\nignoreDotFiles\tB-Library_Variable\tignoreDotFiles\tB-Code_Block\nparameter\tO\tparameter\tO\n(\tO\t(\tO\ndefaulting\tO\tdefaulting\tO\nto\tO\tto\tO\nfalse\tO\tfalse\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\n*\tO\t*\tO\nshrug*\tO\tshrug*\tO\n\t\nJust\tO\tJust\tO\nfor\tO\tfor\tO\nconsistency\tO\tconsistency\tO\nwith\tO\twith\tO\nother\tO\tother\tO\nrepos\tO\trepos\tO\n,\tO\t,\tO\nshould\tO\tshould\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncommit\tO\tcommit\tO\nmessages\tO\tmessages\tO\nhave\tO\thave\tO\na\tO\ta\tO\nChange-type\tO\tChange-type\tB-Code_Block\n:\tO\t:\tI-Code_Block\nmajor\tO\tmajor\tI-Code_Block\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/7\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/7\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/47\tO\thttps://github.com/demigor/lex.db/issues/47\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ndiscovered\tO\tdiscovered\tO\na\tO\ta\tO\nlimitation\tO\tlimitation\tO\non\tO\ton\tO\niOS\tB-Operating_System\tiOS\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nmodel\tO\tmodel\tO\nclasses\tO\tclasses\tO\nhas\tO\thas\tO\na\tO\ta\tO\nfloat\tB-Data_Type\tfloat\tO\ndatatype\tO\tdatatype\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nsave\tO\tsave\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nread\tO\tread\tO\nit\tO\tit\tO\nback\tO\tback\tO\nout\tO\tout\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAttempting\tB-Code_Block\tAttempting\tO\nto\tI-Code_Block\tto\tO\nJIT\tI-Code_Block\tJIT\tO\ncompile\tI-Code_Block\tcompile\tO\nmethod\tI-Code_Block\tmethod\tO\n'\tI-Code_Block\t'\tO\n(\tI-Code_Block\t(\tO\nwrapper\tI-Code_Block\twrapper\tO\ndelegate-invoke\tI-Code_Block\tdelegate-invoke\tO\n)\tI-Code_Block\t)\tO\n:invoke_callvirt_void_CustomDataValueNumeric_single\tI-Code_Block\t:invoke_callvirt_void_CustomDataValueNumeric_single\tO\n(\tI-Code_Block\t(\tO\nMyProject.Model.CustomDataValueNumeric\tI-Code_Block\tMyProject.Model.CustomDataValueNumeric\tO\n,\tI-Code_Block\t,\tO\nsingle\tI-Code_Block\tsingle\tO\n)\tI-Code_Block\t)\tO\n'\tB-Code_Block\t'\tO\nwhile\tI-Code_Block\twhile\tO\nrunning\tI-Code_Block\trunning\tO\nwith\tI-Code_Block\twith\tO\n--aot-only\tI-Code_Block\t--aot-only\tO\n.\tI-Code_Block\t.\tO\n\t\nSee\tO\tSee\tO\nhttp://docs.xamarin.com/ios/about/limitations\tO\thttp://docs.xamarin.com/ios/about/limitations\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark/issues/6\tO\thttps://github.com/ben-eb/metalsmith-remark/issues/6\tO\n\t\nHello\tO\tHello\tO\n:wave\tO\t:wave\tO\n:\tO\t:\tO\n\t\n:rocket::rocket::rocket\tO\t:rocket::rocket::rocket\tO\n:\tO\t:\tO\n\t\nremark-strip-badges\tB-Library\tremark-strip-badges\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n3.0.0\tB-Version\t3.0.0\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\npasses\tO\tpasses\tO\nyour\tO\tyour\tO\ntests\tO\ttests\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\npublish\tO\tpublish\tO\nyour\tO\tyour\tO\nsoftware\tO\tsoftware\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nremark-strip-badges\tB-Library\tremark-strip-badges\tO\n–\tO\t–\tO\notherwise\tO\totherwise\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nbranch\tO\tbranch\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nadaptions\tO\tadaptions\tO\nand\tO\tand\tO\nfixes\tO\tfixes\tO\n.\tO\t.\tO\n\t\nHappy\tO\tHappy\tO\nfixing\tO\tfixing\tO\nand\tO\tand\tO\nmerging\tO\tmerging\tO\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\ndiffers\tO\tdiffers\tO\nby\tO\tby\tO\n7\tO\t7\tO\ncommits\tO\tcommits\tO\n.\tO\t.\tO\n\t\nb7d2242\tB-Code_Block\tb7d2242\tB-Code_Block\n3.0.0\tB-Version\t3.0.0\tI-Code_Block\n\t\nc71f756\tB-Code_Block\tc71f756\tB-Code_Block\nRemove\tO\tRemove\tI-Code_Block\nsupport\tO\tsupport\tI-Code_Block\nfor\tO\tfor\tI-Code_Block\nDuo\tB-Application\tDuo\tI-Code_Block\n\t\nf1def8d\tB-Code_Block\tf1def8d\tB-Code_Block\nRefactorreadme.md``\tB-File_Name\tRefactorreadme.md``\tI-Code_Block\n\t\n28cbd8d\tB-Code_Block\t28cbd8d\tB-Code_Block\nAdd\tO\tAdd\tI-Code_Block\nnpm\tB-Application\tnpm\tI-Code_Block\ndeployment\tO\tdeployment\tI-Code_Block\nto\tO\tto\tI-Code_Block\nTravis\tB-Application\tTravis\tI-Code_Block\n\t\n88e8c18\tB-Code_Block\t88e8c18\tB-Code_Block\nUpdate\tO\tUpdate\tI-Code_Block\ndev-dependencies\tO\tdev-dependencies\tI-Code_Block\n\t\n163f2da\tB-Code_Block\t163f2da\tB-Code_Block\nUpdate\tO\tUpdate\tI-Code_Block\nfor\tO\tfor\tI-Code_Block\nchanges\tO\tchanges\tI-Code_Block\ninremark\tB-Library\tinremark\tI-Code_Block\n@4\tB-Version\t@4\tO\n.0.0\tI-Version\t.0.0\tO\n``\tO\t``\tO\n\t\nd66cfcb\tB-Code_Block\td66cfcb\tB-Code_Block\nUpdate\tO\tUpdate\tI-Code_Block\nmetadata\tO\tmetadata\tI-Code_Block\ninpackage.json\tB-File_Name\tinpackage.json\tI-Code_Block\n``\tO\t``\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndiff\tO\tdiff\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\ngreenkeeper.io\tB-Application\tgreenkeeper.io\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nkeeps\tO\tkeeps\tO\nyour\tO\tyour\tO\nsoftware\tO\tsoftware\tO\n,\tO\t,\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\n,\tO\t,\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nTired\tO\tTired\tO\nof\tO\tof\tO\nseeing\tO\tseeing\tO\nthis\tO\tthis\tO\nsponsor\tO\tsponsor\tO\nmessage\tO\tmessage\tO\n?\tO\t?\tO\n\t\nUpgrade\tO\tUpgrade\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsupporter\tO\tsupporter\tO\nplan\tO\tplan\tO\n!\tO\t!\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nalso\tO\talso\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\nfaster\tO\tfaster\tO\n:zap\tO\t:zap\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/2\tO\thttps://github.com/zeroepoch/plotbitrate/issues/2\tO\n\t\nHello\tO\tHello\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nadmit\tO\tadmit\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nfamiliar\tO\tfamiliar\tO\nwith\tO\twith\tO\nPython\tB-Language\tPython\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nAnacaonda\tB-Version\tAnacaonda\tO\ndistribution\tO\tdistribution\tO\n(\tO\t(\tO\nPython\tB-Language\tPython\tO\nVersion\tO\tVersion\tO\n:\tO\t:\tO\n2.7.9\tB-Version\t2.7.9\tO\n)\tO\t)\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\n7\tB-Version\t7\tO\nand\tO\tand\tO\nplaced\tO\tplaced\tO\nyour\tO\tyour\tO\nscript\tO\tscript\tO\nin\tO\tin\tO\nffmpeg\tB-Application\tffmpeg\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n[\tO\t[\tO\n...\tO\t...\tO\n]\tO\t]\tO\nn\tB-Code_Block\tn\tO\n\\plotbitrate.py\tI-Code_Block\t\\plotbitrate.py\tO\n\"\tB-Code_Block\t\"\tO\n,\tI-Code_Block\t,\tO\nline\tI-Code_Block\tline\tO\n51\tI-Code_Block\t51\tO\n,\tI-Code_Block\t,\tO\nin\tI-Code_Block\tin\tO\nif\tI-Code_Block\tif\tO\nnot\tI-Code_Block\tnot\tO\nshutil.which(\"ffprobe\")\tI-Code_Block\tshutil.which(\"ffprobe\")\tO\n:\tI-Code_Block\t:\tO\nAttributeError\tB-Error_Name\tAttributeError\tO\n:\tB-Code_Block\t:\tO\n'\tI-Code_Block\t'\tO\nmodule\tI-Code_Block\tmodule\tO\n'\tB-Code_Block\t'\tO\nobject\tI-Code_Block\tobject\tO\nhas\tI-Code_Block\thas\tO\nno\tI-Code_Block\tno\tO\nattribute\tI-Code_Block\tattribute\tO\n'\tI-Code_Block\t'\tO\nwhich\tI-Code_Block\twhich\tO\n'\tB-Code_Block\t'\tO\n\t\nThanks\tO\tThanks\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom\tO\thttps://github.com/koding/kd-atom\tO\n\t\nKoding\tO\tKoding\tO\nAtom\tO\tAtom\tO\nPackage\tO\tPackage\tO\n\t\nWith\tO\tWith\tO\nthis\tO\tthis\tO\npackage\tO\tpackage\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nKoding\tB-Application\tKoding\tO\nteams\tO\tteams\tO\n'\tO\t'\tO\nresources\tO\tresources\tO\nfrom\tO\tfrom\tO\nwithin\tO\twithin\tO\nAtom\tB-Application\tAtom\tO\nEditor\tI-Application\tEditor\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nlist\tO\tlist\tO\nyour\tO\tyour\tO\nteams\tO\tteams\tO\n,\tO\t,\tO\nmachines\tB-Device\tmachines\tO\nor\tO\tor\tO\nmount\tO\tmount\tO\nyour\tO\tyour\tO\nVMs\tO\tVMs\tO\nand\tO\tand\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\nfiles\tO\tfiles\tO\nand\tO\tand\tO\nfolders\tO\tfolders\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\nAtom\tB-Application\tAtom\tO\n's\tO\t's\tO\nInstall\tI-Application\tInstall\tO\nPackages\tI-Application\tPackages\tO\nview\tO\tview\tO\n(\tO\t(\tO\nSettings>Install\tO\tSettings>Install\tO\nPackages\tO\tPackages\tO\n)\tO\t)\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\napm\tB-Code_Block\tapm\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_190645\tI-Code_Block\tGR_190645\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDisclaimer\tO\tDisclaimer\tO\n:\tO\t:\tO\nCurrently\tO\tCurrently\tO\nthis\tO\tthis\tO\npackage\tO\tpackage\tO\nis\tO\tis\tO\na\tO\ta\tO\nbeta\tB-Version\tbeta\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\nthings\tO\tthings\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nsomething\tO\tsomething\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\nplease\tO\tplease\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nhere\tO\there\tO\n,\tO\t,\tO\nor\tO\tor\tO\nask\tO\task\tO\nfor\tO\tfor\tO\nhelp\tO\thelp\tO\non\tO\ton\tO\nour\tO\tour\tO\nSlack\tB-Application\tSlack\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsurol/speedtest\tO\tsurol/speedtest\tO\n-cli\tO\t-cli\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/surol/speedtest-cli/issues/2\tO\thttps://github.com/surol/speedtest-cli/issues/2\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\ncommit\tO\tcommit\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nfix\tO\tfix\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nand\tO\tand\tO\nthird\tO\tthird\tO\ncommits\tO\tcommits\tO\nare\tO\tare\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nunit\tO\tunit\tO\ntesting\tO\ttesting\tO\npurpose\tO\tpurpose\tO\n.\tO\t.\tO\n\t\nWithout\tO\tWithout\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncommit\tO\tcommit\tO\n,\tO\t,\tO\nwe\tO\twe\tO\n'll\tO\t'll\tO\ncrash\tO\tcrash\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnil\tO\tnil\tO\naccess\tO\taccess\tO\n,\tO\t,\tO\nas\tO\tas\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_55457\tI-Code_Block\tGR_55457\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/libp2p/interface-record-store/issues/10\tO\thttps://github.com/libp2p/interface-record-store/issues/10\tO\n\t\nHello\tO\tHello\tO\nlovely\tO\tlovely\tO\nhumans\tO\thumans\tO\n,\tO\t,\tO\n\t\nmultihashing\tO\tmultihashing\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n0.3.2\tB-Version\t0.3.2\tO\n.\tO\t.\tO\n\t\nState\tO\tState\tO\n\t\n\t\nUpdate\tO\tUpdate\tO\n:rocket\tO\t:rocket\tO\n:\tO\t:\tO\n\t\n\t\nDependency\tO\tDependency\tO\n\t\n\t\n\t\nmultihashing\tO\tmultihashing\tO\n\t\n\t\nNew\tO\tNew\tO\nversion\tO\tversion\tO\n\t\n\t\n\t\n0.3.2\tB-Version\t0.3.2\tO\n\t\n\t\nType\tO\tType\tO\n\t\n\t\n\t\ndependency\tO\tdependency\tO\n\t\n\t\nThis\tO\tThis\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nWithout\tO\tWithout\tO\naccepting\tO\taccepting\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nnew\tO\tnew\tO\nfeatures\tO\tfeatures\tO\n,\tO\t,\tO\nfixes\tO\tfixes\tO\nand\tO\tand\tO\nperf\tO\tperf\tO\nimprovements\tO\timprovements\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmaintainers\tO\tmaintainers\tO\nworked\tO\tworked\tO\non\tO\ton\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nget\tO\tget\tO\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nmultihashing\tO\tmultihashing\tO\n.\tO\t.\tO\n\t\nGiven\tO\tGiven\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndecent\tO\tdecent\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\n,\tO\t,\tO\na\tO\ta\tO\npassing\tO\tpassing\tO\nbuild\tO\tbuild\tO\nis\tO\tis\tO\na\tO\ta\tO\nstrong\tO\tstrong\tO\nindicator\tO\tindicator\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nby\tO\tby\tO\nmerging\tO\tmerging\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nchange\tO\tchange\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nthis\tO\tthis\tO\nbranch\tO\tbranch\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimprove\tO\timprove\tO\nthese\tO\tthese\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n?\tO\t?\tO\n\t\nDid\tO\tDid\tO\nI\tO\tI\tO\nreport\tO\treport\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nunsure\tO\tunsure\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nfrequently\tO\tfrequently\tO\nasked\tO\tasked\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\na\tO\ta\tO\nbot\tO\tbot\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\nteach\tO\tteach\tO\nme\tO\tme\tO\nnew\tO\tnew\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nthem\tO\tthem\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\nrock\tO\trock\tO\n!\tO\t!\tO\n\t\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\ndiffers\tO\tdiffers\tO\nby\tO\tby\tO\n11\tO\t11\tO\ncommits\tO\tcommits\tO\n.\tO\t.\tO\n\t\n459a5d0\tB-Code_Block\t459a5d0\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nrelease\tI-Code_Block\trelease\tI-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\nv0.3.2\tI-Code_Block\tv0.3.2\tI-Code_Block\n\t\n8759c1d\tB-Code_Block\t8759c1d\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\ncontributors\tI-Code_Block\tcontributors\tI-Code_Block\n\t\n655d2fa\tB-Code_Block\t655d2fa\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\naegir\tI-Code_Block\taegir\tI-Code_Block\n\t\n4b600e9\tB-Code_Block\t4b600e9\tB-Code_Block\nchore(travis)\tI-Code_Block\tchore(travis)\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\ntravis\tI-Code_Block\ttravis\tI-Code_Block\nconfig\tI-Code_Block\tconfig\tI-Code_Block\n\t\nd784617\tB-Code_Block\td784617\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nrelease\tI-Code_Block\trelease\tI-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\nv0.3.1\tI-Code_Block\tv0.3.1\tI-Code_Block\n\t\nb2dc6fa\tB-Code_Block\tb2dc6fa\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\ncontributors\tI-Code_Block\tcontributors\tI-Code_Block\n\t\nc859a53\tB-Code_Block\tc859a53\tB-Code_Block\nfix(deps)\tI-Code_Block\tfix(deps)\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ndepend\tI-Code_Block\tdepend\tI-Code_Block\non\tI-Code_Block\ton\tI-Code_Block\nfixed\tI-Code_Block\tfixed\tI-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\nof\tI-Code_Block\tof\tI-Code_Block\nmultihashes\tI-Code_Block\tmultihashes\tI-Code_Block\n\t\n2e8d8df\tB-Code_Block\t2e8d8df\tB-Code_Block\nadded\tI-Code_Block\tadded\tI-Code_Block\nblake2b/s\tI-Code_Block\tblake2b/s\tI-Code_Block\nsupport\tI-Code_Block\tsupport\tI-Code_Block\n\t\n14186b2\tB-Code_Block\t14186b2\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nrelease\tI-Code_Block\trelease\tI-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\nv0.2.3\tI-Code_Block\tv0.2.3\tI-Code_Block\n\t\n0db8379\tB-Code_Block\t0db8379\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\ncontributors\tI-Code_Block\tcontributors\tI-Code_Block\n\t\n4e3cf24\tB-Code_Block\t4e3cf24\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nnew\tI-Code_Block\tnew\tI-Code_Block\naegir\tI-Code_Block\taegir\tI-Code_Block\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndiff\tO\tdiff\tO\n.\tO\t.\tO\n\t\n✨\tO\t✨\tO\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nall\tO\tall\tO\nnew\tO\tnew\tO\nGreenkeeper\tB-Application\tGreenkeeper\tO\nGitHub\tB-Website\tGitHub\tO\nIntegration\tO\tIntegration\tO\n✨\tO\t✨\tO\n\t\nWith\tO\tWith\tO\nIntegrations\tO\tIntegrations\tO\nfirst-class\tO\tfirst-class\tO\nbot\tO\tbot\tO\nsupport\tO\tsupport\tO\nlanded\tO\tlanded\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nand\tO\tand\tO\nwe\tO\twe\tO\n've\tO\t've\tO\nrewritten\tO\trewritten\tO\nGreenkeeper\tB-Application\tGreenkeeper\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nfull\tO\tfull\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSimpler\tO\tSimpler\tO\nsetup\tO\tsetup\tO\n,\tO\t,\tO\nfewer\tO\tfewer\tO\npull-requests\tO\tpull-requests\tO\n,\tO\t,\tO\nfaster\tO\tfaster\tO\nthan\tO\tthan\tO\never\tO\tever\tO\n.\tO\t.\tO\n\t\nScreencast\tO\tScreencast\tO\nTry\tO\tTry\tO\nit\tO\tit\tO\ntoday\tO\ttoday\tO\n.\tO\t.\tO\n\t\nFree\tO\tFree\tO\nfor\tO\tfor\tO\nprivate\tO\tprivate\tO\nrepositories\tO\trepositories\tO\nduring\tO\tduring\tO\nbeta\tO\tbeta\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/59\tO\thttps://github.com/spacetelescope/specview/issues/59\tO\n\t\nRemoved\tO\tRemoved\tO\nthe\tO\tthe\tO\nfloating\tB-Data_Type\tfloating\tO\nbecause\tO\tbecause\tO\nLinux\tB-Operating_System\tLinux\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nfail\tO\tfail\tO\non\tO\ton\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/3\tO\thttps://github.com/koding/kd-atom/issues/3\tO\n\t\npackage\tO\tpackage\tO\ntests\tO\ttests\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nwritten\tO\twritten\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/34\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/34\tO\n\t\nChanges\tO\tChanges\tO\nLGTM\tO\tLGTM\tO\nassuming\tO\tassuming\tO\nthe\tO\tthe\tO\nbuilds\tO\tbuilds\tO\npass\tO\tpass\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/46\tO\thttps://github.com/mapbox/tile-count/issues/46\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nreport\tO\treport\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nseen\tO\tseen\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nmyself\tO\tmyself\tO\nbut\tO\tbut\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nfixed\tO\tfixed\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nTippecanoe\tB-Application\tTippecanoe\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\nseeing\tO\tseeing\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nand\tO\tand\tO\nwith\tO\twith\tO\nwhat\tO\twhat\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\ninput\tO\tinput\tO\ndata\tO\tdata\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/21\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/21\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\ncontributing\tO\tcontributing\tO\nto\tO\tto\tO\nLogstash\tB-Application\tLogstash\tO\n!\tO\t!\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nalready\tO\talready\tO\nsigned\tO\tsigned\tO\nour\tO\tour\tO\nCLA\tO\tCLA\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\na\tO\ta\tO\nhandy\tO\thandy\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\nhttps://www.elastic.co/contributor-agreement/\tO\thttps://www.elastic.co/contributor-agreement/\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/2\tO\thttps://github.com/op-jenkins/op-build/issues/2\tO\n\t\nfoobar\tO\tfoobar\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndhrrgn/codeigniter\tO\tdhrrgn/codeigniter\tO\n-uhoh\tO\t-uhoh\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dhrrgn/codeigniter-uhoh/issues/3\tO\thttps://github.com/dhrrgn/codeigniter-uhoh/issues/3\tO\n\t\nYour\tO\tYour\tO\nwelcome\tO\twelcome\tO\n@ShayHurley\tB-User_Name\t@ShayHurley\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2/issues/6\tO\thttps://github.com/thehyve/puppet-i2b2/issues/6\tO\n\t\nTrue\tO\tTrue\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nperhaps\tO\tperhaps\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nreadable\tO\treadable\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\ncases\tO\tcases\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nif\tB-Code_Block\tif\tB-Code_Block\n.\tO\t.\tO\n\t\nRelated\tO\tRelated\tO\n:\tO\t:\tO\nquote\tO\tquote\tO\nthe\tO\tthe\tO\npaths\tO\tpaths\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nHackClub-SLHS/HackClub\tO\tHackClub-SLHS/HackClub\tO\n-Website\tO\t-Website\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/HackClub-SLHS/HackClub-Website/issues/9\tO\thttps://github.com/HackClub-SLHS/HackClub-Website/issues/9\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncommit\tO\tcommit\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npicture\tB-User_Interface_Element\tpicture\tO\nof\tO\tof\tO\nTagStand\tB-Organization\tTagStand\tO\n's\tO\t's\tO\nlogo\tB-User_Interface_Element\tlogo\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\nwill\tO\twill\tO\nredirect\tO\tredirect\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nTagStand\tB-Organization\tTagStand\tO\n's\tO\t's\tO\nwebsite\tO\twebsite\tO\n\"\tO\t\"\tO\nhttp://www.tagstand.com\tO\thttp://www.tagstand.com\tO\n\"\tO\t\"\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrdzhadan/integracja\tO\trdzhadan/integracja\tO\n-systemow\tO\t-systemow\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rdzhadan/integracja-systemow/issues/1\tO\thttps://github.com/rdzhadan/integracja-systemow/issues/1\tO\n\t\n\t\nimplemented\tO\timplemented\tO\nxml/json/yaml/ogdl\tB-Language\txml/json/yaml/ogdl\tO\nresponse\tO\tresponse\tO\ntypes\tO\ttypes\tO\n\t\nadded\tO\tadded\tO\nunit\tO\tunit\tO\ntests\tO\ttests\tO\n\t\nfixed\tO\tfixed\tO\nsonar\tO\tsonar\tO\nissues\tO\tissues\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander/issues/12\tO\thttps://github.com/SivanMehta/wander/issues/12\tO\n\t\nConcrete\tO\tConcrete\tO\nImprovement\tO\tImprovement\tO\n\t\nCurrently\tO\tCurrently\tO\nthe\tO\tthe\tO\nimprovement\tO\timprovement\tO\nis\tO\tis\tO\n2.03MB\tO\t2.03MB\tO\n->\tO\t->\tO\n220K\tO\t220K\tO\n\t\n~\tO\t~\tO\n10x\tO\t10x\tO\nmemory\tO\tmemory\tO\nsaving\tO\tsaving\tO\n\t\nProof\tO\tProof\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_29080\tI-Code_Block\tGR_29080\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nvs\tO\tvs\tO\nbefore\tO\tbefore\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_29081\tI-Code_Block\tGR_29081\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsdookadr/overflow\tO\twsdookadr/overflow\tO\n-checker\tO\t-checker\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsdookadr/fieldtop/issues/7\tO\thttps://github.com/wsdookadr/fieldtop/issues/7\tO\n\t\nI\tO\tI\tO\n:heart\tO\t:heart\tO\n:\tO\t:\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthank\tO\tthank\tO\nyou\tO\tyou\tO\n:\tO\t:\tO\n+\tO\t+\tO\n1\tO\t1\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP/issues/5\tO\thttps://github.com/McMenemy/GoDoRP/issues/5\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nhot\tO\thot\tO\nreload\tO\treload\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nGo\tB-Library\tGo\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nran\tO\tran\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP#getting-started\tO\thttps://github.com/McMenemy/GoDoRP#getting-started\tO\nAfter\tO\tAfter\tO\nrunning\tO\trunning\tO\ndocker-compose\tB-Code_Block\tdocker-compose\tB-Code_Block\nup\tI-Code_Block\tup\tI-Code_Block\nI\tO\tI\tO\nwent\tO\twent\tO\nto\tO\tto\tO\nhttp://localhost:5000/\tO\thttp://localhost:5000/\tO\nand\tO\tand\tO\nsaw\tO\tsaw\tO\nthe\tO\tthe\tO\nThis\tB-Code_Block\tThis\tB-Code_Block\nis\tI-Code_Block\tis\tI-Code_Block\nthe\tI-Code_Block\tthe\tI-Code_Block\nRESTful\tI-Code_Block\tRESTful\tI-Code_Block\napi\tI-Code_Block\tapi\tI-Code_Block\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napi.go\tB-File_Name\tapi.go\tB-Code_Block\nfile\tO\tfile\tO\nto\tO\tto\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nchange\tO\tchange\tO\nunless\tO\tunless\tO\nI\tO\tI\tO\nrebuild\tO\trebuild\tO\nthe\tO\tthe\tO\ndocker\tB-Application\tdocker\tO\nimage\tB-User_Interface_Element\timage\tO\n(\tO\t(\tO\ndocker-compose\tB-Code_Block\tdocker-compose\tB-Code_Block\nbuild\tI-Code_Block\tbuild\tI-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nconfirm\tO\tconfirm\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nthe\tO\tthe\tO\napi\tB-Library\tapi\tO\nserver\tB-Application\tserver\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\nin\tO\tin\tO\ndev\tO\tdev\tO\nmode\tO\tmode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_65354\tI-Code_Block\tGR_65354\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoso/flexgrid\tO\tmoso/flexgrid\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moso/flexgrid/issues/1\tO\thttps://github.com/moso/flexgrid/issues/1\tO\n\t\nWhen\tO\tWhen\tO\nnot\tO\tnot\tO\ndefining\tO\tdefining\tO\n,\tO\t,\tO\neg\tO\teg\tO\n,\tO\t,\tO\nxs\tB-Library_Class\txs\tB-Code_Block\n,\tO\t,\tO\ncolumns\tO\tcolumns\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nauto\tO\tauto\tO\ncompute\tO\tcompute\tO\nto\tO\tto\tO\n100%\tO\t100%\tO\nwidth\tO\twidth\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\ngrid-generator\tB-Library_Class\tgrid-generator\tB-Code_Block\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/40\tO\thttps://github.com/rpcope1/Hantek6022API/issues/40\tO\n\t\nstock\tO\tstock\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nHantek\tB-Organization\tHantek\tO\nfirmware\tO\tfirmware\tO\n.\tO\t.\tO\n\t\nmodded\tO\tmodded\tO\ncontains\tO\tcontains\tO\nthree\tO\tthree\tO\npatches\tO\tpatches\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nfirmware\tO\tfirmware\tO\n,\tO\t,\tO\nfixfiforeset\tB-File_Name\tfixfiforeset\tO\nshould\tO\tshould\tO\nfix\tO\tfix\tO\nthe\tO\tthe\tO\nFIFO\tO\tFIFO\tO\nreset\tO\treset\tO\nsequence\tO\tsequence\tO\n,\tO\t,\tO\nsamplerates\tO\tsamplerates\tO\nfixes\tO\tfixes\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nrates\tO\trates\tO\nand\tO\tand\tO\nprovides\tO\tprovides\tO\nnew\tO\tnew\tO\nones\tO\tones\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\n24\tO\t24\tO\nMSamples/s\tO\tMSamples/s\tO\nmode\tO\tmode\tO\n,\tO\t,\tO\nand\tO\tand\tO\nisodiff\tO\tisodiff\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nisochronous\tO\tisochronous\tO\ntransfer\tO\ttransfer\tO\nmode\tO\tmode\tO\nwith\tO\twith\tO\nguaranteed\tO\tguaranteed\tO\ntransfer\tO\ttransfer\tO\nrate\tO\trate\tO\n(\tO\t(\tO\nup\tO\tup\tO\nto\tO\tto\tO\n24\tO\t24\tO\nMSamples/s\tO\tMSamples/s\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmod_fs_01\tB-File_Name\tmod_fs_01\tO\nfirmware\tO\tfirmware\tO\ncontains\tO\tcontains\tO\nall\tO\tall\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\none\tO\tone\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmod_fs_iso\tB-File_Name\tmod_fs_iso\tO\nshould\tO\tshould\tO\ncontain\tO\tcontain\tO\nall\tO\tall\tO\nthree\tO\tthree\tO\npatches\tO\tpatches\tO\n.\tO\t.\tO\n\t\ncustom\tO\tcustom\tO\nis\tO\tis\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\nrewrite\tO\trewrite\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfirmware\tO\tfirmware\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfx2lib\tB-Library\tfx2lib\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nleft\tO\tleft\tO\nout\tO\tout\tO\nsome\tO\tsome\tO\nfunctionality\tO\tfunctionality\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nfunctionality\tO\tfunctionality\tO\nfor\tO\tfor\tO\nreading\tO\treading\tO\nthe\tO\tthe\tO\neeprom\tB-Device\teeprom\tO\nthat\tO\tthat\tO\nstores\tO\tstores\tO\nthe\tO\tthe\tO\ncalibration\tO\tcalibration\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/17\tO\thttps://github.com/demigor/lex.db/issues/17\tO\n\t\n++\tO\t++\tO\nany\tO\tany\tO\nprogress\tO\tprogress\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/6\tO\thttps://github.com/op-jenkins/op-build/issues/6\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander/issues/1\tO\thttps://github.com/SivanMehta/wander/issues/1\tO\n\t\nLooks\tO\tLooks\tO\ngood\tO\tgood\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nShubham4422/recipes\tO\tShubham4422/recipes\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/Shubham4422/recipes/issues/1\tO\thttps://github.com/Shubham4422/recipes/issues/1\tO\n\t\nThis\tO\tThis\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nam\tO\tam\tO\nsending\tO\tsending\tO\nthe\tO\tthe\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/203\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/203\tO\n\t\nJust\tO\tJust\tO\nput\tO\tput\tO\nyour\tO\tyour\tO\ncall\tO\tcall\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nready\tB-Library_Function\tready\tO\n\"\tO\t\"\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\n$\tB-Code_Block\t$\tB-Code_Block\nionicPlatform.ready\tI-Code_Block\tionicPlatform.ready\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nfunction()\tI-Code_Block\tfunction()\tI-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\n\t\ncordova.plugins.backgroundMode.enable()\tB-Code_Block\tcordova.plugins.backgroundMode.enable()\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\n}\tB-Code_Block\t}\tB-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\nsolved\tO\tsolved\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nit\tO\tit\tO\nhelps\tO\thelps\tO\n!\tO\t!\tO\n\t\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/7\tO\thttps://github.com/svenstaro/flamejam/issues/7\tO\n\t\nYes\tO\tYes\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\nenter\tO\tenter\tO\nmy\tO\tmy\tO\nkey\tO\tkey\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nimplementation\tO\timplementation\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nflask-wtforms\tB-Library\tflask-wtforms\tO\n,\tO\t,\tO\nit\tO\tit\tO\nalready\tO\talready\tO\nhas\tO\thas\tO\nrecaptcha\tO\trecaptcha\tO\nsupport\tO\tsupport\tO\nand\tO\tand\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\nanyway\tO\tanyway\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucieSteiner/AMT_feature1\tO\tLucieSteiner/AMT_feature1\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucieSteiner/AMT_feature1/issues/1\tO\thttps://github.com/LucieSteiner/AMT_feature1/issues/1\tO\n\t\nOk.\tO\tOk.\tO\n.\tO\t.\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbranch\tO\tbranch\tO\nbootcamp2.\tB-Code_Block\tbootcamp2.\tB-Code_Block\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nStarkMike/Lab3\tO\tStarkMike/Lab3\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/StarkMike/Lab3/issues/3\tO\thttps://github.com/StarkMike/Lab3/issues/3\tO\n\t\nCompleted\tO\tCompleted\tO\nlab3\tO\tlab3\tO\nexample\tO\texample\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njkraemer/redmine_airbrake\tO\tjkraemer/redmine_airbrake\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/jkraemer/redmine_airbrake\tO\thttps://github.com/jkraemer/redmine_airbrake\tO\n\t\nRedmine\tB-Application\tRedmine\tO\nAirbrake\tI-Application\tAirbrake\tO\nPlugin\tO\tPlugin\tO\n\t\nThis\tO\tThis\tO\nplugin\tO\tplugin\tO\nmakes\tO\tmakes\tO\nRedmine\tB-Application\tRedmine\tO\nact\tO\tact\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\nAirbrake\tB-Application\tAirbrake\tO\nserver\tI-Application\tserver\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nexceptions\tB-Library_Class\texceptions\tO\ncaught\tO\tcaught\tO\nand\tO\tand\tO\nsent\tO\tsent\tO\nby\tO\tby\tO\nAirbrake\tB-Application\tAirbrake\tO\nclient\tO\tclient\tO\nlibraries\tO\tlibraries\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\nor\tO\tor\tO\nupdate\tO\tupdate\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nRedmine\tB-Application\tRedmine\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\nrewrite\tO\trewrite\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n\t\nredmine_hoptoad_server\tB-Application\tredmine_hoptoad_server\tO\nplugin\tO\tplugin\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nsupports\tO\tsupports\tO\nthe\tO\tthe\tO\nAirbrake\tB-Application\tAirbrake\tO\nXML\tI-Application\tXML\tO\n(\tO\t(\tO\nv\tB-Version\tv\tO\n2)\tI-Version\t2)\tO\nand\tO\tand\tO\nJSON\tB-Library\tJSON\tO\n(\tO\t(\tO\nv\tB-Version\tv\tO\n3)\tI-Version\t3)\tO\nAPIs\tB-Library\tAPIs\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nthe\tO\tthe\tO\nancient\tO\tancient\tO\nHoptoad\tB-Library\tHoptoad\tO\n/\tO\t/\tO\nAirbrake\tB-Library\tAirbrake\tO\nv1\tB-Version\tv1\tO\nAPI\tB-Library\tAPI\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nredmine_hoptoad_server\tB-Application\tredmine_hoptoad_server\tO\nplugin\tO\tplugin\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nSupports\tO\tSupports\tO\nRedmine\tB-Application\tRedmine\tO\nfrom\tO\tfrom\tO\n2.6\tB-Version\t2.6\tO\nonwards\tO\tonwards\tO\n.\tO\t.\tO\n\t\nPlugin\tO\tPlugin\tO\nsetup\tO\tsetup\tO\n\t\nJust\tO\tJust\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\nPlugin\tO\tPlugin\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\ngeneral\tO\tgeneral\tO\nRedmine\tB-Application\tRedmine\tO\nplugin\tO\tplugin\tO\ninstallation\tO\tinstallation\tO\ninstructions\tO\tinstructions\tO\nat\tO\tat\tO\nhttp://www.redmine.org/wiki/redmine/Plugins\tO\thttp://www.redmine.org/wiki/redmine/Plugins\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nAdministration\tO\tAdministration\tO\n->\tO\t->\tO\nSettings\tO\tSettings\tO\n->\tO\t->\tO\nIncoming\tO\tIncoming\tO\nemails\tO\temails\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nRedmine\tB-Application\tRedmine\tO\nand\tO\tand\tO\ngenerate\tO\tgenerate\tO\nan\tO\tan\tO\nAPI\tB-Library\tAPI\tO\nkey\tO\tkey\tO\n.\tO\t.\tO\n\t\nClient\tO\tClient\tO\nconfiguration\tO\tconfiguration\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nproperly\tO\tproperly\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\nneeds\tO\tneeds\tO\nsome\tO\tsome\tO\ndata\tO\tdata\tO\nsupplied\tO\tsupplied\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nclient\tO\tclient\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nsupplied\tO\tsupplied\tO\nas\tO\tas\tO\na\tO\ta\tO\nhash\tO\thash\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nkeys\tO\tkeys\tO\n:\tO\t:\tO\n\t\nproject\tB-Library_Variable\tproject\tO\n:\tO\t:\tO\nRedmine\tB-Application\tRedmine\tO\nproject\tO\tproject\tO\nidentifier\tO\tidentifier\tO\nwhere\tO\twhere\tO\nissues\tO\tissues\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\n\t\ntracker\tB-Library_Variable\ttracker\tO\n:\tO\t:\tO\ntracker\tO\ttracker\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\t\napi_key\tB-Library_Variable\tapi_key\tO\n:\tO\t:\tO\nRedmine\tO\tRedmine\tO\nAPI\tB-Library\tAPI\tO\nkey\tO\tkey\tO\nas\tO\tas\tO\ncreated\tO\tcreated\tO\nabove\tO\tabove\tO\n\t\ncategory\tB-Library_Variable\tcategory\tO\n:\tO\t:\tO\nIssue\tO\tIssue\tO\ncategory\tO\tcategory\tO\n(\tO\t(\tO\noptional\tO\toptional\tO\n)\tO\t)\tO\n\t\nassigned_to\tB-Library_Variable\tassigned_to\tO\n:\tO\t:\tO\nRedmine\tB-Application\tRedmine\tO\nlogin\tO\tlogin\tO\nof\tO\tof\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nthe\tO\tthe\tO\ntickets\tO\ttickets\tO\nshould\tO\tshould\tO\nget\tO\tget\tO\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n(\tO\t(\tO\noptional\tO\toptional\tO\n)\tO\t)\tO\n\t\nauthor\tB-Library_Variable\tauthor\tO\n:\tO\t:\tO\nRedmine\tB-Application\tRedmine\tO\nlogin\tO\tlogin\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nserve\tO\tserve\tO\nas\tO\tas\tO\nissue\tO\tissue\tO\ncreator\tO\tcreator\tO\n\t\npriority\tB-Library_Variable\tpriority\tO\n:\tO\t:\tO\nId\tO\tId\tO\nof\tO\tof\tO\na\tO\ta\tO\nRedmine\tB-Application\tRedmine\tO\nissue\tO\tissue\tO\npriority\tO\tpriority\tO\n(\tO\t(\tO\noptional\tO\toptional\tO\n)\tO\t)\tO\n\t\nenvironment\tB-Library_Variable\tenvironment\tO\n:\tO\t:\tO\ngets\tO\tgets\tO\nprepended\tO\tprepended\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n's\tO\t's\tO\nsubject\tO\tsubject\tO\nand\tO\tand\tO\nis\tO\tis\tO\nstored\tO\tstored\tO\nas\tO\tas\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nissue\tO\tissue\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nuseful\tO\tuseful\tO\nto\tO\tto\tO\ndistinguish\tO\tdistinguish\tO\nerrors\tO\terrors\tO\non\tO\ton\tO\na\tO\ta\tO\ntest\tO\ttest\tO\nsystem\tO\tsystem\tO\nfrom\tO\tfrom\tO\nthose\tO\tthose\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nproduction\tO\tproduction\tO\nsystem\tO\tsystem\tO\n(\tO\t(\tO\noptional\tO\toptional\tO\n)\tO\t)\tO\n\t\nrepository_root\tB-Library_Variable\trepository_root\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\noptional\tO\toptional\tO\nargument\tO\targument\tO\noverrides\tO\toverrides\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nwide\tO\twide\tO\nrepository\tO\trepository\tO\nroot\tO\troot\tO\nsetting\tO\tsetting\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSet\tO\tSet\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nAirbrake\tB-Application\tAirbrake\tO\nclient\tI-Application\tclient\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndocs\tO\tdocs\tO\nfound\tO\tfound\tO\nat\tO\tat\tO\nhttp://airbrake.io\tO\thttp://airbrake.io\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nconfiguring\tO\tconfiguring\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\n,\tO\t,\tO\ndeviate\tO\tdeviate\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ninstructions\tO\tinstructions\tO\nand\tO\tand\tO\nsupply\tO\tsupply\tO\nthe\tO\tthe\tO\nnecessary\tO\tnecessary\tO\nconfiguration\tO\tconfiguration\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nAirbrake\tB-Application\tAirbrake\tO\nv3\tB-Version\tv3\tO\n(\tO\t(\tO\nJSON\tB-Library\tJSON\tO\nAPI\tI-Library\tAPI\tO\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nany\tO\tany\tO\ncurrent\tO\tcurrent\tO\nAirbrake\tB-Application\tAirbrake\tO\nclient\tI-Application\tclient\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nairbrake-ruby\tB-Library\tairbrake-ruby\tO\nclient\tO\tclient\tO\nlibrary\tO\tlibrary\tO\nfrom\tO\tfrom\tO\nversion\tO\tversion\tO\n5\tB-Version\t5\tO\nonwards\tO\tonwards\tO\n.\tO\t.\tO\n\t\nSet\tO\tSet\tO\nup\tO\tup\tO\na\tO\ta\tO\nfilter\tO\tfilter\tO\nthat\tO\tthat\tO\nadds\tO\tadds\tO\nthe\tO\tthe\tO\nconfig\tO\tconfig\tO\nhash\tO\thash\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAirbrake\tB-Application\tAirbrake\tO\nnotification\tO\tnotification\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nsent\tO\tsent\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_195099\tI-Code_Block\tGR_195099\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSet\tO\tSet\tO\nthe\tO\tthe\tO\nproject_id\tB-Library_Variable\tproject_id\tB-Code_Block\nto\tO\tto\tO\nany\tO\tany\tO\nnumber\tO\tnumber\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nignored\tO\tignored\tO\nby\tO\tby\tO\nthis\tO\tthis\tO\nplugin\tO\tplugin\tO\nbut\tO\tbut\tO\nvalidated\tO\tvalidated\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nAirbrake\tB-Application\tAirbrake\tO\nclient\tI-Application\tclient\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsame\tO\tsame\tO\nis\tO\tis\tO\ntrue\tO\ttrue\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nproject_key\tB-Library_Variable\tproject_key\tB-Code_Block\nstring\tO\tstring\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nroot_directory\tB-Library_Variable\troot_directory\tB-Code_Block\nAirbrake\tB-Application\tAirbrake\tO\noption\tO\toption\tO\nshortens\tO\tshortens\tO\nbacktrace\tO\tbacktrace\tO\nlines\tO\tlines\tO\nby\tO\tby\tO\nreplacing\tO\treplacing\tO\nyour\tO\tyour\tO\nprojects\tO\tprojects\tO\ninstallation\tO\tinstallation\tO\ndirectory\tO\tdirectory\tO\nwith\tO\twith\tO\n[\tB-Code_Block\t[\tB-Code_Block\nPROJECT_ROOT\tI-Code_Block\tPROJECT_ROOT\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n\t\nCongratulations\tO\tCongratulations\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nnow\tO\tnow\tO\nstart\tO\tstart\tO\nreceiving\tO\treceiving\tO\nexceptions\tO\texceptions\tO\nin\tO\tin\tO\nRedmine\tB-Application\tRedmine\tO\n!\tO\t!\tO\n\t\nDeprecated\tO\tDeprecated\tO\n:\tO\t:\tO\nTransmit\tO\tTransmit\tO\nconfig\tO\tconfig\tO\nvia\tO\tvia\tO\nproject-key\tO\tproject-key\tO\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nrecent\tO\trecent\tO\n(\tO\t(\tO\nas\tO\tas\tO\nof\tO\tof\tO\nJanuary\tB-Version\tJanuary\tO\n2018\tI-Version\t2018\tO\n)\tO\t)\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nairbrake\tB-Application\tairbrake\tO\nclient\tI-Application\tclient\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nthe\tO\tthe\tO\nfilter-based\tO\tfilter-based\tO\nmethod\tO\tmethod\tO\nabove\tO\tabove\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nintruced\tO\tintruced\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nall\tO\tall\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nleft\tO\tleft\tO\nin\tO\tin\tO\nhere\tO\there\tO\nmainly\tO\tmainly\tO\nfor\tO\tfor\tO\nhistorical\tO\thistorical\tO\nreasons\tO\treasons\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_195100\tI-Code_Block\tGR_195100\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDeprecated\tO\tDeprecated\tO\n:\tO\t:\tO\nAirbrake\tB-Application\tAirbrake\tO\nv2\tB-Version\tv2\tO\n(\tO\t(\tO\nXML\tB-Library\tXML\tO\nAPI\tI-Library\tAPI\tO\n)\tO\t)\tO\n\t\nSince\tO\tSince\tO\nthe\tO\tthe\tO\nAirbrake\tB-Application\tAirbrake\tO\nclient\tI-Application\tclient\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndesigned\tO\tdesigned\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\narbitrary\tO\tarbitrary\tO\nparameters\tO\tparameters\tO\n,\tO\t,\tO\nwe\tO\twe\tO\ntrick\tO\ttrick\tO\nit\tO\tit\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nAPI-Key\tB-Library_Variable\tAPI-Key\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\na\tO\ta\tO\nJSON-encoded\tB-File_Type\tJSON-encoded\tO\nhash\tO\thash\tO\nholding\tO\tholding\tO\nour\tO\tour\tO\nconfiguration\tO\tconfiguration\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nhash\tO\thash\tO\nmay\tO\tmay\tO\nhold\tO\thold\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nkeys\tO\tkeys\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\napplies\tO\tapplies\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nto\tO\tto\tO\nthe\tO\tthe\tO\nRuby\tB-Application\tRuby\tO\nairbrake\tI-Application\tairbrake\tO\ngem\tO\tgem\tO\nin\tO\tin\tO\nversions\tO\tversions\tO\n<\tO\t<\tO\n5.0\tB-Version\t5.0\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_195101\tI-Code_Block\tGR_195101\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\ncertainly\tO\tcertainly\tO\ndrop\tO\tdrop\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nAPI\tB-Library\tAPI\tO\nat\tO\tat\tO\nsome\tO\tsome\tO\npoint\tO\tpoint\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nupgrade\tO\tupgrade\tO\nyour\tO\tyour\tO\nclient\tB-Application\tclient\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nConfiguration\tO\tConfiguration\tO\n(\tO\t(\tO\nplease\tO\tplease\tO\nread\tO\tread\tO\non\tO\ton\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nAfter\tO\tAfter\tO\nyou\tO\tyou\tO\nreceived\tO\treceived\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nexception\tO\texception\tO\nin\tO\tin\tO\na\tO\ta\tO\nRedmine\tB-Application\tRedmine\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nnotice\tO\tnotice\tO\ntwo\tO\ttwo\tO\nnew\tO\tnew\tO\nproject\tO\tproject\tO\ncustom\tO\tcustom\tO\nfields\tO\tfields\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nThose\tO\tThose\tO\nare\tO\tare\tO\nBacktrace\tO\tBacktrace\tO\nfilter\tO\tfilter\tO\nand\tO\tand\tO\n\t\nRepository\tO\tRepository\tO\nroot\tO\troot\tO\n.\tO\t.\tO\n\t\nBacktrace\tO\tBacktrace\tO\nfilter\tO\tfilter\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\n(\tO\t(\tO\nand\tO\tand\tO\nwe\tO\twe\tO\nreally\tO\treally\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nfilter\tO\tfilter\tO\nthe\tO\tthe\tO\nbacktraces\tO\tbacktraces\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nshown\tO\tshown\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\njournal\tO\tjournal\tO\nentries\tO\tentries\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\nthis\tO\tthis\tO\nplugin\tO\tplugin\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\nfield\tO\tfield\tO\nto\tO\tto\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nexpressions\tO\texpressions\tO\n(\tO\t(\tO\none\tO\tone\tO\nper\tO\tper\tO\nline\tO\tline\tO\n)\tO\t)\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nfiltered\tO\tfiltered\tO\nout\tO\tout\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfiltered\tO\tfiltered\tO\nbacktrace\tO\tbacktrace\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\ncontain\tO\tcontain\tO\nframes\tO\tframes\tO\nfrom\tO\tfrom\tO\nlocations\tO\tlocations\tO\nnot\tO\tnot\tO\nmatching\tO\tmatching\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nexpressions\tO\texpressions\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nusually\tO\tusually\tO\nsimply\tO\tsimply\tO\nset\tO\tset\tO\nmy\tO\tmy\tO\nfilter\tO\tfilter\tO\nto\tO\tto\tO\n[\tB-Code_Block\t[\tB-Code_Block\nGEM_ROOT\tI-Code_Block\tGEM_ROOT\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nso\tO\tso\tO\nthe\tO\tthe\tO\nfiltered\tO\tfiltered\tO\nbacktrace\tO\tbacktrace\tO\nonly\tO\tonly\tO\ncontains\tO\tcontains\tO\nframes\tO\tframes\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nany\tO\tany\tO\nRuby\tB-Language\tRuby\tO\ngems\tO\tgems\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nfind\tO\tfind\tO\nother\tO\tother\tO\ncode\tO\tcode\tO\ncluttering\tO\tcluttering\tO\nup\tO\tup\tO\nyour\tO\tyour\tO\nbacktraces\tO\tbacktraces\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthose\tO\tthose\tO\nsource\tO\tsource\tO\nfiles\tO\tfiles\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nRepository\tO\tRepository\tO\nroot\tO\troot\tO\n\t\nAll\tO\tAll\tO\nIssues\tO\tIssues\tO\ncreated\tO\tcreated\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsource\tO\tsource\tO\nlink\tO\tlink\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\ndescription\tO\tdescription\tO\nwhich\tO\twhich\tO\n-\tO\t-\tO\n-\tO\t-\tO\nprovided\tO\tprovided\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nsource\tO\tsource\tO\nrepository\tO\trepository\tO\nlinked\tO\tlinked\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nRedmine\tB-Application\tRedmine\tO\nproject\tO\tproject\tO\n-\tO\t-\tO\n-\tO\t-\tO\nleads\tO\tleads\tO\nyou\tO\tyou\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nline\tO\tline\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\ncaused\tO\tcaused\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nrepository\tO\trepository\tO\nstructure\tO\tstructure\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndeployed\tO\tdeployed\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nadditional\tO\tadditional\tO\nrepository\tO\trepository\tO\nroot\tO\troot\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\ntrunk\tO\ttrunk\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngeneral\tO\tgeneral\tO\nSVN\tB-Application\tSVN\tO\nsetup\tO\tsetup\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n:repository_root\tB-Code_Block\t:repository_root\tB-Code_Block\noption\tO\toption\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n's\tO\t's\tO\nairbrake.rb\tB-File_Name\tairbrake.rb\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nthis\tO\tthis\tO\nsetting\tO\tsetting\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nhelful\tO\thelful\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\napplications\tO\tapplications\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nrepository\tO\trepository\tO\nreporting\tO\treporting\tO\nerrors\tO\terrors\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nRedmine\tB-Application\tRedmine\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nDependencies\tO\tDependencies\tO\n\t\nNokogiri\tB-Library\tNokogiri\tO\nFor\tO\tFor\tO\nparsing\tO\tparsing\tO\nV2\tB-Version\tV2\tO\nXML\tB-Language\tXML\tO\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nairbrake-ruby\tB-Library\tairbrake-ruby\tO\nfor\tO\tfor\tO\ntests\tO\ttests\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nrequests\tO\trequests\tO\nusing\tO\tusing\tO\nyaml\tB-Language\tyaml\tO\nencoded\tO\tencoded\tO\noptions\tO\toptions\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nwere\tO\twere\tO\nused\tO\tused\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nredmine_hoptoad_server\tB-Application\tredmine_hoptoad_server\tO\nplugin\tO\tplugin\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nSafe\tB-Application\tSafe\tO\nYAML\tI-Application\tYAML\tO\ngem\tO\tgem\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nRedmine\tB-Application\tRedmine\tO\n's\tO\t's\tO\nGemfile.local\tB-File_Name\tGemfile.local\tB-Code_Block\n.\tO\t.\tO\n\t\nLicense\tO\tLicense\tO\n\t\nGPL\tB-Licence\tGPL\tO\nv2\tB-Version\tv2\tO\nor\tO\tor\tO\nany\tO\tany\tO\nlater\tO\tlater\tO\nversion\tO\tversion\tO\n\t\nAuthors\tO\tAuthors\tO\n\t\nJens\tB-User_Name\tJens\tO\nKraemer\tI-User_Name\tKraemer\tO\n(\tO\t(\tO\nhttps://jkraemer.net\tO\thttps://jkraemer.net\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\noriginal\tO\toriginal\tO\nredmine_hoptoad_server\tB-Application\tredmine_hoptoad_server\tO\nplugin\tO\tplugin\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\nJan\tB-User_Name\tJan\tO\nSchulz-Hofen\tI-User_Name\tSchulz-Hofen\tO\n,\tO\t,\tO\nPlanio\tB-Organization\tPlanio\tO\nGmbH\tI-Organization\tGmbH\tO\n(\tO\t(\tO\nhttp://plan.io\tO\thttp://plan.io\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/13\tO\thttps://github.com/smirarab/pasta/issues/13\tO\n\t\nPASTA\tB-Application\tPASTA\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nuses\tO\tuses\tO\nFastTree\tB-Application\tFastTree\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nRAxML\tB-Application\tRAxML\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntyring\tO\ttyring\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nfinal\tO\tfinal\tO\nrun\tO\trun\tO\nof\tO\tof\tO\nRAxML\tB-Application\tRAxML\tO\n,\tO\t,\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\noption\tO\toption\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\ntaking\tO\ttaking\tO\nthe\tO\tthe\tO\nPASTA\tB-Application\tPASTA\tO\nalignment\tO\talignment\tO\nand\tO\tand\tO\nrunning\tO\trunning\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\nRAxML\tB-Application\tRAxML\tO\nseparately\tO\tseparately\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nmore\tO\tmore\tO\nthreads\tO\tthreads\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nFri\tO\tFri\tO\n,\tO\t,\tO\nNov\tO\tNov\tO\n11\tO\t11\tO\n,\tO\t,\tO\n2016\tO\t2016\tO\nat\tO\tat\tO\n10:20\tO\t10:20\tO\nAM\tO\tAM\tO\n,\tO\t,\tO\nPejvak1\tB-User_Name\tPejvak1\tO\nnotifications@github.com\tO\tnotifications@github.com\tO\nwrote\tO\twrote\tO\n:\tO\t:\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nSiavash\tB-User_Name\tSiavash\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nexperience\tO\texperience\tO\nRaxML\tB-Application\tRaxML\tO\ntakes\tO\ttakes\tO\nway\tO\tway\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nboth\tO\tboth\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nprograms\tO\tprograms\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nreason\tO\treason\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\nstarted\tO\tstarted\tO\nthinking\tO\tthinking\tO\nabout\tO\tabout\tO\nCUDA\tB-Application\tCUDA\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nMafft\tB-Application\tMafft\tO\nor\tO\tor\tO\nFastTree\tB-Application\tFastTree\tO\ntake\tO\ttake\tO\n.\tO\t.\tO\n\t\nCheers\tO\tCheers\tO\n,\tO\t,\tO\n\t\nPej\tB-User_Name\tPej\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\n11\tO\t11\tO\nNovember\tO\tNovember\tO\n2016\tO\t2016\tO\nat\tO\tat\tO\n18:15\tO\t18:15\tO\n,\tO\t,\tO\nSiavash\tB-User_Name\tSiavash\tO\nMirarab\tI-User_Name\tMirarab\tO\nnotifications@github.com\tO\tnotifications@github.com\tO\nwrote\tO\twrote\tO\n:\tO\t:\tO\n\t\nSee\tO\tSee\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhelpful\tO\thelpful\tO\n:\tO\t:\tO\nhttps://www.ncbi.nlm.nih.gov/pubmed/26357090\tO\thttps://www.ncbi.nlm.nih.gov/pubmed/26357090\tO\n\t\nMafft\tB-Application\tMafft\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nCUDA\tB-Application\tCUDA\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nit\tO\tit\tO\nwithin\tO\twithin\tO\nPASTA\tB-Application\tPASTA\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nGive\tO\tGive\tO\nit\tO\tit\tO\na\tO\ta\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\n—\tO\t—\tO\nYou\tO\tYou\tO\nare\tO\tare\tO\nreceiving\tO\treceiving\tO\nthis\tO\tthis\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nauthored\tO\tauthored\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nReply\tO\tReply\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nemail\tO\temail\tO\ndirectly\tO\tdirectly\tO\n,\tO\t,\tO\nview\tO\tview\tO\nit\tO\tit\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nhttps://github.com/smirarab/pasta/issues/13#issuecomment-260020034\tO\thttps://github.com/smirarab/pasta/issues/13#issuecomment-260020034\tO\n,\tO\t,\tO\nor\tO\tor\tO\nmute\tO\tmute\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nhttps://github.com/notifications/unsubscribe-auth/ATmycR8_\tO\thttps://github.com/notifications/unsubscribe-auth/ATmycR8_\tO\n41rbUfAA4AOVXmCCJE2JH-8hks5q9LDAgaJpZM4KbJpw\tO\t41rbUfAA4AOVXmCCJE2JH-8hks5q9LDAgaJpZM4KbJpw\tO\n\t\n.\tO\t.\tO\n\t\nPejvak\tB-User_Name\tPejvak\tO\nMoghimi\tI-User_Name\tMoghimi\tO\nUniversity\tB-Organization\tUniversity\tO\nof\tI-Organization\tof\tO\nYork\tI-Organization\tYork\tO\nMbiol\tO\tMbiol\tO\nbiology\tO\tbiology\tO\nContact\tO\tContact\tO\nnumber\tO\tnumber\tO\n:\tO\t:\tO\n07835076472\tO\t07835076472\tO\n\t\n—\tO\t—\tO\nYou\tO\tYou\tO\nare\tO\tare\tO\nreceiving\tO\treceiving\tO\nthis\tO\tthis\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nmodified\tO\tmodified\tO\nthe\tO\tthe\tO\nopen/close\tO\topen/close\tO\nstate\tO\tstate\tO\n.\tO\t.\tO\n\t\nReply\tO\tReply\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nemail\tO\temail\tO\ndirectly\tO\tdirectly\tO\n,\tO\t,\tO\nview\tO\tview\tO\nit\tO\tit\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nhttps://github.com/smirarab/pasta/issues/13#issuecomment-260020992\tO\thttps://github.com/smirarab/pasta/issues/13#issuecomment-260020992\tO\n,\tO\t,\tO\nor\tO\tor\tO\nmute\tO\tmute\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nhttps://github.com/notifications/unsubscribe-auth/AAybuP3rypQ5OkCJ8i2rOZmwSf4XqoHBks5q9LHRgaJpZM4KbJpw\tO\thttps://github.com/notifications/unsubscribe-auth/AAybuP3rypQ5OkCJ8i2rOZmwSf4XqoHBks5q9LHRgaJpZM4KbJpw\tO\n.\tO\t.\tO\n\t\nSiavash\tB-User_Name\tSiavash\tO\nMirarab\tI-User_Name\tMirarab\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/18\tO\thttps://github.com/rpcope1/Hantek6022API/issues/18\tO\n\t\n\t\nExcellent\tO\tExcellent\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nboth\tO\tboth\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nRepository_Name\tB-Data_Type\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs\tO\thttps://github.com/resin-io-modules/resin-image-fs\tO\n\t\nresin-image-fs\tB-Application\tresin-image-fs\tO\n\t\nJoin\tO\tJoin\tO\nour\tO\tour\tO\nonline\tO\tonline\tO\nchat\tO\tchat\tO\nat\tO\tat\tO\n\t\nResin.io\tB-Application\tResin.io\tO\nimage\tB-User_Interface_Element\timage\tO\nfilesystem\tO\tfilesystem\tO\nmanipulation\tO\tmanipulation\tO\nutilities\tO\tutilities\tO\n.\tO\t.\tO\n\t\nRole\tO\tRole\tO\n\t\nThe\tO\tThe\tO\nintention\tO\tintention\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nmodule\tO\tmodule\tO\nis\tO\tis\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nlow\tO\tlow\tO\nlevel\tO\tlevel\tO\nutilities\tO\tutilities\tO\nto\tO\tto\tO\nResin.io\tB-Application\tResin.io\tO\noperating\tO\toperating\tO\nsystem\tO\tsystem\tO\ndata\tO\tdata\tO\npartitions\tO\tpartitions\tO\n.\tO\t.\tO\n\t\nTHIS\tO\tTHIS\tO\nMODULE\tO\tMODULE\tO\nIS\tO\tIS\tO\nLOW\tO\tLOW\tO\nLEVEL\tO\tLEVEL\tO\nAND\tO\tAND\tO\nIS\tO\tIS\tO\nNOT\tO\tNOT\tO\nMEANT\tO\tMEANT\tO\nTO\tO\tTO\tO\nBE\tO\tBE\tO\nUSED\tO\tUSED\tO\nBY\tO\tBY\tO\nEND\tO\tEND\tO\nUSERS\tO\tUSERS\tO\nDIRECTLY\tO\tDIRECTLY\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nInstall\tO\tInstall\tO\nresin-image-fs\tB-Application\tresin-image-fs\tB-Code_Block\nby\tO\tby\tO\nrunning\tO\trunning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_122342\tI-Code_Block\tGR_122342\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDocumentation\tO\tDocumentation\tO\n\t\nimagefs\tB-Library\timagefs\tO\n\t\n.interact(disk,partition)\tB-Library_Function\t.interact(disk,partition)\tO\n⇒\tO\t⇒\tO\nbluebird.disposer.<fs>\tB-Library_Class\tbluebird.disposer.<fs>\tB-Code_Block\n\t\n.read(definition)\tB-Library_Function\t.read(definition)\tO\n⇒\tO\t⇒\tO\nbluebird.disposer.<ReadStream>\tB-Library_Class\tbluebird.disposer.<ReadStream>\tB-Code_Block\n\t\n.write(definition,stream)\tB-Library_Function\t.write(definition,stream)\tO\n⇒\tO\t⇒\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\n\t\n.readFile(definition)\tB-Library_Function\t.readFile(definition)\tO\n⇒\tO\t⇒\tO\nPromise.<String>\tB-Data_Type\tPromise.<String>\tB-Code_Block\n\t\n.writeFile(definition,contents)\tB-Library_Function\t.writeFile(definition,contents)\tO\n⇒\tO\t⇒\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\n\t\n.copy(input,output)\tB-Library_Function\t.copy(input,output)\tO\n⇒\tO\t⇒\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\n\t\n.replace(definition,search,replace)\tB-Library_Function\t.replace(definition,search,replace)\tO\n⇒\tO\t⇒\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\n\t\n.listDirectory(definition)\tB-Library_Function\t.listDirectory(definition)\tO\n⇒\tO\t⇒\tO\nPromise.<Array.<String>>\tB-Data_Type\tPromise.<Array.<String>>\tB-Code_Block\n\t\nimagefs.interact(disk,partition)\tB-Library_Function\timagefs.interact(disk,partition)\tO\n⇒\tO\t⇒\tO\nbluebird.disposer.<fs>\tB-Library_Class\tbluebird.disposer.<fs>\tB-Code_Block\n\t\nKind\tO\tKind\tO\n:\tO\t:\tO\nstatic\tO\tstatic\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nimagefs\tB-Library\timagefs\tB-Code_Block\n\t\nSummary\tO\tSummary\tO\n:\tO\t:\tO\nGet\tO\tGet\tO\na\tO\ta\tO\nbluebird.disposer\tB-Library_Function\tbluebird.disposer\tO\nof\tO\tof\tO\na\tO\ta\tO\nnode\tO\tnode\tO\nfs\tO\tfs\tO\nlike\tO\tlike\tO\ninterface\tO\tinterface\tO\nfor\tO\tfor\tO\na\tO\ta\tO\npartition\tO\tpartition\tO\n\t\nReturns\tO\tReturns\tO\n:\tO\t:\tO\nbluebird.disposer.<fs>\tB-Library_Class\tbluebird.disposer.<fs>\tB-Code_Block\n-\tO\t-\tO\nnode\tO\tnode\tO\nfs\tO\tfs\tO\nlike\tO\tlike\tO\ninterface\tO\tinterface\tO\n\t\nAccess\tO\tAccess\tO\n:\tO\t:\tO\npublic\tO\tpublic\tO\n\t\nParam\tO\tParam\tO\n\t\nType\tO\tType\tO\n\t\nDescription\tO\tDescription\tO\n\t\ndisk\tB-Library_Variable\tdisk\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n|\tO\t|\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tB-Code_Block\n\t\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nor\tO\tor\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tO\ninstance\tO\tinstance\tO\n\t\npartition\tB-Library_Variable\tpartition\tO\n\t\nNumber\tB-Library_Class\tNumber\tB-Code_Block\n\t\npartition\tO\tpartition\tO\nnumber\tO\tnumber\tO\n\t\nExample\tO\tExample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_122343\tI-Code_Block\tGR_122343\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nimagefs.read(definition)\tB-Library_Function\timagefs.read(definition)\tO\n⇒\tO\t⇒\tO\nbluebird.disposer.<ReadStream>\tB-Library_Class\tbluebird.disposer.<ReadStream>\tB-Code_Block\n\t\nKind\tO\tKind\tO\n:\tO\t:\tO\nstatic\tO\tstatic\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nimagefs\tB-Library\timagefs\tB-Code_Block\n\t\nSummary\tO\tSummary\tO\n:\tO\t:\tO\nGet\tO\tGet\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\nfile\tO\tfile\tO\nreadable\tO\treadable\tO\nstream\tO\tstream\tO\n\t\nReturns\tO\tReturns\tO\n:\tO\t:\tO\nbluebird.disposer.<ReadStream>\tB-Library_Class\tbluebird.disposer.<ReadStream>\tB-Code_Block\n-\tO\t-\tO\nfile\tO\tfile\tO\nstream\tO\tstream\tO\n\t\nAccess\tO\tAccess\tO\n:\tO\t:\tO\npublic\tO\tpublic\tO\n\t\nParam\tO\tParam\tO\n\t\nType\tO\tType\tO\n\t\nDescription\tO\tDescription\tO\n\t\ndefinition\tB-Library_Variable\tdefinition\tO\n\t\nObject\tB-Data_Type\tObject\tB-Code_Block\n\t\ndevice\tO\tdevice\tO\npath\tO\tpath\tO\ndefinition\tO\tdefinition\tO\n\t\ndefinition.image\tB-Library_Class\tdefinition.image\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n|\tO\t|\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tB-Code_Block\n\t\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nor\tO\tor\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tO\ninstance\tO\tinstance\tO\n\t\n[\tO\t[\tO\ndefinition.partition\tB-Library_Class\tdefinition.partition\tO\n]\tO\t]\tO\n\t\nNumber\tB-Library_Variable\tNumber\tB-Code_Block\n\t\npartition\tO\tpartition\tO\nnumber\tO\tnumber\tO\n\t\ndefinition.path\tB-Library_Class\tdefinition.path\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n\t\nfile\tO\tfile\tO\npath\tO\tpath\tO\n\t\nExample\tO\tExample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_122344\tI-Code_Block\tGR_122344\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nimagefs.write(definition,stream)\tB-Library_Function\timagefs.write(definition,stream)\tO\n⇒\tO\t⇒\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\n\t\nKind\tO\tKind\tO\n:\tO\t:\tO\nstatic\tO\tstatic\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nimagefs\tB-Library\timagefs\tB-Code_Block\n\t\nSummary\tO\tSummary\tO\n:\tO\t:\tO\nWrite\tO\tWrite\tO\na\tO\ta\tO\nstream\tO\tstream\tO\nto\tO\tto\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\nfile\tO\tfile\tO\n\t\nAccess\tO\tAccess\tO\n:\tO\t:\tO\npublic\tO\tpublic\tO\n\t\nParam\tO\tParam\tO\n\t\nType\tO\tType\tO\n\t\nDescription\tO\tDescription\tO\n\t\ndefinition\tO\tdefinition\tO\n\t\nObject\tB-Data_Type\tObject\tB-Code_Block\n\t\ndevice\tO\tdevice\tO\npath\tO\tpath\tO\ndefinition\tO\tdefinition\tO\n\t\ndefinition.image\tB-Library_Class\tdefinition.image\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n|\tO\t|\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tB-Code_Block\n\t\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nor\tO\tor\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tO\ninstance\tO\tinstance\tO\n\t\n[\tO\t[\tO\ndefinition.partition\tB-Library_Class\tdefinition.partition\tO\n]\tO\t]\tO\n\t\nNumber\tB-Library_Variable\tNumber\tB-Code_Block\n\t\npartition\tO\tpartition\tO\nnumber\tO\tnumber\tO\n\t\ndefinition.path\tB-Library_Class\tdefinition.path\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n\t\nfile\tO\tfile\tO\npath\tO\tpath\tO\n\t\nstream\tO\tstream\tO\n\t\nReadStream\tB-Library_Class\tReadStream\tB-Code_Block\n\t\ncontents\tO\tcontents\tO\nstream\tO\tstream\tO\n\t\nExample\tO\tExample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_122345\tI-Code_Block\tGR_122345\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nimagefs.readFile(definition)\tB-Library_Function\timagefs.readFile(definition)\tO\n⇒\tO\t⇒\tO\nPromise.<String>\tB-Data_Type\tPromise.<String>\tB-Code_Block\n\t\nKind\tO\tKind\tO\n:\tO\t:\tO\nstatic\tO\tstatic\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nimagefs\tB-Library\timagefs\tB-Code_Block\n\t\nSummary\tO\tSummary\tO\n:\tO\t:\tO\nRead\tO\tRead\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\nfile\tO\tfile\tO\n\t\nReturns\tO\tReturns\tO\n:\tO\t:\tO\nPromise.<String>\tB-Data_Type\tPromise.<String>\tB-Code_Block\n-\tO\t-\tO\nfile\tO\tfile\tO\ntext\tO\ttext\tO\n\t\nAccess\tO\tAccess\tO\n:\tO\t:\tO\npublic\tO\tpublic\tO\n\t\nParam\tO\tParam\tO\n\t\nType\tO\tType\tO\n\t\nDescription\tO\tDescription\tO\n\t\ndefinition\tB-Library_Variable\tdefinition\tO\n\t\nObject\tB-Library_Class\tObject\tB-Code_Block\n\t\ndevice\tO\tdevice\tO\npath\tO\tpath\tO\ndefinition\tO\tdefinition\tO\n\t\ndefinition.image\tB-Library_Class\tdefinition.image\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n|\tO\t|\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tB-Code_Block\n\t\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nor\tO\tor\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tO\ninstance\tO\tinstance\tO\n\t\n[\tO\t[\tO\ndefinition.partition\tB-Library_Class\tdefinition.partition\tO\n]\tO\t]\tO\n\t\nNumber\tB-Data_Type\tNumber\tB-Code_Block\n\t\npartition\tO\tpartition\tO\nnumber\tO\tnumber\tO\n\t\ndefinition.path\tB-Library_Class\tdefinition.path\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n\t\nfile\tO\tfile\tO\npath\tO\tpath\tO\n\t\nExample\tO\tExample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_122346\tI-Code_Block\tGR_122346\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nimagefs.writeFile(definition,contents)\tB-Library_Function\timagefs.writeFile(definition,contents)\tO\n⇒\tO\t⇒\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\n\t\nKind\tO\tKind\tO\n:\tO\t:\tO\nstatic\tO\tstatic\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nimagefs\tB-Library\timagefs\tB-Code_Block\n\t\nSummary\tO\tSummary\tO\n:\tO\t:\tO\nWrite\tO\tWrite\tO\na\tO\ta\tO\ndevice\tB-File_Type\tdevice\tO\nfile\tO\tfile\tO\n\t\nAccess\tO\tAccess\tO\n:\tO\t:\tO\npublic\tO\tpublic\tO\n\t\nParam\tO\tParam\tO\n\t\nType\tO\tType\tO\n\t\nDescription\tO\tDescription\tO\n\t\ndefinition\tB-Library_Variable\tdefinition\tO\n\t\nObject\tB-Data_Type\tObject\tB-Code_Block\n\t\ndevice\tO\tdevice\tO\npath\tO\tpath\tO\ndefinition\tO\tdefinition\tO\n\t\ndefinition.image\tB-Library_Class\tdefinition.image\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n|\tO\t|\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tB-Code_Block\n\t\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nor\tO\tor\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tO\ninstance\tO\tinstance\tO\n\t\n[\tO\t[\tO\ndefinition.partition\tB-Library_Class\tdefinition.partition\tO\n]\tO\t]\tO\n\t\nNumber\tB-Data_Type\tNumber\tB-Code_Block\n\t\npartition\tO\tpartition\tO\nnumber\tO\tnumber\tO\n\t\ndefinition.path\tB-Library_Class\tdefinition.path\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n\t\nfile\tO\tfile\tO\npath\tO\tpath\tO\n\t\ncontents\tO\tcontents\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n\t\ncontents\tO\tcontents\tO\nstring\tB-Data_Type\tstring\tO\n\t\nExample\tO\tExample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_122347\tI-Code_Block\tGR_122347\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nimagefs.copy(input,output)\tB-Library_Function\timagefs.copy(input,output)\tO\n⇒\tO\t⇒\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\n\t\nKind\tO\tKind\tO\n:\tO\t:\tO\nstatic\tO\tstatic\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nimagefs\tB-Library\timagefs\tB-Code_Block\n\t\nSummary\tO\tSummary\tO\n:\tO\t:\tO\nCopy\tO\tCopy\tO\na\tO\ta\tO\ndevice\tB-File_Type\tdevice\tO\nfile\tO\tfile\tO\n\t\nAccess\tO\tAccess\tO\n:\tO\t:\tO\npublic\tO\tpublic\tO\n\t\nParam\tO\tParam\tO\n\t\nType\tO\tType\tO\n\t\nDescription\tO\tDescription\tO\n\t\ninput\tB-Library_Variable\tinput\tO\n\t\nObject\tB-Library_Class\tObject\tB-Code_Block\n\t\ninput\tO\tinput\tO\ndevice\tO\tdevice\tO\npath\tO\tpath\tO\ndefinition\tO\tdefinition\tO\n\t\ndefinition.image\tB-Library_Class\tdefinition.image\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n|\tO\t|\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tB-Code_Block\n\t\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nor\tO\tor\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tO\ninstance\tO\tinstance\tO\n\t\n[\tO\t[\tO\ninput.partition\tB-Library_Class\tinput.partition\tO\n]\tO\t]\tO\n\t\nNumber\tB-Data_Type\tNumber\tB-Code_Block\n\t\npartition\tO\tpartition\tO\nnumber\tO\tnumber\tO\n\t\ninput.path\tB-Library_Class\tinput.path\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n\t\nfile\tO\tfile\tO\npath\tO\tpath\tO\n\t\noutput\tO\toutput\tO\n\t\nObject\tB-Data_Type\tObject\tB-Code_Block\n\t\noutput\tO\toutput\tO\ndevice\tO\tdevice\tO\npath\tO\tpath\tO\ndefinition\tO\tdefinition\tO\n\t\noutput.image\tB-Library_Class\toutput.image\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n\t\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\n[\tO\t[\tO\noutput.partition\tB-Library_Class\toutput.partition\tO\n]\tO\t]\tO\n\t\nNumber\tB-Data_Type\tNumber\tB-Code_Block\n\t\npartition\tO\tpartition\tO\nnumber\tO\tnumber\tO\n\t\noutput.path\tB-Library_Class\toutput.path\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n\t\nfile\tO\tfile\tO\npath\tO\tpath\tO\n\t\nExample\tO\tExample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_122348\tI-Code_Block\tGR_122348\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nimagefs.replace(definition,search,replace)\tB-Library_Function\timagefs.replace(definition,search,replace)\tO\n⇒\tO\t⇒\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\n\t\nKind\tO\tKind\tO\n:\tO\t:\tO\nstatic\tO\tstatic\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nimagefs\tB-Library\timagefs\tB-Code_Block\n\t\nSummary\tO\tSummary\tO\n:\tO\t:\tO\nPerform\tO\tPerform\tO\nsearch\tO\tsearch\tO\nand\tO\tand\tO\nreplacement\tO\treplacement\tO\nin\tO\tin\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n\t\nAccess\tO\tAccess\tO\n:\tO\t:\tO\npublic\tO\tpublic\tO\n\t\nParam\tO\tParam\tO\n\t\nType\tO\tType\tO\n\t\nDescription\tO\tDescription\tO\n\t\ndefinition\tB-Library_Variable\tdefinition\tO\n\t\nObject\tB-Library_Class\tObject\tB-Code_Block\n\t\ndevice\tO\tdevice\tO\npath\tO\tpath\tO\ndefinition\tO\tdefinition\tO\n\t\ndefinition.image\tB-Library_Class\tdefinition.image\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n|\tO\t|\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tB-Code_Block\n\t\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nor\tO\tor\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tO\ninstance\tO\tinstance\tO\n\t\n[\tO\t[\tO\ndefinition.partition\tB-Library_Class\tdefinition.partition\tO\n]\tO\t]\tO\n\t\nNumber\tB-Data_Type\tNumber\tB-Code_Block\n\t\npartition\tO\tpartition\tO\nnumber\tO\tnumber\tO\n\t\ndefinition.path\tB-Library_Class\tdefinition.path\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n\t\nfile\tO\tfile\tO\npath\tO\tpath\tO\n\t\nsearch\tO\tsearch\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n|\tO\t|\tO\nRegExp\tB-Library_Class\tRegExp\tB-Code_Block\n\t\nsearch\tO\tsearch\tO\nterm\tO\tterm\tO\n\t\nreplace\tO\treplace\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n\t\nreplace\tO\treplace\tO\nvalue\tO\tvalue\tO\n\t\nExample\tO\tExample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_122349\tI-Code_Block\tGR_122349\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nimagefs.listDirectory(definition)\tB-Library_Function\timagefs.listDirectory(definition)\tO\n⇒\tO\t⇒\tO\nPromise.<Array.<String>>\tB-Data_Type\tPromise.<Array.<String>>\tB-Code_Block\n\t\nKind\tO\tKind\tO\n:\tO\t:\tO\nstatic\tO\tstatic\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nimagefs\tB-Library\timagefs\tB-Code_Block\n\t\nSummary\tO\tSummary\tO\n:\tO\t:\tO\nList\tO\tList\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\n\t\nReturns\tO\tReturns\tO\n:\tO\t:\tO\nPromise.<Array.<String>>\tB-Data_Type\tPromise.<Array.<String>>\tB-Code_Block\n-\tO\t-\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\ndirectory\tO\tdirectory\tO\n\t\nAccess\tO\tAccess\tO\n:\tO\t:\tO\npublic\tO\tpublic\tO\n\t\nParam\tO\tParam\tO\n\t\nType\tO\tType\tO\n\t\nDescription\tO\tDescription\tO\n\t\ndefinition\tB-Library_Variable\tdefinition\tO\n\t\nObject\tB-Library_Class\tObject\tB-Code_Block\n\t\ndevice\tO\tdevice\tO\npath\tO\tpath\tO\ndefinition\tO\tdefinition\tO\n\t\ndefinition.image\tB-Library_Class\tdefinition.image\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n|\tO\t|\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tB-Code_Block\n\t\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nor\tO\tor\tO\nfiledisk.Disk\tB-Library_Class\tfiledisk.Disk\tO\ninstance\tO\tinstance\tO\n\t\n[\tO\t[\tO\ndefinition.partition\tB-Library_Class\tdefinition.partition\tO\n]\tO\t]\tO\n\t\nNumber\tB-Data_Type\tNumber\tB-Code_Block\n\t\npartition\tO\tpartition\tO\nnumber\tO\tnumber\tO\n\t\ndefinition.path\tB-Library_Class\tdefinition.path\tO\n\t\nString\tB-Data_Type\tString\tB-Code_Block\n\t\ndirectory\tO\tdirectory\tO\npath\tO\tpath\tO\n\t\nExample\tO\tExample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_122350\tI-Code_Block\tGR_122350\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSupport\tO\tSupport\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nhaving\tO\thaving\tO\nany\tO\tany\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nraise\tO\traise\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nResin.io\tB-Application\tResin.io\tO\nteam\tO\tteam\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nTests\tO\tTests\tO\n\t\nRun\tO\tRun\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\nby\tO\tby\tO\ndoing\tO\tdoing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_122351\tI-Code_Block\tGR_122351\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nContribute\tO\tContribute\tO\n\t\nIssue\tO\tIssue\tO\nTracker\tO\tTracker\tO\n:\tO\t:\tO\ngithub.com/resin-io/resin-image-fs/issues\tO\tgithub.com/resin-io/resin-image-fs/issues\tO\n\t\nSource\tO\tSource\tO\nCode\tO\tCode\tO\n:\tO\t:\tO\ngithub.com/resin-io/resin-image-fs\tO\tgithub.com/resin-io/resin-image-fs\tO\n\t\nBefore\tO\tBefore\tO\nsubmitting\tO\tsubmitting\tO\na\tO\ta\tO\nPR\tO\tPR\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ninclude\tO\tinclude\tO\ntests\tO\ttests\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\ncoffeelint\tB-Application\tcoffeelint\tO\nruns\tO\truns\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nwarning\tO\twarning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_122352\tI-Code_Block\tGR_122352\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLicense\tO\tLicense\tO\n\t\nThe\tO\tThe\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nlicensed\tO\tlicensed\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nApache\tB-Licence\tApache\tO\n2.0\tI-Licence\t2.0\tO\nlicense\tI-Licence\tlicense\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/10\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/10\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwonder\tO\twonder\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\ninterest\tO\tinterest\tO\nin\tO\tin\tO\nlabelling\tO\tlabelling\tO\nimages\tB-User_Interface_Element\timages\tO\nwith\tO\twith\tO\nmetadata\tO\tmetadata\tO\nrelating\tO\trelating\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nrepository\tO\trepository\tO\nfrom\tO\tfrom\tO\nwhich\tO\twhich\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nbuilt\tO\tbuilt\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nwith\tO\twith\tO\ndocker\tB-Application\tdocker\tO\nimages\tB-User_Interface_Element\timages\tO\nthe\tO\tthe\tO\nDockerfile\tB-File_Type\tDockerfile\tB-Code_Block\nis\tO\tis\tO\nonly\tO\tonly\tO\none\tO\tone\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npuzzle\tO\tpuzzle\tO\n(\tO\t(\tO\nand\tO\tand\tO\nother\tO\tother\tO\nscripts\tO\tscripts\tO\nor\tO\tor\tO\nartifacts\tO\tartifacts\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nADDed\tB-Library_Function\tADDed\tB-Code_Block\nin\tO\tin\tO\n,\tO\t,\tO\nRUN\tB-Library_Function\tRUN\tB-Code_Block\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nand\tO\tand\tO\ntypically\tO\ttypically\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\ncollected\tO\tcollected\tO\ntogether\tO\ttogether\tO\nin\tO\tin\tO\na\tO\ta\tO\nversion\tO\tversion\tO\ncontrol\tO\tcontrol\tO\nrepository\tO\trepository\tO\n,\tO\t,\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nprecisely\tO\tprecisely\tO\nwhat\tO\twhat\tO\nwas\tO\twas\tO\nused\tO\tused\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\none\tO\tone\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nrepository\tO\trepository\tO\nand\tO\tand\tO\nto\tO\tto\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ncommit\tO\tcommit\tO\nwithin\tO\twithin\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\nto\tO\tto\tO\nlabel\tO\tlabel\tO\nwith\tO\twith\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthe\tO\tthe\tO\ncommit-id\tB-Library_Variable\tcommit-id\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nprobably\tO\tprobably\tO\nalso\tO\talso\tO\na\tO\ta\tO\nrepository\tO\trepository\tO\nURL\tO\tURL\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\ninferred\tO\tinferred\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\n,\tO\t,\tO\na\tO\ta\tO\nrepository\tO\trepository\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/7\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/7\tO\n\t\nJust\tO\tJust\tO\nrun\tO\trun\tO\nthis\tO\tthis\tO\nscript\tO\tscript\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nreport\tO\treport\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\nyour\tO\tyour\tO\nPBP\tO\tPBP\tO\ndata\tO\tdata\tO\ncorrelates\tO\tcorrelates\tO\nto\tO\tto\tO\nbox\tO\tbox\tO\nscores\tO\tscores\tO\n.\tO\t.\tO\n\t\nLooks\tO\tLooks\tO\nlike\tO\tlike\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nmostly\tO\tmostly\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nJust\tO\tJust\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nissues\tO\tissues\tO\nplaguing\tO\tplaguing\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ngames\tO\tgames\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark/issues/12\tO\thttps://github.com/ben-eb/metalsmith-remark/issues/12\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncontribution\tO\tcontribution\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwas\tO\twas\tO\nmerged\tO\tmerged\tO\ndirectly\tO\tdirectly\tO\nas\tO\tas\tO\nda3de48c504b9baf5a3fcda6e87886f0913b63c2\tO\tda3de48c504b9baf5a3fcda6e87886f0913b63c2\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\ncommit\tO\tcommit\tO\nhistory\tO\thistory\tO\ncleaner\tO\tcleaner\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\ncontribution\tO\tcontribution\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\ncredited\tO\tcredited\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoso/flexgrid\tO\tmoso/flexgrid\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moso/flexgrid/issues/3\tO\thttps://github.com/moso/flexgrid/issues/3\tO\n\t\nFixed\tO\tFixed\tO\nin\tO\tin\tO\nfae2207\tO\tfae2207\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nManuelDeLeon/vmc2jsx\tO\tManuelDeLeon/vmc2jsx\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/2\tO\thttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/2\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nsome\tO\tsome\tO\ntrouble\tO\ttrouble\tO\nusing\tO\tusing\tO\nSemantic-UI-React\tB-Library\tSemantic-UI-React\tO\nwith\tO\twith\tO\nviewmodel-react-plugin\tB-Library\tviewmodel-react-plugin\tO\nfor\tO\tfor\tO\ntags\tO\ttags\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ndot\tO\tdot\tO\nnotation\tO\tnotation\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n<Form.Field>\tB-Data_Structure\t<Form.Field>\tB-Code_Block\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nadapted\tO\tadapted\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_66744\tI-Code_Block\tGR_66744\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nexecute\tO\texecute\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nstating\tO\tstating\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_66745\tI-Code_Block\tGR_66745\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ncomment\tO\tcomment\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\n<Form.Field>\tB-Data_Structure\t<Form.Field>\tB-Code_Block\ntags\tO\ttags\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nok\tO\tok\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\ntags\tO\ttags\tO\nare\tO\tare\tO\nshowing\tO\tshowing\tO\nup\tO\tup\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nlogged\tO\tlogged\tO\nthe\tO\tthe\tO\nForm\tB-Variable_Name\tForm\tB-Code_Block\nobject\tO\tobject\tO\non\tO\ton\tO\ncreation\tO\tcreation\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nit\tO\tit\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nField\tB-Variable_Name\tField\tO\nproperty\tO\tproperty\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsomething\tO\tsomething\tO\nin\tO\tin\tO\nconflict\tO\tconflict\tO\nwith\tO\twith\tO\nviewmodel-react-plugin\tB-Library\tviewmodel-react-plugin\tO\nand\tO\tand\tO\ndot\tO\tdot\tO\nnotation\tO\tnotation\tO\nin\tO\tin\tO\ncomponent\tO\tcomponent\tO\nnames\tO\tnames\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nso\tO\tso\tO\n,\tO\t,\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nadvice\tO\tadvice\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nseptsixteen/6303_week5_lecture_assignment\tO\tseptsixteen/6303_week5_lecture_assignment\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/septsixteen/6303_week5_lecture_assignment\tO\thttps://github.com/septsixteen/6303_week5_lecture_assignment\tO\n\t\n6303_week5_lecture_assignment\tO\t6303_week5_lecture_assignment\tO\n\t\n6303_week5_lecture\tO\t6303_week5_lecture\tO\n-\tO\t-\tO\nHeidi\tB-User_Name\tHeidi\tO\n's\tO\t's\tO\ndata\tO\tdata\tO\nscience\tO\tscience\tO\nprofile\tO\tprofile\tO\n\t\nThis\tO\tThis\tO\nrepo\tO\trepo\tO\ncontains\tO\tcontains\tO\n:\tO\t:\tO\n\t\nHeidi\tB-User_Name\tHeidi\tO\n's\tO\t's\tO\ndata\tO\tdata\tO\nscience\tO\tscience\tO\nprofile\tO\tprofile\tO\n\t\nFiles\tO\tFiles\tO\nfrom\tO\tfrom\tO\nMcGee\tB-User_Name\tMcGee\tO\n's\tO\t's\tO\nstat6306datascience\tO\tstat6306datascience\tO\nrepo\tO\trepo\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/76\tO\thttps://github.com/linked-statistics/xkos/issues/76\tO\n\t\nThis\tO\tThis\tO\nremark\tO\tremark\tO\nis\tO\tis\tO\nmainly\tO\tmainly\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nhand\tO\thand\tO\nside\tO\tside\tO\nof\tO\tof\tO\nFigure\tB-User_Interface_Element\tFigure\tO\n9\tO\t9\tO\nwhich\tO\twhich\tO\nintroduces\tO\tintroduces\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nrelationships\tO\trelationships\tO\nwith\tO\twith\tO\nattributes\tO\tattributes\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nsymmetric\tO\tsymmetric\tO\n,\tO\t,\tO\ntransitive\tO\ttransitive\tO\nand\tO\tand\tO\ndisjoint\tO\tdisjoint\tO\nas\tO\tas\tO\nsub-properties\tO\tsub-properties\tO\nof\tO\tof\tO\nskos:related\tB-Library_Class\tskos:related\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nproperties\tO\tproperties\tO\nare\tO\tare\tO\ndeclared\tO\tdeclared\tO\nas\tO\tas\tO\nowl:TransitiveProperty\tB-Library_Variable\towl:TransitiveProperty\tO\n,\tO\t,\tO\nowl:SymmetricProperty\tB-Library_Variable\towl:SymmetricProperty\tO\n(\tO\t(\tO\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nconsistent\tO\tconsistent\tO\nwith\tO\twith\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nis\tO\tis\tO\nSKOS\tB-Library\tSKOS\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nI\tO\tI\tO\nagree\tO\tagree\tO\nthat\tO\tthat\tO\nskos:related\tB-Library_Class\tskos:related\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\npanacea\tO\tpanacea\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\npreference\tO\tpreference\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmechanism\tO\tmechanism\tO\nallowing\tO\tallowing\tO\nto\tO\tto\tO\nannotate\tO\tannotate\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nrelationships\tO\trelationships\tO\nused\tO\tused\tO\nin\tO\tin\tO\na\tO\ta\tO\nlinkset\tO\tlinkset\tO\nglobally\tO\tglobally\tO\n,\tO\t,\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nfor\tO\tfor\tO\nOpen\tB-Library\tOpen\tO\nPHACTS\tI-Library\tPHACTS\tO\nlinkset\tO\tlinkset\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\ndiscussing\tO\tdiscussing\tO\nmapping\tO\tmapping\tO\njustifications\tO\tjustifications\tO\n)\tO\t)\tO\nor\tO\tor\tO\nlocally\tO\tlocally\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nin\tO\tin\tO\nISO\tO\tISO\tO\n25964\tO\t25964\tO\n(\tO\t(\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nHierarchicalRelationship\tB-Library_Class\tHierarchicalRelationship\tO\nclass\tO\tclass\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nported\tO\tported\tO\nin\tO\tin\tO\nskos-thes\tB-Library\tskos-thes\tO\n)\tO\t)\tO\n\t\nOne\tO\tOne\tO\napproach\tO\tapproach\tO\nworth\tO\tworth\tO\nexploring\tO\texploring\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nintroduce\tO\tintroduce\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nqualified\tO\tqualified\tO\nontology\tO\tontology\tO\nrelationship\tO\trelationship\tO\n\"\tO\t\"\tO\ndesign\tO\tdesign\tO\npattern\tO\tpattern\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nsimpler\tO\tsimpler\tO\nrelationship\tO\trelationship\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nSKOS\tB-Library\tSKOS\tO\n(\tO\t(\tO\nand\tO\tand\tO\nmaybe\tO\tmaybe\tO\nsome\tO\tsome\tO\nselected\tO\tselected\tO\nXKOS\tB-Library\tXKOS\tO\nones\tO\tones\tO\n)\tO\t)\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nexpanded\tO\texpanded\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nricher\tO\tricher\tO\none\tO\tone\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nintermediate\tO\tintermediate\tO\nnode\tO\tnode\tO\nserving\tO\tserving\tO\nas\tO\tas\tO\nplaceholder\tO\tplaceholder\tO\nfor\tO\tfor\tO\nadding\tO\tadding\tO\nnew\tO\tnew\tO\ninformation\tO\tinformation\tO\n(\tO\t(\tO\nricher\tO\tricher\tO\nsemantic\tO\tsemantic\tO\ncharacterisation\tO\tcharacterisation\tO\n,\tO\t,\tO\nother\tO\tother\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nnature\tO\tnature\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nhow\tO\thow\tO\nit\tO\tit\tO\nis\tO\tis\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nobtained\tO\tobtained\tO\n.\tO\t.\tO\n\t\nSimpler\tO\tSimpler\tO\napproaches\tO\tapproaches\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nrequired\tO\trequired\tO\nfor\tO\tfor\tO\ncases\tO\tcases\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nworth\tO\tworth\tO\nto\tO\tto\tO\nsupply\tO\tsupply\tO\nadditional\tO\tadditional\tO\ndata\tO\tdata\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nweights\tO\tweights\tO\nassociated\tO\tassociated\tO\nto\tO\tto\tO\nkey\tO\tkey\tO\ndimensions\tO\tdimensions\tO\n(\tO\t(\tO\narea\tO\tarea\tO\n,\tO\t,\tO\npopulation\tO\tpopulation\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\nclassifications\tO\tclassifications\tO\ndescribing\tO\tdescribing\tO\nadministrative\tO\tadministrative\tO\nareas\tO\tareas\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nreason\tO\treason\tO\nto\tO\tto\tO\nlimit\tO\tlimit\tO\nthe\tO\tthe\tO\ndrift\tO\tdrift\tO\nof\tO\tof\tO\nXKOS\tB-Library\tXKOS\tO\ntowards\tO\ttowards\tO\nOWL\tB-Library\tOWL\tO\nconstruct\tO\tconstruct\tO\nis\tO\tis\tO\nto\tO\tto\tO\nfirmly\tO\tfirmly\tO\nanchor\tO\tanchor\tO\nXKOS\tB-Library\tXKOS\tO\npractice\tO\tpractice\tO\nin\tO\tin\tO\nits\tO\tits\tO\nnatural\tO\tnatural\tO\nniche\tO\tniche\tO\n(\tO\t(\tO\nSKOS\tB-Library\tSKOS\tO\nusers\tO\tusers\tO\n)\tO\t)\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nexpand\tO\texpand\tO\nit\tO\tit\tO\n(\tO\t(\tO\nblur\tO\tblur\tO\nthe\tO\tthe\tO\nboundary\tO\tboundary\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\npractices\tO\tpractices\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\npreference\tO\tpreference\tO\nis\tO\tis\tO\nfor\tO\tfor\tO\nXKOS\tB-Library\tXKOS\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\ntip-toe\tO\ttip-toe\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nSKOS\tB-Library\tSKOS\tO\n\"\tO\t\"\tO\ncomfort\tO\tcomfort\tO\nzone\tO\tzone\tO\n\"\tO\t\"\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\ndocument\tO\tdocument\tO\nbest\tO\tbest\tO\npractices\tO\tpractices\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncommunity\tO\tcommunity\tO\non\tO\ton\tO\ncases\tO\tcases\tO\nwhere\tO\twhere\tO\nricher\tO\tricher\tO\n(\tO\t(\tO\nOWL\tB-Library\tOWL\tO\nDL\tI-Library\tDL\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nsemantic\tO\tsemantic\tO\nrelationships\tO\trelationships\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsemantic\tO\tsemantic\tO\nrelations\tO\trelations\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nsection\tO\tsection\tO\n9\tO\t9\tO\nare\tO\tare\tO\nalso\tO\talso\tO\navailable\tO\tavailable\tO\nfrom\tO\tfrom\tO\nupper\tO\tupper\tO\nontologies\tO\tontologies\tO\nor\tO\tor\tO\nfrom\tO\tfrom\tO\nontologies\tO\tontologies\tO\nfocusing\tO\tfocusing\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmanagement\tO\tmanagement\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\ninterval\tO\tinterval\tO\nor\tO\tor\tO\nevent\tO\tevent\tO\nrelationships\tO\trelationships\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nother\tO\tother\tO\nways\tO\tways\tO\nto\tO\tto\tO\nenrich\tO\tenrich\tO\nthe\tO\tthe\tO\nclassification\tO\tclassification\tO\nusing\tO\tusing\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nannotation\tO\tannotation\tO\nor\tO\tor\tO\nmapping\tO\tmapping\tO\nguideline\tO\tguideline\tO\nand/or\tO\tand/or\tO\ninstructions\tO\tinstructions\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\ncompatible\tO\tcompatible\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nlift\tO\tlift\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nOWL\tB-Library\tOWL\tO\nDL\tI-Library\tDL\tO\nontology\tO\tontology\tO\nor\tO\tor\tO\nalternatively\tO\talternatively\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nlarger\tO\tlarger\tO\naudience\tO\taudience\tO\nis\tO\tis\tO\ntargeted\tO\ttargeted\tO\nin\tO\tin\tO\na\tO\ta\tO\nresource\tO\tresource\tO\ndesigned\tO\tdesigned\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nconsumed\tO\tconsumed\tO\nby\tO\tby\tO\nweb\tO\tweb\tO\ndevelopers\tO\tdevelopers\tO\n(\tO\t(\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nstandards\tO\tstandards\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nJSON-LD\tB-Library\tJSON-LD\tO\nfor\tO\tfor\tO\nwhich\tO\twhich\tO\na\tO\ta\tO\ncloser\tO\tcloser\tO\nalignment\tO\talignment\tO\nwith\tO\twith\tO\nschema.org\tB-Website\tschema.org\tO\nmeta-model\tO\tmeta-model\tO\nand\tO\tand\tO\nconcepts\tO\tconcepts\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nexpected\tO\texpected\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nwith\tO\twith\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nmechanism\tO\tmechanism\tO\nto\tO\tto\tO\nlift\tO\tlift\tO\nXKOS\tB-Library\tXKOS\tO\ncontent\tO\tcontent\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nfully\tO\tfully\tO\nfledge\tO\tfledge\tO\nOWL\tB-Library\tOWL\tO\nDL\tI-Library\tDL\tO\nontology\tO\tontology\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nno\tO\tno\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nxkos:disjoint\tB-Library_Class\txkos:disjoint\tO\nrelationship\tO\trelationship\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nremember\tO\tremember\tO\nthat\tO\tthat\tO\ntool\tO\ttool\tO\nimplementers\tO\timplementers\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nISO\tO\tISO\tO\n25964\tO\t25964\tO\nhttp://www.niso.org/schemas/iso25964/\tO\thttp://www.niso.org/schemas/iso25964/\tO\n\t\nS\tO\tS\tO\n.\tO\t.\tO\nG\tO\tG\tO\n.\tO\t.\tO\nDextre\tO\tDextre\tO\nClarke\tO\tClarke\tO\nand\tO\tand\tO\nM\tO\tM\tO\n.\tO\t.\tO\nLei\tO\tLei\tO\nZeng\tO\tZeng\tO\nStandard\tO\tStandard\tO\nSpotlight\tO\tSpotlight\tO\n:\tO\t:\tO\nFrom\tO\tFrom\tO\nISO\tO\tISO\tO\n2788\tO\t2788\tO\nto\tO\tto\tO\nISO\tO\tISO\tO\n25964\tO\t25964\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nevolution\tO\tevolution\tO\nof\tO\tof\tO\nthesaurus\tO\tthesaurus\tO\nstandards\tO\tstandards\tO\ntowards\tO\ttowards\tO\ninteroperability\tO\tinteroperability\tO\nand\tO\tand\tO\ndata\tO\tdata\tO\nModelling\tO\tModelling\tO\n\t\nL\tO\tL\tO\n.\tO\t.\tO\nWill\tO\tWill\tO\n(\tO\t(\tO\n201\tO\t201\tO\n2)\tO\t2)\tO\nThe\tO\tThe\tO\nISO\tO\tISO\tO\n25964\tO\t25964\tO\nData\tO\tData\tO\nModel\tO\tModel\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nStructure\tO\tStructure\tO\nof\tO\tof\tO\nan\tO\tan\tO\nInformation\tO\tInformation\tO\nRetrieval\tO\tRetrieval\tO\nThesaurus\tO\tThesaurus\tO\n\t\nskos-thes\tO\tskos-thes\tO\nhttp://purl.org/iso25964/skos-thes\tO\thttp://purl.org/iso25964/skos-thes\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nquestion\tO\tquestion\tO\nof\tO\tof\tO\nwhen\tO\twhen\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nOWL\tB-Library\tOWL\tO\nand\tO\tand\tO\nSKOS\tB-Library\tSKOS\tO\nand\tO\tand\tO\nwhether\tO\twhether\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\ntogether\tO\ttogether\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ndebated\tO\tdebated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npast\tO\tpast\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nreferences\tO\treferences\tO\n:\tO\t:\tO\n\t\nSTERNA\tO\tSTERNA\tO\nTechnology\tO\tTechnology\tO\nWatch\tO\tWatch\tO\nReport\tO\tReport\tO\n(\tO\t(\tO\n2009\tO\t2009\tO\n)\tO\t)\tO\nhttp://www.sterna-net.eu/images/stories/documents/sterna_del.6.5_technology-watch_full-report_20081210.pdf\tO\thttp://www.sterna-net.eu/images/stories/documents/sterna_del.6.5_technology-watch_full-report_20081210.pdf\tO\n(\tO\t(\tO\nsection\tO\tsection\tO\n6\tO\t6\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nSKOS\tO\tSKOS\tO\nroad\tO\troad\tO\nto\tO\tto\tO\nsemantic\tO\tsemantic\tO\ninteroperability\tO\tinteroperability\tO\n)\tO\t)\tO\n\t\nS\tO\tS\tO\n.\tO\t.\tO\nBechhofer\tO\tBechhofer\tO\nand\tO\tand\tO\nA\tO\tA\tO\n.\tO\t.\tO\n\t\nMiles\tO\tMiles\tO\n,\tO\t,\tO\nUsing\tO\tUsing\tO\nOWL\tB-Library\tOWL\tO\nand\tO\tand\tO\nSKOS\tB-Library\tSKOS\tO\nMay\tO\tMay\tO\n2008\tO\t2008\tO\nhttp://www.w3.org/2006/07/SWD/SKOS/skos-and-owl/master.html\tO\thttp://www.w3.org/2006/07/SWD/SKOS/skos-and-owl/master.html\tO\n\t\nS\tO\tS\tO\n.\tO\t.\tO\nBechhofer\tO\tBechhofer\tO\net\tO\tet\tO\nal\tO\tal\tO\nSKOS\tB-Library\tSKOS\tO\nwith\tO\twith\tO\nOWL\tB-Library\tOWL\tO\n:\tO\t:\tO\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nFull-ish\tO\tFull-ish\tO\n!\tO\t!\tO\n\t\nhttp://ceur-ws.org/Vol-432/owled2008eu_submission_22.pdf\tO\thttp://ceur-ws.org/Vol-432/owled2008eu_submission_22.pdf\tO\n\t\nA\tO\tA\tO\n.\tO\t.\tO\nIsaac\tO\tIsaac\tO\nand\tO\tand\tO\nT\tO\tT\tO\n.\tO\t.\tO\nBaker\tO\tBaker\tO\n(\tO\t(\tO\n201\tO\t201\tO\n5)\tO\t5)\tO\nLinked\tO\tLinked\tO\nData\tO\tData\tO\nPractice\tO\tPractice\tO\nat\tO\tat\tO\nDifferent\tO\tDifferent\tO\nLevels\tO\tLevels\tO\nof\tO\tof\tO\nSemantic\tO\tSemantic\tO\nPrecision\tO\tPrecision\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nPerspective\tO\tPerspective\tO\nof\tO\tof\tO\nLibraries\tO\tLibraries\tO\n,\tO\t,\tO\nArchives\tO\tArchives\tO\nand\tO\tand\tO\nMuseums\tO\tMuseums\tO\nhttp://onlinelibrary.wiley.com/doi/10.1002/bult.2015.1720410411/epdf\tO\thttp://onlinelibrary.wiley.com/doi/10.1002/bult.2015.1720410411/epdf\tO\n\t\nComplementarity\tO\tComplementarity\tO\nof\tO\tof\tO\nOWL\tB-Library\tOWL\tO\nand\tO\tand\tO\nSKOS\tB-Library\tSKOS\tO\nReport\tO\tReport\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nW3C\tB-Organization\tW3C\tO\nSemantic\tO\tSemantic\tO\nWeb\tO\tWeb\tO\nBest\tO\tBest\tO\nPractices\tO\tPractices\tO\nWorking\tO\tWorking\tO\nGroupslide\tO\tGroupslide\tO\n25\tO\t25\tO\nhttp://www.iwi-iuk.org/cashmere/htdocs/html/workshop2/presentations/semanticweb.pdf\tO\thttp://www.iwi-iuk.org/cashmere/htdocs/html/workshop2/presentations/semanticweb.pdf\tO\n\t\nThis\tO\tThis\tO\nretrospective\tO\tretrospective\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwork\tO\twork\tO\ndone\tO\tdone\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSKOS\tB-Library\tSKOS\tO\nworking\tO\tworking\tO\ngroup\tO\tgroup\tO\ndiscusses\tO\tdiscusses\tO\nthe\tO\tthe\tO\nchoices\tO\tchoices\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nor\tO\tor\tO\nignore\tO\tignore\tO\nspecific\tO\tspecific\tO\nrequirements\tO\trequirements\tO\nknown\tO\tknown\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nof\tO\tof\tO\ndevelopment\tO\tdevelopment\tO\n:\tO\t:\tO\n\t\nT\tO\tT\tO\n.\tO\t.\tO\nBaker\tO\tBaker\tO\net\tO\tet\tO\nal\tO\tal\tO\n(\tO\t(\tO\n201\tO\t201\tO\n3)\tO\t3)\tO\nKey\tO\tKey\tO\nchoices\tO\tchoices\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndesign\tO\tdesign\tO\nof\tO\tof\tO\nSimple\tO\tSimple\tO\nKnowledge\tO\tKnowledge\tO\nOrganization\tO\tOrganization\tO\nSystem\tO\tSystem\tO\n(\tO\t(\tO\nSKOS\tB-Library\tSKOS\tO\n)\tO\t)\tO\nhttp://www.cs.vu.nl/~guus/papers/Baker13a.pdf\tO\thttp://www.cs.vu.nl/~guus/papers/Baker13a.pdf\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/8\tO\thttps://github.com/zeroepoch/plotbitrate/issues/8\tO\n\t\nA\tO\tA\tO\nfew\tO\tfew\tO\ncomments\tO\tcomments\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nnow\tO\tnow\tO\n:\tO\t:\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nunused\tO\tunused\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\nlast_Values\tB-Library_Variable\tlast_Values\tB-Code_Block\nand\tO\tand\tO\ntime\tB-Library_Variable\ttime\tB-Code_Block\n.\tO\t.\tO\n\t\nframe_names\tB-Library_Variable\tframe_names\tB-Code_Block\nand\tO\tand\tO\nread_positions\tB-Library_Variable\tread_positions\tB-Code_Block\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nmoved\tO\tmoved\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nopen\tO\topen\tO\nblock\tO\tblock\tO\n.\tO\t.\tO\n\t\ndata_left\tB-Library_Variable\tdata_left\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nneeded\tO\tneeded\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\ntime\tO\ttime\tO\nit\tO\tit\tO\n's\tO\t's\tO\nset\tO\tset\tO\nyou\tO\tyou\tO\nbreak\tO\tbreak\tO\nanyways\tO\tanyways\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntwo\tO\ttwo\tO\ninner\tO\tinner\tO\nfor\tO\tfor\tO\nloops\tO\tloops\tO\nare\tO\tare\tO\nredundant\tO\tredundant\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nnext_time\tB-Library_Variable\tnext_time\tB-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nloop\tO\tloop\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nrecord\tO\trecord\tO\nyou\tO\tyou\tO\nwere\tO\twere\tO\nat\tO\tat\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nposition\tO\tposition\tO\nk\tB-Variable_Name\tk\tB-Code_Block\nthen\tO\tthen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ntime\tO\ttime\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\ngreater\tO\tgreater\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ncleaner\tO\tcleaner\tO\nway\tO\tway\tO\nto\tO\tto\tO\nadvance\tO\tadvance\tO\nand\tO\tand\tO\nexit\tO\texit\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nformatting\tO\tformatting\tO\nis\tO\tis\tO\ninconsistent\tO\tinconsistent\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nput\tO\tput\tO\nspaces\tO\tspaces\tO\naround\tO\taround\tO\nall\tO\tall\tO\noperators\tO\toperators\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nA\tB-Code_Block\tA\tO\n!=\tI-Code_Block\t!=\tO\nB\tI-Code_Block\tB\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nthe\tO\tthe\tO\nspacing\tO\tspacing\tO\nwithin\tO\twithin\tO\nparentheses\tO\tparentheses\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nremoved\tO\tremoved\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nreturn\tO\treturn\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nCSV\tB-File_Type\tCSV\tO\nfile\tO\tfile\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nnot\tO\tnot\tO\nplotting\tO\tplotting\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnow\tO\tnow\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nlose\tO\tlose\tO\ndata\tO\tdata\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nfinds\tO\tfinds\tO\nthe\tO\tthe\tO\nhighest\tO\thighest\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nset\tO\tset\tO\nof\tO\tof\tO\nframes\tO\tframes\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nonly\tO\tonly\tO\ncompares\tO\tcompares\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhighest\tO\thighest\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nlarger\tO\tlarger\tO\nconcern\tO\tconcern\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nwhether\tO\twhether\tO\nthis\tO\tthis\tO\neven\tO\teven\tO\nmakes\tO\tmakes\tO\nsense\tO\tsense\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nformat\tO\tformat\tO\nbut\tO\tbut\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nstraightforward\tO\tstraightforward\tO\napproach\tO\tapproach\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ndump\tO\tdump\tO\nthe\tO\tthe\tO\ncsv\tB-File_Type\tcsv\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nnumpy\tO\tnumpy\tO\narrays\tO\tarrays\tO\ndirectly\tO\tdirectly\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\norder\tO\torder\tO\nbefore\tO\tbefore\tO\ncreating\tO\tcreating\tO\nany\tO\tany\tO\nCSV\tB-File_Type\tCSV\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ncollect\tO\tcollect\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfirst\tO\tfirst\tO\ninto\tO\tinto\tO\nanother\tO\tanother\tO\nform\tO\tform\tO\nmaybe\tO\tmaybe\tO\nby\tO\tby\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ndictionary\tO\tdictionary\tO\nbased\tO\tbased\tO\non\tO\ton\tO\ntime\tO\ttime\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsorting\tO\tsorting\tO\nby\tO\tby\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nslower\tO\tslower\tO\nthan\tO\tthan\tO\nan\tO\tan\tO\nefficient\tO\tefficient\tO\nvariant\tO\tvariant\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndoing\tO\tdoing\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nclear\tO\tclear\tO\nto\tO\tto\tO\na\tO\ta\tO\ndeveloper\tO\tdeveloper\tO\nthat\tO\tthat\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nreally\tO\treally\tO\nappreciate\tO\tappreciate\tO\nthe\tO\tthe\tO\ncontribution\tO\tcontribution\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nis\tO\tis\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\ntoo\tO\ttoo\tO\nmany\tO\tmany\tO\nproblems\tO\tproblems\tO\nto\tO\tto\tO\naccept\tO\taccept\tO\nit\tO\tit\tO\nin\tO\tin\tO\nits\tO\tits\tO\ncurrent\tO\tcurrent\tO\nform\tO\tform\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/17\tO\thttps://github.com/demigor/lex.db/issues/17\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nMacBook\tB-Device\tMacBook\tO\nor\tO\tor\tO\niMac\tB-Device\tiMac\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos\tO\thttps://github.com/linked-statistics/xkos\tO\n\t\nXKOS\tB-Library\tXKOS\tO\n\t\nAn\tO\tAn\tO\nSKOS\tB-Library\tSKOS\tO\nextension\tO\textension\tO\nfor\tO\tfor\tO\nrepresenting\tO\trepresenting\tO\nstatistical\tO\tstatistical\tO\nclassifications\tO\tclassifications\tO\n\t\nXKOS\tB-Library\tXKOS\tO\nis\tO\tis\tO\nan\tO\tan\tO\nextension\tO\textension\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nSimple\tB-Library\tSimple\tO\nKnowledge\tI-Library\tKnowledge\tO\nOrganization\tI-Library\tOrganization\tO\nSystem\tI-Library\tSystem\tO\n(\tO\t(\tO\nSKOS\tB-Library\tSKOS\tO\n)\tO\t)\tO\napplicable\tO\tapplicable\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nneeds\tO\tneeds\tO\nof\tO\tof\tO\nstatistical\tO\tstatistical\tO\noffices\tO\toffices\tO\nfor\tO\tfor\tO\ndescribing\tO\tdescribing\tO\nstatistical\tO\tstatistical\tO\nclassification\tO\tclassification\tO\nsystems\tO\tsystems\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nXKOS\tB-Library\tXKOS\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nat\tO\tat\tO\nhttp://www.ddialliance.org/Specification/RDF/XKOS\tO\thttp://www.ddialliance.org/Specification/RDF/XKOS\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/1\tO\thttps://github.com/smirarab/pasta/issues/1\tO\n\t\nIf\tO\tIf\tO\nno\tO\tno\tO\nmodel\tO\tmodel\tO\nfor\tO\tfor\tO\ntree\tB-Data_Structure\ttree\tO\nestimation\tO\testimation\tO\nis\tO\tis\tO\ngiven\tO\tgiven\tO\nto\tO\tto\tO\nPASTA\tB-Application\tPASTA\tO\n,\tO\t,\tO\nPASTA\tB-Application\tPASTA\tO\nwill\tO\twill\tO\nautomatically\tO\tautomatically\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ntree\tB-Data_Structure\ttree\tO\nmodel\tO\tmodel\tO\n(\tO\t(\tO\n-gtr\tB-Code_Block\t-gtr\tO\n-nt\tI-Code_Block\t-nt\tO\nfor\tO\tfor\tO\nDNA/RNA\tO\tDNA/RNA\tO\n-wag\tB-Code_Block\t-wag\tO\n-gamma\tI-Code_Block\t-gamma\tO\nfor\tO\tfor\tO\nAmino\tO\tAmino\tO\nAcid\tO\tAcid\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ntemp\tO\ttemp\tO\nconfig\tB-File_Type\tconfig\tO\nfile\tO\tfile\tO\nwill\tO\twill\tO\nleave\tO\tleave\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nblank\tO\tblank\tO\nstill\tO\tstill\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmay\tO\tmay\tO\ncause\tO\tcause\tO\nconfusion\tO\tconfusion\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nPASTA\tB-Application\tPASTA\tO\nshould\tO\tshould\tO\nautomatically\tO\tautomatically\tO\npopulate\tO\tpopulate\tO\nall\tO\tall\tO\nfields\tO\tfields\tO\nthat\tO\tthat\tO\nleft\tO\tleft\tO\nblank\tO\tblank\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nsettings\tO\tsettings\tO\nare\tO\tare\tO\nknown\tO\tknown\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/26\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/26\tO\n\t\nProposal\tO\tProposal\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nto\tO\tto\tO\nlowercase-underscore\tO\tlowercase-underscore\tO\nformat\tO\tformat\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\n'\tO\t'\tO\nname\tO\tname\tO\n'\tO\t'\tO\n,\tO\t,\tO\n'\tO\t'\tO\nbuild_host'\tO\tbuild_host'\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlabels\tO\tlabels\tO\n.\tO\t.\tO\n\t\nFollow\tO\tFollow\tO\nup\tO\tup\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndiscussion\tO\tdiscussion\tO\nin\tO\tin\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/8\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/8\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nPR\tO\tPR\tO\nin\tO\tin\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/pull/11\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/pull/11\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/4\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/4\tO\n\t\nRelease\tO\tRelease\tO\n0.4.1\tB-Version\t0.4.1\tO\nbuilt\tO\tbuilt\tO\nand\tO\tand\tO\npushed\tO\tpushed\tO\nto\tO\tto\tO\nrubygems\tB-Library\trubygems\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\na\tO\ta\tO\nminute\tO\tminute\tO\nor\tO\tor\tO\ntwo\tO\ttwo\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nmuch\tO\tmuch\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/46\tO\thttps://github.com/mapbox/tile-count/issues/46\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\nan\tO\tan\tO\n.mbtiles\tB-File_Type\t.mbtiles\tO\nfile\tO\tfile\tO\ncreated\tO\tcreated\tO\nwith\tO\twith\tO\ntile-count-tile\tB-Application\ttile-count-tile\tO\nto\tO\tto\tO\nMapbox\tB-Application\tMapbox\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nvector_layers\tB-Error_Name\tvector_layers\tO\nmust\tI-Error_Name\tmust\tO\nbe\tI-Error_Name\tbe\tO\nan\tI-Error_Name\tan\tO\narray\tI-Error_Name\tarray\tO\nof\tI-Error_Name\tof\tO\nlayer\tI-Error_Name\tlayer\tO\nobjects\tI-Error_Name\tobjects\tO\n\"\tO\t\"\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nfirst\tO\tfirst\tO\nexporting\tO\texporting\tO\nthe\tO\tthe\tO\nmbtiles\tB-File_Type\tmbtiles\tO\nto\tO\tto\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\nwith\tO\twith\tO\nmbutil\tB-Application\tmbutil\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nediting\tO\tediting\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\njson\tB-File_Type\tjson\tO\n\"\tO\t\"\tO\nkey\tO\tkey\tO\nin\tO\tin\tO\nmetadata.json\tB-File_Name\tmetadata.json\tO\nfrom\tO\tfrom\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_19605\tI-Code_Block\tGR_19605\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_19606\tI-Code_Block\tGR_19606\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nset\tO\tset\tO\nspecific\tO\tspecific\tO\nmin\tB-Library_Variable\tmin\tO\nand\tO\tand\tO\nmax\tB-Library_Variable\tmax\tO\nzooms\tI-Library_Variable\tzooms\tO\nwith\tO\twith\tO\ntile-count-tile\tB-Application\ttile-count-tile\tO\nso\tO\tso\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nthem\tO\tthem\tO\nmatch\tO\tmatch\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\njson\tB-File_Type\tjson\tO\n)\tO\t)\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nafter\tO\tafter\tO\nre-packing\tO\tre-packing\tO\nback\tO\tback\tO\nto\tO\tto\tO\na\tO\ta\tO\n.mbtiles\tB-File_Type\t.mbtiles\tO\nwith\tO\twith\tO\nmbutil\tB-Application\tmbutil\tO\n,\tO\t,\tO\nmapbox\tB-Application\tmapbox\tO\nwould\tO\twould\tO\naccept\tO\taccept\tO\nthe\tO\tthe\tO\nupload\tO\tupload\tO\n.\tO\t.\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/25\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/25\tO\n\t\n@teeparham\tB-User_Name\t@teeparham\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\nmind\tO\tmind\tO\nreleasing\tO\treleasing\tO\nchanges\tO\tchanges\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nas\tO\tas\tO\na\tO\ta\tO\nnew\tO\tnew\tO\n1.x\tB-Version\t1.x\tB-Code_Block\nversion\tO\tversion\tO\n?\tO\t?\tO\n\t\neg\tO\teg\tO\n.\tO\t.\tO\n\t\n1.2.1\tB-Version\t1.2.1\tB-Code_Block\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nthat\tO\tthat\tO\nafter\tO\tafter\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nmerged\tO\tmerged\tO\nto\tO\tto\tO\nbranch\tO\tbranch\tO\nrgeo:1.0\tB-Library\trgeo:1.0\tB-Code_Block\nit\tO\tit\tO\nwas\tO\twas\tO\na\tO\ta\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n1.2\tB-Version\t1.2\tO\nrelease\tO\trelease\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndependency\tO\tdependency\tO\non\tO\ton\tO\ngit\tB-Application\tgit\tB-Code_Block\nsource\tO\tsource\tO\n\t\ngem\tB-Code_Block\tgem\tB-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\nrgeo-activerecord\tI-Code_Block\trgeo-activerecord\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\ngit\tI-Code_Block\tgit\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\nhttps://github.com/rgeo/rgeo-activerecord.git\tI-Code_Block\thttps://github.com/rgeo/rgeo-activerecord.git\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nbranch\tI-Code_Block\tbranch\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n1.0\tI-Code_Block\t1.0\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n\t\nin\tO\tin\tO\nhttps://github.com/rgeo/activerecord-mysql2spatial-adapter\tO\thttps://github.com/rgeo/activerecord-mysql2spatial-adapter\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nManuelDeLeon/vmc2jsx\tO\tManuelDeLeon/vmc2jsx\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/4\tO\thttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/4\tO\n\t\nShould\tO\tShould\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nrepro\tO\trepro\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nSun\tO\tSun\tO\n,\tO\t,\tO\nJul\tO\tJul\tO\n29\tO\t29\tO\n,\tO\t,\tO\n2018\tO\t2018\tO\n,\tO\t,\tO\n2:08\tO\t2:08\tO\nAM\tO\tAM\tO\nwildhart\tO\twildhart\tO\nnotifications@github.com\tO\tnotifications@github.com\tO\nwrote\tO\twrote\tO\n:\tO\t:\tO\n\t\nWith\tO\tWith\tO\nviewmodel-react-plugin\tB-Library\tviewmodel-react-plugin\tO\n>=\tO\t>=\tO\n3.1.3\tB-Version\t3.1.3\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nwill\tO\twill\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\ncompile\tO\tcompile\tO\nif\tO\tif\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nb\tB-Variable_Name\tb\tO\n=\tO\t=\tO\n\"\tO\t\"\tO\ndefer\tO\tdefer\tO\n:\tO\t:\tO\ntrue\tO\ttrue\tO\n\"\tO\t\"\tO\nanywhere\tO\tanywhere\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nbabel\tB-Library\tbabel\tO\nerrors\tO\terrors\tO\n:\tO\t:\tO\n\t\nProperty\tB-Code_Block\tProperty\tO\nright\tI-Code_Block\tright\tO\nof\tI-Code_Block\tof\tO\nLogicalExpression\tI-Code_Block\tLogicalExpression\tO\nexpected\tI-Code_Block\texpected\tO\nnode\tI-Code_Block\tnode\tO\nto\tI-Code_Block\tto\tO\nbe\tI-Code_Block\tbe\tO\nof\tI-Code_Block\tof\tO\na\tI-Code_Block\ta\tO\ntype\tI-Code_Block\ttype\tO\n[\tB-Code_Block\t[\tO\n\"Expression\"\tI-Code_Block\t\"Expression\"\tO\n]\tI-Code_Block\t]\tO\nbut\tB-Code_Block\tbut\tO\ninstead\tI-Code_Block\tinstead\tO\ngot\tI-Code_Block\tgot\tO\n\"\tI-Code_Block\t\"\tO\nJSXExpressionContainer\tI-Code_Block\tJSXExpressionContainer\tO\n\"\tI-Code_Block\t\"\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nof\tO\tof\tO\nupgrading\tO\tupgrading\tO\nMeteor\tB-Library\tMeteor\tO\n1.6->1.7\tB-Version\t1.6->1.7\tO\nand\tO\tand\tO\nReact\tB-Library\tReact\tO\n15->16\tB-Version\t15->16\tO\n,\tO\t,\tO\nI\tO\tI\tO\nlost\tO\tlost\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nbinding\tO\tbinding\tO\nin\tO\tin\tO\nself\tO\tself\tO\nclosing\tO\tclosing\tO\ntags\tO\ttags\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nupgraded\tO\tupgraded\tO\nto\tO\tto\tO\nviewmodel-react-plugin\tB-Library\tviewmodel-react-plugin\tO\n@3\tB-Version\t@3\tO\n.1.4\tI-Version\t.1.4\tO\nwhich\tO\twhich\tO\nfixes\tO\tfixes\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nproblem\tO\tproblem\tO\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\ncompiles\tO\tcompiles\tO\nunless\tO\tunless\tO\nI\tO\tI\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\ndefer\tO\tdefer\tO\nbindings\tO\tbindings\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ndowngrade\tO\tdowngrade\tO\nto\tO\tto\tO\nviewmodel-react-plugin\tB-Library\tviewmodel-react-plugin\tO\n@3\tB-Version\t@3\tO\n.1.0\tI-Version\t.1.0\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncompile\tO\tcompile\tO\nwith\tO\twith\tO\ndeferred\tO\tdeferred\tO\ncomponents\tO\tcomponents\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nbinding\tO\tbinding\tO\nin\tO\tin\tO\nself\tO\tself\tO\nclosing\tO\tclosing\tO\ntext\tO\ttext\tO\nis\tO\tis\tO\ngone\tO\tgone\tO\nagain\tO\tagain\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\ndeferWithRequire\tB-Library_Variable\tdeferWithRequire\tO\n\"\tO\t\"\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\ntrue\tO\ttrue\tO\n\"\tO\t\"\tO\nbabel\tB-Library\tbabel\tO\nparameter\tO\tparameter\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nmade\tO\tmade\tO\nno\tO\tno\tO\ndifference\tO\tdifference\tO\n.\tO\t.\tO\n\t\n—\tO\t—\tO\nYou\tO\tYou\tO\nare\tO\tare\tO\nreceiving\tO\treceiving\tO\nthis\tO\tthis\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsubscribed\tO\tsubscribed\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nReply\tO\tReply\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nemail\tO\temail\tO\ndirectly\tO\tdirectly\tO\n,\tO\t,\tO\nview\tO\tview\tO\nit\tO\tit\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/4\tO\thttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/4\tO\n,\tO\t,\tO\nor\tO\tor\tO\nmute\tO\tmute\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nhttps://github.com/notifications/unsubscribe-auth/AED31glnyIRYDTQvD6yT9Yp8bYmoKFgxks5uLW1jgaJpZM4VlVWw\tO\thttps://github.com/notifications/unsubscribe-auth/AED31glnyIRYDTQvD6yT9Yp8bYmoKFgxks5uLW1jgaJpZM4VlVWw\tO\n\t\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/libp2p/interface-record-store/issues/5\tO\thttps://github.com/libp2p/interface-record-store/issues/5\tO\n\t\n@diasdavid\tB-User_Name\t@diasdavid\tO\nNeeds\tO\tNeeds\tO\nmerge\tO\tmerge\tO\nand\tO\tand\tO\nnpm\tB-Code_Block\tnpm\tB-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\npatch\tI-Code_Block\tpatch\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/14\tO\thttps://github.com/rpcope1/Hantek6022API/issues/14\tO\n\t\nFX2LP\tB-Device\tFX2LP\tO\nD0-7\tO\tD0-7\tO\n->\tO\t->\tO\nD0-7B\tO\tD0-7B\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nAD9288\tO\tAD9288\tO\nFX2LP\tO\tFX2LP\tO\nB0-7\tO\tB0-7\tO\n->\tO\t->\tO\nD0-7A\tO\tD0-7A\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nAD9288\tO\tAD9288\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/4\tO\thttps://github.com/rpcope1/Hantek6022API/issues/4\tO\n\t\nAdded\tO\tAdded\tO\nexample_linux_trezor\tB-File_Name\texample_linux_trezor\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndumps\tO\tdumps\tO\nwav-files\tB-File_Type\twav-files\tO\nfor\tO\tfor\tO\n16MHz\tO\t16MHz\tO\ncaptures\tO\tcaptures\tO\nunder\tO\tunder\tO\nLinux\tB-Operating_System\tLinux\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/31\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/31\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\ncrashes\tO\tcrashes\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nhas\tO\thas\tO\na\tO\ta\tO\ncorrupted\tO\tcorrupted\tO\nAugmentedImageDatabase\tB-Data_Set_Name\tAugmentedImageDatabase\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\ncould\tO\tcould\tO\nthat\tO\tthat\tO\nhappened\tO\thappened\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nattach\tO\tattach\tO\nthe\tO\tthe\tO\nlog\tO\tlog\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nin\tO\tin\tO\nUnreal\tB-Application\tUnreal\tO\neditor\tI-Application\teditor\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2/issues/6\tO\thttps://github.com/thehyve/puppet-i2b2/issues/6\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\none\tO\tone\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nstrategy\tO\tstrategy\tO\nfor\tO\tfor\tO\ntesting\tO\ttesting\tO\nif\tO\tif\tO\nCSS\tB-Language\tCSS\tO\ndeclarations\tO\tdeclarations\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nadded\tO\tadded\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\na\tO\ta\tO\nstylesheet\tO\tstylesheet\tO\nis\tO\tis\tO\nremoved\tO\tremoved\tO\nthe\tO\tthe\tO\nunless\tO\tunless\tO\ntrigger\tO\ttrigger\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nfire\tO\tfire\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nstylesheet\tO\tstylesheet\tO\nis\tO\tis\tO\nadded\tO\tadded\tO\nor\tO\tor\tO\nreplaced\tO\treplaced\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\nprobably\tO\tprobably\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\ngrep\tB-Code_Block\tgrep\tO\nwith\tO\twith\tO\na\tO\ta\tO\nmultiline\tO\tmultiline\tO\nregex\tB-Algorithm\tregex\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nthoughts\tO\tthoughts\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/40\tO\thttps://github.com/rpcope1/Hantek6022API/issues/40\tO\n\t\nHi\tO\tHi\tO\nGreat\tO\tGreat\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nHantek\tB-Organization\tHantek\tO\nfirmware\tO\tfirmware\tO\n.\tO\t.\tO\n\t\nApparently\tO\tApparently\tO\nyour\tO\tyour\tO\nmod_fw_01.ihex\tB-File_Name\tmod_fw_01.ihex\tO\nfirmware\tO\tfirmware\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nopenhantek\tB-Application\topenhantek\tO\n6022be\tI-Application\t6022be\tO\nbranch\tO\tbranch\tO\nby\tO\tby\tO\nswkim01\tO\tswkim01\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\nseveral\tO\tseveral\tO\ndifferent\tO\tdifferent\tO\n*\tB-File_Type\t*\tO\nhex\tI-File_Type\thex\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nyou\tO\tyou\tO\nrepo\tO\trepo\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\na\tO\ta\tO\nstock_fw.ihex\tB-File_Name\tstock_fw.ihex\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nHantek\tB-Organization\tHantek\tO\nfirmware\tO\tfirmware\tO\nrelease\tO\trelease\tO\nsomething\tO\tsomething\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhat\tO\twhat\tO\nabout\tO\tabout\tO\nall\tO\tall\tO\nyour\tO\tyour\tO\nother\tO\tother\tO\nhex\tB-File_Type\thex\tO\nfiles\tO\tfiles\tO\n?\tO\t?\tO\n\t\nCa\tO\tCa\tO\nn't\tO\tn't\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\ndifferent\tO\tdifferent\tO\nhex\tB-File_Type\thex\tO\nfiles\tO\tfiles\tO\n(\tO\t(\tO\nincluding\tO\tincluding\tO\ntheir\tO\ttheir\tO\nAPI\tB-Library\tAPI\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nyour\tO\tyour\tO\n'\tO\t'\tO\ncustom\tO\tcustom\tO\n'\tO\t'\tO\nfolder\tO\tfolder\tO\nand\tO\tand\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nif\tO\tif\tO\ninstalled\tO\tinstalled\tO\n,\tO\t,\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\nvery\tO\tvery\tO\ndifferent\tO\tdifferent\tO\nAPI\tB-Library\tAPI\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\ncompliant\tO\tcompliant\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nHantek\tB-Organization\tHantek\tO\nfirmware\tO\tfirmware\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/127\tO\thttps://github.com/svenstaro/flamejam/issues/127\tO\n\t\nYeajh\tO\tYeajh\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nknew\tO\tknew\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nbroken\tO\tbroken\tO\nsomehow\tO\tsomehow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwas\tO\twas\tO\na\tO\ta\tO\ndirty\tO\tdirty\tO\nhack\tO\thack\tO\nanyway\tO\tanyway\tO\n,\tO\t,\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\n,\tO\t,\tO\nhuh\tO\thuh\tO\n?\tO\t?\tO\n\t\nBut\tO\tBut\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\ncrucial\tO\tcrucial\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nworking\tO\tworking\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwebapp\tO\twebapp\tO\nwe\tO\twe\tO\nprobably\tO\tprobably\tO\nwill\tO\twill\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\njam\tO\tjam\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmakeen-project/makeen\tO\tmakeen-project/makeen\tO\n-hapi\tO\t-hapi\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/viczam/makeen-hapi/issues/7\tO\thttps://github.com/viczam/makeen-hapi/issues/7\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nmakeen\tB-Application\tmakeen\tO\nis\tO\tis\tO\na\tO\ta\tO\nboilerplate\tO\tboilerplate\tO\nbundling\tO\tbundling\tO\ntogether\tO\ttogether\tO\nhapi\tB-Library\thapi\tO\nplugins\tO\tplugins\tO\nusing\tO\tusing\tO\nlerna\tB-Application\tlerna\tO\nand\tO\tand\tO\nhaving\tO\thaving\tO\noctobus\tB-Library\toctobus\tO\nat\tO\tat\tO\nits\tO\tits\tO\ncore\tO\tcore\tO\nas\tO\tas\tO\na\tO\ta\tO\nmean\tO\tmean\tO\nto\tO\tto\tO\nfacilitate\tO\tfacilitate\tO\ncommunication\tO\tcommunication\tO\nbetween\tO\tbetween\tO\ndifferent\tO\tdifferent\tO\nbusiness-related\tO\tbusiness-related\tO\ncomponents\tO\tcomponents\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/36\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/36\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/3\tO\thttps://github.com/zeroepoch/plotbitrate/issues/3\tO\n\t\nWhen\tO\tWhen\tO\nopening\tO\topening\tO\nmultiple\tO\tmultiple\tO\nplots\tB-User_Interface_Element\tplots\tO\nit\tO\tit\tO\n's\tO\t's\tO\ngood\tO\tgood\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthem\tO\tthem\tO\ndistinguished\tO\tdistinguished\tO\nby\tO\tby\tO\ninput\tO\tinput\tO\nfile\tO\tfile\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/2\tO\thttps://github.com/linked-statistics/xkos/issues/2\tO\n\t\nVOAF\tO\tVOAF\tO\nand\tO\tand\tO\nother\tO\tother\tO\nproperties\tO\tproperties\tO\nadded\tO\tadded\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nontology\tO\tontology\tO\nin\tO\tin\tO\nversion\tO\tversion\tO\n0.9.7\tB-Version\t0.9.7\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nHackClub-SLHS/HackClub\tO\tHackClub-SLHS/HackClub\tO\n-Website\tO\t-Website\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/HackClub-SLHS/HackClub-Website/issues/11\tO\thttps://github.com/HackClub-SLHS/HackClub-Website/issues/11\tO\n\t\nMain\tO\tMain\tO\npage\tB-User_Interface_Element\tpage\tO\nis\tO\tis\tO\ncompletely\tO\tcompletely\tO\nrewritten\tO\trewritten\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nthe\tO\tthe\tO\nlook\tO\tlook\tO\nis\tO\tis\tO\nas\tO\tas\tO\npreserved\tO\tpreserved\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark/issues/5\tO\thttps://github.com/ben-eb/metalsmith-remark/issues/5\tO\n\t\nHello\tO\tHello\tO\n:wave\tO\t:wave\tO\n:\tO\t:\tO\n\t\n:rocket::rocket::rocket\tO\t:rocket::rocket::rocket\tO\n:\tO\t:\tO\n\t\neslint\tB-Library\teslint\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n2.0.0\tB-Version\t2.0.0\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\npasses\tO\tpasses\tO\nyour\tO\tyour\tO\ntests\tO\ttests\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\npublish\tO\tpublish\tO\nyour\tO\tyour\tO\nsoftware\tO\tsoftware\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\neslint\tB-Library\teslint\tO\n–\tO\t–\tO\notherwise\tO\totherwise\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nbranch\tO\tbranch\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nadaptions\tO\tadaptions\tO\nand\tO\tand\tO\nfixes\tO\tfixes\tO\n.\tO\t.\tO\n\t\nHappy\tO\tHappy\tO\nfixing\tO\tfixing\tO\nand\tO\tand\tO\nmerging\tO\tmerging\tO\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nGitHub\tB-Website\tGitHub\tO\nRelease\tO\tRelease\tO\n\t\ncc3a66b\tO\tcc3a66b\tO\nDocs\tO\tDocs\tO\n:\tO\t:\tO\nIssue\tO\tIssue\tO\nmessage\tO\tmessage\tO\nwhen\tO\twhen\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\nis\tO\tis\tO\nneeded\tO\tneeded\tO\n(\tO\t(\tO\nNicholas\tB-User_Name\tNicholas\tO\nC\tI-User_Name\tC\tO\n.\tI-User_Name\t.\tO\nZakas\tI-User_Name\tZakas\tO\n)\tO\t)\tO\n\t\n2bc40fa\tO\t2bc40fa\tO\nDocs\tO\tDocs\tO\n:\tO\t:\tO\nSimplify\tO\tSimplify\tO\nhierarchy\tO\thierarchy\tO\nof\tO\tof\tO\nheadings\tO\theadings\tO\nin\tO\tin\tO\nrule\tO\trule\tO\npages\tB-User_Interface_Element\tpages\tO\n(\tO\t(\tO\nMark\tB-User_Name\tMark\tO\nPedrott\tI-User_Name\tPedrott\tO\ni)\tI-User_Name\ti)\tO\n\t\n1666254\tO\t1666254\tO\nDocs\tO\tDocs\tO\n:\tO\t:\tO\nAdd\tO\tAdd\tO\nnote\tO\tnote\tO\nabout\tO\tabout\tO\nonly-whitespace\tO\tonly-whitespace\tO\nrule\tO\trule\tO\nfor\tO\tfor\tO\n--fix\tO\t--fix\tB-Code_Block\n(\tO\t(\tO\nfixes\tO\tfixes\tO\n#4774\tO\t#4774\tO\n)\tO\t)\tO\n(\tO\t(\tO\nBurak\tB-User_Name\tBurak\tO\nYigit\tI-User_Name\tYigit\tO\nKaya\tI-User_Name\tKaya\tO\n)\tO\t)\tO\n\t\n2fa09d2\tO\t2fa09d2\tO\nDocs\tO\tDocs\tO\n:\tO\t:\tO\nAdd\tO\tAdd\tO\nquotes\tO\tquotes\tB-Code_Block\nto\tO\tto\tO\nrelated\tO\trelated\tO\nsection\tO\tsection\tO\nof\tO\tof\tO\nprefer-template\tO\tprefer-template\tB-Code_Block\n(\tO\t(\tO\nfixes\tO\tfixes\tO\n#5192\tO\t#5192\tO\n)\tO\t)\tO\n(\tO\t(\tO\nBurak\tB-User_Name\tBurak\tO\nYigit\tI-User_Name\tYigit\tO\nKaya\tI-User_Name\tKaya\tO\n)\tI-User_Name\t)\tO\n\t\n7b12995\tO\t7b12995\tO\nFix\tO\tFix\tO\n:\tO\t:\tO\nkey-spacing\tO\tkey-spacing\tB-Code_Block\nnot\tO\tnot\tO\nenforcing\tO\tenforcing\tO\nno-space\tO\tno-space\tO\nin\tO\tin\tO\nminimum\tO\tminimum\tO\nmode\tO\tmode\tO\n(\tO\t(\tO\nfixes\tO\tfixes\tO\n#5008\tO\t#5008\tO\n)\tO\t)\tO\n(\tO\t(\tO\nBurak\tB-User_Name\tBurak\tO\nYigit\tI-User_Name\tYigit\tO\nKaya\tI-User_Name\tKaya\tO\n)\tO\t)\tO\n\t\nc1c4f4d\tO\tc1c4f4d\tO\nBreaking\tO\tBreaking\tO\n:\tO\t:\tO\nnew\tO\tnew\tO\nno-empty-function\tO\tno-empty-function\tB-Code_Block\nrule\tO\trule\tO\n(\tO\t(\tO\nfixes\tO\tfixes\tO\n#5161\tO\t#5161\tO\n)\tO\t)\tO\n(\tO\t(\tO\nToru\tB-User_Name\tToru\tO\nNagashima\tI-User_Name\tNagashima\tO\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\ngreenkeeper.io\tB-Application\tgreenkeeper.io\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nkeeps\tO\tkeeps\tO\nyour\tO\tyour\tO\nsoftware\tO\tsoftware\tO\n,\tO\t,\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\n,\tO\t,\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nTired\tO\tTired\tO\nof\tO\tof\tO\nseeing\tO\tseeing\tO\nthis\tO\tthis\tO\nsponsor\tO\tsponsor\tO\nmessage\tO\tmessage\tO\n?\tO\t?\tO\n\t\nUpgrade\tO\tUpgrade\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsupporter\tO\tsupporter\tO\nplan\tO\tplan\tO\n!\tO\t!\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nalso\tO\talso\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\nfaster\tO\tfaster\tO\n:zap\tO\t:zap\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/7\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/7\tO\n\t\nLGTM\tO\tLGTM\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/88\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/88\tO\n\t\n\t\nWhat\tO\tWhat\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nchange\tO\tchange\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\nintroduce\tO\tintroduce\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nBug\tO\tBug\tO\nfix\tO\tfix\tO\n,\tO\t,\tO\nfeature\tO\tfeature\tO\n,\tO\t,\tO\ndocs\tO\tdocs\tO\nupdate\tO\tupdate\tO\n,\tO\t,\tO\n..\tO\t..\tO\n.\tO\t.\tO\n)\tO\t)\tO\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nstyle\tO\tstyle\tO\ninline\tO\tinline\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\napi\tB-Library\tapi\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nbehavior\tO\tbehavior\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nan\tO\tan\tO\nopen\tO\topen\tO\nissue\tO\tissue\tO\nhere\tO\there\tO\n)\tO\t)\tO\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfrontend\tO\tfrontend\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\nwith\tO\twith\tO\nstyle\tO\tstyle\tO\ninline\tO\tinline\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nbehavior\tO\tbehavior\tO\n(\tO\t(\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nfeature\tO\tfeature\tO\nchange\tO\tchange\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nstyle\tO\tstyle\tO\ninline\tO\tinline\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\napi\tO\tapi\tO\n\t\nDoes\tO\tDoes\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\nintroduce\tO\tintroduce\tO\na\tO\ta\tO\nbreaking\tO\tbreaking\tO\nchange\tO\tchange\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nWhat\tO\tWhat\tO\nchanges\tO\tchanges\tO\nmight\tO\tmight\tO\nusers\tO\tusers\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\napplication\tO\tapplication\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nOther\tO\tOther\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nCocMap/opencv_starter\tO\tCocMap/opencv_starter\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/CocMap/opencv_starter/issues/1\tO\thttps://github.com/CocMap/opencv_starter/issues/1\tO\n\t\nhehe\tO\thehe\tO\nmap\tO\tmap\tO\ndit\tO\tdit\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njacobratkiewicz/webgraph\tO\tjacobratkiewicz/webgraph\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jacobratkiewicz/webgraph/issues/1\tO\thttps://github.com/jacobratkiewicz/webgraph/issues/1\tO\n\t\nthanks\tO\tthanks\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nTMaluleke/hello\tO\tTMaluleke/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/TMaluleke/hello-world/issues/1\tO\thttps://github.com/TMaluleke/hello-world/issues/1\tO\n\t\nAdding\tO\tAdding\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nREADME\tB-File_Name\tREADME\tO\nfile\tO\tfile\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/39\tO\thttps://github.com/koding/kd-atom/issues/39\tO\n\t\nThis\tO\tThis\tO\nPR\tO\tPR\tO\nmakes\tO\tmakes\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\njs\tB-Language\tjs\tB-Code_Block\nfiles\tO\tfiles\tO\nunder\tO\tunder\tO\nlib\tB-File_Name\tlib\tB-Code_Block\nfolder\tO\tfolder\tO\nare\tO\tare\tO\nformatted\tO\tformatted\tO\nvia\tO\tvia\tO\nprettier\tB-Application\tprettier\tB-Code_Block\non\tO\ton\tO\nprecommit\tB-Library\tprecommit\tB-Code_Block\nhook\tI-Library\thook\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\nuses\tO\tuses\tO\nlint-staged\tB-Library\tlint-staged\tB-Code_Block\nmodule\tO\tmodule\tO\nin\tO\tin\tO\ncollaboration\tO\tcollaboration\tO\nwith\tO\twith\tO\nhusky\tB-Library\thusky\tB-Code_Block\nmodule\tO\tmodule\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_39748\tI-Code_Block\tGR_39748\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nsignificantly\tO\tsignificantly\tO\nincreases\tO\tincreases\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nwhile\tO\twhile\tO\nwe\tO\twe\tO\nare\tO\tare\tO\ncommitting\tO\tcommitting\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nchecks\tO\tchecks\tO\nall\tO\tall\tO\njs\tB-Language\tjs\tB-Code_Block\nfiles\tO\tfiles\tO\nunder\tO\tunder\tO\nit\tO\tit\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nformatted\tO\tformatted\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncjcliffe/CubicSDR\tO\tcjcliffe/CubicSDR\tO\n-flatpak\tO\t-flatpak\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/cjcliffe/CubicSDR-flatpak/issues/1\tO\thttps://github.com/cjcliffe/CubicSDR-flatpak/issues/1\tO\n\t\nMerged\tO\tMerged\tO\nnow\tO\tnow\tO\n;\tO\t;\tO\nthanks\tO\tthanks\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nManuelDeLeon/vmc2jsx\tO\tManuelDeLeon/vmc2jsx\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/1\tO\thttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/1\tO\n\t\nWith\tO\tWith\tO\nsemantic\tO\tsemantic\tO\nreleases\tO\treleases\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nfoolhardy1729/hello\tO\tfoolhardy1729/hello\tO\n-world\tO\t-world\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/foolhardy1729/hello-world\tO\thttps://github.com/foolhardy1729/hello-world\tO\n\t\nhello-world\tO\thello-world\tO\n\t\ncome\tO\tcome\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nas\tO\tas\tO\na\tO\ta\tO\nfriend\tO\tfriend\tO\nas\tO\tas\tO\na\tO\ta\tO\nknown\tO\tknown\tO\nenemy\tO\tenemy\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/libp2p/interface-record-store/issues/3\tO\thttps://github.com/libp2p/interface-record-store/issues/3\tO\n\t\nHello\tO\tHello\tO\nlovely\tO\tlovely\tO\nhumans\tO\thumans\tO\n,\tO\t,\tO\n\t\nwelcome\tO\twelcome\tO\nto\tO\tto\tO\nautomated\tO\tautomated\tO\ndependency\tO\tdependency\tO\nmanagement\tO\tmanagement\tO\nwith\tO\twith\tO\nGreenkeeper\tB-Application\tGreenkeeper\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ntake\tO\ttake\tO\nfull\tO\tfull\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nservice\tO\tservice\tO\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nout\tO\tout\tO\nwith\tO\twith\tO\nup-to-date\tO\tup-to-date\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nupdated\tO\tupdated\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ndependencies\tO\tdependencies\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npackage.json\tB-File_Name\tpackage.json\tB-Code_Block\nfile\tO\tfile\tO\nin\tO\tin\tO\none\tO\tone\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nstill\tO\tstill\tO\nworks\tO\tworks\tO\nwith\tO\twith\tO\nthem\tO\tthem\tO\napplied\tO\tapplied\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nupdate\tO\tupdate\tO\neverything\tO\teverything\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nfine\tO\tfine\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\nthere\tO\tthere\tO\nover\tO\tover\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ntold\tO\ttold\tO\nme\tO\tme\tO\nto\tO\tto\tO\nmonitor\tO\tmonitor\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nbranch\tO\tbranch\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\ndependency\tO\tdependency\tO\nupdate\tO\tupdate\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\napplied\tO\tapplied\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbranch\tO\tbranch\tO\ncreation\tO\tcreation\tO\nshould\tO\tshould\tO\ntrigger\tO\ttrigger\tO\nyour\tO\tyour\tO\ntesting\tO\ttesting\tO\nservices\tO\tservices\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ntests\tO\ttests\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nmeaningful\tO\tmeaningful\tO\nand\tO\tand\tO\nhelpful\tO\thelpful\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyour\tO\tyour\tO\ndependencies\tO\tdependencies\tO\nremain\tO\tremain\tO\nworking\tO\tworking\tO\nand\tO\tand\tO\nup-to-date\tO\tup-to-date\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_17076\tI-Code_Block\tGR_17076\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexample\tO\texample\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nan\tO\tan\tO\nin-range\tO\tin-range\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\n1.7.0\tB-Version\t1.7.0\tB-Code_Block\nis\tO\tis\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nold\tO\told\tO\n^\tB-Version\t^\tB-Code_Block\n1.6.0\tI-Version\t1.6.0\tI-Code_Block\nrange\tO\trange\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncaret\tO\tcaret\tO\n^\tO\t^\tB-Code_Block\ncharacter\tO\tcharacter\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nfailure\tO\tfailure\tO\nreported\tO\treported\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nimmediately\tO\timmediately\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nit\tO\tit\tO\nreports\tO\treports\tO\nsuccess\tO\tsuccess\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\nbranch\tO\tbranch\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nno\tO\tno\tO\naction\tO\taction\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ntaken\tO\ttaken\tO\n–\tO\t–\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\nversion\tO\tversion\tO\nupdate\tO\tupdate\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndependencies\tO\tdependencies\tO\nwill\tO\twill\tO\neither\tO\teither\tO\ncontinue\tO\tcontinue\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\npotential\tO\tpotential\tO\nproblems\tO\tproblems\tO\nimmediately\tO\timmediately\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_17077\tI-Code_Block\tGR_17077\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n4.0.0\tB-Version\t4.0.0\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nold\tO\told\tO\n^\tB-Version\t^\tB-Code_Block\n3.0.0\tI-Version\t3.0.0\tI-Code_Block\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nversion\tO\tversion\tO\nupdates\tO\tupdates\tO\nlike\tO\tlike\tO\nthese\tO\tthese\tO\n–\tO\t–\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ncall\tO\tcall\tO\nthem\tO\tthem\tO\n\"\tO\t\"\tO\nout\tO\tout\tO\nof\tO\tof\tO\nrange\tO\trange\tO\n\"\tO\t\"\tO\nupdates\tO\tupdates\tO\n–\tO\t–\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nreceive\tO\treceive\tO\na\tO\ta\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nright\tO\tright\tO\naway\tO\taway\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nexciting\tO\texciting\tO\nnew\tO\tnew\tO\nversions\tO\tversions\tO\nby\tO\tby\tO\nhand\tO\thand\tO\n–\tO\t–\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\njust\tO\tjust\tO\nlet\tO\tlet\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nonly\tO\tonly\tO\nserve\tO\tserve\tO\nas\tO\tas\tO\na\tO\ta\tO\nreminder\tO\treminder\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ncase\tO\tcase\tO\nit\tO\tit\tO\npasses\tO\tpasses\tO\nyour\tO\tyour\tO\ndecent\tO\tdecent\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\na\tO\ta\tO\nstrong\tO\tstrong\tO\nreason\tO\treason\tO\nto\tO\tto\tO\nmerge\tO\tmerge\tO\nright\tO\tright\tO\naway\tO\taway\tO\n:shipit\tO\t:shipit\tO\n:\tO\t:\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nunsure\tO\tunsure\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nfrequently\tO\tfrequently\tO\nasked\tO\tasked\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nalways\tO\talways\tO\nask\tO\task\tO\nmy\tO\tmy\tO\nhumans\tO\thumans\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nyou\tO\tyou\tO\nsoon\tO\tsoon\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\ngreenkeeper.io\tB-Website\tgreenkeeper.io\tO\n.\tO\t.\tO\n\t\nTired\tO\tTired\tO\nof\tO\tof\tO\nseeing\tO\tseeing\tO\nthis\tO\tthis\tO\nsponsor\tO\tsponsor\tO\nmessage\tO\tmessage\tO\n?\tO\t?\tO\n\t\n:zap\tO\t:zap\tO\n:\tO\t:\tO\ngreenkeeper\tB-Code_Block\tgreenkeeper\tB-Code_Block\nupgrade\tI-Code_Block\tupgrade\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nForneus/programmering\tO\tForneus/programmering\tO\n-a-inlamningar\tO\t-a-inlamningar\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/Forneus/programmering-a-inlamningar/issues/11\tO\thttps://github.com/Forneus/programmering-a-inlamningar/issues/11\tO\n\t\nJag\tO\tJag\tO\nhar\tO\thar\tO\nredan\tO\tredan\tO\nskrivit\tO\tskrivit\tO\ndetta\tO\tdetta\tO\nsom\tO\tsom\tO\nkommentar\tO\tkommentar\tO\ntill\tO\ttill\tO\ndin\tO\tdin\tO\ncommit\tO\tcommit\tO\n.\tO\t.\tO\n\t\nLägg\tO\tLägg\tO\ntill\tO\ttill\tO\ndessa\tO\tdessa\tO\nrader\tO\trader\tO\ni\tO\ti\tO\ndin\tO\tdin\tO\negen\tO\tegen\tO\nkod\tO\tkod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57536\tI-Code_Block\tGR_57536\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDetta\tO\tDetta\tO\när\tO\tär\tO\nnytt\tO\tnytt\tO\n\t\nDetta\tO\tDetta\tO\när\tO\tär\tO\nvad\tO\tvad\tO\njag\tO\tjag\tO\nskrev\tO\tskrev\tO\nför\tO\tför\tO\natt\tO\tatt\tO\ntesta\tO\ttesta\tO\nhur\tO\thur\tO\nman\tO\tman\tO\nkan\tO\tkan\tO\nrita\tO\trita\tO\nnoter\tO\tnoter\tO\n:\tO\t:\tO\n\t\ndraw.setCurFont(\"Code2001\")\tO\tdraw.setCurFont(\"Code2001\")\tO\n;\tO\t;\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57537\tI-Code_Block\tGR_57537\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndbarrosop/gobgp\tO\tdbarrosop/gobgp\tO\n-grpc-demo\tO\t-grpc-demo\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dbarrosop/gobgp-grpc-demo/issues/1\tO\thttps://github.com/dbarrosop/gobgp-grpc-demo/issues/1\tO\n\t\nThey\tO\tThey\tO\nprobably\tO\tprobably\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\nAPI\tB-Library\tAPI\tO\nsince\tO\tsince\tO\na\tO\ta\tO\nyear\tO\tyear\tO\nago\tO\tago\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nsuggest\tO\tsuggest\tO\neither\tO\teither\tO\nupdating\tO\tupdating\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nadd_path.py\tB-File_Name\tadd_path.py\tB-Code_Block\nor\tO\tor\tO\nmaking\tO\tmaking\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\ngobgp\tB-Application\tgobgp\tO\nversion\tO\tversion\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nin\tO\tin\tO\n\"\tO\t\"\tO\nmaster\tB-File_Name\tmaster\tO\n\"\tO\t\"\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nblogpost\tO\tblogpost\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoso/flexgrid\tO\tmoso/flexgrid\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moso/flexgrid/issues/4\tO\thttps://github.com/moso/flexgrid/issues/4\tO\n\t\nFixed\tO\tFixed\tO\nin\tO\tin\tO\nc2bad240930c79e0e01442dbaecab69c56668f79\tO\tc2bad240930c79e0e01442dbaecab69c56668f79\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njamstooks/django\tO\tjamstooks/django\tO\n-acme-challenge\tO\t-acme-challenge\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jamstooks/django-acme-challenge/issues/3\tO\thttps://github.com/jamstooks/django-acme-challenge/issues/3\tO\n\t\nHi\tO\tHi\tO\n@MelvinDRM\tB-User_Name\t@MelvinDRM\tO\n,\tO\t,\tO\n\t\nAre\tO\tAre\tO\nyour\tO\tyour\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nset\tO\tset\tO\nup\tO\tup\tO\nproperly\tO\tproperly\tO\n?\tO\t?\tO\n\t\nThese\tO\tThese\tO\nare\tO\tare\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\ndjango\tB-Library\tdjango\tO\nsettings\tO\tsettings\tO\nvariables\tO\tvariables\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nlinux\tB-Operating_System\tlinux\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nConfirm\tO\tConfirm\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\nset\tO\tset\tO\nproperly\tO\tproperly\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_39911\tI-Code_Block\tGR_39911\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthem\tO\tthem\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_39912\tI-Code_Block\tGR_39912\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/21\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/21\tO\n\t\ndupe\tO\tdupe\tO\n#20\tO\t#20\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nManuelDeLeon/vmc2jsx\tO\tManuelDeLeon/vmc2jsx\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/4\tO\thttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/4\tO\n\t\nAfter\tO\tAfter\tO\nexperimenting\tO\texperimenting\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nmore\tO\tmore\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nthoroughly\tO\tthoroughly\tO\nconfused\tO\tconfused\tO\nby\tO\tby\tO\nthis\tO\tthis\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nSometimes\tO\tSometimes\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nsometimes\tO\tsometimes\tO\nit\tO\tit\tO\nwont\tO\twont\tO\ncompile\tO\tcompile\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nwith\tO\twith\tO\n3.1.3\tB-Version\t3.1.3\tO\nsometimes\tO\tsometimes\tO\nit\tO\tit\tO\nwont\tO\twont\tO\ncompile\tO\tcompile\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nsometimes\tO\tsometimes\tO\nif\tO\tif\tO\nI\tO\tI\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_44747\tI-Code_Block\tGR_44747\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\npackage.json\tB-File_Name\tpackage.json\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncompile\tO\tcompile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\nthem\tO\tthem\tO\nstraight\tO\tstraight\tO\nback\tO\tback\tO\nit\tO\tit\tO\nwont\tO\twont\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nThere\tO\tThere\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\nweird\tO\tweird\tO\nbabel\tB-Library\tbabel\tO\ncaching\tO\tcaching\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nbeyond\tO\tbeyond\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncommon\tO\tcommon\tO\ntheme\tO\ttheme\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwont\tO\twont\tO\ncompile\tO\tcompile\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nhas\tO\thas\tO\neither\tO\teither\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_44748\tI-Code_Block\tGR_44748\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_44749\tI-Code_Block\tGR_44749\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\ndefer\tB-Variable_Name\tdefer\tB-Code_Block\nor\tO\tor\tO\nif\tO\tif\tB-Code_Block\nwith\tO\twith\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\nfoo\tB-Variable_Name\tfoo\tB-Code_Block\n,\tO\t,\tO\nclick\tB-Variable_Name\tclick\tB-Code_Block\nor\tO\tor\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nb\tB-Code_Block\tb\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\ndefer\tI-Code_Block\tdefer\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ntrue\tI-Code_Block\ttrue\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\ncompletely\tO\tcompletely\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncompile\tO\tcompile\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nany\tO\tany\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nable\tO\table\tO\nto\tO\tto\tO\nreproduce\tO\treproduce\tO\nthis\tO\tthis\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nrepro\tO\trepro\tO\n?\tO\t?\tO\n\t\nSorry\tO\tSorry\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nrepro\tO\trepro\tO\nwas\tO\twas\tO\nzipped\tO\tzipped\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndefer\tB-Variable_Name\tdefer\tB-Code_Block\nreplaced\tO\treplaced\tO\nwith\tO\twith\tO\nddefer\tB-Variable_Name\tddefer\tB-Code_Block\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nexperienced\tO\texperienced\tO\nthe\tO\tthe\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nrepro\tO\trepro\tO\nas\tO\tas\tO\nit\tO\tit\tO\nwas\tO\twas\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app/issues/2\tO\thttps://github.com/lbarasti/gps_app/issues/2\tO\n\t\nAdded\tO\tAdded\tO\nbasic\tO\tbasic\tO\nhistory\tO\thistory\tO\nto\tO\tto\tO\ndata\tO\tdata\tO\nstore\tO\tstore\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nor\tO\tor\tO\ntake/drop\tO\ttake/drop\tO\non\tO\ton\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\nwould\tO\twould\tO\ncrash\tO\tcrash\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nserver.rb\tB-File_Name\tserver.rb\tO\nline\tO\tline\tO\n90\tO\t90\tO\nto\tO\tto\tO\n95\tO\t95\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nTODO\tO\tTODO\tO\n.\tO\t.\tO\n\t\nNB\tO\tNB\tO\n:\tO\t:\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nprod\tO\tprod\tO\nserver\tO\tserver\tO\nyet\tO\tyet\tO\nas\tO\tas\tO\ncurrently\tO\tcurrently\tO\nthe\tO\tthe\tO\nhistory\tO\thistory\tO\narrays\tB-Data_Structure\tarrays\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nlimited\tO\tlimited\tO\nin\tO\tin\tO\nsize\tO\tsize\tO\nand\tO\tand\tO\nso\tO\tso\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nmemry\tO\tmemry\tO\nissue\tO\tissue\tO\nwill\tO\twill\tO\noccur\tO\toccur\tO\n..\tO\t..\tO\n.\tO\t.\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/7\tO\thttps://github.com/contributte/logging/issues/7\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_63067\tI-Code_Block\tGR_63067\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndanishshaikh556/BST\tO\tdanishshaikh556/BST\tO\n-Algorithms\tO\t-Algorithms\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/danishshaikh556/BST-Algorithms\tO\thttps://github.com/danishshaikh556/BST-Algorithms\tO\n\t\nBST-Algorithms\tO\tBST-Algorithms\tO\n\t\nVarious\tO\tVarious\tO\nBST\tB-Data_Structure\tBST\tO\nQuestions\tO\tQuestions\tO\nimplemented\tO\timplemented\tO\nin\tO\tin\tO\nJava\tB-Language\tJava\tO\n\t\n1)\tO\t1)\tO\nCheck\tO\tCheck\tO\nif\tO\tif\tO\na\tO\ta\tO\ntree\tB-Data_Structure\ttree\tO\nis\tO\tis\tO\na\tO\ta\tO\nMirror\tO\tMirror\tO\nImage\tO\tImage\tO\n\t\n2)\tO\t2)\tO\nGiven\tO\tGiven\tO\nInorder\tB-Algorithm\tInorder\tO\nand\tO\tand\tO\nPre\tB-Algorithm\tPre\tO\nOrder\tI-Algorithm\tOrder\tO\ntraversal\tI-Algorithm\ttraversal\tO\nconstruct\tO\tconstruct\tO\na\tO\ta\tO\nBST\tB-Data_Structure\tBST\tO\n\t\n3)\tO\t3)\tO\nHeight/Depth\tO\tHeight/Depth\tO\nof\tO\tof\tO\na\tO\ta\tO\ntree\tB-Data_Structure\ttree\tO\n\t\n4)\tO\t4)\tO\nGiven\tO\tGiven\tO\na\tO\ta\tO\nsorted\tO\tsorted\tO\narray\tB-Data_Structure\tarray\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nBST\tB-Data_Structure\tBST\tO\nwith\tO\twith\tO\nminimal\tO\tminimal\tO\nheight\tO\theight\tO\n\t\n5\tO\t5\tO\n)\tO\t)\tO\nBalance\tO\tBalance\tO\ntree\tB-Data_Structure\ttree\tO\nie\tO\tie\tO\nCheck\tO\tCheck\tO\nif\tO\tif\tO\na\tO\ta\tO\ntree\tB-Data_Structure\ttree\tO\nis\tO\tis\tO\nbalanced\tO\tbalanced\tO\n\t\nnote\tO\tnote\tO\na\tO\ta\tO\ntree\tB-Data_Structure\ttree\tO\nis\tO\tis\tO\nbalanced\tO\tbalanced\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nht\tO\tht\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nsubtree\tB-Data_Structure\tsubtree\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nrt\tO\trt\tO\nsubtree\tB-Data_Structure\tsubtree\tO\ndiffer\tO\tdiffer\tO\nby\tO\tby\tO\n1\tO\t1\tO\natmost\tO\tatmost\tO\n\t\n6\tO\t6\tO\n)\tO\t)\tO\nCheck\tO\tCheck\tO\nif\tO\tif\tO\na\tO\ta\tO\ntree\tB-Data_Structure\ttree\tO\nis\tO\tis\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nBST\tB-Data_Structure\tBST\tO\n.\tO\t.\tO\n\t\n7\tO\t7\tO\n)\tO\t)\tO\nCommon\tB-Algorithm\tCommon\tO\nancestor\tI-Algorithm\tancestor\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsurol/speedtest\tO\tsurol/speedtest\tO\n-cli\tO\t-cli\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/surol/speedtest-cli\tO\thttps://github.com/surol/speedtest-cli\tO\n\t\nspeedtest.net\tB-Application\tspeedtest.net\tO\nCLI\tI-Application\tCLI\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\nclient\tO\tclient\tO\nto\tO\tto\tO\nspeedtest.net\tB-Application\tspeedtest.net\tO\nwritten\tO\twritten\tO\nin\tO\tin\tO\nGo\tB-Language\tGo\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\ndirect\tO\tdirect\tO\nport\tO\tport\tO\nfrom\tO\tfrom\tO\nhttps://github.com/sivel/speedtest-cli\tO\thttps://github.com/sivel/speedtest-cli\tO\nwritten\tO\twritten\tO\nin\tO\tin\tO\nPython\tB-Language\tPython\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nlacks\tO\tlacks\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfeatures\tO\tfeatures\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\n-mini\tB-Code_Block\t-mini\tB-Code_Block\nand\tO\tand\tO\n-share\tB-Code_Block\t-share\tB-Code_Block\noptions\tO\toptions\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nsupported\tO\tsupported\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nRun\tO\tRun\tO\nte\tO\tte\tO\nfollowing\tO\tfollowing\tO\ncommands\tO\tcommands\tO\nin\tO\tin\tO\nconsole\tB-Application\tconsole\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_152546\tI-Code_Block\tGR_152546\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsage\tO\tUsage\tO\n\t\nWithout\tO\tWithout\tO\nany\tO\tany\tO\narguments\tO\targuments\tO\nspeedtest-cli\tB-Application\tspeedtest-cli\tB-Code_Block\ntests\tO\ttests\tO\nthe\tO\tthe\tO\nspeed\tO\tspeed\tO\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\nclosest\tO\tclosest\tO\nserver\tB-Application\tserver\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlowest\tO\tlowest\tO\nlatency\tO\tlatency\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\noptions\tO\toptions\tO\nare\tO\tare\tO\navailable\tO\tavailable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_152547\tI-Code_Block\tGR_152547\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nManuelDeLeon/vmc2jsx\tO\tManuelDeLeon/vmc2jsx\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/2\tO\thttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/2\tO\n\t\nPick\tO\tPick\tO\nup\tO\tup\tO\nviewmodel-react-plugin\tB-Library\tviewmodel-react-plugin\tB-Code_Block\n3.0.5\tB-Version\t3.0.5\tI-Code_Block\nand\tO\tand\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/5\tO\thttps://github.com/koding/kd-atom/issues/5\tO\n\t\n\t\nall\tO\tall\tO\nremote\tO\tremote\tO\ncalls\tO\tcalls\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nmeasured\tO\tmeasured\tO\n\t\na\tO\ta\tO\ncheckbox\tB-User_Interface_Element\tcheckbox\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nput\tO\tput\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npackage\tB-User_Interface_Element\tpackage\tO\nsettings\tI-User_Interface_Element\tsettings\tO\nscreen\tI-User_Interface_Element\tscreen\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\nit\tO\tit\tO\non\tO\ton\tO\nand\tO\tand\tO\noff\tO\toff\tO\n\t\nit\tO\tit\tO\n's\tO\t's\tO\nimportant\tO\timportant\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nlocation\tO\tlocation\tO\ndata\tO\tdata\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nduration\tO\tduration\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncalls\tO\tcalls\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/16\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/16\tO\n\t\nFixes\tO\tFixes\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/15\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/15\tO\n\t\n@suyograo\tB-Library_Variable\t@suyograo\tO\n@jordansissel\tB-User_Name\t@jordansissel\tO\nany\tO\tany\tO\nchance\tO\tchance\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\na\tO\ta\tO\nreview\tO\treview\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncjcliffe/CubicSDR\tO\tcjcliffe/CubicSDR\tO\n-flatpak\tO\t-flatpak\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/cjcliffe/CubicSDR-flatpak/issues/3\tO\thttps://github.com/cjcliffe/CubicSDR-flatpak/issues/3\tO\n\t\n@casept\tB-User_Name\t@casept\tO\nlooks\tO\tlooks\tO\ngood\tO\tgood\tO\n;\tO\t;\tO\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncontribution\tO\tcontribution\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/117\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/117\tO\n\t\nDavid\tB-User_Name\tDavid\tO\n,\tO\t,\tO\nThat\tO\tThat\tO\n's\tO\t's\tO\nsuper\tO\tsuper\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nquick\tO\tquick\tO\nreply\tO\treply\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfeeling\tO\tfeeling\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nin\tO\tin\tO\nour\tO\tour\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nBest\tO\tBest\tO\n,\tO\t,\tO\n\t\nTom\tB-User_Name\tTom\tO\n\t\nOn\tO\tOn\tO\nMon\tO\tMon\tO\n,\tO\t,\tO\nDec\tO\tDec\tO\n14\tO\t14\tO\n,\tO\t,\tO\n2015\tO\t2015\tO\nat\tO\tat\tO\n3:50\tO\t3:50\tO\nPM\tO\tPM\tO\nDavid\tB-User_Name\tDavid\tO\nnotifications@github.com\tO\tnotifications@github.com\tO\nwrote\tO\twrote\tO\n:\tO\t:\tO\n\t\nActually\tO\tActually\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nwas\tO\twas\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nentered\tO\tentered\tO\nin\tO\tin\tO\nbkg\tO\tbkg\tO\nmode\tO\tmode\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\nsome\tO\tsome\tO\ninterface\tO\tinterface\tO\nresources\tO\tresources\tO\nand\tO\tand\tO\niOS\tB-Operating_System\tiOS\tO\n9\tB-Version\t9\tO\nnow\tO\tnow\tO\nkill\tO\tkill\tO\nall\tO\tall\tO\nprocess\tO\tprocess\tO\nthat\tO\tthat\tO\nconsume\tO\tconsume\tO\nresources\tO\tresources\tO\nin\tO\tin\tO\nbkg\tO\tbkg\tO\nmode\tO\tmode\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\ngraphic\tO\tgraphic\tO\nresources\tO\tresources\tO\nor\tO\tor\tO\nanother\tO\tanother\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nnon-sound\tO\tnon-sound\tO\nresources\tO\tresources\tO\nin\tO\tin\tO\nbkg\tO\tbkg\tO\nmode\tO\tmode\tO\n.\tO\t.\tO\n\t\n—\tO\t—\tO\nReply\tO\tReply\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nemail\tO\temail\tO\ndirectly\tO\tdirectly\tO\nor\tO\tor\tO\nview\tO\tview\tO\nit\tO\tit\tO\non\tO\ton\tO\nGitHub\tB-Organization\tGitHub\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/117#issuecomment-164597245\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/117#issuecomment-164597245\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/35\tO\thttps://github.com/rpcope1/Hantek6022API/issues/35\tO\n\t\nHey\tO\tHey\tO\n@jhoenicke\tB-User_Name\t@jhoenicke\tO\n,\tO\t,\tO\nthank\tO\tthank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nhelping\tO\thelping\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\na\tO\ta\tO\ncolleague\tO\tcolleague\tO\nof\tO\tof\tO\npiotx\tB-User_Name\tpiotx\tO\nand\tO\tand\tO\nI\tO\tI\tO\n've\tO\t've\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nmore\tO\tmore\tO\ntesting\tO\ttesting\tO\non\tO\ton\tO\nthe\tO\tthe\tO\noscilloscope\tB-Device\toscilloscope\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\napply\tO\tapply\tO\nyour\tO\tyour\tO\npatch\tO\tpatch\tO\n,\tO\t,\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nat\tO\tat\tO\nline\tO\tline\tO\n69\tO\t69\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_47980\tI-Code_Block\tGR_47980\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nalso\tO\talso\tO\ncome\tO\tcome\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconclusion\tO\tconclusion\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nsample_rate\tB-Library_Variable\tsample_rate\tO\nor\tO\tor\tO\nbetter\tO\tbetter\tO\nthe\tO\tthe\tO\ndata-point-creation-rate\tB-Library_Variable\tdata-point-creation-rate\tO\nis\tO\tis\tO\nalways\tO\talways\tO\n24*10⁶\tO\t24*10⁶\tO\ndata\tO\tdata\tO\npoints\tO\tpoints\tO\nper\tO\tper\tO\nsecond\tO\tsecond\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nrate\tO\trate\tO\nto\tO\tto\tO\n0x14\tO\t0x14\tO\n(\tO\t(\tO\nequals\tO\tequals\tO\n\"\tO\t\"\tO\n200\tO\t200\tO\nKS/s\tO\tKS/s\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\nand\tO\tand\tO\nrecord\tO\trecord\tO\n2\tO\t2\tO\nseconds\tO\tseconds\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\n48M\tO\t48M\tO\ndatapoints\tO\tdatapoints\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nnoticed\tO\tnoticed\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\n(\tO\t(\tO\nVoltrage\tO\tVoltrage\tO\nrange\tO\trange\tO\n-2.5V\tO\t-2.5V\tO\nto\tO\tto\tO\n+\tO\t+\tO\n2.5V\tO\t2.5V\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nsample\tO\tsample\tO\nrate\tO\trate\tO\nis\tO\tis\tO\n200kS\tO\t200kS\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nadded\tO\tadded\tO\nuseless\tO\tuseless\tO\ndata\tO\tdata\tO\npoints\tO\tpoints\tO\nwith\tO\twith\tO\nvalue\tO\tvalue\tO\n\"\tO\t\"\tO\n-2.5\tO\t-2.5\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\napply\tO\tapply\tO\na\tO\ta\tO\nwork-around\tO\twork-around\tO\nto\tO\tto\tO\ndelete\tO\tdelete\tO\nthese\tO\tthese\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nleft\tO\tleft\tO\nwith\tO\twith\tO\na\tO\ta\tO\nfine\tO\tfine\tO\nrecording\tO\trecording\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nevery\tO\tevery\tO\nsecond\tO\tsecond\tO\nthe\tO\tthe\tO\ndeque\tO\tdeque\tO\nis\tO\tis\tO\nfilled\tO\tfilled\tO\nwith\tO\twith\tO\n24\tO\t24\tO\nmillions\tO\tmillions\tO\nof\tO\tof\tO\npoints\tO\tpoints\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\n#m\tO\t#m\tO\nrecording\tO\trecording\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\n,\tO\t,\tO\n240\tO\t240\tO\nmillion\tO\tmillion\tO\ndatapoints\tO\tdatapoints\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nprocessed\tO\tprocessed\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nneed\tO\tneed\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nwith\tO\twith\tO\n200Ks\tO\t200Ks\tO\nonly\tO\tonly\tO\n400.000\tO\t400.000\tO\ndata\tO\tdata\tO\npoints\tO\tpoints\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nlimit\tO\tlimit\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ncomputer\tB-Device\tcomputer\tO\nis\tO\tis\tO\naround\tO\taround\tO\n15\tO\t15\tO\nseconds\tO\tseconds\tO\n-\tO\t-\tO\nhe\tO\the\tO\nneeds\tO\tneeds\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nminute\tO\tminute\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nlonger\tO\tlonger\tO\ntime\tO\ttime\tO\nperiod\tO\tperiod\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\ncrash\tO\tcrash\tO\n.\tO\t.\tO\n\t\nGenerally\tO\tGenerally\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrecord\tO\trecord\tO\ndata\tO\tdata\tO\nfor\tO\tfor\tO\nabout\tO\tabout\tO\n2\tO\t2\tO\nminutes\tO\tminutes\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nrate\tO\trate\tO\nof\tO\tof\tO\n200-500Ks\tO\t200-500Ks\tO\nfor\tO\tfor\tO\nboth\tO\tboth\tO\nchannels\tO\tchannels\tO\nsimultaneously\tO\tsimultaneously\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nPlotting\tO\tPlotting\tO\nand\tO\tand\tO\ncalculating\tO\tcalculating\tO\nthen\tO\tthen\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\nR\tB-Language\tR\tO\n.\tO\t.\tO\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\nglad\tO\tglad\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\non\tO\ton\tO\nthat\tO\tthat\tO\nproblem\tO\tproblem\tO\n:)\tO\t:)\tO\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\ndeleting\tO\tdeleting\tO\nthe\tO\tthe\tO\nuseless\tO\tuseless\tO\nvalues\tO\tvalues\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_47981\tI-Code_Block\tGR_47981\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndbarrosop/gobgp\tO\tdbarrosop/gobgp\tO\n-grpc-demo\tO\t-grpc-demo\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/dbarrosop/gobgp-grpc-demo\tO\thttps://github.com/dbarrosop/gobgp-grpc-demo\tO\n\t\nRequirements\tO\tRequirements\tO\n\t\ndocker\tB-Application\tdocker\tO\n\t\ndocker-compose\tB-Library\tdocker-compose\tO\n2.1\tI-Library\t2.1\tO\n\t\nInstructions\tO\tInstructions\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ndemo\tO\tdemo\tO\nwe\tO\twe\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nset\tO\tset\tO\ntwo\tO\ttwo\tO\ngobgp\tB-Application\tgobgp\tO\ninstances\tO\tinstances\tO\n,\tO\t,\tO\nconfigure\tO\tconfigure\tO\nthem\tO\tthem\tO\nso\tO\tso\tO\nthey\tO\tthey\tO\npeer\tO\tpeer\tO\nwith\tO\twith\tO\neach\tO\teach\tO\nother\tO\tother\tO\n,\tO\t,\tO\ndeploy\tO\tdeploy\tO\npolicies\tO\tpolicies\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\nand\tO\tand\tO\nmanipulate\tO\tmanipulate\tO\ntheir\tO\ttheir\tO\nRIBs\tB-Library\tRIBs\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nthe\tO\tthe\tO\noperations\tO\toperations\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nperformed\tO\tperformed\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ncontrol\tO\tcontrol\tO\nmachine\tO\tmachine\tO\nusing\tO\tusing\tO\ngobgp\tB-Application\tgobgp\tO\n's\tO\t's\tO\ngrpc\tI-Application\tgrpc\tO\ninterface\tI-Application\tinterface\tO\n(\tO\t(\tO\nexcluding\tO\texcluding\tO\nsome\tO\tsome\tO\nshow\tO\tshow\tO\noperations\tO\toperations\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nlack\tO\tlack\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSetting\tO\tSetting\tO\nthe\tO\tthe\tO\nenvironment\tO\tenvironment\tO\n\t\nBuild\tO\tBuild\tO\nall\tO\tall\tO\nnecessary\tO\tnecessary\tO\ncontainers\tO\tcontainers\tO\nand\tO\tand\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nenvironment\tO\tenvironment\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217680\tI-Code_Block\tGR_217680\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOpen\tO\tOpen\tO\nthree\tO\tthree\tO\nterminal\tB-Application\tterminal\tO\nand\tO\tand\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\neach\tO\teach\tO\ncontainer\tO\tcontainer\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217681\tI-Code_Block\tGR_217681\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nConfiguring\tO\tConfiguring\tO\nBGP\tB-Application\tBGP\tO\npeering\tO\tpeering\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\nmachine\tO\tmachine\tO\n,\tO\t,\tO\nverify\tO\tverify\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\npeers\tO\tpeers\tO\non\tO\ton\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndevices\tO\tdevices\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217682\tI-Code_Block\tGR_217682\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nadd\tO\tadd\tO\nthem\tO\tthem\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217683\tI-Code_Block\tGR_217683\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nverify\tO\tverify\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nconfigured\tO\tconfigured\tO\nand\tO\tand\tO\nsessions\tO\tsessions\tO\nare\tO\tare\tO\nestablished\tO\testablished\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217684\tI-Code_Block\tGR_217684\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDeploying\tO\tDeploying\tO\npolicies\tO\tpolicies\tO\n\t\nWe\tO\tWe\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ndeploy\tO\tdeploy\tO\na\tO\ta\tO\npolicy\tO\tpolicy\tO\nfrom\tO\tfrom\tO\nour\tO\tour\tO\ncontrol\tO\tcontrol\tO\nmachine\tO\tmachine\tO\nto\tO\tto\tO\ngobgp_1\tB-Application\tgobgp_1\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npolicy\tO\tpolicy\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nIf\tO\tIf\tO\ncommunity\tB-Variable_Name\tcommunity\tO\n65000:1\tO\t65000:1\tO\nis\tO\tis\tO\npresent\tO\tpresent\tO\nexport\tO\texport\tO\nthe\tO\tthe\tO\nroute\tO\troute\tO\n\t\nIf\tO\tIf\tO\ncommunity\tB-Variable_Name\tcommunity\tO\n65000:666\tO\t65000:666\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nexport\tO\texport\tO\nthe\tO\tthe\tO\nroute\tO\troute\tO\neven\tO\teven\tO\nif\tO\tif\tO\ncommunity\tB-Variable_Name\tcommunity\tO\n65000:1\tO\t65000:1\tO\nis\tO\tis\tO\nset\tO\tset\tO\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nexport\tO\texport\tO\nroutes\tO\troutes\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\ngobgp_1\tB-Application\tgobgp_1\tB-Code_Block\nand\tO\tand\tO\ngobgp_2\tB-Application\tgobgp_2\tB-Code_Block\nto\tO\tto\tO\nverify\tO\tverify\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\npolicies\tO\tpolicies\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217685\tI-Code_Block\tGR_217685\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ndeploy\tO\tdeploy\tO\npolicies\tO\tpolicies\tO\non\tO\ton\tO\ngobgp_1\tB-Application\tgobgp_1\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217686\tI-Code_Block\tGR_217686\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nfo\tO\tfo\tO\nback\tO\tback\tO\nto\tO\tto\tO\ngobgp_1\tB-Application\tgobgp_1\tB-Code_Block\nand\tO\tand\tO\nverify\tO\tverify\tO\nthe\tO\tthe\tO\npolicies\tO\tpolicies\tO\nwere\tO\twere\tO\ndeployed\tO\tdeployed\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217687\tI-Code_Block\tGR_217687\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nManipulating\tO\tManipulating\tO\nthe\tO\tthe\tO\nRIB\tB-Library\tRIB\tO\n\t\nNow\tO\tNow\tO\nwe\tO\twe\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nmanipulate\tO\tmanipulate\tO\nthe\tO\tthe\tO\nRIB\tB-Library\tRIB\tO\nof\tO\tof\tO\ngobgp_1\tB-Application\tgobgp_1\tB-Code_Block\nand\tO\tand\tO\nverify\tO\tverify\tO\nthe\tO\tthe\tO\npolicy\tO\tpolicy\tO\nwe\tO\twe\tO\ndeployed\tO\tdeployed\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\nstart\tO\tstart\tO\nby\tO\tby\tO\nverifying\tO\tverifying\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nroutes\tO\troutes\tO\non\tO\ton\tO\nour\tO\tour\tO\nRIB\tB-Library\tRIB\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217688\tI-Code_Block\tGR_217688\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\nmachine\tO\tmachine\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ndeploy\tO\tdeploy\tO\na\tO\ta\tO\nroute\tO\troute\tO\non\tO\ton\tO\ngobgp_1`s\tB-Application\tgobgp_1`s\tB-Code_Block\nRIB\tB-Library\tRIB\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217689\tI-Code_Block\tGR_217689\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\nto\tO\tto\tO\ngobgp_1\tB-Application\tgobgp_1\tB-Code_Block\nand\tO\tand\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthere\tO\tthere\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217690\tI-Code_Block\tGR_217690\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthere\tO\tthere\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nlocally\tO\tlocally\tO\ngenerated\tO\tgenerated\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbeing\tO\tbeing\tO\nexperted\tO\texperted\tO\nto\tO\tto\tO\n\t\ngobgp_2\tB-Application\tgobgp_2\tB-Code_Block\nas\tO\tas\tO\nper\tO\tper\tO\nthe\tO\tthe\tO\npolicy\tO\tpolicy\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217691\tI-Code_Block\tGR_217691\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThere\tO\tThere\tO\nit\tO\tit\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\nmachine\tO\tmachine\tO\nand\tO\tand\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ncommunity\tB-Variable_Name\tcommunity\tO\n65000:666\tO\t65000:666\tO\nto\tO\tto\tO\nfilter\tO\tfilter\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217692\tI-Code_Block\tGR_217692\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\ngobgp_1\tB-Application\tgobgp_1\tB-Code_Block\nand\tO\tand\tO\nverify\tO\tverify\tO\nthe\tO\tthe\tO\ncommunity\tB-Variable_Name\tcommunity\tO\nis\tO\tis\tO\nset\tO\tset\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217693\tI-Code_Block\tGR_217693\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\n,\tO\t,\tO\nfinally\tO\tfinally\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nroute\tO\troute\tO\nis\tO\tis\tO\ngone\tO\tgone\tO\nfrom\tO\tfrom\tO\ngobgp_2\tB-Application\tgobgp_2\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_217694\tI-Code_Block\tGR_217694\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDone\tO\tDone\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nperformed\tO\tperformed\tO\noperations\tO\toperations\tO\non\tO\ton\tO\nmultiple\tO\tmultiple\tO\ndevices\tO\tdevices\tO\nusing\tO\tusing\tO\ngobgp\tB-Application\tgobgp\tO\n's\tO\t's\tO\ngrpc\tI-Application\tgrpc\tO\ninterface\tI-Application\tinterface\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed\tO\thttps://github.com/mfellner/webpack-sandboxed\tO\n\t\n\t\nwebpack-sandboxed\tB-Application\twebpack-sandboxed\tO\n\t\nWebpack\tB-Application\tWebpack\tO\nin\tO\tin\tO\na\tO\ta\tO\nsandbox\tO\tsandbox\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nwebpack\tB-Application\twebpack\tO\non\tO\ton\tO\na\tO\ta\tO\nin-memory\tO\tin-memory\tO\nfile\tO\tfile\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nreading\tO\treading\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nsource\tO\tsource\tO\nstring\tB-Data_Type\tstring\tO\nand\tO\tand\tO\noutputting\tO\toutputting\tO\nresults\tO\tresults\tO\nas\tO\tas\tO\nstrings\tB-Data_Type\tstrings\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nuseful\tO\tuseful\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nwebpack\tB-Application\twebpack\tO\nfor\tO\tfor\tO\ncompiling\tO\tcompiling\tO\nbundles\tO\tbundles\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfly\tO\tfly\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\non\tO\ton\tO\na\tO\ta\tO\nweb\tO\tweb\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_16288\tI-Code_Block\tGR_16288\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAPI\tB-Library\tAPI\tO\n\t\n**\tO\t**\tO\nwebpackSandboxed\tB-Code_Block\twebpackSandboxed\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\noptions\tB-Code_Block\toptions\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nOptions\tI-Code_Block\tOptions\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n:\tB-Code_Block\t:\tB-Code_Block\nWebpackRunner**\tI-Code_Block\tWebpackRunner**\tI-Code_Block\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nWebpackRunner\tB-Library_Class\tWebpackRunner\tB-Code_Block\n.\tO\t.\tO\n\t\n**\tO\t**\tO\nOptions**\tB-Code_Block\tOptions**\tB-Code_Block\n\t\nOptions\tO\tOptions\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nwebpack\tB-Application\twebpack\tO\nand\tO\tand\tO\nwebpack\tB-Application\twebpack\tO\nsandboxed\tI-Application\tsandboxed\tO\n.\tO\t.\tO\n\t\nconfig\tB-Code_Block\tconfig\tB-Code_Block\n?\tI-Code_Block\t?\tI-Code_Block\n\t\n:\tB-Code_Block\t:\tB-Code_Block\nwebpack.Configuration\tI-Code_Block\twebpack.Configuration\tI-Code_Block\n–\tO\t–\tO\nwebpack\tB-Application\twebpack\tO\nconfiguration\tO\tconfiguration\tO\n\t\npackages\tB-Library_Variable\tpackages\tB-Code_Block\n?\tI-Library_Variable\t?\tI-Code_Block\n:\tI-Library_Variable\t:\tI-Code_Block\nstring[]\tI-Library_Variable\tstring[]\tI-Code_Block\n–\tO\t–\tO\nA\tO\tA\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nnode_modules\tO\tnode_modules\tO\nto\tO\tto\tO\nload\tO\tload\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nvirtual\tO\tvirtual\tO\nfile\tO\tfile\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nincludes\tB-Library_Variable\tincludes\tB-Code_Block\n?\tI-Library_Variable\t?\tI-Code_Block\n:\tI-Library_Variable\t:\tI-Code_Block\nstring[]\tI-Library_Variable\tstring[]\tI-Code_Block\n–\tO\t–\tO\nA\tO\tA\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ndirectories\tO\tdirectories\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nvirtual\tO\tvirtual\tO\nfile\tO\tfile\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nbasedir\tB-Library_Variable\tbasedir\tB-Code_Block\n?\tI-Library_Variable\t?\tI-Code_Block\n:\tI-Library_Variable\t:\tI-Code_Block\nstring\tI-Library_Variable\tstring\tI-Code_Block\n–\tO\t–\tO\nThe\tO\tThe\tO\nbase\tO\tbase\tO\ndirectory\tO\tdirectory\tO\nto\tO\tto\tO\nresolve\tO\tresolve\tO\nmodules\tO\tmodules\tO\nfrom\tO\tfrom\tO\n.\tO\t.\tO\n\t\nDefaults\tO\tDefaults\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\ndirectory\tO\tdirectory\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwebpack-sandboxed\tO\twebpack-sandboxed\tO\ninstallation\tO\tinstallation\tO\n.\tO\t.\tO\n\t\n**\tO\t**\tO\nWebpackRunner**\tB-Library_Class\tWebpackRunner**\tB-Code_Block\n\t\nWebpack\tB-Application\tWebpack\tO\nsandboxed\tI-Application\tsandboxed\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nrun\tB-Code_Block\trun\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nsource\tB-Code_Block\tsource\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nstring\tI-Code_Block\tstring\tI-Code_Block\n|\tI-Code_Block\t|\tI-Code_Block\nBuffer\tI-Code_Block\tBuffer\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n:\tB-Code_Block\t:\tB-Code_Block\nPromise\tI-Code_Block\tPromise\tI-Code_Block\n<[WebpackBundle,\tI-Code_Block\t<[WebpackBundle,\tI-Code_Block\nwebpack.Stats]>\tI-Code_Block\twebpack.Stats]>\tI-Code_Block\n–\tO\t–\tO\nRun\tO\tRun\tO\nwebpack\tB-Application\twebpack\tO\nasynchronously\tO\tasynchronously\tO\n(\tO\t(\tO\ndelegating\tO\tdelegating\tO\nto\tO\tto\tO\nWebpackCompiler.run\tB-Library_Function\tWebpackCompiler.run\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\n**\tO\t**\tO\nWebpackBundle**\tB-Library_Class\tWebpackBundle**\tB-Code_Block\n\t\nResult\tO\tResult\tO\nof\tO\tof\tO\na\tO\ta\tO\nwebpack\tB-Application\twebpack\tO\nsandboxed\tI-Application\tsandboxed\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\n[\tB-Code_Block\t[\tB-Code_Block\nkey\tI-Code_Block\tkey\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nstring\tI-Code_Block\tstring\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n:\tB-Code_Block\t:\tB-Code_Block\nBuffer\tI-Code_Block\tBuffer\tI-Code_Block\n–\tO\t–\tO\nThe\tO\tThe\tO\nset\tO\tset\tO\nof\tO\tof\tO\nfiles\tO\tfiles\tO\ngenerated\tO\tgenerated\tO\nby\tO\tby\tO\nwebpack\tB-Application\twebpack\tO\n(\tO\t(\tO\nbundles\tO\tbundles\tO\nand\tO\tand\tO\nassets\tO\tassets\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n\t\nPlease\tO\tPlease\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\ndirectory\tO\tdirectory\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nwebpack\tB-Application\twebpack\tO\nsandboxed\tI-Application\tsandboxed\tO\n.\tO\t.\tO\n\t\nReferences\tO\tReferences\tO\n\t\nThis\tO\tThis\tO\nproject\tO\tproject\tO\nwas\tO\twas\tO\ninspired\tO\tinspired\tO\nby\tO\tby\tO\nothers\tO\tothers\tO\n:\tO\t:\tO\n\t\nhttps://github.com/webpack/webpack/issues/1562\tO\thttps://github.com/webpack/webpack/issues/1562\tO\n\t\nhttps://github.com/christianalfoni/webpack-bin/issues/106\tO\thttps://github.com/christianalfoni/webpack-bin/issues/106\tO\n\t\nhttps://github.com/christianalfoni/webpack-bin\tO\thttps://github.com/christianalfoni/webpack-bin\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoso/flexgrid\tO\tmoso/flexgrid\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/moso/flexgrid\tO\thttps://github.com/moso/flexgrid\tO\n\t\nFlexgrid\tB-Application\tFlexgrid\tO\n-\tO\t-\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ngrid\tO\tgrid\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nflexbox\tB-Library\tflexbox\tO\nlayout\tO\tlayout\tO\n\t\nNo\tO\tNo\tO\nmore\tO\tmore\tO\nfloats\tB-Library_Variable\tfloats\tO\n!\tO\t!\tO\n\t\nRegular\tO\tRegular\tO\ngrid\tO\tgrid\tO\nlayout\tO\tlayout\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nboth\tO\tboth\tO\nblock\tO\tblock\tO\nand\tO\tand\tO\ninline\tO\tinline\tO\nflow\tO\tflow\tO\ndirections\tO\tdirections\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nflexbox\tB-Library\tflexbox\tO\n(\tO\t(\tO\nor\tO\tor\tO\njust\tO\tjust\tO\nflex\tB-Library\tflex\tO\n)\tO\t)\tO\nlayout\tO\tlayout\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\n\"\tO\t\"\tO\nflex-flow\tO\tflex-flow\tO\ndirections\tO\tdirections\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThus\tO\tThus\tO\nfloat\tB-Library_Variable\tfloat\tB-Code_Block\nand\tO\tand\tO\nclear\tB-Library_Variable\tclear\tB-Code_Block\nhave\tO\thave\tO\nno\tO\tno\tO\neffect\tO\teffect\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nfloat\tB-Library_Variable\tfloat\tB-Code_Block\ncauses\tO\tcauses\tO\nthe\tO\tthe\tO\ndisplay-property\tB-Library_Variable\tdisplay-property\tB-Code_Block\nto\tO\tto\tO\ncompute\tO\tcompute\tO\nto\tO\tto\tO\nblock\tB-Library_Variable\tblock\tB-Code_Block\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nflexbox\tB-Library\tflexbox\tB-Code_Block\nalso\tO\talso\tO\nmeans\tO\tmeans\tO\nless\tO\tless\tO\nJavaScript\tB-Version\tJavaScript\tO\n!\tO\t!\tO\n\t\nEverything\tO\tEverything\tO\nis\tO\tis\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nresponsive\tO\tresponsive\tO\nand\tO\tand\tO\nstacks\tO\tstacks\tO\nperfectly\tO\tperfectly\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\n:\tO\t:\tO\nFlexbox\tB-Library\tFlexbox\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\npartially\tO\tpartially\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nIE10\tB-Application\tIE10\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nIE-version\tB-Application\tIE-version\tO\nlower\tO\tlower\tO\nthan\tO\tthan\tO\n10\tB-Version\t10\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\nflexbox\tO\tflexbox\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nFlexgrid\tB-Application\tFlexgrid\tO\nhas\tO\thas\tO\nmany\tO\tmany\tO\nfallbacks\tO\tfallbacks\tO\nincluded\tO\tincluded\tO\n,\tO\t,\tO\nso\tO\tso\tO\nIE11\tB-Application\tIE11\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsafe\tO\tsafe\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\ninfo\tO\tinfo\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nFlexgrid\tB-Library\tFlexgrid\tO\nis\tO\tis\tO\nan\tO\tan\tO\nintegral\tO\tintegral\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nupcoming\tO\tupcoming\tO\nNano\tB-Library\tNano\tO\nFramework\tI-Library\tFramework\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nFlexgrid\tB-Library\tFlexgrid\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\ngrid-system\tO\tgrid-system\tO\nand\tO\tand\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\nstable\tO\tstable\tO\nflexbox\tB-Library\tflexbox\tO\nskeleton\tO\tskeleton\tO\n.\tO\t.\tO\n\t\nDemo\tO\tDemo\tO\n\t\nA\tO\tA\tO\nlive\tO\tlive\tO\ndemo\tO\tdemo\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nhere\tO\there\tO\n:\tO\t:\tO\nDEMO\tO\tDEMO\tO\n\t\nPackages\tO\tPackages\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nFlexgrid\tB-Library\tFlexgrid\tO\nusing\tO\tusing\tO\neither\tO\teither\tO\nNPM\tB-Application\tNPM\tO\nor\tO\tor\tO\nYarn\tB-Application\tYarn\tO\n.\tO\t.\tO\n\t\nNPM\tB-Application\tNPM\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_56993\tI-Code_Block\tGR_56993\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYarn\tB-Application\tYarn\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_56994\tI-Code_Block\tGR_56994\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTailwind\tB-Library\tTailwind\tO\nCSS\tI-Library\tCSS\tO\n\t\nInspired\tO\tInspired\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nTailwind\tB-Library\tTailwind\tO\nCSS-syntax\tI-Library\tCSS-syntax\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nalso\tO\talso\tO\na\tO\ta\tO\nTailwind-version\tB-Library\tTailwind-version\tO\nof\tO\tof\tO\nFlexgrid\tB-Application\tFlexgrid\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ncompile\tO\tcompile\tO\nor\tO\tor\tO\nimport\tO\timport\tO\nFlexgrid\tB-Library\tFlexgrid\tO\n,\tO\t,\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\n$\tB-Library_Variable\t$\tB-Code_Block\nenable-tailwind-variable\tI-Library_Variable\tenable-tailwind-variable\tI-Code_Block\nto\tO\tto\tO\ntrue\tO\ttrue\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\neither\tO\teither\tO\nby\tO\tby\tO\nediting\tO\tediting\tO\n_variables.scss\tB-File_Name\t_variables.scss\tB-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\noverriding\tO\toverriding\tO\nit\tO\tit\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\n!\tB-Code_Block\t!\tB-Code_Block\ndefault-flag\tI-Code_Block\tdefault-flag\tI-Code_Block\nattached\tO\tattached\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nTailwind\tB-Library\tTailwind\tO\nCSS\tI-Library\tCSS\tO\nis\tO\tis\tO\n,\tO\t,\tO\nor\tO\tor\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n,\tO\t,\tO\nsimply\tO\tsimply\tO\nignore\tO\tignore\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsomething\tO\tsomething\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nopt\tO\topt\tO\nin\tO\tin\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nChangelog\tO\tChangelog\tO\n\t\n2.5.0\tB-Version\t2.5.0\tO\n(\tO\t(\tO\n2017-12-05\tO\t2017-12-05\tO\n)\tO\t)\tO\n\t\nUpgraded\tO\tUpgraded\tO\ndependencies\tO\tdependencies\tO\n\t\nAdded\tO\tAdded\tO\na\tO\ta\tO\nnew\tO\tnew\tO\noptional\tO\toptional\tO\nstyle\tO\tstyle\tO\nwith\tO\twith\tO\nTailwind\tB-Library\tTailwind\tO\nCSS-syntax\tI-Library\tCSS-syntax\tO\n\t\nUpdated\tO\tUpdated\tO\nthis\tO\tthis\tO\nREADME\tO\tREADME\tO\nwith\tO\twith\tO\nTailwind-syntax\tO\tTailwind-syntax\tO\ndocs\tO\tdocs\tO\n\t\n2.2.2\tB-Version\t2.2.2\tO\n(\tO\t(\tO\n2017-10-06\tO\t2017-10-06\tO\n)\tO\t)\tO\n\t\nUpgraded\tO\tUpgraded\tO\nMix\tB-Library\tMix\tO\n\t\n2.2.1\tB-Version\t2.2.1\tO\n(\tO\t(\tO\n2017-06-02\tO\t2017-06-02\tO\n)\tO\t)\tO\n\t\nUpdated\tO\tUpdated\tO\nTravis\tB-Application\tTravis\tO\n\t\n2.2.0\tB-Version\t2.2.0\tO\n(\tO\t(\tO\n2017-06-02\tO\t2017-06-02\tO\n)\tO\t)\tO\n\t\nDitched\tO\tDitched\tO\ngulp\tB-Application\tgulp\tO\nfor\tO\tfor\tO\nwebpack\tB-Application\twebpack\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\nLaravel\tB-Library\tLaravel\tO\nMix\tI-Library\tMix\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nbelow\tO\tbelow\tO\nfor\tO\tfor\tO\nnew\tO\tnew\tO\ninstructions\tO\tinstructions\tO\n.\tO\t.\tO\n\t\n2.1.1\tB-Version\t2.1.1\tO\n(\tO\t(\tO\n2017-02-02\tO\t2017-02-02\tO\n)\tO\t)\tO\n\t\nAdded\tO\tAdded\tO\nmax-width\tB-Library_Variable\tmax-width\tB-Code_Block\nto\tO\tto\tO\ncontainers\tO\tcontainers\tO\nwithout\tO\twithout\tO\n@media\tB-Code_Block\t@media\tB-Code_Block\n-query\tO\t-query\tO\n\t\n2.1.0\tB-Version\t2.1.0\tO\n(\tO\t(\tO\n2016-12-27\tO\t2016-12-27\tO\n)\tO\t)\tO\n\t\nReworked\tO\tReworked\tO\nthe\tO\tthe\tO\ngrid\tO\tgrid\tO\ngeneration\tO\tgeneration\tO\nby\tO\tby\tO\noptimizing\tO\toptimizing\tO\nsome\tO\tsome\tO\nvariables\tO\tvariables\tO\nand\tO\tand\tO\ntweaking\tO\ttweaking\tO\nsome\tO\tsome\tO\nmixins\tB-Library_Class\tmixins\tO\n\t\nRemoved\tO\tRemoved\tO\nthe\tO\tthe\tO\nbreakpoint-counting\tO\tbreakpoint-counting\tO\nand\tO\tand\tO\nreplaced\tO\treplaced\tO\nit\tO\tit\tO\nwith\tO\twith\tO\na\tO\ta\tO\nmixin\tB-Library_Class\tmixin\tO\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nzero\tO\tzero\tO\n\t\nRemoved\tO\tRemoved\tO\nreversing\tO\treversing\tO\non\tO\ton\tO\nrow\tO\trow\tO\nitems\tO\titems\tO\nentirely\tO\tentirely\tO\n\t\nOptimized\tO\tOptimized\tO\nthe\tO\tthe\tO\ngulpfile\tB-File_Type\tgulpfile\tO\n\t\nMore\tO\tMore\tO\ndemo\tO\tdemo\tO\nfixes\tO\tfixes\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n\t\n2.0.6\tB-Version\t2.0.6\tO\n(\tO\t(\tO\n2016-12-22\tO\t2016-12-22\tO\n)\tO\t)\tO\n\t\nFixed\tO\tFixed\tO\na\tO\ta\tO\ntypo\tO\ttypo\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nREADME\tB-File_Name\tREADME\tO\nregarding\tO\tregarding\tO\nYarn\tB-Application\tYarn\tO\n\t\n2.0.5\tB-Version\t2.0.5\tO\n(\tO\t(\tO\n2016-12-22\tO\t2016-12-22\tO\n)\tO\t)\tO\n\t\nMoved\tO\tMoved\tO\nto\tO\tto\tO\nour\tO\tour\tO\nown\tO\town\tO\ndomain\tO\tdomain\tO\n,\tO\t,\tO\nchanges\tO\tchanges\tO\nreflect\tO\treflect\tO\nthis\tO\tthis\tO\n\t\n2.0.3\tB-Version\t2.0.3\tO\n,\tO\t,\tO\n2.0.4\tB-Version\t2.0.4\tO\n(\tO\t(\tO\n2016-12-16\tO\t2016-12-16\tO\n)\tO\t)\tO\n\t\nBetter\tO\tBetter\tO\ndocumentation\tO\tdocumentation\tO\nin\tO\tin\tO\nREADME.md\tB-File_Name\tREADME.md\tB-Code_Block\n\t\n2.0.2\tB-Version\t2.0.2\tO\n(\tO\t(\tO\n2016-12-16\tO\t2016-12-16\tO\n)\tO\t)\tO\n\t\nFixed\tO\tFixed\tO\nreversing\tO\treversing\tO\non\tO\ton\tO\nrow\tO\trow\tO\nitems\tO\titems\tO\n\t\nFixed\tO\tFixed\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndemo.html\tB-File_Name\tdemo.html\tB-Code_Block\non\tO\ton\tO\nreversing\tO\treversing\tO\n\t\n2.0.1\tB-File_Name\t2.0.1\tO\n(\tO\t(\tO\n2016-12-12\tO\t2016-12-12\tO\n)\tO\t)\tO\n\t\nSmall\tO\tSmall\tO\nnon-code\tO\tnon-code\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\n2.0.0\tB-File_Name\t2.0.0\tO\n(\tO\t(\tO\n2016-10-10\tO\t2016-10-10\tO\n)\tO\t)\tO\n\t\nRenamed\tO\tRenamed\tO\ncolumn\tO\tcolumn\tO\nnames\tO\tnames\tO\nfor\tO\tfor\tO\nbetter\tO\tbetter\tO\nmigration\tO\tmigration\tO\n\t\nAdded\tO\tAdded\tO\nan\tO\tan\tO\nextra\tO\textra\tO\nclass\tO\tclass\tO\n\t\nRenamed\tO\tRenamed\tO\nsome\tO\tsome\tO\nmixins\tB-Library_Class\tmixins\tO\n,\tO\t,\tO\nadded\tO\tadded\tO\nnew\tO\tnew\tO\nones\tO\tones\tO\n,\tO\t,\tO\nadded\tO\tadded\tO\nbetter\tO\tbetter\tO\ndescriptions\tO\tdescriptions\tO\non\tO\ton\tO\neach\tO\teach\tO\nmixin\tB-Library_Class\tmixin\tO\n\t\nSimplified\tO\tSimplified\tO\nmixins\tB-Library_Class\tmixins\tO\n-\tO\t-\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nnow\tO\tnow\tO\ndo\tO\tdo\tO\nmore\tO\tmore\tO\nand\tO\tand\tO\nhave\tO\thave\tO\ndefaults\tO\tdefaults\tO\n\t\nAdded\tO\tAdded\tO\nvariables\tO\tvariables\tO\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nbetter\tO\tbetter\tO\nmodification\tO\tmodification\tO\n\t\nAdded\tO\tAdded\tO\na\tO\ta\tO\ngrid\tO\tgrid\tO\ngenerator\tO\tgenerator\tO\nfor\tO\tfor\tO\nbetter\tO\tbetter\tO\nautomation\tO\tautomation\tO\n\t\n1.0.2\tB-Version\t1.0.2\tO\n(\tO\t(\tO\n2015-11-29\tO\t2015-11-29\tO\n)\tO\t)\tO\n\t\nAdded\tO\tAdded\tO\nSCSS\tB-Language\tSCSS\tO\nsource\tO\tsource\tO\nand\tO\tand\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nsmall\tO\tsmall\tO\nfixes\tO\tfixes\tO\n\t\n1.0.1\tB-Version\t1.0.1\tO\n(\tO\t(\tO\n2015-09-27\tO\t2015-09-27\tO\n)\tO\t)\tO\n\t\nRemoved\tO\tRemoved\tO\nhelper\tO\thelper\tO\nclasses\tO\tclasses\tO\n\t\n1.0\tB-Version\t1.0\tO\n(\tO\t(\tO\n2015-06-23\tO\t2015-06-23\tO\n)\tO\t)\tO\n\t\nInitial\tO\tInitial\tO\nrelease\tO\trelease\tO\n\t\nClasses\tO\tClasses\tO\n\t\nFlexgrid\tB-Application\tFlexgrid\tO\nnow\tO\tnow\tO\nhas\tO\thas\tO\n5\tO\t5\tO\nclasses\tO\tclasses\tO\n,\tO\t,\tO\ncompared\tO\tcompared\tO\nto\tO\tto\tO\n4\tO\t4\tO\nin\tO\tin\tO\nv1\tB-Version\tv1\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nfind\tO\tfind\tO\nthese\tO\tthese\tO\nfamiliar\tO\tfamiliar\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthese\tO\tthese\tO\nresemble\tO\tresemble\tO\nBootstrap\tB-Library\tBootstrap\tO\n:\tO\t:\tO\n\t\nxs\tB-Library_Class\txs\tO\n(\tO\t(\tO\nxtra\tO\txtra\tO\nsmall\tO\tsmall\tO\n-\tO\t-\tO\nfor\tO\tfor\tO\nmobile\tO\tmobile\tO\ndevices\tO\tdevices\tO\nand\tO\tand\tO\nsmall\tO\tsmall\tO\ntablets\tO\ttablets\tO\n)\tO\t)\tO\n\t\nsm\tB-Library_Class\tsm\tO\n(\tO\t(\tO\nsmall\tO\tsmall\tO\n-\tO\t-\tO\nfor\tO\tfor\tO\nlarge\tO\tlarge\tO\nmobile\tO\tmobile\tO\ndevices\tO\tdevices\tO\nand\tO\tand\tO\ntablets\tO\ttablets\tO\n)\tO\t)\tO\n\t\nmd\tB-Library_Class\tmd\tO\n(\tO\t(\tO\nmedium\tO\tmedium\tO\n-\tO\t-\tO\nfor\tO\tfor\tO\ntablets\tO\ttablets\tO\nand\tO\tand\tO\nvery\tO\tvery\tO\nsmall\tO\tsmall\tO\nlaptops\tO\tlaptops\tO\n)\tO\t)\tO\n\t\nlg\tB-Library_Class\tlg\tO\n(\tO\t(\tO\nlarge\tO\tlarge\tO\n-\tO\t-\tO\nfor\tO\tfor\tO\nsmaller\tO\tsmaller\tO\nlaptops\tO\tlaptops\tO\nand\tO\tand\tO\n-desktops\tO\t-desktops\tO\n)\tO\t)\tO\n\t\nxl\tB-Library_Class\txl\tO\n(\tO\t(\tO\nxlarge\tO\txlarge\tO\n-\tO\t-\tO\nfor\tO\tfor\tO\ndesktops\tO\tdesktops\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nclasses\tO\tclasses\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncombined\tO\tcombined\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nmore\tO\tmore\tO\ndynamic\tO\tdynamic\tO\nand\tO\tand\tO\nflexible\tO\tflexible\tO\nlayouts\tO\tlayouts\tO\n.\tO\t.\tO\n\t\nPro\tO\tPro\tO\ntip\tO\ttip\tO\n:\tO\t:\tO\nEach\tO\tEach\tO\nclass\tO\tclass\tO\nscales\tO\tscales\tO\nup\tO\tup\tO\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwidths\tO\twidths\tO\nfor\tO\tfor\tO\nsm\tB-Library_Class\tsm\tB-Code_Block\nand\tO\tand\tO\nmd\tB-Library_Class\tmd\tB-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nsm\tB-Library_Class\tsm\tB-Code_Block\n.\tO\t.\tO\n\t\n.container\tB-Class_Name\t.container\tO\nand\tO\tand\tO\n.container-fluid\tB-Class_Name\t.container-fluid\tO\n\t\nFlexgrid\tB-Application\tFlexgrid\tO\ncomes\tO\tcomes\tO\nwith\tO\twith\tO\nresponsive\tO\tresponsive\tO\ncontainers\tO\tcontainers\tO\nthat\tO\tthat\tO\nboxes\tO\tboxes\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\ncontrolled\tO\tcontrolled\tO\nby\tO\tby\tO\n@media\tB-Code_Block\t@media\tB-Code_Block\n-queries\tO\t-queries\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\n@media\tB-Code_Block\t@media\tB-Code_Block\n-queries\tO\t-queries\tO\ntrigger\tO\ttrigger\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwidths\tO\twidths\tO\ndefined\tO\tdefined\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nBootstrap-framework\tB-Library\tBootstrap-framework\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nas\tO\tas\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\ndetail\tO\tdetail\tO\n,\tO\t,\tO\nFlexgrid\tB-Application\tFlexgrid\tO\nbases\tO\tbases\tO\nits\tO\tits\tO\nwidth-triggers\tO\twidth-triggers\tO\non\tO\ton\tO\nrem\tB-Code_Block\trem\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\npx\tB-Code_Block\tpx\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nfluid\tO\tfluid\tO\nlayout\tO\tlayout\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nem\tB-Code_Block\tem\tB-Code_Block\nis\tO\tis\tO\nrelative\tO\trelative\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfont-size\tB-Library_Variable\tfont-size\tB-Code_Block\nof\tO\tof\tO\nits\tO\tits\tO\ndirect\tO\tdirect\tO\nor\tO\tor\tO\nnearest\tO\tnearest\tO\nparent\tO\tparent\tO\n,\tO\t,\tO\nrem\tB-Code_Block\trem\tB-Code_Block\nis\tO\tis\tO\nonly\tO\tonly\tO\nrelative\tO\trelative\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhtml\tB-Language\thtml\tB-Code_Block\n(\tO\t(\tO\nroot\tO\troot\tO\n)\tO\t)\tO\nfont-size\tB-Library_Variable\tfont-size\tB-Code_Block\n.\tO\t.\tO\n\t\nFlexgrid\tB-Application\tFlexgrid\tO\nfont-size\tB-Library_Variable\tfont-size\tB-Code_Block\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\n16px\tB-Code_Block\t16px\tB-Code_Block\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nalso\tO\talso\tO\na\tO\ta\tO\nfluid\tO\tfluid\tO\ncontainer\tO\tcontainer\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nno\tO\tno\tO\n@media\tB-Code_Block\t@media\tB-Code_Block\n-queries\tO\t-queries\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_56995\tI-Code_Block\tGR_56995\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTailwind-syntax\tB-Library\tTailwind-syntax\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_56996\tI-Code_Block\tGR_56996\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nColumns\tB-User_Interface_Element\tColumns\tO\n\t\nFlexgrid\tB-Application\tFlexgrid\tO\ncomes\tO\tcomes\tO\nwith\tO\twith\tO\ncolumns\tO\tcolumns\tO\nwith\tO\twith\tO\npercent-based\tO\tpercent-based\tO\nwidths\tO\twidths\tO\nallow\tO\tallow\tO\nfluid\tO\tfluid\tO\nresizing\tO\tresizing\tO\nof\tO\tof\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\nand\tO\tand\tO\nrows\tB-User_Interface_Element\trows\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_56997\tI-Code_Block\tGR_56997\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTailwind-syntax\tB-Library\tTailwind-syntax\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_56998\tI-Code_Block\tGR_56998\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOffsets\tO\tOffsets\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nfairly\tO\tfairly\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\noffset\tO\toffset\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_56999\tI-Code_Block\tGR_56999\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTailwind-syntax\tB-Library\tTailwind-syntax\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57000\tI-Code_Block\tGR_57000\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAuto\tO\tAuto\tO\nwidth\tO\twidth\tO\n\t\nThis\tO\tThis\tO\ndefines\tO\tdefines\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nflex\tO\tflex\tO\nitem\tO\titem\tO\nto\tO\tto\tO\ngrow\tO\tgrow\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\naccepts\tO\taccepts\tO\na\tO\ta\tO\nunitless\tO\tunitless\tO\nvalue\tO\tvalue\tO\nthat\tO\tthat\tO\nserves\tO\tserves\tO\nas\tO\tas\tO\na\tO\ta\tO\nproportion\tO\tproportion\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndictates\tO\tdictates\tO\nwhat\tO\twhat\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\navailable\tO\tavailable\tO\nspace\tO\tspace\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nflex\tO\tflex\tO\ncontainer\tO\tcontainer\tO\nthe\tO\tthe\tO\nitem\tO\titem\tO\nshould\tO\tshould\tO\ntake\tO\ttake\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57001\tI-Code_Block\tGR_57001\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJustifying\tO\tJustifying\tO\ncontent\tO\tcontent\tO\n\t\nspace-around\tB-Library_Variable\tspace-around\tO\n:\tO\t:\tO\n\t\nWith\tO\tWith\tO\nspace-around\tB-Library_Variable\tspace-around\tB-Code_Block\n,\tO\t,\tO\nitems\tO\titems\tO\nare\tO\tare\tO\nevenly\tO\tevenly\tO\ndistributed\tO\tdistributed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nwith\tO\twith\tO\nequal\tO\tequal\tO\nspace\tO\tspace\tO\naround\tO\taround\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57002\tI-Code_Block\tGR_57002\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTailwind-syntax\tB-Library\tTailwind-syntax\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57003\tI-Code_Block\tGR_57003\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nspace-between\tB-Library_Variable\tspace-between\tO\n:\tO\t:\tO\n\t\nspace-between\tB-Library_Variable\tspace-between\tB-Code_Block\ndistributes\tO\tdistributes\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\n;\tO\t;\tO\nfirst\tO\tfirst\tO\nitem\tO\titem\tO\nis\tO\tis\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nline\tO\tline\tO\n,\tO\t,\tO\nlast\tO\tlast\tO\nitem\tO\titem\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57004\tI-Code_Block\tGR_57004\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTailwind-syntax\tB-Library\tTailwind-syntax\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57005\tI-Code_Block\tGR_57005\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nstart\tB-Library_Variable\tstart\tO\n,\tO\t,\tO\ncenter\tB-Library_Variable\tcenter\tO\n,\tO\t,\tO\nend\tB-Library_Variable\tend\tO\n\t\nstart\tB-Library_Variable\tstart\tB-Code_Block\n:\tO\t:\tO\n(\tO\t(\tO\ndefault\tO\tdefault\tO\n)\tO\t)\tO\n:\tO\t:\tO\nitems\tO\titems\tO\nare\tO\tare\tO\npacked\tO\tpacked\tO\ntoward\tO\ttoward\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\ncenter\tB-Library_Variable\tcenter\tB-Code_Block\n:\tO\t:\tO\ntems\tO\ttems\tO\nare\tO\tare\tO\ncentered\tO\tcentered\tO\nalong\tO\talong\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nend\tB-Library_Variable\tend\tB-Code_Block\n:\tO\t:\tO\nitems\tO\titems\tO\nare\tO\tare\tO\npacked\tO\tpacked\tO\ntoward\tO\ttoward\tO\nto\tO\tto\tO\nend\tO\tend\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57006\tI-Code_Block\tGR_57006\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTailwind-syntax\tB-Library\tTailwind-syntax\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57007\tI-Code_Block\tGR_57007\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ntop\tB-Library_Variable\ttop\tO\n,\tO\t,\tO\nmiddle\tB-Library_Variable\tmiddle\tO\n,\tO\t,\tO\nbottom\tB-Library_Variable\tbottom\tO\n\t\nVertically\tO\tVertically\tO\naligning\tO\taligning\tO\nitems\tO\titems\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\na\tO\ta\tO\npain\tO\tpain\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nnot\tO\tnot\tO\nwith\tO\twith\tO\nflexbox\tB-Library\tflexbox\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57008\tI-Code_Block\tGR_57008\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTailwind-syntax\tB-Library\tTailwind-syntax\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57009\tI-Code_Block\tGR_57009\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPro\tO\tPro\tO\ntip\tO\ttip\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncombine\tO\tcombine\tO\n<prefix>-center\tB-Code_Block\t<prefix>-center\tB-Code_Block\nand\tO\tand\tO\n<prefix>\tB-Code_Block\t<prefix>\tB-Code_Block\n-middle\tI-Code_Block\t-middle\tI-Code_Block\nto\tO\tto\tO\nperfectly\tO\tperfectly\tO\ncenter\tO\tcenter\tO\ncontent\tO\tcontent\tO\non\tO\ton\tO\na\tO\ta\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nNo\tO\tNo\tO\nmore\tO\tmore\tO\ndisplay\tB-Code_Block\tdisplay\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ntable\tI-Code_Block\ttable\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nouter\tO\touter\tO\nand\tO\tand\tO\ndisplay\tB-Code_Block\tdisplay\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ntable-cell\tI-Code_Block\ttable-cell\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nvertical-align\tI-Code_Block\tvertical-align\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nmiddle\tI-Code_Block\tmiddle\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\ninner\tO\tinner\tO\nelement\tO\telement\tO\n,\tO\t,\tO\nor\tO\tor\tO\neven\tO\teven\tO\nposition\tB-Code_Block\tposition\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nabsolute\tI-Code_Block\tabsolute\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\ntranslate\tI-Code_Block\ttranslate\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ntransformX(-50%)\tI-Code_Block\ttransformX(-50%)\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\ntop\tI-Code_Block\ttop\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n50%\tI-Code_Block\t50%\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nto\tO\tto\tO\nvertically\tO\tvertically\tO\nand\tO\tand\tO\nhorizontally\tO\thorizontally\tO\ncenter\tO\tcenter\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\nSmart\tO\tSmart\tO\n,\tO\t,\tO\nhuh\tO\thuh\tO\n?\tO\t?\tO\n\t\nOrdering\tO\tOrdering\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nitems\tO\titems\tO\nare\tO\tare\tO\nlaid\tO\tlaid\tO\nout\tO\tout\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\norder-property\tB-Library_Variable\torder-property\tB-Code_Block\ncontrols\tO\tcontrols\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nthey\tO\tthey\tO\nappear\tO\tappear\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57010\tI-Code_Block\tGR_57010\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTailwind-syntax\tB-Library\tTailwind-syntax\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57011\tI-Code_Block\tGR_57011\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDemonstration\tO\tDemonstration\tO\nof\tO\tof\tO\nall\tO\tall\tO\nthese\tO\tthese\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\ndemo\tO\tdemo\tO\nlink\tO\tlink\tO\n!\tO\t!\tO\n\t\nEditing\tO\tEditing\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\n.\tO\t.\tO\n\t\nClone\tO\tClone\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\nand\tO\tand\tO\nedit\tO\tedit\tO\naway\tO\taway\tO\n.\tO\t.\tO\n\t\nFlexgrid\tB-Library\tFlexgrid\tO\ncomes\tO\tcomes\tO\nwith\tO\twith\tO\nwebpack\tB-Application\twebpack\tO\nin\tO\tin\tO\nform\tO\tform\tO\nof\tO\tof\tO\nLaravel\tB-Library\tLaravel\tO\nMix\tI-Library\tMix\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\ncompile\tO\tcompile\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ninstall\tO\tinstall\tO\nits\tO\tits\tO\ndependencies\tO\tdependencies\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nNodeJS\tB-Application\tNodeJS\tO\nand\tO\tand\tO\nnpm\tB-Application\tnpm\tB-Code_Block\ninstalled\tO\tinstalled\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\ndependencies\tO\tdependencies\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nrun\tO\trun\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57012\tI-Code_Block\tGR_57012\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndone\tO\tdone\tO\nediting\tO\tediting\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nrun\tO\trun\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_57013\tI-Code_Block\tGR_57013\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ncompile\tO\tcompile\tO\na\tO\ta\tO\nregular\tO\tregular\tO\n.css-file\tB-File_Type\t.css-file\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nminified\tO\tminified\tO\n.min.css-file\tB-File_Type\t.min.css-file\tB-Code_Block\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/95\tO\thttps://github.com/linked-statistics/xkos/issues/95\tO\n\t\nFix\tO\tFix\tO\n#64\tO\t#64\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nhoumadi/hello\tO\thoumadi/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/houmadi/hello-world/issues/1\tO\thttps://github.com/houmadi/hello-world/issues/1\tO\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nthing\tO\tthing\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\nit\tO\tit\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/22\tO\thttps://github.com/rpcope1/Hantek6022API/issues/22\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\non\tO\ton\tO\nArch\tB-Operating_System\tArch\tO\nlinux\tI-Operating_System\tlinux\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\npython2\tB-File_Name\tpython2\tB-Code_Block\nexamples/example_linux_flashfirmware.py\tI-File_Name\texamples/example_linux_flashfirmware.py\tI-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nstarts\tO\tstarts\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nstops\tO\tstops\tO\nat\tO\tat\tO\nscope.flash_firmware()\tB-Library_Function\tscope.flash_firmware()\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nstays\tO\tstays\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\ngiving\tO\tgiving\tO\nerrors\tO\terrors\tO\nor\tO\tor\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\ni\tO\ti\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nscope\tO\tscope\tO\nis\tO\tis\tO\nconnected\tO\tconnected\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfirmware\tO\tfirmware\tO\nis\tO\tis\tO\nbuilt\tO\tbuilt\tO\nas\tO\tas\tO\ninstruction\tO\tinstruction\tO\nsaid\tO\tsaid\tO\n.\tO\t.\tO\n\t\nPython\tB-Language\tPython\tO\n2.7.10\tB-Version\t2.7.10\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nchadjriddle/DarkRift\tO\tchadjriddle/DarkRift\tO\n-LoginPlugin\tO\t-LoginPlugin\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/chadjriddle/DarkRift-LoginPlugin\tO\thttps://github.com/chadjriddle/DarkRift-LoginPlugin\tO\n\t\nHello\tO\tHello\tO\n!\tO\t!\tO\n\t\nThese\tO\tThese\tO\nresources\tO\tresources\tO\nare\tO\tare\tO\nfree\tO\tfree\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nuse/copy/generally\tO\tuse/copy/generally\tO\ndo\tO\tdo\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nalways\tO\talways\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nUnity\tB-Application\tUnity\tO\nproject\tO\tproject\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nLoginPlugin\tO\tLoginPlugin\tO\nUnity\tB-Application\tUnity\tO\nfolder\tO\tfolder\tO\n,\tO\t,\tO\ndownload\tO\tdownload\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n!\tO\t!\tO\n\t\nTo\tO\tTo\tO\ncontributors\tO\tcontributors\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nall\tO\tall\tO\nthat\tO\tthat\tO\nmuch\tO\tmuch\tO\ntime\tO\ttime\tO\nso\tO\tso\tO\nother\tO\tother\tO\npeople\tO\tpeople\tO\ncontributing\tO\tcontributing\tO\nmakes\tO\tmakes\tO\nlife\tO\tlife\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\neasier\tO\teasier\tO\n!\tO\t!\tO\n\t\nPlease\tO\tPlease\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nfollow\tO\tfollow\tO\nthese\tO\tthese\tO\n2\tO\t2\tO\nrules\tO\trules\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npulled\tO\tpulled\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nbranch\tO\tbranch\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7533\tI-Code_Block\tGR_7533\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/7\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/7\tO\n\t\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbreaking\tO\tbreaking\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nv1->v2\tB-Version\tv1->v2\tO\nupdate\tO\tupdate\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ntop\tO\ttop\tO\nlevel\tO\tlevel\tO\nmodule\tO\tmodule\tO\nis\tO\tis\tO\nnow\tO\tnow\tO\nnamed\tO\tnamed\tO\nAws\tB-Application\tAws\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nAWS\tB-Application\tAWS\tB-Code_Block\nand\tO\tand\tO\nprobably\tO\tprobably\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nmore\tO\tmore\tO\nof\tO\tof\tO\nsurprises\tO\tsurprises\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsdookadr/overflow\tO\twsdookadr/overflow\tO\n-checker\tO\t-checker\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsdookadr/overflow-checker\tO\thttps://github.com/wsdookadr/overflow-checker\tO\n\t\nIntro\tO\tIntro\tO\n\t\nFieldtop\tB-Application\tFieldtop\tO\nlooks\tO\tlooks\tO\nat\tO\tat\tO\nall\tO\tall\tO\nfields\tO\tfields\tO\nin\tO\tin\tO\nall\tO\tall\tO\ntables\tB-Data_Structure\ttables\tO\nand\tO\tand\tO\nall\tO\tall\tO\ndatabases\tO\tdatabases\tO\nand\tO\tand\tO\nanalyzes\tO\tanalyzes\tO\nhow\tO\thow\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\neach\tO\teach\tO\nfield\tO\tfield\tO\nare\tO\tare\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmaximum\tO\tmaximum\tO\n(\tO\t(\tO\nor\tO\tor\tO\nminimum\tO\tminimum\tO\n)\tO\t)\tO\nallowed\tO\tallowed\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\nfield\tO\tfield\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\ninteresting\tO\tinteresting\tO\ninsight\tO\tinsight\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\ndatabases\tO\tdatabases\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\ntypical\tO\ttypical\tO\noutput\tO\toutput\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nField\tO\tField\tO\n\t\nMin\tO\tMin\tO\n\t\nMax\tO\tMax\tO\n\t\ncommunity.users.id\tB-Library_Variable\tcommunity.users.id\tO\n\t\n30%\tO\t30%\tO\n\t\ncommunity.users.name\tB-Library_Variable\tcommunity.users.name\tO\n\t\n100%\tO\t100%\tO\n\t\ncommunity.users.karma\tB-Library_Variable\tcommunity.users.karma\tO\n\t\n60%\tO\t60%\tO\n\t\n1%\tO\t1%\tO\n\t\ncommunity.posts.id\tB-Library_Variable\tcommunity.posts.id\tO\n\t\n1%\tO\t1%\tO\n\t\ncommunity.posts.text\tB-Library_Variable\tcommunity.posts.text\tO\n\t\n100%\tO\t100%\tO\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nthings\tO\tthings\tO\nat\tO\tat\tO\na\tO\ta\tO\nglance\tO\tglance\tO\n:\tO\t:\tO\n\t\nYour\tO\tYour\tO\nuser\tO\tuser\tO\nIDs\tO\tIDs\tO\nuse\tO\tuse\tO\n30%\tO\t30%\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\navailable\tO\tavailable\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nhow\tO\thow\tO\nlong\tO\tlong\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nrunning\tO\trunning\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nok\tO\tok\tO\nor\tO\tor\tO\ncould\tO\tcould\tO\nmean\tO\tmean\tO\nyour\tO\tyour\tO\nfield\tO\tfield\tO\nis\tO\tis\tO\nin\tO\tin\tO\ndanger\tO\tdanger\tO\nof\tO\tof\tO\noverflowing\tO\toverflowing\tO\nat\tO\tat\tO\nsome\tO\tsome\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nuser\tO\tuser\tO\nnames\tO\tnames\tO\nalready\tO\talready\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nmaximum\tO\tmaximum\tO\nlength\tO\tlength\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nok\tO\tok\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\ndatabase\tO\tdatabase\tO\ndesign\tO\tdesign\tO\nis\tO\tis\tO\nin\tO\tin\tO\nsync\tO\tsync\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnegative\tO\tnegative\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nkarma\tO\tkarma\tO\ncolumn\tO\tcolumn\tO\nare\tO\tare\tO\nalready\tO\talready\tO\npretty\tO\tpretty\tO\nbig\tO\tbig\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nexpect\tO\texpect\tO\nthat\tO\tthat\tO\npeople\tO\tpeople\tO\naquire\tO\taquire\tO\nnegative\tO\tnegative\tO\nkarma\tO\tkarma\tO\nso\tO\tso\tO\nfast\tO\tfast\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nIDs\tO\tIDs\tO\nfor\tO\tfor\tO\nposts\tO\tposts\tO\nare\tO\tare\tO\nfar\tO\tfar\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlimit\tO\tlimit\tO\n\t\nThe\tO\tThe\tO\ntext\tO\ttext\tO\nfield\tO\tfield\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nposts\tO\tposts\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nmaxing\tO\tmaxing\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nmax\tO\tmax\tO\nlenght\tO\tlenght\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nescpecially\tO\tescpecially\tO\ninteresting\tO\tinteresting\tO\nfor\tO\tfor\tO\ndatabases\tO\tdatabases\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nextended\tO\textended\tO\nperiods\tO\tperiods\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nOften\tO\tOften\tO\nat\tO\tat\tO\nsome\tO\tsome\tO\npoint\tO\tpoint\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nwill\tO\twill\tO\noutgrow\tO\toutgrow\tO\nthe\tO\tthe\tO\ndesignated\tO\tdesignated\tO\ndata\tO\tdata\tO\ntypes\tO\ttypes\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\ntool\tO\ttool\tO\ncame\tO\tcame\tO\nup\tO\tup\tO\nwhen\tO\twhen\tO\nno-gravity\tO\tno-gravity\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\nafter\tO\tafter\tO\n10\tO\t10\tO\nyears\tO\tyears\tO\nof\tO\tof\tO\nunsupervised\tO\tunsupervised\tO\nlearning\tO\tlearning\tO\n,\tO\t,\tO\nhis\tO\this\tO\nmusic\tO\tmusic\tO\nrecommendation\tO\trecommendation\tO\nsystem\tO\tsystem\tO\nGnoosic\tB-Application\tGnoosic\tO\nmaxed\tO\tmaxed\tO\nout\tO\tout\tO\nover\tO\tover\tO\n50%\tO\t50%\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\navailable\tO\tavailable\tO\nrange\tO\trange\tO\nfor\tO\tfor\tO\nband\tO\tband\tO\npopularity\tO\tpopularity\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npopularity\tO\tpopularity\tO\nwas\tO\twas\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\na\tO\ta\tO\nsigned\tO\tsigned\tO\ninteger\tO\tinteger\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nhold\tO\thold\tO\nnumbers\tO\tnumbers\tO\nup\tO\tup\tO\nto\tO\tto\tO\n2\tO\t2\tO\nbillion\tO\tbillion\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nPink\tO\tPink\tO\nFloyd\tO\tFloyd\tO\nwas\tO\twas\tO\nalready\tO\talready\tO\nat\tO\tat\tO\n1.3\tO\t1.3\tO\nbillion\tO\tbillion\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\npopularity\tO\tpopularity\tO\nfield\tO\tfield\tO\nwas\tO\twas\tO\ndestined\tO\tdestined\tO\nto\tO\tto\tO\noverflow\tO\toverflow\tO\nat\tO\tat\tO\nsome\tO\tsome\tO\npoint\tO\tpoint\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\n.\tO\t.\tO\n\t\nTesting\tO\tTesting\tO\n\t\nFieldTop\tB-Application\tFieldTop\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ndeveloped\tO\tdeveloped\tO\nand\tO\tand\tO\ntested\tO\ttested\tO\nusing\tO\tusing\tO\nMySQL\tB-Application\tMySQL\tO\n5.5.49\tB-Version\t5.5.49\tO\nand\tO\tand\tO\nPHP\tB-Language\tPHP\tO\n5.5.9\tB-Version\t5.5.9\tO\nand\tO\tand\tO\nis\tO\tis\tO\nexpected\tO\texpected\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nPHP\tB-Language\tPHP\tO\n>=\tO\t>=\tO\n5.5.9\tB-Version\t5.5.9\tO\n\t\nContributing\tO\tContributing\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n\t\nwith\tO\twith\tO\nenhancements\tO\tenhancements\tO\nor\tO\tor\tO\nfixes\tO\tfixes\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nBugs\tO\tBugs\tO\n\t\nPlease\tO\tPlease\tO\nreport\tO\treport\tO\nany\tO\tany\tO\nbugs\tO\tbugs\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\ntracker\tO\ttracker\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/25\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/25\tO\n\t\nChanging\tO\tChanging\tO\nthe\tO\tthe\tO\ntitle\tO\ttitle\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nPR\tO\tPR\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ngit\tO\tgit\tO\ncommit\tO\tcommit\tO\ntitle\tO\ttitle\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmakeen-project/makeen\tO\tmakeen-project/makeen\tO\n-hapi\tO\t-hapi\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/viczam/makeen-hapi/issues/48\tO\thttps://github.com/viczam/makeen-hapi/issues/48\tO\n\t\nWS\tO\tWS\tO\nJira\tB-Application\tJira\tO\nTicket\tO\tTicket\tO\n:\tO\t:\tO\nACP-51\tO\tACP-51\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander/issues/4\tO\thttps://github.com/SivanMehta/wander/issues/4\tO\n\t\n\t\nCreated\tO\tCreated\tO\na\tO\ta\tO\nnavigation\tB-User_Interface_Element\tnavigation\tO\nbar\tI-User_Interface_Element\tbar\tO\n&\tO\t&\tO\nmodified\tO\tmodified\tO\ngrid\tB-User_Interface_Element\tgrid\tO\nstructure\tO\tstructure\tO\n\t\nModified\tO\tModified\tO\nnav\tB-User_Interface_Element\tnav\tO\nbar\tI-User_Interface_Element\tbar\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nbrand\tO\tbrand\tO\nname\tO\tname\tO\n&\tO\t&\tO\nhome\tO\thome\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n\t\nOther\tO\tOther\tO\nMisc\tO\tMisc\tO\n.\tO\t.\tO\n\t\nFront-end\tO\tFront-end\tO\nChanges\tO\tChanges\tO\n&\tO\t&\tO\nBranding\tO\tBranding\tO\n\t\nHomepage\tB-User_Interface_Element\tHomepage\tO\nbutton\tI-User_Interface_Element\tbutton\tO\nas\tO\tas\tO\nplace\tO\tplace\tO\nholder\tO\tholder\tO\n(\tO\t(\tO\nno\tO\tno\tO\nactive\tO\tactive\tO\nhome\tO\thome\tO\npage\tO\tpage\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/2\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/2\tO\n\t\nGame\tO\tGame\tO\n1320050320140820\tO\t1320050320140820\tO\nin\tO\tin\tO\nplay.csv\tB-File_Name\tplay.csv\tO\n\t\nNIU\tO\tNIU\tO\nvs\tO\tvs\tO\nPres\tO\tPres\tO\n\t\npres\tO\tpres\tO\nvs\tO\tvs\tO\nniu\tO\tniu\tO\nhttp://espn.go.com/ncf/playbyplay?gameId=400548091\tO\thttp://espn.go.com/ncf/playbyplay?gameId=400548091\tO\n\t\nPresbyterian\tO\tPresbyterian\tO\n's\tO\t's\tO\noffensive\tO\toffensive\tO\nplays\tO\tplays\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nexist\tO\texist\tO\nin\tO\tin\tO\nplay.csv\tB-File_Name\tplay.csv\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/9\tO\thttps://github.com/contributte/logging/issues/9\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nissue\tO\tissue\tO\n#8\tO\t#8\tO\n.\tO\t.\tO\n\t\nRemoves\tO\tRemoves\tO\nall\tO\tall\tO\noccurences\tO\toccurences\tO\nof\tO\tof\tO\nThrowable\tB-Library_Class\tThrowable\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nAlfaiis/aeron\tO\tAlfaiis/aeron\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/Alfaiis/aeron\tO\thttps://github.com/Alfaiis/aeron\tO\n\t\nAeron\tB-Application\tAeron\tO\n\t\nTo\tO\tTo\tO\nchat\tO\tchat\tO\nwith\tO\twith\tO\nother\tO\tother\tO\nAeron\tB-Application\tAeron\tO\nusers\tO\tusers\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncontributors\tO\tcontributors\tO\n.\tO\t.\tO\n\t\nEfficient\tO\tEfficient\tO\nreliable\tO\treliable\tO\nUDP\tB-Algorithm\tUDP\tO\nunicast\tO\tunicast\tO\n,\tO\t,\tO\nUDP\tB-Algorithm\tUDP\tO\nmulticast\tO\tmulticast\tO\n,\tO\t,\tO\nand\tO\tand\tO\nIPC\tO\tIPC\tO\nmessage\tO\tmessage\tO\ntransport\tO\ttransport\tO\n.\tO\t.\tO\n\t\nJava\tB-Language\tJava\tO\nand\tO\tand\tO\nC++\tB-Language\tC++\tO\nclients\tO\tclients\tO\nare\tO\tare\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\n.NET\tB-Library\t.NET\tO\nclient\tO\tclient\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\n3rd\tO\t3rd\tO\nparty\tO\tparty\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nthree\tO\tthree\tO\nclients\tO\tclients\tO\ncan\tO\tcan\tO\nexchange\tO\texchange\tO\nmessages\tO\tmessages\tO\nacross\tO\tacross\tO\nmachines\tO\tmachines\tO\n,\tO\t,\tO\nor\tO\tor\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nmachine\tO\tmachine\tO\nvia\tO\tvia\tO\nIPC\tO\tIPC\tO\n,\tO\t,\tO\nvery\tO\tvery\tO\nefficiently\tO\tefficiently\tO\n.\tO\t.\tO\n\t\nPerformance\tO\tPerformance\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nfocus\tO\tfocus\tO\n.\tO\t.\tO\n\t\nAeron\tB-Application\tAeron\tO\nis\tO\tis\tO\ndesigned\tO\tdesigned\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nhighest\tO\thighest\tO\nthroughput\tO\tthroughput\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlowest\tO\tlowest\tO\nand\tO\tand\tO\nmost\tO\tmost\tO\npredictable\tO\tpredictable\tO\nlatency\tO\tlatency\tO\npossible\tO\tpossible\tO\nof\tO\tof\tO\nany\tO\tany\tO\nmessaging\tO\tmessaging\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nAeron\tB-Application\tAeron\tO\nintegrates\tO\tintegrates\tO\nwith\tO\twith\tO\nSimple\tB-Application\tSimple\tO\nBinary\tI-Application\tBinary\tO\nEncoding\tI-Application\tEncoding\tO\n(\tO\t(\tO\nSBE\tB-Application\tSBE\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\npossible\tO\tpossible\tO\nperformance\tO\tperformance\tO\nin\tO\tin\tO\nmessage\tO\tmessage\tO\nencoding\tO\tencoding\tO\nand\tO\tand\tO\ndecoding\tO\tdecoding\tO\n.\tO\t.\tO\n\t\nMany\tO\tMany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nstructures\tO\tstructures\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncreation\tO\tcreation\tO\nof\tO\tof\tO\nAeron\tB-Application\tAeron\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nfactored\tO\tfactored\tO\nout\tO\tout\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAgrona\tB-Application\tAgrona\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ndetails\tO\tdetails\tO\nof\tO\tof\tO\nusage\tO\tusage\tO\n,\tO\t,\tO\nprotocol\tO\tprotocol\tO\nspecification\tO\tspecification\tO\n,\tO\t,\tO\nFAQ\tO\tFAQ\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nplease\tO\tplease\tO\ncheck\tO\tcheck\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\n\t\nWiki\tO\tWiki\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthose\tO\tthose\tO\nwho\tO\twho\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nwatch\tO\twatch\tO\na\tO\ta\tO\nvideo\tO\tvideo\tO\nthen\tO\tthen\tO\ntry\tO\ttry\tO\nAeron\tB-Application\tAeron\tO\nMessaging\tI-Application\tMessaging\tO\nfrom\tO\tfrom\tO\nStrangeLoop\tB-Application\tStrangeLoop\tO\n2014\tB-Version\t2014\tO\n.\tO\t.\tO\n\t\nThings\tO\tThings\tO\nhave\tO\thave\tO\nmoved\tO\tmoved\tO\non\tO\ton\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nwith\tO\twith\tO\nperformance\tO\tperformance\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nfeatures\tO\tfeatures\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nbasic\tO\tbasic\tO\ndesign\tO\tdesign\tO\nstill\tO\tstill\tO\napplies\tO\tapplies\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\ninformation\tO\tinformation\tO\nand\tO\tand\tO\nchanges\tO\tchanges\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nChange\tO\tChange\tO\nLog\tO\tLog\tO\nwith\tO\twith\tO\ndownloads\tO\tdownloads\tO\nat\tO\tat\tO\nMaven\tB-Application\tMaven\tO\nCentral\tO\tCentral\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nAeron\tB-Application\tAeron\tO\n?\tO\t?\tO\n\t\nJava\tB-Language\tJava\tO\nProgramming\tO\tProgramming\tO\nGuide\tO\tGuide\tO\n\t\nC++11\tB-Language\tC++11\tO\nProgramming\tO\tProgramming\tO\nGuide\tO\tGuide\tO\n\t\nBest\tO\tBest\tO\nPractices\tO\tPractices\tO\nGuide\tO\tGuide\tO\n\t\nMonitoring\tO\tMonitoring\tO\nand\tO\tand\tO\nDebugging\tO\tDebugging\tO\n\t\nConfiguration\tO\tConfiguration\tO\nOptions\tO\tOptions\tO\n\t\nChannel\tO\tChannel\tO\nSpecific\tO\tSpecific\tO\nConfiguration\tO\tConfiguration\tO\n\t\nHow\tO\tHow\tO\ndoes\tO\tdoes\tO\nAeron\tB-Application\tAeron\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nProtocol\tO\tProtocol\tO\nSpecification\tO\tSpecification\tO\n\t\nDesign\tO\tDesign\tO\nOverview\tO\tOverview\tO\n\t\nDesign\tO\tDesign\tO\nPrinciples\tO\tPrinciples\tO\n\t\nFlow\tO\tFlow\tO\nControl\tO\tControl\tO\nSemantics\tO\tSemantics\tO\n\t\nMedia\tO\tMedia\tO\nDriver\tO\tDriver\tO\nOperation\tO\tOperation\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nhack\tO\thack\tO\non\tO\ton\tO\nAeron\tB-Application\tAeron\tO\n?\tO\t?\tO\n\t\nHacking\tO\tHacking\tO\non\tO\ton\tO\nAeron\tB-Application\tAeron\tO\n\t\nPerformance\tO\tPerformance\tO\nTesting\tO\tTesting\tO\n\t\nLicense\tO\tLicense\tO\n(\tO\t(\tO\nSee\tO\tSee\tO\nLICENSE\tO\tLICENSE\tO\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nfull\tO\tfull\tO\nlicense\tO\tlicense\tO\n)\tO\t)\tO\n\t\nCopyright\tO\tCopyright\tO\n2014-2017\tB-Licence\t2014-2017\tO\nReal\tI-Licence\tReal\tO\nLogic\tI-Licence\tLogic\tO\nLimited\tI-Licence\tLimited\tO\n\t\nLicensed\tO\tLicensed\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nApache\tB-Licence\tApache\tO\nLicense\tI-Licence\tLicense\tO\n,\tO\t,\tO\nVersion\tO\tVersion\tO\n2.0\tB-Version\t2.0\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nLicense\tO\tLicense\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nexcept\tO\texcept\tO\nin\tO\tin\tO\ncompliance\tO\tcompliance\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nLicense\tO\tLicense\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nobtain\tO\tobtain\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nLicense\tO\tLicense\tO\nat\tO\tat\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4157\tI-Code_Block\tGR_4157\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUnless\tO\tUnless\tO\nrequired\tO\trequired\tO\nby\tO\tby\tO\napplicable\tO\tapplicable\tO\nlaw\tO\tlaw\tO\nor\tO\tor\tO\nagreed\tO\tagreed\tO\nto\tO\tto\tO\nin\tO\tin\tO\nwriting\tO\twriting\tO\n,\tO\t,\tO\nsoftware\tO\tsoftware\tO\ndistributed\tO\tdistributed\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nLicense\tO\tLicense\tO\nis\tO\tis\tO\ndistributed\tO\tdistributed\tO\non\tO\ton\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\nAS\tO\tAS\tO\nIS\tO\tIS\tO\n\"\tO\t\"\tO\nBASIS\tO\tBASIS\tO\n,\tO\t,\tO\nWITHOUT\tO\tWITHOUT\tO\nWARRANTIES\tO\tWARRANTIES\tO\nOR\tO\tOR\tO\nCONDITIONS\tO\tCONDITIONS\tO\nOF\tO\tOF\tO\nANY\tO\tANY\tO\nKIND\tO\tKIND\tO\n,\tO\t,\tO\neither\tO\teither\tO\nexpress\tO\texpress\tO\nor\tO\tor\tO\nimplied\tO\timplied\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nLicense\tO\tLicense\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nspecific\tO\tspecific\tO\nlanguage\tO\tlanguage\tO\ngoverning\tO\tgoverning\tO\npermissions\tO\tpermissions\tO\nand\tO\tand\tO\nlimitations\tO\tlimitations\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nLicense\tO\tLicense\tO\n.\tO\t.\tO\n\t\nDirectory\tO\tDirectory\tO\nStructure\tO\tStructure\tO\n\t\nClient\tO\tClient\tO\nAPI\tB-Library\tAPI\tO\nand\tO\tand\tO\ncommon\tO\tcommon\tO\nclasses\tO\tclasses\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4158\tI-Code_Block\tGR_4158\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSamples\tO\tSamples\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4159\tI-Code_Block\tGR_4159\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMedia\tB-Application\tMedia\tO\nDriver\tI-Application\tDriver\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4160\tI-Code_Block\tGR_4160\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBuild\tO\tBuild\tO\n\t\nJava\tB-Language\tJava\tO\nBuild\tO\tBuild\tO\n\t\nThe\tO\tThe\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nbuilt\tO\tbuilt\tO\nwith\tO\twith\tO\nGradle\tB-Application\tGradle\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nbuild.gradle\tB-File_Name\tbuild.gradle\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nrequire\tO\trequire\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nAeron\tO\tAeron\tO\n:\tO\t:\tO\n\t\nLatest\tO\tLatest\tO\nstable\tO\tstable\tO\nOracle\tB-Application\tOracle\tO\nJDK\tI-Application\tJDK\tO\n8\tB-Version\t8\tO\n\t\nYou\tO\tYou\tO\nmust\tO\tmust\tO\nfirst\tO\tfirst\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\ninstall\tO\tinstall\tO\nAgrona\tB-Application\tAgrona\tO\nand\tO\tand\tO\nSimple\tB-Application\tSimple\tO\nBinary\tI-Application\tBinary\tO\nEncoding\tI-Application\tEncoding\tO\n(\tO\t(\tO\nSBE\tB-Application\tSBE\tO\n)\tO\t)\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\nmaven\tB-Application\tmaven\tO\nrepository\tO\trepository\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4161\tI-Code_Block\tGR_4161\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAfter\tO\tAfter\tO\nAgrona\tB-Application\tAgrona\tO\n&\tO\t&\tO\nSBE\tO\tSBE\tO\nis\tO\tis\tO\ncompiled\tO\tcompiled\tO\nand\tO\tand\tO\ninstalled\tO\tinstalled\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nbuild\tO\tbuild\tO\nAeron\tB-Application\tAeron\tO\n.\tO\t.\tO\n\t\nFull\tO\tFull\tO\nclean\tO\tclean\tO\nand\tO\tand\tO\nbuild\tO\tbuild\tO\nof\tO\tof\tO\nall\tO\tall\tO\nmodules\tO\tmodules\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4162\tI-Code_Block\tGR_4162\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nC++\tB-Language\tC++\tO\nBuild\tO\tBuild\tO\n\t\nYou\tO\tYou\tO\nrequire\tO\trequire\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nC++\tB-Library\tC++\tO\nAPI\tI-Library\tAPI\tO\nfor\tO\tfor\tO\nAeron\tO\tAeron\tO\n:\tO\t:\tO\n\t\n3.0.2\tB-Version\t3.0.2\tO\nor\tO\tor\tO\nhigher\tO\thigher\tO\nof\tO\tof\tO\nCMake\tB-Application\tCMake\tO\n\t\nC++11\tB-Language\tC++11\tO\nsupported\tO\tsupported\tO\ncompiler\tB-Application\tcompiler\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsupported\tO\tsupported\tO\nplatform\tO\tplatform\tO\n\t\nC11\tB-Language\tC11\tO\nsupported\tO\tsupported\tO\ncompiler\tB-Application\tcompiler\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsupported\tO\tsupported\tO\nplatform\tO\tplatform\tO\n\t\nRequirements\tO\tRequirements\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nHdrHistogram_c\tB-File_Name\tHdrHistogram_c\tO\n.\tO\t.\tO\n\t\nHdrHistogram\tB-Application\tHdrHistogram\tO\nrequires\tO\trequires\tO\nzlib.h\tB-File_Name\tzlib.h\tB-Code_Block\ncurrently\tO\tcurrently\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\non\tO\ton\tO\nUbuntu\tB-Operating_System\tUbuntu\tO\n:\tO\t:\tO\n\t\n$\tB-Code_Block\t$\tB-Code_Block\nsudo\tI-Code_Block\tsudo\tI-Code_Block\napt-get\tI-Code_Block\tapt-get\tI-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nlibz-dev\tI-Code_Block\tlibz-dev\tI-Code_Block\n\t\nNOTE\tO\tNOTE\tO\n:\tO\t:\tO\nAeron\tB-Application\tAeron\tO\nis\tO\tis\tO\nsupported\tO\tsupported\tO\non\tO\ton\tO\nLinux\tB-Operating_System\tLinux\tO\n,\tO\t,\tO\nMac\tB-Operating_System\tMac\tO\n,\tO\t,\tO\nand\tO\tand\tO\nWindows\tB-Operating_System\tWindows\tO\n.\tO\t.\tO\n\t\nWindows\tB-Operating_System\tWindows\tO\nbuilds\tO\tbuilds\tO\nrequire\tO\trequire\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\nand\tO\tand\tO\nare\tO\tare\tO\nbeing\tO\tbeing\tO\ndeveloped\tO\tdeveloped\tO\nwith\tO\twith\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2013\tB-Version\t2013\tO\nand\tO\tand\tO\n2015\tB-Version\t2015\tO\nwith\tO\twith\tO\n64-bit\tO\t64-bit\tO\nbuilds\tO\tbuilds\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nCygwin\tB-Application\tCygwin\tO\n,\tO\t,\tO\nMSys\tB-Application\tMSys\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nmay\tO\tmay\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nmaintained\tO\tmaintained\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nconvenience\tO\tconvenience\tO\n,\tO\t,\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\nprovided\tO\tprovided\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nclean\tO\tclean\tO\n,\tO\t,\tO\nbuild\tO\tbuild\tO\n,\tO\t,\tO\nand\tO\tand\tO\ntest\tO\ttest\tO\nof\tO\tof\tO\nall\tO\tall\tO\ntargets\tO\ttargets\tO\nas\tO\tas\tO\na\tO\ta\tO\nRelease\tO\tRelease\tO\nbuild\tO\tbuild\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4163\tI-Code_Block\tGR_4163\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ncomfortable\tO\tcomfortable\tO\nwith\tO\twith\tO\nusing\tO\tusing\tO\nCMake\tB-Application\tCMake\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nclean\tO\tclean\tO\n,\tO\t,\tO\nbuild\tO\tbuild\tO\n,\tO\t,\tO\nand\tO\tand\tO\ntest\tO\ttest\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4164\tI-Code_Block\tGR_4164\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nC\tB-Application\tC\tO\nMedia\tI-Application\tMedia\tO\nDriver\tI-Application\tDriver\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nC\tB-Application\tC\tO\nMedia\tI-Application\tMedia\tO\nDriver\tI-Application\tDriver\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nbuilt\tO\tbuilt\tO\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nC++\tB-Language\tC++\tO\nBuild\tO\tBuild\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nenabled\tO\tenabled\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nCMake\tB-Application\tCMake\tO\noption\tO\toption\tO\nBUILD_AERON_DRIVER\tB-Library_Variable\tBUILD_AERON_DRIVER\tB-Code_Block\nbeing\tO\tbeing\tO\nset\tO\tset\tO\nto\tO\tto\tO\nON\tB-Code_Block\tON\tB-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nconvenience\tO\tconvenience\tO\n,\tO\t,\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\nprovided\tO\tprovided\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nclean\tO\tclean\tO\n,\tO\t,\tO\nbuild\tO\tbuild\tO\n,\tO\t,\tO\nand\tO\tand\tO\ntest\tO\ttest\tO\nof\tO\tof\tO\nall\tO\tall\tO\ntargets\tO\ttargets\tO\nas\tO\tas\tO\na\tO\ta\tO\nRelease\tO\tRelease\tO\nbuild\tO\tbuild\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nC++\tB-Library\tC++\tO\nAPI\tI-Library\tAPI\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nC\tB-Application\tC\tO\nMedia\tI-Application\tMedia\tO\nDriver\tI-Application\tDriver\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4165\tI-Code_Block\tGR_4165\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ncomfortable\tO\tcomfortable\tO\nwith\tO\twith\tO\nusing\tO\tusing\tO\nCMake\tB-Application\tCMake\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nclean\tO\tclean\tO\n,\tO\t,\tO\nbuild\tO\tbuild\tO\n,\tO\t,\tO\nand\tO\tand\tO\ntest\tO\ttest\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4166\tI-Code_Block\tGR_4166\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNOTE\tO\tNOTE\tO\n:\tO\t:\tO\nC\tB-Application\tC\tO\nMedia\tI-Application\tMedia\tO\nDriver\tI-Application\tDriver\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\nonly\tO\tonly\tO\nsupported\tO\tsupported\tO\non\tO\ton\tO\nMac\tB-Operating_System\tMac\tO\nand\tO\tand\tO\nLinux\tB-Operating_System\tLinux\tO\n.\tO\t.\tO\n\t\nDocumentation\tO\tDocumentation\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ndoxygen\tB-Application\tdoxygen\tO\ninstalled\tO\tinstalled\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nDoxygen\tB-Application\tDoxygen\tO\ndoc\tO\tdoc\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nnice\tO\tnice\tO\ndoc\tB-Code_Block\tdoc\tB-Code_Block\ntarget\tO\ttarget\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4167\tI-Code_Block\tGR_4167\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPackaging\tO\tPackaging\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\na\tO\ta\tO\npackaged\tO\tpackaged\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncompiled\tO\tcompiled\tO\nAPI\tB-Library\tAPI\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npackage\tB-Code_Block\tpackage\tB-Code_Block\ntarget\tO\ttarget\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nCPack\tB-Application\tCPack\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ndoc\tO\tdoc\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nbuilt\tO\tbuilt\tO\nprevious\tO\tprevious\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npackaging\tO\tpackaging\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\n.\tO\t.\tO\n\t\nPackages\tO\tPackages\tO\ncreated\tO\tcreated\tO\nare\tO\tare\tO\n\"\tO\t\"\tO\nTGZ\tO\tTGZ\tO\n;\tO\t;\tO\nSTGZ\tO\tSTGZ\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nchanged\tO\tchanged\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\ncpack\tB-Application\tcpack\tB-Code_Block\ndirectly\tO\tdirectly\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4168\tI-Code_Block\tGR_4168\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRunning\tO\tRunning\tO\nSamples\tO\tSamples\tO\n\t\nStart\tO\tStart\tO\nup\tO\tup\tO\na\tO\ta\tO\nmedia\tB-Application\tmedia\tO\ndriver\tI-Application\tdriver\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nand\tO\tand\tO\nconductor\tO\tconductor\tO\ndirectories\tO\tdirectories\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nLinux\tB-Operating_System\tLinux\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nprobably\tO\tprobably\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\n/dev/shm/aeron\tB-File_Name\t/dev/shm/aeron\tB-Code_Block\nor\tO\tor\tO\n/tmp/aeron\tB-File_Name\t/tmp/aeron\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4169\tI-Code_Block\tGR_4169\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nand\tO\tand\tO\nconductor\tO\tconductor\tO\ndirectories\tO\tdirectories\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nexample\tO\texample\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nshared\tO\tshared\tO\nmemory\tO\tmemory\tO\n'\tO\t'\tO\ndirectory\tO\tdirectory\tO\n'\tO\t'\tO\non\tO\ton\tO\nLinux\tB-Operating_System\tLinux\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nas\tO\tas\tO\neasily\tO\teasily\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nregular\tO\tregular\tO\nfilesystem\tO\tfilesystem\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4170\tI-Code_Block\tGR_4170\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nBasicSubscriber\tB-Library_Class\tBasicSubscriber\tB-Code_Block\nfrom\tO\tfrom\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nLinux\tB-Operating_System\tLinux\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\npointing\tO\tpointing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n/dev/shm\tB-File_Name\t/dev/shm\tB-Code_Block\nshared\tO\tshared\tO\nmemory\tO\tmemory\tO\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nso\tO\tso\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\nyour\tO\tyour\tO\nMediaDriver\tB-Library_Class\tMediaDriver\tB-Code_Block\nis\tO\tis\tO\ndoing\tO\tdoing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4171\tI-Code_Block\tGR_4171\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nBasicPublisher\tB-Library_Class\tBasicPublisher\tB-Code_Block\nfrom\tO\tfrom\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nLinux\tB-Operating_System\tLinux\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\npointing\tO\tpointing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n/dev/shm\tB-File_Name\t/dev/shm\tB-Code_Block\nshared\tO\tshared\tO\nmemory\tO\tmemory\tO\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nso\tO\tso\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\nyour\tO\tyour\tO\nMediaDriver\tB-Library_Class\tMediaDriver\tB-Code_Block\nis\tO\tis\tO\ndoing\tO\tdoing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4172\tI-Code_Block\tGR_4172\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nAeronStat\tB-Library_Class\tAeronStat\tB-Code_Block\nutility\tO\tutility\tO\nto\tO\tto\tO\nread\tO\tread\tO\nsystem\tO\tsystem\tO\ncounters\tO\tcounters\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4173\tI-Code_Block\tGR_4173\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMedia\tB-Application\tMedia\tO\nDriver\tI-Application\tDriver\tO\nPackaging\tO\tPackaging\tO\n\t\nThe\tO\tThe\tO\nMedia\tB-Application\tMedia\tO\nDriver\tI-Application\tDriver\tO\nis\tO\tis\tO\npackaged\tO\tpackaged\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nbuild\tO\tbuild\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nhere\tO\there\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4174\tI-Code_Block\tGR_4174\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTroubleshooting\tO\tTroubleshooting\tO\n\t\nOn\tO\tOn\tO\nlinux\tB-Operating_System\tlinux\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsubscriber\tO\tsubscriber\tO\nsample\tO\tsample\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4175\tI-Code_Block\tGR_4175\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nan\tO\tan\tO\nout\tO\tout\tO\nof\tO\tof\tO\ndisk\tB-Device\tdisk\tO\nspace\tO\tspace\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nalleviate\tO\talleviate\tO\n,\tO\t,\tO\ncheck\tO\tcheck\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nenough\tO\tenough\tO\ndisk\tB-Device\tdisk\tO\nspace\tO\tspace\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nsamples\tO\tsamples\tO\n,\tO\t,\tO\non\tO\ton\tO\nLinux\tB-Operating_System\tLinux\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nprobably\tO\tprobably\tO\nbe\tO\tbe\tO\neither\tO\teither\tO\nat\tO\tat\tO\n/dev/shm/aeron\tB-File_Name\t/dev/shm/aeron\tB-Code_Block\nor\tO\tor\tO\n/tmp/aeron\tB-File_Name\t/tmp/aeron\tB-Code_Block\n(\tO\t(\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nsettings\tO\tsettings\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthis\tO\tthis\tO\nthread\tO\tthread\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthis\tO\tthis\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nLinux\tB-Operating_System\tLinux\tO\nDocker\tB-Application\tDocker\tO\n,\tO\t,\tO\nbe\tO\tbe\tO\naware\tO\taware\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nDocker\tB-Application\tDocker\tO\nonly\tO\tonly\tO\nallocates\tO\tallocates\tO\n64\tO\t64\tO\nMB\tO\tMB\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nshared\tO\tshared\tO\nmemory\tO\tmemory\tO\nspace\tO\tspace\tO\nat\tO\tat\tO\n/dev/shm\tB-File_Name\t/dev/shm\tB-Code_Block\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsamples\tO\tsamples\tO\nwill\tO\twill\tO\nquickly\tO\tquickly\tO\noutgrow\tO\toutgrow\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nwork\tO\twork\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n--shm-size\tB-Code_Block\t--shm-size\tB-Code_Block\nargument\tO\targument\tO\nfor\tO\tfor\tO\ndocker\tB-Code_Block\tdocker\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\nor\tO\tor\tO\nshm_size\tB-Library_Variable\tshm_size\tB-Code_Block\nin\tO\tin\tO\ndocker-compose.yaml\tB-File_Name\tdocker-compose.yaml\tB-Code_Block\n.\tO\t.\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/25\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/25\tO\n\t\nThanks\tO\tThanks\tO\n@teeparham\tB-User_Name\t@teeparham\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/76\tO\thttps://github.com/linked-statistics/xkos/issues/76\tO\n\t\n\t\nSKOS\tB-Library\tSKOS\tO\nexplicitely\tO\texplicitely\tO\nallows\tO\tallows\tO\nsubProperties\tO\tsubProperties\tO\nof\tO\tof\tO\nskos:related\tB-Library_Class\tskos:related\tO\nas\tO\tas\tO\na\tO\ta\tO\npossible\tO\tpossible\tO\nextension\tO\textension\tO\nmechanism\tO\tmechanism\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nmatter\tO\tmatter\tO\nof\tO\tof\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nExample\tO\tExample\tO\n31\tO\t31\tO\nof\tO\tof\tO\nSKOS\tB-Library\tSKOS\tO\nis\tO\tis\tO\nexactly\tO\texactly\tO\na\tO\ta\tO\ncause/effect\tO\tcause/effect\tO\nexample\tO\texample\tO\n;\tO\t;\tO\n\t\nThe\tO\tThe\tO\nsubproperties\tO\tsubproperties\tO\nintroduced\tO\tintroduced\tO\naim\tO\taim\tO\nat\tO\tat\tO\naccomodating\tO\taccomodating\tO\nthe\tO\tthe\tO\nISO\tO\tISO\tO\n704:2009\tO\t704:2009\tO\nand\tO\tand\tO\nISO\tO\tISO\tO\n1087-1:2000\tO\t1087-1:2000\tO\nstandard\tO\tstandard\tO\nmentionned\tO\tmentionned\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nintroduction\tO\tintroduction\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nissue\tO\tissue\tO\n#85\tO\t#85\tO\nand\tO\tand\tO\nPR\tO\tPR\tO\n#111\tO\t#111\tO\n)\tO\t)\tO\n\t\nIntroducing\tO\tIntroducing\tO\nsubPropertyOf\tO\tsubPropertyOf\tO\nskos:related\tB-Library_Class\tskos:related\tO\nis\tO\tis\tO\nprecisely\tO\tprecisely\tO\na\tO\ta\tO\nway\tO\tway\tO\nof\tO\tof\tO\nstaying\tO\tstaying\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSKOS\tB-Library\tSKOS\tO\nniche\tO\tniche\tO\nwhile\tO\twhile\tO\nnot\tO\tnot\tO\ndrifting\tO\tdrifting\tO\nto\tO\tto\tO\nOWL\tB-Library\tOWL\tO\n;\tO\t;\tO\nthere\tO\tthere\tO\nexists\tO\texists\tO\nfrequent\tO\tfrequent\tO\nuse-cases\tO\tuse-cases\tO\nof\tO\tof\tO\nSKOS\tB-Library\tSKOS\tO\nusers\tO\tusers\tO\nthat\tO\tthat\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstay\tO\tstay\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSKOS\tB-Library\tSKOS\tO\nworld\tO\tworld\tO\nwhile\tO\twhile\tO\nadding\tO\tadding\tO\nslightly\tO\tslightly\tO\nmore\tO\tmore\tO\nsemantic\tO\tsemantic\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\nKOS\tB-Library\tKOS\tO\n,\tO\t,\tO\nand\tO\tand\tO\nextending\tO\textending\tO\nthe\tO\tthe\tO\nSKOS\tB-Library\tSKOS\tO\nmodel\tO\tmodel\tO\nis\tO\tis\tO\na\tO\ta\tO\nstraightforward\tO\tstraightforward\tO\nway\tO\tway\tO\nto\tO\tto\tO\naddress\tO\taddress\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nGetty\tB-Library\tGetty\tO\nAAT\tI-Library\tAAT\tO\nis\tO\tis\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nacknowledge\tO\tacknowledge\tO\nthat\tO\tthat\tO\nalternative\tO\talternative\tO\nmodelling\tO\tmodelling\tO\nare\tO\tare\tO\npossible\tO\tpossible\tO\n;\tO\t;\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nqualified\tO\tqualified\tO\nrelationships\tO\trelationships\tO\nremains\tO\tremains\tO\npossible\tO\tpossible\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nmodelling\tO\tmodelling\tO\n;\tO\t;\tO\n\t\nWe\tO\tWe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nany\tO\tany\tO\nreason\tO\treason\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nmodelling\tO\tmodelling\tO\nlimits\tO\tlimits\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nto\tO\tto\tO\nlift\tO\tlift\tO\na\tO\ta\tO\nclassification\tO\tclassification\tO\nto\tO\tto\tO\nan\tO\tan\tO\nOWL-DL\tO\tOWL-DL\tO\nontology\tO\tontology\tO\n,\tO\t,\tO\nor\tO\tor\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nvocabularies\tO\tvocabularies\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nschema.org\tB-Website\tschema.org\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk\tO\thttps://github.com/google-ar/arcore-unreal-sdk\tO\n\t\nGoogle\tB-Application\tGoogle\tO\nARCore\tI-Application\tARCore\tO\nSDK\tI-Application\tSDK\tO\nfor\tO\tfor\tO\nUnreal\tB-Application\tUnreal\tO\n\t\nCopyright\tB-Licence\tCopyright\tO\n(\tI-Licence\t(\tO\nc\tI-Licence\tc\tO\n)\tI-Licence\t)\tO\n2017\tB-Licence\t2017\tO\nGoogle\tI-Licence\tGoogle\tO\nInc\tI-Licence\tInc\tO\n.\tI-Licence\t.\tO\nAll\tO\tAll\tO\nrights\tO\trights\tO\nreserved\tO\treserved\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nSDK\tB-Application\tSDK\tO\nprovides\tO\tprovides\tO\nnative\tO\tnative\tO\nAPIs\tB-Library\tAPIs\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nessential\tO\tessential\tO\nAR\tO\tAR\tO\nfeatures\tO\tfeatures\tO\nlike\tO\tlike\tO\nmotion\tO\tmotion\tO\ntracking\tO\ttracking\tO\n,\tO\t,\tO\nenvironmental\tO\tenvironmental\tO\nunderstanding\tO\tunderstanding\tO\n,\tO\t,\tO\nand\tO\tand\tO\nlight\tO\tlight\tO\nestimation\tO\testimation\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthese\tO\tthese\tO\ncapabilities\tO\tcapabilities\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nbuild\tO\tbuild\tO\nentirely\tO\tentirely\tO\nnew\tO\tnew\tO\nAR\tO\tAR\tO\nexperiences\tO\texperiences\tO\nor\tO\tor\tO\nenhance\tO\tenhance\tO\nexisting\tO\texisting\tO\napps\tO\tapps\tO\nwith\tO\twith\tO\nAR\tO\tAR\tO\nfeatures\tO\tfeatures\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\n,\tO\t,\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\naccept\tO\taccept\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nQuick\tO\tQuick\tO\nStart\tO\tStart\tO\n\t\nTo\tO\tTo\tO\nbuild\tO\tbuild\tO\nARCore\tB-Application\tARCore\tO\napps\tO\tapps\tO\nwith\tO\twith\tO\nUnreal\tB-Application\tUnreal\tO\nEngine\tI-Application\tEngine\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nUnreal\tB-Application\tUnreal\tO\nEngine\tI-Application\tEngine\tO\nwith\tO\twith\tO\nGoogleARCore\tB-Application\tGoogleARCore\tO\nplugin\tI-Application\tplugin\tO\nintegrated\tO\tintegrated\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nGetting\tO\tGetting\tO\nStarted\tO\tStarted\tO\nwith\tO\twith\tO\nUnreal\tB-Application\tUnreal\tO\ndeveloper\tO\tdeveloper\tO\nguide\tO\tguide\tO\n.\tO\t.\tO\n\t\nAPI\tB-Library\tAPI\tO\nReference\tO\tReference\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nARCore\tB-Application\tARCore\tO\nfor\tO\tfor\tO\nUnreal\tB-Application\tUnreal\tO\nAPI\tB-Library\tAPI\tO\nReference\tO\tReference\tO\n.\tO\t.\tO\n\t\nRelease\tO\tRelease\tO\nNotes\tO\tNotes\tO\n\t\nThe\tO\tThe\tO\nSDK\tB-Application\tSDK\tO\nrelease\tO\trelease\tO\nnotes\tO\tnotes\tO\nare\tO\tare\tO\navailable\tO\tavailable\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nreleases\tO\treleases\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nAdditional\tO\tAdditional\tO\nTerms\tO\tTerms\tO\n\t\nYou\tO\tYou\tO\nmust\tO\tmust\tO\ndisclose\tO\tdisclose\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nARCore\tB-Application\tARCore\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nit\tO\tit\tO\ncollects\tO\tcollects\tO\nand\tO\tand\tO\nprocesses\tO\tprocesses\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\ndisplaying\tO\tdisplaying\tO\na\tO\ta\tO\nprominent\tO\tprominent\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\n\"\tO\t\"\tO\nHow\tO\tHow\tO\nGoogle\tB-Organization\tGoogle\tO\nuses\tO\tuses\tO\ndata\tO\tdata\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nour\tO\tour\tO\npartners\tO\tpartners\tO\n'\tO\t'\tO\nsites\tO\tsites\tO\nor\tO\tor\tO\napps\tO\tapps\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n(\tO\t(\tO\nlocated\tO\tlocated\tO\nat\tO\tat\tO\nwww.google.com/policies/privacy/partners/\tO\twww.google.com/policies/privacy/partners/\tO\n,\tO\t,\tO\nor\tO\tor\tO\nany\tO\tany\tO\nother\tO\tother\tO\nURL\tO\tURL\tO\nGoogle\tB-Organization\tGoogle\tO\nmay\tO\tmay\tO\nprovide\tO\tprovide\tO\nfrom\tO\tfrom\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nTMaluleke/hello\tO\tTMaluleke/hello\tO\n-world\tO\t-world\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/TMaluleke/hello-world\tO\thttps://github.com/TMaluleke/hello-world\tO\n\t\nhello-world\tO\thello-world\tO\n\t\nJust\tO\tJust\tO\na\tO\ta\tO\nrepository\tO\trepository\tO\nlearning\tO\tlearning\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ngit\tB-Application\tgit\tO\n.\tO\t.\tO\n\t\nGit\tB-Application\tGit\tO\nTutorials\tO\tTutorials\tO\n\t\nSecond\tO\tSecond\tO\nchanges\tO\tchanges\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nread\tB-File_Name\tread\tO\nme\tI-File_Name\tme\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nband\tO\tband\tO\nis\tO\tis\tO\nmeasured\tO\tmeasured\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncrowd\tO\tcrowd\tO\nit\tO\tit\tO\npulls\tO\tpulls\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nGit\tB-Application\tGit\tO\nidea\tO\tidea\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nrocket\tO\trocket\tO\nscience\tO\tscience\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/42\tO\thttps://github.com/demigor/lex.db/issues/42\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nmanage\tO\tmanage\tO\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\nif\tO\tif\tO\nI\tO\tI\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nLex.Db.IOS\tB-Application\tLex.Db.IOS\tO\nproject\tO\tproject\tO\nfrom\tO\tfrom\tO\nsource\tO\tsource\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nreference\tO\treference\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nLex.Db.DLL\tB-File_Name\tLex.Db.DLL\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\niOS\tB-Operating_System\tiOS\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nNuGet\tB-Application\tNuGet\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nPCL\tB-Library\tPCL\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nNuGet\tB-Application\tNuGet\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\nLex.Db\tB-Application\tLex.Db\tO\nfrom\tO\tfrom\tO\nNuGet\tB-Application\tNuGet\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/117\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/117\tO\n\t\nAnother\tO\tAnother\tO\nimportant\tO\timportant\tO\nhint\tO\thint\tO\n:\tO\t:\tO\nIn\tO\tIn\tO\nXcode\tB-Application\tXcode\tO\n,\tO\t,\tO\nclick\tO\tclick\tO\non\tO\ton\tO\n\"\tO\t\"\tO\nShow\tO\tShow\tO\nthe\tO\tthe\tO\ndebug\tO\tdebug\tO\nnavigator\tO\tnavigator\tO\n\"\tO\t\"\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nCPU\tB-Device\tCPU\tO\nusage\tO\tusage\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\napp\tO\tapp\tO\nenter\tO\tenter\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\nmode\tO\tmode\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nany\tO\tany\tO\nnon-sound\tO\tnon-sound\tO\nresources\tO\tresources\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nCPU\tB-Device\tCPU\tO\nmeter\tO\tmeter\tO\nwill\tO\twill\tO\nincrease\tO\tincrease\tO\nhighly\tO\thighly\tO\nand\tO\tand\tO\niOS\tB-Operating_System\tiOS\tO\n9\tB-Version\t9\tO\nwill\tO\twill\tO\nkill\tO\tkill\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nTerminated\tO\tTerminated\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nsignal\tB-Error_Name\tsignal\tO\n9\tI-Error_Name\t9\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nmeans\tO\tmeans\tO\nthe\tO\tthe\tO\noperational\tO\toperational\tO\nsystem\tO\tsystem\tO\nkill\tO\tkill\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark/issues/19\tO\thttps://github.com/ben-eb/metalsmith-remark/issues/19\tO\n\t\nHello\tO\tHello\tO\nlovely\tO\tlovely\tO\nhumans\tO\thumans\tO\n,\tO\t,\tO\n\t\nremark-html\tB-Library\tremark-html\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n4.0.0\tB-Version\t4.0.0\tO\n.\tO\t.\tO\n\t\nState\tO\tState\tO\n\t\n\t\nUpdate\tO\tUpdate\tO\n:rocket\tO\t:rocket\tO\n:\tO\t:\tO\n\t\n\t\nDependency\tO\tDependency\tO\n\t\n\t\n\t\nremark-html\tB-Library\tremark-html\tO\n\t\n\t\nNew\tO\tNew\tO\nversion\tO\tversion\tO\n\t\n\t\n\t\n4.0.0\tB-Version\t4.0.0\tO\n\t\n\t\nType\tO\tType\tO\n\t\n\t\n\t\ndependency\tO\tdependency\tO\n\t\n\t\nThis\tO\tThis\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nWithout\tO\tWithout\tO\naccepting\tO\taccepting\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nnew\tO\tnew\tO\nfeatures\tO\tfeatures\tO\n,\tO\t,\tO\nfixes\tO\tfixes\tO\nand\tO\tand\tO\nperf\tO\tperf\tO\nimprovements\tO\timprovements\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmaintainers\tO\tmaintainers\tO\nworked\tO\tworked\tO\non\tO\ton\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nget\tO\tget\tO\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nremark-html\tB-Library\tremark-html\tO\n.\tO\t.\tO\n\t\nGiven\tO\tGiven\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndecent\tO\tdecent\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\n,\tO\t,\tO\na\tO\ta\tO\npassing\tO\tpassing\tO\nbuild\tO\tbuild\tO\nis\tO\tis\tO\na\tO\ta\tO\nstrong\tO\tstrong\tO\nindicator\tO\tindicator\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nchanges\tO\tchanges\tO\nby\tO\tby\tO\nmerging\tO\tmerging\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nchange\tO\tchange\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nthis\tO\tthis\tO\nbranch\tO\tbranch\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimprove\tO\timprove\tO\nthese\tO\tthese\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n?\tO\t?\tO\n\t\nDid\tO\tDid\tO\nI\tO\tI\tO\nreport\tO\treport\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nunsure\tO\tunsure\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nfrequently\tO\tfrequently\tO\nasked\tO\tasked\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\na\tO\ta\tO\nbot\tO\tbot\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\nteach\tO\tteach\tO\nme\tO\tme\tO\nnew\tO\tnew\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nthem\tO\tthem\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\nrock\tO\trock\tO\n!\tO\t!\tO\n\t\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\ndiffers\tO\tdiffers\tO\nby\tO\tby\tO\n8\tO\t8\tO\ncommits\tO\tcommits\tO\n.\tO\t.\tO\n\t\nda73b54\tB-Code_Block\tda73b54\tB-Code_Block\n4.0.0\tI-Code_Block\t4.0.0\tI-Code_Block\n\t\n7f5a771\tB-Code_Block\t7f5a771\tB-Code_Block\nUpdate\tI-Code_Block\tUpdate\tI-Code_Block\ndev-dependencies\tI-Code_Block\tdev-dependencies\tI-Code_Block\n\t\nd736f08\tB-Code_Block\td736f08\tB-Code_Block\nUpdate\tI-Code_Block\tUpdate\tI-Code_Block\nto\tI-Code_Block\tto\tI-Code_Block\ninclude\tI-Code_Block\tinclude\tI-Code_Block\npropper\tI-Code_Block\tpropper\tI-Code_Block\nsanitation\tI-Code_Block\tsanitation\tI-Code_Block\n\t\n93ccf20\tB-Code_Block\t93ccf20\tB-Code_Block\n3.0.1\tI-Code_Block\t3.0.1\tI-Code_Block\n\t\n83b9054\tB-Code_Block\t83b9054\tB-Code_Block\nUpdate\tI-Code_Block\tUpdate\tI-Code_Block\nmetadata\tI-Code_Block\tmetadata\tI-Code_Block\n\t\n050e785\tB-Code_Block\t050e785\tB-Code_Block\nAdd\tI-Code_Block\tAdd\tI-Code_Block\nNode@^\tI-Code_Block\tNode@^\tI-Code_Block\n6.0.0\tI-Code_Block\t6.0.0\tI-Code_Block\nto\tI-Code_Block\tto\tI-Code_Block\nTravis\tI-Code_Block\tTravis\tI-Code_Block\ntargets\tI-Code_Block\ttargets\tI-Code_Block\n\t\nfe755c0\tB-Code_Block\tfe755c0\tB-Code_Block\nUpdate\tI-Code_Block\tUpdate\tI-Code_Block\ncodecov\tI-Code_Block\tcodecov\tI-Code_Block\ninterface\tI-Code_Block\tinterface\tI-Code_Block\n\t\n8c9ed9e\tB-Code_Block\t8c9ed9e\tB-Code_Block\nUpdate\tI-Code_Block\tUpdate\tI-Code_Block\ndev-dependencies\tI-Code_Block\tdev-dependencies\tI-Code_Block\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndiff\tO\tdiff\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\ngreenkeeper.io\tO\tgreenkeeper.io\tO\n.\tO\t.\tO\n\t\nTired\tO\tTired\tO\nof\tO\tof\tO\nseeing\tO\tseeing\tO\nthis\tO\tthis\tO\nsponsor\tO\tsponsor\tO\nmessage\tO\tmessage\tO\n?\tO\t?\tO\n\t\n:zap\tO\t:zap\tO\n:\tO\t:\tO\ngreenkeeper\tB-Code_Block\tgreenkeeper\tB-Code_Block\nupgrade\tI-Code_Block\tupgrade\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnerab/TaskWarriorMail\tO\tnerab/TaskWarriorMail\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/nerab/TaskWarriorMail/issues/2\tO\thttps://github.com/nerab/TaskWarriorMail/issues/2\tO\n\t\nDelivered\tO\tDelivered\tO\nwith\tO\twith\tO\n7050b8e952fb58861d5bb299ea03268437885fcb\tO\t7050b8e952fb58861d5bb299ea03268437885fcb\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/1\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/1\tO\n\t\n\t\nCoverage\tO\tCoverage\tO\nremained\tO\tremained\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nat\tO\tat\tO\n89.326\tO\t89.326\tO\n%\tO\t%\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\nad0db60aa207e901367dacaadd1e8405fea399d4\tO\tad0db60aa207e901367dacaadd1e8405fea399d4\tO\non\tO\ton\tO\nyarn-on-travis\tO\tyarn-on-travis\tO\ninto\tO\tinto\tO\n24bce6f329f5781664fb71519b4252c31570a68b\tO\t24bce6f329f5781664fb71519b4252c31570a68b\tO\non\tO\ton\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/5\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/5\tO\n\t\n\t\nCoverage\tO\tCoverage\tO\ndecreased\tO\tdecreased\tO\n(\tO\t(\tO\n-1.2\tO\t-1.2\tO\n%\tO\t%\tO\n)\tO\t)\tO\nto\tO\tto\tO\n88.75\tO\t88.75\tO\n%\tO\t%\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\nf4db21f1dc9d03a580e65ec462e565f733617e87\tO\tf4db21f1dc9d03a580e65ec462e565f733617e87\tO\non\tO\ton\tO\nfix-module-loading\tO\tfix-module-loading\tO\ninto\tO\tinto\tO\n5d71ac9f6f55c4303eab5713f32a77c2fea5e229\tO\t5d71ac9f6f55c4303eab5713f32a77c2fea5e229\tO\non\tO\ton\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nForneus/programmering\tO\tForneus/programmering\tO\n-a-inlamningar\tO\t-a-inlamningar\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/Forneus/programmering-a-inlamningar/issues/1\tO\thttps://github.com/Forneus/programmering-a-inlamningar/issues/1\tO\n\t\nKommer\tO\tKommer\tO\nej\tO\tej\tO\npå\tO\tpå\tO\nvilken\tO\tvilken\tO\nfunktion\tO\tfunktion\tO\n/\tO\t/\tO\nvilket\tO\tvilket\tO\nkommando\tO\tkommando\tO\njag\tO\tjag\tO\nska\tO\tska\tO\nanvända\tO\tanvända\tO\nmig\tO\tmig\tO\nav\tO\tav\tO\nför\tO\tför\tO\natt\tO\tatt\tO\nrita\tO\trita\tO\nvanliga\tO\tvanliga\tO\nstreck\tO\tstreck\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/2\tO\thttps://github.com/linked-statistics/xkos/issues/2\tO\n\t\nAdd\tO\tAdd\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nDagstuhl\tB-Organization\tDagstuhl\tO\nworkshop\tO\tworkshop\tO\nand\tO\tand\tO\nlicense\tO\tlicense\tO\ninfo\tO\tinfo\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nOntology\tO\tOntology\tO\nressource\tO\tressource\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nOpenPrograms/MiscPrograms\tO\tOpenPrograms/MiscPrograms\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/OpenPrograms/MiscPrograms/issues/7\tO\thttps://github.com/OpenPrograms/MiscPrograms/issues/7\tO\n\t\nHi\tO\tHi\tO\nthere\tO\tthere\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/269\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/269\tO\n\t\ncordova.plugins.backgroundMode.setEnabled(true)\tB-Code_Block\tcordova.plugins.backgroundMode.setEnabled(true)\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nandroid\tB-Operating_System\tandroid\tO\nand\tO\tand\tO\n\t\ncordova.plugins.backgroundMode.isEnabled()\tB-Code_Block\tcordova.plugins.backgroundMode.isEnabled()\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nreturning\tO\treturning\tO\nalways\tO\talways\tO\n\"\tO\t\"\tO\nFalse\tO\tFalse\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGI_18671\tI-Code_Block\tGI_18671\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGI_18672\tI-Code_Block\tGI_18672\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nboth\tO\tboth\tO\ncode\tO\tcode\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nalways\tO\talways\tO\nfalse\tO\tfalse\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\ndevices\tO\tdevices\tO\nand\tO\tand\tO\nos\tO\tos\tO\nversions\tO\tversions\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\ncordova\tB-Library\tcordova\tO\n6.5.0\tB-Version\t6.5.0\tO\nand\tO\tand\tO\nionic\tB-Application\tionic\tO\n1\tB-Version\t1\tO\nWhat\tO\tWhat\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nboth\tO\tboth\tO\ncode\tO\tcode\tO\ndifferently\tO\tdifferently\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/24\tO\thttps://github.com/koding/kd-atom/issues/24\tO\n\t\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nskonves/Konves.Collections\tO\tskonves/Konves.Collections\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/skonves/Konves.Collections\tO\thttps://github.com/skonves/Konves.Collections\tO\n\t\nKonves.Collections\tO\tKonves.Collections\tO\n\t\nContains\tO\tContains\tO\nclasses\tB-Data_Structure\tclasses\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nas\tO\tas\tO\ncollections\tO\tcollections\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nmodel\tO\tmodel\tO\nof\tO\tof\tO\na\tO\ta\tO\nreusable\tO\treusable\tO\nlibrary\tO\tlibrary\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/13\tO\thttps://github.com/smirarab/pasta/issues/13\tO\n\t\nSee\tO\tSee\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhelpful\tO\thelpful\tO\n:\tO\t:\tO\nhttps://www.ncbi.nlm.nih.gov/pubmed/26357090\tO\thttps://www.ncbi.nlm.nih.gov/pubmed/26357090\tO\n\t\nMafft\tB-Application\tMafft\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nCUDA\tB-Application\tCUDA\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nit\tO\tit\tO\nwithin\tO\twithin\tO\nPASTA\tB-Application\tPASTA\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nGive\tO\tGive\tO\nit\tO\tit\tO\na\tO\ta\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP\tO\thttps://github.com/McMenemy/GoDoRP\tO\n\t\nGoDoRP\tB-Application\tGoDoRP\tO\n\t\nGoDoRP\tB-Application\tGoDoRP\tO\n(\tO\t(\tO\nGolang\tB-Language\tGolang\tO\n,\tO\t,\tO\nDocker\tB-Application\tDocker\tO\n,\tO\t,\tO\nReact\tB-Library\tReact\tO\n,\tO\t,\tO\nPostgres\tB-Application\tPostgres\tO\n)\tO\t)\tO\nproject\tO\tproject\tO\nstarter\tO\tstarter\tO\n.\tO\t.\tO\n\t\nDisclaimer\tO\tDisclaimer\tO\n:\tO\t:\tO\nThis\tO\tThis\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nactively\tO\tactively\tO\nsupported\tO\tsupported\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nrecommended\tO\trecommended\tO\nfor\tO\tfor\tO\nproduction\tO\tproduction\tO\napps\tO\tapps\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nit\tO\tit\tO\nserves\tO\tserves\tO\nas\tO\tas\tO\na\tO\ta\tO\nlearning\tO\tlearning\tO\nresource\tO\tresource\tO\n.\tO\t.\tO\n\t\nFeatures\tO\tFeatures\tO\n\t\nStart\tO\tStart\tO\na\tO\ta\tO\nGoDoRP\tB-Application\tGoDoRP\tO\nproject\tO\tproject\tO\nwith\tO\twith\tO\none\tO\tone\tO\ncommand\tO\tcommand\tO\non\tO\ton\tO\nany\tO\tany\tO\ncomputer\tB-Device\tcomputer\tO\nwith\tO\twith\tO\ndocker-compose\tB-Application\tdocker-compose\tO\ninstalled\tO\tinstalled\tO\n\t\nDev\tO\tDev\tO\nmode\tO\tmode\tO\nfeatures\tO\tfeatures\tO\nhot\tO\thot\tO\nreloading\tO\treloading\tO\non\tO\ton\tO\ncode\tO\tcode\tO\nchanges\tO\tchanges\tO\nfor\tO\tfor\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\nGoLang\tB-Language\tGoLang\tO\nbackend\tO\tbackend\tO\nand\tO\tand\tO\nReact\tB-Library\tReact\tO\nfrontend\tO\tfrontend\tO\n(\tO\t(\tO\nno\tO\tno\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrebuild\tO\trebuild\tO\ncontainers\tO\tcontainers\tO\nwhile\tO\twhile\tO\ncoding\tO\tcoding\tO\n)\tO\t)\tO\n\t\nProduction\tO\tProduction\tO\nmode\tO\tmode\tO\nfeatures\tO\tfeatures\tO\noptimized\tO\toptimized\tO\nstatic\tO\tstatic\tO\nReact\tB-Library\tReact\tO\nfrontend\tO\tfrontend\tO\nand\tO\tand\tO\nbinary\tO\tbinary\tO\ngoLang\tB-Language\tgoLang\tO\nbackend\tO\tbackend\tO\n\t\nProduction\tO\tProduction\tO\nimages\tB-User_Interface_Element\timages\tO\nbuilt\tO\tbuilt\tO\nby\tO\tby\tO\npassing\tO\tpassing\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\narg\tO\targ\tO\noption\tO\toption\tO\n(\tO\t(\tO\nimages\tB-User_Interface_Element\timages\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nrun\tO\trun\tO\non\tO\ton\tO\nany\tO\tany\tO\ncomputer\tB-Device\tcomputer\tO\nwith\tO\twith\tO\nDocker\tB-Application\tDocker\tO\n)\tO\t)\tO\n\t\nBenefits\tO\tBenefits\tO\n\t\nAnyone\tO\tAnyone\tO\ncan\tO\tcan\tO\ncontribute\tO\tcontribute\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nlocally\tO\tlocally\tO\nwithout\tO\twithout\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nsetup/install\tO\tsetup/install\tO\nGOPATH\tB-Library_Variable\tGOPATH\tO\n,\tO\t,\tO\nPostgres\tB-Application\tPostgres\tO\n,\tO\t,\tO\nnode\tO\tnode\tO\netc\tO\tetc\tO\n\t\nDev\tO\tDev\tO\nenvironment\tO\tenvironment\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nproduction\tO\tproduction\tO\nenvironment\tO\tenvironment\tO\n\t\nQuickly\tO\tQuickly\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nGoDoRP\tB-Application\tGoDoRP\tO\nproject\tO\tproject\tO\noff\tO\toff\tO\nthe\tO\tthe\tO\nground\tO\tground\tO\n\t\nForking\tO\tForking\tO\nthe\tO\tthe\tO\nrepo\tO\trepo\tO\nallows\tO\tallows\tO\nfor\tO\tfor\tO\ncustomization\tO\tcustomization\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\npreferences\tO\tpreferences\tO\n\t\nGetting\tO\tGetting\tO\nstarted\tO\tstarted\tO\n:\tO\t:\tO\n\t\ndownload\tO\tdownload\tO\ndocker-compose\tB-Application\tdocker-compose\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\nalready\tO\talready\tO\ninstalled\tO\tinstalled\tO\nThen\tO\tThen\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncommands\tO\tcommands\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_61047\tI-Code_Block\tGR_61047\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nReact\tB-Library\tReact\tO\nfrontend\tO\tfrontend\tO\nat\tO\tat\tO\nlocalhost:3000\tO\tlocalhost:3000\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nRESTful\tB-Library\tRESTful\tO\nGoLang\tI-Library\tGoLang\tO\nAPI\tI-Library\tAPI\tO\nat\tO\tat\tO\nlocalhost:5000\tO\tlocalhost:5000\tO\n\t\nChanging\tO\tChanging\tO\nany\tO\tany\tO\nfrontend\tO\tfrontend\tO\n(\tO\t(\tO\nReact\tB-Library\tReact\tO\n)\tO\t)\tO\ncode\tO\tcode\tO\nlocally\tO\tlocally\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\na\tO\ta\tO\nhot-reload\tO\thot-reload\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\nwith\tO\twith\tO\nupdates\tO\tupdates\tO\nand\tO\tand\tO\nchanging\tO\tchanging\tO\nany\tO\tany\tO\nbackend\tO\tbackend\tO\n(\tO\t(\tO\nGoLang\tB-Language\tGoLang\tO\n)\tO\t)\tO\ncode\tO\tcode\tO\nlocally\tO\tlocally\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nautomatically\tO\tautomatically\tO\nupdate\tO\tupdate\tO\nany\tO\tany\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nproduction\tO\tproduction\tO\nimages\tB-User_Interface_Element\timages\tO\nrun\tO\trun\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_61048\tI-Code_Block\tGR_61048\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels\tO\n\t\nStandard\tO\tStandard\tO\nContainer/Application\tO\tContainer/Application\tO\nIdentifiers\tO\tIdentifiers\tO\n\t\nDefault\tO\tDefault\tO\nContainerized\tO\tContainerized\tO\nApplication\tO\tApplication\tO\nLabels/Annotations/Ids\tO\tLabels/Annotations/Ids\tO\nused\tO\tused\tO\nto\tO\tto\tO\ndocument\tO\tdocument\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nand/or\tO\tand/or\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nintroduction\tO\tintroduction\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nAtomic\tB-Application\tAtomic\tO\ncommand\tO\tcommand\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nare\tO\tare\tO\naccessing\tO\taccessing\tO\ncontainer\tO\tcontainer\tO\nimage\tB-User_Interface_Element\timage\tO\nmeta\tO\tmeta\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\ndescribe\tO\tdescribe\tO\nthe\tO\tthe\tO\npurpose\tO\tpurpose\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\ndefined\tO\tdefined\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nconsensus\tO\tconsensus\tO\non\tO\ton\tO\ndefault\tO\tdefault\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nProposals\tO\tProposals\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nnamespace\tO\tnamespace\tO\nthe\tO\tthe\tO\nlabel\tO\tlabel\tO\nnames\tO\tnames\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nDocker\tB-Application\tDocker\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwe\tO\twe\tO\nbelieve\tO\tbelieve\tO\nthere\tO\tthere\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\ngeneric\tO\tgeneric\tO\ntoplevel\tO\ttoplevel\tO\nnames\tO\tnames\tO\ndefined\tO\tdefined\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nvendor\tO\tvendor\tO\nspecific\tO\tspecific\tO\n,\tO\t,\tO\nor\tO\tor\tO\ndistribution\tO\tdistribution\tO\nspecific\tO\tspecific\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nadditional\tO\tadditional\tO\nnames\tO\tnames\tO\nand\tO\tand\tO\ndescriptions\tO\tdescriptions\tO\nadded\tO\tadded\tO\nplease\tO\tplease\tO\nopen\tO\topen\tO\nissues\tO\tissues\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthis\tO\tthis\tO\nreadme\tB-File_Name\treadme\tO\n.\tO\t.\tO\n\t\nOverview\tO\tOverview\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nare\tO\tare\tO\nbeing\tO\tbeing\tO\nconsidered\tO\tconsidered\tO\n:\tO\t:\tO\n\t\nLabels\tO\tLabels\tO\nused\tO\tused\tO\nto\tO\tto\tO\ndescribe\tO\tdescribe\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\napplication/image\tB-User_Interface_Element\tapplication/image\tO\n\t\nName\tO\tName\tO\n\t\nDescription\tO\tDescription\tO\n\t\nhelp\tO\thelp\tO\n\t\nCommand\tO\tCommand\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nhelp\tO\thelp\tO\ncommand\tO\tcommand\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nrun\tO\trun\tO\n\t\nCommand\tO\tCommand\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nrun_opts_file\tB-Code_Block\trun_opts_file\tO\n\t\nPath\tO\tPath\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\ncontaining\tO\tcontaining\tO\noptions\tO\toptions\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\n'\tO\t'\tO\nrun\tO\trun\tO\n'\tO\t'\tO\ncommand\tO\tcommand\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nof\tO\tof\tO\n${RUN_OPTS}\tB-Code_Block\t${RUN_OPTS}\tO\n\t\nuninstall\tB-Code_Block\tuninstall\tO\n\t\nCommand\tO\tCommand\tO\nto\tO\tto\tO\nuninstall\tO\tuninstall\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\ninstall\tB-Code_Block\tinstall\tO\n\t\nCommand\tO\tCommand\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nstop\tB-Code_Block\tstop\tO\n\t\nCommand\tO\tCommand\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nbefore\tO\tbefore\tO\nstopping\tO\tstopping\tO\ncontainer\tO\tcontainer\tO\n\t\ndebug\tB-Code_Block\tdebug\tO\n\t\nCommand\tO\tCommand\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nwith\tO\twith\tO\ndebugging\tO\tdebugging\tO\nturned\tO\tturned\tO\non\tO\ton\tO\n\t\nLabels\tO\tLabels\tO\nNames\tO\tNames\tO\nused\tO\tused\tO\nto\tO\tto\tO\ndescribe\tO\tdescribe\tO\nthe\tO\tthe\tO\napplication/image\tB-User_Interface_Element\tapplication/image\tO\n\t\nName\tO\tName\tO\n\t\nDescription\tO\tDescription\tO\n\t\nname\tB-Library_Variable\tname\tO\n\t\nName\tO\tName\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nImage\tB-User_Interface_Element\tImage\tO\n\t\nversion\tB-Library_Variable\tversion\tO\n\t\nVersion\tO\tVersion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nrelease\tB-Library_Variable\trelease\tO\n\t\nRelease\tO\tRelease\tO\nNumber\tO\tNumber\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nversion\tO\tversion\tO\n\t\narchitecture\tB-Library_Variable\tarchitecture\tO\n\t\nArchitecture\tO\tArchitecture\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nbuild-date\tB-Library_Variable\tbuild-date\tO\n\t\nDate/Time\tO\tDate/Time\tO\nimage\tB-User_Interface_Element\timage\tO\nwas\tO\twas\tO\nbuilt\tO\tbuilt\tO\nas\tO\tas\tO\nRFC\tB-Data_Type\tRFC\tO\n3339\tI-Data_Type\t3339\tO\ndate-time\tI-Data_Type\tdate-time\tO\n\t\nvendor\tB-Library_Variable\tvendor\tO\n\t\nOwner\tO\tOwner\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nurl\tB-Library_Variable\turl\tO\n\t\nUrl\tO\tUrl\tO\nwith\tO\twith\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nsummary\tB-Library_Variable\tsummary\tO\n\t\nShort\tO\tShort\tO\nDescription\tO\tDescription\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\ndescription\tB-Library_Variable\tdescription\tO\n\t\nDetailed\tO\tDetailed\tO\ndescription\tO\tdescription\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nvcs-type\tB-Library_Variable\tvcs-type\tO\n\t\nThe\tO\tThe\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nversion\tO\tversion\tO\ncontrol\tO\tcontrol\tO\nused\tO\tused\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\nsource\tO\tsource\tO\n.\tO\t.\tO\n\t\nGenerally\tO\tGenerally\tO\none\tO\tone\tO\nof\tO\tof\tO\ngit\tB-Application\tgit\tO\n,\tO\t,\tO\nhg\tB-Application\thg\tO\n,\tO\t,\tO\nsvn\tB-Application\tsvn\tO\n,\tO\t,\tO\nbzr\tB-Application\tbzr\tO\n,\tO\t,\tO\ncvs\tB-Application\tcvs\tO\n\t\nvcs-url\tB-Library_Variable\tvcs-url\tO\n\t\nURL\tO\tURL\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\ncontrol\tO\tcontrol\tO\nrepository\tO\trepository\tO\n\t\nvcs-ref\tB-Library_Variable\tvcs-ref\tO\n\t\nA\tO\tA\tO\n'\tO\t'\tO\nreference\tO\treference\tO\n'\tO\t'\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\ncontrol\tO\tcontrol\tO\nrepository\tO\trepository\tO\n;\tO\t;\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\na\tO\ta\tO\ngit\tB-Application\tgit\tO\ncommit\tO\tcommit\tO\n,\tO\t,\tO\nor\tO\tor\tO\na\tO\ta\tO\nsubversion\tB-Application\tsubversion\tO\nbranch\tO\tbranch\tO\n\t\nauthoritative-source-url\tB-Library_Variable\tauthoritative-source-url\tO\n\t\nThe\tO\tThe\tO\nauthoritative\tO\tauthoritative\tO\nlocation\tO\tlocation\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nis\tO\tis\tO\npublished\tO\tpublished\tO\n\t\ndistribution-scope\tB-Library_Variable\tdistribution-scope\tO\n\t\nIntended\tO\tIntended\tO\nscope\tO\tscope\tO\nof\tO\tof\tO\ndistribution\tO\tdistribution\tO\nfor\tO\tfor\tO\nimage\tB-User_Interface_Element\timage\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nbelow\tO\tbelow\tO\nfor\tO\tfor\tO\npossible\tO\tpossible\tO\nvalues\tO\tvalues\tO\n)\tO\t)\tO\n\t\nchangelog-url\tB-Library_Variable\tchangelog-url\tO\n\t\nURL\tO\tURL\tO\nof\tO\tof\tO\na\tO\ta\tO\npage\tO\tpage\tO\ncontaining\tO\tcontaining\tO\nrelease\tO\trelease\tO\nnotes\tO\tnotes\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nPossible\tO\tPossible\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\ndistribution-scope\tB-Library_Variable\tdistribution-scope\tO\nfield\tO\tfield\tO\n\t\nName\tO\tName\tO\n\t\nDescription\tO\tDescription\tO\n\t\nprivate\tB-Code_Block\tprivate\tO\n\t\nNo\tO\tNo\tO\npublic\tO\tpublic\tO\nredistribution\tO\tredistribution\tO\nintended\tO\tintended\tO\n\t\nauthoritative-source-only\tB-Code_Block\tauthoritative-source-only\tO\n\t\nRedistribution\tO\tRedistribution\tO\nonly\tO\tonly\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nlisted\tO\tlisted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nauthoritative-source-url\tO\tauthoritative-source-url\tO\n'\tO\t'\tO\nlabel\tO\tlabel\tO\n\t\nrestricted\tB-Code_Block\trestricted\tO\n\t\nRedistribution\tO\tRedistribution\tO\nonly\tO\tonly\tO\nwith\tO\twith\tO\npermission\tO\tpermission\tO\n\t\npublic\tB-Code_Block\tpublic\tO\n\t\nNo\tO\tNo\tO\nredistribution\tO\tredistribution\tO\nlimits\tO\tlimits\tO\nbeyond\tO\tbeyond\tO\nlicenses\tO\tlicenses\tO\n\t\nCustom\tO\tCustom\tO\nlabels\tO\tlabels\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\ndefined\tO\tdefined\tO\nby\tO\tby\tO\na\tO\ta\tO\nnamespace\tO\tnamespace\tO\nprefix\tO\tprefix\tO\nusing\tO\tusing\tO\nreverse\tO\treverse\tO\nDNS\tO\tDNS\tO\nnotation\tO\tnotation\tO\nof\tO\tof\tO\na\tO\ta\tO\ndomain\tO\tdomain\tO\ncontrolled\tO\tcontrolled\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nauthor\tO\tauthor\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ncom.redhat.access\tB-Code_Block\tcom.redhat.access\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_39653\tI-Code_Block\tGR_39653\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDetails\tO\tDetails\tO\non\tO\ton\tO\nLabels\tO\tLabels\tO\n\t\nauthoritative-source-url\tB-Library_Variable\tauthoritative-source-url\tB-Code_Block\n\t\nThe\tO\tThe\tO\nauthoritative\tO\tauthoritative\tO\nlocation\tO\tlocation\tO\nthe\tO\tthe\tO\nimage\tO\timage\tO\nis\tO\tis\tO\npublished\tO\tpublished\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nowner\tO\towner\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ncombination\tO\tcombination\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nname\tO\tname\tO\n'\tO\t'\tO\nlabel\tO\tlabel\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ntells\tO\ttells\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nand\tO\tand\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nofficial\tO\tofficial\tO\nupdates\tO\tupdates\tO\nand\tO\tand\tO\ncurrent\tO\tcurrent\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage\tO\timage\tO\n,\tO\t,\tO\nregardless\tO\tregardless\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\ntags\tO\ttags\tO\n.\tO\t.\tO\n\t\ndistribution-scope\tB-Library_Variable\tdistribution-scope\tB-Code_Block\n\t\nThe\tO\tThe\tO\nintended\tO\tintended\tO\nscope\tO\tscope\tO\nof\tO\tof\tO\ndistribution\tO\tdistribution\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nAllows\tO\tAllows\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nthe\tO\tthe\tO\nintended\tO\tintended\tO\nscope\tO\tscope\tO\nof\tO\tof\tO\ndistribution\tO\tdistribution\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\naddresses\tO\taddresses\tO\nthe\tO\tthe\tO\nend-user\tO\tend-user\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\ninternal\tO\tinternal\tO\nbuilds\tO\tbuilds\tO\nvs\tO\tvs\tO\n.\tO\t.\tO\npublic\tO\tpublic\tO\ncontent\tO\tcontent\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\na\tO\ta\tO\nvendor\tO\tvendor\tO\nlike\tO\tlike\tO\nRed\tB-Organization\tRed\tO\nHat\tI-Organization\tHat\tO\nthat\tO\tthat\tO\nprovides\tO\tprovides\tO\ncontent\tO\tcontent\tO\nstreams\tO\tstreams\tO\nunder\tO\tunder\tO\nsubscription\tO\tsubscription\tO\nagreements\tO\tagreements\tO\n-\tO\t-\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlicense(s)\tO\tlicense(s)\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ncombination\tO\tcombination\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nauthoritative-source-url\tB-Library_Variable\tauthoritative-source-url\tO\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\nname\tB-Library_Variable\tname\tO\n'\tO\t'\tO\nlabels\tO\tlabels\tO\nallows\tO\tallows\tO\nautomatic\tO\tautomatic\tO\nredirect\tO\tredirect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nauthoritative\tO\tauthoritative\tO\nsource\tO\tsource\tO\n.\tO\t.\tO\n\t\nSigning\tO\tSigning\tO\nServer\tB-Application\tServer\tO\nMetadata\tO\tMetadata\tO\n\"\tO\t\"\tO\nsigstore\tB-Library_Variable\tsigstore\tO\n\"\tO\t\"\tO\nImage\tB-User_Interface_Element\tImage\tO\n\t\nSigning\tO\tSigning\tO\nserver\tB-Application\tserver\tO\nmetadata\tO\tmetadata\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nserved\tO\tserved\tO\nby\tO\tby\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nimage\tB-User_Interface_Element\timage\tO\nin\tO\tin\tO\na\tO\ta\tO\nrepository\tO\trepository\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nimage\tB-User_Interface_Element\timage\tO\nshall\tO\tshall\tO\nbe\tO\tbe\tO\nnamed\tO\tnamed\tO\n\"\tO\t\"\tO\nsigstore\tB-Library_Variable\tsigstore\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\ncontain\tO\tcontain\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nlabels\tO\tlabels\tO\n,\tO\t,\tO\nall\tO\tall\tO\nrequired\tO\trequired\tO\n:\tO\t:\tO\n\t\nName\tO\tName\tO\n\t\nDescription\tO\tDescription\tO\n\t\nsigstore-url\tB-Library_Variable\tsigstore-url\tO\n\t\nThe\tO\tThe\tO\nsignature\tO\tsignature\tO\nserver\tB-Application\tserver\tO\nURL\tO\tURL\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nport\tO\tport\tO\n\t\nsigstore-type\tB-Library_Variable\tsigstore-type\tO\n\t\nSignature\tO\tSignature\tO\nserver\tB-Application\tserver\tO\ntype\tO\ttype\tO\n,\tO\t,\tO\neither\tO\teither\tO\n\"\tO\t\"\tO\ndocker\tB-Application\tdocker\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nstatic\tO\tstatic\tO\nweb\tO\tweb\tO\nserver\tB-Application\tserver\tO\n)\tO\t)\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\natomic\tB-Application\tatomic\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nAtomic\tB-Application\tAtomic\tO\nRegistry\tI-Application\tRegistry\tO\nand\tO\tand\tO\nOpenShift\tB-Library\tOpenShift\tO\nAPI\tI-Library\tAPI\tO\n)\tO\t)\tO\n\t\npubkey-id\tB-Library_Variable\tpubkey-id\tO\n\t\nThe\tO\tThe\tO\npublic\tO\tpublic\tO\nkey\tO\tkey\tO\nID\tO\tID\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nof\tO\tof\tO\nan\tO\tan\tO\nemail\tO\temail\tO\naddress\tO\taddress\tO\n\t\npubkey-fingerprint\tB-Library_Variable\tpubkey-fingerprint\tO\n\t\nThe\tO\tThe\tO\npublic\tO\tpublic\tO\nkey\tO\tkey\tO\nfingerprint\tO\tfingerprint\tO\n,\tO\t,\tO\ntypically\tO\ttypically\tO\na\tO\ta\tO\nlong\tO\tlong\tO\nhexidecimal\tO\thexidecimal\tO\nstring\tB-Data_Type\tstring\tO\n\t\npubkey-url\tB-Library_Variable\tpubkey-url\tO\n\t\nThe\tO\tThe\tO\nURL\tO\tURL\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nthe\tO\tthe\tO\npublic\tO\tpublic\tO\nkey\tO\tkey\tO\n\t\nExample\tO\tExample\tO\nDockerfile\tB-File_Type\tDockerfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_39654\tI-Code_Block\tGR_39654\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/5\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/5\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nEvery\tO\tEvery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nran\tO\tran\tO\ninto\tO\tinto\tO\nthis\tO\tthis\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nfrom\tO\tfrom\tO\nduplicate\tO\tduplicate\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\njust\tO\tjust\tO\nmessing\tO\tmessing\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nday\tO\tday\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nfilter\tO\tfilter\tO\nthat\tO\tthat\tO\nremoves\tO\tremoves\tO\nexact\tO\texact\tO\nduplicates\tO\tduplicates\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndrive\tO\tdrive\tO\nwas\tO\twas\tO\neffective\tO\teffective\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\n#\tO\t#\tO\nof\tO\tof\tO\nplays\tO\tplays\tO\nin\tO\tin\tO\nsummary\tO\tsummary\tO\n=\tO\t=\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nplays\tO\tplays\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nrequire\tO\trequire\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nwe\tO\twe\tO\nare\tO\tare\tO\ncounting\tO\tcounting\tO\nplays\tO\tplays\tO\n.\tO\t.\tO\n\t\nfor\tO\tfor\tO\nexample\tO\texample\tO\nkicks\tO\tkicks\tO\ntimeouts\tO\ttimeouts\tO\nand\tO\tand\tO\npenalties\tO\tpenalties\tO\nare\tO\tare\tO\ncounted\tO\tcounted\tO\nas\tO\tas\tO\nplays\tO\tplays\tO\nin\tO\tin\tO\ncurrent\tO\tcurrent\tO\nparser\tO\tparser\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nin\tO\tin\tO\nreality\tO\treality\tO\n.\tO\t.\tO\n\t\nAdditionally\tO\tAdditionally\tO\nthe\tO\tthe\tO\ndrive\tO\tdrive\tO\nsummary\tO\tsummary\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\njust\tO\tjust\tO\nas\tO\tas\tO\noften\tO\toften\tO\n,\tO\t,\tO\nso\tO\tso\tO\nIts\tO\tIts\tO\nreally\tO\treally\tO\njust\tO\tjust\tO\na\tO\ta\tO\nguideline\tO\tguideline\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nAhmedAMohamed/UberLikeApplicationService\tO\tAhmedAMohamed/UberLikeApplicationService\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/AhmedAMohamed/UberLikeApplicationService/issues/3\tO\thttps://github.com/AhmedAMohamed/UberLikeApplicationService/issues/3\tO\n\t\nSigned-off-by\tO\tSigned-off-by\tO\n:\tO\t:\tO\nAhmed\tB-User_Name\tAhmed\tO\nAlaa\tI-User_Name\tAlaa\tO\nahmedalaa3307023@gmail.com\tO\tahmedalaa3307023@gmail.com\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/2\tO\thttps://github.com/zeroepoch/plotbitrate/issues/2\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nThat\tO\tThat\tO\nhelped\tO\thelped\tO\n!\tO\t!\tO\n\t\nGreat\tO\tGreat\tO\ntool\tO\ttool\tO\n!\tO\t!\tO\n\t\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/75\tO\thttps://github.com/spacetelescope/specview/issues/75\tO\n\t\nWhen\tO\tWhen\tO\none\tO\tone\tO\ntypes\tO\ttypes\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\nparameter\tO\tparameter\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmodel\tB-Application\tmodel\tO\neditor\tI-Application\teditor\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nimplementable\tO\timplementable\tO\nby\tO\tby\tO\nresponding\tO\tresponding\tO\nto\tO\tto\tO\na\tO\ta\tO\nparameter\tO\tparameter\tO\nchange\tO\tchange\tO\nevent\tO\tevent\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nnow\tO\tnow\tO\nresponds\tO\tresponds\tO\nto\tO\tto\tO\na\tO\ta\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nfit\tO\tfit\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nfit\tO\tfit\tO\nbut\tO\tbut\tO\njust\tO\tjust\tO\na\tO\ta\tO\nre-computation\tO\tre-computation\tO\nof\tO\tof\tO\nmodel\tO\tmodel\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nsubsequent\tO\tsubsequent\tO\nactions\tO\tactions\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nrefreshing\tO\trefreshing\tO\nthe\tO\tthe\tO\nplots\tO\tplots\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkassius/markdown\tO\tkassius/markdown\tO\n-placeholder\tO\t-placeholder\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/kassius/markdown-placeholder\tO\thttps://github.com/kassius/markdown-placeholder\tO\n\t\nmarkdown-placeholder\tB-Application\tmarkdown-placeholder\tO\n\t\nOr\tO\tOr\tO\nMarkdown\tB-Application\tMarkdown\tO\nLorem\tI-Application\tLorem\tO\nIpsum\tI-Application\tIpsum\tO\n\t\nMarkdown\tB-Application\tMarkdown\tO\nplaceholder\tI-Application\tplaceholder\tO\nor\tO\tor\tO\nmarkdown\tB-Application\tmarkdown\tO\nlorem\tI-Application\tlorem\tO\nipsum\tI-Application\tipsum\tO\nis\tO\tis\tO\na\tO\ta\tO\nplaceholder\tO\tplaceholder\tO\nfor\tO\tfor\tO\ntesting\tO\ttesting\tO\nmarkdown\tB-Application\tmarkdown\tO\nand\tO\tand\tO\nmarkdown\tB-Application\tmarkdown\tO\nextra\tI-Application\textra\tO\ntemplating\tO\ttemplating\tO\n.\tO\t.\tO\n\t\nRendered\tO\tRendered\tO\n\t\nhttps://github.com/kassius/markdown-placeholder/blob/master/markdown-placeholder.md\tO\thttps://github.com/kassius/markdown-placeholder/blob/master/markdown-placeholder.md\tO\n\t\nRAW\tO\tRAW\tO\n.md\tB-File_Type\t.md\tO\n\t\nhttps://raw.githubusercontent.com/kassius/markdown-placeholder/master/markdown-placeholder.md\tO\thttps://raw.githubusercontent.com/kassius/markdown-placeholder/master/markdown-placeholder.md\tO\n\t\nSyntax\tO\tSyntax\tO\n\t\nMarkdown\tB-Application\tMarkdown\tO\noriginal\tO\toriginal\tO\n\t\nhttps://daringfireball.net/projects/markdown/\tO\thttps://daringfireball.net/projects/markdown/\tO\n\t\nMarkdown\tB-Application\tMarkdown\tO\nExtra\tI-Application\tExtra\tO\n\t\nhttps://michelf.ca/projects/php-markdown/extra/\tO\thttps://michelf.ca/projects/php-markdown/extra/\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/8\tO\thttps://github.com/koding/kd-atom/issues/8\tO\n\t\nFollowing\tO\tFollowing\tO\nscreenshot\tO\tscreenshot\tO\nis\tO\tis\tO\na\tO\ta\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\nrunning\tO\trunning\tO\nkd:teams\tB-Code_Block\tkd:teams\tB-Code_Block\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\ncurrent\tO\tcurrent\tO\natom\tB-Application\tatom\tO\nwindow\tO\twindow\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nrunning\tO\trunning\tO\nwindow:reload\tB-Code_Block\twindow:reload\tB-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nalternatively\tO\talternatively\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\ndev\tO\tdev\tO\ntools\tO\ttools\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nblocking\tO\tblocking\tO\ndom\tB-Application\tdom\tO\nelements\tO\telements\tO\nis\tO\tis\tO\nanother\tO\tanother\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/3\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/3\tO\n\t\nYeah\tO\tYeah\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nadapters\tO\tadapters\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndhrrgn/codeigniter\tO\tdhrrgn/codeigniter\tO\n-uhoh\tO\t-uhoh\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dhrrgn/codeigniter-uhoh/issues/1\tO\thttps://github.com/dhrrgn/codeigniter-uhoh/issues/1\tO\n\t\nThis\tO\tThis\tO\nfile\tO\tfile\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nloaded\tO\tloaded\tO\nin\tO\tin\tO\nindex.php\tB-File_Name\tindex.php\tO\nand\tO\tand\tO\nrespect\tO\trespect\tO\nthe\tO\tthe\tO\nENVIRONMENT\tO\tENVIRONMENT\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nset\tO\tset\tO\nin\tO\tin\tO\n2.0\tB-Version\t2.0\tO\nReactor\tB-Application\tReactor\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nfile\tO\tfile\tO\nwill\tO\twill\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nException\tB-Library_Class\tException\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nerror\tO\terror\tO\nhandlers\tO\thandlers\tO\ncompletely\tO\tcompletely\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/97\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/97\tO\n\t\n\t\nWhat\tO\tWhat\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nchange\tO\tchange\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\nintroduce\tO\tintroduce\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nBug\tO\tBug\tO\nfix\tO\tfix\tO\n,\tO\t,\tO\nfeature\tO\tfeature\tO\n,\tO\t,\tO\ndocs\tO\tdocs\tO\nupdate\tO\tupdate\tO\n,\tO\t,\tO\n..\tO\t..\tO\n.\tO\t.\tO\n)\tO\t)\tO\nfeature\tO\tfeature\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nbehavior\tO\tbehavior\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nan\tO\tan\tO\nopen\tO\topen\tO\nissue\tO\tissue\tO\nhere\tO\there\tO\n)\tO\t)\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nbehavior\tO\tbehavior\tO\n(\tO\t(\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nfeature\tO\tfeature\tO\nchange\tO\tchange\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nAdd\tO\tAdd\tO\ndisqus\tO\tdisqus\tO\ncomponent\tO\tcomponent\tO\n\t\nDoes\tO\tDoes\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\nintroduce\tO\tintroduce\tO\na\tO\ta\tO\nbreaking\tO\tbreaking\tO\nchange\tO\tchange\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nWhat\tO\tWhat\tO\nchanges\tO\tchanges\tO\nmight\tO\tmight\tO\nusers\tO\tusers\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\napplication\tO\tapplication\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nno\tO\tno\tO\n\t\nOther\tO\tOther\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nglome/gnb\tO\tglome/gnb\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/glome/gnb/issues/1\tO\thttps://github.com/glome/gnb/issues/1\tO\n\t\nThis\tO\tThis\tO\nproject\tO\tproject\tO\nhas\tO\thas\tO\nvulnerabilities\tO\tvulnerabilities\tO\nthat\tO\tthat\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nfixed\tO\tfixed\tO\n,\tO\t,\tO\nor\tO\tor\tO\nwere\tO\twere\tO\npatched\tO\tpatched\tO\nwhen\tO\twhen\tO\nno\tO\tno\tO\nupgrade\tO\tupgrade\tO\nwas\tO\twas\tO\navailable\tO\tavailable\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nnews\tO\tnews\tO\n,\tO\t,\tO\nnew\tO\tnew\tO\nupgrades\tO\tupgrades\tO\nor\tO\tor\tO\npatches\tO\tpatches\tO\nhave\tO\thave\tO\nnow\tO\tnow\tO\nbeen\tO\tbeen\tO\npublished\tO\tpublished\tO\n!\tO\t!\tO\n\t\nThis\tO\tThis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nfixes\tO\tfixes\tO\nvulnerable\tO\tvulnerable\tO\ndependencies\tO\tdependencies\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\npreviously\tO\tpreviously\tO\naddress\tO\taddress\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nPR\tO\tPR\tO\nincludes\tO\tincludes\tO\n:\tO\t:\tO\n\t\npackage.json\tB-File_Name\tpackage.json\tB-Code_Block\nscripts\tO\tscripts\tO\nand\tO\tand\tO\na\tO\ta\tO\nSnyk\tB-Application\tSnyk\tO\npolicy\tO\tpolicy\tO\n(\tO\t(\tO\n.snyk\tB-File_Type\t.snyk\tB-Code_Block\n)\tO\t)\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\npatch\tO\tpatch\tO\nthe\tO\tthe\tO\nvulnerabilities\tO\tvulnerabilities\tO\nthat\tO\tthat\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nupgraded\tO\tupgraded\tO\naway\tO\taway\tO\nand\tO\tand\tO\nignore\tO\tignore\tO\nvulnerabilities\tO\tvulnerabilities\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nfixes\tO\tfixes\tO\n.\tO\t.\tO\n\t\nVulnerabilities\tO\tVulnerabilities\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfixed\tO\tfixed\tO\n\t\nWith\tO\tWith\tO\na\tO\ta\tO\nSnyk\tB-Application\tSnyk\tO\npatch\tO\tpatch\tO\n:\tO\t:\tO\n\t\nnpm:ms:20170412\tO\tnpm:ms:20170412\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nSnyk\tB-Application\tSnyk\tO\n's\tO\t's\tO\nupgrade\tO\tupgrade\tO\nand\tO\tand\tO\npatch\tO\tpatch\tO\nlogic\tO\tlogic\tO\nin\tO\tin\tO\nSnyk\tB-Application\tSnyk\tO\n's\tO\t's\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nonly\tO\tonly\tO\naddresses\tO\taddresses\tO\nvulnerabilities\tO\tvulnerabilities\tO\nthat\tO\tthat\tO\npreviously\tO\tpreviously\tO\nhad\tO\thad\tO\nno\tO\tno\tO\nfixes\tO\tfixes\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nSnyk\tB-Application\tSnyk\tO\ntest\tO\ttest\tO\nreport\tO\treport\tO\nto\tO\tto\tO\nreview\tO\treview\tO\nand\tO\tand\tO\nremediate\tO\tremediate\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nvulnerable\tO\tvulnerable\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nthey\tO\tthey\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\ncause\tO\tcause\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nStay\tO\tStay\tO\nsecure\tO\tsecure\tO\n,\tO\t,\tO\nThe\tO\tThe\tO\nSnyk\tB-Application\tSnyk\tO\nteam\tO\tteam\tO\n\t\nsnyk:metadata:{\"type\":\"remediation\",\"packageManager\":\"npm\",\"vulns\":[\"npm:ms:20170412\"],\"patch\":[\"npm:ms:20170412\"],\"ignore\":[],\"upgrade\":[],\"isBreakingChange\":false,\"env\":\"prod\"}\tO\tsnyk:metadata:{\"type\":\"remediation\",\"packageManager\":\"npm\",\"vulns\":[\"npm:ms:20170412\"],\"patch\":[\"npm:ms:20170412\"],\"ignore\":[],\"upgrade\":[],\"isBreakingChange\":false,\"env\":\"prod\"}\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/36\tO\thttps://github.com/linked-statistics/xkos/issues/36\tO\n\t\nResolved\tO\tResolved\tO\nin\tO\tin\tO\ncommits\tO\tcommits\tO\nd5684f3\tO\td5684f3\tO\n,\tO\t,\tO\n259b935\tO\t259b935\tO\nand\tO\tand\tO\n4056e48\tO\t4056e48\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nAhmedAMohamed/UberLikeApplicationService\tO\tAhmedAMohamed/UberLikeApplicationService\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/AhmedAMohamed/UberLikeApplicationService/issues/2\tO\thttps://github.com/AhmedAMohamed/UberLikeApplicationService/issues/2\tO\n\t\nSigned-off-by\tO\tSigned-off-by\tO\n:\tO\t:\tO\nAhmed\tB-User_Name\tAhmed\tO\nAlaa\tI-User_Name\tAlaa\tO\nahmedalaa3307023@gmail.com\tO\tahmedalaa3307023@gmail.com\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nForneus/programmering\tO\tForneus/programmering\tO\n-a-inlamningar\tO\t-a-inlamningar\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/Forneus/programmering-a-inlamningar/issues/1\tO\thttps://github.com/Forneus/programmering-a-inlamningar/issues/1\tO\n\t\nLagom\tO\tLagom\tO\navstånd\tO\tavstånd\tO\n,\tO\t,\tO\ntjocklek\tO\ttjocklek\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/33\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/33\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ngeneral\tO\tgeneral\tO\nUE\tB-Application\tUE\tO\nsamples\tO\tsamples\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nfurther\tO\tfurther\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\nEpic\tB-Organization\tEpic\tO\n's\tO\t's\tO\nchannels\tO\tchannels\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2\tO\thttps://github.com/thehyve/puppet-i2b2\tO\n\t\npuppet-i2b2\tB-Application\tpuppet-i2b2\tO\n\t\nModule\tO\tModule\tO\nfor\tO\tfor\tO\ninstalling\tO\tinstalling\tO\ni2b2\tB-Application\ti2b2\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\npart\tO\tpart\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nwebclient\tO\twebclient\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nadmin\tO\tadmin\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nRequires\tO\tRequires\tO\nPuppet\tB-Application\tPuppet\tO\n4\tB-Version\t4\tO\n,\tO\t,\tO\nor\tO\tor\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\nparser\tO\tparser\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nenabled\tO\tenabled\tO\n.\tO\t.\tO\n\t\nSystem\tO\tSystem\tO\ntests\tO\ttests\tO\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\ntests\tO\ttests\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nVagrant\tB-Application\tVagrant\tO\ninstalled\tO\tinstalled\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nrun\tO\trun\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_82882\tI-Code_Block\tGR_82882\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSome\tO\tSome\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_82883\tI-Code_Block\tGR_82883\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nBEAKER_debug\tB-Library_Variable\tBEAKER_debug\tB-Code_Block\nvariable\tO\tvariable\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\ncommands\tO\tcommands\tO\nbeing\tO\tbeing\tO\nrun\tO\trun\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nSTU\tO\tSTU\tO\nand\tO\tand\tO\ntheir\tO\ttheir\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nBEAKER_destroy\tB-Code_Block\tBEAKER_destroy\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nno\tI-Code_Block\tno\tI-Code_Block\nprevents\tO\tprevents\tO\nthe\tO\tthe\tO\nmachine\tO\tmachine\tO\ndestruction\tO\tdestruction\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\ntests\tO\ttests\tO\nfinish\tO\tfinish\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ninspect\tO\tinspect\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\n.\tO\t.\tO\n\t\nBEAKER_provision\tB-Code_Block\tBEAKER_provision\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nno\tI-Code_Block\tno\tI-Code_Block\nprevents\tO\tprevents\tO\nthe\tO\tthe\tO\nmachine\tO\tmachine\tO\nfrom\tO\tfrom\tO\nbeing\tO\tbeing\tO\nrecreated\tO\trecreated\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nsave\tO\tsave\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\nwhile\tO\twhile\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nwriting\tO\twriting\tO\nthe\tO\tthe\tO\ntests\tO\ttests\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/17\tO\thttps://github.com/demigor/lex.db/issues/17\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nhave\tO\thave\tO\niOS\tB-Operating_System\tiOS\tO\nsupport\tO\tsupport\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\nis\tO\tis\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\na\tO\ta\tO\nrough\tO\trough\tO\ndirection\tO\tdirection\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nport\tO\tport\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP/issues/6\tO\thttps://github.com/McMenemy/GoDoRP/issues/6\tO\n\t\nSeems\tO\tSeems\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nknown\tO\tknown\tO\nproblem\tO\tproblem\tO\nfor\tO\tfor\tO\nwindows\tB-Operating_System\twindows\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nform\tO\tform\tO\npost\tO\tpost\tO\nhas\tO\thas\tO\nsome\tO\tsome\tO\nsuggestions\tO\tsuggestions\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/8\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/8\tO\n\t\n\t\nCoverage\tO\tCoverage\tO\nremained\tO\tremained\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nat\tO\tat\tO\n86.957\tO\t86.957\tO\n%\tO\t%\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\n6251c61aa001f6fa3c495028371726a4bc55325a\tO\t6251c61aa001f6fa3c495028371726a4bc55325a\tO\non\tO\ton\tO\nfix-publication\tO\tfix-publication\tO\ninto\tO\tinto\tO\nb2a4c42789a750b7ef3fdbf71c954923c87f23d1\tO\tb2a4c42789a750b7ef3fdbf71c954923c87f23d1\tO\non\tO\ton\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander/issues/11\tO\thttps://github.com/SivanMehta/wander/issues/11\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nmerge\tO\tmerge\tO\nthis\tO\tthis\tO\nsince\tO\tsince\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nremoving\tO\tremoving\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nconsuming\tO\tconsuming\tO\nfiles\tO\tfiles\tO\nas\tO\tas\tO\nsuggested\tO\tsuggested\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\npr\tO\tpr\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate\tO\thttps://github.com/zeroepoch/plotbitrate\tO\n\t\nPlotBitrate\tO\tPlotBitrate\tO\n\t\nFFProbe\tB-Application\tFFProbe\tO\nBitrate\tO\tBitrate\tO\nGraph\tB-User_Interface_Element\tGraph\tO\n\t\nThis\tO\tThis\tO\nproject\tO\tproject\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nfor\tO\tfor\tO\nplotting\tO\tplotting\tO\nthe\tO\tthe\tO\nbitrate\tO\tbitrate\tO\nof\tO\tof\tO\nan\tO\tan\tO\naudio\tO\taudio\tO\nor\tO\tor\tO\nvideo\tO\tvideo\tO\nstream\tO\tstream\tO\nover\tO\tover\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nframe\tO\tframe\tO\nbitrate\tO\tbitrate\tO\ndata\tO\tdata\tO\nffprobe\tB-Application\tffprobe\tO\nis\tO\tis\tO\nused\tO\tused\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nffmpeg\tB-Application\tffmpeg\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nffprobe\tB-Application\tffprobe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nstreamed\tO\tstreamed\tO\nto\tO\tto\tO\npython\tB-Language\tpython\tO\nas\tO\tas\tO\nxml\tB-Language\txml\tO\nframe\tO\tframe\tO\nmetadata\tO\tmetadata\tO\nand\tO\tand\tO\nsorted\tO\tsorted\tO\nby\tO\tby\tO\nframe\tO\tframe\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nMatplotlib\tB-Library\tMatplotlib\tO\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nplot\tO\tplot\tO\neach\tO\teach\tO\nframe\tO\tframe\tO\ntype\tO\ttype\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ngraph\tB-User_Interface_Element\tgraph\tO\nwith\tO\twith\tO\nlines\tO\tlines\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\npeak\tO\tpeak\tO\nand\tO\tand\tO\nmean\tO\tmean\tO\nbitrates\tO\tbitrates\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nresulting\tO\tresulting\tO\nbitrate\tO\tbitrate\tO\ngraph\tB-User_Interface_Element\tgraph\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsaved\tO\tsaved\tO\nas\tO\tas\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nVariable\tO\tVariable\tO\nframerate\tO\tframerate\tO\nstreams\tO\tstreams\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\ncurrently\tO\tcurrently\tO\naccurately\tO\taccurately\tO\ncalculated\tO\tcalculated\tO\n.\tO\t.\tO\n\t\nRequirements\tO\tRequirements\tO\n:\tO\t:\tO\n\t\nPython\tB-Language\tPython\tO\n3.x\tB-Version\t3.x\tO\n\t\nFFMpeg\tB-Application\tFFMpeg\tO\n>=\tB-Version\t>=\tO\n1.2\tI-Version\t1.2\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nffprobe\tB-Application\tffprobe\tO\ncommand\tO\tcommand\tO\n\t\nMatplotlib\tB-Library\tMatplotlib\tO\npython\tB-Version\tpython\tO\n3\tI-Version\t3\tO\nlibrary\tO\tlibrary\tO\n\t\nUsage\tO\tUsage\tO\nExamples\tO\tExamples\tO\n\t\nShow\tO\tShow\tO\nvideo\tO\tvideo\tO\nstream\tO\tstream\tO\nbitrate\tO\tbitrate\tO\nin\tO\tin\tO\na\tO\ta\tO\nwindow\tB-User_Interface_Element\twindow\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_183140\tI-Code_Block\tGR_183140\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSave\tO\tSave\tO\nvideo\tO\tvideo\tO\nstream\tO\tstream\tO\nbitrate\tO\tbitrate\tO\nto\tO\tto\tO\nan\tO\tan\tO\nSVG\tB-File_Type\tSVG\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_183141\tI-Code_Block\tGR_183141\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nShow\tO\tShow\tO\naudio\tO\taudio\tO\nstream\tO\tstream\tO\nbitrate\tO\tbitrate\tO\nin\tO\tin\tO\na\tO\ta\tO\nwindow\tB-User_Interface_Element\twindow\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_183142\tI-Code_Block\tGR_183142\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2/issues/3\tO\thttps://github.com/thehyve/puppet-i2b2/issues/3\tO\n\t\nAfter\tO\tAfter\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nbeaker\tB-Application\tbeaker\tO\ntests\tO\ttests\tO\nand\tO\tand\tO\nleaving\tO\tleaving\tO\nthe\tO\tthe\tO\nmachine\tO\tmachine\tO\non\tO\ton\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_19850\tI-Code_Block\tGR_19850\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nPatAltimore/active\tO\tPatAltimore/active\tO\n-directory-cordova-graphapi\tO\t-directory-cordova-graphapi\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/PatAltimore/active-directory-cordova-graphapi\tO\thttps://github.com/PatAltimore/active-directory-cordova-graphapi\tO\n\t\n\t\nservices\tO\tservices\tO\n:\tO\t:\tO\nactive-directory\tB-Application\tactive-directory\tO\nplatforms\tO\tplatforms\tO\n:\tO\t:\tO\njavascript\tB-Language\tjavascript\tO\nauthor\tO\tauthor\tO\n:\tO\t:\tO\nvibronet\tB-User_Name\tvibronet\tO\n\t\nCalling\tO\tCalling\tO\nthe\tO\tthe\tO\nGraph\tB-Library\tGraph\tO\nAPI\tI-Library\tAPI\tO\nin\tO\tin\tO\nan\tO\tan\tO\nApache\tB-Library\tApache\tO\nCordova\tI-Library\tCordova\tO\napp\tO\tapp\tO\n\t\nThis\tO\tThis\tO\nsample\tO\tsample\tO\ndemonstrates\tO\tdemonstrates\tO\nthe\tO\tthe\tO\nusage\tO\tusage\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nAAD\tB-Application\tAAD\tO\nGraph\tI-Application\tGraph\tO\nplugin\tO\tplugin\tO\nfor\tO\tfor\tO\nApache\tB-Library\tApache\tO\nCordova\tI-Library\tCordova\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nan\tO\tan\tO\nApache\tB-Library\tApache\tO\nCordova\tI-Library\tCordova\tO\napp\tO\tapp\tO\nfor\tO\tfor\tO\nmanaging\tO\tmanaging\tO\nan\tO\tan\tO\nAzure\tB-Application\tAzure\tO\nActive\tI-Application\tActive\tO\nDirectory\tI-Application\tDirectory\tO\nvia\tO\tvia\tO\nAAD\tB-Library\tAAD\tO\nGraph\tI-Library\tGraph\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nsample\tO\tsample\tO\nsolution\tO\tsolution\tO\ndemonstrates\tO\tdemonstrates\tO\nthe\tO\tthe\tO\nusage\tO\tusage\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nAAD\tB-Application\tAAD\tO\nGraph\tI-Application\tGraph\tO\nplugin\tO\tplugin\tO\nfor\tO\tfor\tO\nApache\tB-Library\tApache\tO\nCordova\tI-Library\tCordova\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nan\tO\tan\tO\nApache\tB-Library\tApache\tO\nCordova\tI-Library\tCordova\tO\napp\tO\tapp\tO\n,\tO\t,\tO\ntargeting\tO\ttargeting\tO\nseveral\tO\tseveral\tO\ndifferent\tO\tdifferent\tO\nplatforms\tO\tplatforms\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ncode\tO\tcode\tO\nbase\tO\tbase\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\napplication\tO\tapplication\tO\nsigns\tO\tsigns\tO\nusers\tO\tusers\tO\nin\tO\tin\tO\nwith\tO\twith\tO\nAzure\tB-Application\tAzure\tO\nActive\tI-Application\tActive\tO\nDirectory\tI-Application\tDirectory\tO\n(\tO\t(\tO\nAAD\tB-Application\tAAD\tO\n)\tO\t)\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nActive\tB-Library\tActive\tO\nDirectory\tI-Library\tDirectory\tO\nAuthentication\tI-Library\tAuthentication\tO\nLibrary\tI-Library\tLibrary\tO\n(\tO\t(\tO\nADAL\tB-Library\tADAL\tO\n)\tO\t)\tO\nplugin\tO\tplugin\tO\nfor\tO\tfor\tO\nCordova\tB-Library\tCordova\tO\nto\tO\tto\tO\nobtain\tO\tobtain\tO\na\tO\ta\tO\nJWT\tB-Application\tJWT\tO\naccess\tO\taccess\tO\ntoken\tO\ttoken\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nOAuth\tB-Licence\tOAuth\tO\n2.0\tB-Version\t2.0\tO\nprotocol\tO\tprotocol\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\naccess\tO\taccess\tO\ntoken\tO\ttoken\tO\nis\tO\tis\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nAAD\tB-Application\tAAD\tO\n's\tO\t's\tO\nGraph\tB-Library\tGraph\tO\nAPI\tI-Library\tAPI\tO\nto\tO\tto\tO\nauthenticate\tO\tauthenticate\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nand\tO\tand\tO\nobtain\tO\tobtain\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nusers\tO\tusers\tO\n,\tO\t,\tO\ngroups\tO\tgroups\tO\nand\tO\tand\tO\napplications\tO\tapplications\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\nprotocols\tO\tprotocols\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nscenario\tO\tscenario\tO\nand\tO\tand\tO\nother\tO\tother\tO\nscenarios\tO\tscenarios\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nAuthentication\tO\tAuthentication\tO\nScenarios\tO\tScenarios\tO\nfor\tO\tfor\tO\nAzure\tB-Application\tAzure\tO\nAD\tI-Application\tAD\tO\n.\tO\t.\tO\n\t\nAAD\tB-Application\tAAD\tO\nGraph\tI-Application\tGraph\tO\nplugin\tO\tplugin\tO\nfor\tO\tfor\tO\nApache\tB-Library\tApache\tO\nCordova\tI-Library\tCordova\tO\nis\tO\tis\tO\nan\tO\tan\tO\nopen\tO\topen\tO\nsource\tO\tsource\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ndistribution\tO\tdistribution\tO\noptions\tO\toptions\tO\n,\tO\t,\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncontributions\tO\tcontributions\tO\n,\tO\t,\tO\ncheck\tO\tcheck\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nAAD\tB-Library\tAAD\tO\nGraph\tI-Library\tGraph\tO\nCordova\tI-Library\tCordova\tO\nrepo\tO\trepo\tO\nat\tO\tat\tO\nhttps://github.com/Azure-Samples/active-directory-cordova-graphapi\tO\thttps://github.com/Azure-Samples/active-directory-cordova-graphapi\tO\n.\tO\t.\tO\n\t\nAbout\tO\tAbout\tO\nThe\tO\tThe\tO\nSample\tO\tSample\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nstarted\tO\tstarted\tO\nimmediately\tO\timmediately\tO\n,\tO\t,\tO\nskip\tO\tskip\tO\nthis\tO\tthis\tO\nsection\tO\tsection\tO\nand\tO\tand\tO\njump\tO\tjump\tO\nto\tO\tto\tO\nHow\tO\tHow\tO\nTo\tO\tTo\tO\nRun\tO\tRun\tO\nThe\tO\tThe\tO\nSample\tO\tSample\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nsample\tO\tsample\tO\ndemonstrates\tO\tdemonstrates\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nallows\tO\tallows\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nretrieve\tO\tretrieve\tO\nand\tO\tand\tO\nmanage\tO\tmanage\tO\ndirectory\tO\tdirectory\tO\nusers\tO\tusers\tO\n,\tO\t,\tO\ngroups\tO\tgroups\tO\nand\tO\tand\tO\napplications\tO\tapplications\tO\n.\tO\t.\tO\n\t\nAvailable\tO\tAvailable\tO\nactions\tO\tactions\tO\ninclude\tO\tinclude\tO\nCRUD\tO\tCRUD\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nspecific\tO\tspecific\tO\noperations\tO\toperations\tO\nlike\tO\tlike\tO\nReset\tO\tReset\tO\nuser\tO\tuser\tO\npassword\tO\tpassword\tO\nand\tO\tand\tO\nRestore\tO\tRestore\tO\ndeleted\tO\tdeleted\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nSupported\tO\tSupported\tO\nplatforms\tO\tplatforms\tO\n:\tO\t:\tO\niOS\tB-Operating_System\tiOS\tO\n,\tO\t,\tO\nAndroid\tB-Operating_System\tAndroid\tO\n,\tO\t,\tO\nWindows\tB-Application\tWindows\tO\nStore\tI-Application\tStore\tO\nand\tO\tand\tO\nWindows\tB-Operating_System\tWindows\tO\nPhone\tB-Device\tPhone\tO\n.\tO\t.\tO\n\t\nNOTE\tO\tNOTE\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nlogin\tO\tlogin\tO\nas\tO\tas\tO\na\tO\ta\tO\nGlobal\tO\tGlobal\tO\nAdministrator\tO\tAdministrator\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nall\tO\tall\tO\nsample\tO\tsample\tO\nfunctionality\tO\tfunctionality\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nget\tO\tget\tO\n\"\tO\t\"\tO\nInsufficient\tO\tInsufficient\tO\nprivileges\tO\tprivileges\tO\n\"\tO\t\"\tO\nerror\tO\terror\tO\notherwise\tO\totherwise\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nTo\tO\tTo\tO\nRun\tO\tRun\tO\nThis\tO\tThis\tO\nSample\tO\tSample\tO\n\t\nPrerequisites\tO\tPrerequisites\tO\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\nthis\tO\tthis\tO\nsample\tO\tsample\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\n:\tO\t:\tO\n\t\nAn\tO\tAn\tO\nInternet\tO\tInternet\tO\nconnection\tO\tconnection\tO\n\t\nA\tO\tA\tO\nWindows\tB-Operating_System\tWindows\tO\n8.1\tB-Version\t8.1\tO\n64-bit\tO\t64-bit\tO\nmachine\tO\tmachine\tO\nwith\tO\twith\tO\nminimum\tO\tminimum\tO\n4\tO\t4\tO\nGB\tO\tGB\tO\nof\tO\tof\tO\nRAM\tO\tRAM\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nWindows\tB-Operating_System\tWindows\tO\nTable/PC\tB-Device\tTable/PC\tO\napps\tO\tapps\tO\n.\tO\t.\tO\n\t\nProcessor\tO\tProcessor\tO\nthat\tO\tthat\tO\nsupports\tO\tsupports\tO\nClient\tO\tClient\tO\nHyper-V\tO\tHyper-V\tO\nand\tO\tand\tO\nSecond\tO\tSecond\tO\nLevel\tO\tLevel\tO\nAddress\tO\tAddress\tO\nTranslation\tO\tTranslation\tO\n(\tO\t(\tO\nSLAT\tO\tSLAT\tO\n)\tO\t)\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nrequired\tO\trequired\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nWindows\tB-Operating_System\tWindows\tO\nPhone\tB-Device\tPhone\tO\n8.1\tB-Version\t8.1\tO\napp\tO\tapp\tO\non\tO\ton\tO\nemulator\tB-Application\temulator\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nMac\tB-Operating_System\tMac\tO\nOSX\tI-Operating_System\tOSX\tO\n10.8.5/Mountain\tB-Version\t10.8.5/Mountain\tO\nLion\tI-Version\tLion\tO\nor\tO\tor\tO\nhigher\tO\thigher\tO\nmachine\tO\tmachine\tO\nwith\tO\twith\tO\n4\tO\t4\tO\nGB\tO\tGB\tO\nof\tO\tof\tO\nRAM\tO\tRAM\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrun\tO\trun\tO\niOS\tB-Operating_System\tiOS\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\nAndroid\tB-Operating_System\tAndroid\tO\napp\tO\tapp\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchoose\tO\tchoose\tO\namong\tO\tamong\tO\n\t\nMac\tB-Operating_System\tMac\tO\nOSX\tI-Operating_System\tOSX\tO\n10.8.5/Mountain\tB-Version\t10.8.5/Mountain\tO\nLion\tI-Version\tLion\tO\nor\tO\tor\tO\nhigher\tO\thigher\tO\nmachine\tO\tmachine\tO\nwith\tO\twith\tO\n4\tO\t4\tO\nGB\tO\tGB\tO\nof\tO\tof\tO\nRAM\tO\tRAM\tO\n\t\nLinux\tB-Operating_System\tLinux\tO\nmachine\tO\tmachine\tO\n(\tO\t(\tO\nGNOME\tB-Application\tGNOME\tO\nor\tO\tor\tO\nKDE\tB-Application\tKDE\tO\ndesktop\tO\tdesktop\tO\n)\tO\t)\tO\nwith\tO\twith\tO\n4\tO\t4\tO\nGB\tO\tGB\tO\nof\tO\tof\tO\nRAM\tO\tRAM\tO\n(\tO\t(\tO\ntested\tO\ttested\tO\non\tO\ton\tO\nUbuntu®\tB-Operating_System\tUbuntu®\tO\n14.04\tB-Version\t14.04\tO\n)\tO\t)\tO\n\t\nWindows\tB-Operating_System\tWindows\tO\n8\tB-Version\t8\tO\nor\tO\tor\tO\nhigher\tO\thigher\tO\nmachine\tO\tmachine\tO\nwith\tO\twith\tO\n4\tO\t4\tO\nGB\tO\tGB\tO\nof\tO\tof\tO\nRAM\tO\tRAM\tO\n\t\nGit\tB-Application\tGit\tO\n\t\nNodeJS\tB-Application\tNodeJS\tO\n\t\nCordova\tB-Application\tCordova\tO\nCLI\tI-Application\tCLI\tO\n\t\n(\tO\t(\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\neasily\tO\teasily\tO\ninstalled\tO\tinstalled\tO\nvia\tO\tvia\tO\nNPM\tB-Application\tNPM\tO\npackage\tO\tpackage\tO\nmanager\tO\tmanager\tO\n:\tO\t:\tO\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n-g\tI-Code_Block\t-g\tI-Code_Block\ncordova\tI-Code_Block\tcordova\tI-Code_Block\n)\tO\t)\tO\n\t\nPlatform\tO\tPlatform\tO\nspecific\tO\tspecific\tO\ndevelopment\tO\tdevelopment\tO\ntools\tO\ttools\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nplatform(s)\tO\tplatform(s)\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nsample\tO\tsample\tO\napplication\tO\tapplication\tO\non\tO\ton\tO\n:\tO\t:\tO\n\t\nTo\tO\tTo\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nWindows\tB-Operating_System\tWindows\tO\nTablet/PC\tB-Device\tTablet/PC\tO\nor\tO\tor\tO\nPhone\tB-Device\tPhone\tO\napp\tO\tapp\tO\nversion\tO\tversion\tO\n\t\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2013\tB-Version\t2013\tO\nfor\tO\tfor\tO\nWindows\tB-Operating_System\tWindows\tO\nwith\tO\twith\tO\nUpdate\tO\tUpdate\tO\n2\tB-Version\t2\tO\nor\tO\tor\tO\nlater\tO\tlater\tO\n(\tO\t(\tO\nExpress\tB-Version\tExpress\tO\nor\tO\tor\tO\nanother\tO\tanother\tO\nversion\tO\tversion\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nfor\tO\tfor\tO\niOS\tB-Operating_System\tiOS\tO\n\t\nXcode\tB-Application\tXcode\tO\n5.x\tB-Version\t5.x\tO\nor\tO\tor\tO\ngreater\tO\tgreater\tO\n.\tO\t.\tO\n\t\nDownload\tO\tDownload\tO\nit\tO\tit\tO\nat\tO\tat\tO\nhttp://developer.apple.com/downloads\tO\thttp://developer.apple.com/downloads\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nMac\tB-Application\tMac\tO\nApp\tI-Application\tApp\tO\nStore\tI-Application\tStore\tO\n\t\nios-sim\tB-Application\tios-sim\tO\n–\tO\t–\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nlaunch\tO\tlaunch\tO\niOS\tB-Operating_System\tiOS\tO\napps\tO\tapps\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\niOS\tB-Application\tiOS\tO\nSimulator\tI-Application\tSimulator\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\n(\tO\t(\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\neasily\tO\teasily\tO\ninstalled\tO\tinstalled\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nterminal\tB-Application\tterminal\tO\n:\tO\t:\tO\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n-g\tI-Code_Block\t-g\tI-Code_Block\nios-sim\tI-Code_Block\tios-sim\tI-Code_Block\n)\tO\t)\tO\n\t\nTo\tO\tTo\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\nrun\tO\trun\tO\napplication\tO\tapplication\tO\nfor\tO\tfor\tO\nAndroid\tB-Operating_System\tAndroid\tO\n\t\nInstall\tO\tInstall\tO\nJava\tB-Application\tJava\tO\nDevelopment\tI-Application\tDevelopment\tO\nKit\tI-Application\tKit\tO\n(\tO\t(\tO\nJDK\tB-Application\tJDK\tO\n)\tO\t)\tO\n7\tB-Version\t7\tO\nor\tO\tor\tO\nlater\tO\tlater\tO\n.\tO\t.\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nJAVA_HOME\tB-Library_Variable\tJAVA_HOME\tB-Code_Block\n(\tO\t(\tO\nEnvironment\tO\tEnvironment\tO\nVariable\tO\tVariable\tO\n)\tO\t)\tO\nis\tO\tis\tO\ncorrectly\tO\tcorrectly\tO\nset\tO\tset\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nJDK\tB-Application\tJDK\tO\ninstallation\tO\tinstallation\tO\npath\tO\tpath\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nC:\\Program\tO\tC:\\Program\tO\nFiles\tO\tFiles\tO\n\\Java\\jdk1.7.0_75)\tO\t\\Java\\jdk1.7.0_75)\tO\n.\tO\t.\tO\n\t\nInstall\tO\tInstall\tO\nAndroid\tB-Application\tAndroid\tO\nSDK\tI-Application\tSDK\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\n<android-sdk-location>\tB-Code_Block\t<android-sdk-location>\tB-Code_Block\n\\tools\tI-Code_Block\t\\tools\tI-Code_Block\nlocation\tO\tlocation\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nC:\\tools\\Android\\android-sdk\\tools\tO\tC:\\tools\\Android\\android-sdk\\tools\tO\n)\tO\t)\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nPATH\tB-Library_Variable\tPATH\tB-Code_Block\nEnvironment\tO\tEnvironment\tO\nVariable\tO\tVariable\tO\n.\tO\t.\tO\n\t\nOpen\tO\tOpen\tO\nAndroid\tB-Application\tAndroid\tO\nSDK\tI-Application\tSDK\tO\nManager\tI-Application\tManager\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nvia\tO\tvia\tO\nterminal\tB-Application\tterminal\tO\n:\tO\t:\tO\nandroid\tB-Code_Block\tandroid\tB-Code_Block\n)\tO\t)\tO\nand\tO\tand\tO\ninstall\tO\tinstall\tO\n\t\nAndroid\tB-Operating_System\tAndroid\tO\n5.1.1\tB-Version\t5.1.1\tO\n(\tO\t(\tO\nAPI\tB-Application\tAPI\tO\n2\tB-Version\t2\tO\n2)\tI-Version\t2)\tO\nplatform\tO\tplatform\tO\nSDK\tB-Application\tSDK\tO\n\t\nAndroid\tB-Application\tAndroid\tO\nSDK\tI-Application\tSDK\tO\nBuild-tools\tO\tBuild-tools\tO\nversion\tO\tversion\tO\n19.1.0\tB-Version\t19.1.0\tO\nor\tO\tor\tO\nhigher\tO\thigher\tO\n\t\nAndroid\tO\tAndroid\tO\nSupport\tO\tSupport\tO\nRepository\tO\tRepository\tO\n(\tO\t(\tO\nExtras\tO\tExtras\tO\n)\tO\t)\tO\n\t\nAndroid\tB-Application\tAndroid\tO\nsdk\tI-Application\tsdk\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nprovide\tO\tprovide\tO\nany\tO\tany\tO\ndefault\tO\tdefault\tO\nemulator\tB-Application\temulator\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\none\tO\tone\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\nandroid\tB-Code_Block\tandroid\tB-Code_Block\navd\tI-Code_Block\tavd\tI-Code_Block\nfrom\tO\tfrom\tO\nterminal\tB-Application\tterminal\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nselecting\tO\tselecting\tO\nCreate.\tO\tCreate.\tO\n.\tO\t.\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nAndroid\tB-Operating_System\tAndroid\tO\napp\tO\tapp\tO\non\tO\ton\tO\nemulator\tB-Application\temulator\tO\n.\tO\t.\tO\n\t\nRecommended\tO\tRecommended\tO\nApi\tB-Application\tApi\tO\nLevel\tO\tLevel\tO\nis\tO\tis\tO\n19\tB-Version\t19\tO\nor\tO\tor\tO\nhigher\tO\thigher\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nAVD\tB-Application\tAVD\tO\nManager\tI-Application\tManager\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nAndroid\tB-Operating_System\tAndroid\tO\nemulator\tB-Application\temulator\tO\nand\tO\tand\tO\ncreation\tO\tcreation\tO\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nStep\tO\tStep\tO\n1\tO\t1\tO\n:\tO\t:\tO\nRegister\tO\tRegister\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nAzure\tB-Application\tAzure\tO\nActive\tI-Application\tActive\tO\nDirectory\tI-Application\tDirectory\tO\ntenant\tO\ttenant\tO\n\t\nTo\tO\tTo\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nsample\tO\tsample\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nMicrosoft\tB-Organization\tMicrosoft\tO\nAzure\tB-Application\tAzure\tO\nActive\tI-Application\tActive\tO\nDirectory\tI-Application\tDirectory\tO\nTenant\tI-Application\tTenant\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\na\tO\ta\tO\ntenant\tO\ttenant\tO\nis\tO\tis\tO\nor\tO\tor\tO\nhow\tO\thow\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nget\tO\tget\tO\none\tO\tone\tO\n,\tO\t,\tO\nread\tO\tread\tO\nWhat\tO\tWhat\tO\nis\tO\tis\tO\na\tO\ta\tO\nAzure\tB-Application\tAzure\tO\nAD\tI-Application\tAD\tO\ntenant\tO\ttenant\tO\n?\tO\t?\tO\n\t\nor\tO\tor\tO\nSign\tO\tSign\tO\nup\tO\tup\tO\nfor\tO\tfor\tO\nAzure\tB-Application\tAzure\tO\nas\tO\tas\tO\nan\tO\tan\tO\norganization\tO\torganization\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\ndocs\tO\tdocs\tO\nshould\tO\tshould\tO\nget\tO\tget\tO\nyou\tO\tyou\tO\nstarted\tO\tstarted\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nway\tO\tway\tO\nto\tO\tto\tO\nusing\tO\tusing\tO\nAzure\tB-Application\tAzure\tO\nAD\tI-Application\tAD\tO\n.\tO\t.\tO\n\t\nSign\tO\tSign\tO\nin\tO\tin\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAzure\tB-Application\tAzure\tO\nmanagement\tI-Application\tmanagement\tO\nportal\tI-Application\tportal\tO\n.\tO\t.\tO\n\t\nClick\tO\tClick\tO\non\tO\ton\tO\nActive\tO\tActive\tO\nDirectory\tO\tDirectory\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nhand\tO\thand\tO\nnav\tB-User_Interface_Element\tnav\tO\n.\tO\t.\tO\n\t\nClick\tO\tClick\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\ntenant\tO\ttenant\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nregister\tO\tregister\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nClick\tO\tClick\tO\nthe\tO\tthe\tO\nApplications\tO\tApplications\tO\ntab\tB-User_Interface_Element\ttab\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ndrawer\tO\tdrawer\tO\n,\tO\t,\tO\nclick\tO\tclick\tO\nAdd\tO\tAdd\tO\n.\tO\t.\tO\n\t\nClick\tO\tClick\tO\n\"\tO\t\"\tO\nAdd\tO\tAdd\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nmy\tO\tmy\tO\norganization\tO\torganization\tO\nis\tO\tis\tO\ndeveloping\tO\tdeveloping\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nEnter\tO\tEnter\tO\na\tO\ta\tO\nfriendly\tO\tfriendly\tO\nname\tO\tname\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n\"\tO\t\"\tO\nAADGraphClient\tO\tAADGraphClient\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nselect\tO\tselect\tO\n\"\tO\t\"\tO\nNative\tO\tNative\tO\nClient\tO\tClient\tO\nApplication\tO\tApplication\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nand\tO\tand\tO\nclick\tO\tclick\tO\nnext\tO\tnext\tO\n.\tO\t.\tO\n\t\nEnter\tO\tEnter\tO\na\tO\ta\tO\nRedirect\tO\tRedirect\tO\nUri\tO\tUri\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nchoosing\tO\tchoosing\tO\nand\tO\tand\tO\nof\tO\tof\tO\nform\tO\tform\tO\nhttp://AADGraphClient\tO\thttp://AADGraphClient\tO\n.\tO\t.\tO\n\t\nNOTE\tO\tNOTE\tO\n:\tO\t:\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ncertain\tO\tcertain\tO\nplatform\tO\tplatform\tO\nspecific\tO\tspecific\tO\nfeatures\tO\tfeatures\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\nleveraged\tO\tleveraged\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nRedirect\tO\tRedirect\tO\nUri\tO\tUri\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nspecific\tO\tspecific\tO\nformats\tO\tformats\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nwill\tO\twill\tO\nadd\tO\tadd\tO\nguidance\tO\tguidance\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nsoon\tO\tsoon\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nstill\tO\tstill\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAzure\tB-Application\tAzure\tO\nportal\tO\tportal\tO\n,\tO\t,\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nConfigure\tO\tConfigure\tO\ntab\tB-User_Interface_Element\ttab\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nFind\tO\tFind\tO\nthe\tO\tthe\tO\nClient\tO\tClient\tO\nID\tO\tID\tO\nvalue\tO\tvalue\tO\nand\tO\tand\tO\ncopy\tO\tcopy\tO\nit\tO\tit\tO\naside\tO\taside\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nthis\tO\tthis\tO\nlater\tO\tlater\tO\nwhen\tO\twhen\tO\nconfiguring\tO\tconfiguring\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nPermissions\tO\tPermissions\tO\nto\tO\tto\tO\nOther\tO\tOther\tO\nApplications\tO\tApplications\tO\nconfiguration\tO\tconfiguration\tO\nsection\tO\tsection\tO\n,\tO\t,\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\n\"\tO\t\"\tO\nAccess\tO\tAccess\tO\nyour\tO\tyour\tO\norganization\tO\torganization\tO\n's\tO\t's\tO\ndirectory\tO\tdirectory\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nEnable\tO\tEnable\tO\nsign-on\tO\tsign-on\tO\nand\tO\tand\tO\nread\tO\tread\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nprofiles\tO\tprofiles\tO\n\"\tO\t\"\tO\nare\tO\tare\tO\nselected\tO\tselected\tO\nunder\tO\tunder\tO\n\"\tO\t\"\tO\nDelegated\tO\tDelegated\tO\npermissions\tO\tpermissions\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\nAzure\tB-Application\tAzure\tO\nActive\tI-Application\tActive\tO\nDirectory\tI-Application\tDirectory\tO\n.\tO\t.\tO\n\t\nSave\tO\tSave\tO\nthe\tO\tthe\tO\nconfiguration\tO\tconfiguration\tO\n.\tO\t.\tO\n\t\nStep\tO\tStep\tO\n2\tO\t2\tO\n:\tO\t:\tO\nClone\tO\tClone\tO\nor\tO\tor\tO\ndownload\tO\tdownload\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\n\t\nFrom\tO\tFrom\tO\nyour\tO\tyour\tO\nshell\tB-Application\tshell\tO\nor\tO\tor\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\ngit\tB-Code_Block\tgit\tB-Code_Block\nclone\tI-Code_Block\tclone\tI-Code_Block\nhttps://github.com/Azure-Samples/active-directory-cordova-graphapi.git\tI-Code_Block\thttps://github.com/Azure-Samples/active-directory-cordova-graphapi.git\tI-Code_Block\n\t\nStep\tO\tStep\tO\n3\tO\t3\tO\n:\tO\t:\tO\nClone\tO\tClone\tO\nor\tO\tor\tO\ndownload\tO\tdownload\tO\nAAD\tB-Application\tAAD\tO\nGraph\tI-Application\tGraph\tO\nfor\tI-Application\tfor\tO\nApache\tI-Application\tApache\tO\nCordova\tI-Application\tCordova\tO\nplugin\tO\tplugin\tO\n\t\ngit\tB-Code_Block\tgit\tB-Code_Block\nclone\tI-Code_Block\tclone\tI-Code_Block\nhttps://github.com/AzureAD/azure-activedirectory-cordova-plugin-graph.git\tI-Code_Block\thttps://github.com/AzureAD/azure-activedirectory-cordova-plugin-graph.git\tI-Code_Block\n\t\nStep\tO\tStep\tO\n4\tO\t4\tO\n:\tO\t:\tO\nCreate\tO\tCreate\tO\nnew\tO\tnew\tO\nApache\tB-Library\tApache\tO\nCordova\tI-Library\tCordova\tO\napplication\tO\tapplication\tO\n\t\ncordova\tB-Code_Block\tcordova\tB-Code_Block\ncreate\tI-Code_Block\tcreate\tI-Code_Block\nAADGraphSample\tI-Code_Block\tAADGraphSample\tI-Code_Block\n--copy-from\tI-Code_Block\t--copy-from\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nNativeClient-GraphAPI-Cordova/AADGraphClient\tI-Code_Block\tNativeClient-GraphAPI-Cordova/AADGraphClient\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n\t\ncd\tB-Code_Block\tcd\tB-Code_Block\nAADGraphSample\tI-Code_Block\tAADGraphSample\tI-Code_Block\n\t\nStep\tO\tStep\tO\n5\tO\t5\tO\n:\tO\t:\tO\nAdd\tO\tAdd\tO\nthe\tO\tthe\tO\nplatforms\tO\tplatforms\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\n\t\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nplatform\tI-Code_Block\tplatform\tI-Code_Block\nadd\tI-Code_Block\tadd\tI-Code_Block\nandroid\tI-Code_Block\tandroid\tI-Code_Block\n\t\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nplatform\tI-Code_Block\tplatform\tI-Code_Block\nadd\tI-Code_Block\tadd\tI-Code_Block\nios\tI-Code_Block\tios\tI-Code_Block\n\t\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nplatform\tI-Code_Block\tplatform\tI-Code_Block\nadd\tI-Code_Block\tadd\tI-Code_Block\nwindows\tI-Code_Block\twindows\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nIn\tO\tIn\tO\ncase\tO\tcase\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2015\tB-Version\t2015\tO\nPreview\tO\tPreview\tO\ninstalled\tO\tinstalled\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nproject\tO\tproject\tO\npackaging\tO\tpackaging\tO\nfor\tO\tfor\tO\nWindows\tB-Operating_System\tWindows\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nMSBuild\tB-Application\tMSBuild\tO\nv.14\tB-Version\tv.14\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nworkaround\tO\tworkaround\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\npatched\tO\tpatched\tO\ncordova-windows\tO\tcordova-windows\tO\nwith\tO\twith\tO\nMSBuild\tB-Application\tMSBuild\tO\nreverted\tO\treverted\tO\nto\tO\tto\tO\nv.12\tB-Version\tv.12\tO\n:\tO\t:\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nplatform\tI-Code_Block\tplatform\tI-Code_Block\nadd\tI-Code_Block\tadd\tI-Code_Block\nwindows\tI-Code_Block\twindows\tI-Code_Block\nuse\tO\tuse\tO\n\t\ncd\tB-Code_Block\tcd\tB-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n\t\ngit\tB-Code_Block\tgit\tB-Code_Block\nclone\tI-Code_Block\tclone\tI-Code_Block\n-b\tI-Code_Block\t-b\tI-Code_Block\nmsbuild14-issue\tI-Code_Block\tmsbuild14-issue\tI-Code_Block\nhttps://github.com/MSOpenTech/cordova-windows\tI-Code_Block\thttps://github.com/MSOpenTech/cordova-windows\tI-Code_Block\n\t\ncd\tB-Code_Block\tcd\tB-Code_Block\nAADGraphSample\tI-Code_Block\tAADGraphSample\tI-Code_Block\n\t\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nplatform\tI-Code_Block\tplatform\tI-Code_Block\nadd\tI-Code_Block\tadd\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n\\cordova-windows\tI-Code_Block\t\\cordova-windows\tI-Code_Block\n\t\nStep\tO\tStep\tO\n6\tO\t6\tO\n:\tO\t:\tO\nAdd\tO\tAdd\tO\nrequired\tO\trequired\tO\nplugins\tO\tplugins\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncordova\tB-Library\tcordova\tO\napp\tO\tapp\tO\n\t\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nplugin\tI-Code_Block\tplugin\tI-Code_Block\nadd\tI-Code_Block\tadd\tI-Code_Block\n../azure\tI-Code_Block\t../azure\tI-Code_Block\n-activedirectory-cordova-plugin-graph\tI-Code_Block\t-activedirectory-cordova-plugin-graph\tI-Code_Block\n\t\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nplugin\tI-Code_Block\tplugin\tI-Code_Block\nadd\tI-Code_Block\tadd\tI-Code_Block\ncordova-plugin-device\tI-Code_Block\tcordova-plugin-device\tI-Code_Block\n\t\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nplugin\tI-Code_Block\tplugin\tI-Code_Block\nadd\tI-Code_Block\tadd\tI-Code_Block\ncordova-plugin-console\tI-Code_Block\tcordova-plugin-console\tI-Code_Block\n\t\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nplugin\tI-Code_Block\tplugin\tI-Code_Block\nadd\tI-Code_Block\tadd\tI-Code_Block\ncom.ionic.keyboard\tI-Code_Block\tcom.ionic.keyboard\tI-Code_Block\n\t\nStep\tO\tStep\tO\n7\tO\t7\tO\n:\tO\t:\tO\nConfigure\tO\tConfigure\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nyour\tO\tyour\tO\nAzure\tB-Application\tAzure\tO\nActive\tI-Application\tActive\tO\nDirectory\tI-Application\tDirectory\tO\ntenant\tO\ttenant\tO\n\t\nOpen\tO\tOpen\tO\nthe\tO\tthe\tO\napp.js\tB-File_Name\tapp.js\tB-Code_Block\nfile\tO\tfile\tO\ninside\tO\tinside\tO\ncreated\tO\tcreated\tO\nAADGraphSample/www/js/\tB-Code_Block\tAADGraphSample/www/js/\tB-Code_Block\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nFind\tO\tFind\tO\nthe\tO\tthe\tO\ntenantName\tB-Library_Variable\ttenantName\tB-Code_Block\nvariable\tO\tvariable\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nTenant\tO\tTenant\tO\n(\tO\t(\tO\nAzure\tB-Application\tAzure\tO\nActive\tI-Application\tActive\tO\nDirectory\tI-Application\tDirectory\tO\n)\tO\t)\tO\nname\tO\tname\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nAzure\tB-Application\tAzure\tO\nportal\tO\tportal\tO\n.\tO\t.\tO\n\t\nFind\tO\tFind\tO\nthe\tO\tthe\tO\nauthority\tB-Library_Variable\tauthority\tB-Code_Block\nvariable\tO\tvariable\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\n'\tO\t'\tO\npart\tO\tpart\tO\nafter\tO\tafter\tO\nhttps://login.windows.net/\tB-Code_Block\thttps://login.windows.net/\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nTenant\tO\tTenant\tO\n(\tO\t(\tO\nAzure\tB-Application\tAzure\tO\nActive\tI-Application\tActive\tO\nDirectory\tI-Application\tDirectory\tO\n)\tO\t)\tO\nname\tO\tname\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nAzure\tB-Application\tAzure\tO\nportal\tO\tportal\tO\n.\tO\t.\tO\n\t\nFind\tO\tFind\tO\nthe\tO\tthe\tO\nappId\tB-Library_Variable\tappId\tB-Code_Block\nvariable\tO\tvariable\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nClient\tO\tClient\tO\nId\tO\tId\tO\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nAzure\tB-Application\tAzure\tO\nportal\tO\tportal\tO\n.\tO\t.\tO\n\t\nFind\tO\tFind\tO\nthe\tO\tthe\tO\nredirectUrl\tB-Library_Variable\tredirectUrl\tB-Code_Block\nvariable\tO\tvariable\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nredirect\tO\tredirect\tO\nUri\tO\tUri\tO\nyou\tO\tyou\tO\nregisterd\tO\tregisterd\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAzure\tB-Application\tAzure\tO\nportal\tO\tportal\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9684\tI-Code_Block\tGR_9684\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nStep\tO\tStep\tO\n8\tO\t8\tO\n:\tO\t:\tO\nBuild\tO\tBuild\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\n\t\nTo\tO\tTo\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nWindows\tB-Operating_System\tWindows\tO\nTablet/PC\tB-Device\tTablet/PC\tO\napplication\tO\tapplication\tO\nversion\tO\tversion\tO\n\t\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\nwindows\tI-Code_Block\twindows\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nDuring\tO\tDuring\tO\nfirst\tO\tfirst\tO\nrun\tO\trun\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nasked\tO\tasked\tO\nto\tO\tto\tO\nsign\tO\tsign\tO\nin\tO\tin\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ndeveloper\tO\tdeveloper\tO\nlicense\tO\tlicense\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nDeveloper\tO\tDeveloper\tO\nlicense\tO\tlicense\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nADFS/SSO\tB-Application\tADFS/SSO\tO\n\t\nTo\tO\tTo\tO\nuse\tO\tuse\tO\nADFS/SSO\tB-Application\tADFS/SSO\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\nTablet/PC\tB-Device\tTablet/PC\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npreference\tO\tpreference\tO\ninto\tO\tinto\tO\nconfig.xml\tB-File_Name\tconfig.xml\tB-Code_Block\n:\tO\t:\tO\n\t\n<preference\tB-Code_Block\t<preference\tB-Code_Block\nname=\"adal-use-corporate-network\"\tI-Code_Block\tname=\"adal-use-corporate-network\"\tI-Code_Block\nvalue=\"true\"\tI-Code_Block\tvalue=\"true\"\tI-Code_Block\n/>\tI-Code_Block\t/>\tI-Code_Block\n\t\nadal-use-corporate-network\tB-Code_Block\tadal-use-corporate-network\tB-Code_Block\nis\tO\tis\tO\nfalse\tO\tfalse\tB-Code_Block\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nadd\tO\tadd\tO\nall\tO\tall\tO\nneeded\tO\tneeded\tO\napplication\tO\tapplication\tO\ncapabilities\tO\tcapabilities\tO\nand\tO\tand\tO\ntoggle\tO\ttoggle\tO\nauthContext\tB-Library_Class\tauthContext\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nADFS/SSO\tB-Application\tADFS/SSO\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nfalse\tO\tfalse\tB-Code_Block\nand\tO\tand\tO\nback\tO\tback\tO\nlater\tO\tlater\tO\n,\tO\t,\tO\nor\tO\tor\tO\nremove\tO\tremove\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nconfig.xml\tB-File_Name\tconfig.xml\tB-Code_Block\n-\tO\t-\tO\ncall\tO\tcall\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nprepare\tI-Code_Block\tprepare\tI-Code_Block\nafter\tO\tafter\tO\nit\tO\tit\tO\nto\tO\tto\tO\napply\tO\tapply\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nnormally\tO\tnormally\tO\nuse\tO\tuse\tO\nadal-use-corporate-network\tB-Code_Block\tadal-use-corporate-network\tB-Code_Block\nas\tO\tas\tO\nit\tO\tit\tO\nadds\tO\tadds\tO\ncapabilities\tO\tcapabilities\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nprevents\tO\tprevents\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\nbeing\tO\tbeing\tO\npublished\tO\tpublished\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nWindows\tB-Application\tWindows\tO\nStore\tI-Application\tStore\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\nrun\tO\trun\tO\napplication\tO\tapplication\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\nPhone\tB-Device\tPhone\tO\n8.1\tB-Version\t8.1\tO\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\non\tO\ton\tO\nconnected\tO\tconnected\tO\ndevice\tO\tdevice\tO\n:\tO\t:\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\nwindows\tI-Code_Block\twindows\tI-Code_Block\n--device\tI-Code_Block\t--device\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n--phone\tI-Code_Block\t--phone\tI-Code_Block\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\non\tO\ton\tO\ndefault\tO\tdefault\tO\nemulator\tO\temulator\tO\n:\tO\t:\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nemulate\tI-Code_Block\temulate\tI-Code_Block\nwindows\tI-Code_Block\twindows\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n--phone\tI-Code_Block\t--phone\tI-Code_Block\n\t\nUse\tO\tUse\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\nwindows\tI-Code_Block\twindows\tI-Code_Block\n--list\tI-Code_Block\t--list\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n--phone\tI-Code_Block\t--phone\tI-Code_Block\nto\tO\tto\tO\nsee\tO\tsee\tO\nall\tO\tall\tO\navailable\tO\tavailable\tO\ntargets\tO\ttargets\tO\nand\tO\tand\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\nwindows\tI-Code_Block\twindows\tI-Code_Block\n--target\tI-Code_Block\t--target\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n<target_name>\tI-Code_Block\t<target_name>\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n--phone\tI-Code_Block\t--phone\tI-Code_Block\nto\tO\tto\tO\nrun\tO\trun\tO\napplication\tO\tapplication\tO\non\tO\ton\tO\nspecific\tO\tspecific\tO\ndevice\tO\tdevice\tO\nor\tO\tor\tO\nemulator\tB-Application\temulator\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\nwindows\tI-Code_Block\twindows\tI-Code_Block\n--target\tI-Code_Block\t--target\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nEmulator\tI-Code_Block\tEmulator\tI-Code_Block\n8.1\tI-Code_Block\t8.1\tI-Code_Block\n720P\tI-Code_Block\t720P\tI-Code_Block\n4.7\tI-Code_Block\t4.7\tI-Code_Block\ninch\tI-Code_Block\tinch\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n--phone\tI-Code_Block\t--phone\tI-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\nrun\tO\trun\tO\non\tO\ton\tO\nAndroid\tB-Operating_System\tAndroid\tO\ndevice\tO\tdevice\tO\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\non\tO\ton\tO\nconnected\tO\tconnected\tO\ndevice\tO\tdevice\tO\n:\tO\t:\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\nandroid\tI-Code_Block\tandroid\tI-Code_Block\n--device\tI-Code_Block\t--device\tI-Code_Block\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\non\tO\ton\tO\ndefault\tO\tdefault\tO\nemulator\tB-Application\temulator\tO\n:\tO\t:\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nemulate\tI-Code_Block\temulate\tI-Code_Block\nandroid\tI-Code_Block\tandroid\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\nemulator\tB-Application\temulator\tO\ninstance\tO\tinstance\tO\nusing\tO\tusing\tO\nAVD\tB-Application\tAVD\tO\nManager\tI-Application\tManager\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\nshowed\tO\tshowed\tO\nin\tO\tin\tO\nPrerequisites\tO\tPrerequisites\tO\nsection\tO\tsection\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\nandroid\tI-Code_Block\tandroid\tI-Code_Block\n--list\tI-Code_Block\t--list\tI-Code_Block\nto\tO\tto\tO\nsee\tO\tsee\tO\nall\tO\tall\tO\navailable\tO\tavailable\tO\ntargets\tO\ttargets\tO\nand\tO\tand\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\nandroid\tI-Code_Block\tandroid\tI-Code_Block\n--target\tI-Code_Block\t--target\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n<target_name>\tI-Code_Block\t<target_name>\tI-Code_Block\nto\tO\tto\tO\nrun\tO\trun\tO\napplication\tO\tapplication\tO\non\tO\ton\tO\nspecific\tO\tspecific\tO\ndevice\tO\tdevice\tO\nor\tO\tor\tO\nemulator\tB-Application\temulator\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\nandroid\tI-Code_Block\tandroid\tI-Code_Block\n--target\tI-Code_Block\t--target\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nNexus4_emulator\tI-Code_Block\tNexus4_emulator\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\nrun\tO\trun\tO\non\tO\ton\tO\niOS\tB-Operating_System\tiOS\tO\ndevice\tO\tdevice\tO\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\non\tO\ton\tO\nconnected\tO\tconnected\tO\ndevice\tO\tdevice\tO\n:\tO\t:\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\nios\tI-Code_Block\tios\tI-Code_Block\n--device\tI-Code_Block\t--device\tI-Code_Block\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\non\tO\ton\tO\ndefault\tO\tdefault\tO\nemulator\tB-Application\temulator\tO\n:\tO\t:\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nemulate\tI-Code_Block\temulate\tI-Code_Block\nios\tI-Code_Block\tios\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nios-sim\tB-Application\tios-sim\tB-Code_Block\npackage\tO\tpackage\tO\ninstalled\tO\tinstalled\tO\nto\tO\tto\tO\nrun\tO\trun\tO\non\tO\ton\tO\nemulator\tB-Application\temulator\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nPrerequisites\tO\tPrerequisites\tO\nsection\tO\tsection\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9685\tI-Code_Block\tGR_9685\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUse\tO\tUse\tO\ncordova\tB-Code_Block\tcordova\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\n--help\tI-Code_Block\t--help\tI-Code_Block\nto\tO\tto\tO\nsee\tO\tsee\tO\nadditional\tO\tadditional\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\nrun\tO\trun\tO\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/6\tO\thttps://github.com/numen31337/AKVideoImageView/issues/6\tO\n\t\nWhen\tO\tWhen\tO\nleaving\tO\tleaving\tO\nAKVideoImageView\tB-Class_Name\tAKVideoImageView\tO\nrunnin\tO\trunnin\tO\n&\tO\t&\tO\nrunnin\tO\trunnin\tO\n,\tO\t,\tO\nand\tO\tand\tO\nworse\tO\tworse\tO\nwith\tO\twith\tO\n2\tO\t2\tO\nor\tO\tor\tO\n3\tO\t3\tO\ndifferents\tO\tdifferents\tO\nAKVideoImageView\tB-Class_Name\tAKVideoImageView\tO\nlooping\tO\tlooping\tO\non\tO\ton\tO\na\tO\ta\tO\nvideo\tB-User_Interface_Element\tvideo\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nused\tO\tused\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nincreasing\tO\tincreasing\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/6\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/6\tO\n\t\nUsing\tO\tUsing\tO\nCommonJS\tB-Application\tCommonJS\tO\n,\tO\t,\tO\nusers\tO\tusers\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrequire\tO\trequire\tO\nwebpack-sandboxed\tB-Application\twebpack-sandboxed\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9084\tI-Code_Block\tGR_9084\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nimprove\tO\timprove\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\n's\tO\t's\tO\nman\tO\tman\tO\nfile\tO\tfile\tO\nexports\tB-File_Name\texports\tB-Code_Block\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\nfor\tO\tfor\tO\ncompatibility\tO\tcompatibility\tO\nreasons\tO\treasons\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/4\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/4\tO\n\t\nFixed\tO\tFixed\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncommit\tO\tcommit\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/13\tO\thttps://github.com/contributte/logging/issues/13\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nenvironments\tO\tenvironments\tO\n:\tO\t:\tO\n\t\nlocalhost\tO\tlocalhost\tO\n-\tO\t-\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\npush\tO\tpush\tO\nto\tO\tto\tO\nsentry\tB-Application\tsentry\tO\n\t\nCI\tO\tCI\tO\n-\tO\t-\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlog\tO\tlog\tO\nto\tO\tto\tO\nsentry\tB-Application\tsentry\tO\n\t\nstaging\tO\tstaging\tO\n-\tO\t-\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlog\tO\tlog\tO\nto\tO\tto\tO\nstaging\tO\tstaging\tO\nsentry\tB-Application\tsentry\tO\n\t\nproduction\tO\tproduction\tO\n-\tO\t-\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlog\tO\tlog\tO\nto\tO\tto\tO\nproduction\tO\tproduction\tO\nsentry\tB-Application\tsentry\tO\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nCI\tO\tCI\tO\nand\tO\tand\tO\nlocalhost\tO\tlocalhost\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\ndisable\tO\tdisable\tO\nsentry\tB-Application\tsentry\tO\nextension\tO\textension\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nit\tO\tit\tO\nthrows\tO\tthrows\tO\nexception\tB-Library_Class\texception\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nprovide\tO\tprovide\tO\nNULL\tO\tNULL\tO\nin\tO\tin\tO\nDSN\tO\tDSN\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\njust\tO\tjust\tO\nparameters\tO\tparameters\tO\nsections\tO\tsections\tO\nin\tO\tin\tO\nconfi.local.neon\tB-File_Name\tconfi.local.neon\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/35\tO\thttps://github.com/smirarab/pasta/issues/35\tO\n\t\nHey\tO\tHey\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nforward\tO\tforward\tO\nto\tO\tto\tO\nseeing\tO\tseeing\tO\nif\tO\tif\tO\npasta\tB-Application\tpasta\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nout\tO\tout\tO\nsome\tO\tsome\tO\noptions\tO\toptions\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\none\tO\tone\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\npasta\tB-Code_Block\tpasta\tB-Code_Block\n--num_cpus\tI-Code_Block\t--num_cpus\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\n-i\tI-Code_Block\t-i\tI-Code_Block\nelements.fasta\tI-Code_Block\telements.fasta\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_31262\tI-Code_Block\tGR_31262\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNot\tO\tNot\tO\nnecessary\tO\tnecessary\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ntangentmonger/twitterknitter\tO\ttangentmonger/twitterknitter\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/tangentmonger/twitterknitter/issues/2\tO\thttps://github.com/tangentmonger/twitterknitter/issues/2\tO\n\t\nPresently\tO\tPresently\tO\ntweets\tO\ttweets\tO\nare\tO\tare\tO\naccessed\tO\taccessed\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\n1980s\tO\t1980s\tO\nstyle\tO\tstyle\tO\ntext\tO\ttext\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nexhibition\tO\texhibition\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nGUI\tO\tGUI\tO\n.\tO\t.\tO\n\t\nFeatures\tO\tFeatures\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\n:\tO\t:\tO\n\t\nsend\tO\tsend\tO\na\tO\ta\tO\ntest\tO\ttest\tO\npattern\tO\tpattern\tO\n\t\nenter\tO\tenter\tO\narbitrary\tO\tarbitrary\tO\ntext\tB-User_Interface_Element\ttext\tO\n\t\nselect\tO\tselect\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nselect\tO\tselect\tO\na\tO\ta\tO\ntweet\tO\ttweet\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nhashtag\tO\thashtag\tO\n(\tO\t(\tO\nif\tO\tif\tO\nwe\tO\twe\tO\n're\tO\t're\tO\nstill\tO\tstill\tO\ndoing\tO\tdoing\tO\nknitted\tO\tknitted\tO\ntweets\tO\ttweets\tO\n)\tO\t)\tO\n\t\n..\tO\t..\tO\n.\tO\t.\tO\netc\tO\tetc\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLanceKnight/WonderConverter\tO\tLanceKnight/WonderConverter\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LanceKnight/WonderConverter/issues/2\tO\thttps://github.com/LanceKnight/WonderConverter/issues/2\tO\n\t\nadd\tO\tadd\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nfor\tO\tfor\tO\nper\tO\tper\tO\nbox\tB-User_Interface_Element\tbox\tO\n4\tO\t4\tO\nfix\tO\tfix\tO\nbug\tO\tbug\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nclick\tO\tclick\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n8\tO\t8\tO\n,\tO\t,\tO\nall\tO\tall\tO\ncolored\tO\tcolored\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nbecome\tO\tbecome\tO\nwhite\tO\twhite\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkohnakagawa/particle\tO\tkohnakagawa/particle\tO\n-drawing\tO\t-drawing\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/kohnakagawa/particle-drawing\tO\thttps://github.com/kohnakagawa/particle-drawing\tO\n\t\n\t\nparticle-drawing\tO\tparticle-drawing\tO\nMy\tO\tMy\tO\nvisualization\tO\tvisualization\tO\ntools\tO\ttools\tO\nfor\tO\tfor\tO\nparticle\tO\tparticle\tO\nsimulations\tO\tsimulations\tO\n(\tO\t(\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nMolecular\tO\tMolecular\tO\nDynamics\tO\tDynamics\tO\nsimulations\tO\tsimulations\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRequirements\tO\tRequirements\tO\n\t\nC++11\tB-Language\tC++11\tO\ncompiler\tB-Application\tcompiler\tO\n\t\nfreeglut\tB-Library\tfreeglut\tO\n\t\nlibjpeg\tB-Library\tlibjpeg\tO\n\t\nGLEW\tB-Library\tGLEW\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\n#+BEGIN_SRC\tB-Code_Block\t#+BEGIN_SRC\tO\nbash\tI-Code_Block\tbash\tO\n$\tI-Code_Block\t$\tO\nmake\tI-Code_Block\tmake\tO\n#+END_SRC\tI-Code_Block\t#+END_SRC\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark/issues/19\tO\thttps://github.com/ben-eb/metalsmith-remark/issues/19\tO\n\t\nOkay\tO\tOkay\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nclose\tO\tclose\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ngreenkeeper\tB-Application\tgreenkeeper\tO\nPR\tO\tPR\tO\n.\tO\t.\tO\n\t\n👍\tO\t👍\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndhrrgn/codeigniter\tO\tdhrrgn/codeigniter\tO\n-uhoh\tO\t-uhoh\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dhrrgn/codeigniter-uhoh/issues/5\tO\thttps://github.com/dhrrgn/codeigniter-uhoh/issues/5\tO\n\t\nIgnore\tO\tIgnore\tO\nme\tO\tme\tO\n,\tO\t,\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\npull\tO\tpull\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nan\tO\tan\tO\nupdated\tO\tupdated\tO\none\tO\tone\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nchange\tO\tchange\tO\nalready\tO\talready\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nonly\tO\tonly\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ngrab\tO\tgrab\tO\nthe\tO\tthe\tO\n.zip\tB-File_Type\t.zip\tO\nfrom\tO\tfrom\tO\nDownloads\tB-File_Name\tDownloads\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\nout\tO\tout\tO\nof\tO\tof\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/10\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/10\tO\n\t\n\t\nCoverage\tO\tCoverage\tO\ndecreased\tO\tdecreased\tO\n(\tO\t(\tO\n-0.3\tO\t-0.3\tO\n%\tO\t%\tO\n)\tO\t)\tO\nto\tO\tto\tO\n87.081\tO\t87.081\tO\n%\tO\t%\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\n4c22c5d1b286e0dfbde81ac2039399e7632189b5\tO\t4c22c5d1b286e0dfbde81ac2039399e7632189b5\tO\non\tO\ton\tO\nupgrade-deps-7-7-17\tO\tupgrade-deps-7-7-17\tO\ninto\tO\tinto\tO\n6e613dbca9d5e2731097ffc1e0d277df94129bf1\tO\t6e613dbca9d5e2731097ffc1e0d277df94129bf1\tO\non\tO\ton\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/17\tO\thttps://github.com/mapbox/tile-count/issues/17\tO\n\t\nGetting\tO\tGetting\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nkll\tB-Code_Block\tkll\tB-Code_Block\nentirely\tO\tentirely\tO\n(\tO\t(\tO\nas\tO\tas\tO\nin\tO\tin\tO\n1793cf724b71e\tO\t1793cf724b71e\tO\n)\tO\t)\tO\nlets\tO\tlets\tO\nit\tO\tit\tO\nget\tO\tget\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\npass\tO\tpass\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ntiles\tO\ttiles\tO\ntoo\tO\ttoo\tO\ndark\tO\tdark\tO\nas\tO\tas\tO\nseen\tO\tseen\tO\nearlier\tO\tearlier\tO\ntoday\tO\ttoday\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nstepheUp/VideoScanZXingWinRT\tO\tstepheUp/VideoScanZXingWinRT\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/stepheUp/VideoScanZXingWinRT\tO\thttps://github.com/stepheUp/VideoScanZXingWinRT\tO\n\t\nVideoScanZXingWinRT\tB-Library\tVideoScanZXingWinRT\tO\n\t\nRealtime\tO\tRealtime\tO\nbarcode\tO\tbarcode\tO\nand\tO\tand\tO\nQRCode\tO\tQRCode\tO\nscanner\tO\tscanner\tO\nfor\tO\tfor\tO\nWindows\tB-Operating_System\tWindows\tO\nPhone\tB-Device\tPhone\tO\n8.1\tB-Version\t8.1\tO\n(\tO\t(\tO\nWinRT\tB-Operating_System\tWinRT\tO\n)\tO\t)\tO\nand\tO\tand\tO\nWindows\tB-Operating_System\tWindows\tO\n10\tB-Version\t10\tO\nusing\tO\tusing\tO\nZXing\tB-Library\tZXing\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nprojet\tO\tprojet\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\ncall\tO\tcall\tO\n1\tO\t1\tO\nmethod\tO\tmethod\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\nSample\tO\tSample\tO\nApp\tO\tApp\tO\nproject\tO\tproject\tO\nprovided\tO\tprovided\tO\nas\tO\tas\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nlib\tO\tlib\tO\nis\tO\tis\tO\noptimized\tO\toptimized\tO\nfor\tO\tfor\tO\ndevices\tO\tdevices\tO\nwith\tO\twith\tO\nautofocus\tO\tautofocus\tO\ncapabilities\tO\tcapabilities\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nfind\tO\tfind\tO\n\t\na\tO\ta\tO\nsample\tO\tsample\tO\n+\tO\t+\tO\na\tO\ta\tO\nlib\tO\tlib\tO\nfor\tO\tfor\tO\nWindows\tB-Operating_System\tWindows\tO\nPhone\tB-Device\tPhone\tO\n8.1\tB-Version\t8.1\tO\nWinRT\tB-Operating_System\tWinRT\tO\n\t\na\tO\ta\tO\nsample\tO\tsample\tO\n+\tO\t+\tO\na\tO\ta\tO\nlib\tO\tlib\tO\nfor\tO\tfor\tO\nWindows\tB-Operating_System\tWindows\tO\n10\tB-Version\t10\tO\n(\tO\t(\tO\ntested\tO\ttested\tO\non\tO\ton\tO\nLumia\tB-Device\tLumia\tO\n950\tB-Version\t950\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nM1sterDonut/hello\tO\tM1sterDonut/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/M1sterDonut/hello-world/issues/1\tO\thttps://github.com/M1sterDonut/hello-world/issues/1\tO\n\t\nI\tO\tI\tO\nadded\tO\tadded\tO\nmore\tO\tmore\tO\ntext\tO\ttext\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nbranch\tO\tbranch\tO\nlooks\tO\tlooks\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nmaster\tO\tmaster\tO\n-\tO\t-\tO\nno\tO\tno\tO\nbig\tO\tbig\tO\ndeal\tO\tdeal\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nharshnarang8/AcaConnectFour\tO\tharshnarang8/AcaConnectFour\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/harshnarang8/AcaConnectFour/issues/3\tO\thttps://github.com/harshnarang8/AcaConnectFour/issues/3\tO\n\t\nTree\tB-Data_Structure\tTree\tO\nis\tO\tis\tO\ncreated\tO\tcreated\tO\nminimax\tB-Algorithm\tminimax\tO\nimplementation\tO\timplementation\tO\nleft\tO\tleft\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2/issues/6\tO\thttps://github.com/thehyve/puppet-i2b2/issues/6\tO\n\t\nPlease\tO\tPlease\tO\nreview\tO\treview\tO\n:-)\tO\t:-)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/16\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/16\tO\n\t\nLGTM\tO\tLGTM\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/31\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/31\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nimages\tB-User_Interface_Element\timages\tO\nthat\tO\tthat\tO\ncame\tO\tcame\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nanything\tO\tanything\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nimmediately\tO\timmediately\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nS7\tB-Device\tS7\tO\nedge\tB-Version\tedge\tO\nand\tO\tand\tO\nit\tO\tit\tO\ncontinuously\tO\tcontinuously\tO\ncrashes\tO\tcrashes\tO\nafter\tO\tafter\tO\nopening\tO\topening\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n'\tO\t'\tO\nAR\tO\tAR\tO\nhandheld\tO\thandheld\tO\ntemplate\tO\ttemplate\tO\n'\tO\t'\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nso\tO\tso\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nit\tO\tit\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n:(\tO\t:(\tO\n\t\nBelow\tO\tBelow\tO\nsome\tO\tsome\tO\nscreenshots\tB-User_Interface_Element\tscreenshots\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nsettings\tO\tsettings\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nhelp\tO\thelp\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/34\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/34\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nCloudARPin\tB-Application\tCloudARPin\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nGoogleARCoreServices\tB-Application\tGoogleARCoreServices\tO\nplugin\tI-Application\tplugin\tO\nis\tO\tis\tO\nmissing\tO\tmissing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\nlinks\tO\tlinks\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nrepo\tO\trepo\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfind\tO\tfind\tO\nmyself\tO\tmyself\tO\nat\tO\tat\tO\na\tO\ta\tO\n404\tB-Error_Name\t404\tO\n.\tO\t.\tO\n\t\nWhere\tO\tWhere\tO\nmight\tO\tmight\tO\nI\tO\tI\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\navailable\tO\tavailable\tO\ndownload\tO\tdownload\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/26\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/26\tO\n\t\nClose\tO\tClose\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nlack\tO\tlack\tO\nof\tO\tof\tO\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nreopen\tO\treopen\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nstill\tO\tstill\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nHowellWang/Titanic_Kaggle\tO\tHowellWang/Titanic_Kaggle\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/HowellWang/Titanic_Kaggle\tO\thttps://github.com/HowellWang/Titanic_Kaggle\tO\n\t\nTitanic_Kaggle\tO\tTitanic_Kaggle\tO\n\t\nAfter\tO\tAfter\tO\nthe\tO\tthe\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\npreparing\tO\tpreparing\tO\n,\tO\t,\tO\nwe\tO\twe\tO\ngot\tO\tgot\tO\n94.5\tO\t94.5\tO\n%\tO\t%\tO\naccuracy\tO\taccuracy\tO\nrate\tO\trate\tO\non\tO\ton\tO\ntest\tO\ttest\tO\ndata\tO\tdata\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/27\tO\thttps://github.com/demigor/lex.db/issues/27\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nlex.db\tB-Application\tlex.db\tO\nin\tO\tin\tO\nwindows\tB-Operating_System\twindows\tO\nphone\tI-Operating_System\tphone\tO\n8.1\tB-Version\t8.1\tO\nuniversal\tO\tuniversal\tO\napp\tO\tapp\tO\nwith\tO\twith\tO\nlatest\tO\tlatest\tO\nnuget\tB-Application\tnuget\tO\navailable\tO\tavailable\tO\nversion\tO\tversion\tO\n1.2.2\tB-Version\t1.2.2\tO\nSimple\tO\tSimple\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nSave\tO\tSave\tO\nthrows\tO\tthrows\tO\nexeption\tB-Library_Class\texeption\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_23903\tI-Code_Block\tGR_23903\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_23904\tI-Code_Block\tGR_23904\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSample\tO\tSample\tO\nproject\tO\tproject\tO\n-\tO\t-\tO\nhttps://yadi.sk/d/g8Wf_nL1fxvP5\tO\thttps://yadi.sk/d/g8Wf_nL1fxvP5\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/24\tO\thttps://github.com/koding/kd-atom/issues/24\tO\n\t\nit\tO\tit\tO\n's\tO\t's\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\na\tO\ta\tO\nhacky\tO\thacky\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nreason\tO\treason\tO\nis\tO\tis\tO\ntree-view\tO\ttree-view\tO\nfile\tO\tfile\tO\nicon\tO\ticon\tO\nservice\tO\tservice\tO\nignores\tO\tignores\tO\ndirectories\tO\tdirectories\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/1\tO\thttps://github.com/zeroepoch/plotbitrate/issues/1\tO\n\t\nClosing\tO\tClosing\tO\nout\tO\tout\tO\nold\tO\told\tO\nissues\tO\tissues\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndbarrosop/gobgp\tO\tdbarrosop/gobgp\tO\n-grpc-demo\tO\t-grpc-demo\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dbarrosop/gobgp-grpc-demo/issues/1\tO\thttps://github.com/dbarrosop/gobgp-grpc-demo/issues/1\tO\n\t\nHi\tO\tHi\tO\nDavid\tB-User_Name\tDavid\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nwork\tO\twork\tO\n(\tO\t(\tO\nnearly\tO\tnearly\tO\nexactly\tO\texactly\tO\n1\tO\t1\tO\nyear\tO\tyear\tO\non\tO\ton\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\nfollow\tO\tfollow\tO\nyour\tO\tyour\tO\ninstructions\tO\tinstructions\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nwhen\tO\twhen\tO\nadding\tO\tadding\tO\na\tO\ta\tO\npath\tO\tpath\tO\n:\tO\t:\tO\n\t\n`root\tB-Code_Block\t`root\tO\n@ce5b416deb2d\tI-Code_Block\t@ce5b416deb2d\tO\n:/gobgprest\tI-Code_Block\t:/gobgprest\tO\n#\tI-Code_Block\t#\tO\npython\tI-Code_Block\tpython\tO\nadd_path.py\tI-Code_Block\tadd_path.py\tO\n10.0.123.100\tI-Code_Block\t10.0.123.100\tO\n50051\tI-Code_Block\t50051\tO\n2001:db8:666::/64\tI-Code_Block\t2001:db8:666::/64\tO\n2001:db8:123::300\tI-Code_Block\t2001:db8:123::300\tO\n65000:1\tI-Code_Block\t65000:1\tO\n110\tI-Code_Block\t110\tO\n\t\nTraceback\tB-Output_Block\tTraceback\tO\n(\tI-Output_Block\t(\tO\nmost\tI-Output_Block\tmost\tO\nrecent\tI-Output_Block\trecent\tO\ncall\tI-Output_Block\tcall\tO\nlast\tI-Output_Block\tlast\tO\n)\tI-Output_Block\t)\tO\n:\tB-Output_Block\t:\tO\nFile\tI-Output_Block\tFile\tO\n\"\tI-Output_Block\t\"\tO\nadd_path.py\tI-Output_Block\tadd_path.py\tO\n\"\tI-Output_Block\t\"\tO\n,\tI-Output_Block\t,\tO\nline\tI-Output_Block\tline\tO\n88\tI-Output_Block\t88\tO\n,\tI-Output_Block\t,\tO\nin\tI-Output_Block\tin\tO\nrun(gobgp,\tI-Output_Block\trun(gobgp,\tO\nport,\tI-Output_Block\tport,\tO\nprefix,\tI-Output_Block\tprefix,\tO\nnexthop,\tI-Output_Block\tnexthop,\tO\ncommunity,\tI-Output_Block\tcommunity,\tO\nmed)\tI-Output_Block\tmed)\tO\nFile\tI-Output_Block\tFile\tO\n\"\tI-Output_Block\t\"\tO\nadd_path.py\tI-Output_Block\tadd_path.py\tO\n\"\tI-Output_Block\t\"\tO\n,\tI-Output_Block\t,\tO\nline\tI-Output_Block\tline\tO\n73\tI-Output_Block\t73\tO\n,\tI-Output_Block\t,\tO\nin\tI-Output_Block\tin\tO\nrun\tI-Output_Block\trun\tO\ncreate_path(channel,\tI-Output_Block\tcreate_path(channel,\tO\nprefix,\tI-Output_Block\tprefix,\tO\nnexthop,\tI-Output_Block\tnexthop,\tO\ncommunity,\tI-Output_Block\tcommunity,\tO\nmed)\tI-Output_Block\tmed)\tO\nFile\tI-Output_Block\tFile\tO\n\"\tI-Output_Block\t\"\tO\nadd_path.py\tI-Output_Block\tadd_path.py\tO\n\"\tI-Output_Block\t\"\tO\n,\tI-Output_Block\t,\tO\nline\tI-Output_Block\tline\tO\n57\tI-Output_Block\t57\tO\n,\tI-Output_Block\t,\tO\nin\tI-Output_Block\tin\tO\ncreate_path\tI-Output_Block\tcreate_path\tO\n_call_grpc\tI-Output_Block\t_call_grpc\tO\n(\tI-Output_Block\t(\tO\nchannel\tI-Output_Block\tchannel\tO\n,\tI-Output_Block\t,\tO\n\"\tI-Output_Block\t\"\tO\nAddPath\tI-Output_Block\tAddPath\tO\n\"\tI-Output_Block\t\"\tO\n,\tI-Output_Block\t,\tO\n\"\tI-Output_Block\t\"\tO\nAddPathRequest\tI-Output_Block\tAddPathRequest\tO\n\"\tI-Output_Block\t\"\tO\n,\tI-Output_Block\t,\tO\n**\tI-Output_Block\t**\tO\nkwargs\tI-Output_Block\tkwargs\tO\n)\tI-Output_Block\t)\tO\nFile\tB-Output_Block\tFile\tO\n\"\tI-Output_Block\t\"\tO\nadd_path.py\tI-Output_Block\tadd_path.py\tO\n\"\tI-Output_Block\t\"\tO\n,\tI-Output_Block\t,\tO\nline\tI-Output_Block\tline\tO\n17\tI-Output_Block\t17\tO\n,\tI-Output_Block\t,\tO\nin\tI-Output_Block\tin\tO\n_call_grpc\tI-Output_Block\t_call_grpc\tO\nreturn\tI-Output_Block\treturn\tO\napi(request(**kwargs)\tI-Output_Block\tapi(request(**kwargs)\tO\n,\tI-Output_Block\t,\tO\n_TIMEOUT_SECONDS\tI-Output_Block\t_TIMEOUT_SECONDS\tO\n)\tI-Output_Block\t)\tO\nFile\tB-Output_Block\tFile\tO\n\"\tI-Output_Block\t\"\tO\n/usr/local/lib/python2.7/dist-packages/grpc/beta/_client_adaptations.py\tI-Output_Block\t/usr/local/lib/python2.7/dist-packages/grpc/beta/_client_adaptations.py\tO\n\"\tI-Output_Block\t\"\tO\n,\tI-Output_Block\t,\tO\nline\tI-Output_Block\tline\tO\n309\tI-Output_Block\t309\tO\n,\tI-Output_Block\t,\tO\nin\tI-Output_Block\tin\tO\ncall\tI-Output_Block\tcall\tO\nself._request_serializer\tI-Output_Block\tself._request_serializer\tO\n,\tI-Output_Block\t,\tO\nself._response_deserializer\tI-Output_Block\tself._response_deserializer\tO\n)\tI-Output_Block\t)\tO\nFile\tI-Output_Block\tFile\tO\n\"\tI-Output_Block\t\"\tO\n/usr/local/lib/python2.7/dist-packages/grpc/beta/_client_adaptations.py\tI-Output_Block\t/usr/local/lib/python2.7/dist-packages/grpc/beta/_client_adaptations.py\tO\n\"\tI-Output_Block\t\"\tO\n,\tI-Output_Block\t,\tO\nline\tI-Output_Block\tline\tO\n195\tI-Output_Block\t195\tO\n,\tI-Output_Block\t,\tO\nin\tI-Output_Block\tin\tO\n_blocking_unary_unary\tI-Output_Block\t_blocking_unary_unary\tO\nraise\tI-Output_Block\traise\tO\n_abortion_error(rpc_error_call)\tI-Output_Block\t_abortion_error(rpc_error_call)\tO\ngrpc.framework.interfaces.face.face.RemoteError\tI-Output_Block\tgrpc.framework.interfaces.face.face.RemoteError\tO\n:\tI-Output_Block\t:\tO\nRemoteError\tI-Output_Block\tRemoteError\tO\n(\tI-Output_Block\t(\tO\ncode\tI-Output_Block\tcode\tO\n=\tI-Output_Block\t=\tO\nStatusCode.UNKNOWN\tI-Output_Block\tStatusCode.UNKNOWN\tO\n,\tI-Output_Block\t,\tO\ndetails\tI-Output_Block\tdetails\tO\n=\tI-Output_Block\t=\tO\n\"\tI-Output_Block\t\"\tO\nunknown\tI-Output_Block\tunknown\tO\nroute\tI-Output_Block\troute\tO\nfamily\tI-Output_Block\tfamily\tO\n.\tO\t.\tO\n\t\nAFI\tB-Output_Block\tAFI\tO\n:\tI-Output_Block\t:\tO\n0\tI-Output_Block\t0\tO\n,\tI-Output_Block\t,\tO\nSAFI\tI-Output_Block\tSAFI\tO\n:\tI-Output_Block\t:\tO\n0\tI-Output_Block\t0\tO\n\"\tI-Output_Block\t\"\tO\n)\tB-Output_Block\t)\tO\n`\tI-Output_Block\t`\tO\n\t\nThis\tO\tThis\tO\nto\tO\tto\tO\nme\tO\tme\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\ngobgp\tB-Application\tgobgp\tO\nsystem\tO\tsystem\tO\nis\tO\tis\tO\nexpecting\tO\texpecting\tO\nthe\tO\tthe\tO\nAFI/SAFI\tB-Variable_Name\tAFI/SAFI\tO\nin\tO\tin\tO\na\tO\ta\tO\nformat\tO\tformat\tO\nother\tO\tother\tO\nthat\tO\tthat\tO\nwhat\tO\twhat\tO\nwe\tO\twe\tO\n're\tO\t're\tO\npassing\tO\tpassing\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nkwargs\tB-Library_Variable\tkwargs\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\n100%\tO\t100%\tO\nsure\tO\tsure\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nperhaps\tO\tperhaps\tO\nit\tO\tit\tO\n's\tO\t's\tO\nexpecting\tO\texpecting\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\nintegers\tB-Data_Type\tintegers\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncombined\tO\tcombined\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nbitwise\tO\tbitwise\tO\noperation\tO\toperation\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\non\tO\ton\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nPython\tB-Language\tPython\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nvery\tO\tvery\tO\nnaive\tO\tnaive\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\ncontainters\tO\tcontainters\tO\nyou\tO\tyou\tO\nprovide\tO\tprovide\tO\nare\tO\tare\tO\nbuilt\tO\tbuilt\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\ngoBGP\tB-Application\tgoBGP\tO\nhas\tO\thas\tO\nmoved\tO\tmoved\tO\non\tO\ton\tO\nslightly\tO\tslightly\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nnow\tO\tnow\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nunexpected\tO\tunexpected\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nappreciated\tO\tappreciated\tO\n,\tO\t,\tO\nThanks\tO\tThanks\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/4\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/4\tO\n\t\nEspn\tB-Organization\tEspn\tO\npbp\tO\tpbp\tO\ndata\tO\tdata\tO\nmarks\tO\tmarks\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\ndrive\tO\tdrive\tO\nends\tO\tends\tO\n,\tO\t,\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\nverify\tO\tverify\tO\ndrive\tO\tdrive\tO\nis\tO\tis\tO\nover\tO\tover\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/27\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/27\tO\n\t\nThe\tO\tThe\tO\ngemspec\tB-File_Type\tgemspec\tO\nfile\tO\tfile\tO\nlocks\tO\tlocks\tO\nactiverecord\tB-Library\tactiverecord\tB-Code_Block\nat\tO\tat\tO\n4.x\tB-Version\t4.x\tB-Code_Block\nbut\tO\tbut\tO\nrails\tB-Library\trails\tO\n5\tB-Version\t5\tO\nuses\tO\tuses\tO\n5.x\tB-Version\t5.x\tB-Code_Block\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nplans\tO\tplans\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ngem\tO\tgem\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nrails\tB-Library\trails\tO\n5\tB-Version\t5\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\nbecomes\tO\tbecomes\tO\nstable\tO\tstable\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwncc/live\tO\twncc/live\tO\n-gesture-recognition\tO\t-gesture-recognition\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/wncc/live-gesture-recognition\tO\thttps://github.com/wncc/live-gesture-recognition\tO\n\t\n!!!\tO\t!!!\tO\n!\tO\t!\tO\n\t\nProject\tO\tProject\tO\nComplete\tO\tComplete\tO\n!!\tO\t!!\tO\n!\tO\t!\tO\n\t\n*****\tO\t*****\tO\n-------------------------\tO\t-------------------------\tO\n-\tO\t-\tO\n*****\tO\t*****\tO\n\t\nAll\tO\tAll\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nlive-gesture-recognition\tO\tlive-gesture-recognition\tO\n'\tO\t'\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nread\tO\tread\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\n'\tO\t'\tO\nreadme.txt\tB-File_Name\treadme.txt\tO\n'\tO\t'\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nUser\tO\tUser\tO\nManual\tO\tManual\tO\n'\tO\t'\tO\nmanual.pdf\tB-File_Name\tmanual.pdf\tO\n'\tO\t'\tO\nbefore\tO\tbefore\tO\nbeginning\tO\tbeginning\tO\n.\tO\t.\tO\n\t\n*****\tO\t*****\tO\n-------------------------\tO\t-------------------------\tO\n-\tO\t-\tO\n*****\tO\t*****\tO\n\t\nDownload\tO\tDownload\tO\nthe\tO\tthe\tO\n.tar.gz\tB-File_Type\t.tar.gz\tO\nor\tO\tor\tO\n.zip\tB-File_Type\t.zip\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nuncompress\tO\tuncompress\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nreport\tO\treport\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nmanual\tO\tmanual\tO\n.\tO\t.\tO\n\t\nImplementing\tO\tImplementing\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nsimple\tO\tsimple\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nsometimes\tO\tsometimes\tO\nexecutable\tO\texecutable\tO\nfiles\tO\tfiles\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\ncorrectly\tO\tcorrectly\tO\n,\tO\t,\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncompiled\tO\tcompiled\tO\nbefore\tO\tbefore\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npackages\tO\tpackages\tO\nrequired\tO\trequired\tO\nfor\tO\tfor\tO\ncompiling\tO\tcompiling\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nare\tO\tare\tO\ngcc\tB-Library\tgcc\tO\n,\tO\t,\tO\nopencv-doc\tB-Library\topencv-doc\tO\n,\tO\t,\tO\nlibcv2.1\tB-Library\tlibcv2.1\tO\n,\tO\t,\tO\nlinhighgui2.1\tB-Library\tlinhighgui2.1\tO\n,\tO\t,\tO\nlibcvaux2.1\tB-Library\tlibcvaux2.1\tO\n,\tO\t,\tO\nlibcv-dev\tB-Library\tlibcv-dev\tO\n,\tO\t,\tO\nlibcvaux-dev\tB-Library\tlibcvaux-dev\tO\n,\tO\t,\tO\nlinhighgui-dev\tB-Library\tlinhighgui-dev\tO\n,\tO\t,\tO\nlibx11-dev\tB-Library\tlibx11-dev\tO\n,\tO\t,\tO\nand\tO\tand\tO\nlibxtst-dev\tB-Library\tlibxtst-dev\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\npackages\tO\tpackages\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncollectively\tO\tcollectively\tO\ninstalled\tO\tinstalled\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nSynaptic\tB-Application\tSynaptic\tO\nPackage\tI-Application\tPackage\tO\nManager\tI-Application\tManager\tO\nor\tO\tor\tO\nusing\tO\tusing\tO\nindividual\tO\tindividual\tO\nsystem\tO\tsystem\tO\ncommands\tO\tcommands\tO\n:\tO\t:\tO\n\t\n$\tB-Code_Block\t$\tO\nsudo\tI-Code_Block\tsudo\tO\napt-get\tI-Code_Block\tapt-get\tO\ninstall\tI-Code_Block\tinstall\tO\n[\tB-Code_Block\t[\tO\npackage-name\tI-Code_Block\tpackage-name\tO\n]\tI-Code_Block\t]\tO\n\t\nAfter\tO\tAfter\tO\ninstalling\tO\tinstalling\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\npackages\tO\tpackages\tO\ncompile\tO\tcompile\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n-\tO\t-\tO\ninstall.cpp\tB-File_Name\tinstall.cpp\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n\t\n$g++\tB-Code_Block\t$g++\tO\ninstall.cpp\tI-Code_Block\tinstall.cpp\tO\n-o\tI-Code_Block\t-o\tO\ninstall\tI-Code_Block\tinstall\tO\n\t\nRunning\tO\tRunning\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ninstall\tO\tinstall\tO\ninturn\tO\tinturn\tO\ncompiles\tO\tcompiles\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nrequired\tO\trequired\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nprovided\tO\tprovided\tO\nthe\tO\tthe\tO\nrequired\tO\trequired\tO\nlibraries\tO\tlibraries\tO\nare\tO\tare\tO\ninstalled\tO\tinstalled\tO\ncorrectly\tO\tcorrectly\tO\nand\tO\tand\tO\nup-to-date\tO\tup-to-date\tO\n.\tO\t.\tO\n\t\n$\tB-Code_Block\t$\tO\n./install\tI-Code_Block\t./install\tO\n\t\n****\tO\t****\tO\nIf\tO\tIf\tO\ninstall\tO\tinstall\tO\nruns\tO\truns\tO\ncorrectly\tO\tcorrectly\tO\nyou\tO\tyou\tO\ndont\tO\tdont\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n***\tO\t***\tO\nAltenetively\tO\tAltenetively\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncompile\tO\tcompile\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nindividually\tO\tindividually\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n$\tB-Code_Block\t$\tO\ng++\tI-Code_Block\tg++\tO\npkg-config\tI-Code_Block\tpkg-config\tB-Code_Block\nopencv\tI-Code_Block\topencv\tI-Code_Block\n--cflags\tI-Code_Block\t--cflags\tI-Code_Block\n[filename].cpp\tI-Code_Block\t[filename].cpp\tO\n-o\tI-Code_Block\t-o\tO\n[\tB-Code_Block\t[\tO\nfilename\tI-Code_Block\tfilename\tO\n]\tI-Code_Block\t]\tO\npkg-config\tB-Code_Block\tpkg-config\tB-Code_Block\nopencv\tI-Code_Block\topencv\tI-Code_Block\n--libs\tI-Code_Block\t--libs\tI-Code_Block\n-lX11\tI-Code_Block\t-lX11\tO\n-lXtst\tI-Code_Block\t-lXtst\tO\nThe\tO\tThe\tO\nfiles\tO\tfiles\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncompiled\tO\tcompiled\tO\nare\tO\tare\tO\n:\tO\t:\tO\ninitialize.cpp\tB-File_Name\tinitialize.cpp\tO\n,\tO\t,\tO\nmain.cpp\tB-File_Name\tmain.cpp\tO\n,\tO\t,\tO\ngesture.cpp\tB-File_Name\tgesture.cpp\tO\n,\tO\t,\tO\naddgesture.cpp\tB-File_Name\taddgesture.cpp\tO\n,\tO\t,\tO\ncheckgesture.cpp\tB-File_Name\tcheckgesture.cpp\tO\nand\tO\tand\tO\ndelgesture.cpp\tB-File_Name\tdelgesture.cpp\tO\n.\tO\t.\tO\n\t\n****\tO\t****\tO\n---------------------------\tO\t---------------------------\tO\n-\tO\t-\tO\n***\tO\t***\tO\n\t\nBefore\tO\tBefore\tO\nbeginning\tO\tbeginning\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ninitialize\tO\tinitialize\tO\n:\tO\t:\tO\n$\tB-Code_Block\t$\tO\n./initialize\tI-Code_Block\t./initialize\tO\n\t\nThe\tO\tThe\tO\nmain\tO\tmain\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nrun\tO\trun\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ngesture\tO\tgesture\tO\n:\tO\t:\tO\n$\tB-Code_Block\t$\tO\n./gesture\tI-Code_Block\t./gesture\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nharshnarang8/AcaConnectFour\tO\tharshnarang8/AcaConnectFour\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/harshnarang8/AcaConnectFour/issues/4\tO\thttps://github.com/harshnarang8/AcaConnectFour/issues/4\tO\n\t\nMid\tO\tMid\tO\nTerm\tO\tTerm\tO\nEval\tO\tEval\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP/issues/4\tO\thttps://github.com/McMenemy/GoDoRP/issues/4\tO\n\t\nafter\tO\tafter\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfolder\tO\tfolder\tO\n\"\tO\t\"\tO\nsrc\tO\tsrc\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nmove\tO\tmove\tO\n\"\tO\t\"\tO\napi\tO\tapi\tO\n\"\tO\t\"\tO\ninto\tO\tinto\tO\n\"\tO\t\"\tO\nsrc\tO\tsrc\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nfixed\tO\tfixed\tO\n,\tO\t,\tO\n\t\nthe\tO\tthe\tO\ncause\tO\tcause\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nstruct\tB-Data_Structure\tstruct\tO\nof\tO\tof\tO\ngo\tB-Language\tgo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nbuild\tO\tbuild\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\noutside\tO\toutside\tO\ndocker\tB-Application\tdocker\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlengchiva/ruc_github.com\tO\tlengchiva/ruc_github.com\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/lengchiva/ruc_github.com\tO\thttps://github.com/lengchiva/ruc_github.com\tO\n\t\nMy\tO\tMy\tO\nofficail\tO\tofficail\tO\ngithub\tB-Website\tgithub\tO\nRUC\tO\tRUC\tO\n\t\nruc_github.com\tO\truc_github.com\tO\n\t\nObjectives\tO\tObjectives\tO\nof\tO\tof\tO\nproject\tO\tproject\tO\n\t\n*\tO\t*\tO\nDemonstrad\tO\tDemonstrad\tO\ngithub\tB-Website\tgithub\tO\npages\tO\tpages\tO\n**\tO\t**\tO\nCollaboration\tO\tCollaboration\tO\nparttern\tO\tparttern\tO\n**\tO\t**\tO\nUsing\tO\tUsing\tO\ngithub\tB-Website\tgithub\tO\nfor\tO\tfor\tO\nMac\tB-Operating_System\tMac\tO\nand\tO\tand\tO\nWindow\tB-Operating_System\tWindow\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/libp2p/interface-record-store/issues/2\tO\thttps://github.com/libp2p/interface-record-store/issues/2\tO\n\t\nOkay\tO\tOkay\tO\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nexplanation\tO\texplanation\tO\n:)\tO\t:)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmongrate/mongrate.com\tO\tmongrate/mongrate.com\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mongrate/mongrate.com/issues/1\tO\thttps://github.com/mongrate/mongrate.com/issues/1\tO\n\t\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nbrandonscott/nabu\tO\tbrandonscott/nabu\tO\n-ios\tO\t-ios\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/brandonscott/nabu-ios/issues/1\tO\thttps://github.com/brandonscott/nabu-ios/issues/1\tO\n\t\nThe\tO\tThe\tO\nproject\tO\tproject\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\ncompile\tO\tcompile\tO\n,\tO\t,\tO\nalso\tO\talso\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nserious\tO\tserious\tO\nissues\tO\tissues\tO\nlike\tO\tlike\tO\nimporting\tO\timporting\tO\nNabuOpenSDK.h\tB-File_Name\tNabuOpenSDK.h\tO\nin\tO\tin\tO\nboth\tO\tboth\tO\n.m\tB-File_Type\t.m\tO\nand\tO\tand\tO\n.h\tB-File_Type\t.h\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nsome\tO\tsome\tO\nfixes\tO\tfixes\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nbut\tO\tbut\tO\nstill\tO\tstill\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nNabu\tB-Device\tNabu\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/5\tO\thttps://github.com/contributte/logging/issues/5\tO\n\t\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\n@benijo\tB-User_Name\t@benijo\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/15\tO\thttps://github.com/mapbox/tile-count/issues/15\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n'll\tO\t'll\tO\nmake\tO\tmake\tO\nany\tO\tany\tO\ndifference\tO\tdifference\tO\nin\tO\tin\tO\nspeed\tO\tspeed\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nbitmap\tB-Data_Structure\tbitmap\tO\ntiles\tO\ttiles\tO\ncompress\tO\tcompress\tO\nbetter\tO\tbetter\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/5\tO\thttps://github.com/zeroepoch/plotbitrate/issues/5\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nusing\tO\tusing\tO\npkt_duration_time\tB-Library_Variable\tpkt_duration_time\tB-Code_Block\neach\tO\teach\tO\ntime\tO\ttime\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nframerate\tO\tframerate\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\naccount\tO\taccount\tO\nfor\tO\tfor\tO\nvariable\tO\tvariable\tO\nframerate\tO\tframerate\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nbecoming\tO\tbecoming\tO\nmore\tO\tmore\tO\ncommon\tO\tcommon\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\nnoted\tO\tnoted\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthe\tO\tthe\tO\nmissing\tO\tmissing\tO\npkt_pts_time\tB-Library_Variable\tpkt_pts_time\tB-Code_Block\nfield\tO\tfield\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\naccumulate\tO\taccumulate\tO\npkt_duration_time\tB-Library_Variable\tpkt_duration_time\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nscript\tO\tscript\tO\nwas\tO\twas\tO\nsomething\tO\tsomething\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nput\tO\tput\tO\ntogether\tO\ttogether\tO\nquickly\tO\tquickly\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nfiles\tO\tfiles\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nuse\tO\tuse\tO\nor\tO\tor\tO\nmaintain\tO\tmaintain\tO\nit\tO\tit\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\ngeneral\tO\tgeneral\tO\nfix\tO\tfix\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n(\tO\t(\tO\nand\tO\tand\tO\nprobably\tO\tprobably\tO\nothers\tO\tothers\tO\n)\tO\t)\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\na\tO\ta\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/91\tO\thttps://github.com/svenstaro/flamejam/issues/91\tO\n\t\nI\tO\tI\tO\npulled\tO\tpulled\tO\nthe\tO\tthe\tO\nrepo\tO\trepo\tO\nand\tO\tand\tO\ntried\tO\ttried\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\na\tO\ta\tO\ndevelopment\tO\tdevelopment\tO\nenvironment\tO\tenvironment\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nran\tO\tran\tO\ninto\tO\tinto\tO\nsome\tO\tsome\tO\ndependency\tO\tdependency\tO\nissues\tO\tissues\tO\n.\tO\t.\tO\n\t\nSpecifically\tO\tSpecifically\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmysql\tB-Application\tmysql\tO\ndependency\tO\tdependency\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nimmediately\tO\timmediately\tO\napparent\tO\tapparent\tO\nto\tO\tto\tO\nme\tO\tme\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\nsome\tO\tsome\tO\nnotes\tO\tnotes\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nREADME\tB-File_Name\tREADME\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/45\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/45\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\nThe\tO\tThe\tO\nplugin\tO\tplugin\tO\npage\tB-User_Interface_Element\tpage\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nstate\tO\tstate\tO\nany\tO\tany\tO\nspecial\tO\tspecial\tO\nrequirement\tO\trequirement\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ncompile\tO\tcompile\tO\nin\tO\tin\tO\nphonegap\tB-Application\tphonegap\tO\nbuild\tO\tbuild\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nfrom\tO\tfrom\tO\nXcode\tB-Application\tXcode\tO\nand\tO\tand\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\niOS\tB-Operating_System\tiOS\tO\ndev\tO\tdev\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfixed\tO\tfixed\tO\nit\tO\tit\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nCoreLocation\tB-Library\tCoreLocation\tO\nframework\tO\tframework\tO\nas\tO\tas\tO\na\tO\ta\tO\ndependency\tO\tdependency\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlinking\tO\tlinking\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nit\tO\tit\tO\nnecessary\tO\tnecessary\tO\nand\tO\tand\tO\nwhy\tO\twhy\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nthis\tO\tthis\tO\nstated\tO\tstated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nreadme\tB-File_Name\treadme\tO\npage\tB-User_Interface_Element\tpage\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\n\"\tO\t\"\tO\nmanual\tO\tmanual\tO\n\"\tO\t\"\tO\ndependency\tO\tdependency\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\noffending\tO\toffending\tO\npart\tO\tpart\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\nprocess\tO\tprocess\tO\nof\tO\tof\tO\nPhonegap\tB-Application\tPhonegap\tO\nBuild\tO\tBuild\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_1806\tI-Code_Block\tGR_1806\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nM1sterDonut/hello\tO\tM1sterDonut/hello\tO\n-world\tO\t-world\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/M1sterDonut/hello-world\tO\thttps://github.com/M1sterDonut/hello-world\tO\n\t\nhello-world\tO\thello-world\tO\n\t\nMy\tO\tMy\tO\nfirst\tO\tfirst\tO\nrepository\tO\trepository\tO\n-\tO\t-\tO\ngetting\tO\tgetting\tO\nM1sterDonut\tB-User_Name\tM1sterDonut\tO\ngoing\tO\tgoing\tO\n!\tO\t!\tO\n\t\nLearning\tO\tLearning\tO\nabout\tO\tabout\tO\nbranches\tO\tbranches\tO\n,\tO\t,\tO\ncommits\tO\tcommits\tO\nand\tO\tand\tO\nmerges\tO\tmerges\tO\n!\tO\t!\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ngo\tO\tgo\tO\n:\tO\t:\tO\nI\tO\tI\tO\nlike\tO\tlike\tO\npenetration\tO\tpenetration\tO\ntesting\tO\ttesting\tO\nand\tO\tand\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nhandel\tO\thandel\tO\n's\tO\t's\tO\nname\tO\tname\tO\nsake\tO\tsake\tO\n,\tO\t,\tO\nholes\tO\tholes\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\npart\tO\tpart\tO\n:D\tO\t:D\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/24\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/24\tO\n\t\nUAT_Log.txt\tB-File_Name\tUAT_Log.txt\tO\n\t\nUAT\tB-Application\tUAT\tO\nLog\tO\tLog\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/45\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/45\tO\n\t\nCloses\tO\tCloses\tO\n#34\tO\t#34\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/34\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/34\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nsearch\tO\tsearch\tO\nacross\tO\tacross\tO\nthe\tO\tthe\tO\naws\tB-Application\taws\tO\nplugins\tO\tplugins\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nconfig\tO\tconfig\tO\nseems\tO\tseems\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nwell\tO\twell\tO\nencapsulated\tO\tencapsulated\tO\nhere\tO\there\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nexpect\tO\texpect\tO\nany\tO\tany\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nchange\tO\tchange\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nspecs\tO\tspecs\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nupdated\tO\tupdated\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nwill\tO\twill\tO\ndouble\tO\tdouble\tO\ncheck\tO\tcheck\tO\nand\tO\tand\tO\nfix\tO\tfix\tO\nif\tO\tif\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/16\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/16\tO\n\t\nMerged\tO\tMerged\tO\nsucessfully\tO\tsucessfully\tO\ninto\tO\tinto\tO\nmaster\tO\tmaster\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/5\tO\thttps://github.com/zeroepoch/plotbitrate/issues/5\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nZeranoe\tB-Organization\tZeranoe\tO\nversions\tO\tversions\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\nup-to-date\tO\tup-to-date\tO\n.\tO\t.\tO\n\t\nTheir\tO\tTheir\tO\nversion\tO\tversion\tO\ninfo\tO\tinfo\tO\nis\tO\tis\tO\nweird\tO\tweird\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ntwo\tO\ttwo\tO\nyears\tO\tyears\tO\nago\tO\tago\tO\nthey\tO\tthey\tO\nwere\tO\twere\tO\nalready\tO\talready\tO\nusing\tO\tusing\tO\nffmpeg\tB-Application\tffmpeg\tO\n2.4\tB-Version\t2.4\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\ndecember\tB-Version\tdecember\tO\n2015\tI-Version\t2015\tO\nbuild\tO\tbuild\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nnotices\tO\tnotices\tO\nthe\tO\tthe\tO\nxml\tB-Language\txml\tO\ndoes\tO\tdoes\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndts\tB-Code_Block\tdts\tB-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\ninstead\tI-Code_Block\tinstead\tI-Code_Block\nof\tI-Code_Block\tof\tI-Code_Block\npts\tI-Code_Block\tpts\tI-Code_Block\nfield--except\tO\tfield--except\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nframe\tO\tframe\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nlacks\tO\tlacks\tO\nsome\tO\tsome\tO\nfields\tO\tfields\tO\n.\tO\t.\tO\n\t\nexample\tO\texample\tO\nframe\tO\tframe\tO\n:\tO\t:\tO\n\t\n<frame\tB-Code_Block\t<frame\tB-Code_Block\nmedia_type=\"video\"\tI-Code_Block\tmedia_type=\"video\"\tI-Code_Block\nstream_index=\"1\"\tI-Code_Block\tstream_index=\"1\"\tI-Code_Block\nkey_frame=\"0\"\tI-Code_Block\tkey_frame=\"0\"\tI-Code_Block\npkt_dts=\"29896\"\tI-Code_Block\tpkt_dts=\"29896\"\tI-Code_Block\npkt_dts_time=\"29.896000\"\tI-Code_Block\tpkt_dts_time=\"29.896000\"\tI-Code_Block\nbest_effort_timestamp=\"29896\"\tI-Code_Block\tbest_effort_timestamp=\"29896\"\tI-Code_Block\nbest_effort_timestamp_time=\"29.896000\"\tI-Code_Block\tbest_effort_timestamp_time=\"29.896000\"\tI-Code_Block\npkt_duration=\"33\"\tI-Code_Block\tpkt_duration=\"33\"\tI-Code_Block\npkt_duration_time=\"0.033000\"\tI-Code_Block\tpkt_duration_time=\"0.033000\"\tI-Code_Block\npkt_pos=\"25989730\"\tI-Code_Block\tpkt_pos=\"25989730\"\tI-Code_Block\npkt_size=\"24681\"\tI-Code_Block\tpkt_size=\"24681\"\tI-Code_Block\nwidth=\"1280\"\tI-Code_Block\twidth=\"1280\"\tI-Code_Block\nheight=\"720\"\tI-Code_Block\theight=\"720\"\tI-Code_Block\npix_fmt=\"yuv420p\"\tI-Code_Block\tpix_fmt=\"yuv420p\"\tI-Code_Block\npict_type=\"P\"\tI-Code_Block\tpict_type=\"P\"\tI-Code_Block\ncoded_picture_number=\"895\"\tI-Code_Block\tcoded_picture_number=\"895\"\tI-Code_Block\ndisplay_picture_number=\"0\"\tI-Code_Block\tdisplay_picture_number=\"0\"\tI-Code_Block\ninterlaced_frame=\"0\"\tI-Code_Block\tinterlaced_frame=\"0\"\tI-Code_Block\ntop_field_first=\"0\"\tI-Code_Block\ttop_field_first=\"0\"\tI-Code_Block\nrepeat_pict=\"0\"/>\tI-Code_Block\trepeat_pict=\"0\"/>\tI-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nwindows\tB-Operating_System\twindows\tO\n7\tB-Version\t7\tO\nvideo\tB-File_Type\tvideo\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\n901\tO\t901\tO\nframes\tO\tframes\tO\nin\tO\tin\tO\nVC1\tB-File_Type\tVC1\tO\nformat\tO\tformat\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/17\tO\thttps://github.com/demigor/lex.db/issues/17\tO\n\t\nhug\tO\thug\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njkraemer/redmine_airbrake\tO\tjkraemer/redmine_airbrake\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jkraemer/redmine_airbrake/issues/2\tO\thttps://github.com/jkraemer/redmine_airbrake/issues/2\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\ntrouble\tO\ttrouble\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nnewest\tO\tnewest\tO\nairbrake-ruby\tB-Library\tairbrake-ruby\tB-Code_Block\ngem\tO\tgem\tO\ncause\tO\tcause\tO\nthe\tO\tthe\tO\nproject_key\tB-Library_Variable\tproject_key\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nsend\tO\tsend\tO\nanymore\tO\tanymore\tO\nas\tO\tas\tO\nkey\tB-Variable_Name\tkey\tO\nparam\tO\tparam\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nairbrake\tB-Application\tairbrake\tO\nserver\tI-Application\tserver\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthis\tO\tthis\tO\ncommit\tO\tcommit\tO\n:\tO\t:\tO\nhttps://github.com/airbrake/airbrake-ruby/commit/5d258a28993ca2b2649e02abd93dfa944f207063\tO\thttps://github.com/airbrake/airbrake-ruby/commit/5d258a28993ca2b2649e02abd93dfa944f207063\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nredmine_airbrake\tB-Application\tredmine_airbrake\tO\nthrows\tO\tthrows\tO\na\tO\ta\tO\n500\tB-Error_Name\t500\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\n,\tO\t,\tO\ncause\tO\tcause\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nparam\tO\tparam\tO\nkey\tB-Variable_Name\tkey\tB-Code_Block\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://github.com/jkraemer/redmine_airbrake/blob/6febdad0544945dab81d16abd4bef9fb1f576f6d/app/controllers/airbrake_notices_controller.rb#L43\tO\thttps://github.com/jkraemer/redmine_airbrake/blob/6febdad0544945dab81d16abd4bef9fb1f576f6d/app/controllers/airbrake_notices_controller.rb#L43\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthe\tO\tthe\tO\nproject_key\tB-Library_Variable\tproject_key\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nmade\tO\tmade\tO\nfor\tO\tfor\tO\ntransmitting\tO\ttransmitting\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nthe\tO\tthe\tO\nredmine_airbrake\tB-Application\tredmine_airbrake\tB-Code_Block\nplugin\tO\tplugin\tO\nneeds\tO\tneeds\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nmonkey\tO\tmonkey\tO\npatched\tO\tpatched\tO\nour\tO\tour\tO\nairbrake\tB-Application\tairbrake\tO\nclient\tI-Application\tclient\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nugly\tO\tugly\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_52147\tI-Code_Block\tGR_52147\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOne\tO\tOne\tO\nsolution\tO\tsolution\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nconfig\tO\tconfig\tO\noption\tO\toption\tO\nin\tO\tin\tO\nairbrake-ruby\tB-Library\tairbrake-ruby\tB-Code_Block\nto\tO\tto\tO\ngive\tO\tgive\tO\ncustom\tO\tcustom\tO\nparameters\tO\tparameters\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\noption\tO\toption\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\npost\tO\tpost\tO\nthese\tO\tthese\tO\ninformations\tO\tinformations\tO\nas\tO\tas\tO\njson\tB-File_Type\tjson\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nbody\tO\tbody\tO\nwith\tO\twith\tO\nall\tO\tall\tO\nother\tO\tother\tO\ninformations\tO\tinformations\tO\nand\tO\tand\tO\npatch\tO\tpatch\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nto\tO\tto\tO\nread\tO\tread\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\n?\tO\t?\tO\n\t\nGreetings\tO\tGreetings\tO\nfrom\tO\tfrom\tO\nDD\tO\tDD\tO\n!\tO\t!\tO\n\t\n;)\tO\t;)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmadison-kerndt/off\tO\tmadison-kerndt/off\tO\n-on-guard-synesthesia\tO\t-on-guard-synesthesia\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/31\tO\thttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/31\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/8\tO\thttps://github.com/contributte/logging/issues/8\tO\n\t\nHow\tO\tHow\tO\nis\tO\tis\tO\nit\tO\tit\tO\ngoing\tO\tgoing\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nupdates\tO\tupdates\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/381\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/381\tO\n\t\nAlright\tO\tAlright\tO\nguys\tO\tguys\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nOpen\tO\tOpen\tO\nup\tO\tup\tO\nxcode\tB-Application\txcode\tO\n(\tO\t(\tO\nOr\tO\tOr\tO\nyour\tO\tyour\tO\neditor\tB-Application\teditor\tO\nof\tO\tof\tO\nchoice\tO\tchoice\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\n\"\tO\t\"\tO\n_requiresUserActionForMediaPlayback\tO\t_requiresUserActionForMediaPlayback\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nNo\tO\tNo\tO\nquotes\tO\tquotes\tO\n)\tO\t)\tO\n\t\nReplace\tO\tReplace\tO\nthat\tO\tthat\tO\nstring\tB-Data_Type\tstring\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\nrequiresUserActionForMediaPlayback\tO\trequiresUserActionForMediaPlayback\tO\n\"\tO\t\"\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nfixed\tO\tfixed\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\ngit\tB-Application\tgit\tO\nrepo\tO\trepo\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nmade\tO\tmade\tO\nitself\tO\titself\tO\nto\tO\tto\tO\nnpm\tB-Application\tnpm\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/13\tO\thttps://github.com/svenstaro/flamejam/issues/13\tO\n\t\nSounds\tO\tSounds\tO\ngood\tO\tgood\tO\nto\tO\tto\tO\nme\tO\tme\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n!\tO\t!\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nfeedback\tO\tfeedback\tO\n,\tO\t,\tO\nstay\tO\tstay\tO\ntuned\tO\ttuned\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/203\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/203\tO\n\t\nthanks\tO\tthanks\tO\nsir\tO\tsir\tO\n,\tO\t,\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nclose\tO\tclose\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\nrecent\tO\trecent\tO\napps\tO\tapps\tO\nnotification\tO\tnotification\tO\nnot\tO\tnot\tO\nappear\tO\tappear\tO\nit\tO\tit\tO\nis\tO\tis\tO\nappear\tO\tappear\tO\nonly\tO\tonly\tO\nwhen\tO\twhen\tO\napp\tO\tapp\tO\nput\tO\tput\tO\nin\tO\tin\tO\nrecent\tO\trecent\tO\napps\tO\tapps\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app/issues/15\tO\thttps://github.com/lbarasti/gps_app/issues/15\tO\n\t\nNB\tO\tNB\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\ncurrent\tO\tcurrent\tO\nids\tO\tids\tO\nbeing\tO\tbeing\tO\nreported\tO\treported\tO\nare\tO\tare\tO\n_61a13865_​\tO\t_61a13865_​\tO\n​and​\tO\t​and​\tO\n8c514cdf\tO\t8c514cdf\tO\n\t\nAlso\tO\tAlso\tO\nthe\tO\tthe\tO\nbuses\tO\tbuses\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nvisibly\tO\tvisibly\tO\ndifferent\tO\tdifferent\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\ncould\tO\tcould\tO\ntry\tO\ttry\tO\noverlaying\tO\toverlaying\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nall\tO\tall\tO\ngreen\tO\tgreen\tO\nit\tO\tit\tO\n'd\tO\t'd\tO\nstill\tO\tstill\tO\nbe\tO\tbe\tO\ndifficult\tO\tdifficult\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhich\tO\twhich\tO\n\t\nWe\tO\tWe\tO\ncould\tO\tcould\tO\nsort\tO\tsort\tO\nby\tO\tby\tO\nid\tO\tid\tO\nand\tO\tand\tO\ntake\tO\ttake\tO\ncolours\tO\tcolours\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndefined\tO\tdefined\tO\nlist\tB-Data_Structure\tlist\tO\n\t\nWe\tO\tWe\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nold\tO\told\tO\n\"\tO\t\"\tO\nred\tB-Variable_Name\tred\tO\n=\tO\t=\tO\nbus1\tB-Variable_Name\tbus1\tO\n,\tO\t,\tO\nblack\tB-Variable_Name\tblack\tO\n=\tO\t=\tO\nbus2\tB-Variable_Name\tbus2\tO\ncolour\tO\tcolour\tO\ntheme\tO\ttheme\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSoapMedia/sensei\tO\tSoapMedia/sensei\tO\n-certificates\tO\t-certificates\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/SoapMedia/sensei-certificates\tO\thttps://github.com/SoapMedia/sensei-certificates\tO\n\t\nsensei-certificates\tB-Application\tsensei-certificates\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nthe\tO\tthe\tO\nCertificates\tO\tCertificates\tO\nextension\tO\textension\tO\nfor\tO\tfor\tO\nSensei\tB-Application\tSensei\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/61\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/61\tO\n\t\nLGTM\tO\tLGTM\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app/issues/2\tO\thttps://github.com/lbarasti/gps_app/issues/2\tO\n\t\nclosing\tO\tclosing\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nneater\tO\tneater\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nparduetyler/hello\tO\tparduetyler/hello\tO\n-world\tO\t-world\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/parduetyler/hello-world\tO\thttps://github.com/parduetyler/hello-world\tO\n\t\nhello-world\tO\thello-world\tO\n\t\nHello\tO\tHello\tO\nWorld\tO\tWorld\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nTyler\tB-User_Name\tTyler\tO\n,\tO\t,\tO\nan\tO\tan\tO\naspiring\tO\taspiring\tO\nprogrammer\tO\tprogrammer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nmuch\tO\tmuch\tO\nyet\tO\tyet\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nexcited\tO\texcited\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\nthe\tO\tthe\tO\ninnerworkings\tO\tinnerworkings\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\ncommon\tO\tcommon\tO\nprogramming\tO\tprogramming\tO\nlanguages\tO\tlanguages\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nworld\tO\tworld\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nUofL\tO\tUofL\tO\nSpeed\tO\tSpeed\tO\nSchool\tO\tSchool\tO\nstudent\tO\tstudent\tO\nlooking\tO\tlooking\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nabsolutely\tO\tabsolutely\tO\nready\tO\tready\tO\nbefore\tO\tbefore\tO\nI\tO\tI\tO\nstart\tO\tstart\tO\nmy\tO\tmy\tO\nco-op\tO\tco-op\tO\nnext\tO\tnext\tO\nyear\tO\tyear\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nalexgorbatchev/fork\tO\talexgorbatchev/fork\tO\n-promise\tO\t-promise\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/alexgorbatchev/fork-promise\tO\thttps://github.com/alexgorbatchev/fork-promise\tO\n\t\nfork-promise\tO\tfork-promise\tO\n\t\nExecutes\tO\tExecutes\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\na\tO\ta\tO\nforked\tO\tforked\tO\nNode.js\tB-Application\tNode.js\tO\nprocess\tO\tprocess\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nBluebird\tB-Library_Class\tBluebird\tO\npromise\tI-Library_Class\tpromise\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nuseful\tO\tuseful\tO\nfor\tO\tfor\tO\nparallelizing\tO\tparallelizing\tO\nheavy\tO\theavy\tO\ntasks\tO\ttasks\tO\nand\tO\tand\tO\ntaking\tO\ttaking\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nmultiple\tO\tmultiple\tO\nCPUs/cores\tB-Device\tCPUs/cores\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nuseful\tO\tuseful\tO\nfor\tO\tfor\tO\nsplitting\tO\tsplitting\tO\nup\tO\tup\tO\nlong\tO\tlong\tO\nrunning\tO\trunning\tO\ntasks\tO\ttasks\tO\nbecause\tO\tbecause\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndoc\tO\tdoc\tO\n:\tO\t:\tO\n\t\nThese\tO\tThese\tO\nchild\tO\tchild\tO\nNodes\tO\tNodes\tO\nare\tO\tare\tO\nstill\tO\tstill\tO\nwhole\tO\twhole\tO\nnew\tO\tnew\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nV8\tB-Version\tV8\tO\n.\tO\t.\tO\n\t\nAssume\tO\tAssume\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n30ms\tO\t30ms\tO\nstartup\tO\tstartup\tO\nand\tO\tand\tO\n10mb\tO\t10mb\tO\nmemory\tO\tmemory\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nnew\tO\tnew\tO\nNode\tO\tNode\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\ncreate\tO\tcreate\tO\nmany\tO\tmany\tO\nthousands\tO\tthousands\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_85638\tI-Code_Block\tGR_85638\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsage\tO\tUsage\tO\nExample\tO\tExample\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nbelow\tO\tbelow\tO\nthe\tO\tthe\tO\njob\tB-Library_Function\tjob\tB-Code_Block\nfunction\tO\tfunction\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\nin\tO\tin\tO\na\tO\ta\tO\nforked\tO\tforked\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nparent\tO\tparent\tO\nscope\tO\tscope\tO\naccess\tO\taccess\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\njob\tB-Library_Function\tjob\tB-Code_Block\nfunction\tO\tfunction\tO\nis\tO\tis\tO\nexecuted\tO\texecuted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nglobal\tO\tglobal\tO\ncontext\tO\tcontext\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_85639\tI-Code_Block\tGR_85639\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAPI\tB-Library\tAPI\tO\n\t\nfile(scriptFile,\tB-Library_Function\tfile(scriptFile,\tO\nargs)\tI-Library_Function\targs)\tO\n->\tO\t->\tO\nPromise\tB-Library_Class\tPromise\tO\n\t\nExecutes\tO\tExecutes\tO\na\tO\ta\tO\nscriptFile\tB-Library_Variable\tscriptFile\tB-Code_Block\npassing\tO\tpassing\tO\nin\tO\tin\tO\nargs\tB-Library_Variable\targs\tB-Code_Block\nvia\tO\tvia\tO\nJSON\tB-File_Type\tJSON\tO\nstring\tB-Data_Type\tstring\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nPromise\tB-Library_Class\tPromise\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nscript\tO\tscript\tO\nfile\tO\tfile\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ninterface\tO\tinterface\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_85640\tI-Code_Block\tGR_85640\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nfn(function,\tB-Library_Function\tfn(function,\tO\nargs)\tI-Library_Function\targs)\tO\n->\tO\t->\tO\nPromise\tB-Library_Class\tPromise\tO\n\t\nExecutes\tO\tExecutes\tO\nfunction\tB-Library_Variable\tfunction\tB-Code_Block\nin\tO\tin\tO\na\tO\ta\tO\nforked\tO\tforked\tO\nprocess\tO\tprocess\tO\napplying\tO\tapplying\tO\nargs\tB-Library_Variable\targs\tB-Code_Block\nto\tO\tto\tO\nit\tO\tit\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nmeans\tO\tmeans\tO\nargs\tB-Library_Variable\targs\tB-Code_Block\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nor\tO\tor\tO\nnull\tO\tnull\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nfunction\tB-Library_Variable\tfunction\tB-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noutside\tO\toutside\tO\nscope\tO\tscope\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\nstringified\tO\tstringified\tO\nand\tO\tand\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_85641\tI-Code_Block\tGR_85641\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTesting\tO\tTesting\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_85642\tI-Code_Block\tGR_85642\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLicense\tO\tLicense\tO\n\t\nThe\tO\tThe\tO\nMIT\tB-Licence\tMIT\tO\nLicense\tI-Licence\tLicense\tO\n(\tO\t(\tO\nMIT\tO\tMIT\tO\n)\tO\t)\tO\n\t\nCopyright\tB-Licence\tCopyright\tO\n2014\tI-Licence\t2014\tO\nAlex\tI-Licence\tAlex\tO\nGorbatchev\tI-Licence\tGorbatchev\tO\n\t\nPermission\tO\tPermission\tO\nis\tO\tis\tO\nhereby\tO\thereby\tO\ngranted\tO\tgranted\tO\n,\tO\t,\tO\nfree\tO\tfree\tO\nof\tO\tof\tO\ncharge\tO\tcharge\tO\n,\tO\t,\tO\nto\tO\tto\tO\nany\tO\tany\tO\nperson\tO\tperson\tO\nobtaining\tO\tobtaining\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nsoftware\tO\tsoftware\tO\nand\tO\tand\tO\nassociated\tO\tassociated\tO\ndocumentation\tO\tdocumentation\tO\nfiles\tO\tfiles\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nSoftware\tO\tSoftware\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\n,\tO\t,\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSoftware\tO\tSoftware\tO\nwithout\tO\twithout\tO\nrestriction\tO\trestriction\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nwithout\tO\twithout\tO\nlimitation\tO\tlimitation\tO\nthe\tO\tthe\tO\nrights\tO\trights\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\ncopy\tO\tcopy\tO\n,\tO\t,\tO\nmodify\tO\tmodify\tO\n,\tO\t,\tO\nmerge\tO\tmerge\tO\n,\tO\t,\tO\npublish\tO\tpublish\tO\n,\tO\t,\tO\ndistribute\tO\tdistribute\tO\n,\tO\t,\tO\nsublicense\tO\tsublicense\tO\n,\tO\t,\tO\nand/or\tO\tand/or\tO\nsell\tO\tsell\tO\ncopies\tO\tcopies\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nSoftware\tO\tSoftware\tO\n,\tO\t,\tO\nand\tO\tand\tO\nto\tO\tto\tO\npermit\tO\tpermit\tO\npersons\tO\tpersons\tO\nto\tO\tto\tO\nwhom\tO\twhom\tO\nthe\tO\tthe\tO\nSoftware\tO\tSoftware\tO\nis\tO\tis\tO\nfurnished\tO\tfurnished\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n,\tO\t,\tO\nsubject\tO\tsubject\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nconditions\tO\tconditions\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\ncopyright\tO\tcopyright\tO\nnotice\tO\tnotice\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\npermission\tO\tpermission\tO\nnotice\tO\tnotice\tO\nshall\tO\tshall\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nall\tO\tall\tO\ncopies\tO\tcopies\tO\nor\tO\tor\tO\nsubstantial\tO\tsubstantial\tO\nportions\tO\tportions\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nSoftware\tO\tSoftware\tO\n.\tO\t.\tO\n\t\nTHE\tO\tTHE\tO\nSOFTWARE\tO\tSOFTWARE\tO\nIS\tO\tIS\tO\nPROVIDED\tO\tPROVIDED\tO\n\"\tO\t\"\tO\nAS\tO\tAS\tO\nIS\tO\tIS\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nWITHOUT\tO\tWITHOUT\tO\nWARRANTY\tO\tWARRANTY\tO\nOF\tO\tOF\tO\nANY\tO\tANY\tO\nKIND\tO\tKIND\tO\n,\tO\t,\tO\nEXPRESS\tO\tEXPRESS\tO\nOR\tO\tOR\tO\nIMPLIED\tO\tIMPLIED\tO\n,\tO\t,\tO\nINCLUDING\tO\tINCLUDING\tO\nBUT\tO\tBUT\tO\nNOT\tO\tNOT\tO\nLIMITED\tO\tLIMITED\tO\nTO\tO\tTO\tO\nTHE\tO\tTHE\tO\nWARRANTIES\tO\tWARRANTIES\tO\nOF\tO\tOF\tO\nMERCHANTABILITY\tO\tMERCHANTABILITY\tO\n,\tO\t,\tO\nFITNESS\tO\tFITNESS\tO\nFOR\tO\tFOR\tO\nA\tO\tA\tO\nPARTICULAR\tO\tPARTICULAR\tO\nPURPOSE\tO\tPURPOSE\tO\nAND\tO\tAND\tO\nNONINFRINGEMENT\tO\tNONINFRINGEMENT\tO\n.\tO\t.\tO\n\t\nIN\tO\tIN\tO\nNO\tO\tNO\tO\nEVENT\tO\tEVENT\tO\nSHALL\tO\tSHALL\tO\nTHE\tO\tTHE\tO\nAUTHORS\tO\tAUTHORS\tO\nOR\tO\tOR\tO\nCOPYRIGHT\tO\tCOPYRIGHT\tO\nHOLDERS\tO\tHOLDERS\tO\nBE\tO\tBE\tO\nLIABLE\tO\tLIABLE\tO\nFOR\tO\tFOR\tO\nANY\tO\tANY\tO\nCLAIM\tO\tCLAIM\tO\n,\tO\t,\tO\nDAMAGES\tO\tDAMAGES\tO\nOR\tO\tOR\tO\nOTHER\tO\tOTHER\tO\nLIABILITY\tO\tLIABILITY\tO\n,\tO\t,\tO\nWHETHER\tO\tWHETHER\tO\nIN\tO\tIN\tO\nAN\tO\tAN\tO\nACTION\tO\tACTION\tO\nOF\tO\tOF\tO\nCONTRACT\tO\tCONTRACT\tO\n,\tO\t,\tO\nTORT\tO\tTORT\tO\nOR\tO\tOR\tO\nOTHERWISE\tO\tOTHERWISE\tO\n,\tO\t,\tO\nARISING\tO\tARISING\tO\nFROM\tO\tFROM\tO\n,\tO\t,\tO\nOUT\tO\tOUT\tO\nOF\tO\tOF\tO\nOR\tO\tOR\tO\nIN\tO\tIN\tO\nCONNECTION\tO\tCONNECTION\tO\nWITH\tO\tWITH\tO\nTHE\tO\tTHE\tO\nSOFTWARE\tO\tSOFTWARE\tO\nOR\tO\tOR\tO\nTHE\tO\tTHE\tO\nUSE\tO\tUSE\tO\nOR\tO\tOR\tO\nOTHER\tO\tOTHER\tO\nDEALINGS\tO\tDEALINGS\tO\nIN\tO\tIN\tO\nTHE\tO\tTHE\tO\nSOFTWARE\tO\tSOFTWARE\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/72\tO\thttps://github.com/spacetelescope/specview/issues/72\tO\n\t\nClosing\tO\tClosing\tO\n,\tO\t,\tO\nrepository\tO\trepository\tO\nbeing\tO\tbeing\tO\narchived\tO\tarchived\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nalexgorbatchev/fork\tO\talexgorbatchev/fork\tO\n-promise\tO\t-promise\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/alexgorbatchev/fork-promise/issues/1\tO\thttps://github.com/alexgorbatchev/fork-promise/issues/1\tO\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\nget\tO\tget\tO\nstarted\tO\tstarted\tO\nwith\tO\twith\tO\nautomated\tO\tautomated\tO\ndependency\tO\tdependency\tO\nmanagement\tO\tmanagement\tO\nfor\tO\tfor\tO\nfork-promise\tO\tfork-promise\tO\n:muscle\tO\t:muscle\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nupdates\tO\tupdates\tO\nall\tO\tall\tO\nyour\tO\tyour\tO\ndependencies\tO\tdependencies\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nHaving\tO\tHaving\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\nreally\tO\treally\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\nlook\tO\tlook\tO\nout\tO\tout\tO\nfor\tO\tfor\tO\nfurther\tO\tfurther\tO\ndependency\tO\tdependency\tO\nupdates\tO\tupdates\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nisolation\tO\tisolation\tO\nand\tO\tand\tO\nin\tO\tin\tO\nreal-time\tO\treal-time\tO\n,\tO\t,\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nmerge\tO\tmerge\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\n✅\tO\t✅\tO\nIf\tO\tIf\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\npasses\tO\tpasses\tO\nand\tO\tand\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nworking\tO\tworking\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nreally\tO\treally\tO\ngood\tO\tgood\tO\nnews\tO\tnews\tO\n.\tO\t.\tO\n\t\nMerge\tO\tMerge\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nkeep\tO\tkeep\tO\nyou\tO\tyou\tO\nposted\tO\tposted\tO\nabout\tO\tabout\tO\ndependency\tO\tdependency\tO\nupdates\tO\tupdates\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nmiss\tO\tmiss\tO\n.\tO\t.\tO\n\t\n❌\tO\t❌\tO\nIf\tO\tIf\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nfails\tO\tfails\tO\nand\tO\tand\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nworking\tO\tworking\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nI\tO\tI\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nstart\tO\tstart\tO\nsending\tO\tsending\tO\nyou\tO\tyou\tO\nfurther\tO\tfurther\tO\nupdates\tO\tupdates\tO\n,\tO\t,\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nmerged\tO\tmerged\tO\nthis\tO\tthis\tO\nvery\tO\tvery\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nwe\tO\twe\tO\nproceed\tO\tproceed\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nyou\tO\tyou\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\ndependency\tO\tdependency\tO\nupdate\tO\tupdate\tO\nis\tO\tis\tO\ncausing\tO\tcausing\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nAdapt\tO\tAdapt\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nso\tO\tso\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nworking\tO\tworking\tO\nnicely\tO\tnicely\tO\ntogether\tO\ttogether\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nnext-update\tO\tnext-update\tO\nis\tO\tis\tO\na\tO\ta\tO\nreally\tO\treally\tO\nhandy\tO\thandy\tO\ntool\tO\ttool\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nPush\tO\tPush\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nbranch\tO\tbranch\tO\nand\tO\tand\tO\nmerge\tO\tmerge\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nor\tO\tor\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\ndependency\tO\tdependency\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\njust\tO\tjust\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\npackage.json\tB-File_Name\tpackage.json\tB-Code_Block\nfile\tO\tfile\tO\nback\tO\tback\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nliking\tO\tliking\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\npush\tO\tpush\tO\nyour\tO\tyour\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nbranch\tO\tbranch\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmerge\tO\tmerge\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nstart\tO\tstart\tO\nsending\tO\tsending\tO\nyou\tO\tyou\tO\nfurther\tO\tfurther\tO\nupdates\tO\tupdates\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGI_74596\tI-Code_Block\tGI_74596\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nignore\tO\tignore\tO\ncertain\tO\tcertain\tO\ndependencies\tO\tdependencies\tO\n\t\nAdd\tO\tAdd\tO\na\tO\ta\tO\ngreenkeeper.ignore\tB-Library_Variable\tgreenkeeper.ignore\tB-Code_Block\nfield\tO\tfield\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\npackage.json\tB-File_Name\tpackage.json\tB-Code_Block\n,\tO\t,\tO\ncontaining\tO\tcontaining\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ndependencies\tO\tdependencies\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGI_74597\tI-Code_Block\tGI_74597\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\nthe\tO\tthe\tO\nupdates\tO\tupdates\tO\nwill\tO\twill\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\n\t\nAs\tO\tAs\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nmerge\tO\tmerge\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nbranch\tO\tbranch\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\ndependency\tO\tdependency\tO\nupdate\tO\tupdate\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\napplied\tO\tapplied\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbranch\tO\tbranch\tO\ncreation\tO\tcreation\tO\nshould\tO\tshould\tO\ntrigger\tO\ttrigger\tO\nyour\tO\tyour\tO\ntesting\tO\ttesting\tO\nservices\tO\tservices\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ntests\tO\ttests\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nmeaningful\tO\tmeaningful\tO\nand\tO\tand\tO\nhelpful\tO\thelpful\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\nand\tO\tand\tO\nissues\tO\tissues\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyour\tO\tyour\tO\ndependencies\tO\tdependencies\tO\nremain\tO\tremain\tO\nworking\tO\tworking\tO\nand\tO\tand\tO\nup-to-date\tO\tup-to-date\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGI_74598\tI-Code_Block\tGI_74598\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexample\tO\texample\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nan\tO\tan\tO\nin-range\tO\tin-range\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\n1.7.0\tB-Version\t1.7.0\tB-Code_Block\nis\tO\tis\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nold\tO\told\tO\n^\tB-Version\t^\tB-Code_Block\n1.6.0\tI-Version\t1.6.0\tI-Code_Block\nrange\tO\trange\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncaret\tO\tcaret\tO\n^\tO\t^\tB-Code_Block\ncharacter\tO\tcharacter\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nservices\tO\tservices\tO\nreport\tO\treport\tO\nsuccess\tO\tsuccess\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\nbranch\tO\tbranch\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nno\tO\tno\tO\naction\tO\taction\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ntaken\tO\ttaken\tO\n–\tO\t–\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nfailure\tO\tfailure\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nimmediately\tO\timmediately\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\nversion\tO\tversion\tO\nupdate\tO\tupdate\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndependencies\tO\tdependencies\tO\nwill\tO\twill\tO\neither\tO\teither\tO\ncontinue\tO\tcontinue\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\npotential\tO\tpotential\tO\nproblems\tO\tproblems\tO\nimmediately\tO\timmediately\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGI_74599\tI-Code_Block\tGI_74599\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n4.0.0\tB-Version\t4.0.0\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nold\tO\told\tO\n^\tB-Version\t^\tB-Code_Block\n3.0.0\tI-Version\t3.0.0\tI-Code_Block\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nversion\tO\tversion\tO\nupdates\tO\tupdates\tO\nlike\tO\tlike\tO\nthese\tO\tthese\tO\n–\tO\t–\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ncall\tO\tcall\tO\nthem\tO\tthem\tO\n\"\tO\t\"\tO\nout\tO\tout\tO\nof\tO\tof\tO\nrange\tO\trange\tO\n\"\tO\t\"\tO\nupdates\tO\tupdates\tO\n–\tO\t–\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nreceive\tO\treceive\tO\na\tO\ta\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nexciting\tO\texciting\tO\nnew\tO\tnew\tO\nversions\tO\tversions\tO\nby\tO\tby\tO\nhand\tO\thand\tO\n–\tO\t–\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\njust\tO\tjust\tO\nlet\tO\tlet\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nonly\tO\tonly\tO\nserve\tO\tserve\tO\nas\tO\tas\tO\na\tO\ta\tO\nreminder\tO\treminder\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ncase\tO\tcase\tO\nit\tO\tit\tO\npasses\tO\tpasses\tO\nyour\tO\tyour\tO\ndecent\tO\tdecent\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\na\tO\ta\tO\nstrong\tO\tstrong\tO\nreason\tO\treason\tO\nto\tO\tto\tO\nmerge\tO\tmerge\tO\nright\tO\tright\tO\naway\tO\taway\tO\n:shipit\tO\t:shipit\tO\n:\tO\t:\tO\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nexactly\tO\texactly\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nfrequently\tO\tfrequently\tO\nasked\tO\tasked\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nalways\tO\talways\tO\nask\tO\task\tO\nmy\tO\tmy\tO\nhumans\tO\thumans\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nyou\tO\tyou\tO\nsoon\tO\tsoon\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\nYour\tO\tYour\tO\nGreenkeeper\tB-Application\tGreenkeeper\tO\nBot\tO\tBot\tO\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP/issues/2\tO\thttps://github.com/McMenemy/GoDoRP/issues/2\tO\n\t\nThe\tO\tThe\tO\nfrontend\tO\tfrontend\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nusing\tO\tusing\tO\ncreate-react-app\tB-Application\tcreate-react-app\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndocker\tO\tdocker\tO\nprod/dev\tO\tprod/dev\tO\noptions\tO\toptions\tO\nare\tO\tare\tO\nbuilt\tO\tbuilt\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\na\tO\ta\tO\nmigration\tO\tmigration\tO\ntool\tO\ttool\tO\nis\tO\tis\tO\ndefinitly\tO\tdefinitly\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nbut\tO\tbut\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfeature\tO\tfeature\tO\n=)\tO\t=)\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/12\tO\thttps://github.com/contributte/logging/issues/12\tO\n\t\nHi\tO\tHi\tO\n.\tO\t.\tO\n\t\nLooks\tO\tLooks\tO\ngood\tO\tgood\tO\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nstill\tO\tstill\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncopied\tO\tcopied\tO\nthese\tO\tthese\tO\nlines\tO\tlines\tO\nfrom\tO\tfrom\tO\nTracy\tB-Library\tTracy\tO\n.\tO\t.\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/37\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/37\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nclosing\tO\tclosing\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nto\tO\tto\tO\nme\tO\tme\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/13\tO\thttps://github.com/linked-statistics/xkos/issues/13\tO\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nsettled\tO\tsettled\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nteleconference\tO\tteleconference\tO\non\tO\ton\tO\nJanuary\tO\tJanuary\tO\n19\tO\t19\tO\n,\tO\t,\tO\n2012\tO\t2012\tO\n:\tO\t:\tO\nwe\tO\twe\tO\nkeep\tO\tkeep\tO\ncoversExhaustively\tB-Library_Variable\tcoversExhaustively\tO\nand\tO\tand\tO\ncoversMutuallyExclusively\tB-Library_Variable\tcoversMutuallyExclusively\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nUML\tB-Language\tUML\tO\nmodel\tO\tmodel\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nupdated\tO\tupdated\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nOpenPrograms/MiscPrograms\tO\tOpenPrograms/MiscPrograms\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/OpenPrograms/MiscPrograms/issues/11\tO\thttps://github.com/OpenPrograms/MiscPrograms/issues/11\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/22\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/22\tO\n\t\nLGTM\tO\tLGTM\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/8\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/8\tO\n\t\nWhen\tO\tWhen\tO\npoint\tO\tpoint\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nas\tO\tas\tO\n:\tO\t:\tO\nt.point\tO\tt.point\tO\n:point\tO\t:point\tO\n,\tO\t,\tO\n:srid\tO\t:srid\tO\n=>\tO\t=>\tO\n4326\tO\t4326\tO\n,\tO\t,\tO\n:has_z\tO\t:has_z\tO\n=>\tO\t=>\tO\ntrue\tO\ttrue\tO\n,\tO\t,\tO\n:has_m\tO\t:has_m\tO\n=>\tO\t=>\tO\ntrue\tO\ttrue\tO\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\nfactory\tO\tfactory\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nas\tO\tas\tO\n:\tO\t:\tO\nRGeo::Geographic.simple_mercator_factory\tO\tRGeo::Geographic.simple_mercator_factory\tO\n(\tO\t(\tO\n:has_z_coordinate\tO\t:has_z_coordinate\tO\n=>\tO\t=>\tO\ntrue\tO\ttrue\tO\n,\tO\t,\tO\n:has_m_coordinate\tO\t:has_m_coordinate\tO\n=>\tO\t=>\tO\ntrue\tO\ttrue\tO\n,\tO\t,\tO\n:uses_lenient_assertions\tO\t:uses_lenient_assertions\tO\n=>\tO\t=>\tO\ntrue\tO\ttrue\tO\n,\tO\t,\tO\n)\tO\t)\tO\n\t\npoints\tO\tpoints\tO\nproduced\tO\tproduced\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nfactory\tO\tfactory\tO\nhave\tO\thave\tO\n4\tO\t4\tO\ndimensions\tO\tdimensions\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAR\tO\tAR\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nlose\tO\tlose\tO\nthe\tO\tthe\tO\nM\tO\tM\tO\ncoordinate\tO\tcoordinate\tO\n.\tO\t.\tO\n\t\nAttempting\tO\tAttempting\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nobjects\tO\tobjects\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nlisted\tO\tlisted\tO\nin\tO\tin\tO\n:\tO\t:\tO\nActiveRecord::StatementInvalid\tO\tActiveRecord::StatementInvalid\tO\n:\tO\t:\tO\nPG::Error\tO\tPG::Error\tO\n:\tO\t:\tO\nERROR\tO\tERROR\tO\n:\tO\t:\tO\nColumn\tO\tColumn\tO\nhas\tO\thas\tO\nM\tO\tM\tO\ndimension\tO\tdimension\tO\nbut\tO\tbut\tO\ngeometry\tO\tgeometry\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\n\t\nRather\tO\tRather\tO\nconfounding\tO\tconfounding\tO\ngiven\tO\tgiven\tO\nthat\tO\tthat\tO\neverything\tO\teverything\tO\n:has_m_coordinate\tO\t:has_m_coordinate\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nELK24/hello\tO\tELK24/hello\tO\n-world\tO\t-world\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/ELK24/hello-world\tO\thttps://github.com/ELK24/hello-world\tO\n\t\nhello-world\tO\thello-world\tO\n\t\nTraining\tO\tTraining\tO\n\t\nhow\tO\thow\tO\nto\tO\tto\tO\ncommit\tO\tcommit\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nCreating\tO\tCreating\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nCreating\tO\tCreating\tO\nan\tO\tan\tO\nthird\tO\tthird\tO\noffline\tO\toffline\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njkraemer/redmine_airbrake\tO\tjkraemer/redmine_airbrake\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jkraemer/redmine_airbrake/issues/1\tO\thttps://github.com/jkraemer/redmine_airbrake/issues/1\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nupgraded\tO\tupgraded\tO\nairbrake\tB-Application\tairbrake\tO\nto\tO\tto\tO\nversion\tO\tversion\tO\n5.4.0\tB-Version\t5.4.0\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nexample\tO\texample\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nset\tO\tset\tO\nconfiguration\tO\tconfiguration\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nproject_key\tB-Library_Variable\tproject_key\tO\nas\tO\tas\tO\njson\tB-File_Type\tjson\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nURI\tO\tURI\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfixed\tO\tfixed\tO\nit\tO\tit\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n(\tO\t(\tO\nadded\tO\tadded\tO\nURI.encode\tB-Library_Function\tURI.encode\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_35531\tI-Code_Block\tGR_35531\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/22\tO\thttps://github.com/demigor/lex.db/issues/22\tO\n\t\nAs\tO\tAs\tO\nfrom\tO\tfrom\tO\nFeb\tO\tFeb\tO\n1st\tO\t1st\tO\n2015\tO\t2015\tO\nApple\tB-Organization\tApple\tO\ndemands\tO\tdemands\tO\n64-bit\tO\t64-bit\tO\nsubmissions\tO\tsubmissions\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\napply\tO\tapply\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nXamarin\tB-Application\tXamarin\tO\nis\tO\tis\tO\nmoving\tO\tmoving\tO\ntowards\tO\ttowards\tO\nthe\tO\tthe\tO\nIO\tB-Library\tIO\tO\nUnified\tI-Library\tUnified\tO\nAPI\tI-Library\tAPI\tO\n(\tO\t(\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nAlpha\tO\tAlpha\tO\nchannels\tO\tchannels\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nLex.DB\tB-Application\tLex.DB\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\nvery\tO\tvery\tO\nspecific\tO\tspecific\tO\nIOS\tB-Operating_System\tIOS\tO\nfeatures\tO\tfeatures\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\njust\tO\tjust\tO\na\tO\ta\tO\nrecompile\tO\trecompile\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nopinion\tO\topinion\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nfind\tO\tfind\tO\ninfo\tO\tinfo\tO\n:\tO\t:\tO\nhttp://developer.xamarin.com/guides/cross-platform/macios/newstyle/\tO\thttp://developer.xamarin.com/guides/cross-platform/macios/newstyle/\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/13\tO\thttps://github.com/svenstaro/flamejam/issues/13\tO\n\t\nMost\tO\tMost\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nwill\tO\twill\tO\nprobably\tO\tprobably\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ndesign\tO\tdesign\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nclose\tO\tclose\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nRating\tO\tRating\tO\nwill\tO\twill\tO\nlook\tO\tlook\tO\ncompletely\tO\tcompletely\tO\ndifferent\tO\tdifferent\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhopefully\tO\thopefully\tO\nmore\tO\tmore\tO\nneatly\tO\tneatly\tO\narranged\tO\tarranged\tO\n;)\tO\t;)\tO\nFront\tO\tFront\tO\npage\tO\tpage\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nentirely\tO\tentirely\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nAnnouncements\tO\tAnnouncements\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ncompletely\tO\tcompletely\tO\ndifferent\tO\tdifferent\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/39\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/39\tO\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nyeah\tO\tyeah\tO\nunfortunately\tO\tunfortunately\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nhave\tO\thave\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\ntend\tO\ttend\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\none\tO\tone\tO\natm\tO\tatm\tO\n@lurch\tB-User_Name\t@lurch\tO\n–\tO\t–\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nstill\tO\tstill\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nfrom\tO\tfrom\tO\ntests\tO\ttests\tO\nto\tO\tto\tO\nimplementation\tO\timplementation\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\n9818679544/hello\tO\t9818679544/hello\tO\n-world\tO\t-world\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/9818679544/hello-world\tO\thttps://github.com/9818679544/hello-world\tO\n\t\nhello-world\tO\thello-world\tO\n\t\nsanit\tO\tsanit\tO\nworld\tO\tworld\tO\nhy\tO\thy\tO\nrobot\tO\trobot\tO\n?\tO\t?\tO\n\t\ni\tO\ti\tO\nam\tO\tam\tO\nsanit\tB-User_Name\tsanit\tO\ntamang\tI-User_Name\ttamang\tO\nand\tO\tand\tO\ni\tO\ti\tO\nam\tO\tam\tO\na\tO\ta\tO\nfresher\tO\tfresher\tO\nin\tO\tin\tO\nIT\tO\tIT\tO\nfeild\tO\tfeild\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/14\tO\thttps://github.com/rpcope1/Hantek6022API/issues/14\tO\n\t\nThe\tO\tThe\tO\nPCB\tB-Device\tPCB\tO\nappears\tO\tappears\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nprovisioned\tO\tprovisioned\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\ny\tO\ty\tO\nwexternal\tO\twexternal\tO\ntrigger\tO\ttrigger\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfactory\tO\tfactory\tO\nwith\tO\twith\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nseverals\tO\tseverals\tO\nthings\tO\tthings\tO\n:\tO\t:\tO\n\t\nVerify\tO\tVerify\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntrace\tO\ttrace\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ntrigger\tO\ttrigger\tO\ninterfaces\tO\tinterfaces\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nFX2LP\tB-Device\tFX2LP\tO\nand\tO\tand\tO\ndetermine\tO\tdetermine\tO\nwhat\tO\twhat\tO\npin\tO\tpin\tO\n.\tO\t.\tO\n\t\nMake\tO\tMake\tO\na\tO\ta\tO\nBOM\tB-Device\tBOM\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nwhat\tO\twhat\tO\nadditional\tO\tadditional\tO\nparts\tO\tparts\tO\nare\tO\tare\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\n\t\nInvestigate\tO\tInvestigate\tO\nadding\tO\tadding\tO\next\tO\text\tO\ntrigger\tO\ttrigger\tO\nto\tO\tto\tO\nfirmware\tO\tfirmware\tO\nand\tO\tand\tO\ndriver\tB-Application\tdriver\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/3\tO\thttps://github.com/op-jenkins/op-build/issues/3\tO\n\t\nretest\tO\tretest\tO\nthis\tO\tthis\tO\npleae\tO\tpleae\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/3\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/3\tO\n\t\nAdd\tO\tAdd\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwidgets\tO\twidgets\tO\nfront-end\tO\tfront-end\tO\nfrom\tO\tfrom\tO\nSkaled\tB-Application\tSkaled\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nTSSaint/MemoryGame\tO\tTSSaint/MemoryGame\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/TSSaint/MemoryGame\tO\thttps://github.com/TSSaint/MemoryGame\tO\n\t\nMemoryGame\tO\tMemoryGame\tO\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\ngame\tO\tgame\tO\nbuilt\tO\tbuilt\tO\nwith\tO\twith\tO\nJavaScript\tB-Language\tJavaScript\tO\nand\tO\tand\tO\njQuery\tB-Library\tjQuery\tO\nwhere\tO\twhere\tO\nusers\tO\tusers\tO\nflip\tO\tflip\tO\ncards\tO\tcards\tO\nand\tO\tand\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nmatches\tO\tmatches\tO\n\t\nDescription\tO\tDescription\tO\n:\tO\t:\tO\n\t\nConcentration\tO\tConcentration\tO\n,\tO\t,\tO\nalso\tO\talso\tO\nknown\tO\tknown\tO\nas\tO\tas\tO\nMatch\tO\tMatch\tO\nMatch\tO\tMatch\tO\n,\tO\t,\tO\nMemory\tO\tMemory\tO\n,\tO\t,\tO\nPelmanism\tO\tPelmanism\tO\n,\tO\t,\tO\nShinkei-suijaku\tO\tShinkei-suijaku\tO\n,\tO\t,\tO\nPexeso\tO\tPexeso\tO\nor\tO\tor\tO\nsimply\tO\tsimply\tO\nPairs\tO\tPairs\tO\n,\tO\t,\tO\nis\tO\tis\tO\na\tO\ta\tO\ncard\tO\tcard\tO\ngame\tO\tgame\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncards\tO\tcards\tO\nare\tO\tare\tO\nlaid\tO\tlaid\tO\nface\tO\tface\tO\ndown\tO\tdown\tO\non\tO\ton\tO\na\tO\ta\tO\nsurface\tO\tsurface\tO\nand\tO\tand\tO\ntwo\tO\ttwo\tO\ncards\tO\tcards\tO\nare\tO\tare\tO\nflipped\tO\tflipped\tO\nface\tO\tface\tO\nup\tO\tup\tO\nover\tO\tover\tO\neach\tO\teach\tO\nturn\tO\tturn\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nobject\tO\tobject\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\nover\tO\tover\tO\npairs\tO\tpairs\tO\nof\tO\tof\tO\nmatching\tO\tmatching\tO\ncards\tO\tcards\tO\n\t\nNotes\tO\tNotes\tO\n:\tO\t:\tO\n\t\nPlans\tO\tPlans\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\nwill\tO\twill\tO\nallow\tO\tallow\tO\nfor\tO\tfor\tO\nrandom\tO\trandom\tO\ncard\tO\tcard\tO\nplacement\tO\tplacement\tO\nand\tO\tand\tO\nsmoother\tO\tsmoother\tO\nanimations\tO\tanimations\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nandrewreeman/simpleSF_Player\tO\tandrewreeman/simpleSF_Player\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/andrewreeman/Simple-soundfile-player/issues/12\tO\thttps://github.com/andrewreeman/Simple-soundfile-player/issues/12\tO\n\t\nhttp://rand0mbitsandbytes.blogspot.de/2012/02/playing-audio-in-java.html\tO\thttp://rand0mbitsandbytes.blogspot.de/2012/02/playing-audio-in-java.html\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nJonathanPannell/ProgrammeTest_01_01\tO\tJonathanPannell/ProgrammeTest_01_01\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/JonathanPannell/ProgrammeTest_01_01/issues/1\tO\thttps://github.com/JonathanPannell/ProgrammeTest_01_01/issues/1\tO\n\t\nThis\tO\tThis\tO\ndefect\tO\tdefect\tO\nis\tO\tis\tO\nlisted\tO\tlisted\tO\nto\tO\tto\tO\nconfirm\tO\tconfirm\tO\nthe\tO\tthe\tO\ndefect\tO\tdefect\tO\nprocess\tO\tprocess\tO\non\tO\ton\tO\nthis\tO\tthis\tO\naccount\tO\taccount\tO\n\t\nIm\tO\tIm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nSeverity\tO\tSeverity\tO\nand\tO\tand\tO\nPriority\tO\tPriority\tO\ncriteria\tO\tcriteria\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\nas\tO\tas\tO\nLabels\tO\tLabels\tO\n.\tO\t.\tO\n\t\nTBC\tO\tTBC\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nis\tO\tis\tO\na\tO\ta\tO\nPNG\tB-File_Type\tPNG\tO\nand\tO\tand\tO\nrepresents\tO\trepresents\tO\na\tO\ta\tO\nscreen\tO\tscreen\tO\nshot\tO\tshot\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndefect\tO\tdefect\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/34\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/34\tO\n\t\nJake\tB-User_Name\tJake\tO\nLandis\tI-User_Name\tLandis\tO\nmerged\tO\tmerged\tO\nthis\tO\tthis\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nbranches\tO\tbranches\tO\n!\tO\t!\tO\n\t\nBranch\tO\tBranch\tO\n\t\nCommits\tO\tCommits\tO\n\t\nmaster\tO\tmaster\tO\n\t\nd42c7597b7b6bc192d55a7a787180112a42535cd\tO\td42c7597b7b6bc192d55a7a787180112a42535cd\tO\n,\tO\t,\tO\nffc5b325ee9e8120e553e975128ea15727e75b66\tO\tffc5b325ee9e8120e553e975128ea15727e75b66\tO\n,\tO\t,\tO\na6edf75477b4337584e3d7f1ad1de718d6f6d553\tO\ta6edf75477b4337584e3d7f1ad1de718d6f6d553\tO\n,\tO\t,\tO\n2f4811a015350552fa2b9bce23f5a4443cb16581\tO\t2f4811a015350552fa2b9bce23f5a4443cb16581\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrdzhadan/integracja\tO\trdzhadan/integracja\tO\n-systemow\tO\t-systemow\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/rdzhadan/integracja-systemow\tO\thttps://github.com/rdzhadan/integracja-systemow\tO\n\t\nTODO\tO\tTODO\tO\n:\tO\t:\tO\nUPDATE\tO\tUPDATE\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnerab/TaskWarriorMail\tO\tnerab/TaskWarriorMail\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/nerab/TaskWarriorMail/issues/1\tO\thttps://github.com/nerab/TaskWarriorMail/issues/1\tO\n\t\nWhat\tO\tWhat\tO\nif\tO\tif\tO\na\tO\ta\tO\nmalicious\tO\tmalicious\tO\nhacker\tO\thacker\tO\nsends\tO\tsends\tO\nus\tO\tus\tO\nmail\tO\tmail\tO\nwith\tO\twith\tO\nsubjects\tO\tsubjects\tO\nthat\tO\tthat\tO\nescape\tO\tescape\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nshell\tB-Application\tshell\tO\n?\tO\t?\tO\n\t\nAdd\tO\tAdd\tO\ntests\tO\ttests\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nsafe\tO\tsafe\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/24\tO\thttps://github.com/mapbox/tile-count/issues/24\tO\n\t\nhttps://github.com/mapbox/tile-count/pull/27\tO\thttps://github.com/mapbox/tile-count/pull/27\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nOpenPrograms/MiscPrograms\tO\tOpenPrograms/MiscPrograms\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/OpenPrograms/MiscPrograms/issues/4\tO\thttps://github.com/OpenPrograms/MiscPrograms/issues/4\tO\n\t\nJust\tO\tJust\tO\nsome\tO\tsome\tO\noptimization\tO\toptimization\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nAPI\tB-Library\tAPI\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nupdate\tO\tupdate\tO\nless\tO\tless\tO\noften\tO\toften\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nbrandonscott/nabu\tO\tbrandonscott/nabu\tO\n-ios\tO\t-ios\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/brandonscott/nabu-ios/issues/1\tO\thttps://github.com/brandonscott/nabu-ios/issues/1\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nprovide\tO\tprovide\tO\nsome\tO\tsome\tO\nfurther\tO\tfurther\tO\ndebugging\tO\tdebugging\tO\ninformation\tO\tinformation\tO\n?\tO\t?\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nUtility\tB-Application\tUtility\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nDeveloper\tB-Website\tDeveloper\tO\nPortal\tI-Website\tPortal\tO\nat\tO\tat\tO\n:\tO\t:\tO\nhttp://developer.razerzone.com\tO\thttp://developer.razerzone.com\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nSDK\tB-Application\tSDK\tO\nfiles\tO\tfiles\tO\ndownloaded\tO\tdownloaded\tO\nand\tO\tand\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n?\tO\t?\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/3\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/3\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwriting\tO\twriting\tO\nsome\tO\tsome\tO\ntests\tO\ttests\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvalidation\tO\tvalidation\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nspatial\tO\tspatial\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nto\tO\tto\tO\nan\tO\tan\tO\ninvalid\tO\tinvalid\tO\nvalue\tO\tvalue\tO\nraises\tO\traises\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\nbefore\tO\tbefore\tO\nvalidators\tO\tvalidators\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nspec\tO\tspec\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_38093\tI-Code_Block\tGR_38093\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nModel\tB-Library_Class\tModel\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\ninvalid\tO\tinvalid\tO\nWKT\tB-Language\tWKT\tO\nstring\tB-Data_Type\tstring\tO\n\"\tB-Code_Block\t\"\tB-Code_Block\nPOINT\tI-Code_Block\tPOINT\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nexpect\tO\texpect\tO\nto\tO\tto\tO\nget\tO\tget\tO\nan\tO\tan\tO\nentry\tO\tentry\tO\nin\tO\tin\tO\nmodel.errors\tB-Library_Variable\tmodel.errors\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\nis\tO\tis\tO\nraised\tO\traised\tO\n,\tO\t,\tO\ncausing\tO\tcausing\tO\nthe\tO\tthe\tO\nspec\tO\tspec\tO\nto\tO\tto\tO\nfail\tO\tfail\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nas\tO\tas\tO\nan\tO\tan\tO\nentry\tO\tentry\tO\nin\tO\tin\tO\nerrors\tB-Library_Variable\terrors\tB-Code_Block\nrather\tO\trather\tO\nthan\tO\tthan\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nRails\tO\tRails\tO\nhas\tO\thas\tO\nan\tO\tan\tO\neasier\tO\teasier\tO\ntime\tO\ttime\tO\ndealing\tO\tdealing\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nformer\tO\tformer\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nworkaround\tO\tworkaround\tO\n,\tO\t,\tO\nI\tO\tI\tO\noverrode\tO\toverrode\tO\nthe\tO\tthe\tO\npos\tB-Function_Name\tpos\tB-Code_Block\n=\tI-Function_Name\t=\tI-Code_Block\nmethod\tO\tmethod\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_38094\tI-Code_Block\tGR_38094\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhich\tO\tWhich\tO\nsimply\tO\tsimply\tO\nturns\tO\tturns\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nentry\tO\tentry\tO\nin\tO\tin\tO\nerrors\tB-Library_Variable\terrors\tB-Code_Block\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsdookadr/overflow\tO\twsdookadr/overflow\tO\n-checker\tO\t-checker\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsdookadr/fieldtop/issues/5\tO\thttps://github.com/wsdookadr/fieldtop/issues/5\tO\n\t\n…\tO\t…\tO\nmore\tO\tmore\tO\nmore\tO\tmore\tO\nfeatures\tO\tfeatures\tO\n.\tO\t.\tO\n\t\nConsole\tB-Application\tConsole\tO\nhelp\tO\thelp\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_47201\tI-Code_Block\tGR_47201\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_47202\tI-Code_Block\tGR_47202\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAdded\tO\tAdded\tO\nnew\tO\tnew\tO\nfeatures\tO\tfeatures\tO\n:\tO\t:\tO\n\t\nAllow\tO\tAllow\tO\nhost/username/password\tO\thost/username/password\tO\nthrough\tO\tthrough\tO\ncli\tB-Application\tcli\tO\n.\tO\t.\tO\n\t\n--max\tB-Library_Variable\t--max\tB-Code_Block\nargument\tO\targument\tO\n:\tO\t:\tO\nto\tO\tto\tO\nlimit\tO\tlimit\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nso\tO\tso\tO\nmany\tO\tmany\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\nconsole\tB-Application\tconsole\tO\nbuffer\tO\tbuffer\tO\nrans\tO\trans\tO\nfull\tO\tfull\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nonly\tO\tonly\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\n.\tO\t.\tO\n\t\n--database\tB-Library_Variable\t--database\tB-Code_Block\nargument\tO\targument\tO\n:\tO\t:\tO\nto\tO\tto\tO\nlimit\tO\tlimit\tO\nto\tO\tto\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\ndozens\tO\tdozens\tO\nof\tO\tof\tO\ndatabase\tO\tdatabase\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ntook\tO\ttook\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nwas\tO\twas\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nNext\tO\tNext\tO\nsteps\tO\tsteps\tO\n\t\nAdd\tO\tAdd\tO\nit\tO\tit\tO\nto\tO\tto\tO\npackagist.org\tB-Website\tpackagist.org\tO\n\t\nMaybe\tO\tMaybe\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\nnew\tO\tnew\tO\nsorting\tO\tsorting\tO\nso\tO\tso\tO\n--max\tB-Library_Variable\t--max\tB-Code_Block\nmakes\tO\tmakes\tO\nmore\tO\tmore\tO\nsense\tO\tsense\tO\n(\tO\t(\tO\nin\tO\tin\tO\nterms\tO\tterms\tO\nof\tO\tof\tO\n:\tO\t:\tO\nsort\tO\tsort\tO\nit\tO\tit\tO\nthat\tO\tthat\tO\ninteresting\tO\tinteresting\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\npaulr60/mhbc1\tO\tpaulr60/mhbc1\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/paulr60/mhbc1\tO\thttps://github.com/paulr60/mhbc1\tO\n\t\nRuby\tB-Library\tRuby\tO\non\tI-Library\ton\tO\nRails\tI-Library\tRails\tO\nbased\tO\tbased\tO\nwebsite\tO\twebsite\tO\nfor\tO\tfor\tO\nMontgomery\tO\tMontgomery\tO\nHills\tO\tHills\tO\nBaptist\tO\tBaptist\tO\nChurch\tO\tChurch\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nMontomgery\tO\tMontomgery\tO\nHills\tO\tHills\tO\nBaptist\tO\tBaptist\tO\nChurch\tO\tChurch\tO\nlocated\tO\tlocated\tO\nin\tO\tin\tO\nWheaton\tO\tWheaton\tO\n,\tO\t,\tO\nMD\tO\tMD\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmadison-kerndt/off\tO\tmadison-kerndt/off\tO\n-on-guard-synesthesia\tO\t-on-guard-synesthesia\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/12\tO\thttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/12\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/13\tO\thttps://github.com/contributte/logging/issues/13\tO\n\t\nHi\tO\tHi\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n#11\tO\t#11\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/11\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/11\tO\n\t\n\t\nCoverage\tO\tCoverage\tO\nremained\tO\tremained\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nat\tO\tat\tO\n87.081\tO\t87.081\tO\n%\tO\t%\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\n58a3d960734287ec5d1e0800f4c7f0786d444eae\tO\t58a3d960734287ec5d1e0800f4c7f0786d444eae\tO\non\tO\ton\tO\nupdate-project\tO\tupdate-project\tO\ninto\tO\tinto\tO\n7d213e9298552cbd544cad3380ebbffb4616670e\tO\t7d213e9298552cbd544cad3380ebbffb4616670e\tO\non\tO\ton\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/26\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/26\tO\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nright\tO\tright\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ncapture\tO\tcapture\tO\na\tO\ta\tO\nlogcat\tB-Application\tlogcat\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/7\tO\thttps://github.com/svenstaro/flamejam/issues/7\tO\n\t\nWe\tO\tWe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nbots\tO\tbots\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nandrewlundy/hello\tO\tandrewlundy/hello\tO\n-world\tO\t-world\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/andrewlundy/hello-world\tO\thttps://github.com/andrewlundy/hello-world\tO\n\t\nhello-world\tO\thello-world\tO\n\t\nMy\tO\tMy\tO\nname\tO\tname\tO\nis\tO\tis\tO\nAndrew\tB-User_Name\tAndrew\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nfront-end\tO\tfront-end\tO\nweb\tO\tweb\tO\ndeveloper\tO\tdeveloper\tO\nwho\tO\twho\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nbuilding\tO\tbuilding\tO\nmy\tO\tmy\tO\nback-end\tO\tback-end\tO\nskills\tO\tskills\tO\n!\tO\t!\tO\n\t\nJust\tO\tJust\tO\ncreating\tO\tcreating\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nrepository\tO\trepository\tO\nand\tO\tand\tO\nmaking\tO\tmaking\tO\ncommits\tO\tcommits\tO\n.\tO\t.\tO\n\t\nTesting\tO\tTesting\tO\nedits\tO\tedits\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/6\tO\thttps://github.com/zeroepoch/plotbitrate/issues/6\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\noptions\tO\toptions\tO\nfor\tO\tfor\tO\nsetting\tO\tsetting\tO\nlimits\tO\tlimits\tO\nin\tO\tin\tO\nmatplotlib\tB-Library\tmatplotlib\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\ndefinitely\tO\tdefinitely\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/22\tO\thttps://github.com/mapbox/tile-count/issues/22\tO\n\t\nSparse\tO\tSparse\tO\nareas\tO\tareas\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nworld\tO\tworld\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nbetter\tO\tbetter\tO\ndocumented\tO\tdocumented\tO\nif\tO\tif\tO\nwe\tO\twe\tO\nconnected\tO\tconnected\tO\nlines\tO\tlines\tO\nbetween\tO\tbetween\tO\nsamples\tO\tsamples\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\njust\tO\tjust\tO\nincluding\tO\tincluding\tO\ndots\tO\tdots\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsamples\tO\tsamples\tO\nthemselves\tO\tthemselves\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndownside\tO\tdownside\tO\n:\tO\t:\tO\nmore\tO\tmore\tO\nvisual\tO\tvisual\tO\nnoise\tO\tnoise\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nGPS\tB-Device\tGPS\tO\nerror\tO\terror\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/117\tO\thttps://github.com/linked-statistics/xkos/issues/117\tO\n\t\nOriginal\tO\tOriginal\tO\nissue\tO\tissue\tO\n:\tO\t:\tO\n#80\tO\t#80\tO\n\t\nXKOS\tB-Library\tXKOS\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\npropose\tO\tpropose\tO\nany\tO\tany\tO\nmechanism\tO\tmechanism\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nthe\tO\tthe\tO\npossibility\tO\tpossibility\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\ndetails\tO\tdetails\tO\non\tO\ton\tO\nhow\tO\thow\tO\ncorrespondence\tO\tcorrespondence\tO\nlinks\tO\tlinks\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nestablished\tO\testablished\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nlinkset\tO\tlinkset\tO\nlevel\tO\tlevel\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/32\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/32\tO\n\t\nThis\tO\tThis\tO\nPR\tO\tPR\tO\n:\tO\t:\tO\n\t\nUpdates\tO\tUpdates\tO\nBluebird\tB-Library\tBluebird\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nout\tO\tout\tO\nof\tO\tof\tO\ndate\tO\tdate\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nsupport\tO\tsupport\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\ncatchReturn\tB-Library_Function\tcatchReturn\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nsome\tO\tsome\tO\ndownstream\tO\tdownstream\tO\nprojects\tO\tprojects\tO\nassume\tO\tassume\tO\nexist\tO\texist\tO\n)\tO\t)\tO\n\t\nAdds\tO\tAdds\tO\nerror\tO\terror\tO\nhandling\tO\thandling\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncreateReadStream\tB-Library_Function\tcreateReadStream\tB-Code_Block\ncall\tO\tcall\tO\n-\tO\t-\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nactually\tO\tactually\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\ncausing\tO\tcausing\tO\nissues\tO\tissues\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nresin-device-init\tB-Application\tresin-device-init\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncertainly\tO\tcertainly\tO\na\tO\ta\tO\nrisky\tO\trisky\tO\noperation\tO\toperation\tO\nthat\tO\tthat\tO\npreviously\tO\tpreviously\tO\nwould\tO\twould\tO\nsilently\tO\tsilently\tO\nimplode\tO\timplode\tO\nif\tO\tif\tO\nit\tO\tit\tO\nfails\tO\tfails\tO\n(\tO\t(\tO\nand\tO\tand\tO\nwhich\tO\twhich\tO\nnow\tO\tnow\tO\nproperly\tO\tproperly\tO\nemits\tO\temits\tO\nan\tO\tan\tO\nerror\tO\terror\tO\ninstead\tO\tinstead\tO\n)\tO\t)\tO\n\t\nMove\tO\tMove\tO\nfrom\tO\tfrom\tO\nusing\tO\tusing\tO\n.on()\tB-Library_Function\t.on()\tB-Code_Block\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\n.removeListener\tB-Library_Function\t.removeListener\tB-Code_Block\nto\tO\tto\tO\nuse\tO\tuse\tO\n.once\tB-Library_Function\t.once\tB-Code_Block\ninstead\tO\tinstead\tO\n,\tO\t,\tO\nand\tO\tand\tO\ngenerally\tO\tgenerally\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nclearer\tO\tclearer\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/36\tO\thttps://github.com/smirarab/pasta/issues/36\tO\n\t\nHi\tO\tHi\tO\nMike\tB-User_Name\tMike\tO\n,\tO\t,\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAlthough\tO\tAlthough\tO\n2.7\tB-Version\t2.7\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ndefault\tO\tdefault\tO\npython\tB-Language\tpython\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\nconfigure.py\tB-File_Name\tconfigure.py\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\npython\tB-Language\tpython\tO\n3.6\tB-Version\t3.6\tO\n'\tO\t'\tO\ns\tO\ts\tO\nconfigparser\tB-Library_Class\tconfigparser\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfixed\tO\tfixed\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\npython\tB-Code_Block\tpython\tB-Code_Block\nsetup.py\tI-Code_Block\tsetup.py\tI-Code_Block\ndevelop\tI-Code_Block\tdevelop\tI-Code_Block\nagain\tO\tagain\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\na\tO\ta\tO\nconda\tB-Application\tconda\tO\npy2.7\tB-Language\tpy2.7\tO\nenvironment\tO\tenvironment\tO\n.\tO\t.\tO\n\t\nBest\tO\tBest\tO\n,\tO\t,\tO\nNada\tB-User_Name\tNada\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/24\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/24\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nUnreal\tB-Application\tUnreal\tO\nengine\tI-Application\tengine\tO\n4.19\tB-Version\t4.19\tO\nwith\tO\twith\tO\nARCore\tB-Application\tARCore\tO\nSDK\tI-Application\tSDK\tO\n1.2.1\tB-Version\t1.2.1\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ngiven\tO\tgiven\tO\nin\tO\tin\tO\nARcore\tB-Application\tARcore\tO\nwith\tO\twith\tO\nUnreal\tB-Application\tUnreal\tO\nengine\tI-Application\tengine\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nofficial\tO\tofficial\tO\nARCore\tB-Application\tARCore\tO\nsite\tO\tsite\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/26\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/26\tO\n\t\nWhich\tO\tWhich\tO\nphone\tB-Device\tphone\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\ntesting\tO\ttesting\tO\non\tO\ton\tO\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\nget\tO\tget\tO\nSupportedNotInstalled\tB-Error_Name\tSupportedNotInstalled\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nphone\tB-Device\tphone\tO\nis\tO\tis\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nARCore\tB-Application\tARCore\tO\napk\tI-Application\tapk\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\ninstalled\tO\tinstalled\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/24\tO\thttps://github.com/mapbox/tile-count/issues/24\tO\n\t\nCurrently\tO\tCurrently\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\navailable\tO\tavailable\tO\ncores\tB-Device\tcores\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\n@ericfischer\tB-User_Name\t@ericfischer\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nusing\tO\tusing\tO\ndocker\tB-Application\tdocker\tO\non\tO\ton\tO\nECS\tB-Application\tECS\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ncluster\tO\tcluster\tO\navailability\tO\tavailability\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nreservation\tO\treservation\tO\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\nan\tO\tan\tO\noption\tO\toption\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nmax\tO\tmax\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ncpus\tB-Device\tcpus\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/20\tO\thttps://github.com/demigor/lex.db/issues/20\tO\n\t\nSupport\tO\tSupport\tO\nfor\tO\tfor\tO\nSortedSet\tB-Library_Class\tSortedSet\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\neasily\tO\teasily\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\nthe\tO\tthe\tO\nList\tB-Data_Structure\tList\tO\nis\tO\tis\tO\nimplemented\tO\timplemented\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\ninclude\tO\tinclude\tO\nSortedSet\tB-Library_Class\tSortedSet\tO\nand\tO\tand\tO\nMIT\tB-Licence\tMIT\tO\nlicense\tI-Licence\tlicense\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2/issues/2\tO\thttps://github.com/thehyve/puppet-i2b2/issues/2\tO\n\t\nBeaker\tB-Application\tBeaker\tO\ntest\tO\ttest\tO\nfails\tO\tfails\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_38589\tI-Code_Block\tGR_38589\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/12\tO\thttps://github.com/koding/kd-atom/issues/12\tO\n\t\nfixes\tO\tfixes\tO\n#1\tO\t#1\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsurol/speedtest\tO\tsurol/speedtest\tO\n-cli\tO\t-cli\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/surol/speedtest-cli/issues/3\tO\thttps://github.com/surol/speedtest-cli/issues/3\tO\n\t\nFixed\tO\tFixed\tO\nin\tO\tin\tO\n#4\tO\t#4\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/36\tO\thttps://github.com/smirarab/pasta/issues/36\tO\n\t\nHi\tO\tHi\tO\nNada\tB-User_Name\tNada\tO\n,\tO\t,\tO\n\t\nThe\tO\tThe\tO\nconfig\tB-File_Type\tconfig\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\npasta\tB-Application\tpasta\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nINI\tB-File_Type\tINI\tO\nfile\tO\tfile\tO\nformat\tO\tformat\tO\n,\tO\t,\tO\nspecifically\tO\tspecifically\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nused\tO\tused\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\npython\tB-Language\tpython\tO\nconfigparser\tB-Library_Class\tconfigparser\tO\nmodule\tO\tmodule\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nhttps://docs.python.org/3/library/configparser.html\tO\thttps://docs.python.org/3/library/configparser.html\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nsome\tO\tsome\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncfg\tB-File_Type\tcfg\tO\nfile\tO\tfile\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nconform\tO\tconform\tO\nto\tO\tto\tO\nthose\tO\tthose\tO\nspecs\tO\tspecs\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\nPASTA\tB-Application\tPASTA\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nspecific\tO\tspecific\tO\nsection\tO\tsection\tO\nand\tO\tand\tO\nkey\tO\tkey\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nconfig\tB-File_Type\tconfig\tO\nfile\tO\tfile\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nrun\tO\trun\tO\npasta\tB-Application\tpasta\tO\non\tO\ton\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexamples\tO\texamples\tO\nand\tO\tand\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nconfig\tB-File_Type\tconfig\tO\nfile\tO\tfile\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ncreated\tO\tcreated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\npopulated\tO\tpopulated\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nsettings\tO\tsettings\tO\n(\tO\t(\tO\nexcpet\tO\texcpet\tO\nfor\tO\tfor\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\ninput\tO\tinput\tO\nand\tO\tand\tO\noutput\tO\toutput\tO\npaths\tO\tpaths\tO\nand\tO\tand\tO\nsuch\tO\tsuch\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nusing\tO\tusing\tO\nthat\tO\tthat\tO\nas\tO\tas\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nconfig\tB-File_Type\tconfig\tO\nfile\tO\tfile\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nMike\tB-User_Name\tMike\tO\n\t\nOn\tO\tOn\tO\nWed\tO\tWed\tO\n,\tO\t,\tO\nOct\tO\tOct\tO\n3\tO\t3\tO\n,\tO\t,\tO\n2018\tO\t2018\tO\nat\tO\tat\tO\n4:25\tO\t4:25\tO\nPM\tO\tPM\tO\nNada\tB-User_Name\tNada\tO\nElnour\tI-User_Name\tElnour\tO\nnotifications@github.com\tO\tnotifications@github.com\tO\nwrote\tO\twrote\tO\n:\tO\t:\tO\n\t\nHello\tO\tHello\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nencountering\tO\tencountering\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nwhen\tO\twhen\tO\nattemping\tO\tattemping\tO\nto\tO\tto\tO\nanalyze\tO\tanalyze\tO\na\tO\ta\tO\nFASTA\tB-Application\tFASTA\tO\ncollection\tO\tcollection\tO\nusing\tO\tusing\tO\nrun_pasta_gui.py\tB-File_Name\trun_pasta_gui.py\tO\n:\tO\t:\tO\n\t\nPASTA\tB-Error_Name\tPASTA\tO\nERROR\tI-Error_Name\tERROR\tO\n:\tO\t:\tO\nPASTA\tB-Application\tPASTA\tO\nis\tO\tis\tO\nexiting\tO\texiting\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nfile\tO\tfile\tO\n\"\tO\t\"\tO\n/home/nadaelnour/PASTA/pasta/tmpFXAY6D_internal.cfg\tO\t/home/nadaelnour/PASTA/pasta/tmpFXAY6D_internal.cfg\tO\n\"\tO\t\"\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nappear\tO\tappear\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nconfiguration\tO\tconfiguration\tO\nfile\tO\tfile\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nlacks\tO\tlacks\tO\nsection\tO\tsection\tO\nheaders\tO\theaders\tO\n.\tO\t.\tO\n\t\nJob\tB-Library_Class\tJob\tO\npastajob\tB-Variable_Name\tpastajob\tO\nis\tO\tis\tO\nfinished\tO\tfinished\tO\n.\tO\t.\tO\n\t\n—\tO\t—\tO\nYou\tO\tYou\tO\nare\tO\tare\tO\nreceiving\tO\treceiving\tO\nthis\tO\tthis\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsubscribed\tO\tsubscribed\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nReply\tO\tReply\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nemail\tO\temail\tO\ndirectly\tO\tdirectly\tO\n,\tO\t,\tO\nview\tO\tview\tO\nit\tO\tit\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nhttps://github.com/smirarab/pasta/issues/36\tO\thttps://github.com/smirarab/pasta/issues/36\tO\n,\tO\t,\tO\nor\tO\tor\tO\nmute\tO\tmute\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\n\t\nhttps://github.com/notifications/unsubscribe-auth/AAuefehPawYuYugwu15QbtJgkRa8D-Frks5uhR0lgaJpZM4XGze5\tO\thttps://github.com/notifications/unsubscribe-auth/AAuefehPawYuYugwu15QbtJgkRa8D-Frks5uhR0lgaJpZM4XGze5\tO\n\t\n.\tO\t.\tO\n\t\n-\tO\t-\tO\n-\tO\t-\tO\nMichael\tB-User_Name\tMichael\tO\nNute\tI-User_Name\tNute\tO\nMike.Nute@gmail.com\tO\tMike.Nute@gmail.com\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/1\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/1\tO\n\t\nAdd\tO\tAdd\tO\nyarn\tB-Application\tyarn\tO\nconfiguration\tO\tconfiguration\tO\nfor\tO\tfor\tO\nTravisCI\tB-Application\tTravisCI\tO\n.\tO\t.\tO\n\t\nhttps://blog.travis-ci.com/2016-11-21-travis-ci-now-supports-yarn\tO\thttps://blog.travis-ci.com/2016-11-21-travis-ci-now-supports-yarn\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmongrate/mongrate.com\tO\tmongrate/mongrate.com\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mongrate/mongrate.com/issues/1\tO\thttps://github.com/mongrate/mongrate.com/issues/1\tO\n\t\nFixed\tO\tFixed\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app/issues/8\tO\thttps://github.com/lbarasti/gps_app/issues/8\tO\n\t\nThe\tO\tThe\tO\nrefresh\tO\trefresh\tO\nrate\tO\trate\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\ntoo\tO\ttoo\tO\nhigh\tO\thigh\tO\nat\tO\tat\tO\n1Hz\tO\t1Hz\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\nbuses\tO\tbuses\tO\nonly\tO\tonly\tO\nreport\tO\treport\tO\nevery\tO\tevery\tO\nminute\tO\tminute\tO\nrefresh\tO\trefresh\tO\ncould\tO\tcould\tO\nhappily\tO\thappily\tO\ndrop\tO\tdrop\tO\nto\tO\tto\tO\nonce\tO\tonce\tO\nevery\tO\tevery\tO\n10s\tO\t10s\tO\nor\tO\tor\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\nif\tO\tif\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\nget\tO\tget\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nflicker\tO\tflicker\tO\non\tO\ton\tO\nrefresh\tO\trefresh\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/27\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/27\tO\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nrails-5\tB-Library\trails-5\tB-Code_Block\nbranch\tO\tbranch\tO\n,\tO\t,\tO\n#32\tO\t#32\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/22\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/22\tO\n\t\nJordan\tB-User_Name\tJordan\tO\nSissel\tI-User_Name\tSissel\tO\nmerged\tO\tmerged\tO\nthis\tO\tthis\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nbranches\tO\tbranches\tO\n!\tO\t!\tO\n\t\nBranch\tO\tBranch\tO\n\t\nCommits\tO\tCommits\tO\n\t\nmaster\tO\tmaster\tO\n\t\nd42aa5ff607025cda8138a29f5531854ae3a3b85\tO\td42aa5ff607025cda8138a29f5531854ae3a3b85\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/14\tO\thttps://github.com/spacetelescope/specview/issues/14\tO\n\t\nFor\tO\tFor\tO\na\tO\ta\tO\nprototype\tO\tprototype\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\ntoo\tO\ttoo\tO\ncritical\tO\tcritical\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nopening\tO\topening\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nanyways\tO\tanyways\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njamstooks/django\tO\tjamstooks/django\tO\n-acme-challenge\tO\t-acme-challenge\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/jamstooks/django-acme-challenge\tO\thttps://github.com/jamstooks/django-acme-challenge\tO\n\t\ndjango-acme-challenge\tO\tdjango-acme-challenge\tO\n\t\nA\tO\tA\tO\nquick\tO\tquick\tO\ntool\tO\ttool\tO\nto\tO\tto\tO\nserve\tO\tserve\tO\nthe\tO\tthe\tO\nacme-challenge\tB-Library\tacme-challenge\tO\nverification\tO\tverification\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ncreating\tO\tcreating\tO\nan\tO\tan\tO\nSSL\tO\tSSL\tO\ncertificate\tO\tcertificate\tO\nwith\tO\twith\tO\nLet\tB-Application\tLet\tO\n's\tO\t's\tO\nEncrypt\tI-Application\tEncrypt\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nserve\tO\tserve\tO\na\tO\ta\tO\npage\tB-User_Interface_Element\tpage\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nconfirm\tO\tconfirm\tO\nyou\tO\tyou\tO\nown\tO\town\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_168133\tI-Code_Block\tGR_168133\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\napp\tO\tapp\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nway\tO\tway\tO\nto\tO\tto\tO\nserve\tO\tserve\tO\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nthat\tO\tthat\tO\npage\tB-User_Interface_Element\tpage\tO\nfrom\tO\tfrom\tO\ntwo\tO\ttwo\tO\nsettings\tO\tsettings\tO\nvariables\tO\tvariables\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nPyPI\tB-Library\tPyPI\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_168134\tI-Code_Block\tGR_168134\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGithub\tB-Website\tGithub\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_168135\tI-Code_Block\tGR_168135\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSettings\tO\tSettings\tO\n\t\nAdd\tO\tAdd\tO\n'\tB-Code_Block\t'\tB-Code_Block\nacme_challenge\tI-Code_Block\tacme_challenge\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nto\tO\tto\tO\nyour\tO\tyour\tO\ninstalled\tO\tinstalled\tO\napps\tO\tapps\tO\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nyour\tO\tyour\tO\nurls.py\tB-File_Name\turls.py\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_168136\tI-Code_Block\tGR_168136\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJust\tO\tJust\tO\nset\tO\tset\tO\ntwo\tO\ttwo\tO\nvariables\tO\tvariables\tO\n(\tO\t(\tO\nI\tO\tI\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nthese\tO\tthese\tO\nwith\tO\twith\tO\nenv\tO\tenv\tO\nvars\tO\tvars\tO\n,\tO\t,\tO\npersonally\tO\tpersonally\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nACME_CHALLENGE_URL_SLUG\tB-Library_Variable\tACME_CHALLENGE_URL_SLUG\tB-Code_Block\n\t\nACME_CHALLENGE_TEMPLATE_CONTENT\tB-Library_Variable\tACME_CHALLENGE_TEMPLATE_CONTENT\tB-Code_Block\n\t\nhttp://your-domain-name/.well-known/acme-challenge/ACME_CHALLENGE_URL_SLUG\tB-Code_Block\thttp://your-domain-name/.well-known/acme-challenge/ACME_CHALLENGE_URL_SLUG\tB-Code_Block\n\t\nwill\tO\twill\tO\nthen\tO\tthen\tO\nserve\tO\tserve\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nACME_CHALLENGE_TEMPLATE_CONTENT\tB-Library_Variable\tACME_CHALLENGE_TEMPLATE_CONTENT\tB-Code_Block\n\t\nfor\tO\tfor\tO\nvalidation\tO\tvalidation\tO\n.\tO\t.\tO\n\t\nCompatibility\tO\tCompatibility\tO\n\t\nSupport\tO\tSupport\tO\nDjango\tB-Library\tDjango\tO\n1.8\tB-Version\t1.8\tO\n-\tO\t-\tO\n2.0\tB-Version\t2.0\tO\nand\tO\tand\tO\nPython\tB-Language\tPython\tO\n2\tB-Version\t2\tO\n&\tO\t&\tO\n3\tB-Version\t3\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/79\tO\thttps://github.com/spacetelescope/specview/issues/79\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nactive\tO\tactive\tO\n.Not\tB-Library\t.Not\tO\nin\tO\tin\tO\ndevelopment\tO\tdevelopment\tO\nterms\tO\tterms\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nstill\tO\tstill\tO\ncontain\tO\tcontain\tO\nsolutions\tO\tsolutions\tO\nthat\tO\tthat\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nported\tO\tported\tO\nto\tO\tto\tO\nspecviz\tB-Library\tspecviz\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsdookadr/overflow\tO\twsdookadr/overflow\tO\n-checker\tO\t-checker\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsdookadr/fieldtop/issues/5\tO\thttps://github.com/wsdookadr/fieldtop/issues/5\tO\n\t\n\t\nWhile\tO\tWhile\tO\nSymfony\tB-Library\tSymfony\tO\nusers\tO\tusers\tO\nmay\tO\tmay\tO\nfind\tO\tfind\tO\nthis\tO\tthis\tO\ntool\tO\ttool\tO\nuseful\tO\tuseful\tO\nand\tO\tand\tO\nwe\tO\twe\tO\nwould\tO\twould\tO\nwelcome\tO\twelcome\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ntool\tO\ttool\tO\n,\tO\t,\tO\nour\tO\tour\tO\ncommon\tO\tcommon\tO\ngoal\tO\tgoal\tO\nis\tO\tis\tO\nto\tO\tto\tO\nmaximize\tO\tmaximize\tO\nthe\tO\tthe\tO\nuser-base\tO\tuser-base\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nreach\tO\treach\tO\nthat\tO\tthat\tO\ngoal\tO\tgoal\tO\nwe\tO\twe\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nclose\tO\tclose\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nPHP\tB-Language\tPHP\tO\nships\tO\tships\tO\nwith\tO\twith\tO\n\t\nEvery\tO\tEvery\tO\nphp\tB-Language\tphp\tO\napplication\tO\tapplication\tO\nhas\tO\thas\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nuser-base\tO\tuser-base\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndecreased\tO\tdecreased\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\ndependencies\tO\tdependencies\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nyou\tO\tyou\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nlibrary\tO\tlibrary\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nfieldtop\tB-Application\tfieldtop\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\n)\tO\t)\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nhigh\tO\thigh\tO\nportability\tO\tportability\tO\nbetween\tO\tbetween\tO\nvarious\tO\tvarious\tO\nversions\tO\tversions\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\neven\tO\teven\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nlibrary\tO\tlibrary\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndependency\tO\tdependency\tO\nrequirements\tO\trequirements\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\nliberal\tO\tliberal\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nhas\tO\thas\tO\nSymfony\tB-Application\tSymfony\tO\nconsole\tI-Application\tconsole\tO\n~\tB-Version\t~\tB-Code_Block\n2.3\tI-Version\t2.3\tI-Code_Block\n||\tO\t||\tI-Code_Block\n~\tB-Version\t~\tI-Code_Block\n3.0\tI-Version\t3.0\tI-Code_Block\nwhich\tO\twhich\tO\nmeans\tO\tmeans\tO\nbasically\tO\tbasically\tO\nall\tO\tall\tO\nversion\tO\tversion\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nyears\tO\tyears\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\naware\tO\taware\tO\nof\tO\tof\tO\nit\tO\tit\tO\n:\tO\t:\tO\nA\tO\tA\tO\nSymfony\tB-Library\tSymfony\tO\ncomponent\tO\tcomponent\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nSymfony\tB-Library\tSymfony\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\none\tO\tone\tO\ncomponent\tO\tcomponent\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\none\tO\tone\tO\ncomponent\tO\tcomponent\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nSymfony\tB-Library\tSymfony\tO\ncompletely\tO\tcompletely\tO\nnor\tO\tnor\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nrestrict\tO\trestrict\tO\nthe\tO\tthe\tO\nusage\tO\tusage\tO\nto\tO\tto\tO\nSymfony\tB-Library\tSymfony\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nexclude\tO\texclude\tO\npeople\tO\tpeople\tO\nwith\tO\twith\tO\ndifferent\tO\tdifferent\tO\nSymfony\tB-Library\tSymfony\tO\nversions\tO\tversions\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nour\tO\tour\tO\nversion\tO\tversion\tO\nconstraint\tO\tconstraint\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nloose\tO\tloose\tO\n)\tO\t)\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nperfectly\tO\tperfectly\tO\nfine\tO\tfine\tO\nwith\tO\twith\tO\ndifferent\tO\tdifferent\tO\nframeworks\tO\tframeworks\tO\n(\tO\t(\tO\nCakePHP/Laravel/Zend/..\tB-Library\tCakePHP/Laravel/Zend/..\tO\n.\tO\t.\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\npeople\tO\tpeople\tO\nwill\tO\twill\tO\nintegrate\tO\tintegrate\tO\nfieldtop\tB-Application\tfieldtop\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\nproject\tO\tproject\tO\nas\tO\tas\tO\nclass\tO\tclass\tO\ndependencies\tO\tdependencies\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nas\tO\tas\tO\napplication\tO\tapplication\tO\ndependency\tO\tdependency\tO\n;\tO\t;\tO\nMeans\tO\tMeans\tO\n:\tO\t:\tO\nThey\tO\tThey\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nbinary\tO\tbinary\tO\n\"\tO\t\"\tO\nfieldtop\tB-Application\tfieldtop\tB-Code_Block\n,\tO\t,\tO\nnot\tO\tnot\tO\nyour\tO\tyour\tO\nphp\tB-Language\tphp\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmentioned\tO\tmentioned\tO\nphp\tB-Language\tphp\tO\nversion\tO\tversion\tO\nconstraint\tO\tconstraint\tO\nto\tO\tto\tO\nphp\tB-Language\tphp\tO\n5.5.9\tB-Version\t5.5.9\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nmay\tO\tmay\tO\ndecrease\tO\tdecrease\tO\nthe\tO\tthe\tO\nuser-base\tO\tuser-base\tO\neven\tO\teven\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nstatement\tO\tstatement\tO\nabout\tO\tabout\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\nPHP\tB-Language\tPHP\tO\n5.5\tB-Version\t5.5\tO\nand\tO\tand\tO\nlow\tO\tlow\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nsupported\tO\tsupported\tO\nversion\tO\tversion\tO\nanymore\tO\tanymore\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nphp\tB-Language\tphp\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\ntip\tO\ttip\tO\nmaybe\tO\tmaybe\tO\n:\tO\t:\tO\nGetting\tO\tGetting\tO\naround\tO\taround\tO\ndependencies\tO\tdependencies\tO\nor\tO\tor\tO\nversion\tO\tversion\tO\nconstraints\tO\tconstraints\tO\ndo\tO\tdo\tO\nusually\tO\tusually\tO\nnot\tO\tnot\tO\nincrease\tO\tincrease\tO\nnoticeable\tO\tnoticeable\tO\na\tO\ta\tO\nuser-base\tO\tuser-base\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nonly\tO\tonly\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\nlive\tO\tlive\tO\ndramatically\tO\tdramatically\tO\nmore\tO\tmore\tO\ndifficult\tO\tdifficult\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nProjects\tO\tProjects\tO\nwith\tO\twith\tO\nold\tO\told\tO\ncode\tO\tcode\tO\nbase\tO\tbase\tO\nand\tO\tand\tO\nold\tO\told\tO\nphp\tB-Language\tphp\tO\nversions\tO\tversions\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\npain\tO\tpain\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nboth\tO\tboth\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nowner\tO\towner\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nedge\tO\tedge\tO\ncase\tO\tcase\tO\nscenarios\tO\tscenarios\tO\n(\tO\t(\tO\nuser\tO\tuser\tO\nA\tO\tA\tO\nhas\tO\thas\tO\na\tO\ta\tO\nsame\tO\tsame\tO\ndependency\tO\tdependency\tO\nbut\tO\tbut\tO\nwith\tO\twith\tO\nextremely\tO\textremely\tO\nold\tO\told\tO\nversion\tO\tversion\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nhigher\tO\thigher\tO\ncosts\tO\tcosts\tO\nof\tO\tof\tO\nmaintenance\tO\tmaintenance\tO\n.\tO\t.\tO\n\t\nWrite\tO\tWrite\tO\nSymfony\tB-Application\tSymfony\tO\nConsole\tI-Application\tConsole\tO\nvia\tO\tvia\tO\ngetopt\tB-Library_Function\tgetopt\tB-Code_Block\non\tO\ton\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nshould\tO\tshould\tO\nsimply\tO\tsimply\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ngoal\tO\tgoal\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nwaste\tO\twaste\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nbenefit\tO\tbenefit\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\n:\tO\t:\tO\n\t\nhigher\tO\thigher\tO\nuser-base\tO\tuser-base\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nalexyer/orderup\tO\talexyer/orderup\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/alexyer/orderup/issues/1\tO\thttps://github.com/alexyer/orderup/issues/1\tO\n\t\nHi\tO\tHi\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmadison-kerndt/off\tO\tmadison-kerndt/off\tO\n-on-guard-synesthesia\tO\t-on-guard-synesthesia\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/32\tO\thttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/32\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmadison-kerndt/off\tO\tmadison-kerndt/off\tO\n-on-guard-synesthesia\tO\t-on-guard-synesthesia\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/20\tO\thttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/20\tO\n\t\nFor\tO\tFor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\ntag\tO\ttag\tO\nand\tO\tand\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nplaying\tO\tplaying\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nis\tO\tis\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\npath\tO\tpath\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nfile\tO\tfile\tO\nor\tO\tor\tO\nhow\tO\thow\tO\nI\tO\tI\tO\nam\tO\tam\tO\ncalling\tO\tcalling\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nyou\tO\tyou\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/2\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/2\tO\n\t\nWebpack-sandboxed\tB-Application\tWebpack-sandboxed\tO\nshould\tO\tshould\tO\nsupport\tO\tsupport\tO\nvendor\tO\tvendor\tO\nsplitting\tO\tsplitting\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/20\tO\thttps://github.com/demigor/lex.db/issues/20\tO\n\t\nHello\tO\tHello\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nplan\tO\tplan\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nnative\tO\tnative\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nsaving\tO\tsaving\tO\nSortedSet\tB-Library_Class\tSortedSet\tO\nin\tO\tin\tO\nLex.Db\tB-Application\tLex.Db\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nmaybe\tO\tmaybe\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsuggest\tO\tsuggest\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\nnow\tO\tnow\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnerab/TaskWarriorMail\tO\tnerab/TaskWarriorMail\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/nerab/TaskWarriorMail/issues/2\tO\thttps://github.com/nerab/TaskWarriorMail/issues/2\tO\n\t\nSignatures\tO\tSignatures\tO\nseparated\tO\tseparated\tO\nby\tO\tby\tO\n\"\tO\t\"\tO\n-\tO\t-\tO\n-\tO\t-\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\ndash-dash-space\tO\tdash-dash-space\tO\n)\tO\t)\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nthrown\tO\tthrown\tO\naway\tO\taway\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nManuelDeLeon/vmc2jsx\tO\tManuelDeLeon/vmc2jsx\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/ManuelDeLeon/vmc2jsx\tO\thttps://github.com/ManuelDeLeon/vmc2jsx\tO\n\t\nviewmodel-react-plugin\tO\tviewmodel-react-plugin\tO\n\t\nConverts\tO\tConverts\tO\nViewModel\tB-Library\tViewModel\tO\ncode\tO\tcode\tO\ninto\tO\tinto\tO\nReact\tB-Library\tReact\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/15\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/15\tO\n\t\nReleased\tO\tReleased\tO\nwith\tO\twith\tO\nv1.0.1\tB-Version\tv1.0.1\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nplugin\tO\tplugin\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nfinding\tO\tfinding\tO\nthis\tO\tthis\tO\n@wanghq\tB-User_Name\t@wanghq\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngetconversio/mongoose\tO\tgetconversio/mongoose\tO\n-paginate\tO\t-paginate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/getconversio/mongoose-paginate/issues/1\tO\thttps://github.com/getconversio/mongoose-paginate/issues/1\tO\n\t\nThis\tO\tThis\tO\npackage\tO\tpackage\tO\nis\tO\tis\tO\nunmantained\tO\tunmantained\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nshould\tO\tshould\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nfix\tO\tfix\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmeantime\tO\tmeantime\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsdookadr/overflow\tO\twsdookadr/overflow\tO\n-checker\tO\t-checker\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsdookadr/fieldtop/issues/6\tO\thttps://github.com/wsdookadr/fieldtop/issues/6\tO\n\t\nHi\tO\tHi\tO\nI\tO\tI\tO\n've\tO\t've\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nfieldtop\tB-Application\tfieldtop\tO\n:\tO\t:\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndisplay\tO\tdisplay\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n.\tO\t.\tO\n\t\nuser\tO\tuser\tO\n@host\tO\t@host\tO\n:\tO\t:\tO\n~\tO\t~\tO\n$\tO\t$\tO\ncurl\tO\tcurl\tO\nhttp://localhost/fieldtop/fieldtop.php\tO\thttp://localhost/fieldtop/fieldtop.php\tO\nvOAutresAdh�rent\tO\tvOAutresAdh�rent\tO\nuser\tO\tuser\tO\n@host\tO\t@host\tO\n:\tO\t:\tO\n~\tO\t~\tO\n$\tO\t$\tO\n\t\nThe\tO\tThe\tO\ncolumn\tB-Data_Structure\tcolumn\tO\ndisplayed\tO\tdisplayed\tO\ncontains\tO\tcontains\tO\nmostly\tO\tmostly\tO\nnull\tO\tnull\tO\nvalue\tO\tvalue\tO\n(\tO\t(\tO\n18Knull\tO\t18Knull\tO\nand\tO\tand\tO\n3\tO\t3\tO\nnon\tO\tnon\tO\nnull\tO\tnull\tO\nvalue\tO\tvalue\tO\n)\tO\t)\tO\nThe\tO\tThe\tO\nexecution\tO\texecution\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nfieldtop.sql\tB-File_Name\tfieldtop.sql\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\na\tO\ta\tO\nmysql\tB-Application\tmysql\tO\nconsole\tI-Application\tconsole\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\n4001\tO\t4001\tO\nrows\tB-Data_Structure\trows\tO\nof\tO\tof\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nrename\tO\trename\tO\nmy\tO\tmy\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthe\tO\tthe\tO\né\tO\té\tO\ncharacter\tO\tcharacter\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nhours\tO\thours\tO\nto\tO\tto\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ndatabase\tO\tdatabase\tO\nhas\tO\thas\tO\n4001\tO\t4001\tO\ncolumns\tO\tcolumns\tO\nand\tO\tand\tO\n70Go\tO\t70Go\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\n,\tO\t,\tO\nso\tO\tso\tO\ni\tO\ti\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nlightning\tO\tlightning\tO\nfast\tO\tfast\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nstill\tO\tstill\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/1\tO\thttps://github.com/op-jenkins/op-build/issues/1\tO\n\t\nretest\tO\tretest\tO\nthis\tO\tthis\tO\nplease\tO\tplease\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nxavierartot/grunt\tO\txavierartot/grunt\tO\n-parallax-scrollr-svg-png\tO\t-parallax-scrollr-svg-png\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/xavierartot/grunt-parallax-scrollr-svg-png/issues/1\tO\thttps://github.com/xavierartot/grunt-parallax-scrollr-svg-png/issues/1\tO\n\t\n🚨\tO\t🚨\tO\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nenable\tO\tenable\tO\nContinuous\tO\tContinuous\tO\nIntegration\tO\tIntegration\tO\non\tO\ton\tO\nall\tO\tall\tO\nbranches\tO\tbranches\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\n.\tO\t.\tO\n\t\n🚨\tO\t🚨\tO\n\t\nTo\tO\tTo\tO\nenable\tO\tenable\tO\nGreenkeeper\tO\tGreenkeeper\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ncommit\tO\tcommit\tO\nstatus\tO\tstatus\tO\nis\tO\tis\tO\nreported\tO\treported\tO\non\tO\ton\tO\nall\tO\tall\tO\nbranches\tO\tbranches\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\nby\tO\tby\tO\nGreenkeeper\tO\tGreenkeeper\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\nyour\tO\tyour\tO\nCI\tO\tCI\tO\nbuild\tO\tbuild\tO\nstatuses\tO\tstatuses\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhen\tO\twhen\tO\nto\tO\tto\tO\nnotify\tO\tnotify\tO\nyou\tO\tyou\tO\nabout\tO\tabout\tO\nbreaking\tO\tbreaking\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nwe\tO\twe\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nreceive\tO\treceive\tO\na\tO\ta\tO\nCI\tO\tCI\tO\nstatus\tO\tstatus\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ngreenkeeper/initial\tB-Code_Block\tgreenkeeper/initial\tB-Code_Block\nbranch\tO\tbranch\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nCI\tO\tCI\tO\nset\tO\tset\tO\nup\tO\tup\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nrecommend\tO\trecommend\tO\nusing\tO\tusing\tO\nTravis\tO\tTravis\tO\nCI\tO\tCI\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nGreenkeeper\tO\tGreenkeeper\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nevery\tO\tevery\tO\nother\tO\tother\tO\nCI\tO\tCI\tO\nservice\tO\tservice\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\nCI\tO\tCI\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nhow\tO\thow\tO\nit\tO\tit\tO\n's\tO\t's\tO\nconfigured\tO\tconfigured\tO\n.\tO\t.\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\nrun\tO\trun\tO\non\tO\ton\tO\nall\tO\tall\tO\nnew\tO\tnew\tO\nbranches\tO\tbranches\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nrun\tO\trun\tO\non\tO\ton\tO\nabsolutely\tO\tabsolutely\tO\nevery\tO\tevery\tO\nbranch\tO\tbranch\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nwhitelist\tO\twhitelist\tO\nbranches\tO\tbranches\tO\nstarting\tO\tstarting\tO\nwith\tO\twith\tO\ngreenkeeper/\tB-Code_Block\tgreenkeeper/\tB-Code_Block\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ninstalled\tO\tinstalled\tO\nand\tO\tand\tO\nconfigured\tO\tconfigured\tO\nCI\tO\tCI\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\ncorrectly\tO\tcorrectly\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nre-trigger\tO\tre-trigger\tO\nGreenkeeper\tO\tGreenkeeper\tO\n's\tO\t's\tO\ninitial\tO\tinitial\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\ngreenkeeper/initial\tB-Code_Block\tgreenkeeper/initial\tB-Code_Block\nbranch\tO\tbranch\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nremove\tO\tremove\tO\nand\tO\tand\tO\nre-add\tO\tre-add\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nGreenkeeper\tO\tGreenkeeper\tO\nApp\tO\tApp\tO\n's\tO\t's\tO\nwhite\tO\twhite\tO\nlist\tO\tlist\tO\non\tO\ton\tO\nGithub\tO\tGithub\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nfind\tO\tfind\tO\nthis\tO\tthis\tO\nlist\tO\tlist\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nrepo\tO\trepo\tO\nor\tO\tor\tO\norganization\tO\torganization\tO\n's\tO\t's\tO\nsettings\tO\tsettings\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nunder\tO\tunder\tO\nInstalled\tO\tInstalled\tO\nGitHub\tO\tGitHub\tO\nApps\tO\tApps\tO\n.\tO\t.\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/4\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/4\tO\n\t\nOoohhh\tO\tOoohhh\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nWhoops\tO\tWhoops\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nmerged\tO\tmerged\tO\nand\tO\tand\tO\nreleased\tO\treleased\tO\nasap\tO\tasap\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkristinlin/turbo\tO\tkristinlin/turbo\tO\n-system\tO\t-system\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/kristinlin/turbo-system\tO\thttps://github.com/kristinlin/turbo-system\tO\n\t\n:dollar\tO\t:dollar\tO\n:\tO\t:\tO\nMonopoly\tB-Application\tMonopoly\tO\n:\tO\t:\tO\nFor\tO\tFor\tO\nAges\tO\tAges\tO\n6\tO\t6\tO\nand\tO\tand\tO\nUnder\tO\tUnder\tO\nand\tO\tand\tO\n85\tO\t85\tO\nand\tO\tand\tO\nOver\tO\tOver\tO\n:dollar\tO\t:dollar\tO\n:\tO\t:\tO\n\t\nSystems\tO\tSystems\tO\nProject\tO\tProject\tO\n02\tO\t02\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nFinal\tO\tFinal\tO\nFrontier\tO\tFrontier\tO\nBrian\tB-User_Name\tBrian\tO\nLeung\tI-User_Name\tLeung\tO\n,\tO\t,\tO\nKristin\tB-User_Name\tKristin\tO\nLin\tI-User_Name\tLin\tO\n,\tO\t,\tO\nSabrina\tB-User_Name\tSabrina\tO\nWen\tI-User_Name\tWen\tO\n|\tO\t|\tO\nPd\tO\tPd\tO\n.\tO\t.\tO\n\t\n10\tO\t10\tO\n\t\nBroad\tO\tBroad\tO\nDescription\tO\tDescription\tO\n\t\nWotcher\tO\tWotcher\tO\nMr\tO\tMr\tO\n.\tO\t.\tO\nDW\tO\tDW\tO\n(\tO\t(\tO\nand\tO\tand\tO\nfriends\tO\tfriends\tO\n)\tO\t)\tO\n!\tO\t!\tO\n\t\nWelcome\tO\tWelcome\tO\nto\tO\tto\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nedition\tO\tedition\tO\nof\tO\tof\tO\nMonopoly\tO\tMonopoly\tO\n:\tO\t:\tO\nFor\tO\tFor\tO\nAges\tO\tAges\tO\n6\tO\t6\tO\nand\tO\tand\tO\nUnder\tO\tUnder\tO\nand\tO\tand\tO\n85\tO\t85\tO\nand\tO\tand\tO\nOver\tO\tOver\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\nobjective\tO\tobjective\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nregular\tO\tregular\tO\nMonopoly\tO\tMonopoly\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nagainst\tO\tagainst\tO\n3\tO\t3\tO\nother\tO\tother\tO\nplayers\tO\tplayers\tO\nto\tO\tto\tO\nbuy\tO\tbuy\tO\nproperty\tO\tproperty\tO\n(\tO\t(\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n!\tO\t!\tO\n\t\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncompete\tO\tcompete\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwho\tO\twho\tO\ncan\tO\tcan\tO\nsurvive\tO\tsurvive\tO\nthe\tO\tthe\tO\nlongest\tO\tlongest\tO\nin\tO\tin\tO\na\tO\ta\tO\nruthless\tO\truthless\tO\ncapitalist\tO\tcapitalist\tO\nworld\tO\tworld\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\ngame\tO\tgame\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUK\tO\tUK\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\naesthetic\tO\taesthetic\tO\nreasons\tO\treasons\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nLibraries\tO\tLibraries\tO\nRequired\tO\tRequired\tO\n(\tO\t(\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nthem\tO\tthem\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nlibsdl2-dev\tB-Library\tlibsdl2-dev\tO\nsudo\tB-Code_Block\tsudo\tB-Code_Block\napt-get\tI-Code_Block\tapt-get\tI-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nlibsdl2-dev\tI-Code_Block\tlibsdl2-dev\tI-Code_Block\n\t\nlibsdl-image1.2\tB-Library\tlibsdl-image1.2\tO\nsudo\tB-Code_Block\tsudo\tB-Code_Block\napt-get\tI-Code_Block\tapt-get\tI-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nlibsdl-image1.2-dev\tI-Code_Block\tlibsdl-image1.2-dev\tI-Code_Block\n\t\nlibsdl2-2.0\tB-Library\tlibsdl2-2.0\tO\nsudo\tB-Code_Block\tsudo\tB-Code_Block\napt-get\tI-Code_Block\tapt-get\tI-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nlibsdl2-2.0\tI-Code_Block\tlibsdl2-2.0\tI-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nPlay\tO\tPlay\tO\n:\tO\t:\tO\n\t\nClone\tO\tClone\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\nand\tO\tand\tO\ncd\tO\tcd\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\n(\tO\t(\tO\nturbo-system\tO\tturbo-system\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nInstall\tO\tInstall\tO\nabove\tO\tabove\tO\nlibraries\tO\tlibraries\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\nterminal\tO\tterminal\tO\n,\tO\t,\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_35141\tI-Code_Block\tGR_35141\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMake\tO\tMake\tO\nfour\tO\tfour\tO\nnew\tO\tnew\tO\nterminal\tB-Application\tterminal\tO\nwindows\tO\twindows\tO\nor\tO\tor\tO\ntabs\tO\ttabs\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmaking\tO\tmaking\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ndirectory\tO\tdirectory\tO\n(\tO\t(\tO\nturbo-system\tO\tturbo-system\tO\n)\tO\t)\tO\n,\tO\t,\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\n./client\tB-Code_Block\t./client\tB-Code_Block\n.\tO\t.\tO\n\t\nOur\tO\tOur\tO\ngame\tO\tgame\tO\nrequires\tO\trequires\tO\nexactly\tO\texactly\tO\nfour\tO\tfour\tO\nplayers/clients\tO\tplayers/clients\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncomputer\tB-Device\tcomputer\tO\nwill\tO\twill\tO\nchoose\tO\tchoose\tO\na\tO\ta\tO\nrandom\tO\trandom\tO\nplayer/client\tO\tplayer/client\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\n,\tO\t,\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nroll\tO\troll\tO\n\"\tO\t\"\tO\nthe\tO\tthe\tO\ndice\tO\tdice\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nmove\tO\tmove\tO\n1\tO\t1\tO\nto\tO\tto\tO\n12\tO\t12\tO\nspaces\tO\tspaces\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nstarting\tO\tstarting\tO\nposition\tO\tposition\tO\nand\tO\tand\tO\nstart\tO\tstart\tO\noff\tO\toff\tO\nwith\tO\twith\tO\n$\tO\t$\tO\n1500\tO\t1500\tO\n.\tO\t.\tO\n\t\nPossible\tO\tPossible\tO\nspaces\tO\tspaces\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nland\tO\tland\tO\non\tO\ton\tO\ninclude\tO\tinclude\tO\n:\tO\t:\tO\n\t\nProperty/Railroad\tO\tProperty/Railroad\tO\nspace\tO\tspace\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\ncommon\tO\tcommon\tO\nspace\tO\tspace\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nterminal\tB-Application\tterminal\tO\nwill\tO\twill\tO\nask\tO\task\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\npurchase\tO\tpurchase\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nmuch\tO\tmuch\tO\nrent\tO\trent\tO\nyou\tO\tyou\tO\nstand\tO\tstand\tO\nto\tO\tto\tO\ngain\tO\tgain\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nType\tO\tType\tO\n\"\tO\t\"\tO\nyes\tO\tyes\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\nYES\tO\tYES\tO\n\"\tO\t\"\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwish\tO\twish\tO\nto\tO\tto\tO\n,\tO\t,\tO\ntype\tO\ttype\tO\nanything\tO\tanything\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\n\"\tO\t\"\tO\nyes\tO\tyes\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\nYES\tO\tYES\tO\n\"\tO\t\"\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nbuy\tO\tbuy\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\noption\tO\toption\tO\nof\tO\tof\tO\nbuying\tO\tbuying\tO\n1-4\tO\t1-4\tO\nhouses\tO\thouses\tO\n(\tO\t(\tO\nor\tO\tor\tO\nno\tO\tno\tO\nhouses\tO\thouses\tO\nat\tO\tat\tO\nall\tO\tall\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nterminal\tO\tterminal\tO\nwill\tO\twill\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\nhow\tO\thow\tO\nmuch\tO\tmuch\tO\neach\tO\teach\tO\nhouse\tO\thouse\tO\ncosts\tO\tcosts\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nmuch\tO\tmuch\tO\nrent\tO\trent\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nearn\tO\tearn\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\nhouses\tO\thouses\tO\nyou\tO\tyou\tO\nbuy\tO\tbuy\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmust\tO\tmust\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\nan\tO\tan\tO\ninteger\tO\tinteger\tO\nfrom\tO\tfrom\tO\n0\tO\t0\tO\nto\tO\tto\tO\n4\tO\t4\tO\n.\tO\t.\tO\n\t\nRent\tO\tRent\tO\nis\tO\tis\tO\na\tO\ta\tO\nfixed\tO\tfixed\tO\namount\tO\tamount\tO\nof\tO\tof\tO\ncash\tO\tcash\tO\ncollected\tO\tcollected\tO\nanytime\tO\tanytime\tO\na\tO\ta\tO\nplayer\tO\tplayer\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\nyou\tO\tyou\tO\nlands\tO\tlands\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nchoose\tO\tchoose\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\npay\tO\tpay\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nand/or\tO\tand/or\tO\nhouses\tO\thouses\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nproperty\tO\tproperty\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\nwill\tO\twill\tO\nhappen\tO\thappen\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nChance\tO\tChance\tO\nspace\tO\tspace\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nland\tO\tland\tO\non\tO\ton\tO\na\tO\ta\tO\nchance\tO\tchance\tO\nspace\tO\tspace\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncomputer\tB-Device\tcomputer\tO\nwill\tO\twill\tO\nrandomly\tO\trandomly\tO\ndraw\tO\tdraw\tO\na\tO\ta\tO\ncard\tO\tcard\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nchance\tO\tchance\tO\ndeck\tO\tdeck\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nchoice\tO\tchoice\tO\nbut\tO\tbut\tO\nto\tO\tto\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\nactions\tO\tactions\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchance\tO\tchance\tO\ncard\tO\tcard\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nearn/lose\tO\tearn/lose\tO\nmoney\tO\tmoney\tO\n,\tO\t,\tO\nand/or\tO\tand/or\tO\nbe\tO\tbe\tO\ntransported\tO\ttransported\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nlocation\tO\tlocation\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nboard\tO\tboard\tO\n.\tO\t.\tO\n\t\nJail\tO\tJail\tO\n,\tO\t,\tO\nluxury\tO\tluxury\tO\ntax\tO\ttax\tO\n,\tO\t,\tO\nfree\tO\tfree\tO\nparking\tO\tparking\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nare\tO\tare\tO\nspecial\tO\tspecial\tO\nspaces\tO\tspaces\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\ncharged\tO\tcharged\tO\na\tO\ta\tO\nfee\tO\tfee\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\namount\tO\tamount\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nland\tO\tland\tO\n,\tO\t,\tO\nor\tO\tor\tO\nnothing\tO\tnothing\tO\nmight\tO\tmight\tO\nhappen\tO\thappen\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nland\tO\tland\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ngame\tO\tgame\tO\nonly\tO\tonly\tO\nends\tO\tends\tO\nwhen\tO\twhen\tO\nall\tO\tall\tO\nbut\tO\tbut\tO\none\tO\tone\tO\nplayer\tO\tplayer\tO\nis\tO\tis\tO\nbankrupt\tO\tbankrupt\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlast\tO\tlast\tO\nnon-bankrupt\tO\tnon-bankrupt\tO\nplayer\tO\tplayer\tO\nstanding\tO\tstanding\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nwinner\tO\twinner\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\npay\tO\tpay\tO\nrent\tO\trent\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nautomatically\tO\tautomatically\tO\ndeemed\tO\tdeemed\tO\nbankrupt\tO\tbankrupt\tO\nand\tO\tand\tO\nlose\tO\tlose\tO\n.\tO\t.\tO\n\t\nAlthough\tO\tAlthough\tO\nthis\tO\tthis\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\nmostly\tO\tmostly\tO\nconducted\tO\tconducted\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nterminal\tO\tterminal\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nboard\tO\tboard\tO\nwill\tO\twill\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nand\tO\tand\tO\nwhere\tO\twhere\tO\neveryone\tO\teveryone\tO\nelse\tO\telse\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nNOTE\tO\tNOTE\tO\n:\tO\t:\tO\nSometimes\tO\tSometimes\tO\nthe\tO\tthe\tO\ngame\tO\tgame\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\njust\tO\tjust\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nonce\tO\tonce\tO\nor\tO\tor\tO\ntwice\tO\ttwice\tO\nagain\tO\tagain\tO\nif\tO\tif\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nType\tO\tType\tO\nin\tO\tin\tO\nmake\tB-Code_Block\tmake\tB-Code_Block\nclean\tI-Code_Block\tclean\tI-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\nmake\tB-Code_Block\tmake\tB-Code_Block\nto\tO\tto\tO\nrun\tO\trun\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\nfun\tO\tfun\tO\n!\tO\t!\tO\n\t\n:grinning\tO\t:grinning\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nT-Dawg/dojo_rules\tO\tT-Dawg/dojo_rules\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/T-Dawg/dojo_rules\tO\thttps://github.com/T-Dawg/dojo_rules\tO\n\t\nDojo\tO\tDojo\tO\nRules\tO\tRules\tO\n\t\nThis\tO\tThis\tO\nrepository\tO\trepository\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nlist\tB-Data_Type\tlist\tO\nof\tO\tof\tO\ndojo\tO\tdojo\tO\nrules\tO\trules\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nDeadly\tO\tDeadly\tO\nVipers\tO\tVipers\tO\ndojo\tO\tdojo\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nmembers\tO\tmembers\tO\nshould\tO\tshould\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nrules\tO\trules\tO\n\t\nhttps://github.com/deadlyvipers\tO\thttps://github.com/deadlyvipers\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndhrrgn/codeigniter\tO\tdhrrgn/codeigniter\tO\n-uhoh\tO\t-uhoh\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dhrrgn/codeigniter-uhoh/issues/7\tO\thttps://github.com/dhrrgn/codeigniter-uhoh/issues/7\tO\n\t\nWhen\tO\tWhen\tO\nprinting\tO\tprinting\tO\ntraces\tO\ttraces\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nHTML\tB-Language\tHTML\tO\nentities\tO\tentities\tO\nwithin\tO\twithin\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nitems\tO\titems\tO\ncan\tO\tcan\tO\nend\tO\tend\tO\nup\tO\tup\tO\npartially\tO\tpartially\tO\nor\tO\tor\tO\ncompletely\tO\tcompletely\tO\nhidden\tO\thidden\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nquickly\tO\tquickly\tO\npatch\tO\tpatch\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\non\tO\ton\tO\n,\tO\t,\tO\nerrors/error_php_custom.php\tB-File_Name\terrors/error_php_custom.php\tO\n@142\tO\t@142\tO\nis\tO\tis\tO\nwrapped\tO\twrapped\tO\nin\tO\tin\tO\nhtmlentities\tB-Language\thtmlentities\tO\n.\tO\t.\tO\n\t\nphp\tB-Code_Block\tphp\tO\necho\tI-Code_Block\techo\tO\nhtmlentities\tI-Code_Block\thtmlentities\tO\n(\tI-Code_Block\t(\tO\nprint_r\tI-Code_Block\tprint_r\tO\n(\tI-Code_Block\t(\tO\n$arg\tI-Code_Block\t$arg\tO\n,\tI-Code_Block\t,\tO\nTRUE\tI-Code_Block\tTRUE\tO\n)\tI-Code_Block\t)\tO\n)\tB-Code_Block\t)\tO\n?\tO\t?\tO\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nfix\tO\tfix\tO\nis\tO\tis\tO\napplicable\tO\tapplicable\tO\nanywhere\tO\tanywhere\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkamarrcos/Hello\tO\tkamarrcos/Hello\tO\n-world\tO\t-world\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/kamarrcos/Hello-world\tO\thttps://github.com/kamarrcos/Hello-world\tO\n\t\nHello-world\tO\tHello-world\tO\n\t\nTesting\tO\tTesting\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nnavigate\tO\tnavigate\tO\nGithub\tB-Website\tGithub\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\napplications\tO\tapplications\tO\nThis\tO\tThis\tO\ntest\tO\ttest\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nextremely\tO\textremely\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmadison-kerndt/off\tO\tmadison-kerndt/off\tO\n-on-guard-synesthesia\tO\t-on-guard-synesthesia\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/39\tO\thttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/39\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nsong\tO\tsong\tO\nwith\tO\twith\tO\nwhole\tO\twhole\tO\nnotes\tO\tnotes\tO\n!!!\tO\t!!!\tO\n!\tO\t!\tO\n\t\nYeah\tO\tYeah\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws\tO\n\t\nLogstash\tB-Application\tLogstash\tO\nPlugin\tO\tPlugin\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nplugin\tO\tplugin\tO\nfor\tO\tfor\tO\nLogstash\tB-Application\tLogstash\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nfully\tO\tfully\tO\nfree\tO\tfree\tO\nand\tO\tand\tO\nfully\tO\tfully\tO\nopen\tO\topen\tO\nsource\tO\tsource\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlicense\tO\tlicense\tO\nis\tO\tis\tO\nApache\tB-Licence\tApache\tO\n2.0\tB-Version\t2.0\tO\n,\tO\t,\tO\nmeaning\tO\tmeaning\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nhowever\tO\thowever\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nin\tO\tin\tO\nwhatever\tO\twhatever\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nDocumentation\tO\tDocumentation\tO\n\t\nLogstash\tB-Application\tLogstash\tO\nprovides\tO\tprovides\tO\ninfrastructure\tO\tinfrastructure\tO\nto\tO\tto\tO\nautomatically\tO\tautomatically\tO\ngenerate\tO\tgenerate\tO\ndocumentation\tO\tdocumentation\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nplugin\tO\tplugin\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nasciidoc\tB-File_Type\tasciidoc\tO\nformat\tO\tformat\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\ndocumentation\tO\tdocumentation\tO\nso\tO\tso\tO\nany\tO\tany\tO\ncomments\tO\tcomments\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfirst\tO\tfirst\tO\nconverted\tO\tconverted\tO\ninto\tO\tinto\tO\nasciidoc\tB-File_Type\tasciidoc\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ninto\tO\tinto\tO\nhtml\tB-File_Type\thtml\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nplugin\tO\tplugin\tO\ndocumentation\tO\tdocumentation\tO\nare\tO\tare\tO\nplaced\tO\tplaced\tO\nunder\tO\tunder\tO\none\tO\tone\tO\ncentral\tO\tcentral\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nformatting\tO\tformatting\tO\ncode\tO\tcode\tO\nor\tO\tor\tO\nconfig\tO\tconfig\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nasciidoc\tB-File_Type\tasciidoc\tO\n[\tB-Code_Block\t[\tB-Code_Block\nsource\tI-Code_Block\tsource\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nruby\tI-Code_Block\truby\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\ndirective\tO\tdirective\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\nasciidoc\tB-File_Type\tasciidoc\tO\nformatting\tO\tformatting\tO\ntips\tO\ttips\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nexcellent\tO\texcellent\tO\nreference\tO\treference\tO\nhere\tO\there\tO\nhttps://github.com/elastic/docs#asciidoc-guide\tO\thttps://github.com/elastic/docs#asciidoc-guide\tO\n\t\nNeed\tO\tNeed\tO\nHelp\tO\tHelp\tO\n?\tO\t?\tO\n\t\nNeed\tO\tNeed\tO\nhelp\tO\thelp\tO\n?\tO\t?\tO\n\t\nTry\tO\tTry\tO\n#logstash\tO\t#logstash\tO\non\tO\ton\tO\nfreenode\tB-Application\tfreenode\tO\nIRC\tI-Application\tIRC\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nhttps://discuss.elastic.co/c/logstash\tO\thttps://discuss.elastic.co/c/logstash\tO\ndiscussion\tO\tdiscussion\tO\nforum\tO\tforum\tO\n.\tO\t.\tO\n\t\nDeveloping\tO\tDeveloping\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nPlugin\tO\tPlugin\tO\nDevelopement\tO\tDevelopement\tO\nand\tO\tand\tO\nTesting\tO\tTesting\tO\n\t\nCode\tO\tCode\tO\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nstarted\tO\tstarted\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nJRuby\tB-Language\tJRuby\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nBundler\tB-Application\tBundler\tO\ngem\tO\tgem\tO\ninstalled\tO\tinstalled\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nplugin\tO\tplugin\tO\nor\tO\tor\tO\nclone\tO\tclone\tO\nand\tO\tand\tO\nexisting\tO\texisting\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nGitHub\tB-Website\tGitHub\tO\nlogstash-plugins\tO\tlogstash-plugins\tO\norganization\tO\torganization\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nalso\tO\talso\tO\nprovide\tO\tprovide\tO\nexample\tO\texample\tO\nplugins\tO\tplugins\tO\n.\tO\t.\tO\n\t\nInstall\tO\tInstall\tO\ndependencies\tO\tdependencies\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_96695\tI-Code_Block\tGR_96695\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTest\tO\tTest\tO\n\t\nUpdate\tO\tUpdate\tO\nyour\tO\tyour\tO\ndependencies\tO\tdependencies\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_96696\tI-Code_Block\tGR_96696\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRun\tO\tRun\tO\ntests\tO\ttests\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_96697\tI-Code_Block\tGR_96697\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nRunning\tO\tRunning\tO\nyour\tO\tyour\tO\nunpublished\tO\tunpublished\tO\nPlugin\tO\tPlugin\tO\nin\tO\tin\tO\nLogstash\tB-Application\tLogstash\tO\n\t\n2.1\tO\t2.1\tO\nRun\tO\tRun\tO\nin\tO\tin\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nLogstash\tB-Application\tLogstash\tO\nclone\tO\tclone\tO\n\t\nEdit\tO\tEdit\tO\nLogstash\tB-Application\tLogstash\tO\nGemfile\tB-File_Type\tGemfile\tB-Code_Block\nand\tO\tand\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\nplugin\tO\tplugin\tO\npath\tO\tpath\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_96698\tI-Code_Block\tGR_96698\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nInstall\tO\tInstall\tO\nplugin\tO\tplugin\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_96699\tI-Code_Block\tGR_96699\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRun\tO\tRun\tO\nLogstash\tB-Application\tLogstash\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nplugin\tO\tplugin\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_96700\tI-Code_Block\tGR_96700\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAt\tO\tAt\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nany\tO\tany\tO\nmodifications\tO\tmodifications\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nlocal\tO\tlocal\tO\nLogstash\tB-Application\tLogstash\tO\nsetup\tO\tsetup\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nmodifying\tO\tmodifying\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\n,\tO\t,\tO\nsimply\tO\tsimply\tO\nrerun\tO\trerun\tO\nLogstash\tB-Application\tLogstash\tO\n.\tO\t.\tO\n\t\n2.2\tO\t2.2\tO\nRun\tO\tRun\tO\nin\tO\tin\tO\nan\tO\tan\tO\ninstalled\tO\tinstalled\tO\nLogstash\tB-Application\tLogstash\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n2.1\tO\t2.1\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nyour\tO\tyour\tO\nplugin\tO\tplugin\tO\nin\tO\tin\tO\nan\tO\tan\tO\ninstalled\tO\tinstalled\tO\nLogstash\tB-Application\tLogstash\tO\nby\tO\tby\tO\nediting\tO\tediting\tO\nits\tO\tits\tO\nGemfile\tB-File_Type\tGemfile\tB-Code_Block\nand\tO\tand\tO\npointing\tO\tpointing\tO\nthe\tO\tthe\tO\n:path\tB-Code_Block\t:path\tB-Code_Block\nto\tO\tto\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\nplugin\tO\tplugin\tO\ndevelopment\tO\tdevelopment\tO\ndirectory\tO\tdirectory\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\ngem\tO\tgem\tO\nand\tO\tand\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\n:\tO\t:\tO\n\t\nBuild\tO\tBuild\tO\nyour\tO\tyour\tO\nplugin\tO\tplugin\tO\ngem\tO\tgem\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_96701\tI-Code_Block\tGR_96701\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nInstall\tO\tInstall\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nLogstash\tB-Application\tLogstash\tO\nhome\tO\thome\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_96702\tI-Code_Block\tGR_96702\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nStart\tO\tStart\tO\nLogstash\tB-Application\tLogstash\tO\nand\tO\tand\tO\nproceed\tO\tproceed\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\n\t\nContributing\tO\tContributing\tO\n\t\nAll\tO\tAll\tO\ncontributions\tO\tcontributions\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\n:\tO\t:\tO\nideas\tO\tideas\tO\n,\tO\t,\tO\npatches\tO\tpatches\tO\n,\tO\t,\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nbug\tO\tbug\tO\nreports\tO\treports\tO\n,\tO\t,\tO\ncomplaints\tO\tcomplaints\tO\n,\tO\t,\tO\nand\tO\tand\tO\neven\tO\teven\tO\nsomething\tO\tsomething\tO\nyou\tO\tyou\tO\ndrew\tO\tdrew\tO\nup\tO\tup\tO\non\tO\ton\tO\na\tO\ta\tO\nnapkin\tO\tnapkin\tO\n.\tO\t.\tO\n\t\nProgramming\tO\tProgramming\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nrequired\tO\trequired\tO\nskill\tO\tskill\tO\n.\tO\t.\tO\n\t\nWhatever\tO\tWhatever\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nseen\tO\tseen\tO\nabout\tO\tabout\tO\nopen\tO\topen\tO\nsource\tO\tsource\tO\nand\tO\tand\tO\nmaintainers\tO\tmaintainers\tO\nor\tO\tor\tO\ncommunity\tO\tcommunity\tO\nmembers\tO\tmembers\tO\nsaying\tO\tsaying\tO\n\"\tO\t\"\tO\nsend\tO\tsend\tO\npatches\tO\tpatches\tO\nor\tO\tor\tO\ndie\tO\tdie\tO\n\"\tO\t\"\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nimportant\tO\timportant\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncommunity\tO\tcommunity\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nable\tO\table\tO\nto\tO\tto\tO\ncontribute\tO\tcontribute\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\ncontributing\tO\tcontributing\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nCONTRIBUTING\tB-File_Name\tCONTRIBUTING\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/40\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/40\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ntransform\tO\ttransform\tO\na\tO\ta\tO\ngeometry\tO\tgeometry\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nSRID\tO\tSRID\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nSRID\tO\tSRID\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nGeoDjango\tB-Library\tGeoDjango\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\naccomplish\tO\taccomplish\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\n#transform\tO\t#transform\tO\n:\tO\t:\tO\nhttps://docs.djangoproject.com/en/1.11/ref/contrib/gis/geoquerysets/#transform\tO\thttps://docs.djangoproject.com/en/1.11/ref/contrib/gis/geoquerysets/#transform\tO\n\t\nIn\tO\tIn\tO\nPostGIS\tB-Application\tPostGIS\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nSELECT\tB-Code_Block\tSELECT\tB-Code_Block\nST_Transform(geometry,\tI-Code_Block\tST_Transform(geometry,\tI-Code_Block\n4326)\tI-Code_Block\t4326)\tI-Code_Block\nAS\tI-Code_Block\tAS\tI-Code_Block\nthe_geom_wgs84\tI-Code_Block\tthe_geom_wgs84\tI-Code_Block\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ngem\tO\tgem\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprogdude/Flicks\tO\tprogdude/Flicks\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/progdude/Flicks/issues/2\tO\thttps://github.com/progdude/Flicks/issues/2\tO\n\t\n:\tO\t:\tO\n+\tO\t+\tO\n1\tO\t1\tO\n:\tO\t:\tO\nNice\tO\tNice\tO\nwork\tO\twork\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\npoint\tO\tpoint\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nhomework\tO\thomework\tO\nwas\tO\twas\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nchance\tO\tchance\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nTableView\tB-User_Interface_Element\tTableView\tO\n(\tO\t(\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\ncommon\tO\tcommon\tO\nviews\tO\tviews\tO\nin\tO\tin\tO\niOS\tB-Operating_System\tiOS\tO\n)\tO\t)\tO\nand\tO\tand\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nreal\tO\treal\tO\ndata\tO\tdata\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nnetwork\tO\tnetwork\tO\n(\tO\t(\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nMovies\tB-Library\tMovies\tO\nDatabase\tI-Library\tDatabase\tO\nAPI\tI-Library\tAPI\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nkey\tO\tkey\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nprojects\tO\tprojects\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nadditional\tO\tadditional\tO\nfeatures\tO\tfeatures\tO\nand\tO\tand\tO\ntweak\tO\ttweak\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\n/\tO\t/\tO\nUX\tO\tUX\tO\nbecause\tO\tbecause\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nprovide\tO\tprovide\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nlearning\tO\tlearning\tO\nopportunities\tO\topportunities\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nencourage\tO\tencourage\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\nthe\tO\tthe\tO\nprojects\tO\tprojects\tO\nearly\tO\tearly\tO\neach\tO\teach\tO\nweek\tO\tweek\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nrequired\tO\trequired\tO\nstories\tO\tstories\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nspend\tO\tspend\tO\ntime\tO\ttime\tO\nadding\tO\tadding\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nUI\tO\tUI\tO\nelements\tO\telements\tO\nand\tO\tand\tO\nexperimenting\tO\texperimenting\tO\nwith\tO\twith\tO\noptional\tO\toptional\tO\nextensions\tO\textensions\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nimprove\tO\timprove\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nexperience\tO\texperience\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndetailed\tO\tdetailed\tO\nProject\tO\tProject\tO\n1\tO\t1\tO\nFeedback\tO\tFeedback\tO\nGuide\tO\tGuide\tO\nwhich\tO\twhich\tO\ncovers\tO\tcovers\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\npractices\tO\tpractices\tO\nfor\tO\tfor\tO\nimplementing\tO\timplementing\tO\nthis\tO\tthis\tO\nassignment\tO\tassignment\tO\n.\tO\t.\tO\n\t\nRead\tO\tRead\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nfeedback\tO\tfeedback\tO\nguide\tO\tguide\tO\npoint-by-point\tO\tpoint-by-point\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nways\tO\tways\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\nyour\tO\tyour\tO\nsubmission\tO\tsubmission\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nconsider\tO\tconsider\tO\ngoing\tO\tgoing\tO\nback\tO\tback\tO\nand\tO\tand\tO\nimplementing\tO\timplementing\tO\nthese\tO\tthese\tO\nimprovements\tO\timprovements\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nimportant\tO\timportant\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\niOS\tB-Operating_System\tiOS\tO\ndevelopment\tO\tdevelopment\tO\nis\tO\tis\tO\nlearning\tO\tlearning\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\npatterns\tO\tpatterns\tO\nand\tO\tand\tO\nconventions\tO\tconventions\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nparticular\tO\tparticular\tO\nquestions\tO\tquestions\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nassignment\tO\tassignment\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nfeedback\tO\tfeedback\tO\n,\tO\t,\tO\nfeel\tO\tfeel\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\nreply\tO\treply\tO\nhere\tO\there\tO\nor\tO\tor\tO\nemail\tO\temail\tO\nus\tO\tus\tO\nat\tO\tat\tO\nuniversitysupport@codepath.com\tO\tuniversitysupport@codepath.com\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/1\tO\thttps://github.com/smirarab/pasta/issues/1\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nreproduce\tO\treproduce\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nfixed\tO\tfixed\tO\nalready\tO\talready\tO\n.\tO\t.\tO\n\t\nClosing\tO\tClosing\tO\nfor\tO\tfor\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nplease\tO\tplease\tO\nfeel\tO\tfeel\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\nreopen\tO\treopen\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreproduce\tO\treproduce\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count\tO\thttps://github.com/mapbox/tile-count\tO\n\t\ntile-count\tB-Application\ttile-count\tO\n\t\nA\tO\tA\tO\ntool\tO\ttool\tO\nfor\tO\tfor\tO\naccumulating\tO\taccumulating\tO\npoint\tO\tpoint\tO\ncounts\tO\tcounts\tO\nby\tO\tby\tO\ntile\tO\ttile\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nTile-count\tB-Application\tTile-count\tO\nrequires\tO\trequires\tO\nsqlite3\tB-Application\tsqlite3\tO\nand\tO\tand\tO\nlibpng\tB-Library\tlibpng\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_27475\tI-Code_Block\tGR_27475\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCreating\tO\tCreating\tO\na\tO\ta\tO\ncount\tO\tcount\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_27476\tI-Code_Block\tGR_27476\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\n-s\tB-Code_Block\t-s\tB-Code_Block\noption\tO\toption\tO\nspecifies\tO\tspecifies\tO\nthe\tO\tthe\tO\nmaximum\tO\tmaximum\tO\nprecision\tO\tprecision\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nduplicates\tO\tduplicates\tO\nbeyond\tO\tbeyond\tO\nthis\tO\tthis\tO\nprecision\tO\tprecision\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\npre-summed\tO\tpre-summed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfile\tO\tfile\tO\nsmaller\tO\tsmaller\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n-q\tB-Code_Block\t-q\tB-Code_Block\noption\tO\toption\tO\nsilences\tO\tsilences\tO\nthe\tO\tthe\tO\nprogress\tO\tprogress\tO\nindicator\tO\tindicator\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nis\tO\tis\tO\nCSV\tB-File_Type\tCSV\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nrecords\tO\trecords\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_27477\tI-Code_Block\tGR_27477\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_27478\tI-Code_Block\tGR_27478\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\nis\tO\tis\tO\nJSON\tB-File_Type\tJSON\tO\n,\tO\t,\tO\nany\tO\tany\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nnumbers\tO\tnumbers\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ntreated\tO\ttreated\tO\nas\tO\tas\tO\na\tO\ta\tO\nlongitude-latitude\tO\tlongitude-latitude\tO\npair\tB-Data_Structure\tpair\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nincludes\tO\tincludes\tO\nGeoJSON\tB-File_Type\tGeoJSON\tO\nPoints\tO\tPoints\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\npoints\tO\tpoints\tO\nthat\tO\tthat\tO\nmake\tO\tmake\tO\nup\tO\tup\tO\nGeoJSON\tB-File_Type\tGeoJSON\tO\nMultiPoints\tB-Library_Class\tMultiPoints\tO\n,\tO\t,\tO\nLineStrings\tB-Library_Class\tLineStrings\tO\n,\tO\t,\tO\nMultiLineStrings\tB-Library_Class\tMultiLineStrings\tO\n,\tO\t,\tO\nPolygons\tB-Library_Class\tPolygons\tO\n,\tO\t,\tO\nand\tO\tand\tO\nMultiPolygons\tB-Library_Class\tMultiPolygons\tO\n.\tO\t.\tO\n\t\nBeware\tO\tBeware\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nalso\tO\talso\tO\nincludes\tO\tincludes\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nmistaken\tO\tmistaken\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nlongitude-latitude\tO\tlongitude-latitude\tO\npair\tB-Data_Structure\tpair\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ninput\tO\tinput\tO\nis\tO\tis\tO\nfirst\tO\tfirst\tO\nstreamed\tO\tstreamed\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ninternal\tO\tinternal\tO\nformat\tO\tformat\tO\nspecified\tO\tspecified\tO\nbelow\tO\tbelow\tO\n(\tO\t(\tO\nminus\tO\tminus\tO\nthe\tO\tthe\tO\nheader\tO\theader\tO\n)\tO\t)\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsorted\tO\tsorted\tO\nand\tO\tand\tO\nmerged\tO\tmerged\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nformat\tO\tformat\tO\nin\tO\tin\tO\nquadkey\tO\tquadkey\tO\norder\tO\torder\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nadjacent\tO\tadjacent\tO\nduplicates\tO\tduplicates\tO\nsummed\tO\tsummed\tO\n.\tO\t.\tO\n\t\nMerging\tO\tMerging\tO\ncounts\tO\tcounts\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_27479\tI-Code_Block\tGR_27479\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nProduces\tO\tProduces\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncount\tO\tcount\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nspecified\tO\tspecified\tO\ncount\tO\tcount\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nsumming\tO\tsumming\tO\nthe\tO\tthe\tO\ncounts\tO\tcounts\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\npoints\tO\tpoints\tO\nduplicated\tO\tduplicated\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\n.\tO\t.\tO\n\t\n-F\tB-Code_Block\t-F\tB-Code_Block\n:\tO\t:\tO\nRead\tO\tRead\tO\na\tO\ta\tO\nnewline-separated\tO\tnewline-separated\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nfiles\tO\tfiles\tO\nto\tO\tto\tO\nmerge\tO\tmerge\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\ninput\tO\tinput\tO\n\t\n-s\tB-Code_Block\t-s\tB-Code_Block\nbinsize\tB-Library_Variable\tbinsize\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nprecision\tO\tprecision\tO\nof\tO\tof\tO\nall\tO\tall\tO\nlocations\tO\tlocations\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nfile\tO\tfile\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nreduced\tO\treduced\tO\nas\tO\tas\tO\nspecified\tO\tspecified\tO\n.\tO\t.\tO\n\t\n-q\tB-Code_Block\t-q\tB-Code_Block\n:\tO\t:\tO\nSilence\tO\tSilence\tO\nthe\tO\tthe\tO\nprogress\tO\tprogress\tO\nindicator\tO\tindicator\tO\n\t\nDecoding\tO\tDecoding\tO\ncounts\tO\tcounts\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_27480\tI-Code_Block\tGR_27480\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOutputs\tO\tOutputs\tO\nthe\tO\tthe\tO\nlon\tB-Code_Block\tlon\tB-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nlat\tI-Code_Block\tlat\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\ncount\tI-Code_Block\tcount\tI-Code_Block\nCSV\tB-File_Type\tCSV\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nrecreate\tO\trecreate\tO\nin.count\tB-Library_Variable\tin.count\tB-Code_Block\n.\tO\t.\tO\n\t\nTiling\tO\tTiling\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_27481\tI-Code_Block\tGR_27481\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nfeatures\tO\tfeatures\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmbtiles\tB-File_Type\tmbtiles\tB-Code_Block\nare\tO\tare\tO\na\tO\ta\tO\ngrid\tO\tgrid\tO\nof\tO\tof\tO\nsquares\tO\tsquares\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndensity\tB-Library_Variable\tdensity\tB-Code_Block\nattribute\tO\tattribute\tO\nindicating\tO\tindicating\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\noriginal\tO\toriginal\tO\npoints\tO\tpoints\tO\nwere\tO\twere\tO\naccumulated\tO\taccumulated\tO\ninto\tO\tinto\tO\nthat\tO\tthat\tO\nbinned\tO\tbinned\tO\npoint\tO\tpoint\tO\n,\tO\t,\tO\nnormalized\tO\tnormalized\tO\naccording\tO\taccording\tO\nthe\tO\tthe\tO\ndensest\tO\tdensest\tO\npoint\tO\tpoint\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nzoom\tO\tzoom\tO\nlevel\tO\tlevel\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nmerging\tO\tmerging\tO\nexisting\tO\texisting\tO\n.mbtiles\tB-File_Type\t.mbtiles\tB-Code_Block\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nall\tO\tall\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ncreated\tO\tcreated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nminzoom\tO\tminzoom\tO\n,\tO\t,\tO\nmaxzoom\tO\tmaxzoom\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndetail\tO\tdetail\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmerged\tO\tmerged\tO\noutput\tO\toutput\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\neither\tO\teither\tO\nbitmap\tB-Data_Structure\tbitmap\tO\nor\tO\tor\tO\nvector\tB-Data_Structure\tvector\tO\nas\tO\tas\tO\ndesired\tO\tdesired\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n.mbtiles\tB-File_Type\t.mbtiles\tB-Code_Block\nfiles\tO\tfiles\tO\nbeing\tO\tbeing\tO\nmerged\tO\tmerged\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nseparated\tO\tseparated\tO\nspatially\tO\tspatially\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\ntemporally\tO\ttemporally\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nmerging\tO\tmerging\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nrecalculate\tO\trecalculate\tO\nthe\tO\tthe\tO\nreference\tO\treference\tO\nbrightness\tO\tbrightness\tO\nwhere\tO\twhere\tO\ntilesets\tO\ttilesets\tO\noverlap\tO\toverlap\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\ntile-count-merge\tB-Library_Function\ttile-count-merge\tB-Code_Block\nto\tO\tto\tO\ncombine\tO\tcombine\tO\ndata\tO\tdata\tO\nsets\tO\tsets\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\narea\tO\tarea\tO\n.\tO\t.\tO\n\t\nOutput\tO\tOutput\tO\ntileset\tO\ttileset\tO\n\t\n-n\tB-Code_Block\t-n\tB-Code_Block\nlayername\tO\tlayername\tO\n:\tO\t:\tO\nSpecify\tO\tSpecify\tO\nthe\tO\tthe\tO\nlayer\tO\tlayer\tO\nname\tO\tname\tO\nin\tO\tin\tO\nvector\tB-Data_Structure\tvector\tO\ntile\tO\ttile\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\ncount\tB-Library_Variable\tcount\tB-Code_Block\n.\tO\t.\tO\n\t\n-o\tB-Code_Block\t-o\tB-Code_Block\nout.mbtiles\tB-File_Name\tout.mbtiles\tO\n:\tO\t:\tO\nSpecify\tO\tSpecify\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\n-f\tB-Code_Block\t-f\tB-Code_Block\n:\tO\t:\tO\nDelete\tO\tDelete\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nfile\tO\tfile\tO\nif\tO\tif\tO\nit\tO\tit\tO\nalready\tO\talready\tO\nexists\tO\texists\tO\n\t\nZoom\tO\tZoom\tO\nlevels\tO\tlevels\tO\n\t\n-d\tB-Code_Block\t-d\tB-Code_Block\ndetail\tB-Library_Variable\tdetail\tO\n:\tO\t:\tO\nMake\tO\tMake\tO\nthe\tO\tthe\tO\ngrid\tO\tgrid\tO\nwithin\tO\twithin\tO\neach\tO\teach\tO\ntile\tO\ttile\tO\n2^detail\tB-Library_Variable\t2^detail\tO\npoints\tO\tpoints\tO\non\tO\ton\tO\neach\tO\teach\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\n9\tO\t9\tO\n.\tO\t.\tO\n\t\n-Z\tB-Code_Block\t-Z\tB-Code_Block\nminzoom\tB-Library_Variable\tminzoom\tO\n:\tO\t:\tO\nSpecify\tO\tSpecify\tO\nthe\tO\tthe\tO\nminzoom\tB-Library_Variable\tminzoom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntileset\tO\ttileset\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\n0\tO\t0\tO\n.\tO\t.\tO\n\t\n-z\tB-Code_Block\t-z\tB-Code_Block\nmaxzoom\tB-Library_Variable\tmaxzoom\tO\n:\tO\t:\tO\nSpecify\tO\tSpecify\tO\nthe\tO\tthe\tO\nmaxzoom\tB-Library_Variable\tmaxzoom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntileset\tO\ttileset\tO\n.\tO\t.\tO\n\t\n-s\tB-Code_Block\t-s\tB-Code_Block\nbinsize\tB-Library_Variable\tbinsize\tO\n:\tO\t:\tO\nSpecify\tO\tSpecify\tO\nthe\tO\tthe\tO\nzoom\tO\tzoom\tO\nlevel\tO\tlevel\tO\nwhose\tO\twhose\tO\ntiles\tO\ttiles\tO\nare\tO\tare\tO\nused\tO\tused\tO\nas\tO\tas\tO\nbins\tO\tbins\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmust\tO\tmust\tO\nspecify\tO\tspecify\tO\neither\tO\teither\tO\n-z\tB-Code_Block\t-z\tB-Code_Block\n(\tO\t(\tO\nmaxzoom\tB-Library_Variable\tmaxzoom\tO\n)\tO\t)\tO\nor\tO\tor\tO\n-s\tB-Code_Block\t-s\tB-Code_Block\n(\tO\t(\tO\nbin\tB-Library_Variable\tbin\tO\nsize\tI-Library_Variable\tsize\tO\n)\tO\t)\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ntileset\tO\ttileset\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nmerging\tO\tmerging\tO\nexisting\tO\texisting\tO\ntilesets\tO\ttilesets\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmaxzoom\tB-Library_Variable\tmaxzoom\tO\nplus\tO\tplus\tO\nthe\tO\tthe\tO\ndetail\tB-Library_Variable\tdetail\tO\nalways\tO\talways\tO\nequals\tO\tequals\tO\nthe\tO\tthe\tO\nbin\tB-Library_Variable\tbin\tO\nsize\tI-Library_Variable\tsize\tO\n.\tO\t.\tO\n\t\nLevel\tO\tLevel\tO\nbucketing\tO\tbucketing\tO\n\t\n-l\tB-Code_Block\t-l\tB-Code_Block\nlevels\tB-Library_Variable\tlevels\tO\n:\tO\t:\tO\nQuantize\tO\tQuantize\tO\nthe\tO\tthe\tO\nnormalized\tO\tnormalized\tO\ncounts\tO\tcounts\tO\nwithin\tO\twithin\tO\neach\tO\teach\tO\ntile\tO\ttile\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nspecified\tO\tspecified\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nlevels\tO\tlevels\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\n50\tO\t50\tO\n.\tO\t.\tO\n\t\n-m\tB-Code_Block\t-m\tB-Code_Block\nlevel\tB-Library_Variable\tlevel\tO\n:\tO\t:\tO\nDo\tO\tDo\tO\nn't\tO\tn't\tO\ninclude\tO\tinclude\tO\nnormalized\tO\tnormalized\tO\ncounts\tO\tcounts\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nquantized\tO\tquantized\tO\nbelow\tO\tbelow\tO\nthe\tO\tthe\tO\nspecified\tO\tspecified\tO\nlevel\tO\tlevel\tO\n.\tO\t.\tO\n\t\n-M\tB-Code_Block\t-M\tB-Code_Block\ncount\tB-Library_Variable\tcount\tO\n:\tO\t:\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ninclude\tO\tinclude\tO\nabsolute\tO\tabsolute\tO\ncounts\tO\tcounts\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nbelow\tO\tbelow\tO\nthe\tO\tthe\tO\nspecified\tO\tspecified\tO\ncount\tO\tcount\tO\n.\tO\t.\tO\n\t\n-g\tB-Code_Block\t-g\tB-Code_Block\ngamma\tB-Library_Variable\tgamma\tO\n:\tO\t:\tO\nScale\tO\tScale\tO\nthe\tO\tthe\tO\ncounts\tO\tcounts\tO\nwithin\tO\twithin\tO\neach\tO\teach\tO\ntile\tO\ttile\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ngamma'th\tO\tgamma'th\tO\nroot\tO\troot\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\nlinear\tO\tlinear\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\n2.5\tO\t2.5\tO\n.\tO\t.\tO\n\t\n-y\tB-Code_Block\t-y\tB-Code_Block\ndensity\tI-Code_Block\tdensity\tI-Code_Block\n:\tO\t:\tO\nInclude\tO\tInclude\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\nin\tO\tin\tO\neach\tO\teach\tO\nvector\tB-Data_Structure\tvector\tO\nfeature\tO\tfeature\tO\nindicating\tO\tindicating\tO\nthe\tO\tthe\tO\nnormalized\tO\tnormalized\tO\ndensity\tO\tdensity\tO\nof\tO\tof\tO\npoints\tO\tpoints\tO\nwithin\tO\twithin\tO\neach\tO\teach\tO\nbin\tO\tbin\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\n-y\tB-Code_Block\t-y\tB-Code_Block\ncount\tI-Code_Block\tcount\tI-Code_Block\n:\tO\t:\tO\nInclude\tO\tInclude\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\nin\tO\tin\tO\neach\tO\teach\tO\nvector\tB-Data_Structure\tvector\tO\nfeature\tO\tfeature\tO\nindicating\tO\tindicating\tO\nthe\tO\tthe\tO\ncount\tO\tcount\tO\nof\tO\tof\tO\npoints\tO\tpoints\tO\nwithin\tO\twithin\tO\neach\tO\teach\tO\nbin\tO\tbin\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncount\tO\tcount\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\napproximate\tO\tapproximate\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nlevels\tO\tlevels\tO\nare\tO\tare\tO\nbucketed\tO\tbucketed\tO\n.\tO\t.\tO\n\t\nBitmap\tB-Data_Structure\tBitmap\tO\ntiles\tO\ttiles\tO\n\t\n-b\tB-Code_Block\t-b\tB-Code_Block\n:\tO\t:\tO\nCreate\tO\tCreate\tO\nPNG\tB-File_Type\tPNG\tO\nraster\tB-Data_Structure\traster\tO\ntiles\tO\ttiles\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nvectors\tB-Data_Structure\tvectors\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nplanning\tO\tplanning\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthese\tO\tthese\tO\ntiles\tO\ttiles\tO\nwith\tO\twith\tO\nMapbox\tB-Library\tMapbox\tO\nGL\tI-Library\tGL\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nprobably\tO\tprobably\tO\nalso\tO\talso\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\n-d8\tB-Code_Block\t-d8\tB-Code_Block\nfor\tO\tfor\tO\nnormal\tO\tnormal\tO\n256x256\tO\t256x256\tO\nweb\tO\tweb\tO\nmap\tO\tmap\tO\ntile\tO\ttile\tO\nresolution\tO\tresolution\tO\n.\tO\t.\tO\n\t\n-c\tB-Code_Block\t-c\tB-Code_Block\nrrggbb\tB-Library_Variable\trrggbb\tO\n:\tO\t:\tO\nSpecify\tO\tSpecify\tO\nthe\tO\tthe\tO\ncolor\tO\tcolor\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nin\tO\tin\tO\nraster\tB-Data_Structure\traster\tO\ntiles\tO\ttiles\tO\nas\tO\tas\tO\na\tO\ta\tO\nhex\tO\thex\tO\ncolor\tO\tcolor\tO\n.\tO\t.\tO\n\t\n-w\tB-Code_Block\t-w\tB-Code_Block\n:\tO\t:\tO\nMake\tO\tMake\tO\ntiles\tO\ttiles\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nwhite\tO\twhite\tO\nbackground\tO\tbackground\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nblack\tO\tblack\tO\nbackground\tO\tbackground\tO\n.\tO\t.\tO\n\t\nVector\tB-Data_Structure\tVector\tO\ntiles\tO\ttiles\tO\n\t\n-1\tB-Code_Block\t-1\tB-Code_Block\n:\tO\t:\tO\nOutput\tO\tOutput\tO\nan\tO\tan\tO\nindividual\tO\tindividual\tO\npolygon\tB-Library_Class\tpolygon\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nbin\tO\tbin\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncombining\tO\tcombining\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\nMultiPolygons\tB-Library_Class\tMultiPolygons\tO\n.\tO\t.\tO\n\t\n-P\tB-Code_Block\t-P\tB-Code_Block\n:\tO\t:\tO\nOutput\tO\tOutput\tO\nPoints\tB-Library_Class\tPoints\tO\nor\tO\tor\tO\nMultiPoints\tB-Library_Class\tMultiPoints\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nPolygons\tB-Library_Class\tPolygons\tO\nor\tO\tor\tO\nMultiPolygons\tB-Library_Class\tMultiPolygons\tO\n\t\nTile\tO\tTile\tO\nsize\tO\tsize\tO\n\t\n-k\tB-Code_Block\t-k\tB-Code_Block\n:\tO\t:\tO\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nenforce\tO\tenforce\tO\nthe\tO\tthe\tO\n500K\tO\t500K\tO\nlimit\tO\tlimit\tO\non\tO\ton\tO\ntile\tO\ttile\tO\nsize\tO\tsize\tO\n\t\n-K\tB-Code_Block\t-K\tB-Code_Block\n:\tO\t:\tO\nRaise\tO\tRaise\tO\nthe\tO\tthe\tO\nminimum\tO\tminimum\tO\ncount\tO\tcount\tO\nthreshold\tO\tthreshold\tO\non\tO\ton\tO\neach\tO\teach\tO\ntile\tO\ttile\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nit\tO\tit\tO\nunder\tO\tunder\tO\n500K\tO\t500K\tO\n.\tO\t.\tO\n\t\nMiscellaneous\tO\tMiscellaneous\tO\ncontrols\tO\tcontrols\tO\n\t\n-p\tB-Code_Block\t-p\tB-Code_Block\ncpus\tO\tcpus\tO\n:\tO\t:\tO\nUse\tO\tUse\tO\nthe\tO\tthe\tO\nspecified\tO\tspecified\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nparallel\tO\tparallel\tO\ntasks\tO\ttasks\tO\n.\tO\t.\tO\n\t\n-q\tB-Code_Block\t-q\tB-Code_Block\n:\tO\t:\tO\nSilence\tO\tSilence\tO\nthe\tO\tthe\tO\nprogress\tO\tprogress\tO\nindicator\tO\tindicator\tO\n\t\n-B\tB-Code_Block\t-B\tB-Code_Block\nmultiplier\tO\tmultiplier\tO\n:\tO\t:\tO\nMultiply\tO\tMultiply\tO\nthe\tO\tthe\tO\nnormalized\tO\tnormalized\tO\ndensity\tO\tdensity\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nspecified\tO\tspecified\tO\nmultiplier\tO\tmultiplier\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nbrighter\tO\tbrighter\tO\nor\tO\tor\tO\ndimmer\tO\tdimmer\tO\n.\tO\t.\tO\n\t\nRelationship\tO\tRelationship\tO\nbetween\tO\tbetween\tO\nbin\tB-Library_Variable\tbin\tO\nsize\tI-Library_Variable\tsize\tO\n,\tO\t,\tO\nmaxzoom\tB-Library_Variable\tmaxzoom\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndetail\tB-Library_Variable\tdetail\tO\n\t\nWhat\tO\tWhat\tO\nexactly\tO\texactly\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\ndetail\tB-Library_Variable\tdetail\tO\n\"\tO\t\"\tO\nparameter\tO\tparameter\tO\nmeans\tO\tmeans\tO\nis\tO\tis\tO\noften\tO\toften\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nof\tO\tof\tO\nconfusion\tO\tconfusion\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nmaxzoom\tB-Library_Variable\tmaxzoom\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nbin\tB-Library_Variable\tbin\tO\nsize\tI-Library_Variable\tsize\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ndata\tO\tdata\tO\nwith\tO\twith\tO\na\tO\ta\tO\nbin\tB-Library_Variable\tbin\tO\nsize\tI-Library_Variable\tsize\tO\nof\tO\tof\tO\n23\tO\t23\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntile\tO\ttile\tO\nit\tO\tit\tO\nwith\tO\twith\tO\na\tO\ta\tO\nmaxzoom\tB-Library_Variable\tmaxzoom\tO\nof\tO\tof\tO\n16\tO\t16\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nspecify\tO\tspecify\tO\na\tO\ta\tO\ndetail\tB-Library_Variable\tdetail\tO\nof\tO\tof\tO\n7\tO\t7\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\n16+7\tO\t16+7\tO\n=\tO\t=\tO\n23\tO\t23\tO\n.\tO\t.\tO\n\t\nWithin\tO\tWithin\tO\neach\tO\teach\tO\ntile\tO\ttile\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nresolution\tO\tresolution\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntile\tO\ttile\tO\nis\tO\tis\tO\n2^detail\tB-Library_Variable\t2^detail\tO\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nspecify\tO\tspecify\tO\na\tO\ta\tO\ndetail\tB-Library_Variable\tdetail\tO\nof\tO\tof\tO\n7\tO\t7\tO\n,\tO\t,\tO\neach\tO\teach\tO\ntile\tO\ttile\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\n128x128\tO\t128x128\tO\ngrid\tO\tgrid\tO\nof\tO\tof\tO\npixels\tO\tpixels\tO\nor\tO\tor\tO\nfeatures\tO\tfeatures\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\n2^7\tO\t2^7\tO\n=\tO\t=\tO\n128\tO\t128\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\noften\tO\toften\tO\nmore\tO\tmore\tO\nuseful\tO\tuseful\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nbackward\tO\tbackward\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbin\tB-Library_Variable\tbin\tO\nsize\tI-Library_Variable\tsize\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmaxzoom\tB-Library_Variable\tmaxzoom\tO\n:\tO\t:\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ndata\tO\tdata\tO\nwith\tO\twith\tO\na\tO\ta\tO\nbin\tB-Library_Variable\tbin\tO\nsize\tI-Library_Variable\tsize\tO\nof\tO\tof\tO\n24\tO\t24\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n256x256\tO\t256x256\tO\ntiles\tO\ttiles\tO\n,\tO\t,\tO\n2^8\tO\t2^8\tO\n=\tO\t=\tO\n256\tO\t256\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nspecify\tO\tspecify\tO\na\tO\ta\tO\ndetail\tB-Library_Variable\tdetail\tO\nof\tO\tof\tO\n8\tO\t8\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmaxzoom\tB-Library_Variable\tmaxzoom\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n16\tO\t16\tO\nbecause\tO\tbecause\tO\n24-8\tO\t24-8\tO\n=\tO\t=\tO\n16\tO\t16\tO\n.\tO\t.\tO\n\t\nInternal\tO\tInternal\tO\nfile\tO\tfile\tO\nformat\tO\tformat\tO\n\t\nThe\tO\tThe\tO\n.count\tB-File_Type\t.count\tB-Code_Block\nfiles\tO\tfiles\tO\ncontain\tO\tcontain\tO\na\tO\ta\tO\nheader\tO\theader\tO\nfor\tO\tfor\tO\nversioning\tO\tversioning\tO\nand\tO\tand\tO\nidentification\tO\tidentification\tO\nfollowed\tO\tfollowed\tO\n(\tO\t(\tO\ncurrently\tO\tcurrently\tO\n)\tO\t)\tO\nby\tO\tby\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\n12-byte\tO\t12-byte\tO\nrecords\tO\trecords\tO\ncontaining\tO\tcontaining\tO\n:\tO\t:\tO\n\t\n64-bit\tO\t64-bit\tO\nlocation\tO\tlocation\tO\nquadkey\tO\tquadkey\tO\n\t\n32-bit\tO\t32-bit\tO\ncount\tO\tcount\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmongrate/mongrate.com\tO\tmongrate/mongrate.com\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/mongrate/mongrate.com\tO\thttps://github.com/mongrate/mongrate.com\tO\n\t\nMongrate.com\tB-Website\tMongrate.com\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\norganization\tO\torganization\tO\nwebsite\tO\twebsite\tO\n.\tO\t.\tO\n\t\nDependencies\tO\tDependencies\tO\n\t\nJekyll\tB-Application\tJekyll\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\n\t\nClone\tO\tClone\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nInstall\tO\tInstall\tO\nnginx\tB-Application\tnginx\tO\n.\tO\t.\tO\n\t\nSymlink\tO\tSymlink\tO\nthe\tO\tthe\tO\nnginx\tB-Application\tnginx\tO\nconfig\tO\tconfig\tO\n:\tO\t:\tO\nsudo\tB-Code_Block\tsudo\tB-Code_Block\nln\tI-Code_Block\tln\tI-Code_Block\n-s\tI-Code_Block\t-s\tI-Code_Block\n/path/to/your/clone/of/mongrate.com/etc/nginx.conf\tI-Code_Block\t/path/to/your/clone/of/mongrate.com/etc/nginx.conf\tI-Code_Block\n/etc/nginx/sites-enabled/mongrate.com.conf\tI-Code_Block\t/etc/nginx/sites-enabled/mongrate.com.conf\tI-Code_Block\n\t\nRestart\tO\tRestart\tO\nnginx\tB-Application\tnginx\tO\n:\tO\t:\tO\nsudo\tB-Code_Block\tsudo\tB-Code_Block\nservice\tI-Code_Block\tservice\tI-Code_Block\nnginx\tI-Code_Block\tnginx\tI-Code_Block\nrestart\tI-Code_Block\trestart\tI-Code_Block\n\t\njekyll\tB-Code_Block\tjekyll\tB-Code_Block\nbuild\tI-Code_Block\tbuild\tI-Code_Block\n-w\tI-Code_Block\t-w\tI-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\ncontribute\tO\tcontribute\tO\n\t\nFork\tO\tFork\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngigitux/vesuvianabot\tO\tgigitux/vesuvianabot\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/gigitux/vesuvianabot/issues/3\tO\thttps://github.com/gigitux/vesuvianabot/issues/3\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\nsee\tO\tsee\tO\nhttp://time1.eavsrl.it/\tO\thttp://time1.eavsrl.it/\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/9\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/9\tO\n\t\nSorry\tO\tSorry\tO\nfor\tO\tfor\tO\nnot\tO\tnot\tO\nrebasing\tO\trebasing\tO\nfirst\tO\tfirst\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/127\tO\thttps://github.com/svenstaro/flamejam/issues/127\tO\n\t\nDue\tO\tDue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nswitch\tO\tswitch\tO\nto\tO\tto\tO\npostgresql\tB-Application\tpostgresql\tO\nand\tO\tand\tO\nits\tO\tits\tO\ndifferent\tO\tdifferent\tO\nsorting\tO\tsorting\tO\ndefaults\tO\tdefaults\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnow\tO\tnow\tO\nsometimes\tO\tsometimes\tO\nfixed\tO\tfixed\tO\nby\tO\tby\tO\nchance\tO\tchance\tO\n.\tO\t.\tO\n\t\n;)\tO\t;)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmakeen-project/makeen\tO\tmakeen-project/makeen\tO\n-hapi\tO\t-hapi\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/viczam/makeen-hapi/issues/56\tO\thttps://github.com/viczam/makeen-hapi/issues/56\tO\n\t\nWS\tO\tWS\tO\nJira\tB-Application\tJira\tO\nTicket\tO\tTicket\tO\n:\tO\t:\tO\nACP-43\tO\tACP-43\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/4\tO\thttps://github.com/numen31337/AKVideoImageView/issues/4\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nvia\tO\tvia\tO\nlink\tO\tlink\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nis\tO\tis\tO\ncrashing\tO\tcrashing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4665\tI-Code_Block\tGR_4665\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCrash\tO\tCrash\tO\nlog\tO\tlog\tO\n\t\nThumbnail\tO\tThumbnail\tO\nimage\tO\timage\tO\ngeneration\tO\tgeneration\tO\nerror\tO\terror\tO\nError\tO\tError\tO\nDomain\tO\tDomain\tO\n=\tO\t=\tO\nAVFoundationErrorDomain\tO\tAVFoundationErrorDomain\tO\nCode\tO\tCode\tO\n=\tO\t=\tO\n-11800\tO\t-11800\tO\n\"\tO\t\"\tO\nThe\tO\tThe\tO\noperation\tO\toperation\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\ncompleted\tO\tcompleted\tO\n\"\tO\t\"\tO\nUserInfo\tO\tUserInfo\tO\n={\tO\t={\tO\nNSUnderlyingError\tO\tNSUnderlyingError\tO\n=\tO\t=\tO\n0x600000240e70\tO\t0x600000240e70\tO\n{\tO\t{\tO\nError\tO\tError\tO\nDomain\tO\tDomain\tO\n=\tO\t=\tO\nNSOSStatusErrorDomain\tO\tNSOSStatusErrorDomain\tO\nCode\tO\tCode\tO\n=\tO\t=\tO\n-1022\tO\t-1022\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nnull\tO\tnull\tO\n)\tO\t)\tO\n\"\tO\t\"\tO\n}\tO\t}\tO\n,\tO\t,\tO\nNSLocalizedFailureReason\tO\tNSLocalizedFailureReason\tO\n=\tO\t=\tO\nAn\tO\tAn\tO\nunknown\tO\tunknown\tO\nerror\tO\terror\tO\noccurred\tO\toccurred\tO\n(\tO\t(\tO\n-1022\tO\t-1022\tO\n)\tO\t)\tO\n,\tO\t,\tO\nNSLocalizedDescription\tO\tNSLocalizedDescription\tO\n=\tO\t=\tO\nThe\tO\tThe\tO\noperation\tO\toperation\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\ncompleted}\tO\tcompleted}\tO\n2017-08-09\tO\t2017-08-09\tO\n11:57:15.747\tO\t11:57:15.747\tO\nExample[15354:280879]\tO\tExample[15354:280879]\tO\n***\tO\t***\tO\nTerminating\tO\tTerminating\tO\napp\tO\tapp\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nuncaught\tO\tuncaught\tO\nexception\tO\texception\tO\n'\tO\t'\tO\nNSInvalidArgumentException\tO\tNSInvalidArgumentException\tO\n'\tO\t'\tO\n,\tO\t,\tO\nreason\tO\treason\tO\n:\tO\t:\tO\n'\tO\t'\tO\n***\tO\t***\tO\n-\tO\t-\tO\n[\tO\t[\tO\nAVAssetReaderTrackOutput\tO\tAVAssetReaderTrackOutput\tO\ninitWithTrack:outputSettings\tO\tinitWithTrack:outputSettings\tO\n:\tO\t:\tO\n]\tO\t]\tO\ninvalid\tO\tinvalid\tO\nparameter\tO\tparameter\tO\nnot\tO\tnot\tO\nsatisfying\tO\tsatisfying\tO\n:\tO\t:\tO\ntrack\tO\ttrack\tO\n!=\tO\t!=\tO\n(\tO\t(\tO\n(\tO\t(\tO\nvoid\tO\tvoid\tO\n*\tO\t*\tO\n)\tO\t)\tO\n0\tO\t0\tO\n)\tO\t)\tO\n'\tO\t'\tO\n***\tO\t***\tO\nFirst\tO\tFirst\tO\nthrow\tO\tthrow\tO\ncall\tO\tcall\tO\nstack\tO\tstack\tO\n:\tO\t:\tO\n(\tO\t(\tO\n0\tO\t0\tO\nCoreFoundation\tO\tCoreFoundation\tO\n0x0000000105832b0b\tO\t0x0000000105832b0b\tO\n__exceptionPreprocess\tO\t__exceptionPreprocess\tO\n+\tO\t+\tO\n171\tO\t171\tO\n1\tO\t1\tO\nlibobjc.A.dylib\tO\tlibobjc.A.dylib\tO\n0x0000000104f27141\tO\t0x0000000104f27141\tO\nobjc_exception_throw\tO\tobjc_exception_throw\tO\n+\tO\t+\tO\n48\tO\t48\tO\n2\tO\t2\tO\nAVFoundation\tO\tAVFoundation\tO\n0x00000001054815ea\tO\t0x00000001054815ea\tO\n-\tO\t-\tO\n[\tO\t[\tO\nAVAssetReaderTrackOutput\tO\tAVAssetReaderTrackOutput\tO\ndealloc\tO\tdealloc\tO\n]\tO\t]\tO\n+\tO\t+\tO\n0\tO\t0\tO\n3\tO\t3\tO\nAVFoundation\tO\tAVFoundation\tO\n0x000000010548118d\tO\t0x000000010548118d\tO\n+\tO\t+\tO\n[\tO\t[\tO\nAVAssetReaderTrackOutput\tO\tAVAssetReaderTrackOutput\tO\nassetReaderTrackOutputWithTrack:outputSettings\tO\tassetReaderTrackOutputWithTrack:outputSettings\tO\n:\tO\t:\tO\n]\tO\t]\tO\n+\tO\t+\tO\n62\tO\t62\tO\n4\tO\t4\tO\nExample\tO\tExample\tO\n0x0000000104951ba5\tO\t0x0000000104951ba5\tO\n-\tO\t-\tO\n[\tO\t[\tO\nAKVideoImageView\tO\tAKVideoImageView\tO\ncreateAssetReader\tO\tcreateAssetReader\tO\n]\tO\t]\tO\n+\tO\t+\tO\n1045\tO\t1045\tO\n5\tO\t5\tO\nExample\tO\tExample\tO\n0x00000001049520a6\tO\t0x00000001049520a6\tO\n-\tO\t-\tO\n[\tO\t[\tO\nAKVideoImageView\tO\tAKVideoImageView\tO\nplayVideo\tO\tplayVideo\tO\n]\tO\t]\tO\n+\tO\t+\tO\n870\tO\t870\tO\n6\tO\t6\tO\nExample\tO\tExample\tO\n0x000000010495150b\tO\t0x000000010495150b\tO\n-\tO\t-\tO\n[\tO\t[\tO\nAKVideoImageView\tO\tAKVideoImageView\tO\ndidMoveToSuperview\tO\tdidMoveToSuperview\tO\n]\tO\t]\tO\n+\tO\t+\tO\n43\tO\t43\tO\n7\tO\t7\tO\nUIKit\tO\tUIKit\tO\n0x000000010650fb53\tO\t0x000000010650fb53\tO\n__45\tO\t__45\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIView(Hierarchy)\tO\tUIView(Hierarchy)\tO\n_postMovedFromSuperview\tO\t_postMovedFromSuperview\tO\n:\tO\t:\tO\n]\tO\t]\tO\n_block_invoke\tO\t_block_invoke\tO\n+\tO\t+\tO\n932\tO\t932\tO\n8\tO\t8\tO\nUIKit\tO\tUIKit\tO\n0x000000010650f72d\tO\t0x000000010650f72d\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIView(Hierarchy)\tO\tUIView(Hierarchy)\tO\n_postMovedFromSuperview\tO\t_postMovedFromSuperview\tO\n:\tO\t:\tO\n]\tO\t]\tO\n+\tO\t+\tO\n828\tO\t828\tO\n9\tO\t9\tO\nUIKit\tO\tUIKit\tO\n0x000000010651f6ba\tO\t0x000000010651f6ba\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIView(Internal)\tO\tUIView(Internal)\tO\n_addSubview:positioned:relativeTo\tO\t_addSubview:positioned:relativeTo\tO\n:\tO\t:\tO\n]\tO\t]\tO\n+\tO\t+\tO\n1927\tO\t1927\tO\n10\tO\t10\tO\nUIKit\tO\tUIKit\tO\n0x000000010650d9a8\tO\t0x000000010650d9a8\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIView(Hierarchy)\tO\tUIView(Hierarchy)\tO\naddSubview\tO\taddSubview\tO\n:\tO\t:\tO\n]\tO\t]\tO\n+\tO\t+\tO\n838\tO\t838\tO\n11\tO\t11\tO\nExample\tO\tExample\tO\n0x0000000104950812\tO\t0x0000000104950812\tO\n-\tO\t-\tO\n[\tO\t[\tO\nViewController\tO\tViewController\tO\nviewDidLoad\tO\tviewDidLoad\tO\n]\tO\t]\tO\n+\tO\t+\tO\n370\tO\t370\tO\n12\tO\t12\tO\nUIKit\tO\tUIKit\tO\n0x0000000106602cca\tO\t0x0000000106602cca\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIViewController\tO\tUIViewController\tO\nloadViewIfRequired\tO\tloadViewIfRequired\tO\n]\tO\t]\tO\n+\tO\t+\tO\n1235\tO\t1235\tO\n13\tO\t13\tO\nUIKit\tO\tUIKit\tO\n0x000000010660310a\tO\t0x000000010660310a\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIViewController\tO\tUIViewController\tO\nview\tO\tview\tO\n]\tO\t]\tO\n+\tO\t+\tO\n27\tO\t27\tO\n14\tO\t14\tO\nUIKit\tO\tUIKit\tO\n0x00000001064cb63a\tO\t0x00000001064cb63a\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIWindow\tO\tUIWindow\tO\naddRootViewControllerViewIfPossible\tO\taddRootViewControllerViewIfPossible\tO\n]\tO\t]\tO\n+\tO\t+\tO\n65\tO\t65\tO\n15\tO\t15\tO\nUIKit\tO\tUIKit\tO\n0x00000001064cbd20\tO\t0x00000001064cbd20\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIWindow\tO\tUIWindow\tO\n_setHidden:forced\tO\t_setHidden:forced\tO\n:\tO\t:\tO\n]\tO\t]\tO\n+\tO\t+\tO\n294\tO\t294\tO\n16\tO\t16\tO\nUIKit\tO\tUIKit\tO\n0x00000001064deb6e\tO\t0x00000001064deb6e\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIWindow\tO\tUIWindow\tO\nmakeKeyAndVisible\tO\tmakeKeyAndVisible\tO\n]\tO\t]\tO\n+\tO\t+\tO\n42\tO\t42\tO\n17\tO\t17\tO\nUIKit\tO\tUIKit\tO\n0x000000010645831f\tO\t0x000000010645831f\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIApplication\tO\tUIApplication\tO\n_callInitializationDelegatesForMainScene:transitionContext\tO\t_callInitializationDelegatesForMainScene:transitionContext\tO\n:\tO\t:\tO\n]\tO\t]\tO\n+\tO\t+\tO\n4346\tO\t4346\tO\n18\tO\t18\tO\nUIKit\tO\tUIKit\tO\n0x000000010645e584\tO\t0x000000010645e584\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIApplication\tO\tUIApplication\tO\n_runWithMainScene:transitionContext:completion\tO\t_runWithMainScene:transitionContext:completion\tO\n:\tO\t:\tO\n]\tO\t]\tO\n+\tO\t+\tO\n1709\tO\t1709\tO\n19\tO\t19\tO\nUIKit\tO\tUIKit\tO\n0x000000010645b793\tO\t0x000000010645b793\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIApplication\tO\tUIApplication\tO\nworkspaceDidEndTransaction\tO\tworkspaceDidEndTransaction\tO\n:\tO\t:\tO\n]\tO\t]\tO\n+\tO\t+\tO\n182\tO\t182\tO\n20\tO\t20\tO\nFrontBoardServices\tO\tFrontBoardServices\tO\n0x000000010b0de5f6\tO\t0x000000010b0de5f6\tO\nFBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK\tO\tFBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK\tO\n+\tO\t+\tO\n24\tO\t24\tO\n21\tO\t21\tO\nFrontBoardServices\tO\tFrontBoardServices\tO\n0x000000010b0de46d\tO\t0x000000010b0de46d\tO\n-\tO\t-\tO\n[\tO\t[\tO\nFBSSerialQueue\tO\tFBSSerialQueue\tO\n_performNext\tO\t_performNext\tO\n]\tO\t]\tO\n+\tO\t+\tO\n186\tO\t186\tO\n22\tO\t22\tO\nFrontBoardServices\tO\tFrontBoardServices\tO\n0x000000010b0de7f6\tO\t0x000000010b0de7f6\tO\n-\tO\t-\tO\n[\tO\t[\tO\nFBSSerialQueue\tO\tFBSSerialQueue\tO\n_performNextFromRunLoopSource\tO\t_performNextFromRunLoopSource\tO\n]\tO\t]\tO\n+\tO\t+\tO\n45\tO\t45\tO\n23\tO\t23\tO\nCoreFoundation\tO\tCoreFoundation\tO\n0x00000001057d8c01\tO\t0x00000001057d8c01\tO\nCFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION\tO\tCFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION\tO\n+\tO\t+\tO\n17\tO\t17\tO\n24\tO\t24\tO\nCoreFoundation\tO\tCoreFoundation\tO\n0x00000001057be0cf\tO\t0x00000001057be0cf\tO\n__CFRunLoopDoSources0\tO\t__CFRunLoopDoSources0\tO\n+\tO\t+\tO\n527\tO\t527\tO\n25\tO\t25\tO\nCoreFoundation\tO\tCoreFoundation\tO\n0x00000001057bd5ff\tO\t0x00000001057bd5ff\tO\n__CFRunLoopRun\tO\t__CFRunLoopRun\tO\n+\tO\t+\tO\n911\tO\t911\tO\n26\tO\t26\tO\nCoreFoundation\tO\tCoreFoundation\tO\n0x00000001057bd016\tO\t0x00000001057bd016\tO\nCFRunLoopRunSpecific\tO\tCFRunLoopRunSpecific\tO\n+\tO\t+\tO\n406\tO\t406\tO\n27\tO\t27\tO\nUIKit\tO\tUIKit\tO\n0x000000010645a02f\tO\t0x000000010645a02f\tO\n-\tO\t-\tO\n[\tO\t[\tO\nUIApplication\tO\tUIApplication\tO\n_run\tO\t_run\tO\n]\tO\t]\tO\n+\tO\t+\tO\n468\tO\t468\tO\n28\tO\t28\tO\nUIKit\tO\tUIKit\tO\n0x00000001064600d4\tO\t0x00000001064600d4\tO\nUIApplicationMain\tO\tUIApplicationMain\tO\n+\tO\t+\tO\n159\tO\t159\tO\n29\tO\t29\tO\nExample\tO\tExample\tO\n0x0000000104953acf\tO\t0x0000000104953acf\tO\nmain\tO\tmain\tO\n+\tO\t+\tO\n111\tO\t111\tO\n30\tO\t30\tO\nlibdyld.dylib\tO\tlibdyld.dylib\tO\n0x0000000108f3165d\tO\t0x0000000108f3165d\tO\nstart\tO\tstart\tO\n+\tO\t+\tO\n1\tO\t1\tO\n31\tO\t31\tO\n??\tO\t??\tO\n?\tO\t?\tO\n\t\n0x0000000000000001\tO\t0x0000000000000001\tO\n0x0\tO\t0x0\tO\n+\tO\t+\tO\n1\tO\t1\tO\n)\tO\t)\tO\nlibc++\tO\tlibc++\tO\nabi.dylib\tO\tabi.dylib\tO\n:\tO\t:\tO\nterminating\tO\tterminating\tO\nwith\tO\twith\tO\nuncaught\tO\tuncaught\tO\nexception\tO\texception\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nNSException\tB-Library_Class\tNSException\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnerab/TaskWarriorMail\tO\tnerab/TaskWarriorMail\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/nerab/TaskWarriorMail/issues/3\tO\thttps://github.com/nerab/TaskWarriorMail/issues/3\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nreporting\tO\treporting\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nSomehow\tO\tSomehow\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ngem\tO\tgem\tO\nwas\tO\twas\tO\nnever\tO\tnever\tO\npushed\tO\tpushed\tO\nto\tO\tto\tO\nrubygems.org\tB-Website\trubygems.org\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nwhatever\tO\twhatever\tO\nreason\tO\treason\tO\n;-)\tO\t;-)\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nre-try\tO\tre-try\tO\n?\tO\t?\tO\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\ntry\tO\ttry\tO\ncygwin\tB-Application\tcygwin\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nlack\tO\tlack\tO\nof\tO\tof\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\na\tO\ta\tO\nWindows\tB-Operating_System\tWindows\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nSuccess\tO\tSuccess\tO\n(\tO\t(\tO\nor\tO\tor\tO\nbug\tO\tbug\tO\n-\tO\t-\tO\n)\tO\t)\tO\nreports\tO\treports\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\n,\tO\t,\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\npreferred\tO\tpreferred\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsergio/ophmisu\tO\twsergio/ophmisu\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsergio/ophmisu/issues/1\tO\thttps://github.com/wsergio/ophmisu/issues/1\tO\n\t\nOh\tO\tOh\tO\n,\tO\t,\tO\ndang\tO\tdang\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\ntelling\tO\ttelling\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nkilled\tO\tkilled\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSorry\tO\tSorry\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njacobratkiewicz/webgraph\tO\tjacobratkiewicz/webgraph\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jacobratkiewicz/webgraph/issues/1\tO\thttps://github.com/jacobratkiewicz/webgraph/issues/1\tO\n\t\nadd\tO\tadd\tO\nmissing\tO\tmissing\tO\n#include\tO\t#include\tO\n'\tO\t'\tO\ns\tO\ts\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nmandatory\tO\tmandatory\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nwith\tO\twith\tO\nnewer\tO\tnewer\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\ngcc/g\tB-Application\tgcc/g\tO\n++\tI-Application\t++\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njasonagus/jasonagus.github.io\tO\tjasonagus/jasonagus.github.io\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/jasonagus/jasonagus.github.io\tO\thttps://github.com/jasonagus/jasonagus.github.io\tO\n\t\njasonagus.github.io\tO\tjasonagus.github.io\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging\tO\thttps://github.com/contributte/logging\tO\n\t\nLogging\tO\tLogging\tO\n\t\n:boom\tO\t:boom\tO\n:\tO\t:\tO\nPlug-in\tO\tPlug-in\tO\nsupport\tO\tsupport\tO\nlogging\tO\tlogging\tO\nfor\tO\tfor\tO\nTracy\tB-Library\tTracy\tB-Code_Block\n&\tO\t&\tO\nNette\tB-Library\tNette\tB-Code_Block\nFramework\tI-Library\tFramework\tI-Code_Block\n.\tO\t.\tO\n\t\nDiscussion\tO\tDiscussion\tO\n/\tO\t/\tO\nHelp\tO\tHelp\tO\n\t\nInstall\tO\tInstall\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_7441\tI-Code_Block\tGR_7441\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nVersions\tO\tVersions\tO\n\t\nState\tO\tState\tO\n\t\nVersion\tO\tVersion\tO\n\t\nBranch\tO\tBranch\tO\n\t\nPHP\tB-Language\tPHP\tO\n\t\ndevelopment\tO\tdevelopment\tO\n\t\ndev-master\tB-Version\tdev-master\tB-Code_Block\n\t\nmaster\tO\tmaster\tB-Code_Block\n\t\n>=\tO\t>=\tB-Code_Block\n5.6\tB-Version\t5.6\tI-Code_Block\n\t\nstable\tO\tstable\tO\n\t\n^\tO\t^\tB-Code_Block\n0.2\tB-Version\t0.2\tI-Code_Block\n\t\nmaster\tO\tmaster\tB-Code_Block\n\t\n>=\tO\t>=\tB-Code_Block\n5.6\tB-Version\t5.6\tI-Code_Block\n\t\nOverview\tO\tOverview\tO\n\t\nTracy\tB-Library\tTracy\tO\n-\tO\t-\tO\nuniversal\tO\tuniversal\tO\nlogging\tO\tlogging\tO\n\t\nSlack\tB-Application\tSlack\tO\n-\tO\t-\tO\nsend\tO\tsend\tO\nexeptions\tO\texeptions\tO\nto\tO\tto\tO\nchannel\tO\tchannel\tO\n\t\nSentry\tB-Application\tSentry\tO\n-\tO\t-\tO\nsend\tO\tsend\tO\nexceptions\tO\texceptions\tO\nto\tO\tto\tO\nSentry\tB-Application\tSentry\tO\n\t\nMaintainers\tO\tMaintainers\tO\n\t\nMilan\tB-User_Name\tMilan\tO\nFelix\tI-User_Name\tFelix\tO\nŠulc\tI-User_Name\tŠulc\tO\n\t\nJosef\tB-User_Name\tJosef\tO\nBenjač\tI-User_Name\tBenjač\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\ntesting\tO\ttesting\tO\n,\tO\t,\tO\nreporting\tO\treporting\tO\nand\tO\tand\tO\ncontributing\tO\tcontributing\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/23\tO\thttps://github.com/mapbox/tile-count/issues/23\tO\n\t\nMerging\tO\tMerging\tO\nNew\tO\tNew\tO\nYork\tO\tYork\tO\nand\tO\tand\tO\nRome\tO\tRome\tO\nmbtiles\tB-File_Type\tmbtiles\tO\nfiles\tO\tfiles\tO\nproduces\tO\tproduces\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nmbtiles\tB-File_Type\tmbtiles\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nsmaller\tO\tsmaller\tO\nthan\tO\tthan\tO\neither\tO\teither\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nSmall\tO\tSmall\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\ngreat\tO\tgreat\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nprobably\tO\tprobably\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nlosing\tO\tlosing\tO\ndata\tO\tdata\tO\nsomewhere\tO\tsomewhere\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/36\tO\thttps://github.com/linked-statistics/xkos/issues/36\tO\n\t\nThe\tO\tThe\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nxkos:ExplanatoryNote\tB-Library_Class\txkos:ExplanatoryNote\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nresources\tO\tresources\tO\nto\tO\tto\tO\nwhich\tO\twhich\tO\nit\tO\tit\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nattach\tO\tattach\tO\nthe\tO\tthe\tO\ndifferent\tO\tdifferent\tO\nproperties\tO\tproperties\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexplanatory\tB-Library_Class\texplanatory\tO\nnotes\tI-Library_Class\tnotes\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nproperties\tO\tproperties\tO\n(\tO\t(\tO\neg\tO\teg\tO\n.\tO\t.\tO\n\t\nauthor\tB-Library_Variable\tauthor\tO\n,\tO\t,\tO\nversion\tB-Library_Variable\tversion\tO\n,\tO\t,\tO\npublishing\tB-Library_Variable\tpublishing\tO\ndate\tI-Library_Variable\tdate\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\n)\tO\t)\tO\n,\tO\t,\tO\nexisting\tO\texisting\tO\nproperties\tO\tproperties\tO\nfrom\tO\tfrom\tO\nstandard\tO\tstandard\tO\nvocabularies\tO\tvocabularies\tO\n(\tO\t(\tO\nDC\tB-Algorithm\tDC\tO\n,\tO\t,\tO\nPA\tB-Algorithm\tPA\tO\nV)\tI-Algorithm\tV)\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nbest\tO\tbest\tO\npractice\tO\tpractice\tO\ndocument\tO\tdocument\tO\non\tO\ton\tO\nXKOS\tB-Library\tXKOS\tO\nwill\tO\twill\tO\nprovide\tO\tprovide\tO\nadvice\tO\tadvice\tO\non\tO\ton\tO\nwhich\tO\twhich\tO\nproperties\tO\tproperties\tO\nto\tO\tto\tO\nchose\tO\tchose\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnote\tO\tnote\tO\n,\tO\t,\tO\na\tO\ta\tO\nmechanism\tO\tmechanism\tO\nborrowed\tO\tborrowed\tO\nto\tO\tto\tO\nEurovoc\tB-Website\tEurovoc\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nhttp://eurovoc.europa.eu/schema#noteLiteral\tO\thttp://eurovoc.europa.eu/schema#noteLiteral\tO\nproperty\tO\tproperty\tO\ntakes\tO\ttakes\tO\nan\tO\tan\tO\nXML\tB-Language\tXML\tO\nliteral\tO\tliteral\tO\nas\tO\tas\tO\nobject\tO\tobject\tO\nand\tO\tand\tO\nallows\tO\tallows\tO\nto\tO\tto\tO\nexpress\tO\texpress\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnote\tO\tnote\tO\nas\tO\tas\tO\nan\tO\tan\tO\nXHTML\tB-Language\tXHTML\tO\nfragment\tO\tfragment\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nhttp://id.insee.fr/codes/nafr2/sousClasse/27.11Z/noteContenuLimite\tO\thttp://id.insee.fr/codes/nafr2/sousClasse/27.11Z/noteContenuLimite\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nin\tO\tin\tO\nmany\tO\tmany\tO\noccasions\tO\toccasions\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nplain\tO\tplain\tO\ntext\tO\ttext\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnote\tO\tnote\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nformatting\tO\tformatting\tO\nor\tO\tor\tO\nstructuration\tO\tstructuration\tO\n(\tO\t(\tO\nin\tO\tin\tO\nparticular\tO\tparticular\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nindication\tO\tindication\tO\non\tO\ton\tO\nformatting\tO\tformatting\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nsource\tO\tsource\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n'\tO\t'\tO\nplainText\tB-Library_Variable\tplainText\tO\n'\tO\t'\tO\ndatatype\tO\tdatatype\tO\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nproposed\tO\tproposed\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nusage\tO\tusage\tO\n.\tO\t.\tO\n\t\nIts\tO\tIts\tO\ndomain\tO\tdomain\tO\nis\tO\tis\tO\nxkos:ExplanatoryNote\tB-Library_Class\txkos:ExplanatoryNote\tO\nand\tO\tand\tO\nits\tO\tits\tO\ntype\tO\ttype\tO\nis\tO\tis\tO\nxs:string\tB-Data_Type\txs:string\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/5\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/5\tO\n\t\n\t\nCoverage\tO\tCoverage\tO\ndecreased\tO\tdecreased\tO\n(\tO\t(\tO\n-1.2\tO\t-1.2\tO\n%\tO\t%\tO\n)\tO\t)\tO\nto\tO\tto\tO\n88.75\tO\t88.75\tO\n%\tO\t%\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\n81cd1b13b2365d1ce1bc8567d350e63d32df04a7\tO\t81cd1b13b2365d1ce1bc8567d350e63d32df04a7\tO\non\tO\ton\tO\nfix-module-loading\tO\tfix-module-loading\tO\ninto\tO\tinto\tO\n5d71ac9f6f55c4303eab5713f32a77c2fea5e229\tO\t5d71ac9f6f55c4303eab5713f32a77c2fea5e229\tO\non\tO\ton\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP/issues/4\tO\thttps://github.com/McMenemy/GoDoRP/issues/4\tO\n\t\nHi\tO\tHi\tO\n@fish2016\tB-User_Name\t@fish2016\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\ncontributed\tO\tcontributed\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nrepo\tO\trepo\tO\nin\tO\tin\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyour\tO\tyour\tO\ngo\tB-Library_Variable\tgo\tO\npath\tI-Library_Variable\tpath\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nset\tO\tset\tO\nup\tO\tup\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\nsuccessfully\tO\tsuccessfully\tO\nstarted\tO\tstarted\tO\nup\tO\tup\tO\nother\tO\tother\tO\ngolang\tB-Language\tgolang\tO\nprojects\tO\tprojects\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\none\tO\tone\tO\nthe\tO\tthe\tO\nfeatures\tO\tfeatures\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndevelop\tO\tdevelop\tO\nwithout\tO\twithout\tO\nneeding\tO\tneeding\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nLastly\tO\tLastly\tO\n,\tO\t,\tO\ngo\tO\tgo\tO\nis\tO\tis\tO\nnow\tO\tnow\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nan\tO\tan\tO\nofficial\tO\tofficial\tO\npackage\tO\tpackage\tO\nmanager\tO\tmanager\tO\ntool\tO\ttool\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nnow\tO\tnow\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nvendor\tO\tvendor\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/3\tO\thttps://github.com/smirarab/pasta/issues/3\tO\n\t\nmasking\tO\tmasking\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nfor\tO\tfor\tO\nraxml\tB-Application\traxml\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsirwilliamiv/api\tO\tsirwilliamiv/api\tO\n-bazam\tO\t-bazam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/sirwilliamiv/api-bazam/issues/1\tO\thttps://github.com/sirwilliamiv/api-bazam/issues/1\tO\n\t\ndeploying\tO\tdeploying\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nendpoints\tO\tendpoints\tO\nvia\tO\tvia\tO\nphone\tB-Device\tphone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/10\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/10\tO\n\t\nFWIW\tO\tFWIW\tO\n,\tO\t,\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\nin\tO\tin\tO\ngoaci\tB-Application\tgoaci\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nnow\tO\tnow\tO\njust\tO\tjust\tO\nextracting\tO\textracting\tO\nthe\tO\tthe\tO\nVCS\tO\tVCS\tO\ninformation/hash\tO\tinformation/hash\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\nthat\tO\tthat\tO\nas\tO\tas\tO\na\tO\ta\tO\nlabel\tO\tlabel\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\n\"\tB-Code_Block\t\"\tB-Code_Block\ngit\tI-Code_Block\tgit\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nabcdefghi\tI-Code_Block\tabcdefghi\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n)\tO\t)\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nACI\tO\tACI\tO\n:\tO\t:\tO\nhttps://github.com/appc/goaci/blob/master/vcs.go#L104\tO\thttps://github.com/appc/goaci/blob/master/vcs.go#L104\tO\n\t\nWould\tO\tWould\tO\nbe\tO\tbe\tO\ngreat\tO\tgreat\tO\nif\tO\tif\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\nstandardise\tO\tstandardise\tO\non\tO\ton\tO\na\tO\ta\tO\nformat\tO\tformat\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndhrrgn/codeigniter\tO\tdhrrgn/codeigniter\tO\n-uhoh\tO\t-uhoh\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dhrrgn/codeigniter-uhoh/issues/4\tO\thttps://github.com/dhrrgn/codeigniter-uhoh/issues/4\tO\n\t\nDocumentation\tO\tDocumentation\tO\naddition\tO\taddition\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nMy_exceptions.php\tB-File_Name\tMy_exceptions.php\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nprefix\tO\tprefix\tO\nconfig\tO\tconfig\tO\n.\tO\t.\tO\n\t\n$config['subclass_prefix']\tB-Variable_Name\t$config['subclass_prefix']\tO\n=\tO\t=\tO\n'\tO\t'\tO\napp_\tB-Variable_Name\tapp_\tO\n'\tO\t'\tO\n;\tO\t;\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndhrrgn/codeigniter\tO\tdhrrgn/codeigniter\tO\n-uhoh\tO\t-uhoh\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dhrrgn/codeigniter-uhoh/issues/3\tO\thttps://github.com/dhrrgn/codeigniter-uhoh/issues/3\tO\n\t\nHi\tO\tHi\tO\nLast\tO\tLast\tO\ncommit\tO\tcommit\tO\nintroduced\tO\tintroduced\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncibox\tB-Application\tcibox\tO\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\nstated\tO\tstated\tO\nhere\tO\there\tO\n\t\nMaybe\tO\tMaybe\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nWAMP\tB-Application\tWAMP\tO\ndefault\tO\tdefault\tO\nphp\tB-Language\tphp\tO\nbin\tB-File_Name\tbin\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nIsolated\tO\tIsolated\tO\nhunk\tO\thunk\tO\nat\tO\tat\tO\nline\tO\tline\tO\n195\tO\t195\tO\nand\tO\tand\tO\napearantly\tO\tapearantly\tO\nfixed\tO\tfixed\tO\nmy\tO\tmy\tO\nfatal\tO\tfatal\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nDetails\tO\tDetails\tO\n:\tO\t:\tO\nFatal\tB-Output_Block\tFatal\tO\nerror\tI-Output_Block\terror\tO\n:\tI-Output_Block\t:\tO\nrequire()\tI-Output_Block\trequire()\tO\n[\tB-Output_Block\t[\tO\nfunction.require\tI-Output_Block\tfunction.require\tO\n]\tI-Output_Block\t]\tO\n:\tB-Output_Block\t:\tO\nFailed\tI-Output_Block\tFailed\tO\nopening\tI-Output_Block\topening\tO\nrequired\tI-Output_Block\trequired\tO\n'\tI-Output_Block\t'\tO\nbonfire/application/errors/error_php_custom.php\tI-Output_Block\tbonfire/application/errors/error_php_custom.php\tO\n'\tI-Output_Block\t'\tO\n(\tI-Output_Block\t(\tO\ninclude_path=\tI-Output_Block\tinclude_path=\tO\n'\tB-Output_Block\t'\tO\n.\tI-Output_Block\t.\tO\n\t\n;\tB-Output_Block\t;\tO\nC:\\php5\\pear'\tI-Output_Block\tC:\\php5\\pear'\tO\n)\tI-Output_Block\t)\tO\nin\tB-Output_Block\tin\tO\nC:\\wamp\\www\\labAptana\\lab-bonfire\\bonfire\\application\\core\\MY_Exceptions.php\tI-Output_Block\tC:\\wamp\\www\\labAptana\\lab-bonfire\\bonfire\\application\\core\\MY_Exceptions.php\tO\non\tI-Output_Block\ton\tO\nline\tI-Output_Block\tline\tO\n195\tI-Output_Block\t195\tO\n\t\nThanks\tO\tThanks\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/12\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/12\tO\n\t\nMerged\tO\tMerged\tO\nsucessfully\tO\tsucessfully\tO\ninto\tO\tinto\tO\nmaster\tO\tmaster\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nHackClub-SLHS/HackClub\tO\tHackClub-SLHS/HackClub\tO\n-Website\tO\t-Website\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/HackClub-SLHS/HackClub-Website/issues/4\tO\thttps://github.com/HackClub-SLHS/HackClub-Website/issues/4\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/3\tO\thttps://github.com/op-jenkins/op-build/issues/3\tO\n\t\nretest\tO\tretest\tO\nthis\tO\tthis\tO\nplease\tO\tplease\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlobbin/chrome\tO\tlobbin/chrome\tO\n-die2nitemapupdater\tO\t-die2nitemapupdater\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lobbin/chrome-die2nitemapupdater/issues/1\tO\thttps://github.com/lobbin/chrome-die2nitemapupdater/issues/1\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\"\tO\t\"\tO\nAn\tO\tAn\tO\nerror\tO\terror\tO\noccurred\tO\toccurred\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmap\tB-User_Interface_Element\tmap\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nupdated\tO\tupdated\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nwhen\tO\twhen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nmap\tB-User_Interface_Element\tmap\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nit\tO\tit\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nPOST\tB-Library_Function\tPOST\tO\nas\tO\tas\tO\nrjdown\tB-User_Name\trjdown\tO\n's\tO\t's\tO\nFireFox\tB-Application\tFireFox\tO\nextension\tO\textension\tO\ndoes\tO\tdoes\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/2\tO\thttps://github.com/numen31337/AKVideoImageView/issues/2\tO\n\t\nJust\tO\tJust\tO\nchecked\tO\tchecked\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nswift\tB-Language\tswift\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_15543\tI-Code_Block\tGR_15543\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/42\tO\thttps://github.com/demigor/lex.db/issues/42\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\n100%\tO\t100%\tO\nsure\tO\tsure\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nmain\tO\tmain\tO\niOS\tB-Operating_System\tiOS\tO\napplication\tO\tapplication\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nreference\tO\treference\tO\nLex.DB\tB-Application\tLex.DB\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\nstep\tO\tstep\tO\nfor\tO\tfor\tO\nbait&switch\tO\tbait&switch\tO\nPCL\tB-Library\tPCL\tO\ndeployment\tO\tdeployment\tO\n.\tO\t.\tO\n\t\nKind\tO\tKind\tO\nregards\tO\tregards\tO\n,\tO\t,\tO\nLex\tB-User_Name\tLex\tO\n\t\nOn\tO\tOn\tO\n22\tO\t22\tO\nFeb\tO\tFeb\tO\n2016\tO\t2016\tO\n,\tO\t,\tO\nat\tO\tat\tO\n19:24\tO\t19:24\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\niupchris10\tB-User_Name\tiupchris10\tO\n\"\tO\t\"\tO\nnotifications@github.com\tO\tnotifications@github.com\tO\nwrote\tO\twrote\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\ncross\tO\tcross\tO\nplatform\tO\tplatform\tO\napp\tO\tapp\tO\nin\tO\tin\tO\nXamarin\tB-Application\tXamarin\tO\nForms\tI-Application\tForms\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nLex.DB\tB-Application\tLex.DB\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nPortable\tB-Library\tPortable\tO\nClass\tI-Library\tClass\tO\nLibrary\tI-Library\tLibrary\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nInitialize()\tB-Library_Function\tInitialize()\tO\non\tO\ton\tO\nDbInstance\tB-Library_Class\tDbInstance\tO\n,\tO\t,\tO\nI\tO\tI\tO\nreceive\tO\treceive\tO\na\tO\ta\tO\nNullReferenceException\tB-Error_Name\tNullReferenceException\tO\nerror\tI-Error_Name\terror\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nonly\tO\tonly\tO\nhappens\tO\thappens\tO\nin\tO\tin\tO\niOS\tB-Operating_System\tiOS\tO\n(\tO\t(\tO\nboth\tO\tboth\tO\ndevice\tO\tdevice\tO\nand\tO\tand\tO\nsimulator\tO\tsimulator\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\non\tO\ton\tO\nAndroid\tB-Operating_System\tAndroid\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nnotice\tO\tnotice\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nPath\tB-Library_Variable\tPath\tO\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nnull\tO\tnull\tO\non\tO\ton\tO\nDbInstance\tB-Library_Class\tDbInstance\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nscreenshot\tO\tscreenshot\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\n—\tO\t—\tO\nReply\tO\tReply\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nemail\tO\temail\tO\ndirectly\tO\tdirectly\tO\nor\tO\tor\tO\nview\tO\tview\tO\nit\tO\tit\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/8\tO\thttps://github.com/op-jenkins/op-build/issues/8\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/36\tO\thttps://github.com/linked-statistics/xkos/issues/36\tO\n\t\nNot\tO\tNot\tO\nentirely\tO\tentirely\tO\nconvinced\tO\tconvinced\tO\n.\tO\t.\tO\n\t\nWhether\tO\tWhether\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nXML\tB-Language\tXML\tO\nor\tO\tor\tO\nHTML\tB-Language\tHTML\tO\nor\tO\tor\tO\nplain\tO\tplain\tO\ntext\tO\ttext\tO\nis\tO\tis\tO\nusually\tO\tusually\tO\nindicated\tO\tindicated\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ndatatype\tO\tdatatype\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nliteral\tO\tliteral\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\ndatatypes\tO\tdatatypes\tO\nrdf:XMLLiteral\tB-Library_Class\trdf:XMLLiteral\tB-Code_Block\nand\tO\tand\tO\nrdf:HTML\tB-Library_Class\trdf:HTML\tB-Code_Block\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nto\tO\tto\tO\nxsd:string\tB-Data_Type\txsd:string\tB-Code_Block\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nlanguage\tO\tlanguage\tO\ntags\tO\ttags\tO\nare\tO\tare\tO\ndisallowed\tO\tdisallowed\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/1\tO\thttps://github.com/spacetelescope/specview/issues/1\tO\n\t\nClosing\tO\tClosing\tO\n,\tO\t,\tO\nrepository\tO\trepository\tO\nbeing\tO\tbeing\tO\narchived\tO\tarchived\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/20\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/20\tO\n\t\nHi\tO\tHi\tO\n@RichardN\tB-User_Name\t@RichardN\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nfound\tO\tfound\tO\nyour\tO\tyour\tO\nsignature\tO\tsignature\tO\nin\tO\tin\tO\nour\tO\tour\tO\nrecords\tO\trecords\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nsigned\tO\tsigned\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\ne-mail\tO\te-mail\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nused\tO\tused\tO\nin\tO\tin\tO\nyout\tO\tyout\tO\nGit\tB-Application\tGit\tO\ncommit\tO\tcommit\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nadd\tO\tadd\tO\nboth\tO\tboth\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ne-mails\tO\te-mails\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nGithub\tB-Website\tGithub\tO\nprofile\tO\tprofile\tO\n(\tO\t(\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nhidden\tO\thidden\tO\n)\tO\t)\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nmatch\tO\tmatch\tO\nyour\tO\tyour\tO\ne-mails\tO\te-mails\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nGithub\tB-Website\tGithub\tO\nprofile\tO\tprofile\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/21\tO\thttps://github.com/svenstaro/flamejam/issues/21\tO\n\t\nDone\tO\tDone\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmongrate/mongrate.com\tO\tmongrate/mongrate.com\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mongrate/mongrate.com/issues/1\tO\thttps://github.com/mongrate/mongrate.com/issues/1\tO\n\t\nWorks\tO\tWorks\tO\nas\tO\tas\tO\na\tO\ta\tO\ncharm\tO\tcharm\tO\n.\tO\t.\tO\n\t\nbtw\tO\tbtw\tO\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlib\tO\tlib\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/126\tO\thttps://github.com/linked-statistics/xkos/issues/126\tO\n\t\nFix\tO\tFix\tO\n#71\tO\t#71\tO\n\t\nAdd\tO\tAdd\tO\nappendix\tO\tappendix\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nimplementation\tO\timplementation\tO\nsection\tO\tsection\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nDDI\tB-Organization\tDDI\tO\nalliance\tO\talliance\tO\npage\tO\tpage\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nbrandonscott/nabu\tO\tbrandonscott/nabu\tO\n-ios\tO\t-ios\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/brandonscott/nabu-ios/issues/1\tO\thttps://github.com/brandonscott/nabu-ios/issues/1\tO\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nin\tO\tin\tO\ntouch\tO\ttouch\tO\nfirst\tO\tfirst\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\npatience\tO\tpatience\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2/issues/1\tO\thttps://github.com/thehyve/puppet-i2b2/issues/1\tO\n\t\nPull\tO\tPull\tO\nrequest\tO\trequest\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nwebclient\tO\twebclient\tO\nstuff\tO\tstuff\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncivey/where\tO\tcivey/where\tO\n-should-we-eat\tO\t-should-we-eat\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/civey/where-should-we-eat/issues/1\tO\thttps://github.com/civey/where-should-we-eat/issues/1\tO\n\t\n🔥\tO\t🔥\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2/issues/2\tO\thttps://github.com/thehyve/puppet-i2b2/issues/2\tO\n\t\nAdd\tO\tAdd\tO\na\tO\ta\tO\nsystem\tO\tsystem\tO\ntest\tO\ttest\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nSSL\tO\tSSL\tO\nsetup\tO\tsetup\tO\nplease\tO\tplease\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/33\tO\thttps://github.com/demigor/lex.db/issues/33\tO\n\t\nThese\tO\tThese\tO\ntypes\tO\ttypes\tO\nare\tO\tare\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nv1.2.6\tB-Version\tv1.2.6\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nTimeZone\tB-Library_Class\tTimeZone\tB-Code_Block\nand\tO\tand\tO\nStringReader\tB-Library_Class\tStringReader\tB-Code_Block\ntypes\tO\ttypes\tO\nadded\tO\tadded\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nfor\tO\tfor\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\nregister\tO\tregister\tO\ntypes\tO\ttypes\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/242\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/242\tO\n\t\n@sufian4199\tB-User_Name\t@sufian4199\tO\nThe\tO\tThe\tO\nnotification\tO\tnotification\tO\nfor\tO\tfor\tO\nAndroid\tB-Operating_System\tAndroid\tO\nis\tO\tis\tO\na\tO\ta\tO\nplatform\tO\tplatform\tO\nspecific\tO\tspecific\tO\ndetail\tO\tdetail\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\nnone\tO\tnone\tO\nfor\tO\tfor\tO\niOS\tB-Operating_System\tiOS\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nOpenPrograms/MiscPrograms\tO\tOpenPrograms/MiscPrograms\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/OpenPrograms/MiscPrograms/issues/22\tO\thttps://github.com/OpenPrograms/MiscPrograms/issues/22\tO\n\t\nMISC\tO\tMISC\tO\nOpenComputer\tB-Application\tOpenComputer\tO\nPrograms\tO\tPrograms\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nOpencraft\tB-Application\tOpencraft\tO\nServer\tI-Application\tServer\tO\n(\tO\t(\tO\nmc-oc\tB-Application\tmc-oc\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/7\tO\thttps://github.com/contributte/logging/issues/7\tO\n\t\nHi\tO\tHi\tO\n@f3l1x\tB-User_Name\t@f3l1x\tO\n,\tO\t,\tO\nany\tO\tany\tO\nprogress\tO\tprogress\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nidea\tO\tidea\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/23\tO\thttps://github.com/demigor/lex.db/issues/23\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nLex.Db\tB-Application\tLex.Db\tO\ndatabase\tO\tdatabase\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nWPF\tB-Library\tWPF\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nadding\tO\tadding\tO\nthis\tO\tthis\tO\nfiles\tO\tfiles\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nWinRT\tB-Application\tWinRT\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_36955\tI-Code_Block\tGR_36955\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nan\tO\tan\tO\nIO\tB-Error_Name\tIO\tO\nnot\tI-Error_Name\tnot\tO\nfound\tI-Error_Name\tfound\tO\nexceptio\tI-Error_Name\texceptio\tO\nis\tO\tis\tO\nthrown\tO\tthrown\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nor\tO\tor\tO\ncopy\tO\tcopy\tO\nmanually\tO\tmanually\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nIsolatedStorageFile\tB-Library_Class\tIsolatedStorageFile\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nalready\tO\talready\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAppx\tO\tAppx\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ntell\tO\ttell\tO\nlex.db\tB-Application\tlex.db\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nagaints\tO\tagaints\tO\nthat\tO\tthat\tO\npath\tO\tpath\tO\n?\tO\t?\tO\n\t\nregards\tO\tregards\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nAhmedAMohamed/UberLikeApplicationService\tO\tAhmedAMohamed/UberLikeApplicationService\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/AhmedAMohamed/UberLikeApplicationService/issues/5\tO\thttps://github.com/AhmedAMohamed/UberLikeApplicationService/issues/5\tO\n\t\nSigned-off-by\tO\tSigned-off-by\tO\n:\tO\t:\tO\nAhmed\tB-User_Name\tAhmed\tO\nAlaa\tI-User_Name\tAlaa\tO\nahmedalaa3307023@gmail.com\tO\tahmedalaa3307023@gmail.com\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmakeen-project/makeen\tO\tmakeen-project/makeen\tO\n-hapi\tO\t-hapi\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/viczam/makeen-hapi/issues/60\tO\thttps://github.com/viczam/makeen-hapi/issues/60\tO\n\t\nWe\tO\tWe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\naffect\tO\taffect\tO\nus\tO\tus\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/8\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/8\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncapture\tO\tcapture\tO\na\tO\ta\tO\nlogcat\tB-Application\tlogcat\tO\n:\tO\t:\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nphone\tB-Device\tphone\tO\nhave\tO\thave\tO\nUSB\tB-Device\tUSB\tO\ndebug\tO\tdebug\tO\nmode\tO\tmode\tO\nenabled\tO\tenabled\tO\n.\tO\t.\tO\n\t\nConnect\tO\tConnect\tO\nyour\tO\tyour\tO\nphone\tB-Device\tphone\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncomputer\tB-Device\tcomputer\tO\nthrough\tO\tthrough\tO\nUSB\tB-Device\tUSB\tO\n.\tO\t.\tO\n\t\nOpen\tO\tOpen\tO\na\tO\ta\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\nterminal\tI-Application\tterminal\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncomputer\tB-Device\tcomputer\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\nyour\tO\tyour\tO\ndevice\tO\tdevice\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\nadb\tB-Code_Block\tadb\tO\ndevices\tI-Code_Block\tdevices\tO\n\"\tO\t\"\tO\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\n\"\tO\t\"\tO\nadb\tB-Code_Block\tadb\tO\nlogcat\tI-Code_Block\tlogcat\tO\n-c\tI-Code_Block\t-c\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\nclean\tO\tclean\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nlog\tO\tlog\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\ntil\tO\ttil\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\n\"\tO\t\"\tO\nadb\tB-Code_Block\tadb\tO\nlogcat\tI-Code_Block\tlogcat\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\nlog\tO\tlog\tO\nbeing\tO\tbeing\tO\nprint\tO\tprint\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nterminal\tB-Application\tterminal\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ndetails\tO\tdetails\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nhttps://developer.android.google.cn/studio/command-line/logcat.html\tO\thttps://developer.android.google.cn/studio/command-line/logcat.html\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngetconversio/mongoose\tO\tgetconversio/mongoose\tO\n-paginate\tO\t-paginate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/getconversio/mongoose-paginate/issues/2\tO\thttps://github.com/getconversio/mongoose-paginate/issues/2\tO\n\t\nPassing\tO\tPassing\tO\npage\tB-Variable_Name\tpage\tB-Code_Block\n=\tO\t=\tI-Code_Block\n'\tO\t'\tI-Code_Block\n1\tO\t1\tI-Code_Block\n'\tO\t'\tB-Code_Block\nworks\tO\tworks\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\nwhen\tO\twhen\tO\npaginating\tO\tpaginating\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnext\tB-Variable_Name\tnext\tB-Code_Block\ncomes\tO\tcomes\tO\nas\tO\tas\tO\n'\tO\t'\tB-Code_Block\n11\tO\t11\tI-Code_Block\n'\tO\t'\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n2.\tO\t2.\tB-Code_Block\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSUSTC/sustech\tO\tSUSTC/sustech\tO\n-slides\tO\t-slides\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SUSTC/sustech-slides/issues/1\tO\thttps://github.com/SUSTC/sustech-slides/issues/1\tO\n\t\nAdd\tO\tAdd\tO\nusepacakges\tO\tusepacakges\tO\n:\tO\t:\tO\ngraphicx\tB-Library\tgraphicx\tO\nAdd\tO\tAdd\tO\nnewcommands\tO\tnewcommands\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsource\tO\tsource\tO\nto\tO\tto\tO\nimages\tB-User_Interface_Element\timages\tO\nAdd\tO\tAdd\tO\noptional\tO\toptional\tO\nsetting\tO\tsetting\tO\nto\tO\tto\tO\nusetheme\tB-Library_Function\tusetheme\tO\nAdd\tO\tAdd\tO\noptional\tO\toptional\tO\nsetting\tO\tsetting\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/249\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/249\tO\n\t\n@DavidWiesner\tB-User_Name\t@DavidWiesner\tO\nSounds\tO\tSounds\tO\nreasonable\tO\treasonable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucasHill/ember\tO\tLucasHill/ember\tO\n-fastboot-post-example\tO\t-fastboot-post-example\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucasHill/ember-fastboot-post-example\tO\thttps://github.com/LucasHill/ember-fastboot-post-example\tO\n\t\nember-fastboot-post-example\tO\tember-fastboot-post-example\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ndemo\tO\tdemo\tO\nof\tO\tof\tO\nhow\tO\thow\tO\none\tO\tone\tO\nwould\tO\twould\tO\nenable\tO\tenable\tO\nPOST\tB-Library_Function\tPOST\tO\nrequests\tO\trequests\tO\nin\tO\tin\tO\na\tO\ta\tO\nfastboot\tB-Application\tfastboot\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nExamples\tO\tExamples\tO\nare\tO\tare\tO\nprovided\tO\tprovided\tO\nfor\tO\tfor\tO\nboth\tO\tboth\tO\nin\tO\tin\tO\ndevelopment\tO\tdevelopment\tO\n(\tO\t(\tO\nember\tB-Code_Block\tember\tO\nserve\tI-Code_Block\tserve\tO\n)\tO\t)\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nproduction\tO\tproduction\tO\nready\tO\tready\tO\nfastboot-app-server\tB-Application\tfastboot-app-server\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncommits\tO\tcommits\tO\nshould\tO\tshould\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nstory\tO\tstory\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwork\tO\twork\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nenable\tO\tenable\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nown\tO\town\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nPOST\tB-Library_Function\tPOST\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\napp\tO\tapp\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\ncURL\tB-Application\tcURL\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_100294\tI-Code_Block\tGR_100294\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\n'\tO\t'\tO\nproduction\tO\tproduction\tO\n'\tO\t'\tO\nserver\tB-Application\tserver\tO\nrun\tO\trun\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_100295\tI-Code_Block\tGR_100295\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPrerequisites\tO\tPrerequisites\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nthings\tO\tthings\tO\nproperly\tO\tproperly\tO\ninstalled\tO\tinstalled\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ncomputer\tB-Device\tcomputer\tO\n.\tO\t.\tO\n\t\nGit\tB-Application\tGit\tO\n\t\nNode.js\tB-Application\tNode.js\tO\n(\tO\t(\tO\nwith\tO\twith\tO\nNPM\tB-Application\tNPM\tO\n)\tO\t)\tO\n\t\nEmber\tB-Application\tEmber\tO\nCLI\tI-Application\tCLI\tO\n\t\nGoogle\tB-Application\tGoogle\tO\nChrome\tI-Application\tChrome\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\ngit\tB-Code_Block\tgit\tB-Code_Block\nclone\tI-Code_Block\tclone\tI-Code_Block\n<repository-url>\tI-Code_Block\t<repository-url>\tI-Code_Block\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\n\t\ncd\tB-Code_Block\tcd\tB-Code_Block\nember-fastboot-post-example\tI-Code_Block\tember-fastboot-post-example\tI-Code_Block\n\t\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n\t\nRunning\tO\tRunning\tO\n/\tO\t/\tO\nDevelopment\tO\tDevelopment\tO\n\t\nember\tB-Code_Block\tember\tB-Code_Block\nserve\tI-Code_Block\tserve\tI-Code_Block\n\t\nVisit\tO\tVisit\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nat\tO\tat\tO\nhttp://localhost:4200\tO\thttp://localhost:4200\tO\n.\tO\t.\tO\n\t\nVisit\tO\tVisit\tO\nyour\tO\tyour\tO\ntests\tO\ttests\tO\nat\tO\tat\tO\nhttp://localhost:4200/tests\tO\thttp://localhost:4200/tests\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nGenerators\tO\tGenerators\tO\n\t\nMake\tO\tMake\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmany\tO\tmany\tO\ngenerators\tO\tgenerators\tO\nfor\tO\tfor\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nember\tB-Code_Block\tember\tB-Code_Block\nhelp\tI-Code_Block\thelp\tI-Code_Block\ngenerate\tI-Code_Block\tgenerate\tI-Code_Block\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n\t\nRunning\tO\tRunning\tO\nTests\tO\tTests\tO\n\t\nember\tB-Code_Block\tember\tB-Code_Block\ntest\tI-Code_Block\ttest\tI-Code_Block\n\t\nember\tB-Code_Block\tember\tB-Code_Block\ntest\tI-Code_Block\ttest\tI-Code_Block\n--server\tI-Code_Block\t--server\tI-Code_Block\n\t\nBuilding\tO\tBuilding\tO\n\t\nember\tB-Code_Block\tember\tB-Code_Block\nbuild\tI-Code_Block\tbuild\tI-Code_Block\n(\tO\t(\tO\ndevelopment\tO\tdevelopment\tO\n)\tO\t)\tO\n\t\nember\tB-Code_Block\tember\tB-Code_Block\nbuild\tI-Code_Block\tbuild\tI-Code_Block\n--environment\tI-Code_Block\t--environment\tI-Code_Block\nproduction\tI-Code_Block\tproduction\tI-Code_Block\n(\tO\t(\tO\nproduction\tO\tproduction\tO\n)\tO\t)\tO\n\t\nDeploying\tO\tDeploying\tO\n\t\nSpecify\tO\tSpecify\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nto\tO\tto\tO\ndeploy\tO\tdeploy\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nFurther\tO\tFurther\tO\nReading\tO\tReading\tO\n/\tO\t/\tO\nUseful\tO\tUseful\tO\nLinks\tO\tLinks\tO\n\t\nember.js\tB-Library\tember.js\tO\n\t\nember-cli\tB-Application\tember-cli\tO\n\t\nDevelopment\tO\tDevelopment\tO\nBrowser\tB-Application\tBrowser\tO\nExtensions\tO\tExtensions\tO\n\t\nember\tB-Application\tember\tO\ninspector\tO\tinspector\tO\nfor\tO\tfor\tO\nchrome\tB-Application\tchrome\tO\n\t\nember\tB-Application\tember\tO\ninspector\tO\tinspector\tO\nfor\tO\tfor\tO\nfirefox\tB-Application\tfirefox\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nPayamEmami/percolator\tO\tPayamEmami/percolator\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/PayamEmami/percolator\tO\thttps://github.com/PayamEmami/percolator\tO\n\t\nThis\tO\tThis\tO\nrepository\tO\trepository\tO\nholds\tO\tholds\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\npercolator\tO\tpercolator\tO\nand\tO\tand\tO\nformat\tO\tformat\tO\nconverters\tO\tconverters\tO\nsoftware\tO\tsoftware\tO\npackages\tO\tpackages\tO\n;\tO\t;\tO\na\tO\ta\tO\nsoftware\tO\tsoftware\tO\nfor\tO\tfor\tO\npostprocessing\tO\tpostprocessing\tO\nof\tO\tof\tO\nshotgun\tO\tshotgun\tO\nproteomics\tO\tproteomics\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nhosted\tO\thosted\tO\nat\tO\tat\tO\ngithub\tB-Website\tgithub\tO\n,\tO\t,\tO\nbinary\tO\tbinary\tO\ndownloads\tO\tdownloads\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrelease\tO\trelease\tO\nrepository\tO\trepository\tO\n:\tO\t:\tO\nhttps://github.com/percolator/percolator/releases\tO\thttps://github.com/percolator/percolator/releases\tO\n\t\nThe\tO\tThe\tO\nbuilding\tO\tbuilding\tO\nprocedure\tO\tprocedure\tO\nis\tO\tis\tO\ncmake-based\tB-Application\tcmake-based\tO\n.\tO\t.\tO\n\t\nHelper\tO\tHelper\tO\nscripts\tO\tscripts\tO\nfor\tO\tfor\tO\nbuilding\tO\tbuilding\tO\non\tO\ton\tO\ndifferent\tO\tdifferent\tO\nplatforms\tO\tplatforms\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\n:\tO\t:\tO\nadmin/builders/\tO\tadmin/builders/\tO\n\t\nThe\tO\tThe\tO\ncleanest\tO\tcleanest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nvagrant\tB-Application\tvagrant\tO\nvirtual\tO\tvirtual\tO\nmachine\tO\tmachine\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsetup\tO\tsetup\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\nadmin/vagrant/manager.sh\tB-File_Name\tadmin/vagrant/manager.sh\tO\n\t\nLukas\tB-User_Name\tLukas\tO\nKäll\tI-User_Name\tKäll\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/8\tO\thttps://github.com/contributte/logging/issues/8\tO\n\t\nSorry\tO\tSorry\tO\n,\tO\t,\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nfeeling\tO\tfeeling\tO\nwell\tO\twell\tO\nlast\tO\tlast\tO\nweek\tO\tweek\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ntodo\tO\ttodo\tO\nlist\tO\tlist\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndenm80/ticker\tO\tdenm80/ticker\tO\n-grid\tO\t-grid\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/denm80/ticker-grid\tO\thttps://github.com/denm80/ticker-grid\tO\n\t\nticker-grid\tB-Library\tticker-grid\tO\n\t\ndownload\tO\tdownload\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9415\tI-Code_Block\tGR_9415\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ninstall\tO\tinstall\tO\nnode\tB-Application\tnode\tO\n\t\nnodejs\tB-Application\tnodejs\tO\nv5.11.0\tB-Version\tv5.11.0\tO\nor\tO\tor\tO\nhigher\tO\thigher\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\n\t\ninstall\tO\tinstall\tO\nand\tO\tand\tO\nstart\tO\tstart\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9416\tI-Code_Block\tGR_9416\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/13\tO\thttps://github.com/contributte/logging/issues/13\tO\n\t\nCool\tO\tCool\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nexactely\tO\texactely\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ncome\tO\tcome\tO\nout\tO\tout\tO\nwith\tO\twith\tO\n-\tO\t-\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ncopied\tO\tcopied\tO\nextensions\tO\textensions\tO\nand\tO\tand\tO\nimplemented\tO\timplemented\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nstable\tO\tstable\tO\nrelease\tO\trelease\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\ntagged\tO\ttagged\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucieSteiner/AMT_feature1\tO\tLucieSteiner/AMT_feature1\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucieSteiner/AMT_feature1/issues/6\tO\thttps://github.com/LucieSteiner/AMT_feature1/issues/6\tO\n\t\nHypothesis\tO\tHypothesis\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ndirect\tO\tdirect\tO\nhim\tO\thim\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nprotected\tO\tprotected\tO\npage\tB-User_Interface_Element\tpage\tO\nafter\tO\tafter\tO\nlogin\tO\tlogin\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nlogin\tB-User_Interface_Element\tlogin\tO\nform\tI-User_Interface_Element\tform\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/169\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/169\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattaching\tO\tattaching\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nevent\tO\tevent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\nmotion\tO\tmotion\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nstops\tO\tstops\tO\ngetting\tO\tgetting\tO\ntriggered\tO\ttriggered\tO\nwhen\tO\twhen\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\ngoes\tO\tgoes\tO\nto\tO\tto\tO\nbackground\tO\tbackground\tO\n.\tO\t.\tO\n\t\nSadly\tO\tSadly\tO\nit\tO\tit\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\ncrucial\tO\tcrucial\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\ncapturing\tO\tcapturing\tO\nthe\tO\tthe\tO\nmotion\tO\tmotion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nsolution/workaround\tO\tsolution/workaround\tO\n?\tO\t?\tO\n\t\nwindow.addEventListener\tB-Code_Block\twindow.addEventListener\tO\n(\tB-Code_Block\t(\tO\n'deviceorientation'\tI-Code_Block\t'deviceorientation'\tO\n,\tI-Code_Block\t,\tO\ndeviceMotionHandler\tI-Code_Block\tdeviceMotionHandler\tO\n,\tI-Code_Block\t,\tO\nfalse\tI-Code_Block\tfalse\tO\n)\tI-Code_Block\t)\tO\n;\tB-Code_Block\t;\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/33\tO\thttps://github.com/rpcope1/Hantek6022API/issues/33\tO\n\t\n(\tO\t(\tO\npython-libusb1\tB-Library\tpython-libusb1\tO\nauthor\tO\tauthor\tO\nhere\tO\there\tO\n)\tO\t)\tO\nI\tO\tI\tO\nam\tO\tam\tO\nsurprised\tO\tsurprised\tO\nthat\tO\tthat\tO\nUSBPollerThread\tB-Library_Class\tUSBPollerThread\tO\ncauses\tO\tcauses\tO\nlockups\tO\tlockups\tO\n.\tO\t.\tO\n\t\nRather\tO\tRather\tO\nthan\tO\tthan\tO\nbeing\tO\tbeing\tO\nlinked\tO\tlinked\tO\nto\tO\tto\tO\nlinux\tB-Operating_System\tlinux\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\neither\tO\teither\tO\nlinked\tO\tlinked\tO\nto\tO\tto\tO\nlibusb\tB-Library\tlibusb\tO\nversion\tO\tversion\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nC\tB-Language\tC\tO\nlibrary\tO\tlibrary\tO\n)\tO\t)\tO\n,\tO\t,\tO\nor\tO\tor\tO\nbe\tO\tbe\tO\n\"\tO\t\"\tO\njust\tO\tjust\tO\n\"\tO\t\"\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\npython\tB-Language\tpython\tO\nwrapper\tO\twrapper\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nmixing\tO\tmixing\tO\nsync\tO\tsync\tO\nand\tO\tand\tO\nasync\tB-Library\tasync\tO\nlibusb\tI-Library\tlibusb\tO\nAPIs\tI-Library\tAPIs\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nsync\tO\tsync\tO\nAPI\tB-Library\tAPI\tO\nis\tO\tis\tO\njust\tO\tjust\tO\n\"\tO\t\"\tO\nstart\tO\tstart\tO\nasync\tO\tasync\tO\ncall\tO\tcall\tO\nand\tO\tand\tO\nhandle\tO\thandle\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\none\tO\tone\tO\nevent\tO\tevent\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nresult\tO\tresult\tO\n,\tO\t,\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\nhandle\tO\thandle\tO\nany\tO\tany\tO\nevent\tO\tevent\tO\n\"\tO\t\"\tO\nrunning\tO\trunning\tO\nin\tO\tin\tO\nanother\tO\tanother\tO\nthread\tO\tthread\tO\nmay\tO\tmay\tO\n\"\tO\t\"\tO\nsteal\tO\tsteal\tO\n\"\tO\t\"\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\n,\tO\t,\tO\nprocess\tO\tprocess\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsync\tO\tsync\tO\ncall\tO\tcall\tO\ngets\tO\tgets\tO\nstuck\tO\tstuck\tO\nwaiting\tO\twaiting\tO\nforever\tO\tforever\tO\n-\tO\t-\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nlikely\tO\tlikely\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nUSBPollerThread\tB-Library_Class\tUSBPollerThread\tO\nworks\tO\tworks\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nimplementing\tO\timplementing\tO\n(\tO\t(\tO\nhopefully\tO\thopefully\tO\ncorrectly\tO\tcorrectly\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\ndocumented\tO\tdocumented\tO\nsequence\tO\tsequence\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nimplementation\tO\timplementation\tO\nin\tO\tin\tO\nUSBPollerThread\tB-Library_Class\tUSBPollerThread\tO\ndiffers\tO\tdiffers\tO\nin\tO\tin\tO\n2\tO\t2\tO\nways\tO\tways\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndocumented\tO\tdocumented\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nmake\tO\tmake\tO\ncomparison\tO\tcomparison\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nharder\tO\tharder\tO\nbut\tO\tbut\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nno\tO\tno\tO\neffect\tO\teffect\tO\n:\tO\t:\tO\n\t\nPoller\tB-Library_Class\tPoller\tO\nthread\tO\tthread\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\na\tO\ta\tO\n\"\tO\t\"\tO\ncompleted\tO\tcompleted\tO\n\"\tO\t\"\tO\nvalue\tO\tvalue\tO\nas\tO\tas\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nnot\tO\tnot\tO\nexit\tO\texit\tO\nafter\tO\tafter\tO\nprocessing\tO\tprocessing\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nevent\tO\tevent\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmust\tO\tmust\tO\nhang\tO\thang\tO\naround\tO\taround\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\nit\tO\tit\tO\nis\tO\tis\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\ngets\tO\tgets\tO\nclosed\tO\tclosed\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\neffect\tO\teffect\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhile\tB-Code_Block\twhile\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n!\tI-Code_Block\t!\tI-Code_Block\ncompleted\tI-Code_Block\tcompleted\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\nif\tI-Code_Block\tif\tI-Code_Block\n(!libusb_event_handler_active(ctx))\tI-Code_Block\t(!libusb_event_handler_active(ctx))\tI-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nbreak\tI-Code_Block\tbreak\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n/\tI-Code_Block\t/\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\nto\tI-Code_Block\tto\tI-Code_Block\nnext\tI-Code_Block\tnext\tI-Code_Block\niteration\tI-Code_Block\titeration\tI-Code_Block\nof\tI-Code_Block\tof\tI-Code_Block\nparent\tI-Code_Block\tparent\tI-Code_Block\nloop\tI-Code_Block\tloop\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\n/\tI-Code_Block\t/\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\nb\tI-Code_Block\tb\tI-Code_Block\n;}\tI-Code_Block\t;}\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\ngets\tO\tgets\tO\nsimplified\tO\tsimplified\tO\ninto\tO\tinto\tO\nwhile\tB-Code_Block\twhile\tB-Code_Block\nevent_handler_active()\tI-Code_Block\tevent_handler_active()\tI-Code_Block\n{\tB-Code_Block\t{\tB-Code_Block\nb\tI-Code_Block\tb\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\na\tB-Code_Block\ta\tB-Code_Block\n/\tI-Code_Block\t/\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\nto\tI-Code_Block\tto\tI-Code_Block\nnext\tI-Code_Block\tnext\tI-Code_Block\niteration\tI-Code_Block\titeration\tI-Code_Block\nof\tI-Code_Block\tof\tI-Code_Block\nparent\tI-Code_Block\tparent\tI-Code_Block\nloop\tI-Code_Block\tloop\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\n/\tI-Code_Block\t/\tI-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\navoid\tO\tavoid\tO\nnegative\tO\tnegative\tO\ntests\tO\ttests\tO\n(\tO\t(\tO\nif\tO\tif\tO\nnot.\tO\tnot.\tO\n.\tO\t.\tO\n,\tO\t,\tO\nif\tO\tif\tO\n.\tO\t.\tO\n==\tO\t==\tO\n0\tO\t0\tO\n)\tO\t)\tO\nwhen\tO\twhen\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nsymetric\tO\tsymetric\tO\nanyway\tO\tanyway\tO\n(\tO\t(\tO\nif\tB-Code_Block\tif\tB-Code_Block\nnot\tI-Code_Block\tnot\tI-Code_Block\nx\tI-Code_Block\tx\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nelse\tI-Code_Block\telse\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nb\tI-Code_Block\tb\tI-Code_Block\nbecomes\tO\tbecomes\tO\nif\tB-Code_Block\tif\tB-Code_Block\nx\tI-Code_Block\tx\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nb\tI-Code_Block\tb\tI-Code_Block\nelse\tI-Code_Block\telse\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nreverses\tO\treverses\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n\"\tO\t\"\tO\nif\tO\tif\tO\n\"\tO\t\"\tO\nblock\tO\tblock\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/41\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/41\tO\n\t\nConnects-To\tO\tConnects-To\tO\n:\tO\t:\tO\n#40\tO\t#40\tO\n\t\nChange-Type\tO\tChange-Type\tO\n:\tO\t:\tO\npatch\tO\tpatch\tO\n---\tO\t---\tO\n-\tO\t-\tO\nAutogenerated\tO\tAutogenerated\tO\nWaffleboard\tO\tWaffleboard\tO\nConnection\tO\tConnection\tO\n:\tO\t:\tO\nConnects\tO\tConnects\tO\nto\tO\tto\tO\n#40\tO\t#40\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoso/flexgrid\tO\tmoso/flexgrid\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moso/flexgrid/issues/2\tO\thttps://github.com/moso/flexgrid/issues/2\tO\n\t\nReversing\tO\tReversing\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nChrome\tB-Application\tChrome\tO\non\tO\ton\tO\nAndroid\tB-Operating_System\tAndroid\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nvalentin22/valentin.github.io\tO\tvalentin22/valentin.github.io\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/valentin22/valentin.github.io\tO\thttps://github.com/valentin22/valentin.github.io\tO\n\t\nvalentin.github.io\tO\tvalentin.github.io\tO\n\t\no\tO\to\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/20\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/20\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthe\tO\tthe\tO\ntests\tO\ttests\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\ns3\tB-Application\ts3\tO\ninput\tI-Application\tinput\tO\nplugin\tO\tplugin\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\naws-sdk-v2\tB-Code_Block\taws-sdk-v2\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\ndiscovered\tO\tdiscovered\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nprobable\tO\tprobable\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncurrent\tO\tcurrent\tO\nrspec\tB-Application\trspec\tO\ntests\tO\ttests\tO\npass\tO\tpass\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nchange\tO\tchange\tO\n,\tO\t,\tO\nand\tO\tand\tO\ntesting\tO\ttesting\tO\non\tO\ton\tO\na\tO\ta\tO\nrebased\tO\trebased\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nlogstash-input-s3\tB-Code_Block\tlogstash-input-s3\tO\ncode\tO\tcode\tO\ngives\tO\tgives\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nchanges\tO\tchanges\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nare\tO\tare\tO\nwhat\tO\twhat\tO\nwe\tO\twe\tO\n'd\tO\t'd\tO\nexpect.\tO\texpect.\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nLogStash::Inputs::S3\tO\tLogStash::Inputs::S3\tO\n#get_s3object\tO\t#get_s3object\tO\nwith\tO\twith\tO\ndeprecated\tO\tdeprecated\tO\ncredentials\tO\tcredentials\tO\noption\tO\toption\tO\nshould\tO\tshould\tO\ninstantiate\tO\tinstantiate\tO\nAWS::S3\tO\tAWS::S3\tO\nclients\tO\tclients\tO\nwith\tO\twith\tO\na\tO\ta\tO\nproxy\tO\tproxy\tO\nset\tO\tset\tO\nFailure/Error\tO\tFailure/Error\tO\n:\tO\t:\tO\nsubject.send(:get_s3object)\tO\tsubject.send(:get_s3object)\tO\n<#Module:0x48e07006::Resource\tO\t<#Module:0x48e07006::Resource\tO\n(class)>\tO\t(class)>\tO\nreceived\tO\treceived\tO\n:new\tO\t:new\tO\nwith\tO\twith\tO\nunexpected\tO\tunexpected\tO\narguments\tO\targuments\tO\nexpected:\tO\texpected:\tO\n({:access_key_id=>\"1234\",\tO\t({:access_key_id=>\"1234\",\tO\n:secret_access_key=>\"secret\",\tO\t:secret_access_key=>\"secret\",\tO\n:http_proxy=>\"http://example.com\",\tO\t:http_proxy=>\"http://example.com\",\tO\n:region=>\"us-east-1\"})\tO\t:region=>\"us-east-1\"})\tO\ngot:\tO\tgot:\tO\n({:credentials=>#<Aws::Credentials\tO\t({:credentials=>#<Aws::Credentials\tO\naccess_key_id=\"1234\">,\tO\taccess_key_id=\"1234\">,\tO\n:http_proxy=>\"http://example.com\",\tO\t:http_proxy=>\"http://example.com\",\tO\n:region=>\tO\t:region=>\tO\n\"\tO\t\"\tO\nus-east-1\tO\tus-east-1\tO\n\"\tO\t\"\tO\n}\tO\t}\tO\n)\tO\t)\tO\n\t\n./lib/logstash/inputs/s3.rb:388:in\tO\t./lib/logstash/inputs/s3.rb:388:in\tO\n`get_s3object\tO\t`get_s3object\tO\n'\tO\t'\tO\n\t\n./spec/inputs/s3_spec.rb:78:in\tO\t./spec/inputs/s3_spec.rb:78:in\tO\n`block\tO\t`block\tO\nin\tO\tin\tO\n(\tO\t(\tO\nroot\tO\troot\tO\n)\tO\t)\tO\n'\tO\t'\tO\n\t\nLogStash::Inputs::S3\tO\tLogStash::Inputs::S3\tO\n#get_s3object\tO\t#get_s3object\tO\nwith\tO\twith\tO\nmodern\tO\tmodern\tO\naccess\tO\taccess\tO\nkey\tO\tkey\tO\noptions\tO\toptions\tO\nshould\tO\tshould\tO\ninstantiate\tO\tinstantiate\tO\nAWS::S3\tO\tAWS::S3\tO\nclients\tO\tclients\tO\nwith\tO\twith\tO\na\tO\ta\tO\nproxy\tO\tproxy\tO\nset\tO\tset\tO\nFailure/Error\tO\tFailure/Error\tO\n:\tO\t:\tO\nsubject.send(:get_s3object)\tO\tsubject.send(:get_s3object)\tO\n<#Module:0x48e07006::Resource\tO\t<#Module:0x48e07006::Resource\tO\n(class)>\tO\t(class)>\tO\nreceived\tO\treceived\tO\n:new\tO\t:new\tO\nwith\tO\twith\tO\nunexpected\tO\tunexpected\tO\narguments\tO\targuments\tO\nexpected:\tO\texpected:\tO\n({:access_key_id=>\"1234\",\tO\t({:access_key_id=>\"1234\",\tO\n:secret_access_key=>\"secret\",\tO\t:secret_access_key=>\"secret\",\tO\n:http_proxy=>\"http://example.com\",\tO\t:http_proxy=>\"http://example.com\",\tO\n:region=>\"us-east-1\"})\tO\t:region=>\"us-east-1\"})\tO\ngot:\tO\tgot:\tO\n({:credentials=>#<Aws::Credentials\tO\t({:credentials=>#<Aws::Credentials\tO\naccess_key_id=\"1234\">,\tO\taccess_key_id=\"1234\">,\tO\n:http_proxy=>\"http://example.com\",\tO\t:http_proxy=>\"http://example.com\",\tO\n:region=>\tO\t:region=>\tO\n\"\tO\t\"\tO\nus-east-1\tO\tus-east-1\tO\n\"\tO\t\"\tO\n}\tO\t}\tO\n)\tO\t)\tO\n\t\n./lib/logstash/inputs/s3.rb:388:in\tO\t./lib/logstash/inputs/s3.rb:388:in\tO\n`get_s3object\tO\t`get_s3object\tO\n'\tO\t'\tO\n\t\n./spec/inputs/s3_spec.rb:100:in\tO\t./spec/inputs/s3_spec.rb:100:in\tO\n`block\tO\t`block\tO\nin\tO\tin\tO\n(\tO\t(\tO\nroot\tO\troot\tO\n)\tO\t)\tO\n'\tO\t'\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/2\tO\thttps://github.com/op-jenkins/op-build/issues/2\tO\n\t\nretest\tO\tretest\tO\nthis\tO\tthis\tO\nplease\tO\tplease\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander\tO\thttps://github.com/SivanMehta/wander\tO\n\t\n\t\nImplemented\tO\tImplemented\tO\nFeatures\tO\tFeatures\tO\n\t\nLand\tO\tLand\tO\non\tO\ton\tO\nPage\tO\tPage\tO\nand\tO\tand\tO\nindicate\tO\tindicate\tO\nyour\tO\tyour\tO\nrole\tO\trole\tO\n(\tO\t(\tO\nguide\tO\tguide\tO\n/\tO\t/\tO\ntourist\tO\ttourist\tO\n)\tO\t)\tO\n\t\nSee\tO\tSee\tO\nall\tO\tall\tO\npeople\tO\tpeople\tO\ncurrently\tO\tcurrently\tO\nonline\tO\tonline\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nconnect\tO\tconnect\tO\nwith\tO\twith\tO\n\t\nFeatures\tO\tFeatures\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nFuture\tO\tFuture\tO\n?\tO\t?\tO\n\t\nMap-based\tO\tMap-based\tO\nlanding\tO\tlanding\tO\npage\tO\tpage\tO\nshowing\tO\tshowing\tO\nlocal\tO\tlocal\tO\ntour\tO\ttour\tO\nguides\tO\tguides\tO\n'\tO\t'\tO\nlocations\tO\tlocations\tO\n/\tO\t/\tO\ndistances\tO\tdistances\tO\n\t\nMeaningfully\tO\tMeaningfully\tO\nmultifaceted\tO\tmultifaceted\tO\nrating\tO\trating\tO\nsystem\tO\tsystem\tO\n(\tO\t(\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\njust\tO\tjust\tO\n1-5\tO\t1-5\tO\nstars\tO\tstars\tO\n)\tO\t)\tO\n\t\nLogin\tO\tLogin\tO\nwith\tO\twith\tO\nFacebook\tB-Website\tFacebook\tO\n\t\nPay\tO\tPay\tO\nwith\tO\twith\tO\nVenmo\tB-Application\tVenmo\tO\n/\tO\t/\tO\nSquare\tB-Application\tSquare\tO\n\t\nNotifications\tO\tNotifications\tO\nfor\tO\tfor\tO\nrequests\tO\trequests\tO\n\t\nPrevent\tO\tPrevent\tO\ninterference\tO\tinterference\tO\nin\tO\tin\tO\nrequests\tO\trequests\tO\namong\tO\tamong\tO\ngroups\tO\tgroups\tO\n\t\nAPI\tB-Library\tAPI\tO\n-\tO\t-\tO\ndefined\tO\tdefined\tO\nbehavior\tO\tbehavior\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\niOS\tB-Operating_System\tiOS\tO\n/\tO\t/\tO\nAndroid\tB-Operating_System\tAndroid\tO\nnative\tO\tnative\tO\napps\tO\tapps\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\n(\tO\t(\tO\nin\tO\tin\tO\ntheory\tO\ttheory\tO\n)\tO\t)\tO\n\t\nUX\tO\tUX\tO\nProcess\tO\tProcess\tO\nbefore\tO\tbefore\tO\ndevelopment\tO\tdevelopment\tO\n\t\nAll\tO\tAll\tO\nfollowing\tO\tfollowing\tO\ndocuments\tO\tdocuments\tO\nare\tO\tare\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\ndocs\tO\tdocs\tO\nfolder\tO\tfolder\tO\n:\tO\t:\tO\n\t\nAffinity\tO\tAffinity\tO\nDiagramming\tO\tDiagramming\tO\nbased\tO\tbased\tO\non\tO\ton\tO\ninitial\tO\tinitial\tO\nuser\tO\tuser\tO\nresearch\tO\tresearch\tO\n\t\nWireframe\tO\tWireframe\tO\nworkflow\tO\tworkflow\tO\ndiagrams\tO\tdiagrams\tO\n\t\nLo-fi\tO\tLo-fi\tO\nprototyping\tO\tprototyping\tO\nwith\tO\twith\tO\nAdobe\tB-Application\tAdobe\tO\nXD\tI-Application\tXD\tO\n(\tO\t(\tO\n2\tO\t2\tO\niterations\tO\titerations\tO\n)\tO\t)\tO\n\t\nUsability\tO\tUsability\tO\nAspect\tO\tAspect\tO\nReport\tO\tReport\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nuser-testing\tO\tuser-testing\tO\n\t\nFor\tO\tFor\tO\nwireframing\tO\twireframing\tO\niterations\tO\titerations\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nsharable\tO\tsharable\tO\nlinks\tO\tlinks\tO\n:\tO\t:\tO\n\t\nIteration\tO\tIteration\tO\n1\tO\t1\tO\nWireframe\tO\tWireframe\tO\n:\tO\t:\tO\nhttp://adobe.ly/2daX6UW\tO\thttp://adobe.ly/2daX6UW\tO\n\t\nIteration\tO\tIteration\tO\n2\tO\t2\tO\nWireframe\tO\tWireframe\tO\n:\tO\t:\tO\nhttp://adobe.ly/2daX6UW\tO\thttp://adobe.ly/2daX6UW\tO\n\t\nTo\tO\tTo\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\nmovies\tO\tmovies\tO\nand\tO\tand\tO\ngif\tB-File_Type\tgif\tO\ndemos\tO\tdemos\tO\n,\tO\t,\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\t\nhttps://drive.google.com/drive/folders/0B5InXd2CuDuSdEExNWVteENVMmc?usp=sharing\tO\thttps://drive.google.com/drive/folders/0B5InXd2CuDuSdEExNWVteENVMmc?usp=sharing\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/1\tO\thttps://github.com/op-jenkins/op-build/issues/1\tO\n\t\n…\tO\t…\tO\natch\tO\tatch\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nalexyer/orderup\tO\talexyer/orderup\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/alexyer/orderup\tO\thttps://github.com/alexyer/orderup\tO\n\t\norderup\tO\torderup\tO\n\t\nA\tO\tA\tO\nslack\tB-Website\tslack\tO\nbot\tO\tbot\tO\nto\tO\tto\tO\nserve\tO\tserve\tO\norders\tO\torders\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nrestaurant\tO\trestaurant\tO\n,\tO\t,\tO\ngive\tO\tgive\tO\npeople\tO\tpeople\tO\nan\tO\tan\tO\norder\tO\torder\tO\nnumber\tO\tnumber\tO\n,\tO\t,\tO\ncook\tO\tcook\tO\nthings\tO\tthings\tO\nin\tO\tin\tO\nserial\tO\tserial\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmark\tO\tmark\tO\norders\tO\torders\tO\ncomplete\tO\tcomplete\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\nserve\tO\tserve\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\n?\tO\t?\tO\n\t\nWe\tO\tWe\tO\nare\tO\tare\tO\nbusy\tO\tbusy\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmakes\tO\tmakes\tO\nus\tO\tus\tO\ngrumpy\tO\tgrumpy\tO\nsometimes\tO\tsometimes\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nwhen\tO\twhen\tO\npeople\tO\tpeople\tO\ninterrupt\tO\tinterrupt\tO\nus\tO\tus\tO\non\tO\ton\tO\nslack\tB-Website\tslack\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nget\tO\tget\tO\neven\tO\teven\tO\ngrumpier\tO\tgrumpier\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nlose\tO\tlose\tO\ncontext\tO\tcontext\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwe\tO\twe\tO\nstart\tO\tstart\tO\nto\tO\tto\tO\nforget\tO\tforget\tO\nwhat\tO\twhat\tO\nwe\tO\twe\tO\nwere\tO\twere\tO\ndoing\tO\tdoing\tO\nlast\tO\tlast\tO\n.\tO\t.\tO\n\t\nThings\tO\tThings\tO\nfall\tO\tfall\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfloor\tO\tfloor\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nticketing\tO\tticketing\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nand\tO\tand\tO\ntell\tO\ttell\tO\npeople\tO\tpeople\tO\nto\tO\tto\tO\nfile\tO\tfile\tO\na\tO\ta\tO\nticket\tO\tticket\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nculture\tO\tculture\tO\nof\tO\tof\tO\nslack\tO\tslack\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nlike\tO\tlike\tO\ndoing\tO\tdoing\tO\nthings\tO\tthings\tO\nin\tO\tin\tO\nreal\tO\treal\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwe\tO\twe\tO\nencourage\tO\tencourage\tO\nsome\tO\tsome\tO\ndegree\tO\tdegree\tO\nof\tO\tof\tO\ninterruptions\tO\tinterruptions\tO\nand\tO\tand\tO\nimpromptu\tO\timpromptu\tO\nconversations\tO\tconversations\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\norder\tO\torder\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmadness\tO\tmadness\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nqueue\tO\tqueue\tO\nmakes\tO\tmakes\tO\nsense\tO\tsense\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nbetter\tO\tbetter\tO\nthan\tO\tthan\tO\n\"\tO\t\"\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nbusy\tO\tbusy\tO\n,\tO\t,\tO\nget\tO\tget\tO\nlost\tO\tlost\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nmore\tO\tmore\tO\nlike\tO\tlike\tO\n\"\tO\t\"\tO\nhere\tO\there\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nup\tO\tup\tO\nto\tO\tto\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnext\tO\tnext\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nSo\tO\tSo\tO\nwe\tO\twe\tO\nbuilt\tO\tbuilt\tO\norderup\tO\torderup\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nrestaurant\tO\trestaurant\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nsomeone\tO\tsomeone\tO\nasks\tO\tasks\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nsomething\tO\tsomething\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ngive\tO\tgive\tO\nthem\tO\tthem\tO\nan\tO\tan\tO\norder\tO\torder\tO\nnumber\tO\tnumber\tO\n,\tO\t,\tO\ncook\tO\tcook\tO\nsomething\tO\tsomething\tO\nup\tO\tup\tO\nand\tO\tand\tO\nserve\tO\tserve\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nburger\tO\tburger\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nready\tO\tready\tO\nafter\tO\tafter\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nfries\tO\tfries\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nguy\tO\tguy\tO\nover\tO\tover\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nreplace\tO\treplace\tO\nburger\tO\tburger\tO\nand\tO\tand\tO\nfries\tO\tfries\tO\nwith\tO\twith\tO\ninsurance\tO\tinsurance\tO\nquote\tO\tquote\tO\n,\tO\t,\tO\ngit\tB-Application\tgit\tO\ncommit\tO\tcommit\tO\n,\tO\t,\tO\nphone\tO\tphone\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\nwhatever\tO\twhatever\tO\n.\tO\t.\tO\n\t\nSetup\tO\tSetup\tO\n\t\nAdd\tO\tAdd\tO\nSlash\tO\tSlash\tO\ncommands\tO\tcommands\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nslack\tB-Website\tslack\tO\nchannel(s)\tO\tchannel(s)\tO\n.\tO\t.\tO\n\t\nAdd\tO\tAdd\tO\na\tO\ta\tO\nslash\tO\tslash\tO\ncommand\tO\tcommand\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCommand\tO\tCommand\tO\n:\tO\t:\tO\n/orderup\tO\t/orderup\tO\nURL\tO\tURL\tO\n:\tO\t:\tO\nyourhost.com:5000/orderup\tO\tyourhost.com:5000/orderup\tO\nMethod\tO\tMethod\tO\n:\tO\t:\tO\nPOST\tB-Library_Function\tPOST\tO\nOther\tO\tOther\tO\nfields\tO\tfields\tO\nare\tO\tare\tO\noptional\tO\toptional\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nmake\tB-Code_Block\tmake\tB-Code_Block\nbuild\tI-Code_Block\tbuild\tI-Code_Block\n&&\tI-Code_Block\t&&\tI-Code_Block\nmake\tI-Code_Block\tmake\tI-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n\t\nnohup\tB-Code_Block\tnohup\tB-Code_Block\norderup\tI-Code_Block\torderup\tI-Code_Block\n-host\tI-Code_Block\t-host\tI-Code_Block\n162.243.114.162\tI-Code_Block\t162.243.114.162\tI-Code_Block\n-port\tI-Code_Block\t-port\tI-Code_Block\n5000\tI-Code_Block\t5000\tI-Code_Block\n-db\tI-Code_Block\t-db\tI-Code_Block\ndatabase.db\tI-Code_Block\tdatabase.db\tI-Code_Block\n-passcode\tI-Code_Block\t-passcode\tI-Code_Block\nsecret11722\tI-Code_Block\tsecret11722\tI-Code_Block\n&\tI-Code_Block\t&\tI-Code_Block\n\t\nCommands\tO\tCommands\tO\n\t\n/orderup\tB-Code_Block\t/orderup\tB-Code_Block\nhelp\tI-Code_Block\thelp\tI-Code_Block\n\t\nShows\tO\tShows\tO\nhelp\tO\thelp\tO\non\tO\ton\tO\nall\tO\tall\tO\ncommands\tO\tcommands\tO\n\t\n/orderup\tB-Code_Block\t/orderup\tB-Code_Block\ncreate-q\tI-Code_Block\tcreate-q\tI-Code_Block\nmynoodles\tI-Code_Block\tmynoodles\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\norders\tO\torders\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nqueue\tO\tqueue\tO\nnamed\tO\tnamed\tO\nmynoodles\tO\tmynoodles\tO\n.\tO\t.\tO\n\t\nmynoodles\tO\tmynoodles\tO\nqueue\tO\tqueue\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\n/orderup\tB-Code_Block\t/orderup\tB-Code_Block\ncreate-order\tI-Code_Block\tcreate-order\tI-Code_Block\nmynoodles\tI-Code_Block\tmynoodles\tI-Code_Block\n@jimuser\tI-Code_Block\t@jimuser\tI-Code_Block\npork\tI-Code_Block\tpork\tI-Code_Block\nsandwich\tI-Code_Block\tsandwich\tI-Code_Block\n\t\nmynoodles\tO\tmynoodles\tO\norder\tO\torder\tO\n3\tO\t3\tO\nfor\tO\tfor\tO\n@jimuser\tB-User_Name\t@jimuser\tO\npork\tO\tpork\tO\nsandwich\tO\tsandwich\tO\n-\tO\t-\tO\norder\tO\torder\tO\n3\tO\t3\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\n4\tO\t4\tO\norders\tO\torders\tO\nahead\tO\tahead\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\n/orderup\tB-Code_Block\t/orderup\tB-Code_Block\nfinish-order\tI-Code_Block\tfinish-order\tI-Code_Block\nmynoodles\tI-Code_Block\tmynoodles\tI-Code_Block\n3\tI-Code_Block\t3\tI-Code_Block\n\t\n@jimuser\tB-User_Name\t@jimuser\tO\nyour\tO\tyour\tO\norder\tO\torder\tO\nis\tO\tis\tO\nfinished\tO\tfinished\tO\n.\tO\t.\tO\n\t\nMynoodles\tO\tMynoodles\tO\n:\tO\t:\tO\nOrder\tO\tOrder\tO\n3\tO\t3\tO\n.\tO\t.\tO\n\t\nPork\tO\tPork\tO\nsandwich\tO\tsandwich\tO\n.\tO\t.\tO\n\t\n/orderup\tB-Code_Block\t/orderup\tB-Code_Block\nlist\tI-Code_Block\tlist\tI-Code_Block\nmynoodles\tI-Code_Block\tmynoodles\tI-Code_Block\n\t\nMynoodles\tO\tMynoodles\tO\n:\tO\t:\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\ncooking\tO\tcooking\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n@jimuser\tB-User_Name\t@jimuser\tO\n-\tO\t-\tO\nsoup\tO\tsoup\tO\nwith\tO\twith\tO\nchicken\tO\tchicken\tO\n\t\n3\tO\t3\tO\n@jimuser\tB-User_Name\t@jimuser\tO\n-\tO\t-\tO\npork\tO\tpork\tO\nsandwich\tO\tsandwich\tO\n\t\n24\tO\t24\tO\n@bethjkl\tB-User_Name\t@bethjkl\tO\n-\tO\t-\tO\npizza\tO\tpizza\tO\nburgers\tO\tburgers\tO\n\t\n/orderup\tB-Code_Block\t/orderup\tB-Code_Block\nhistory\tI-Code_Block\thistory\tI-Code_Block\nmynoodles\tI-Code_Block\tmynoodles\tI-Code_Block\n\t\nMynoodles\tO\tMynoodles\tO\nhistory\tO\thistory\tO\n:\tO\t:\tO\n\t\n2\tO\t2\tO\n@jimuser\tB-User_Name\t@jimuser\tO\n-\tO\t-\tO\nsoup\tO\tsoup\tO\n\t\n4\tO\t4\tO\n@jimuser\tB-User_Name\t@jimuser\tO\n-\tO\t-\tO\nturkey\tO\tturkey\tO\n\t\n5\tO\t5\tO\n@bethjkl\tB-User_Name\t@bethjkl\tO\n-\tO\t-\tO\nfrench\tO\tfrench\tO\nfries\tO\tfries\tO\n\t\nEtc.\tO\tEtc.\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nCURL\tB-Application\tCURL\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nCURL\tB-Application\tCURL\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nSlack\tB-Website\tSlack\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\ncurl\tB-Code_Block\tcurl\tB-Code_Block\n-H\tI-Code_Block\t-H\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nContent-Type\tI-Code_Block\tContent-Type\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\napplication/json\tI-Code_Block\tapplication/json\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n-X\tI-Code_Block\t-X\tI-Code_Block\nPOST\tI-Code_Block\tPOST\tI-Code_Block\n-d\tI-Code_Block\t-d\tI-Code_Block\n'{\"name\":\"mynoodles\"}'\tI-Code_Block\t'{\"name\":\"mynoodles\"}'\tI-Code_Block\nhttp://162.243.114.162:5000/api/v1/queues\tI-Code_Block\thttp://162.243.114.162:5000/api/v1/queues\tI-Code_Block\n\t\ncurl\tB-Code_Block\tcurl\tB-Code_Block\n-H\tI-Code_Block\t-H\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nContent-Type\tI-Code_Block\tContent-Type\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\napplication/json\tI-Code_Block\tapplication/json\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n-X\tI-Code_Block\t-X\tI-Code_Block\nDELETE\tI-Code_Block\tDELETE\tI-Code_Block\n-d\tI-Code_Block\t-d\tI-Code_Block\n'{\"name\":\"mynoodles\"}'\tI-Code_Block\t'{\"name\":\"mynoodles\"}'\tI-Code_Block\nhttp://162.243.114.162:5000/api/v1/queues\tI-Code_Block\thttp://162.243.114.162:5000/api/v1/queues\tI-Code_Block\n\t\ncurl\tB-Code_Block\tcurl\tB-Code_Block\n-H\tI-Code_Block\t-H\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nContent-Type\tI-Code_Block\tContent-Type\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\napplication/json\tI-Code_Block\tapplication/json\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n-X\tI-Code_Block\t-X\tI-Code_Block\nPOST\tI-Code_Block\tPOST\tI-Code_Block\n-d\tI-Code_Block\t-d\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nname\tI-Code_Block\tname\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nmynoodles\tI-Code_Block\tmynoodles\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nuser\tI-Code_Block\tuser\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\njimmy\tI-Code_Block\tjimmy\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\ndescription\tI-Code_Block\tdescription\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nhamburger\tI-Code_Block\thamburger\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\nhttp://162.243.114.162:5000/api/v1/queues/order\tI-Code_Block\thttp://162.243.114.162:5000/api/v1/queues/order\tI-Code_Block\n\t\ncurl\tB-Code_Block\tcurl\tB-Code_Block\n-H\tI-Code_Block\t-H\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nContent-Type\tI-Code_Block\tContent-Type\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\napplication/json\tI-Code_Block\tapplication/json\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n-X\tI-Code_Block\t-X\tI-Code_Block\nPUT\tI-Code_Block\tPUT\tI-Code_Block\n-d\tI-Code_Block\t-d\tI-Code_Block\n'{\"name\":\"mynoodles\",\"id\":\"1\"}'\tI-Code_Block\t'{\"name\":\"mynoodles\",\"id\":\"1\"}'\tI-Code_Block\nhttp://162.243.114.162:5000/api/v1/queues/orders/finish\tI-Code_Block\thttp://162.243.114.162:5000/api/v1/queues/orders/finish\tI-Code_Block\n\t\ncurl\tB-Code_Block\tcurl\tB-Code_Block\n-H\tI-Code_Block\t-H\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nContent-Type\tI-Code_Block\tContent-Type\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\napplication/json\tI-Code_Block\tapplication/json\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n-X\tI-Code_Block\t-X\tI-Code_Block\nGET\tI-Code_Block\tGET\tI-Code_Block\n-d\tI-Code_Block\t-d\tI-Code_Block\n'{\"name\":\"mynoodles\"}'\tI-Code_Block\t'{\"name\":\"mynoodles\"}'\tI-Code_Block\nhttp://162.243.114.162:5000/api/v1/queues/orders/list\tI-Code_Block\thttp://162.243.114.162:5000/api/v1/queues/orders/list\tI-Code_Block\n\t\ncurl\tB-Code_Block\tcurl\tB-Code_Block\n-H\tI-Code_Block\t-H\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nContent-Type\tI-Code_Block\tContent-Type\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\napplication/json\tI-Code_Block\tapplication/json\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n-X\tI-Code_Block\t-X\tI-Code_Block\nGET\tI-Code_Block\tGET\tI-Code_Block\n-d\tI-Code_Block\t-d\tI-Code_Block\n'{\"name\":\"mynoodles\"}'\tI-Code_Block\t'{\"name\":\"mynoodles\"}'\tI-Code_Block\nhttp://162.243.114.162:5000/api/v1/queues/orders/history\tI-Code_Block\thttp://162.243.114.162:5000/api/v1/queues/orders/history\tI-Code_Block\n\t\ncurl\tB-Code_Block\tcurl\tB-Code_Block\n-H\tI-Code_Block\t-H\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nContent-Type\tI-Code_Block\tContent-Type\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\napplication/json\tI-Code_Block\tapplication/json\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n-X\tI-Code_Block\t-X\tI-Code_Block\nPOST\tI-Code_Block\tPOST\tI-Code_Block\n-d\tI-Code_Block\t-d\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nname\tI-Code_Block\tname\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nmynoodles\tI-Code_Block\tmynoodles\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nuser\tI-Code_Block\tuser\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\njimmy\tI-Code_Block\tjimmy\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\ndescription\tI-Code_Block\tdescription\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nhamburger\tI-Code_Block\thamburger\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\nhttp://162.243.114.162:5000/api/v1/queues/order\tI-Code_Block\thttp://162.243.114.162:5000/api/v1/queues/order\tI-Code_Block\n\t\nIf\tO\tIf\tO\n-passcode\tO\t-passcode\tO\nflag\tO\tflag\tO\nis\tO\tis\tO\nspecified\tO\tspecified\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nstarted\tO\tstarted\tO\n,\tO\t,\tO\nBasicAuth\tO\tBasicAuth\tO\nheaders\tO\theaders\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nadded\tO\tadded\tO\n\t\ncurl\tB-Code_Block\tcurl\tB-Code_Block\n-u\tI-Code_Block\t-u\tI-Code_Block\n:passphrase\tI-Code_Block\t:passphrase\tI-Code_Block\n-H\tI-Code_Block\t-H\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nContent-Type\tI-Code_Block\tContent-Type\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\napplication/json\tI-Code_Block\tapplication/json\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n-X\tI-Code_Block\t-X\tI-Code_Block\nPOST\tI-Code_Block\tPOST\tI-Code_Block\n-d\tI-Code_Block\t-d\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nname\tI-Code_Block\tname\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nmynoodles\tI-Code_Block\tmynoodles\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nuser\tI-Code_Block\tuser\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\njimmy\tI-Code_Block\tjimmy\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\ndescription\tI-Code_Block\tdescription\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nhamburger\tI-Code_Block\thamburger\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\nhttp://162.243.114.162:5000/api/v1/queues/order\tI-Code_Block\thttp://162.243.114.162:5000/api/v1/queues/order\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprogdude/Flicks\tO\tprogdude/Flicks\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/progdude/Flicks\tO\thttps://github.com/progdude/Flicks\tO\n\t\nProject\tO\tProject\tO\n1\tO\t1\tO\n-\tO\t-\tO\nMovieViewer\tO\tMovieViewer\tO\n\t\nMovieViewr\tO\tMovieViewr\tO\nis\tO\tis\tO\na\tO\ta\tO\nmovies\tO\tmovies\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nThe\tB-Library\tThe\tO\nMovie\tI-Library\tMovie\tO\nDatabase\tI-Library\tDatabase\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nTime\tO\tTime\tO\nspent\tO\tspent\tO\n:\tO\t:\tO\n7\tO\t7\tO\nhours\tO\thours\tO\nspent\tO\tspent\tO\nin\tO\tin\tO\ntotal\tO\ttotal\tO\n\t\nUser\tO\tUser\tO\nStories\tO\tStories\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nrequired\tO\trequired\tO\nfunctionality\tO\tfunctionality\tO\nis\tO\tis\tO\ncomplete\tO\tcomplete\tO\n:\tO\t:\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nview\tO\tview\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nmovies\tO\tmovies\tO\ncurrently\tO\tcurrently\tO\nplaying\tO\tplaying\tO\nin\tO\tin\tO\ntheaters\tO\ttheaters\tO\nfrom\tO\tfrom\tO\nThe\tB-Library\tThe\tO\nMovie\tI-Library\tMovie\tO\nDatabase\tI-Library\tDatabase\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nPoster\tO\tPoster\tO\nimages\tB-User_Interface_Element\timages\tO\nare\tO\tare\tO\nloaded\tO\tloaded\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nUIImageView\tB-Library\tUIImageView\tO\ncategory\tO\tcategory\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAFNetworking\tB-Library\tAFNetworking\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\nsees\tO\tsees\tO\na\tO\ta\tO\nloading\tO\tloading\tO\nstate\tO\tstate\tO\nwhile\tO\twhile\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nmovies\tO\tmovies\tO\nAPI\tB-Library\tAPI\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\npull\tO\tpull\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\nthe\tO\tthe\tO\nmovie\tO\tmovie\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\nsees\tO\tsees\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nnetworking\tO\tnetworking\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\noptional\tO\toptional\tO\nfeatures\tO\tfeatures\tO\nare\tO\tare\tO\nimplemented\tO\timplemented\tO\n:\tO\t:\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nMovies\tO\tMovies\tO\nare\tO\tare\tO\ndisplayed\tO\tdisplayed\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nCollectionView\tB-User_Interface_Element\tCollectionView\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nTableView\tB-User_Interface_Element\tTableView\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nselect\tO\tselect\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ntab\tB-User_Interface_Element\ttab\tO\nbar\tI-User_Interface_Element\tbar\tO\nfor\tO\tfor\tO\neither\tO\teither\tO\n\"\tO\t\"\tO\nNow\tO\tNow\tO\nPlaying\tO\tPlaying\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\nTop\tO\tTop\tO\nRated\tO\tRated\tO\n\"\tO\t\"\tO\nmovies\tO\tmovies\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nUser\tO\tUser\tO\ncan\tO\tcan\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nmovie\tO\tmovie\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nAll\tO\tAll\tO\nimages\tB-User_Interface_Element\timages\tO\nfade\tO\tfade\tO\nin\tO\tin\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nloading\tO\tloading\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nCustomize\tO\tCustomize\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nadditional\tO\tadditional\tO\nfeatures\tO\tfeatures\tO\nare\tO\tare\tO\nimplemented\tO\timplemented\tO\n:\tO\t:\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nDisplays\tO\tDisplays\tO\nuser\tO\tuser\tO\nratings\tO\tratings\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nAdded\tO\tAdded\tO\nHome\tB-User_Interface_Element\tHome\tO\nScreen\tI-User_Interface_Element\tScreen\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nAdded\tO\tAdded\tO\nSegue\tO\tSegue\tO\nand\tO\tand\tO\ngot\tO\tgot\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nnavigation\tB-User_Interface_Element\tnavigation\tO\nbar\tI-User_Interface_Element\tbar\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nAdded\tO\tAdded\tO\nimage\tB-User_Interface_Element\timage\tO\nanimations(rotations!)\tO\tanimations(rotations!)\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nFigured\tO\tFigured\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nrounded\tO\trounded\tO\nedges\tO\tedges\tO\nto\tO\tto\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n(\tO\t(\tO\nmuch\tO\tmuch\tO\nharder\tO\tharder\tO\nthan\tO\tthan\tO\nit\tO\tit\tO\nsounds\tO\tsounds\tO\n)\tO\t)\tO\n\t\nVideo\tO\tVideo\tO\nWalkthrough\tO\tWalkthrough\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nwalkthrough\tO\twalkthrough\tO\nof\tO\tof\tO\nimplemented\tO\timplemented\tO\nuser\tO\tuser\tO\nstories\tO\tstories\tO\n:\tO\t:\tO\n\t\nGIF\tB-User_Interface_Element\tGIF\tO\ncreated\tO\tcreated\tO\nwith\tO\twith\tO\nLiceCap\tB-Application\tLiceCap\tO\n.\tO\t.\tO\n\t\nNotes\tO\tNotes\tO\n\t\nAFNetworking\tB-Library\tAFNetworking\tO\nprovided\tO\tprovided\tO\nme\tO\tme\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nerrors\tO\terrors\tO\nat\tO\tat\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\n,\tO\t,\tO\ngetting\tO\tgetting\tO\nsome\tO\tsome\tO\nanimations\tO\tanimations\tO\nand\tO\tand\tO\nUI\tO\tUI\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwas\tO\twas\tO\nquite\tO\tquite\tO\nchallenging\tO\tchallenging\tO\n.\tO\t.\tO\n\t\nLicense\tO\tLicense\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_98263\tI-Code_Block\tGR_98263\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nglome/gnb\tO\tglome/gnb\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/glome/gnb\tO\thttps://github.com/glome/gnb\tO\n\t\nGlome\tB-Application\tGlome\tO\nNotification\tI-Application\tNotification\tO\nBroker\tI-Application\tBroker\tO\n(\tO\t(\tO\nGNB\tB-Application\tGNB\tO\n)\tO\t)\tO\n\t\nGNB\tB-Application\tGNB\tO\nis\tO\tis\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nmessage\tO\tmessage\tO\nbroker\tO\tbroker\tO\nwritten\tO\twritten\tO\nin\tO\tin\tO\nNode.js\tB-Application\tNode.js\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nsits\tO\tsits\tO\nbetween\tO\tbetween\tO\nGlome\tB-Application\tGlome\tO\n's\tO\t's\tO\nRedis\tB-Application\tRedis\tO\nserver\tI-Application\tserver\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nclients\tO\tclients\tO\nconnecting\tO\tconnecting\tO\nvia\tO\tvia\tO\nwebsockets\tO\twebsockets\tO\n(\tO\t(\tO\nor\tO\tor\tO\nHTTP\tO\tHTTP\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nGNB\tB-Application\tGNB\tO\nestablishes\tO\testablishes\tO\ntwo\tO\ttwo\tO\nconnections\tO\tconnections\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nRedis\tB-Application\tRedis\tO\nserver\tI-Application\tserver\tO\nfor\tO\tfor\tO\nduplex\tO\tduplex\tO\ncommunication\tO\tcommunication\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nconnections\tO\tconnections\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndownlink\tO\tdownlink\tO\nthat\tO\tthat\tO\ncarries\tO\tcarries\tO\nmessages\tO\tmessages\tO\nfrom\tO\tfrom\tO\nGlome\tB-Application\tGlome\tO\ntowards\tO\ttowards\tO\nthe\tO\tthe\tO\nclients\tO\tclients\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\nconnection\tO\tconnection\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nuplink\tO\tuplink\tO\nthat\tO\tthat\tO\ntransfers\tO\ttransfers\tO\nmessages\tO\tmessages\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nclients\tO\tclients\tO\ntowards\tO\ttowards\tO\nGlome\tB-Application\tGlome\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_102045\tI-Code_Block\tGR_102045\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncommand\tO\tcommand\tO\nwill\tO\twill\tO\ndownload\tO\tdownload\tO\nthe\tO\tthe\tO\ndependcies\tO\tdependcies\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nnode_modules\tO\tnode_modules\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nStart\tO\tStart\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_102046\tI-Code_Block\tGR_102046\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncommand\tO\tcommand\tO\nwill\tO\twill\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nbroker\tO\tbroker\tO\nwith\tO\twith\tO\ndefault\tO\tdefault\tO\nconfiguration\tO\tconfiguration\tO\n,\tO\t,\tO\nie\tO\tie\tO\n.\tO\t.\tO\n\t\nlistening\tO\tlistening\tO\non\tO\ton\tO\nport\tO\tport\tO\n8082\tO\t8082\tO\n.\tO\t.\tO\n\t\nConfiguration\tO\tConfiguration\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nenvrironment\tO\tenvrironment\tO\nvariables\tO\tvariables\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nthe\tO\tthe\tO\nbroker\tO\tbroker\tO\n:\tO\t:\tO\n\t\nGNB_PORT\tB-Library_Variable\tGNB_PORT\tO\n\t\nThe\tO\tThe\tO\nport\tO\tport\tO\nwhere\tO\twhere\tO\nGNB\tB-Application\tGNB\tO\nis\tO\tis\tO\nlistening\tO\tlistening\tO\nfor\tO\tfor\tO\nincoming\tO\tincoming\tO\nrequests\tO\trequests\tO\n(\tO\t(\tO\ndefault\tO\tdefault\tO\n:\tO\t:\tO\n808\tO\t808\tO\n2)\tO\t2)\tO\n.\tO\t.\tO\n\t\nREDIS_URL\tB-Library_Variable\tREDIS_URL\tO\n\t\nURL\tO\tURL\tO\nof\tO\tof\tO\nGlome\tB-Application\tGlome\tO\n's\tO\t's\tO\nRedis\tB-Application\tRedis\tO\nserver\tI-Application\tserver\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nRedis\tB-Application\tRedis\tO\nchannels\tO\tchannels\tO\n\t\nglome:{uid}\tO\tglome:{uid}\tO\n\t\nFor\tO\tFor\tO\ndownlink\tO\tdownlink\tO\nwhere\tO\twhere\tO\n{\tO\t{\tO\nuid\tO\tuid\tO\n}\tO\t}\tO\nidentifies\tO\tidentifies\tO\nthe\tO\tthe\tO\n3rd\tO\t3rd\tO\nparty\tO\tparty\tO\nGlome\tB-Application\tGlome\tO\nservice\tO\tservice\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n{\tO\t{\tO\nuid\tO\tuid\tO\n}\tO\t}\tO\nis\tO\tis\tO\nallocated\tO\tallocated\tO\nwhen\tO\twhen\tO\nrequesting\tO\trequesting\tO\nGlome\tB-Library\tGlome\tO\nAPI\tI-Library\tAPI\tO\naccess\tO\taccess\tO\n.\tO\t.\tO\n\t\nglome:app\tB-Library_Function\tglome:app\tO\n\t\nFor\tO\tFor\tO\nuplink\tO\tuplink\tO\npurposes\tO\tpurposes\tO\n(\tO\t(\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nclient\tO\tclient\tO\nsends\tO\tsends\tO\nmessages\tO\tmessages\tO\nto\tO\tto\tO\nGlome\tB-Application\tGlome\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nClient\tO\tClient\tO\nevents\tO\tevents\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nevents\tO\tevents\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nemitted\tO\temitted\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nclients\tO\tclients\tO\n:\tO\t:\tO\n\t\ngnb:connect\tB-Library_Function\tgnb:connect\tO\n\t\nA\tO\tA\tO\nservice\tO\tservice\tO\nwants\tO\twants\tO\nits\tO\tits\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nget\tO\tget\tO\nconnected\tO\tconnected\tO\nto\tO\tto\tO\nGNB\tB-Application\tGNB\tO\n.\tO\t.\tO\n\t\ngnb:disconnect\tB-Library_Function\tgnb:disconnect\tO\n\t\nA\tO\tA\tO\nservice\tO\tservice\tO\nwants\tO\twants\tO\nits\tO\tits\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndisconnected\tO\tdisconnected\tO\nfrom\tO\tfrom\tO\nGNB\tB-Application\tGNB\tO\n.\tO\t.\tO\n\t\nGNB\tB-Application\tGNB\tO\nevents\tO\tevents\tO\n\t\nThese\tO\tThese\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nemitted\tO\temitted\tO\nby\tO\tby\tO\nGNB\tB-Application\tGNB\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nclients\tO\tclients\tO\ncan\tO\tcan\tO\nlisten\tO\tlisten\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\n:\tO\t:\tO\n\t\ngnb:connected\tB-Library_Function\tgnb:connected\tO\n\t\nThe\tO\tThe\tO\nclient\tO\tclient\tO\nhas\tO\thas\tO\nsuccesfully\tO\tsuccesfully\tO\nconnected\tO\tconnected\tO\nto\tO\tto\tO\nGNB\tB-Application\tGNB\tO\n.\tO\t.\tO\n\t\ngnb:broadcast\tB-Library_Function\tgnb:broadcast\tO\n\t\nGlome\tB-Application\tGlome\tO\nsends\tO\tsends\tO\na\tO\ta\tO\nbroadcast\tO\tbroadcast\tO\nto\tO\tto\tO\nall\tO\tall\tO\nusers\tO\tusers\tO\nof\tO\tof\tO\na\tO\ta\tO\nservice\tO\tservice\tO\n.\tO\t.\tO\n\t\ngnb:message\tB-Library_Function\tgnb:message\tO\n\t\nGlome\tB-Application\tGlome\tO\nsends\tO\tsends\tO\na\tO\ta\tO\ndirect\tO\tdirect\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nuser\tO\tuser\tO\nof\tO\tof\tO\na\tO\ta\tO\nservice\tO\tservice\tO\n.\tO\t.\tO\n\t\ngnb:notification\tB-Library_Function\tgnb:notification\tO\n\t\nGlome\tB-Application\tGlome\tO\nsends\tO\tsends\tO\na\tO\ta\tO\ndirect\tO\tdirect\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nclient\tO\tclient\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nmeant\tO\tmeant\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nmachine\tO\tmachine\tO\nto\tO\tto\tO\nmachine\tO\tmachine\tO\ncommunication\tO\tcommunication\tO\n.\tO\t.\tO\n\t\nFirewall\tO\tFirewall\tO\nand\tO\tand\tO\nweb\tO\tweb\tO\nserver\tB-Application\tserver\tO\nsetup\tO\tsetup\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nnode\tB-Application\tnode\tO\napp\tO\tapp\tO\nport\tO\tport\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\navailable\tO\tavailable\tO\nfrom\tO\tfrom\tO\nlocalhost\tO\tlocalhost\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_102047\tI-Code_Block\tGR_102047\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nProxy\tO\tProxy\tO\nSSL\tO\tSSL\tO\nrequests\tO\trequests\tO\nwith\tO\twith\tO\nApache\tB-Application\tApache\tO\n2.4\tB-Version\t2.4\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_102048\tI-Code_Block\tGR_102048\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nProxy\tO\tProxy\tO\nrequest\tO\trequest\tO\nwith\tO\twith\tO\nNginx\tB-Application\tNginx\tO\n1.4\tB-Version\t1.4\tO\n+\tI-Version\t+\tO\n\t\nTODO\tO\tTODO\tO\n\t\nLicensing\tO\tLicensing\tO\n\t\nAuthor\tO\tAuthor\tO\n:\tO\t:\tO\nferenc\tB-User_Name\tferenc\tO\nat\tO\tat\tO\nglome\tB-Organization\tglome\tO\ndot\tO\tdot\tO\nme\tO\tme\tO\n\t\nLicense\tO\tLicense\tO\n:\tO\t:\tO\nMIT\tB-Licence\tMIT\tO\n\t\nCopyright\tB-Licence\tCopyright\tO\n(\tI-Licence\t(\tO\nc\tI-Licence\tc\tO\n)\tI-Licence\t)\tO\n2014\tB-Licence\t2014\tO\nGlome\tI-Licence\tGlome\tO\nInc\tI-Licence\tInc\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/7\tO\thttps://github.com/zeroepoch/plotbitrate/issues/7\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nannoying\tO\tannoying\tO\nthat\tO\tthat\tO\n'\tO\t'\tO\nA\tO\tA\tO\n'\tO\t'\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nalso\tO\talso\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\naudio\tO\taudio\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nsets\tO\tsets\tO\nthis\tO\tthis\tO\noption\tO\toption\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nwas\tO\twas\tO\njust\tO\tjust\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nchar\tB-Data_Type\tchar\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsteam\tO\tsteam\tO\noption\tO\toption\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/25\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/25\tO\n\t\n:\tO\t:\tO\n+\tO\t+\tO\n1\tO\t1\tO\n:\tO\t:\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nchange\tO\tchange\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ncan\tO\tcan\tO\nyou\tO\tyou\tO\nformat\tO\tformat\tO\nyour\tO\tyour\tO\ncommit\tO\tcommit\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nshort\tO\tshort\tO\nsubject\tO\tsubject\tO\n,\tO\t,\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nrationale\tO\trationale\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nbody\tO\tbody\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nas\tO\tas\tO\none\tO\tone\tO\nline\tO\tline\tO\n?\tO\t?\tO\n\t\nSee\tO\tSee\tO\n:\tO\t:\tO\n\t\nhttps://wiki.openstack.org/wiki/GitCommitMessages\tO\thttps://wiki.openstack.org/wiki/GitCommitMessages\tO\n\t\nhttps://wiki.gnome.org/GnomeLove/SubmittingPatches\tO\thttps://wiki.gnome.org/GnomeLove/SubmittingPatches\tO\n\t\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlgladney/dnadiff_scripts\tO\tlgladney/dnadiff_scripts\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/lgladney/dnadiff_scripts\tO\thttps://github.com/lgladney/dnadiff_scripts\tO\n\t\ndnadiff_scripts\tO\tdnadiff_scripts\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nciti-onboarding/mandacaruBack\tO\tciti-onboarding/mandacaruBack\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/citi-onboarding/mandacaruBack/issues/1\tO\thttps://github.com/citi-onboarding/mandacaruBack/issues/1\tO\n\t\nFalta\tO\tFalta\tO\napenas\tO\tapenas\tO\no\tO\to\tO\nfamicon\tO\tfamicon\tO\ne\tO\te\tO\no\tO\to\tO\nvídeo\tO\tvídeo\tO\npromocional\tO\tpromocional\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njamstooks/django\tO\tjamstooks/django\tO\n-acme-challenge\tO\t-acme-challenge\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jamstooks/django-acme-challenge/issues/1\tO\thttps://github.com/jamstooks/django-acme-challenge/issues/1\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\njust\tO\tjust\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nafter\tO\tafter\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nslug\tO\tslug\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ntrigger\tO\ttrigger\tO\nthe\tO\tthe\tO\nvalidation\tO\tvalidation\tO\nagain\tO\tagain\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nrun\tO\trun\tO\n./acme.sh\tB-Code_Block\t./acme.sh\tO\n--issue\tI-Code_Block\t--issue\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nslug\tO\tslug\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njfox015/Bonfire\tO\tjfox015/Bonfire\tO\n-Comments\tO\t-Comments\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/jfox015/Bonfire-Comments\tO\thttps://github.com/jfox015/Bonfire-Comments\tO\n\t\nBonfire\tB-Application\tBonfire\tO\nComments\tO\tComments\tO\n\t\nA\tO\tA\tO\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\nadding\tO\tadding\tO\ncomments\tO\tcomments\tO\nthreads\tO\tthreads\tO\nto\tO\tto\tO\nattach\tO\tattach\tO\nvarious\tO\tvarious\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nBonfire\tB-Application\tBonfire\tO\nAdmin\tB-User_Interface_Element\tAdmin\tO\nDashboard\tI-User_Interface_Element\tDashboard\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\nCurrent\tO\tCurrent\tO\nFeatures\tO\tFeatures\tO\n\t\nContent\tO\tContent\tO\nagnostic\tO\tagnostic\tO\ndata\tO\tdata\tO\ndesign\tO\tdesign\tO\n\t\nUse\tO\tUse\tO\nmodules::run()\tB-Library_Function\tmodules::run()\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\ncomment\tO\tcomment\tO\nthread\tO\tthread\tO\nand\tO\tand\tO\nform\tO\tform\tO\n.\tO\t.\tO\n\t\nAJAX\tB-Library_Function\tAJAX\tO\nsubmission\tO\tsubmission\tO\nand\tO\tand\tO\nupdates\tO\tupdates\tO\n\t\nSettings\tO\tSettings\tO\noptions\tO\toptions\tO\n\t\nTwitter\tB-Website\tTwitter\tO\nBoostrap\tB-Library\tBoostrap\tO\nCSS\tB-Language\tCSS\tO\namd\tO\tamd\tO\nJS\tB-Language\tJS\tO\nintegration\tO\tintegration\tO\n(\tO\t(\tO\nCollapsable\tO\tCollapsable\tO\n)\tO\t)\tO\n\t\nPossible\tO\tPossible\tO\nFuture\tO\tFuture\tO\nFeatures\tO\tFeatures\tO\n\t\nGravatar\tB-Application\tGravatar\tO\nsupport\tO\tsupport\tO\n\t\nNested\tO\tNested\tO\nComment\tO\tComment\tO\nReplies\tO\tReplies\tO\n\t\nRequirements\tO\tRequirements\tO\n\t\nPHP\tB-Language\tPHP\tO\n5.3\tB-Version\t5.3\tO\n+\tI-Version\t+\tO\n\t\nBonfire\tB-Application\tBonfire\tO\n0.7\tB-Version\t0.7\tO\n+\tI-Version\t+\tO\n\t\nKeep\tO\tKeep\tO\nCurrent\tO\tCurrent\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nMod\tO\tMod\tO\n\t\nFollow\tO\tFollow\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nTwitter\tB-Website\tTwitter\tO\nfeed\tO\tfeed\tO\njfox015\tB-User_Name\tjfox015\tO\n.\tO\t.\tO\n\t\nTeam\tO\tTeam\tO\n\t\nJeff\tB-User_Name\tJeff\tO\nFox\tI-User_Name\tFox\tO\n-\tO\t-\tO\nLead\tO\tLead\tO\nDeveloper\tO\tDeveloper\tO\n\t\nContribute\tO\tContribute\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndevelopment\tO\tdevelopment\tO\n\t\nThis\tO\tThis\tO\nmod\tO\tmod\tO\nis\tO\tis\tO\na\tO\ta\tO\n100%\tO\t100%\tO\nfree\tO\tfree\tO\nand\tO\tand\tO\nopen\tO\topen\tO\nsource\tO\tsource\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\npublicly\tO\tpublicly\tO\navailable\tO\tavailable\tO\non\tO\ton\tO\nGitHub.com\tB-Website\tGitHub.com\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncontribute\tO\tcontribute\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndevelopment\tO\tdevelopment\tO\n,\tO\t,\tO\nsimply\tO\tsimply\tO\nfork\tO\tfork\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nhack\tO\thack\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nupdates\tO\tupdates\tO\n.\tO\t.\tO\n\t\nLicense\tO\tLicense\tO\n\t\nCopyright\tB-Licence\tCopyright\tO\n(\tI-Licence\t(\tO\nc\tI-Licence\tc\tO\n)\tI-Licence\t)\tO\n2012-14\tB-Licence\t2012-14\tO\nJeff\tI-Licence\tJeff\tO\nFox\tI-Licence\tFox\tO\n.\tO\t.\tO\n\t\nPermission\tO\tPermission\tO\nis\tO\tis\tO\nhereby\tO\thereby\tO\ngranted\tO\tgranted\tO\n,\tO\t,\tO\nfree\tO\tfree\tO\nof\tO\tof\tO\ncharge\tO\tcharge\tO\n,\tO\t,\tO\nto\tO\tto\tO\nany\tO\tany\tO\nperson\tO\tperson\tO\nobtaining\tO\tobtaining\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nsoftware\tO\tsoftware\tO\nand\tO\tand\tO\nassociated\tO\tassociated\tO\ndocumentation\tO\tdocumentation\tO\nfiles\tO\tfiles\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nSoftware\tO\tSoftware\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\n,\tO\t,\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSoftware\tO\tSoftware\tO\nwithout\tO\twithout\tO\nrestriction\tO\trestriction\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nwithout\tO\twithout\tO\nlimitation\tO\tlimitation\tO\nthe\tO\tthe\tO\nrights\tO\trights\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\ncopy\tO\tcopy\tO\n,\tO\t,\tO\nmodify\tO\tmodify\tO\n,\tO\t,\tO\nmerge\tO\tmerge\tO\n,\tO\t,\tO\npublish\tO\tpublish\tO\n,\tO\t,\tO\ndistribute\tO\tdistribute\tO\n,\tO\t,\tO\nsublicense\tO\tsublicense\tO\n,\tO\t,\tO\nand/or\tO\tand/or\tO\nsell\tO\tsell\tO\ncopies\tO\tcopies\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nSoftware\tO\tSoftware\tO\n,\tO\t,\tO\nand\tO\tand\tO\nto\tO\tto\tO\npermit\tO\tpermit\tO\npersons\tO\tpersons\tO\nto\tO\tto\tO\nwhom\tO\twhom\tO\nthe\tO\tthe\tO\nSoftware\tO\tSoftware\tO\nis\tO\tis\tO\nfurnished\tO\tfurnished\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n,\tO\t,\tO\nsubject\tO\tsubject\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nconditions\tO\tconditions\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\ncopyright\tO\tcopyright\tO\nnotice\tO\tnotice\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\npermission\tO\tpermission\tO\nnotice\tO\tnotice\tO\nshall\tO\tshall\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nall\tO\tall\tO\ncopies\tO\tcopies\tO\nor\tO\tor\tO\nsubstantial\tO\tsubstantial\tO\nportions\tO\tportions\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nSoftware\tO\tSoftware\tO\n.\tO\t.\tO\n\t\nTHE\tO\tTHE\tO\nSOFTWARE\tO\tSOFTWARE\tO\nIS\tO\tIS\tO\nPROVIDED\tO\tPROVIDED\tO\n\"\tO\t\"\tO\nAS\tO\tAS\tO\nIS\tO\tIS\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nWITHOUT\tO\tWITHOUT\tO\nWARRANTY\tO\tWARRANTY\tO\nOF\tO\tOF\tO\nANY\tO\tANY\tO\nKIND\tO\tKIND\tO\n,\tO\t,\tO\nEXPRESS\tO\tEXPRESS\tO\nOR\tO\tOR\tO\nIMPLIED\tO\tIMPLIED\tO\n,\tO\t,\tO\nINCLUDING\tO\tINCLUDING\tO\nBUT\tO\tBUT\tO\nNOT\tO\tNOT\tO\nLIMITED\tO\tLIMITED\tO\nTO\tO\tTO\tO\nTHE\tO\tTHE\tO\nWARRANTIES\tO\tWARRANTIES\tO\nOF\tO\tOF\tO\nMERCHANTABILITY\tO\tMERCHANTABILITY\tO\n,\tO\t,\tO\nFITNESS\tO\tFITNESS\tO\nFOR\tO\tFOR\tO\nA\tO\tA\tO\nPARTICULAR\tO\tPARTICULAR\tO\nPURPOSE\tO\tPURPOSE\tO\nAND\tO\tAND\tO\nNONINFRINGEMENT\tO\tNONINFRINGEMENT\tO\n.\tO\t.\tO\n\t\nIN\tO\tIN\tO\nNO\tO\tNO\tO\nEVENT\tO\tEVENT\tO\nSHALL\tO\tSHALL\tO\nTHE\tO\tTHE\tO\nAUTHORS\tO\tAUTHORS\tO\nOR\tO\tOR\tO\nCOPYRIGHT\tO\tCOPYRIGHT\tO\nHOLDERS\tO\tHOLDERS\tO\nBE\tO\tBE\tO\nLIABLE\tO\tLIABLE\tO\nFOR\tO\tFOR\tO\nANY\tO\tANY\tO\nCLAIM\tO\tCLAIM\tO\n,\tO\t,\tO\nDAMAGES\tO\tDAMAGES\tO\nOR\tO\tOR\tO\nOTHER\tO\tOTHER\tO\nLIABILITY\tO\tLIABILITY\tO\n,\tO\t,\tO\nWHETHER\tO\tWHETHER\tO\nIN\tO\tIN\tO\nAN\tO\tAN\tO\nACTION\tO\tACTION\tO\nOF\tO\tOF\tO\nCONTRACT\tO\tCONTRACT\tO\n,\tO\t,\tO\nTORT\tO\tTORT\tO\nOR\tO\tOR\tO\nOTHERWISE\tO\tOTHERWISE\tO\n,\tO\t,\tO\nARISING\tO\tARISING\tO\nFROM\tO\tFROM\tO\n,\tO\t,\tO\nOUT\tO\tOUT\tO\nOF\tO\tOF\tO\nOR\tO\tOR\tO\nIN\tO\tIN\tO\nCONNECTION\tO\tCONNECTION\tO\nWITH\tO\tWITH\tO\nTHE\tO\tTHE\tO\nSOFTWARE\tO\tSOFTWARE\tO\nOR\tO\tOR\tO\nTHE\tO\tTHE\tO\nUSE\tO\tUSE\tO\nOR\tO\tOR\tO\nOTHER\tO\tOTHER\tO\nDEALINGS\tO\tDEALINGS\tO\nIN\tO\tIN\tO\nTHE\tO\tTHE\tO\nSOFTWARE\tO\tSOFTWARE\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucasHill/ember\tO\tLucasHill/ember\tO\n-fastboot-post-example\tO\t-fastboot-post-example\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucasHill/ember-fastboot-post-example/issues/1\tO\thttps://github.com/LucasHill/ember-fastboot-post-example/issues/1\tO\n\t\nExamples\tO\tExamples\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nPOST\tB-Library_Function\tPOST\tO\nto\tO\tto\tO\na\tO\ta\tO\nfastboot\tB-Application\tfastboot\tO\napp\tO\tapp\tO\nin\tO\tin\tO\ndevelopment\tO\tdevelopment\tO\nand\tO\tand\tO\nproduction\tO\tproduction\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/42\tO\thttps://github.com/demigor/lex.db/issues/42\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\ncross\tO\tcross\tO\nplatform\tO\tplatform\tO\napp\tO\tapp\tO\nin\tO\tin\tO\nXamarin\tB-Application\tXamarin\tO\nForms\tI-Application\tForms\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nLex.DB\tB-Application\tLex.DB\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nPortable\tB-Library\tPortable\tO\nClass\tI-Library\tClass\tO\nLibrary\tI-Library\tLibrary\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nInitialize()\tB-Library_Function\tInitialize()\tO\non\tO\ton\tO\nDbInstance\tB-Library_Class\tDbInstance\tO\n,\tO\t,\tO\nI\tO\tI\tO\nreceive\tO\treceive\tO\na\tO\ta\tO\nNullReferenceException\tB-Error_Name\tNullReferenceException\tO\nerror\tI-Error_Name\terror\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nonly\tO\tonly\tO\nhappens\tO\thappens\tO\nin\tO\tin\tO\niOS\tB-Operating_System\tiOS\tO\n(\tO\t(\tO\nboth\tO\tboth\tO\ndevice\tO\tdevice\tO\nand\tO\tand\tO\nsimulator\tO\tsimulator\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\non\tO\ton\tO\nAndroid\tB-Operating_System\tAndroid\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nnotice\tO\tnotice\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nPath\tB-Library_Variable\tPath\tO\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nnull\tO\tnull\tO\non\tO\ton\tO\nDbInstance\tB-Library_Class\tDbInstance\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nscreenshot\tO\tscreenshot\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nvirresh/hello\tO\tvirresh/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/virresh/hello-world/issues/1\tO\thttps://github.com/virresh/hello-world/issues/1\tO\n\t\nIssue\tO\tIssue\tO\nfor\tO\tfor\tO\ntesting\tO\ttesting\tO\ngit\tB-Application\tgit\tO\ncloses\tO\tcloses\tO\nkeyword\tO\tkeyword\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/22\tO\thttps://github.com/rpcope1/Hantek6022API/issues/22\tO\n\t\nFile\tO\tFile\tO\nHantek6022API/PyHT6022/LibUsbScope.py\tB-File_Name\tHantek6022API/PyHT6022/LibUsbScope.py\tO\nhas\tO\thas\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\ndef\tB-Code_Block\tdef\tO\nflash_firmware\tI-Code_Block\tflash_firmware\tO\n(\tI-Code_Block\t(\tO\nself\tI-Code_Block\tself\tO\n,\tI-Code_Block\t,\tO\nfirmware\tI-Code_Block\tfirmware\tO\n=\tI-Code_Block\t=\tO\ndefault_firmware\tI-Code_Block\tdefault_firmware\tO\n,\tI-Code_Block\t,\tO\nsupports_single_channel\tI-Code_Block\tsupports_single_channel\tO\n=\tI-Code_Block\t=\tO\nTrue\tI-Code_Block\tTrue\tO\n,\tI-Code_Block\t,\tO\ntimeout\tI-Code_Block\ttimeout\tO\n=\tI-Code_Block\t=\tO\n60\tI-Code_Block\t60\tO\n)\tI-Code_Block\t)\tO\n:\tO\t:\tO\n\t\nhas\tO\thas\tO\na\tO\ta\tO\ndelay\tO\tdelay\tO\nloop\tO\tloop\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_64083\tI-Code_Block\tGR_64083\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nmaybe\tO\tmaybe\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ninclude\tO\tinclude\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\ndiagnostic\tO\tdiagnostic\tO\ninformation\tO\tinformation\tO\ndisplay\tO\tdisplay\tO\nwithin\tO\twithin\tO\nthat\tO\tthat\tO\nloop\tO\tloop\tO\nprint\tB-Code_Block\tprint\tO\n(\tI-Code_Block\t(\tO\n'yet\tI-Code_Block\t'yet\tO\nanother\tI-Code_Block\tanother\tO\niteration'\tI-Code_Block\titeration'\tO\n)\tI-Code_Block\t)\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nalso\tO\talso\tO\nnotice\tO\tnotice\tO\nbefore\tO\tbefore\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\na\tO\ta\tO\ntimeout\tO\ttimeout\tO\nfor\tO\tfor\tO\nwriting\tO\twriting\tO\npackets\tO\tpackets\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nwhere\tO\twhere\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nhangs\tO\thangs\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nHantek\tB-Device\tHantek\tO\noscilloscope\tI-Device\toscilloscope\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\na\tO\ta\tO\n\"\tO\t\"\tO\npower\tO\tpower\tO\non\tO\ton\tO\n\"\tO\t\"\tO\nindicator\tO\tindicator\tO\nlight\tO\tlight\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\ndefect\tO\tdefect\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndesign\tO\tdesign\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nopinion\tO\topinion\tO\n.\tO\t.\tO\n\t\nCertain\tO\tCertain\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nconnected\tO\tconnected\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nto\tO\tto\tO\na\tO\ta\tO\nUSB\tB-Device\tUSB\tO\nport\tO\tport\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nUSB3\tB-Device\tUSB3\tO\nport\tO\tport\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nprobably\tO\tprobably\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\nwithin\tO\twithin\tO\nreason\tO\treason\tO\n)\tO\t)\tO\nCertain\tO\tCertain\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nport\tO\tport\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ncomputer\tB-Library_Function\tcomputer\tO\nworks\tO\tworks\tO\n?\tO\t?\tO\n\t\nDave\tB-User_Name\tDave\tO\n\t\nOn\tO\tOn\tO\n10/24/2015\tO\t10/24/2015\tO\n06:55\tO\t06:55\tO\nPM\tO\tPM\tO\n,\tO\t,\tO\nKeziolio\tB-User_Name\tKeziolio\tO\nwrote\tO\twrote\tO\n:\tO\t:\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\non\tO\ton\tO\nArch\tB-Operating_System\tArch\tO\nlinux\tI-Operating_System\tlinux\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\n|python2\tB-Code_Block\t|python2\tO\nexamples/example_linux_flashfirmware.py\tI-Code_Block\texamples/example_linux_flashfirmware.py\tO\n|\tO\t|\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nstarts\tO\tstarts\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nstops\tO\tstops\tO\nat\tO\tat\tO\n|scope.flash_firmware()|\tB-Library_Function\t|scope.flash_firmware()|\tO\n,\tO\t,\tO\nand\tO\tand\tO\nstays\tO\tstays\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\ngiving\tO\tgiving\tO\nerrors\tO\terrors\tO\nor\tO\tor\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\ni\tO\ti\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nscope\tO\tscope\tO\nis\tO\tis\tO\nconnected\tO\tconnected\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfirmware\tO\tfirmware\tO\nis\tO\tis\tO\nbuilt\tO\tbuilt\tO\nas\tO\tas\tO\ninstruction\tO\tinstruction\tO\nsaid\tO\tsaid\tO\n.\tO\t.\tO\n\t\nPython\tB-Language\tPython\tO\n2.7.10\tB-Version\t2.7.10\tO\n\t\n—\tO\t—\tO\nReply\tO\tReply\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nemail\tO\temail\tO\ndirectly\tO\tdirectly\tO\nor\tO\tor\tO\nview\tO\tview\tO\nit\tO\tit\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/22\tO\thttps://github.com/rpcope1/Hantek6022API/issues/22\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/4\tO\thttps://github.com/op-jenkins/op-build/issues/4\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nislamgoda3/tic\tO\tislamgoda3/tic\tO\n-tac-toe-android-app\tO\t-tac-toe-android-app\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/islamgoda3/tic-tac-toe-android-app\tO\thttps://github.com/islamgoda3/tic-tac-toe-android-app\tO\n\t\nTIC\tO\tTIC\tO\nTAC\tO\tTAC\tO\nTOE\tO\tTOE\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfamous\tO\tfamous\tO\nTic\tO\tTic\tO\nTac\tO\tTac\tO\nToe\tO\tToe\tO\ngame\tO\tgame\tO\nfor\tO\tfor\tO\nAndroid\tB-Operating_System\tAndroid\tO\n4.0\tB-Version\t4.0\tO\nand\tO\tand\tO\nhigher\tO\thigher\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ngame\tO\tgame\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\ntic\tO\ttic\tO\ntac\tO\ttac\tO\ntoe\tO\ttoe\tO\nagainst\tO\tagainst\tO\nCPU\tB-Device\tCPU\tO\nor\tO\tor\tO\nagainst\tO\tagainst\tO\nyour\tO\tyour\tO\nfriends\tO\tfriends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndevice\tO\tdevice\tO\nor\tO\tor\tO\nusing\tO\tusing\tO\nbluetooth\tO\tbluetooth\tO\nto\tO\tto\tO\ncommunicate\tO\tcommunicate\tO\nbetween\tO\tbetween\tO\nyour\tO\tyour\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nfriend\tO\tfriend\tO\n's\tO\t's\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/33\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/33\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\nis\tO\tis\tO\nalready\tO\talready\tO\n,\tO\t,\tO\nor\tO\tor\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nHelloAR\tB-Application\tHelloAR\tO\nsample\tO\tsample\tO\nfor\tO\tfor\tO\nx86\tO\tx86\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nnear\tO\tnear\tO\nfuture\tO\tfuture\tO\n?\tO\t?\tO\n\t\nFrom\tO\tFrom\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nread\tO\tread\tO\n,\tO\t,\tO\nx86\tO\tx86\tO\nis\tO\tis\tO\nsupported\tO\tsupported\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narcore-android-sdk\tB-Application\tarcore-android-sdk\tO\nsince\tO\tsince\tO\n1.0\tB-Version\t1.0\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nthis\tO\tthis\tO\napply\tO\tapply\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nunreal-sdk\tB-Application\tunreal-sdk\tO\nalso\tO\talso\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nmight\tO\tmight\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\nmaking\tO\tmaking\tO\nmistakes\tO\tmistakes\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\ni\tO\ti\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\n1R6\tB-Version\t1R6\tO\nand\tO\tand\tO\n1R7\tB-Version\t1R7\tO\nCodeworks\tB-Application\tCodeworks\tO\nfor\tO\tfor\tO\nAndroid\tB-Operating_System\tAndroid\tO\nbundles\tO\tbundles\tO\nas\tO\tas\tO\nsuggested\tO\tsuggested\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nunreal\tB-Application\tunreal\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nmanually\tO\tmanually\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nrecent\tO\trecent\tO\nSDK\tB-Application\tSDK\tO\nand\tO\tand\tO\nNDK\tB-Application\tNDK\tO\nversions\tO\tversions\tO\nand\tO\tand\tO\ntargeting\tO\ttargeting\tO\nfor\tO\tfor\tO\nnumerous\tO\tnumerous\tO\nemulated\tO\temulated\tO\ndevices\tO\tdevices\tO\nand\tO\tand\tO\nAPI\tB-Library\tAPI\tO\nlevels\tO\tlevels\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nalso\tO\talso\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nUnreal\tB-Application\tUnreal\tO\nEngine\tI-Application\tEngine\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ngoogle-ar-unreal/UnrealEngine\tO\tgoogle-ar-unreal/UnrealEngine\tO\nrepository\tO\trepository\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\n\"\tO\t\"\tO\nstatic_assert\tB-Error_Name\tstatic_assert\tO\nfailed\tI-Error_Name\tfailed\tO\n\"\tO\t\"\tO\nerrors\tO\terrors\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n:\tO\t:\tO\n\t\nLogPlayLevel\tB-Code_Block\tLogPlayLevel\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nPLATFORM_ANDROID_NDK_VERSION\tI-Code_Block\tPLATFORM_ANDROID_NDK_VERSION\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n150300\tI-Code_Block\t150300\tI-Code_Block\n\t\nLogPlayLevel\tB-Code_Block\tLogPlayLevel\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nNDK\tI-Code_Block\tNDK\tI-Code_Block\ntoolchain\tI-Code_Block\ttoolchain\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nr15c\tI-Code_Block\tr15c\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nNDK\tI-Code_Block\tNDK\tI-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n26\tI-Code_Block\t26\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nGccVersion\tI-Code_Block\tGccVersion\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n4.9\tI-Code_Block\t4.9\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nClangVersion\tI-Code_Block\tClangVersion\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n5.0.300080\tI-Code_Block\t5.0.300080\tI-Code_Block\n\t\n[\tO\t[\tO\n..\tO\t..\tO\n]\tO\t]\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGI_11462\tI-Code_Block\tGI_11462\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander/issues/9\tO\thttps://github.com/SivanMehta/wander/issues/9\tO\n\t\nMoved\tO\tMoved\tO\nall\tO\tall\tO\ndocuments\tO\tdocuments\tO\nand\tO\tand\tO\nprocess\tO\tprocess\tO\ninvolved\tO\tinvolved\tO\nin\tO\tin\tO\nuser\tO\tuser\tO\nexperience\tO\texperience\tO\nside\tO\tside\tO\nfrom\tO\tfrom\tO\nlocal\tO\tlocal\tO\nfolder\tO\tfolder\tO\nto\tO\tto\tO\ndocs\tO\tdocs\tO\nfolder\tO\tfolder\tO\n(\tO\t(\tO\ndigitalized\tO\tdigitalized\tO\nversions\tO\tversions\tO\nafter\tO\tafter\tO\ninitial\tO\tinitial\tO\ndrafts\tO\tdrafts\tO\non\tO\ton\tO\nwhiteboard/paper\tO\twhiteboard/paper\tO\n)\tO\t)\tO\n\t\nReadme\tB-File_Name\tReadme\tO\nupdate\tO\tupdate\tO\nwith\tO\twith\tO\nblurb\tO\tblurb\tO\non\tO\ton\tO\nux\tO\tux\tO\nprocess\tO\tprocess\tO\n\t\nIncluded\tO\tIncluded\tO\nuser\tO\tuser\tO\nresearch\tO\tresearch\tO\nanalysis\tO\tanalysis\tO\nwith\tO\twith\tO\naffinity\tO\taffinity\tO\ndiagramming\tO\tdiagramming\tO\n(\tO\t(\tO\ndigital\tO\tdigital\tO\nversion\tO\tversion\tO\n)\tO\t)\tO\n\t\nIncluded\tO\tIncluded\tO\nwireframe\tO\twireframe\tO\nworkflow\tO\tworkflow\tO\n(\tO\t(\tO\ndigital\tO\tdigital\tO\nversion\tO\tversion\tO\n)\tO\t)\tO\n\t\nUsability\tO\tUsability\tO\nAspect\tO\tAspect\tO\nReport\tO\tReport\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nuser-testing\tO\tuser-testing\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucieSteiner/AMT_feature1\tO\tLucieSteiner/AMT_feature1\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucieSteiner/AMT_feature1/issues/9\tO\thttps://github.com/LucieSteiner/AMT_feature1/issues/9\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nrecommend\tO\trecommend\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ndedicated\tO\tdedicated\tO\nservlet\tB-Library_Class\tservlet\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nor\tO\tor\tO\n(\tO\t(\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\naction\tB-Library_Variable\taction\tO\n\"\tO\t\"\tO\nparameter\tO\tparameter\tO\n)\tO\t)\tO\n,\tO\t,\tO\nto\tO\tto\tO\nput\tO\tput\tO\nit\tO\tit\tO\ntogether\tO\ttogether\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nThink\tO\tThink\tO\nof\tO\tof\tO\na\tO\ta\tO\ndeveloper\tO\tdeveloper\tO\narriving\tO\tarriving\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nhis\tO\this\tO\nlife\tO\tlife\tO\neasier\tO\teasier\tO\nif\tO\tif\tO\nhe\tO\the\tO\nfinds\tO\tfinds\tO\nall\tO\tall\tO\nauthentication-related\tO\tauthentication-related\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander/issues/5\tO\thttps://github.com/SivanMehta/wander/issues/5\tO\n\t\n\t\nAllow\tO\tAllow\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\nrequest\tO\trequest\tO\neach\tO\teach\tO\nother\tO\tother\tO\nvia\tO\tvia\tO\nclicking\tO\tclicking\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\n\t\nAlso\tO\tAlso\tO\ngive\tO\tgive\tO\nthe\tO\tthe\tO\nimpression\tO\timpression\tO\nof\tO\tof\tO\nrating\tO\trating\tO\na\tO\ta\tO\ntrip\tO\ttrip\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/4\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/4\tO\n\t\nUpgrade\tO\tUpgrade\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/120\tO\thttps://github.com/svenstaro/flamejam/issues/120\tO\n\t\nAs\tO\tAs\tO\nsome\tO\tsome\tO\npeople\tO\tpeople\tO\nhave\tO\thave\tO\nnoted\tO\tnoted\tO\non\tO\ton\tO\nIRC\tO\tIRC\tO\n,\tO\t,\tO\nscreenshots\tO\tscreenshots\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nfor\tO\tfor\tO\ngames\tO\tgames\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwas\tO\twas\tO\nprobably\tO\tprobably\tO\nbroken\tO\tbroken\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nacccessing\tO\tacccessing\tO\nscheme\tO\tscheme\tO\noverhaul\tO\toverhaul\tO\n,\tO\t,\tO\nand\tO\tand\tO\nis\tO\tis\tO\nfixed\tO\tfixed\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmaemori/accon\tO\tmaemori/accon\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/maemori/accon\tO\thttps://github.com/maemori/accon\tO\n\t\n#Accon\tO\t#Accon\tO\n\t\nVersion\tO\tVersion\tO\n:\tO\t:\tO\n1.1.0\tB-Version\t1.1.0\tO\n\t\nFuelPHP\tB-Library\tFuelPHP\tO\nVersion\tO\tVersion\tO\n:\tO\t:\tO\n1.8\tB-Version\t1.8\tO\n(\tO\t(\tO\nhttp://fuelphp.com/\tO\thttp://fuelphp.com/\tO\n)\tO\t)\tO\n\t\nDescription\tO\tDescription\tO\n\t\nアクセス制御機能をはじめ、Webアプリケーションに必要な機能をオール・イン・ワン化された開発・\tO\tアクセス制御機能をはじめ、Webアプリケーションに必要な機能をオール・イン・ワン化された開発・\tO\n実行基盤\tO\t実行基盤\tO\n.\tO\t.\tO\n\t\nfully\tO\tfully\tO\nPHP\tB-Language\tPHP\tO\n7\tB-Version\t7\tO\ncompatible\tO\tcompatible\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\ninformation\tO\tinformation\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ndetailed\tO\tdetailed\tO\ninformation\tO\tinformation\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nmanual\tO\tmanual\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/libp2p/interface-record-store/issues/6\tO\thttps://github.com/libp2p/interface-record-store/issues/6\tO\n\t\nHello\tO\tHello\tO\nlovely\tO\tlovely\tO\nhumans\tO\thumans\tO\n,\tO\t,\tO\n\t\nmultihashing\tO\tmultihashing\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n0.2.2\tB-Version\t0.2.2\tO\n.\tO\t.\tO\n\t\nState\tO\tState\tO\n\t\n\t\nFailing\tO\tFailing\tO\ntests\tO\ttests\tO\n:warning\tO\t:warning\tO\n:\tO\t:\tO\n\t\n\t\nDependency\tO\tDependency\tO\n\t\n\t\n\t\nmultihashing\tO\tmultihashing\tO\n\t\n\t\nNew\tO\tNew\tO\nversion\tO\tversion\tO\n\t\n\t\n\t\n0.2.2\tB-Version\t0.2.2\tO\n\t\n\t\nType\tO\tType\tO\n\t\n\t\n\t\ndependency\tO\tdependency\tO\n\t\n\t\nThis\tO\tThis\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\nupdating\tO\tupdating\tO\nit\tO\tit\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\nkept\tO\tkept\tO\nfailing\tO\tfailing\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nin\tO\tin\tO\nits\tO\tits\tO\ncurrent\tO\tcurrent\tO\nform\tO\tform\tO\n,\tO\t,\tO\nis\tO\tis\tO\nmalfunctioning\tO\tmalfunctioning\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nupdate\tO\tupdate\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nchange\tO\tchange\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nleave\tO\tleave\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndark\tO\tdark\tO\nabout\tO\tabout\tO\nupdates\tO\tupdates\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\npassing\tO\tpassing\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nimpact\tO\timpact\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nupdate\tO\tupdate\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimprove\tO\timprove\tO\nthese\tO\tthese\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n?\tO\t?\tO\n\t\nDid\tO\tDid\tO\nI\tO\tI\tO\nreport\tO\treport\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nunsure\tO\tunsure\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nfrequently\tO\tfrequently\tO\nasked\tO\tasked\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\na\tO\ta\tO\nbot\tO\tbot\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\nteach\tO\tteach\tO\nme\tO\tme\tO\nnew\tO\tnew\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nthem\tO\tthem\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\nrock\tO\trock\tO\n!\tO\t!\tO\n\t\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\ndiffers\tO\tdiffers\tO\nby\tO\tby\tO\n12\tO\t12\tO\ncommits\tO\tcommits\tO\n.\tO\t.\tO\n\t\ne06e395\tB-Code_Block\te06e395\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nrelease\tI-Code_Block\trelease\tI-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\nv0.2.2\tI-Code_Block\tv0.2.2\tI-Code_Block\n\t\n30e3ad2\tB-Code_Block\t30e3ad2\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\ncontributors\tI-Code_Block\tcontributors\tI-Code_Block\n\t\n3828e53\tB-Code_Block\t3828e53\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\ndeps\tI-Code_Block\tdeps\tI-Code_Block\nand\tI-Code_Block\tand\tI-Code_Block\nswitch\tI-Code_Block\tswitch\tI-Code_Block\nfrom\tI-Code_Block\tfrom\tI-Code_Block\n^\tI-Code_Block\t^\tI-Code_Block\nto\tI-Code_Block\tto\tI-Code_Block\n~\tI-Code_Block\t~\tI-Code_Block\nin\tI-Code_Block\tin\tI-Code_Block\nour\tI-Code_Block\tour\tI-Code_Block\ndeps\tI-Code_Block\tdeps\tI-Code_Block\n\t\n8241a6d\tB-Code_Block\t8241a6d\tB-Code_Block\nMerge\tI-Code_Block\tMerge\tI-Code_Block\npull\tI-Code_Block\tpull\tI-Code_Block\nrequest\tI-Code_Block\trequest\tI-Code_Block\n#15\tI-Code_Block\t#15\tI-Code_Block\nfrom\tI-Code_Block\tfrom\tI-Code_Block\nmultiformats/feat/readme\tI-Code_Block\tmultiformats/feat/readme\tI-Code_Block\n\t\n0dd7656\tB-Code_Block\t0dd7656\tB-Code_Block\nEdited\tI-Code_Block\tEdited\tI-Code_Block\nREADME\tI-Code_Block\tREADME\tI-Code_Block\n\t\nf3b1478\tB-Code_Block\tf3b1478\tB-Code_Block\ndocs(readme)\tI-Code_Block\tdocs(readme)\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nreplace\tI-Code_Block\treplace\tI-Code_Block\nnpmcdn.com\tI-Code_Block\tnpmcdn.com\tI-Code_Block\nwith\tI-Code_Block\twith\tI-Code_Block\nunpkg.com\tI-Code_Block\tunpkg.com\tI-Code_Block\n\t\nebe26f6\tB-Code_Block\tebe26f6\tB-Code_Block\nMerge\tI-Code_Block\tMerge\tI-Code_Block\npull\tI-Code_Block\tpull\tI-Code_Block\nrequest\tI-Code_Block\trequest\tI-Code_Block\n#9\tI-Code_Block\t#9\tI-Code_Block\nfrom\tI-Code_Block\tfrom\tI-Code_Block\nmultiformats/feature/standardize\tI-Code_Block\tmultiformats/feature/standardize\tI-Code_Block\n-readme\tI-Code_Block\t-readme\tI-Code_Block\n\t\n61f2273\tB-Code_Block\t61f2273\tB-Code_Block\nStandardized\tI-Code_Block\tStandardized\tI-Code_Block\nReadme\tI-Code_Block\tReadme\tI-Code_Block\n\t\ne02924f\tB-Code_Block\te02924f\tB-Code_Block\nMerge\tI-Code_Block\tMerge\tI-Code_Block\npull\tI-Code_Block\tpull\tI-Code_Block\nrequest\tI-Code_Block\trequest\tI-Code_Block\n#8\tI-Code_Block\t#8\tI-Code_Block\nfrom\tI-Code_Block\tfrom\tI-Code_Block\nharlantwood/patch\tI-Code_Block\tharlantwood/patch\tI-Code_Block\n-2\tI-Code_Block\t-2\tI-Code_Block\n\t\nb068a55\tB-Code_Block\tb068a55\tB-Code_Block\nMerge\tI-Code_Block\tMerge\tI-Code_Block\npull\tI-Code_Block\tpull\tI-Code_Block\nrequest\tI-Code_Block\trequest\tI-Code_Block\n#7\tI-Code_Block\t#7\tI-Code_Block\nfrom\tI-Code_Block\tfrom\tI-Code_Block\nharlantwood/patch\tI-Code_Block\tharlantwood/patch\tI-Code_Block\n-1\tI-Code_Block\t-1\tI-Code_Block\n\t\nf3ead52\tB-Code_Block\tf3ead52\tB-Code_Block\nput\tI-Code_Block\tput\tI-Code_Block\nresponses\tI-Code_Block\tresponses\tI-Code_Block\nin\tI-Code_Block\tin\tI-Code_Block\ncomments\tI-Code_Block\tcomments\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nto\tI-Code_Block\tto\tI-Code_Block\nremove\tI-Code_Block\tremove\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nangry\tI-Code_Block\tangry\tI-Code_Block\nhighlighting\tI-Code_Block\thighlighting\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\non\tI-Code_Block\ton\tI-Code_Block\ngithub\tI-Code_Block\tgithub\tI-Code_Block\n\t\ne23ae85\tB-Code_Block\te23ae85\tB-Code_Block\nclarify\tI-Code_Block\tclarify\tI-Code_Block\n.digest\tI-Code_Block\t.digest\tI-Code_Block\nmethod\tI-Code_Block\tmethod\tI-Code_Block\ndescription\tI-Code_Block\tdescription\tI-Code_Block\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndiff\tO\tdiff\tO\n.\tO\t.\tO\n\t\n✨\tO\t✨\tO\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nall\tO\tall\tO\nnew\tO\tnew\tO\nGreenkeeper\tB-Application\tGreenkeeper\tO\nGitHub\tB-Website\tGitHub\tO\nIntegration\tO\tIntegration\tO\n✨\tO\t✨\tO\n\t\nWith\tO\tWith\tO\nIntegrations\tO\tIntegrations\tO\nfirst-class\tO\tfirst-class\tO\nbot\tO\tbot\tO\nsupport\tO\tsupport\tO\nlanded\tO\tlanded\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nand\tO\tand\tO\nwe\tO\twe\tO\n've\tO\t've\tO\nrewritten\tO\trewritten\tO\nGreenkeeper\tB-Application\tGreenkeeper\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nfull\tO\tfull\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSimpler\tO\tSimpler\tO\nsetup\tO\tsetup\tO\n,\tO\t,\tO\nfewer\tO\tfewer\tO\npull-requests\tO\tpull-requests\tO\n,\tO\t,\tO\nfaster\tO\tfaster\tO\nthan\tO\tthan\tO\never\tO\tever\tO\n.\tO\t.\tO\n\t\nScreencast\tO\tScreencast\tO\nTry\tO\tTry\tO\nit\tO\tit\tO\ntoday\tO\ttoday\tO\n.\tO\t.\tO\n\t\nFree\tO\tFree\tO\nfor\tO\tfor\tO\nprivate\tO\tprivate\tO\nrepositories\tO\trepositories\tO\nduring\tO\tduring\tO\nbeta\tO\tbeta\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkohnakagawa/particle\tO\tkohnakagawa/particle\tO\n-drawing\tO\t-drawing\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/kohnakagawa/particle-drawing/issues/1\tO\thttps://github.com/kohnakagawa/particle-drawing/issues/1\tO\n\t\nslide\tO\tslide\tO\nモードの\tO\tモードの\tO\n\t\n描画速度が遅い。\tO\t描画速度が遅い。\tO\n\t\nbutton\tO\tbutton\tO\n(\tO\t(\tO\nn\tO\tn\tO\np\tO\tp\tO\nN\tO\tN\tO\nP\tO\tP\tO\n)\tO\t)\tO\nを二回押さないとスナップショットの更新が行われない問題点を解消する。\tO\tを二回押さないとスナップショットの更新が行われない問題点を解消する。\tO\n\t\nどの時点から描画を開始するかを明示するオプションを追加する。\tO\tどの時点から描画を開始するかを明示するオプションを追加する。\tO\n(\tO\t(\tO\n-b\tO\t-b\tO\nで指定する。\tO\tで指定する。\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nManuelDeLeon/vmc2jsx\tO\tManuelDeLeon/vmc2jsx\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/4\tO\thttps://github.com/ManuelDeLeon/viewmodel-react-plugin/issues/4\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nuploaded\tO\tuploaded\tO\nrepro.zip\tB-File_Name\trepro.zip\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nrepro\tO\trepro\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nhttps://github.com/ManuelDeLeon/viewmodel-react/issues/44\tO\thttps://github.com/ManuelDeLeon/viewmodel-react/issues/44\tO\n\t\nSee\tO\tSee\tO\nreadme.md\tB-File_Name\treadme.md\tO\nand\tO\tand\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\naction\tO\taction\tO\nis\tO\tis\tO\nin\tO\tin\tO\nimports/ui/AppLayout.jsx\tB-File_Name\timports/ui/AppLayout.jsx\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmadison-kerndt/off\tO\tmadison-kerndt/off\tO\n-on-guard-synesthesia\tO\t-on-guard-synesthesia\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/30\tO\thttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/30\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmakeen-project/makeen\tO\tmakeen-project/makeen\tO\n-hapi\tO\t-hapi\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/viczam/makeen-hapi/issues/68\tO\thttps://github.com/viczam/makeen-hapi/issues/68\tO\n\t\nMakeen\tB-Application\tMakeen\tO\nCore\tO\tCore\tO\ne2e\tO\te2e\tO\ntests\tO\ttests\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/15\tO\thttps://github.com/mapbox/tile-count/issues/15\tO\n\t\nBitmap\tB-Data_Structure\tBitmap\tO\ntiles\tO\ttiles\tO\nshould\tO\tshould\tO\nprobably\tO\tprobably\tO\nuse\tO\tuse\tO\n8\tO\t8\tO\nbits\tO\tbits\tO\nper\tO\tper\tO\npixel\tO\tpixel\tO\nwith\tO\twith\tO\na\tO\ta\tO\npalette\tO\tpalette\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nthey\tO\tthey\tO\nspell\tO\tspell\tO\neach\tO\teach\tO\npixel\tO\tpixel\tO\nout\tO\tout\tO\nin\tO\tin\tO\n32-bit\tO\t32-bit\tO\nRGBA\tO\tRGBA\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndhrrgn/codeigniter\tO\tdhrrgn/codeigniter\tO\n-uhoh\tO\t-uhoh\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dhrrgn/codeigniter-uhoh/issues/6\tO\thttps://github.com/dhrrgn/codeigniter-uhoh/issues/6\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nCI\tB-Library\tCI\tO\nversion\tO\tversion\tO\n1.7.2\tB-Version\t1.7.2\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\nruns\tO\truns\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nMySQL\tB-Language\tMySQL\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nit\tO\tit\tO\nthrows\tO\tthrows\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nhttp://postimage.org/image/qtbfo41dn/\tO\thttp://postimage.org/image/qtbfo41dn/\tO\n\t\nErrorException\tB-Output_Block\tErrorException\tO\n[\tI-Output_Block\t[\tO\nFatal\tI-Output_Block\tFatal\tO\nError\tI-Output_Block\tError\tO\n]\tI-Output_Block\t]\tO\n:\tI-Output_Block\t:\tO\nWrong\tI-Output_Block\tWrong\tO\nparameters\tI-Output_Block\tparameters\tO\nfor\tI-Output_Block\tfor\tO\nErrorException\tI-Output_Block\tErrorException\tO\n(\tI-Output_Block\t(\tO\n[string\tI-Output_Block\t[string\tO\n$exception\tI-Output_Block\t$exception\tO\n[\tI-Output_Block\t[\tO\n,\tI-Output_Block\t,\tO\nlong\tI-Output_Block\tlong\tO\n$code\tI-Output_Block\t$code\tO\n,\tI-Output_Block\t,\tO\n[\tI-Output_Block\t[\tO\nlong\tI-Output_Block\tlong\tO\n$severity\tI-Output_Block\t$severity\tO\n,\tI-Output_Block\t,\tO\n[\tI-Output_Block\t[\tO\nstring\tI-Output_Block\tstring\tO\n$filename\tI-Output_Block\t$filename\tO\n,\tI-Output_Block\t,\tO\n[\tI-Output_Block\t[\tO\nlong\tI-Output_Block\tlong\tO\n$lineno\tI-Output_Block\t$lineno\tO\n]]]]]\tI-Output_Block\t]]]]]\tO\n)\tI-Output_Block\t)\tO\nAPPPATH/libraries/MY_Exceptions.php\tB-Output_Block\tAPPPATH/libraries/MY_Exceptions.php\tO\n[\tI-Output_Block\t[\tO\n492\tI-Output_Block\t492\tO\n]\tI-Output_Block\t]\tO\n487\tI-Output_Block\t487\tO\nbreak\tI-Output_Block\tbreak\tO\n;\tI-Output_Block\t;\tO\n488\tI-Output_Block\t488\tO\n}\tI-Output_Block\t}\tO\n489\tI-Output_Block\t489\tO\n}\tI-Output_Block\t}\tO\n490\tI-Output_Block\t490\tO\nunset($trace)\tI-Output_Block\tunset($trace)\tO\n;\tI-Output_Block\t;\tO\n491\tI-Output_Block\t491\tO\n492\tI-Output_Block\t492\tO\nself::exception_handler\tI-Output_Block\tself::exception_handler\tO\n(\tB-Output_Block\t(\tO\nnew\tI-Output_Block\tnew\tO\nErrorException\tI-Output_Block\tErrorException\tO\n(\tI-Output_Block\t(\tO\n$message\tI-Output_Block\t$message\tO\n,\tI-Output_Block\t,\tO\nE_ERROR\tI-Output_Block\tE_ERROR\tO\n,\tI-Output_Block\t,\tO\n0\tI-Output_Block\t0\tO\n,\tI-Output_Block\t,\tO\n$file\tI-Output_Block\t$file\tO\n,\tI-Output_Block\t,\tO\n$line\tI-Output_Block\t$line\tO\n)\tI-Output_Block\t)\tO\n)\tB-Output_Block\t)\tO\n;\tB-Output_Block\t;\tO\n493\tI-Output_Block\t493\tO\nreturn\tI-Output_Block\treturn\tO\n;\tI-Output_Block\t;\tO\n494\tI-Output_Block\t494\tO\n}\tI-Output_Block\t}\tO\n495\tI-Output_Block\t495\tO\n496\tI-Output_Block\t496\tO\n/\tI-Output_Block\t/\tO\n**\tI-Output_Block\t**\tO\n497\tI-Output_Block\t497\tO\n*\tI-Output_Block\t*\tO\nIs\tI-Output_Block\tIs\tO\nExtension\tI-Output_Block\tExtension\tO\n{\tI-Output_Block\t{\tO\nPHP\tI-Output_Block\tPHP\tO\ninternal\tI-Output_Block\tinternal\tO\ncall}\tI-Output_Block\tcall}\tO\n»\tI-Output_Block\t»\tO\nMY_Exceptions::shutdown_handler(arguments)\tI-Output_Block\tMY_Exceptions::shutdown_handler(arguments)\tO\nEnvironment\tI-Output_Block\tEnvironment\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nForneus/programmering\tO\tForneus/programmering\tO\n-a-inlamningar\tO\t-a-inlamningar\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/Forneus/programmering-a-inlamningar/issues/2\tO\thttps://github.com/Forneus/programmering-a-inlamningar/issues/2\tO\n\t\nAlt\tO\tAlt\tO\n1\tO\t1\tO\nAlt\tO\tAlt\tO\n2\tO\t2\tO\nUnicode\tO\tUnicode\tO\nRita\tO\tRita\tO\nsjälv\tO\tsjälv\tO\nStorlek\tO\tStorlek\tO\n\t\nplacering\tO\tplacering\tO\ncanvastext\tO\tcanvastext\tO\n(\tO\t(\tO\nx/4\tO\tx/4\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/46\tO\thttps://github.com/mapbox/tile-count/issues/46\tO\n\t\nOops\tO\tOops\tO\n,\tO\t,\tO\nsorry\tO\tsorry\tO\n,\tO\t,\tO\nI\tO\tI\tO\nnow\tO\tnow\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\ntile-count\tB-Application\ttile-count\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\nand\tO\tand\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP/issues/5\tO\thttps://github.com/McMenemy/GoDoRP/issues/5\tO\n\t\nHi\tO\tHi\tO\n@n00ge\tB-User_Name\t@n00ge\tO\n,\tO\t,\tO\nsorry\tO\tsorry\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlate\tO\tlate\tO\nresponse\tO\tresponse\tO\n,\tO\t,\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nin\tO\tin\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nre\tO\tre\tO\ngit\tB-Application\tgit\tO\ncloned\tO\tcloned\tO\nand\tO\tand\tO\nran\tO\tran\tO\ndocker-compose\tB-Code_Block\tdocker-compose\tO\nup\tI-Code_Block\tup\tO\nand\tO\tand\tO\neverything\tO\teverything\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nyou\tO\tyou\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nin\tO\tin\tO\napi.go\tB-File_Name\tapi.go\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nchanges\tO\tchanges\tO\n(\tO\t(\tO\nreact\tB-Library\treact\tO\nwill\tO\twill\tO\nautomatically\tO\tautomatically\tO\nrefresh\tO\trefresh\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/15\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/15\tO\n\t\n\t\nAdd\tO\tAdd\tO\nmenu\tO\tmenu\tO\nmolecule\tO\tmolecule\tO\nbase\tO\tbase\tO\nstructure\tO\tstructure\tO\n.\tO\t.\tO\n\t\nAdd\tO\tAdd\tO\nbackground\tB-User_Interface_Element\tbackground\tO\ncolor\tO\tcolor\tO\noption\tO\toption\tO\nfor\tO\tfor\tO\nexamples\tO\texamples\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\npatterns\tO\tpatterns\tO\npage\tO\tpage\tO\n(\tO\t(\tO\nneeded\tO\tneeded\tO\nwhen\tO\twhen\tO\nsome\tO\tsome\tO\ncomponents\tO\tcomponents\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ndisplay\tO\tdisplay\tO\nwell\tO\twell\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nwhite\tO\twhite\tO\nbackground\tO\tbackground\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/242\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/242\tO\n\t\nHello\tO\tHello\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndoesnt\tO\tdoesnt\tO\nshow\tO\tshow\tO\nnotification\tO\tnotification\tO\nin\tO\tin\tO\niOS\tB-Operating_System\tiOS\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nAndroid\tB-Operating_System\tAndroid\tO\nit\tO\tit\tO\nfirst\tO\tfirst\tO\nsays\tO\tsays\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nbackground\tO\tbackground\tO\nfor\tO\tfor\tO\nsecond\tO\tsecond\tO\ntime\tO\ttime\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nnotification\tO\tnotification\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nguide\tO\tguide\tO\nme\tO\tme\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\nfixed\tO\tfixed\tO\nor\tO\tor\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nam\tO\tam\tO\ni\tO\ti\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/14\tO\thttps://github.com/rpcope1/Hantek6022API/issues/14\tO\n\t\nT0\tO\tT0\tO\nis\tO\tis\tO\ntimer\tO\ttimer\tO\n0\tO\t0\tO\ninput\tO\tinput\tO\nclock\tO\tclock\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\none\tO\tone\tO\ncan\tO\tcan\tO\ncount\tO\tcount\tO\nthe\tO\tthe\tO\npulses\tO\tpulses\tO\nand\tO\tand\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\ntimer\tO\ttimer\tO\ninterrupt\tO\tinterrupt\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nspecified\tO\tspecified\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\npulses\tO\tpulses\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nuseful\tO\tuseful\tO\nfor\tO\tfor\tO\ntriggering\tO\ttriggering\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nwhat\tO\twhat\tO\nE0-E5\tO\tE0-E5\tO\nare\tO\tare\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirmware\tO\tfirmware\tO\ncontains\tO\tcontains\tO\nno\tO\tno\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthese\tO\tthese\tO\nregisters\tO\tregisters\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nwaveform\tO\twaveform\tO\ndebugging\tO\tdebugging\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nADC\tB-Device\tADC\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ntriggerred\tO\ttriggerred\tO\nby\tO\tby\tO\neither\tO\teither\tO\nIFCLK\tB-Device\tIFCLK\tO\nor\tO\tor\tO\nCTL2\tB-Device\tCTL2\tO\n.\tO\t.\tO\n\t\n48/30\tO\t48/30\tO\nMHz\tO\tMHz\tO\nmode\tO\tmode\tO\nenables\tO\tenables\tO\nclock\tO\tclock\tO\noutput\tO\toutput\tO\non\tO\ton\tO\nIFCLK\tB-Device\tIFCLK\tO\nand\tO\tand\tO\nkeeps\tO\tkeeps\tO\nCTL2\tB-Device\tCTL2\tO\nto\tO\tto\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nLower\tO\tLower\tO\nmodi\tO\tmodi\tO\nswitch\tO\tswitch\tO\nCTL2\tB-Device\tCTL2\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwave\tO\twave\tO\nform\tO\tform\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nsample\tO\tsample\tO\nand\tO\tand\tO\ndisable\tO\tdisable\tO\nclock\tO\tclock\tO\noutput\tO\toutput\tO\nin\tO\tin\tO\nIFCONFIG\tB-Device\tIFCONFIG\tO\n.\tO\t.\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nsure\tO\tsure\tO\nCTL2\tB-Device\tCTL2\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nconnected\tO\tconnected\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nstock\tO\tstock\tO\nfirmware\tO\tfirmware\tO\n24\tO\t24\tO\nMHz\tO\tMHz\tO\nwas\tO\twas\tO\nbroken\tO\tbroken\tO\nand\tO\tand\tO\nsampled\tO\tsampled\tO\nwith\tO\twith\tO\n48\tO\t48\tO\nMHz\tO\tMHz\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\ndisabling\tO\tdisabling\tO\nIFCLK\tB-Device\tIFCLK\tO\nand\tO\tand\tO\ntoggling\tO\ttoggling\tO\nCTL2\tB-Device\tCTL2\tO\nwith\tO\twith\tO\n16\tO\t16\tO\nMHz\tO\tMHz\tO\n(\tO\t(\tO\nok\tO\tok\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nafter\tO\tafter\tO\npatching\tO\tpatching\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nwaveform\tO\twaveform\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nresult\tO\tresult\tO\nwas\tO\twas\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nwere\tO\twere\tO\nalways\tO\talways\tO\n3\tO\t3\tO\nidentical\tO\tidentical\tO\nsamples\tO\tsamples\tO\n,\tO\t,\tO\nso\tO\tso\tO\nCTL2\tB-Device\tCTL2\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\neffects\tO\teffects\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/15\tO\thttps://github.com/rpcope1/Hantek6022API/issues/15\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmade\tO\tmade\tO\nsome\tO\tsome\tO\nmodifications\tO\tmodifications\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nadding\tO\tadding\tO\ncapacitors\tO\tcapacitors\tO\n)\tO\t)\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\npersonal\tO\tpersonal\tO\nscope\tO\tscope\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\nsuccessful\tO\tsuccessful\tO\nin\tO\tin\tO\nreducing\tO\treducing\tO\nnoise\tO\tnoise\tO\nas\tO\tas\tO\nseen\tO\tseen\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nADC\tB-Device\tADC\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\ndocument\tO\tdocument\tO\nthese\tO\tthese\tO\nfor\tO\tfor\tO\nothers\tO\tothers\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/31\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/31\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\ndownloaded\tO\tdownloaded\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nAR\tB-Application\tAR\tO\nCore\tI-Application\tCore\tO\npackage\tO\tpackage\tO\n(\tO\t(\tO\nversion\tO\tversion\tO\n1.3\tB-Version\t1.3\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nAugmented\tB-Application\tAugmented\tO\nImages\tI-Application\tImages\tO\napplication\tO\tapplication\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nSamsung\tB-Device\tSamsung\tO\nGalaxy\tI-Device\tGalaxy\tO\nS7\tI-Device\tS7\tO\nedge\tB-Version\tedge\tO\n(\tO\t(\tO\nSM-G935F\tB-Version\tSM-G935F\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nthis\tO\tthis\tO\nall\tO\tall\tO\nin\tO\tin\tO\nUnreal\tB-Application\tUnreal\tO\nEngine\tI-Application\tEngine\tO\n4.20\tB-Version\t4.20\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nlaunched\tO\tlaunched\tO\nand\tO\tand\tO\nasked\tO\tasked\tO\nme\tO\tme\tO\npermission\tO\tpermission\tO\nfor\tO\tfor\tO\ncamera\tB-Device\tcamera\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nI\tO\tI\tO\naccepted\tO\taccepted\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nscreen\tB-User_Interface_Element\tscreen\tO\ngoes\tO\tgoes\tO\nblack\tO\tblack\tO\nand\tO\tand\tO\ncrashed\tO\tcrashed\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nhappend\tO\thappend\tO\nmultiple\tO\tmultiple\tO\ntimes\tO\ttimes\tO\n,\tO\t,\tO\neven\tO\teven\tO\nused\tO\tused\tO\nprevious\tO\tprevious\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\npackage\tO\tpackage\tO\n/\tO\t/\tO\nengine\tO\tengine\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nAR\tB-Application\tAR\tO\nCore\tI-Application\tCore\tO\ninstalled\tO\tinstalled\tO\nand\tO\tand\tO\neven\tO\teven\tO\nhave\tO\thave\tO\ninstalled\tO\tinstalled\tO\nsome\tO\tsome\tO\nAR\tB-Application\tAR\tO\nCore\tI-Application\tCore\tO\napplications\tO\tapplications\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\neven\tO\teven\tO\ndid\tO\tdid\tO\na\tO\ta\tO\nsuccessful\tO\tsuccessful\tO\nbuild\tO\tbuild\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nAR\tO\tAR\tO\nHandheld\tO\tHandheld\tO\n'\tO\t'\tO\ntemplate\tO\ttemplate\tO\nfrom\tO\tfrom\tO\nUnreal\tB-Application\tUnreal\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nlaunch\tO\tlaunch\tO\nthe\tO\tthe\tO\nHelloAR\tB-Application\tHelloAR\tO\npackage\tO\tpackage\tO\nand\tO\tand\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nlogcat\tB-Application\tlogcat\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n:\tO\t:\tO\n\t\nLog-augmentedimages.txt\tB-File_Name\tLog-augmentedimages.txt\tO\n\t\nTnx\tO\tTnx\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/16\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/16\tO\n\t\nLGTM\tO\tLGTM\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlobbin/chrome\tO\tlobbin/chrome\tO\n-die2nitemapupdater\tO\t-die2nitemapupdater\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lobbin/chrome-die2nitemapupdater/issues/2\tO\thttps://github.com/lobbin/chrome-die2nitemapupdater/issues/2\tO\n\t\nFixed\tO\tFixed\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncmd430/google\tO\tcmd430/google\tO\n-event-api\tO\t-event-api\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/cmd430/google-event-api\tO\thttps://github.com/cmd430/google-event-api\tO\n\t\ngoogle-event-api\tB-Library\tgoogle-event-api\tO\n\t\nGet\tO\tGet\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nevent\tO\tevent\tO\nfrom\tO\tfrom\tO\ngoogle\tB-Website\tgoogle\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nlogo\tB-User_Interface_Element\tlogo\tO\n)\tO\t)\tO\n\t\nExample\tO\tExample\tO\nUsage\tO\tUsage\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_11909\tI-Code_Block\tGR_11909\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOUTPUT\tO\tOUTPUT\tO\nEXAMPLE\tO\tEXAMPLE\tO\n:\tO\t:\tO\n>\tB-Code_Block\t>\tB-Code_Block\nhttps://www.google.co.nz/images/icons/hpcg/ribbon-black_68.png\tI-Code_Block\thttps://www.google.co.nz/images/icons/hpcg/ribbon-black_68.png\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSebastian-Kulik/kicad\tO\tSebastian-Kulik/kicad\tO\n-library\tO\t-library\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/Sebastian-Kulik/kicad-library\tO\thttps://github.com/Sebastian-Kulik/kicad-library\tO\n\t\nKiCad\tB-Library\tKiCad\tO\nLibrary\tO\tLibrary\tO\n\t\nThis\tO\tThis\tO\nrepository\tO\trepository\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nschematic\tO\tschematic\tO\nand\tO\tand\tO\n3D\tO\t3D\tO\nlibraries\tO\tlibraries\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nKiCad\tB-Library\tKiCad\tO\nlibrary\tO\tlibrary\tO\nteam\tO\tteam\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfootprint\tO\tfootprint\tO\nlibraries\tO\tlibraries\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\n*\tB-File_Type\t*\tB-Code_Block\n.pretty\tI-File_Type\t.pretty\tI-Code_Block\nrepos\tO\trepos\tO\nthemselves\tO\tthemselves\tO\nand\tO\tand\tO\nare\tO\tare\tO\nused\tO\tused\tO\nonline\tO\tonline\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nthem\tO\tthem\tO\nlocally\tO\tlocally\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlibrary-repos-install.bat\tB-File_Name\tlibrary-repos-install.bat\tB-Code_Block\nand\tO\tand\tO\nlibrary-repos-install.sh\tB-File_Name\tlibrary-repos-install.sh\tB-Code_Block\nscripts\tO\tscripts\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nKiCad\tB-Library\tKiCad\tO\nsource\tO\tsource\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nContribute\tO\tContribute\tO\n\t\nPlease\tO\tPlease\tO\n,\tO\t,\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nCONTRIBUTING.md\tB-File_Name\tCONTRIBUTING.md\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nor\tO\tor\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nWiki\tB-Website\tWiki\tO\nPage\tO\tPage\tO\n.\tO\t.\tO\n\t\nFurther\tO\tFurther\tO\nInformation\tO\tInformation\tO\n\t\nKiCad\tB-Library\tKiCad\tO\nWebsite\tO\tWebsite\tO\n\t\nKiCad\tB-Library\tKiCad\tO\nLibrary\tO\tLibrary\tO\nConvention\tO\tConvention\tO\n(\tO\t(\tO\nKLC\tO\tKLC\tO\n)\tO\t)\tO\n\t\nKiCad\tB-Library\tKiCad\tO\nLibrary\tO\tLibrary\tO\nWiki\tO\tWiki\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnormal1017/shower\tO\tnormal1017/shower\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/normal1017/shower\tO\thttps://github.com/normal1017/shower\tO\n\t\nShower\tB-Application\tShower\tO\nPresentation\tO\tPresentation\tO\nTemplate\tO\tTemplate\tO\n\t\nShower\tO\tShower\tO\n[\tO\t[\tO\n'ʃəuə\tO\t'ʃəuə\tO\n]\tO\t]\tO\nnoun\tO\tnoun\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nperson\tO\tperson\tO\nor\tO\tor\tO\nthing\tO\tthing\tO\nthat\tO\tthat\tO\nshows\tO\tshows\tO\n.\tO\t.\tO\n\t\nBuilt\tO\tBuilt\tO\non\tO\ton\tO\nHTML\tB-Language\tHTML\tO\n,\tO\t,\tO\nCSS\tB-Language\tCSS\tO\nand\tO\tand\tO\nvanilla\tB-Version\tvanilla\tO\nJavaScript\tB-Language\tJavaScript\tO\n\t\nWorks\tO\tWorks\tO\nin\tO\tin\tO\nall\tO\tall\tO\nmodern\tO\tmodern\tO\nbrowsers\tB-Application\tbrowsers\tO\n\t\nThemes\tO\tThemes\tO\nare\tO\tare\tO\nseparated\tO\tseparated\tO\nfrom\tO\tfrom\tO\nengine\tO\tengine\tO\n\t\nModular\tO\tModular\tO\nand\tO\tand\tO\nextensible\tO\textensible\tO\n\t\nFully\tO\tFully\tO\nkeyboard\tB-Device\tkeyboard\tO\naccessible\tO\taccessible\tO\n\t\nPrintable\tO\tPrintable\tO\nto\tO\tto\tO\nPDF\tB-File_Type\tPDF\tO\n\t\nSee\tO\tSee\tO\nit\tO\tit\tO\nin\tO\tin\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nIncludes\tO\tIncludes\tO\nRibbon\tO\tRibbon\tO\nand\tO\tand\tO\nMaterial\tO\tMaterial\tO\nthemes\tO\tthemes\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncore\tO\tcore\tO\nwith\tO\twith\tO\nplugins\tO\tplugins\tO\n.\tO\t.\tO\n\t\nFollow\tO\tFollow\tO\n@shower_me\tB-User_Name\t@shower_me\tO\nfor\tO\tfor\tO\nsupport\tO\tsupport\tO\nand\tO\tand\tO\nupdates\tO\tupdates\tO\n,\tO\t,\tO\nfile\tO\tfile\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\n.\tO\t.\tO\n\t\nQuick\tO\tQuick\tO\nStart\tO\tStart\tO\n\t\nDownload\tO\tDownload\tO\nand\tO\tand\tO\nunzip\tO\tunzip\tO\ntemplate\tO\ttemplate\tO\narchive\tO\tarchive\tO\n\t\nOpen\tO\tOpen\tO\nindex.html\tB-File_Name\tindex.html\tB-Code_Block\nand\tO\tand\tO\nstart\tO\tstart\tO\ncreating\tO\tcreating\tO\nyour\tO\tyour\tO\npresentation\tO\tpresentation\tO\n\t\nAdvanced\tO\tAdvanced\tO\n\t\nClone\tO\tClone\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\nlocally\tO\tlocally\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\nclone\tI-Code_Block\tclone\tI-Code_Block\ngit@github.com\tI-Code_Block\tgit@github.com\tI-Code_Block\n:shower/shower.git\tI-Code_Block\t:shower/shower.git\tI-Code_Block\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nblank\tO\tblank\tO\nrepository\tO\trepository\tO\nand\tO\tand\tO\ncopy\tO\tcopy\tO\nits\tO\tits\tO\ncloning\tO\tcloning\tO\naddress\tO\taddress\tO\ngit@github.com\tB-Code_Block\tgit@github.com\tB-Code_Block\n:USER/REPO.git\tI-Code_Block\t:USER/REPO.git\tI-Code_Block\n.\tO\t.\tO\n\t\nChange\tO\tChange\tO\nremote\tO\tremote\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\nclone\tO\tclone\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\njust\tO\tjust\tO\ncopied\tO\tcopied\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\nremote\tI-Code_Block\tremote\tI-Code_Block\nset-url\tI-Code_Block\tset-url\tI-Code_Block\norigin\tI-Code_Block\torigin\tI-Code_Block\ngit@github.com\tI-Code_Block\tgit@github.com\tI-Code_Block\n:USER/REPO.git\tI-Code_Block\t:USER/REPO.git\tI-Code_Block\n.\tO\t.\tO\n\t\nPush\tO\tPush\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\nclone\tO\tclone\tO\nto\tO\tto\tO\nGitHub\tB-Website\tGitHub\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\npush\tI-Code_Block\tpush\tI-Code_Block\n-u\tI-Code_Block\t-u\tI-Code_Block\norigin\tI-Code_Block\torigin\tI-Code_Block\nmaster\tI-Code_Block\tmaster\tI-Code_Block\n.\tO\t.\tO\n\t\nInstall\tO\tInstall\tO\ndependencies\tO\tdependencies\tO\nnpm\tB-Code_Block\tnpm\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nand\tO\tand\tO\nstart\tO\tstart\tO\nit\tO\tit\tO\nnpm\tB-Code_Block\tnpm\tB-Code_Block\nstart\tI-Code_Block\tstart\tI-Code_Block\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndone\tO\tdone\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nclean\tO\tclean\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nslides\tO\tslides\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_2450\tI-Code_Block\tGR_2450\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nfind\tO\tfind\tO\nyour\tO\tyour\tO\npresentation\tO\tpresentation\tO\nin\tO\tin\tO\nprepared\tB-Code_Block\tprepared\tB-Code_Block\nfolder\tO\tfolder\tO\nwith\tO\twith\tO\nonly\tO\tonly\tO\nneeded\tO\tneeded\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nrun\tO\trun\tO\nnpm\tB-Code_Block\tnpm\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\narchive\tI-Code_Block\tarchive\tI-Code_Block\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\narchive.zip\tB-File_Name\tarchive.zip\tB-Code_Block\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nmore\tO\tmore\tO\n!\tO\t!\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\npublish\tO\tpublish\tO\nyour\tO\tyour\tO\npresentation\tO\tpresentation\tO\nonline\tO\tonline\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_2451\tI-Code_Block\tGR_2451\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nslides\tO\tslides\tO\npublished\tO\tpublished\tO\nto\tO\tto\tO\nhttp://USER.github.io/REPO/\tB-Code_Block\thttp://USER.github.io/REPO/\tB-Code_Block\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\nExamples\tO\tExamples\tO\n\t\nInhuman\tO\tInhuman\tO\nUI\tO\tUI\tO\n\t\nMy\tO\tMy\tO\nVanilla\tB-Version\tVanilla\tO\nCSS\tB-Language\tCSS\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nin\tO\tin\tO\nIoT\tO\tIoT\tO\n\t\nEnough\tO\tEnough\tO\nBricks\tO\tBricks\tO\n\t\nBrowser\tB-Application\tBrowser\tO\nSupport\tO\tSupport\tO\n\t\nLatest\tO\tLatest\tO\nstable\tO\tstable\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nChrome\tB-Application\tChrome\tO\n,\tO\t,\tO\nInternet\tB-Application\tInternet\tO\nExplorer\tI-Application\tExplorer\tO\n,\tO\t,\tO\nFirefox\tB-Application\tFirefox\tO\n,\tO\t,\tO\nOpera\tB-Application\tOpera\tO\nand\tO\tand\tO\nSafari\tB-Application\tSafari\tO\nare\tO\tare\tO\nsupported\tO\tsupported\tO\n.\tO\t.\tO\n\t\nContributing\tO\tContributing\tO\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nalways\tO\talways\tO\nwelcome\tO\twelcome\tO\nto\tO\tto\tO\ncontribute\tO\tcontribute\tO\n.\tO\t.\tO\n\t\nFork\tO\tFork\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nas\tO\tas\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nfile\tO\tfile\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nidea\tO\tidea\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nRead\tO\tRead\tO\ncontributing\tO\tcontributing\tO\nrules\tO\trules\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nMain\tO\tMain\tO\ncontributors\tO\tcontributors\tO\nin\tO\tin\tO\nhistorical\tO\thistorical\tO\norder\tO\torder\tO\n:\tO\t:\tO\npepelsbey\tB-User_Name\tpepelsbey\tO\n,\tO\t,\tO\njahson\tB-User_Name\tjahson\tO\n,\tO\t,\tO\nmiripiruni\tB-User_Name\tmiripiruni\tO\n,\tO\t,\tO\nkizu\tB-User_Name\tkizu\tO\n,\tO\t,\tO\nartpolikarpov\tB-User_Name\tartpolikarpov\tO\n,\tO\t,\tO\ntonyganch\tB-User_Name\ttonyganch\tO\n,\tO\t,\tO\nzloylos\tB-User_Name\tzloylos\tO\n.\tO\t.\tO\n\t\nLicensed\tO\tLicensed\tO\nunder\tO\tunder\tO\nMIT\tB-Licence\tMIT\tO\nLicense\tI-Licence\tLicense\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndemigor/lex.db\tO\tdemigor/lex.db\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/demigor/lex.db/issues/27\tO\thttps://github.com/demigor/lex.db/issues/27\tO\n\t\nFixed\tO\tFixed\tO\nin\tO\tin\tO\n1.2.3\tB-Version\t1.2.3\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nMy\tO\tMy\tO\nbad\tO\tbad\tO\n,\tO\t,\tO\noccasionally\tO\toccasionally\tO\ncommitted\tO\tcommitted\tO\nexperimental\tO\texperimental\tO\npart\tO\tpart\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nharshnarang8/AcaConnectFour\tO\tharshnarang8/AcaConnectFour\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/harshnarang8/AcaConnectFour/issues/5\tO\thttps://github.com/harshnarang8/AcaConnectFour/issues/5\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nAI\tO\tAI\tO\n.\tO\t.\tO\n\t\nprocessv2\tB-Version\tprocessv2\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ntree\tB-Data_Structure\ttree\tO\nimplementation\tO\timplementation\tO\nneeded\tO\tneeded\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nfibasile/programmingspritz\tO\tfibasile/programmingspritz\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/fibasile/programmingspritz\tO\thttps://github.com/fibasile/programmingspritz\tO\n\t\nprogrammingspritz\tO\tprogrammingspritz\tO\n\t\nCorso\tO\tCorso\tO\ndi\tO\tdi\tO\nprogrammazione\tO\tprogrammazione\tO\nPython\tB-Language\tPython\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/25\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/25\tO\n\t\n✅\tO\t✅\tO\n-\tO\t-\tO\nThe\tO\tThe\tO\nlatest\tO\tlatest\tO\n1.0\tB-Version\t1.0\tO\nbranch\tO\tbranch\tO\nis\tO\tis\tO\nreleased\tO\treleased\tO\nas\tO\tas\tO\nversion\tO\tversion\tO\n1.3.0\tB-Version\t1.3.0\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API\tO\thttps://github.com/rpcope1/Hantek6022API\tO\n\t\nHantek6022API\tB-Library\tHantek6022API\tO\n(\tO\t(\tO\nVersion\tO\tVersion\tO\n0.0.2\tB-Version\t0.0.2\tO\n)\tO\t)\tO\n\t\nHantek\tB-Library\tHantek\tO\n6022BE\tI-Library\t6022BE\tO\nPython\tI-Library\tPython\tO\nAPI\tI-Library\tAPI\tO\nfor\tO\tfor\tO\nWindows\tB-Operating_System\tWindows\tO\nand\tO\tand\tO\nLinux\tB-Operating_System\tLinux\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nAPI\tB-Library\tAPI\tO\nfor\tO\tfor\tO\nPython\tB-Language\tPython\tO\nvia\tO\tvia\tO\nctypes\tO\tctypes\tO\nfor\tO\tfor\tO\nHantek\tB-Organization\tHantek\tO\n's\tO\t's\tO\nSDK\tB-Application\tSDK\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nultra-cheap\tO\tultra-cheap\tO\n,\tO\t,\tO\nreasonably\tO\treasonably\tO\nusable\tO\tusable\tO\n(\tO\t(\tO\nand\tO\tand\tO\nhackable\tO\thackable\tO\n)\tO\t)\tO\n6022BE\tB-Device\t6022BE\tO\nDSO\tI-Device\tDSO\tO\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlibusb\tB-Library\tlibusb\tO\nimplementation\tO\timplementation\tO\nvia\tO\tvia\tO\nlibusb1\tB-Library\tlibusb1\tO\nfor\tO\tfor\tO\nLinux\tB-Operating_System\tLinux\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ntired\tO\ttired\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsilly\tO\tsilly\tO\nChinese\tO\tChinese\tO\nsoftware\tO\tsoftware\tO\nthat\tO\tthat\tO\ncame\tO\tcame\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nDSO\tB-Device\tDSO\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nan\tO\tan\tO\nAPI\tB-Library\tAPI\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nthrough\tO\tthrough\tO\nPython\tB-Language\tPython\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nscope\tO\tscope\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccessed\tO\taccessed\tO\nby\tO\tby\tO\ninstantiating\tO\tinstantiating\tO\nan\tO\tan\tO\noscilloscope\tO\toscilloscope\tO\nobject\tO\tobject\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nscopeid\tO\tscopeid\tO\n(\tO\t(\tO\nalways\tO\talways\tO\n0\tO\t0\tO\nfor\tO\tfor\tO\none\tO\tone\tO\nscope\tO\tscope\tO\nattached\tO\tattached\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThings\tO\tThings\tO\nlike\tO\tlike\tO\nvoltage\tO\tvoltage\tO\ndivisions\tO\tdivisions\tO\nand\tO\tand\tO\nsampling\tO\tsampling\tO\nrates\tO\trates\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nI\tO\tI\tO\nfinish\tO\tfinish\tO\ndeveloping\tO\tdeveloping\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwill\tO\twill\tO\ninclude\tO\tinclude\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nmethod\tO\tmethod\tO\nhas\tO\thas\tO\nsome\tO\tsome\tO\ndocumentation\tO\tdocumentation\tO\nas\tO\tas\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\ncurrently\tO\tcurrently\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhopefully\tO\thopefully\tO\nvariable\tO\tvariable\tO\nnames\tO\tnames\tO\nare\tO\tare\tO\nclear\tO\tclear\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nsome\tO\tsome\tO\nidea\tO\tidea\tO\nwhat\tO\twhat\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nprovided\tO\tprovided\tO\nDLLs\tO\tDLLs\tO\nthat\tO\tthat\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nbelong\tO\tbelong\tO\nto\tO\tto\tO\nHantek\tB-Organization\tHantek\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nare\tO\tare\tO\nprovided\tO\tprovided\tO\nsimply\tO\tsimply\tO\nfor\tO\tfor\tO\nease\tO\tease\tO\nof\tO\tof\tO\naccess\tO\taccess\tO\nand\tO\tand\tO\nare\tO\tare\tO\nprobably\tO\tprobably\tO\nNOT\tO\tNOT\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nGPL\tB-Licence\tGPL\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nNeat\tO\tNeat\tO\nthings\tO\tthings\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\n\t\nWhile\tO\tWhile\tO\nthis\tO\tthis\tO\nscope\tO\tscope\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nquite\tO\tquite\tO\nas\tO\tas\tO\npoweful\tO\tpoweful\tO\nas\tO\tas\tO\nyour\tO\tyour\tO\nmany-thousand\tO\tmany-thousand\tO\ndollar\tO\tdollar\tO\nTektronix\tB-Device\tTektronix\tO\nor\tO\tor\tO\neven\tO\teven\tO\nyour\tO\tyour\tO\nrun\tO\trun\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmill\tO\tmill\tO\nRigol\tB-Device\tRigol\tO\n1102E\tI-Device\t1102E\tO\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nprogramming\tO\tprogramming\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncapable\tO\tcapable\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\ninteresting\tO\tinteresting\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nUser\tO\tUser\tO\n-johoe\tB-User_Name\t-johoe\tO\non\tO\ton\tO\nreddit\tB-Website\treddit\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nlibrary\tO\tlibrary\tO\nand\tO\tand\tO\nscope\tO\tscope\tO\nto\tO\tto\tO\nlaunch\tO\tlaunch\tO\na\tO\ta\tO\nsuccessful\tO\tsuccessful\tO\nside-channel\tO\tside-channel\tO\nattack\tO\tattack\tO\non\tO\ton\tO\nhis\tO\this\tO\nTREZOR\tB-Device\tTREZOR\tO\nbitcoin\tI-Device\tbitcoin\tO\ndevice\tO\tdevice\tO\n,\tO\t,\tO\nand\tO\tand\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\n's\tO\t's\tO\nprivate\tO\tprivate\tO\nkeys\tO\tkeys\tO\n;\tO\t;\tO\nyes\tO\tyes\tO\nside-channel\tO\tside-channel\tO\nattacks\tO\tattacks\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\nfor\tO\tfor\tO\nNSA\tB-Organization\tNSA\tO\nspooks\tO\tspooks\tO\nand\tO\tand\tO\ncrusty\tO\tcrusty\tO\nacademics\tO\tacademics\tO\nanymore\tO\tanymore\tO\n,\tO\t,\tO\neven\tO\teven\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nhome\tO\thome\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ninexpensive\tO\tinexpensive\tO\nUSB\tB-Device\tUSB\tO\nscope\tO\tscope\tO\n.\tO\t.\tO\n\t\n:)\tO\t:)\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nexamples\tO\texamples\tO\nor\tO\tor\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\nthis\tO\tthis\tO\nlibrary\tO\tlibrary\tO\nused\tO\tused\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nexamples\tO\texamples\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwith\tO\twith\tO\nLinux\tB-Operating_System\tLinux\tO\nsupport\tO\tsupport\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\non\tO\ton\tO\nLinux\tB-Operating_System\tLinux\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nalso\tO\talso\tO\nin\tO\tin\tO\nluck\tO\tluck\tO\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\n've\tO\t've\tO\nprovided\tO\tprovided\tO\nsome\tO\tsome\tO\nreverse\tO\treverse\tO\nengineered\tO\tengineered\tO\nbinding\tO\tbinding\tO\nfor\tO\tfor\tO\nlibusb\tB-Library\tlibusb\tO\nto\tO\tto\tO\noperate\tO\toperate\tO\nthis\tO\tthis\tO\nlittle\tO\tlittle\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nfirst\tO\tfirst\tO\nadd\tO\tadd\tO\n60-hantek-6022-usb.rules\tB-File_Name\t60-hantek-6022-usb.rules\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nudev\tB-Application\tudev\tO\nrules\tO\trules\tO\n,\tO\t,\tO\nvia\tO\tvia\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_147568\tI-Code_Block\tGR_147568\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAfter\tO\tAfter\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ndone\tO\tdone\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nshould\tO\tshould\tO\nautomatically\tO\tautomatically\tO\ncome\tO\tcome\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\npermissions\tO\tpermissions\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\naccessed\tO\taccessed\tO\nwithout\tO\twithout\tO\na\tO\ta\tO\nroot\tO\troot\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nthe\tO\tthe\tO\ncustom\tO\tcustom\tO\nfirmware\tO\tfirmware\tO\n.\tO\t.\tO\n\t\nInstall\tO\tInstall\tO\nsdcc\tB-Application\tsdcc\tB-Code_Block\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nrun\tO\trun\tO\nmake\tB-Code_Block\tmake\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\nHantekFirmware/custom\tB-Code_Block\tHantekFirmware/custom\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_147569\tI-Code_Block\tGR_147569\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\nplugged\tO\tplugged\tO\nin\tO\tin\tO\n,\tO\t,\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nexample_linux_flashfirmware.py\tB-File_Name\texample_linux_flashfirmware.py\tO\nexample\tO\texample\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_147570\tI-Code_Block\tGR_147570\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\nbootstrap\tO\tbootstrap\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nprograms\tO\tprograms\tO\n,\tO\t,\tO\nor\tO\tor\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nchannel\tO\tchannel\tO\n1\tO\t1\tO\nscope\tO\tscope\tO\ntrace\tO\ttrace\tO\nvia\tO\tvia\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_147571\tI-Code_Block\tGR_147571\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTODO\tO\tTODO\tO\n\t\nClean\tO\tClean\tO\nup\tO\tup\tO\nlibrary\tO\tlibrary\tO\n,\tO\t,\tO\napply\tO\tapply\tO\ngood\tO\tgood\tO\nformatting\tO\tformatting\tO\n.\tO\t.\tO\n\t\nClean\tO\tClean\tO\nup\tO\tup\tO\nunit\tO\tunit\tO\ntests\tO\ttests\tO\n.\tO\t.\tO\n\t\nAdd\tO\tAdd\tO\nmore\tO\tmore\tO\nexamples\tO\texamples\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nexcellent\tO\texcellent\tO\nultimate\tO\tultimate\tO\ngoal\tO\tgoal\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nplay\tO\tplay\tO\nnice\tO\tnice\tO\nwith\tO\twith\tO\ncheap\tO\tcheap\tO\nARM\tB-Device\tARM\tO\nSBCs\tI-Device\tSBCs\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nRaspberry\tB-Device\tRaspberry\tO\nPi\tI-Device\tPi\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nas\tO\tas\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nand\tO\tand\tO\ndirty\tO\tdirty\tO\nDAQ\tO\tDAQ\tO\nfor\tO\tfor\tO\nmany\tO\tmany\tO\ninteresting\tO\tinteresting\tO\nsystems\tO\tsystems\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nadditional\tO\tadditional\tO\n(\tO\t(\tO\ninteresting\tO\tinteresting\tO\n)\tO\t)\tO\ndetails\tO\tdetails\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ninquisitive\tO\tinquisitive\tO\nreader\tO\treader\tO\nshould\tO\tshould\tO\nread\tO\tread\tO\n:\tO\t:\tO\nhttp://www.eevblog.com/forum/testgear/hantek-6022be-20mhz-usb-dso/\tO\thttp://www.eevblog.com/forum/testgear/hantek-6022be-20mhz-usb-dso/\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\ncontributing\tO\tcontributing\tO\nand\tO\tand\tO\nupdating\tO\tupdating\tO\nthis\tO\tthis\tO\nrepo\tO\trepo\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nglad\tO\tglad\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nhelp\tO\thelp\tO\nmaintaining\tO\tmaintaining\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\naccept\tO\taccept\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/11\tO\thttps://github.com/contributte/logging/issues/11\tO\n\t\nAdd\tO\tAdd\tO\neasy\tO\teasy\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndisable\tO\tdisable\tO\nSentry\tB-Application\tSentry\tO\nlogging\tO\tlogging\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/11\tO\thttps://github.com/contributte/logging/issues/11\tO\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nn't\tO\tn't\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nnot\tO\tnot\tO\nregister\tO\tregister\tO\nthe\tO\tthe\tO\nSentryLogger\tB-Application\tSentryLogger\tO\nat\tO\tat\tO\nall\tO\tall\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/8\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/8\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\nyesterday\tO\tyesterday\tO\nI\tO\tI\tO\ncompiled\tO\tcompiled\tO\nsuccessfully\tO\tsuccessfully\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nHello\tO\tHello\tO\nAR\tO\tAR\tO\nUE4\tB-Application\tUE4\tO\n\"\tO\t\"\tO\ndemo\tO\tdemo\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nget\tO\tget\tO\nalways\tO\talways\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nS7\tB-Device\tS7\tO\nEdge\tB-Version\tEdge\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nARCore\tB-Application\tARCore\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nsupported\tO\tsupported\tO\non\tO\ton\tO\nthis\tO\tthis\tO\ndevice\tO\tdevice\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nunknown\tO\tunknown\tO\nerror\tO\terror\tO\n\"\tO\t\"\tO\n\t\nThe\tO\tThe\tO\nS7\tB-Device\tS7\tO\nis\tO\tis\tO\nlisted\tO\tlisted\tO\nas\tO\tas\tO\na\tO\ta\tO\nsupported\tO\tsupported\tO\ndevice\tO\tdevice\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAndreas\tB-User_Name\tAndreas\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmadison-kerndt/off\tO\tmadison-kerndt/off\tO\n-on-guard-synesthesia\tO\t-on-guard-synesthesia\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/26\tO\thttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/26\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/12\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/12\tO\n\t\n\t\nCoverage\tO\tCoverage\tO\nremained\tO\tremained\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nat\tO\tat\tO\n87.081\tO\t87.081\tO\n%\tO\t%\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\n4c670e9a64ea5f2a7b5f1e0b92943ce2deebbaeb\tO\t4c670e9a64ea5f2a7b5f1e0b92943ce2deebbaeb\tO\non\tO\ton\tO\nupgrade-dependencies\tO\tupgrade-dependencies\tO\ninto\tO\tinto\tO\n6505c73ce95a039e28bdb3bd5580341b25da44d1\tO\t6505c73ce95a039e28bdb3bd5580341b25da44d1\tO\non\tO\ton\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nOpenPrograms/MiscPrograms\tO\tOpenPrograms/MiscPrograms\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/OpenPrograms/MiscPrograms/issues/18\tO\thttps://github.com/OpenPrograms/MiscPrograms/issues/18\tO\n\t\nMy\tO\tMy\tO\ngoal\tO\tgoal\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/5\tO\thttps://github.com/numen31337/AKVideoImageView/issues/5\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nimplemented\tO\timplemented\tO\nthe\tO\tthe\tO\nfeature\tO\tfeature\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nalshore/book_wishlist\tO\talshore/book_wishlist\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/alshore/book_wishlist\tO\thttps://github.com/alshore/book_wishlist\tO\n\t\nBook\tO\tBook\tO\nWishlist\tO\tWishlist\tO\n\t\nWith\tO\tWith\tO\nthis\tO\tthis\tO\nprogram\tO\tprogram\tO\na\tO\ta\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nmanage\tO\tmanage\tO\ntheir\tO\ttheir\tO\nbook\tO\tbook\tO\nwishlist\tO\twishlist\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nvarious\tO\tvarious\tO\nbooks\tO\tbooks\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nThe\tO\tThe\tO\nprogram\tO\tprogram\tO\nsaves\tO\tsaves\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nbooks\tO\tbooks\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwishlist\tO\twishlist\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nbooks\tO\tbooks\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nmarked\tO\tmarked\tO\nas\tO\tas\tO\nread\tO\tread\tO\nin\tO\tin\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\ndata\tO\tdata\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nMajor\tO\tMajor\tO\nfeatures\tO\tfeatures\tO\n\t\nAdd\tO\tAdd\tO\na\tO\ta\tO\nbook\tO\tbook\tO\nto\tO\tto\tO\na\tO\ta\tO\nwishlist\tO\twishlist\tO\n\t\nRemove\tO\tRemove\tO\na\tO\ta\tO\nbook\tO\tbook\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nwishlist\tO\twishlist\tO\n\t\nSearch\tO\tSearch\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nbook\tO\tbook\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nwishlist\tO\twishlist\tO\n\t\nMark\tO\tMark\tO\nbooks\tO\tbooks\tO\nas\tO\tas\tO\nread\tO\tread\tO\n\t\nRate\tO\tRate\tO\nbooks\tO\tbooks\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nread\tO\tread\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nStarkMike/Lab3\tO\tStarkMike/Lab3\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/StarkMike/Lab3/issues/2\tO\thttps://github.com/StarkMike/Lab3/issues/2\tO\n\t\nadded\tO\tadded\tO\nhtml\tB-File_Type\thtml\tO\nfile\tO\tfile\tO\nbase\tO\tbase\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/36\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/36\tO\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nremoved\tO\tremoved\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndevelop\tO\tdevelop\tO\nbranch\tO\tbranch\tO\n,\tO\t,\tO\nso\tO\tso\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nresolved\tO\tresolved\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nrelease\tO\trelease\tO\nto\tO\tto\tO\nmaster\tO\tmaster\tO\n:)\tO\t:)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nfiahfy/scroll\tO\tfiahfy/scroll\tO\n-top\tO\t-top\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/fiahfy/scroll-top\tO\thttps://github.com/fiahfy/scroll-top\tO\n\t\nScroll\tO\tScroll\tO\nTop\tO\tTop\tO\n\t\nScroll\tO\tScroll\tO\nto\tO\tto\tO\ntop\tO\ttop\tO\non\tO\ton\tO\nany\tO\tany\tO\npages\tO\tpages\tO\n.\tO\t.\tO\n\t\nVersion\tO\tVersion\tO\n\t\n1.0.0\tB-Version\t1.0.0\tO\n\t\nFeature\tO\tFeature\tO\n\t\nScroll\tO\tScroll\tO\nto\tO\tto\tO\ntop\tO\ttop\tO\non\tO\ton\tO\nany\tO\tany\tO\npages\tO\tpages\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nInstall\tO\tInstall\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_10265\tI-Code_Block\tGR_10265\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOpen\tO\tOpen\tO\nchrome://extensions/\tB-File_Name\tchrome://extensions/\tO\n.\tO\t.\tO\n\t\nDrag\tO\tDrag\tO\n&\tO\t&\tO\ndrop\tO\tdrop\tO\napp\tO\tapp\tB-Code_Block\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\n\t\nIf\tO\tIf\tO\nClick\tO\tClick\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\naction\tO\taction\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nscroll\tO\tscroll\tO\nto\tO\tto\tO\ntop\tO\ttop\tO\non\tO\ton\tO\ncurrent\tO\tcurrent\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/20\tO\thttps://github.com/koding/kd-atom/issues/20\tO\n\t\n\t\ndepends\tO\tdepends\tO\non\tO\ton\tO\n#19\tO\t#19\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/249\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/249\tO\n\t\ncordova.plugins.backgroundMode.configure\tB-Library_Function\tcordova.plugins.backgroundMode.configure\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndocumented\tO\tdocumented\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nreadme\tB-File_Name\treadme\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmaemori/accon\tO\tmaemori/accon\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/maemori/accon/issues/1\tO\thttps://github.com/maemori/accon/issues/1\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nubuntu-nginx-circus-postgresql\tO\tubuntu-nginx-circus-postgresql\tO\npage\tO\tpage\tO\nit\tO\tit\tO\nsays\tO\tsays\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_20433\tI-Code_Block\tGR_20433\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\nin\tO\tin\tO\nDockerfile\tB-File_Type\tDockerfile\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nDjango\tB-Library\tDjango\tO\ninstall\tO\tinstall\tO\nstep\tO\tstep\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nbreaks\tO\tbreaks\tO\nyour\tO\tyour\tO\nTaiga\tO\tTaiga\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njkraemer/redmine_airbrake\tO\tjkraemer/redmine_airbrake\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jkraemer/redmine_airbrake/issues/1\tO\thttps://github.com/jkraemer/redmine_airbrake/issues/1\tO\n\t\ngood\tO\tgood\tO\npoint\tO\tpoint\tO\n,\tO\t,\tO\nI\tO\tI\tO\namended\tO\tamended\tO\nthe\tO\tthe\tO\nREADME\tB-File_Name\tREADME\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/3\tO\thttps://github.com/op-jenkins/op-build/issues/3\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/8\tO\thttps://github.com/contributte/logging/issues/8\tO\n\t\nHi\tO\tHi\tO\n.\tO\t.\tO\n\t\n\\Throwable\tB-Library_Class\t\\Throwable\tO\ninterface\tO\tinterface\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nPHP\tB-Language\tPHP\tO\n5.6\tB-Version\t5.6\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nintroduced\tO\tintroduced\tO\nin\tO\tin\tO\nPHP7\tB-Language\tPHP7\tO\n.\tO\t.\tO\n\t\nExceptions\tB-Library_Class\tExceptions\tO\nare\tO\tare\tO\ntested\tO\ttested\tO\nagainst\tO\tagainst\tO\nhttps://github.com/contributte/logging/blob/master/src/Sentry/SentryLogger.php#L32\tO\thttps://github.com/contributte/logging/blob/master/src/Sentry/SentryLogger.php#L32\tO\n.\tO\t.\tO\n\t\nNo\tO\tNo\tO\nexceptions\tB-Library_Class\texceptions\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\nthis\tO\tthis\tO\ncondition\tO\tcondition\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab\tO\thttps://github.com/moxie-lean/ng-patternlab\tO\n\t\nLean\tO\tLean\tO\nPatterns\tO\tPatterns\tO\n\t\nAn\tO\tAn\tO\nAngularJS\tB-Library\tAngularJS\tO\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\nLean\tO\tLean\tO\npatterns\tO\tpatterns\tO\n.\tO\t.\tO\n\t\nGetting\tO\tGetting\tO\nStarted\tO\tStarted\tO\n\t\nThe\tO\tThe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nthis\tO\tthis\tO\npackage\tO\tpackage\tO\nis\tO\tis\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nnpm\tB-Application\tnpm\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nterminal\tB-Application\tterminal\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140897\tI-Code_Block\tGR_140897\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nConfiguration\tO\tConfiguration\tO\n\t\nThe\tO\tThe\tO\nmodule\tO\tmodule\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nload\tO\tload\tO\na\tO\ta\tO\nconfiguration\tO\tconfiguration\tO\nfile\tO\tfile\tO\nat\tO\tat\tO\nconfig/patterns.json\tB-File_Name\tconfig/patterns.json\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\ninside\tO\tinside\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthat\tO\tthat\tO\nfile\tO\tfile\tO\nexists\tO\texists\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nthe\tO\tthe\tO\ngeneration\tO\tgeneration\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncomponents\tO\tcomponents\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\ncomponents\tO\tcomponents\tO\nlisted\tO\tlisted\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nenabledComponents\tB-Library_Variable\tenabledComponents\tO\narray\tB-Data_Structure\tarray\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ngenerated\tO\tgenerated\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nall\tO\tall\tO\navailable\tO\tavailable\tO\ncomponents\tO\tcomponents\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ngenerated\tO\tgenerated\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nconfig\tB-File_Name\tconfig\tO\nfile\tO\tfile\tO\nmust\tO\tmust\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nstructure\tO\tstructure\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140898\tI-Code_Block\tGR_140898\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\ngeneratePatternsPage\tB-Code_Block\tgeneratePatternsPage\tO\n=\tI-Code_Block\t=\tO\ntrue\tI-Code_Block\ttrue\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nwill\tO\twill\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\npage\tO\tpage\tO\ncontaining\tO\tcontaining\tO\nall\tO\tall\tO\nenabled\tO\tenabled\tO\ncomponents\tO\tcomponents\tO\nwith\tO\twith\tO\ntheir\tO\ttheir\tO\ncorresponding\tO\tcorresponding\tO\nexamples\tO\texamples\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nexamples\tO\texamples\tO\nobject\tO\tobject\tO\nof\tO\tof\tO\neach\tO\teach\tO\nenabled\tO\tenabled\tO\ncomponent\tO\tcomponent\tO\nwill\tO\twill\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nexample\tO\texample\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npatterns\tO\tpatterns\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ncorresponds\tO\tcorresponds\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncomponent\tO\tcomponent\tO\ninstantiated\tO\tinstantiated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nspecified\tO\tspecified\tO\nname\tO\tname\tO\nand\tO\tand\tO\nparameters\tO\tparameters\tO\n.\tO\t.\tO\n\t\nBuild\tO\tBuild\tO\n\t\nTo\tO\tTo\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\ncomponents\tO\tcomponents\tO\njust\tO\tjust\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nln-patterns\tO\tln-patterns\tO\nbinary\tO\tbinary\tO\nto\tO\tto\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscripts\tO\tscripts\tO\nat\tO\tat\tO\nyour\tO\tyour\tO\npackage.json\tB-File_Name\tpackage.json\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nusing\tO\tusing\tO\npostinstall\tB-Library\tpostinstall\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140899\tI-Code_Block\tGR_140899\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\nnpm\tB-Code_Block\tnpm\tO\nrun\tI-Code_Block\trun\tO\n\"\tO\t\"\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140900\tI-Code_Block\tGR_140900\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsage\tO\tUsage\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nas\tO\tas\tO\na\tO\ta\tO\ndependency\tO\tdependency\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nAngularJS\tB-Library\tAngularJS\tO\napplication\tO\tapplication\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140901\tI-Code_Block\tGR_140901\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncomponents\tO\tcomponents\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\ninside\tO\tinside\tO\nyour\tO\tyour\tO\ntemplates\tO\ttemplates\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nexamples\tO\texamples\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140902\tI-Code_Block\tGR_140902\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNOTE\tO\tNOTE\tO\n:\tO\t:\tO\nTo\tO\tTo\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\npatterns\tO\tpatterns\tO\npage\tO\tpage\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\nsetup\tO\tsetup\tO\ntwo\tO\ttwo\tO\nAngularJS\tB-Library_Class\tAngularJS\tO\nroutes\tI-Library_Class\troutes\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntemplate\tO\ttemplate\tO\nkeys\tO\tkeys\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140903\tI-Code_Block\tGR_140903\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThose\tO\tThose\tO\nkeys\tO\tkeys\tO\nare\tO\tare\tO\nautomatically\tO\tautomatically\tO\nbound\tO\tbound\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ngererated\tO\tgererated\tO\nhtml\tB-Language\thtml\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nAngularJS\tB-Library\tAngularJS\tO\n$\tB-Library_Variable\t$\tO\ntemplateCache\tI-Library_Variable\ttemplateCache\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/127\tO\thttps://github.com/svenstaro/flamejam/issues/127\tO\n\t\nI\tO\tI\tO\nstarted\tO\tstarted\tO\na\tO\ta\tO\nteam\tO\tteam\tO\n(\tO\t(\tO\ndefault-ly\tO\tdefault-ly\tO\nnamed\tO\tnamed\tO\njosefnpat\tO\tjosefnpat\tO\n's\tO\t's\tO\nteam\tO\tteam\tO\n)\tO\t)\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nshowing\tO\tshowing\tO\none\tO\tone\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nmembers\tO\tmembers\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfounder\tO\tfounder\tO\n:\tO\t:\tO\n\t\nhttp://bacongamejam.org/jams/bacongamejam-07/team/825/\tO\thttp://bacongamejam.org/jams/bacongamejam-07/team/825/\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\nevents\tO\tevents\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nrecollection\tO\trecollection\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\ninvite\tO\tinvite\tO\nblarget\tB-User_Name\tblarget\tO\n\t\nI\tO\tI\tO\ninvite\tO\tinvite\tO\nwes\tB-User_Name\twes\tO\n\t\nI\tO\tI\tO\naccept\tO\taccept\tO\nwes\tB-User_Name\twes\tO\n\t\nI\tO\tI\tO\ninvite\tO\tinvite\tO\ndanger\tB-User_Name\tdanger\tO\n\t\nI\tO\tI\tO\naccept\tO\taccept\tO\ndanger\tB-User_Name\tdanger\tO\n\t\nI\tO\tI\tO\naccept\tO\taccept\tO\nwes\tB-User_Name\twes\tO\n\t\nI\tO\tI\tO\nnotice\tO\tnotice\tO\nthat\tO\tthat\tO\nwes\tO\twes\tO\nis\tO\tis\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nsettings\tO\tsettings\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\norder\tO\torder\tO\n:\tO\t:\tO\n\t\nWes\tO\tWes\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nperson\tO\tperson\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhe\tO\the\tO\nis\tO\tis\tO\nlisted\tO\tlisted\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfounder\tO\tfounder\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nrelated\tO\trelated\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\ninfo\tO\tinfo\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/16\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/16\tO\n\t\nRemove\tO\tRemove\tO\nthis\tO\tthis\tO\nsince\tO\tsince\tO\nthose\tO\tthose\tO\nsection\tO\tsection\tO\nwere\tO\twere\tO\nnamespaced\tO\tnamespaced\tO\nand\tO\tand\tO\nhad\tO\thad\tO\ndubious\tO\tdubious\tO\nexamples\tO\texamples\tO\n.\tO\t.\tO\n\t\nFixes\tO\tFixes\tO\n#7\tO\t#7\tO\nand\tO\tand\tO\n#15\tO\t#15\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/91\tO\thttps://github.com/svenstaro/flamejam/issues/91\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nadded\tO\tadded\tO\nit\tO\tit\tO\nbecause\tO\tbecause\tO\nmake\tB-Code_Block\tmake\tB-Code_Block\nsetup\tI-Code_Block\tsetup\tI-Code_Block\nhalts\tO\thalts\tO\nOOTB\tO\tOOTB\tO\nif\tO\tif\tO\nmysql_config\tB-File_Name\tmysql_config\tO\nis\tO\tis\tO\nmissing\tO\tmissing\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ntangentmonger/twitterknitter\tO\ttangentmonger/twitterknitter\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/tangentmonger/twitterknitter/issues/1\tO\thttps://github.com/tangentmonger/twitterknitter/issues/1\tO\n\t\nArduino\tB-Device\tArduino\tO\nMega\tI-Device\tMega\tO\nbuffer\tO\tbuffer\tO\nis\tO\tis\tO\n128\tO\t128\tO\nbytes\tO\tbytes\tO\n,\tO\t,\tO\nso\tO\tso\tO\npatterns\tO\tpatterns\tO\n>42\tO\t>42\tO\nrows\tO\trows\tO\nare\tO\tare\tO\nlikely\tO\tlikely\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncorrupted\tO\tcorrupted\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/17\tO\thttps://github.com/mapbox/tile-count/issues/17\tO\n\t\nThe\tO\tThe\tO\ncrash\tO\tcrash\tO\nis\tO\tis\tO\nin\tO\tin\tO\nkll::cdf()\tB-Library_Function\tkll::cdf()\tO\n,\tO\t,\tO\ngenerating\tO\tgenerating\tO\nthe\tO\tthe\tO\ncumulative\tO\tcumulative\tO\ndistribution\tO\tdistribution\tO\nfor\tO\tfor\tO\n(\tO\t(\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n)\tO\t)\tO\nzoom\tO\tzoom\tO\nlevel\tO\tlevel\tO\n12\tO\t12\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsmirarab/pasta\tO\tsmirarab/pasta\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/smirarab/pasta/issues/33\tO\thttps://github.com/smirarab/pasta/issues/33\tO\n\t\nThe\tO\tThe\tO\nDockerfile\tB-Application\tDockerfile\tO\nuses\tO\tuses\tO\nan\tO\tan\tO\nold\tO\told\tO\ncommit\tO\tcommit\tO\nof\tO\tof\tO\nsate-tools-linux\tO\tsate-tools-linux\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nhttps://github.com/smirarab/pasta/issues/30\tO\thttps://github.com/smirarab/pasta/issues/30\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntested\tO\ttested\tO\nit\tO\tit\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\ndataset\tO\tdataset\tO\nwith\tO\twith\tO\ndefault\tO\tdefault\tO\nsettings\tO\tsettings\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nsuccessfully\tO\tsuccessfully\tO\nran\tO\tran\tO\nto\tO\tto\tO\ncompletion\tO\tcompletion\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndhrrgn/codeigniter\tO\tdhrrgn/codeigniter\tO\n-uhoh\tO\t-uhoh\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/dhrrgn/codeigniter-uhoh/issues/3\tO\thttps://github.com/dhrrgn/codeigniter-uhoh/issues/3\tO\n\t\nI\tO\tI\tO\nsolved\tO\tsolved\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_23269\tI-Code_Block\tGR_23269\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nit\tO\tit\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nmade\tO\tmade\tO\nin\tO\tin\tO\napplication/core/MY_Exceptions.php\tB-File_Name\tapplication/core/MY_Exceptions.php\tB-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nerror_php_custom.php\tB-File_Name\terror_php_custom.php\tB-Code_Block\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nlooking\tO\tlooking\tO\nlocally\tO\tlocally\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsolved\tO\tsolved\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nreplacing\tO\treplacing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_23270\tI-Code_Block\tGR_23270\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwith\tO\twith\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_23271\tI-Code_Block\tGR_23271\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\ngives\tO\tgives\tO\nthe\tO\tthe\tO\nabsolute\tO\tabsolute\tO\npath\tO\tpath\tO\nfrom\tO\tfrom\tO\n/\tB-File_Name\t/\tB-Code_Block\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njkraemer/redmine_airbrake\tO\tjkraemer/redmine_airbrake\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jkraemer/redmine_airbrake/issues/2\tO\thttps://github.com/jkraemer/redmine_airbrake/issues/2\tO\n\t\nHi\tO\tHi\tO\n:)\tO\t:)\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nand\tO\tand\tO\ngrab\tO\tgrab\tO\nthe\tO\tthe\tO\nserialized\tO\tserialized\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\naka\tO\taka\tO\nproject\tO\tproject\tO\nkey\tO\tkey\tO\n)\tO\t)\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nAuthorization\tO\tAuthorization\tO\nheader\tO\theader\tO\nif\tO\tif\tO\nno\tO\tno\tO\nkey\tB-Variable_Name\tkey\tO\nparam\tO\tparam\tO\nis\tO\tis\tO\npresent\tO\tpresent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nabout\tO\tabout\tO\npotential\tO\tpotential\tO\nlength\tO\tlength\tO\nlimits\tO\tlimits\tO\nin\tO\tin\tO\nhttp\tO\thttp\tO\nheaders\tO\theaders\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nwe\tO\twe\tO\n're\tO\t're\tO\nlucky\tO\tlucky\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\ncontinue\tO\tcontinue\tO\nabusing\tO\tabusing\tO\nthis\tO\tthis\tO\nvalue\tO\tvalue\tO\nas\tO\tas\tO\nwe\tO\twe\tO\ndid\tO\tdid\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthat\tO\tthat\tO\nbut\tO\tbut\tO\nalmost\tO\talmost\tO\ncertainly\tO\tcertainly\tO\nnot\tO\tnot\tO\nbefore\tO\tbefore\tO\nChristmas\tO\tChristmas\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCheers\tO\tCheers\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nHackClub-SLHS/HackClub\tO\tHackClub-SLHS/HackClub\tO\n-Website\tO\t-Website\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/HackClub-SLHS/HackClub-Website/issues/3\tO\thttps://github.com/HackClub-SLHS/HackClub-Website/issues/3\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nciti-onboarding/mandacaruBack\tO\tciti-onboarding/mandacaruBack\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/citi-onboarding/mandacaruBack\tO\thttps://github.com/citi-onboarding/mandacaruBack\tO\n\t\n\"\tO\t\"\tO\n#\tO\t#\tO\nmandacaruBack\tO\tmandacaruBack\tO\n\"\tO\t\"\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/12\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/12\tO\n\t\nAdding\tO\tAdding\tO\nthe\tO\tthe\tO\nmissing\tO\tmissing\tO\ncn-china-1\tB-Code_Block\tcn-china-1\tB-Code_Block\nregion\tO\tregion\tO\nhttp://docs.aws.amazon.com/general/latest/gr/isolated_regions.html\tO\thttp://docs.aws.amazon.com/general/latest/gr/isolated_regions.html\tO\nfixes\tO\tfixes\tO\n:\tO\t:\tO\n#11\tO\t#11\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/57\tO\thttps://github.com/mapbox/tile-count/issues/57\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nMapbox\tB-Application\tMapbox\tO\nmbtiles\tB-File_Type\tmbtiles\tO\nunpacker\tO\tunpacker\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nrenames\tO\trenames\tO\nthe\tO\tthe\tO\nlayer\tO\tlayer\tO\ninconsistently\tO\tinconsistently\tO\n,\tO\t,\tO\nlosing\tO\tlosing\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\ntype\tO\ttype\tO\ndeclarations\tO\tdeclarations\tO\n)\tO\t)\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nfix\tO\tfix\tO\nplanned\tO\tplanned\tO\non\tO\ton\tO\nthat\tO\tthat\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nSorry\tO\tSorry\tO\n,\tO\t,\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\nin\tO\tin\tO\na\tO\ta\tO\nprivate\tO\tprivate\tO\nrepo\tO\trepo\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nbquarks/penguin\tO\tbquarks/penguin\tO\n-lite\tO\t-lite\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/bquarks/penguin-lite\tO\thttps://github.com/bquarks/penguin-lite\tO\n\t\nPenguin-lite\tB-Library\tPenguin-lite\tO\n\t\nPenguin-lite\tB-Library\tPenguin-lite\tO\nis\tO\tis\tO\na\tO\ta\tO\njust-css\tB-Language\tjust-css\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\npenguin\tB-Library\tpenguin\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\ncomponent\tO\tcomponent\tO\nscripting\tO\tscripting\tO\n,\tO\t,\tO\nuseful\tO\tuseful\tO\nfor\tO\tfor\tO\napp\tO\tapp\tO\nscaffolding\tO\tscaffolding\tO\n.\tO\t.\tO\n\t\nVisit\tO\tVisit\tO\npenguin\tB-Library\tpenguin\tO\nsite\tO\tsite\tO\nor\tO\tor\tO\nGitHub\tB-Website\tGitHub\tO\nfor\tO\tfor\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nMeteor\tB-Application\tMeteor\tO\npackage\tO\tpackage\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\nwe\tO\twe\tO\nmay\tO\tmay\tO\nconsider\tO\tconsider\tO\npublishing\tO\tpublishing\tO\npenguin-lite\tB-Library\tpenguin-lite\tO\nas\tO\tas\tO\nbower\tB-Application\tbower\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nJonathanPannell/ProgrammeTest_01_01\tO\tJonathanPannell/ProgrammeTest_01_01\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/JonathanPannell/ProgrammeTest_01_01\tO\thttps://github.com/JonathanPannell/ProgrammeTest_01_01\tO\n\t\nProgrammeTest_01_01\tO\tProgrammeTest_01_01\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nfirst\tO\tfirst\tO\ntest\tO\ttest\tO\nfor\tO\tfor\tO\nJPannell\tB-User_Name\tJPannell\tO\non\tO\ton\tO\nthis\tO\tthis\tO\naccount\tO\taccount\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2/issues/7\tO\thttps://github.com/thehyve/puppet-i2b2/issues/7\tO\n\t\nGot\tO\tGot\tO\nError\tO\tError\tO\nwhen\tO\twhen\tO\nrunning\tO\trunning\tO\nsystem\tO\tsystem\tO\ntest\tO\ttest\tO\n:\tO\t:\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/22\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/22\tO\n\t\nClosing\tO\tClosing\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nwas\tO\twas\tO\nremoved\tO\tremoved\tO\nin\tO\tin\tO\nversion\tO\tversion\tO\n3.0\tB-Version\t3.0\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nharshnarang8/AcaConnectFour\tO\tharshnarang8/AcaConnectFour\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/harshnarang8/AcaConnectFour\tO\thttps://github.com/harshnarang8/AcaConnectFour\tO\n\t\nAcaConnectFour\tO\tAcaConnectFour\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ntangentmonger/twitterknitter\tO\ttangentmonger/twitterknitter\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/tangentmonger/twitterknitter/issues/1\tO\thttps://github.com/tangentmonger/twitterknitter/issues/1\tO\n\t\nFixed\tO\tFixed\tO\non\tO\ton\tO\nbranch\tO\tbranch\tO\nchangeprotocol\tO\tchangeprotocol\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/39\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/39\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\npuzzled\tO\tpuzzled\tO\nby\tO\tby\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndid\tO\tdid\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\ndigging\tO\tdigging\tO\naround\tO\taround\tO\nand\tO\tand\tO\neventually\tO\teventually\tO\nfound\tO\tfound\tO\nhttps://github.com/natevw/fatfs/issues/27\tO\thttps://github.com/natevw/fatfs/issues/27\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/7\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/7\tO\n\t\nMerged\tO\tMerged\tO\nsucessfully\tO\tsucessfully\tO\ninto\tO\tinto\tO\nmaster\tO\tmaster\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nciti-onboarding/mandacaruBack\tO\tciti-onboarding/mandacaruBack\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/citi-onboarding/mandacaruBack/issues/2\tO\thttps://github.com/citi-onboarding/mandacaruBack/issues/2\tO\n\t\nAjeitar\tO\tAjeitar\tO\nendereço\tO\tendereço\tO\nde\tO\tde\tO\ne-mail\tO\te-mail\tO\npara\tO\tpara\tO\nenvio\tO\tenvio\tO\nna\tO\tna\tO\nsessão\tO\tsessão\tO\ncontato\tO\tcontato\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/85\tO\thttps://github.com/svenstaro/flamejam/issues/85\tO\n\t\nThe\tO\tThe\tO\napplication\tO\tapplication\tO\nis\tO\tis\tO\ncompletely\tO\tcompletely\tO\nuntested\tO\tuntested\tO\ncurrently\tO\tcurrently\tO\n.\tO\t.\tO\n\t\nTest\tO\tTest\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander/issues/13\tO\thttps://github.com/SivanMehta/wander/issues/13\tO\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\nextension\tO\textension\tO\nof\tO\tof\tO\n#12\tO\t#12\tO\n,\tO\t,\tO\nwe\tO\twe\tO\njust\tO\tjust\tO\ndeleted\tO\tdeleted\tO\nthe\tO\tthe\tO\nbuild.js.map\tB-Library_Class\tbuild.js.map\tB-Code_Block\nin\tO\tin\tO\npreparation\tO\tpreparation\tO\nfor\tO\tfor\tO\ndeployment\tO\tdeployment\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\nnot\tO\tnot\tO\neven\tO\teven\tO\nbuild\tO\tbuild\tO\nit\tO\tit\tO\nand\tO\tand\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndeploy\tO\tdeploy\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nquickly\tO\tquickly\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/7\tO\thttps://github.com/contributte/logging/issues/7\tO\n\t\nCool\tO\tCool\tO\n,\tO\t,\tO\nhave\tO\thave\tO\nfun\tO\tfun\tO\n.\tO\t.\tO\n\t\n;-)\tO\t;-)\tO\nFeel\tO\tFeel\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nPR\tO\tPR\tO\nor\tO\tor\tO\nopen\tO\topen\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nciti-onboarding/mandacaruBack\tO\tciti-onboarding/mandacaruBack\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/citi-onboarding/mandacaruBack/issues/2\tO\thttps://github.com/citi-onboarding/mandacaruBack/issues/2\tO\n\t\nfeito\tO\tfeito\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/1\tO\thttps://github.com/spacetelescope/specview/issues/1\tO\n\t\nGlue\tB-Application\tGlue\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\ndefine\tO\tdefine\tO\nadditional\tO\tadditional\tO\n�columns�\tB-Data_Structure\t�columns�\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nset\tO\tset\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nhold\tO\thold\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\na\tO\ta\tO\ncalculation\tO\tcalculation\tO\nand\tO\tand\tO\nkeep\tO\tkeep\tO\nit\tO\tit\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ndata\tO\tdata\tO\nsets\tO\tsets\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nhandy\tO\thandy\tO\n.\tO\t.\tO\n\t\nx[�result�]\tB-Variable_Name\tx[�result�]\tO\n=\tO\t=\tO\nx[�observed�]\tB-Variable_Name\tx[�observed�]\tO\n-\tO\t-\tO\nmodel\tB-Variable_Name\tmodel\tO\n#\tO\t#\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nx\tO\tx\tO\nis\tO\tis\tO\na\tO\ta\tO\nastropy\tB-Data_Structure\tastropy\tO\ntable\tI-Data_Structure\ttable\tO\n(\tO\t(\tO\nor\tO\tor\tO\nrecarray\tB-Data_Structure\trecarray\tO\n?\tO\t?\tO\n\t\nNot\tO\tNot\tO\nsure�\tO\tsure�\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRegarding\tO\tRegarding\tO\noperations\tO\toperations\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nsplot\tB-Library\tsplot\tO\nmanual\tO\tmanual\tO\n)\tO\t)\tO\n:\tO\t:\tO\nArithmetic\tO\tArithmetic\tO\n+\tO\t+\tO\n,\tO\t,\tO\n-,/,*\tO\t-,/,*\tO\nExponentiation\tO\tExponentiation\tO\n,\tO\t,\tO\nlog\tO\tlog\tO\n(\tO\t(\tO\nbase\tO\tbase\tO\ne\tO\te\tO\nand\tO\tand\tO\nw0\tO\tw0\tO\n)\tO\t)\tO\nSquare\tO\tSquare\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nconvenience0\tO\tconvenience0\tO\nAbsolute\tO\tAbsolute\tO\nvalue\tO\tvalue\tO\n\t\n-Harry\tB-User_Name\t-Harry\tO\n\t\nHenry\tB-User_Name\tHenry\tO\nC\tI-User_Name\tC\tO\n.\tI-User_Name\t.\tO\nFerguson\tI-User_Name\tFerguson\tO\nSpace\tB-Organization\tSpace\tO\nTelescope\tI-Organization\tTelescope\tO\nScience\tI-Organization\tScience\tO\nInstitute\tI-Organization\tInstitute\tO\nemail\tO\temail\tO\n:\tO\t:\tO\nferguson@stsci.edu\tO\tferguson@stsci.edu\tO\nphone\tO\tphone\tO\n:\tO\t:\tO\n(\tO\t(\tO\n410\tO\t410\tO\n)\tO\t)\tO\n338-5098\tO\t338-5098\tO\nfax\tO\tfax\tO\n:\tO\t:\tO\n(\tO\t(\tO\n410\tO\t410\tO\n)\tO\t)\tO\n338-4976\tO\t338-4976\tO\n\t\nOn\tO\tOn\tO\nFeb\tO\tFeb\tO\n17\tO\t17\tO\n,\tO\t,\tO\n2015\tO\t2015\tO\n,\tO\t,\tO\nat\tO\tat\tO\n3:37\tO\t3:37\tO\nPM\tO\tPM\tO\n,\tO\t,\tO\nperrygreenfield\tO\tperrygreenfield\tO\nnotifications@github.com\tO\tnotifications@github.com\tO\nwrote\tO\twrote\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nproposing\tO\tproposing\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nediting\tO\tediting\tO\ninterface\tO\tinterface\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nplace\tO\tplace\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nspectral\tO\tspectral\tO\nobject\tO\tobject\tO\npane\tO\tpane\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nviewer\tB-User_Interface_Element\tviewer\tO\nwindow\tI-User_Interface_Element\twindow\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npresumes\tO\tpresumes\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nexisting\tO\texisting\tO\nobjects\tO\tobjects\tO\nhave\tO\thave\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nname\tO\tname\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\nan\tO\tan\tO\nexpression\tO\texpression\tO\n(\tO\t(\tO\nand\tO\tand\tO\neven\tO\teven\tO\nif\tO\tif\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nobjects\tO\tobjects\tO\nare\tO\tare\tO\nsubsequently\tO\tsubsequently\tO\ndeleted\tO\tdeleted\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nviewer\tB-User_Interface_Element\tviewer\tO\npane\tI-User_Interface_Element\tpane\tO\n,\tO\t,\tO\nany\tO\tany\tO\nexpressions\tO\texpressions\tO\nthat\tO\tthat\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\nimply\tO\timply\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nobjects\tO\tobjects\tO\nstill\tO\tstill\tO\nare\tO\tare\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nreference\tO\treference\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\ngarbage\tO\tgarbage\tO\ncollected\tO\tcollected\tO\n)\tO\t)\tO\n[\tO\t[\tO\nthat\tO\tthat\tO\nmakes\tO\tmakes\tO\nme\tO\tme\tO\nwonder\tO\twonder\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\noptional\tO\toptional\tO\ndialog\tO\tdialog\tO\nfor\tO\tfor\tO\navailable\tO\tavailable\tO\nobjects\tO\tobjects\tO\nfor\tO\tfor\tO\nselection\tO\tselection\tO\nto\tO\tto\tO\nput\tO\tput\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nviewer\tB-User_Interface_Element\tviewer\tO\n]\tO\t]\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nenvision\tO\tenvision\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nviewer\tB-User_Interface_Element\tviewer\tO\npane\tI-User_Interface_Element\tpane\tO\nhas\tO\thas\tO\na\tO\ta\tO\nright\tO\tright\tO\nbutton\tB-User_Interface_Element\tbutton\tO\ndrop\tI-User_Interface_Element\tdrop\tO\ndown\tI-User_Interface_Element\tdown\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nadd\tO\tadd\tO\nexpression\tO\texpression\tO\n\"\tO\t\"\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nchosen\tO\tchosen\tO\n,\tO\t,\tO\nan\tO\tan\tO\nediting\tO\tediting\tO\nmode\tO\tmode\tO\nbegins\tO\tbegins\tO\n(\tO\t(\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ndialog\tO\tdialog\tO\n,\tO\t,\tO\nor\tO\tor\tO\njust\tO\tjust\tO\nediting\tO\tediting\tO\na\tO\ta\tO\nline\tO\tline\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npane\tB-User_Interface_Element\tpane\tO\nit\tO\tit\tO\nself--I\tO\tself--I\tO\n'\tO\t'\tO\nd\tO\td\tO\nargue\tO\targue\tO\nwhatever\tO\twhatever\tO\nis\tO\tis\tO\neasiest\tO\teasiest\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nnow\tO\tnow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nNormally\tO\tNormally\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nsay\tO\tsay\tO\nwe\tO\twe\tO\nallow\tO\tallow\tO\na\tO\ta\tO\nfree\tO\tfree\tO\nform\tO\tform\tO\nediting\tO\tediting\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nobject\tO\tobject\tO\nare\tO\tare\tO\nreferred\tO\treferred\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nexist\tO\texist\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nsyntax\tO\tsyntax\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\nis\tO\tis\tO\ninvalid\tO\tinvalid\tO\n,\tO\t,\tO\nor\tO\tor\tO\nuses\tO\tuses\tO\nfunctional\tO\tfunctional\tO\nforms\tO\tforms\tO\nnot\tO\tnot\tO\navailable\tO\tavailable\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nfound\tO\tfound\tO\n,\tO\t,\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nraised\tO\traised\tO\n.\tO\t.\tO\n\t\nPreferably\tO\tPreferably\tO\nthe\tO\tthe\tO\nexpression\tB-User_Interface_Element\texpression\tO\ntext\tI-User_Interface_Element\ttext\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nfurther\tO\tfurther\tO\nediting\tO\tediting\tO\n(\tO\t(\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nforce\tO\tforce\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nre-enter\tO\tre-enter\tO\nit\tO\tit\tO\nall\tO\tall\tO\nover\tO\tover\tO\nagain\tO\tagain\tO\n)\tO\t)\tO\nso\tO\tso\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\ncorrect\tO\tcorrect\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nmore\tO\tmore\tO\nfunctionality\tO\tfunctionality\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nsomeone\tO\tsomeone\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nexisting\tO\texisting\tO\nobjects\tO\tobjects\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsimplicity\tO\tsimplicity\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nsay\tO\tsay\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nname\tO\tname\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nsimpler\tO\tsimpler\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nimplementation\tO\timplementation\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nexpression\tO\texpression\tO\nitself\tO\titself\tO\nget\tO\tget\tO\na\tO\ta\tO\nname\tO\tname\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nreferred\tO\treferred\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\nso\tO\tso\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\nreferred\tO\treferred\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\nperhaps\tO\tperhaps\tO\nexpr1\tB-Variable_Name\texpr1\tO\n,\tO\t,\tO\nexpr2\tB-Variable_Name\texpr2\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\nis\tO\tis\tO\nan\tO\tan\tO\nassignment\tO\tassignment\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nidentifier\tO\tidentifier\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nbecomes\tO\tbecomes\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\ncreated\tO\tcreated\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\n\t\nscaled_spectrum\tB-Variable_Name\tscaled_spectrum\tO\n=\tO\t=\tO\n1.34\tO\t1.34\tO\n*\tO\t*\tO\nmyobs\tB-Variable_Name\tmyobs\tO\n\t\nPermitted\tO\tPermitted\tO\noperations\tO\toperations\tO\nand\tO\tand\tO\nfunctions\tO\tfunctions\tO\n\t\n+\tO\t+\tO\n,\tO\t,\tO\n-,/,*\tO\t-,/,*\tO\n(\tO\t(\tO\n**\tO\t**\tO\nonly\tO\tonly\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\nfor\tO\tfor\tO\nscalars\tB-Data_Structure\tscalars\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmaybe\tO\tmaybe\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n)\tO\t)\tO\nz(spectrum,\tB-Function_Name\tz(spectrum,\tO\nredshift)\tB-Library_Variable\tredshift)\tO\n\t\nImplementation\tO\tImplementation\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nof\tO\tof\tO\neval\tO\teval\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\nsolution\tO\tsolution\tO\n(\tO\t(\tO\nperhaps\tO\tperhaps\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\none\tO\tone\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nprovide\tO\tprovide\tO\nrestricted\tO\trestricted\tO\nusage\tO\tusage\tO\nfeatures\tO\tfeatures\tO\n(\tO\t(\tO\nThe\tO\tThe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\nfunction\tO\tfunction\tO\nthey\tO\tthey\tO\nwant\tO\twant\tO\n;\tO\t;\tO\nmaybe\tO\tmaybe\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\ngood\tO\tgood\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\ntool\tO\ttool\tO\nout\tO\tout\tO\nthere\tO\tthere\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nthing\tO\tthing\tO\nfor\tO\tfor\tO\nus\tO\tus\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\ninitial\tO\tinitial\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\neval\tO\teval\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nof\tO\tof\tO\nQuantities\tO\tQuantities\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nimplicitly\tO\timplicitly\tO\npermitted\tO\tpermitted\tO\nbut\tO\tbut\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nthought\tO\tthought\tO\n.\tO\t.\tO\n\t\n�\tO\t�\tO\nReply\tO\tReply\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nemail\tO\temail\tO\ndirectly\tO\tdirectly\tO\nor\tO\tor\tO\nview\tO\tview\tO\nit\tO\tit\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrgeo/rgeo\tO\trgeo/rgeo\tO\n-activerecord\tO\t-activerecord\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord\tO\thttps://github.com/rgeo/rgeo-activerecord\tO\n\t\nRGeo::ActiveRecord\tO\tRGeo::ActiveRecord\tO\n\t\nRGeo::ActiveRecord\tB-Library\tRGeo::ActiveRecord\tO\nis\tO\tis\tO\nan\tO\tan\tO\noptional\tO\toptional\tO\nRGeo\tB-Library\tRGeo\tO\nmodule\tO\tmodule\tO\nproviding\tO\tproviding\tO\nspatial\tO\tspatial\tO\nextensions\tO\textensions\tO\nfor\tO\tfor\tO\nActiveRecord\tB-Library\tActiveRecord\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\nhelpers\tO\thelpers\tO\nfor\tO\tfor\tO\nwriting\tO\twriting\tO\nspatial\tO\tspatial\tO\nActiveRecord\tB-Library\tActiveRecord\tO\nadapters\tO\tadapters\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nRGeo\tB-Library\tRGeo\tO\n.\tO\t.\tO\n\t\nSummary\tO\tSummary\tO\n\t\nRGeo\tB-Library\tRGeo\tO\nis\tO\tis\tO\na\tO\ta\tO\nkey\tO\tkey\tO\ncomponent\tO\tcomponent\tO\nfor\tO\tfor\tO\nwriting\tO\twriting\tO\nlocation-aware\tO\tlocation-aware\tO\napplications\tO\tapplications\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nRuby\tB-Language\tRuby\tO\nprogramming\tO\tprogramming\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nits\tO\tits\tO\ncore\tO\tcore\tO\nis\tO\tis\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nindustry\tO\tindustry\tO\nstandard\tO\tstandard\tO\nOGC\tO\tOGC\tO\nSimple\tO\tSimple\tO\nFeatures\tO\tFeatures\tO\nSpecification\tO\tSpecification\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nprovides\tO\tprovides\tO\ndata\tO\tdata\tO\nrepresentations\tO\trepresentations\tO\nof\tO\tof\tO\ngeometric\tO\tgeometric\tO\nobjects\tO\tobjects\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\npoints\tO\tpoints\tO\n,\tO\t,\tO\nlines\tO\tlines\tO\n,\tO\t,\tO\nand\tO\tand\tO\npolygons\tO\tpolygons\tO\n,\tO\t,\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\ngeometric\tO\tgeometric\tO\nanalysis\tO\tanalysis\tO\noperations\tO\toperations\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nREADME\tB-File_Name\tREADME\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nrgeo\tO\trgeo\tO\n\"\tO\t\"\tO\ngem\tO\tgem\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nRGeo::ActiveRecord\tB-Library\tRGeo::ActiveRecord\tO\nis\tO\tis\tO\nan\tO\tan\tO\noptional\tO\toptional\tO\nRGeo\tB-Library\tRGeo\tO\nadd-on\tO\tadd-on\tO\nmodule\tO\tmodule\tO\nproviding\tO\tproviding\tO\nspatial\tO\tspatial\tO\nextensions\tO\textensions\tO\nfor\tO\tfor\tO\nActiveRecord\tB-Library\tActiveRecord\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\nhelpers\tO\thelpers\tO\nfor\tO\tfor\tO\nwriting\tO\twriting\tO\nspatial\tO\tspatial\tO\nActiveRecord\tB-Library\tActiveRecord\tO\nadapters\tO\tadapters\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nRGeo\tB-Library\tRGeo\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nGemfile\tB-File_Name\tGemfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_133633\tI-Code_Block\tGR_133633\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nVersion\tO\tVersion\tO\n6.0\tB-Version\t6.0\tB-Code_Block\nsupports\tO\tsupports\tO\nActiveRecord\tB-Library\tActiveRecord\tO\n5.0\tB-Version\t5.0\tO\n,\tO\t,\tO\n5.1\tB-Version\t5.1\tO\n,\tO\t,\tO\nand\tO\tand\tO\n5.2\tB-Version\t5.2\tO\nwith\tO\twith\tO\nrgeo\tB-Library\trgeo\tB-Code_Block\n1.0\tB-Version\t1.0\tO\n.\tO\t.\tO\n\t\nVersion\tO\tVersion\tO\n5.0\tB-Version\t5.0\tB-Code_Block\nsupports\tO\tsupports\tO\nActiveRecord\tB-Library\tActiveRecord\tO\n5.0\tB-Version\t5.0\tO\nand\tO\tand\tO\n5.1\tB-Version\t5.1\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nrgeo\tB-Library\trgeo\tB-Code_Block\n0.6\tB-Version\t0.6\tO\n.\tO\t.\tO\n\t\nVersion\tO\tVersion\tO\n4.0\tB-Version\t4.0\tB-Code_Block\nsupports\tO\tsupports\tO\nActiveRecord\tB-Library\tActiveRecord\tO\n4.2\tB-Version\t4.2\tO\n.\tO\t.\tO\n\t\nVersion\tO\tVersion\tO\n1.1.0\tB-Version\t1.1.0\tB-Code_Block\nsupports\tO\tsupports\tO\nActiveRecord\tB-Library\tActiveRecord\tO\n4.0\tB-Version\t4.0\tO\nand\tO\tand\tO\n4.1\tB-Version\t4.1\tO\n\t\nVersion\tO\tVersion\tO\n0.6.0\tB-Version\t0.6.0\tB-Code_Block\nsupports\tO\tsupports\tO\nearlier\tO\tearlier\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nruby\tB-Language\truby\tO\nand\tO\tand\tO\nActiveRecord\tB-Library\tActiveRecord\tO\n:\tO\t:\tO\n\t\nRuby\tB-Language\tRuby\tO\n1.8.7\tB-Version\t1.8.7\tO\nor\tO\tor\tO\nlater\tO\tlater\tO\n\t\nActiveRecord\tB-Library\tActiveRecord\tO\n3.0.3\tB-Version\t3.0.3\tO\n-\tO\t-\tO\n3.2.x\tB-Version\t3.2.x\tO\n\t\nrgeo\tB-Library\trgeo\tO\n0.3.20\tB-Version\t0.3.20\tO\nor\tO\tor\tO\nlater\tO\tlater\tO\n\t\narel\tB-Library\tarel\tO\n2.0.6\tB-Version\t2.0.6\tO\nor\tO\tor\tO\nlater\tO\tlater\tO\n\t\nSpatial\tO\tSpatial\tO\nFactories\tO\tFactories\tO\nfor\tO\tfor\tO\nColumns\tB-Data_Structure\tColumns\tO\n\t\nrgeo_factory_generator\tB-Library_Function\trgeo_factory_generator\tB-Code_Block\nand\tO\tand\tO\nrelated\tO\trelated\tO\nmethods\tO\tmethods\tO\nwere\tO\twere\tO\nremoved\tO\tremoved\tO\nin\tO\tin\tO\nversion\tO\tversion\tO\n4.0\tB-Version\t4.0\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\ncolumn\tO\tcolumn\tO\ntypes\tO\ttypes\tO\nare\tO\tare\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\ntied\tO\ttied\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\ndatabase\tO\tdatabase\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nin\tO\tin\tO\nActiveRecord\tB-Library\tActiveRecord\tO\n4.2\tB-Version\t4.2\tO\n.\tO\t.\tO\n\t\nRegister\tO\tRegister\tO\nspatial\tO\tspatial\tO\nfactories\tO\tfactories\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSpatialFactoryStore\tB-Library_Class\tSpatialFactoryStore\tB-Code_Block\nsingleton\tO\tsingleton\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nspatial\tO\tspatial\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nActiveRecord\tB-Library\tActiveRecord\tO\nmodels\tO\tmodels\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nSpatialFactoryStore\tB-Library_Class\tSpatialFactoryStore\tB-Code_Block\nto\tO\tto\tO\nretrieve\tO\tretrieve\tO\na\tO\ta\tO\nfactory\tO\tfactory\tO\nmatching\tO\tmatching\tO\nthe\tO\tthe\tO\nproperties\tO\tproperties\tO\nof\tO\tof\tO\nits\tO\tits\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nspatial\tO\tspatial\tO\nfactory\tO\tfactory\tO\nfor\tO\tfor\tO\npoint\tO\tpoint\tO\ntypes\tO\ttypes\tO\n,\tO\t,\tO\nor\tO\tor\tO\nfor\tO\tfor\tO\ntypes\tO\ttypes\tO\nmatching\tO\tmatching\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nSRID\tO\tSRID\tO\n,\tO\t,\tO\nor\tO\tor\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nZ\tO\tZ\tO\ncoordinate\tO\tcoordinate\tO\n,\tO\t,\tO\nor\tO\tor\tO\nany\tO\tany\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nattributes\tO\tattributes\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsupported\tO\tsupported\tO\nkeys\tO\tkeys\tO\nwhen\tO\twhen\tO\nregistering\tO\tregistering\tO\na\tO\ta\tO\nspatial\tO\tspatial\tO\ntype\tO\ttype\tO\nare\tO\tare\tO\nlisted\tO\tlisted\tO\nhere\tO\there\tO\nwith\tO\twith\tO\ntheir\tO\ttheir\tO\ndefault\tO\tdefault\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nother\tO\tother\tO\nallowed\tO\tallowed\tO\nvalues\tO\tvalues\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_133634\tI-Code_Block\tGR_133634\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\nfactories\tO\tfactories\tO\nare\tO\tare\tO\nRGeo::Geographic.spherical_factory\tB-Library_Class\tRGeo::Geographic.spherical_factory\tB-Code_Block\nfor\tO\tfor\tO\ngeographic\tO\tgeographic\tO\ntypes\tO\ttypes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nRGeo::Cartesian.preferred_factory\tB-Library_Class\tRGeo::Cartesian.preferred_factory\tB-Code_Block\nfor\tO\tfor\tO\ngeometric\tO\tgeometric\tO\ntypes\tO\ttypes\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nsetup\tO\tsetup\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_133635\tI-Code_Block\tGR_133635\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRGeo\tB-Library\tRGeo\tO\nDependency\tO\tDependency\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nREADME\tB-File_Name\tREADME\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nrgeo\tB-Library\trgeo\tO\ngem\tO\tgem\tO\n,\tO\t,\tO\na\tO\ta\tO\ndependency\tO\tdependency\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nfurther\tO\tfurther\tO\ninstallation\tO\tinstallation\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nDevelopment\tO\tDevelopment\tO\nand\tO\tand\tO\nsupport\tO\tsupport\tO\n\t\nThis\tO\tThis\tO\nREADME\tB-File_Name\tREADME\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nRDoc\tO\tRDoc\tO\ndocumentation\tO\tdocumentation\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nat\tO\tat\tO\nhttp://rdoc.info/gems/rgeo-activerecord\tO\thttp://rdoc.info/gems/rgeo-activerecord\tO\n\t\nSource\tO\tSource\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nhosted\tO\thosted\tO\non\tO\ton\tO\nGithub\tB-Website\tGithub\tO\nat\tO\tat\tO\nhttp://github.com/rgeo/rgeo-activerecord\tO\thttp://github.com/rgeo/rgeo-activerecord\tO\n\t\nContributions\tO\tContributions\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\n.\tO\t.\tO\n\t\nFork\tO\tFork\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\non\tO\ton\tO\nGithub\tB-Website\tGithub\tO\n.\tO\t.\tO\n\t\nReport\tO\tReport\tO\nbugs\tO\tbugs\tO\non\tO\ton\tO\nGithub\tB-Website\tGithub\tO\nissues\tO\tissues\tO\nat\tO\tat\tO\nhttp://github.com/rgeo/rgeo-activerecord/issues\tO\thttp://github.com/rgeo/rgeo-activerecord/issues\tO\n\t\nSupport\tO\tSupport\tO\navailable\tO\tavailable\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nrgeo-users\tO\trgeo-users\tO\ngoogle\tO\tgoogle\tO\ngroup\tO\tgroup\tO\nat\tO\tat\tO\nhttp://groups.google.com/group/rgeo-users\tO\thttp://groups.google.com/group/rgeo-users\tO\n\t\nAcknowledgments\tO\tAcknowledgments\tO\n\t\nDaniel\tB-User_Name\tDaniel\tO\nAzuma\tI-User_Name\tAzuma\tO\ncreated\tO\tcreated\tO\nRGeo\tB-Library\tRGeo\tO\n.\tO\t.\tO\n\t\nTee\tB-User_Name\tTee\tO\nParham\tI-User_Name\tParham\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nmaintainer\tO\tmaintainer\tO\n.\tO\t.\tO\n\t\nDevelopment\tO\tDevelopment\tO\nis\tO\tis\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\n:\tO\t:\tO\n\t\nPirq\tB-Application\tPirq\tO\n\t\nNeighborland\tB-Application\tNeighborland\tO\n\t\nLicense\tO\tLicense\tO\n\t\nCopyright\tB-Licence\tCopyright\tO\n2015\tI-Licence\t2015\tO\nDaniel\tI-Licence\tDaniel\tO\nAzuma\tI-Licence\tAzuma\tO\n,\tI-Licence\t,\tO\nTee\tI-Licence\tTee\tO\nParham\tI-Licence\tParham\tO\n\t\nhttps://github.com/rgeo/rgeo-activerecord/blob/master/LICENSE.txt\tO\thttps://github.com/rgeo/rgeo-activerecord/blob/master/LICENSE.txt\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nbrandonscott/nabu\tO\tbrandonscott/nabu\tO\n-ios\tO\t-ios\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/brandonscott/nabu-ios\tO\thttps://github.com/brandonscott/nabu-ios\tO\n\t\nRazer\tB-Device\tRazer\tO\nNabu\tI-Device\tNabu\tO\nTutorials\tO\tTutorials\tO\nfor\tO\tfor\tO\niOS\tB-Operating_System\tiOS\tO\n\t\nThis\tO\tThis\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\na\tO\ta\tO\ncomprehensive\tO\tcomprehensive\tO\nsuite\tO\tsuite\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nsamples\tO\tsamples\tO\nthat\tO\tthat\tO\nshow\tO\tshow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nRazer\tB-Application\tRazer\tO\nNabu\tI-Application\tNabu\tO\nSDK\tI-Application\tSDK\tO\nin\tO\tin\tO\niOS\tB-Operating_System\tiOS\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nSDK\tB-Application\tSDK\tO\ndownload\tO\tdownload\tO\nlinks\tO\tlinks\tO\nand\tO\tand\tO\naccompanying\tO\taccompanying\tO\ntools/utilities\tO\ttools/utilities\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nNabu\tB-Website\tNabu\tO\nDeveloper\tI-Website\tDeveloper\tO\nPortal\tI-Website\tPortal\tO\n.\tO\t.\tO\n\t\n#\tO\t#\tO\n#License\tO\t#License\tO\nRazer\tB-Device\tRazer\tO\nis\tO\tis\tO\na\tO\ta\tO\ntrademark\tO\ttrademark\tO\nand/or\tO\tand/or\tO\na\tO\ta\tO\nregistered\tO\tregistered\tO\ntrademark\tO\ttrademark\tO\nof\tO\tof\tO\nRazer\tB-Organization\tRazer\tO\nUSA\tI-Organization\tUSA\tO\nLtd\tI-Organization\tLtd\tO\n.\tI-Organization\t.\tO\nAll\tO\tAll\tO\nother\tO\tother\tO\ntrademarks\tO\ttrademarks\tO\nare\tO\tare\tO\nproperty\tO\tproperty\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\nrespective\tO\trespective\tO\nowners\tO\towners\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/45\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/45\tO\n\t\nLGTM\tO\tLGTM\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncjcliffe/CubicSDR\tO\tcjcliffe/CubicSDR\tO\n-flatpak\tO\t-flatpak\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/cjcliffe/CubicSDR-flatpak\tO\thttps://github.com/cjcliffe/CubicSDR-flatpak\tO\n\t\nCubicSDR\tB-Application\tCubicSDR\tO\nflatpak\tI-Application\tflatpak\tO\nbuild\tO\tbuild\tO\n\t\nInstall\tO\tInstall\tO\nflatpak\tB-Application\tflatpak\tB-Code_Block\nand\tO\tand\tO\nflatpak-builder\tB-Application\tflatpak-builder\tB-Code_Block\nusing\tO\tusing\tO\ninstructions\tO\tinstructions\tO\nfrom\tO\tfrom\tO\nhttp://flatpak.org/getting.html\tO\thttp://flatpak.org/getting.html\tO\n\t\nInstall\tO\tInstall\tO\nGnome\tB-Application\tGnome\tO\nRuntime\tO\tRuntime\tO\nand\tO\tand\tO\nSdk\tB-Application\tSdk\tO\n,\tO\t,\tO\nif\tO\tif\tO\n'\tO\t'\tO\ninstall\tO\tinstall\tO\n'\tO\t'\tO\nsteps\tO\tsteps\tO\nfail\tO\tfail\tO\njust\tO\tjust\tO\nrun\tO\trun\tO\nagain\tO\tagain\tO\nto\tO\tto\tO\nretry/resume\tO\tretry/resume\tO\nuntil\tO\tuntil\tO\nthey\tO\tthey\tO\npass\tO\tpass\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_171080\tI-Code_Block\tGR_171080\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCommands\tO\tCommands\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_171081\tI-Code_Block\tGR_171081\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nInstalling\tO\tInstalling\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\n.flatpak\tB-File_Type\t.flatpak\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_171082\tI-Code_Block\tGR_171082\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRunning\tO\tRunning\tO\nthe\tO\tthe\tO\ninstalled\tO\tinstalled\tO\napp\tO\tapp\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_171083\tI-Code_Block\tGR_171083\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUn-installing\tO\tUn-installing\tO\n:\tO\t:\tO\n(\tO\t(\tO\nor\tO\tor\tO\nbefore\tO\tbefore\tO\nre-install\tO\tre-install\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_171084\tI-Code_Block\tGR_171084\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\nto\tO\tto\tO\n@digver\tB-User_Name\t@digver\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nintial\tO\tintial\tO\nflatpak\tB-Application\tflatpak\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njamstooks/django\tO\tjamstooks/django\tO\n-acme-challenge\tO\t-acme-challenge\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jamstooks/django-acme-challenge/issues/2\tO\thttps://github.com/jamstooks/django-acme-challenge/issues/2\tO\n\t\nHi\tO\tHi\tO\nman\tO\tman\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nuseful\tO\tuseful\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\nsubmit\tO\tsubmit\tO\ndjango-acme-challenge\tB-Library\tdjango-acme-challenge\tO\nto\tO\tto\tO\nPyPi\tB-Library\tPyPi\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\nautomate\tO\tautomate\tO\nour\tO\tour\tO\npython\tB-Language\tpython\tO\nrequirements\tO\trequirements\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\npip\tB-Code_Block\tpip\tO\nfreeze\tI-Code_Block\tfreeze\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsergio/ophmisu\tO\twsergio/ophmisu\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsergio/ophmisu\tO\thttps://github.com/wsergio/ophmisu\tO\n\t\nOphmisu\tB-Application\tOphmisu\tO\n\t\nOphmisu\tB-Application\tOphmisu\tO\nTrivia\tI-Application\tTrivia\tO\n-\tO\t-\tO\nrealtime\tO\trealtime\tO\n&\tO\t&\tO\nweb\tO\tweb\tO\nbased\tO\tbased\tO\n.\tO\t.\tO\n\t\nTechnologies\tO\tTechnologies\tO\n:\tO\t:\tO\n\t\nServer\tB-Application\tServer\tO\napp\tO\tapp\tO\n:\tO\t:\tO\nNode.js\tB-Application\tNode.js\tO\n,\tO\t,\tO\nMySQL\tB-Application\tMySQL\tO\n,\tO\t,\tO\nSocket.IO\tB-Library\tSocket.IO\tO\n;\tO\t;\tO\n\t\nClient\tB-Application\tClient\tO\napps\tO\tapps\tO\n:\tO\t:\tO\n\t\nWeb\tO\tWeb\tO\nclient\tB-Application\tclient\tO\n:\tO\t:\tO\nAngularJS\tB-Library\tAngularJS\tO\n,\tO\t,\tO\njQuery\tB-Library\tjQuery\tO\n,\tO\t,\tO\nBootstrap\tB-Library\tBootstrap\tO\n,\tO\t,\tO\nSocket.IO\tB-Library\tSocket.IO\tO\n,\tO\t,\tO\nPHP\tB-Language\tPHP\tO\n;\tO\t;\tO\n\t\nAndroid\tB-Operating_System\tAndroid\tO\nclient\tB-Application\tclient\tO\n:\tO\t:\tO\nAndroid\tB-Application\tAndroid\tO\nSDK\tI-Application\tSDK\tO\n(\tO\t(\tO\nJava\tB-Language\tJava\tO\n)\tO\t)\tO\n,\tO\t,\tO\nWeb\tO\tWeb\tO\nsockets\tO\tsockets\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nlive\tO\tlive\tO\ndemo\tO\tdemo\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nat\tO\tat\tO\nhttps://ophmisu.com/\tO\thttps://ophmisu.com/\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nClient\tB-Application\tClient\tO\nfor\tO\tfor\tO\nweb\tO\tweb\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_106938\tI-Code_Block\tGR_106938\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nServer\tB-Application\tServer\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_106939\tI-Code_Block\tGR_106939\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTodo\tO\tTodo\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nadd\tO\tadd\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nmultiple\tO\tmultiple\tO\nserver\tB-Application\tserver\tO\nnodes\tO\tnodes\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nadd\tO\tadd\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nmultiple\tO\tmultiple\tO\nrooms\tO\trooms\tO\n/\tO\t/\tO\nchannels\tO\tchannels\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nsupport\tO\tsupport\tO\nssl\tO\tssl\tO\n(\tO\t(\tO\nso\tO\tso\tO\nSPDY\tB-Algorithm\tSPDY\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nits\tO\tits\tO\njob\tO\tjob\tO\n)\tO\t)\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nsocket\tO\tsocket\tO\nmultiplexing\tO\tmultiplexing\tO\n(\tO\t(\tO\nallow\tO\tallow\tO\nboth\tO\tboth\tO\nhttp/https\tO\thttp/https\tO\n)\tO\t)\tO\n(\tO\t(\tO\ncheck\tO\tcheck\tO\nSockJS\tB-Application\tSockJS\tO\n)\tO\t)\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nredefine\tO\tredefine\tO\ndependencies\tO\tdependencies\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nfinish\tO\tfinish\tO\nbasic\tO\tbasic\tO\nuser\tO\tuser\tO\nregistration\tO\tregistration\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\ncreate\tO\tcreate\tO\nsimple\tO\tsimple\tO\nadministration\tO\tadministration\tO\ninterface\tO\tinterface\tO\nto\tO\tto\tO\nmanage\tO\tmanage\tO\nquestions\tO\tquestions\tO\n(\tO\t(\tO\nCRUD\tO\tCRUD\tO\n,\tO\t,\tO\nimport\tO\timport\tO\n)\tO\t)\tO\n(\tO\t(\tO\nAlexandru\tB-User_Name\tAlexandru\tO\nCanavoiu\tI-User_Name\tCanavoiu\tO\n)\tO\t)\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nadd\tO\tadd\tO\nuser\tO\tuser\tO\ngroups\tO\tgroups\tO\nand\tO\tand\tO\ndefine\tO\tdefine\tO\npermissions\tO\tpermissions\tO\nfor\tO\tfor\tO\nin-game\tO\tin-game\tO\ncommands\tO\tcommands\tO\n(\tO\t(\tO\nAlexandru\tB-User_Name\tAlexandru\tO\nCanavoiu\tI-User_Name\tCanavoiu\tO\n)\tO\t)\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nadd\tO\tadd\tO\n\"\tO\t\"\tO\nTop\tO\tTop\tO\nplayers\tO\tplayers\tO\n\"\tO\t\"\tO\nview\tO\tview\tO\n(\tO\t(\tO\nAlexandru\tB-User_Name\tAlexandru\tO\nCanavoiu\tI-User_Name\tCanavoiu\tO\n)\tO\t)\tO\n\t\n[\tO\t[\tO\n]\tO\t]\tO\nadd\tO\tadd\tO\n\"\tO\t\"\tO\nPlayer\tO\tPlayer\tO\nprofile\tO\tprofile\tO\n\"\tO\t\"\tO\nview\tO\tview\tO\n(\tO\t(\tO\nAlexandru\tB-User_Name\tAlexandru\tO\nCanavoiu\tI-User_Name\tCanavoiu\tO\n)\tO\t)\tO\n\t\nLicense\tO\tLicense\tO\n\t\nOphmisu\tB-Application\tOphmisu\tO\nTrivia\tI-Application\tTrivia\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nMIT\tB-Licence\tMIT\tO\nlicense\tI-Licence\tlicense\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nM1sterDonut/hello\tO\tM1sterDonut/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/M1sterDonut/hello-world/issues/1\tO\thttps://github.com/M1sterDonut/hello-world/issues/1\tO\n\t\n:1st_place_medal\tO\t:1st_place_medal\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/45\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/45\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\nhad\tO\thad\tO\nnever\tO\tnever\tO\nthat\tO\tthat\tO\nissue\tO\tissue\tO\nbefore\tO\tbefore\tO\nbecause\tO\tbecause\tO\nCoreLocation\tB-Library\tCoreLocation\tO\nwas\tO\twas\tO\navailable\tO\tavailable\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nline\tO\tline\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nplugin.xml\tB-File_Name\tplugin.xml\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nEmailComposer\tB-Application\tEmailComposer\tO\nplugin\tO\tplugin\tO\nis\tO\tis\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_58510\tI-Code_Block\tGR_58510\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nupcoming\tO\tupcoming\tO\nversion\tO\tversion\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\ngeolocation\tO\tgeolocation\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/57\tO\thttps://github.com/mapbox/tile-count/issues/57\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\ntile\tO\ttile\tO\nmaps\tO\tmaps\tO\nwith\tO\twith\tO\ntile-count\tB-Application\ttile-count\tO\nand\tO\tand\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nwell\tO\twell\tO\nuploading\tO\tuploading\tO\nit\tO\tit\tO\nto\tO\tto\tO\nmapbox\tB-Application\tmapbox\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nstyle\tO\tstyle\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nd'like\tO\td'like\tO\nto\tO\tto\tO\nstyle\tO\tstyle\tO\nthe\tO\tthe\tO\npoints\tO\tpoints\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndensity\tO\tdensity\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntroubles\tO\ttroubles\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nassumed\tO\tassumed\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nStyle\tO\tStyle\tO\nacross\tO\tacross\tO\ndata\tO\tdata\tO\nrange\tO\trange\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\na\tO\ta\tO\nnumber\tB-User_Interface_Element\tnumber\tO\nfield\tI-User_Interface_Element\tfield\tO\n.\tO\t.\tO\n\t\nDensity\tO\tDensity\tO\nis\tO\tis\tO\na\tO\ta\tO\nnumber\tB-User_Interface_Element\tnumber\tO\nfield\tI-User_Interface_Element\tfield\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\neditor\tB-Application\teditor\tO\nrefuses\tO\trefuses\tO\nthe\tO\tthe\tO\ndensity\tO\tdensity\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nProperty\tB-Error_Name\tProperty\tO\nmust\tI-Error_Name\tmust\tO\nbe\tI-Error_Name\tbe\tO\nof\tI-Error_Name\tof\tO\ntype\tI-Error_Name\ttype\tO\n:\tI-Error_Name\t:\tO\nnumber\tI-Error_Name\tnumber\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n!\tO\t!\tO\n\t\nRepository_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\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rgeo/rgeo-activerecord/issues/25\tO\thttps://github.com/rgeo/rgeo-activerecord/issues/25\tO\n\t\nUpdate\tO\tUpdate\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nalso\tO\talso\tO\nmodified\tO\tmodified\tO\nthe\tO\tthe\tO\nSpatialIndexDefinition\tB-Library_Class\tSpatialIndexDefinition\tO\nstruct\tO\tstruct\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\n'\tO\t'\tO\nusing\tO\tusing\tO\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\ntype\tO\ttype\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nwe\tO\twe\tO\nshould\tO\tshould\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nbranch\tO\tbranch\tO\nname\tO\tname\tO\n'\tO\t'\tO\n1.0\tB-Version\t1.0\tO\n'\tO\t'\tO\nor\tO\tor\tO\nupdate\tO\tupdate\tO\nit\tO\tit\tO\nto\tO\tto\tO\n'\tO\t'\tO\n1.1\tB-Version\t1.1\tO\n'\tO\t'\tO\nas\tO\tas\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nfork\tO\tfork\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprogdude/Flicks\tO\tprogdude/Flicks\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/progdude/Flicks/issues/3\tO\thttps://github.com/progdude/Flicks/issues/3\tO\n\t\n/cc\tO\t/cc\tO\n@codepathreview\tB-User_Name\t@codepathreview\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/25\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/25\tO\n\t\nLike\tO\tLike\tO\nLinux\tB-Operating_System\tLinux\tO\n's\tO\t's\tO\nsdaX\tB-Device\tsdaX\tO\n\t\nChange-Type\tO\tChange-Type\tO\n:\tO\t:\tO\nmajor\tO\tmajor\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucieSteiner/AMT_feature1\tO\tLucieSteiner/AMT_feature1\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucieSteiner/AMT_feature1/issues/5\tO\thttps://github.com/LucieSteiner/AMT_feature1/issues/5\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nenters\tO\tenters\tO\nwrong\tO\twrong\tO\ncredentials\tO\tcredentials\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nnew\tO\tnew\tO\naccount\tO\taccount\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nshould\tO\tshould\tO\nsee\tO\tsee\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tB-User_Interface_Element\tform\tO\n(\tO\t(\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nhe\tO\the\tO\nunderstands\tO\tunderstands\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nit\tO\tit\tO\nis\tO\tis\tO\nto\tO\tto\tO\nattach\tO\tattach\tO\na\tO\ta\tO\n(\tO\t(\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\n)\tO\t)\tO\nerror\tO\terror\tO\nmessage(s)\tO\tmessage(s)\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nservlet\tB-Library_Class\tservlet\tO\n(\tO\t(\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nsetAttribute\tB-Library_Function\tsetAttribute\tO\nmethod\tO\tmethod\tO\n)\tO\t)\tO\nand\tO\tand\tO\nto\tO\tto\tO\nretrieve\tO\tretrieve\tO\nthis\tO\tthis\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJSP\tB-Application\tJSP\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nMVC\tO\tMVC\tO\npattern\tO\tpattern\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\nare\tO\tare\tO\njust\tO\tjust\tO\na\tO\ta\tO\nform\tO\tform\tO\nof\tO\tof\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander/issues/7\tO\thttps://github.com/SivanMehta/wander/issues/7\tO\n\t\nSivan\tB-User_Name\tSivan\tO\n\t\nAdd\tO\tAdd\tO\nplaceholder\tO\tplaceholder\tO\nimage\tB-User_Interface_Element\timage\tO\nfor\tO\tfor\tO\nguides\tO\tguides\tO\nand\tO\tand\tO\ntourists\tO\ttourists\tO\n\t\nYeon\tB-User_Interface_Element\tYeon\tO\nSoo\tI-User_Interface_Element\tSoo\tO\n\t\ncentering\tO\tcentering\tO\nlogo\tB-User_Interface_Element\tlogo\tO\nand\tO\tand\tO\nremove\tO\tremove\tO\n\"\tO\t\"\tO\nWelcome\tO\tWelcome\tO\nto\tO\tto\tO\nWander\tO\tWander\tO\n!\tO\t!\tO\n\"\tO\t\"\tO\n\t\non\tO\ton\tO\nHomepage\tB-User_Interface_Element\tHomepage\tO\n\t\nuse\tO\tuse\tO\nimages\tB-User_Interface_Element\timages\tO\nfor\tO\tfor\tO\nlogos\tB-User_Interface_Element\tlogos\tO\nacross\tO\tacross\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nchange\tO\tchange\tO\nbackground\tO\tbackground\tO\nimage\tB-User_Interface_Element\timage\tO\non\tO\ton\tO\nlanding\tO\tlanding\tO\npage\tO\tpage\tO\n\t\ngeneral\tO\tgeneral\tO\naesthetics\tO\taesthetics\tO\n\t\nadd\tO\tadd\tO\npresentation\tO\tpresentation\tO\nimages\tB-User_Interface_Element\timages\tO\n\t\nGaury\tB-User_Name\tGaury\tO\n\t\nSprint\tO\tSprint\tO\nReport\tO\tReport\tO\n\t\nPresentation\tO\tPresentation\tO\nSlides\tO\tSlides\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/14\tO\thttps://github.com/rpcope1/Hantek6022API/issues/14\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntracing\tO\ttracing\tO\nthe\tO\tthe\tO\npins\tO\tpins\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nFX2LP\tB-Device\tFX2LP\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nyou\tO\tyou\tO\ntrace\tO\ttrace\tO\nwhere\tO\twhere\tO\nports\tO\tports\tO\nA\tO\tA\tO\n,\tO\t,\tO\nB\tO\tB\tO\n,\tO\t,\tO\nC\tO\tC\tO\n,\tO\t,\tO\nD\tO\tD\tO\nlead\tO\tlead\tO\nto\tO\tto\tO\n?\tO\t?\tO\n\t\nPort\tO\tPort\tO\nA\tO\tA\tO\n,\tO\t,\tO\nbit\tO\tbit\tO\n7\tO\t7\tO\nshould\tO\tshould\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsquarewave\tO\tsquarewave\tO\ngenerator\tO\tgenerator\tO\n.\tO\t.\tO\n\t\nPort\tO\tPort\tO\nC\tO\tC\tO\n,\tO\t,\tO\nbit\tO\tbit\tO\n0-1\tO\t0-1\tO\nshould\tO\tshould\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nLED\tB-Device\tLED\tO\n.\tO\t.\tO\n\t\nPort\tO\tPort\tO\nC\tO\tC\tO\n,\tO\t,\tO\nbit\tO\tbit\tO\n2-7\tO\t2-7\tO\nshould\tO\tshould\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nanalog\tO\tanalog\tO\nmultiplexers\tB-Device\tmultiplexers\tO\n.\tO\t.\tO\n\t\nPort\tO\tPort\tO\nB\tO\tB\tO\n,\tO\t,\tO\nD\tO\tD\tO\nshould\tO\tshould\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nADC\tB-Device\tADC\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ntriggering\tO\ttriggering\tO\nprobably\tO\tprobably\tO\nsome\tO\tsome\tO\nRDY\tB-Device\tRDY\tO\npin\tO\tpin\tO\nis\tO\tis\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nAre\tO\tAre\tO\nthe\tO\tthe\tO\nCTL\tB-Device\tCTL\tO\npins\tO\tpins\tO\nconnected\tO\tconnected\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nare\tO\tare\tO\nPort\tO\tPort\tO\nA\tO\tA\tO\n0-6\tO\t0-6\tO\nconnected\tO\tconnected\tO\nto\tO\tto\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/22\tO\thttps://github.com/rpcope1/Hantek6022API/issues/22\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\ni\tO\ti\tO\nmade\tO\tmade\tO\nsome\tO\tsome\tO\ninvestigation\tO\tinvestigation\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nsuggested\tO\tsuggested\tO\nand\tO\tand\tO\ni\tO\ti\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nstops\tO\tstops\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nbytes_written\tB-Code_Block\tbytes_written\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nself.device_handle.controlWrite(0x40,self.RW_FIRMWARE_REQUEST,packet.value,self.RW_FIRMWARE_INDEX,packet.data,timeout=timeout)\tI-Code_Block\tself.device_handle.controlWrite(0x40,self.RW_FIRMWARE_REQUEST,packet.value,self.RW_FIRMWARE_INDEX,packet.data,timeout=timeout)\tI-Code_Block\n\t\nhttps://github.com/rpcope1/Hantek6022API/blob/master/PyHT6022/LibUsbScope.py#L138\tO\thttps://github.com/rpcope1/Hantek6022API/blob/master/PyHT6022/LibUsbScope.py#L138\tO\n\t\nIt\tO\tIt\tO\nstayed\tO\tstayed\tO\nthere\tO\tthere\tO\nfor\tO\tfor\tO\nover\tO\tover\tO\ntwo\tO\ttwo\tO\nminutes\tO\tminutes\tO\nwithout\tO\twithout\tO\nresponding\tO\tresponding\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlaptop\tB-Device\tlaptop\tO\n(\tO\t(\tO\narch\tB-Operating_System\tarch\tO\nlinux\tI-Operating_System\tlinux\tO\ntoo\tO\ttoo\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\non\tO\ton\tO\nwindows\tB-Operating_System\twindows\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nconnected\tO\tconnected\tO\nit\tO\tit\tO\non\tO\ton\tO\na\tO\ta\tO\nusb2\tB-Device\tusb2\tO\nport\tO\tport\tO\non\tO\ton\tO\nboth\tO\tboth\tO\nPCs\tB-Device\tPCs\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nports\tO\tports\tO\nare\tO\tare\tO\nworking\tO\tworking\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\n,\tO\t,\tO\ni\tO\ti\tO\nfollowed\tO\tfollowed\tO\nthe\tO\tthe\tO\nreadme\tB-File_Name\treadme\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\ndid\tO\tdid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_1467\tI-Code_Block\tGR_1467\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\nagain\tO\tagain\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2/issues/5\tO\thttps://github.com/thehyve/puppet-i2b2/issues/5\tO\n\t\nWhile\tO\tWhile\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthe\tO\tthe\tO\nacceptance\tO\tacceptance\tO\ntest\tO\ttest\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nam1.thehyve.net\tB-Website\tam1.thehyve.net\tO\n,\tO\t,\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nresponse\tO\tresponse\tO\nfrom\tO\tfrom\tO\nAxis\tB-Application\tAxis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_25695\tI-Code_Block\tGR_25695\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOther\tO\tOther\tO\ni2b2\tB-Application\ti2b2\tO\ninstances\tO\tinstances\tO\n(\tO\t(\tO\nservices.i2b2.org\tB-Website\tservices.i2b2.org\tB-Code_Block\nand\tO\tand\tO\nour\tO\tour\tO\nown\tO\town\tO\npreliminary\tO\tpreliminary\tO\ninstallation\tO\tinstallation\tO\n)\tO\t)\tO\naccept\tO\taccept\tO\nthis\tO\tthis\tO\nrequest\tO\trequest\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_25696\tI-Code_Block\tGR_25696\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbeaker\tB-Application\tbeaker\tO\ninstance\tO\tinstance\tO\nwill\tO\twill\tO\naccept\tO\taccept\tO\napplication/xml\tB-Language\tapplication/xml\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_25697\tI-Code_Block\tGR_25697\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\ninvestigated\tO\tinvestigated\tO\nmuch\tO\tmuch\tO\nfurther\tO\tfurther\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\naxis\tB-Application\taxis\tO\nconfiguration\tO\tconfiguration\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nchanged\tO\tchanged\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nssl\tO\tssl\tB-Code_Block\nbranch\tO\tbranch\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_25698\tI-Code_Block\tGR_25698\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhereas\tO\twhereas\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_25699\tI-Code_Block\tGR_25699\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/33\tO\thttps://github.com/rpcope1/Hantek6022API/issues/33\tO\n\t\nUSBPollerThread\tB-Library_Class\tUSBPollerThread\tO\nmakes\tO\tmakes\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nnewer\tO\tnewer\tO\nlinux\tB-Operating_System\tlinux\tO\nversions\tO\tversions\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nwe\tO\twe\tO\ncall\tO\tcall\tO\npoll()\tB-Library_Function\tpoll()\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nsleeping\tO\tsleeping\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nprograms\tO\tprograms\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nfix\tO\tfix\tO\n#22\tO\t#22\tO\n\t\nSome\tO\tSome\tO\nfixes\tO\tfixes\tO\nfor\tO\tfor\tO\nPython\tB-Language\tPython\tO\n2\tB-Version\t2\tO\ncompatibility\tO\tcompatibility\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngigitux/vesuvianabot\tO\tgigitux/vesuvianabot\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/gigitux/vesuvianabot\tO\thttps://github.com/gigitux/vesuvianabot\tO\n\t\nROADMAP\tO\tROADMAP\tO\n\t\n1.0\tB-Version\t1.0\tO\n->\tO\t->\tO\nstupid\tO\tstupid\tO\nbot\tO\tbot\tO\nwith\tO\twith\tO\nhour\tO\thour\tO\n\t\n2.0\tB-Version\t2.0\tO\n->\tO\t->\tO\nsmart\tO\tsmart\tO\nbot\tO\tbot\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nELK24/hello\tO\tELK24/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ELK24/hello-world/issues/1\tO\thttps://github.com/ELK24/hello-world/issues/1\tO\n\t\nMaking\tO\tMaking\tO\na\tO\ta\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/34\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/34\tO\n\t\nConfirmed\tO\tConfirmed\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntests\tO\ttests\tO\npass\tO\tpass\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmixin\tB-Library_Class\tmixin\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nknown\tO\tknown\tO\nplugins\tO\tplugins\tO\n:\tO\t:\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nInput\tB-Application\tInput\tO\nS3\tI-Application\tS3\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nOutput\tB-Application\tOutput\tO\nS3\tI-Application\tS3\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nInput\tB-Application\tInput\tO\nsqs\tI-Application\tsqs\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nOutput\tB-Application\tOutput\tO\nsqs\tI-Application\tsqs\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nInput\tB-Application\tInput\tO\ncloud\tI-Application\tcloud\tO\nwatch\tI-Application\twatch\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nOutput\tB-Application\tOutput\tO\ncloud\tI-Application\tcloud\tO\nwatch\tI-Application\twatch\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nOutput\tB-Application\tOutput\tO\nsns\tI-Application\tsns\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ntimothypage/container\tO\ttimothypage/container\tO\n-info\tO\t-info\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/timothypage/container-info\tO\thttps://github.com/timothypage/container-info\tO\n\t\nbest\tO\tbest\tO\nused\tO\tused\tO\nwith\tO\twith\tO\ndocker\tB-Application\tdocker\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_4105\tI-Code_Block\tGR_4105\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nsee\tO\tsee\tO\na\tO\ta\tO\nweb\tO\tweb\tO\npage\tO\tpage\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ninfo\tO\tinfo\tO\n\t\nRequests\tO\tRequests\tO\nServed\tO\tServed\tO\n:\tO\t:\tO\n1\tO\t1\tO\n\t\nhostname\tO\thostname\tO\n:\tO\t:\tO\n10cab2c4c076\tO\t10cab2c4c076\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nluxflux/dotfiles\tO\tluxflux/dotfiles\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/luxflux/dotfiles/issues/1\tO\thttps://github.com/luxflux/dotfiles/issues/1\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nsuggest\tO\tsuggest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_3811\tI-Code_Block\tGR_3811\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_3812\tI-Code_Block\tGR_3812\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBecause\tO\tBecause\tO\notherwise\tO\totherwise\tO\n,\tO\t,\tO\nairline\tO\tairline\tO\n's\tO\t's\tO\npaste\tO\tpaste\tO\ndetection\tO\tdetection\tO\nis\tO\tis\tO\ndelayed\tO\tdelayed\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nhttps://github.com/bling/vim-airline/issues/219\tO\thttps://github.com/bling/vim-airline/issues/219\tO\nfor\tO\tfor\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ntangentmonger/twitterknitter\tO\ttangentmonger/twitterknitter\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/tangentmonger/twitterknitter\tO\thttps://github.com/tangentmonger/twitterknitter\tO\n\t\ntwitterknitter\tO\ttwitterknitter\tO\n\t\nTOG\tB-Organization\tTOG\tO\n's\tO\t's\tO\n70\tO\t70\tO\n's\tO\t's\tO\nknitting\tO\tknitting\tO\nmachine\tO\tmachine\tO\nknits\tO\tknits\tO\ntweets\tO\ttweets\tO\n.\tO\t.\tO\n\t\nTravis\tB-Application\tTravis\tO\nCI\tI-Application\tCI\tO\nstatus\tO\tstatus\tO\n:\tO\t:\tO\n!\tO\t!\tO\n\t\n[\tO\t[\tO\nTravis\tB-Application\tTravis\tO\nstatus\tO\tstatus\tO\n]\tO\t]\tO\n(\tO\t(\tO\nhttps://travis-ci.org/tangentmonger/twitterknitter.svg?branch=master\tO\thttps://travis-ci.org/tangentmonger/twitterknitter.svg?branch=master\tO\n\"\tO\t\"\tO\nTravis\tO\tTravis\tO\nstatus\tO\tstatus\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\n\t\nKnitting\tO\tKnitting\tO\nmachine\tO\tmachine\tO\n:\tO\t:\tO\nEmpisal\tB-Device\tEmpisal\tO\nKnitmaster\tI-Device\tKnitmaster\tO\n321\tB-Version\t321\tO\n\t\nExtra\tO\tExtra\tO\nhardware\tO\thardware\tO\n:\tO\t:\tO\ncontraption\tO\tcontraption\tO\nmade\tO\tmade\tO\nof\tO\tof\tO\n24\tO\t24\tO\nservos\tB-Device\tservos\tO\n,\tO\t,\tO\nlaser\tO\tlaser\tO\ncut\tO\tcut\tO\ndibblers\tB-Device\tdibblers\tO\n,\tO\t,\tO\nthree\tO\tthree\tO\nLEDs\tB-Device\tLEDs\tO\nand\tO\tand\tO\na\tO\ta\tO\nmicroswitch\tB-Device\tmicroswitch\tO\n.\tO\t.\tO\n\t\narduino/knitting.ino\tB-File_Name\tarduino/knitting.ino\tO\nruns\tO\truns\tO\non\tO\ton\tO\nan\tO\tan\tO\nArduino\tB-Device\tArduino\tO\nMega\tI-Device\tMega\tO\nand\tO\tand\tO\ncontrols\tO\tcontrols\tO\nthe\tO\tthe\tO\nknitting\tO\tknitting\tO\nmachine\tO\tmachine\tO\nhardware\tO\thardware\tO\n.\tO\t.\tO\n\t\npython/server.py\tB-File_Name\tpython/server.py\tO\nruns\tO\truns\tO\non\tO\ton\tO\na\tO\ta\tO\nlaptop\tB-Device\tlaptop\tO\nconnected\tO\tconnected\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nArduino\tB-Device\tArduino\tO\nvia\tO\tvia\tO\nUSB\tB-Device\tUSB\tO\n.\tO\t.\tO\n\t\nConverts\tO\tConverts\tO\ntweets\tO\ttweets\tO\nto\tO\tto\tO\nimages\tB-User_Interface_Element\timages\tO\nand\tO\tand\tO\nsends\tO\tsends\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nMega\tB-Device\tMega\tO\nvia\tO\tvia\tO\nUSB\tB-Device\tUSB\tO\n.\tO\t.\tO\n\t\nPython\tB-Language\tPython\tO\n3\tB-Version\t3\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnerab/TaskWarriorMail\tO\tnerab/TaskWarriorMail\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/nerab/TaskWarriorMail/issues/3\tO\thttps://github.com/nerab/TaskWarriorMail/issues/3\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nreleased\tO\treleased\tO\n0.0.5\tB-Version\t0.0.5\tO\nwhich\tO\twhich\tO\nalso\tO\talso\tO\nincludes\tO\tincludes\tO\na\tO\ta\tO\nsample\tO\tsample\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmfellner/webpack\tO\tmfellner/webpack\tO\n-sandboxed\tO\t-sandboxed\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mfellner/webpack-sandboxed/issues/4\tO\thttps://github.com/mfellner/webpack-sandboxed/issues/4\tO\n\t\n\t\nChanges\tO\tChanges\tO\nUnknown\tO\tUnknown\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\n1e5a89c53cec5912f51dbf8733b02a6ca008f951\tO\t1e5a89c53cec5912f51dbf8733b02a6ca008f951\tO\non\tO\ton\tO\nupgrade-deps\tO\tupgrade-deps\tO\ninto\tO\tinto\tO\n**\tO\t**\tO\non\tO\ton\tO\nmaster**\tO\tmaster**\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nForneus/programmering\tO\tForneus/programmering\tO\n-a-inlamningar\tO\t-a-inlamningar\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/Forneus/programmering-a-inlamningar/issues/9\tO\thttps://github.com/Forneus/programmering-a-inlamningar/issues/9\tO\n\t\nJag\tO\tJag\tO\nhar\tO\thar\tO\nfixat\tO\tfixat\tO\nproblemet\tO\tproblemet\tO\nmed\tO\tmed\tO\nlånga\tO\tlånga\tO\nhexadecimala\tO\thexadecimala\tO\nsträngar\tO\tsträngar\tO\noch\tO\toch\tO\ntestat\tO\ttestat\tO\nfram\tO\tfram\tO\nhur\tO\thur\tO\nnoter\tO\tnoter\tO\nkan\tO\tkan\tO\nskrivas\tO\tskrivas\tO\n.\tO\t.\tO\n\t\nKolla\tO\tKolla\tO\ndenna\tO\tdenna\tO\nskärmdump\tO\tskärmdump\tO\n\t\nHär\tO\tHär\tO\när\tO\tär\tO\nden\tO\tden\tO\nriktiga\tO\triktiga\tO\nsidan\tO\tsidan\tO\n\t\nOm\tO\tOm\tO\nden\tO\tden\tO\nser\tO\tser\tO\nhelt\tO\thelt\tO\ngalen\tO\tgalen\tO\nut\tO\tut\tO\n,\tO\t,\tO\nså\tO\tså\tO\nmåste\tO\tmåste\tO\ndu\tO\tdu\tO\ninstallera\tO\tinstallera\tO\nfonten\tO\tfonten\tO\nsom\tO\tsom\tO\njag\tO\tjag\tO\nlänkar\tO\tlänkar\tO\ntill\tO\ttill\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nOpenPrograms/MiscPrograms\tO\tOpenPrograms/MiscPrograms\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/OpenPrograms/MiscPrograms\tO\thttps://github.com/OpenPrograms/MiscPrograms\tO\n\t\nMiscPrograms\tO\tMiscPrograms\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nplace\tO\tplace\tO\nwhere\tO\twhere\tO\neveryone\tO\teveryone\tO\nmay\tO\tmay\tO\nput\tO\tput\tO\ntheir\tO\ttheir\tO\nOpenComputers\tB-Application\tOpenComputers\tO\nprograms\tO\tprograms\tO\n.\tO\t.\tO\n\t\n#\tO\t#\tO\n#Contributing\tO\t#Contributing\tO\n\t\nTo\tO\tTo\tO\nput\tO\tput\tO\nyour\tO\tyour\tO\nOpenComputers\tB-Application\tOpenComputers\tO\nprograms\tO\tprograms\tO\nonto\tO\tonto\tO\nthis\tO\tthis\tO\nrepository\tO\trepository\tO\n,\tO\t,\tO\nfork\tO\tfork\tO\nit\tO\tit\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfolder\tO\tfolder\tO\nnamed\tO\tnamed\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\n(\tO\t(\tO\nSo\tO\tSo\tO\nusing\tO\tusing\tO\nyour\tO\tyour\tO\nusername\tO\tusername\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nplace\tO\tplace\tO\nall\tO\tall\tO\nyour\tO\tyour\tO\nfiles\tO\tfiles\tO\ninto\tO\tinto\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nPull\tO\tPull\tO\nRequest\tO\tRequest\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nmerged\tO\tmerged\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nrepository\tO\trepository\tO\n.\tO\t.\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\ninappropriate\tO\tinappropriate\tO\ncontent\tO\tcontent\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nprograms\tO\tprograms\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\nOpenComputers\tB-Application\tOpenComputers\tO\nor\tO\tor\tO\nLua\tB-Language\tLua\tO\nrelated\tO\trelated\tO\nthings\tO\tthings\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSUSTC/sustech\tO\tSUSTC/sustech\tO\n-slides\tO\t-slides\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SUSTC/sustech-slides/issues/1\tO\thttps://github.com/SUSTC/sustech-slides/issues/1\tO\n\t\nIt\tO\tIt\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nlong\tO\tlong\tO\naway\tO\taway\tO\nfrom\tO\tfrom\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nslides\tB-File_Name\tslides\tO\ntex\tI-File_Name\ttex\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ncollaborator\tO\tcollaborator\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\n?\tO\t?\tO\n\t\n@ProfFan\tB-User_Name\t@ProfFan\tO\ncould\tO\tcould\tO\nyou\tO\tyou\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nreview\tO\treview\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nPR\tO\tPR\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/9\tO\thttps://github.com/zeroepoch/plotbitrate/issues/9\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\npatch\tO\tpatch\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\ncoloring\tO\tcoloring\tO\npink\tO\tpink\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nUnknown\tO\tUnknown\tO\nframetype\tO\tframetype\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreat\tO\tgreat\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nmuch\tO\tmuch\tO\ntime\tO\ttime\tO\nthese\tO\tthese\tO\ndays\tO\tdays\tO\nto\tO\tto\tO\nmaintain\tO\tmaintain\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\nmyself\tO\tmyself\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/8\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/8\tO\n\t\nAwesome\tO\tAwesome\tO\n,\tO\t,\tO\n@dwagner2301\tB-User_Name\t@dwagner2301\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nhelp\tO\thelp\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nmore\tO\tmore\tO\ntest\tO\ttest\tO\nto\tO\tto\tO\nit\tO\tit\tO\n,\tO\t,\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ncredits\tO\tcredits\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njamstooks/django\tO\tjamstooks/django\tO\n-acme-challenge\tO\t-acme-challenge\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/jamstooks/django-acme-challenge/issues/3\tO\thttps://github.com/jamstooks/django-acme-challenge/issues/3\tO\n\t\nJust\tO\tJust\tO\nto\tO\tto\tO\nfollow\tO\tfollow\tO\nup\tO\tup\tO\n:\tO\t:\tO\n\t\nWhat\tO\tWhat\tO\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\nmean\tO\tmean\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\nelse\tO\telse\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nacme\tO\tacme\tO\nchallenge\tO\tchallenge\tO\nchanges\tO\tchanges\tO\nits\tO\tits\tO\nstring\tO\tstring\tO\neverytime\tO\teverytime\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\ncertificate\tO\tcertificate\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nthan\tO\tthan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nwhenever\tO\twhenever\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstill\tO\tstill\tO\nhard-code\tO\thard-code\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nsettings.py\tB-File_Name\tsettings.py\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nprefer\tO\tprefer\tO\nthat\tO\tthat\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nclose\tO\tclose\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nas\tO\tas\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nplease\tO\tplease\tO\nfeel\tO\tfeel\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\nreopen\tO\treopen\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nmore\tO\tmore\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nHackClub-SLHS/HackClub\tO\tHackClub-SLHS/HackClub\tO\n-Website\tO\t-Website\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/HackClub-SLHS/HackClub-Website\tO\thttps://github.com/HackClub-SLHS/HackClub-Website\tO\n\t\nHackClub-Website\tO\tHackClub-Website\tO\n\t\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\n,\tO\t,\tO\nsign\tO\tsign\tO\nin\tO\tin\tO\nto\tO\tto\tO\nserver\tB-Device\tserver\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_197690\tI-Code_Block\tGR_197690\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/1\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/1\tO\n\t\n27003020141115\tO\t27003020141115\tO\n,\tO\t,\tO\n1\tO\t1\tO\n,\tO\t,\tO\n1\tO\t1\tO\n,\tO\t,\tO\n900\tO\t900\tO\n,\tO\t,\tO\n30\tO\t30\tO\n,\tO\t,\tO\n30\tO\t30\tO\nBoth\tO\tBoth\tO\nApp\tO\tApp\tO\n.\tO\t.\tO\n\t\nSt\tO\tSt\tO\n(\tO\t(\tO\n27\tO\t27\tO\n)\tO\t)\tO\n&\tO\t&\tO\nArkansas\tO\tArkansas\tO\nst\tO\tst\tO\n(\tO\t(\tO\n30\tO\t30\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nassigned\tO\tassigned\tO\nsame\tO\tsame\tO\nTeam\tO\tTeam\tO\nID\tO\tID\tO\n(\tO\t(\tO\n30\tO\t30\tO\n)\tO\t)\tO\n,\tO\t,\tO\nScoring\tO\tScoring\tO\nis\tO\tis\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthe\tO\tthe\tO\nSPOT\tO\tSPOT\tO\nis\tO\tis\tO\ninverted\tO\tinverted\tO\nhalf\tO\thalf\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/41\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/41\tO\n\t\nExtend\tO\tExtend\tO\nGeneric\tO\tGeneric\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\nenable\tO\tenable\tO\nvendors\tO\tvendors\tO\nto\tO\tto\tO\npost\tO\tpost\tO\ntheir\tO\ttheir\tO\npolicies\tO\tpolicies\tO\nand\tO\tand\tO\nconventions\tO\tconventions\tO\nin\tO\tin\tO\na\tO\ta\tO\nsubdirectory\tO\tsubdirectory\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrpcope1/Hantek6022API\tO\trpcope1/Hantek6022API\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rpcope1/Hantek6022API/issues/40\tO\thttps://github.com/rpcope1/Hantek6022API/issues/40\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nHW\tO\tHW\tO\ntrigger\tO\ttrigger\tO\nis\tO\tis\tO\neven\tO\teven\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nprinciple\tO\tprinciple\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nnon-stop\tO\tnon-stop\tO\nsampling\tO\tsampling\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nlosing\tO\tlosing\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nOpenHantek\tB-Application\tOpenHantek\tO\nsupports\tO\tsupports\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmakeen-project/makeen\tO\tmakeen-project/makeen\tO\n-hapi\tO\t-hapi\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/viczam/makeen-hapi/issues/51\tO\thttps://github.com/viczam/makeen-hapi/issues/51\tO\n\t\nWS\tO\tWS\tO\nJira\tB-Application\tJira\tO\nTicket\tO\tTicket\tO\n:\tO\t:\tO\nACP-48\tO\tACP-48\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/10\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/10\tO\n\t\nYeah\tO\tYeah\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nstandardize\tO\tstandardize\tO\n.\tO\t.\tO\n\t\nOpenShift\tB-Application\tOpenShift\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nwriting\tO\twriting\tO\nand\tO\tand\tO\nreading\tO\treading\tO\nthose\tO\tthose\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwe\tO\twe\tO\n're\tO\t're\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\nswap\tO\tswap\tO\nto\tO\tto\tO\nread\tO\tread\tO\nwhatever\tO\twhatever\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nbecomes\tO\tbecomes\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nprojectatomic/ContainerApplicationGenericLabels\tO\tprojectatomic/ContainerApplicationGenericLabels\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/77\tO\thttps://github.com/projectatomic/ContainerApplicationGenericLabels/issues/77\tO\n\t\n@aweiteka\tB-User_Name\t@aweiteka\tO\nPTAL\tO\tPTAL\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmmalleske/js_adventure\tO\tmmalleske/js_adventure\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/mmalleske/js_adventure\tO\thttps://github.com/mmalleske/js_adventure\tO\n\t\nChoose\tO\tChoose\tO\nYour\tO\tYour\tO\nOwn\tO\tOwn\tO\nAdventure\tO\tAdventure\tO\n!\tO\t!\tO\n\t\nRules\tO\tRules\tO\n\t\nGoal\tO\tGoal\tO\n:\tO\t:\tO\nUsing\tO\tUsing\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\ndata\tO\tdata\tO\ntypes\tO\ttypes\tO\n,\tO\t,\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\noperators\tO\toperators\tO\n,\tO\t,\tO\nconditional\tO\tconditional\tO\nblocks\tO\tblocks\tO\n,\tO\t,\tO\nand\tO\tand\tO\naccepting\tO\taccepting\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ntext-based\tO\ttext-based\tO\ngame\tO\tgame\tO\nthat\tO\tthat\tO\nallows\tO\tallows\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\narrive\tO\tarrive\tO\nat\tO\tat\tO\ndifferent\tO\tdifferent\tO\n\"\tO\t\"\tO\ndestinations\tO\tdestinations\tO\n\"\tO\t\"\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ninputs\tO\tinputs\tO\nthey\tO\tthey\tO\ntype\tO\ttype\tO\n\t\nAny\tO\tAny\tO\npath\tO\tpath\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ngoes\tO\tgoes\tO\ndown\tO\tdown\tO\nmust\tO\tmust\tO\nask\tO\task\tO\nthem\tO\tthem\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n3\tO\t3\tO\nquestions\tO\tquestions\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nbefore\tO\tbefore\tO\nthey\tO\tthey\tO\narrive\tO\tarrive\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ndestination\tO\tdestination\tO\n\t\nThere\tO\tThere\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nminimum\tO\tminimum\tO\nof\tO\tof\tO\n7\tO\t7\tO\ntotal\tO\ttotal\tO\ndestinations\tO\tdestinations\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncould\tO\tcould\tO\narrive\tO\tarrive\tO\nat\tO\tat\tO\nbased\tO\tbased\tO\non\tO\ton\tO\ntheir\tO\ttheir\tO\nresponses\tO\tresponses\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nFor\tO\tFor\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n3\tO\t3\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nof\tO\tof\tO\nthe\tO\tthe\tO\nquestions\tO\tquestions\tO\nasked\tO\tasked\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n2\tO\t2\tO\npossible\tO\tpossible\tO\nuser\tO\tuser\tO\nresponses\tO\tresponses\tO\n\t\nAt\tO\tAt\tO\nleast\tO\tleast\tO\n1\tO\t1\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nof\tO\tof\tO\nthe\tO\tthe\tO\nquestions\tO\tquestions\tO\nmust\tO\tmust\tO\naccept\tO\taccept\tO\na\tO\ta\tO\nrange\tO\trange\tO\nof\tO\tof\tO\nnumber\tO\tnumber\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nany\tO\tany\tO\nnumber\tO\tnumber\tO\nbetween\tO\tbetween\tO\n1-100\tO\t1-100\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nHint\tO\tHint\tO\n:\tO\t:\tO\nTo\tO\tTo\tO\nhelp\tO\thelp\tO\nvisualize\tO\tvisualize\tO\nyour\tO\tyour\tO\nadventure\tO\tadventure\tO\ngame\tO\tgame\tO\n,\tO\t,\tO\ndraw\tO\tdraw\tO\nout\tO\tout\tO\na\tO\ta\tO\nflow\tO\tflow\tO\nchart\tB-User_Interface_Element\tchart\tO\nof\tO\tof\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\npossible\tO\tpossible\tO\nscenarios\tO\tscenarios\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\nFlow\tO\tFlow\tO\nChart\tB-User_Interface_Element\tChart\tO\nExample\tO\tExample\tO\n\t\nTools\tO\tTools\tO\n\t\nWrite\tO\tWrite\tO\nin\tO\tin\tO\nJavascript\tB-Language\tJavascript\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nthe\tO\tthe\tO\nprompt()\tB-Library_Function\tprompt()\tB-Code_Block\nfunction\tO\tfunction\tO\nto\tO\tto\tO\naccept\tO\taccept\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_5837\tI-Code_Block\tGR_5837\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nrepl.it\tB-Application\trepl.it\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n!\tO\t!\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncopy/paste/submit\tO\tcopy/paste/submit\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nadventure.js\tB-File_Name\tadventure.js\tB-Code_Block\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nGame\tO\tGame\tO\nIdeas\tO\tIdeas\tO\n\t\nA\tO\tA\tO\nLord\tO\tLord\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nRings\tO\tRings\tO\nstyle\tO\tstyle\tO\nadventure\tO\tadventure\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nplayer\tO\tplayer\tO\nis\tO\tis\tO\nFrodo\tO\tFrodo\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhe\tO\the\tO\nmust\tO\tmust\tO\nchoose\tO\tchoose\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nto\tO\tto\tO\nMordor\tO\tMordor\tO\n.\tO\t.\tO\n\t\nPossible\tO\tPossible\tO\nobstacles\tO\tobstacles\tO\ninvolve\tO\tinvolve\tO\nOrcs\tO\tOrcs\tO\n,\tO\t,\tO\ngoblins\tO\tgoblins\tO\n,\tO\t,\tO\nand\tO\tand\tO\ngetting\tO\tgetting\tO\ndrunk\tO\tdrunk\tO\non\tO\ton\tO\nmead\tO\tmead\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\n\"\tO\t\"\tO\nTop\tO\tTop\tO\nChef\tO\tChef\tO\n\"\tO\t\"\tO\nstyle\tO\tstyle\tO\ncooking\tO\tcooking\tO\nadventure\tO\tadventure\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nplayer\tO\tplayer\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nchef\tO\tchef\tO\n,\tO\t,\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\ndinner\tO\tdinner\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nelite\tO\telite\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\njudges\tO\tjudges\tO\n.\tO\t.\tO\n\t\nPossible\tO\tPossible\tO\nobstacles\tO\tobstacles\tO\ninclude\tO\tinclude\tO\novercooking\tO\tovercooking\tO\nthe\tO\tthe\tO\nmeal\tO\tmeal\tO\n,\tO\t,\tO\nrunning\tO\trunning\tO\nout\tO\tout\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\njudges\tO\tjudges\tO\nbeing\tO\tbeing\tO\njerks\tO\tjerks\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nHarry\tO\tHarry\tO\nPotter\tO\tPotter\tO\nthemed\tO\tthemed\tO\nadventure\tO\tadventure\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nHarry\tO\tHarry\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nhorcruxes\tO\thorcruxes\tO\n.\tO\t.\tO\n\t\nPossible\tO\tPossible\tO\nobstacles\tO\tobstacles\tO\ninclude\tO\tinclude\tO\nVoldemort\tO\tVoldemort\tO\nkilling\tO\tkilling\tO\npeople\tO\tpeople\tO\n,\tO\t,\tO\nProfessor\tO\tProfessor\tO\nSnape\tO\tSnape\tO\nbeing\tO\tbeing\tO\na\tO\ta\tO\njerk\tO\tjerk\tO\n,\tO\t,\tO\nor\tO\tor\tO\nRon\tO\tRon\tO\nnot\tO\tnot\tO\nknowing\tO\tknowing\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n(\tO\t(\tO\npseudocode\tO\tpseudocode\tO\n)\tO\t)\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\nname\tO\tname\tO\n?\tO\t?\tO\n\t\nMarty\tO\tMarty\tB-Code_Block\n\t\nNice\tO\tNice\tO\nto\tO\tto\tO\nmeet\tO\tmeet\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nMarty\tO\tMarty\tB-Code_Block\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyear\tO\tyear\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nYYYY\tO\tYYYY\tO\n)\tO\t)\tO\n\t\n>=\tO\t>=\tB-Code_Block\n2015\tO\t2015\tI-Code_Block\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\na\tO\ta\tO\nfan\tO\tfan\tO\nof\tO\tof\tO\nBack\tO\tBack\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nFuture\tO\tFuture\tO\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nyou\tO\tyou\tO\nrather\tO\trather\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nBiff\tO\tBiff\tO\n,\tO\t,\tO\nor\tO\tor\tO\nGriff\tO\tGriff\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nB/G\tO\tB/G\tO\n)\tO\t)\tO\n\t\nBiff\tO\tBiff\tB-Code_Block\n\t\nHmm\tO\tHmm\tO\n,\tO\t,\tO\ninteresting\tO\tinteresting\tO\n.\tO\t.\tO\n\t\nBiff\tO\tBiff\tO\nis\tO\tis\tO\nangry\tO\tangry\tO\nand\tO\tand\tO\nhas\tO\thas\tO\na\tO\ta\tO\ncane\tO\tcane\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nstand\tO\tstand\tO\nand\tO\tand\tO\nfight\tO\tfight\tO\n,\tO\t,\tO\nor\tO\tor\tO\nrun\tO\trun\tO\naway\tO\taway\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ncoward\tO\tcoward\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nS/R\tO\tS/R\tO\n)\tO\t)\tO\n\t\nStand\tO\tStand\tB-Code_Block\nand\tO\tand\tO\nfight\tO\tfight\tO\n\t\nGood\tO\tGood\tO\nchoice\tO\tchoice\tO\n.\tO\t.\tO\n\t\nBiff\tO\tBiff\tO\nis\tO\tis\tO\nold\tO\told\tO\nand\tO\tand\tO\nfeeble\tO\tfeeble\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\npush\tO\tpush\tO\nhim\tO\thim\tO\nover\tO\tover\tO\nand\tO\tand\tO\nhe\tO\the\tO\nfalls\tO\tfalls\tO\nin\tO\tin\tO\na\tO\ta\tO\npile\tO\tpile\tO\nof\tO\tof\tO\nmanure\tO\tmanure\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tB-Code_Block\nlike\tO\tlike\tO\na\tO\ta\tO\ncoward\tO\tcoward\tO\n\t\nYou\tO\tYou\tO\nget\tO\tget\tO\naway\tO\taway\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyour\tO\tyour\tO\nfuture\tO\tfuture\tO\nson\tO\tson\tO\nMarty\tO\tMarty\tO\nJr\tO\tJr\tO\n.\tO\t.\tO\nis\tO\tis\tO\nheckled\tO\theckled\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nhis\tO\this\tO\ndays\tO\tdays\tO\nfor\tO\tfor\tO\nhis\tO\this\tO\ndad\tO\tdad\tO\n's\tO\t's\tO\ncowardice\tO\tcowardice\tO\n.\tO\t.\tO\n\t\nGriff\tO\tGriff\tB-Code_Block\n\t\nGriff\tO\tGriff\tO\nis\tO\tis\tO\nasking\tO\tasking\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nin\tO\tin\tO\n,\tO\t,\tO\nor\tO\tor\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nsay\tO\tsay\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nI/O\tO\tI/O\tO\n)\tO\t)\tO\n\t\nIn\tO\tIn\tB-Code_Block\n\t\nBad\tO\tBad\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nGriff\tO\tGriff\tO\nand\tO\tand\tO\nhis\tO\this\tO\ncronies\tO\tcronies\tO\nrob\tO\trob\tO\nthe\tO\tthe\tO\nHill\tO\tHill\tO\nValley\tO\tValley\tO\nbank\tO\tbank\tO\nand\tO\tand\tO\nframe\tO\tframe\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nNo\tO\tNo\tO\nmore\tO\tmore\tO\ntime\tO\ttime\tO\ntravel\tO\ttravel\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nOut\tO\tOut\tB-Code_Block\n\t\nGood\tO\tGood\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ndeck\tO\tdeck\tO\nGriff\tO\tGriff\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\njaw\tO\tjaw\tO\nand\tO\tand\tO\nrun\tO\trun\tO\naway\tO\taway\tO\n.\tO\t.\tO\n\t\nHe\tO\tHe\tO\ngives\tO\tgives\tO\nchase\tO\tchase\tO\non\tO\ton\tO\nhis\tO\this\tO\nhoverboard\tO\thoverboard\tO\nand\tO\tand\tO\nends\tO\tends\tO\nup\tO\tup\tO\nin\tO\tin\tO\na\tO\ta\tO\npile\tO\tpile\tO\nof\tO\tof\tO\nmanure\tO\tmanure\tO\n.\tO\t.\tO\n\t\n1985-2014\tO\t1985-2014\tB-Code_Block\n\t\nDoc\tO\tDoc\tO\nhas\tO\thas\tO\nalready\tO\talready\tO\ndestroyed\tO\tdestroyed\tO\nthe\tO\tthe\tO\nTime\tO\tTime\tO\nMachine\tO\tMachine\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwait\tO\twait\tO\naround\tO\taround\tO\nuntil\tO\tuntil\tO\n2015\tO\t2015\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nname\tO\tname\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nby\tO\tby\tO\nuntil\tO\tuntil\tO\nthen\tO\tthen\tO\n?\tO\t?\tO\n\t\nCalvin\tO\tCalvin\tB-Code_Block\nKlein\tO\tKlein\tI-Code_Block\n\t\nWelcome\tO\tWelcome\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\n,\tO\t,\tO\nCalvin\tO\tCalvin\tB-Code_Block\nKlein\tO\tKlein\tI-Code_Block\n.\tO\t.\tO\n\t\n1955-1984\tO\t1955-1984\tB-Code_Block\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\na\tO\ta\tO\nfan\tO\tfan\tO\nof\tO\tof\tO\nBack\tO\tBack\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nFuture\tO\tFuture\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nfuture\tO\tfuture\tO\nMom\tO\tMom\tO\nhas\tO\thas\tO\njust\tO\tjust\tO\nasked\tO\tasked\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nEnchantment\tO\tEnchantment\tO\nUnder\tO\tUnder\tO\nthe\tO\tthe\tO\nSea\tO\tSea\tO\ndance\tO\tdance\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nY/N/S\tO\tY/N/S\tO\n)\tO\t)\tO\n\t\nYes\tO\tYes\tB-Code_Block\n\t\nCreepy\tO\tCreepy\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nbackup\tO\tbackup\tO\nplan\tO\tplan\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nto\tO\tto\tO\nget\tO\tget\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nUntil\tO\tUntil\tO\nthen\tO\tthen\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nstuck\tO\tstuck\tO\nin\tO\tin\tO\n1955\tO\t1955\tO\n.\tO\t.\tO\n\t\nNo\tO\tNo\tB-Code_Block\n\t\nHonorable\tO\tHonorable\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nalso\tO\talso\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nfuture\tO\tfuture\tO\nDad\tO\tDad\tO\nwill\tO\twill\tO\nnever\tO\tnever\tO\nmeet\tO\tmeet\tO\nyour\tO\tyour\tO\nMom\tO\tMom\tO\n,\tO\t,\tO\nand\tO\tand\tO\ntherefore\tO\ttherefore\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nSet\tO\tSet\tB-Code_Block\nher\tO\ther\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nGeorge\tO\tGeorge\tO\n\t\nInteresting\tO\tInteresting\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nset\tO\tset\tO\nup\tO\tup\tO\nan\tO\tan\tO\nelaborate\tO\telaborate\tO\nplan\tO\tplan\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nfuture\tO\tfuture\tO\nDad\tO\tDad\tO\nto\tO\tto\tO\nsurprise\tO\tsurprise\tO\nyour\tO\tyour\tO\nMom\tO\tMom\tO\nby\tO\tby\tO\nbeating\tO\tbeating\tO\nyou\tO\tyou\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nDespite\tO\tDespite\tO\ngoing\tO\tgoing\tO\nhorribly\tO\thorribly\tO\nawry\tO\tawry\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nplan\tO\tplan\tO\nultimately\tO\tultimately\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\n<\tO\t<\tB-Code_Block\n1955\tO\t1955\tI-Code_Block\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\na\tO\ta\tO\nfan\tO\tfan\tO\nof\tO\tof\tO\nBack\tO\tBack\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nFuture\tO\tFuture\tO\n3\tO\t3\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n've\tO\t've\tO\nrun\tO\trun\tO\nout\tO\tout\tO\nof\tO\tof\tO\nnitroglycerin\tO\tnitroglycerin\tO\nto\tO\tto\tO\nget\tO\tget\tO\nback\tO\tback\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\npower\tO\tpower\tO\nthe\tO\tthe\tO\nTime\tO\tTime\tO\nMachine\tO\tMachine\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nH/M/T\tO\tH/M/T\tO\n)\tO\t)\tO\n\t\nHorses\tO\tHorses\tB-Code_Block\n\t\nGood\tO\tGood\tO\nidea\tO\tidea\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntime\tO\ttime\tO\nmachine\tO\tmachine\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nget\tO\tget\tO\nto\tO\tto\tO\n88mph\tO\t88mph\tO\n.\tO\t.\tO\n\t\n12\tO\t12\tO\nhorsepower\tO\thorsepower\tO\nai\tO\tai\tO\nn't\tO\tn't\tO\ngonna\tO\tgonna\tO\ncut\tO\tcut\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nMoonshine\tO\tMoonshine\tB-Code_Block\n\t\nYou\tO\tYou\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\noff\tO\toff\tO\ndrinking\tO\tdrinking\tO\nthe\tO\tthe\tO\nmoonshine\tO\tmoonshine\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nnot\tO\tnot\tO\npass\tO\tpass\tO\nGo\tO\tGo\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\ncollect\tO\tcollect\tO\n$\tO\t$\tO\n200\tO\t200\tO\n.\tO\t.\tO\n\t\nStuck\tO\tStuck\tO\nin\tO\tin\tO\n1855\tO\t1855\tO\n.\tO\t.\tO\n\t\nTrain\tO\tTrain\tB-Code_Block\n\t\nGood\tO\tGood\tO\ncall\tO\tcall\tO\n!\tO\t!\tO\n\t\nThis\tO\tThis\tO\nplan\tO\tplan\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwait\tO\twait\tO\n!\tO\t!\tO\n\t\nClara\tO\tClara\tO\nwants\tO\twants\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nBack\tO\tBack\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nFuture\tO\tFuture\tO\nwith\tO\twith\tO\nyou\tO\tyou\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nmoment\tO\tmoment\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nT/L\tO\tT/L\tO\n)\tO\t)\tO\n\t\nTake\tO\tTake\tB-Code_Block\nher\tO\ther\tO\n\t\nInteresting\tO\tInteresting\tO\nchoice\tO\tchoice\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\nthe\tO\tthe\tO\nDoc\tO\tDoc\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ngrab\tO\tgrab\tO\nClara\tO\tClara\tO\nand\tO\tand\tO\nget\tO\tget\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncar\tO\tcar\tO\nin\tO\tin\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nHe\tO\tHe\tO\nends\tO\tends\tO\nup\tO\tup\tO\nstaying\tO\tstaying\tO\nin\tO\tin\tO\n1855\tO\t1855\tO\nwith\tO\twith\tO\nher\tO\ther\tO\n.\tO\t.\tO\n\t\nLeave\tO\tLeave\tB-Code_Block\nher\tO\ther\tO\n\t\nSmart\tO\tSmart\tO\nchoice\tO\tchoice\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\nthe\tO\tthe\tO\nDoc\tO\tDoc\tO\nwas\tO\twas\tO\ndeeply\tO\tdeeply\tO\nin\tO\tin\tO\nlove\tO\tlove\tO\nwith\tO\twith\tO\nClara\tO\tClara\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nhe\tO\the\tO\ngets\tO\tgets\tO\nback\tO\tback\tO\nto\tO\tto\tO\n1985\tO\t1985\tO\nhe\tO\the\tO\nbecomes\tO\tbecomes\tO\nvery\tO\tvery\tO\ndepressed\tO\tdepressed\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nben-eb/metalsmith\tO\tben-eb/metalsmith\tO\n-remark\tO\t-remark\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/ben-eb/metalsmith-remark/issues/20\tO\thttps://github.com/ben-eb/metalsmith-remark/issues/20\tO\n\t\nHello\tO\tHello\tO\nlovely\tO\tlovely\tO\nhumans\tO\thumans\tO\n,\tO\t,\tO\n\t\neslint-config-cssnano\tB-Library\teslint-config-cssnano\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n2.1.0\tB-Version\t2.1.0\tO\n.\tO\t.\tO\n\t\nState\tO\tState\tO\n\t\n\t\nFailing\tO\tFailing\tO\ntests\tO\ttests\tO\n:rotating_light\tO\t:rotating_light\tO\n:\tO\t:\tO\n\t\n\t\nDependency\tO\tDependency\tO\n\t\n\t\n\t\neslint-config-cssnano\tB-Library\teslint-config-cssnano\tO\n\t\n\t\nNew\tO\tNew\tO\nversion\tO\tversion\tO\n\t\n\t\n\t\n2.1.0\tB-Version\t2.1.0\tO\n\t\n\t\nType\tO\tType\tO\n\t\n\t\n\t\ndevDependency\tO\tdevDependency\tO\n\t\n\t\nThis\tO\tThis\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\nupdating\tO\tupdating\tO\nit\tO\tit\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\nwent\tO\twent\tO\nfrom\tO\tfrom\tO\nsuccess\tO\tsuccess\tO\nto\tO\tto\tO\nfailure\tO\tfailure\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\neslint-config-cssnano\tB-Library\teslint-config-cssnano\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\nonly\tO\tonly\tO\n\"\tO\t\"\tO\na\tO\ta\tO\ndevDependency\tO\tdevDependency\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nbreak\tO\tbreak\tO\nproduction\tO\tproduction\tO\nor\tO\tor\tO\ndownstream\tO\tdownstream\tO\nprojects\tO\tprojects\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\n\"\tO\t\"\tO\nonly\tO\tonly\tO\n\"\tO\t\"\tO\nyour\tO\tyour\tO\nbuild\tO\tbuild\tO\nor\tO\tor\tO\ntest\tO\ttest\tO\ntools\tO\ttools\tO\n–\tO\t–\tO\npreventing\tO\tpreventing\tO\nnew\tO\tnew\tO\ndeploys\tO\tdeploys\tO\nor\tO\tor\tO\npublishes\tO\tpublishes\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\ngive\tO\tgive\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\na\tO\ta\tO\nhigh\tO\thigh\tO\npriority\tO\tpriority\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nresolve\tO\tresolve\tO\nthis\tO\tthis\tO\n:muscle\tO\t:muscle\tO\n:\tO\t:\tO\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nfalse\tO\tfalse\tO\npositive\tO\tpositive\tO\n,\tO\t,\tO\ncaused\tO\tcaused\tO\nby\tO\tby\tO\na\tO\ta\tO\nflaky\tO\tflaky\tO\ntest\tO\ttest\tO\nsuite\tO\tsuite\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthird\tO\tthird\tO\nparties\tO\tparties\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ncurrently\tO\tcurrently\tO\nbroken\tO\tbroken\tO\nor\tO\tor\tO\nunavailable\tO\tunavailable\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nanother\tO\tanother\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nrecommend\tO\trecommend\tO\nworking\tO\tworking\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimprove\tO\timprove\tO\nthese\tO\tthese\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n?\tO\t?\tO\n\t\nDid\tO\tDid\tO\nI\tO\tI\tO\nreport\tO\treport\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nunsure\tO\tunsure\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nfrequently\tO\tfrequently\tO\nasked\tO\tasked\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\na\tO\ta\tO\nbot\tO\tbot\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\nteach\tO\tteach\tO\nme\tO\tme\tO\nnew\tO\tnew\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nthem\tO\tthem\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\nrock\tO\trock\tO\n!\tO\t!\tO\n\t\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\ndiffers\tO\tdiffers\tO\nby\tO\tby\tO\n2\tO\t2\tO\ncommits\tO\tcommits\tO\n.\tO\t.\tO\n\t\nf983b0b\tO\tf983b0b\tB-Code_Block\n2.1.0\tB-Version\t2.1.0\tI-Code_Block\n\t\nc8f925c\tO\tc8f925c\tB-Code_Block\nFix\tO\tFix\tI-Code_Block\nexport\tO\texport\tI-Code_Block\nfrom\tO\tfrom\tI-Code_Block\ndefinitions\tO\tdefinitions\tI-Code_Block\n.\tO\t.\tI-Code_Block\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndiff\tO\tdiff\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\ngreenkeeper.io\tB-Application\tgreenkeeper.io\tO\n.\tO\t.\tO\n\t\nTired\tO\tTired\tO\nof\tO\tof\tO\nseeing\tO\tseeing\tO\nthis\tO\tthis\tO\nsponsor\tO\tsponsor\tO\nmessage\tO\tmessage\tO\n?\tO\t?\tO\n\t\n:zap\tO\t:zap\tO\n:\tO\t:\tO\ngreenkeeper\tB-Code_Block\tgreenkeeper\tB-Code_Block\nupgrade\tI-Code_Block\tupgrade\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nop-jenkins/op\tO\top-jenkins/op\tO\n-build\tO\t-build\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/op-jenkins/op-build/issues/1\tO\thttps://github.com/op-jenkins/op-build/issues/1\tO\n\t\nretest\tO\tretest\tO\nthis\tO\tthis\tO\nplease\tO\tplease\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/31\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/31\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nexpecting\tO\texpecting\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ntrickier\tO\ttrickier\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\ngetPartitions\tB-Library_Function\tgetPartitions\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntests\tO\ttests\tO\nstill\tO\tstill\tO\npass\tO\tpass\tO\n,\tO\t,\tO\nso\tO\tso\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nupgrade\tO\tupgrade\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntotally\tO\ttotally\tO\nfine\tO\tfine\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\n:tada\tO\t:tada\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nfixing\tO\tfixing\tO\nhttps://github.com/resin-io/resin-cli/issues/704\tO\thttps://github.com/resin-io/resin-cli/issues/704\tO\n\t\nChange-Type\tO\tChange-Type\tO\n:\tO\t:\tO\nminor\tO\tminor\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nciti-onboarding/mandacaruBack\tO\tciti-onboarding/mandacaruBack\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/citi-onboarding/mandacaruBack/issues/1\tO\thttps://github.com/citi-onboarding/mandacaruBack/issues/1\tO\n\t\n-Cliente\tO\t-Cliente\tO\nmandar\tO\tmandar\tO\nvídeo\tO\tvídeo\tO\npromocional\tO\tpromocional\tO\n-Cliente\tO\t-Cliente\tO\nmandar\tO\tmandar\tO\nforms\tO\tforms\tO\nde\tO\tde\tO\ncadastro\tO\tcadastro\tO\npara\tO\tpara\tO\nprocesso\tO\tprocesso\tO\nseletivo\tO\tseletivo\tO\ne\tO\te\tO\npara\tO\tpara\tO\nse\tO\tse\tO\ntornar\tO\ttornar\tO\npatrocinador\tO\tpatrocinador\tO\n.\tO\t.\tO\n\t\n-Cliente\tO\t-Cliente\tO\nmandar\tO\tmandar\tO\nlinks\tO\tlinks\tO\nde\tO\tde\tO\nredes\tO\tredes\tO\nsociais\tO\tsociais\tO\n.\tO\t.\tO\n\t\n-Conversar\tO\t-Conversar\tO\ncom\tO\tcom\tO\ncliente\tO\tcliente\tO\nsobre\tO\tsobre\tO\nfamicon\tO\tfamicon\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nnumen31337/AKVideoImageView\tO\tnumen31337/AKVideoImageView\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/numen31337/AKVideoImageView/issues/6\tO\thttps://github.com/numen31337/AKVideoImageView/issues/6\tO\n\t\nHey\tO\tHey\tO\n@cutmaster\tB-User_Name\t@cutmaster\tO\n,\tO\t,\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nreproduce\tO\treproduce\tO\nthis\tO\tthis\tO\nleak\tO\tleak\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nprovide\tO\tprovide\tO\nme\tO\tme\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nsample\tO\tsample\tO\nproject\tO\tproject\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nleak\tO\tleak\tO\nand\tO\tand\tO\ndebug\tO\tdebug\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\n2\tO\t2\tO\nminutes\tO\tminutes\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nproject\tO\tproject\tO\nactivity\tO\tactivity\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ndevice\tO\tdevice\tO\n:\tO\t:\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncivey/where\tO\tcivey/where\tO\n-should-we-eat\tO\t-should-we-eat\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/civey/where-should-we-eat/issues/2\tO\thttps://github.com/civey/where-should-we-eat/issues/2\tO\n\t\nThis\tO\tThis\tO\nneeds\tO\tneeds\tO\na\tO\ta\tO\nbuild\tO\tbuild\tO\nprocess\tO\tprocess\tO\n!\tO\t!\tO\n\t\nLike\tO\tLike\tO\nWTF\tO\tWTF\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\n2017\tO\t2017\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucieSteiner/AMT_feature1\tO\tLucieSteiner/AMT_feature1\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucieSteiner/AMT_feature1/issues/8\tO\thttps://github.com/LucieSteiner/AMT_feature1/issues/8\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfilter\tO\tfilter\tO\nonly\tO\tonly\tO\napplies\tO\tapplies\tO\nto\tO\tto\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nspecific\tO\tspecific\tO\nurl\tO\turl\tO\n:\tO\t:\tO\n\t\n<servlet-mapping>\tB-Code_Block\t<servlet-mapping>\tB-Code_Block\n<servlet-name>ProtectedServlet</servlet-name>\tI-Code_Block\t<servlet-name>ProtectedServlet</servlet-name>\tI-Code_Block\n<url-pattern>/protected</url-pattern>\tI-Code_Block\t<url-pattern>/protected</url-pattern>\tI-Code_Block\n</servlet-mapping>\tI-Code_Block\t</servlet-mapping>\tI-Code_Block\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\ngrows\tO\tgrows\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\none\tO\tone\tO\nprotected\tO\tprotected\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nto\tO\tto\tO\n/protected/\tB-Code_Block\t/protected/\tB-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\nor\tO\tor\tO\nfind\tO\tfind\tO\nanother\tO\tanother\tO\nway\tO\tway\tO\nto\tO\tto\tO\nattach\tO\tattach\tO\nyour\tO\tyour\tO\nfilter\tO\tfilter\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nspot\tO\tspot\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nMcMenemy/GoDoRP\tO\tMcMenemy/GoDoRP\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/McMenemy/GoDoRP/issues/7\tO\thttps://github.com/McMenemy/GoDoRP/issues/7\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nyou\tO\tyou\tO\n(\tO\t(\tO\nor\tO\tor\tO\nI)\tO\tI)\tO\ndid\tO\tdid\tO\nthis\tO\tthis\tO\nbut\tO\tbut\tO\ncontainers\tO\tcontainers\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\ncloning\tO\tcloning\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\ndoing\tO\tdoing\tO\n\t\ndocker-compose\tO\tdocker-compose\tO\nup\tO\tup\tO\n--build\tO\t--build\tO\n\t\nall\tO\tall\tO\nI\tO\tI\tO\nget\tO\tget\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nfrontend\tO\tfrontend\tO\n:\tO\t:\tO\n\t\nnpm\tO\tnpm\tO\nERR\tO\tERR\tO\n!\tO\t!\tO\n\t\ncode\tO\tcode\tO\nENOTFOUND\tO\tENOTFOUND\tO\nnpm\tO\tnpm\tO\nERR\tO\tERR\tO\n!\tO\t!\tO\n\t\nerrno\tO\terrno\tO\nENOTFOUND\tO\tENOTFOUND\tO\nnpm\tO\tnpm\tO\nERR\tO\tERR\tO\n!\tO\t!\tO\n\t\nnetwork\tO\tnetwork\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nhttps://registry.npmjs.org/react\tO\thttps://registry.npmjs.org/react\tO\nfailed\tO\tfailed\tO\n,\tO\t,\tO\nreason\tO\treason\tO\n:\tO\t:\tO\ngetaddrinfo\tO\tgetaddrinfo\tO\nENOTFOUND\tO\tENOTFOUND\tO\nregistry.npmjs.org\tO\tregistry.npmjs.org\tO\nregistry.npmjs.org:443\tO\tregistry.npmjs.org:443\tO\nnpm\tO\tnpm\tO\nERR\tO\tERR\tO\n!\tO\t!\tO\n\t\nnetwork\tO\tnetwork\tO\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nnetwork\tO\tnetwork\tO\nconnectivity\tO\tconnectivity\tO\n.\tO\t.\tO\n\t\nnpm\tO\tnpm\tO\nERR\tO\tERR\tO\n!\tO\t!\tO\n\t\nnetwork\tO\tnetwork\tO\nIn\tO\tIn\tO\nmost\tO\tmost\tO\ncases\tO\tcases\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nbehind\tO\tbehind\tO\na\tO\ta\tO\nproxy\tO\tproxy\tO\nor\tO\tor\tO\nhave\tO\thave\tO\nbad\tO\tbad\tO\nnetwork\tO\tnetwork\tO\nsettings\tO\tsettings\tO\n.\tO\t.\tO\n\t\nnpm\tO\tnpm\tO\nERR\tO\tERR\tO\n!\tO\t!\tO\n\t\nnetwork\tO\tnetwork\tO\nnpm\tO\tnpm\tO\nERR\tO\tERR\tO\n!\tO\t!\tO\n\t\nnetwork\tO\tnetwork\tO\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nbehind\tO\tbehind\tO\na\tO\ta\tO\nproxy\tO\tproxy\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nnpm\tO\tnpm\tO\nERR\tO\tERR\tO\n!\tO\t!\tO\n\t\nnetwork\tO\tnetwork\tO\n'\tO\t'\tO\nproxy\tO\tproxy\tO\n'\tO\t'\tO\nconfig\tO\tconfig\tO\nis\tO\tis\tO\nset\tO\tset\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\n:\tO\t:\tO\n'\tO\t'\tO\nnpm\tO\tnpm\tO\nhelp\tO\thelp\tO\nconfig\tO\tconfig\tO\n'\tO\t'\tO\n\t\nnpm\tO\tnpm\tO\nERR\tO\tERR\tO\n!\tO\t!\tO\n\t\nA\tO\tA\tO\ncomplete\tO\tcomplete\tO\nlog\tO\tlog\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nrun\tO\trun\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\n:\tO\t:\tO\nnpm\tO\tnpm\tO\nERR\tO\tERR\tO\n!\tO\t!\tO\n\t\n/root/.npm/_logs/2018\tO\t/root/.npm/_logs/2018\tO\n-08-25T15_17_34_837Z-debug.log\tO\t-08-25T15_17_34_837Z-debug.log\tO\nERROR\tO\tERROR\tO\n:\tO\t:\tO\nService\tO\tService\tO\n'\tO\t'\tO\nfrontend\tO\tfrontend\tO\n'\tO\t'\tO\nfailed\tO\tfailed\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\ncommand\tO\tcommand\tO\n'\tO\t'\tO\n/bin/sh\tO\t/bin/sh\tO\n-c\tO\t-c\tO\nnpm\tO\tnpm\tO\ninstall\tO\tinstall\tO\n'\tO\t'\tO\nreturned\tO\treturned\tO\na\tO\ta\tO\nnon-zero\tO\tnon-zero\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n1\tO\t1\tO\n\t\nand\tO\tand\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\napi\tB-Library\tapi\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_21841\tI-Code_Block\tGR_21841\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSetup\tO\tSetup\tO\n:\tO\t:\tO\n\t\ndocker\tB-Application\tdocker\tO\nversion\tO\tversion\tO\nClient\tO\tClient\tO\n:\tO\t:\tO\nVersion\tO\tVersion\tO\n:\tO\t:\tO\n1.13.1\tB-Version\t1.13.1\tO\nAPI\tB-Library\tAPI\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n1.26\tO\t1.26\tO\nGo\tB-Language\tGo\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\ngo1.6.2\tB-Version\tgo1.6.2\tO\nGit\tB-Application\tGit\tO\ncommit\tO\tcommit\tO\n:\tO\t:\tO\n092cba3\tO\t092cba3\tO\nBuilt\tO\tBuilt\tO\n:\tO\t:\tO\nThu\tO\tThu\tO\nNov\tO\tNov\tO\n2\tO\t2\tO\n20:40:23\tO\t20:40:23\tO\n2017\tO\t2017\tO\nOS/Arch\tO\tOS/Arch\tO\n:\tO\t:\tO\nlinux/amd64\tO\tlinux/amd64\tO\n\t\nServer\tB-Application\tServer\tO\n:\tO\t:\tO\nVersion\tO\tVersion\tO\n:\tO\t:\tO\n1.13.1\tB-Version\t1.13.1\tO\nAPI\tB-Library\tAPI\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n1.26\tB-Version\t1.26\tO\n(\tO\t(\tO\nminimum\tO\tminimum\tO\nversion\tO\tversion\tO\n1.12\tB-Version\t1.12\tO\n)\tO\t)\tO\nGo\tB-Language\tGo\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\ngo1.6.2\tB-Version\tgo1.6.2\tO\nGit\tB-Application\tGit\tO\ncommit\tO\tcommit\tO\n:\tO\t:\tO\n092cba3\tO\t092cba3\tO\nBuilt\tO\tBuilt\tO\n:\tO\t:\tO\nThu\tO\tThu\tO\nNov\tO\tNov\tO\n2\tO\t2\tO\n20:40:23\tO\t20:40:23\tO\n2017\tO\t2017\tO\nOS/Arch\tO\tOS/Arch\tO\n:\tO\t:\tO\nlinux/amd64\tB-Operating_System\tlinux/amd64\tO\nExperimental\tO\tExperimental\tO\n:\tO\t:\tO\nfalse\tO\tfalse\tO\n\t\ndocker-compose\tB-Application\tdocker-compose\tO\nversion\tO\tversion\tO\ndocker-compose\tB-Application\tdocker-compose\tO\nversion\tO\tversion\tO\n1.21.2\tB-Version\t1.21.2\tO\n,\tO\t,\tO\nbuild\tO\tbuild\tO\na133471\tO\ta133471\tO\ndocker-py\tB-Library\tdocker-py\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n3.3.0\tB-Version\t3.3.0\tO\nCPython\tB-Language\tCPython\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n3.6.5\tB-Version\t3.6.5\tO\nOpenSSL\tB-Library\tOpenSSL\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\nOpenSSL\tB-Library\tOpenSSL\tO\n1.0.1t\tB-Version\t1.0.1t\tO\n3\tO\t3\tO\nMay\tO\tMay\tO\n2016\tO\t2016\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/9\tO\thttps://github.com/zeroepoch/plotbitrate/issues/9\tO\n\t\nHi\tO\tHi\tO\n,\tO\t,\tO\ncould\tO\tcould\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nconsider\tO\tconsider\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nunknown\tO\tunknown\tO\nframes\tO\tframes\tO\n.\tO\t.\tO\n\t\nffprobe\tB-Application\tffprobe\tO\nspits\tO\tspits\tO\nthem\tO\tthem\tO\nout\tO\tout\tO\nas\tO\tas\tO\npict_type\tO\tpict_type\tO\n=\"?\"\tO\t=\"?\"\tO\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nhappen\tO\thappen\tO\nfor\tO\tfor\tO\nfairly\tO\tfairly\tO\nnew\tO\tnew\tO\ncodecs\tO\tcodecs\tO\n,\tO\t,\tO\ncurrently\tO\tcurrently\tO\nffmpeg\tB-Application\tffmpeg\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nframe\tO\tframe\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nAV1\tB-File_Type\tAV1\tO\nvideo\tO\tvideo\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/30\tO\thttps://github.com/mapbox/tile-count/issues/30\tO\n\t\n-s24\tB-Code_Block\t-s24\tB-Code_Block\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nrunning\tO\trunning\tO\nall\tO\tall\tO\nnight\tO\tnight\tO\nand\tO\tand\tO\nstill\tO\tstill\tO\nhas\tO\thas\tO\none\tO\tone\tO\nthread\tO\tthread\tO\nfinishing\tO\tfinishing\tO\nup\tO\tup\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nn't\tO\tn't\tO\ncrashed\tO\tcrashed\tO\nor\tO\tor\tO\nhad\tO\thad\tO\nmemory\tB-Device\tmemory\tO\nconsumption\tO\tconsumption\tO\nblow\tO\tblow\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/7\tO\thttps://github.com/zeroepoch/plotbitrate/issues/7\tO\n\t\nWorks\tO\tWorks\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nit\tO\tit\tO\nignores\tO\tignores\tO\nthe\tO\tthe\tO\nattached\tO\tattached\tO\nimages\tB-User_Interface_Element\timages\tO\nand\tO\tand\tO\nprocesses\tO\tprocesses\tO\nthe\tO\tthe\tO\nvideo\tO\tvideo\tO\nframes\tO\tframes\tO\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nfixing\tO\tfixing\tO\nit\tO\tit\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/22\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/22\tO\n\t\nAdd\tO\tAdd\tO\nap-northeast-2\tB-Code_Block\tap-northeast-2\tO\nregion(Seoul)\tO\tregion(Seoul)\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngoogle-ar/arcore\tO\tgoogle-ar/arcore\tO\n-unreal-sdk\tO\t-unreal-sdk\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/google-ar/arcore-unreal-sdk/issues/3\tO\thttps://github.com/google-ar/arcore-unreal-sdk/issues/3\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ndownloaded\tO\tdownloaded\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nopen\tO\topen\tO\nit\tO\tit\tO\nin\tO\tin\tO\nUE4.18.3\tB-Application\tUE4.18.3\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nGitHub\tB-Website\tGitHub\tO\nversion\tO\tversion\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\n\"\tO\t\"\tO\nRecompile\tB-Error_Name\tRecompile\tO\nproject\tI-Error_Name\tproject\tO\nfrom\tI-Error_Name\tfrom\tO\nsource\tI-Error_Name\tsource\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nCompile\tB-Error_Name\tCompile\tO\nerror\tI-Error_Name\terror\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nopen\tO\topen\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nEngine\tB-Application\tEngine\tO\nversion\tO\tversion\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nsupport\tO\tsupport\tO\n??\tO\t??\tO\n?\tO\t?\tO\n\t\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlobbin/chrome\tO\tlobbin/chrome\tO\n-die2nitemapupdater\tO\t-die2nitemapupdater\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/lobbin/chrome-die2nitemapupdater\tO\thttps://github.com/lobbin/chrome-die2nitemapupdater\tO\n\t\nGoogle\tB-Application\tGoogle\tO\nChrome\tI-Application\tChrome\tO\nextension\tO\textension\tO\nfor\tO\tfor\tO\nupdating\tO\tupdating\tO\nDie2nite\tB-Application\tDie2nite\tO\nMap\tB-User_Interface_Element\tMap\tO\nViewer\tI-User_Interface_Element\tViewer\tO\n\t\nhttp://die2nite.gamerz.org.uk/\tO\thttp://die2nite.gamerz.org.uk/\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/12\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/12\tO\n\t\nAdding\tO\tAdding\tO\nnew\tO\tnew\tO\nteams\tO\tteams\tO\nis\tO\tis\tO\na\tO\ta\tO\npain\tO\tpain\tO\n,\tO\t,\tO\nAlso\tO\tAlso\tO\nwhen\tO\twhen\tO\nteams\tO\tteams\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nabbreviation\tO\tabbreviation\tO\n,\tO\t,\tO\nWe\tO\tWe\tO\nget\tO\tget\tO\nyardage\tO\tyardage\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nie\tO\tie\tO\nArizona\tO\tArizona\tO\nand\tO\tand\tO\narizona\tO\tarizona\tO\nstate\tO\tstate\tO\nshare\tO\tshare\tO\n\"\tO\t\"\tO\nARIZ\tO\tARIZ\tO\n\"\tO\t\"\tO\nas\tO\tas\tO\nan\tO\tan\tO\nabbreviation\tO\tabbreviation\tO\n,\tO\t,\tO\nBut\tO\tBut\tO\nit\tO\tit\tO\ngoes\tO\tgoes\tO\ndown\tO\tdown\tO\nas\tO\tas\tO\nazst\tO\tazst\tO\nin\tO\tin\tO\nan\tO\tan\tO\narizona\tO\tarizona\tO\ngame\tO\tgame\tO\n,\tO\t,\tO\ncausing\tO\tcausing\tO\nus\tO\tus\tO\nto\tO\tto\tO\nput\tO\tput\tO\nplays\tO\tplays\tO\non\tO\ton\tO\nwrong\tO\twrong\tO\nside\tO\tside\tO\nof\tO\tof\tO\n50\tO\t50\tO\nyard\tO\tyard\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nre-think\tO\tre-think\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nthese\tO\tthese\tO\nabbreviations\tO\tabbreviations\tO\nare\tO\tare\tO\ndone\tO\tdone\tO\n,\tO\t,\tO\nIdeally\tO\tIdeally\tO\ndynamically\tO\tdynamically\tO\nsince\tO\tsince\tO\nwe\tO\twe\tO\nknow\tO\tknow\tO\nwho\tO\twho\tO\nis\tO\tis\tO\nplaying\tO\tplaying\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSUSTC/sustech\tO\tSUSTC/sustech\tO\n-slides\tO\t-slides\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SUSTC/sustech-slides/issues/1\tO\thttps://github.com/SUSTC/sustech-slides/issues/1\tO\n\t\n@Spacebody\tB-User_Name\t@Spacebody\tO\nit\tO\tit\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nappropriate\tO\tappropriate\tO\nto\tO\tto\tO\nconsolidate\tO\tconsolidate\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nand\tO\tand\tO\nsquash\tO\tsquash\tB-Code_Block\nthem\tO\tthem\tO\ninto\tO\tinto\tO\none\tO\tone\tO\nbig\tO\tbig\tO\ncommit\tO\tcommit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncoding\tO\tcoding\tO\nstyle\tO\tstyle\tO\nneeds\tO\tneeds\tO\ncleanup\tO\tcleanup\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ndiasdavid/interface\tO\tdiasdavid/interface\tO\n-record-store\tO\t-record-store\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/libp2p/interface-record-store/issues/7\tO\thttps://github.com/libp2p/interface-record-store/issues/7\tO\n\t\nHello\tO\tHello\tO\nlovely\tO\tlovely\tO\nhumans\tO\thumans\tO\n,\tO\t,\tO\n\t\nmultihashing\tO\tmultihashing\tO\njust\tO\tjust\tO\npublished\tO\tpublished\tO\nits\tO\tits\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n0.2.3\tB-Version\t0.2.3\tO\n.\tO\t.\tO\n\t\nState\tO\tState\tO\n\t\n\t\nFailing\tO\tFailing\tO\ntests\tO\ttests\tO\n:warning\tO\t:warning\tO\n:\tO\t:\tO\n\t\n\t\nDependency\tO\tDependency\tO\n\t\n\t\n\t\nmultihashing\tO\tmultihashing\tO\n\t\n\t\nNew\tO\tNew\tO\nversion\tO\tversion\tO\n\t\n\t\n\t\n0.2.3\tB-Version\t0.2.3\tO\n\t\n\t\nType\tO\tType\tO\n\t\n\t\n\t\ndependency\tO\tdependency\tO\n\t\n\t\nThis\tO\tThis\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\ncovered\tO\tcovered\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nversion\tO\tversion\tO\nrange\tO\trange\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\nupdating\tO\tupdating\tO\nit\tO\tit\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\nkept\tO\tkept\tO\nfailing\tO\tfailing\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nin\tO\tin\tO\nits\tO\tits\tO\ncurrent\tO\tcurrent\tO\nform\tO\tform\tO\n,\tO\t,\tO\nis\tO\tis\tO\nmalfunctioning\tO\tmalfunctioning\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nupdate\tO\tupdate\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nchange\tO\tchange\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nleave\tO\tleave\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndark\tO\tdark\tO\nabout\tO\tabout\tO\nupdates\tO\tupdates\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\npassing\tO\tpassing\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nimpact\tO\timpact\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nupdate\tO\tupdate\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimprove\tO\timprove\tO\nthese\tO\tthese\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\n?\tO\t?\tO\n\t\nDid\tO\tDid\tO\nI\tO\tI\tO\nreport\tO\treport\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nunsure\tO\tunsure\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nfrequently\tO\tfrequently\tO\nasked\tO\tasked\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\na\tO\ta\tO\nbot\tO\tbot\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\nteach\tO\tteach\tO\nme\tO\tme\tO\nnew\tO\tnew\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nthem\tO\tthem\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:sparkles\tO\t:sparkles\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\nrock\tO\trock\tO\n!\tO\t!\tO\n\t\n:palm_tree\tO\t:palm_tree\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\ndiffers\tO\tdiffers\tO\nby\tO\tby\tO\n3\tO\t3\tO\ncommits\tO\tcommits\tO\n.\tO\t.\tO\n\t\n14186b2\tB-Code_Block\t14186b2\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nrelease\tI-Code_Block\trelease\tI-Code_Block\nversion\tI-Code_Block\tversion\tI-Code_Block\nv0.2.3\tI-Code_Block\tv0.2.3\tI-Code_Block\n\t\n0db8379\tB-Code_Block\t0db8379\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\ncontributors\tI-Code_Block\tcontributors\tI-Code_Block\n\t\n4e3cf24\tB-Code_Block\t4e3cf24\tB-Code_Block\nchore\tI-Code_Block\tchore\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nnew\tI-Code_Block\tnew\tI-Code_Block\naegir\tI-Code_Block\taegir\tI-Code_Block\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndiff\tO\tdiff\tO\n.\tO\t.\tO\n\t\n✨\tO\t✨\tO\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nall\tO\tall\tO\nnew\tO\tnew\tO\nGreenkeeper\tB-Application\tGreenkeeper\tO\nGitHub\tB-Website\tGitHub\tO\nIntegration\tO\tIntegration\tO\n✨\tO\t✨\tO\n\t\nWith\tO\tWith\tO\nIntegrations\tO\tIntegrations\tO\nfirst-class\tO\tfirst-class\tO\nbot\tO\tbot\tO\nsupport\tO\tsupport\tO\nlanded\tO\tlanded\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nand\tO\tand\tO\nwe\tO\twe\tO\n've\tO\t've\tO\nrewritten\tO\trewritten\tO\nGreenkeeper\tB-Application\tGreenkeeper\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nfull\tO\tfull\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSimpler\tO\tSimpler\tO\nsetup\tO\tsetup\tO\n,\tO\t,\tO\nfewer\tO\tfewer\tO\npull-requests\tO\tpull-requests\tO\n,\tO\t,\tO\nfaster\tO\tfaster\tO\nthan\tO\tthan\tO\never\tO\tever\tO\n.\tO\t.\tO\n\t\nScreencast\tO\tScreencast\tO\nTry\tO\tTry\tO\nit\tO\tit\tO\ntoday\tO\ttoday\tO\n.\tO\t.\tO\n\t\nFree\tO\tFree\tO\nfor\tO\tfor\tO\nprivate\tO\tprivate\tO\nrepositories\tO\trepositories\tO\nduring\tO\tduring\tO\nbeta\tO\tbeta\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nwsdookadr/overflow\tO\twsdookadr/overflow\tO\n-checker\tO\t-checker\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/wsdookadr/fieldtop/issues/7\tO\thttps://github.com/wsdookadr/fieldtop/issues/7\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfilter\tO\tfilter\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nparameters\tO\tparameters\tO\nvalidity\tO\tvalidity\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nneeded\tO\tneeded\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nmysql\tB-Application\tmysql\tO\ninformation\tO\tinformation\tO\nschema\tO\tschema\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nvalid\tO\tvalid\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nthehyve/puppet\tO\tthehyve/puppet\tO\n-i2b2\tO\t-i2b2\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/thehyve/puppet-i2b2/issues/4\tO\thttps://github.com/thehyve/puppet-i2b2/issues/4\tO\n\t\nindex.php\tB-File_Name\tindex.php\tB-Code_Block\nhas\tO\thas\tO\na\tO\ta\tO\nwhitelist\tO\twhitelist\tO\nfor\tO\tfor\tO\nvalidating\tO\tvalidating\tO\nendpoints\tO\tendpoints\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nit\tO\tit\tO\naccepts\tO\taccepts\tO\nall\tO\tall\tO\ndestinations\tO\tdestinations\tO\nstarting\tO\tstarting\tO\nwith\tO\twith\tO\nhttp://\tO\thttp://\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nobviously\tO\tobviously\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nprobably\tO\tprobably\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\ncompletely\tO\tcompletely\tO\nreplace\tO\treplace\tO\nindex.php\tB-File_Name\tindex.php\tB-Code_Block\nwith\tO\twith\tO\npuppet\tB-Application\tpuppet\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nvery\tO\tvery\tO\nidea\tO\tidea\tO\nof\tO\tof\tO\nproxying\tO\tproxying\tO\nall\tO\tall\tO\nrequests\tO\trequests\tO\nthrough\tO\tthrough\tO\nPHP\tB-Language\tPHP\tO\nis\tO\tis\tO\nitself\tO\titself\tO\nvery\tO\tvery\tO\nquestionable\tO\tquestionable\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nscalable\tO\tscalable\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nbesides\tO\tbesides\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\ncrap\tO\tcrap\tO\nat\tO\tat\tO\nmany\tO\tmany\tO\nlevels\tO\tlevels\tO\n,\tO\t,\tO\nperhaps\tO\tperhaps\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nsignificant\tO\tsignificant\tO\nof\tO\tof\tO\nall\tO\tall\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nbuffers\tO\tbuffers\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\nto\tO\tto\tO\noutput\tO\toutput\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\neasily\tO\teasily\tO\nimproved\tO\timproved\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nrespect\tO\trespect\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nForneus/programmering\tO\tForneus/programmering\tO\n-a-inlamningar\tO\t-a-inlamningar\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/Forneus/programmering-a-inlamningar/issues/10\tO\thttps://github.com/Forneus/programmering-a-inlamningar/issues/10\tO\n\t\nFör\tO\tFör\tO\natt\tO\tatt\tO\nkunna\tO\tkunna\tO\nvälja\tO\tvälja\tO\nfont\tO\tfont\tO\n,\tO\t,\tO\nså\tO\tså\tO\nhar\tO\thar\tO\njag\tO\tjag\tO\nlagt\tO\tlagt\tO\ntill\tO\ttill\tO\ntvå\tO\ttvå\tO\nmetoder\tO\tmetoder\tO\ni\tO\ti\tO\nlibbet\tO\tlibbet\tO\n.\tO\t.\tO\n\t\nLägg\tO\tLägg\tO\nin\tO\tin\tO\ndessa\tO\tdessa\tO\nefter\tO\tefter\tO\ngetCurColor\tO\tgetCurColor\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_49755\tI-Code_Block\tGR_49755\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nfoolhardy1729/hello\tO\tfoolhardy1729/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/foolhardy1729/hello-world/issues/1\tO\thttps://github.com/foolhardy1729/hello-world/issues/1\tO\n\t\nI\tO\tI\tO\nAPPROVE\tO\tAPPROVE\tO\n,\tO\t,\tO\nPUNY\tO\tPUNY\tO\nHUMAN\tO\tHUMAN\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/117\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/117\tO\n\t\nMy\tO\tMy\tO\napp\tO\tapp\tO\nmust\tO\tmust\tO\nkeep\tO\tkeep\tO\nplaying\tO\tplaying\tO\nsounds\tO\tsounds\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\nmode\tO\tmode\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\npretty\tO\tpretty\tO\nwell\tO\twell\tO\nin\tO\tin\tO\nios\tB-Operating_System\tios\tO\n8\tB-Version\t8\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nios\tB-Operating_System\tios\tO\n9\tB-Version\t9\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nphone\tB-Device\tphone\tO\nlock\tO\tlock\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsound\tO\tsound\tO\nkeeps\tO\tkeeps\tO\nplaying\tO\tplaying\tO\nfor\tO\tfor\tO\none\tO\tone\tO\nminute\tO\tminute\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nit\tO\tit\tO\nstops\tO\tstops\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nin\tO\tin\tO\niphone\tB-Device\tiphone\tO\nsimulator\tO\tsimulator\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nreal\tO\treal\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nI\tO\tI\tO\nlock\tO\tlock\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsound\tO\tsound\tO\nkeeps\tO\tkeeps\tO\nplaying\tO\tplaying\tO\nfor\tO\tfor\tO\nabout\tO\tabout\tO\n1\tO\t1\tO\nminute\tO\tminute\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsound\tO\tsound\tO\nstops\tO\tstops\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlog\tO\tlog\tO\nsays\tO\tsays\tO\n:\tO\t:\tO\nMessage\tO\tMessage\tO\nfrom\tO\tfrom\tO\ndebugger\tO\tdebugger\tO\n:\tO\t:\tO\nTerminated\tO\tTerminated\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nsignal\tB-Error_Name\tsignal\tO\n9\tI-Error_Name\t9\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nhappens\tO\thappens\tO\nonly\tO\tonly\tO\nin\tO\tin\tO\nios\tB-Operating_System\tios\tO\n>=\tO\t>=\tO\n9.x\tB-Version\t9.x\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nTSSaint/MemoryGame\tO\tTSSaint/MemoryGame\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/TSSaint/MemoryGame/issues/2\tO\thttps://github.com/TSSaint/MemoryGame/issues/2\tO\n\t\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nevent\tO\tevent\tO\nlisteners\tO\tlisteners\tO\n[\tO\t[\tO\nx\tO\tx\tO\n]\tO\t]\tO\nneeds\tO\tneeds\tO\nmore\tO\tmore\tO\nlogic\tO\tlogic\tO\n\t\n[\tO\t[\tO\n?\tO\t?\tO\n]\tO\t]\tO\n\t\nadd\tO\tadd\tO\nmore\tO\tmore\tO\ncard\tO\tcard\tO\nselections\tO\tselections\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucieSteiner/AMT_feature1\tO\tLucieSteiner/AMT_feature1\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucieSteiner/AMT_feature1/issues/7\tO\thttps://github.com/LucieSteiner/AMT_feature1/issues/7\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncustomize\tO\tcustomize\tO\nNetbeans\tB-Application\tNetbeans\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthese\tO\tthese\tO\nheaders\tO\theaders\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nandrewlundy/hello\tO\tandrewlundy/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/andrewlundy/hello-world/issues/1\tO\thttps://github.com/andrewlundy/hello-world/issues/1\tO\n\t\nCompleting\tO\tCompleting\tO\nfirst\tO\tfirst\tO\npull\tO\tpull\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlogstash-plugins/logstash\tO\tlogstash-plugins/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/logstash-plugins/logstash-mixin-aws/issues/8\tO\thttps://github.com/logstash-plugins/logstash-mixin-aws/issues/8\tO\n\t\nI\tO\tI\tO\nconverted\tO\tconverted\tO\nthe\tO\tthe\tO\noutput-sqs-plugin\tB-Application\toutput-sqs-plugin\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nv2\tB-Version\tv2\tO\napi\tB-Library\tapi\tO\njust\tO\tjust\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\ntransition\tO\ttransition\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nv2-sdk\tB-Application\tv2-sdk\tO\nand\tO\tand\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nplaning\tO\tplaning\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ninput-sqs\tB-Application\tinput-sqs\tO\nplugin\tI-Application\tplugin\tO\npretty\tO\tpretty\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nmy\tO\tmy\tO\nchanges\tO\tchanges\tO\nfor\tO\tfor\tO\nlogstash-mixin-aws\tB-Application\tlogstash-mixin-aws\tO\nunder\tO\tunder\tO\n:\tO\t:\tO\ndwagner2301/logstash\tO\tdwagner2301/logstash\tO\n-mixin-aws\tO\t-mixin-aws\tO\n@e542036e19e29abf48c2a6e51db1f97cb232ad61\tO\t@e542036e19e29abf48c2a6e51db1f97cb232ad61\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nthe\tO\tthe\tO\nlogstash-outpu-sqs\tB-Application\tlogstash-outpu-sqs\tO\nrepo\tO\trepo\tO\nhere\tO\there\tO\n:\tO\t:\tO\ndwagner2301/logstash\tO\tdwagner2301/logstash\tO\n-output-sqs\tO\t-output-sqs\tO\n@bd25307de6d3d5237bf10ef217c29c8d1682082f\tO\t@bd25307de6d3d5237bf10ef217c29c8d1682082f\tO\n\t\n@ph\tB-User_Name\t@ph\tO\nwhat\tO\twhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\n?\tO\t?\tO\n\t\nDoes\tO\tDoes\tO\nit\tO\tit\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\n's\tO\t's\tO\ngoing\tO\tgoing\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ndirection\tO\tdirection\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\ndifferently\tO\tdifferently\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlinked-statistics/xkos\tO\tlinked-statistics/xkos\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/linked-statistics/xkos/issues/13\tO\thttps://github.com/linked-statistics/xkos/issues/13\tO\n\t\nHarmonize\tO\tHarmonize\tO\nproperty\tO\tproperty\tO\nnames\tO\tnames\tO\n(\tO\t(\tO\ncovers\tB-Library_Variable\tcovers\tO\n,\tO\t,\tO\ncoversExhaustively\tB-Library_Variable\tcoversExhaustively\tO\n,\tO\t,\tO\ncoversMutuallyExclusively\tB-Library_Variable\tcoversMutuallyExclusively\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nthose\tO\tthose\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUML\tB-Language\tUML\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nFind\tO\tFind\tO\nbetter\tO\tbetter\tO\nnames\tO\tnames\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoso/flexgrid\tO\tmoso/flexgrid\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moso/flexgrid/issues/3\tO\thttps://github.com/moso/flexgrid/issues/3\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ndemo.html\tB-File_Name\tdemo.html\tB-Code_Block\nand\tO\tand\tO\non\tO\ton\tO\nflexgrid.co\tB-Website\tflexgrid.co\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ninside\tO\tinside\tO\na\tO\ta\tO\ncontainer\tO\tcontainer\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nmore\tO\tmore\tO\nreadable\tO\treadable\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmadison-kerndt/off\tO\tmadison-kerndt/off\tO\n-on-guard-synesthesia\tO\t-on-guard-synesthesia\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/34\tO\thttps://github.com/madison-kerndt/avant-garde-synesthesia/issues/34\tO\n\t\nNone\tO\tNone\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nzeroepoch/plotbitrate\tO\tzeroepoch/plotbitrate\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/zeroepoch/plotbitrate/issues/8\tO\thttps://github.com/zeroepoch/plotbitrate/issues/8\tO\n\t\nSigned-off-by\tO\tSigned-off-by\tO\n:\tO\t:\tO\nYefu\tB-User_Name\tYefu\tO\nWang\tI-User_Name\tWang\tO\nyefu.wang@aggios.com\tO\tyefu.wang@aggios.com\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\njohngriebel/go\tO\tjohngriebel/go\tO\n-sdk\tO\t-sdk\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/johngriebel/go-sdk\tO\thttps://github.com/johngriebel/go-sdk\tO\n\t\n\t\nGolang\tB-Application\tGolang\tO\nSDK\tI-Application\tSDK\tO\n\t\nGolang\tB-Application\tGolang\tO\nSDK\tI-Application\tSDK\tO\nfor\tO\tfor\tO\n3Blades\tB-Library\t3Blades\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nGeneration\tO\tGeneration\tO\ncommand\tO\tcommand\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_9856\tI-Code_Block\tGR_9856\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCopyright\tO\tCopyright\tO\nand\tO\tand\tO\nlicense\tO\tlicense\tO\n\t\nCopyright\tB-Licence\tCopyright\tO\n©\tI-Licence\t©\tO\n2017\tI-Licence\t2017\tO\n3Blades\tI-Licence\t3Blades\tO\n,\tI-Licence\t,\tO\nLLC\tI-Licence\tLLC\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nrights\tO\trights\tO\nreserved\tO\treserved\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nis\tO\tis\tO\nreleased\tO\treleased\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nApache\tB-Licence\tApache\tO\n2.0\tB-Version\t2.0\tO\nlicense\tO\tlicense\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nREADME.md\tB-File_Name\tREADME.md\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nand\tO\tand\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\ndocs\tO\tdocs\tO\n\"\tO\t\"\tO\nfolder\tO\tfolder\tO\nare\tO\tare\tO\nlicensed\tO\tlicensed\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nCreative\tB-Licence\tCreative\tO\nCommons\tI-Licence\tCommons\tO\nAttribution\tI-Licence\tAttribution\tO\n4.0\tB-Version\t4.0\tO\nInternational\tO\tInternational\tO\nLicense\tO\tLicense\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\nand\tO\tand\tO\nconditions\tO\tconditions\tO\nset\tO\tset\tO\nforth\tO\tforth\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n\"\tO\t\"\tO\nLICENSE.docs\tB-File_Name\tLICENSE.docs\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nobtain\tO\tobtain\tO\na\tO\ta\tO\nduplicate\tO\tduplicate\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlicense\tO\tlicense\tO\n,\tO\t,\tO\ntitled\tO\ttitled\tO\nCC-BY-SA-4.0\tB-Licence\tCC-BY-SA-4.0\tO\n,\tO\t,\tO\nat\tO\tat\tO\nhttp://creativecommons.org/licenses/by/4.0/\tO\thttp://creativecommons.org/licenses/by/4.0/\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncivey/where\tO\tcivey/where\tO\n-should-we-eat\tO\t-should-we-eat\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/civey/where-should-we-eat/issues/1\tO\thttps://github.com/civey/where-should-we-eat/issues/1\tO\n\t\nYASSSS\tO\tYASSSS\tO\n!\tO\t!\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoso/flexgrid\tO\tmoso/flexgrid\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moso/flexgrid/issues/6\tO\thttps://github.com/moso/flexgrid/issues/6\tO\n\t\nPerhaps\tO\tPerhaps\tO\nas\tO\tas\tO\na\tO\ta\tO\nVue\tB-Library\tVue\tO\napp\tO\tapp\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/5\tO\thttps://github.com/koding/kd-atom/issues/5\tO\n\t\n@sinan\tB-User_Name\t@sinan\tO\nI\tO\tI\tO\nam\tO\tam\tO\nthinking\tO\tthinking\tO\nabout\tO\tabout\tO\nusing\tO\tusing\tO\ngoogle\tB-Website\tgoogle\tO\nanalytics\tI-Website\tanalytics\tO\nhere\tO\there\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ngonna\tO\tgonna\tO\nprobably\tO\tprobably\tO\nbe\tO\tbe\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nhow\tO\thow\tO\nhttps://github.com/atom/metrics\tO\thttps://github.com/atom/metrics\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nas\tO\tas\tO\ngeneric\tO\tgeneric\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nextendable\tO\textendable\tO\nfor\tO\tfor\tO\nfuture\tO\tfuture\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\nwe\tO\twe\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmeasure\tO\tmeasure\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\nremote\tO\tremote\tO\ncalls\tO\tcalls\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nversion\tO\tversion\tO\n?\tO\t?\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/381\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/381\tO\n\t\n@abdelhamidTsouli\tB-User_Name\t@abdelhamidTsouli\tO\ndid\tO\tdid\tO\nyou\tO\tyou\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nEven\tO\tEven\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfacing\tO\tfacing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/11\tO\thttps://github.com/contributte/logging/issues/11\tO\n\t\nCool\tO\tCool\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrcfbanalysis/rcfbscraper\tO\trcfbanalysis/rcfbscraper\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/rcfbanalysis/rcfbscraper/issues/4\tO\thttps://github.com/rcfbanalysis/rcfbscraper/issues/4\tO\n\t\nWe\tO\tWe\tO\nonly\tO\tonly\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncounted\tO\tcounted\tO\nas\tO\tas\tO\nnew\tO\tnew\tO\ndrive\tO\tdrive\tO\nat\tO\tat\tO\nhalf\tO\thalf\tO\n,\tO\t,\tO\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\na\tO\ta\tO\ndrive\tO\tdrive\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ncontinuing\tO\tcontinuing\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\n1st\tO\t1st\tO\nand\tO\tand\tO\n3rd\tO\t3rd\tO\nquarter\tO\tquarter\tO\nis\tO\tis\tO\ncounted\tO\tcounted\tO\nas\tO\tas\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ndrive\tO\tdrive\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nthrows\tO\tthrows\tO\noff\tO\toff\tO\ndrive\tO\tdrive\tO\ncounts/statistics\tO\tcounts/statistics\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nhappens\tO\thappens\tO\nin\tO\tin\tO\nmany\tO\tmany\tO\nplaces\tO\tplaces\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/209\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/209\tO\n\t\nOther\tO\tOther\tO\napps\tO\tapps\tO\naudio\tO\taudio\tO\nwas\tO\twas\tO\ninterrupted\tO\tinterrupted\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nmode\tO\tmode\tO\nwas\tO\twas\tO\nenabled\tO\tenabled\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\non\tO\ton\tO\nthis\tO\tthis\tO\npost\tO\tpost\tO\nhttp://stackoverflow.com/questions/10180500/how-to-use-kaudiosessionproperty-overridecategorymixwithothers\tO\thttp://stackoverflow.com/questions/10180500/how-to-use-kaudiosessionproperty-overridecategorymixwithothers\tO\nIf\tO\tIf\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ndisable\tO\tdisable\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\nsession\tO\tsession\tO\nbefore\tO\tbefore\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\noption\tO\toption\tO\nAVAudioSessionCategoryOptionMixWithOthers\tB-Library_Variable\tAVAudioSessionCategoryOptionMixWithOthers\tO\nis\tO\tis\tO\nset\tO\tset\tO\n,\tO\t,\tO\nit\tO\tit\tO\ninterrupts\tO\tinterrupts\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\napps\tO\tapps\tO\naudio\tO\taudio\tO\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nthe\tO\tthe\tO\ncategory\tO\tcategory\tO\n'\tO\t'\tO\nAVAudioSessionCategoryPlayback\tB-Library_Variable\tAVAudioSessionCategoryPlayback\tO\n'\tO\t'\tO\nis\tO\tis\tO\nset\tO\tset\tO\nand\tO\tand\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nactive\tO\tactive\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\ncategory\tO\tcategory\tO\ninterrupts\tO\tinterrupts\tO\nother\tO\tother\tO\napps\tO\tapps\tO\naudio\tO\taudio\tO\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\noption\tO\toption\tO\n'\tO\t'\tO\nmix\tB-Variable_Name\tmix\tO\nwith\tI-Variable_Name\twith\tO\nothers\tI-Variable_Name\tothers\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nStarkMike/Lab3\tO\tStarkMike/Lab3\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/StarkMike/Lab3/issues/1\tO\thttps://github.com/StarkMike/Lab3/issues/1\tO\n\t\nAdded\tO\tAdded\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\nReadme\tB-File_Name\tReadme\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nHackClub-SLHS/HackClub\tO\tHackClub-SLHS/HackClub\tO\n-Website\tO\t-Website\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/HackClub-SLHS/HackClub-Website/issues/20\tO\thttps://github.com/HackClub-SLHS/HackClub-Website/issues/20\tO\n\t\nbackground\tO\tbackground\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\nbetter\tO\tbetter\tO\nlook\tO\tlook\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nsvenstaro/flamejam\tO\tsvenstaro/flamejam\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/svenstaro/flamejam/issues/21\tO\thttps://github.com/svenstaro/flamejam/issues/21\tO\n\t\nRating\tO\tRating\tO\nprogress\tO\tprogress\tO\nis\tO\tis\tO\ninvalid\tO\tinvalid\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nsubmitted\tO\tsubmitted\tO\nown\tO\town\tO\ngame\tO\tgame\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nremove\tO\tremove\tO\nyour\tO\tyour\tO\ngame\tO\tgame\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ngames\tO\tgames\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nstill\tO\tstill\tO\nreview\tO\treview\tO\n.\tO\t.\tO\n\t\nRating\tO\tRating\tO\nprogress\tO\tprogress\tO\n:\tO\t:\tO\n2\tO\t2\tO\n/\tO\t/\tO\n4\tO\t4\tO\nrated\tO\trated\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nrated\tO\trated\tO\n2\tO\t2\tO\ngames\tO\tgames\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\none\tO\tone\tO\nleft\tO\tleft\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\nmine\tO\tmine\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncjcliffe/CubicSDR\tO\tcjcliffe/CubicSDR\tO\n-flatpak\tO\t-flatpak\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/cjcliffe/CubicSDR-flatpak/issues/4\tO\thttps://github.com/cjcliffe/CubicSDR-flatpak/issues/4\tO\n\t\n3.22\tB-Version\t3.22\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nstable\tO\tstable\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nruntime\tO\truntime\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nlot\tO\tlot\tO\nmore\tO\tmore\tO\napps\tO\tapps\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\n3.20\tB-Version\t3.20\tO\nruntime\tO\truntime\tO\n,\tO\t,\tO\nso\tO\tso\tO\nmore\tO\tmore\tO\nusers\tO\tusers\tO\nare\tO\tare\tO\nlikely\tO\tlikely\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nit\tO\tit\tO\ninstalled\tO\tinstalled\tO\nalready\tO\talready\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ngigitux/vesuvianabot\tO\tgigitux/vesuvianabot\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/gigitux/vesuvianabot/issues/7\tO\thttps://github.com/gigitux/vesuvianabot/issues/7\tO\n\t\nWhen\tO\tWhen\tO\nasked\tO\tasked\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nnow\tO\tnow\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nSivanMehta/wander\tO\tSivanMehta/wander\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/SivanMehta/wander/issues/8\tO\thttps://github.com/SivanMehta/wander/issues/8\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\none\tO\tone\tO\nsmall\tO\tsmall\tO\nqualm\tO\tqualm\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ntook\tO\ttook\tO\nme\tO\tme\tO\n~\tO\t~\tO\n30\tO\t30\tO\nseconds\tO\tseconds\tO\nto\tO\tto\tO\ncheckout\tO\tcheckout\tB-Code_Block\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nWireframes:UserResearch/Wireframes\tB-Code_Block\tWireframes:UserResearch/Wireframes\tB-Code_Block\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\n.gif\tB-File_Type\t.gif\tB-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\n.mov\tB-File_Type\t.mov\tB-Code_Block\nfiles\tO\tfiles\tO\nwere\tO\twere\tO\nincredibly\tO\tincredibly\tO\nbulky\tO\tbulky\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nhost\tO\thost\tO\nthem\tO\tthem\tO\nelsewhere\tO\telsewhere\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\na\tO\ta\tO\nproduction\tO\tproduction\tO\nsetting\tO\tsetting\tO\nwe\tO\twe\tO\nreally\tO\treally\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\nwireframes\tO\twireframes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthese\tO\tthese\tO\nfiles\tO\tfiles\tO\njust\tO\tjust\tO\nslow\tO\tslow\tO\ndown\tO\tdown\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nrepo\tO\trepo\tO\n->\tO\t->\tO\nserver\tB-Application\tserver\tO\n->\tO\t->\tO\ndeploy\tO\tdeploy\tO\ntransaction\tO\ttransaction\tO\n.\tO\t.\tO\n\t\nFunctionally\tO\tFunctionally\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nchanges\tO\tchanges\tO\nlook\tO\tlook\tO\nfantastic\tO\tfantastic\tO\n,\tO\t,\tO\nnice\tO\tnice\tO\nwork\tO\twork\tO\n!\tO\t!\tO\n\t\n🎉\tO\t🎉\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmjacobus/carrasco\tO\tmjacobus/carrasco\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/mjacobus/carrasco\tO\thttps://github.com/mjacobus/carrasco\tO\n\t\nCarrasco\tB-Application\tCarrasco\tO\n\t\nHeartless\tO\tHeartless\tO\nand\tO\tand\tO\neasy\tO\teasy\tO\nscript\tO\tscript\tO\nexecution\tO\texecution\tO\n.\tO\t.\tO\n\t\nSimple\tO\tSimple\tO\ntask\tO\ttask\tO\nrunner\tO\trunner\tO\n,\tO\t,\tO\nyaml\tB-Language\tyaml\tO\nconfig\tO\tconfig\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nMotivation\tO\tMotivation\tO\n:\tO\t:\tO\n\t\nOften\tO\tOften\tO\nin\tO\tin\tO\nprojects\tO\tprojects\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\n./bin\tB-File_Name\t./bin\tO\nfolder\tO\tfolder\tO\nwith\tO\twith\tO\nproject\tO\tproject\tO\nrelated\tO\trelated\tO\nscripts\tO\tscripts\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\ngrunt\tB-Application\tgrunt\tO\n,\tO\t,\tO\nrake\tB-Application\trake\tO\n,\tO\t,\tO\ncomposer\tB-Application\tcomposer\tO\n..\tO\t..\tO\n.\tO\t.\tO\nsass\tB-Language\tsass\tO\ncompilation\tO\tcompilation\tO\ntasks\tO\ttasks\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\nscript/task\tO\tscript/task\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nmany\tO\tmany\tO\nsources\tO\tsources\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nsimpler\tO\tsimpler\tO\nand\tO\tand\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nmore\tO\tmore\tO\norganized\tO\torganized\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\n\t\ncarrasco\tB-Application\tcarrasco\tB-Code_Block\nand\tO\tand\tO\nall\tO\tall\tO\ntasks\tO\ttasks\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nlisted\tO\tlisted\tO\n.\tO\t.\tO\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntasks\tO\ttasks\tO\nlisted\tO\tlisted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\t\n.carrasco.yml\tB-File_Type\t.carrasco.yml\tB-Code_Block\nfile\tO\tfile\tO\nanyway\tO\tanyway\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\n\t\nAdd\tO\tAdd\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n's\tO\t's\tO\nGemfile\tB-File_Type\tGemfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140289\tI-Code_Block\tGR_140289\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nexecute\tO\texecute\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140290\tI-Code_Block\tGR_140290\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\nyourself\tO\tyourself\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140291\tI-Code_Block\tGR_140291\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsage\tO\tUsage\tO\n\t\nGiven\tO\tGiven\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nconfig\tO\tconfig\tO\nfile\tO\tfile\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140292\tI-Code_Block\tGR_140292\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nexecute\tO\texecute\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n-\tO\t-\tO\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ninstalled\tO\tinstalled\tO\nwith\tO\twith\tO\ngem\tB-Code_Block\tgem\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140293\tI-Code_Block\tGR_140293\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n2\tO\t2\tO\n-\tO\t-\tO\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nused\tO\tused\tO\nbundler\tB-Application\tbundler\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nGR_140294\tI-Code_Block\tGR_140294\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDevelopment\tO\tDevelopment\tO\n\t\nAfter\tO\tAfter\tO\nchecking\tO\tchecking\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nrepo\tO\trepo\tO\n,\tO\t,\tO\nrun\tO\trun\tO\nbin/setup\tB-Code_Block\tbin/setup\tB-Code_Block\nto\tO\tto\tO\ninstall\tO\tinstall\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nrun\tO\trun\tO\nrake\tB-Code_Block\trake\tB-Code_Block\ntest\tI-Code_Block\ttest\tI-Code_Block\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ntests\tO\ttests\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nrun\tO\trun\tO\nbin/console\tB-Code_Block\tbin/console\tB-Code_Block\nfor\tO\tfor\tO\nan\tO\tan\tO\ninteractive\tO\tinteractive\tO\nprompt\tO\tprompt\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nexperiment\tO\texperiment\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ninstall\tO\tinstall\tO\nthis\tO\tthis\tO\ngem\tO\tgem\tO\nonto\tO\tonto\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\nmachine\tO\tmachine\tO\n,\tO\t,\tO\nrun\tO\trun\tO\nbundle\tB-Code_Block\tbundle\tB-Code_Block\nexec\tI-Code_Block\texec\tI-Code_Block\nrake\tI-Code_Block\trake\tI-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nrelease\tO\trelease\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nnumber\tO\tnumber\tO\nin\tO\tin\tO\nversion.rb\tB-Code_Block\tversion.rb\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrun\tO\trun\tO\nbundle\tB-Code_Block\tbundle\tB-Code_Block\nexec\tI-Code_Block\texec\tI-Code_Block\nrake\tI-Code_Block\trake\tI-Code_Block\nrelease\tI-Code_Block\trelease\tI-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ngit\tB-Application\tgit\tO\ntag\tO\ttag\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\npush\tO\tpush\tO\ngit\tB-Application\tgit\tO\ncommits\tO\tcommits\tO\nand\tO\tand\tO\ntags\tO\ttags\tO\n,\tO\t,\tO\nand\tO\tand\tO\npush\tO\tpush\tO\nthe\tO\tthe\tO\n.gem\tB-File_Type\t.gem\tB-Code_Block\nfile\tO\tfile\tO\nto\tO\tto\tO\nrubygems.org\tB-Website\trubygems.org\tO\n.\tO\t.\tO\n\t\nContributing\tO\tContributing\tO\n\t\nBug\tO\tBug\tO\nreports\tO\treports\tO\nand\tO\tand\tO\npull\tO\tpull\tO\nrequests\tO\trequests\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\non\tO\ton\tO\nGitHub\tB-Website\tGitHub\tO\nat\tO\tat\tO\nhttps://github.com/mjacobus/carrasco\tO\thttps://github.com/mjacobus/carrasco\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nintended\tO\tintended\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsafe\tO\tsafe\tO\n,\tO\t,\tO\nwelcoming\tO\twelcoming\tO\nspace\tO\tspace\tO\nfor\tO\tfor\tO\ncollaboration\tO\tcollaboration\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncontributors\tO\tcontributors\tO\nare\tO\tare\tO\nexpected\tO\texpected\tO\nto\tO\tto\tO\nadhere\tO\tadhere\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nContributor\tO\tContributor\tO\nCovenant\tO\tCovenant\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nconduct\tO\tconduct\tO\n.\tO\t.\tO\n\t\nLicense\tO\tLicense\tO\n\t\nThe\tO\tThe\tO\ngem\tO\tgem\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nas\tO\tas\tO\nopen\tO\topen\tO\nsource\tO\tsource\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nMIT\tB-Licence\tMIT\tO\nLicense\tI-Licence\tLicense\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkoding/kd\tO\tkoding/kd\tO\n-atom\tO\t-atom\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/koding/kd-atom/issues/12\tO\thttps://github.com/koding/kd-atom/issues/12\tO\n\t\nplease\tO\tplease\tO\ndo\tO\tdo\tO\nanother\tO\tanother\tO\ncommit\tO\tcommit\tO\nupdating\tO\tupdating\tO\nversion\tO\tversion\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\npublish\tO\tpublish\tO\nready\tO\tready\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nspacetelescope/specview\tO\tspacetelescope/specview\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/spacetelescope/specview/issues/33\tO\thttps://github.com/spacetelescope/specview/issues/33\tO\n\t\nJust\tO\tJust\tO\nreally\tO\treally\tO\nminor\tO\tminor\tO\ninteractive\tO\tinteractive\tO\ncleanup\tO\tcleanup\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nit\tO\tit\tO\nwas\tO\twas\tO\ndiscussed\tO\tdiscussed\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ndemo\tO\tdemo\tO\nmeeting\tO\tmeeting\tO\n,\tO\t,\tO\nwent\tO\twent\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\n'\tO\t'\tO\nsview\tB-Class_Name\tsview\tO\n'\tO\t'\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nand\tO\tand\tO\nentry\tO\tentry\tO\npoint\tO\tpoint\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmapbox/tile\tO\tmapbox/tile\tO\n-count\tO\t-count\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/mapbox/tile-count/issues/30\tO\thttps://github.com/mapbox/tile-count/issues/30\tO\n\t\nThis\tO\tThis\tO\nfeels\tO\tfeels\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nused\tO\tused\tO\nto\tO\tto\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\non\tO\ton\tO\n32-bit\tO\t32-bit\tO\nPAE\tB-Application\tPAE\tO\nLinux\tB-Operating_System\tLinux\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\n(\tO\t(\tO\nread-only\tO\tread-only\tO\n)\tO\t)\tO\nmmapped\tO\tmmapped\tO\nmemory\tB-Device\tmemory\tO\nthat\tO\tthat\tO\nought\tO\tought\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npaged\tO\tpaged\tO\nout\tO\tout\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nbuffer\tB-Device\tbuffer\tO\ncache\tO\tcache\tO\ngrew\tO\tgrew\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nnever\tO\tnever\tO\nactually\tO\tactually\tO\ntrigger\tO\ttrigger\tO\nthe\tO\tthe\tO\npage\tB-Error_Name\tpage\tO\nout\tI-Error_Name\tout\tO\n,\tO\t,\tO\neventually\tO\teventually\tO\nkilling\tO\tkilling\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nbecause\tO\tbecause\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\nonly\tO\tonly\tO\nenough\tO\tenough\tO\nmemory\tB-Device\tmemory\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbuffer\tB-Device\tbuffer\tO\ncache\tI-Device\tcache\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmapped\tO\tmapped\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nany\tO\tany\tO\nprograms\tO\tprograms\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\ncontributte/logging\tO\tcontributte/logging\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/contributte/logging/issues/9\tO\thttps://github.com/contributte/logging/issues/9\tO\n\t\n\t\nCoverage\tO\tCoverage\tO\nremained\tO\tremained\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nat\tO\tat\tO\n44.8\tO\t44.8\tO\n%\tO\t%\tO\nwhen\tO\twhen\tO\npulling\tO\tpulling\tO\nc55d7d1bb9b25f940e581fe1e477fe3e91aa41b0\tO\tc55d7d1bb9b25f940e581fe1e477fe3e91aa41b0\tO\non\tO\ton\tO\nkralmichal:master\tO\tkralmichal:master\tO\ninto\tO\tinto\tO\nae1747c1c502c24d06bcdaccef5f018be4f6b278\tO\tae1747c1c502c24d06bcdaccef5f018be4f6b278\tO\non\tO\ton\tO\ncontributte:master\tO\tcontributte:master\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nkatzer/cordova\tO\tkatzer/cordova\tO\n-plugin-background-mode\tO\t-plugin-background-mode\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/katzer/cordova-plugin-background-mode/issues/117\tO\thttps://github.com/katzer/cordova-plugin-background-mode/issues/117\tO\n\t\nHaving\tO\tHaving\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nissue\tO\tissue\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nLucieSteiner/AMT_feature1\tO\tLucieSteiner/AMT_feature1\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/LucieSteiner/AMT_feature1/issues/3\tO\thttps://github.com/LucieSteiner/AMT_feature1/issues/3\tO\n\t\nVisually\tO\tVisually\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndesign\tO\tdesign\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\nform\tB-User_Interface_Element\tform\tO\n:\tO\t:\tO\n\t\nfields\tO\tfields\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nwidth\tO\twidth\tO\n\t\nvertical\tO\tvertical\tO\nspacing\tO\tspacing\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nright\tO\tright\tO\n\t\ntypo\tO\ttypo\tO\nin\tO\tin\tO\n\"\tO\t\"\tO\nResgister\tO\tResgister\tO\nhere\tO\there\tO\n\"\tO\t\"\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\npicked\tO\tpicked\tO\na\tO\ta\tO\nUI\tO\tUI\tO\ntemplate\tO\ttemplate\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\na\tO\ta\tO\nform\tO\tform\tO\ncomponent\tO\tcomponent\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nfoolhardy1729/hello\tO\tfoolhardy1729/hello\tO\n-world\tO\t-world\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/foolhardy1729/hello-world/issues/1\tO\thttps://github.com/foolhardy1729/hello-world/issues/1\tO\n\t\nAdded\tO\tAdded\tO\nadditional\tO\tadditional\tO\nNirvana\tO\tNirvana\tO\nlyrics\tO\tlyrics\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nmoxie-lean/ng\tO\tmoxie-lean/ng\tO\n-patternlab\tO\t-patternlab\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/moxie-lean/ng-patternlab/issues/84\tO\thttps://github.com/moxie-lean/ng-patternlab/issues/84\tO\n\t\nSteps\tO\tSteps\tO\nto\tO\tto\tO\nreproduce\tO\treproduce\tO\nand\tO\tand\tO\na\tO\ta\tO\nminimal\tO\tminimal\tO\ndemo\tO\tdemo\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n\t\nLog\tO\tLog\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nWP\tO\tWP\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nWait\tO\tWait\tO\n~\tO\t~\tO\n1\tO\t1\tO\nday\tO\tday\tO\n\t\nOpen\tO\tOpen\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\n\t\nCurrent\tO\tCurrent\tO\nbehavior\tO\tbehavior\tO\n\t\nThe\tO\tThe\tO\nadmin\tO\tadmin\tO\nbar\tB-User_Interface_Element\tbar\tO\nis\tO\tis\tO\npresent\tO\tpresent\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbar\tB-User_Interface_Element\tbar\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ndashboard\tB-User_Interface_Element\tdashboard\tO\n.\tO\t.\tO\n\t\nExpected/desired\tO\tExpected/desired\tO\nbehavior\tO\tbehavior\tO\n\t\nBar\tB-User_Interface_Element\tBar\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\npresent\tO\tpresent\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\ninformation\tO\tinformation\tO\n\t\nVideo\tO\tVideo\tO\n:\tO\t:\tO\nhttp://snaps.getmoxied.net/450c3M0k0F3Q\tO\thttp://snaps.getmoxied.net/450c3M0k0F3Q\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nlbarasti/gps_app\tO\tlbarasti/gps_app\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/lbarasti/gps_app/issues/12\tO\thttps://github.com/lbarasti/gps_app/issues/12\tO\n\t\nNB\tO\tNB\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ntimestamp\tO\ttimestamp\tO\nand\tO\tand\tO\na\tO\ta\tO\ntimeout\tO\ttimeout\tO\nof\tO\tof\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nAhmedAMohamed/UberLikeApplicationService\tO\tAhmedAMohamed/UberLikeApplicationService\tO\n\t\nRepository_Link\tO\tRepository_Link\tO\n:\tO\t:\tO\nhttps://github.com/AhmedAMohamed/UberLikeApplicationService\tO\thttps://github.com/AhmedAMohamed/UberLikeApplicationService\tO\n\t\nUberLikeApplicationService\tO\tUberLikeApplicationService\tO\n\t\nNode\tB-Application\tNode\tO\nJS\tI-Application\tJS\tO\nRestful\tB-Library\tRestful\tO\nAPIs\tI-Library\tAPIs\tO\nfor\tO\tfor\tO\nUber\tB-Organization\tUber\tO\nlike\tO\tlike\tO\napplication\tO\tapplication\tO\nservices\tO\tservices\tO\n#\tO\t#\tO\n#Dependencies\tO\t#Dependencies\tO\n##\tO\t##\tO\n#Express\tB-Library\t#Express\tO\nnpm\tB-Code_Block\tnpm\tO\ninstall\tI-Code_Block\tinstall\tO\n--save\tI-Code_Block\t--save\tO\nexpress\tI-Code_Block\texpress\tO\n##\tO\t##\tO\n#Cross\tO\t#Cross\tO\norigin\tO\torigin\tO\nresource\tO\tresource\tO\nsharing\tO\tsharing\tO\nnpm\tB-Code_Block\tnpm\tO\ninstall\tI-Code_Block\tinstall\tO\n--save\tI-Code_Block\t--save\tO\ncors\tI-Code_Block\tcors\tO\n##\tO\t##\tO\n#Jada\tB-Application\t#Jada\tO\nnpm\tB-Code_Block\tnpm\tO\ninstall\tI-Code_Block\tinstall\tO\n--save\tI-Code_Block\t--save\tO\njada\tI-Code_Block\tjada\tO\n##\tO\t##\tO\n#MongoDB\tB-Application\t#MongoDB\tO\nnpm\tB-Code_Block\tnpm\tO\ninstall\tI-Code_Block\tinstall\tO\n--save\tI-Code_Block\t--save\tO\nmongodb\tI-Code_Block\tmongodb\tO\n\t\nnpm\tB-Code_Block\tnpm\tO\ninstall\tI-Code_Block\tinstall\tO\n--save\tI-Code_Block\t--save\tO\nmongoose\tI-Code_Block\tmongoose\tO\n\t\nnpm\tB-Code_Block\tnpm\tO\ninstall\tI-Code_Block\tinstall\tO\n--save\tI-Code_Block\t--save\tO\nkerberos\tI-Code_Block\tkerberos\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nJonathanPannell/ProgrammeTest_01_01\tO\tJonathanPannell/ProgrammeTest_01_01\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/JonathanPannell/ProgrammeTest_01_01/issues/1\tO\thttps://github.com/JonathanPannell/ProgrammeTest_01_01/issues/1\tO\n\t\nPriority\tO\tPriority\tO\n\t\nP1\tO\tP1\tO\n-\tO\t-\tO\nFix\tO\tFix\tO\nNow\tO\tNow\tO\nP2\tO\tP2\tO\n-\tO\t-\tO\nFix\tO\tFix\tO\nToday\tO\tToday\tO\nP3\tO\tP3\tO\n-\tO\t-\tO\n2\tO\t2\tO\nDay\tO\tDay\tO\nP4\tO\tP4\tO\n-\tO\t-\tO\n5\tO\t5\tO\nDay\tO\tDay\tO\nP5\tO\tP5\tO\n-\tO\t-\tO\n10\tO\t10\tO\nDay\tO\tDay\tO\nP6\tO\tP6\tO\n-\tO\t-\tO\n15\tO\t15\tO\nDay\tO\tDay\tO\nP7\tO\tP7\tO\n-\tO\t-\tO\n20\tO\t20\tO\nDay\tO\tDay\tO\nP8\tO\tP8\tO\n-\tO\t-\tO\n20\tO\t20\tO\nDay\tO\tDay\tO\n+\tO\t+\tO\nP9\tO\tP9\tO\n-\tO\t-\tO\nNext\tO\tNext\tO\nCode\tO\tCode\tO\nRelease\tO\tRelease\tO\nP10\tO\tP10\tO\n-\tO\t-\tO\nFuture\tO\tFuture\tO\nRoad\tO\tRoad\tO\nMap\tO\tMap\tO\n\t\nRepository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nresin-io-modules/resin\tO\tresin-io-modules/resin\tO\n-image-fs\tO\t-image-fs\tO\n\t\nIssue_Event_Link\tO\tIssue_Event_Link\tO\n:\tO\t:\tO\nhttps://github.com/resin-io-modules/resin-image-fs/issues/38\tO\thttps://github.com/resin-io-modules/resin-image-fs/issues/38\tO\n\t\nWe\tO\tWe\tO\nnow\tO\tnow\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nthe\tO\tthe\tO\nLinux\tB-Operating_System\tLinux\tO\nway\tO\tway\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\njust\tO\tjust\tO\ntry\tO\ttry\tO\none\tO\tone\tO\nfs\tO\tfs\tO\nafter\tO\tafter\tO\nanother\tO\tanother\tO\nuntil\tO\tuntil\tO\none\tO\tone\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nInclude\tO\tInclude\tO\ntests\tO\ttests\tO\nfor\tO\tfor\tO\nimages\tB-User_Interface_Element\timages\tO\nwith\tO\twith\tO\ngpt\tO\tgpt\tO\ntables\tO\ttables\tO\n.\tO\t.\tO\n\t\nChange-type\tO\tChange-type\tO\n:\tO\t:\tO\npatch\tO\tpatch\tO\nSigned-off-by\tO\tSigned-off-by\tO\n:\tO\t:\tO\nTheodor\tB-User_Name\tTheodor\tO\nGherzan\tI-User_Name\tGherzan\tO\ntheodor@resin.io\tI-User_Name\ttheodor@resin.io\tO\n\t\n"
  },
  {
    "path": "resources/annotated_ner_data/Readme.md",
    "content": "# Data format:\n\nIn  datasets are represented in the Conll format. In this format each line of the is in the following format:\n\n\t\t\t<word>+\"\\t\"+<NE>\"\\t\"+<word>+\"\\t\"<markdown>\n\nThe end of sentence is marked with an empty line.\n\nIn each line `NE` represented the human annotated named entity and `<markdown>` represented the code tags provided by the users who wrote the posts.\n\n\n"
  },
  {
    "path": "resources/annotated_ner_data/StackOverflow/dev.txt",
    "content": "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/questions/608721/\tO\thttps://stackoverflow.com/questions/608721/\tO\n\t\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_30\tI-Code_Block\tQ_30\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nnot\tO\tnot\tO\ncompile\tO\tcompile\tO\nbut\tO\tbut\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_31\tI-Code_Block\tQ_31\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ncompiles\tO\tcompiles\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_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/questions/608721/\tO\thttps://stackoverflow.com/questions/608721/\tO\n\t\n\t\nIn\tO\tIn\tO\nJava\tB-Language\tJava\tO\n+\tB-Code_Block\t+\tO\n=\tI-Code_Block\t=\tO\noperator\tO\toperator\tO\nhas\tO\thas\tO\nan\tO\tan\tO\nimplicit\tO\timplicit\tO\ncast\tO\tcast\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nhand\tO\thand\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ngoes\tO\tgoes\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\ncomposed\tO\tcomposed\tO\noperators\tO\toperators\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_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/questions/608721/\tO\thttps://stackoverflow.com/questions/608721/\tO\n\t\n\t\nAs\tO\tAs\tO\neveryone\tO\teveryone\tO\nalready\tO\talready\tO\nstated\tO\tstated\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n+\tB-Code_Block\t+\tO\n=\tI-Code_Block\t=\tO\nhas\tO\thas\tO\nan\tO\tan\tO\nimplicit\tO\timplicit\tO\ncast\tO\tcast\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nhelp\tO\thelp\tO\nillustrate\tO\tillustrate\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nback\tO\tback\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nperfect\tO\tperfect\tO\nfor\tO\tfor\tO\nthese\tO\tthese\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nquestions\tO\tquestions\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nan\tO\tan\tO\nonline\tO\tonline\tO\ndisassembler\tO\tdisassembler\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nbytecode\tO\tbytecode\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nbeing\tO\tbeing\tO\nproduced\tO\tproduced\tO\n:\tO\t:\tO\nhttp://javabytes.herokuapp.com/\tO\thttp://javabytes.herokuapp.com/\tO\n\t\nAnd\tO\tAnd\tO\na\tO\ta\tO\ntable\tB-User_Interface_Element\ttable\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\nmeanings\tO\tmeanings\tO\n:\tO\t:\tO\n\t\nhttp://en.wikipedia.org/wiki/Java_bytecode_instruction_listings\tO\thttp://en.wikipedia.org/wiki/Java_bytecode_instruction_listings\tO\n\t\nSo\tO\tSo\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbytecode\tO\tbytecode\tO\nfrom\tO\tfrom\tO\nsome\tO\tsome\tO\nsimple\tO\tsimple\tO\nJava\tB-Language\tJava\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1923\tI-Code_Block\tA_1923\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDisassembled\tO\tDisassembled\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncomments\tO\tcomments\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\na\tO\ta\tO\n//\tB-Value\t//\tO\nin\tO\tin\tO\nfront\tO\tfront\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1924\tI-Code_Block\tA_1924\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45446253\tO\t45446253\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45446253/\tO\thttps://stackoverflow.com/questions/45446253/\tO\n\t\n\t\nSay\tO\tSay\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvector\tB-Data_Structure\tvector\tO\nname\tO\tname\tO\n\"\tO\t\"\tO\nstr\tB-Variable_Name\tstr\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ncontain\tO\tcontain\tO\nmany\tO\tmany\tO\nstrings\tB-Data_Type\tstrings\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5931\tI-Code_Block\tQ_5931\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndata\tB-Library_Class\tdata\tO\nframe\tI-Library_Class\tframe\tO\nnamed\tO\tnamed\tO\n'\tO\t'\tO\nStates\tB-Variable_Name\tStates\tO\n'\tO\t'\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5932\tI-Code_Block\tQ_5932\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nan\tO\tan\tO\nextra\tO\textra\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nnames\tO\tnames\tO\n\"\tO\t\"\tO\nState\tB-Variable_Name\tState\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\n\"\tO\t\"\tO\nstr\tB-Variable_Name\tstr\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncity\tO\tcity\tO\nname\tO\tname\tO\nas\tO\tas\tO\npattern\tO\tpattern\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\ngrep\tB-Code_Block\tgrep\tO\n\"\tO\t\"\tO\nthe\tO\tthe\tO\nstr\tB-Variable_Name\tstr\tO\nvector\tB-Data_Structure\tvector\tO\n,\tO\t,\tO\nif\tO\tif\tO\nmatch\tO\tmatch\tO\n\"\tO\t\"\tO\nhouston\tO\thouston\tO\n\"\tO\t\"\tO\nthen\tO\tthen\tO\nput\tO\tput\tO\n\"\tO\t\"\tO\nTX\tO\tTX\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n,\tO\t,\tO\nif\tO\tif\tO\nmatch\tO\tmatch\tO\nPhoenix\tO\tPhoenix\tO\nthen\tO\tthen\tO\nput\tO\tput\tO\nAZ\tO\tAZ\tO\n,\tO\t,\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\ndata\tB-Library_Class\tdata\tO\nframe\tI-Library_Class\tframe\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5933\tI-Code_Block\tQ_5933\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nsapply\tB-Code_Block\tsapply\tO\nor\tO\tor\tO\nfor\tB-Code_Block\tfor\tO\nloop\tI-Code_Block\tloop\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45446253\tO\t45446253\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45446253/\tO\thttps://stackoverflow.com/questions/45446253/\tO\n\t\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nconstruct\tO\tconstruct\tO\npattern\tO\tpattern\tO\nstring\tB-Data_Type\tstring\tO\nof\tO\tof\tO\nstate\tO\tstate\tO\nnames\tO\tnames\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6575\tI-Code_Block\tA_6575\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nstringr::str_extract_all\tB-Library_Function\tstringr::str_extract_all\tB-Code_Block\nor\tO\tor\tO\nstringr::str_extract\tB-Library_Function\tstringr::str_extract\tB-Code_Block\nto\tO\tto\tO\nextract\tO\textract\tO\nstate\tO\tstate\tO\nnames\tO\tnames\tO\nfrom\tO\tfrom\tO\nstring\tB-Data_Type\tstring\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nto\tO\tto\tO\ndata\tB-Library_Class\tdata\tO\nframe\tI-Library_Class\tframe\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6576\tI-Code_Block\tA_6576\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nmerge\tO\tmerge\tO\nearlier\tO\tearlier\tO\ndata\tB-Library_Class\tdata\tO\nframes\tI-Library_Class\tframes\tO\nto\tO\tto\tO\nobtain\tO\tobtain\tO\nsuitable\tO\tsuitable\tO\ndata\tB-Library_Class\tdata\tO\nframe\tI-Library_Class\tframe\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45446253\tO\t45446253\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45446253/\tO\thttps://stackoverflow.com/questions/45446253/\tO\n\t\n\t\nAlthough\tO\tAlthough\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nanswers\tO\tanswers\tO\nwork\tO\twork\tO\ngreat\tO\tgreat\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\nanother\tO\tanother\tO\nsolution\tO\tsolution\tO\nnot\tO\tnot\tO\nrelying\tO\trelying\tO\non\tO\ton\tO\nexternal\tO\texternal\tO\npackages\tO\tpackages\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6592\tI-Code_Block\tA_6592\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\ngives\tO\tgives\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6593\tI-Code_Block\tA_6593\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47718055\tO\t47718055\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47718055/\tO\thttps://stackoverflow.com/questions/47718055/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\na\tO\ta\tO\ncontainer\tO\tcontainer\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\ndocker-compose.yml\tB-File_Name\tdocker-compose.yml\tO\nfile\tO\tfile\tO\nwhen\tO\twhen\tO\nwe\tO\twe\tO\nrun\tO\trun\tO\nin\tO\tin\tO\ncomposition/override\tO\tcomposition/override\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\nfile\tO\tfile\tO\ndocker-compose.prod.yml\tB-File_Name\tdocker-compose.prod.yml\tO\n,\tO\t,\tO\nby\tO\tby\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6328\tI-Code_Block\tQ_6328\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\noverride\tO\toverride\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6329\tI-Code_Block\tQ_6329\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nrunning\tO\trunning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6330\tI-Code_Block\tQ_6330\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nActually\tO\tActually\tO\n,\tO\t,\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nwww\tB-Code_Block\twww\tB-Code_Block\nand\tO\tand\tO\ndb_for_development\tB-Code_Block\tdb_for_development\tB-Code_Block\ntogether\tO\ttogether\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nonly\tO\tonly\tO\nwww\tB-Code_Block\twww\tB-Code_Block\ncontainer\tO\tcontainer\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nothers\tO\tothers\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32667314\tO\t32667314\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32667314/\tO\thttps://stackoverflow.com/questions/32667314/\tO\n\t\n\t\nLive\tO\tLive\tO\nDemo\tO\tDemo\tO\non\tO\ton\tO\nShdr\tB-Application\tShdr\tO\nEditor\tI-Application\tEditor\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nNEED\tO\tNEED\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nright\tO\tright\tO\nto\tO\tto\tO\ncube\tO\tcube\tO\nand\tO\tand\tO\nzoom\tO\tzoom\tO\nin\tO\tin\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\neffect\tO\teffect\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nVertex\tO\tVertex\tO\nShader\tO\tShader\tO\nCode\tO\tCode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3968\tI-Code_Block\tQ_3968\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFragment\tO\tFragment\tO\nShader\tO\tShader\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3969\tI-Code_Block\tQ_3969\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nintention\tO\tintention\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nused\tO\tused\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nrender\tO\trender\tO\nto\tO\tto\tO\na\tO\ta\tO\n16x16\tO\t16x16\tO\nwindow\tB-User_Interface_Element\twindow\tO\n,\tO\t,\tO\nthus\tO\tthus\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\nconstrain\tO\tconstrain\tO\nit\tO\tit\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nhard\tO\thard\tO\ncoding\tO\tcoding\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmat4\tB-Library_Class\tmat4\tB-Code_Block\nis\tO\tis\tO\ntemporary\tO\ttemporary\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreal\tO\treal\tO\nlife\tO\tlife\tO\napplication\tO\tapplication\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\ngenerate\tO\tgenerate\tO\nintelligent\tO\tintelligent\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nuniform\tO\tuniform\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nivec4\tB-Library_Class\tivec4\tB-Code_Block\nrepresents\tO\trepresents\tO\na\tO\ta\tO\nquarter\tO\tquarter\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\n(\tO\t(\tO\n64\tO\t64\tO\npixels\tO\tpixels\tO\n)\tO\t)\tO\n;\tO\t;\tO\neach\tO\teach\tO\nint\tB-Data_Type\tint\tB-Code_Block\nof\tO\tof\tO\na\tO\ta\tO\nvector\tB-Data_Structure\tvector\tO\nrepresents\tO\trepresents\tO\na\tO\ta\tO\nrow\tB-User_Interface_Element\trow\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\n(\tO\t(\tO\n16\tO\t16\tO\npixels\tO\tpixels\tO\n)\tO\t)\tO\n;\tO\t;\tO\neach\tO\teach\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nan\tO\tan\tO\nint\tB-Data_Type\tint\tO\nrepresents\tO\trepresents\tO\none\tO\tone\tO\npixel\tO\tpixel\tO\n.\tO\t.\tO\n\t\nThus\tO\tThus\tO\nthe\tO\tthe\tO\nhard\tO\thard\tO\ncoded\tO\tcoded\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nhash\tB-Variable_Name\thash\tB-Code_Block\nshould\tO\tshould\tO\nhighlight\tO\thighlight\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nhalf\tO\thalf\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nrow\tB-User_Interface_Element\trow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nthoroughly\tO\tthoroughly\tO\nconfused\tO\tconfused\tO\nhere\tO\there\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nmostly\tO\tmostly\tO\nneed\tO\tneed\tO\nsomeone\tO\tsomeone\tO\nwho\tO\twho\tO\nhas\tO\thas\tO\nn't\tO\tn't\tO\nseen\tO\tseen\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nbefore\tO\tbefore\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nthrough\tO\tthrough\tO\nit\tO\tit\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwent\tO\twent\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstumped\tO\tstumped\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfrag\tO\tfrag\tO\nshader\tO\tshader\tO\nlast\tO\tlast\tO\ntwo\tO\ttwo\tO\nlines\tO\tlines\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nbit\tB-Variable_Name\tbit\tB-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nfloor\tO\tfloor\tO\nof\tO\tof\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\n's\tO\t's\tO\nmod\tO\tmod\tO\n2\tO\t2\tO\n:\tO\t:\tO\neither\tO\teither\tO\n0\tB-Value\t0\tO\nor\tO\tor\tO\n1\tB-Value\t1\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nrendered\tO\trendered\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15566681\tO\t15566681\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15566681/\tO\thttps://stackoverflow.com/questions/15566681/\tO\n\t\n\t\nHere\tO\tHere\tO\ns\tO\ts\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nextend\tO\textend\tO\na\tO\ta\tO\ntextbox\tB-User_Interface_Element\ttextbox\tO\nwith\tO\twith\tO\nmicrosoft\tB-Organization\tmicrosoft\tO\najax\tB-Library\tajax\tO\nlibary\tO\tlibary\tO\n\t\nOn\tO\tOn\tO\nPage\tO\tPage\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCode\tO\tCode\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n.js\tB-File_Type\t.js\tO\nfile\tO\tfile\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\non\tO\ton\tO\ndebug\tO\tdebug\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n\t\nwhat\tO\twhat\tO\nwrong\tO\twrong\tO\nam\tO\tam\tO\ni\tO\ti\tO\ndoing\tO\tdoing\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8724161\tO\t8724161\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8724161/\tO\thttps://stackoverflow.com/questions/8724161/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nwebapp\tO\twebapp\tO\nwritten\tO\twritten\tO\nwith\tO\twith\tO\nspring\tB-Library\tspring\tO\n3\tB-Version\t3\tO\nand\tO\tand\tO\nstruts\tB-Library\tstruts\tO\n2\tB-Version\t2\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nhosted\tO\thosted\tO\non\tO\ton\tO\na\tO\ta\tO\nglassfish\tB-Application\tglassfish\tO\nserver\tI-Application\tserver\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\napp\tO\tapp\tO\ni\tO\ti\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\nwebservices\tO\twebservices\tO\nthat\tO\tthat\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nbackground\tO\tbackground\tO\nwork\tO\twork\tO\nwithout\tO\twithout\tO\ndelaying\tO\tdelaying\tO\nthe\tO\tthe\tO\naccessed\tO\taccessed\tO\nmethod\tO\tmethod\tO\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nnow\tO\tnow\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nspring\tB-Library_Class\tspring\tO\nbean\tI-Library_Class\tbean\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\norg.springframework.core.task.TaskExecutor\tB-Library_Class\torg.springframework.core.task.TaskExecutor\tB-Code_Block\nand\tO\tand\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\ni\tO\ti\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\nnew\tO\tnew\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\ncorrect/best\tO\tcorrect/best\tO\npractice\tO\tpractice\tO\napproach\tO\tapproach\tO\nin\tO\tin\tO\ncontext\tO\tcontext\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\napp\tO\tapp\tO\non\tO\ton\tO\nglassfish\tB-Application\tglassfish\tO\n?\tO\t?\tO\n\t\nor\tO\tor\tO\nshould\tO\tshould\tO\nfind\tO\tfind\tO\nanother\tO\tanother\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8724161\tO\t8724161\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8724161/\tO\thttps://stackoverflow.com/questions/8724161/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ndiscouraged\tO\tdiscouraged\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nthreads\tO\tthreads\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\napp\tB-Application\tapp\tO\nserver\tI-Application\tserver\tO\nis\tO\tis\tO\nmeant\tO\tmeant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\ncharge\tO\tcharge\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nanswers\tO\tanswers\tO\nto\tO\tto\tO\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nspawning\tO\tspawning\tO\nthreads\tO\tthreads\tO\nin\tO\tin\tO\nJava\tB-Language\tJava\tO\nEE\tB-Version\tEE\tO\ncontainer\tO\tcontainer\tO\ndiscouraged\tO\tdiscouraged\tO\n?\tO\t?\tO\n\t\nHowever\tO\tHowever\tO\nin\tO\tin\tO\npractice\tO\tpractice\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\napplication\tO\tapplication\tO\non\tO\ton\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nOK\tO\tOK\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfixed\tO\tfixed\tO\nthread\tO\tthread\tO\npool\tO\tpool\tO\n.\tO\t.\tO\n\t\nBe\tO\tBe\tO\nsure\tO\tsure\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nthreads\tO\tthreads\tO\nare\tO\tare\tO\ngone\tO\tgone\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nundeploy\tO\tundeploy\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\nexpect\tO\texpect\tO\nSpring\tB-Library\tSpring\tO\nclasses\tO\tclasses\tO\nwill\tO\twill\tO\nhandle\tO\thandle\tO\ndisposal\tO\tdisposal\tO\non\tO\ton\tO\nundeploy\tO\tundeploy\tO\n/\tO\t/\tO\nshutdown\tO\tshutdown\tO\ncorrectly\tO\tcorrectly\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndeclare\tO\tdeclare\tO\nthem\tO\tthem\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nSpring\tB-Library\tSpring\tO\ncontainer\tO\tcontainer\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33285933\tO\t33285933\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33285933/\tO\thttps://stackoverflow.com/questions/33285933/\tO\n\t\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nto\tO\tto\tO\na\tO\ta\tO\nPHP\tB-Language\tPHP\tO\npage\tO\tpage\tO\na\tO\ta\tO\nFormData\tB-Library_Class\tFormData\tO\nvalue\tO\tvalue\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nString\tB-Data_Type\tString\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nJS\tB-Language\tJS\tO\nside\tO\tside\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4042\tI-Code_Block\tQ_4042\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nPHP\tB-Language\tPHP\tO\nside\tO\tside\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4043\tI-Code_Block\tQ_4043\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nsaying\tO\tsaying\tO\nthat\tO\tthat\tO\ntype\tB-Variable_Name\ttype\tO\nand\tO\tand\tO\nid\tB-Variable_Name\tid\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nguessing\tO\tguessing\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nprocessData\tB-Library_Variable\tprocessData\tO\n:\tO\t:\tO\nfalse\tB-Value\tfalse\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\najax\tB-Library_Function\tajax\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwithout\tO\twithout\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ninevitable\tO\tinevitable\tO\nIllegal\tB-Error_Name\tIllegal\tO\nInvocation\tI-Error_Name\tInvocation\tO\n,\tO\t,\tO\ncoming\tO\tcoming\tO\nfrom\tO\tfrom\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nFormData\tB-Library_Class\tFormData\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nFormData\tB-Library_Class\tFormData\tO\nAND\tO\tAND\tO\nmy\tO\tmy\tO\nString\tB-Data_Type\tString\tO\nvalues\tO\tvalues\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncall\tO\tcall\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33285933\tO\t33285933\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33285933/\tO\thttps://stackoverflow.com/questions/33285933/\tO\n\t\n\t\nI\tO\tI\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nFormData\tB-Library_Class\tFormData\tB-Code_Block\nobject\tO\tobject\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nappend\tO\tappend\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nvalues\tO\tvalues\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nFormData\tB-Library_Class\tFormData\tB-Code_Block\nobject\tO\tobject\tO\n,\tO\t,\tO\nand\tO\tand\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ndata\tB-Library_Variable\tdata\tB-Code_Block\nparameter\tO\tparameter\tO\nin\tO\tin\tO\njQuery\tB-Library\tjQuery\tB-Code_Block\n's\tO\t's\tI-Code_Block\n$\tB-Library_Function\t$\tI-Code_Block\n.ajax\tI-Library_Function\t.ajax\tI-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nappend\tO\tappend\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nFormData\tB-Library_Class\tFormData\tB-Code_Block\nobject\tO\tobject\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nappend\tB-Library_Function\tappend\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4744\tI-Code_Block\tA_4744\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n49169495\tO\t49169495\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49169495/\tO\thttps://stackoverflow.com/questions/49169495/\tO\n\t\n\t\nThe\tO\tThe\tO\napp\tO\tapp\tO\nwill\tO\twill\tO\nreside\tO\treside\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nphone\tB-Device\tphone\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nnot\tO\tnot\tO\nvisible\tO\tvisible\tO\nthrough\tO\tthrough\tO\nan\tO\tan\tO\nicon\tB-User_Interface_Element\ticon\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nthrough\tO\tthrough\tO\nbackground\tO\tbackground\tO\nrefresh\tO\trefresh\tO\nor\tO\tor\tO\nin\tO\tin\tO\nany\tO\tany\tO\nother\tO\tother\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nIt\tO\tIt\tO\nPossible\tO\tPossible\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n49169495\tO\t49169495\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49169495/\tO\thttps://stackoverflow.com/questions/49169495/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\nappicon\tB-User_Interface_Element\tappicon\tO\nto\tO\tto\tO\ntransparent\tB-User_Interface_Element\ttransparent\tO\nicon\tI-User_Interface_Element\ticon\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nApple\tB-Organization\tApple\tO\nDocumentation\tO\tDocumentation\tO\nsays\tO\tsays\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nhttps://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/\tO\thttps://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/\tO\n\t\nSo\tO\tSo\tO\nyour\tO\tyour\tO\ntransparent\tO\ttransparent\tO\npart\tO\tpart\tO\nwill\tO\twill\tO\nbecome\tO\tbecome\tO\nblack\tO\tblack\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20231140\tO\t20231140\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20231140/\tO\thttps://stackoverflow.com/questions/20231140/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nindexed\tO\tindexed\tO\nassignments\tO\tassignments\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nvector\tB-Library_Class\tvector\tO\nSTL\tB-Library\tSTL\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncount\tO\tcount\tO\nall\tO\tall\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nvector\tB-Library_Class\tvector\tO\n(\tO\t(\tO\ncalled\tO\tcalled\tO\n_assignments\tB-Variable_Name\t_assignments\tO\n)\tO\t)\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nwith\tO\twith\tO\nextra\tO\textra\tO\nprinting\tO\tprinting\tO\nfor\tO\tfor\tO\ndemonstration\tO\tdemonstration\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2150\tI-Code_Block\tQ_2150\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nassigning\tO\tassigning\tO\nthe\tO\tthe\tO\ncount\tO\tcount\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\n_counts\tB-Variable_Name\t_counts\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nprints\tO\tprints\tO\nin\tO\tin\tO\n(\tO\t(\tO\n1)\tO\t1)\tO\n:\tO\t:\tO\nonly\tO\tonly\tO\na\tO\ta\tO\nblank\tO\tblank\tO\nline\tO\tline\tO\nis\tO\tis\tO\nprinted\tO\tprinted\tO\nin\tO\tin\tO\n(\tO\t(\tO\n2)\tO\t2)\tO\n.\tO\t.\tO\n\t\nEx\tO\tEx\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\n_assignments\tB-Variable_Name\t_assignments\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nit\tO\tit\tO\nprints\tO\tprints\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\n(\tO\t(\tO\nin\tO\tin\tO\n(\tO\t(\tO\n2)\tO\t2)\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nspaced\tO\tspaced\tO\n)\tO\t)\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nAs\tO\tAs\tO\nsuggested\tO\tsuggested\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\n,\tO\t,\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nreserve\tB-Library_Function\treserve\tO\nto\tO\tto\tO\nresize\tB-Library_Function\tresize\tO\nand\tO\tand\tO\nit\tO\tit\tO\nfixed\tO\tfixed\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23654495\tO\t23654495\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23654495/\tO\thttps://stackoverflow.com/questions/23654495/\tO\n\t\n\t\nMy\tO\tMy\tO\ngoal\tO\tgoal\tO\nis\tO\tis\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nnew\tO\tnew\tO\nentity\tO\tentity\tO\nof\tO\tof\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ntype\tO\ttype\tO\nand\tO\tand\tO\npush\tO\tpush\tO\nit\tO\tit\tO\nto\tO\tto\tO\nmanager\tO\tmanager\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\nnew\tO\tnew\tO\nentity\tO\tentity\tO\ntype\tO\ttype\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2623\tI-Code_Block\tQ_2623\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nnew\tO\tnew\tO\nentity\tO\tentity\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\ntype\tO\ttype\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfetch\tB-Library_Function\tfetch\tO\nmetadata\tI-Library_Function\tmetadata\tO\nfirst\tO\tfirst\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2624\tI-Code_Block\tQ_2624\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nerror\tO\terror\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nentityManager.fetchMetadata()\tB-Library_Function\tentityManager.fetchMetadata()\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nTypeError\tB-Error_Name\tTypeError\tO\n:\tO\t:\tO\nCannot\tO\tCannot\tO\ncall\tO\tcall\tO\nmethod\tO\tmethod\tO\n'\tO\t'\tO\nthen\tO\tthen\tO\n'\tO\t'\tO\nof\tO\tof\tO\nundefined\tO\tundefined\tO\n\"\tO\t\"\tO\n\t\nWhy\tO\tWhy\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nseeing\tO\tseeing\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n?\tO\t?\tO\n\t\ndoes\tO\tdoes\tO\nfetchMetadata()\tB-Library_Function\tfetchMetadata()\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nhttp\tO\thttp\tO\n:\tO\t:\tO\nGET\tO\tGET\tO\nmetadata\tO\tmetadata\tO\nfrom\tO\tfrom\tO\nsomewhere\tO\tsomewhere\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nanywhere.\tO\tanywhere.\tO\n.\tO\t.\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nmetadata\tO\tmetadata\tO\nthen\tO\tthen\tO\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\n\t\nfollowing\tO\tfollowing\tO\nsuggestions\tO\tsuggestions\tO\nI\tO\tI\tO\n've\tO\t've\tO\nrewrite\tO\trewrite\tO\ncode\tO\tcode\tO\ninto\tO\tinto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2625\tI-Code_Block\tQ_2625\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23654495\tO\t23654495\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23654495/\tO\thttps://stackoverflow.com/questions/23654495/\tO\n\t\n\t\nBreeze\tB-Library\tBreeze\tO\nmetadata\tO\tmetadata\tO\nis\tO\tis\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nobjects\tO\tobjects\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfetch\tO\tfetch\tO\nmetadata\tO\tmetadata\tO\nfrom\tO\tfrom\tO\nserver-side\tO\tserver-side\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nmetadata\tO\tmetadata\tO\nby\tO\tby\tO\nyourself\tO\tyourself\tO\nand\tO\tand\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nserver-side\tO\tserver-side\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\nbreeze\tB-Library\tbreeze\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nentity\tO\tentity\tO\nmanager\tO\tmanager\tO\nwith\tO\twith\tO\nvar\tB-Code_Block\tvar\tB-Code_Block\nentityManager\tI-Code_Block\tentityManager\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nnew\tI-Code_Block\tnew\tI-Code_Block\nbreeze.EntityManager('api/Db')\tI-Code_Block\tbreeze.EntityManager('api/Db')\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nwhere\tO\twhere\tO\napi/db\tO\tapi/db\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\nasp.net\tB-Library\tasp.net\tO\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncontroller\tO\tcontroller\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\na\tO\ta\tO\nMetadata()\tB-Library_Function\tMetadata()\tB-Code_Block\nmethod\tO\tmethod\tO\nwhich\tO\twhich\tO\nreturns\tO\treturns\tO\nrepository.Metadata()\tB-Library_Function\trepository.Metadata()\tB-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\njs\tB-Language\tjs\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nentityManager.fetchMetadata()\tB-Code_Block\tentityManager.fetchMetadata()\tB-Code_Block\n.then(success,failed)\tI-Code_Block\t.then(success,failed)\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nAfter\tO\tAfter\tO\nthe\tO\tthe\tO\npromise\tO\tpromise\tO\nof\tO\tof\tO\nfetchMetadata()\tB-Library_Function\tfetchMetadata()\tB-Code_Block\nis\tO\tis\tO\nresolved\tO\tresolved\tO\n,\tO\t,\tO\nbreeze\tB-Library\tbreeze\tO\nmetadata\tO\tmetadata\tO\nof\tO\tof\tO\nvariable\tO\tvariable\tO\nentityManager\tB-Library_Variable\tentityManager\tB-Code_Block\nis\tO\tis\tO\nfull-filled\tO\tfull-filled\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstart\tO\tstart\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nserver-side\tB-Application\tserver-side\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\njs\tB-Language\tjs\tO\nwith\tO\twith\tO\nbreeze\tB-Library\tbreeze\tO\n!\tO\t!\tO\n\t\nBut\tO\tBut\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nwork\tO\twork\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nmetadata\tO\tmetadata\tO\nfrom\tO\tfrom\tO\nserver-side\tB-Application\tserver-side\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfly\tO\tfly\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\njs\tB-Language\tjs\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nmetadataStore\tB-Library_Class\tmetadataStore\tO\n,\tO\t,\tO\nattach\tO\tattach\tO\nit\tO\tit\tO\nto\tO\tto\tO\nentitymanager\tB-Library_Class\tentitymanager\tO\n.\tO\t.\tO\n\t\nPseudo\tO\tPseudo\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3236\tI-Code_Block\tA_3236\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nworking\tO\tworking\tO\nsample\tO\tsample\tO\nfrom\tO\tfrom\tO\nbreeze\tB-Library\tbreeze\tO\nwith\tO\twith\tO\non-the-fly\tO\ton-the-fly\tO\nmetadata\tO\tmetadata\tO\nhttp://www.breezejs.com/breeze-labs/breezedirectivesvalidation\tO\thttp://www.breezejs.com/breeze-labs/breezedirectivesvalidation\tO\n\t\nYou\tO\tYou\tO\nclick\tO\tclick\tO\non\tO\ton\tO\ncode\tO\tcode\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nor\tO\tor\tO\njust\tO\tjust\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nhttp://plnkr.co/edit/lxPAbIJmRaLmyagXQAFC?p=info\tO\thttp://plnkr.co/edit/lxPAbIJmRaLmyagXQAFC?p=info\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nsources\tO\tsources\tO\n\t\nAlso\tO\tAlso\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nin\tO\tin\tO\nbreeze\tB-Library\tbreeze\tO\ndocs\tO\tdocs\tO\nhttp://www.breezejs.com/documentation/metadata\tO\thttp://www.breezejs.com/documentation/metadata\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26877362\tO\t26877362\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26877362/\tO\thttps://stackoverflow.com/questions/26877362/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nFirefox\tB-Application\tFirefox\tO\nDeveloper\tI-Application\tDeveloper\tO\nEdition\tI-Application\tEdition\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstruggling\tO\tstruggling\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nWebIDE\tB-Application\tWebIDE\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nsmartphone\tB-Device\tsmartphone\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsaid\tO\tsaid\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndebug\tO\tdebug\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\nChrome\tB-Application\tChrome\tO\n37+\tB-Version\t37+\tO\non\tO\ton\tO\nandroid\tB-Operating_System\tandroid\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nconnect\tO\tconnect\tO\nit\tO\tit\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nmac\tB-Device\tmac\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nWebIDE\tB-Application\tWebIDE\tO\nto\tO\tto\tO\nrecognize\tO\trecognize\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nit\tO\tit\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nOperation\tB-Error_Name\tOperation\tO\nfailed\tI-Error_Name\tfailed\tO\n:\tO\t:\tO\ninstalling\tO\tinstalling\tO\nand\tO\tand\tO\nrunning\tO\trunning\tO\napp\tO\tapp\tO\n:\tO\t:\tO\nCa\tO\tCa\tO\nn't\tO\tn't\tO\ninstall\tO\tinstall\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nalready\tO\talready\tO\nsetup\tO\tsetup\tO\ndeveloper\tO\tdeveloper\tO\nmode\tO\tmode\tO\non\tO\ton\tO\nandroid\tB-Operating_System\tandroid\tO\nand\tO\tand\tO\nturned\tO\tturned\tO\non\tO\ton\tO\ndebugg\tO\tdebugg\tO\nusb\tO\tusb\tO\nmode\tO\tmode\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44527799\tO\t44527799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44527799/\tO\thttps://stackoverflow.com/questions/44527799/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nit\tO\tit\tO\nnever\tO\tnever\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ntarget\tB-Variable_Name\ttarget\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ninput\tO\tinput\tO\n\"\tB-Value\t\"\tO\ndave\tI-Value\tdave\tO\n\"\tI-Value\t\"\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nremain\tO\tremain\tO\n\"\tB-Value\t\"\tO\ndave\tI-Value\tdave\tO\n\"\tI-Value\t\"\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\ncalls\tO\tcalls\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nare\tO\tare\tO\nmade\tO\tmade\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5788\tI-Code_Block\tQ_5788\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nfriend\tB-Class_Name\tfriend\tO\nvia\tO\tvia\tO\nthis\tO\tthis\tO\naddFriend\tB-Function_Name\taddFriend\tO\nmethod\tO\tmethod\tO\nfirstFriend\tB-Variable_Name\tfirstFriend\tO\nwill\tO\twill\tO\nend\tO\tend\tO\nup\tO\tup\tO\nprinting\tO\tprinting\tO\nwhatever\tO\twhatever\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nadded\tO\tadded\tO\nname\tO\tname\tO\nwas\tO\twas\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ninputted\tO\tinputted\tO\nnamed\tO\tnamed\tO\nwere\tO\twere\tO\nrob\tB-Value\trob\tO\nbill\tI-Value\tbill\tO\nand\tO\tand\tO\ntravis\tB-Value\ttravis\tO\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ntravis\tB-Value\ttravis\tO\ntravis\tI-Value\ttravis\tO\ntravis\tI-Value\ttravis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5789\tI-Code_Block\tQ_5789\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44527799\tO\t44527799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44527799/\tO\thttps://stackoverflow.com/questions/44527799/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6441\tI-Code_Block\tA_6441\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nelse\tO\telse\tO\npart\tO\tpart\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\naway\tO\taway\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\neffect\tO\teffect\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nchecks\tO\tchecks\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nvalue\tO\tvalue\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nup\tO\tup\tO\nit\tO\tit\tO\nis\tO\tis\tO\ncoming\tO\tcoming\tO\nout\tO\tout\tO\nstraight\tO\tstraight\tO\naway\tO\taway\tO\n.\tO\t.\tO\n\t\nChange\tO\tChange\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6442\tI-Code_Block\tA_6442\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\nreturn\tB-Code_Block\treturn\tB-Code_Block\nnull\tI-Code_Block\tnull\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nand\tO\tand\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nelse\tB-Code_Block\telse\tO\npart\tO\tpart\tO\nmentioned\tO\tmentioned\tO\nabove\tO\tabove\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44527799\tO\t44527799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44527799/\tO\thttps://stackoverflow.com/questions/44527799/\tO\n\t\n\t\nYou\tO\tYou\tO\nalways\tO\talways\tO\nreturn\tO\treturn\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\niteration\tO\titeration\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nperson\tB-Class_Name\tperson\tO\nis\tO\tis\tO\nfound\tO\tfound\tO\nit\tO\tit\tO\n's\tO\t's\tO\nreturned\tO\treturned\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nif\tB-Code_Block\tif\tB-Code_Block\nbranch\tO\tbranch\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\n,\tO\t,\tO\nnull\tB-Value\tnull\tB-Code_Block\nis\tO\tis\tO\nreturned\tO\treturned\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nelse\tB-Code_Block\telse\tB-Code_Block\nbranch\tO\tbranch\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nkeep\tO\tkeep\tO\niterating\tO\titerating\tO\nuntil\tO\tuntil\tO\nyou\tO\tyou\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nperson\tB-Class_Name\tperson\tO\nor\tO\tor\tO\nexhaust\tO\texhaust\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\ncondition\tO\tcondition\tO\n,\tO\t,\tO\nBTW\tO\tBTW\tO\n,\tO\t,\tO\nis\tO\tis\tO\na\tO\ta\tO\nsubset\tO\tsubset\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n(\tO\t(\tO\nif\tO\tif\tO\nfirstPerson\tB-Variable_Name\tfirstPerson\tB-Code_Block\nis\tO\tis\tO\nnull\tB-Value\tnull\tB-Code_Block\ntarget\tB-Variable_Name\ttarget\tO\nwill\tO\twill\tO\njust\tO\tjust\tO\nbecome\tO\tbecome\tO\nnull\tB-Value\tnull\tB-Code_Block\nimmediately\tO\timmediately\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\n(\tO\t(\tO\nshould\tO\tshould\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nalso\tO\talso\tO\nbe\tO\tbe\tO\nremoved\tO\tremoved\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6440\tI-Code_Block\tA_6440\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12381646\tO\t12381646\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12381646/\tO\thttps://stackoverflow.com/questions/12381646/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nasked\tO\tasked\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\nbefore\tO\tbefore\tO\nabout\tO\tabout\tO\nretrieving\tO\tretrieving\tO\na\tO\ta\tO\npdf\tB-File_Type\tpdf\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nand\tO\tand\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nEventhough\tO\tEventhough\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nwas\tO\twas\tO\nworking\tO\tworking\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nearlier\tO\tearlier\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nretrieve\tO\tretrieve\tO\nfile\tO\tfile\tO\ncontents\tO\tcontents\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nfile\tO\tfile\tO\nname\tO\tname\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\n\"\tB-Code_Block\t\"\tB-Code_Block\n%\tI-Code_Block\t%\tI-Code_Block\nPDF-1.4\tI-Code_Block\tPDF-1.4\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\nobj\tI-Code_Block\tobj\tI-Code_Block\n<</AcroForm\tI-Code_Block\t<</AcroForm\tI-Code_Block\n<</DR\tI-Code_Block\t<</DR\tI-Code_Block\n<</Font\tI-Code_Block\t<</Font\tI-Code_Block\n<</Helvetica\tI-Code_Block\t<</Helvetica\tI-Code_Block\n220\tI-Code_Block\t220\tI-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\nR>>\tI-Code_Block\tR>>\tI-Code_Block\n/ProcSet\tI-Code_Block\t/ProcSet\tI-Code_Block\n[/PDF\tI-Code_Block\t[/PDF\tI-Code_Block\n/Text]>>\tI-Code_Block\t/Text]>>\tI-Code_Block\n/Fields\tI-Code_Block\t/Fields\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1167\tI-Code_Block\tQ_1167\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nuploaded\tO\tuploaded\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1168\tI-Code_Block\tQ_1168\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nfiled\tO\tfiled\tO\nis\tO\tis\tO\na\tO\ta\tO\nvarchar\tB-Data_Type\tvarchar\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23836873\tO\t23836873\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23836873/\tO\thttps://stackoverflow.com/questions/23836873/\tO\n\t\n\t\nsuppose\tO\tsuppose\tO\nthat\tO\tthat\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nJFilechooser\tB-Library_Class\tJFilechooser\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nchoosed\tO\tchoosed\tO\na\tO\ta\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\nwhich\tO\twhich\tO\ncontained\tO\tcontained\tO\n1\tO\t1\tO\nline\tO\tline\tO\n,\tO\t,\tO\nsay.\tO\tsay.\tO\n.\tO\t.\tO\n\"\tB-Value\t\"\tO\nhello\tI-Value\thello\tO\nworld\tI-Value\tworld\tO\n\"\tI-Value\t\"\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2634\tI-Code_Block\tQ_2634\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhen\tO\twhen\tO\nwe\tO\twe\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ncontents\tO\tcontents\tO\nwe\tO\twe\tO\nget\tO\tget\tO\n\"\tB-Value\t\"\tB-Code_Block\nhello\tI-Value\thello\tI-Code_Block\nworld\tI-Value\tworld\tI-Code_Block\n\"\tI-Value\t\"\tI-Code_Block\n\t\nbut\tO\tbut\tO\nwhat\tO\twhat\tO\nhappens\tO\thappens\tO\nif\tO\tif\tO\nwe\tO\twe\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\ncontents\tO\tcontents\tO\nand\tO\tand\tO\nadded\tO\tadded\tO\nsome\tO\tsome\tO\nnew\tO\tnew\tO\nlines\tO\tlines\tO\n,\tO\t,\tO\nand\tO\tand\tO\nprinted\tO\tprinted\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\njava\tB-Language\tjava\tO\nstores\tO\tstores\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\n?\tO\t?\tO\n\t\nor\tO\tor\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nreads\tO\treads\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nand\tO\tand\tO\nconsequently\tO\tconsequently\tO\nprints\tO\tprints\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nlines\tO\tlines\tO\nwe\tO\twe\tO\nadded\tO\tadded\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23836873\tO\t23836873\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23836873/\tO\thttps://stackoverflow.com/questions/23836873/\tO\n\t\n\t\nThat\tO\tThat\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrules\tO\trules\tO\nare\tO\tare\tO\nsimple\tO\tsimple\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nread\tO\tread\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nFileInputStream\tB-Library_Class\tFileInputStream\tB-Code_Block\nor\tO\tor\tO\na\tO\ta\tO\nFileReader\tB-Library_Class\tFileReader\tB-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nOS\tO\tOS\tO\nmight\tO\tmight\tO\noptimize\tO\toptimize\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nedited\tO\tedited\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nsimply\tO\tsimply\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ncontents\tO\tcontents\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nself\tO\tself\tO\nconstructed\tO\tconstructed\tO\nbuffer\tO\tbuffer\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n:\tO\t:\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tB-Code_Block\nor\tO\tor\tO\na\tO\ta\tO\nbyte[]\tB-Data_Type\tbyte[]\tB-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nchanges\tO\tchanges\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nthe\tO\tthe\tO\nbuffer\tO\tbuffer\tO\nwill\tO\twill\tO\nremained\tO\tremained\tO\nunchanged\tO\tunchanged\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23836873\tO\t23836873\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23836873/\tO\thttps://stackoverflow.com/questions/23836873/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nFile\tB-Library_Class\tFile\tB-Code_Block\n,\tO\t,\tO\nnothing\tO\tnothing\tO\nactually\tO\tactually\tO\nhappens\tO\thappens\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlocation\tO\tlocation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nstored\tO\tstored\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nlike\tO\tlike\tO\nsetting\tO\tsetting\tO\nyour\tO\tyour\tO\nGPS\tB-Device\tGPS\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nsomewhere\tO\tsomewhere\tO\nversus\tO\tversus\tO\ndriving\tO\tdriving\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nJavadoc\tB-Application\tJavadoc\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17722205\tO\t17722205\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17722205/\tO\thttps://stackoverflow.com/questions/17722205/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable\tB-User_Interface_Element\ttable\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nwith\tO\twith\tO\nYes/No\tB-Value\tYes/No\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\nvalues\tO\tvalues\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1815\tI-Code_Block\tQ_1815\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nrow\tB-User_Interface_Element\trow\tO\nif\tO\tif\tO\nActiveYN\tB-Variable_Name\tActiveYN\tO\nis\tO\tis\tO\n'\tB-Value\t'\tO\nYes\tI-Value\tYes\tO\n'\tB-Value\t'\tO\nand\tO\tand\tO\nHide\tO\tHide\tO\nid\tO\tid\tO\nActiveYN\tB-Variable_Name\tActiveYN\tO\nis\tO\tis\tO\n'\tB-Value\t'\tO\nNo\tI-Value\tNo\tO\n'\tB-Value\t'\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nActiveYN\tB-Variable_Name\tActiveYN\tO\ninside\tO\tinside\tO\nJQuery\tB-Library\tJQuery\tO\nand\tO\tand\tO\nshow/hide\tO\tshow/hide\tO\naccordingly\tO\taccordingly\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17722205\tO\t17722205\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17722205/\tO\thttps://stackoverflow.com/questions/17722205/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2332\tI-Code_Block\tA_2332\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nrazor\tB-Language\trazor\tO\nsyntax\tO\tsyntax\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nclient-side\tB-Application\tclient-side\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2333\tI-Code_Block\tA_2333\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nin\tO\tin\tO\njQuery\tB-Library\tjQuery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2334\tI-Code_Block\tA_2334\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEdited\tO\tEdited\tO\nagain\tO\tagain\tO\nafter\tO\tafter\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nwas\tO\twas\tO\nedited\tO\tedited\tO\n,\tO\t,\tO\nnow\tO\tnow\tO\nif\tO\tif\tO\nwe\tO\twe\tO\nforget\tO\tforget\tO\nthe\tO\tthe\tO\nserver-side\tB-Application\tserver-side\tO\naltogether\tO\taltogether\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2335\tI-Code_Block\tA_2335\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUse\tO\tUse\tO\nthis\tO\tthis\tO\nstatement\tO\tstatement\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nclick\tO\tclick\tO\nhandler\tO\thandler\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\nremember\tO\tremember\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\ntext\tO\ttext\tO\nwhich\tO\twhich\tO\ncontains\tO\tcontains\tO\n\"\tB-Value\t\"\tO\nNo\tI-Value\tNo\tO\n\"\tI-Value\t\"\tO\nanywhere\tO\tanywhere\tO\nin\tO\tin\tO\na\tO\ta\tO\nrow\tB-User_Interface_Element\trow\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nmore\tO\tmore\tO\nprecise\tO\tprecise\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nregular\tO\tregular\tO\nexpressions\tO\texpressions\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\nexactly\tO\texactly\tO\na\tO\ta\tO\n\"\tB-Value\t\"\tO\nNo\tI-Value\tNo\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17722205\tO\t17722205\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17722205/\tO\thttps://stackoverflow.com/questions/17722205/\tO\n\t\n\t\nDEMO\tO\tDEMO\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2338\tI-Code_Block\tA_2338\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8209924\tO\t8209924\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8209924/\tO\thttps://stackoverflow.com/questions/8209924/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nsort\tB-Code_Block\tsort\tB-Code_Block\ncommand\tO\tcommand\tO\nin\tO\tin\tO\nLinux\tB-Operating_System\tLinux\tO\nto\tO\tto\tO\nsort\tB-Code_Block\tsort\tO\nstrings\tB-Data_Type\tstrings\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\nstrings\tB-Data_Type\tstrings\tO\ncontains\tO\tcontains\tO\nnon\tO\tnon\tO\nletter\tO\tletter\tO\ncharacters\tO\tcharacters\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n!\tB-Code_Block\t!\tB-Code_Block\n{%^$@#)(\tI-Code_Block\t{%^$@#)(\tI-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\nsort\tB-Code_Block\tsort\tB-Code_Block\nin\tO\tin\tO\nLinux\tB-Operating_System\tLinux\tO\nignores\tO\tignores\tO\nthese\tO\tthese\tO\ncharacters\tO\tcharacters\tO\nand\tO\tand\tO\nsort\tB-Code_Block\tsort\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nletters\tO\tletters\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsort\tB-Code_Block\tsort\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthese\tO\tthese\tO\ncharacters\tO\tcharacters\tO\n'\tO\t'\tO\nASCII\tO\tASCII\tO\ncode\tO\tcode\tO\nalso\tO\talso\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8209924\tO\t8209924\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8209924/\tO\thttps://stackoverflow.com/questions/8209924/\tO\n\t\n\t\nUse\tO\tUse\tO\na\tO\ta\tO\nlocale\tO\tlocale\tO\nof\tO\tof\tO\n\"\tB-Value\t\"\tO\nC\tI-Value\tC\tO\n\"\tI-Value\t\"\tO\nto\tO\tto\tO\nforce\tO\tforce\tO\nbitwise\tO\tbitwise\tO\ncollation\tO\tcollation\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_983\tI-Code_Block\tA_983\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5525308\tO\t5525308\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5525308/\tO\thttps://stackoverflow.com/questions/5525308/\tO\n\t\n\t\nwell\tO\twell\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nstring\tB-Data_Type\tstring\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_394\tI-Code_Block\tQ_394\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhow\tO\thow\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\niddiagrama\tB-Variable_Name\tiddiagrama\tO\n,\tO\t,\tO\nnombre\tB-Variable_Name\tnombre\tO\n,\tO\t,\tO\ntipo\tB-Variable_Name\ttipo\tO\n,\tO\t,\tO\ndescripcion\tB-Variable_Name\tdescripcion\tO\n!\tO\t!\tO\n\t\nnote\tO\tnote\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n1\tO\t1\tO\nof\tO\tof\tO\neveryone\tO\teveryone\tO\n!\tO\t!\tO\n\t\nfor\tO\tfor\tO\nexample\tO\texample\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nto\tO\tto\tO\nget\tO\tget\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\n!\tO\t!\tO\n\t\nmaybe\tO\tmaybe\tO\nin\tO\tin\tO\na\tO\ta\tO\narray\tB-Data_Structure\tarray\tO\nsomething\tO\tsomething\tO\nso\tO\tso\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_395\tI-Code_Block\tQ_395\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwith\tO\twith\tO\ntipo\tB-Variable_Name\ttipo\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndescription\tB-Variable_Name\tdescription\tO\n\t\nsome\tO\tsome\tO\nidea\tO\tidea\tO\n?\tO\t?\tO\n\t\n*\tO\t*\tO\nother\tO\tother\tO\nthing\tO\tthing\tO\n\t\nthe\tO\tthe\tO\nlenght\tO\tlenght\tO\nof\tO\tof\tO\ncharacteres\tB-Data_Type\tcharacteres\tO\nChange\tO\tChange\tO\n!\tO\t!\tO\n\t\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nsince\tO\tsince\tO\na\tO\ta\tO\nwebservice\tO\twebservice\tO\n!\tO\t!\tO\n\t\ni\tO\ti\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nit\tO\tit\tO\nmanuallity\tO\tmanuallity\tO\ndoes\tO\tdoes\tO\nsomeone\tO\tsomeone\tO\nhas\tO\thas\tO\na\tO\ta\tO\nexample\tO\texample\tO\nfor\tO\tfor\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlibrary\tO\tlibrary\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5525308\tO\t5525308\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5525308/\tO\thttps://stackoverflow.com/questions/5525308/\tO\n\t\n\t\none\tO\tone\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nconcatenate\tO\tconcatenate\tO\nthe\tO\tthe\tO\nstrings\tB-Data_Type\tstrings\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nto\tO\tto\tO\nform\tO\tform\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\na\tO\ta\tO\nfor\tB-Code_Block\tfor\tO\nloop\tO\tloop\tO\naround\tO\taround\tO\neach\tO\teach\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthat\tO\tthat\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5525308\tO\t5525308\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5525308/\tO\thttps://stackoverflow.com/questions/5525308/\tO\n\t\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nyour\tO\tyour\tO\nstring\tB-Data_Type\tstring\tO\ncontains\tO\tcontains\tO\ndata\tO\tdata\tO\ncoded\tO\tcoded\tO\nin\tO\tin\tO\nJSON\tB-File_Type\tJSON\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nJSON\tB-File_Type\tJSON\tO\nlibrary\tO\tlibrary\tO\nlike\tO\tlike\tO\ngoogle-gson\tB-Library\tgoogle-gson\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nmanually\tO\tmanually\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27681609\tO\t27681609\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27681609/\tO\thttps://stackoverflow.com/questions/27681609/\tO\n\t\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfairly\tO\tfairly\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\niOS\tB-Operating_System\tiOS\tO\ndevelopment\tO\tdevelopment\tO\nand\tO\tand\tO\nhave\tO\thave\tO\ndecide\tO\tdecide\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nown\tO\town\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nParse\tB-Library\tParse\tO\nas\tO\tas\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbackend\tO\tbackend\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\ncalls\tO\tcalls\tO\nin\tO\tin\tO\none\tO\tone\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nam\tO\tam\tO\nunsure\tO\tunsure\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\noptions\tO\toptions\tO\n:\tO\t:\tO\n\t\nCreate\tO\tCreate\tO\nseparate\tO\tseparate\tO\n.h\tB-File_Type\t.h\tO\nand\tO\tand\tO\n.m\tB-File_Type\t.m\tO\nfiles\tO\tfiles\tO\nand\tO\tand\tO\nput\tO\tput\tO\nall\tO\tall\tO\ndatabase\tO\tdatabase\tO\naccessors\tO\taccessors\tO\nthere\tO\tthere\tO\nas\tO\tas\tO\nstatic\tB-Data_Type\tstatic\tO\nmethods\tO\tmethods\tO\n\t\nCreate\tO\tCreate\tO\nbase\tO\tbase\tO\n.h\tB-File_Type\t.h\tO\nand\tO\tand\tO\n.m\tB-File_Type\t.m\tO\nfiles\tO\tfiles\tO\n(\tO\t(\tO\nthat\tO\tthat\tO\ninherit\tO\tinherit\tO\nfrom\tO\tfrom\tO\nUIViewController\tB-Library_Class\tUIViewController\tO\n)\tO\t)\tO\nand\tO\tand\tO\nput\tO\tput\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncalls\tO\tcalls\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nderive\tO\tderive\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nother\tO\tother\tO\nview\tO\tview\tO\ncontrollers\tO\tcontrollers\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\noptions\tO\toptions\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nthan\tO\tthan\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\noptions\tO\toptions\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27681609\tO\t27681609\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27681609/\tO\thttps://stackoverflow.com/questions/27681609/\tO\n\t\n\t\nWhile\tO\tWhile\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\npurely\tO\tpurely\tO\nopinion\tO\topinion\tO\nbased\tO\tbased\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nargue\tO\targue\tO\nfor\tO\tfor\tO\nsolution\tO\tsolution\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nseparation\tO\tseparation\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nmakes\tO\tmakes\tO\nit\tO\tit\tO\nclear\tO\tclear\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nmethods\tO\tmethods\tO\nare\tO\tare\tO\nlocated\tO\tlocated\tO\nboth\tO\tboth\tO\nwhen\tO\twhen\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\na\tO\ta\tO\nview\tO\tview\tO\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nCompare\tO\tCompare\tO\n[\tB-Code_Block\t[\tB-Code_Block\nDBConnector\tI-Code_Block\tDBConnector\tI-Code_Block\nperformDatabaseMethod\tI-Code_Block\tperformDatabaseMethod\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nto\tO\tto\tO\n[\tB-Code_Block\t[\tB-Code_Block\nself\tI-Code_Block\tself\tI-Code_Block\nperformDatabaseMethod\tI-Code_Block\tperformDatabaseMethod\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\none\tO\tone\tO\nseems\tO\tseems\tO\nweird\tO\tweird\tO\nand\tO\tand\tO\nout\tO\tout\tO\nof\tO\tof\tO\nplace\tO\tplace\tO\nif\tO\tif\tO\nself\tB-Variable_Name\tself\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nUIViewController\tB-Library_Class\tUIViewController\tB-Code_Block\nsubclass\tO\tsubclass\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\noption\tO\toption\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nsingleton\tO\tsingleton\tO\ndatabase\tO\tdatabase\tO\naccessor\tO\taccessor\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\naccess\tO\taccess\tO\nusing\tO\tusing\tO\n[\tB-Code_Block\t[\tB-Code_Block\n[\tB-Code_Block\t[\tB-Code_Block\nDBConnector\tB-Code_Block\tDBConnector\tB-Code_Block\nsharedInstance\tI-Code_Block\tsharedInstance\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nperformMethod\tB-Code_Block\tperformMethod\tB-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nwhere\tO\twhere\tO\nsharedInstance\tB-Library_Variable\tsharedInstance\tB-Code_Block\nlooks\tO\tlooks\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3842\tI-Code_Block\tA_3842\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3115090\tO\t3115090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3115090/\tO\thttps://stackoverflow.com/questions/3115090/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nflexigrid\tB-Application\tflexigrid\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\n(\tO\t(\tO\nadd\tO\tadd\tO\n,\tO\t,\tO\ndelete\tO\tdelete\tO\n)\tO\t)\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntoolbar\tB-User_Interface_Element\ttoolbar\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nadd\tO\tadd\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfancybox\tB-Application\tfancybox\tO\ninput\tO\tinput\tO\nform\tB-User_Interface_Element\tform\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_217\tI-Code_Block\tQ_217\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3115090\tO\t3115090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3115090/\tO\thttps://stackoverflow.com/questions/3115090/\tO\n\t\n\t\nCheck\tO\tCheck\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nColorBox\tB-Application\tColorBox\tO\nplugin\tI-Application\tplugin\tO\nexample\tO\texample\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45178002\tO\t45178002\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45178002/\tO\thttps://stackoverflow.com/questions/45178002/\tO\n\t\n\t\nIn\tO\tIn\tO\nExcel\tB-Application\tExcel\tO\nI\tO\tI\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nData\tB-Data_Structure\tData\tO\nTable\tI-Data_Structure\tTable\tO\nthat\tO\tthat\tO\nconnects\tO\tconnects\tO\nvia\tO\tvia\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nconnection\tO\tconnection\tO\nstring\tB-Data_Type\tstring\tO\nto\tO\tto\tO\nan\tO\tan\tO\nsql\tB-Language\tsql\tO\nserver\tB-Application\tserver\tO\nprocedure\tO\tprocedure\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nprocedure\tO\tprocedure\tO\naccepts\tO\taccepts\tO\nsome\tO\tsome\tO\nparameters\tO\tparameters\tO\nquerys\tO\tquerys\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nexcel\tB-Application\texcel\tO\ndata\tB-Data_Structure\tdata\tO\ntable\tI-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nworked\tO\tworked\tO\nwell\tO\twell\tO\nfor\tO\tfor\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nhave\tO\thave\tO\nstarted\tO\tstarted\tO\nto\tO\tto\tO\nrandomly\tO\trandomly\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nrandomly\tO\trandomly\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ntry\tO\ttry\tO\n's\tO\t's\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nNothing\tO\tNothing\tO\nelse\tO\telse\tO\nis\tO\tis\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nspreadsheet\tB-User_Interface_Element\tspreadsheet\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nreturned\tO\treturned\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\nwell\tO\twell\tO\nwithin\tO\twithin\tO\nany\tO\tany\tO\nrow\tB-Data_Structure\trow\tO\ncount\tO\tcount\tO\nlimitation\tO\tlimitation\tO\nthat\tO\tthat\tO\nexcel\tB-Application\texcel\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45178002\tO\t45178002\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45178002/\tO\thttps://stackoverflow.com/questions/45178002/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nisolate\tO\tisolate\tO\nthe\tO\tthe\tO\ncause\tO\tcause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nsomething\tO\tsomething\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nclipboard\tB-Application\tclipboard\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrefresh\tO\trefresh\tO\nyour\tO\tyour\tO\ntable\tB-Data_Structure\ttable\tO\nit\tO\tit\tO\ncauses\tO\tcauses\tO\na\tO\ta\tO\nconflict\tO\tconflict\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nrecords\tO\trecords\tO\nare\tO\tare\tO\nreturned\tO\treturned\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nclearing\tO\tclearing\tO\nmy\tO\tmy\tO\nclipboard\tB-Application\tclipboard\tO\nand\tO\tand\tO\nrefreshing\tO\trefreshing\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmost\tO\tmost\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nflaw\tO\tflaw\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nExcel\tB-Application\tExcel\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\n-\tO\t-\tO\n2016\tB-Version\t2016\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15310275\tO\t15310275\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15310275/\tO\thttps://stackoverflow.com/questions/15310275/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ncalculator\tB-Application\tcalculator\tO\napp\tO\tapp\tO\nbut\tO\tbut\tO\nunfortunately\tO\tunfortunately\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nstuck\tO\tstuck\tO\nwith\tO\twith\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\napplication\tO\tapplication\tO\ntakes\tO\ttakes\tO\ninput\tO\tinput\tO\nand\tO\tand\tO\ndisplays\tO\tdisplays\tO\nit\tO\tit\tO\nin\tO\tin\tO\nan\tO\tan\tO\nEditText\tB-Library_Class\tEditText\tB-Code_Block\net2\tB-Variable_Name\tet2\tI-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncalculator\tB-Application\tcalculator\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\njob\tO\tjob\tO\nwhen\tO\twhen\tO\n\"\tO\t\"\tO\nequal\tB-Keyboard_IP\tequal\tO\n\"\tO\t\"\tO\nkey\tO\tkey\tO\nis\tO\tis\tO\npressed\tO\tpressed\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1488\tI-Code_Block\tQ_1488\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\nNumberFormatException\tB-Error_Name\tNumberFormatException\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nlog\tO\tlog\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1489\tI-Code_Block\tQ_1489\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15310275\tO\t15310275\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15310275/\tO\thttps://stackoverflow.com/questions/15310275/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nan\tO\tan\tO\nnone\tO\tnone\tO\nInteger\tB-Data_Type\tInteger\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nInteger\tB-Data_Type\tInteger\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1949\tI-Code_Block\tA_1949\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFollow\tO\tFollow\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nline\tO\tline\tO\nprovided\tO\tprovided\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlogcat\tB-Application\tlogcat\tO\nto\tO\tto\tO\ncorrect\tO\tcorrect\tO\nyour\tO\tyour\tO\nmistake\tO\tmistake\tO\n\t\nyour\tO\tyour\tO\nerror\tO\terror\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nhappened\tO\thappened\tO\nhere\tO\there\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1950\tI-Code_Block\tA_1950\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nother\tO\tother\tO\nhere\tO\there\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1951\tI-Code_Block\tA_1951\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ntry\tO\ttry\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1952\tI-Code_Block\tA_1952\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nleftString\tB-Variable_Name\tleftString\tB-Code_Block\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nconverted\tO\tconverted\tO\ninto\tO\tinto\tO\nfloat/Integer\tB-Data_Type\tfloat/Integer\tB-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15310275\tO\t15310275\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15310275/\tO\thttps://stackoverflow.com/questions/15310275/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1953\tI-Code_Block\tA_1953\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nString\tB-Data_Type\tString\tB-Code_Block\nhas\tO\thas\tO\ninvalid\tO\tinvalid\tO\nformat\tO\tformat\tO\nand\tO\tand\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nparsed\tO\tparsed\tO\nto\tO\tto\tO\nnumber\tB-Data_Type\tnumber\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\nsuggestion\tO\tsuggestion\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nregex\tO\tregex\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nperform\tO\tperform\tO\nparsing\tO\tparsing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1954\tI-Code_Block\tA_1954\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nAlso\tO\tAlso\tO\nadd\tO\tadd\tO\ntry-catch\tB-Code_Block\ttry-catch\tO\nblock\tO\tblock\tO\nto\tO\tto\tO\ncatch\tO\tcatch\tO\nException\tB-Code_Block\tException\tB-Code_Block\nand\tO\tand\tO\nmake\tO\tmake\tO\nsome\tO\tsome\tO\nlog\tO\tlog\tO\nabout\tO\tabout\tO\nproblem\tO\tproblem\tO\n(\tO\t(\tO\nprint\tO\tprint\tO\nstring\tB-Data_Type\tstring\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12503588\tO\t12503588\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12503588/\tO\thttps://stackoverflow.com/questions/12503588/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nthinking\tO\tthinking\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\n.NET\tB-Library\t.NET\tO\nDLR\tB-Application\tDLR\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nn't\tO\tn't\tO\nchanged\tO\tchanged\tO\nsince\tO\tsince\tO\n2010\tO\t2010\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nmaintained\tO\tmaintained\tO\nor\tO\tor\tO\nif\tO\tif\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nsuperseded\tO\tsuperseded\tO\nby\tO\tby\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nafraid\tO\tafraid\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nthat\tO\tthat\tO\nheavily\tO\theavily\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nDLR\tB-Application\tDLR\tO\nif\tO\tif\tO\nDLR\tB-Application\tDLR\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nMicrosoft\tB-Organization\tMicrosoft\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12503588\tO\t12503588\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12503588/\tO\thttps://stackoverflow.com/questions/12503588/\tO\n\t\n\t\nIt\tO\tIt\tO\ngot\tO\tgot\tO\nintegrated\tO\tintegrated\tO\ninto\tO\tinto\tO\n.net\tB-Library\t.net\tO\nin\tO\tin\tO\nversion\tO\tversion\tO\n4.0\tB-Version\t4.0\tO\nin\tO\tin\tO\nApril\tO\tApril\tO\n2010\tO\t2010\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nsuch\tO\tsuch\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nDLR\tB-Application\tDLR\tO\nproject\tO\tproject\tO\nitself\tO\titself\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nupdated\tO\tupdated\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmsdn\tB-Website\tmsdn\tO\nhas\tO\thas\tO\na\tO\ta\tO\ngood\tO\tgood\tO\noverview\tO\toverview\tO\n:\tO\t:\tO\nDynamic\tO\tDynamic\tO\nLanguage\tO\tLanguage\tO\nRuntime\tO\tRuntime\tO\nOverview\tO\tOverview\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35003841\tO\t35003841\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35003841/\tO\thttps://stackoverflow.com/questions/35003841/\tO\n\t\n\t\nwhen\tO\twhen\tO\nmy\tO\tmy\tO\nsocket\tB-Library\tsocket\tO\nio\tI-Library\tio\tO\nclient\tB-Application\tclient\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\ntwice\tO\ttwice\tO\n\t\ndouble\tO\tdouble\tO\nconnection\tO\tconnection\tO\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nan\tO\tan\tO\nangular\tB-Library\tangular\tO\n2\tB-Version\t2\tO\nproject\tO\tproject\tO\nso\tO\tso\tO\ni\tO\ti\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\ntypescript\tB-Language\ttypescript\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4278\tI-Code_Block\tQ_4278\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncode\tO\tcode\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4279\tI-Code_Block\tQ_4279\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nunfortunately\tO\tunfortunately\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\nto\tO\tto\tO\nme\tO\tme\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nerror\tB-Error_Name\terror\tO\nserver\tI-Error_Name\tserver\tO\n\t\nThe\tO\tThe\tO\nserver\tB-Application\tserver\tO\ntell\tO\ttell\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ninitialized\tO\tinitialized\tO\n==\tO\t==\tO\n>\tO\t>\tO\n\"\tB-Value\t\"\tO\nundefined\tI-Value\tundefined\tO\n\"\tI-Value\t\"\tO\n\t\nI\tO\tI\tO\nreally\tO\treally\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:(\tO\t:(\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35003841\tO\t35003841\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35003841/\tO\thttps://stackoverflow.com/questions/35003841/\tO\n\t\n\t\nthis.s\tB-Variable_Name\tthis.s\tB-Code_Block\nis\tO\tis\tO\nuninitialized\tO\tuninitialized\tO\nuntil\tO\tuntil\tO\nthis.io\tB-Variable_Name\tthis.io\tB-Code_Block\nreceives\tO\treceives\tO\na\tO\ta\tO\n\"\tB-Value\t\"\tB-Code_Block\nconnection\tI-Value\tconnection\tI-Code_Block\n\"\tI-Value\t\"\tI-Code_Block\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nplace\tO\tplace\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ninitializing\tO\tinitializing\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nsubscribe\tO\tsubscribe\tO\nthis.s\tB-Variable_Name\tthis.s\tB-Code_Block\nto\tO\tto\tO\nother\tO\tother\tO\nevents\tO\tevents\tO\nupon\tO\tupon\tO\na\tO\ta\tO\nconnection\tO\tconnection\tO\n.\tO\t.\tO\n\t\nSwitching\tO\tSwitching\tO\nfrom\tO\tfrom\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4984\tI-Code_Block\tA_4984\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4985\tI-Code_Block\tA_4985\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nmight\tO\tmight\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\ntrick\tO\ttrick\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35003841\tO\t35003841\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35003841/\tO\thttps://stackoverflow.com/questions/35003841/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ns\tB-Variable_Name\ts\tB-Code_Block\nbefore\tO\tbefore\tO\nit\tO\tit\tO\nis\tO\tis\tO\ninitialized\tO\tinitialized\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\nmoving\tO\tmoving\tO\nthe\tO\tthe\tO\nthis.s.on\tB-Library_Function\tthis.s.on\tB-Code_Block\ncall\tO\tcall\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nthis.io.on\tB-Library_Function\tthis.io.on\tB-Code_Block\ncallback\tO\tcallback\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\ns\tB-Variable_Name\ts\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nundefined\tB-Value\tundefined\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4986\tI-Code_Block\tA_4986\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5372036\tO\t5372036\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5372036/\tO\thttps://stackoverflow.com/questions/5372036/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nListView\tB-Library_Class\tListView\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndraw\tO\tdraw\tO\nsome\tO\tsome\tO\nbasic\tO\tbasic\tO\nshapes\tO\tshapes\tO\ninto\tO\tinto\tO\neach\tO\teach\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nListView\tB-Library_Class\tListView\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\nmany\tO\tmany\tO\nexamples\tO\texamples\tO\nusing\tO\tusing\tO\nViews/Layouts\tB-Library_Class\tViews/Layouts\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nListView\tB-Library_Class\tListView\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\netc\tO\tetc\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nam\tO\tam\tO\nunsure\tO\tunsure\tO\nhow\tO\thow\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ndraw\tO\tdraw\tO\ninto\tO\tinto\tO\neach\tO\teach\tO\none\tO\tone\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nCanvas\tB-Library_Class\tCanvas\tO\nor\tO\tor\tO\nsimilar\tO\tsimilar\tO\n.\tO\t.\tO\n\t\nFurthermore\tO\tFurthermore\tO\nthese\tO\tthese\tO\nexamples\tO\texamples\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nall\tO\tall\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nslightly\tO\tslightly\tO\ndifferent\tO\tdifferent\tO\nways\tO\tways\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nstrategy\tO\tstrategy\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\na\tO\ta\tO\nMain\tB-Class_Name\tMain\tO\nclass\tO\tclass\tO\nwhich\tO\twhich\tO\npopulates\tO\tpopulates\tO\nthe\tO\tthe\tO\nListView\tB-Library_Class\tListView\tO\nwith\tO\twith\tO\nbasic\tO\tbasic\tO\ntext\tO\ttext\tO\n.\tO\t.\tO\n\t\nMain.java\tB-File_Name\tMain.java\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_378\tI-Code_Block\tQ_378\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\ngather\tO\tgather\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nAdapter\tB-Library_Class\tAdapter\tO\nbit\tO\tbit\tO\nhere\tO\there\tO\n,\tO\t,\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nwrite\tO\twrite\tO\nanother\tO\tanother\tO\nclass\tO\tclass\tO\nwhich\tO\twhich\tO\npossibly\tO\tpossibly\tO\nextends\tO\textends\tO\nView\tB-Library_Class\tView\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndraw\tO\tdraw\tO\nto\tO\tto\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nan\tO\tan\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nListView\tB-Library_Class\tListView\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5372036\tO\t5372036\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5372036/\tO\thttps://stackoverflow.com/questions/5372036/\tO\n\t\n\t\nYou\tO\tYou\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsubclass\tO\tsubclass\tO\nyour\tO\tyour\tO\nListView\tB-Library_Class\tListView\tO\nto\tO\tto\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nimplementation\tO\timplementation\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_583\tI-Code_Block\tA_583\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nview\tB-Library_Class\tview\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nrow\tB-User_Interface_Element\trow\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nListView\tB-Library_Class\tListView\tB-Code_Block\nby\tO\tby\tO\nreplacing\tO\treplacing\tO\nthe\tO\tthe\tO\n..\tO\t..\tB-Code_Block\n.\tO\t.\tI-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nView\tB-Library_Class\tView\tB-Code_Block\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nSurfaceView\tB-Library_Class\tSurfaceView\tB-Code_Block\nto\tO\tto\tO\ndraw\tO\tdraw\tO\non\tO\ton\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_584\tI-Code_Block\tA_584\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\ntested\tO\ttested\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhopefully\tO\thopefully\tO\nwill\tO\twill\tO\ndrive\tO\tdrive\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ndirection\tO\tdirection\tO\n.\tO\t.\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\noptimize\tO\toptimize\tO\nyour\tO\tyour\tO\ndrawing\tO\tdrawing\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nuse\tO\tuse\tO\ncaching\tO\tcaching\tO\nwhen\tO\twhen\tO\navailable\tO\tavailable\tO\n,\tO\t,\tO\npreprocess\tO\tpreprocess\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1151432\tO\t1151432\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1151432/\tO\thttps://stackoverflow.com/questions/1151432/\tO\n\t\n\t\nI\tO\tI\tO\nlike\tO\tlike\tO\nGoogle\tB-Library\tGoogle\tO\nWeb\tI-Library\tWeb\tO\nTookit\tI-Library\tTookit\tO\nAPI\tO\tAPI\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nuse\tO\tuse\tO\nJava\tB-Language\tJava\tO\nlanguage\tO\tlanguage\tO\nbehind\tO\tbehind\tO\nthe\tO\tthe\tO\nscenes\tO\tscenes\tO\nthat\tO\tthat\tO\ncompiles\tO\tcompiles\tO\nONLY\tO\tONLY\tO\nJavaScript\tB-Language\tJavaScript\tO\ncode\tO\tcode\tO\nWHOSE\tO\tWHOSE\tO\nTARGET\tO\tTARGET\tO\nBROWSER\tB-Application\tBROWSER\tO\nNEEDS\tO\tNEEDS\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nhappens\tO\thappens\tO\nsome\tO\tsome\tO\ndevelopers\tO\tdevelopers\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nfeature\tO\tfeature\tO\nin\tO\tin\tO\npure\tO\tpure\tO\nJavaScript\tB-Language\tJavaScript\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nAnwser\tO\tAnwser\tO\n:\tO\t:\tO\nWHAT\tO\tWHAT\tO\nCOULD\tO\tCOULD\tO\nWE\tO\tWE\tO\nSUGGEST\tO\tSUGGEST\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nfullfill\tO\tfullfill\tO\nthis\tO\tthis\tO\nrequirement\tO\trequirement\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nJavaScript\tB-Language\tJavaScript\tO\ncomments\tO\tcomments\tO\n(\tO\t(\tO\nas\tO\tas\tO\na\tO\ta\tO\nflag\tO\tflag\tO\n)\tO\t)\tO\nas\tO\tas\tO\na\tO\ta\tO\nway\tO\tway\tO\nsome\tO\tsome\tO\ncompiler\tB-Application\tcompiler\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nYahoo\tB-Application\tYahoo\tO\nJavaScript\tI-Application\tJavaScript\tO\ncompiler\tI-Application\tcompiler\tO\n)\tO\t)\tO\nanalises\tO\tanalises\tO\nour\tO\tour\tO\napp\tO\tapp\tO\nJavaScript\tB-Language\tJavaScript\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\ngenerates\tO\tgenerates\tO\nonly\tO\tonly\tO\na\tO\ta\tO\nJavaScript\tB-Library\tJavaScript\tO\nFramework\tI-Library\tFramework\tO\ncode\tO\tcode\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\na\tO\ta\tO\nhypothetical\tO\thypothetical\tO\nJavaScript\tB-Library\tJavaScript\tO\nframework\tI-Library\tframework\tO\n(\tO\t(\tO\nJQuery\tB-Library\tJQuery\tO\n,\tO\t,\tO\nMootools\tB-Library\tMootools\tO\n,\tO\t,\tO\nPrototype\tB-Library\tPrototype\tO\nect\tO\tect\tO\n)\tO\t)\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_67\tI-Code_Block\tQ_67\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nwhen\tO\twhen\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nsayHello\tB-Function_Name\tsayHello\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nthat\tO\tthat\tO\nsayHello\tB-Function_Name\tsayHello\tO\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nits\tO\tits\tO\ndependencies\tO\tdependencies\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nfiltered\tO\tfiltered\tO\nthrough\tO\tthrough\tO\nJavaScript\tB-Language\tJavaScript\tO\ncomments\tO\tcomments\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nour\tO\tour\tO\napplication\tO\tapplication\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nlighter\tO\tlighter\tO\n,\tO\t,\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nonly\tO\tonly\tO\nJavaScript\tB-Library\tJavaScript\tO\nFramework\tI-Library\tFramework\tO\ncode\tO\tcode\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nyou\tO\tyou\tO\n:\tO\t:\tO\nwhat\tO\twhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nsuggest\tO\tsuggest\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1151432\tO\t1151432\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1151432/\tO\thttps://stackoverflow.com/questions/1151432/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nsuggest\tO\tsuggest\tO\nlearning\tO\tlearning\tO\nto\tO\tto\tO\nprogram\tO\tprogram\tO\nin\tO\tin\tO\nJavaScript\tB-Language\tJavaScript\tO\nand\tO\tand\tO\nunderstanding\tO\tunderstanding\tO\nthe\tO\tthe\tO\nvarious\tO\tvarious\tO\npeculiarities\tO\tpeculiarities\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndifferent\tO\tdifferent\tO\nDOM\tB-Library\tDOM\tO\nimplementations\tO\timplementations\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nwriting\tO\twriting\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nnecessary\tO\tnecessary\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nre-creating\tO\tre-creating\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nhandling\tO\thandling\tO\nshenanigans\tO\tshenanigans\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nnick\tO\tnick\tO\nthe\tO\tthe\tO\nrelevant\tO\trelevant\tO\ntechniques\tO\ttechniques\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlibraries\tO\tlibraries\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nlearn\tO\tlearn\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndoing\tO\tdoing\tO\nthat\tO\tthat\tO\nway\tO\tway\tO\n,\tO\t,\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nactually\tO\tactually\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nall\tO\tall\tO\nworks\tO\tworks\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nthose\tO\tthose\tO\ntechniques\tO\ttechniques\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nHaving\tO\tHaving\tO\nworked\tO\tworked\tO\nprofessionally\tO\tprofessionally\tO\nwith\tO\twith\tO\nJavaScript\tB-Language\tJavaScript\tO\nsince\tO\tsince\tO\n1996\tO\t1996\tO\nI\tO\tI\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nmany\tO\tmany\tO\n,\tO\t,\tO\nwas\tO\twas\tO\ninitially\tO\tinitially\tO\ntempted\tO\ttempted\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\napparent\tO\tapparent\tO\nease\tO\tease\tO\nof\tO\tof\tO\nuse\tO\tuse\tO\noffered\tO\toffered\tO\nby\tO\tby\tO\nlibraries\tO\tlibraries\tO\n;\tO\t;\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\none\tO\tone\tO\nmore\tO\tmore\tO\nanswer\tO\tanswer\tO\non\tO\ton\tO\nhere\tO\there\tO\nthat\tO\tthat\tO\nsays\tO\tsays\tO\n\"\tO\t\"\tO\nuse\tO\tuse\tO\njQuery\tB-Library\tjQuery\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nsome\tO\tsome\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\noptimal\tO\toptimal\tO\nin\tO\tin\tO\njQuery\tB-Library\tjQuery\tO\n)\tO\t)\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\nand\tO\tand\tO\nwell-documented\tO\twell-documented\tO\nfeature\tO\tfeature\tO\nof\tO\tof\tO\nJavaScript\tB-Language\tJavaScript\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\nimplementation\tO\timplementation\tO\nsince\tO\tsince\tO\nNetscape\tB-Application\tNetscape\tO\nNavigator\tI-Application\tNavigator\tO\n3\tB-Version\t3\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nscream\tO\tscream\tO\n;-)\tO\t;-)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1151432\tO\t1151432\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1151432/\tO\thttps://stackoverflow.com/questions/1151432/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nother\tO\tother\tO\nframeworks\tO\tframeworks\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwith\tO\twith\tO\nDojo\tB-Library\tDojo\tO\nToolkit\tI-Library\tToolkit\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\ncaching\tO\tcaching\tO\nbetter\tO\tbetter\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\na\tO\ta\tO\npublic\tO\tpublic\tO\nCDN\tO\tCDN\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nsite\tO\tsite\tO\n,\tO\t,\tO\nfrom\tO\tfrom\tO\nAOL\tB-Website\tAOL\tO\nor\tO\tor\tO\nGoogle\tB-Website\tGoogle\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1151432\tO\t1151432\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1151432/\tO\thttps://stackoverflow.com/questions/1151432/\tO\n\t\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nJavaScript\tB-Language\tJavaScript\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nframework\tO\tframework\tO\nis\tO\tis\tO\nserved\tO\tserved\tO\nas\tO\tas\tO\na\tO\ta\tO\ncacheable\tO\tcacheable\tO\nfile\tO\tfile\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\ndownload\tO\tdownload\tO\ncost\tO\tcost\tO\nof\tO\tof\tO\nrequesting\tO\trequesting\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nframework\tO\tframework\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\njQuery.js\tB-File_Name\tjQuery.js\tO\n)\tO\t)\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\neliminated\tO\teliminated\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwere\tO\twere\tO\ngenerating\tO\tgenerating\tO\nthe\tO\tthe\tO\nframework\tO\tframework\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfly\tO\tfly\tO\n(\tO\t(\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nsuggest\tO\tsuggest\tO\nabove\tO\tabove\tO\n)\tO\t)\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\n's\tO\t's\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nharder\tO\tharder\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\ncaching\tO\tcaching\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\ncost\tO\tcost\tO\nof\tO\tof\tO\ndefining\tO\tdefining\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nframework\tO\tframework\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nunlikely\tO\tunlikely\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nproblematic\tO\tproblematic\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nthe\tO\tthe\tO\nframework\tO\tframework\tO\nis\tO\tis\tO\nwritten\tO\twritten\tO\nsensibly\tO\tsensibly\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\npulling\tO\tpulling\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nframework\tO\tframework\tO\n,\tO\t,\tO\nas\tO\tas\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncommon\tO\tcommon\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\nworks\tO\tworks\tO\nwell\tO\twell\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nrequire\tO\trequire\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\nserver-side\tB-Device\tserver-side\tO\ninfrastructure\tO\tinfrastructure\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nGWT\tB-Library\tGWT\tO\ndoes\tO\tdoes\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41803608\tO\t41803608\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41803608/\tO\thttps://stackoverflow.com/questions/41803608/\tO\n\t\n\t\nI\tO\tI\tO\nexpect\tO\texpect\tO\nto\tO\tto\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n\t\nacej\tB-Output_Block\tacej\tB-Code_Block\n\t\nwhich\tO\twhich\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nalgorithm\tO\talgorithm\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\noutputting\tO\toutputting\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\ncauses\tO\tcauses\tO\nstack\tB-Data_Structure\tstack\tO\nto\tO\tto\tO\noverflow\tB-Error_Name\toverflow\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5313\tI-Code_Block\tQ_5313\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41803608\tO\t41803608\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41803608/\tO\thttps://stackoverflow.com/questions/41803608/\tO\n\t\n\t\nLets\tO\tLets\tO\ntake\tO\ttake\tO\na\tO\ta\tO\ncloser\tO\tcloser\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nyour\tO\tyour\tO\noutput\tO\toutput\tO\noperator\tO\toperator\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5991\tI-Code_Block\tA_5991\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ncalled\tO\tcalled\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\noutput\tO\toutput\tO\na\tO\ta\tO\nstd::vector<char>\tB-Library_Class\tstd::vector<char>\tB-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nthen\tO\tthen\tO\noutput\tO\toutput\tO\na\tO\ta\tO\nstd::vector<char>\tB-Library_Class\tstd::vector<char>\tB-Code_Block\nwhich\tO\twhich\tO\ncauses\tO\tcauses\tO\na\tO\ta\tO\nrecursive\tO\trecursive\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\nin\tO\tin\tO\ninfinity\tO\tinfinity\tO\n(\tO\t(\tO\nor\tO\tor\tO\nuntil\tO\tuntil\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\na\tO\ta\tO\nstack\tB-Error_Name\tstack\tO\noverflow\tI-Error_Name\toverflow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyour\tO\tyour\tO\noutput\tO\toutput\tO\noperator\tO\toperator\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nto\tO\tto\tO\nis\tO\tis\tO\niterate\tO\titerate\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nvector\tB-Library_Class\tvector\tO\nand\tO\tand\tO\noutput\tO\toutput\tO\neach\tO\teach\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nan\tO\tan\tO\nunrelated\tO\tunrelated\tO\nnote\tO\tnote\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nvector\tB-Library_Class\tvector\tO\nby\tO\tby\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nconstant\tO\tconstant\tO\nreference\tO\treference\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5992\tI-Code_Block\tA_5992\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41803608\tO\t41803608\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41803608/\tO\thttps://stackoverflow.com/questions/41803608/\tO\n\t\n\t\nDid\tO\tDid\tO\nyou\tO\tyou\tO\nintend\tO\tintend\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nstd::string\tB-Library_Class\tstd::string\tB-Code_Block\nand\tO\tand\tO\nused\tO\tused\tO\nincorrect\tO\tincorrect\tO\nSTL\tB-Library\tSTL\tO\ncontainer\tO\tcontainer\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5996\tI-Code_Block\tA_5996\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOutput\tO\tOutput\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5997\tI-Code_Block\tA_5997\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31959498\tO\t31959498\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31959498/\tO\thttps://stackoverflow.com/questions/31959498/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nfirst\tO\tfirst\tO\nsorry\tO\tsorry\tO\nto\tO\tto\tO\nsay\tO\tsay\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\ngitHub\tB-Website\tgitHub\tB-Code_Block\nor\tO\tor\tO\nsourceForge.net\tB-Website\tsourceForge.net\tB-Code_Block\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nretrieve\tO\tretrieve\tO\nsolution\tO\tsolution\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\npossible\tO\tpossible\tO\nanswer\tO\tanswer\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nhalf\tO\thalf\tO\na\tO\ta\tO\ngiga\tO\tgiga\tO\n(\tO\t(\tO\n510199112\tO\t510199112\tB-Code_Block\nbytes\tO\tbytes\tI-Code_Block\n)\tO\t)\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nby\tO\tby\tO\nftp\tO\tftp\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ntime-out\tB-Error_Name\ttime-out\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3858\tI-Code_Block\tQ_3858\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nmanage\tO\tmanage\tO\nmy\tO\tmy\tO\ntime\tO\ttime\tO\nout\tO\tout\tO\nbutdo\tO\tbutdo\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nproceed\tO\tproceed\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3859\tI-Code_Block\tQ_3859\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30673380\tO\t30673380\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30673380/\tO\thttps://stackoverflow.com/questions/30673380/\tO\n\t\n\t\nUsing\tO\tUsing\tO\najax\tB-Library_Function\tajax\tO\n,\tO\t,\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nuser\tO\tuser\tO\ngets\tO\tgets\tO\nlogout\tO\tlogout\tO\nafter\tO\tafter\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\nof\tO\tof\tO\nstaying\tO\tstaying\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nfor\tO\tfor\tO\ntesting\tO\ttesting\tO\npurposes\tO\tpurposes\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncloses\tO\tcloses\tO\ntheir\tO\ttheir\tO\nbrowser\tB-Application\tbrowser\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\nare\tO\tare\tO\nup\tO\tup\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\nlog\tO\tlog\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nabout\tO\tabout\tO\nlogging\tO\tlogging\tO\nthem\tO\tthem\tO\nout\tO\tout\tO\nwhen\tO\twhen\tO\nthey\tO\tthey\tO\nexit\tO\texit\tO\ntheir\tO\ttheir\tO\nbrowser\tB-Application\tbrowser\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nyet\tO\tyet\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\n,\tO\t,\tO\nand\tO\tand\tO\neven\tO\teven\tO\nif\tO\tif\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\ndoes\tO\tdoes\tO\nexiting\tO\texiting\tO\ntheir\tO\ttheir\tO\nbrowser\tB-Application\tbrowser\tO\nentails\tO\tentails\tO\n?\tO\t?\tO\n\t\nDoes\tO\tDoes\tO\nit\tO\tit\tO\ncount\tO\tcount\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\njust\tO\tjust\tO\nclose\tO\tclose\tO\na\tO\ta\tO\ntab\tB-User_Interface_Element\ttab\tO\nwhile\tO\twhile\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nother\tO\tother\tO\ntabs\tB-User_Interface_Element\ttabs\tO\nopen\tO\topen\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\n2\tO\t2\tO\n,\tO\t,\tO\n3\tO\t3\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nbrowsers\tB-Application\tbrowsers\tO\nopen\tO\topen\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ndetermine\tO\tdetermine\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nthose\tO\tthose\tO\nopen\tO\topen\tO\nbrowsers\tB-Application\tbrowsers\tO\nare\tO\tare\tO\nexited\tO\texited\tO\nbefore\tO\tbefore\tO\nlogging\tO\tlogging\tO\nthem\tO\tthem\tO\nout\tO\tout\tO\n?\tO\t?\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3681\tI-Code_Block\tQ_3681\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3682\tI-Code_Block\tQ_3682\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30673380\tO\t30673380\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30673380/\tO\thttps://stackoverflow.com/questions/30673380/\tO\n\t\n\t\nThe\tO\tThe\tO\nonBeforeUnload\tB-Library_Class\tonBeforeUnload\tO\nevent\tO\tevent\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncovers\tO\tcovers\tO\n:\tO\t:\tO\n\t\nClosing\tO\tClosing\tO\na\tO\ta\tO\ntab\tB-User_Interface_Element\ttab\tO\n(\tO\t(\tO\nregardless\tO\tregardless\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\ntabs\tB-User_Interface_Element\ttabs\tO\nare\tO\tare\tO\nopen\tO\topen\tO\n)\tO\t)\tO\n\t\nExiting\tO\tExiting\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\n\t\nNavigating\tO\tNavigating\tO\naway\tO\taway\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n\t\nRefreshing\tO\tRefreshing\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\ninline\tO\tinline\tO\nattributes\tO\tattributes\tO\n,\tO\t,\tO\nor\tO\tor\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\najax\tB-Library_Function\tajax\tO\nfunctions\tO\tfunctions\tO\nto\tO\tto\tO\nnotify\tO\tnotify\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nseveral\tO\tseveral\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\nmust\tO\tmust\tO\nnote\tO\tnote\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnever\tO\tnever\tO\nattempted\tO\tattempted\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nonly\tO\tonly\tO\nspeaking\tO\tspeaking\tO\nfrom\tO\tfrom\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nread\tO\tread\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nsources\tO\tsources\tO\non\tO\ton\tO\nSO\tB-Website\tSO\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4576521\tO\t4576521\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4576521/\tO\thttps://stackoverflow.com/questions/4576521/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nquestion\tO\tquestion\tO\nabout\tO\tabout\tO\njquery\tB-Library\tjquery\tO\nslideDown\tB-Library_Function\tslideDown\tO\n,\tO\t,\tO\nSlideUp\tB-Library_Function\tSlideUp\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nslideDown\tB-Library_Function\tslideDown\tO\nto\tO\tto\tO\nslide\tO\tslide\tO\na\tO\ta\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\non\tO\ton\tO\nclick\tO\tclick\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_313\tI-Code_Block\tQ_313\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\n#box\tB-Variable_Name\t#box\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nslided\tO\tslided\tO\ndown\tO\tdown\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nslide\tO\tslide\tO\nup\tO\tup\tO\nby\tO\tby\tO\nclicking\tO\tclicking\tO\nagain\tO\tagain\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4576521\tO\t4576521\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4576521/\tO\thttps://stackoverflow.com/questions/4576521/\tO\n\t\n\t\nuse\tO\tuse\tO\n.slideToggle()\tB-Library_Function\t.slideToggle()\tO\ninstead\tO\tinstead\tO\n\t\n$(\"#box\").slideToggle(\"slow\")\tB-Code_Block\t$(\"#box\").slideToggle(\"slow\")\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9800642\tO\t9800642\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9800642/\tO\thttps://stackoverflow.com/questions/9800642/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nserver-client\tB-Application\tserver-client\tO\napplication\tO\tapplication\tO\n[\tO\t[\tO\nTCP\tO\tTCP\tO\nsockets\tO\tsockets\tO\n,\tO\t,\tO\n.NET\tB-Library\t.NET\tO\n4.0\tB-Version\t4.0\tO\n]\tO\t]\tO\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nabout\tO\tabout\tO\n:\tO\t:\tO\n\t\ndo\tO\tdo\tO\nthe\tO\tthe\tO\ncommands\tO\tcommands\tO\nthat\tO\tthat\tO\nreceived\tO\treceived\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\n\t\nreceives\tO\treceives\tO\nfiles\tO\tfiles\tO\n\t\nsend\tO\tsend\tO\na\tO\ta\tO\nscreenshot\tO\tscreenshot\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\n3\tO\t3\tO\ntasks\tO\ttasks\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n\t\nAfter\tO\tAfter\tO\ni\tO\ti\tO\ndone\tO\tdone\tO\nthat\tO\tthat\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n.\tO\t.\tO\ni\tO\ti\tO\nrealized\tO\trealized\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\napplication\tO\tapplication\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\none\tO\tone\tO\nport\tB-Device\tport\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\ntasks\tO\ttasks\tO\n.\tO\t.\tO\n.\tO\t.\tO\nlike\tO\tlike\tO\nRadmin\tB-Application\tRadmin\tO\nand\tO\tand\tO\nnetsupport\tB-Application\tnetsupport\tO\n.\tO\t.\tO\n.\tO\t.\tO\netc\tO\tetc\tO\n\t\nbut\tO\tbut\tO\ni\tO\ti\tO\nused\tO\tused\tO\n3\tO\t3\tO\nports\tO\tports\tO\n.\tO\t.\tO\n.\tO\t.\tO\none\tO\tone\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nreceiving\tO\treceiving\tO\ncommands\tO\tcommands\tO\nany\tO\tany\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nsends\tO\tsends\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\none\tO\tone\tO\nfor\tO\tfor\tO\nreceiving\tO\treceiving\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n.\tO\t.\tO\nand\tO\tand\tO\none\tO\tone\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nasked\tO\tasked\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nscreenshot\tO\tscreenshot\tO\n\t\nso\tO\tso\tO\nis\tO\tis\tO\nit\tO\tit\tO\nfine\tO\tfine\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n3\tO\t3\tO\nports\tB-Device\tports\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nnetwork\tO\tnetwork\tO\napplication\tO\tapplication\tO\n?\tO\t?\tO\n\t\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\n3\tO\t3\tO\nsockets\tO\tsockets\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nside\tO\tside\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nserver\tB-Application\tserver\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nport\tB-Device\tport\tO\n(\tO\t(\tO\nex:9090\tO\tex:9090\tO\n)\tO\t)\tO\n\t\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\n.\tO\t.\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nreceived\tO\treceived\tO\nthe\tO\tthe\tO\nbytes\tO\tbytes\tO\nin\tO\tin\tO\nJob\tB-Library_Function\tJob\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nshould\tO\tshould\tO\nreceives\tO\treceives\tO\nthe\tO\tthe\tO\ncommands\tO\tcommands\tO\nonly\tO\tonly\tO\n..\tO\t..\tO\n.\tO\t.\tO\nso\tO\tso\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\ni\tO\ti\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\none\tO\tone\tO\nport\tB-Device\tport\tO\nfor\tO\tfor\tO\nthose\tO\tthose\tO\ntasks\tO\ttasks\tO\nso\tO\tso\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nuse\tO\tuse\tO\none\tO\tone\tO\nport\tB-Device\tport\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nthree\tO\tthree\tO\ntasks\tO\ttasks\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nmay\tO\tmay\tO\nwork\tO\twork\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_848\tI-Code_Block\tQ_848\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAdded\tO\tAdded\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\n\t\nlets\tO\tlets\tO\nsay\tO\tsay\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nhas\tO\thas\tO\none\tO\tone\tO\nport\tB-Device\tport\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nserver\tB-Application\tserver\tO\nfor\tO\tfor\tO\ncommands\tO\tcommands\tO\n.\tO\t.\tO\n.\tO\t.\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\ncmdClient\tB-Variable_Name\tcmdClient\tO\nwhich\tO\twhich\tO\nits\tO\tits\tO\nport\tB-Device\tport\tO\nis\tO\tis\tO\n11589then\tB-Value\t11589then\tO\na\tO\ta\tO\nJob\tB-Library_Function\tJob\tO\nThread\tO\tThread\tO\nstarted\tO\tstarted\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nclient\tB-Application\tclient\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nconnect\tO\tconnect\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\nsocket\tO\tsocket\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n.\tO\t.\tO\ndataClient\tB-Variable_Name\tdataClient\tO\nwhich\tO\twhich\tO\nits\tO\tits\tO\nport\tB-Device\tport\tO\nis\tO\tis\tO\n1800\tB-Value\t1800\tO\nthen\tO\tthen\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ndataClient\tB-Variable_Name\tdataClient\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nreceives\tO\treceives\tO\nthe\tO\tthe\tO\nbytes\tO\tbytes\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\njob\tB-Library_Function\tjob\tO\nMethod\tO\tMethod\tO\n.\tO\t.\tO\n.\tO\t.\tO\n\t\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nwhy\tO\twhy\tO\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\nhappene\tO\thappene\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9800642\tO\t9800642\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9800642/\tO\thttps://stackoverflow.com/questions/9800642/\tO\n\t\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nwise\tO\twise\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmultiple\tO\tmultiple\tO\nports\tB-Device\tports\tO\nwhen\tO\twhen\tO\ndoing\tO\tdoing\tO\nfile\tO\tfile\tO\ntransfers\tO\ttransfers\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\nrequire\tO\trequire\tO\na\tO\ta\tO\nquite\tO\tquite\tO\nadvanced\tO\tadvanced\tO\nprotocol\tO\tprotocol\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nport\tB-Device\tport\tO\nand\tO\tand\tO\nstill\tO\tstill\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nresponse\tO\tresponse\tO\n(\tO\t(\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\ncommands\tO\tcommands\tO\nduring\tO\tduring\tO\nfile\tO\tfile\tO\ntransfers\tO\ttransfers\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthree\tO\tthree\tO\nfixed\tO\tfixed\tO\nports\tB-Device\tports\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\none\tO\tone\tO\nport\tB-Device\tport\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\ncommands\tO\tcommands\tO\nand\tO\tand\tO\nan\tO\tan\tO\narbitrary\tO\tarbitrary\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nports\tB-Device\tports\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ntransfers\tO\ttransfers\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nfile\tO\tfile\tO\ntransfer\tO\ttransfer\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n(\tO\t(\tO\nCmdPort\tO\tCmdPort\tO\n)\tO\t)\tO\nClient\tB-Application\tClient\tO\n->\tO\t->\tO\nServer\tB-Application\tServer\tO\nHey\tO\tHey\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntransfer\tO\ttransfer\tO\nfile\tO\tfile\tO\nXXX\tB-File_Name\tXXX\tO\nwith\tO\twith\tO\nsize\tO\tsize\tO\nYYYY\tB-Value\tYYYY\tO\n\t\n(\tO\t(\tO\nCmdPort\tO\tCmdPort\tO\n)\tO\t)\tO\nServer\tB-Application\tServer\tO\n->\tO\t->\tO\nClient\tB-Application\tClient\tO\nRoger\tO\tRoger\tO\n,\tO\t,\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nport\tB-Device\tport\tO\n8217\tB-Value\t8217\tO\nand\tO\tand\tO\ntransfer\tO\ttransfer\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n\t\n(\tO\t(\tO\n8217\tO\t8217\tO\n)\tO\t)\tO\nClient\tB-Application\tClient\tO\n->\tO\t->\tO\nServer\tB-Application\tServer\tO\nConnects\tO\tConnects\tO\n,\tO\t,\tO\ntransfer\tO\ttransfer\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\ndisconnect\tO\tdisconnect\tO\n\t\n(\tO\t(\tO\n8217\tO\t8217\tO\n)\tO\t)\tO\nServer\tB-Application\tServer\tO\nChecks\tO\tChecks\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntransferred\tO\ttransferred\tO\nsize\tO\tsize\tO\nmatches\tO\tmatches\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nspecified\tO\tspecified\tO\nin\tO\tin\tO\nstep\tO\tstep\tO\n#1\tO\t#1\tO\n\t\nThat\tO\tThat\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ntransfer\tO\ttransfer\tO\nseveral\tO\tseveral\tO\nfiles\tO\tfiles\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nlistening\tO\tlistening\tO\nsocket\tO\tsocket\tO\nusing\tO\tusing\tO\nport\tB-Device\tport\tO\n0\tB-Value\t0\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ntells\tO\ttells\tO\nthe\tO\tthe\tO\nOS\tO\tOS\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\na\tO\ta\tO\nfree\tO\tfree\tO\nport\tB-Device\tport\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nuse\tO\tuse\tO\nSocket.LocalEndpoint\tB-Library_Variable\tSocket.LocalEndpoint\tB-Code_Block\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nport\tB-Device\tport\tO\nbefore\tO\tbefore\tO\nsending\tO\tsending\tO\nit\tO\tit\tO\nback\tO\tback\tO\nin\tO\tin\tO\nstep\tO\tstep\tO\n#2\tO\t#2\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nspecified\tO\tspecified\tO\napproach\tO\tapproach\tO\nalso\tO\talso\tO\nlets\tO\tlets\tO\nyou\tO\tyou\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nSocket.SendFile\tB-Library_Function\tSocket.SendFile\tB-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\neffective\tO\teffective\tO\nand\tO\tand\tO\nfastest\tO\tfastest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nfiles\tO\tfiles\tO\nusing\tO\tusing\tO\n.NET\tB-Library\t.NET\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nFTP\tO\tFTP\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\napproach\tO\tapproach\tO\n,\tO\t,\tO\nas\tO\tas\tO\ndo\tO\tdo\tO\nbittorrent\tO\tbittorrent\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nhave\tO\thave\tO\nused\tO\tused\tO\na\tO\ta\tO\nfile\tB-Application\tfile\tO\nmanager\tI-Application\tmanager\tO\nwhen\tO\twhen\tO\ndownloading\tO\tdownloading\tO\nfiles\tO\tfiles\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\ntakes\tO\ttakes\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nextreme\tO\textreme\tO\napproach\tO\tapproach\tO\nand\tO\tand\tO\nsplits\tO\tsplits\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ndownload\tO\tdownload\tO\nover\tO\tover\tO\nmultiple\tO\tmultiple\tO\nsockets\tO\tsockets\tO\nto\tO\tto\tO\nget\tO\tget\tO\naround\tO\taround\tO\nweb\tO\tweb\tO\nserver\tB-Application\tserver\tO\nbandwidth\tO\tbandwidth\tO\nthrottling\tO\tthrottling\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nupdate\tO\tupdate\tO\nin\tO\tin\tO\nresponse\tO\tresponse\tO\nto\tO\tto\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYou\tO\tYou\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nspecify\tO\tspecify\tO\nthat\tO\tthat\tO\ninformation\tO\tinformation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmade\tO\tmade\tO\nme\tO\tme\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\ntransfer\tO\ttransfer\tO\none\tO\tone\tO\nfile\tO\tfile\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nBatch\tO\tBatch\tO\ntransfers\tO\ttransfers\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nchange\tO\tchange\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nstep\tO\tstep\tO\n#1\tO\t#1\tO\nsends\tO\tsends\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nfilename+size\tO\tfilename+size\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsend\tO\tsend\tO\nall\tO\tall\tO\nfiles\tO\tfiles\tO\nafter\tO\tafter\tO\neach\tO\teach\tO\nother\tO\tother\tO\nin\tO\tin\tO\nstep\tO\tstep\tO\n#3\tO\t#3\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9800642\tO\t9800642\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9800642/\tO\thttps://stackoverflow.com/questions/9800642/\tO\n\t\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nbest\tO\tbest\tO\npractice\tO\tpractice\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n3\tO\t3\tO\nports\tB-Device\tports\tO\nunless\tO\tunless\tO\neach\tO\teach\tO\noperation\tO\toperation\tO\nwas\tO\twas\tO\nit\tO\tit\tO\n's\tO\t's\tO\nown\tO\town\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\na\tO\ta\tO\nfile\tB-Application\tfile\tO\nserver\tI-Application\tserver\tO\n,\tO\t,\tO\nan\tO\tan\tO\nimage\tB-Application\timage\tO\nserver\tI-Application\tserver\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\ncreate\tO\tcreate\tO\none\tO\tone\tO\napplication\tO\tapplication\tO\nlistening\tO\tlistening\tO\non\tO\ton\tO\n1\tO\t1\tO\nport\tB-Device\tport\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nThreading\tO\tThreading\tO\nto\tO\tto\tO\naccept\tO\taccept\tO\nmultiple\tO\tmultiple\tO\nconnections\tO\tconnections\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n(\tO\t(\tO\neach\tO\teach\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n's\tO\t's\tO\nown\tO\town\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\na\tO\ta\tO\nStreamReader\tB-Library_Class\tStreamReader\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nthen\tO\tthen\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nparser\tB-Function_Name\tparser\tO\nmethod\tO\tmethod\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nsends\tO\tsends\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\n\"\tB-Value\t\"\tO\nRECIEVE\tI-Value\tRECIEVE\tO\nFILE\tI-Value\tFILE\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\na\tO\ta\tO\nFile\tO\tFile\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nsent\tO\tsent\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\n\"\tB-Value\t\"\tO\nIMAGE\tI-Value\tIMAGE\tO\n\"\tI-Value\t\"\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nmulti\tO\tmulti\tO\nthreaded\tO\tthreaded\tO\nservers\tB-Application\tservers\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttp://csharp.net-informations.com/communications/csharp-multi-threaded-server-socket.htm\tO\thttp://csharp.net-informations.com/communications/csharp-multi-threaded-server-socket.htm\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27976879\tO\t27976879\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27976879/\tO\thttps://stackoverflow.com/questions/27976879/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nroute\tB-Library_Function\troute\tO\nmultiple\tO\tmultiple\tO\npaths\tO\tpaths\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntemplate\tO\ttemplate\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\n/abc/home\tB-File_Name\t/abc/home\tB-Code_Block\nand\tO\tand\tO\n/home\tB-File_Name\t/home\tB-Code_Block\nwill\tO\twill\tO\nboth\tO\tboth\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nhome\tO\thome\tB-Code_Block\ntemplate\tO\ttemplate\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npaths\tO\tpaths\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nsubpaths\tO\tsubpaths\tO\n,\tO\t,\tO\nso\tO\tso\tO\nabc/parent/child\tB-File_Name\tabc/parent/child\tB-Code_Block\nand\tO\tand\tO\n/parent/child\tB-File_Name\t/parent/child\tB-Code_Block\nshould\tO\tshould\tO\nroute\tB-Library_Function\troute\tO\nto\tO\tto\tO\nsame\tO\tsame\tO\npath\tO\tpath\tO\nalso\tO\talso\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\nrepeat\tO\trepeat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3267\tI-Code_Block\tQ_3267\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrepeat\tO\trepeat\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nto\tO\tto\tO\nroute\tB-Library_Function\troute\tO\nto\tO\tto\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nonce\tO\tonce\tO\n-\tO\t-\tO\nfor\tO\tfor\tO\nconvenience\tO\tconvenience\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nto\tO\tto\tO\nminimize\tO\tminimize\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nparameters\tO\tparameters\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3268\tI-Code_Block\tQ_3268\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nis\tO\tis\tO\nrepeating\tO\trepeating\tO\nmyself\tO\tmyself\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\ncan\tO\tcan\tO\nsubpaths\tO\tsubpaths\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nrouting\tO\trouting\tO\nfor\tO\tfor\tO\n/:_abc/:parent/:children\tB-File_Name\t/:_abc/:parent/:children\tB-Code_Block\nand\tO\tand\tO\n/:_abc/:grandparent/:parent/:children/\tB-File_Name\t/:_abc/:grandparent/:parent/:children/\tB-Code_Block\n:\tO\t:\tI-Code_Block\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nmessy\tO\tmessy\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nRouter.go()\tB-Library_Function\tRouter.go()\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3269\tI-Code_Block\tQ_3269\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nremoves\tO\tremoves\tO\nthe\tO\tthe\tO\n/abc/\tB-File_Name\t/abc/\tB-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nundesired\tO\tundesired\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\nsolution\tO\tsolution\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nshared\tO\tshared\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3270\tI-Code_Block\tQ_3270\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\ninstead\tO\tinstead\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nspecify\tO\tspecify\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nor\tO\tor\tO\ncomma-separated\tO\tcomma-separated\tO\nstring\tB-Data_Type\tstring\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3271\tI-Code_Block\tQ_3271\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nefficiently\tO\tefficiently\tO\nroute\tB-Library_Function\troute\tO\nmultiple\tO\tmultiple\tO\npaths\tO\tpaths\tO\nto\tO\tto\tO\none\tO\tone\tO\ntemplate\tO\ttemplate\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nnot\tO\tnot\tO\nrepeating\tO\trepeating\tO\nmyself\tO\tmyself\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27976879\tO\t27976879\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27976879/\tO\thttps://stackoverflow.com/questions/27976879/\tO\n\t\n\t\nUse\tO\tUse\tO\na\tO\ta\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\n(\tO\t(\tO\nregex\tO\tregex\tO\n)\tO\t)\tO\nthat\tO\tthat\tO\nmatches\tO\tmatches\tO\nboth\tO\tboth\tO\n/home\tB-File_Name\t/home\tB-Code_Block\nand\tO\tand\tO\n/abc/home\tB-File_Name\t/abc/home\tB-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27976879\tO\t27976879\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27976879/\tO\thttps://stackoverflow.com/questions/27976879/\tO\n\t\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\ntemplate\tO\ttemplate\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\nincludes\tO\tincludes\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\nthis\tO\tthis\tO\nmight\tO\tmight\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6530\tI-Code_Block\tA_6530\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28871631\tO\t28871631\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28871631/\tO\thttps://stackoverflow.com/questions/28871631/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3407\tI-Code_Block\tQ_3407\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nstill\tO\tstill\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nin\tO\tin\tO\nscanFileName\tB-Library_Function\tscanFileName\tO\n(\tI-Library_Function\t(\tO\nJlabel\tI-Library_Function\tJlabel\tO\n)\tI-Library_Function\t)\tO\nis\tO\tis\tO\ndirectly\tO\tdirectly\tO\nshowing\tO\tshowing\tO\n\"\tB-Value\t\"\tO\n.\tI-Value\t.\tO\n\"\tI-Value\t\"\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n\"\"\tB-Value\t\"\"\tO\n,\tO\t,\tO\n\"\tB-Value\t\"\tO\nPlease\tI-Value\tPlease\tO\nWait\tI-Value\tWait\tO\n.\tI-Value\t.\tO\nLoading\tI-Value\tLoading\tO\nDatabase\tI-Value\tDatabase\tO\n..\tI-Value\t..\tO\n.\tI-Value\t.\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\n\"\tB-Value\t\"\tO\n.\tI-Value\t.\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\ngrateful\tO\tgrateful\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28871631\tO\t28871631\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28871631/\tO\thttps://stackoverflow.com/questions/28871631/\tO\n\t\n\t\nStart\tO\tStart\tO\nby\tO\tby\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nread\tO\tread\tO\nthrough\tO\tthrough\tO\nConcurrency\tO\tConcurrency\tO\nin\tO\tin\tO\nSwing\tB-Library\tSwing\tO\n.\tO\t.\tO\n\t\nSwing\tB-Library\tSwing\tO\nis\tO\tis\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nthreaded\tO\tthreaded\tO\nframework\tO\tframework\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nanything\tO\tanything\tO\nwhich\tO\twhich\tO\nblocks\tO\tblocks\tO\nthis\tO\tthis\tO\nthread\tO\tthread\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nThread.sleep\tB-Library_Function\tThread.sleep\tB-Code_Block\n)\tO\t)\tO\nwill\tO\twill\tO\nprevent\tO\tprevent\tO\nthe\tO\tthe\tO\nframework\tO\tframework\tO\nfrom\tO\tfrom\tO\nprocessing\tO\tprocessing\tO\nnew\tO\tnew\tO\nevents\tO\tevents\tO\n(\tO\t(\tO\nincluding\tO\tincluding\tO\npaint\tO\tpaint\tO\nrequests\tO\trequests\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nany\tO\tany\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nways\tO\tways\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nprobably\tO\tprobably\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\nis\tO\tis\tO\na\tO\ta\tO\nSwing\tB-Library\tSwing\tO\njavax.swing.Timer\tB-Library_Class\tjavax.swing.Timer\tB-Code_Block\n.\tO\t.\tO\n\t\nTake\tO\tTake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nSwing\tB-Library_Class\tSwing\tO\nTimers\tI-Library_Class\tTimers\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19344566\tO\t19344566\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19344566/\tO\thttps://stackoverflow.com/questions/19344566/\tO\n\t\n\t\nTLDR\tO\tTLDR\tO\n:\tO\t:\tO\nGetting\tO\tGetting\tO\nfatal\tB-Error_Name\tfatal\tO\nerror\tI-Error_Name\terror\tO\n'\tO\t'\tO\nfailed\tO\tfailed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nprocess\tO\tprocess\tO\ntimes\tO\ttimes\tO\n'\tO\t'\tO\non\tO\ton\tO\ncross-native\tB-Version\tcross-native\tO\nbuild\tO\tbuild\tO\nof\tO\tof\tO\ngcc\tB-Application\tgcc\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\nremove\tO\tremove\tO\nreport_times\tB-Function_Name\treport_times\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\ngcc.c\tB-File_Name\tgcc.c\tO\nOR\tO\tOR\tO\nuse\tO\tuse\tO\ngcc\tB-Application\tgcc\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\noption\tO\toption\tO\nto\tO\tto\tO\ndisable\tO\tdisable\tO\nreport_times\tB-Function_Name\treport_times\tO\nOR\tO\tOR\tO\nbuild\tO\tbuild\tO\ngcc\tB-Application\tgcc\tO\nwithout\tO\twithout\tO\nlibiberty\tB-Library\tlibiberty\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\ncontains\tO\tcontains\tO\npex_get_times\tB-Library_Function\tpex_get_times\tO\nused\tO\tused\tO\nby\tO\tby\tO\nreport_times\tB-Function_Name\treport_times\tO\n\t\nDETAIL\tO\tDETAIL\tO\n\t\nAfter\tO\tAfter\tO\nbeating\tO\tbeating\tO\nmy\tO\tmy\tO\nhead\tO\thead\tO\nagainst\tO\tagainst\tO\nvarious\tO\tvarious\tO\nproblems\tO\tproblems\tO\nI\tO\tI\tO\n've\tO\t've\tO\n(\tO\t(\tO\nfinally\tO\tfinally\tO\n)\tO\t)\tO\nsuccessfully\tO\tsuccessfully\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\nAndroid\tB-Application\tAndroid\tO\nNDK\tI-Application\tNDK\tO\nstandalone\tI-Application\tstandalone\tO\ntoolchain\tI-Application\ttoolchain\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nbinutils\tB-Application\tbinutils\tO\n2.23\tB-Version\t2.23\tO\nand\tO\tand\tO\ngcc\tB-Application\tgcc\tO\n4.70\tB-Version\t4.70\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncurrent\tO\tcurrent\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\ngetting\tO\tgetting\tO\nit\tO\tit\tO\nto\tO\tto\tO\nrun\tO\trun\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nwritten\tO\twritten\tO\na\tO\ta\tO\nstandard\tO\tstandard\tO\n'\tO\t'\tO\nhello\tO\thello\tO\nworld\tO\tworld\tO\n'\tO\t'\tO\n(\tO\t(\tO\ncopied\tO\tcopied\tO\nfrom\tO\tfrom\tO\nhere\tO\there\tO\n)\tO\t)\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\ngcc\tB-Application\tgcc\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\n:\tO\t:\tO\n\t\narm-linux-eabi-gcc\tB-Code_Block\tarm-linux-eabi-gcc\tO\nhello.c\tI-Code_Block\thello.c\tO\n-o\tI-Code_Block\t-o\tO\nhello\tI-Code_Block\thello\tO\n\t\nor\tO\tor\tO\n:\tO\t:\tO\n\t\narm-linux-eabi-gcc\tB-Code_Block\tarm-linux-eabi-gcc\tO\nhello.c\tI-Code_Block\thello.c\tO\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\narm-linux-eabi-gcc\tB-Code_Block\tarm-linux-eabi-gcc\tO\n:\tI-Code_Block\t:\tO\nfatal\tB-Error_Name\tfatal\tO\nerror\tI-Error_Name\terror\tO\n:\tO\t:\tO\nfailed\tO\tfailed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nprocess\tO\tprocess\tO\ntimes\tO\ttimes\tO\n:\tO\t:\tO\nNo\tO\tNo\tO\nsuch\tO\tsuch\tO\nfile\tO\tfile\tO\nor\tO\tor\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nGoogle\tB-Website\tGoogle\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nreturn\tO\treturn\tO\nmuch\tO\tmuch\tO\nexcept\tO\texcept\tO\nfor\tO\tfor\tO\nlinks\tO\tlinks\tO\nto\tO\tto\tO\ngcc.c\tB-File_Name\tgcc.c\tO\nsource\tO\tsource\tO\n.\tO\t.\tO\n\t\nExamining\tO\tExamining\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nin\tO\tin\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nmodule\tO\tmodule\tO\n?\tO\t?\tO\n\t\nextension\tO\textension\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\ncalled\tO\tcalled\tO\nreport_times\tB-Function_Name\treport_times\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nreturned\tO\treturned\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nmodule\tO\tmodule\tO\n?\tO\t?\tO\nextension\tO\textension\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\npex_get_times\tB-Library_Function\tpex_get_times\tO\n....\tO\t....\tO\nI\tO\tI\tO\n'\tO\t'\tO\nm\tO\tm\tO\nguessing\tO\tguessing\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nso\tO\tso\tO\nif\tO\tif\tO\nit\tO\tit\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ntimes\tO\ttimes\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npex_get_times\tB-Library_Function\tpex_get_times\tO\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nmodule\tO\tmodule\tO\n?\tO\t?\tO\nextension\tO\textension\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\nis\tO\tis\tO\n)\tO\t)\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nlibiberty\tB-Library\tlibiberty\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n--disable-build-libiberty\tB-Code_Block\t--disable-build-libiberty\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhelp\tO\thelp\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nhost\tO\thost\tO\n(\tO\t(\tO\nmy\tO\tmy\tO\nNookHD\tB-Device\tNookHD\tO\n)\tO\t)\tO\ngcc\tB-Application\tgcc\tO\nbuild\tO\tbuild\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion(s)\tO\tquestion(s)\tO\n:\tO\t:\tO\n\t\nCan\tO\tCan\tO\nthis\tO\tthis\tO\nportion\tO\tportion\tO\nof\tO\tof\tO\ngcc.c\tB-File_Name\tgcc.c\tO\nbe\tO\tbe\tO\nsafely\tO\tsafely\tO\n(\tO\t(\tO\nand\tO\tand\tO\neasily\tO\teasily\tO\n)\tO\t)\tO\nremoved\tO\tremoved\tO\n...\tO\t...\tO\ni\tO\ti\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nreport_times\tB-Function_Name\treport_times\tO\nfunction\tI-Function_Name\tfunction\tO\nand\tO\tand\tO\neverything\tO\teverything\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nor\tO\tor\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\noption\tO\toption\tO\nto\tO\tto\tO\ntell\tO\ttell\tO\narm-linux-eabi-gcc\tB-Code_Block\tarm-linux-eabi-gcc\tO\nNOT\tO\tNOT\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nreport_times\tB-Function_Name\treport_times\tO\n?\tO\t?\tO\n\t\nor\tO\tor\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndisable\tO\tdisable\tO\nbuild\tO\tbuild\tO\nof\tO\tof\tO\nlibiberty\tB-Library\tlibiberty\tO\nfor\tO\tfor\tO\nhost/target\tO\thost/target\tO\nfor\tO\tfor\tO\nboth\tO\tboth\tO\ngcc\tB-Library\tgcc\tO\nand\tO\tand\tO\nbinutils\tB-Library\tbinutils\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwould\tO\twould\tO\nthat\tO\tthat\tO\nfix\tO\tfix\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n?\tO\t?\tO\n\t\nAs\tO\tAs\tO\nalways\tO\talways\tO\n...\tO\t...\tO\nI\tO\tI\tO\n'\tO\t'\tO\nll\tO\tll\tO\nkeep\tO\tkeep\tO\nresearching\tO\tresearching\tO\nwhile\tO\twhile\tO\nawaiting\tO\tawaiting\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19344566\tO\t19344566\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19344566/\tO\thttps://stackoverflow.com/questions/19344566/\tO\n\t\n\t\nFound\tO\tFound\tO\nthis\tO\tthis\tO\nabout\tO\tabout\tO\nan\tO\tan\tO\nhour\tO\thour\tO\nafter\tO\tafter\tO\nposting\tO\tposting\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\ntwo\tO\ttwo\tO\n.\tO\t.\tO\n\t\nApparently\tO\tApparently\tO\nreport_times\tB-Function_Name\treport_times\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\ndebugging\tO\tdebugging\tO\nsymbols\tO\tsymbols\tO\n(?)\tO\t(?)\tO\n\t\nfor\tO\tfor\tO\nGCC\tB-Application\tGCC\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nexclude\tO\texclude\tO\nreport_times\tB-Function_Name\treport_times\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\ncauses\tO\tcauses\tO\nthe\tO\tthe\tO\n'\tB-Error_Name\t'\tO\nfailed\tI-Error_Name\tfailed\tO\nto\tI-Error_Name\tto\tO\nget\tI-Error_Name\tget\tO\nprocess\tI-Error_Name\tprocess\tO\ntimes\tI-Error_Name\ttimes\tO\n'\tB-Error_Name\t'\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nquestion\tO\tquestion\tO\n)\tO\t)\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\ndebug\tO\tdebug\tO\n...\tO\t...\tO\nor\tO\tor\tO\nrelease\tO\trelease\tO\n...\tO\t...\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\ngcc\tO\tgcc\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nused\tO\tused\tO\ninfo\tO\tinfo\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\nhttp://www-gpsg.mit.edu/~simon/gcc_g77_install/build.html\tO\thttp://www-gpsg.mit.edu/~simon/gcc_g77_install/build.html\tO\n\t\nBUT\tO\tBUT\tO\n,\tO\t,\tO\nI\tO\tI\tO\nomitted\tO\tomitted\tO\nthe\tO\tthe\tO\n-g\tB-Code_Block\t-g\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nLIBCXXFLAGS\tB-Code_Block\tLIBCXXFLAGS\tO\nand\tO\tand\tO\nLIBCFLAGS\tB-Code_Block\tLIBCFLAGS\tO\nand\tO\tand\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\nLIBCPPFLAGS\tB-Code_Block\tLIBCPPFLAGS\tO\nwithout\tO\twithout\tO\n-g\tB-Code_Block\t-g\tO\njust\tO\tjust\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nRan\tO\tRan\tO\nmake\tB-Code_Block\tmake\tO\nDESTDIR\tI-Code_Block\tDESTDIR\tO\n=\tI-Code_Block\t=\tO\n/staging/install/path\tI-Code_Block\t/staging/install/path\tO\ninstall-host\tI-Code_Block\tinstall-host\tO\n,\tO\t,\tO\ntarballed\tO\ttarballed\tO\nand\tO\tand\tO\ntransferred\tO\ttransferred\tO\nto\tO\tto\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nNo\tO\tNo\tO\nmore\tO\tmore\tO\n'\tO\t'\tO\nfailed\tB-Error_Name\tfailed\tO\nto\tI-Error_Name\tto\tO\nget\tI-Error_Name\tget\tO\nprocess\tI-Error_Name\tprocess\tO\ntimes\tI-Error_Name\ttimes\tO\n'\tO\t'\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nseeing\tO\tseeing\tO\nanother\tO\tanother\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21383170\tO\t21383170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21383170/\tO\thttps://stackoverflow.com/questions/21383170/\tO\n\t\n\t\nWhen\tO\tWhen\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2298\tI-Code_Block\tQ_2298\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\nerror\tO\terror\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2299\tI-Code_Block\tQ_2299\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nreason\tO\treason\tO\nfor\tO\tfor\tO\ngiving\tO\tgiving\tO\nerror\tO\terror\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\nInternal\tB-Error_Name\tInternal\tO\ndata\tI-Error_Name\tdata\tO\nflow\tI-Error_Name\tflow\tO\nerror\tI-Error_Name\terror\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\ngstreamer\tB-Library\tgstreamer\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21383170\tO\t21383170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21383170/\tO\thttps://stackoverflow.com/questions/21383170/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nunfortunate\tO\tunfortunate\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\nsomething\tO\tsomething\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nRerun\tO\tRerun\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nenvironment\tO\tenvironment\tO\nvariable\tO\tvariable\tO\nGST_DEBUG\tB-Code_Block\tGST_DEBUG\tB-Code_Block\n=\"*\tI-Code_Block\t=\"*\tI-Code_Block\n:2\tI-Code_Block\t:2\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nto\tO\tto\tO\nsee\tO\tsee\tO\nall\tO\tall\tO\nwarnings\tO\twarnings\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21383170\tO\t21383170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21383170/\tO\thttps://stackoverflow.com/questions/21383170/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\npotential\tO\tpotential\tO\nreasons\tO\treasons\tO\nfor\tO\tfor\tO\ninternal\tB-Error_Name\tinternal\tB-Code_Block\ndata\tI-Error_Name\tdata\tI-Code_Block\nflow\tI-Error_Name\tflow\tI-Code_Block\nerror\tI-Error_Name\terror\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nencounter\tO\tencounter\tO\nthe\tO\tthe\tO\nproblematic\tO\tproblematic\tO\nplace\tO\tplace\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nconnect\tO\tconnect\tO\na\tO\ta\tO\nfakesink\tB-Library_Class\tfakesink\tB-Code_Block\nelement\tO\telement\tO\nstep\tO\tstep\tO\nby\tO\tby\tO\nstep\tO\tstep\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2910\tI-Code_Block\tA_2910\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46293816\tO\t46293816\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46293816/\tO\thttps://stackoverflow.com/questions/46293816/\tO\n\t\n\t\nAs\tO\tAs\tO\nmy\tO\tmy\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\ngetting\tO\tgetting\tO\npretty\tO\tpretty\tO\nlong\tO\tlong\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nlonger\tO\tlonger\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nwrap\tO\twrap\tO\naround\tO\taround\tO\nsome\tO\tsome\tO\ncodeblocks\tO\tcodeblocks\tO\nwithout\tO\twithout\tO\nchangeing\tO\tchangeing\tO\nreally\tO\treally\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nor\tO\tor\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nspeacking\tO\tspeacking\tO\nof\tO\tof\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\ncontainers\tO\tcontainers\tO\non\tO\ton\tO\nhtml\tB-Language\thtml\tO\nor\tO\tor\tO\neven\tO\teven\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nonly\tO\tonly\tO\nwrap\tO\twrap\tO\naround\tO\taround\tO\n\"\tO\t\"\tO\nint\tB-Code_Block\tint\tO\nmain\tI-Code_Block\tmain\tO\n(\tI-Code_Block\t(\tO\nvoid\tI-Code_Block\tvoid\tO\n)\tI-Code_Block\t)\tO\n\"\tO\t\"\tO\nfrom\tO\tfrom\tO\nc\tB-Language\tc\tO\nlanguages\tO\tlanguages\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6078\tI-Code_Block\tQ_6078\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nperfect\tO\tperfect\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nscript\tO\tscript\tO\nto\tO\tto\tO\nwrap\tO\twrap\tO\naround\tO\taround\tO\nin\tO\tin\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\ncontainer\tO\tcontainer\tO\nto\tO\tto\tO\nget\tO\tget\tO\nsome\tO\tsome\tO\nstructur\tO\tstructur\tO\ninto\tO\tinto\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\noption\tO\toption\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nwithout\tO\twithout\tO\nchanging\tO\tchanging\tO\nscopes\tO\tscopes\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46293816\tO\t46293816\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46293816/\tO\thttps://stackoverflow.com/questions/46293816/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nPowerShell\tB-Application\tPowerShell\tO\nISE\tI-Application\tISE\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n#region\tB-Code_Block\t#region\tB-Code_Block\n:\tO\t:\tO\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncollapse\tO\tcollapse\tO\neach\tO\teach\tO\nindividual\tO\tindividual\tO\nregion\tO\tregion\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nan\tO\tan\tO\nalso\tO\talso\tO\nnest\tO\tnest\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37688792\tO\t37688792\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37688792/\tO\thttps://stackoverflow.com/questions/37688792/\tO\n\t\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsearch\tO\tsearch\tO\nbox\tB-User_Interface_Element\tbox\tO\nthat\tO\tthat\tO\nsuggests\tO\tsuggests\tO\nresults\tO\tresults\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nas\tO\tas\tO\nuser\tO\tuser\tO\ntypes\tO\ttypes\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nExample\tO\tExample\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\najax\tB-Library_Function\tajax\tO\nin\tO\tin\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nlive\tO\tlive\tO\nsearch\tO\tsearch\tO\nas\tO\tas\tO\nuser\tO\tuser\tO\ntypes\tO\ttypes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4730\tI-Code_Block\tQ_4730\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nin\tO\tin\tO\nanother\tO\tanother\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nres.php\tB-File_Name\tres.php\tO\n)\tO\t)\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsql\tB-Library_Function\tsql\tO\nrequest\tI-Library_Function\trequest\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndisplay\tO\tdisplay\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\n'\tO\t'\tO\nonclick\tB-Library_Function\tonclick\tO\n'\tO\t'\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nsuggestion\tO\tsuggestion\tO\nin\tO\tin\tO\ntext\tB-User_Interface_Element\ttext\tO\nbox\tI-User_Interface_Element\tbox\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4731\tI-Code_Block\tQ_4731\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsuggestion\tO\tsuggestion\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\noption\tO\toption\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nreplaced\tO\treplaced\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntext\tB-User_Interface_Element\ttext\tO\nbox\tI-User_Interface_Element\tbox\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n\"\tB-Value\t\"\tO\nUniversity\tI-Value\tUniversity\tO\nof\tI-Value\tof\tO\nWashington\tI-Value\tWashington\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthat\tO\tthat\tO\nproblem\tO\tproblem\tO\nfor\tO\tfor\tO\n2\tO\t2\tO\ndays\tO\tdays\tO\nnow\tO\tnow\tO\nand\tO\tand\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nUPDATE\tO\tUPDATE\tO\n\t\nFound\tO\tFound\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nif\tO\tif\tO\nsomeone\tO\tsomeone\tO\nis\tO\tis\tO\ninterested\tO\tinterested\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nin\tO\tin\tO\nres.php\tB-File_Name\tres.php\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4732\tI-Code_Block\tQ_4732\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4733\tI-Code_Block\tQ_4733\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37688792\tO\t37688792\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37688792/\tO\thttps://stackoverflow.com/questions/37688792/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nonclick\tB-Library_Function\tonclick\tO\nmethod\tO\tmethod\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\njQuery\tB-Library\tjQuery\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nlist\tB-Data_Structure\tlist\tO\nitems\tO\titems\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\n,\tO\t,\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nonclick\tB-Library_Function\tonclick\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\npassing\tO\tpassing\tO\nthis.value\tB-Variable_Name\tthis.value\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5426\tI-Code_Block\tA_5426\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nyour\tO\tyour\tO\nfill()\tB-Library_Function\tfill()\tO\nmethod\tO\tmethod\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5427\tI-Code_Block\tA_5427\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\nare\tO\tare\tO\nmixing\tO\tmixing\tO\nplain\tO\tplain\tO\nJavaScript\tB-Language\tJavaScript\tO\nand\tO\tand\tO\njQuery\tB-Library\tjQuery\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nreplaced\tO\treplaced\tO\nyour\tO\tyour\tO\nplain\tO\tplain\tO\nJS\tB-Language\tJS\tO\nline\tO\tline\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\njQuery\tB-Library\tjQuery\tO\nequivalent\tO\tequivalent\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nfill()\tB-Library_Function\tfill()\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nloop\tO\tloop\tO\nthat\tO\tthat\tO\nadds\tO\tadds\tO\nthe\tO\tthe\tO\nLIs\tB-HTML_XML_Tag\tLIs\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nadding\tO\tadding\tO\nmultiple\tO\tmultiple\tO\nfill\tB-Library_Function\tfill\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nincorrect\tO\tincorrect\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nonce\tO\tonce\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nscript\tO\tscript\tO\ntag\tO\ttag\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5428\tI-Code_Block\tA_5428\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37688792\tO\t37688792\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37688792/\tO\thttps://stackoverflow.com/questions/37688792/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5429\tI-Code_Block\tA_5429\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6803986\tO\t6803986\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6803986/\tO\thttps://stackoverflow.com/questions/6803986/\tO\n\t\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nValgrind\tB-Application\tValgrind\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_518\tI-Code_Block\tQ_518\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nany\tO\tany\tO\nconcern\tO\tconcern\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6803986\tO\t6803986\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6803986/\tO\thttps://stackoverflow.com/questions/6803986/\tO\n\t\n\t\nA\tO\tA\tO\nbig\tO\tbig\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nValgrind\tB-Application\tValgrind\tO\n's\tO\t's\tO\nmagic\tO\tmagic\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nis\tO\tis\tO\nable\tO\table\tO\nto\tO\tto\tO\nintercept/redirect\tO\tintercept/redirect\tO\nfunction\tO\tfunction\tO\ncalls\tO\tcalls\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\ntrack\tO\ttrack\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nworld\tO\tworld\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nit\tO\tit\tO\n,\tO\t,\tO\nredirection\tO\tredirection\tO\nis\tO\tis\tO\nachieved\tO\tachieved\tO\nusing\tO\tusing\tO\nshared\tO\tshared\tO\nobject/function\tO\tobject/function\tO\nname\tO\tname\tO\npatterns\tO\tpatterns\tO\nwhich\tO\twhich\tO\nwhen\tO\twhen\tO\nmatched\tO\tmatched\tO\n'\tO\t'\tO\nredirect\tO\tredirect\tO\n'\tO\t'\tO\ncalls\tO\tcalls\tO\nto\tO\tto\tO\nnew\tO\tnew\tO\naddresses\tO\taddresses\tO\n.\tO\t.\tO\n\t\nChecking\tO\tChecking\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nvalgrind\tB-Application\tvalgrind\tO\nsource\tO\tsource\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nnotion\tO\tnotion\tO\nof\tO\tof\tO\na\tO\ta\tO\n'\tO\t'\tO\nredirector\tO\tredirector\tO\n'\tO\t'\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_790\tI-Code_Block\tA_790\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nm_redir.c\tB-File_Name\tm_redir.c\tO\nline\tO\tline\tO\n10\tO\t10\tO\n4)\tO\t4)\tO\n\t\nSo\tO\tSo\tO\n'\tO\t'\tO\nSpecs\tO\tSpecs\tO\n'\tO\t'\tO\nprovide\tO\tprovide\tO\nshared\tO\tshared\tO\nobject/function\tO\tobject/function\tO\nname\tO\tname\tO\nto\tO\tto\tO\naddress\tO\taddress\tO\nmappings\tO\tmappings\tO\nand\tO\tand\tO\n'\tO\t'\tO\nActives\tO\tActives\tO\n'\tO\t'\tO\nrepresent\tO\trepresent\tO\nthe\tO\tthe\tO\nmappings\tO\tmappings\tO\nthemselves\tO\tthemselves\tO\n.\tO\t.\tO\n\t\nActive\tO\tActive\tO\ncomputation\tO\tcomputation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_791\tI-Code_Block\tA_791\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nm_redir.c\tB-File_Name\tm_redir.c\tO\nline\tO\tline\tO\n120\tO\t120\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nidea\tO\tidea\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nconflicting\tO\tconflicting\tO\nredirections\tO\tredirections\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nmentioned\tO\tmentioned\tO\nhere\tO\there\tO\ntoo\tO\ttoo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_792\tI-Code_Block\tA_792\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nm_redir.c\tB-File_Name\tm_redir.c\tO\nline\tO\tline\tO\n15\tO\t15\tO\n2)\tO\t2)\tO\n\t\nAnd\tO\tAnd\tO\nfor\tO\tfor\tO\ninterests\tO\tinterests\tO\nsake\tO\tsake\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\nyour\tO\tyour\tO\nwarning\tO\twarning\tO\nis\tO\tis\tO\ngenerated\tO\tgenerated\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_793\tI-Code_Block\tA_793\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nm_redir.c\tB-File_Name\tm_redir.c\tO\nline\tO\tline\tO\n66\tO\t66\tO\n4)\tO\t4)\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nafter\tO\tafter\tO\nall\tO\tall\tO\nthis\tO\tthis\tO\nit\tO\tit\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nsafe\tO\tsafe\tO\nto\tO\tto\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nredirection\tO\tredirection\tO\nmessages\tO\tmessages\tO\nare\tO\tare\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nnormal\tO\tnormal\tO\nvalgrind\tB-Application\tvalgrind\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nwarning\tO\twarning\tO\nmessage\tO\tmessage\tO\nis\tO\tis\tO\nlikely\tO\tlikely\tO\na\tO\ta\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\nconflicting\tO\tconflicting\tO\nspec\tO\tspec\tO\npatterns\tO\tpatterns\tO\n(\tO\t(\tO\nprobably\tO\tprobably\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\ncause\tO\tcause\tO\nfor\tO\tfor\tO\nconcern\tO\tconcern\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nReferences\tO\tReferences\tO\n:\tO\t:\tO\nValgrind\tB-Application\tValgrind\tO\nmanual\tO\tmanual\tO\n,\tO\t,\tO\nValgrind\tB-Application\tValgrind\tO\n3.6.1\tB-Version\t3.6.1\tO\nsource\tO\tsource\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13329794\tO\t13329794\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13329794/\tO\thttps://stackoverflow.com/questions/13329794/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nGUI\tO\tGUI\tO\nautomation\tO\tautomation\tO\napplication\tO\tapplication\tO\nwhereby\tO\twhereby\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nlistview\tB-Library_Class\tlistview\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlistview\tB-Library_Class\tlistview\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\nSysListView32\tB-Variable_Name\tSysListView32\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nfollowing\tO\tfollowing\tO\nstyles\tO\tstyles\tO\nset\tO\tset\tO\nLVS_OWNERDRAWFIXED\tB-Library_Class\tLVS_OWNERDRAWFIXED\tO\n\t\nGenerally\tO\tGenerally\tO\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nfrom\tO\tfrom\tO\nlistview\tB-Library_Class\tlistview\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nprocedure\tO\tprocedure\tO\n\t\nAllocate\tO\tAllocate\tO\nmemory\tO\tmemory\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nspace\tO\tspace\tO\nof\tO\tof\tO\nother\tO\tother\tO\nprocess\tO\tprocess\tO\n\t\nSend\tO\tSend\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nlistview\tB-Library_Class\tlistview\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npointer\tB-Data_Type\tpointer\tO\nof\tO\tof\tO\nbuffer\tB-Data_Structure\tbuffer\tO\nallocated\tO\tallocated\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nprocess\tO\tprocess\tO\n\t\nRead\tO\tRead\tO\nthe\tO\tthe\tO\nbuffer\tO\tbuffer\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nlistview\tB-Library_Class\tlistview\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nownerdrawn\tO\townerdrawn\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlistview\tB-Library_Class\tlistview\tO\nappears\tO\tappears\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndrawn\tO\tdrawn\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nowner\tO\towner\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nlistitem\tB-Library_Class\tlistitem\tO\nhas\tO\thas\tO\nno\tO\tno\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nfrom\tO\tfrom\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nlistview\tB-Library_Class\tlistview\tO\neither\tO\teither\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ndiscussed\tO\tdiscussed\tO\nor\tO\tor\tO\nby\tO\tby\tO\nany\tO\tany\tO\nmethod\tO\tmethod\tO\nor\tO\tor\tO\nby\tO\tby\tO\nhooking\tO\thooking\tO\nthe\tO\tthe\tO\napi\tB-Library\tapi\tO\nor\tO\tor\tO\nwhatsoever\tO\twhatsoever\tO\nmethod\tO\tmethod\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13329794\tO\t13329794\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13329794/\tO\thttps://stackoverflow.com/questions/13329794/\tO\n\t\n\t\nThe\tO\tThe\tO\ncontrol\tO\tcontrol\tO\nmust\tO\tmust\tO\nstill\tO\tstill\tO\nadd\tO\tadd\tO\nLVITEMs\tB-Library_Class\tLVITEMs\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlist\tB-Library_Class\tlist\tO\nview\tI-Library_Class\tview\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nno\tO\tno\tO\nobligation\tO\tobligation\tO\nto\tO\tto\tO\nput\tO\tput\tO\nanything\tO\tanything\tO\nuseful\tO\tuseful\tO\nin\tO\tin\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nSpecifying\tO\tSpecifying\tO\na\tO\ta\tO\nnull\tO\tnull\tO\npszText\tB-Library_Variable\tpszText\tO\nor\tO\tor\tO\niImage\tB-Library_Variable\tiImage\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\ndoes\tO\tdoes\tO\nits\tO\tits\tO\nown\tO\town\tO\ndrawing\tO\tdrawing\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nWM_DRAWITEM\tB-Library_Function\tWM_DRAWITEM\tO\nmessage\tO\tmessage\tO\nhandler\tO\thandler\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\ninternal\tO\tinternal\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nrender\tO\trender\tO\nthe\tO\tthe\tO\nitem\tO\titem\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nway\tO\tway\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nwhere\tO\twhere\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nstored\tO\tstored\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nfake\tO\tfake\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nWM_DRAWITEM\tB-Library_Function\tWM_DRAWITEM\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nalbeit\tO\talbeit\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nhard\tO\thard\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\ninject\tO\tinject\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nHDC\tO\tHDC\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\njust\tO\tjust\tO\ngets\tO\tgets\tO\nyou\tO\tyou\tO\npixels\tO\tpixels\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nbytes\tO\tbytes\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nOCR\tO\tOCR\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nmajor\tO\tmajor\tO\noutlier\tO\toutlier\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nRealistically\tO\tRealistically\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nthrow\tO\tthrow\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntowel\tO\ttowel\tO\non\tO\ton\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25481423\tO\t25481423\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25481423/\tO\thttps://stackoverflow.com/questions/25481423/\tO\n\t\n\t\nGuys\tO\tGuys\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\none\tO\tone\tO\nmisunderstanding\tO\tmisunderstanding\tO\nin\tO\tin\tO\njavascript\tB-Language\tjavascript\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nmake\tO\tmake\tO\na\tO\ta\tO\najax-request\tB-Library_Function\tajax-request\tO\nwith\tO\twith\tO\nfunction\tO\tfunction\tO\nfoo()\tB-Function_Name\tfoo()\tO\nand\tO\tand\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nreturn\tO\treturn\tO\nresult\tO\tresult\tO\ndata\tO\tdata\tO\nby\tO\tby\tO\nfoo()\tB-Function_Name\tfoo()\tO\nreturn\tO\treturn\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nreturn\tO\treturn\tO\nsomething\tO\tsomething\tO\nin\tO\tin\tO\ncallback\tB-Library_Function\tcallback\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\n$\tB-Library_Function\t$\tO\n.ajax\tI-Library_Function\t.ajax\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nif\tO\tif\tO\najax\tB-Library_Function\tajax\tO\nreurn\tO\treurn\tO\ndata\tO\tdata\tO\nthen\tO\tthen\tO\nfunction\tO\tfunction\tO\nfoo()\tB-Function_Name\tfoo()\tO\nreturn\tO\treturn\tO\nsame\tO\tsame\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2893\tI-Code_Block\tQ_2893\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25481423\tO\t25481423\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25481423/\tO\thttps://stackoverflow.com/questions/25481423/\tO\n\t\n\t\nUse\tO\tUse\tO\nas\tO\tas\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3503\tI-Code_Block\tA_3503\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17717035\tO\t17717035\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17717035/\tO\thttps://stackoverflow.com/questions/17717035/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nextra\tO\textra\tO\nattribute\tO\tattribute\tO\nto\tO\tto\tO\njquery\tB-Library\tjquery\tO\ndialog\tB-Library_Class\tdialog\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1814\tI-Code_Block\tQ_1814\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhow\tO\thow\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\nlike\tO\tlike\tO\n\"\tO\t\"\tO\ndialog-status\tB-Value\tdialog-status\tO\n\"\tO\t\"\tO\nwhen\tO\twhen\tO\ncreating\tO\tcreating\tO\ndialog\tB-Library_Class\tdialog\tO\n.\tO\t.\tO\n\t\nany\tO\tany\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17717035\tO\t17717035\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17717035/\tO\thttps://stackoverflow.com/questions/17717035/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3069\tI-Code_Block\tA_3069\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46228570\tO\t46228570\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46228570/\tO\thttps://stackoverflow.com/questions/46228570/\tO\n\t\n\t\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nline\tO\tline\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nMakefile\tB-File_Name\tMakefile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6064\tI-Code_Block\tQ_6064\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEverything\tO\tEverything\tO\nunder\tO\tunder\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\nwill\tO\twill\tO\nrun\tO\trun\tO\nwhenever\tO\twhenever\tO\na\tO\ta\tO\n.cpp\tB-File_Type\t.cpp\tB-Code_Block\nor\tO\tor\tO\n.hpp\tB-File_Type\t.hpp\tB-Code_Block\nfile\tO\tfile\tO\nanywhere\tO\tanywhere\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nmodified\tO\tmodified\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nintended\tO\tintended\tO\nbehavior\tO\tbehavior\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nwhen\tO\twhen\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\nmachines\tO\tmachines\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nMakefile\tB-File_Name\tMakefile\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nLinux\tB-Operating_System\tLinux\tO\nmachine\tO\tmachine\tO\n,\tO\t,\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nis\tO\tis\tO\noutput\tO\toutput\tO\n(\tO\t(\tO\n***\tB-Output_Block\t***\tB-Code_Block\nmixed\tI-Output_Block\tmixed\tI-Code_Block\nimplicit\tI-Output_Block\timplicit\tI-Code_Block\nand\tI-Output_Block\tand\tI-Code_Block\nnormal\tI-Output_Block\tnormal\tI-Code_Block\nrules\tI-Output_Block\trules\tI-Code_Block\n:\tI-Output_Block\t:\tI-Code_Block\ndeprecated\tI-Output_Block\tdeprecated\tI-Code_Block\nsyntax\tI-Output_Block\tsyntax\tI-Code_Block\n)\tO\t)\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nrun\tO\trun\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nmodified\tO\tmodified\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nvery\tO\tvery\tO\ncurious\tO\tcurious\tO\nas\tO\tas\tO\nto\tO\tto\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nfunctioning\tO\tfunctioning\tO\nfine\tO\tfine\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nLinux\tB-Operating_System\tLinux\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nWindows\tB-Operating_System\tWindows\tO\n:\tO\t:\tO\nGNU\tB-Application\tGNU\tO\nMake\tI-Application\tMake\tO\n4.1\tB-Version\t4.1\tO\n(\tO\t(\tO\nBuilt\tO\tBuilt\tO\nfor\tO\tfor\tO\ni686-w64-mingw32\tB-Device\ti686-w64-mingw32\tO\n)\tO\t)\tO\n\t\nLinux\tB-Operating_System\tLinux\tO\n:\tO\t:\tO\nGNU\tB-Application\tGNU\tO\nMake\tI-Application\tMake\tO\n4.1\tB-Version\t4.1\tO\n(\tO\t(\tO\nBuilt\tO\tBuilt\tO\nfor\tO\tfor\tO\nx86_64-pc-linux-gnu\tB-Device\tx86_64-pc-linux-gnu\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13059725\tO\t13059725\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13059725/\tO\thttps://stackoverflow.com/questions/13059725/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\nan\tO\tan\tO\nUbuntu\tB-Operating_System\tUbuntu\tO\nVM\tB-Application\tVM\tO\nin\tO\tin\tO\nVirtualBox\tB-Application\tVirtualBox\tO\n(\tO\t(\tO\nv4.2.0-r80737\tB-Version\tv4.2.0-r80737\tO\n)\tO\t)\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nWindows\tB-Operating_System\tWindows\tO\n7\tB-Version\t7\tO\nbox\tO\tbox\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nhosting\tO\thosting\tO\na\tO\ta\tO\ngit\tB-Application\tgit\tO\nrepo\tO\trepo\tO\n,\tO\t,\tO\nwebsite\tO\twebsite\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nother\tO\tother\tO\ndev\tO\tdev\tO\ntools\tO\ttools\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\neasily\tO\teasily\tO\naccessible\tO\taccessible\tO\nfrom\tO\tfrom\tO\nother\tO\tother\tO\nmachines\tO\tmachines\tO\n,\tO\t,\tO\nand\tO\tand\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nhost\tO\thost\tO\nmachine\tO\tmachine\tO\nvia\tO\tvia\tO\nproxies\tO\tproxies\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nsite/repo\tO\tsite/repo\tO\ndirectly\tO\tdirectly\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nhost\tO\thost\tO\nmachine\tO\tmachine\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnetwork\tO\tnetwork\tO\nsetup\tO\tsetup\tO\nin\tO\tin\tO\nVirtualBox\tB-Application\tVirtualBox\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nVM\tB-Application\tVM\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nAttached\tO\tAttached\tO\nto\tO\tto\tO\n:\tO\t:\tO\nBridged\tB-Device\tBridged\tO\nAdapter\tI-Device\tAdapter\tO\n\t\nAdapter\tB-Device\tAdapter\tO\nType\tO\tType\tO\n:\tO\t:\tO\nIntel\tB-Device\tIntel\tO\nPRO/1000MT\tI-Device\tPRO/1000MT\tO\nDesktop\tI-Device\tDesktop\tO\n\t\nPromiscuous\tO\tPromiscuous\tO\nMode\tO\tMode\tO\n:\tO\t:\tO\nDeny\tO\tDeny\tO\n\t\nCable\tO\tCable\tO\nConnected\tO\tConnected\tO\n\t\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nhost\tO\thost\tO\nis\tO\tis\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nwebpage\tO\twebpage\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nLAN\tO\tLAN\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nwider\tO\twider\tO\nInternet\tO\tInternet\tO\n,\tO\t,\tO\nand\tO\tand\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nblocked\tO\tblocked\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\n,\tO\t,\tO\nor\tO\tor\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n,\tO\t,\tO\nso\tO\tso\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nthere\tO\tthere\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nawesome\tO\tawesome\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13059725\tO\t13059725\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13059725/\tO\thttps://stackoverflow.com/questions/13059725/\tO\n\t\n\t\nThe\tO\tThe\tO\nset\tO\tset\tO\nup\tO\tup\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nentry\tO\tentry\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhosts\tO\thosts\tO\nfile\tO\tfile\tO\non\tO\ton\tO\neither\tO\teither\tO\nside\tO\tside\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nlife\tO\tlife\tO\neasier\tO\teasier\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nnecessary\tO\tnecessary\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nset\tO\tset\tO\nup\tO\tup\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nUsually\tO\tUsually\tO\n,\tO\t,\tO\nit\tO\tit\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\ncompletely\tO\tcompletely\tO\nshutdown\tO\tshutdown\tO\nthe\tO\tthe\tO\nVM\tB-Application\tVM\tO\nand\tO\tand\tO\nboot\tO\tboot\tO\nit\tO\tit\tO\nup\tO\tup\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13059725\tO\t13059725\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13059725/\tO\thttps://stackoverflow.com/questions/13059725/\tO\n\t\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\ntried\tO\ttried\tO\nan\tO\tan\tO\nhost-only\tB-Device\thost-only\tO\nadapter\tI-Device\tadapter\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nserver\tB-Device\tserver\tO\nsolution\tO\tsolution\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nand\tO\tand\tO\nit\tO\tit\tO\nseemed\tO\tseemed\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nbut\tO\tbut\tO\nits\tO\tits\tO\nworth\tO\tworth\tO\na\tO\ta\tO\nshot\tO\tshot\tO\n.\tO\t.\tO\n\t\nTell\tO\tTell\tO\nme\tO\tme\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25585211\tO\t25585211\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25585211/\tO\thttps://stackoverflow.com/questions/25585211/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\napache\tB-Library\tapache\tO\nmath\tI-Library\tmath\tO\nwith\tO\twith\tO\nscala\tB-Language\tscala\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nexamples\tO\texamples\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nhttp://commons.apache.org/proper/commons-math/userguide/random.html\tO\thttp://commons.apache.org/proper/commons-math/userguide/random.html\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2909\tI-Code_Block\tQ_2909\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nscala\tB-Language\tscala\tO\nand\tO\tand\tO\njava\tB-Language\tjava\tO\nso\tO\tso\tO\nplease\tO\tplease\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\ndetailed\tO\tdetailed\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nfolder\tO\tfolder\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nbuild.sbt\tB-File_Name\tbuild.sbt\tB-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nsbt\tB-Code_Block\tsbt\tB-Code_Block\nconsole\tI-Code_Block\tconsole\tI-Code_Block\nin\tO\tin\tO\nthat\tO\tthat\tO\nfolder\tO\tfolder\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nnow\tO\tnow\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\non\tO\ton\tO\neclipse\tB-Application\teclipse\tO\n?\tO\t?\tO\n\t\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25585211\tO\t25585211\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25585211/\tO\thttps://stackoverflow.com/questions/25585211/\tO\n\t\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nup\tO\tup\tO\nScala\tB-Language\tScala\tO\n's\tO\t's\tO\ngeneral\tO\tgeneral\tO\nsyntactic\tO\tsyntactic\tO\nrules\tO\trules\tO\n,\tO\t,\tO\nunlike\tO\tunlike\tO\nJava\tB-Language\tJava\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nScala\tB-Language\tScala\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nstart\tO\tstart\tO\nits\tO\tits\tO\nvariables\tO\tvariables\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\n,\tO\t,\tO\nnor\tO\tnor\tO\nis\tO\tis\tO\na\tO\ta\tO\nsemicolon\tB-Value\tsemicolon\tO\nrequired\tO\trequired\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3525\tI-Code_Block\tA_3525\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\n\"\tO\t\"\tO\nproblem\tO\tproblem\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nreally\tO\treally\tO\njust\tO\tjust\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3526\tI-Code_Block\tA_3526\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nimport\tO\timport\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nRandomDataGenerator\tB-Library_Class\tRandomDataGenerator\tB-Code_Block\nis\tO\tis\tO\nunder\tO\tunder\tO\norg.apache.commons.math3.random.RandomDataGenerator\tB-Library_Class\torg.apache.commons.math3.random.RandomDataGenerator\tB-Code_Block\n,\tO\t,\tO\nnot\tO\tnot\tO\nmath\tB-Library\tmath\tB-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25585211\tO\t25585211\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25585211/\tO\thttps://stackoverflow.com/questions/25585211/\tO\n\t\n\t\nApache\tB-Application\tApache\tO\nproject\tO\tproject\tO\ndocumentation\tO\tdocumentation\tO\ntends\tO\ttends\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nterrible\tO\tterrible\tO\nabout\tO\tabout\tO\nexplaining\tO\texplaining\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nstarted\tO\tstarted\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nsee\tO\tsee\tO\n\"\tO\t\"\tO\nDownload\tO\tDownload\tO\n\"\tO\t\"\tO\nlinks\tO\tlinks\tO\neverywhere\tO\teverywhere\tO\nthat\tO\tthat\tO\nshow\tO\tshow\tO\nyou\tO\tyou\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\njars\tB-File_Type\tjars\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n!\tO\t!\tO\n\t\nUse\tO\tUse\tO\na\tO\ta\tO\nproper\tO\tproper\tO\nbuild\tO\tbuild\tO\nsystem\tO\tsystem\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nmanage\tO\tmanage\tO\nyour\tO\tyour\tO\ndependencies\tO\tdependencies\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nuse\tO\tuse\tO\nSBT\tB-Application\tSBT\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nMaven\tB-Application\tMaven\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\njust\tO\tjust\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n(\tO\t(\tO\nalthough\tO\talthough\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nmore\tO\tmore\tO\nverbosity\tO\tverbosity\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\nSBT\tB-Application\tSBT\tO\ninstalled\tO\tinstalled\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsearch\tO\tsearch\tO\nMaven\tB-Application\tMaven\tO\nCentral\tO\tCentral\tO\nfor\tO\tfor\tO\n\"\tO\t\"\tO\ncommons-math\tB-Library\tcommons-math\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\ntake\tO\ttake\tO\nyou\tO\tyou\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nsee\tO\tsee\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nScala\tB-Language\tScala\tO\nSBT\tB-Application\tSBT\tO\n\"\tO\t\"\tO\nbutton\tB-User_Interface_Element\tbutton\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nside\tO\tside\tO\n;\tO\t;\tO\nclick\tO\tclick\tO\nit\tO\tit\tO\nand\tO\tand\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\ncalled\tO\tcalled\tO\nbuild.sbt\tB-File_Name\tbuild.sbt\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3527\tI-Code_Block\tA_3527\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOkay\tO\tOkay\tO\n,\tO\t,\tO\nnow\tO\tnow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstart\tO\tstart\tO\nan\tO\tan\tO\nSBT\tB-Application\tSBT\tO\nconsole\tI-Application\tconsole\tO\nwith\tO\twith\tO\nsbt\tB-Code_Block\tsbt\tB-Code_Block\nconsole\tI-Code_Block\tconsole\tI-Code_Block\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nis\tO\tis\tO\nnowhere\tO\tnowhere\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nApache\tB-Application\tApache\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ntoo\tO\ttoo\tO\nconvenient\tO\tconvenient\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nGoogling\tO\tGoogling\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3528\tI-Code_Block\tA_3528\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nnow\tO\tnow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3529\tI-Code_Block\tA_3529\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndone\tO\tdone\tO\n!\tO\t!\tO\n\t\nNow\tO\tNow\tO\nany\tO\tany\tO\ngood\tO\tgood\tO\nScala\tB-Language\tScala\tO\nresource\tO\tresource\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nwhatever\tO\twhatever\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nnext\tO\tnext\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38310892\tO\t38310892\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38310892/\tO\thttps://stackoverflow.com/questions/38310892/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nformula\tO\tformula\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nIPV6\tO\tIPV6\tB-Code_Block\naddress\tO\taddress\tO\nto\tO\tto\tO\nIP\tO\tIP\tB-Code_Block\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nwith\tO\twith\tO\ngeoip\tO\tgeoip\tO\nlocation\tO\tlocation\tO\ninformation\tO\tinformation\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\n.\tO\t.\tO\n\t\nInput\tO\tInput\tO\nIPV6\tO\tIPV6\tO\naddress\tO\taddress\tO\n:\tO\t:\tO\n2001:0db8:0000:0000:0000:ff00:0042:8329\tB-Value\t2001:0db8:0000:0000:0000:ff00:0042:8329\tB-Code_Block\n\t\nOutput\tO\tOutput\tO\nIP\tO\tIP\tO\nNumber\tO\tNumber\tO\nconverted\tO\tconverted\tO\n:\tO\t:\tO\n42540766411282592856904265327123268393\tB-Value\t42540766411282592856904265327123268393\tB-Code_Block\n\t\nThanks.\tO\tThanks.\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38310892\tO\t38310892\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38310892/\tO\thttps://stackoverflow.com/questions/38310892/\tO\n\t\n\t\nBelow\tO\tBelow\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\ncodes\tO\tcodes\tO\nin\tO\tin\tO\nmultiple\tO\tmultiple\tO\nlanguages\tO\tlanguages\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nIPv6\tO\tIPv6\tO\naddress\tO\taddress\tO\nto\tO\tto\tO\nnumber\tO\tnumber\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\nhttp://lite.ip2location.com/faqs\tO\thttp://lite.ip2location.com/faqs\tO\n\t\nPHP\tB-Language\tPHP\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5648\tI-Code_Block\tA_5648\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJava\tB-Language\tJava\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5649\tI-Code_Block\tA_5649\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nC#\tB-Language\tC#\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5650\tI-Code_Block\tA_5650\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nVB.NET\tB-Language\tVB.NET\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5651\tI-Code_Block\tA_5651\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10807146\tO\t10807146\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10807146/\tO\thttps://stackoverflow.com/questions/10807146/\tO\n\t\n\t\nPlease\tO\tPlease\tO\nconsider\tO\tconsider\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nnon-homework\tO\tnon-homework\tO\n)\tO\t)\tO\nexercise\tO\texercise\tO\nof\tO\tof\tO\nconverting\tO\tconverting\tO\na\tO\ta\tO\nslash-notation\tO\tslash-notation\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n24\tO\t24\tO\n,\tO\t,\tO\n30\tO\t30\tO\n)\tO\t)\tO\nto\tO\tto\tO\na\tO\ta\tO\nsubnet\tO\tsubnet\tO\nmask\tO\tmask\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ncopy\tO\tcopy\tO\na\tO\ta\tO\nBitArray\tB-Library_Class\tBitArray\tB-Code_Block\nto\tO\tto\tO\nbyte[]\tB-Data_Structure\tbyte[]\tB-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\ninternal\tO\tinternal\tO\nordering\tO\tordering\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nBitArray\tB-Library_Class\tBitArray\tB-Code_Block\nleads\tO\tleads\tO\nto\tO\tto\tO\nincorrect\tO\tincorrect\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nan\tO\tan\tO\ninput\tO\tinput\tO\nof\tO\tof\tO\nnumberOfSetBits\tB-Code_Block\tnumberOfSetBits\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n24\tI-Code_Block\t24\tI-Code_Block\n,\tO\t,\tO\nToString()\tB-Library_Function\tToString()\tB-Code_Block\nshould\tO\tshould\tO\nreturn\tO\treturn\tO\n255.255.255.0\tB-Value\t255.255.255.0\tB-Code_Block\n(\tO\t(\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nbits\tO\tbits\tO\nare\tO\tare\tO\nsymmetrical\tO\tsymmetrical\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nan\tO\tan\tO\ninput\tO\tinput\tO\nof\tO\tof\tO\n30\tB-Value\t30\tB-Code_Block\nresults\tO\tresults\tO\nin\tO\tin\tO\n255.255.255.63\tB-Value\t255.255.255.63\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexpected\tO\texpected\tO\n255.255.255.252\tB-Value\t255.255.255.252\tB-Code_Block\n.\tO\t.\tO\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nI\tO\tI\tO\nrealize\tO\trealize\tO\nthat\tO\tthat\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\na\tO\ta\tO\nBitArray\tB-Library_Class\tBitArray\tO\nhandles\tO\thandles\tO\nit\tO\tit\tO\n's\tO\t's\tO\nchildren\tO\tchildren\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nold\tO\told\tO\ndiscussion\tO\tdiscussion\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nunfortunately\tO\tunfortunately\tO\nwithout\tO\twithout\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\njust\tO\tjust\tO\na\tO\ta\tO\nnever-ending\tO\tnever-ending\tO\nargument\tO\targument\tO\nover\tO\tover\tO\nwhy\tO\twhy\tO\none\tO\tone\tO\nordering\tO\tordering\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nhow\tO\thow\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlove\tO\tlove\tO\nof\tO\tof\tO\ngod\tO\tgod\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\ntreat\tO\ttreat\tO\n1111\tB-Value\t1111\tB-Code_Block\n1100\tI-Value\t1100\tI-Code_Block\n(=\tI-Value\t(=\tO\n25\tI-Value\t25\tO\n2)\tI-Value\t2)\tO\nfor\tO\tfor\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\nis\tO\tis\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nmangling\tO\tmangling\tO\nit\tO\tit\tO\nto\tO\tto\tO\n0011\tB-Value\t0011\tB-Code_Block\n1111\tI-Value\t1111\tI-Code_Block\n(=\tI-Value\t(=\tO\n6\tI-Value\t6\tO\n3)\tI-Value\t3)\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nbits\tO\tbits\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nplace\tO\tplace\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_972\tI-Code_Block\tQ_972\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10807146\tO\t10807146\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10807146/\tO\thttps://stackoverflow.com/questions/10807146/\tO\n\t\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nBitArray\tB-Library_Class\tBitArray\tB-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nmask\tO\tmask\tO\nfrom\tO\tfrom\tO\nshifting\tO\tshifting\tO\nan\tO\tan\tO\ninteger\tB-Data_Type\tinteger\tO\n,\tO\t,\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nBitConverter.GetBytes\tB-Library_Function\tBitConverter.GetBytes\tB-Code_Block\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\nas\tO\tas\tO\nbytes\tB-Data_Type\tbytes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1360\tI-Code_Block\tA_1360\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10807146\tO\t10807146\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10807146/\tO\thttps://stackoverflow.com/questions/10807146/\tO\n\t\n\t\nWould\tO\tWould\tO\nn't\tO\tn't\tO\nthis\tO\tthis\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\nfixed\tO\tfixed\tO\nby\tO\tby\tO\ndoing\tO\tdoing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1358\tI-Code_Block\tA_1358\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nsets\tO\tsets\tO\nthe\tO\tthe\tO\nhigh-order\tO\thigh-order\tO\nbits\tO\tbits\tO\n(\tO\t(\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nlow-order\tO\tlow-order\tO\nbits\tO\tbits\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreasoning\tO\treasoning\tO\nhere\tO\there\tO\nis\tO\tis\tO\nprecisely\tO\tprecisely\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nyou\tO\tyou\tO\nlinked\tO\tlinked\tO\n-\tO\t-\tO\nBitArray\tB-Library_Class\tBitArray\tO\nstores\tO\tstores\tO\nthe\tO\tthe\tO\nleast-significant\tO\tleast-significant\tO\ndigits\tO\tdigits\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlowest\tO\tlowest\tO\nindex\tO\tindex\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nbit\tB-Library_Class\tbit\tO\narray\tI-Library_Class\tarray\tO\n11111000000000\tB-Value\t11111000000000\tB-Code_Block\nbelow\tO\tbelow\tO\nis\tO\tis\tO\n[\tO\t[\tO\nindexed\tO\tindexed\tO\n]\tO\t]\tO\nthus\tO\tthus\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1359\tI-Code_Block\tA_1359\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30725011\tO\t30725011\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30725011/\tO\thttps://stackoverflow.com/questions/30725011/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nspring-data-mongodb\tB-Application\tspring-data-mongodb\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nController\tO\tController\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3687\tI-Code_Block\tQ_3687\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nI\tO\tI\tO\nam\tO\tam\tO\npassing\tO\tpassing\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nstring\tB-Data_Type\tstring\tO\nas\tO\tas\tO\na\tO\ta\tO\nrequest\tO\trequest\tO\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nservice\tO\tservice\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3688\tI-Code_Block\tQ_3688\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRepository\tO\tRepository\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3689\tI-Code_Block\tQ_3689\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nquery\tO\tquery\tO\nin\tO\tin\tO\nrepository\tO\trepository\tO\nalways\tO\talways\tO\nreturns\tO\treturns\tO\nempty\tO\tempty\tO\narray\tB-Data_Structure\tarray\tO\n[\tO\t[\tO\n]\tO\t]\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nrequest\tO\trequest\tO\nURL\tO\tURL\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3690\tI-Code_Block\tQ_3690\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30725011\tO\t30725011\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30725011/\tO\thttps://stackoverflow.com/questions/30725011/\tO\n\t\n\t\ni\tO\ti\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nurl\tO\turl\tO\n.\tO\t.\tO\n\t\ntry\tO\ttry\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nquotes\tO\tquotes\tO\n.\tO\t.\tO\n\t\nhttp://localhost:8080/document/getByCategory?categories=category1&categories=category2\tB-Value\thttp://localhost:8080/document/getByCategory?categories=category1&categories=category2\tB-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21267767\tO\t21267767\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21267767/\tO\thttps://stackoverflow.com/questions/21267767/\tO\n\t\n\t\nVB2010\tB-Language\tVB2010\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nform\tO\tform\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ninputs\tO\tinputs\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nroutine\tO\troutine\tO\nthen\tO\tthen\tO\ncycles\tO\tcycles\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nnumber\tO\tnumber\tO\npairs\tO\tpairs\tO\nand\tO\tand\tO\ndisplays\tO\tdisplays\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\ncategories\tO\tcategories\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2283\tI-Code_Block\tQ_2283\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nto\tO\tto\tO\nincrement\tO\tincrement\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nvalue\tO\tvalue\tO\nby\tO\tby\tO\none\tO\tone\tO\ndigit\tO\tdigit\tO\nso\tO\tso\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\noverlap\tO\toverlap\tO\n.\tO\t.\tO\n\t\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2284\tI-Code_Block\tQ_2284\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nso\tO\tso\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nwith\tO\twith\tO\nany\tO\tany\tO\nnumber\tO\tnumber\tO\nformat\tO\tformat\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ninputs\tO\tinputs\tO\nlike\tO\tlike\tO\n\"\tB-Value\t\"\tO\n0.000\tI-Value\t0.000\tO\n\"\tI-Value\t\"\tO\nor\tO\tor\tO\n\"\tB-Value\t\"\tO\n0.0\tI-Value\t0.0\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\nis\tO\tis\tO\n(\tO\t(\tO\nexample\tO\texample\tO\nfor\tO\tfor\tO\nvalue\tO\tvalue\tO\n164.04\tB-Value\t164.04\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2285\tI-Code_Block\tQ_2285\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSeemed\tO\tSeemed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nVB6\tB-Language\tVB6\tO\nprogram\tO\tprogram\tO\nbut\tO\tbut\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\nhad\tO\thad\tO\nany\tO\tany\tO\nbetter\tO\tbetter\tO\nideas\tO\tideas\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\ni\tO\ti\tO\naccounted\tO\taccounted\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ndigit\tO\tdigit\tO\nbeing\tO\tbeing\tO\na\tO\ta\tO\n9\tB-Value\t9\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsuggestions\tO\tsuggestions\tO\nbelow\tO\tbelow\tO\nwhat\tO\twhat\tO\nended\tO\tended\tO\nup\tO\tup\tO\nworking\tO\tworking\tO\nfor\tO\tfor\tO\npositive\tO\tpositive\tO\nand\tO\tand\tO\nnegative\tO\tnegative\tO\nnumbers\tO\tnumbers\tO\nand\tO\tand\tO\nintegers\tB-Data_Type\tintegers\tO\nand\tO\tand\tO\nfloats\tB-Data_Type\tfloats\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2286\tI-Code_Block\tQ_2286\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21267767\tO\t21267767\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21267767/\tO\thttps://stackoverflow.com/questions/21267767/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\n:\tO\t:\tO\n\t\n1.Find\tO\t1.Find\tO\ndecimal\tO\tdecimal\tO\npoints\tO\tpoints\tO\n(\tO\t(\tO\np\tB-Variable_Name\tp\tO\n)\tO\t)\tO\n\t\n2.multiply\tO\t2.multiply\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nby\tO\tby\tO\n10^p\tB-Value\t10^p\tO\n,\tO\t,\tO\nincrease\tO\tincrease\tO\nit\tO\tit\tO\nby\tO\tby\tO\none\tO\tone\tO\n,\tO\t,\tO\ndivide\tO\tdivide\tO\nit\tO\tit\tO\nback\tO\tback\tO\nby\tO\tby\tO\n10^p\tB-Value\t10^p\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2871\tI-Code_Block\tA_2871\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3603294\tO\t3603294\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3603294/\tO\thttps://stackoverflow.com/questions/3603294/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\nsomewhat\tO\tsomewhat\tO\nof\tO\tof\tO\na\tO\ta\tO\ncomplicated\tO\tcomplicated\tO\nslider\tB-User_Interface_Element\tslider\tO\nwith\tO\twith\tO\njquery\tB-Library\tjquery\tO\nCycle\tB-Library_Function\tCycle\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\nrunning\tO\trunning\tO\nperfectly\tO\tperfectly\tO\nhere\tO\there\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\nit\tO\tit\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\ntimes\tO\ttimes\tO\n(\tO\t(\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nslide\tO\tslide\tO\nhas\tO\thas\tO\nfinished\tO\tfinished\tO\nits\tO\tits\tO\ntransition\tO\ttransition\tO\n)\tO\t)\tO\n,\tO\t,\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nwacky\tO\twacky\tO\nand\tO\tand\tO\neven\tO\teven\tO\nhides\tO\thides\tO\nthe\tO\tthe\tO\ntext.\tB-User_Interface_Element\ttext.\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_258\tI-Code_Block\tQ_258\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\n.stop()\tB-Library_Function\t.stop()\tO\nwould\tO\twould\tO\nremedy\tO\tremedy\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndidnt.\tO\tdidnt.\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3603294\tO\t3603294\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3603294/\tO\thttps://stackoverflow.com/questions/3603294/\tO\n\t\n\t\nFigured\tO\tFigured\tO\nit\tO\tit\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nHad\tO\tHad\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\n.slideUp\tB-Library_Function\t.slideUp\tO\nand\tO\tand\tO\n.slidedown\tB-Library_Function\t.slidedown\tO\nto\tO\tto\tO\nhappen\tO\thappen\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncallback\tO\tcallback\tO\nof\tO\tof\tO\n.animate()\tB-Library_Function\t.animate()\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2823438\tO\t2823438\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2823438/\tO\thttps://stackoverflow.com/questions/2823438/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\nget\tO\tget\tO\nan\tO\tan\tO\nIGrouping\tB-Library_Class\tIGrouping\tO\nresult\tO\tresult\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nview\tB-Library_Class\tview\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nquery\tO\tquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_190\tI-Code_Block\tQ_190\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nmapping\tO\tmapping\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nViewPage\tB-Library_Class\tViewPage\tO\ndeclaration\tO\tdeclaration\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_191\tI-Code_Block\tQ_191\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2823438\tO\t2823438\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2823438/\tO\thttps://stackoverflow.com/questions/2823438/\tO\n\t\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nhelping\tO\thelping\tO\nothers\tO\tothers\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\naction\tO\taction\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_279\tI-Code_Block\tA_279\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nView\tB-Library_Class\tView\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_280\tI-Code_Block\tA_280\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIGrouping\tB-Library_Class\tIGrouping\tO\nis\tO\tis\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nlists\tB-Data_Structure\tlists\tO\nso\tO\tso\tO\nto\tO\tto\tO\nspeak\tO\tspeak\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nKey\tB-Library_Variable\tKey\tO\n\"\tO\t\"\tO\nbeing\tO\tbeing\tO\nthe\tO\tthe\tO\ngrouped\tO\tgrouped\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2823438\tO\t2823438\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2823438/\tO\thttps://stackoverflow.com/questions/2823438/\tO\n\t\n\t\nThe\tO\tThe\tO\nview\tB-Library_Class\tview\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntype\tO\ttype\tO\nused\tO\tused\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\nview\tB-Library_Class\tview\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nViewData[\"Products\"]\tB-Code_Block\tViewData[\"Products\"]\tB-Code_Block\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\ninformation\tO\tinformation\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nvisible\tO\tvisible\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nView\tB-Library_Class\tView\tO\naspx\tB-File_Type\taspx\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9772256\tO\t9772256\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9772256/\tO\thttps://stackoverflow.com/questions/9772256/\tO\n\t\n\t\nWe\tO\tWe\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrewrite\tO\trewrite\tO\nan\tO\tan\tO\nIIS\tB-Application\tIIS\tO\nweb\tI-Application\tweb\tO\nserver\tI-Application\tserver\tO\nhandler\tB-Class_Name\thandler\tO\nfor\tO\tfor\tO\nJBoss\tB-Application\tJBoss\tO\n5\tB-Version\t5\tO\napp\tB-Application\tapp\tO\nserver\tI-Application\tserver\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsimilar\tO\tsimilar\tO\nconcept\tO\tconcept\tO\nfor\tO\tfor\tO\nJBoss\tB-Application\tJBoss\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\n,\tO\t,\tO\ngive\tO\tgive\tO\nsome\tO\tsome\tO\nadvice\tO\tadvice\tO\nor\tO\tor\tO\ndirection\tO\tdirection\tO\nhow\tO\thow\tO\nwe\tO\twe\tO\nshould\tO\tshould\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nhandler\tB-Class_Name\thandler\tO\n,\tO\t,\tO\nor\tO\tor\tO\nwhat\tO\twhat\tO\nshould\tO\tshould\tO\nwe\tO\twe\tO\ngoogle\tO\tgoogle\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nclear\tO\tclear\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\ngoal\tO\tgoal\tO\nis\tO\tis\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nname\tO\tname\tO\nin\tO\tin\tO\nurl\tO\turl\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ninvoked\tO\tinvoked\tO\nand\tO\tand\tO\nruns\tO\truns\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\naccess\tO\taccess\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nIP\tO\tIP\tO\naddress\tO\taddress\tO\nor\tO\tor\tO\nserver\tB-Application\tserver\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\nhttp://13.10.15.48\tO\thttp://13.10.15.48\tO\n\t\nThe\tO\tThe\tO\napplication\tO\tapplication\tO\n(\tO\t(\tO\nhandler\tB-Class_Name\thandler\tO\n)\tO\t)\tO\nshould\tO\tshould\tO\ngrab\tO\tgrab\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nprocess\tO\tprocess\tO\nit\tO\tit\tO\nand\tO\tand\tO\npass\tO\tpass\tO\nover\tO\tover\tO\nto\tO\tto\tO\nother\tO\tother\tO\ndefault\tO\tdefault\tO\nhandlers\tB-Class_Name\thandlers\tO\nor\tO\tor\tO\nweb\tO\tweb\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nShould\tO\tShould\tO\nI\tO\tI\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nTomcat\tB-Application\tTomcat\tO\nhandlers\tB-Class_Name\thandlers\tO\ninstead\tO\tinstead\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9772256\tO\t9772256\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9772256/\tO\thttps://stackoverflow.com/questions/9772256/\tO\n\t\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\nJBoss\tB-Application\tJBoss\tO\nhas\tO\thas\tO\na\tO\ta\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\ncontext\tO\tcontext\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\npoint\tO\tpoint\tO\nyou\tO\tyou\tO\napplication\tO\tapplication\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\ncontext\tO\tcontext\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndeploying\tO\tdeploying\tO\nyou\tO\tyou\tO\napplication\tO\tapplication\tO\nas\tO\tas\tO\na\tO\ta\tO\nWAR\tB-File_Type\tWAR\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncontent\tO\tcontent\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\n/WEB-INF/jboss\tB-File_Name\t/WEB-INF/jboss\tO\n-web.xml\tI-File_Name\t-web.xml\tO\n(\tO\t(\tO\nif\tO\tif\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nalready\tO\talready\tO\nexist\tO\texist\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1233\tI-Code_Block\tA_1233\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndeploying\tO\tdeploying\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nas\tO\tas\tO\nan\tO\tan\tO\nEAR\tB-File_Type\tEAR\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ncontext-root\tB-Code_Block\tcontext-root\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\n/META-INF/application.xml\tB-File_Name\t/META-INF/application.xml\tO\nfile\tO\tfile\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1234\tI-Code_Block\tA_1234\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\nplease\tO\tplease\tO\nrefer\tO\trefer\tO\n[\tO\t[\tO\n1\tO\t1\tO\n]\tO\t]\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\n!\tO\t!\tO\n\t\n[\tO\t[\tO\n1\tO\t1\tO\n]\tO\t]\tO\nhttps://community.jboss.org/wiki/HowDoIOverrideTheWebContextRoot\tO\thttps://community.jboss.org/wiki/HowDoIOverrideTheWebContextRoot\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9772256\tO\t9772256\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9772256/\tO\thttps://stackoverflow.com/questions/9772256/\tO\n\t\n\t\nYou\tO\tYou\tO\n'd\tO\t'd\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\ncreating\tO\tcreating\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\n(\tO\t(\tO\na\tO\ta\tO\nWAR\tB-File_Type\tWAR\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\n)\tO\t)\tO\nwith\tO\twith\tO\ncontext-root\tB-Code_Block\tcontext-root\tB-Code_Block\nset\tO\tset\tO\nto\tO\tto\tO\n/\tB-Value\t/\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12054349\tO\t12054349\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12054349/\tO\thttps://stackoverflow.com/questions/12054349/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\napplication\tO\tapplication\tO\nconsisting\tO\tconsisting\tO\nof\tO\tof\tO\na\tO\ta\tO\nWindow\tB-Library_Class\tWindow\tO\ncontaining\tO\tcontaining\tO\na\tO\ta\tO\nCanvas\tB-Library_Class\tCanvas\tO\n(\tO\t(\tO\nrootCanvas\tB-Library_Variable\trootCanvas\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nanother\tO\tanother\tO\nCanvas\tB-Library_Class\tCanvas\tO\n(\tO\t(\tO\ntest\tB-Variable_Name\ttest\tO\n)\tO\t)\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\napply\tO\tapply\tO\ndifferent\tO\tdifferent\tO\nTransforms\tB-Library_Class\tTransforms\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\ncanvas\tB-Library_Class\tcanvas\tO\n's\tO\t's\tO\nLayoutTransform\tB-Library_Variable\tLayoutTransform\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nall\tO\tall\tO\nbeing\tO\tbeing\tO\ndone\tO\tdone\tO\nprogrammatically\tO\tprogrammatically\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nusing\tO\tusing\tO\nXAML\tB-Language\tXAML\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\ntransforms\tB-Library_Class\ttransforms\tO\nare\tO\tare\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nwhilst\tO\twhilst\tO\nothers\tO\tothers\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nLayoutTranform\tB-Library_Variable\tLayoutTranform\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\na\tO\ta\tO\nRotateTransform\tB-Library_Class\tRotateTransform\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\n\t\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\na\tO\ta\tO\nTranslateTransform\tB-Library_Class\tTranslateTransform\tO\nthe\tO\tthe\tO\ntranslation\tO\ttranslation\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nappear\tO\tappear\tO\n\t\nto\tO\tto\tO\nbe\tO\tbe\tO\napplied\tO\tapplied\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nCanvas\tB-Library_Class\tCanvas\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nlocated\tO\tlocated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\ncorner\tO\tcorner\tO\nof\tO\tof\tO\n\t\nrootCanvas\tB-Variable_Name\trootCanvas\tO\n\t\nWhen\tO\tWhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\na\tO\ta\tO\nMatrixTransform\tB-Library_Class\tMatrixTransform\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nconstructed\tO\tconstructed\tO\nby\tO\tby\tO\napplying\tO\tapplying\tO\na\tO\ta\tO\nrotation\tO\trotation\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\na\tO\ta\tO\ntranslation\tO\ttranslation\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nrotation\tO\trotation\tO\nappears\tO\tappears\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\napplied\tO\tapplied\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\ngiven\tO\tgiven\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1127\tI-Code_Block\tQ_1127\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nextremely\tO\textremely\tO\ngrateful\tO\tgrateful\tO\nif\tO\tif\tO\nsomeone\tO\tsomeone\tO\ncould\tO\tcould\tO\nexplain\tO\texplain\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\ntranslations\tO\ttranslations\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\nas\tO\tas\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n,\tO\t,\tO\n\t\nWibbs\tB-User_Name\tWibbs\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12054349\tO\t12054349\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12054349/\tO\thttps://stackoverflow.com/questions/12054349/\tO\n\t\n\t\nPlease\tO\tPlease\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nremarks\tO\tremarks\tO\nin\tO\tin\tO\nFrameworkElement.LayoutTransform\tB-Library_Variable\tFrameworkElement.LayoutTransform\tO\nProperty\tO\tProperty\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nUse\tO\tUse\tO\nUIElement.RenderTransform\tB-Library_Variable\tUIElement.RenderTransform\tO\nProperty\tO\tProperty\tO\nfor\tO\tfor\tO\napplying\tO\tapplying\tO\na\tO\ta\tO\nTranslateTransform\tB-Library_Class\tTranslateTransform\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7783441\tO\t7783441\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7783441/\tO\thttps://stackoverflow.com/questions/7783441/\tO\n\t\n\t\ni\tO\ti\tO\nread\tO\tread\tO\nsome\tO\tsome\tO\nquestions\tO\tquestions\tO\nhere\tO\there\tO\nabout\tO\tabout\tO\nUIGestureRecognizer\tB-Library_Class\tUIGestureRecognizer\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntask\tO\ttask\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nunlock\tO\tunlock\tO\nslider\tB-User_Interface_Element\tslider\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\niphone\tB-Device\tiphone\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsliding\tO\tsliding\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\naround\tO\taround\tO\na\tO\ta\tO\ncircle\tB-User_Interface_Element\tcircle\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nUIGestureRecognizer\tB-Library_Class\tUIGestureRecognizer\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nan\tO\tan\tO\nanimation\tO\tanimation\tO\nclass\tO\tclass\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\n...\tO\t...\tO\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ngave\tO\tgave\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\nkey-words\tO\tkey-words\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nreally\tO\treally\tO\nhappy\tO\thappy\tO\n:)\tO\t:)\tO\n\t\nmaxi\tB-User_Name\tmaxi\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7783441\tO\t7783441\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7783441/\tO\thttps://stackoverflow.com/questions/7783441/\tO\n\t\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nanother\tO\tanother\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nhttps://github.com/iosdeveloper/SlideToCancel\tO\thttps://github.com/iosdeveloper/SlideToCancel\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7783441\tO\t7783441\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7783441/\tO\thttps://stackoverflow.com/questions/7783441/\tO\n\t\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\npage\tO\tpage\tO\nas\tO\tas\tO\na\tO\ta\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\n\t\nhttp://denizdemir.com/2011/03/07/animated-slider-iphones-cool-first-impression/\tO\thttp://denizdemir.com/2011/03/07/animated-slider-iphones-cool-first-impression/\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\ncircle\tB-User_Interface_Element\tcircle\tO\nversion\tO\tversion\tO\nwill\tO\twill\tO\ninvolve\tO\tinvolve\tO\na\tO\ta\tO\nfair\tO\tfair\tO\nbit\tO\tbit\tO\nmore\tO\tmore\tO\nwork\tO\twork\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nsay\tO\tsay\tO\nas\tO\tas\tO\nnot\tO\tnot\tO\nonly\tO\tonly\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ncircle\tB-User_Interface_Element\tcircle\tO\ngesture\tO\tgesture\tO\nyou\tO\tyou\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nyour\tO\tyour\tO\nlock\tO\tlock\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\ncircle\tB-User_Interface_Element\tcircle\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nhttp://iphonedevelopment.blogspot.com/2009/04/detecting-circle-gesture.html\tO\thttp://iphonedevelopment.blogspot.com/2009/04/detecting-circle-gesture.html\tO\n\t\nhttp://forum.unity3d.com/threads/13494-Messing-around-with-gestures\tO\thttp://forum.unity3d.com/threads/13494-Messing-around-with-gestures\tO\n\t\nCould\tO\tCould\tO\nbe\tO\tbe\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nfar\tO\tfar\tO\nsimpler\tO\tsimpler\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nnow\tO\tnow\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\naware\tO\taware\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nLuck\tO\tLuck\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21893913\tO\t21893913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21893913/\tO\thttps://stackoverflow.com/questions/21893913/\tO\n\t\n\t\nMy\tO\tMy\tO\nexcel\tB-Application\texcel\tO\nspreadsheet\tB-User_Interface_Element\tspreadsheet\tO\ncontains\tO\tcontains\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2359\tI-Code_Block\tQ_2359\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nfreeze\tO\tfreeze\tB-Code_Block\npanel\tO\tpanel\tI-Code_Block\nand\tO\tand\tO\nother\tO\tother\tO\nformatting\tO\tformatting\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nseparate\tO\tseparate\tO\nSpreadsheets\tB-User_Interface_Element\tSpreadsheets\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\ncontains\tO\tcontains\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nSpreadsheet_paul.xls\tB-File_Name\tSpreadsheet_paul.xls\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2360\tI-Code_Block\tQ_2360\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSpreadsheet_Nick.xls\tB-File_Name\tSpreadsheet_Nick.xls\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2361\tI-Code_Block\tQ_2361\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n........\tO\t........\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nseparate\tO\tseparate\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nfiles\tO\tfiles\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nnames\tO\tnames\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nspreadsheet\tB-User_Interface_Element\tspreadsheet\tO\n,\tO\t,\tO\neach\tO\teach\tO\ncontaining\tO\tcontaining\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nsubset\tO\tsubset\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21893913\tO\t21893913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21893913/\tO\thttps://stackoverflow.com/questions/21893913/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncommented\tO\tcommented\tO\nit\tO\tit\tO\nin\tO\tin\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nquesions\tO\tquesions\tO\n,\tO\t,\tO\nask\tO\task\tO\nin\tO\tin\tO\ncomments\tO\tcomments\tO\n:\tO\t:\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nsaves\tO\tsaves\tO\nnew\tO\tnew\tO\nwokrbooks\tB-Variable_Name\twokrbooks\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfolder\tO\tfolder\tO\nwhere\tO\twhere\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nworkbook\tB-Variable_Name\tworkbook\tO\nis\tO\tis\tO\nsaved\tO\tsaved\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2966\tI-Code_Block\tA_2966\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21893913\tO\t21893913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21893913/\tO\thttps://stackoverflow.com/questions/21893913/\tO\n\t\n\t\n@dmitry\tB-User_Name\t@dmitry\tO\n-pavliv\tI-User_Name\t-pavliv\tO\ncan\tO\tcan\tO\nyou\tO\tyou\tO\nmodify\tO\tmodify\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nfunctionality\tO\tfunctionality\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nspecific\tO\tspecific\tO\nSheets\tB-User_Interface_Element\tSheets\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nthem\tO\tthem\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35834052\tO\t35834052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35834052/\tO\thttps://stackoverflow.com/questions/35834052/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlearning\tO\tlearning\tO\nlist\tB-Data_Structure\tlist\tO\ncomprehensions\tO\tcomprehensions\tO\nin\tO\tin\tO\nPython\tB-Language\tPython\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nto\tO\tto\tO\nappend\tO\tappend\tO\nletters\tO\tletters\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nwords\tO\twords\tO\nand\tO\tand\tO\nform\tO\tform\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nlist\tB-Data_Structure\tlist\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nduplicates\tO\tduplicates\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4390\tI-Code_Block\tQ_4390\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4391\tI-Code_Block\tQ_4391\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35834052\tO\t35834052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35834052/\tO\thttps://stackoverflow.com/questions/35834052/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nsimply\tO\tsimply\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nduplicates\tO\tduplicates\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nutilize\tO\tutilize\tO\nset()\tB-Library_Function\tset()\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5117\tI-Code_Block\tA_5117\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35834052\tO\t35834052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35834052/\tO\thttps://stackoverflow.com/questions/35834052/\tO\n\t\n\t\nletterlist\tB-Variable_Name\tletterlist\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\ndefined\tO\tdefined\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\ncomprehension\tO\tcomprehension\tO\nis\tO\tis\tO\nfinished\tO\tfinished\tO\n.\tO\t.\tO\n\t\nTherefore\tO\tTherefore\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nreference\tO\treference\tO\nit\tO\tit\tO\ninside\tO\tinside\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nfunction\tO\tfunction\tO\ncan\tO\tcan\tO\nreference\tO\treference\tO\nitself\tO\titself\tO\nonly\tO\tonly\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncalled\tO\tcalled\tO\nuntil\tO\tuntil\tO\nafter\tO\tafter\tO\nit\tO\tit\tO\n's\tO\t's\tO\ndefined\tO\tdefined\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\ncomprehension\tO\tcomprehension\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nexecuted\tO\texecuted\tO\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndefinition\tO\tdefinition\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nreference\tO\treference\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\npossible\tO\tpossible\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nduplicates\tO\tduplicates\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5115\tI-Code_Block\tA_5115\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsing\tO\tUsing\tO\nset()\tB-Library_Function\tset()\tB-Code_Block\nmakes\tO\tmakes\tO\nit\tO\tit\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nremoves\tO\tremoves\tO\nthe\tO\tthe\tO\nduplicates\tO\tduplicates\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nlist\tB-Library_Function\tlist\tB-Code_Block\nconverts\tO\tconverts\tO\nit\tO\tit\tO\nback\tO\tback\tO\nto\tO\tto\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nset\tB-Data_Structure\tset\tB-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\ncomprehension\tO\tcomprehension\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfor\tB-Code_Block\tfor\tB-Code_Block\nloop\tO\tloop\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5116\tI-Code_Block\tA_5116\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30941198\tO\t30941198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30941198/\tO\thttps://stackoverflow.com/questions/30941198/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3735\tI-Code_Block\tQ_3735\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGives\tO\tGives\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n(\tO\t(\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3736\tI-Code_Block\tQ_3736\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAn\tO\tAn\tO\ninline\tO\tinline\tO\ndefinition\tO\tdefinition\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsuffer\tO\tsuffer\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nsomeone\tO\tsomeone\tO\nplease\tO\tplease\tO\nexplain\tO\texplain\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\nresolve\tO\tresolve\tO\na\tB-Variable_Name\ta\tB-Code_Block\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nandhow\tO\tandhow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nresolve\tO\tresolve\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nnames\tO\tnames\tO\nexplicitly\tO\texplicitly\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3737\tI-Code_Block\tQ_3737\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nit\tO\tit\tO\nwould\tO\twould\tO\ndecrease\tO\tdecrease\tO\nreadability\tO\treadability\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30941198\tO\t30941198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30941198/\tO\thttps://stackoverflow.com/questions/30941198/\tO\n\t\n\t\nIf\tO\tIf\tO\nC++11\tB-Language\tC++11\tO\nand\tO\tand\tO\n14\tB-Version\t14\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndeclare\tO\tdeclare\tO\nyour\tO\tyour\tO\nfunction\tO\tfunction\tO\nauto\tO\tauto\tB-Code_Block\nto\tO\tto\tO\nget\tO\tget\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlong\tB-Data_Type\tlong\tO\nreturn\tO\treturn\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\ntrailing\tO\ttrailing\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\nC++11\tB-Language\tC++11\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nget\tO\tget\tO\nomit\tO\tomit\tO\nthe\tO\tthe\tO\ntypename\tB-Code_Block\ttypename\tB-Code_Block\nB<T>:\tI-Code_Block\tB<T>:\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\nalready\tO\talready\tO\nknows\tO\tknows\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4407\tI-Code_Block\tA_4407\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30941198\tO\t30941198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30941198/\tO\thttps://stackoverflow.com/questions/30941198/\tO\n\t\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\na\tB-Variable_Name\ta\tB-Code_Block\nhere\tO\there\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nlooking\tO\tlooking\tO\nin\tO\tin\tO\nglobal\tB-Data_Type\tglobal\tO\nscope\tO\tscope\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4408\tI-Code_Block\tA_4408\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\ndoing\tO\tdoing\tO\nunqualifed\tO\tunqualifed\tO\nlookup\tO\tlookup\tO\non\tO\ton\tO\na\tB-Variable_Name\ta\tB-Code_Block\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nB<T>:\tB-Variable_Name\tB<T>:\tB-Code_Block\n:\tI-Variable_Name\t:\tI-Code_Block\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndefinition\tO\tdefinition\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nscope\tO\tscope\tO\nis\tO\tis\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nall\tO\tall\tO\nfurther\tO\tfurther\tO\nlookup\tO\tlookup\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nargument\tO\targument\tO\nb\tB-Variable_Name\tb\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nlooked\tO\tlooked\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nof\tO\tof\tO\nB<T>\tB-Variable_Name\tB<T>\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nsimply\tO\tsimply\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nqualify\tO\tqualify\tO\nit\tO\tit\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\ntype\tO\ttype\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4409\tI-Code_Block\tA_4409\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nrelevant\tO\trelevant\tO\nrules\tO\trules\tO\nis\tO\tis\tO\nfor\tO\tfor\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\nargument\tO\targument\tO\ntype\tO\ttype\tO\na\tB-Variable_Name\ta\tB-Code_Block\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nis\tO\tis\tO\nin\tO\tin\tO\n[basic.lookup.unqual]/8\tB-Code_Block\t[basic.lookup.unqual]/8\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThe\tO\tThe\tO\nreturn\tO\treturn\tO\ntype\tO\ttype\tO\na\tB-Variable_Name\ta\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nbolded\tO\tbolded\tO\ntext\tO\ttext\tO\n(\tO\t(\tO\nor\tO\tor\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nabove\tO\tabove\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nargument\tO\targument\tO\ntype\tO\ttype\tO\na\tB-Variable_Name\ta\tB-Code_Block\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45111129\tO\t45111129\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45111129/\tO\thttps://stackoverflow.com/questions/45111129/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nPDF\tB-File_Type\tPDF\tO\nfile\tO\tfile\tO\naccessible\tO\taccessible\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nAdobe\tB-Application\tAdobe\tO\nAcrobat\tI-Application\tAcrobat\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\naccessibility\tO\taccessibility\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nJasperReports\tB-Application\tJasperReports\tO\nversion\tO\tversion\tO\n6.3.1\tB-Version\t6.3.1\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nprimary\tO\tprimary\tO\nlanguage\tO\tlanguage\tO\nand\tO\tand\tO\ntitle\tO\ttitle\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ntitle\tO\ttitle\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJRXML\tB-File_Type\tJRXML\tO\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5880\tI-Code_Block\tQ_5880\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ntab\tB-User_Interface_Element\ttab\tO\norder\tO\torder\tO\nfor\tO\tfor\tO\nelements\tO\telements\tO\non\tO\ton\tO\na\tO\ta\tO\npage\tB-User_Interface_Element\tpage\tO\n(\tO\t(\tO\ntable\tB-User_Interface_Element\ttable\tO\n,\tO\t,\tO\ntext\tB-User_Interface_Element\ttext\tO\nfields\tI-User_Interface_Element\tfields\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4924766\tO\t4924766\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4924766/\tO\thttps://stackoverflow.com/questions/4924766/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\ndownloads\tO\tdownloads\tO\nps1\tB-File_Type\tps1\tO\nfiles\tO\tfiles\tO\nto\tO\tto\tO\nrun\tO\trun\tO\non\tO\ton\tO\nnew\tO\tnew\tO\nmachine\tO\tmachine\tO\nstart\tO\tstart\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nany\tO\tany\tO\npowershell\tB-Library\tpowershell\tO\nadd\tO\tadd\tO\nin\tO\tin\tO\nor\tO\tor\tO\nextension\tO\textension\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nunblock\tO\tunblock\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nsuggestions\tO\tsuggestions\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_350\tI-Code_Block\tQ_350\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4924766\tO\t4924766\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4924766/\tO\thttps://stackoverflow.com/questions/4924766/\tO\n\t\n\t\nThis\tO\tThis\tO\npost\tO\tpost\tO\nfrom\tO\tfrom\tO\nScott\tB-User_Name\tScott\tO\nHanselman\tI-User_Name\tHanselman\tO\nexplains\tO\texplains\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\nzone\tO\tzone\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\nembedded\tO\tembedded\tO\nin\tO\tin\tO\nan\tO\tan\tO\nalternate\tO\talternate\tO\ndata\tO\tdata\tO\nstream\tO\tstream\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nknowledge\tO\tknowledge\tO\nto\tO\tto\tO\nunblock\tO\tunblock\tO\nyour\tO\tyour\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\ntool\tO\ttool\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nstreams.exe\tB-File_Name\tstreams.exe\tO\nfrom\tO\tfrom\tO\nSysInternals\tB-Application\tSysInternals\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_514\tI-Code_Block\tA_514\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4924766\tO\t4924766\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4924766/\tO\thttps://stackoverflow.com/questions/4924766/\tO\n\t\n\t\nGot\tO\tGot\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\non\tO\ton\tO\nanother\tO\tanother\tO\nforum\tO\tforum\tO\n:\tO\t:\tO\nNot\tO\tNot\tO\nthat\tO\tthat\tO\n@driis\tB-User_Name\t@driis\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\non\tO\ton\tO\ntarget\tO\ttarget\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\npowershelly\tB-Library\tpowershelly\tO\n\t\nhttp://social.technet.microsoft.com/Forums/en/winserverpowershell/thread/0b5f1fa6-981e-4696-84bc-b8046564ec8b\tO\thttp://social.technet.microsoft.com/Forums/en/winserverpowershell/thread/0b5f1fa6-981e-4696-84bc-b8046564ec8b\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11231527\tO\t11231527\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11231527/\tO\thttps://stackoverflow.com/questions/11231527/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nperformance\tO\tperformance\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nboth\tO\tboth\tO\njvm\tB-Application\tjvm\tO\ntypes\tO\ttypes\tO\n-client\tB-Code_Block\t-client\tB-Code_Block\nand\tO\tand\tO\n-server\tB-Code_Block\t-server\tB-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nswitch\tO\tswitch\tO\namong\tO\tamong\tO\nboth\tO\tboth\tO\njvm\tB-Application\tjvm\tO\ntypes\tO\ttypes\tO\nin\tO\tin\tO\neclipse\tB-Application\teclipse\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11231527\tO\t11231527\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11231527/\tO\thttps://stackoverflow.com/questions/11231527/\tO\n\t\n\t\nThe\tO\tThe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nrun\tO\trun\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nwith\tO\twith\tO\nany\tO\tany\tO\ncommand-line\tB-Application\tcommand-line\tO\nswitches\tO\tswitches\tO\n(\tO\t(\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n-Xmx256m\tB-Code_Block\t-Xmx256m\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nCommand\tB-Application\tCommand\tO\nLine\tI-Application\tLine\tO\nOptions\tO\tOptions\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nRun\tB-Application\tRun\tO\nConfiguration\tO\tConfiguration\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ncreate\tO\tcreate\tO\n2\tO\t2\tO\nconfigurations\tO\tconfigurations\tO\n,\tO\t,\tO\none\tO\tone\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nsetting\tO\tsetting\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\n:\tO\t:\tO\n\t\nGo\tO\tGo\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n's\tO\t's\tO\nmain\tB-Library_Class\tmain\tO\nclass\tO\tclass\tO\n\t\nRun\tO\tRun\tO\nit\tO\tit\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nRun\tB-Application\tRun\tO\n(\tO\t(\tO\nor\tO\tor\tO\nLaunch\tB-Application\tLaunch\tO\n)\tO\t)\tO\nConfiguration\tO\tConfiguration\tO\n\t\nEdit\tO\tEdit\tO\nthis\tO\tthis\tO\nconfiguration\tO\tconfiguration\tO\n\t\nAdd\tO\tAdd\tO\n-client\tB-Code_Block\t-client\tB-Code_Block\nor\tO\tor\tO\n-server\tB-Code_Block\t-server\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ncommand-line\tB-Application\tcommand-line\tO\nswitches\tO\tswitches\tO\n\t\nMore\tO\tMore\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nEclipse\tB-Application\tEclipse\tO\nHelp\tO\tHelp\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14572943\tO\t14572943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14572943/\tO\thttps://stackoverflow.com/questions/14572943/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\nPhoneGap\tB-Application\tPhoneGap\tO\nAndroid\tB-Operating_System\tAndroid\tO\napp\tO\tapp\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nexactly\tO\texactly\tO\n480\tB-Value\t480\tO\npixel\tI-Value\tpixel\tO\nwidth\tO\twidth\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nset\tO\tset\tO\nviewport\tB-User_Interface_Element\tviewport\tO\nsize\tO\tsize\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nsize\tO\tsize\tO\non\tO\ton\tO\nevery\tO\tevery\tO\npossible\tO\tpossible\tO\nAndroid\tB-Operating_System\tAndroid\tO\n's\tO\t's\tO\ndevice\tO\tdevice\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\ntag\tO\ttag\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1396\tI-Code_Block\tQ_1396\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nignored\tO\tignored\tO\nby\tO\tby\tO\nall\tO\tall\tO\ndevices\tO\tdevices\tO\nand\tO\tand\tO\nemulators\tB-Application\temulators\tO\nI\tO\tI\tO\ntested\tO\ttested\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1397\tI-Code_Block\tQ_1397\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nworked\tO\tworked\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\non\tO\ton\tO\nsome\tO\tsome\tO\n(\tO\t(\tO\nsmaller\tO\tsmaller\tO\n)\tO\t)\tO\ndevices\tO\tdevices\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nmu\tO\tmu\tO\nSamsung\tB-Device\tSamsung\tO\nGT\tI-Device\tGT\tO\nit\tO\tit\tO\ngives\tO\tgives\tO\ncorrect\tO\tcorrect\tO\n480\tB-Value\t480\tO\npixel\tI-Value\tpixel\tO\nwidth\tO\twidth\tO\nviewport\tO\tviewport\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nlaunched\tO\tlaunched\tO\non\tO\ton\tO\ntablet\tB-Device\ttablet\tO\nit\tO\tit\tO\ngives\tO\tgives\tO\n800\tB-Value\t800\tO\npixel\tI-Value\tpixel\tO\nwidth\tO\twidth\tO\nviewport\tB-User_Interface_Element\tviewport\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\nobvious\tO\tobvious\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14572943\tO\t14572943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14572943/\tO\thttps://stackoverflow.com/questions/14572943/\tO\n\t\n\t\nAfter\tO\tAfter\tO\nseveral\tO\tseveral\tO\nhours\tO\thours\tO\nof\tO\tof\tO\ndebugging\tO\tdebugging\tO\nI\tO\tI\tO\nfinally\tO\tfinally\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n:\tO\t:\tO\n\t\nWebView\tB-Library_Class\tWebView\tO\nwill\tO\twill\tO\nignore\tO\tignore\tO\nwidth\tB-Variable_Name\twidth\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nviewport\tB-User_Interface_Element\tviewport\tO\nunless\tO\tunless\tO\nit\tO\tit\tO\nis\tO\tis\tO\nexplicty\tO\texplicty\tO\ntold\tO\ttold\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nloaded\tO\tloaded\tO\nin\tO\tin\tO\nOverviewMode\tB-Value\tOverviewMode\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\ncome\tO\tcome\tO\nhere\tO\there\tO\nfrom\tO\tfrom\tO\nGoogle\tB-Website\tGoogle\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\n:\tO\t:\tO\n\t\nAdd\tO\tAdd\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nJava\tB-Language\tJava\tO\nsource\tO\tsource\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1856\tI-Code_Block\tA_1856\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14572943\tO\t14572943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14572943/\tO\thttps://stackoverflow.com/questions/14572943/\tO\n\t\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nwhy\tO\twhy\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\n,\tB-Code_Block\t,\tB-Code_Block\ntarget-densityDpi\tI-Code_Block\ttarget-densityDpi\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\ndevice-dpi\tI-Code_Block\tdevice-dpi\tI-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nviewport\tB-User_Interface_Element\tviewport\tO\ntag\tO\ttag\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n-\tO\t-\tO\nthe\tO\tthe\tO\naccepted\tO\taccepted\tO\nanswer\tO\tanswer\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nusing\tO\tusing\tO\na\tO\ta\tO\nSamsung\tB-Device\tSamsung\tO\nGalaxy\tI-Device\tGalaxy\tO\nNexus\tI-Device\tNexus\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7817431\tO\t7817431\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7817431/\tO\thttps://stackoverflow.com/questions/7817431/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nwe\tO\twe\tO\nuse\tO\tuse\tO\nJSF\tB-Library\tJSF\tO\nframework\tO\tframework\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ndiving\tO\tdiving\tO\ndeep\tO\tdeep\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nsecurity\tO\tsecurity\tO\npart\tO\tpart\tO\nfor\tO\tfor\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nhence\tO\thence\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nlooking\tO\tlooking\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nunique\tO\tunique\tO\nsession\tO\tsession\tO\nID\tO\tID\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\nencryption\tO\tencryption\tO\nalgorithm\tO\talgorithm\tO\nand\tO\tand\tO\nassign\tO\tassign\tO\nit\tO\tit\tO\nto\tO\tto\tO\nevery\tO\tevery\tO\nnew\tO\tnew\tO\nsession\tO\tsession\tO\nwhich\tO\twhich\tO\ngets\tO\tgets\tO\ncreated\tO\tcreated\tO\nonce\tO\tonce\tO\nuser\tO\tuser\tO\nlogs\tO\tlogs\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nplease\tO\tplease\tO\nguide\tO\tguide\tO\nme\tO\tme\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nset\tO\tset\tO\nmanual\tO\tmanual\tO\ngenerated\tO\tgenerated\tO\nsession\tO\tsession\tO\nid\tO\tid\tO\nin\tO\tin\tO\nsession\tO\tsession\tO\nand\tO\tand\tO\nensure\tO\tensure\tO\nwith\tO\twith\tO\neach\tO\teach\tO\nrequest\tO\trequest\tO\nthat\tO\tthat\tO\nsession\tO\tsession\tO\nid\tO\tid\tO\nis\tO\tis\tO\ntransmitted\tO\ttransmitted\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7817431\tO\t7817431\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7817431/\tO\thttps://stackoverflow.com/questions/7817431/\tO\n\t\n\t\nAttempting\tO\tAttempting\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nJSF\tB-Library\tJSF\tO\napplication\tO\tapplication\tO\nlayer\tO\tlayer\tO\nis\tO\tis\tO\nunlikely\tO\tunlikely\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsuccessful\tO\tsuccessful\tO\n;\tO\t;\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nperform\tO\tperform\tO\nthis\tO\tthis\tO\ntask\tO\ttask\tO\nat\tO\tat\tO\na\tO\ta\tO\nlower\tO\tlower\tO\nlevel\tO\tlevel\tO\nAPI\tO\tAPI\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nassuming\tO\tassuming\tO\na\tO\ta\tO\nservlet\tB-Library_Class\tservlet\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\napproaches\tO\tapproaches\tO\n:\tO\t:\tO\n\t\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nat\tO\tat\tO\na\tO\ta\tO\ncontainer\tO\tcontainer\tO\nlevel\tO\tlevel\tO\nvia\tO\tvia\tO\na\tO\ta\tO\nserver-specific\tB-Device\tserver-specific\tO\nSPI\tO\tSPI\tO\n(\tO\t(\tO\nif\tO\tif\tO\none\tO\tone\tO\neven\tO\teven\tO\nexists\tO\texists\tO\n)\tO\t)\tO\n\t\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nrewriting\tO\trewriting\tO\nrequests/responses\tO\trequests/responses\tO\nvia\tO\tvia\tO\na\tO\ta\tO\nservlet\tB-Library_Class\tservlet\tO\nFilter\tI-Library_Class\tFilter\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\ninsufficient\tO\tinsufficient\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\ncomment\tO\tcomment\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nviability\tO\tviability\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\ncookie\tO\tcookie\tO\n(\tO\t(\tO\nit\tO\tit\tO\nis\tO\tis\tO\nusually\tO\tusually\tO\nJSESSIONID\tB-Library_Variable\tJSESSIONID\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nAPI\tB-Library\tAPI\tO\nwould\tO\twould\tO\n:\tO\t:\tO\n\t\nmap\tO\tmap\tO\nthe\tO\tthe\tO\nfilter\tO\tfilter\tO\nto\tO\tto\tO\nall\tO\tall\tO\napplication\tO\tapplication\tO\nrequests\tO\trequests\tO\n\t\nmaintain\tO\tmaintain\tO\na\tO\ta\tO\nmap\tO\tmap\tO\nof\tO\tof\tO\ncontainer\tO\tcontainer\tO\nsession\tO\tsession\tO\nids\tO\tids\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nsecure\tO\tsecure\tO\n\"\tO\t\"\tO\nids\tO\tids\tO\n\t\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfilter\tO\tfilter\tO\nto\tO\tto\tO\nrewrite\tO\trewrite\tO\nany\tO\tany\tO\nsession\tO\tsession\tO\ncookie\tO\tcookie\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\nid\tO\tid\tO\n\t\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfilter\tO\tfilter\tO\nrewrite\tO\trewrite\tO\nany\tO\tany\tO\nsession\tO\tsession\tO\ncookie\tO\tcookie\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsecure\tO\tsecure\tO\nid\tO\tid\tO\n\t\nuse\tO\tuse\tO\na\tO\ta\tO\nlistener\tO\tlistener\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\ninvalid\tO\tinvalid\tO\nsessions\tO\tsessions\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nmap\tO\tmap\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nmemory\tO\tmemory\tO\nleaks\tO\tleaks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7817431\tO\t7817431\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7817431/\tO\thttps://stackoverflow.com/questions/7817431/\tO\n\t\n\t\nI\tO\tI\tO\nreally\tO\treally\tO\ndoubt\tO\tdoubt\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\ngenerate\tO\tgenerate\tO\nsession\tO\tsession\tO\nIDs\tO\tIDs\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nsecure\tO\tsecure\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nones\tO\tones\tO\ngenerated\tO\tgenerated\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhere\tO\there\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nany\tO\tany\tO\ncontainer-specific\tO\tcontainer-specific\tO\nextension\tO\textension\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nservlet\tB-Library_Class\tservlet\tO\nfilter\tI-Library_Class\tfilter\tO\nwhich\tO\twhich\tO\nintercept\tO\tintercept\tO\nevery\tO\tevery\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\na\tO\ta\tO\nrequest\tO\trequest\tO\ncomes\tO\tcomes\tO\nin\tO\tin\tO\n,\tO\t,\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\na\tO\ta\tO\nsession\tO\tsession\tO\nalready\tO\talready\tO\nexists\tO\texists\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nrequest\tO\trequest\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\ngetSession(false))\tB-Library_Function\tgetSession(false))\tB-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\none\tO\tone\tO\nexists\tO\texists\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nextract\tO\textract\tO\nyour\tO\tyour\tO\nspecific\tO\tspecific\tO\ncookie\tO\tcookie\tO\nMY_SESSION_ID\tB-Library_Variable\tMY_SESSION_ID\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncompare\tO\tcompare\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nmatch\tO\tmatch\tO\n,\tO\t,\tO\nreject\tO\treject\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nexist\tO\texist\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncreate\tO\tcreate\tO\nit\tO\tit\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\ngetSession(true))\tB-Library_Function\tgetSession(true))\tB-Code_Block\n,\tO\t,\tO\ngenerate\tO\tgenerate\tO\nyour\tO\tyour\tO\nsuper-secure\tO\tsuper-secure\tO\nsession\tO\tsession\tO\nID\tO\tID\tO\n,\tO\t,\tO\nstore\tO\tstore\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nsession\tO\tsession\tO\nattribute\tO\tattribute\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\ncookie\tO\tcookie\tO\nMY_SESSION_ID\tB-Library_Variable\tMY_SESSION_ID\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\ndisadvantage\tO\tdisadvantage\tO\nof\tO\tof\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nsession\tO\tsession\tO\nautomatically\tO\tautomatically\tO\n,\tO\t,\tO\neven\tO\teven\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nstrictly\tO\tstrictly\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nJSPs\tB-Library\tJSPs\tO\nof\tO\tof\tO\ncomponent\tO\tcomponent\tO\nframeworks\tO\tframeworks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25042334\tO\t25042334\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25042334/\tO\thttps://stackoverflow.com/questions/25042334/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\nform\tB-User_Interface_Element\tform\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\nmade\tO\tmade\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\ndifferent\tO\tdifferent\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tB-User_Interface_Element\tform\tO\nincluding\tO\tincluding\tO\ndrop\tB-User_Interface_Element\tdrop\tO\ndowns\tI-User_Interface_Element\tdowns\tO\nand\tO\tand\tO\ncheck\tB-User_Interface_Element\tcheck\tO\nboxes\tI-User_Interface_Element\tboxes\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmajority\tO\tmajority\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobjects\tO\tobjects\tO\nare\tO\tare\tO\ncheck\tB-User_Interface_Element\tcheck\tO\nboxes\tI-User_Interface_Element\tboxes\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nboxes\tB-User_Interface_Element\tboxes\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\nred\tO\tred\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nchanged\tO\tchanged\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\ndefaults\tO\tdefaults\tO\nare\tO\tare\tO\n\"\tB-Value\t\"\tO\non\tI-Value\ton\tO\n\"\tI-Value\t\"\tO\nothers\tO\tothers\tO\nare\tO\tare\tO\n\"\tB-Value\t\"\tO\noff\tI-Value\toff\tO\n\"\tI-Value\t\"\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nitem\tO\titem\tO\nby\tO\tby\tO\nitem\tO\titem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nvery\tO\tvery\tO\ntime\tO\ttime\tO\nconsuming\tO\tconsuming\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\na\tO\ta\tO\nstandard\tO\tstandard\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nform\tB-User_Interface_Element\tform\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\nissue\tO\tissue\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\nis\tO\tis\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nit\tO\tit\tO\nturns\tO\tturns\tO\nred\tO\tred\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nreturned\tO\treturned\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nit\tO\tit\tO\nstays\tO\tstays\tO\nred\tO\tred\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nchange\tO\tchange\tO\nback\tO\tback\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsomething\tO\tsomething\tO\nsimple\tO\tsimple\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\njust\tO\tjust\tO\nmissing\tO\tmissing\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25042334\tO\t25042334\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25042334/\tO\thttps://stackoverflow.com/questions/25042334/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nscripting\tO\tscripting\tO\non\tO\ton\tO\nenter\tO\tenter\tO\nand\tO\tand\tO\nexit\tO\texit\tO\nevents\tO\tevents\tO\n\t\nIn\tO\tIn\tO\nAdobe\tB-Application\tAdobe\tO\nLiveCycle\tI-Application\tLiveCycle\tO\nDesigner\tI-Application\tDesigner\tO\nselect\tO\tselect\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfields\tO\tfields\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nhighlighting\tO\thighlighting\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nscripts\tO\tscripts\tO\nto\tO\tto\tO\neach\tO\teach\tO\ntext\tB-User_Interface_Element\ttext\tO\nfield\tI-User_Interface_Element\tfield\tO\n:\tO\t:\tO\n\t\nAdd\tO\tAdd\tO\nan\tO\tan\tO\nenter\tO\tenter\tO\nevent\tO\tevent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfields\tO\tfields\tO\nto\tO\tto\tO\nhighlight\tO\thighlight\tO\nin\tO\tin\tO\nred\tO\tred\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3609\tI-Code_Block\tA_3609\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAdd\tO\tAdd\tO\nan\tO\tan\tO\nexit\tO\texit\tO\nevent\tO\tevent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfields\tO\tfields\tO\nto\tO\tto\tO\nhighlight\tO\thighlight\tO\nin\tO\tin\tO\nblack\tO\tblack\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3610\tI-Code_Block\tA_3610\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7727218\tO\t7727218\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7727218/\tO\thttps://stackoverflow.com/questions/7727218/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nlive\tO\tlive\tO\naudio\tO\taudio\tO\nstreaming\tO\tstreaming\tO\nusing\tO\tusing\tO\nAndroid\tB-Operating_System\tAndroid\tO\nmedia\tB-Library_Class\tmedia\tO\nplayer\tI-Library_Class\tplayer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncapture\tO\tcapture\tO\nthe\tO\tthe\tO\nsound\tO\tsound\tO\nstream\tO\tstream\tO\nplayed\tO\tplayed\tO\nby\tO\tby\tO\nMediaPlayer\tB-Library_Class\tMediaPlayer\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nway\tO\tway\tO\nto\tO\tto\tO\nrecord\tO\trecord\tO\nusing\tO\tusing\tO\nAndroid\tB-Operating_System\tAndroid\tO\nMediaPlayer\tB-Library_Class\tMediaPlayer\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nMediaRecorder\tB-Library_Class\tMediaRecorder\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nsuggestions\tO\tsuggestions\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7727218\tO\t7727218\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7727218/\tO\thttps://stackoverflow.com/questions/7727218/\tO\n\t\n\t\nWhile\tO\tWhile\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nnon-trivial\tO\tnon-trivial\tO\nundertaking\tO\tundertaking\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\nown\tO\town\tO\n\"\tO\t\"\tO\nMediaPlayer\tB-Class_Name\tMediaPlayer\tO\n\"\tO\t\"\tO\nthat\tO\tthat\tO\nimplements\tO\timplements\tO\nwhatever\tO\twhatever\tO\nstreaming\tO\tstreaming\tO\nprotocol\tO\tprotocol\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nand\tO\tand\tO\nwrites\tO\twrites\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nspeaker\tB-Device\tspeaker\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43654553\tO\t43654553\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43654553/\tO\thttps://stackoverflow.com/questions/43654553/\tO\n\t\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\nstarted\tO\tstarted\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\nin\tO\tin\tO\nc#\tB-Language\tc#\tO\nwith\tO\twith\tO\nEF5\tB-Application\tEF5\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nDB\tB-Algorithm\tDB\tO\nFirst\tI-Algorithm\tFirst\tO\napproach\tI-Algorithm\tapproach\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nmodify\tO\tmodify\tO\nmy\tO\tmy\tO\nentities\tO\tentities\tO\non\tO\ton\tO\ntheir\tO\ttheir\tO\nown\tO\town\tO\ndata\tO\tdata\tO\nfields\tO\tfields\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nupdating\tO\tupdating\tO\nrelationships\tO\trelationships\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\nrelationship\tO\trelationship\tO\nexample\tO\texample\tO\nis\tO\tis\tO\nProject\tB-Class_Name\tProject\tO\n<-\tO\t<-\tO\nProjectCategoryIntersection\tB-Class_Name\tProjectCategoryIntersection\tO\n->\tO\t->\tO\nCategory\tB-Class_Name\tCategory\tO\n\t\nModel\tO\tModel\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5605\tI-Code_Block\tQ_5605\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSave\tO\tSave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5606\tI-Code_Block\tQ_5606\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nexception\tB-Library_Class\texception\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5607\tI-Code_Block\tQ_5607\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nreceive\tO\treceive\tO\na\tO\ta\tO\nmultiple\tB-Error_Name\tmultiple\tB-Code_Block\ninstances\tI-Error_Name\tinstances\tI-Code_Block\nChangeTracker\tI-Error_Name\tChangeTracker\tI-Code_Block\nexception\tB-Library_Class\texception\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\ncategories\tO\tcategories\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nobject\tO\tobject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5608\tI-Code_Block\tQ_5608\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nShould\tO\tShould\tO\ni\tO\ti\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\ngenerated\tO\tgenerated\tO\ntable\tB-Data_Structure\ttable\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nmodel\tO\tmodel\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5609\tI-Code_Block\tQ_5609\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSolution\tO\tSolution\tO\n\t\nI\tO\tI\tO\nended\tO\tended\tO\nup\tO\tup\tO\nremoving\tO\tremoving\tO\nthe\tO\tthe\tO\ngenerated\tO\tgenerated\tO\ntable\tB-Data_Structure\ttable\tO\nobject\tO\tobject\tO\npublic\tB-Code_Block\tpublic\tB-Code_Block\nTProject\tI-Code_Block\tTProject\tI-Code_Block\nproject\tI-Code_Block\tproject\tI-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\nget\tI-Code_Block\tget\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nprivate\tI-Code_Block\tprivate\tI-Code_Block\nset\tI-Code_Block\tset\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\nand\tO\tand\tO\nchanged\tO\tchanged\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5610\tI-Code_Block\tQ_5610\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43654553\tO\t43654553\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43654553/\tO\thttps://stackoverflow.com/questions/43654553/\tO\n\t\n\t\nApperantly\tO\tApperantly\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nan\tO\tan\tO\nInteger\tB-Data_Type\tInteger\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nID\tB-Variable_Name\tID\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nobject\tO\tobject\tO\nand\tO\tand\tO\nchange\tO\tchange\tO\nboth\tO\tboth\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\nEF\tB-Library\tEF\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\nwhich\tO\twhich\tO\none\tO\tone\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nreference\tO\treference\tO\n\t\nTry\tO\tTry\tO\nsetting\tO\tsetting\tO\nonly\tO\tonly\tO\nIds\tB-Variable_Name\tIds\tO\nand\tO\tand\tO\nset\tO\tset\tO\nnull\tB-Value\tnull\tO\nfor\tO\tfor\tO\nreferences\tO\treferences\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6304\tI-Code_Block\tA_6304\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42441382\tO\t42441382\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42441382/\tO\thttps://stackoverflow.com/questions/42441382/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nyearly\tO\tyearly\tO\nsalary\tO\tsalary\tO\nto\tO\tto\tO\nweekly\tO\tweekly\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\n312,000\tB-Value\t312,000\tO\nyearly\tO\tyearly\tO\nsalary\tO\tsalary\tO\nshould\tO\tshould\tO\ncome\tO\tcome\tO\nout\tO\tout\tO\nas\tO\tas\tO\n$6000\tB-Value\t$6000\tO\nweekly\tO\tweekly\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nformula\tO\tformula\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngiving\tO\tgiving\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\nresult\tO\tresult\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5407\tI-Code_Block\tQ_5407\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nconvert\tO\tconvert\tO\nyearly\tO\tyearly\tO\nto\tO\tto\tO\nhourly\tO\thourly\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42441382\tO\t42441382\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42441382/\tO\thttps://stackoverflow.com/questions/42441382/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\n52\tB-Value\t52\tO\nweeks\tO\tweeks\tO\nin\tO\tin\tO\na\tO\ta\tO\nyear\tO\tyear\tO\n,\tO\t,\tO\nso\tO\tso\tO\nweeklySalary\tB-Code_Block\tweeklySalary\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nyearlySalary\tI-Code_Block\tyearlySalary\tI-Code_Block\n/\tI-Code_Block\t/\tI-Code_Block\n52\tI-Code_Block\t52\tI-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nhourly\tO\thourly\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\n40\tB-Value\t40\tO\nworking\tO\tworking\tO\nhours\tO\thours\tO\nin\tO\tin\tO\na\tO\ta\tO\nweek\tO\tweek\tO\n,\tO\t,\tO\nso\tO\tso\tO\nhourlySalary\tB-Code_Block\thourlySalary\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nweeklySalary\tI-Code_Block\tweeklySalary\tI-Code_Block\n/\tI-Code_Block\t/\tI-Code_Block\n40\tI-Code_Block\t40\tI-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29364930\tO\t29364930\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29364930/\tO\thttps://stackoverflow.com/questions/29364930/\tO\n\t\n\t\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\npossible\tO\tpossible\tO\npaths\tO\tpaths\tO\nbetween\tO\tbetween\tO\nsource\tO\tsource\tO\nand\tO\tand\tO\ntarget\tO\ttarget\tO\nin\tO\tin\tO\na\tO\ta\tO\n2*D\tO\t2*D\tO\ngrid\tB-User_Interface_Element\tgrid\tO\nunder\tO\tunder\tO\nsome\tO\tsome\tO\ndefined\tO\tdefined\tO\nconstraints\tO\tconstraints\tO\nlike\tO\tlike\tO\n\t\nex\tO\tex\tO\n:\tO\t:\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\na\tO\ta\tO\ngrid\tB-User_Interface_Element\tgrid\tO\n(\tO\t(\tO\n5\tO\t5\tO\n*\tO\t*\tO\n9\tO\t9\tO\n)\tO\t)\tO\nand\tO\tand\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\n2\tO\t2\tO\nsource\tO\tsource\tO\nand\tO\tand\tO\n2\tO\t2\tO\ntargets\tO\ttargets\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\nsource1\tB-Variable_Name\tsource1\tO\n(\tB-Value\t(\tO\n2\tI-Value\t2\tO\n,\tI-Value\t,\tO\n2)\tI-Value\t2)\tO\ntarget1\tB-Variable_Name\ttarget1\tO\n(\tB-Value\t(\tO\n4\tI-Value\t4\tO\n,\tI-Value\t,\tO\n9\tI-Value\t9\tO\n)\tI-Value\t)\tO\n\t\nsource2\tB-Variable_Name\tsource2\tO\n(\tB-Value\t(\tO\n2\tI-Value\t2\tO\n,\tI-Value\t,\tO\n7\tI-Value\t7\tO\n)\tI-Value\t)\tO\ntarget2\tB-Variable_Name\ttarget2\tO\n(\tB-Value\t(\tO\n4\tI-Value\t4\tO\n,\tI-Value\t,\tO\n3)\tI-Value\t3)\tO\n\t\nNow\tO\tNow\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\npossible\tO\tpossible\tO\nshortest\tO\tshortest\tO\npaths\tO\tpaths\tO\ncombinations\tO\tcombinations\tO\nbetween\tO\tbetween\tO\nsource1\tB-Variable_Name\tsource1\tO\nand\tO\tand\tO\ntarget1\tB-Variable_Name\ttarget1\tO\nwhich\tO\twhich\tO\ndonot\tO\tdonot\tO\nintersect\tO\tintersect\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\nbetween\tO\tbetween\tO\nsource2\tB-Variable_Name\tsource2\tO\nand\tO\tand\tO\ntarget2\tB-Variable_Name\ttarget2\tO\nwith\tO\twith\tO\nminimum\tO\tminimum\tO\ntime\tO\ttime\tO\ncomplexity\tO\tcomplexity\tO\n.\tO\t.\tO\n?\tO\t?\tO\n\t\nCan\tO\tCan\tO\ni\tO\ti\tO\napply\tO\tapply\tO\nGenetic\tB-Algorithm\tGenetic\tO\nAlgorithm\tI-Algorithm\tAlgorithm\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nor\tO\tor\tO\nkeep\tO\tkeep\tO\ncomparing\tO\tcomparing\tO\neach\tO\teach\tO\npath\tO\tpath\tO\nof\tO\tof\tO\nsource1-target1\tB-Variable_Name\tsource1-target1\tO\nwith\tO\twith\tO\nall\tO\tall\tO\npaths\tO\tpaths\tO\nof\tO\tof\tO\nother\tO\tother\tO\nsource2-target2\tB-Variable_Name\tsource2-target2\tO\n.\tO\t.\tO\n?\tO\t?\tO\n\t\ncomparing\tO\tcomparing\tO\nall\tO\tall\tO\npaths\tO\tpaths\tO\nwill\tO\twill\tO\nlead\tO\tlead\tO\nto\tO\tto\tO\nmore\tO\tmore\tO\ntime\tO\ttime\tO\ncomplexity\tO\tcomplexity\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nany\tO\tany\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29364930\tO\t29364930\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29364930/\tO\thttps://stackoverflow.com/questions/29364930/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nin\tO\tin\tO\nfact\tO\tfact\tO\nno\tO\tno\tO\nexperience\tO\texperience\tO\nwith\tO\twith\tO\ngenetic\tB-Algorithm\tgenetic\tO\nalgorithms\tI-Algorithm\talgorithms\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nan\tO\tan\tO\nA*\tB-Algorithm\tA*\tO\nsearch\tI-Algorithm\tsearch\tO\nalgorithm\tO\talgorithm\tO\nand\tO\tand\tO\nlet\tO\tlet\tO\none\tO\tone\tO\npath\tO\tpath\tO\nblock\tO\tblock\tO\noff\tO\toff\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\npath\tO\tpath\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16077394\tO\t16077394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16077394/\tO\thttps://stackoverflow.com/questions/16077394/\tO\n\t\n\t\nI\tO\tI\tO\n'\tO\t'\tO\nm\tO\tm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nwindows\tB-Operating_System\twindows\tO\ninput\tO\tinput\tO\nlanguage\tO\tlanguage\tO\nby\tO\tby\tO\nALT+SHIFT\tB-Keyboard_IP\tALT+SHIFT\tO\nfrom\tO\tfrom\tO\nRussian\tO\tRussian\tO\nto\tO\tto\tO\nEnglish\tO\tEnglish\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nin\tO\tin\tO\njava\tB-Language\tjava\tO\napplications\tO\tapplications\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nwindows\tB-Operating_System\twindows\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nswitch\tO\tswitch\tO\nby\tO\tby\tO\nALT+TAB\tB-Keyboard_IP\tALT+TAB\tO\nto\tO\tto\tO\none\tO\tone\tO\nof\tO\tof\tO\njava\tB-Language\tjava\tO\napplications\tO\tapplications\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nrestart\tO\trestart\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nItellij\tB-Application\tItellij\tO\nIDEA\tI-Application\tIDEA\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nafter\tO\tafter\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nit\tO\tit\tO\nappears\tO\tappears\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nAnybody\tO\tAnybody\tO\ndescribe\tO\tdescribe\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16077394\tO\t16077394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16077394/\tO\thttps://stackoverflow.com/questions/16077394/\tO\n\t\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nyour\tO\tyour\tO\njava\tB-Language\tjava\tO\napp\tO\tapp\tO\nkeyboard\tO\tkeyboard\tO\npreferences\tO\tpreferences\tO\nif\tO\tif\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nits\tO\tits\tO\nown\tO\town\tO\nshortcut-function\tO\tshortcut-function\tO\nbound\tO\tbound\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nALT+\tB-Keyboard_IP\tALT+\tO\nSHIFT\tI-Keyboard_IP\tSHIFT\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nso\tO\tso\tO\nfor\tO\tfor\tO\nIntelliJ\tB-Application\tIntelliJ\tO\nIDEA\tI-Application\tIDEA\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16077394\tO\t16077394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16077394/\tO\thttps://stackoverflow.com/questions/16077394/\tO\n\t\n\t\nAFAIK\tB-Language\tAFAIK\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nlanguage\tO\tlanguage\tO\nis\tO\tis\tO\ndecided\tO\tdecided\tO\nat\tO\tat\tO\nstart-up\tO\tstart-up\tO\n,\tO\t,\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nexperienced\tO\texperienced\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nallows\tO\tallows\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nlanguage\tO\tlanguage\tO\nusing\tO\tusing\tO\nsome\tO\tsome\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\narguments\tO\targuments\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nafraid\tO\tafraid\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nrestart\tO\trestart\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nchanged\tO\tchanged\tO\ndefault\tO\tdefault\tO\nlanguage\tO\tlanguage\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nOS\tO\tOS\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42619132\tO\t42619132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42619132/\tO\thttps://stackoverflow.com/questions/42619132/\tO\n\t\n\t\nPlease\tO\tPlease\tO\nHelp\tO\tHelp\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nuser\tO\tuser\tO\npage\tB-User_Interface_Element\tpage\tO\nsetup\tO\tsetup\tO\nand\tO\tand\tO\nproperly\tO\tproperly\tO\nlinked\tO\tlinked\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ncountdown\tO\tcountdown\tO\ntimer\tO\ttimer\tO\nof\tO\tof\tO\n3\tO\t3\tO\nhours\tO\thours\tO\nfor\tO\tfor\tO\nusers\tO\tusers\tO\nwho\tO\twho\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nactivated\tO\tactivated\tO\ntheir\tO\ttheir\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthat\tO\tthat\tO\ntimer\tO\ttimer\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nunique\tO\tunique\tO\nto\tO\tto\tO\nindividual\tO\tindividual\tO\nusers\tO\tusers\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nstart\tO\tstart\tO\ncounting\tO\tcounting\tO\nonce\tO\tonce\tO\nthey\tO\tthey\tO\nregister\tO\tregister\tO\ntheir\tO\ttheir\tO\naccount\tO\taccount\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nthey\tO\tthey\tO\nlogin\tO\tlogin\tO\nthe\tO\tthe\tO\ncountdown\tO\tcountdown\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ndisplayed\tO\tdisplayed\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n.\tO\t.\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\ndummy\tO\tdummy\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\nwriting\tO\twriting\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nDreamweaver\tB-Application\tDreamweaver\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwith\tO\twith\tO\ncode\tO\tcode\tO\ngeneration\tO\tgeneration\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\npage\tB-User_Interface_Element\tpage\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5430\tI-Code_Block\tQ_5430\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42619132\tO\t42619132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42619132/\tO\thttps://stackoverflow.com/questions/42619132/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nstore\tO\tstore\tO\ntimestamp\tO\ttimestamp\tO\nin\tO\tin\tO\na\tO\ta\tO\nfield\tO\tfield\tO\nof\tO\tof\tO\nuser\tO\tuser\tO\ntable\tB-Data_Structure\ttable\tO\nwhen\tO\twhen\tO\nregistering\tO\tregistering\tO\nnew\tO\tnew\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nalso\tO\talso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nmysql\tB-Application\tmysql\tO\ninsert\tO\tinsert\tO\ntrigger\tO\ttrigger\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nautomatically\tO\tautomatically\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsubtract\tO\tsubtract\tO\nregistered\tO\tregistered\tO\ntimestamp\tO\ttimestamp\tO\nfrom\tO\tfrom\tO\ncurrent\tO\tcurrent\tO\ntimestam\tO\ttimestam\tO\nand\tO\tand\tO\nshow\tO\tshow\tO\nin\tO\tin\tO\nuser\tO\tuser\tO\ndashboard\tB-User_Interface_Element\tdashboard\tO\n.\tO\t.\tO\n\t\nalso\tO\talso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nJavaScript\tB-Language\tJavaScript\tO\nto\tO\tto\tO\ncontinues\tO\tcontinues\tO\nshowing\tO\tshowing\tO\ncounting\tO\tcounting\tO\ndown\tO\tdown\tO\ntimer\tO\ttimer\tO\nin\tO\tin\tO\nin\tO\tin\tO\nuser\tO\tuser\tO\ndashboard\tB-User_Interface_Element\tdashboard\tO\nwith\tO\twith\tO\ninterval\tB-Library_Function\tinterval\tO\nor\tO\tor\tO\nsetTimeout\tB-Library_Function\tsetTimeout\tO\n.\tO\t.\tO\n\t\nEdited\tO\tEdited\tO\n:\tO\t:\tO\n\t\nto\tO\tto\tO\nset\tO\tset\tO\ntimestamp\tO\ttimestamp\tO\nin\tO\tin\tO\nyou\tO\tyou\tO\ntable\tB-Data_Structure\ttable\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\nDefault\tO\tDefault\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nfield\tO\tfield\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6150\tI-Code_Block\tA_6150\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\nor\tO\tor\tO\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\nJob\tO\tJob\tO\nfired\tO\tfired\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\ntime\tO\ttime\tO\nand\tO\tand\tO\ndelete\tO\tdelete\tO\nuser\tO\tuser\tO\nif\tO\tif\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n3\tO\t3\tO\nhours\tO\thours\tO\nan\tO\tan\tO\nuser\tO\tuser\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nfinish\tO\tfinish\tO\nregistration\tO\tregistration\tO\nsteps\tO\tsteps\tO\n.\tO\t.\tO\n\t\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\nphp\tB-Language\tphp\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6151\tI-Code_Block\tA_6151\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33680840\tO\t33680840\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33680840/\tO\thttps://stackoverflow.com/questions/33680840/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nListView\tB-Library_Class\tListView\tO\n.\tO\t.\tO\n\t\nLoad\tO\tLoad\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nListView\tB-Library_Class\tListView\tO\nin\tO\tin\tO\nfly\tO\tfly\tO\n(\tO\t(\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nscrolling\tO\tscrolling\tO\nlistView\tB-Library_Class\tlistView\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nData\tO\tData\tO\nis\tO\tis\tO\nfrom\tO\tfrom\tO\nSQLite\tB-Library\tSQLite\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nSQLite\tB-Library\tSQLite\tO\ntable\tB-Data_Structure\ttable\tO\nend\tO\tend\tO\n-\tO\t-\tO\nget\tO\tget\tO\nnew\tO\tnew\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nGitHub\tB-Website\tGitHub\tO\nAPI\tI-Website\tAPI\tO\nin\tO\tin\tO\nJSON\tB-File_Type\tJSON\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nsave\tO\tsave\tO\nthis\tO\tthis\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nSQLite\tB-Library\tSQLite\tO\ntable\tB-Data_Structure\ttable\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nshow\tO\tshow\tO\nnew\tO\tnew\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nlisview\tB-Library_Class\tlisview\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33680840\tO\t33680840\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33680840/\tO\thttps://stackoverflow.com/questions/33680840/\tO\n\t\n\t\nYour\tO\tYour\tO\ncustom\tO\tcustom\tO\nListView\tB-Class_Name\tListView\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4815\tI-Code_Block\tA_4815\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\nactivity\tB-Library_Class\tactivity\tO\n,\tO\t,\tO\nimplement\tO\timplement\tO\nListView.ListViewListener\tB-Library_Class\tListView.ListViewListener\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4816\tI-Code_Block\tA_4816\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9517451\tO\t9517451\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9517451/\tO\thttps://stackoverflow.com/questions/9517451/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nan\tO\tan\tO\nautomatic\tO\tautomatic\tO\nsummarization\tO\tsummarization\tO\nsystem\tO\tsystem\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nC++\tB-Language\tC++\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nhave\tO\thave\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\nregarding\tO\tregarding\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nASCII\tO\tASCII\tO\ncomparisons\tO\tcomparisons\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_816\tI-Code_Block\tQ_816\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\ndone\tO\tdone\tO\nhere\tO\there\tO\n(\tO\t(\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nif\tO\tif\tO\nstatements\tO\tstatements\tO\n)\tO\t)\tO\nis\tO\tis\tO\nchecking\tO\tchecking\tO\nwhether\tO\twhether\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nsentence\tB-Variable_Name\tsentence\tO\nhas\tO\thas\tO\nbegun\tO\tbegun\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nanalyzed\tO\tanalyzed\tO\nand\tO\tand\tO\ndealt\tO\tdealt\tO\nwith\tO\twith\tO\nlater\tO\tlater\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nconditionals\tO\tconditionals\tO\nwork\tO\twork\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nbecause\tO\tbecause\tO\nwe\tO\twe\tO\ndiscovered\tO\tdiscovered\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n-1\tB-Value\t-1\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nwhat\tO\twhat\tO\nthat\tO\tthat\tO\nrepresents\tO\trepresents\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9517451\tO\t9517451\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9517451/\tO\thttps://stackoverflow.com/questions/9517451/\tO\n\t\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\nASCII\tO\tASCII\tO\ncharacter\tB-Data_Type\tcharacter\tO\n-1\tB-Value\t-1\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nrepresent\tO\trepresent\tO\nanything\tO\tanything\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nto\tO\tto\tO\nsay\tO\tsay\tO\n-1\tB-Value\t-1\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nASCII\tO\tASCII\tO\nvalue\tO\tvalue\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\nget()\tB-Library_Function\tget()\tO\nit\tO\tit\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nread\tO\tread\tO\noperation\tO\toperation\tO\nfailed\tO\tfailed\tO\n-\tO\t-\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nfile\tO\tfile\tO\nbeing\tO\tbeing\tO\nreached\tO\treached\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\neof()\tB-Library_Function\teof()\tO\nfunction\tO\tfunction\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nreturn\tO\treturn\tO\ntrue\tB-Value\ttrue\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nget\tB-Library_Function\tget\tO\nwill\tO\twill\tO\nfail\tO\tfail\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nfile\tO\tfile\tO\nbeing\tO\tbeing\tO\nreached\tO\treached\tO\n-\tO\t-\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\ntrue\tB-Value\ttrue\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nget\tB-Library_Function\tget\tO\nfailed\tO\tfailed\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nfile\tO\tfile\tO\nbeing\tO\tbeing\tO\nreached\tO\treached\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9517451\tO\t9517451\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9517451/\tO\thttps://stackoverflow.com/questions/9517451/\tO\n\t\n\t\nThe\tO\tThe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nchecking\tO\tchecking\tO\nfor\tO\tfor\tO\n-1\tB-Value\t-1\tO\nworks\tO\tworks\tO\nis\tO\tis\tO\nan\tO\tan\tO\naccident\tO\taccident\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nnothing\tO\tnothing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nASCII\tO\tASCII\tO\nvalues\tO\tvalues\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\n0\tB-Value\t0\tB-Code_Block\nto\tO\tto\tO\n127\tB-Value\t127\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nfail\tO\tfail\tO\nif\tO\tif\tO\neither\tO\teither\tO\nplain\tO\tplain\tO\nchar\tB-Data_Type\tchar\tO\nis\tO\tis\tO\nunsigned\tB-Data_Type\tunsigned\tO\n(\tO\t(\tO\ncompile\tO\tcompile\tO\nwith\tO\twith\tO\n/J\tB-Value\t/J\tB-Code_Block\nwith\tO\twith\tO\nVC++\tB-Application\tVC++\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\n)\tO\t)\tO\n,\tO\t,\tO\nor\tO\tor\tO\nEOF\tB-Value\tEOF\tB-Code_Block\nis\tO\tis\tO\nn't\tO\tn't\tO\n-1\tB-Value\t-1\tO\n(\tO\t(\tO\nrare\tO\trare\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nall\tO\tall\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nguaranteed\tO\tguaranteed\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnegative\tO\tnegative\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nfail\tO\tfail\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nhappens\tO\thappens\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nLatin-1\tB-Value\tLatin-1\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\n'\tB-Value\t'\tB-Code_Block\nÿ\tI-Value\tÿ\tI-Code_Block\n'\tB-Value\t'\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbasic\tO\tbasic\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nchecking\tO\tchecking\tO\nfor\tO\tfor\tO\nend\tO\tend\tO\nof\tO\tof\tO\nfile\tO\tfile\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nPutting\tO\tPutting\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nfor\tO\tfor\tO\nfailure\tO\tfailure\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\neof())\tB-Library_Function\teof())\tB-Code_Block\nafter\tO\tafter\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\nbefore\tO\tbefore\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nread\tO\tread\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nseveral\tO\tseveral\tO\nways\tO\tways\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n;\tO\t;\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1193\tI-Code_Block\tA_1193\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nch\tB-Variable_Name\tch\tB-Code_Block\nan\tO\tan\tO\nint\tB-Data_Type\tint\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1194\tI-Code_Block\tA_1194\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nadvantage\tO\tadvantage\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\ntolower\tB-Library_Function\ttolower\tB-Code_Block\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nundefined\tO\tundefined\tO\nbehavior\tO\tbehavior\tO\n(\tO\t(\tO\ntolower\tB-Library_Function\ttolower\tB-Code_Block\ntakes\tO\ttakes\tO\nan\tO\tan\tO\nint\tB-Data_Type\tint\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\n0\tB-Code_Block\t0\tB-Code_Block\n...\tI-Code_Block\t...\tI-Code_Block\nUCHAR_MAX\tI-Code_Block\tUCHAR_MAX\tI-Code_Block\nor\tI-Code_Block\tor\tI-Code_Block\nEOF\tB-Value\tEOF\tI-Code_Block\n—\tI-Value\t—\tI-Code_Block\nif\tI-Value\tif\tI-Code_Block\nplain\tO\tplain\tO\nchar\tB-Data_Type\tchar\tB-Code_Block\nis\tI-Data_Type\tis\tI-Code_Block\nsigned\tO\tsigned\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nguaranteeing\tO\tguaranteeing\tO\nthis\tO\tthis\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nhand\tO\thand\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nallow\tO\tallow\tO\nchaining\tO\tchaining\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nequivalent\tO\tequivalent\tO\nof\tO\tof\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1195\tI-Code_Block\tA_1195\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nwhich\tO\twhich\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFWIW\tO\tFWIW\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\ntechnique\tO\ttechnique\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\ncalled\tO\tcalled\tO\na\tO\ta\tO\nsliding\tO\tsliding\tO\nwindow\tO\twindow\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nstream\tO\tstream\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nworth\tO\tworth\tO\npushing\tO\tpushing\tO\nit\tO\tit\tO\noff\tO\toff\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nclass\tO\tclass\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nlogic\tO\tlogic\tO\nof\tO\tof\tO\nkeeping\tO\tkeeping\tO\nthe\tO\tthe\tO\nwindow\tO\twindow\tO\nfilled\tO\tfilled\tO\nand\tO\tand\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nstate\tO\tstate\tO\nmachine\tO\tmachine\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ndefinitely\tO\tdefinitely\tO\navoid\tO\tavoid\tO\nusing\tO\tusing\tO\nmagic\tO\tmagic\tO\nconstants\tO\tconstants\tO\n:\tO\t:\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncarriage\tO\tcarriage\tO\nreturn\tO\treturn\tO\n,\tO\t,\tO\ncompare\tO\tcompare\tO\nwith\tO\twith\tO\n'\tB-Value\t'\tB-Code_Block\n\\r\tI-Value\t\\r\tI-Code_Block\n'\tB-Value\t'\tB-Code_Block\n.\tO\t.\tO\n\t\nSimilarly\tO\tSimilarly\tO\n,\tO\t,\tO\nnewline\tO\tnewline\tO\nis\tO\tis\tO\n'\tB-Value\t'\tB-Code_Block\n\\n\tI-Value\t\\n\tI-Code_Block\n'\tB-Value\t'\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nouter\tO\touter\tO\nif\tB-Code_Block\tif\tB-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nwhitespace\tO\twhitespace\tO\n(\tO\t(\tO\nisspace\tB-Code_Block\tisspace\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nstatic_cast\tB-Code_Block\tstatic_cast\tB-Code_Block\n<unsigned\tI-Code_Block\t<unsigned\tI-Code_Block\nchar>\tI-Code_Block\tchar>\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nsentenceCheck.second\tI-Code_Block\tsentenceCheck.second\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n)\tB-Code_Block\t)\tB-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\ncomparing\tO\tcomparing\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmight\tO\tmight\tO\nalso\tO\talso\tO\nadd\tO\tadd\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nfails\tO\tfails\tO\nto\tO\tto\tO\ncorrectly\tO\tcorrectly\tO\nhandle\tO\thandle\tO\nsentences\tO\tsentences\tO\nthat\tO\tthat\tO\nend\tO\tend\tO\nwith\tO\twith\tO\na\tO\ta\tO\nquote\tO\tquote\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nThis\tB-Value\tThis\tB-Code_Block\nis\tI-Value\tis\tI-Code_Block\nthe\tI-Value\tthe\tI-Code_Block\n\"\tI-Value\t\"\tI-Code_Block\ntext\tI-Value\ttext\tI-Code_Block\nin\tI-Value\tin\tI-Code_Block\nyour\tI-Value\tyour\tI-Code_Block\ninput\tI-Value\tinput\tI-Code_Block\n.\tI-Value\t.\tI-Code_Block\n\"\tI-Value\t\"\tI-Code_Block\n;\tO\t;\tO\nit\tO\tit\tO\nalso\tO\talso\tO\nfails\tO\tfails\tO\nfor\tO\tfor\tO\nabbreviations\tO\tabbreviations\tO\nlike\tO\tlike\tO\nMr\tB-Value\tMr\tB-Code_Block\n.\tI-Value\t.\tI-Code_Block\nJones\tI-Value\tJones\tI-Code_Block\nis\tI-Value\tis\tI-Code_Block\nhere.\tI-Value\there.\tI-Code_Block\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthose\tO\tthose\tO\nproblems\tO\tproblems\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nbeyond\tO\tbeyond\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nassignment\tO\tassignment\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nThe\tO\tThe\tO\nabbreviations\tO\tabbreviations\tO\none\tO\tone\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nnot\tO\tnot\tO\nfully\tO\tfully\tO\nsolvable\tO\tsolvable\tO\n:\tO\t:\tO\nsometimes\tO\tsometimes\tO\n\"\tB-Value\t\"\tB-Code_Block\netc\tI-Value\tetc\tI-Code_Block\n.\tI-Value\t.\tI-Code_Block\n\"\tI-Value\t\"\tI-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\na\tO\ta\tO\nsentence\tO\tsentence\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsometimes\tO\tsometimes\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11295113\tO\t11295113\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11295113/\tO\thttps://stackoverflow.com/questions/11295113/\tO\n\t\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nOracle\tB-Language\tOracle\tO\nPL/SQL\tI-Language\tPL/SQL\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\na\tO\ta\tO\ncomplex\tO\tcomplex\tO\nstored\tO\tstored\tO\nproc\tO\tproc\tO\n?\tO\t?\tO\n\t\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncodes\tO\tcodes\tO\nbelow\tO\tbelow\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nloop\tO\tloop\tO\n+\tO\t+\tO\ncorrelated\tO\tcorrelated\tO\nsubquery\tO\tsubquery\tO\n.\tO\t.\tO\n\t\nhow\tO\thow\tO\nto\tO\tto\tO\nfully\tO\tfully\tO\nunderstand\tO\tunderstand\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nlearned\tO\tlearned\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nis\tO\tis\tO\ndivide-and-conquer\tB-Algorithm\tdivide-and-conquer\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncut\tO\tcut\tO\nthis\tO\tthis\tO\ncoding\tO\tcoding\tO\ninto\tO\tinto\tO\nsmall\tO\tsmall\tO\npieces\tO\tpieces\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1044\tI-Code_Block\tQ_1044\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11295113\tO\t11295113\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11295113/\tO\thttps://stackoverflow.com/questions/11295113/\tO\n\t\n\t\nTry\tO\tTry\tO\ncommenting\tO\tcommenting\tO\nout\tO\tout\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nso-far\tO\tso-far\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\nselect\tO\tselect\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\nSELECT\tB-Code_Block\tSELECT\tB-Code_Block\n@varname\tI-Code_Block\t@varname\tI-Code_Block\nAt\tO\tAt\tO\nleast\tO\tleast\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nhow\tO\thow\tO\nMYSQL\tB-Application\tMYSQL\tO\n5.x\tB-Version\t5.x\tO\nhandles\tO\thandles\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11295113\tO\t11295113\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11295113/\tO\thttps://stackoverflow.com/questions/11295113/\tO\n\t\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsay\tO\tsay\tO\nwhat\tO\twhat\tO\ntools\tO\ttools\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nOracle\tB-Application\tOracle\tO\nSQL\tI-Application\tSQL\tO\nDeveloper\tI-Application\tDeveloper\tO\n,\tO\t,\tO\nit\tO\tit\tO\nincludes\tO\tincludes\tO\na\tO\ta\tO\ndebugger\tB-Application\tdebugger\tO\nthat\tO\tthat\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nstep\tO\tstep\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nline\tO\tline\tO\nby\tO\tby\tO\nline\tO\tline\tO\n,\tO\t,\tO\nset\tO\tset\tO\nbreakpoints\tO\tbreakpoints\tO\n,\tO\t,\tO\nand\tO\tand\tO\nso\tO\tso\tO\nforth\tO\tforth\tO\n-\tO\t-\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntypical\tO\ttypical\tO\nfeatures\tO\tfeatures\tO\nof\tO\tof\tO\na\tO\ta\tO\ndebugging\tO\tdebugging\tO\nGUI\tO\tGUI\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nfree\tO\tfree\tO\n.\tO\t.\tO\n\t\nGet\tO\tGet\tO\nit\tO\tit\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26344533\tO\t26344533\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26344533/\tO\thttps://stackoverflow.com/questions/26344533/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nafter\tO\tafter\tO\nmoving\tO\tmoving\tO\ntwo\tO\ttwo\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nUIViews\tB-Library_Class\tUIViews\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nmoving\tO\tmoving\tO\nback\tO\tback\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\nstarting\tO\tstarting\tO\nx/y\tB-Variable_Name\tx/y\tO\nposition\tO\tposition\tO\nevery\tO\tevery\tO\nso\tO\tso\tO\noften\tO\toften\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nchecked\tO\tchecked\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nmoving\tO\tmoving\tO\nthem\tO\tthem\tO\nback\tO\tback\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\nstarting\tO\tstarting\tO\npositions\tO\tpositions\tO\ndirectly\tO\tdirectly\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nback\tO\tback\tO\nthere\tO\tthere\tO\nsomehow\tO\tsomehow\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ntechnique\tO\ttechnique\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\nsuggest\tO\tsuggest\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nwhich\tO\twhich\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nmoving\tO\tmoving\tO\nthem\tO\tthem\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\nam\tO\tam\tO\n'\tO\t'\tO\nhiding\tO\thiding\tO\n'\tO\t'\tO\nthem\tO\tthem\tO\nat\tO\tat\tO\none\tO\tone\tO\npoint\tO\tpoint\tO\n(\tO\t(\tO\nalpha\tB-Code_Block\talpha\tO\n=\tI-Code_Block\t=\tO\n0.5\tI-Code_Block\t0.5\tO\n,\tO\t,\tO\nuserInteractionEnabled\tB-Code_Block\tuserInteractionEnabled\tO\n=\tI-Code_Block\t=\tO\nNO\tI-Code_Block\tNO\tO\n)\tO\t)\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nre-showing\tO\tre-showing\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\nit\tO\tit\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9039159\tO\t9039159\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9039159/\tO\thttps://stackoverflow.com/questions/9039159/\tO\n\t\n\t\nI\tO\tI\tO\nwrote\tO\twrote\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nEventMachine\tB-Library\tEventMachine\tO\nserver\tB-Application\tserver\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_762\tI-Code_Block\tQ_762\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nanother\tO\tanother\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nEventMachine\tB-Library\tEventMachine\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nRuby\tB-Language\tRuby\tO\nclass\tO\tclass\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nrun\tB-Function_Name\trun\tB-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\n)\tO\t)\tO\nclass\tO\tclass\tO\nmethod\tO\tmethod\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_763\tI-Code_Block\tQ_763\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAny\tO\tAny\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9039159\tO\t9039159\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9039159/\tO\thttps://stackoverflow.com/questions/9039159/\tO\n\t\n\t\nYou\tO\tYou\tO\nalready\tO\talready\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\n:\tO\t:\tO\n\t\nmy_app.rb\tB-File_Name\tmy_app.rb\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1132\tI-Code_Block\tA_1132\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nrun.rb\tB-File_Name\trun.rb\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1133\tI-Code_Block\tA_1133\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28325393\tO\t28325393\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28325393/\tO\thttps://stackoverflow.com/questions/28325393/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nJava\tB-Language\tJava\tO\nclient\tO\tclient\tO\nwith\tO\twith\tO\nRabbitMQ\tB-Application\tRabbitMQ\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nseen\tO\tseen\tO\nreferences\tO\treferences\tO\nto\tO\tto\tO\nfinding\tO\tfinding\tO\nqueue\tB-Data_Structure\tqueue\tO\nsize\tO\tsize\tO\nwith\tO\twith\tO\na\tO\ta\tO\nSpring\tB-Application\tSpring\tO\nplugin\tO\tplugin\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nSpring\tB-Application\tSpring\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nnon-Spring\tB-Application\tnon-Spring\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\na\tO\ta\tO\nqueue\tB-Data_Structure\tqueue\tO\ngiven\tO\tgiven\tO\nits\tO\tits\tO\nname\tO\tname\tO\n?\tO\t?\tO\n\t\nRight\tO\tRight\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\nexec'ing\tO\texec'ing\tO\nshell\tB-Application\tshell\tO\ncommands\tO\tcommands\tO\n'\tO\t'\tO\nrabbitmqctl\tB-Code_Block\trabbitmqctl\tO\nlist_queues\tI-Code_Block\tlist_queues\tO\n'\tO\t'\tO\nand\tO\tand\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\nresults--not\tO\tresults--not\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28325393\tO\t28325393\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28325393/\tO\thttps://stackoverflow.com/questions/28325393/\tO\n\t\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nenable\tO\tenable\tO\nthe\tO\tthe\tO\nhttp\tB-Application\thttp\tO\nmanagement\tI-Application\tmanagement\tO\nplugin\tO\tplugin\tO\n,\tO\t,\tO\n\t\nrabbitmq-plugins\tB-Code_Block\trabbitmq-plugins\tB-Code_Block\nenable\tI-Code_Block\tenable\tI-Code_Block\nrabbitmq_management\tI-Code_Block\trabbitmq_management\tI-Code_Block\n\t\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nhttp\tB-Library\thttp\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nexecute\tO\texecute\tO\nan\tO\tan\tO\nhttp\tO\thttp\tO\ncall\tO\tcall\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3935\tI-Code_Block\tA_3935\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nyou\tO\tyou\tO\nhave\tO\thave\tO\nall\tO\tall\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nqueue\tB-Data_Structure\tqueue\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\na\tO\ta\tO\njson\tB-File_Type\tjson\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3936\tI-Code_Block\tA_3936\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tB-Library_Class\tQuestion_ID\tO\n:\tO\t:\tO\n7388008\tO\t7388008\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7388008/\tO\thttps://stackoverflow.com/questions/7388008/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nbigger\tO\tbigger\tO\nweb-application\tO\tweb-application\tO\ndeployed\tO\tdeployed\tO\non\tO\ton\tO\nglassfish\tB-Application\tglassfish\tO\n)\tO\t)\tO\nthat\tO\tthat\tO\nconnects\tO\tconnects\tO\nto\tO\tto\tO\nother\tO\tother\tO\nsystem\tO\tsystem\tO\nvia\tO\tvia\tO\nwebservice\tO\twebservice\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nwriting\tO\twriting\tO\nclient\tO\tclient\tO\nonly\tO\tonly\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nchange\tO\tchange\tO\nWSDL\tB-Language\tWSDL\tO\nor\tO\tor\tO\nmodify\tO\tmodify\tO\nanything\tO\tanything\tO\non\tO\ton\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\n(\tO\t(\tO\nincluding\tO\tincluding\tO\nauth\tO\tauth\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nhere\tO\there\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nwebservices\tO\twebservices\tO\n,\tO\t,\tO\nso\tO\tso\tO\npretty\tO\tpretty\tO\nplease\tO\tplease\tO\n-\tO\t-\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\nanswers\tO\tanswers\tO\nas\tO\tas\tO\nsimple\tO\tsimple\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nclasses\tO\tclasses\tO\nfrom\tO\tfrom\tO\nWSDL\tB-Language\tWSDL\tO\n,\tO\t,\tO\nwrite\tO\twrite\tO\nsimple\tO\tsimple\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\napplication\tO\tapplication\tO\nthat\tO\tthat\tO\nconnects\tO\tconnects\tO\nto\tO\tto\tO\nwebservice\tO\twebservice\tO\n,\tO\t,\tO\nadds\tO\tadds\tO\nsecurity\tO\tsecurity\tO\nheader\tO\theader\tO\n(\tO\t(\tO\nadd\tO\tadd\tO\nplaintext\tO\tplaintext\tO\nusername/password\tO\tusername/password\tO\n,\tO\t,\tO\nmore\tO\tmore\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n,\tO\t,\tO\ncalls\tO\tcalls\tO\nsome\tO\tsome\tO\nmethod\tO\tmethod\tO\nand\tO\tand\tO\nprints\tO\tprints\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nworks\tO\tworks\tO\nOK\tO\tOK\tO\non\tO\ton\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nattach\tO\tattach\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\n'\tO\t'\tO\nbigger\tO\tbigger\tO\nwebapp\tO\twebapp\tO\n'\tO\t'\tO\n(\tO\t(\tO\ndeploy\tO\tdeploy\tO\non\tO\ton\tO\nglassfish\tB-Application\tglassfish\tO\n)\tO\t)\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nSP0105\tB-Error_Name\tSP0105\tO\n:\tO\t:\tO\nEither\tO\tEither\tO\nSymmetricBinding/AsymmetricBinding/TransportBinding\tO\tSymmetricBinding/AsymmetricBinding/TransportBinding\tO\nassertion\tO\tassertion\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\npresent\tO\tpresent\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwsdl\tB-Language\twsdl\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\n-\tO\t-\tO\nif\tO\tif\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfrom\tO\tfrom\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\n(\tO\t(\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nglassfish\tB-Application\tglassfish\tO\n)\tO\t)\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nneed\tO\tneed\tO\nsomething\tO\tsomething\tO\nmore\tO\tmore\tO\nwhile\tO\twhile\tO\ndeployed\tO\tdeployed\tO\non\tO\ton\tO\nglassfish\tB-Application\tglassfish\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\nhints\tO\thints\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\npage\tO\tpage\tO\n:\tO\t:\tO\n\t\nhttp://www.javadb.com/using-a-message-handler-to-alter-the-soap-header-in-a-web-service-client\tO\thttp://www.javadb.com/using-a-message-handler-to-alter-the-soap-header-in-a-web-service-client\tO\n\t\nTo\tO\tTo\tO\ngive\tO\tgive\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\npieces\tO\tpieces\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCode\tO\tCode\tO\nfragment\tO\tfragment\tO\nfor\tO\tfor\tO\nresolving\tO\tresolving\tO\nendpoint\tO\tendpoint\tO\nand\tO\tand\tO\ncalling\tO\tcalling\tO\nservice\tO\tservice\tO\n(\tO\t(\tO\nin\tO\tin\tO\nfile\tO\tfile\tO\nEndpointResolver.java\tB-File_Name\tEndpointResolver.java\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_577\tI-Code_Block\tQ_577\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHeaderHandlerResolver\tB-Class_Name\tHeaderHandlerResolver\tO\n(\tO\t(\tO\nimplementing\tO\timplementing\tO\njavax.xml.ws.handler.HandlerResolver\tB-Library_Class\tjavax.xml.ws.handler.HandlerResolver\tO\n)\tO\t)\tO\nmost\tO\tmost\tO\nimportant\tO\timportant\tO\nmethid\tO\tmethid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_578\tI-Code_Block\tQ_578\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHeaderHandler\tB-Class_Name\tHeaderHandler\tO\nhandle\tO\thandle\tO\nmethod\tO\tmethod\tO\n(\tO\t(\tO\nauth\tB-Library_Variable\tauth\tO\nis\tO\tis\tO\nhere\tO\there\tO\n:)\tO\t:)\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_579\tI-Code_Block\tQ_579\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nedit\tO\tedit\tO\n:\tO\t:\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\n'\tO\t'\tO\npolicy\tO\tpolicy\tO\n'\tO\t'\tO\npart\tO\tpart\tO\nfrom\tO\tfrom\tO\nwsdl\tB-File_Type\twsdl\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nas\tO\tas\tO\nstated\tO\tstated\tO\nbefore\tO\tbefore\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nchange\tO\tchange\tO\nthat\tO\tthat\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_580\tI-Code_Block\tQ_580\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7388008\tO\t7388008\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7388008/\tO\thttps://stackoverflow.com/questions/7388008/\tO\n\t\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\n\t\nThere\tO\tThere\tO\nwere\tO\twere\tO\ntwo\tO\ttwo\tO\nthings\tO\tthings\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nproblem\tO\tproblem\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nthing\tO\tthing\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nrequired\tO\trequired\tO\nwas\tO\twas\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nmetro\tB-Library\tmetro\tO\nlibrary\tO\tlibrary\tO\non\tO\ton\tO\nglassfish\tB-Application\tglassfish\tO\n(\tO\t(\tO\nI\tO\tI\tO\n've\tO\t've\tO\nupdated\tO\tupdated\tO\nit\tO\tit\tO\nto\tO\tto\tO\nversion\tO\tversion\tO\n2.1.1\tB-Version\t2.1.1\tO\n,\tO\t,\tO\nso\tO\tso\tO\nupdated\tO\tupdated\tO\nlibraries\tO\tlibraries\tO\nlib/webservices\tB-File_Name\tlib/webservices\tO\n-rt.jar\tI-File_Name\t-rt.jar\tO\n,\tO\t,\tO\nlib/webservices\tB-File_Name\tlib/webservices\tO\n-tools.jar\tI-File_Name\t-tools.jar\tO\n,\tO\t,\tO\nlib/endorsed/webservices\tB-File_Name\tlib/endorsed/webservices\tO\n-api.jar\tI-File_Name\t-api.jar\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nsolved\tO\tsolved\tO\nSP0105\tB-Error_Name\tSP0105\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ngenerated\tO\tgenerated\tO\nnew\tO\tnew\tO\none\tO\tone\tO\n(\tO\t(\tO\nClassCastException\tB-Error_Name\tClassCastException\tO\nsomewhere\tO\tsomewhere\tO\nat\tO\tat\tO\nheaders\tO\theaders\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nfix\tO\tfix\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\none\tO\tone\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\ndeleted\tO\tdeleted\tO\nHeaderHandler/HeaderHandlerResolver\tB-Class_Name\tHeaderHandler/HeaderHandlerResolver\tO\nclasses\tO\tclasses\tO\nand\tO\tand\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_857\tI-Code_Block\tA_857\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ncalled\tO\tcalled\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_858\tI-Code_Block\tA_858\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17124296\tO\t17124296\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17124296/\tO\thttps://stackoverflow.com/questions/17124296/\tO\n\t\n\t\nHere\tO\tHere\tO\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nredirecting\tO\tredirecting\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nwith\tO\twith\tO\nJSP\tB-Application\tJSP\tO\nForm\tO\tForm\tO\nsubmit\tO\tsubmit\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n(\tO\t(\tO\nuse\tO\tuse\tO\npost\tB-Library_Function\tpost\tO\nmethod\tO\tmethod\tO\n)\tO\t)\tO\nis\tO\tis\tO\nChanging\tO\tChanging\tO\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nChanging\tO\tChanging\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\npage\tO\tpage\tO\nsequence\tO\tsequence\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1736\tI-Code_Block\tQ_1736\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nindex.jsp\tB-File_Name\tindex.jsp\tB-Code_Block\nfile\tO\tfile\tO\nhave\tO\thave\tO\ninclude\tO\tinclude\tO\njqm\tB-Library\tjqm\tB-Code_Block\njs\tB-Language\tjs\tI-Code_Block\nand\tO\tand\tO\ncss\tB-Language\tcss\tB-Code_Block\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nmobileinit\tB-Library_Function\tmobileinit\tO\nsettings\tO\tsettings\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1737\tI-Code_Block\tQ_1737\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nredirect.jsp\tB-File_Name\tredirect.jsp\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1738\tI-Code_Block\tQ_1738\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nstrange\tO\tstrange\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nwork\tO\twork\tO\nwhen\tO\twhen\tO\nindex.jsp\tB-File_Name\tindex.jsp\tB-Code_Block\nwithout\tO\twithout\tO\ninclude\tO\tinclude\tO\njqm\tB-Library\tjqm\tB-Code_Block\njs\tB-Language\tjs\tI-Code_Block\nand\tO\tand\tI-Code_Block\ncss\tB-Language\tcss\tI-Code_Block\n.\tO\t.\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11829225\tO\t11829225\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11829225/\tO\thttps://stackoverflow.com/questions/11829225/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nReorderList\tB-Library_Class\tReorderList\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nvertically\tO\tvertically\tO\n\"\tO\t\"\tO\nscrollable\tO\tscrollable\tO\n\"\tO\t\"\tO\nDIV\tB-HTML_XML_Tag\tDIV\tO\ntag\tO\ttag\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nscrollbar\tB-User_Interface_Element\tscrollbar\tO\nfor\tO\tfor\tO\nDIV\tB-HTML_XML_Tag\tDIV\tO\ntag\tO\ttag\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nscrolled\tO\tscrolled\tO\nand\tO\tand\tO\nwe\tO\twe\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nre-order\tO\tre-order\tO\nvisible\tO\tvisible\tO\nitems\tO\titems\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ndetails\tO\tdetails\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nrefer\tO\trefer\tO\nhttp://forums.asp.net/p/1068063/1550532.aspx\tO\thttp://forums.asp.net/p/1068063/1550532.aspx\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nframework\tO\tframework\tO\n3.5\tB-Version\t3.5\tO\nassembly\tB-Language\tassembly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nAjaxControlToolkit\tB-Application\tAjaxControlToolkit\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\ncodeplex\tB-Website\tcodeplex\tO\nand\tO\tand\tO\nre-build\tO\tre-build\tO\nthe\tO\tthe\tO\ntoolkit\tO\ttoolkit\tO\n,\tO\t,\tO\nunder\tO\tunder\tO\nframework\tO\tframework\tO\n4.0\tB-Version\t4.0\tO\n\t\nHow\tO\tHow\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nproceed\tO\tproceed\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\ncompatible\tO\tcompatible\tO\nwith\tO\twith\tO\n3.5\tB-Version\t3.5\tO\nweb\tO\tweb\tO\nsite\tO\tsite\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nall\tO\tall\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nfrom\tO\tfrom\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2010\tB-Version\t2010\tO\nand\tO\tand\tO\nNOT\tO\tNOT\tO\n2008\tB-Version\t2008\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11829225\tO\t11829225\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11829225/\tO\thttps://stackoverflow.com/questions/11829225/\tO\n\t\n\t\nNo\tO\tNo\tO\nresponses\tO\tresponses\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nopen\tO\topen\tO\najax\tB-Application\tajax\tO\ncontrol\tI-Application\tcontrol\tO\ntoolkit\tI-Application\ttoolkit\tO\n2008\tB-Version\t2008\tO\nsolution\tO\tsolution\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nassembly\tB-Language\tassembly\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthere\tO\tthere\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48190276\tO\t48190276\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48190276/\tO\thttps://stackoverflow.com/questions/48190276/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\nschedulenotification\tB-Library_Class\tschedulenotification\tO\nwhen\tO\twhen\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nclosed\tO\tclosed\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6408\tI-Code_Block\tQ_6408\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nvery\tO\tvery\tO\nwell\tO\twell\tO\nforeground\tB-User_Interface_Element\tforeground\tO\nand\tO\tand\tO\nbackground\tB-User_Interface_Element\tbackground\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nwhen\tO\twhen\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nkilled\tO\tkilled\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6409\tI-Code_Block\tQ_6409\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18084963\tO\t18084963\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18084963/\tO\thttps://stackoverflow.com/questions/18084963/\tO\n\t\n\t\nIm\tO\tIm\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nin\tO\tin\tO\njava\tB-Language\tjava\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\nan\tO\tan\tO\nexcel\tB-Application\texcel\tO\nsheet\tO\tsheet\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nuploads\tO\tuploads\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\ngiven\tO\tgiven\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\ncalculations\tO\tcalculations\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ncompile\tO\tcompile\tO\ninside\tO\tinside\tO\neclipse\tB-Application\teclipse\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nexactly\tO\texactly\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nrunnable\tO\trunnable\tO\njar\tB-File_Type\tjar\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\npopup\tO\tpopup\tO\nerror\tO\terror\tO\n\"\tO\t\"\tO\nA\tO\tA\tO\nJava\tB-Error_Name\tJava\tO\nException\tI-Error_Name\tException\tO\nhas\tO\thas\tO\nOccurred\tO\tOccurred\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwent\tO\twent\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\ni\tO\ti\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nspreadsheet\tO\tspreadsheet\tO\nthe\tO\tthe\tO\nrunnable\tO\trunnable\tO\njar\tB-File_Type\tjar\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\ni\tO\ti\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nback\tO\tback\tO\nin\tO\tin\tO\nto\tO\tto\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\nit\tO\tit\tO\nbreaks\tO\tbreaks\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nblock\tO\tblock\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\ncauses\tO\tcauses\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nprogram\tO\tprogram\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1863\tI-Code_Block\tQ_1863\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1864\tI-Code_Block\tQ_1864\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1865\tI-Code_Block\tQ_1865\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18084963\tO\t18084963\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18084963/\tO\thttps://stackoverflow.com/questions/18084963/\tO\n\t\n\t\nTo\tO\tTo\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nactually\tO\tactually\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\ndouble-clicking\tO\tdouble-clicking\tO\nthe\tO\tthe\tO\njar\tB-File_Type\tjar\tO\nfile\tO\tfile\tO\nwill\tO\twill\tO\nlaunch\tO\tlaunch\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\n\"\tO\t\"\tO\njavaw.exe\tB-File_Name\tjavaw.exe\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nconsole\tB-Application\tconsole\tO\nand\tO\tand\tO\ntherefore\tO\ttherefore\tO\nonly\tO\tonly\tO\nreports\tO\treports\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\n-\tO\t-\tO\n-\tO\t-\tO\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\nstack\tO\tstack\tO\ntrace\tO\ttrace\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\nstart\tO\tstart\tO\na\tO\ta\tO\ncommand\tB-Application\tcommand\tO\nprompt\tI-Application\tprompt\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\ncd\tB-Code_Block\tcd\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\nwhere\tO\twhere\tO\nyour\tO\tyour\tO\njar\tB-File_Type\tjar\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nsupposing\tO\tsupposing\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\njar\tB-File_Type\tjar\tO\nname\tO\tname\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\nMyJarFile.jar\tB-File_Name\tMyJarFile.jar\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nrun\tO\trun\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2381\tI-Code_Block\tA_2381\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nrun\tO\trun\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\njava.exe\tB-File_Name\tjava.exe\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nprintStackTrace()\tB-Library_Function\tprintStackTrace()\tO\nwill\tO\twill\tO\nactually\tO\tactually\tO\nhave\tO\thave\tO\na\tO\ta\tO\nconsole\tB-Application\tconsole\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nstack\tO\tstack\tO\ntrace\tO\ttrace\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\npoint\tO\tpoint\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noffending\tO\toffending\tO\nline\tO\tline\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nstate\tO\tstate\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n(\tO\t(\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nposted\tO\tposted\tO\nexception\tO\texception\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nAh\tO\tAh\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\nrequire\tO\trequire\tO\na\tO\ta\tO\nthird\tO\tthird\tO\nparty\tO\tparty\tO\ndependency\tO\tdependency\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nrunning\tO\trunning\tO\nyour\tO\tyour\tO\nmain\tO\tmain\tO\nclass\tO\tclass\tO\nexplicitly\tO\texplicitly\tO\nand\tO\tand\tO\nspecifying\tO\tspecifying\tO\na\tO\ta\tO\nclasspath\tO\tclasspath\tO\ncontaining\tO\tcontaining\tO\nall\tO\tall\tO\nrequired\tO\trequired\tO\nclasses\tO\tclasses\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2382\tI-Code_Block\tA_2382\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwith\tO\twith\tO\n...\tO\t...\tO\n\"\tO\t\"\tO\npath\tB-Code_Block\tpath\tO\n\\to\tI-Code_Block\t\\to\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nApachePoiJarName\tB-Code_Block\tApachePoiJarName\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nMyAppJarFile\tB-Code_Block\tMyAppJarFile\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nmy.main.class.package\tB-Code_Block\tmy.main.class.package\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nMyMainClass\tB-Code_Block\tMyMainClass\tO\n\"\tO\t\"\tO\nreplaced\tO\treplaced\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nPOI\tB-Library\tPOI\tO\njar\tB-File_Type\tjar\tO\nrequires\tO\trequires\tO\nin\tO\tin\tO\nturn\tO\tturn\tO\nits\tO\tits\tO\nown\tO\town\tO\ndependencies\tO\tdependencies\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\npaths\tO\tpaths\tO\nto\tO\tto\tO\nthose\tO\tthose\tO\nfiles\tO\tfiles\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\npath\tO\tpath\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n(\tO\t(\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\njar\tB-File_Type\tjar\tO\npaths\tO\tpaths\tO\nseparated\tO\tseparated\tO\nby\tO\tby\tO\nsemicolons\tO\tsemicolons\tO\n,\tO\t,\tO\nno\tO\tno\tO\nspaces\tO\tspaces\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18084963\tO\t18084963\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18084963/\tO\thttps://stackoverflow.com/questions/18084963/\tO\n\t\n\t\nIn\tO\tIn\tO\nreply\tO\treply\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nNow\tO\tNow\tO\nwhat\tO\twhat\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nrunnable\tO\trunnable\tO\nby\tO\tby\tO\ndouble\tO\tdouble\tO\nclicking\tO\tclicking\tO\nthe\tO\tthe\tO\njar\tB-File_Type\tjar\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nrunning\tO\trunning\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\n(\tO\t(\tO\nTried\tO\tTried\tO\nto\tO\tto\tO\nreply\tO\treply\tO\nin\tO\tin\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nlimit\tO\tlimit\tO\nwas\tO\twas\tO\ntoo\tO\ttoo\tO\nsmall\tO\tsmall\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nIn\tO\tIn\tO\nEclipse\tB-Application\tEclipse\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nrun\tO\trun\tO\nconfiguration\tO\tconfiguration\tO\n\"\tO\t\"\tO\nwith\tO\twith\tO\nwhich\tO\twhich\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\ncorrectly\tO\tcorrectly\tO\n:\tO\t:\tO\n\t\nRight\tO\tRight\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n->\tO\t->\tO\nExport\tO\tExport\tO\n..\tO\t..\tO\n.\tO\t.\tO\n->\tO\t->\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nJava\tO\tJava\tO\n)\tO\t)\tO\n->\tO\t->\tO\nRunnable\tO\tRunnable\tO\nJAR\tB-File_Type\tJAR\tO\nfile\tO\tfile\tO\n\t\nNext\tO\tNext\tO\n\t\nSelect\tO\tSelect\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndrop-down\tB-User_Interface_Element\tdrop-down\tO\nlist\tI-User_Interface_Element\tlist\tO\nthe\tO\tthe\tO\nrun\tO\trun\tO\nconfiguration\tO\tconfiguration\tO\nthat\tO\tthat\tO\nlaunches\tO\tlaunches\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nExport\tO\tExport\tO\ndestination\tO\tdestination\tO\n,\tO\t,\tO\nbrowse\tO\tbrowse\tO\nto\tO\tto\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nrunnable\tO\trunnable\tO\njar\tB-File_Type\tjar\tO\nexported\tO\texported\tO\nand\tO\tand\tO\nchoose\tO\tchoose\tO\na\tO\ta\tO\njar\tB-File_Type\tjar\tO\nfile\tO\tfile\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nUnder\tO\tUnder\tO\n\"\tO\t\"\tO\nLibrary\tO\tLibrary\tO\nhandling\tO\thandling\tO\n\"\tO\t\"\tO\nselect\tO\tselect\tO\n\"\tO\t\"\tO\nPackage\tO\tPackage\tO\nrequired\tO\trequired\tO\nlibraries\tO\tlibraries\tO\ninto\tO\tinto\tO\ngenerated\tO\tgenerated\tO\nJAR\tB-File_Type\tJAR\tO\n\"\tO\t\"\tO\n\t\nFinish\tO\tFinish\tO\n\t\nYour\tO\tYour\tO\njar\tB-File_Type\tjar\tO\nfile\tO\tfile\tO\nshould\tO\tshould\tO\nnow\tO\tnow\tO\nrun\tO\trun\tO\nnormally\tO\tnormally\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nopens\tO\topens\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\njavaw\tB-Library\tjavaw\tO\n\"\tO\t\"\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nshow\tO\tshow\tO\na\tO\ta\tO\nconsole\tB-Application\tconsole\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nconsole\tB-Application\tconsole\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nsome\tO\tsome\tO\noutput\tO\toutput\tO\n,\tO\t,\tO\nor\tO\tor\tO\nif\tO\tif\tO\nit\tO\tit\tO\nfails\tO\tfails\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\n,\tO\t,\tO\nopen\tO\topen\tO\na\tO\ta\tO\nconsole\tB-Application\tconsole\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\njar\tB-File_Type\tjar\tO\nis\tO\tis\tO\nand\tO\tand\tO\nrun\tO\trun\tO\n\"\tO\t\"\tO\njava\tB-Code_Block\tjava\tO\n-jar\tI-Code_Block\t-jar\tO\nMyJarName.jar\tI-Code_Block\tMyJarName.jar\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nno\tO\tno\tO\nmore\tO\tmore\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nmain\tB-Class_Name\tmain\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\ndependencies\tO\tdependencies\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33522476\tO\t33522476\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33522476/\tO\thttps://stackoverflow.com/questions/33522476/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\nto\tO\tto\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlibgdx\tB-Library\tlibgdx\tO\nproject\tO\tproject\tO\non\tO\ton\tO\ntwo\tO\ttwo\tO\ncomputers\tB-Device\tcomputers\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nbackup\tO\tbackup\tO\nin\tO\tin\tO\none\tO\tone\tO\ncomputer\tB-Device\tcomputer\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrestore\tO\trestore\tO\non\tO\ton\tO\nanother\tO\tanother\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ngoogle-play-services\tB-Library\tgoogle-play-services\tO\nand\tO\tand\tO\nBaseGameUtils\tB-Library\tBaseGameUtils\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nre-importing\tO\tre-importing\tO\nall\tO\tall\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33522476\tO\t33522476\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33522476/\tO\thttps://stackoverflow.com/questions/33522476/\tO\n\t\n\t\nFor\tO\tFor\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nrecommand\tO\trecommand\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nGit\tB-Application\tGit\tO\n,\tO\t,\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\nhere\tO\there\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nsteps\tO\tsteps\tO\nto\tO\tto\tO\nget\tO\tget\tO\nstart\tO\tstart\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n-\tO\t-\tO\nCreate\tO\tCreate\tO\nan\tO\tan\tO\naccount\tO\taccount\tO\nat\tO\tat\tO\nBitbucket\tB-Application\tBitbucket\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nprivate\tO\tprivate\tO\nmode\tO\tmode\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nfree\tO\tfree\tO\n\t\n2\tO\t2\tO\n-\tO\t-\tO\nDownload\tO\tDownload\tO\nand\tO\tand\tO\nInstall\tO\tInstall\tO\nTortoiseGit\tB-Application\tTortoiseGit\tO\ntool\tO\ttool\tO\n:\tO\t:\tO\nit\tO\tit\tO\nreally\tO\treally\tO\nmake\tO\tmake\tO\nlife\tO\tlife\tO\neasier\tO\teasier\tO\n\t\n3\tO\t3\tO\n-\tO\t-\tO\nCreate\tO\tCreate\tO\nyour\tO\tyour\tO\n(\tO\t(\tO\nin\tO\tin\tO\nServer\tB-Device\tServer\tO\n)\tO\t)\tO\nrepository\tO\trepository\tO\nin\tO\tin\tO\nbitbucket\tB-Application\tbitbucket\tO\n\t\n4\tO\t4\tO\n-\tO\t-\tO\nCreate\tO\tCreate\tO\nyour\tO\tyour\tO\nrepository\tO\trepository\tO\nin\tO\tin\tO\nLocal\tB-Device\tLocal\tO\n\t\n5\tO\t5\tO\n-\tO\t-\tO\nMatch\tO\tMatch\tO\nbetween\tO\tbetween\tO\nyour\tO\tyour\tO\nrepositories\tO\trepositories\tO\nusing\tO\tusing\tO\nthese\tO\tthese\tO\ncommands\tO\tcommands\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4799\tI-Code_Block\tA_4799\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nnow\tO\tnow\tO\npull(download)/push(upload)\tO\tpull(download)/push(upload)\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nwith\tO\twith\tO\none\tO\tone\tO\nclick\tO\tclick\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nHope\tO\tHope\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nclear\tO\tclear\tO\nand\tO\tand\tO\nhelpful\tO\thelpful\tO\n!\tO\t!\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37709575\tO\t37709575\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37709575/\tO\thttps://stackoverflow.com/questions/37709575/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4743\tI-Code_Block\tQ_4743\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\n's\tO\t's\tO\njust\tO\tjust\tO\nprinting\tO\tprinting\tO\n\"\tB-Output_Block\t\"\tO\nKilled\tI-Output_Block\tKilled\tO\n\"\tI-Output_Block\t\"\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nstart\tO\tstart\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nall\tO\tall\tO\nthis\tO\tthis\tO\nstuff\tO\tstuff\tO\nseparately\tO\tseparately\tO\n-\tO\t-\tO\nit\tO\tit\tO\n's\tO\t's\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\ntogether\tO\ttogether\tO\n-\tO\t-\tO\nnot\tO\tnot\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nДопоможіть\tB-User_Name\tДопоможіть\tO\nхто\tI-User_Name\tхто\tO\nзможе\tI-User_Name\tзможе\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37709575\tO\t37709575\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37709575/\tO\thttps://stackoverflow.com/questions/37709575/\tO\n\t\n\t\nThe\tO\tThe\tO\nscript\tO\tscript\tO\nfrom\tO\tfrom\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nexecute\tO\texecute\tO\nit\tO\tit\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\ncontain\tO\tcontain\tO\n\"\tO\t\"\tO\nservice_name\tB-Code_Block\tservice_name\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nits\tO\tits\tO\nname\tO\tname\tO\n?\tO\t?\tO\n\t\nThen\tO\tThen\tO\nit\tO\tit\tO\nobviously\tO\tobviously\tO\nfulfills\tO\tfulfills\tO\nthe\tO\tthe\tO\ncriteria\tO\tcriteria\tO\nfor\tO\tfor\tO\nbegin\tO\tbegin\tO\nkilled\tO\tkilled\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\nfor\tB-Code_Block\tfor\tO\nloop\tO\tloop\tO\nand\tO\tand\tO\ncommits\tO\tcommits\tO\nsuicide\tO\tsuicide\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nstill\tO\tstill\tO\nthe\tO\tthe\tO\ngrep\tB-Code_Block\tgrep\tB-Code_Block\nservice_name\tI-Code_Block\tservice_name\tI-Code_Block\nremains\tO\tremains\tO\nwhich\tO\twhich\tO\nfulfills\tO\tfulfills\tO\nthe\tO\tthe\tO\nkill\tO\tkill\tO\ncriteria\tO\tcriteria\tO\n(\tO\t(\tO\nhas\tO\thas\tO\nservice_name\tB-Code_Block\tservice_name\tO\nin\tO\tin\tO\nits\tO\tits\tO\ncmd\tB-Application\tcmd\tO\nline\tO\tline\tO\n)\tO\t)\tO\n-\tO\t-\tO\nfor\tO\tfor\tO\nfixed\tO\tfixed\tO\nstrings\tB-Data_Type\tstrings\tO\nin\tO\tin\tO\ngrep\tB-Code_Block\tgrep\tO\nI\tO\tI\tO\nusually\tO\tusually\tO\nwrite\tO\twrite\tO\nthem\tO\tthem\tO\ngrep\tB-Code_Block\tgrep\tB-Code_Block\n\"s[e]rvice_name\"\tI-Code_Block\t\"s[e]rvice_name\"\tI-Code_Block\n,\tO\t,\tO\nother\tO\tother\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nput\tO\tput\tO\nanother\tO\tanother\tO\n|grep\tB-Code_Block\t|grep\tB-Code_Block\n-v\tI-Code_Block\t-v\tI-Code_Block\ngrep\tI-Code_Block\tgrep\tI-Code_Block\ninto\tO\tinto\tO\nthe\tO\tthe\tO\npipe\tO\tpipe\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nawk\tB-Language\tawk\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3369241\tO\t3369241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3369241/\tO\thttps://stackoverflow.com/questions/3369241/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nsync\tO\tsync\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSVN\tB-Application\tSVN\tO\nrepository\tO\trepository\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\ndevelopment\tO\tdevelopment\tO\npurposes\tO\tpurposes\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlive\tO\tlive\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nrunning\tO\trunning\tO\nin\tO\tin\tO\n/home/site/public_html/\tO\t/home/site/public_html/\tO\n,\tO\t,\tO\nas\tO\tas\tO\nin\tO\tin\tO\noverwrite\tO\toverwrite\tO\nwhatever\tO\twhatever\tO\nis\tO\tis\tO\nin\tO\tin\tO\nlive\tO\tlive\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nSVN\tB-Application\tSVN\tO\nrepo\tO\trepo\tO\n(\tO\t(\tO\nassume\tO\tassume\tO\nthe\tO\tthe\tO\nSVN\tB-Application\tSVN\tO\nrepo\tO\trepo\tO\nlocation\tO\tlocation\tO\nis\tO\tis\tO\nin\tO\tin\tO\n/usr/bin/svn/project\tB-File_Name\t/usr/bin/svn/project\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsake\tO\tsake\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nargument\tO\targument\tO\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nit\tO\tit\tO\n's\tO\t's\tO\nprobably\tO\tprobably\tO\nfar\tO\tfar\tO\nfrom\tO\tfrom\tO\nthat\tO\tthat\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3369241\tO\t3369241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3369241/\tO\thttps://stackoverflow.com/questions/3369241/\tO\n\t\n\t\nJust\tO\tJust\tO\ndo\tO\tdo\tO\nan\tO\tan\tO\nsvn\tB-Code_Block\tsvn\tB-Code_Block\ncheckout\tI-Code_Block\tcheckout\tI-Code_Block\nor\tO\tor\tO\nsvn\tB-Code_Block\tsvn\tB-Code_Block\nexport\tI-Code_Block\texport\tI-Code_Block\nin\tO\tin\tO\n/home/site/public_html\tO\t/home/site/public_html\tO\n.\tO\t.\tO\n\t\nPersonally\tO\tPersonally\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nchecked\tO\tchecked\tO\nout\tO\tout\tO\ncopy\tO\tcopy\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nrepository\tO\trepository\tO\nis\tO\tis\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nmachine\tO\tmachine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\nhave\tO\thave\tO\na\tO\ta\tO\nhook\tO\thook\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\non\tO\ton\tO\na\tO\ta\tO\ncommit\tO\tcommit\tO\n,\tO\t,\tO\nI\tO\tI\tO\nperform\tO\tperform\tO\nan\tO\tan\tO\nsvn\tB-Code_Block\tsvn\tB-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nlive\tO\tlive\tO\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\ncommitting\tO\tcommitting\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nrepository\tO\trepository\tO\nimmediately\tO\timmediately\tO\nmakes\tO\tmakes\tO\nthe\tO\tthe\tO\nchange\tO\tchange\tO\nlive\tO\tlive\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1528\tO\t1528\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1528/\tO\thttps://stackoverflow.com/questions/1528/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\nto\tO\tto\tO\neffectively\tO\teffectively\tO\nhide\tO\thide\tO\ninherited\tO\tinherited\tO\nmembers\tO\tmembers\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlibrary\tO\tlibrary\tO\nof\tO\tof\tO\nclasses\tO\tclasses\tO\nwhich\tO\twhich\tO\ninherit\tO\tinherit\tO\nfrom\tO\tfrom\tO\ncommon\tO\tcommon\tO\nbase\tO\tbase\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmore\tO\tmore\tO\nrecent\tO\trecent\tO\ndescendant\tO\tdescendant\tO\nclasses\tO\tclasses\tO\ninherit\tO\tinherit\tO\ndependency\tO\tdependency\tO\nproperties\tO\tproperties\tO\nwhich\tO\twhich\tO\nhave\tO\thave\tO\nbecome\tO\tbecome\tO\nvestigial\tO\tvestigial\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nconfusing\tO\tconfusing\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nIntelliSense\tB-Application\tIntelliSense\tO\nor\tO\tor\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nclasses\tO\tclasses\tO\nin\tO\tin\tO\na\tO\ta\tO\nvisual\tB-Application\tvisual\tO\ndesigner\tI-Application\tdesigner\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nclasses\tO\tclasses\tO\nare\tO\tare\tO\nall\tO\tall\tO\ncontrols\tO\tcontrols\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nwritten\tO\twritten\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncompiled\tO\tcompiled\tO\nfor\tO\tfor\tO\neither\tO\teither\tO\nWPF\tB-Library\tWPF\tO\nor\tO\tor\tO\nSilverlight\tB-Library\tSilverlight\tO\n2.0\tB-Version\t2.0\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nICustomTypeDescriptor\tB-Library_Class\tICustomTypeDescriptor\tB-Code_Block\nand\tO\tand\tO\nICustomPropertyProvider\tB-Library_Class\tICustomPropertyProvider\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\npretty\tO\tpretty\tO\ncertain\tO\tcertain\tO\nthose\tO\tthose\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\nSilverlight\tB-Library\tSilverlight\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\na\tO\ta\tO\nfunctional\tO\tfunctional\tO\nissue\tO\tissue\tO\nas\tO\tas\tO\na\tO\ta\tO\nusability\tO\tusability\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nUpdate\tO\tUpdate\tO\n\t\nSome\tO\tSome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproperties\tO\tproperties\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nreally\tO\treally\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nhide\tO\thide\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\nancestors\tO\tancestors\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nand\tO\tand\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ntool\tO\ttool\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndesigning\tO\tdesigning\tO\nfor\tO\tfor\tO\n,\tO\t,\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\nmember\tO\tmember\tO\nhiding\tO\thiding\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tB-Code_Block\tnew\tB-Code_Block\noperator\tO\toperator\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nridiculous\tO\tridiculous\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1528\tO\t1528\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1528/\tO\thttps://stackoverflow.com/questions/1528/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nbest\tO\tbest\tO\nleast\tO\tleast\tO\nhackish\tO\thackish\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nconsider\tO\tconsider\tO\ncomposition\tO\tcomposition\tO\nas\tO\tas\tO\nopposed\tO\topposed\tO\nto\tO\tto\tO\ninheritance\tO\tinheritance\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\ninterface\tO\tinterface\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nmembers\tO\tmembers\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nderived\tO\tderived\tO\nclass\tO\tclass\tO\nimplement\tO\timplement\tO\nthat\tO\tthat\tO\ninterface\tO\tinterface\tO\n,\tO\t,\tO\nand\tO\tand\tO\nprogram\tO\tprogram\tO\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1528\tO\t1528\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1528/\tO\thttps://stackoverflow.com/questions/1528/\tO\n\t\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nbeen\tO\tbeen\tO\nseveral\tO\tseveral\tO\nanswers\tO\tanswers\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nquite\tO\tquite\tO\nold\tO\told\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\ndeclare\tO\tdeclare\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\nnew\tB-Code_Block\tnew\tB-Code_Block\nprivate\tI-Code_Block\tprivate\tI-Code_Block\n.\tO\t.\tO\n\t\nConsider\tO\tConsider\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nworking\tO\tworking\tO\non\tO\ton\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nAPI\tB-Library\tAPI\tO\nthat\tO\tthat\tO\nmakes\tO\tmakes\tO\navailable\tO\tavailable\tO\nevery\tO\tevery\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\na\tO\ta\tO\n3rd\tO\t3rd\tO\nparty\tO\tparty\tO\nDLL\tB-File_Type\tDLL\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\ntheir\tO\ttheir\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\n.Net\tB-Library\t.Net\tO\nproperty\tO\tproperty\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\n\"\tO\t\"\tO\ngetThisValue\tB-Library_Function\tgetThisValue\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nsetThisValue\tB-Library_Function\tsetThisValue\tO\n\"\tO\t\"\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\ninherit\tO\tinherit\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nget\tB-Library_Function\tget\tO\nand\tO\tand\tO\nset\tB-Library_Function\tset\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nget\tB-Library_Function\tget\tO\nand\tO\tand\tO\nset\tB-Library_Function\tset\tO\nmethods\tO\tmethods\tO\nas\tO\tas\tO\nprivate\tO\tprivate\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\n're\tO\t're\tO\nstill\tO\tstill\tO\navailable\tO\tavailable\tO\nto\tO\tto\tO\nanyone\tO\tanyone\tO\nwanting\tO\twanting\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nsomething\tO\tsomething\tO\ndifferent\tO\tdifferent\tO\non\tO\ton\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nengine\tO\tengine\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nbuilding\tO\tbuilding\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthey\tO\tthey\tO\n'll\tO\t'll\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nproperties\tO\tproperties\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\ndouble\tO\tdouble\tO\nclass\tO\tclass\tO\nmethod\tO\tmethod\tO\ngets\tO\tgets\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nany\tO\tany\tO\nrestrictions\tO\trestrictions\tO\non\tO\ton\tO\nbeing\tO\tbeing\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nnew\tB-Code_Block\tnew\tB-Code_Block\ndeclaration\tO\tdeclaration\tO\nto\tO\tto\tO\nhide\tO\thide\tO\nthe\tO\tthe\tO\nmembers\tO\tmembers\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nsimply\tO\tsimply\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\noverride\tB-Code_Block\toverride\tB-Code_Block\nif\tO\tif\tO\nthe\tO\tthe\tO\nmembers\tO\tmembers\tO\nare\tO\tare\tO\nmarked\tO\tmarked\tO\nas\tO\tas\tO\nvirtual\tB-Code_Block\tvirtual\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_463\tI-Code_Block\tA_463\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nvalueEnum\tB-Variable_Name\tvalueEnum\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nto\tO\tto\tO\nboth\tO\tboth\tO\nclasses\tO\tclasses\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nvisible\tO\tvisible\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAPIUsageClass\tB-Class_Name\tAPIUsageClass\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nAPIClass\tB-Class_Name\tAPIClass\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nextend\tO\textend\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nAPI\tB-Library\tAPI\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nin\tO\tin\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nway\tO\tway\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nAPIUsageClass\tB-Class_Name\tAPIUsageClass\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nthose\tO\tthose\tO\nwho\tO\twho\tO\nwant\tO\twant\tO\nsomething\tO\tsomething\tO\nmore\tO\tmore\tO\nsimple\tO\tsimple\tO\n.\tO\t.\tO\n\t\nUltimately\tO\tUltimately\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nbe\tO\tbe\tO\ndoing\tO\tdoing\tO\nis\tO\tis\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\nAPIClass\tB-Class_Name\tAPIClass\tO\ninternal\tO\tinternal\tO\n,\tO\t,\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nexpose\tO\texpose\tO\nmy\tO\tmy\tO\ninherited\tO\tinherited\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n172227\tO\t172227\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/172227/\tO\thttps://stackoverflow.com/questions/172227/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ntable\tB-Data_Structure\ttable\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_12\tI-Code_Block\tQ_12\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nfails\tO\tfails\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nlength\tO\tlength\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\nlarge\tO\tlarge\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n172227\tO\t172227\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/172227/\tO\thttps://stackoverflow.com/questions/172227/\tO\n\t\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\nhelp\tO\thelp\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nSQL\tB-Language\tSQL\tO\nstatement\tO\tstatement\tO\nwas\tO\twas\tO\nsyntactically\tO\tsyntactically\tO\nvalid\tO\tvalid\tO\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nprovided\tO\tprovided\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nreformatted\tO\treformatted\tO\nand\tO\tand\tO\nsyntax\tO\tsyntax\tO\ncorrected\tO\tcorrected\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nstatement\tO\tstatement\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_31\tI-Code_Block\tA_31\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nrun\tO\trun\tO\non\tO\ton\tO\na\tO\ta\tO\nsystem\tO\tsystem\tO\nwith\tO\twith\tO\n2KB\tO\t2KB\tO\npages\tO\tpages\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_32\tI-Code_Block\tA_32\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nstandard\tO\tstandard\tO\nway\tO\tway\tO\nof\tO\tof\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nbrief\tO\tbrief\tO\nexplanation\tO\texplanation\tO\nof\tO\tof\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nis\tO\tis\tO\nfinderr\tB-Code_Block\tfinderr\tB-Code_Block\n;\tO\t;\tO\nit\tO\tit\tO\nsays\tO\tsays\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_33\tI-Code_Block\tA_33\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\n'\tO\t'\tO\na\tO\ta\tO\ntotal\tO\ttotal\tO\nof\tO\tof\tO\n120\tO\t120\tO\nbytes\tO\tbytes\tO\n'\tO\t'\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n'\tO\t'\tO\na\tO\ta\tO\ntotal\tO\ttotal\tO\nof\tO\tof\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n120\tO\t120\tO\nbytes\tO\tbytes\tO\n'\tO\t'\tO\n;\tO\t;\tO\nthat\tO\tthat\tO\nlower-bound\tO\tlower-bound\tO\napplies\tO\tapplies\tO\nto\tO\tto\tO\nInformix\tB-Application\tInformix\tO\nSE\tB-Version\tSE\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nIDS\tB-Application\tIDS\tO\n(\tO\t(\tO\nInformix\tB-Application\tInformix\tO\nDynamic\tI-Application\tDynamic\tO\nServer\tI-Application\tServer\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlower-bound\tO\tlower-bound\tO\nis\tO\tis\tO\n255\tO\t255\tO\nbytes\tO\tbytes\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbigger\tO\tbigger\tO\nin\tO\tin\tO\nmore\tO\tmore\tO\nrecent\tO\trecent\tO\nsystems\tO\tsystems\tO\n,\tO\t,\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nbigger\tO\tbigger\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nsize\tO\tsize\tO\nis\tO\tis\tO\nbigger\tO\tbigger\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvariety\tO\tvariety\tO\nof\tO\tof\tO\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nconsider\tO\tconsider\tO\nwhy\tO\twhy\tO\nyour\tO\tyour\tO\nnames\tO\tnames\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n255\tO\t255\tO\ncharacters\tO\tcharacters\tO\neach\tO\teach\tO\n-\tO\t-\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nsensible\tO\tsensible\tO\n(\tO\t(\tO\nwould\tO\twould\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\n64\tO\t64\tO\nbe\tO\tbe\tO\nsufficient\tO\tsufficient\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nserver\tB-Application\tserver\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\nrecent\tO\trecent\tO\nenough\tO\tenough\tO\n(\tO\t(\tO\n10.00\tB-Version\t10.00\tO\nor\tO\tor\tO\nlater\tO\tlater\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\nin\tO\tin\tO\na\tO\ta\tO\ndbspace\tO\tdbspace\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlarger\tO\tlarger\tO\npage\tO\tpage\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nis\tO\tis\tO\na\tO\ta\tO\nmaximum\tO\tmaximum\tO\nof\tO\tof\tO\n3*255+(20/2+1)\tO\t3*255+(20/2+1)\tO\n=\tO\t=\tO\n776\tO\t776\tO\nbytes\tO\tbytes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nrule\tO\trule\tO\nof\tO\tof\tO\nthumb\tO\tthumb\tO\nis\tO\tis\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\n5\tO\t5\tO\nmaximum-length\tO\tmaximum-length\tO\nkey\tO\tkey\tO\nvalues\tO\tvalues\tO\n+\tO\t+\tO\nROWID/FRAGID\tO\tROWID/FRAGID\tO\noverhead\tO\toverhead\tO\n(\tO\t(\tO\n8\tO\t8\tO\nbytes\tO\tbytes\tO\n)\tO\t)\tO\nper\tO\tper\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\na\tO\ta\tO\n4\tO\t4\tO\nKB\tO\tKB\tO\npage\tO\tpage\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nHad\tO\tHad\tO\nyou\tO\tyou\tO\nbeen\tO\tbeen\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nAIX\tB-Operating_System\tAIX\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nnoticed\tO\tnoticed\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nstoring\tO\tstoring\tO\ndate\tO\tdate\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nVARCHAR(255)\tB-Data_Type\tVARCHAR(255)\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\nDATE\tB-Data_Type\tDATE\tO\nor\tO\tor\tO\nperhaps\tO\tperhaps\tO\nDATETIME\tB-Data_Type\tDATETIME\tO\nYEAR\tI-Data_Type\tYEAR\tO\nTO\tI-Data_Type\tTO\tO\nDAY\tI-Data_Type\tDAY\tO\n(\tO\t(\tO\na\tO\ta\tO\nweird\tO\tweird\tO\nway\tO\tway\tO\nof\tO\tof\tO\nspelling\tO\tspelling\tO\nDATE\tB-Data_Type\tDATE\tO\n-\tO\t-\tO\nthough\tO\tthough\tO\nthe\tO\tthe\tO\nunderlying\tO\tunderlying\tO\nformat\tO\tformat\tO\nis\tO\tis\tO\ndifferent\tO\tdifferent\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\n5\tO\t5\tO\nbytes\tO\tbytes\tO\non\tO\ton\tO\ndisk\tB-Device\tdisk\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n4\tO\t4\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nplain\tO\tplain\tO\nDATE\tB-Data_Type\tDATE\tO\n)\tO\t)\tO\n,\tO\t,\tO\nor\tO\tor\tO\nperhaps\tO\tperhaps\tO\nDATETIME\tB-Data_Type\tDATETIME\tO\nYEAR\tI-Data_Type\tYEAR\tO\nTO\tI-Data_Type\tTO\tO\nSECOND\tI-Data_Type\tSECOND\tO\n(\tO\t(\tO\na\tO\ta\tO\nfunny\tO\tfunny\tO\nway\tO\tway\tO\nof\tO\tof\tO\nspelling\tO\tspelling\tO\nTIMESTAMP\tB-Data_Type\tTIMESTAMP\tO\n)\tO\t)\tO\n,\tO\t,\tO\nor\tO\tor\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n'\tO\t'\tO\nnum0\tB-Variable_Name\tnum0\tO\n,\tO\t,\tO\nnum1\tB-Variable_Name\tnum1\tO\n,\tO\t,\tO\nnum2\tB-Variable_Name\tnum2\tO\n'\tO\t'\tO\nfields\tO\tfields\tO\nare\tO\tare\tO\nalso\tO\talso\tO\ndubious\tO\tdubious\tO\n,\tO\t,\tO\ntoo\tO\ttoo\tO\n;\tO\t;\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nmeant\tO\tmeant\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nnumbers\tO\tnumbers\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nNUMERIC\tB-Data_Type\tNUMERIC\tO\nor\tO\tor\tO\nDECIMAL\tB-Data_Type\tDECIMAL\tO\n-\tO\t-\tO\n-\tO\t-\tO\nDECIMAL(20)\tB-Data_Type\tDECIMAL(20)\tO\nin\tO\tin\tO\nmost\tO\tmost\tO\nIDS\tB-Application\tIDS\tO\ndatabases\tO\tdatabases\tO\nmeans\tO\tmeans\tO\na\tO\ta\tO\n20-digit\tO\t20-digit\tO\nfloating\tO\tfloating\tO\npoint\tO\tpoint\tO\ndecimal\tO\tdecimal\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nEdited\tO\tEdited\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n:\tO\t:\tO\n\t\nAnd\tO\tAnd\tO\n,\tO\t,\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\nthe\tO\tthe\tO\ndirect\tO\tdirect\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nVARCHAR\tB-Data_Type\tVARCHAR\tO\ncolumns\tB-Data_Structure\tcolumns\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\nup\tO\tup\tO\nto\tO\tto\tO\n255\tO\t255\tO\nbytes\tO\tbytes\tO\nlong\tO\tlong\tO\n;\tO\t;\tO\nLVARCHAR\tB-Data_Type\tLVARCHAR\tO\ncolumns\tB-Data_Structure\tcolumns\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nup\tO\tup\tO\nto\tO\tto\tO\nabout\tO\tabout\tO\n32\tO\t32\tO\nKB\tO\tKB\tO\n;\tO\t;\tO\nCHAR\tB-Data_Type\tCHAR\tO\ncolumns\tB-Data_Structure\tcolumns\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nup\tO\tup\tO\nto\tO\tto\tO\n32\tO\t32\tO\nKB\tO\tKB\tO\n;\tO\t;\tO\nTEXT\tB-Data_Type\tTEXT\tO\ncolumns\tB-Data_Structure\tcolumns\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nup\tO\tup\tO\nto\tO\tto\tO\n2\tO\t2\tO\nGB\tO\tGB\tO\n,\tO\t,\tO\nand\tO\tand\tO\nCLOB\tB-Data_Type\tCLOB\tO\ncolumns\tB-Data_Structure\tcolumns\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\neven\tO\teven\tO\nlarger\tO\tlarger\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntotal\tO\ttotal\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\na\tO\ta\tO\nrow\tB-Data_Structure\trow\tO\nis\tO\tis\tO\nlimited\tO\tlimited\tO\nto\tO\tto\tO\nabout\tO\tabout\tO\n32\tO\t32\tO\nKB\tO\tKB\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\nBYTE\tB-Data_Type\tBYTE\tO\n,\tO\t,\tO\nTEXT\tB-Data_Type\tTEXT\tO\n,\tO\t,\tO\nBLOB\tB-Data_Type\tBLOB\tO\nand\tO\tand\tO\nCLOB\tB-Data_Type\tCLOB\tO\ncolumns\tB-Data_Structure\tcolumns\tO\ncount\tO\tcount\tO\nas\tO\tas\tO\na\tO\ta\tO\nfixed\tO\tfixed\tO\nsize\tO\tsize\tO\ndescriptor\tO\tdescriptor\tO\ntowards\tO\ttowards\tO\nthat\tO\tthat\tO\n32\tO\t32\tO\nKB\tO\tKB\tO\ntotal\tO\ttotal\tO\n-\tO\t-\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nstored\tO\tstored\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nrow\tB-Data_Structure\trow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nversion\tO\tversion\tO\ndependencies\tO\tdependencies\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nbringing\tO\tbringing\tO\nout\tO\tout\tO\n-\tO\t-\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nIDS\tB-Application\tIDS\tO\n10.00\tB-Version\t10.00\tO\nor\tO\tor\tO\nlater\tO\tlater\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\naccurate\tO\taccurate\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15624039\tO\t15624039\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15624039/\tO\thttps://stackoverflow.com/questions/15624039/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nstrange\tO\tstrange\tO\nbug\tO\tbug\tO\nwhereby\tO\twhereby\tO\ntwo\tO\ttwo\tO\nUIButtons\tB-Library_Class\tUIButtons\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nUIView\tB-Library_Class\tUIView\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nin\tO\tin\tO\nturn\tO\tturn\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nUIScrollView\tB-Library_Class\tUIScrollView\tO\nview\tO\tview\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nclickable\tO\tclickable\tO\non\tO\ton\tO\niOS\tB-Operating_System\tiOS\tO\n5\tB-Version\t5\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwork\tO\twork\tO\nperfectly\tO\tperfectly\tO\nfine\tO\tfine\tO\non\tO\ton\tO\niOS\tB-Operating_System\tiOS\tO\n6\tB-Version\t6\tO\n(\tO\t(\tO\nscreenshot\tO\tscreenshot\tO\nshows\tO\tshows\tO\nscroller\tB-User_Interface_Element\tscroller\tO\nand\tO\tand\tO\nmap\tB-User_Interface_Element\tmap\tO\nunderneath\tO\tunderneath\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nother\tO\tother\tO\ndetail\tO\tdetail\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nscroller\tB-User_Interface_Element\tscroller\tO\nview\tO\tview\tO\n'\tO\t'\tO\nslides\tO\tslides\tO\nup\tO\tup\tO\n'\tO\t'\tO\nto\tO\tto\tO\nreveal\tO\treveal\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nstation\tO\tstation\tO\nis\tO\tis\tO\nselected\tO\tselected\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nselecting\tO\tselecting\tO\nthe\tO\tthe\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\non\tO\ton\tO\niOS\tB-Operating_System\tiOS\tO\n5\tB-Version\t5\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nget\tO\tget\tO\nhit\tO\thit\tO\n(\tO\t(\tO\nvisually\tO\tvisually\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nfired\tO\tfired\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nIf\tO\tIf\tO\nI\tO\tI\tO\ntap\tO\ttap\tO\nand\tO\tand\tO\nhold\tO\thold\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsimulator\tB-Application\tsimulator\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\ncursor\tB-User_Interface_Element\tcursor\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nand\tO\tand\tO\nrelease\tO\trelease\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nUIView\tB-Library_Class\tUIView\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nalways\tO\talways\tO\nvisible\tO\tvisible\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nfires\tO\tfires\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nscroll\tB-Library_Class\tscroll\tO\nview\tI-Library_Class\tview\tO\nitself\tO\titself\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nsettings\tO\tsettings\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlatter\tO\tlatter\tO\ntwo\tO\ttwo\tO\nhave\tO\thave\tO\nonly\tO\tonly\tO\nbeen\tO\tbeen\tO\nadded\tO\tadded\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nwork\tO\twork\tO\non\tO\ton\tO\niOS\tB-Operating_System\tiOS\tO\n5\tB-Version\t5\tO\n(\tO\t(\tO\ntried\tO\ttried\tO\nvarious\tO\tvarious\tO\ncombinations\tO\tcombinations\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1531\tI-Code_Block\tQ_1531\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nevents\tO\tevents\tO\nare\tO\tare\tO\nall\tO\tall\tO\nwired\tO\twired\tO\nup\tO\tup\tO\ncorrectly\tO\tcorrectly\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nsuitable\tO\tsuitable\tO\ntargets\tO\ttargets\tO\netc\tO\tetc\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1532\tI-Code_Block\tQ_1532\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nhandlers\tO\thandlers\tO\n(\tO\t(\tO\nhere\tO\there\tO\n's\tO\t's\tO\none\tO\tone\tO\nas\tO\tas\tO\na\tO\ta\tO\nsample\tO\tsample\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1533\tI-Code_Block\tQ_1533\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreat\tO\tgreat\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15624039\tO\t15624039\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15624039/\tO\thttps://stackoverflow.com/questions/15624039/\tO\n\t\n\t\nFound\tO\tFound\tO\nthe\tO\tthe\tO\nculprit\tO\tculprit\tO\n-\tO\t-\tO\na\tO\ta\tO\nmisconfigured\tO\tmisconfigured\tO\nUITapGestureRecognizer\tB-Library_Class\tUITapGestureRecognizer\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nUIView\tB-Library_Class\tUIView\tO\nthe\tO\tthe\tO\nUIButtons\tB-Library_Class\tUIButtons\tO\nsit\tO\tsit\tO\non\tO\ton\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2023\tI-Code_Block\tA_2023\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSimply\tO\tSimply\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nafter\tO\tafter\tO\ninit\tB-Library_Function\tinit\tO\nof\tO\tof\tO\n'\tO\t'\tO\ntap\tB-Variable_Name\ttap\tO\n'\tO\t'\tO\nsolves\tO\tsolves\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\niOS\tB-Operating_System\tiOS\tO\n5\tB-Version\t5\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2024\tI-Code_Block\tA_2024\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16201298\tO\t16201298\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16201298/\tO\thttps://stackoverflow.com/questions/16201298/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nencountered\tO\tencountered\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nstrange\tO\tstrange\tO\nproblem\tO\tproblem\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nthis\tO\tthis\tO\nalways\tO\talways\tO\nworked\tO\tworked\tO\nbefore\tO\tbefore\tO\n)\tO\t)\tO\nwhen\tO\twhen\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\nclient-server\tO\tclient-server\tO\nchat\tO\tchat\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nserversocket\tB-Library_Class\tserversocket\tO\naccepts\tO\taccepts\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nproblem\tO\tproblem\tO\nthe\tO\tthe\tO\nincoming\tO\tincoming\tO\nconnection\tO\tconnection\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nclient\tB-Class_Name\tclient\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsocket\tB-Library_Class\tsocket\tO\n's\tO\t's\tO\ninputstream\tB-Library_Class\tinputstream\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nmethod\tO\tmethod\tO\nblocks\tO\tblocks\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nreleases\tO\treleases\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\nclient\tB-Library_Class\tclient\tO\n's\tO\t's\tO\nsocket\tI-Library_Class\tsocket\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\neven\tO\teven\tO\ntried\tO\ttried\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\ncode\tO\tcode\tO\non\tO\ton\tO\ndocs.oracle.com\tB-Website\tdocs.oracle.com\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nremains\tO\tremains\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanybody\tO\tanybody\tO\npoint\tO\tpoint\tO\nme\tO\tme\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nobviously\tO\tobviously\tO\nnot\tO\tnot\tO\nseeing\tO\tseeing\tO\n?\tO\t?\tO\n\t\nServer\tB-Class_Name\tServer\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1608\tI-Code_Block\tQ_1608\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nClient\tB-Class_Name\tClient\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1609\tI-Code_Block\tQ_1609\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16201298\tO\t16201298\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16201298/\tO\thttps://stackoverflow.com/questions/16201298/\tO\n\t\n\t\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nreadLine()\tB-Library_Function\treadLine()\tB-Code_Block\nis\tO\tis\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\n\\n\tB-Value\t\\n\tO\ncharacter\tO\tcharacter\tO\nto\tO\tto\tO\nappear\tO\tappear\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nblocks\tO\tblocks\tO\nuntil\tO\tuntil\tO\nit\tO\tit\tO\nsees\tO\tsees\tO\nend\tO\tend\tO\nline\tO\tline\tO\ndelimeter\tO\tdelimeter\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nsending\tO\tsending\tO\n\"\tB-Value\t\"\tB-Code_Block\ntest\tI-Value\ttest\tI-Code_Block\n\\\\n\tI-Value\t\\\\n\tI-Code_Block\n\"\tB-Value\t\"\tB-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nclient\tB-Class_Name\tclient\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nhappens\tO\thappens\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nremember\tO\tremember\tO\nto\tO\tto\tO\nflush()\tB-Library_Function\tflush()\tB-Code_Block\nthe\tO\tthe\tO\noutput\tB-Library_Class\toutput\tO\nstream\tI-Library_Class\tstream\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nclient\tB-Class_Name\tclient\tO\nside\tO\tside\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16201298\tO\t16201298\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16201298/\tO\thttps://stackoverflow.com/questions/16201298/\tO\n\t\n\t\nYou\tO\tYou\tO\nforgot\tO\tforgot\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ntrue\tO\ttrue\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\n2nd\tO\t2nd\tO\nparameter\tO\tparameter\tO\nwhen\tO\twhen\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\nprintwriter\tB-Library_Class\tprintwriter\tO\nprintwriter\tI-Library_Class\tprintwriter\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2092\tI-Code_Block\tA_2092\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nflush\tO\tflush\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18933134\tO\t18933134\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18933134/\tO\thttps://stackoverflow.com/questions/18933134/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nscreenshot\tO\tscreenshot\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nlink\tO\tlink\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nafter\tO\tafter\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbasically\tO\tbasically\tO\nwant\tO\twant\tO\npeople\tO\tpeople\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\na\tO\ta\tO\nservice\tO\tservice\tO\ndown\tO\tdown\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nhand\tO\thand\tO\nside\tO\tside\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nloads\tO\tloads\tO\nin\tO\tin\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nhand\tO\thand\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nLike\tO\tLike\tO\nthis\tO\tthis\tO\npage\tO\tpage\tO\nbut\tO\tbut\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nloading\tO\tloading\tO\nbelow\tO\tbelow\tO\n,\tO\t,\tO\nit\tO\tit\tO\nloads\tO\tloads\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\n,\tO\t,\tO\nand\tO\tand\tO\nalso\tO\talso\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nthere\tO\tthere\tO\nloads\tO\tloads\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nin\tO\tin\tO\nvia\tO\tvia\tO\na\tO\ta\tO\nhtml\tB-File_Type\thtml\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nScreenshot\tO\tScreenshot\tO\n:\tO\t:\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\na\tO\ta\tO\njQuery\tB-Library\tjQuery\tO\nplugin\tO\tplugin\tO\nor\tO\tor\tO\najax\tB-Library_Function\tajax\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18933134\tO\t18933134\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18933134/\tO\thttps://stackoverflow.com/questions/18933134/\tO\n\t\n\t\nUse\tO\tUse\tO\njquery\tB-Library\tjquery\tO\n's\tO\t's\tO\najax\tB-Library_Function\tajax\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nalternatively\tO\talternatively\tO\npreload\tO\tpreload\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\njquery\tB-Library\tjquery\tO\nUI\tO\tUI\tO\n's\tO\t's\tO\ntabs\tB-User_Interface_Element\ttabs\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43995481\tO\t43995481\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43995481/\tO\thttps://stackoverflow.com/questions/43995481/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nImagePlot\tB-Application\tImagePlot\tO\n(\tO\t(\tO\nan\tO\tan\tO\nImageJ\tB-Application\tImageJ\tO\nmacro\tI-Application\tmacro\tO\n)\tO\t)\tO\nto\tO\tto\tO\nvisualize\tO\tvisualize\tO\nimages\tB-User_Interface_Element\timages\tO\nin\tO\tin\tO\na\tO\ta\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nspreadsheet\tB-User_Interface_Element\tspreadsheet\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nload\tO\tload\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nImagePlot\tB-Application\tImagePlot\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\naverage\tO\taverage\tO\ncolor\tO\tcolor\tO\nsaturation\tO\tsaturation\tO\nor\tO\tor\tO\nmedium\tO\tmedium\tO\nbrightness\tO\tbrightness\tO\nof\tO\tof\tO\neach\tO\teach\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nspreadsheet\tB-User_Interface_Element\tspreadsheet\tO\nin\tO\tin\tO\nImageJ\tB-Application\tImageJ\tO\nor\tO\tor\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\ndifferently\tO\tdifferently\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44522386\tO\t44522386\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44522386/\tO\thttps://stackoverflow.com/questions/44522386/\tO\n\t\n\t\nIds\tO\tIds\tO\nare\tO\tare\tO\nuseful\tO\tuseful\tO\nin\tO\tin\tO\nautomation\tO\tautomation\tO\ncontext\tO\tcontext\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nset\tO\tset\tO\nan\tO\tan\tO\nid\tO\tid\tO\nto\tO\tto\tO\nEditText(Android)\tB-Library_Class\tEditText(Android)\tO\nwhen\tO\twhen\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nCordova\tB-Library\tCordova\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n861223\tO\t861223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/861223/\tO\thttps://stackoverflow.com/questions/861223/\tO\n\t\n\t\nI\tO\tI\tO\ncame\tO\tcame\tO\nacross\tO\tacross\tO\nthe\tO\tthe\tO\nDell\tB-Device\tDell\tO\nStudio\tI-Device\tStudio\tO\nOne\tI-Device\tOne\tO\n19\tB-Version\t19\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nday\tO\tday\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwondered\tO\twondered\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nDev\tO\tDev\tO\nenvironment\tO\tenvironment\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nMulti-Touch\tO\tMulti-Touch\tO\nwas\tO\twas\tO\n?\tO\t?\tO\n\t\nAnyone\tO\tAnyone\tO\nout\tO\tout\tO\nthere\tO\tthere\tO\ndeveloping\tO\tdeveloping\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nor\tO\tor\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nenvironment\tO\tenvironment\tO\nis\tO\tis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\ndevelop\tO\tdevelop\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nHP\tB-Device\tHP\tO\nTouchSmart\tI-Device\tTouchSmart\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nHP\tB-Organization\tHP\tO\n's\tO\t's\tO\nown\tO\town\tO\nSDK\tB-Library\tSDK\tO\n....\tO\t....\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nsound\tO\tsound\tO\ntoo\tO\ttoo\tO\ngood\tO\tgood\tO\nto\tO\tto\tO\nme\tO\tme\tO\n(\tO\t(\tO\ncheck\tO\tcheck\tO\nout\tO\tout\tO\nthis\tO\tthis\tO\n.NET\tB-Library\t.NET\tO\nRocks\tO\tRocks\tO\nepisode\tO\tepisode\tO\non\tO\ton\tO\nit\tO\tit\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nhoping\tO\thoping\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nDell\tB-Device\tDell\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nusing\tO\tusing\tO\nWindows\tB-Operating_System\tWindows\tO\n7\tB-Version\t7\tO\nnative\tO\tnative\tO\ntouch\tO\ttouch\tO\nsupport\tO\tsupport\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nIdeally\tO\tIdeally\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\na\tO\ta\tO\nsubset\tO\tsubset\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nMicrosoft\tB-Library\tMicrosoft\tO\nSurface\tI-Library\tSurface\tO\nSDK\tI-Library\tSDK\tO\nbrought\tO\tbrought\tO\nto\tO\tto\tO\ntouch-enabled\tB-Device\ttouch-enabled\tO\nscreens\tI-Device\tscreens\tO\nrunning\tO\trunning\tO\nWin\tB-Operating_System\tWin\tO\n7\tB-Version\t7\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nanyone\tO\tanyone\tO\ngot\tO\tgot\tO\ninsight\tO\tinsight\tO\ninto\tO\tinto\tO\nwhats\tO\twhats\tO\nhappening\tO\thappening\tO\nwith\tO\twith\tO\nMulti-Touch\tO\tMulti-Touch\tO\non\tO\ton\tO\nWin\tB-Operating_System\tWin\tO\n7\tB-Version\t7\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndevelopment\tO\tdevelopment\tO\nperspective\tO\tperspective\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n861223\tO\t861223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/861223/\tO\thttps://stackoverflow.com/questions/861223/\tO\n\t\n\t\nWhile\tO\tWhile\tO\nthis\tO\tthis\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\napply\tO\tapply\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nDell\tB-Device\tDell\tO\nStudio\tI-Device\tStudio\tO\nOne\tI-Device\tOne\tO\n19\tB-Version\t19\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nanyone\tO\tanyone\tO\ngot\tO\tgot\tO\ninsight\tO\tinsight\tO\ninto\tO\tinto\tO\nwhats\tO\twhats\tO\nhappening\tO\thappening\tO\nwith\tO\twith\tO\nMulti-Touch\tO\tMulti-Touch\tO\non\tO\ton\tO\nWin\tB-Operating_System\tWin\tO\n7\tB-Application\t7\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndevelopment\tO\tdevelopment\tO\nperspective\tO\tperspective\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsay\tO\tsay\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbox\tO\tbox\tO\nthere\tO\tthere\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nmulti-touch\tB-Library\tmulti-touch\tO\nAPI\tI-Library\tAPI\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nfind\tO\tfind\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nWin\tB-Library\tWin\tO\n7\tI-Library\t7\tO\nRC\tI-Library\tRC\tO\nSDK\tI-Library\tSDK\tO\nlinked\tO\tlinked\tO\nin\tO\tin\tO\nTim\tB-User_Name\tTim\tO\nJ\tI-User_Name\tJ\tO\n's\tO\t's\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nWPF\tB-Library\tWPF\tO\n4.0\tB-Version\t4.0\tO\nwill\tO\twill\tO\ninclude\tO\tinclude\tO\nmulti-touch\tB-Library\tmulti-touch\tO\nAPIs\tI-Library\tAPIs\tO\nand\tO\tand\tO\ncontrols\tO\tcontrols\tO\nwhich\tO\twhich\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nseem\tO\tseem\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nSurface\tB-Library\tSurface\tO\nSDK\tI-Library\tSDK\tO\n2.0\tB-Version\t2.0\tO\nwill\tO\twill\tO\nextend/build\tO\textend/build\tO\nupon\tO\tupon\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nslide\tO\tslide\tO\n7\tO\t7\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npresentation\tO\tpresentation\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\nthing\tO\tthing\tO\nstack\tO\tstack\tO\ntogether\tO\ttogether\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n861223\tO\t861223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/861223/\tO\thttps://stackoverflow.com/questions/861223/\tO\n\t\n\t\nFunny\tO\tFunny\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nask\tO\task\tO\nthis\tO\tthis\tO\nI\tO\tI\tO\nam\tO\tam\tO\njust\tO\tjust\tO\nstarting\tO\tstarting\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nstuff\tO\tstuff\tO\nthis\tO\tthis\tO\nweek\tO\tweek\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nDell\tB-Device\tDell\tO\nXT2\tI-Device\tXT2\tO\nwith\tO\twith\tO\nWindows\tB-Operating_System\tWindows\tO\n7\tB-Version\t7\tO\n64bit\tO\t64bit\tO\n(\tO\t(\tO\nruns\tO\truns\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ndream\tO\tdream\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nWindows\tB-Application\tWindows\tO\n7\tI-Application\t7\tO\nRC\tI-Application\tRC\tO\nSDK\tI-Application\tSDK\tO\n\t\nand\tO\tand\tO\nyou\tO\tyou\tO\nalso\tO\talso\tO\nmust\tO\tmust\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\n\t\nNTrig\tB-Application\tNTrig\tO\ndevice\tI-Application\tdevice\tO\ndrivers\tI-Application\tdrivers\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nnice\tO\tnice\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nNTrig\tB-Application\tNTrig\tO\nSDK\tI-Application\tSDK\tO\n\t\nThere\tO\tThere\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nsome\tO\tsome\tO\nchanges\tO\tchanges\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nWindows\tB-Operating_System\tWindows\tO\n7\tB-Version\t7\tO\nBeta\tI-Version\tBeta\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nRC\tB-Version\tRC\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsamples\tO\tsamples\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nbeen\tO\tbeen\tO\nupdated\tO\tupdated\tO\nyet\tO\tyet\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nits\tO\tits\tO\nreasonably\tO\treasonably\tO\nsimple\tO\tsimple\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\nfun\tO\tfun\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17882077\tO\t17882077\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17882077/\tO\thttps://stackoverflow.com/questions/17882077/\tO\n\t\n\t\nHello\tO\tHello\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nsome\tO\tsome\tO\ntext\tO\ttext\tO\nin\tO\tin\tO\na\tO\ta\tO\ntextview\tB-Library_Class\ttextview\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1828\tI-Code_Block\tQ_1828\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nTextView\tB-Library_Class\tTextView\tB-Code_Block\ninto\tO\tinto\tO\nSpannble\tB-Library_Class\tSpannble\tB-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nthis\tO\tthis\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1829\tI-Code_Block\tQ_1829\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nit\tO\tit\tO\nSpannable\tB-Library_Class\tSpannable\tB-Code_Block\nbecause\tO\tbecause\tO\nI\tO\tI\tO\npassed\tO\tpassed\tO\nthe\tO\tthe\tO\nTextView\tB-Library_Class\tTextView\tB-Code_Block\ninto\tO\tinto\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1830\tI-Code_Block\tQ_1830\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nshows\tO\tshows\tO\nno\tO\tno\tO\nerror/warning\tO\terror/warning\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthrowing\tO\tthrowing\tO\na\tO\ta\tO\nRuntime\tB-Error_Name\tRuntime\tO\nError\tI-Error_Name\tError\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1831\tI-Code_Block\tQ_1831\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nSpannedStringt/text\tB-Library_Class\tSpannedStringt/text\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntextview\tB-Library_Class\ttextview\tO\ninto\tO\tinto\tO\nSpannble\tB-Library_Class\tSpannble\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntask\tO\ttask\tO\nwith\tO\twith\tO\nSpannedString\tB-Library_Class\tSpannedString\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17882077\tO\t17882077\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17882077/\tO\thttps://stackoverflow.com/questions/17882077/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nspecify\tO\tspecify\tO\nBufferType.SPANNABLE\tB-Library_Variable\tBufferType.SPANNABLE\tB-Code_Block\nwhen\tO\twhen\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nTextView\tB-Library_Class\tTextView\tB-Code_Block\n's\tO\t's\tO\ntext\tO\ttext\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nwhen\tO\twhen\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncast\tO\tcast\tO\nit\tO\tit\tO\nto\tO\tto\tO\nSpannable\tB-Library_Class\tSpannable\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4413\tI-Code_Block\tA_4413\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17882077\tO\t17882077\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17882077/\tO\thttps://stackoverflow.com/questions/17882077/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nnew\tB-Code_Block\tnew\tB-Code_Block\nSpannableString(textView.getText())\tI-Code_Block\tSpannableString(textView.getText())\tI-Code_Block\nshould\tO\tshould\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nSorry\tO\tSorry\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nremoveSpan()\tB-Library_Function\tremoveSpan()\tB-Code_Block\nand\tO\tand\tO\nsetSpan()\tB-Library_Function\tsetSpan()\tB-Code_Block\nare\tO\tare\tO\nmethods\tO\tmethods\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nSpannable\tB-Library_Class\tSpannable\tB-Code_Block\ninterface\tO\tinterface\tO\n,\tO\t,\tO\nand\tO\tand\tO\nSpannedString\tB-Library_Class\tSpannedString\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nimplement\tO\timplement\tO\nSpannable\tB-Library_Class\tSpannable\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32517975\tO\t32517975\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32517975/\tO\thttps://stackoverflow.com/questions/32517975/\tO\n\t\n\t\nIn\tO\tIn\tO\nSafari\tB-Application\tSafari\tO\non\tO\ton\tO\niOS\tB-Operating_System\tiOS\tO\nif\tO\tif\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nmy\tO\tmy\tO\nlogin\tO\tlogin\tO\npage\tB-User_Interface_Element\tpage\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\n\"\tB-Output_Block\t\"\tO\nScan\tI-Output_Block\tScan\tO\nCredit\tI-Output_Block\tCredit\tO\nCard\tI-Output_Block\tCard\tO\n\"\tI-Output_Block\t\"\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nhide\tO\thide\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrelevant\tO\trelevant\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nusername\tO\tusername\tO\nor\tO\tor\tO\npassword\tO\tpassword\tO\ntext\tB-User_Interface_Element\ttext\tO\nbox\tI-User_Interface_Element\tbox\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nanswer\tO\tanswer\tO\nhere\tO\there\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\ndisable\tO\tdisable\tO\n\"\tO\t\"\tO\nScan\tO\tScan\tO\nCredit\tO\tCredit\tO\nCard\tO\tCard\tO\n\"\tO\t\"\tO\nfeature\tO\tfeature\tO\non\tO\ton\tO\niOS\tB-Operating_System\tiOS\tO\n8\tB-Version\t8\tO\nSafari\tB-Application\tSafari\tO\n?\tO\t?\tO\n\t\nbut\tO\tbut\tO\nno\tO\tno\tO\none\tO\tone\tO\nhas\tO\thas\tO\nreplied\tO\treplied\tO\nto\tO\tto\tO\nit\tO\tit\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nImage\tB-User_Interface_Element\tImage\tO\nis\tO\tis\tO\nshown\tO\tshown\tO\nbelow\tO\tbelow\tO\nas\tO\tas\tO\nreference\tO\treference\tO\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21250532\tO\t21250532\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21250532/\tO\thttps://stackoverflow.com/questions/21250532/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\ntwo\tO\ttwo\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nemail\tO\temail\tO\nto\tO\tto\tO\ntwo\tO\ttwo\tO\nrecipients\tO\trecipients\tO\nusing\tO\tusing\tO\nphpMailer\tB-Library\tphpMailer\tO\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\none\tO\tone\tO\nversion\tO\tversion\tO\nor\tO\tor\tO\nanother\tO\tanother\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nable\tO\table\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nversion\tO\tversion\tO\nto\tO\tto\tO\nboth\tO\tboth\tO\nemail\tO\temail\tO\naddress\tO\taddress\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2277\tI-Code_Block\tQ_2277\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21250532\tO\t21250532\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21250532/\tO\thttps://stackoverflow.com/questions/21250532/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nseach\tO\tseach\tO\nthe\tO\tthe\tO\n$maileremail\tB-Variable_Name\t$maileremail\tB-Code_Block\ninside\tO\tinside\tO\n$add\tB-Variable_Name\t$add\tB-Code_Block\nand\tO\tand\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\nemail\tO\temail\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2868\tI-Code_Block\tA_2868\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDITED\tO\tEDITED\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nmisunderstood\tO\tmisunderstood\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nBrian\tB-User_Name\tBrian\tO\nis\tO\tis\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21250532\tO\t21250532\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21250532/\tO\thttps://stackoverflow.com/questions/21250532/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlooking\tO\tlooking\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nsetup\tO\tsetup\tO\nonce\tO\tonce\tO\nfor\tO\tfor\tO\nminimal\tO\tminimal\tO\nrepetition\tO\trepetition\tO\n,\tO\t,\tO\nsimply\tO\tsimply\tO\nclone\tO\tclone\tO\nyour\tO\tyour\tO\n$mail\tB-Variable_Name\t$mail\tB-Code_Block\nobject\tO\tobject\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nforeach($add)\tB-Code_Block\tforeach($add)\tB-Code_Block\nloop\tO\tloop\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2869\tI-Code_Block\tA_2869\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nclone\tO\tclone\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\n$mail\tB-Variable_Name\t$mail\tB-Code_Block\nobject\tO\tobject\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\nallowing\tO\tallowing\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ndifferent\tO\tdifferent\tO\nemail\tO\temail\tO\nbodies\tO\tbodies\tO\n,\tO\t,\tO\nsubjects\tO\tsubjects\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nwithout\tO\twithout\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nrewrite\tO\trewrite\tO\nall\tO\tall\tO\nconnection\tO\tconnection\tO\nsettings\tO\tsettings\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44358692\tO\t44358692\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44358692/\tO\thttps://stackoverflow.com/questions/44358692/\tO\n\t\n\t\nCan\tO\tCan\tO\nsomebody\tO\tsomebody\tO\nhelp\tO\thelp\tO\nplease\tO\tplease\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhav\tO\thav\tO\nn't\tO\tn't\tO\nany\tO\tany\tO\nexperience\tO\texperience\tO\nin\tO\tin\tO\nAngular\tB-Library\tAngular\tO\n1\tB-Version\t1\tO\nto\tO\tto\tO\n2\tB-Version\t2\tO\nmigration\tO\tmigration\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5755\tI-Code_Block\tQ_5755\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5756\tI-Code_Block\tQ_5756\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nafter\tO\tafter\tO\nfirst\tO\tfirst\tO\nappers\tO\tappers\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nError\tO\tError\tO\n:\tO\t:\tO\n[\tB-Error_Name\t[\tO\n$injector:nomod\tI-Error_Name\t$injector:nomod\tO\n]\tI-Error_Name\t]\tO\nModule\tO\tModule\tO\n'\tO\t'\tO\napp\tO\tapp\tO\n'\tO\t'\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\navailable\tO\tavailable\tO\n!\tO\t!\tO\n\t\nYou\tO\tYou\tO\neither\tO\teither\tO\nmisspelled\tO\tmisspelled\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nname\tO\tname\tO\nor\tO\tor\tO\nforgot\tO\tforgot\tO\nto\tO\tto\tO\nload\tO\tload\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nregistering\tO\tregistering\tO\na\tO\ta\tO\nmodule\tO\tmodule\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\ndependencies\tO\tdependencies\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nargument\tO\targument\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nafter\tO\tafter\tO\nsecond\tO\tsecond\tO\nvariany\tO\tvariany\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nError\tO\tError\tO\n:\tO\t:\tO\nTypeError\tB-Error_Name\tTypeError\tO\n:\tO\t:\tO\nangular.module\tO\tangular.module\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n\t\napp.module.ts\tB-File_Name\tapp.module.ts\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5757\tI-Code_Block\tQ_5757\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\npackage.json\tB-File_Name\tpackage.json\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5758\tI-Code_Block\tQ_5758\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12124362\tO\t12124362\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12124362/\tO\thttps://stackoverflow.com/questions/12124362/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfree\tO\tfree\tO\nopen\tO\topen\tO\nsource\tO\tsource\tO\napp\tO\tapp\tO\nthat\tO\tthat\tO\nalready\tO\talready\tO\nsupports\tO\tsupports\tO\nmultiple\tO\tmultiple\tO\nlanguages\tO\tlanguages\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ntest\tO\ttest\tO\nthe\tO\tthe\tO\nlanguages\tO\tlanguages\tO\nI\tO\tI\tO\nswitch\tO\tswitch\tO\nthe\tO\tthe\tO\nphone\tB-Device\tphone\tO\n's\tO\t's\tO\nsetting\tO\tsetting\tO\n|\tO\t|\tO\nlanguage\tO\tlanguage\tO\nand\tO\tand\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nin\tO\tin\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\nget\tO\tget\tO\nrequests\tO\trequests\tO\nfrom\tO\tfrom\tO\npeople\tO\tpeople\tO\nthat\tO\tthat\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntranslate\tO\ttranslate\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nto\tO\tto\tO\na\tO\ta\tO\nlanguage\tO\tlanguage\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nlisted\tO\tlisted\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nown\tO\town\tO\ndevice\tO\tdevice\tO\n(\tO\t(\tO\nCM\tB-Device\tCM\tO\n7.1\tB-Version\t7.1\tO\nor\tO\tor\tO\nUS\tB-Device\tUS\tO\nNexus\tI-Device\tNexus\tO\n7\tB-Version\t7\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\none\tO\tone\tO\nwas\tO\twas\tO\nfor\tO\tfor\tO\nAlbanian\tO\tAlbanian\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\npresume\tO\tpresume\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nlanguage\tO\tlanguage\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n'\tB-Value\t'\tO\nsq\tI-Value\tsq\tO\n'\tB-Value\t'\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nres/values\tB-Code_Block\tres/values\tO\n-sq\tI-Code_Block\t-sq\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntranslation\tO\ttranslation\tO\nthey\tO\tthey\tO\nprovide\tO\tprovide\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ntest\tO\ttest\tO\nit\tO\tit\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nphone\tB-Device\tphone\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nforce\tO\tforce\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nlanguage\tO\tlanguage\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n'\tB-Value\t'\tO\nsq'\tI-Value\tsq'\tO\n)\tO\t)\tO\n,\tO\t,\tO\neven\tO\teven\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nlisted\tO\tlisted\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nphone\tB-Device\tphone\tO\n's\tO\t's\tO\nsettings\tO\tsettings\tO\n?\tO\t?\tO\n\t\nTo\tO\tTo\tO\nclarify\tO\tclarify\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreinvent\tO\treinvent\tO\nlanguage\tO\tlanguage\tO\nswitching\tO\tswitching\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nto\tO\tto\tO\ninfluence\tO\tinfluence\tO\nthe\tO\tthe\tO\nresource\tO\tresource\tO\nselector\tO\tselector\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nres/values\tB-Code_Block\tres/values\tO\n-sq\tI-Code_Block\t-sq\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\nmatters\tO\tmatters\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nuses\tO\tuses\tO\nandroid:minSdkVersion\tB-Code_Block\tandroid:minSdkVersion\tO\n=\tI-Code_Block\t=\tO\n\"\tI-Code_Block\t\"\tO\n8\tI-Code_Block\t8\tO\n\"\tI-Code_Block\t\"\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12124362\tO\t12124362\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12124362/\tO\thttps://stackoverflow.com/questions/12124362/\tO\n\t\n\t\nYour\tO\tYour\tO\nphone\tB-Device\tphone\tO\nvendor\tO\tvendor\tO\nchose\tO\tchose\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nAlbanian\tO\tAlbanian\tO\nlocale\tO\tlocale\tO\n,\tO\t,\tO\nso\tO\tso\tO\nunfortunately\tO\tunfortunately\tO\nyou\tO\tyou\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nusually\tO\tusually\tO\nvendor\tO\tvendor\tO\nspecific\tO\tspecific\tO\nand\tO\tand\tO\ndepends\tO\tdepends\tO\ngreatly\tO\tgreatly\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nSamsung\tB-Organization\tSamsung\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nAlbanian\tO\tAlbanian\tO\nlocale\tO\tlocale\tO\nin\tO\tin\tO\nan\tO\tan\tO\nAndroid\tB-Operating_System\tAndroid\tO\nbuild\tO\tbuild\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nphones\tB-Device\tphones\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndistributed\tO\tdistributed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUS\tO\tUS\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nforcing\tO\tforcing\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\none\tO\tone\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nlocale\tO\tlocale\tO\n's\tO\t's\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndoable\tO\tdoable\tO\nafaik\tO\tafaik\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\n(\tO\t(\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nyour\tO\tyour\tO\nresources\tO\tresources\tO\n)\tO\t)\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nrecreate\tO\trecreate\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nremove\tO\tremove\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nresources\tO\tresources\tO\nand\tO\tand\tO\nleave\tO\tleave\tO\nthe\tO\tthe\tO\nAlbanian-specific\tO\tAlbanian-specific\tO\nones\tO\tones\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsystem\tO\tsystem\tO\nwill\tO\twill\tO\n\"\tO\t\"\tO\nbe\tO\tbe\tO\nforced\tO\tforced\tO\n\"\tO\t\"\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43218651\tO\t43218651\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43218651/\tO\thttps://stackoverflow.com/questions/43218651/\tO\n\t\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\nusing\tO\tusing\tO\nbootstrap\tB-Library\tbootstrap\tO\n,\tO\t,\tO\ncss\tB-Language\tcss\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhtml\tB-Language\thtml\tO\n.\tO\t.\tO\n\t\nwe\tO\twe\tO\nhave\tO\thave\tO\na\tO\ta\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ntext\tB-User_Interface_Element\ttext\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndisappear\tO\tdisappear\tO\nwhen\tO\twhen\tO\non\tO\ton\tO\nmobile\tB-Device\tmobile\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43218651\tO\t43218651\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43218651/\tO\thttps://stackoverflow.com/questions/43218651/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nslightly\tO\tslightly\tO\ndifferent\tO\tdifferent\tO\nclasses\tO\tclasses\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nBootstrap\tB-Library\tBootstrap\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nhidden-sm-down\tB-Library_Class\thidden-sm-down\tB-Code_Block\nfor\tO\tfor\tO\nv4-alpha\tB-Version\tv4-alpha\tO\n(\tO\t(\tO\nhttps://v4-alpha.getbootstrap.com/layout/responsive-utilities/\tO\thttps://v4-alpha.getbootstrap.com/layout/responsive-utilities/\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36498179\tO\t36498179\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36498179/\tO\thttps://stackoverflow.com/questions/36498179/\tO\n\t\n\t\n(\tO\t(\tO\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\nim\tO\tim\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nnative\tO\tnative\tO\nenglish\tO\tenglish\tO\nspeaker\tO\tspeaker\tO\nso\tO\tso\tO\nmy\tO\tmy\tO\nenglish\tO\tenglish\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nbad\tO\tbad\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nandroid\tB-Operating_System\tandroid\tO\nAPP\tO\tAPP\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\na\tO\ta\tO\nSQL\tB-Application\tSQL\tO\nServer\tI-Application\tServer\tO\n2012\tB-Version\t2012\tO\nexpress\tO\texpress\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nAPI\tB-Library\tAPI\tO\nof\tO\tof\tO\n23\tB-Version\t23\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\non\tO\ton\tO\nother\tO\tother\tO\ntopics\tO\ttopics\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nanswer\tO\tanswer\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4492\tI-Code_Block\tQ_4492\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ndoing\tO\tdoing\tO\nsome\tO\tsome\tO\nresearch\tO\tresearch\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nlog\tO\tlog\tO\nand\tO\tand\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nconnection\tO\tconnection\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nreally\tO\treally\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nAPP\tO\tAPP\tO\nworks\tO\tworks\tO\ntotally\tO\ttotally\tO\nfine\tO\tfine\tO\non\tO\ton\tO\nAPI\tB-Library\tAPI\tO\n23\tB-Version\t23\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nAPI\tB-Library\tAPI\tO\n17\tB-Version\t17\tO\nemulator\tB-Application\temulator\tO\ndevice\tO\tdevice\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\njust\tO\tjust\tO\nappears\tO\tappears\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nstarted\tO\tstarted\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\non\tO\ton\tO\nAPI\tB-Library\tAPI\tO\n17\tB-Version\t17\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nAPI\tB-Library\tAPI\tO\n10\tB-Version\t10\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nlayout\tO\tlayout\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4493\tI-Code_Block\tQ_4493\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndatabase\tB-Class_Name\tdatabase\tO\nconnection\tI-Class_Name\tconnection\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4494\tI-Code_Block\tQ_4494\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4495\tI-Code_Block\tQ_4495\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIm\tO\tIm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\njtds.jdbe\tB-Application\tjtds.jdbe\tB-Code_Block\ndriver\tO\tdriver\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15171734\tO\t15171734\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15171734/\tO\thttps://stackoverflow.com/questions/15171734/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\narrange\tO\tarrange\tO\na\tO\ta\tO\ngrid\tB-User_Interface_Element\tgrid\tO\nlayout\tO\tlayout\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlast\tO\tlast\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nmoves\tO\tmoves\tO\nwhen\tO\twhen\tO\nzooming\tO\tzooming\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\na\tO\ta\tO\nwhite\tB-User_Interface_Element\twhite\tO\nline\tI-User_Interface_Element\tline\tO\nappear\tO\tappear\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nside\tO\tside\tO\npanel\tB-User_Interface_Element\tpanel\tO\nand\tO\tand\tO\nlast\tO\tlast\tO\ncontent\tO\tcontent\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nzoom\tO\tzoom\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\ncrucially\tO\tcrucially\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nCSS\tB-Language\tCSS\tO\nand\tO\tand\tO\nlayout\tO\tlayout\tO\n?\tO\t?\tO\n\t\nCheers\tO\tCheers\tO\n,\tO\t,\tO\n\t\nOwain\tB-User_Name\tOwain\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1470\tI-Code_Block\tQ_1470\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1471\tI-Code_Block\tQ_1471\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15171734\tO\t15171734\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15171734/\tO\thttps://stackoverflow.com/questions/15171734/\tO\n\t\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nunderstood\tO\tunderstood\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\ncorrectly\tO\tcorrectly\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyour\tO\tyour\tO\noutput\tO\toutput\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nCSS\tB-Language\tCSS\tO\nshall\tO\tshall\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1930\tI-Code_Block\tA_1930\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nalso\tO\talso\tO\n,\tO\t,\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nwidth\tB-Variable_Name\twidth\tB-Code_Block\nattribute/property\tO\tattribute/property\tO\nfrom\tO\tfrom\tO\n.item1\tB-Variable_Name\t.item1\tB-Code_Block\nand\tO\tand\tO\n.item2\tB-Variable_Name\t.item2\tB-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15171734\tO\t15171734\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15171734/\tO\thttps://stackoverflow.com/questions/15171734/\tO\n\t\n\t\nAdding\tO\tAdding\tO\nwidth\tB-Variable_Name\twidth\tO\nto\tO\tto\tO\ntwo-item-column\tB-Variable_Name\ttwo-item-column\tB-Code_Block\nwould\tO\twould\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nits\tO\tits\tO\nposition\tO\tposition\tO\nrelative\tO\trelative\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nfor\tO\tfor\tO\nother\tO\tother\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nlayout\tO\tlayout\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1929\tI-Code_Block\tA_1929\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23594242\tO\t23594242\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23594242/\tO\thttps://stackoverflow.com/questions/23594242/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nput\tO\tput\tO\nsome\tO\tsome\tO\nWaypoints\tB-Library_Variable\tWaypoints\tO\nin\tO\tin\tO\na\tO\ta\tO\nMap\tB-Library_Class\tMap\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nspecifying\tO\tspecifying\tO\nthe\tO\tthe\tO\ntravelMode\tB-Library_Variable\ttravelMode\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nWaypoints\tB-Library_Variable\tWaypoints\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\nmy\tO\tmy\tO\ntravel\tB-Library_Variable\ttravel\tO\nmode\tI-Library_Variable\tmode\tO\n,\tO\t,\tO\napparently\tO\tapparently\tO\nwaypoints\tB-Library_Variable\twaypoints\tO\nused\tO\tused\tO\n\"\tB-Value\t\"\tO\ndriving\tI-Value\tdriving\tO\n\"\tI-Value\t\"\tO\ntravel\tB-Library_Variable\ttravel\tO\nmode\tI-Library_Variable\tmode\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\"\tB-Value\t\"\tO\nwalking\tI-Value\twalking\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nroute\tO\troute\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nroute\tO\troute\tO\nto\tO\tto\tO\nwalk\tO\twalk\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2602\tI-Code_Block\tQ_2602\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\nevery\tO\tevery\tO\nwaypoint\tB-Library_Variable\twaypoint\tO\nhave\tO\thave\tO\n:\tO\t:\tO\nstopover\tB-Code_Block\tstopover\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ntrue\tI-Code_Block\ttrue\tI-Code_Block\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nidea\tO\tidea\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23594242\tO\t23594242\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23594242/\tO\thttps://stackoverflow.com/questions/23594242/\tO\n\t\n\t\nIn\tO\tIn\tO\ngmaps\tB-Library\tgmaps\tO\n,\tO\t,\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ntravelMode\tB-Library_Variable\ttravelMode\tO\nis\tO\tis\tO\nwalking\tB-Value\twalking\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\neach\tO\teach\tO\nwaypoint\tB-Library_Variable\twaypoint\tO\nmust\tO\tmust\tO\nhave\tO\thave\tO\nits\tO\tits\tO\nlocation\tB-Library_Variable\tlocation\tB-Code_Block\nas\tO\tas\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\ngoogle.maps.LatLng\tB-Library_Class\tgoogle.maps.LatLng\tB-Code_Block\n,\tO\t,\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nwith\tO\twith\tO\nlatitude\tO\tlatitude\tO\nand\tO\tand\tO\nlongitude\tO\tlongitude\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\norigin\tB-Library_Variable\torigin\tB-Code_Block\nor\tO\tor\tO\ndestination\tB-Library_Variable\tdestination\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\naccording\tO\taccording\tO\nthe\tO\tthe\tO\nGoogle\tB-Library\tGoogle\tO\nMaps\tI-Library\tMaps\tO\nAPI\tI-Library\tAPI\tO\nreference\tO\treference\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23594242\tO\t23594242\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23594242/\tO\thttps://stackoverflow.com/questions/23594242/\tO\n\t\n\t\nThe\tO\tThe\tO\nstring\tB-Data_Type\tstring\tO\n'\tB-Value\t'\tO\nwalking\tI-Value\twalking\tO\n'\tB-Value\t'\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nTravelMode\tB-Library_Variable\tTravelMode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3223\tI-Code_Block\tA_3223\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26846971\tO\t26846971\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26846971/\tO\thttps://stackoverflow.com/questions/26846971/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3071\tI-Code_Block\tQ_3071\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ninput\tB-User_Interface_Element\tinput\tO\nboxes\tI-User_Interface_Element\tboxes\tO\nspan\tO\tspan\tO\n2\tB-Value\t2\tO\n,\tO\t,\tO\n3\tB-Value\t3\tO\n,\tO\t,\tO\nand\tO\tand\tO\n4\tB-Value\t4\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nIf\tO\tIf\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nwidths\tO\twidths\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3072\tI-Code_Block\tQ_3072\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nwidths\tO\twidths\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nbehaving\tO\tbehaving\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncol-lg-6\tB-HTML_XML_Tag\tcol-lg-6\tO\ninput\tB-User_Interface_Element\tinput\tO\nbox\tI-User_Interface_Element\tbox\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexpanding\tO\texpanding\tO\n6\tB-Value\t6\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\nand\tO\tand\tO\nnothing\tO\tnothing\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nexpanding\tO\texpanding\tO\npast\tO\tpast\tO\n4\tB-Value\t4\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nsomething\tO\tsomething\tO\nprohibiting\tO\tprohibiting\tO\nthe\tO\tthe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nfrom\tO\tfrom\tO\nbeing\tO\tbeing\tO\nexpanded\tO\texpanded\tO\npast\tO\tpast\tO\na\tO\ta\tO\nwidth\tO\twidth\tO\nof\tO\tof\tO\n4\tB-Value\t4\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n?\tO\t?\tO\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26846971\tO\t26846971\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26846971/\tO\thttps://stackoverflow.com/questions/26846971/\tO\n\t\n\t\nJust\tO\tJust\tO\nfigured\tO\tfigured\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\nMVC\tB-Algorithm\tMVC\tO\nproject\tO\tproject\tO\ntemplate\tO\ttemplate\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\n_ViewStart.cshtml\tB-File_Name\t_ViewStart.cshtml\tO\nthat\tO\tthat\tO\nreferences\tO\treferences\tO\na\tO\ta\tO\n_Layout.cshtml\tB-File_Name\t_Layout.cshtml\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nlayout\tO\tlayout\tO\ncreated\tO\tcreated\tO\nfrom\tO\tfrom\tO\nViewStart\tB-File_Name\tViewStart\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3704\tI-Code_Block\tA_3704\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tB-Code_Block\t}\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41036030\tO\t41036030\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41036030/\tO\thttps://stackoverflow.com/questions/41036030/\tO\n\t\n\t\n\t\nRecently\tO\tRecently\tO\n,\tO\t,\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nmission\tO\tmission\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nan\tO\tan\tO\nhttps\tO\thttps\tO\nserver\tB-Application\tserver\tO\nwith\tO\twith\tO\ntomcat\tB-Application\ttomcat\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nbidirectional\tO\tbidirectional\tO\nauthentication\tO\tauthentication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\ncert\tO\tcert\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ntrustKeyStoreFile\tB-Variable_Name\ttrustKeyStoreFile\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nstill\tO\tstill\tO\ncannot\tO\tcannot\tO\nvisit\tO\tvisit\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\nwithout\tO\twithout\tO\nrestarting\tO\trestarting\tO\ntomcat\tB-Application\ttomcat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\ntomcat\tB-Application\ttomcat\tO\nreads\tO\treads\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\neven\tO\teven\tO\nif\tO\tif\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\ncert\tO\tcert\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ntrustKeyStoreFile\tB-Variable_Name\ttrustKeyStoreFile\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncert\tO\tcert\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nnot\tO\tnot\tO\ntrusted\tO\ttrusted\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nrestart\tO\trestart\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nuser\tO\tuser\tO\n,\tO\t,\tO\nso\tO\tso\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nreread\tO\treread\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nchanged\tO\tchanged\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41522605\tO\t41522605\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41522605/\tO\thttps://stackoverflow.com/questions/41522605/\tO\n\t\n\t\nAs\tO\tAs\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nclosed\tO\tclosed\tO\n(\tO\t(\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nintended\tO\tintended\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\nfirst\tO\tfirst\tO\n)\tO\t)\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nopening\tO\topening\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nsome\tO\tsome\tO\nmachines\tO\tmachines\tO\nit\tO\tit\tO\nis\tO\tis\tO\nforbidden\tO\tforbidden\tO\nto\tO\tto\tO\ninstall/download\tO\tinstall/download\tO\nbinaries\tB-File_Type\tbinaries\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\na\tO\ta\tO\nport\tB-Device\tport\tO\non\tO\ton\tO\na\tO\ta\tO\nremote\tO\tremote\tO\nmachine\tO\tmachine\tO\nis\tO\tis\tO\nopen\tO\topen\tO\nusing\tO\tusing\tO\nonly\tO\tonly\tO\nnative\tO\tnative\tO\nwindows\tB-Operating_System\twindows\tO\nscript\tO\tscript\tO\ncapabilities\tO\tcapabilities\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41522605\tO\t41522605\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41522605/\tO\thttps://stackoverflow.com/questions/41522605/\tO\n\t\n\t\nUpsettingly\tO\tUpsettingly\tO\n,\tO\t,\tO\nWindows\tB-Operating_System\tWindows\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\noffer\tO\toffer\tO\nsimple\tO\tsimple\tO\ntools\tO\ttools\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nwhether\tO\twhether\tO\nport\tB-Device\tport\tO\nis\tO\tis\tO\nopen\tO\topen\tO\non\tO\ton\tO\na\tO\ta\tO\nremote\tO\tremote\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\noption\tO\toption\tO\nis\tO\tis\tO\ntelnet\tB-Application\ttelnet\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nscripted\tO\tscripted\tO\nas\tO\tas\tO\nit\tO\tit\tO\ncloses\tO\tcloses\tO\nwhen\tO\twhen\tO\nits\tO\tits\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\nredirected\tO\tredirected\tO\nor\tO\tor\tO\ncaptured\tO\tcaptured\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nupon\tO\tupon\tO\na\tO\ta\tO\ntime\tO\ttime\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\na\tO\ta\tO\nMSWinsock.Winsock.1\tB-Library_Class\tMSWinsock.Winsock.1\tO\nCOM\tO\tCOM\tO\nobject\tO\tobject\tO\ninstalled\tO\tinstalled\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\nmachines\tO\tmachines\tO\nthat\tO\tthat\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\na\tO\ta\tO\nscript\tO\tscript\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nPortQry\tB-Application\tPortQry\tO\nand\tO\tand\tO\nPsPing\tB-Application\tPsPing\tO\nare\tO\tare\tO\na\tO\ta\tO\nwonderful\tO\twonderful\tO\ntools\tO\ttools\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nthem\tO\tthem\tO\n(\tO\t(\tO\ndespite\tO\tdespite\tO\nit\tO\tit\tO\nbeing\tO\tbeing\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nMicrosoft\tB-Organization\tMicrosoft\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nrely\tO\trely\tO\non\tO\ton\tO\nPowerShell\tB-Application\tPowerShell\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\n.bat\tB-File_Type\t.bat\tO\nscript\tO\tscript\tO\n,\tO\t,\tO\ninternally\tO\tinternally\tO\nusing\tO\tusing\tO\nPowershell\tB-Application\tPowershell\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\ndone\tO\tdone\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5951\tI-Code_Block\tA_5951\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSome\tO\tSome\tO\nmachines\tO\tmachines\tO\nhave\tO\thave\tO\n.NET\tB-Library\t.NET\tO\nframework\tO\tframework\tO\nwithout\tO\twithout\tO\nPowerShell\tB-Application\tPowerShell\tO\ninstalled\tO\tinstalled\tO\nso\tO\tso\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nC#\tB-Language\tC#\tO\ncode\tO\tcode\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nembedded\tO\tembedded\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nbatch\tB-Language\tbatch\tO\nscript\tI-Language\tscript\tO\nusing\tO\tusing\tO\nmsbuild\tB-Application\tmsbuild\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5952\tI-Code_Block\tA_5952\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nmachines\tO\tmachines\tO\nwithout\tO\twithout\tO\n.NET\tB-Library\t.NET\tO\nframework\tO\tframework\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nany\tO\tany\tO\nnative\tO\tnative\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nremote\tO\tremote\tO\nports\tB-Device\tports\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41522605\tO\t41522605\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41522605/\tO\thttps://stackoverflow.com/questions/41522605/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nTCP\tO\tTCP\tO\nports\tB-Device\tports\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nTest-NetConnection\tB-Code_Block\tTest-NetConnection\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\noffers\tO\toffers\tO\na\tO\ta\tO\n-Port\tB-Code_Block\t-Port\tB-Code_Block\nparameter\tO\tparameter\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nthe\tO\tthe\tO\nTCP\tO\tTCP\tO\nport\tB-Device\tport\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7692847\tO\t7692847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7692847/\tO\thttps://stackoverflow.com/questions/7692847/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nPHP\tB-Language\tPHP\tO\nand\tO\tand\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nmysql_real_escape_string\tB-Library_Function\tmysql_real_escape_string\tO\nfor\tO\tfor\tO\nuser\tO\tuser\tO\ngenerated\tO\tgenerated\tO\ninput\tO\tinput\tO\n(\tO\t(\tO\nvariables\tO\tvariables\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nhacked\tO\thacked\tO\n?\tO\t?\tO\n\t\nSample\tO\tSample\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_609\tI-Code_Block\tQ_609\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7692847\tO\t7692847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7692847/\tO\thttps://stackoverflow.com/questions/7692847/\tO\n\t\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nstraight\tO\tstraight\tO\nmysql\tB-Application\tmysql\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nthe\tO\tthe\tO\nmysqli\tB-Application\tmysqli\tB-Code_Block\n(\tO\t(\tO\nnotice\tO\tnotice\tO\nthe\tO\tthe\tO\ni)\tO\ti)\tO\nor\tO\tor\tO\nPDO\tB-Library\tPDO\tO\nlibrary\tO\tlibrary\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nprepared\tO\tprepared\tO\nstatements\tO\tstatements\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nprepared\tO\tprepared\tO\nstatements\tO\tstatements\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nsecure\tO\tsecure\tO\nthan\tO\tthan\tO\nusing\tO\tusing\tO\nstraight\tO\tstraight\tO\nqueries\tO\tqueries\tO\nand\tO\tand\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nPHP\tB-Language\tPHP\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nmysql\tB-Application\tmysql\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ndeprecated\tO\tdeprecated\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nunderdevelopment\tO\tunderdevelopment\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmysqli\tB-Application\tmysqli\tB-Code_Block\nand\tO\tand\tO\nPDO\tB-Library\tPDO\tB-Code_Block\nextensions\tO\textensions\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7692847\tO\t7692847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7692847/\tO\thttps://stackoverflow.com/questions/7692847/\tO\n\t\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\npretty\tO\tpretty\tO\nsafe\tO\tsafe\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nusing\tO\tusing\tO\nboth\tO\tboth\tO\nquotes\tO\tquotes\tO\nand\tO\tand\tO\nmysql_real_escape_string\tB-Library_Function\tmysql_real_escape_string\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nPDO\tB-Library\tPDO\tO\nor\tO\tor\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nmysqli\tB-Application\tmysqli\tO\nfor\tO\tfor\tO\nother\tO\tother\tO\nreasons\tO\treasons\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44835459\tO\t44835459\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44835459/\tO\thttps://stackoverflow.com/questions/44835459/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nclass\tO\tclass\tO\nthat\tO\tthat\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\nadding\tO\tadding\tO\na\tO\ta\tO\ntarget\tO\ttarget\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nbutton\tB-User_Interface_Element\tbutton\tO\ninside\tO\tinside\tO\nit\tO\tit\tO\n's\tO\t's\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5833\tI-Code_Block\tQ_5833\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nconnect\tO\tconnect\tO\nan\tO\tan\tO\naction\tO\taction\tO\non\tO\ton\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nclick\tO\tclick\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nused\tO\tused\tO\noutside\tO\toutside\tO\nmy\tO\tmy\tO\nclass\tO\tclass\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\ninside\tO\tinside\tO\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5834\tI-Code_Block\tQ_5834\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44835459\tO\t44835459\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44835459/\tO\thttps://stackoverflow.com/questions/44835459/\tO\n\t\n\t\nNothing\tO\tNothing\tO\nis\tO\tis\tO\nholding\tO\tholding\tO\na\tO\ta\tO\nstrong\tO\tstrong\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nSelectButton\tB-Class_Name\tSelectButton\tB-Code_Block\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nso\tO\tso\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\ncreates\tO\tcreates\tO\ntest\tB-Variable_Name\ttest\tB-Code_Block\nexits\tO\texits\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\ninstance\tO\tinstance\tO\nis\tO\tis\tO\nreleased\tO\treleased\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nitself\tO\titself\tO\nis\tO\tis\tO\nretained\tO\tretained\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nsubview\tB-Library_Variable\tsubview\tO\n.\tO\t.\tO\n\t\nTherefore\tO\tTherefore\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nvisible\tO\tvisible\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\nrespond\tO\trespond\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\neither\tO\teither\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nproperty\tO\tproperty\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nvariable\tO\tvariable\tO\nfor\tO\tfor\tO\ntest\tB-Variable_Name\ttest\tB-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\n,\tO\t,\tO\npreferably\tO\tpreferably\tO\nhave\tO\thave\tO\nSelectButton\tB-Class_Name\tSelectButton\tB-Code_Block\ninherit\tO\tinherit\tO\ndirectly\tO\tdirectly\tO\nfrom\tO\tfrom\tO\nUIButton\tB-Library_Class\tUIButton\tB-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44835459\tO\t44835459\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44835459/\tO\thttps://stackoverflow.com/questions/44835459/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nsomeone\tO\tsomeone\tO\ntaps\tO\ttaps\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nusually\tO\tusually\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\nhappen\tO\thappen\tO\nsomewhere\tO\tsomewhere\tO\nelse\tO\telse\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nin\tO\tin\tO\none\tO\tone\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nview\tO\tview\tO\ncontrollers\tO\tcontrollers\tO\nor\tO\tor\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nUI\tO\tUI\tO\nelement\tO\telement\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nthe\tO\tthe\tO\nIBAction\tB-Library_Class\tIBAction\tO\nis\tO\tis\tO\nset\tO\tset\tO\nup\tO\tup\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nsomething\tO\tsomething\tO\nwill\tO\twill\tO\ntrigger\tO\ttrigger\tO\nor\tO\tor\tO\nhappen\tO\thappen\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nitself\tO\titself\tO\nwhen\tO\twhen\tO\nsomeone\tO\tsomeone\tO\ntaps\tO\ttaps\tO\non\tO\ton\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\ntap\tO\ttap\tO\nprogrammatically\tO\tprogrammatically\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nctrl\tB-Keyboard_IP\tctrl\tO\ndragging\tO\tdragging\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\ncontroller\tO\tcontroller\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nprefer\tO\tprefer\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\ncontroller\tO\tcontroller\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6485\tI-Code_Block\tA_6485\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\neither\tO\teither\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nselector\tO\tselector\tO\nprogrammatically\tO\tprogrammatically\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nview\tO\tview\tO\ncontroller\tO\tcontroller\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6486\tI-Code_Block\tA_6486\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\nby\tO\tby\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconnections\tO\tconnections\tO\ninspector\tO\tinspector\tO\nand\tO\tand\tO\ndragging\tO\tdragging\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ntouch\tO\ttouch\tO\nup\tO\tup\tO\ninside\tO\tinside\tO\nover\tO\tover\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nIBAction\tB-Library_Class\tIBAction\tO\ndot\tO\tdot\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nview\tO\tview\tO\ncontroller\tO\tcontroller\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nas\tO\tas\tO\nsomeone\tO\tsomeone\tO\nelse\tO\telse\tO\npointed\tO\tpointed\tO\nout\tO\tout\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\nbutton\tB-User_Interface_Element\tbutton\tO\ninherit\tO\tinherit\tO\nfrom\tO\tfrom\tO\nUIButton\tB-Variable_Name\tUIButton\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nclass\tO\tclass\tO\ndeclaration\tO\tdeclaration\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6487\tI-Code_Block\tA_6487\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8467440\tO\t8467440\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8467440/\tO\thttps://stackoverflow.com/questions/8467440/\tO\n\t\n\t\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ncapture\tO\tcapture\tO\nall\tO\tall\tO\nlines\tO\tlines\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\nthat\tO\tthat\tO\nbegin\tO\tbegin\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncharacter\tO\tcharacter\tO\n\"\tB-Value\t\"\tO\nX\tI-Value\tX\tO\n\"\tI-Value\t\"\tO\nor\tO\tor\tO\ncontain\tO\tcontain\tO\nthe\tO\tthe\tO\nword\tO\tword\tO\n\"\tB-Value\t\"\tO\nfoo\tI-Value\tfoo\tO\n\"\tI-Value\t\"\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_720\tI-Code_Block\tQ_720\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_721\tI-Code_Block\tQ_721\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nvariations\tO\tvariations\tO\nbut\tO\tbut\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nsyntax\tO\tsyntax\tO\nanywhere\tO\tanywhere\tO\n.\tO\t.\tO\n\t\nhow\tO\thow\tO\ncan\tO\tcan\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\n?\tO\t?\tO\n\t\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8467440\tO\t8467440\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8467440/\tO\thttps://stackoverflow.com/questions/8467440/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\ngrep\tB-Code_Block\tgrep\tO\nimplementation\tO\timplementation\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nPOSIX\tB-Operating_System\tPOSIX\tO\ncompliant\tO\tcompliant\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\negrep\tB-Code_Block\tegrep\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ngrep\tB-Code_Block\tgrep\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1025\tI-Code_Block\tA_1025\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8467440\tO\t8467440\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8467440/\tO\thttps://stackoverflow.com/questions/8467440/\tO\n\t\n\t\ncontains\tO\tcontains\tB-Code_Block\nthe\tO\tthe\tI-Code_Block\nword\tO\tword\tI-Code_Block\n\"\tB-Value\t\"\tI-Code_Block\nfoo\tI-Value\tfoo\tI-Code_Block\n\"\tI-Value\t\"\tI-Code_Block\nis\tO\tis\tO\n:\tO\t:\tO\n(.*\tB-Code_Block\t(.*\tB-Code_Block\nfoo.*\tI-Code_Block\tfoo.*\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nso\tO\tso\tO\nyour\tO\tyour\tO\nregex\tO\tregex\tO\nwould\tO\twould\tO\nbecome\tO\tbecome\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1026\tI-Code_Block\tA_1026\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4283227\tO\t4283227\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4283227/\tO\thttps://stackoverflow.com/questions/4283227/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nIDE\tB-Application\tIDE\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nkeeps\tO\tkeeps\tO\nopening\tO\topening\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nclosed\tO\tclosed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\nand\tO\tand\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nEdit\tO\tEdit\tO\n\t\nI\tO\tI\tO\nrecently\tO\trecently\tO\ninstall\tO\tinstall\tO\nhotfixes\tB-Application\thotfixes\tO\n:\tO\t:\tO\n\t\n[\tO\t[\tO\ncrashes\tB-Error_Name\tcrashes\tO\non\tI-Error_Name\ton\tO\nshutdown\tI-Error_Name\tshutdown\tO\n]\tO\t]\tO\nVS10-KB2275326-x86\tB-Version\tVS10-KB2275326-x86\tO\n\t\n[\tO\t[\tO\ninsufficient\tB-Error_Name\tinsufficient\tO\nmemory\tI-Error_Name\tmemory\tO\nbug\tI-Error_Name\tbug\tO\nwhen\tI-Error_Name\twhen\tO\ncopy-paste\tI-Error_Name\tcopy-paste\tO\n]\tO\t]\tO\nVS10-KB2251084-x86\tB-Version\tVS10-KB2251084-x86\tO\n\t\n[\tO\t[\tO\nsearch\tB-Error_Name\tsearch\tO\nbox\tI-Error_Name\tbox\tO\nincreased\tI-Error_Name\tincreased\tO\nsize\tI-Error_Name\tsize\tO\nbug\tI-Error_Name\tbug\tO\n]\tO\t]\tO\nVS10-KB2268081-x86\tB-Version\tVS10-KB2268081-x86\tO\n\t\n[\tO\t[\tO\nunnescessarily\tB-Error_Name\tunnescessarily\tO\nscrolling\tI-Error_Name\tscrolling\tO\nin\tI-Error_Name\tin\tO\ncontext\tI-Error_Name\tcontext\tO\nmenus\tI-Error_Name\tmenus\tO\n]\tO\t]\tO\nVS10-KB2345133-x86\tB-Version\tVS10-KB2345133-x86\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4283227\tO\t4283227\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4283227/\tO\thttps://stackoverflow.com/questions/4283227/\tO\n\t\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nhotfix\tB-Application\thotfix\tO\nKB2275326\tB-Value\tKB2275326\tO\nâ€\tI-Value\tâ€\tO\n\"\tI-Value\t\"\tO\nThe\tO\tThe\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2010\tB-Version\t2010\tO\ndevelopment\tO\tdevelopment\tO\nenvironment\tO\tenvironment\tO\ncrashes\tO\tcrashes\tO\non\tO\ton\tO\nshutdown\tO\tshutdown\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4283227\tO\t4283227\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4283227/\tO\thttps://stackoverflow.com/questions/4283227/\tO\n\t\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\na\tO\ta\tO\ncheckbox\tB-User_Interface_Element\tcheckbox\tO\nin\tO\tin\tO\nvisual\tB-Application\tvisual\tO\nstudio\tI-Application\tstudio\tO\n2010\tB-Version\t2010\tO\nthat\tO\tthat\tO\nasks\tO\tasks\tO\nif\tO\tif\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nrestart\tO\trestart\tO\nautomatically\tO\tautomatically\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncrashes\tO\tcrashes\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nits\tO\tits\tO\ncrashing\tO\tcrashing\tO\nthen\tO\tthen\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nexpected\tO\texpected\tO\nbehavior\tO\tbehavior\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nits\tO\tits\tO\nopening\tO\topening\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nexit\tO\texit\tO\nbutton\tB-User_Interface_Element\tbutton\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nabout\tO\tabout\tO\nits\tO\tits\tO\ncause\tO\tcause\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39685910\tO\t39685910\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39685910/\tO\thttps://stackoverflow.com/questions/39685910/\tO\n\t\n\t\nI\tO\tI\tO\nrecently\tO\trecently\tO\ninstall\tO\tinstall\tO\nLinux\tB-Operating_System\tLinux\tO\nMint\tB-Version\tMint\tO\n(\tO\t(\tO\nKDE\tB-Version\tKDE\tO\nPlasma\tI-Version\tPlasma\tO\n)\tO\t)\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nSSD\tB-Device\tSSD\tO\n(\tO\t(\tO\n30GB\tO\t30GB\tO\nPartition\tO\tPartition\tO\n)\tO\t)\tO\nafter\tO\tafter\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ninstall\tO\tinstall\tO\nWindows\tB-Operating_System\tWindows\tO\n10\tB-Version\t10\tO\non\tO\ton\tO\nremaining\tO\tremaining\tO\nstorage\tO\tstorage\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nboot\tO\tboot\tO\nin\tO\tin\tO\nLinux\tB-Operating_System\tLinux\tO\nMint\tB-Version\tMint\tO\nmy\tO\tmy\tO\nComputer\tB-Device\tComputer\tO\nautomatically\tO\tautomatically\tO\nboot\tO\tboot\tO\nWindows\tB-Operating_System\tWindows\tO\n10\tB-Version\t10\tO\nwithout\tO\twithout\tO\nshowing\tO\tshowing\tO\nBoot\tO\tBoot\tO\noptions\tO\toptions\tO\nfor\tO\tfor\tO\nselecting\tO\tselecting\tO\nOS\tO\tOS\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nGRUB\tB-Application\tGRUB\tO\non\tO\ton\tO\nMaster\tB-Device\tMaster\tO\nBoot\tI-Device\tBoot\tO\nRecord\tI-Device\tRecord\tO\n(\tO\t(\tO\nMBR\tO\tMBR\tO\n)\tO\t)\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nSSD\tB-Device\tSSD\tO\nto\tO\tto\tO\nboot\tO\tboot\tO\nboth\tO\tboth\tO\nOS\tO\tOS\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39685910\tO\t39685910\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39685910/\tO\thttps://stackoverflow.com/questions/39685910/\tO\n\t\n\t\nFirst\tO\tFirst\tO\nlive\tO\tlive\tO\nboot\tO\tboot\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nLinux\tB-Operating_System\tLinux\tO\nMint\tB-Version\tMint\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nexternal\tO\texternal\tO\nLive\tO\tLive\tO\nCD/USB\tB-Device\tCD/USB\tO\nDrive\tI-Device\tDrive\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nfollow\tO\tfollow\tO\nthese\tO\tthese\tO\ncommands\tO\tcommands\tO\nto\tO\tto\tO\nre-install\tO\tre-install\tO\nGRUB\tB-Application\tGRUB\tO\non\tO\ton\tO\nMBR\tB-Device\tMBR\tO\n.\tO\t.\tO\n\t\nmount\tO\tmount\tO\nyour\tO\tyour\tO\nLinux\tB-Operating_System\tLinux\tO\ninstalled\tO\tinstalled\tO\npartition\tO\tpartition\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nmount\tO\tmount\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nhere\tO\there\tO\nXY\tO\tXY\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nLinux\tB-Operating_System\tLinux\tO\ndistro\tO\tdistro\tO\npartition\tO\tpartition\tO\n.\tO\t.\tO\n\t\nsudo\tB-Code_Block\tsudo\tB-Code_Block\nmount\tI-Code_Block\tmount\tI-Code_Block\n<root-partition[e.g.\tI-Code_Block\t<root-partition[e.g.\tI-Code_Block\n/dev/sdaXY]>\tI-Code_Block\t/dev/sdaXY]>\tI-Code_Block\n<mount-point[e.g.\tI-Code_Block\t<mount-point[e.g.\tI-Code_Block\n/mnt/]>\tI-Code_Block\t/mnt/]>\tI-Code_Block\n\t\nNow\tO\tNow\tO\nbind\tO\tbind\tO\nsome\tO\tsome\tO\nessential\tO\tessential\tO\nlive\tO\tlive\tO\nroot\tO\troot\tO\npartition\tO\tpartition\tO\ndirectories\tO\tdirectories\tO\nto\tO\tto\tO\nmounted\tO\tmounted\tO\nroot\tO\troot\tO\npartition\tO\tpartition\tO\nat\tO\tat\tO\n/mnt\tB-File_Name\t/mnt\tO\n.\tO\t.\tO\n\t\nsudo\tB-Code_Block\tsudo\tB-Code_Block\nmount\tI-Code_Block\tmount\tI-Code_Block\n--bind\tI-Code_Block\t--bind\tI-Code_Block\n/dev\tI-Code_Block\t/dev\tI-Code_Block\n/mnt/dev\tI-Code_Block\t/mnt/dev\tI-Code_Block\n&&\tI-Code_Block\t&&\tI-Code_Block\nsudo\tI-Code_Block\tsudo\tI-Code_Block\nmount\tI-Code_Block\tmount\tI-Code_Block\n--bind\tI-Code_Block\t--bind\tI-Code_Block\n/dev/pts\tI-Code_Block\t/dev/pts\tI-Code_Block\n/mnt/dev/pts\tI-Code_Block\t/mnt/dev/pts\tI-Code_Block\n&&\tI-Code_Block\t&&\tI-Code_Block\nsudo\tI-Code_Block\tsudo\tI-Code_Block\nmount\tI-Code_Block\tmount\tI-Code_Block\n--bind\tI-Code_Block\t--bind\tI-Code_Block\n/proc\tI-Code_Block\t/proc\tI-Code_Block\n/mnt/proc\tI-Code_Block\t/mnt/proc\tI-Code_Block\n&&\tI-Code_Block\t&&\tI-Code_Block\nsudo\tI-Code_Block\tsudo\tI-Code_Block\nmount\tI-Code_Block\tmount\tI-Code_Block\n--bind\tI-Code_Block\t--bind\tI-Code_Block\n/sys\tI-Code_Block\t/sys\tI-Code_Block\n/mnt/sys\tI-Code_Block\t/mnt/sys\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nto\tO\tto\tO\nnewly\tO\tnewly\tO\nmounted\tO\tmounted\tO\npartition\tO\tpartition\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nsudo\tB-Code_Block\tsudo\tB-Code_Block\nchroot\tI-Code_Block\tchroot\tI-Code_Block\n<mount-point[e.g.\tI-Code_Block\t<mount-point[e.g.\tI-Code_Block\n/mnt/]>\tI-Code_Block\t/mnt/]>\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\nGRUB\tB-Application\tGRUB\tO\nusing\tO\tusing\tO\ngrub-install\tB-Code_Block\tgrub-install\tO\ncommand\tO\tcommand\tO\nat\tO\tat\tO\nyour\tO\tyour\tO\nHDD\tB-Device\tHDD\tO\nMBR\tI-Device\tMBR\tO\n.\tO\t.\tO\n\t\ngrub-install\tB-Code_Block\tgrub-install\tB-Code_Block\n/dev/sda\tI-Code_Block\t/dev/sda\tI-Code_Block\n\t\nFinally\tO\tFinally\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ngrub\tB-Application\tgrub\tO\nentries\tO\tentries\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nnewly\tO\tnewly\tO\ndetected\tO\tdetected\tO\npartition\tO\tpartition\tO\noperating\tO\toperating\tO\nsystems\tO\tsystems\tO\n.\tO\t.\tO\n\t\nupdate-grub\tB-Code_Block\tupdate-grub\tB-Code_Block\n\t\nAnd\tO\tAnd\tO\nat\tO\tat\tO\nlast\tO\tlast\tO\nunmount\tO\tunmount\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nbinded\tO\tbinded\tO\npartition\tO\tpartition\tO\ndirectories\tO\tdirectories\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nreboot\tO\treboot\tO\n.\tO\t.\tO\n\t\nsudo\tB-Code_Block\tsudo\tB-Code_Block\nreboot\tI-Code_Block\treboot\tI-Code_Block\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nit\tO\tit\tO\n,\tO\t,\tO\nhope\tO\thope\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39685910\tO\t39685910\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39685910/\tO\thttps://stackoverflow.com/questions/39685910/\tO\n\t\n\t\nWindows\tB-Operating_System\tWindows\tO\nwill\tO\twill\tO\noverwrite\tO\toverwrite\tO\nthe\tO\tthe\tO\nboot\tO\tboot\tO\nsector\tO\tsector\tO\nwhenever\tO\twhenever\tO\nyou\tO\tyou\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ngeneral\tO\tgeneral\tO\ninstall\tO\tinstall\tO\nwindows\tB-Operating_System\twindows\tO\nfirst\tO\tfirst\tO\nthen\tO\tthen\tO\nlinux\tB-Operating_System\tlinux\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nrepair\tO\trepair\tO\nthe\tO\tthe\tO\ngrub\tB-Application\tgrub\tO\nby\tO\tby\tO\nbooting\tO\tbooting\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nlive\tO\tlive\tO\ndisk\tB-Device\tdisk\tO\nof\tO\tof\tO\nlinux\tB-Operating_System\tlinux\tO\nMint\tB-Version\tMint\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\noption\tO\toption\tO\nto\tO\tto\tO\nrepair-boot\tO\trepair-boot\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nrepair\tO\trepair\tO\nyour\tO\tyour\tO\ngrub\tB-Application\tgrub\tO\n.\tO\t.\tO\n\t\nRestart\tO\tRestart\tO\nit\tO\tit\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\nOS\tO\tOS\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nboot\tO\tboot\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nlive\tO\tlive\tO\ncd\tB-Device\tcd\tO\nand\tO\tand\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nsteps\tO\tsteps\tO\n:\tO\t:\tO\n\t\nBoot\tO\tBoot\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nlive\tO\tlive\tO\nCD\tB-Device\tCD\tO\n(\tO\t(\tO\nCD/DVD\tB-Device\tCD/DVD\tO\nor\tO\tor\tO\nflash\tB-Device\tflash\tO\ndrive\tI-Device\tdrive\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBecome\tO\tBecome\tO\nroot\tO\troot\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\nsudo\tB-Code_Block\tsudo\tO\nwith\tO\twith\tO\ncommands\tO\tcommands\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nList\tO\tList\tO\nthe\tO\tthe\tO\navailable\tO\tavailable\tO\npartitions\tO\tpartitions\tO\nif\tO\tif\tO\nneeded\tO\tneeded\tO\n:\tO\t:\tO\nfdisk\tB-Code_Block\tfdisk\tO\n-l\tI-Code_Block\t-l\tO\n\t\nWindows\tB-Operating_System\tWindows\tO\nwill\tO\twill\tO\nalmost\tO\talmost\tO\ncertainly\tO\tcertainly\tO\nexist\tO\texist\tO\non\tO\ton\tO\n/dev/sda1\tB-File_Name\t/dev/sda1\tO\n:\tI-File_Name\t:\tO\nmount\tI-File_Name\tmount\tO\n/dev/sda1\tI-File_Name\t/dev/sda1\tO\n/mnt\tI-File_Name\t/mnt\tO\n\t\nReinstall\tO\tReinstall\tO\nGRUB\tB-Application\tGRUB\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nMBR\tB-Device\tMBR\tO\n:\tO\t:\tO\ngrub-install\tB-Code_Block\tgrub-install\tO\n--root-directory\tI-Code_Block\t--root-directory\tO\n=\tI-Code_Block\t=\tO\n/mnt/\tI-Code_Block\t/mnt/\tO\n/dev/sda\tI-Code_Block\t/dev/sda\tO\n\t\nReboot\tO\tReboot\tO\n:\tO\t:\tO\nshutdown\tB-Code_Block\tshutdown\tO\n-r\tI-Code_Block\t-r\tO\nnow\tI-Code_Block\tnow\tO\n\t\nRestore\tO\tRestore\tO\nthe\tO\tthe\tO\nGRUB\tB-Application\tGRUB\tO\nmenu\tO\tmenu\tO\n:\tO\t:\tO\nupdate-grub\tB-Code_Block\tupdate-grub\tO\n\t\nThanks\tO\tThanks\tO\nto\tO\tto\tO\n@christopher\tB-User_Name\t@christopher\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47953730\tO\t47953730\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47953730/\tO\thttps://stackoverflow.com/questions/47953730/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6378\tI-Code_Block\tQ_6378\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nJava\tB-Language\tJava\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nmy\tO\tmy\tO\noutput\tO\toutput\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n3\tO\t3\tO\ncharacters\tB-Data_Type\tcharacters\tO\nfrom\tO\tfrom\tO\na\tB-Value\ta\tO\nto\tO\tto\tO\nz\tB-Value\tz\tO\nand\tO\tand\tO\n2\tO\t2\tO\nnumbers\tB-Data_Type\tnumbers\tO\nfrom\tO\tfrom\tO\n0\tB-Value\t0\tO\nto\tO\tto\tO\n9\tB-Value\t9\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nabc0\tB-Value\tabc0\tO\n1)\tI-Value\t1)\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\n1\tO\t1\tO\ncharacter\tB-Data_Type\tcharacter\tO\nand\tO\tand\tO\n1\tO\t1\tO\nnumber\tB-Data_Type\tnumber\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\na\tB-Value\ta\tO\n1)\tI-Value\t1)\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\ndespite\tO\tdespite\tO\nI\tO\tI\tO\n've\tO\t've\tO\nput\tO\tput\tO\n3\tO\t3\tO\nand\tO\tand\tO\n2\tO\t2\tO\ninto\tO\tinto\tO\nloops\tO\tloops\tO\n?\tO\t?\tO\n\t\nFrom\tO\tFrom\tO\nall\tO\tall\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nloop\tO\tloop\tO\nmust\tO\tmust\tO\noperate\tO\toperate\tO\n3\tO\t3\tO\ntimes\tO\ttimes\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\none\tO\tone\tO\nmust\tO\tmust\tO\noperate\tO\toperate\tO\n2\tO\t2\tO\ntimes\tO\ttimes\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nmy\tO\tmy\tO\noutput\tO\toutput\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n3\tO\t3\tO\ncharacters\tB-Data_Type\tcharacters\tO\nand\tO\tand\tO\n2\tO\t2\tO\nnumbers\tB-Data_Type\tnumbers\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47953730\tO\t47953730\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47953730/\tO\thttps://stackoverflow.com/questions/47953730/\tO\n\t\n\t\nchar\tB-Data_Type\tchar\tB-Code_Block\nand\tO\tand\tO\nint\tB-Data_Type\tint\tB-Code_Block\ncan\tO\tcan\tO\nstore\tO\tstore\tO\none\tO\tone\tO\nvalue\tO\tvalue\tO\nso\tO\tso\tO\nuse\tO\tuse\tO\nString\tB-Data_Type\tString\tB-Code_Block\nas\tO\tas\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7016\tI-Code_Block\tA_7016\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47953730\tO\t47953730\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47953730/\tO\thttps://stackoverflow.com/questions/47953730/\tO\n\t\n\t\nYou\tO\tYou\tO\ngenerate\tO\tgenerate\tO\nyour\tO\tyour\tO\nrandom\tO\trandom\tO\nitems\tO\titems\tO\ncorrectly\tO\tcorrectly\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\ncollect\tO\tcollect\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\na\tO\ta\tO\nproper\tO\tproper\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\niteration\tO\titeration\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nwrites\tO\twrites\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\nprior\tO\tprior\tO\niteration\tO\titeration\tO\n,\tO\t,\tO\nleaving\tO\tleaving\tO\nboth\tO\tboth\tO\na\tB-Variable_Name\ta\tB-Code_Block\nand\tO\tand\tO\nb\tB-Variable_Name\tb\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\niteration\tO\titeration\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nStringBuilder\tB-Library_Class\tStringBuilder\tB-Code_Block\nto\tO\tto\tO\nstore\tO\tstore\tO\ncharacters\tB-Data_Type\tcharacters\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ngenerate\tO\tgenerate\tO\nthem\tO\tthem\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7017\tI-Code_Block\tA_7017\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDemo\tO\tDemo\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39152069\tO\t39152069\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39152069/\tO\thttps://stackoverflow.com/questions/39152069/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nboot\tB-Application\tboot\tO\nloader\tI-Application\tloader\tO\nwhich\tO\twhich\tO\nallows\tO\tallows\tO\nme\tO\tme\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\nprocessor\tB-Device\tprocessor\tO\n's\tO\t's\tO\nsoftware\tO\tsoftware\tO\nremotely\tO\tremotely\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nkeil\tB-Application\tkeil\tO\nuvision\tI-Application\tuvision\tO\ncompiler\tI-Application\tcompiler\tO\n(\tO\t(\tO\nV5.20.0.0\tB-Version\tV5.20.0.0\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFlash.c\tB-File_Name\tFlash.c\tO\n,\tO\t,\tO\nstartup_efm32zg.s\tB-File_Name\tstartup_efm32zg.s\tO\n,\tO\t,\tO\nstartup_efm32zg.c\tB-File_Name\tstartup_efm32zg.c\tO\nand\tO\tand\tO\nem_dma.c\tB-File_Name\tem_dma.c\tO\nconfigured\tO\tconfigured\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nfrom\tO\tfrom\tO\nRAM\tB-Device\tRAM\tO\n(\tO\t(\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nZero\tO\tZero\tO\ninit\tO\tinit\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nother\tO\tother\tO\ndata\tO\tdata\tO\n)\tO\t)\tO\nvia\tO\tvia\tO\ntheir\tO\ttheir\tO\noptions/properties\tO\toptions/properties\tO\ntabs\tB-User_Interface_Element\ttabs\tO\n.\tO\t.\tO\n\t\nStack\tB-Data_Structure\tStack\tO\nsize\tO\tsize\tO\nconfigured\tO\tconfigured\tO\nat\tO\tat\tO\n0x0000\tB-Value\t0x0000\tB-Code_Block\n0800\tI-Value\t0800\tI-Code_Block\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nstartup_efm32zg.s\tB-File_Name\tstartup_efm32zg.s\tO\nConfiguration\tO\tConfiguration\tO\nWizard\tO\tWizard\tO\ntab\tB-User_Interface_Element\ttab\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nSilicon\tB-Organization\tSilicon\tO\nLabs\tI-Organization\tLabs\tO\nflash.c\tB-File_Name\tflash.c\tO\nand\tO\tand\tO\nflash.h\tB-File_Name\tflash.h\tO\n,\tO\t,\tO\nremoved\tO\tremoved\tO\nRAMFUNC\tB-Code_Block\tRAMFUNC\tB-Code_Block\nas\tO\tas\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nredundant\tO\tredundant\tO\nto\tO\tto\tO\nKeil\tB-Application\tKeil\tO\nconfiguration\tO\tconfiguration\tO\n,\tO\t,\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmodified\tO\tmodified\tO\nthe\tO\tthe\tO\nflash.c\tB-File_Name\tflash.c\tO\ncode\tO\tcode\tO\nslightly\tO\tslightly\tO\nso\tO\tso\tO\nit\tO\tit\tO\nstays\tO\tstays\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFLASH_write\tB-Library_Function\tFLASH_write\tO\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nsupposedly\tO\tsupposedly\tO\nin\tO\tin\tO\nRAM\tB-Device\tRAM\tO\n)\tO\t)\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nDMA\tO\tDMA\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\ndoing\tO\tdoing\tO\nits\tO\tits\tO\nthing\tO\tthing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmoved\tO\tmoved\tO\nthe\tO\tthe\tO\n\t\nwhile\tB-Code_Block\twhile\tO\n(\tI-Code_Block\t(\tO\nDMA->CHENS\tI-Code_Block\tDMA->CHENS\tO\n&\tI-Code_Block\t&\tO\nDMA_CHENS_CH0ENS\tI-Code_Block\tDMA_CHENS_CH0ENS\tO\n)\tI-Code_Block\t)\tO\n;\tB-Code_Block\t;\tO\n\t\nline\tO\tline\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nadded\tO\tadded\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nwrapper\tO\twrapper\tO\naround\tO\taround\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n/\tB-Code_Block\t/\tO\n*\tI-Code_Block\t*\tO\nActivate\tI-Code_Block\tActivate\tO\nchannel\tI-Code_Block\tchannel\tO\n0\tI-Code_Block\t0\tO\n*\tI-Code_Block\t*\tO\n/\tI-Code_Block\t/\tO\n\t\nDMA->CHENS\tB-Code_Block\tDMA->CHENS\tO\n=\tI-Code_Block\t=\tO\nDMA_CHENS_CH0ENS\tI-Code_Block\tDMA_CHENS_CH0ENS\tO\n;\tI-Code_Block\t;\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4924\tI-Code_Block\tQ_4924\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFLASH_init()\tB-Library_Function\tFLASH_init()\tB-Code_Block\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nsetup\tO\tsetup\tO\nprior\tO\tprior\tO\nto\tO\tto\tO\nentering\tO\tentering\tO\nmy\tO\tmy\tO\ninfinite\tO\tinfinite\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ncalled\tO\tcalled\tO\nupon\tO\tupon\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nflash\tB-Device\tflash\tO\n....\tO\t....\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\n1)\tO\t1)\tO\n:\tO\t:\tO\nI\tO\tI\tO\ndisable\tO\tdisable\tO\ninterrupts\tO\tinterrupts\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\n2)\tO\t2)\tO\n:\tO\t:\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nFLASH_erasePage\tB-Library_Function\tFLASH_erasePage\tB-Code_Block\nstarting\tO\tstarting\tO\nat\tO\tat\tO\n0x0000\tB-Value\t0x0000\tB-Code_Block\n2400\tI-Value\t2400\tI-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\n3)\tO\t3)\tO\n:\tO\t:\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nFLASH_write\tB-Library_Function\tFLASH_write\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4925\tI-Code_Block\tQ_4925\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhere\tO\tWhere\tO\n:\tO\t:\tO\n\t\nstartAddress\tB-Code_Block\tstartAddress\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n0x00002400\tI-Code_Block\t0x00002400\tI-Code_Block\n,\tO\t,\tO\n\t\nflashBuffer\tB-Code_Block\tflashBuffer\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nbuffer\tI-Code_Block\tbuffer\tI-Code_Block\nof\tI-Code_Block\tof\tI-Code_Block\ntype\tI-Code_Block\ttype\tI-Code_Block\nuint8_t\tI-Code_Block\tuint8_t\tI-Code_Block\nflashBuffer[256]\tI-Code_Block\tflashBuffer[256]\tI-Code_Block\n,\tO\t,\tO\n\t\n#define\tB-Code_Block\t#define\tB-Code_Block\nBLOCK_SIZE\tI-Code_Block\tBLOCK_SIZE\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n256\tI-Code_Block\t256\tI-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ngets\tO\tgets\tO\nstuck\tO\tstuck\tO\nhere\tO\there\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4926\tI-Code_Block\tQ_4926\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEventually\tO\tEventually\tO\nthe\tO\tthe\tO\ndebugger\tB-Application\tdebugger\tO\nexecution\tO\texecution\tO\nstops\tO\tstops\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nCall\tO\tCall\tO\nStack\tB-Data_Structure\tStack\tO\nclears\tO\tclears\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nleft\tO\tleft\tO\nwith\tO\twith\tO\n0x00000000\tB-Value\t0x00000000\tO\nand\tO\tand\tO\nALL\tO\tALL\tO\nof\tO\tof\tO\nmemory\tO\tmemory\tO\nis\tO\tis\tO\ndisplayed\tO\tdisplayed\tO\nas\tO\tas\tO\n0xAA\tB-Value\t0xAA\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\naside\tO\taside\tO\n9K\tO\t9K\tO\nof\tO\tof\tO\nflash\tB-Device\tflash\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbootloader\tB-Application\tbootloader\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\na\tO\ta\tO\nbuild\tO\tbuild\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntold\tO\ttold\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nTarget\tO\tTarget\tO\nMemory\tO\tMemory\tO\nOptions\tO\tOptions\tO\nfor\tO\tfor\tO\nTarget1\tO\tTarget1\tO\n:\tO\t:\tO\n\t\nIROM1\tB-Code_Block\tIROM1\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nStart[0x0]\tI-Code_Block\tStart[0x0]\tI-Code_Block\nSize[0x2400]\tI-Code_Block\tSize[0x2400]\tI-Code_Block\n\t\nIRAM1\tB-Code_Block\tIRAM1\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nStart[0x20000000]\tI-Code_Block\tStart[0x20000000]\tI-Code_Block\nSize:[0x1000]\tI-Code_Block\tSize:[0x1000]\tI-Code_Block\n\t\nSo\tO\tSo\tO\n.\tO\t.\tO\n.\tO\t.\tO\nwhat\tO\twhat\tO\non\tO\ton\tO\nearth\tO\tearth\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\n?\tO\t?\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nother\tO\tother\tO\nconcerns\tO\tconcerns\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nexecuting\tO\texecuting\tO\nfrom\tO\tfrom\tO\nRAM\tB-Device\tRAM\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nlook\tO\tlook\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nCall\tO\tCall\tO\nStack\tB-Data_Structure\tStack\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nLocation/Value\tO\tLocation/Value\tO\nfor\tO\tfor\tO\nFLASH_write\tB-Library_Function\tFLASH_write\tO\nafter\tO\tafter\tO\nhaving\tO\thaving\tO\nstepped\tO\tstepped\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nFLASH_write\tB-Library_Function\tFLASH_write\tO\nfunction\tO\tfunction\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\n0x000008A4\tB-Value\t0x000008A4\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nflash!(?)\tO\tflash!(?)\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nRAM_FUNC\tB-Library_Function\tRAM_FUNC\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\ntoo\tO\ttoo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28331464\tO\t28331464\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28331464/\tO\thttps://stackoverflow.com/questions/28331464/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nquestion\tO\tquestion\tO\non\tO\ton\tO\nstackoverflow\tB-Website\tstackoverflow\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\niframe\tB-Variable_Name\tiframe\tO\ninto\tO\tinto\tO\ntest\tO\ttest\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nwith\tO\twith\tO\njavascript\tB-Language\tjavascript\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nhtml\tB-Language\thtml\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nresize\tO\tresize\tO\niframe\tB-Variable_Name\tiframe\tO\n's\tO\t's\tO\nheight\tI-Variable_Name\theight\tO\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\nworks\tO\tworks\tO\ngood\tO\tgood\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nonly\tO\tonly\tO\nif\tO\tif\tO\nI\tO\tI\tO\nset\tO\tset\tO\ndynamic_div\tB-Variable_Name\tdynamic_div\tO\n's\tO\t's\tO\nheight\tB-Variable_Name\theight\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n150px\tB-Value\t150px\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nheight\tB-Variable_Name\theight\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndynamic_div\tB-Variable_Name\tdynamic_div\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n150\tB-Value\t150\tO\nit\tO\tit\tO\nautomatically\tO\tautomatically\tO\nsets\tO\tsets\tO\niframe\tB-Variable_Name\tiframe\tO\n's\tO\t's\tO\nheight\tI-Variable_Name\theight\tO\nto\tO\tto\tO\n150\tB-Value\t150\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nP.S\tO\tP.S\tO\n:\tO\t:\tO\nhtml\tB-Language\thtml\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nhtml\tB-Variable_Name\thtml\tO\nvariable\tO\tvariable\tO\nis\tO\tis\tO\ndynamic\tO\tdynamic\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\nanything\tO\tanything\tO\nin\tO\tin\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nMany\tO\tMany\tO\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3303\tI-Code_Block\tQ_3303\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28331464\tO\t28331464\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28331464/\tO\thttps://stackoverflow.com/questions/28331464/\tO\n\t\n\t\nBecause\tO\tBecause\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\n<div\tB-Code_Block\t<div\tB-Code_Block\nid=\"container\">\tI-Code_Block\tid=\"container\">\tI-Code_Block\n\t\nAutomatically\tO\tAutomatically\tO\nit\tO\tit\tO\nwont\tO\twont\tO\nbe\tO\tbe\tO\nas\tO\tas\tO\ntall\tO\ttall\tO\nas\tO\tas\tO\nyour\tO\tyour\tO\niframe\tB-Variable_Name\tiframe\tO\n.\tO\t.\tO\n\t\nAdd\tO\tAdd\tO\nsome\tO\tsome\tO\nstyle\tO\tstyle\tO\nto\tO\tto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3937\tI-Code_Block\tA_3937\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28331464\tO\t28331464\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28331464/\tO\thttps://stackoverflow.com/questions/28331464/\tO\n\t\n\t\nThe\tO\tThe\tO\niframe\tB-Variable_Name\tiframe\tO\ngets\tO\tgets\tO\na\tO\ta\tO\nheight\tB-Variable_Name\theight\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nunknown\tO\tunknown\tO\nreason\tO\treason\tO\nto\tO\tto\tO\nme\tO\tme\tO\n,\tO\t,\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nit\tO\tit\tO\na\tO\ta\tO\nheight\tB-Variable_Name\theight\tO\nvalue\tO\tvalue\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n0\tB-Value\t0\tB-Code_Block\ndid\tO\tdid\tO\nthe\tO\tthe\tO\ntrick\tO\ttrick\tO\n,\tO\t,\tO\nThe\tO\tThe\tO\ndoc.body.style.cssText\tB-Library_Variable\tdoc.body.style.cssText\tB-Code_Block\noverwrites\tO\toverwrites\tO\nthe\tO\tthe\tO\nheight\tB-Variable_Name\theight\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\n100%\tB-Value\t100%\tB-Code_Block\nanyway\tO\tanyway\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nworry\tO\tworry\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3938\tI-Code_Block\tA_3938\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExample\tO\tExample\tO\nJSFiddle\tB-Application\tJSFiddle\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36438300\tO\t36438300\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36438300/\tO\thttps://stackoverflow.com/questions/36438300/\tO\n\t\n\t\nFACTS\tO\tFACTS\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\nsearches\tO\tsearches\tO\ninbox\tB-Application\tinbox\tO\nfor\tO\tfor\tO\nunread\tO\tunread\tO\nemail\tO\temail\tO\n,\tO\t,\tO\nand\tO\tand\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nstarred\tO\tstarred\tO\nare\tO\tare\tO\nremoved\tO\tremoved\tO\nfrom\tO\tfrom\tO\ninbox\tB-Application\tinbox\tO\nand\tO\tand\tO\napplied\tO\tapplied\tO\nlabel\tO\tlabel\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nfilters\tO\tfilters\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nto\tO\tto\tO\nlabel\tO\tlabel\tO\ncertain\tO\tcertain\tO\nemail\tO\temail\tO\naddys\tO\taddys\tO\nas\tO\tas\tO\nstarred\tO\tstarred\tO\n.\tO\t.\tO\n\t\nGOAL\tO\tGOAL\tO\n:\tO\t:\tO\n\t\nTo\tO\tTo\tO\nmove\tO\tmove\tO\neverything\tO\teverything\tO\nfrom\tO\tfrom\tO\ninbox\tB-Application\tinbox\tO\nto\tO\tto\tO\na\tO\ta\tO\nfolder\tO\tfolder\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrelevant\tO\trelevant\tO\n.\tO\t.\tO\n\t\nExcept\tO\tExcept\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nstarred\tO\tstarred\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nallows\tO\tallows\tO\nfor\tO\tfor\tO\nmanually\tO\tmanually\tO\ndragging\tO\tdragging\tO\nback\tO\tback\tO\nto\tO\tto\tO\ninbox\tB-Application\tinbox\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthey\tO\tthey\tO\nstay\tO\tstay\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nPROBLEM\tO\tPROBLEM\tO\n:\tO\t:\tO\n\t\nMost\tO\tMost\tO\nall\tO\tall\tO\nemails\tO\temails\tO\nare\tO\tare\tO\nprocessed\tO\tprocessed\tO\nas\tO\tas\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstarred\tO\tstarred\tO\nemails\tO\temails\tO\nare\tO\tare\tO\nstill\tO\tstill\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\n,\tO\t,\tO\nand\tO\tand\tO\nare\tO\tare\tO\nthus\tO\tthus\tO\nmoved\tO\tmoved\tO\nfrom\tO\tfrom\tO\ninbox\tB-Application\tinbox\tO\nand\tO\tand\tO\nlabeled\tO\tlabeled\tO\n\"\tB-Value\t\"\tO\nnewLabel\tI-Value\tnewLabel\tO\n\"\tI-Value\t\"\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nswitch\tO\tswitch\tO\nit\tO\tit\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4484\tI-Code_Block\tQ_4484\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nfor\tO\tfor\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nGmail\tB-Application\tGmail\tO\nScript\tO\tScript\tO\n:\tO\t:\tO\nsearch\tO\tsearch\tO\nthen\tO\tthen\tO\nmove\tO\tmove\tO\nto\tO\tto\tO\ninbox\tB-Application\tinbox\tO\n,\tO\t,\tO\nremove\tO\tremove\tO\nlabel\tO\tlabel\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36438300\tO\t36438300\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36438300/\tO\thttps://stackoverflow.com/questions/36438300/\tO\n\t\n\t\nYour\tO\tYour\tO\nfirst\tO\tfirst\tO\nthread\tO\tthread\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npicking\tO\tpicking\tO\nup\tO\tup\tO\nmails\tO\tmails\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5219\tI-Code_Block\tA_5219\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nindicated\tO\tindicated\tO\nthat\tO\tthat\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nGmailApp.search()\tB-Library_Function\tGmailApp.search()\tB-Code_Block\nshould\tO\tshould\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\nis:unread\tB-Code_Block\tis:unread\tB-Code_Block\nin:inbox\tI-Code_Block\tin:inbox\tI-Code_Block\nfor\tO\tfor\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nquery\tO\tquery\tO\nparameter\tO\tparameter\tO\nlabel\tB-Code_Block\tlabel\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndash\tO\tdash\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\naccepted\tO\taccepted\tO\nsearch\tO\tsearch\tO\nquery\tO\tquery\tO\nparameters\tO\tparameters\tO\nhere\tO\there\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48836747\tO\t48836747\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48836747/\tO\thttps://stackoverflow.com/questions/48836747/\tO\n\t\n\t\nThis\tO\tThis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nabout\tO\tabout\tO\nRad\tB-Device\tRad\tO\nBeacon\tI-Device\tBeacon\tO\nDot\tI-Device\tDot\tO\ndevice\tO\tdevice\tO\nfor\tO\tfor\tO\nAndroid\tB-Operating_System\tAndroid\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nup\tO\tup\tO\nnotification\tO\tnotification\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nuser\tO\tuser\tO\ngets\tO\tgets\tO\nit\tO\tit\tO\non\tO\ton\tO\nhis\tO\this\tO\nphone\tB-Device\tphone\tO\n,\tO\t,\tO\nhe\tO\the\tO\ncan\tO\tcan\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nit\tO\tit\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nredirect\tO\tredirect\tO\nhim\tO\thim\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nnotification\tB-User_Interface_Element\tnotification\tO\nworks\tO\tworks\tO\ngreat\tO\tgreat\tO\n,\tO\t,\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nconnected\tO\tconnected\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nGoogle\tB-Application\tGoogle\tO\nCloud\tI-Application\tCloud\tO\nPlatform\tI-Application\tPlatform\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nnotification\tB-User_Interface_Element\tnotification\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nsomehow\tO\tsomehow\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nCan\tO\tCan\tO\ni\tO\ti\tO\ntrack\tO\ttrack\tO\neach\tO\teach\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nnotification\tB-User_Interface_Element\tnotification\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nenable\tO\tenable\tO\nGoogle\tB-Application\tGoogle\tO\ntracking\tI-Application\ttracking\tO\nAPI\tI-Application\tAPI\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nGoogle\tB-Application\tGoogle\tO\nCloud\tI-Application\tCloud\tO\nPlatform\tI-Application\tPlatform\tO\n,\tO\t,\tO\nand\tO\tand\tO\nadded\tO\tadded\tO\ncredentials\tO\tcredentials\tO\nto\tO\tto\tO\nattachments\tO\tattachments\tO\nfield\tO\tfield\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nBeacon\tB-Application\tBeacon\tO\nDashboard\tI-Application\tDashboard\tO\nPanel\tI-Application\tPanel\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nstill\tO\tstill\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nor\tO\tor\tO\nadvice\tO\tadvice\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nachieve\tO\tachieve\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48836747\tO\t48836747\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48836747/\tO\thttps://stackoverflow.com/questions/48836747/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nand\tO\tand\tO\ni\tO\ti\tO\nwill\tO\twill\tO\nget\tO\tget\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ndislikes\tO\tdislikes\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nbut\tO\tbut\tO\n,\tO\t,\tO\n\t\nBut\tO\tBut\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nexample\tO\texample\tO\n:\tO\t:\tO\nyourwebsite.com/beacon-track\tO\tyourwebsite.com/beacon-track\tO\nand\tO\tand\tO\nplace\tO\tplace\tO\nsome\tO\tsome\tO\ntracking\tO\ttracking\tO\ncode\tO\tcode\tO\nthere\tO\tthere\tO\n..\tO\t..\tO\n.\tO\t.\tO\nand\tO\tand\tO\nset\tO\tset\tO\nup\tO\tup\tO\nredirect\tO\tredirect\tO\nfrom\tO\tfrom\tO\nyourwebsite.com/beacon\tO\tyourwebsite.com/beacon\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nwebsite\tO\twebsite\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nnotification\tB-User_Interface_Element\tnotification\tO\nit\tO\tit\tO\ngoes\tO\tgoes\tO\nto\tO\tto\tO\nyourwebsite.com/beacon-track\tO\tyourwebsite.com/beacon-track\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nas\tO\tas\tO\nclick\tO\tclick\tO\n,\tO\t,\tO\nand\tO\tand\tO\nredirect\tO\tredirect\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nyourwebsite.com\tO\tyourwebsite.com\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30873522\tO\t30873522\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30873522/\tO\thttps://stackoverflow.com/questions/30873522/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npull\tO\tpull\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nJ-Y\tB-Variable_Name\tJ-Y\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nspreadsheet\tB-User_Interface_Element\tspreadsheet\tO\nand\tO\tand\tO\nconcatenate\tO\tconcatenate\tO\nthem\tO\tthem\tO\nspecifically\tO\tspecifically\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nhorizontal\tO\thorizontal\tO\nrow\tB-Data_Structure\trow\tO\nin\tO\tin\tO\nthose\tO\tthose\tO\nranges\tO\tranges\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ncell\tB-Data_Structure\tcell\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\n=CONCATENATE(IMPORTRANGE(\"123123123\",\"SheetName!J1:Y1\"))\tB-Code_Block\t=CONCATENATE(IMPORTRANGE(\"123123123\",\"SheetName!J1:Y1\"))\tO\n\t\nThat\tO\tThat\tO\nputs\tO\tputs\tO\neverything\tO\teverything\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nrow\tB-Data_Structure\trow\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ncell\tB-Data_Structure\tcell\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nauto\tO\tauto\tO\nupdate\tO\tupdate\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndrag\tO\tdrag\tO\nthe\tO\tthe\tO\nlower-right\tO\tlower-right\tO\nbox\tB-User_Interface_Element\tbox\tO\ndown\tO\tdown\tO\nthe\tO\tthe\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30873522\tO\t30873522\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30873522/\tO\thttps://stackoverflow.com/questions/30873522/\tO\n\t\n\t\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nif\tO\tif\tO\npasted\tO\tpasted\tO\ninto\tO\tinto\tO\nrow\tB-Data_Structure\trow\tO\n1\tO\t1\tO\nand\tO\tand\tO\ndragged\tO\tdragged\tO\ndown\tO\tdown\tO\n:\tO\t:\tO\n\t\n=CONCATENATE(IMPORTRANGE(\"123123123\",\"SheetName!J\"&ROW()&\":Y\"&ROW()))\tB-Code_Block\t=CONCATENATE(IMPORTRANGE(\"123123123\",\"SheetName!J\"&ROW()&\":Y\"&ROW()))\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33318399\tO\t33318399\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33318399/\tO\thttps://stackoverflow.com/questions/33318399/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nsailsjs\tB-Library\tsailsjs\tO\nand\tO\tand\tO\nmongodb\tB-Application\tmongodb\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\"\tO\t\"\tO\nTypeError\tB-Error_Name\tTypeError\tO\n:\tO\t:\tO\nCannot\tO\tCannot\tO\nread\tO\tread\tO\nproperty\tO\tproperty\tO\n'\tO\t'\tO\nattributes\tO\tattributes\tO\n'\tO\t'\tO\nof\tO\tof\tO\nundefined\tO\tundefined\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nmodels\tO\tmodels\tO\n:\tO\t:\tO\n\t\nUserInterest.js\tB-File_Name\tUserInterest.js\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4053\tI-Code_Block\tQ_4053\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUserProfile.js\tB-File_Name\tUserProfile.js\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4054\tI-Code_Block\tQ_4054\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nprofile\tO\tprofile\tO\nloaded\tO\tloaded\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4055\tI-Code_Block\tQ_4055\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nhappens\tO\thappens\tO\nin\tO\tin\tO\npopulate\tB-Function_Name\tpopulate\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33318399\tO\t33318399\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33318399/\tO\thttps://stackoverflow.com/questions/33318399/\tO\n\t\n\t\nAfter\tO\tAfter\tO\nstruggling\tO\tstruggling\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nattribute\tO\tattribute\tO\ninterests\tO\tinterests\tO\nwas\tO\twas\tO\nduplicated\tO\tduplicated\tO\nand\tO\tand\tO\nsails\tB-Library\tsails\tO\nwas\tO\twas\tO\nhaving\tO\thaving\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\neliminated\tO\teliminated\tO\nthe\tO\tthe\tO\nduplicate\tO\tduplicate\tO\n,\tO\t,\tO\nleaving\tO\tleaving\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\ndefinition\tO\tdefinition\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19025432\tO\t19025432\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19025432/\tO\thttps://stackoverflow.com/questions/19025432/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\nPlay\tB-Library\tPlay\tO\nFramework\tI-Library\tFramework\tO\n2.1.2\tB-Version\t2.1.2\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nclean\tO\tclean\tO\nup\tO\tup\tO\ninstructions\tO\tinstructions\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nlogs\tO\tlogs\tO\nout\tO\tout\tO\nor\tO\tor\tO\ncloses\tO\tcloses\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nother\tO\tother\tO\nquestion\tO\tquestion\tO\nI\tO\tI\tO\nasked\tO\tasked\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nintercept\tO\tintercept\tO\nthe\tO\tthe\tO\nclosing\tO\tclosing\tO\naction\tO\taction\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ntold\tO\ttold\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nreliable\tO\treliable\tO\nto\tO\tto\tO\nstick\tO\tstick\tO\nwith\tO\twith\tO\njavascript\tB-Language\tjavascript\tO\nin\tO\tin\tO\nbrowser\tB-Application\tbrowser\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nits\tO\tits\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\nsession\tO\tsession\tO\ntimeout\tO\ttimeout\tO\nevent\tO\tevent\tO\nto\tO\tto\tO\nacknowledge\tO\tacknowledge\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\ngone\tO\tgone\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nflow\tO\tflow\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nobtain\tO\tobtain\tO\nis\tO\tis\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nlogs\tO\tlogs\tO\nin\tO\tin\tO\n\t\nits\tO\tits\tO\nsession\tO\tsession\tO\nis\tO\tis\tO\ncreated\tO\tcreated\tO\n\t\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nworks\tO\tworks\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\n\t\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nlogs\tO\tlogs\tO\nout\tO\tout\tO\n/\tO\t/\tO\ncloses\tO\tcloses\tO\nhis\tO\this\tO\nbrowser\tB-Application\tbrowser\tO\n--->\tO\t--->\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\nexpires\tO\texpires\tO\n\t\nhe\tO\the\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nplatform\tO\tplatform\tO\nanymore\tO\tanymore\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nperform\tO\tperform\tO\nsome\tO\tsome\tO\noperations\tO\toperations\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndb\tO\tdb\tO\nabout\tO\tabout\tO\nwhat\tO\twhat\tO\nhe\tO\the\tO\nhas\tO\thas\tO\ndone\tO\tdone\tO\n\t\nI\tO\tI\tO\ncoul\tO\tcoul\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\nexpires\tO\texpires\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\npoint\tO\tpoint\tO\nme\tO\tme\tO\ntowards\tO\ttowards\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n?\tO\t?\tO\n\t\nEventually\tO\tEventually\tO\nanother\tO\tanother\tO\nacceptable\tO\tacceptable\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\ntimed\tO\ttimed\tO\nevent\tO\tevent\tO\nthat\tO\tthat\tO\nrepeatedly\tO\trepeatedly\tO\nchecks\tO\tchecks\tO\nwhich\tO\twhich\tO\nusers\tO\tusers\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nconnected\tO\tconnected\tO\nanymore\tO\tanymore\tO\nand\tO\tand\tO\nperforms\tO\tperforms\tO\nbulk\tO\tbulk\tO\noperations\tO\toperations\tO\non\tO\ton\tO\nthat\tO\tthat\tO\npool\tO\tpool\tO\nof\tO\tof\tO\nusers\tO\tusers\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nconnected\tO\tconnected\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19025432\tO\t19025432\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19025432/\tO\thttps://stackoverflow.com/questions/19025432/\tO\n\t\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nneeded\tO\tneeded\tO\na\tO\ta\tO\nsession\tO\tsession\tO\ntimeout\tB-Variable_Name\ttimeout\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\na\tO\ta\tO\ntimestamp\tB-Library_Class\ttimestamp\tO\n(\tO\t(\tO\ntick\tO\ttick\tO\n)\tO\t)\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\nand\tO\tand\tO\nupdated\tO\tupdated\tO\nit\tO\tit\tO\nwith\tO\twith\tO\neach\tO\teach\tO\nrequest\tO\trequest\tO\nafter\tO\tafter\tO\nchecking\tO\tchecking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ntimeout\tB-Variable_Name\ttimeout\tO\n.\tO\t.\tO\n\t\nSomething\tO\tSomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3079\tI-Code_Block\tA_3079\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhttp://www.poornerd.com/2014/04/01/how-to-implement-a-session-timeout-in-play-framework-2/\tO\thttp://www.poornerd.com/2014/04/01/how-to-implement-a-session-timeout-in-play-framework-2/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18281285\tO\t18281285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18281285/\tO\thttps://stackoverflow.com/questions/18281285/\tO\n\t\n\t\nOn\tO\tOn\tO\nwhat\tO\twhat\tO\ngood\tO\tgood\tO\nserves\tO\tserves\tO\nme\tO\tme\tO\na\tO\ta\tO\ntexture\tO\ttexture\tO\natlas\tO\tatlas\tO\nif\tO\tif\tO\nmy\tO\tmy\tO\n3D\tO\t3D\tO\ncharacter\tB-User_Interface_Element\tcharacter\tO\nis\tO\tis\tO\nbig\tO\tbig\tO\nenough\tO\tenough\tO\nand\tO\tand\tO\nfits\tO\tfits\tO\nonly\tO\tonly\tO\na\tO\ta\tO\nfew\tO\tfew\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n4k*4K\tO\t4k*4K\tO\nspritesheet\tB-User_Interface_Element\tspritesheet\tO\n?\tO\t?\tO\n\t\nSeems\tO\tSeems\tO\nlike\tO\tlike\tO\nbig\tO\tbig\tO\nresolution\tO\tresolution\tO\n(\tO\t(\tO\n420x768px\tO\t420x768px\tO\n)\tO\t)\tO\ngraphics\tO\tgraphics\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nbest\tO\tbest\tO\nsuited\tO\tsuited\tO\nfor\tO\tfor\tO\nsuch\tO\tsuch\tO\ntextures\tO\ttextures\tO\nand\tO\tand\tO\nused\tO\tused\tO\nin\tO\tin\tO\ncocos2d\tB-Library\tcocos2d\tO\n2\tB-Version\t2\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nnice\tO\tnice\tO\nanimations\tO\tanimations\tO\nfrom\tO\tfrom\tO\nframes\tO\tframes\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nis\tO\tis\tO\na\tO\ta\tO\n3d\tO\t3d\tO\nengine\tO\tengine\tO\nbest\tO\tbest\tO\nsuited\tO\tsuited\tO\nfor\tO\tfor\tO\nheavy\tO\theavy\tO\nsprite\tO\tsprite\tO\nanimations\tO\tanimations\tO\n?\tO\t?\tO\n\t\nAnyone\tO\tAnyone\tO\nencountered\tO\tencountered\tO\nsimilar\tO\tsimilar\tO\nlimitations\tO\tlimitations\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nheavy\tO\theavy\tO\nanimation\tO\tanimation\tO\ngame\tO\tgame\tO\nin\tO\tin\tO\ncocos2d\tB-Library\tcocos2d\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14478258\tO\t14478258\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14478258/\tO\thttps://stackoverflow.com/questions/14478258/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nbusy\tO\tbusy\tO\ncreating\tO\tcreating\tO\nvalidation\tO\tvalidation\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nduplicate-able\tO\tduplicate-able\tO\nfields\tO\tfields\tO\n,\tO\t,\tO\nso\tO\tso\tO\nfor\tO\tfor\tO\non\tO\ton\tO\nblur\tO\tblur\tO\nif\tO\tif\tO\nnothing\tO\tnothing\tO\nis\tO\tis\tO\nfilled\tO\tfilled\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\n'\tO\t'\tO\nName\tB-Variable_Name\tName\tO\n'\tO\t'\tO\nand\tO\tand\tO\nalso\tO\talso\tO\n'\tO\t'\tO\nSurname\tB-Variable_Name\tSurname\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nshows\tO\tshows\tO\nup\tO\tup\tO\nfor\tO\tfor\tO\nboth\tO\tboth\tO\ninputs\tO\tinputs\tO\n'\tO\t'\tO\nName\tB-Variable_Name\tName\tO\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\nSurname\tB-Variable_Name\tSurname\tO\n'\tO\t'\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nMind\tO\tMind\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nfields\tO\tfields\tO\nare\tO\tare\tO\nduplicate-able\tO\tduplicate-able\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nvalidation\tO\tvalidation\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\n,\tO\t,\tO\nhence\tO\thence\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwritten\tO\twritten\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nHelp\tO\tHelp\tO\nGreatly\tO\tGreatly\tO\nAppreciated\tO\tAppreciated\tO\n.\tO\t.\tO\n\t\nJsFiddle\tB-Application\tJsFiddle\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nJavascript\tB-Language\tJavascript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1380\tI-Code_Block\tQ_1380\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\nHTML\tB-Language\tHTML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1381\tI-Code_Block\tQ_1381\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14478258\tO\t14478258\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14478258/\tO\thttps://stackoverflow.com/questions/14478258/\tO\n\t\n\t\nSee\tO\tSee\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nhttp://jsfiddle.net/6QTyd/5/\tO\thttp://jsfiddle.net/6QTyd/5/\tO\n\t\nAlso\tO\tAlso\tO\nnote\tO\tnote\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\nthese\tO\tthese\tO\nareas\tO\tareas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1839\tI-Code_Block\tA_1839\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1840\tI-Code_Block\tA_1840\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30098932\tO\t30098932\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30098932/\tO\thttps://stackoverflow.com/questions/30098932/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\ncordova\tB-Library\tcordova\tO\nandroid\tB-Operating_System\tandroid\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nQuestion\tO\tQuestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\ncontinue\tO\tcontinue\tO\nhis\tO\this\tO\nwork\tO\twork\tO\nwhile\tO\twhile\tO\nsending\tO\tsending\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nserver\tB-Application\tserver\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\ndont\tO\tdont\tO\nwant\tO\twant\tO\nmy\tO\tmy\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nwait\tO\twait\tO\nwhile\tO\twhile\tO\ni\tO\ti\tO\nsync\tO\tsync\tO\nmy\tO\tmy\tO\nlocal\tO\tlocal\tO\ndatabase\tO\tdatabase\tO\nwith\tO\twith\tO\nremote\tO\tremote\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndont\tO\tdont\tO\nwant\tO\twant\tO\nmy\tO\tmy\tO\nwhole\tO\twhole\tO\napplication\tO\tapplication\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nbackground\tO\tbackground\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nsync\tO\tsync\tO\nprocess\tO\tprocess\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nbackground.The\tO\tbackground.The\tO\ntotal\tO\ttotal\tO\nsync\tO\tsync\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\ntaking\tO\ttaking\tO\n3\tO\t3\tO\nMinutes\tO\tMinutes\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\n.\tO\t.\tO\n\t\ncurrently\tO\tcurrently\tO\ni\tO\ti\tO\nam\tO\tam\tO\nshowing\tO\tshowing\tO\na\tO\ta\tO\npopup\tB-User_Interface_Element\tpopup\tO\nwith\tO\twith\tO\nmessage\tO\tmessage\tO\nSync\tB-Value\tSync\tO\nis\tI-Value\tis\tO\nin\tI-Value\tin\tO\nprogress\tI-Value\tprogress\tO\nwhich\tO\twhich\tO\nforces\tO\tforces\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\ncompletion\tO\tcompletion\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nsync\tO\tsync\tO\nprocess\tO\tprocess\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\nwithout\tO\twithout\tO\ndisturbing\tO\tdisturbing\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\nused\tO\tused\tO\nhttps://github.com/katzer/cordova-plugin-background-mode\tO\thttps://github.com/katzer/cordova-plugin-background-mode\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nwhen\tO\twhen\tO\nmy\tO\tmy\tO\nwhole\tO\twhole\tO\napplication\tO\tapplication\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nplugin\tO\tplugin\tO\nplease\tO\tplease\tO\npost\tO\tpost\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27882527\tO\t27882527\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27882527/\tO\thttps://stackoverflow.com/questions/27882527/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ntwo\tO\ttwo\tO\ndigit\tO\tdigit\tO\nstrings\tB-Data_Type\tstrings\tO\n,\tO\t,\tO\nmeaning\tO\tmeaning\tO\n1234\tB-Value\t1234\tO\n12+34\tI-Value\t12+34\tO\n(\tO\t(\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\ngather\tO\tgather\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwrote\tO\twrote\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\nexpect\tO\texpect\tO\nfor\tO\tfor\tO\none\tO\tone\tO\nexception\tO\texception\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nnumber\tO\tnumber\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\npair\tO\tpair\tO\nit\tO\tit\tO\nwont\tO\twont\tO\nadd\tO\tadd\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ni\tO\ti\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3249\tI-Code_Block\tQ_3249\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nso\tO\tso\tO\nbasically\tO\tbasically\tO\nif\tO\tif\tO\ni\tO\ti\tO\nhave\tO\thave\tO\n123\tB-Value\t123\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\ndoes\tO\tdoes\tO\n12+(30-48)\tB-Value\t12+(30-48)\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n12+\tB-Value\t12+\tO\n3\tI-Value\t3\tO\n.\tO\t.\tO\n\t\nIve\tO\tIve\tO\nbeen\tO\tbeen\tO\nsitting\tO\tsitting\tO\non\tO\ton\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncant\tO\tcant\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthat\tO\tthat\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nany\tO\tany\tO\ntips\tO\ttips\tO\nor\tO\tor\tO\nadvice\tO\tadvice\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nwelcomed\tO\twelcomed\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nStrings\tB-Data_Type\tStrings\tO\nlike\tO\tlike\tO\n1234\tB-Value\t1234\tO\nor\tO\tor\tO\n4567\tB-Value\t4567\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\n12+34\tB-Value\t12+34\tO\nand\tO\tand\tO\n45+67\tB-Value\t45+67\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27882527\tO\t27882527\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27882527/\tO\thttps://stackoverflow.com/questions/27882527/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3866\tI-Code_Block\tA_3866\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17345987\tO\t17345987\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17345987/\tO\thttps://stackoverflow.com/questions/17345987/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nd3\tB-Library\td3\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsvg\tB-File_Type\tsvg\tO\ncircles\tB-User_Interface_Element\tcircles\tO\non\tO\ton\tO\nleaflet\tB-Library\tleaflet\tO\nmap\tI-Library\tmap\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nfiddle\tB-Application\tfiddle\tO\nis\tO\tis\tO\nhere\tO\there\tO\nhttp://jsfiddle.net/nextstopsun/C3U8g/\tO\thttp://jsfiddle.net/nextstopsun/C3U8g/\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nadded\tO\tadded\tO\na\tO\ta\tO\nreset()\tB-Function_Name\treset()\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nviewreset\tB-Library_Function\tviewreset\tO\nevent\tO\tevent\tO\nto\tO\tto\tO\ncalculate\tO\tcalculate\tO\ntransformation\tO\ttransformation\tO\nfor\tO\tfor\tO\nsvg\tB-File_Type\tsvg\tO\ng\tB-Variable_Name\tg\tO\nelement\tO\telement\tO\ncontaining\tO\tcontaining\tO\nall\tO\tall\tO\ncircles\tB-User_Interface_Element\tcircles\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\non\tO\ton\tO\nmap\tO\tmap\tO\nviewreset\tB-Library_Function\tviewreset\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1759\tI-Code_Block\tQ_1759\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\noriginally\tO\toriginally\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nhttp://bost.ocks.org/mike/leaflet/\tO\thttp://bost.ocks.org/mike/leaflet/\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntransformation\tO\ttransformation\tO\nparameters\tO\tparameters\tO\nfor\tO\tfor\tO\ng\tB-Variable_Name\tg\tO\nelement\tO\telement\tO\nare\tO\tare\tO\nbeing\tO\tbeing\tO\nrecalculated\tO\trecalculated\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ncircles\tB-User_Interface_Element\tcircles\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nrepositioned\tO\trepositioned\tO\n(\tO\t(\tO\nor\tO\tor\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nrepositioned\tO\trepositioned\tO\nwrong\tO\twrong\tO\n)\tO\t)\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nalign\tO\talign\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nmap\tO\tmap\tO\ntilelayer\tB-Library_Class\ttilelayer\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nis\tO\tis\tO\nok\tO\tok\tO\nwhen\tO\twhen\tO\npaning\tO\tpaning\tO\nmap\tB-User_Interface_Element\tmap\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nchanged\tO\tchanged\tO\nfor\tO\tfor\tO\nproper\tO\tproper\tO\nrepositioning\tO\trepositioning\tO\non\tO\ton\tO\nzooming\tO\tzooming\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17345987\tO\t17345987\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17345987/\tO\thttps://stackoverflow.com/questions/17345987/\tO\n\t\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\ntransforming\tO\ttransforming\tO\nthe\tO\tthe\tO\ng\tB-Variable_Name\tg\tB-Code_Block\nelement\tO\telement\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\ncircles\tB-User_Interface_Element\tcircles\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nreset\tO\treset\tO\nthe\tO\tthe\tO\ncoordinates\tO\tcoordinates\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncircles\tB-User_Interface_Element\tcircles\tO\nthemselves\tO\tthemselves\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2271\tI-Code_Block\tA_2271\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUpdated\tO\tUpdated\tO\njsfiddle\tB-Application\tjsfiddle\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8687352\tO\t8687352\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8687352/\tO\thttps://stackoverflow.com/questions/8687352/\tO\n\t\n\t\nGood\tO\tGood\tO\nmorning\tO\tmorning\tO\nto\tO\tto\tO\nall\tO\tall\tO\n,\tO\t,\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npreferred\tO\tpreferred\tO\nway\tO\tway\tO\nto\tO\tto\tO\nembed\tO\tembed\tO\nimages\tB-User_Interface_Element\timages\tO\n(\tO\t(\tO\nand\tO\tand\tO\nother\tO\tother\tO\nmedia\tO\tmedia\tO\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\n)\tO\t)\tO\nin\tO\tin\tO\na\tO\ta\tO\ncocoa\tB-Library\tcocoa\tO\napplication\tO\tapplication\tO\n?\tO\t?\tO\n\t\nWindows\tB-Operating_System\tWindows\tO\nexecutables\tO\texecutables\tO\nhave\tO\thave\tO\na\tO\ta\tO\nresource\tO\tresource\tO\nsection\tO\tsection\tO\nthat\tO\tthat\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\narbitrary\tO\tarbitrary\tO\ndata\tO\tdata\tO\nand\tO\tand\tO\nextract\tO\textract\tO\nit\tO\tit\tO\nat\tO\tat\tO\nruntime\tO\truntime\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nmechanism\tO\tmechanism\tO\non\tO\ton\tO\nMac\tB-Operating_System\tMac\tO\nOS\tI-Operating_System\tOS\tO\nX\tB-Version\tX\tO\n?\tO\t?\tO\n\t\nMy\tO\tMy\tO\nprogram\tO\tprogram\tO\nuses\tO\tuses\tO\nseveral\tO\tseveral\tO\nicons\tB-User_Interface_Element\ticons\tO\nand\tO\tand\tO\nimages\tB-User_Interface_Element\timages\tO\n(\tO\t(\tO\nstatusmenu\tB-User_Interface_Element\tstatusmenu\tO\nicon\tI-User_Interface_Element\ticon\tO\n,\tO\t,\tO\nGUI\tB-User_Interface_Element\tGUI\tO\nbutton\tI-User_Interface_Element\tbutton\tO\nimages\tI-User_Interface_Element\timages\tO\netc\tO\tetc\tO\n)\tO\t)\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthem\tO\tthem\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nor\tO\tor\tO\na\tO\ta\tO\nresource\tO\tresource\tO\nlibrary\tO\tlibrary\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\njust\tO\tjust\tO\ndistribute\tO\tdistribute\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\nplain\tO\tplain\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8687352\tO\t8687352\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8687352/\tO\thttps://stackoverflow.com/questions/8687352/\tO\n\t\n\t\nAdding\tO\tAdding\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nresource\tB-File_Name\tresource\tO\ndirectory\tO\tdirectory\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nvast\tO\tvast\tO\nmajority\tO\tmajority\tO\nof\tO\tof\tO\ncases\tO\tcases\tO\n..\tO\t..\tO\n.\tO\t.\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ngood\tO\tgood\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\npostpone\tO\tpostpone\tO\ncreation\tO\tcreation\tO\nand\tO\tand\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nmakes\tO\tmakes\tO\nimmutable\tO\timmutable\tO\n,\tO\t,\tO\ncached\tO\tcached\tO\n,\tO\t,\tO\nreusable\tO\treusable\tO\ninstances\tO\tinstances\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nquick\tO\tquick\tO\ntool\tO\ttool\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nrepresentation\tO\trepresentation\tO\nand\tO\tand\tO\nemit\tO\temit\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\na\tO\ta\tO\nC\tB-File_Type\tC\tO\nfile\tO\tfile\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncompiled\tO\tcompiled\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nas\tO\tas\tO\nan\tO\tan\tO\ninput\tO\tinput\tO\nto\tO\tto\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\ncreator\tO\tcreator\tO\ncall\tO\tcall\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nan\tO\tan\tO\nNSImage\tB-Library_Class\tNSImage\tO\nor\tO\tor\tO\nCGImage\tB-Library_Class\tCGImage\tO\nrepresentation\tO\trepresentation\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nextreme\tO\textreme\tO\n-\tO\t-\tO\nperhaps\tO\tperhaps\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nfavor\tO\tfavor\tO\nremoving\tO\tremoving\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nextension\tO\textension\tO\n(\tO\t(\tO\nor\tO\tor\tO\njust\tO\tjust\tO\nchanging\tO\tchanging\tO\nit\tO\tit\tO\nto\tO\tto\tO\nsomething\tO\tsomething\tO\natypical\tO\tatypical\tO\n)\tO\t)\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncopying\tO\tcopying\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nresources\tB-File_Name\tresources\tO\ndirectory\tO\tdirectory\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23313136\tO\t23313136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23313136/\tO\thttps://stackoverflow.com/questions/23313136/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nlist\tB-Data_Structure\tlist\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nSubiste\tO\tSubiste\tO\nusing\tO\tusing\tO\nSharePoint\tB-Application\tSharePoint\tO\nDeigner\tI-Application\tDeigner\tO\n2013\tB-Version\t2013\tO\nCall\tO\tCall\tO\nHTTP\tO\tHTTP\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuccesfuly\tO\tsuccesfuly\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthis\tO\tthis\tO\nsolution\tO\tsolution\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\ntip\tO\ttip\tO\n:\tO\t:\tO\n\t\nhttp://mysharepointinsight.blogspot.com/2013/05/using-sharepoint-rest-services-from.html\tO\thttp://mysharepointinsight.blogspot.com/2013/05/using-sharepoint-rest-services-from.html\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncreate\tO\tcreate\tO\nlist\tB-Data_Structure\tlist\tO\nin\tO\tin\tO\nsubsite\tO\tsubsite\tO\nand\tO\tand\tO\nchange\tO\tchange\tO\nurl\tO\turl\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nfrom\tO\tfrom\tO\n\t\n/SITE/_api/web/lists/getbytitle('Test')/items\tO\t/SITE/_api/web/lists/getbytitle('Test')/items\tO\n\t\nto\tO\tto\tO\n\t\n/SITE/18/_api/web/lists/getbytitle('Test')/items\tO\t/SITE/18/_api/web/lists/getbytitle('Test')/items\tO\n\t\n(\tO\t(\tO\n18\tB-Value\t18\tO\n-\tO\t-\tO\nis\tO\tis\tO\nname\tO\tname\tO\nand\tO\tand\tO\nURL\tO\tURL\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nsubsite\tO\tsubsite\tO\n)\tO\t)\tO\n\t\nAction\tO\tAction\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\ncreating\tO\tcreating\tO\nitem\tO\titem\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nboth\tO\tboth\tO\nscenario\tO\tscenario\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nSP.Data.TestListItem\tB-Library_Class\tSP.Data.TestListItem\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\nmetadata\tO\tmetadata\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\nsolution\tO\tsolution\tO\n-\tO\t-\tO\nhttp://msdn.microsoft.com/en-us/library/jj822159.aspx\tO\thttp://msdn.microsoft.com/en-us/library/jj822159.aspx\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31079782\tO\t31079782\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31079782/\tO\thttps://stackoverflow.com/questions/31079782/\tO\n\t\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\na\tO\ta\tO\nSaaS\tO\tSaaS\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\na\tO\ta\tO\nwildcard\tO\twildcard\tO\nSSL\tO\tSSL\tO\ncert\tO\tcert\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\ndomain\tO\tdomain\tO\n:\tO\t:\tO\n*\tB-Value\t*\tB-Code_Block\n.webapp.com\tI-Value\t.webapp.com\tI-Code_Block\n\t\nCustomers\tO\tCustomers\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ndomain\tO\tdomain\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\naccount\tO\taccount\tO\n,\tO\t,\tO\nso\tO\tso\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nclient.webapp.com\tB-Value\tclient.webapp.com\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nsetup\tO\tsetup\tO\na\tO\ta\tO\nCNAME\tO\tCNAME\tO\nto\tO\tto\tO\nhave\tO\thave\tO\n:\tO\t:\tO\nclientdomain.com\tB-Value\tclientdomain.com\tB-Code_Block\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nclients\tB-Application\tclients\tO\nthat\tO\tthat\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nSSL\tO\tSSL\tO\ncert\tO\tcert\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\ncustom\tO\tcustom\tO\ndomains\tO\tdomains\tO\n.\tO\t.\tO\n\t\nWebapp\tO\tWebapp\tO\nalready\tO\talready\tO\nruns\tO\truns\tO\nhttps://client.webapp.com\tO\thttps://client.webapp.com\tB-Code_Block\nbut\tO\tbut\tO\nthey\tO\tthey\tO\nwant\tO\twant\tO\nhttps://clientdomain.com\tO\thttps://clientdomain.com\tB-Code_Block\n\t\nWe\tO\tWe\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\napache\tB-Application\tapache\tO\n(\tO\t(\tO\nvia\tO\tvia\tO\nPlesk\tB-Application\tPlesk\tO\n)\tO\t)\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20896349\tO\t20896349\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20896349/\tO\thttps://stackoverflow.com/questions/20896349/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nprocedural\tO\tprocedural\tO\ngeneration\tO\tgeneration\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ngame\tO\tgame\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreally\tO\treally\tO\ngrasp\tO\tgrasp\tO\nand\tO\tand\tO\nunderstand\tO\tunderstand\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nalgorithms\tO\talgorithms\tO\nnessecary\tO\tnessecary\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nsimply\tO\tsimply\tO\ncopying/pasting\tO\tcopying/pasting\tO\nexisting\tO\texisting\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nI\tO\tI\tO\n've\tO\t've\tO\nattempted\tO\tattempted\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\n1D\tO\t1D\tO\nmidpoint\tO\tmidpoint\tO\ndisplacement\tO\tdisplacement\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nown\tO\town\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nhere\tO\there\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nand\tO\tand\tO\nguide\tO\tguide\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncompleted\tO\tcompleted\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nthrow\tO\tthrow\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nresults\tO\tresults\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nappear\tO\tappear\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2218\tI-Code_Block\tQ_2218\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhere\tO\tWhere\tO\nexactly\tO\texactly\tO\nhave\tO\thave\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nmistakes\tO\tmistakes\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nmight\tO\tmight\tO\nI\tO\tI\tO\ncorrect\tO\tcorrect\tO\nthem\tO\tthem\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nresults\tO\tresults\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nexpecting\tO\texpecting\tO\nresults\tO\tresults\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20896349\tO\t20896349\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20896349/\tO\thttps://stackoverflow.com/questions/20896349/\tO\n\t\n\t\nThe\tO\tThe\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nsimple\tO\tsimple\tO\nand\tO\tand\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nimpressed\tO\timpressed\tO\nyou\tO\tyou\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\npotential\tO\tpotential\tO\noff-by-one\tO\toff-by-one\tO\nerrors\tO\terrors\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nline\tO\tline\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2795\tI-Code_Block\tA_2795\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncorrectly\tO\tcorrectly\tO\ncompute\tO\tcompute\tO\nthe\tO\tthe\tO\ncenter\tB-Variable_Name\tcenter\tO\nindex\tO\tindex\tO\nand\tO\tand\tO\nchange\tB-Variable_Name\tchange\tO\namount\tO\tamount\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nmissed\tO\tmissed\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nchange\tB-Variable_Name\tchange\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmidpoint\tO\tmidpoint\tO\nin\tO\tin\tO\nterms\tO\tterms\tO\nof\tO\tof\tO\nheight\tO\theight\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2796\tI-Code_Block\tA_2796\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20896349\tO\t20896349\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20896349/\tO\thttps://stackoverflow.com/questions/20896349/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nchanging\tO\tchanging\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nmidpoint\tO\tmidpoint\tO\nof\tO\tof\tO\neach\tO\teach\tO\nline\tO\tline\tO\nsegment\tO\tsegment\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nsegment\tO\tsegment\tO\nin\tO\tin\tO\nproportion\tO\tproportion\tO\nto\tO\tto\tO\nits\tO\tits\tO\ndistance\tO\tdistance\tO\nfrom\tO\tfrom\tO\neach\tO\teach\tO\nend\tO\tend\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmidpoint\tO\tmidpoint\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nappears\tO\tappears\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nsomething\tO\tsomething\tO\nmore\tO\tmore\tO\nlike\tO\tlike\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2793\tI-Code_Block\tA_2793\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nrun\tO\trun\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n,\tO\t,\tO\nit\tO\tit\tO\nproduces\tO\tproduces\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nresult\tO\tresult\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2794\tI-Code_Block\tA_2794\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42433948\tO\t42433948\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42433948/\tO\thttps://stackoverflow.com/questions/42433948/\tO\n\t\n\t\nWithin\tO\tWithin\tO\na\tO\ta\tO\nrequest\tO\trequest\tO\non\tO\ton\tO\nan\tO\tan\tO\nApiController\tB-Library_Class\tApiController\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntracking\tO\ttracking\tO\nthe\tO\tthe\tO\nduration\tO\tduration\tO\nof\tO\tof\tO\nawaiting\tO\tawaiting\tO\nthe\tO\tthe\tO\nSql\tB-Library_Class\tSql\tO\nConnection\tI-Library_Class\tConnection\tO\nto\tO\tto\tO\nopen\tO\topen\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5406\tI-Code_Block\tQ_5406\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nmy\tO\tmy\tO\nrequest\tO\trequest\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncalled\tO\tcalled\tO\nfor\tO\tfor\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n5\tO\t5\tO\nminutes\tO\tminutes\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nany\tO\tany\tO\nnew\tO\tnew\tO\ncall\tO\tcall\tO\nwill\tO\twill\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nduration\tO\tduration\tO\nof\tO\tof\tO\nOpenAsync\tB-Library_Function\tOpenAsync\tB-Code_Block\nbe\tO\tbe\tO\nhuge\tO\thuge\tO\n(\tO\t(\tO\nc\tO\tc\tO\n.\tO\t.\tO\n3s\tO\t3s\tO\n)\tO\t)\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nimmediate\tO\timmediate\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\nreason\tO\treason\tO\nto\tO\tto\tO\neradicate\tO\teradicate\tO\nthat\tO\tthat\tO\ncrazy\tO\tcrazy\tO\nslowness\tO\tslowness\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nan\tO\tan\tO\nendpoint\tO\tendpoint\tO\njust\tO\tjust\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nSqlConnection\tB-Library_Class\tSqlConnection\tB-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nwait\tO\twait\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n5\tO\t5\tO\nminutes\tO\tminutes\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\nthat\tO\tthat\tO\nOpenConnection\tB-Library_Function\tOpenConnection\tB-Code_Block\nendpoint\tO\tendpoint\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\nany\tO\tany\tO\nanother\tO\tanother\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nOpenConnection\tB-Library_Function\tOpenConnection\tB-Code_Block\nwill\tO\twill\tO\nincur\tO\tincur\tO\nthe\tO\tthe\tO\nwaiting\tO\twaiting\tO\ncost\tO\tcost\tO\nmentioned\tO\tmentioned\tO\nabove\tO\tabove\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nscheduled\tO\tscheduled\tO\na\tO\ta\tO\njob\tO\tjob\tO\non\tO\ton\tO\nAzure\tB-Application\tAzure\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nevery\tO\tevery\tO\nminute\tO\tminute\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nOpenConnection\tB-Library_Function\tOpenConnection\tB-Code_Block\nendpoint\tO\tendpoint\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nrequests\tO\trequests\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nhttp\tO\thttp\tO\nclient\tB-Application\tclient\tO\n,\tO\t,\tO\nI\tO\tI\tO\nincur\tO\tincur\tO\nthe\tO\tthe\tO\nwaiting\tO\twaiting\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nif\tO\tif\tO\nopened\tO\topened\tO\nthe\tO\tthe\tO\nSqlConnection\tB-Library_Class\tSqlConnection\tB-Code_Block\nwas\tO\twas\tO\nsomehow\tO\tsomehow\tO\nlinked\tO\tlinked\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhttp\tO\thttp\tO\nclient\tB-Application\tclient\tO\nip.\tO\tip.\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\n5\tO\t5\tO\nminutes\tO\tminutes\tO\nwindows\tO\twindows\tO\nis\tO\tis\tO\ntypical\tO\ttypical\tO\nof\tO\tof\tO\nDNS\tO\tDNS\tO\nTTL.\tO\tTTL.\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n3s\tO\t3s\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nDNS\tO\tDNS\tO\nlookup\tO\tlookup\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nDatabase\tO\tDatabase\tO\nendpoint\tO\tendpoint\tO\nis\tO\tis\tO\ntoo\tO\ttoo\tO\nlong\tO\tlong\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n2\tO\t2\tO\n\t\nTime\tO\tTime\tO\nobserved\tO\tobserved\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nhtt\tO\thtt\tO\nclient\tB-Application\tclient\tO\nlevel\tO\tlevel\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\nboth\tO\tboth\tO\nawaiting\tO\tawaiting\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nconnection\tO\tconnection\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nlatencies\tO\tlatencies\tO\n(\tO\t(\tO\ndns\tO\tdns\tO\nlookup\tO\tlookup\tO\n?\tO\t?\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\ntable\tO\ttable\tO\nsummarizing\tO\tsummarizing\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nobserve\tO\tobserve\tO\n:\tO\t:\tO\n\t\nUPDATE\tO\tUPDATE\tO\n3\tO\t3\tO\n\t\nThe\tO\tThe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nrow\tO\trow\tO\n3\tO\t3\tO\nand\tO\tand\tO\n4\tO\t4\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ntable\tO\ttable\tO\nis\tO\tis\tO\ntime\tO\ttime\tO\nspent\tO\tspent\tO\nin\tO\tin\tO\nTCP/IP\tO\tTCP/IP\tO\nConnect\tO\tConnect\tO\nand\tO\tand\tO\nHTTPS\tO\tHTTPS\tO\nHandshake\tO\tHandshake\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nFiddler\tB-Application\tFiddler\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nfocus\tO\tfocus\tO\non\tO\ton\tO\nit\tO\tit\tO\non\tO\ton\tO\nthat\tO\tthat\tO\npost\tO\tpost\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nspent\tO\tspent\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nSqlConnection\tB-Library_Class\tSqlConnection\tB-Code_Block\nto\tO\tto\tO\nopen\tO\topen\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n4\tO\t4\tO\n\t\nActually\tO\tActually\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nboth\tO\tboth\tO\ntwo\tO\ttwo\tO\nwaiting\tO\twaiting\tO\ntimes\tO\ttimes\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nreason\tO\treason\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nserver\tB-Application\tserver\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nkeep\tO\tkeep\tO\nalive\tO\talive\tO\n\"\tO\t\"\tO\nits\tO\tits\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndatabase\tB-Application\tdatabase\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nkeep\tO\tkeep\tO\nalive\tO\talive\tO\n\"\tO\t\"\tO\nits\tO\tits\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n5\tO\t5\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\na\tO\ta\tO\njob\tO\tjob\tO\nrunning\tO\trunning\tO\nevery\tO\tevery\tO\n4\tO\t4\tO\nminutes\tO\tminutes\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nSqlConnection\tB-Library_Class\tSqlConnection\tB-Code_Block\nbut\tO\tbut\tO\nonce\tO\tonce\tO\nin\tO\tin\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nincurring\tO\tincurring\tO\nthe\tO\tthe\tO\nwaiting\tO\twaiting\tO\ncost\tO\tcost\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\ninactivity\tO\tinactivity\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\n4\tO\t4\tO\nminutes\tO\tminutes\tO\nnot\tO\tnot\tO\n5\tO\t5\tO\n(\tO\t(\tO\nhence\tO\thence\tO\nI\tO\tI\tO\nupdated\tO\tupdated\tO\nthis\tO\tthis\tO\npost\tO\tpost\tO\ntitle\tO\ttitle\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nupdated\tO\tupdated\tO\nmy\tO\tmy\tO\nscheduled\tO\tscheduled\tO\njob\tO\tjob\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nevery\tO\tevery\tO\nminute\tO\tminute\tO\n.\tO\t.\tO\n\t\nthen\tO\tthen\tO\nI\tO\tI\tO\nrealised\tO\trealised\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nstill\tO\tstill\tO\nincurring\tO\tincurring\tO\nthe\tO\tthe\tO\nwaiting\tO\twaiting\tO\ncost\tO\tcost\tO\nbut\tO\tbut\tO\nregularly\tO\tregularly\tO\nevery\tO\tevery\tO\n30\tO\t30\tO\nminutes\tO\tminutes\tO\n(\tO\t(\tO\nhence\tO\thence\tO\nI\tO\tI\tO\nupdated\tO\tupdated\tO\nthis\tO\tthis\tO\npost\tO\tpost\tO\ntitle\tO\ttitle\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\ntwo\tO\ttwo\tO\ntimes\tO\ttimes\tO\nstrangely\tO\tstrangely\tO\ncorrelates\tO\tcorrelates\tO\nwith\tO\twith\tO\nthose\tO\tthose\tO\nof\tO\tof\tO\nAzure\tB-Application\tAzure\tO\nLoad\tI-Application\tLoad\tO\nBalancer\tI-Application\tBalancer\tO\nIdle\tO\tIdle\tO\nTimeout\tO\tTimeout\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21535890\tO\t21535890\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21535890/\tO\thttps://stackoverflow.com/questions/21535890/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nmy\tO\tmy\tO\nadmin\tO\tadmin\tO\nfolder\tO\tfolder\tO\nprotected\tO\tprotected\tO\nwith\tO\twith\tO\nhtaccess\tB-File_Type\thtaccess\tO\nfile.Here\tO\tfile.Here\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nhtaccess\tB-File_Type\thtaccess\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2318\tI-Code_Block\tQ_2318\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\nhtpasswd\tB-File_Type\thtpasswd\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nhad\tO\thad\tO\npassword\tO\tpassword\tO\nencrypted\tO\tencrypted\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nfolder\tB-User_Interface_Element\tfolder\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\naccept\tO\taccept\tO\nmy\tO\tmy\tO\npassword\tO\tpassword\tO\nand\tO\tand\tO\nopens\tO\topens\tO\nanother\tO\tanother\tO\nlogin\tB-User_Interface_Element\tlogin\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nset\tO\tset\tO\npassword\tO\tpassword\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nadmin\tO\tadmin\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nencryption\tO\tencryption\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nhave\tO\thave\tO\nidea\tO\tidea\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nimportant\tO\timportant\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\napache\tB-Application\tapache\tO\nerror\tO\terror\tO\nlog\tO\tlog\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2319\tI-Code_Block\tQ_2319\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32993829\tO\t32993829\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32993829/\tO\thttps://stackoverflow.com/questions/32993829/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nstill\tO\tstill\tO\nstruggling\tO\tstruggling\tO\nwith\tO\twith\tO\nR\tB-Language\tR\tO\nplots\tB-Library_Function\tplots\tO\nand\tO\tand\tO\ncolors\tO\tcolors\tO\n-\tO\t-\tO\n-\tO\t-\tO\nsome\tO\tsome\tO\nresults\tO\tresults\tO\nare\tO\tare\tO\nas\tO\tas\tO\nI\tO\tI\tO\nexpected\tO\texpected\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\n2-million\tO\t2-million\tO\npoint\tO\tpoint\tO\ndata\tO\tdata\tO\nset\tO\tset\tO\n,\tO\t,\tO\ngenerated\tO\tgenerated\tO\nby\tO\tby\tO\na\tO\ta\tO\nsimulation\tO\tsimulation\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nseveral\tO\tseveral\tO\nvariables\tO\tvariables\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndataset\tO\tdataset\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\ninterested\tO\tinterested\tO\non\tO\ton\tO\nthree\tO\tthree\tO\nand\tO\tand\tO\non\tO\ton\tO\na\tO\ta\tO\nfactor\tO\tfactor\tO\nthat\tO\tthat\tO\ndescribe\tO\tdescribe\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nshort\tO\tshort\tO\nsnippet\tO\tsnippet\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nreads\tO\treads\tO\nthe\tO\tthe\tO\npoints\tO\tpoints\tO\nand\tO\tand\tO\nget\tO\tget\tO\nsome\tO\tsome\tO\nbasic\tO\tbasic\tO\nstatistics\tO\tstatistics\tO\non\tO\ton\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4003\tI-Code_Block\tQ_4003\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4004\tI-Code_Block\tQ_4004\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nlarge\tO\tlarge\tO\n,\tO\t,\tO\ncannot\tO\tcannot\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nlink\tO\tlink\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthese\tO\tthese\tO\npoints\tO\tpoints\tO\nin\tO\tin\tO\na\tO\ta\tO\nscatterplot\tO\tscatterplot\tO\nmatrix\tB-Data_Structure\tmatrix\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4005\tI-Code_Block\tQ_4005\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nexpected\tO\texpected\tO\n,\tO\t,\tO\npoints\tO\tpoints\tO\nfrom\tO\tfrom\tO\nclass\tO\tclass\tO\nE\tB-Variable_Name\tE\tO\nare\tO\tare\tO\nin\tO\tin\tO\nvast\tO\tvast\tO\nmajority\tO\tmajority\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nsee\tO\tsee\tO\npoints\tO\tpoints\tO\nof\tO\tof\tO\nother\tO\tother\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nexpected\tO\texpected\tO\nthe\tO\tthe\tO\npoints\tO\tpoints\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nplotted\tO\tplotted\tO\nin\tO\tin\tO\nmagenta\tO\tmagenta\tO\n(\tO\t(\tO\nclasses\tO\tclasses\tO\nare\tO\tare\tO\nA\tB-Class_Name\tA\tO\n,\tO\t,\tO\nB\tB-Class_Name\tB\tO\n,\tO\t,\tO\nC\tB-Class_Name\tC\tO\n,\tO\t,\tO\nD\tB-Class_Name\tD\tO\n,\tO\t,\tO\nE\tB-Class_Name\tE\tO\n,\tO\t,\tO\nN\tB-Class_Name\tN\tO\n;\tO\t;\tO\ncolors\tO\tcolors\tO\nare\tO\tare\tO\nred\tB-Value\tred\tO\n,\tO\t,\tO\ngreen\tB-Value\tgreen\tO\n,\tO\t,\tO\nblue\tB-Value\tblue\tO\n,\tO\t,\tO\ncyan\tB-Value\tcyan\tO\n,\tO\t,\tO\nmagenta\tB-Value\tmagenta\tO\n,\tO\t,\tO\nyellow\tB-Value\tyellow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\nclass\tO\tclass\tO\nby\tO\tby\tO\nclass\tO\tclass\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\ntwo\tO\ttwo\tO\nexamples\tO\texamples\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4006\tI-Code_Block\tQ_4006\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ngives\tO\tgives\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nsnippet\tO\tsnippet\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4007\tI-Code_Block\tQ_4007\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ngives\tO\tgives\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nalso\tO\talso\tO\nseems\tO\tseems\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n:\tO\t:\tO\na\tO\ta\tO\nplot\tB-User_Interface_Element\tplot\tO\nof\tO\tof\tO\npoints\tO\tpoints\tO\nof\tO\tof\tO\nall\tO\tall\tO\nclasses\tO\tclasses\tO\nexcept\tO\texcept\tO\nE\tB-Class_Name\tE\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4008\tI-Code_Block\tQ_4008\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nplot\tB-User_Interface_Element\tplot\tO\nthe\tO\tthe\tO\npoints\tO\tpoints\tO\nare\tO\tare\tO\nblue\tB-Variable_Name\tblue\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nmagenta\tB-Variable_Name\tmagenta\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nsomehow\tO\tsomehow\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nColor\tO\tColor\tO\ngradient\tO\tgradient\tO\nfor\tO\tfor\tO\nelevation\tO\televation\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\na\tO\ta\tO\nXYZ\tO\tXYZ\tO\nplot\tO\tplot\tO\nwith\tO\twith\tO\nR\tB-Language\tR\tO\nand\tO\tand\tO\nLattice\tB-Library\tLattice\tO\nbut\tO\tbut\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nfactors\tO\tfactors\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\ncolors\tO\tcolors\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nscatterplot\tO\tscatterplot\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nalso\tO\talso\tO\nread\tO\tread\tO\nChanging\tO\tChanging\tO\ndefault\tO\tdefault\tO\ncolours\tO\tcolours\tO\nof\tO\tof\tO\na\tO\ta\tO\nlattice\tO\tlattice\tO\nplot\tO\tplot\tO\nby\tO\tby\tO\nfactor\tO\tfactor\tO\n-\tO\t-\tO\n-\tO\t-\tO\ngrouping\tO\tgrouping\tO\nplots\tO\tplots\tO\nby\tO\tby\tO\na\tO\ta\tO\nfactor\tO\tfactor\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nparameter\tO\tparameter\tO\ngroups.factor\tB-Code_Block\tgroups.factor\tO\n=\tI-Code_Block\t=\tO\nmyData$Class\tI-Code_Block\tmyData$Class\tO\n)\tO\t)\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsolve\tO\tsolve\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nplots\tB-User_Interface_Element\tplots\tO\nare\tO\tare\tO\nstill\tO\tstill\tO\nin\tO\tin\tO\nblue\tO\tblue\tO\nbut\tO\tbut\tO\nseparated\tO\tseparated\tO\nby\tO\tby\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nEdited\tO\tEdited\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nfake\tO\tfake\tO\ndata\tO\tdata\tO\nset\tO\tset\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\ntests\tO\ttests\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4009\tI-Code_Block\tQ_4009\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nplot\tO\tplot\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4010\tI-Code_Block\tQ_4010\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nplot\tB-User_Interface_Element\tplot\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\npoints\tO\tpoints\tO\nare\tO\tare\tO\nin\tO\tin\tO\nblue\tB-Value\tblue\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32993829\tO\t32993829\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32993829/\tO\thttps://stackoverflow.com/questions/32993829/\tO\n\t\n\t\nJeremyCG\tB-User_Name\tJeremyCG\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncomplete\tO\tcomplete\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nfuture\tO\tfuture\tO\nreference\tO\treference\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4695\tI-Code_Block\tA_4695\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\nshowed\tO\tshowed\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4696\tI-Code_Block\tA_4696\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nClass\tO\tClass\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nfactor\tO\tfactor\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nsolved\tO\tsolved\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4697\tI-Code_Block\tA_4697\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nplot\tO\tplot\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4698\tI-Code_Block\tA_4698\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n:\tO\t:\tO\n\t\nThanks\tO\tThanks\tO\n@jeremycg\tB-User_Name\t@jeremycg\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28931237\tO\t28931237\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28931237/\tO\thttps://stackoverflow.com/questions/28931237/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\non\tO\ton\tO\nUbuntu\tB-Operating_System\tUbuntu\tO\n14.04\tB-Version\t14.04\tO\nwith\tO\twith\tO\ncuda\tB-Application\tcuda\tO\ntoolkit\tI-Application\ttoolkit\tO\n6.5\tB-Version\t6.5\tO\n,\tO\t,\tO\nnvidia\tB-Application\tnvidia\tO\ndriver\tI-Application\tdriver\tO\nversion\tO\tversion\tO\n340.29\tB-Version\t340.29\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napplication\tO\tapplication\tO\nregisters\tO\tregisters\tO\na\tO\ta\tO\npixel\tO\tpixel\tO\nbuffer\tO\tbuffer\tO\nfrom\tO\tfrom\tO\nopenGL\tB-Library\topenGL\tO\nand\tO\tand\tO\nwrites\tO\twrites\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbuffer\tO\tbuffer\tO\nevery\tO\tevery\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\ncopies\tO\tcopies\tO\nthe\tO\tthe\tO\nPBO\tO\tPBO\tO\nto\tO\tto\tO\na\tO\ta\tO\ntexture\tO\ttexture\tO\nusing\tO\tusing\tO\nglTexSubImage2D\tB-Library_Class\tglTexSubImage2D\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndraws\tO\tdraws\tO\nthe\tO\tthe\tO\ntexture\tO\ttexture\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nall\tO\tall\tO\nworks\tO\tworks\tO\nproperly\tO\tproperly\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nmy\tO\tmy\tO\nimage-generation\tB-Application\timage-generation\tO\nkernel\tI-Application\tkernel\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\ngdb\tB-Application\tgdb\tO\nreports\tO\treports\tO\na\tO\ta\tO\nsegmentation\tB-Error_Name\tsegmentation\tO\nfault\tI-Error_Name\tfault\tO\nin\tO\tin\tO\ncudaGraphicsGLRegisterBuffer\tB-Library_Class\tcudaGraphicsGLRegisterBuffer\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ncuda\tB-Library\tcuda\tO\nkernel\tB-Application\tkernel\tO\nis\tO\tis\tO\ncompletely\tO\tcompletely\tO\nunrelated\tO\tunrelated\tO\nto\tO\tto\tO\ncudaGraphicsGLRegisterBuffer\tB-Library_Class\tcudaGraphicsGLRegisterBuffer\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nbefore\tO\tbefore\tO\nany\tO\tany\tO\nprocessing\tO\tprocessing\tO\n.\tO\t.\tO\n\t\nMakefile\tB-File_Name\tMakefile\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3417\tI-Code_Block\tQ_3417\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nmain.cu\tB-File_Name\tmain.cu\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3418\tI-Code_Block\tQ_3418\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGLdisplay.cu\tB-File_Name\tGLdisplay.cu\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3419\tI-Code_Block\tQ_3419\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGLdisplay.h\tB-File_Name\tGLdisplay.h\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3420\tI-Code_Block\tQ_3420\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nvert.glsl\tB-File_Name\tvert.glsl\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3421\tI-Code_Block\tQ_3421\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nfrag.glsl\tB-File_Name\tfrag.glsl\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3422\tI-Code_Block\tQ_3422\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28931237\tO\t28931237\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28931237/\tO\thttps://stackoverflow.com/questions/28931237/\tO\n\t\n\t\nUpdating\tO\tUpdating\tO\nto\tO\tto\tO\nnvidia\tB-Application\tnvidia\tO\ndisplay\tI-Application\tdisplay\tO\ndriver\tI-Application\tdriver\tO\n346.47\tB-Version\t346.47\tO\nsolved\tO\tsolved\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\ncompletely\tO\tcompletely\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nunsure\tO\tunsure\tO\n,\tO\t,\tO\nrun\tO\trun\tO\nnvidia-smi\tB-Code_Block\tnvidia-smi\tB-Code_Block\nin\tO\tin\tO\na\tO\ta\tO\nterminal\tB-Application\tterminal\tO\nwindow\tO\twindow\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nNVIDIA-SMI\tB-Value\tNVIDIA-SMI\tB-Code_Block\n346.xx\tI-Value\t346.xx\tI-Code_Block\n(\tO\t(\tO\nxx\tB-Value\txx\tO\nbeing\tO\tbeing\tO\nan\tO\tan\tO\narbitrary\tO\tarbitrary\tO\nnumber\tO\tnumber\tO\n)\tO\t)\tO\n,\tO\t,\tO\nupdate\tO\tupdate\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnewest\tO\tnewest\tO\ndriver\tO\tdriver\tO\navailable\tO\tavailable\tO\nfrom\tO\tfrom\tO\nnvidia\tB-Organization\tnvidia\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nof\tO\tof\tO\nwriting\tO\twriting\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nCUDA\tB-Application\tCUDA\tO\ntoolkit\tI-Application\ttoolkit\tO\n6.5\tB-Version\t6.5\tO\nships\tO\tships\tO\nwith\tO\twith\tO\nan\tO\tan\tO\noutdated\tO\toutdated\tO\ngraphics\tB-Application\tgraphics\tO\ndriver\tI-Application\tdriver\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28931237\tO\t28931237\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28931237/\tO\thttps://stackoverflow.com/questions/28931237/\tO\n\t\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nlacks\tO\tlacks\tO\nerror\tO\terror\tO\ncondition\tO\tcondition\tO\nchecking\tO\tchecking\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nand\tO\tand\tO\nforemost\tO\tforemost\tO\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nyou\tO\tyou\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\ncode\tO\tcode\tO\nstatus\tO\tstatus\tO\nafter\tO\tafter\tO\neach\tO\teach\tO\nand\tO\tand\tO\nevery\tO\tevery\tO\nOpenGL\tB-Library\tOpenGL\tO\nand\tO\tand\tO\nCUDA\tB-Library\tCUDA\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nstrong\tO\tstrong\tO\nhunch\tO\thunch\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nchecking\tO\tchecking\tO\nwill\tO\twill\tO\ntell\tO\ttell\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n:\tO\t:\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nnever\tO\tnever\tO\nproperly\tO\tproperly\tO\nunbind\tO\tunbind\tO\nthe\tO\tthe\tO\nPBO\tO\tPBO\tO\nfrom\tO\tfrom\tO\nOpenGL\tB-Library\tOpenGL\tO\nbefore\tO\tbefore\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nCUDA\tB-Library\tCUDA\tO\npointer\tB-Data_Type\tpointer\tO\n.\tO\t.\tO\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\ntakes\tO\ttakes\tO\nthis\tO\tthis\tO\nmay\tO\tmay\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nPBO\tO\tPBO\tO\nactually\tO\tactually\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nmapped\tO\tmapped\tO\n,\tO\t,\tO\nhence\tO\thence\tO\ngiving\tO\tgiving\tO\nyou\tO\tyou\tO\nan\tO\tan\tO\ninvalid\tO\tinvalid\tO\npointer\tB-Data_Type\tpointer\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\naccessed\tO\taccessed\tO\n,\tO\t,\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nCUDA\tB-Library\tCUDA\tO\nkernel\tB-Application\tkernel\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nhost\tO\thost\tO\n,\tO\t,\tO\nwill\tO\twill\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\na\tO\ta\tO\nsegfault\tB-Error_Name\tsegfault\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\npin\tO\tpin\tO\ndown\tO\tdown\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nstatus\tO\tstatus\tO\nof\tO\tof\tO\nevery\tO\tevery\tO\nOpenGL\tB-Library\tOpenGL\tO\nand\tO\tand\tO\nCUDA\tB-Library\tCUDA\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nCUDA\tB-Library\tCUDA\tO\nwill\tO\twill\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\nit\tO\tit\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nmap\tO\tmap\tO\na\tO\ta\tO\nOpenGL\tB-Library\tOpenGL\tO\nresource\tO\tresource\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nwhatever\tO\twhatever\tO\nreason\tO\treason\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nresource\tO\tresource\tO\nstill\tO\tstill\tO\nbeing\tO\tbeing\tO\nbound\tO\tbound\tO\nto\tO\tto\tO\na\tO\ta\tO\nOpenGL\tB-Library\tOpenGL\tO\nfunctional\tO\tfunctional\tO\nunit\tO\tunit\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19766098\tO\t19766098\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19766098/\tO\thttps://stackoverflow.com/questions/19766098/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\ngwt\tB-Application\tgwt\tO\nand\tO\tand\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\na\tO\ta\tO\nsvg\tB-File_Type\tsvg\tO\nfile\tO\tfile\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nget\tO\tget\tO\nfrom\tO\tfrom\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nsvg\tB-File_Type\tsvg\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\nand\tO\tand\tO\ndisplay\tO\tdisplay\tO\nusing\tO\tusing\tO\nHTMLPanel\tB-Library_Class\tHTMLPanel\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nevents\tO\tevents\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nfired.Like\tO\tfired.Like\tO\nmouse\tB-Device\tmouse\tO\nover\tO\tover\tO\n,\tO\t,\tO\ndrag\tO\tdrag\tO\nand\tO\tand\tO\ndrop\tO\tdrop\tO\nevents\tB-Library_Class\tevents\tO\netc\tO\tetc\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\ninside\tO\tinside\tO\n\t\nthe\tO\tthe\tO\nsvg\tB-File_Type\tsvg\tO\nfile\tO\tfile\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nfired\tO\tfired\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nbelow\tO\tbelow\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n\t\nimage\tB-Code_Block\timage\tO\n=\tI-Code_Block\t=\tO\nnew\tI-Code_Block\tnew\tO\nHTMLPanel(response.getText())\tI-Code_Block\tHTMLPanel(response.getText())\tO\n;\tI-Code_Block\t;\tO\n\t\nrootPanel.add(image)\tB-Code_Block\trootPanel.add(image)\tO\n;\tI-Code_Block\t;\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n,\tO\t,\tO\n\t\nPradeep\tB-User_Name\tPradeep\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19766098\tO\t19766098\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19766098/\tO\thttps://stackoverflow.com/questions/19766098/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nguessing\tO\tguessing\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nSVG\tB-File_Type\tSVG\tO\nXML\tB-Language\tXML\tO\nor\tO\tor\tO\na\tO\ta\tO\nData\tO\tData\tO\nURI\tO\tURI\tO\nas\tO\tas\tO\nHTML\tB-Language\tHTML\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nso\tO\tso\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\ntext\tO\ttext\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\ngenerate\tO\tgenerate\tO\nany\tO\tany\tO\nevents\tO\tevents\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nHTMLPanel\tB-Library_Class\tHTMLPanel\tB-Code_Block\nwill\tO\twill\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nshould\tO\tshould\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nhandler\tO\thandler\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nHTMLPanel\tB-Library_Class\tHTMLPanel\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2630\tI-Code_Block\tA_2630\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAttach\tO\tAttach\tO\nother\tO\tother\tO\nevent\tB-Library_Class\tevent\tO\nhandlers\tO\thandlers\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33895528\tO\t33895528\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33895528/\tO\thttps://stackoverflow.com/questions/33895528/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ncurrently\tO\tcurrently\tO\ncreating\tO\tcreating\tO\nsharded\tO\tsharded\tO\ntables\tB-Data_Structure\ttables\tO\ndaily\tO\tdaily\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nPython\tB-Library\tPython\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\n's\tO\t's\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nwhen\tO\twhen\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndoc\tO\tdoc\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nstill\tO\tstill\tO\nbe\tO\tbe\tO\nimplemented\tO\timplemented\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33895528\tO\t33895528\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33895528/\tO\thttps://stackoverflow.com/questions/33895528/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nREST\tB-Library\tREST\tO\nAPI\tI-Library\tAPI\tO\nfor\tO\tfor\tO\nBigQuery\tB-Application\tBigQuery\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\ntables.Insert\tB-Function_Name\ttables.Insert\tO\ntakes\tO\ttakes\tO\na\tO\ta\tO\ntable\tB-Data_Structure\ttable\tO\nresource\tO\tresource\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nschema.fields[].description\tB-Library_Variable\tschema.fields[].description\tB-Code_Block\nproperty\tO\tproperty\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nin\tO\tin\tO\na\tO\ta\tO\ndescription\tO\tdescription\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29008720\tO\t29008720\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29008720/\tO\thttps://stackoverflow.com/questions/29008720/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nthinking\tO\tthinking\tO\non\tO\ton\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nBundle\tO\tBundle\tO\non\tO\ton\tO\nApp\tB-Application\tApp\tO\nStore\tI-Application\tStore\tO\nwith\tO\twith\tO\nApps\tO\tApps\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nfree\tO\tfree\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfree\tO\tfree\tO\napp\tO\tapp\tO\nbundle\tO\tbundle\tO\non\tO\ton\tO\nApp\tB-Application\tApp\tO\nStore\tI-Application\tStore\tO\n?\tO\t?\tO\n\t\nAs\tO\tAs\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nminimum\tO\tminimum\tO\nprice\tO\tprice\tO\noption\tO\toption\tO\nis\tO\tis\tO\nTier\tO\tTier\tO\n1\tO\t1\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nTier\tO\tTier\tO\n0\tO\t0\tO\n)\tO\t)\tO\nand\tO\tand\tO\nApple\tB-Organization\tApple\tO\ntalks\tO\ttalks\tO\nabout\tO\tabout\tO\n'\tO\t'\tO\nreduced\tO\treduced\tO\nprice\tO\tprice\tO\npack\tO\tpack\tO\n'\tO\t'\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nno\tO\tno\tO\noption\tO\toption\tO\nto\tO\tto\tO\ngroup\tO\tgroup\tO\nseveral\tO\tseveral\tO\nfree\tO\tfree\tO\napps\tO\tapps\tO\nin\tO\tin\tO\na\tO\ta\tO\nfree\tO\tfree\tO\nApple\tB-Organization\tApple\tO\nBundle\tO\tBundle\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29008720\tO\t29008720\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29008720/\tO\thttps://stackoverflow.com/questions/29008720/\tO\n\t\n\t\nNo\tO\tNo\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\n:\tO\t:\tO\ndocumentation\tO\tdocumentation\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29008720\tO\t29008720\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29008720/\tO\thttps://stackoverflow.com/questions/29008720/\tO\n\t\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nanswers/comments\tO\tanswers/comments\tO\n,\tO\t,\tO\nTier-0\tO\tTier-0\tO\nbundles\tO\tbundles\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\n.\tO\t.\tO\n\t\nDespite\tO\tDespite\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nstill\tO\tstill\tO\ncan\tO\tcan\tO\ngo\tO\tgo\tO\nahead\tO\tahead\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nbundle\tO\tbundle\tO\nof\tO\tof\tO\nfree\tO\tfree\tO\napps\tO\tapps\tO\n:\tO\t:\tO\n\t\nthis\tO\tthis\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\neven\tO\teven\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nreview\tO\treview\tO\nand\tO\tand\tO\nbe\tO\tbe\tO\napproved\tO\tapproved\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nmade\tO\tmade\tO\navailable\tO\tavailable\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nstore\tO\tstore\tO\nbecause\tO\tbecause\tO\n\"\tO\t\"\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\nchoose\tO\tchoose\tO\na\tO\ta\tO\ncompatible\tO\tcompatible\tO\nprice\tO\tprice\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nask\tO\task\tO\nfor\tO\tfor\tO\n$1\tO\t$1\tO\n,\tO\t,\tO\na.k.a\tO\ta.k.a\tO\n.\tO\t.\tO\n\t\ntier-1\tO\ttier-1\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nbundle\tO\tbundle\tO\nof\tO\tof\tO\nfree\tO\tfree\tO\napps\tO\tapps\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nradar\tO\tradar\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmatter\tO\tmatter\tO\n:\tO\t:\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nalso\tO\talso\tO\nagree\tO\tagree\tO\nthat\tO\tthat\tO\nfree\tO\tfree\tO\nbundles\tO\tbundles\tO\nshould\tO\tshould\tO\nexist\tO\texist\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nfeel\tO\tfeel\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\ndupe\tO\tdupe\tO\nit\tO\tit\tO\nat\tO\tat\tO\nbugreport.apple.com\tO\tbugreport.apple.com\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6681932\tO\t6681932\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6681932/\tO\thttps://stackoverflow.com/questions/6681932/\tO\n\t\n\t\nMe\tO\tMe\tO\nagain\tO\tagain\tO\n!\tO\t!\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nmodel\tO\tmodel\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_502\tI-Code_Block\tQ_502\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhere\tO\there\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\nindex\tB-Function_Name\tindex\tO\nand\tO\tand\tO\nbrowse\tB-Function_Name\tbrowse\tO\ncontrollers\tO\tcontrollers\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_503\tI-Code_Block\tQ_503\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nmy\tO\tmy\tO\nindex\tB-Function_Name\tindex\tO\nis\tO\tis\tO\ngrouping\tO\tgrouping\tO\nevents\tO\tevents\tO\nby\tO\tby\tO\ndate\tO\tdate\tO\nand\tO\tand\tO\nreturning\tO\treturning\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nconnected\tO\tconnected\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\ndate\tO\tdate\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadda\tO\tadda\tO\nbrowse\tB-Function_Name\tbrowse\tO\nlink\tB-Variable_Name\tlink\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nlist\tO\tlist\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndate\tO\tdate\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nDateTime\tB-Library_Class\tDateTime\tO\n's\tO\t's\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nlinq\tB-Library\tlinq\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\njust\tO\tjust\tO\nreturns\tO\treturns\tO\nblank\tO\tblank\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nGREATLY\tO\tGREATLY\tO\nappreciated\tO\tappreciated\tO\nyou\tO\tyou\tO\nbeautiful\tO\tbeautiful\tO\npeople\tO\tpeople\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nupdate\tO\tupdate\tO\n:\tO\t:\tO\n\t\nHey\tO\tHey\tO\n!\tO\t!\tO\n\t\nGot\tO\tGot\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\n\t\nHere\tO\tHere\tO\n;s\tO\t;s\tO\nmy\tO\tmy\tO\nnew\tO\tnew\tO\ncontroller\tO\tcontroller\tO\n;\tO\t;\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_504\tI-Code_Block\tQ_504\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nwhat\tO\twhat\tO\ndid\tO\tdid\tO\nthe\tO\tthe\tO\ntrick\tO\ttrick\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nactionlink\tB-Library_Function\tactionlink\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nview\tO\tview\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_505\tI-Code_Block\tQ_505\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6681932\tO\t6681932\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6681932/\tO\thttps://stackoverflow.com/questions/6681932/\tO\n\t\n\t\nSince\tO\tSince\tO\nboth\tO\tboth\tO\n'\tO\t'\tO\nstart\tB-Variable_Name\tstart\tB-Code_Block\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\nday\tB-Variable_Name\tday\tB-Code_Block\n'\tO\t'\tO\nare\tO\tare\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nDateTime\tB-Library_Class\tDateTime\tB-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\ncomparer\tO\tcomparer\tO\non\tO\ton\tO\nthem\tO\tthem\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\neach\tO\teach\tO\nbit\tO\tbit\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nDateTime\tB-Library_Class\tDateTime\tB-Code_Block\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\njust\tO\tjust\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nbrowse\tB-Function_Name\tbrowse\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nday\tO\tday\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nmillisecond\tO\tmillisecond\tO\nof\tO\tof\tO\na\tO\ta\tO\nDateTime\tB-Library_Class\tDateTime\tB-Code_Block\n,\tO\t,\tO\ntry\tO\ttry\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_769\tI-Code_Block\tA_769\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nalso\tO\talso\tO\na\tO\ta\tO\npretty\tO\tpretty\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nnull\tB-Value\tnull\tO\nchecking\tO\tchecking\tO\non\tO\ton\tO\nthose\tO\tthose\tO\nnullable\tO\tnullable\tO\nfields\tO\tfields\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36871609\tO\t36871609\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36871609/\tO\thttps://stackoverflow.com/questions/36871609/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\nserialize\tB-Library_Function\tserialize\tO\nand\tO\tand\tO\nde-serialize\tB-Library_Function\tde-serialize\tO\nobjects\tO\tobjects\tO\nto\tO\tto\tO\nbinary\tB-File_Type\tbinary\tO\nfile\tO\tfile\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nfound\tO\tfound\tO\ndescribed\tO\tdescribed\tO\nand\tO\tand\tO\ndiscussed\tO\tdiscussed\tO\nhere\tO\there\tO\non\tO\ton\tO\nstackoverflow\tB-Website\tstackoverflow\tO\n.\tO\t.\tO\n\t\namong\tO\tamong\tO\nothers\tO\tothers\tO\nin\tO\tin\tO\nfollowing\tO\tfollowing\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21080839/pulling-objects-from-binary-file-and-putting-in-listt\tO\thttps://stackoverflow.com/questions/21080839/pulling-objects-from-binary-file-and-putting-in-listt\tO\nThe\tO\tThe\tO\nserialisation\tO\tserialisation\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nfile\tB-Library_Class\tfile\tO\ngrowing\tO\tgrowing\tO\nwhen\tO\twhen\tO\nobjects\tO\tobjects\tO\nare\tO\tare\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\nit\tO\tit\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nreading\tO\treading\tO\nwith\tO\twith\tO\ndeserialization\tO\tdeserialization\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nwritten\tO\twritten\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nwrite\tB-Function_Name\twrite\tO\nto\tO\tto\tO\nfile\tB-Library_Class\tfile\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\nretrieved\tO\tretrieved\tO\nseem\tO\tseem\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\nto\tO\tto\tO\nread\tB-Function_Name\tread\tO\nbeyond\tO\tbeyond\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nobjects\tO\tobjects\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n\"\tO\t\"\tO\nwrite\tB-Function_Name\twrite\tO\n\"\tO\t\"\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfile\tB-Library_Class\tfile\tO\nposition\tO\tposition\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nset\tO\tset\tO\nto\tO\tto\tO\nzero\tB-Value\tzero\tO\n.\tO\t.\tO\n\t\ncan\tO\tcan\tO\nthe\tO\tthe\tO\nread\tB-Function_Name\tread\tO\noperation\tO\toperation\tO\nbe\tO\tbe\tO\nlooped\tO\tlooped\tO\nor\tO\tor\tO\ncontrolled\tO\tcontrolled\tO\nin\tO\tin\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nforced\tO\tforced\tO\nit\tO\tit\tO\nto\tO\tto\tO\nread\tB-Function_Name\tread\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nfile\tB-Library_Class\tfile\tO\n?\tO\t?\tO\n\t\nAppreciate\tO\tAppreciate\tO\nyour\tO\tyour\tO\ncomments\tO\tcomments\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n\t\nThor\tB-User_Name\tThor\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4540\tI-Code_Block\tQ_4540\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36871609\tO\t36871609\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36871609/\tO\thttps://stackoverflow.com/questions/36871609/\tO\n\t\n\t\nI\tO\tI\tO\nsolved\tO\tsolved\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nafter\tO\tafter\tO\nreading\tO\treading\tO\na\tO\ta\tO\npost\tO\tpost\tO\nfrom\tO\tfrom\tO\nFateme\tB-User_Name\tFateme\tO\nShirmohammadi\tI-User_Name\tShirmohammadi\tO\non\tO\ton\tO\nStackoverflow\tB-Website\tStackoverflow\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nwhere\tO\twhere\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstream\tB-Library_Class\tstream\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nreader\tO\treader\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nand\tO\tand\tO\nloop\tO\tloop\tO\nuntil\tO\tuntil\tO\nit\tO\tit\tO\nreaches\tO\treaches\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nor\tO\tor\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstream\tB-Library_Class\tstream\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\neach\tO\teach\tO\niteration\tO\titeration\tO\nyou\tO\tyou\tO\nappend\tO\tappend\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nchanged\tO\tchanged\tO\nread()\tB-Function_Name\tread()\tO\nmethod\tO\tmethod\tO\nattached\tO\tattached\tO\n;\tO\t;\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5279\tI-Code_Block\tA_5279\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\ngive\tO\tgive\tO\ncredit\tO\tcredit\tO\nto\tO\tto\tO\nladenedge\tB-User_Name\tladenedge\tO\nand\tO\tand\tO\nMarc\tB-User_Name\tMarc\tO\nGravell\tI-User_Name\tGravell\tO\nwho\tO\twho\tO\nanswered\tO\tanswered\tO\nto\tO\tto\tO\nFateme\tB-User_Name\tFateme\tO\n's\tO\t's\tO\nquestions\tO\tquestions\tO\n.\tO\t.\tO\n\t\nStackoverflow\tB-Website\tStackoverflow\tO\nis\tO\tis\tO\nrely\tO\trely\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\nresource\tO\tresource\tO\n.\tO\t.\tO\n\t\nThor\tB-User_Name\tThor\tO\nP\tI-User_Name\tP\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3375304\tO\t3375304\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3375304/\tO\thttps://stackoverflow.com/questions/3375304/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nPostgres\tB-Library\tPostgres\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable\tB-Data_Structure\ttable\tO\nof\tO\tof\tO\nArtices\tO\tArtices\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nurl\tB-Variable_Name\turl\tO\nfor\tO\tfor\tO\nurl\tO\turl\tO\nslugs\tO\tslugs\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nare\tO\tare\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\narticles\tO\tarticles\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ntable\tB-Data_Structure\ttable\tO\non\tO\ton\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\nas\tO\tas\tO\nnot\tO\tnot\tO\n\"\tO\t\"\tO\nexample.com/23323\tB-Value\texample.com/23323\tB-Code_Block\n\"\tO\t\"\tO\nbut\tO\tbut\tO\ninstead\tO\tinstead\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\nexample.com/Funny_Thing_Happened_to_Me\tB-Value\texample.com/Funny_Thing_Happened_to_Me\tB-Code_Block\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwas\tO\twas\tO\nstraightforward\tO\tstraightforward\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\narticles\tO\tarticles\tO\ngrew\tO\tgrew\tO\n,\tO\t,\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\nan\tO\tan\tO\nindex\tO\tindex\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nslugs\tO\tslugs\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsince\tO\tsince\tO\nrealized\tO\trealized\tO\nthat\tO\tthat\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\ncapitalized\tO\tcapitalized\tO\nletters\tO\tletters\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nurls\tO\turls\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncase\tO\tcase\tO\ninsensitive\tO\tinsensitive\tO\nin\tO\tin\tO\nterms\tO\tterms\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ntypes\tO\ttypes\tO\nin\tO\tin\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nenforce\tO\tenforce\tO\nuniqueness\tO\tuniqueness\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nurls\tO\turls\tO\nin\tO\tin\tO\na\tO\ta\tO\ncase\tO\tcase\tO\ninsensitive\tO\tinsensitive\tO\nmanner\tO\tmanner\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nstraightforward\tO\tstraightforward\tO\nway\tO\tway\tO\nto\tO\tto\tO\nquickly\tO\tquickly\tO\nsearch\tO\tsearch\tO\nbased\tO\tbased\tO\non\tO\ton\tO\na\tO\ta\tO\ntext\tO\ttext\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nin\tO\tin\tO\na\tO\ta\tO\ncase\tO\tcase\tO\ninsensitive\tO\tinsensitive\tO\nway\tO\tway\tO\n,\tO\t,\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nenforce\tO\tenforce\tO\nuniqueness\tO\tuniqueness\tO\nin\tO\tin\tO\na\tO\ta\tO\ncase\tO\tcase\tO\ninsensitive\tO\tinsensitive\tO\nway\tO\tway\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nconducting\tO\tconducting\tO\nthe\tO\tthe\tO\nsearches\tO\tsearches\tO\nwith\tO\twith\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nlower(url)\tB-Code_Block\tlower(url)\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nbut\tO\tbut\tO\nthat\tO\tthat\tO\ncauses\tO\tcauses\tO\nPostgres\tB-Library\tPostgres\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3375304\tO\t3375304\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3375304/\tO\thttps://stackoverflow.com/questions/3375304/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_353\tI-Code_Block\tA_353\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nby\tO\tby\tO\n\"\tO\t\"\tO\nenforce\tO\tenforce\tO\nuniqueness\tO\tuniqueness\tO\nin\tO\tin\tO\na\tO\ta\tO\ncase\tO\tcase\tO\ninsensitive\tO\tinsensitive\tO\nway\tO\tway\tO\n\"\tO\t\"\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nthis\tO\tthis\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstick\tO\tstick\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n\"lower()\"\tB-Library_Function\t\"lower()\"\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_354\tI-Code_Block\tA_354\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3375304\tO\t3375304\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3375304/\tO\thttps://stackoverflow.com/questions/3375304/\tO\n\t\n\t\nUse\tO\tUse\tO\na\tO\ta\tO\nfunctional\tO\tfunctional\tO\nindex\tO\tindex\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_355\tI-Code_Block\tA_355\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\non\tO\ton\tO\n8.4\tB-Version\t8.4\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\ninstall\tO\tinstall\tO\na\tO\ta\tO\ncontrib\tB-Library\tcontrib\tO\nmodule\tI-Library\tmodule\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nalso\tO\talso\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ncitext\tB-Data_Type\tcitext\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nabstracts\tO\tabstracts\tO\naway\tO\taway\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nlower/UPPER\tO\tlower/UPPER\tO\nstuff\tO\tstuff\tO\nand\tO\tand\tO\nis\tO\tis\tO\nslightly\tO\tslightly\tO\nbetter\tO\tbetter\tO\nperforming\tO\tperforming\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46043893\tO\t46043893\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46043893/\tO\thttps://stackoverflow.com/questions/46043893/\tO\n\t\n\t\nGood\tO\tGood\tO\nafternoon\tO\tafternoon\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nstuck\tO\tstuck\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nproblem\tO\tproblem\tO\nof\tO\tof\tO\nformulas\tO\tformulas\tO\nin\tO\tin\tO\nexcel\tB-Application\texcel\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable\tB-User_Interface_Element\ttable\tO\nin\tO\tin\tO\nanother\tO\tanother\tO\nsheet\tB-User_Interface_Element\tsheet\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\noperations\tO\toperations\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nunits\tO\tunits\tO\nsold\tO\tsold\tO\nin\tO\tin\tO\nBogota\tB-Value\tBogota\tO\n.\tO\t.\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nunits\tO\tunits\tO\nsold\tO\tsold\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\ncities\tO\tcities\tO\nto\tO\tto\tO\nBogota\tB-Value\tBogota\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nformula\tO\tformula\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6046\tI-Code_Block\tQ_6046\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nrequirement\tO\trequirement\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhich\tO\twhich\tO\ncity\tO\tcity\tO\nis\tO\tis\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nBogota\tB-Value\tBogota\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n;\tO\t;\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n<>\tB-Code_Block\t<>\tO\noperator\tO\toperator\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nand\tO\tand\tO\nplacing\tO\tplacing\tO\nthe\tO\tthe\tO\nformula\tO\tformula\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6047\tI-Code_Block\tQ_6047\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\nSummation\tO\tSummation\tO\ngives\tO\tgives\tO\n0\tB-Value\t0\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSomeone\tO\tSomeone\tO\nhas\tO\thas\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46043893\tO\t46043893\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46043893/\tO\thttps://stackoverflow.com/questions/46043893/\tO\n\t\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nput\tO\tput\tO\nquotes\tO\tquotes\tO\n\"\tO\t\"\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\"\tO\t\"\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nlogical\tO\tlogical\tO\nstatement\tO\tstatement\tO\n\"\"\tB-Code_Block\t\"\"\tO\n<>\tI-Code_Block\t<>\tO\nBOGOTA\tI-Code_Block\tBOGOTA\tO\n\"\tI-Code_Block\t\"\tO\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n=SUMIF(DATOS!$G$4:$G$146;\"<>BOGOTA\")\tB-Code_Block\t=SUMIF(DATOS!$G$4:$G$146;\"<>BOGOTA\")\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43740940\tO\t43740940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43740940/\tO\thttps://stackoverflow.com/questions/43740940/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\ndatabase\tO\tdatabase\tO\nentry\tO\tentry\tO\nusing\tO\tusing\tO\nHibernate\tB-Library\tHibernate\tO\nand\tO\tand\tO\nPostgreSQL\tB-Application\tPostgreSQL\tO\n(\tO\t(\tO\n9.5\tB-Version\t9.5\tO\n)\tO\t)\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nwhite\tO\twhite\tO\nspace\tO\tspace\tO\nis\tO\tis\tO\ntrimmed\tO\ttrimmed\tO\nfrom\tO\tfrom\tO\nstrings\tB-Data_Type\tstrings\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5633\tI-Code_Block\tQ_5633\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nElse\tO\tElse\tO\nwhere\tO\twhere\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\nsuccessfully\tO\tsuccessfully\tO\nupdate\tO\tupdate\tO\nother\tO\tother\tO\nfields\tO\tfields\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nthe\tO\tthe\tO\nupdatedAt\tB-Library_Function\tupdatedAt\tO\ntime\tO\ttime\tO\nfield\tO\tfield\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nremove\tO\tremove\tO\ntrailing\tO\ttrailing\tO\nwhite\tO\twhite\tO\nspace\tO\tspace\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlocale\tO\tlocale\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nlocale\tO\tlocale\tO\nfield\tO\tfield\tO\nto\tO\tto\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\nentirely\tO\tentirely\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nusing\tO\tusing\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5634\tI-Code_Block\tQ_5634\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nlocale\tO\tlocale\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\ncannot\tO\tcannot\tO\nremove\tO\tremove\tO\nwhite\tO\twhite\tO\nspace\tO\tspace\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43740940\tO\t43740940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43740940/\tO\thttps://stackoverflow.com/questions/43740940/\tO\n\t\n\t\nwe\tO\twe\tO\nneed\tO\tneed\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\n(\tO\t(\tO\nex\tO\tex\tO\nEntity\tO\tEntity\tO\nand\tO\tand\tO\nSchema\tO\tSchema\tO\nData\tO\tData\tO\nDefinition\tO\tDefinition\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\na\tO\ta\tO\nchar\tB-Data_Type\tchar\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nvarchar\tB-Data_Type\tvarchar\tO\nin\tO\tin\tO\nSchema\tO\tSchema\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\nchar\tB-Data_Type\tchar\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nsame\tO\tsame\tO\nlength\tO\tlength\tO\nappended\tO\tappended\tO\nwith\tO\twith\tO\nempty\tO\tempty\tO\nspace\tO\tspace\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39166385\tO\t39166385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39166385/\tO\thttps://stackoverflow.com/questions/39166385/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nSDWebImage\tB-Library\tSDWebImage\tO\nlibrary\tO\tlibrary\tO\nand\tO\tand\tO\nits\tO\tits\tO\nworking\tO\tworking\tO\non\tO\ton\tO\niPhone\tB-Device\tiPhone\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncalled\tO\tcalled\tO\nin\tO\tin\tO\niPad\tB-Device\tiPad\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nput\tO\tput\tO\nbreak\tO\tbreak\tO\npoints\tO\tpoints\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhit\tO\thit\tO\nthe\tO\tthe\tO\nbreak\tO\tbreak\tO\npoint\tO\tpoint\tO\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nput\tO\tput\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\ncellForItemAtIndexPath\tB-Function_Name\tcellForItemAtIndexPath\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4930\tI-Code_Block\tQ_4930\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39166385\tO\t39166385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39166385/\tO\thttps://stackoverflow.com/questions/39166385/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nconcurrent\tO\tconcurrent\tO\nimage\tB-User_Interface_Element\timage\tO\nloading\tO\tloading\tO\nimplementation\tO\timplementation\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\n-collectionView\tB-Library_Function\t-collectionView\tB-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\ncellForItemAtIndexPath\tI-Library_Function\tcellForItemAtIndexPath\tI-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\nis\tO\tis\tO\ncalling\tO\tcalling\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\nexecutes\tO\texecutes\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nqueue\tB-Data_Structure\tqueue\tO\n.\tO\t.\tO\n\t\nAssuming\tO\tAssuming\tO\nthat\tO\tthat\tO\n-downloadImageWithURL\tB-Library_Function\t-downloadImageWithURL\tB-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\noptions\tI-Library_Function\toptions\tI-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\nprogress\tI-Library_Function\tprogress\tI-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\ncompleted\tI-Library_Function\tcompleted\tI-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\nmethod\tO\tmethod\tO\nperforms\tO\tperforms\tO\nimage\tB-User_Interface_Element\timage\tO\nloading\tO\tloading\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\ninstantly\tO\tinstantly\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nwithout\tO\twithout\tO\ndispatch_async(dispatch_get_main_queue\tB-Code_Block\tdispatch_async(dispatch_get_main_queue\tB-Code_Block\n()\tI-Code_Block\t()\tI-Code_Block\n...\tI-Code_Block\t...\tI-Code_Block\nwrapping\tO\twrapping\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nwe\tO\twe\tO\ncannot\tO\tcannot\tO\nguarantee\tO\tguarantee\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncompletion\tO\tcompletion\tO\nhandler\tO\thandler\tO\nis\tO\tis\tO\nexecuting\tO\texecuting\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nshould\tO\tshould\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5680\tI-Code_Block\tA_5680\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\ndifferent\tO\tdifferent\tO\nresults\tO\tresults\tO\non\tO\ton\tO\niPhone\tB-Device\tiPhone\tO\nand\tO\tand\tO\niPad\tB-Device\tiPad\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nexplained\tO\texplained\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\narchitectural\tO\tarchitectural\tO\ndifferences\tO\tdifferences\tO\nin\tO\tin\tO\ntechnical\tO\ttechnical\tO\nspecifications\tO\tspecifications\tO\nof\tO\tof\tO\ntesting\tO\ttesting\tO\ndevices\tO\tdevices\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43353080\tO\t43353080\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43353080/\tO\thttps://stackoverflow.com/questions/43353080/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntring\tO\ttring\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nocclusion\tO\tocclusion\tO\nwith\tO\twith\tO\nGoogle\tB-Application\tGoogle\tO\nTango\tI-Application\tTango\tO\nin\tO\tin\tO\nUnity\tB-Application\tUnity\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nsimple\tO\tsimple\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nreal\tO\treal\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nfront\tO\tfront\tO\nof\tO\tof\tO\na\tO\ta\tO\nvirtual\tO\tvirtual\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nvirtual\tO\tvirtual\tO\nobject\tO\tobject\tO\nis\tO\tis\tO\nhidden\tO\thidden\tO\n(\tO\t(\tO\nor\tO\tor\tO\nrendered\tO\trendered\tO\ndifferently\tO\tdifferently\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nperfect\tO\tperfect\tO\nresult\tO\tresult\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nimpressive\tO\timpressive\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\n:\tO\t:\tO\nhttps://www.youtube.com/watch?v=EpDhaM7ZhZs\tO\thttps://www.youtube.com/watch?v=EpDhaM7ZhZs\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalready\tO\talready\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nEnable\tO\tEnable\tO\nocclusion\tO\tocclusion\tO\n\"\tO\t\"\tO\noption\tO\toption\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nTango\tB-Device\tTango\tO\nCamera\tI-Device\tCamera\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nso\tO\tso\tO\nhappy\tO\thappy\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n(\tO\t(\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\naccurate\tO\taccurate\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nreal\tO\treal\tO\ntime\tO\ttime\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nmesh\tO\tmesh\tO\nreconstruction\tO\treconstruction\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npoint\tO\tpoint\tO\ncloud\tO\tcloud\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nhints\tO\thints\tO\n,\tO\t,\tO\ntips\tO\ttips\tO\nor\tO\tor\tO\nideas\tO\tideas\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nvideo\tB-User_Interface_Element\tvideo\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nawesome\tO\tawesome\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43353080\tO\t43353080\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43353080/\tO\thttps://stackoverflow.com/questions/43353080/\tO\n\t\n\t\nOcclusion\tO\tOcclusion\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nexperimental\tO\texperimental\tO\nfeature\tO\tfeature\tO\non\tO\ton\tO\nTango\tB-Application\tTango\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\nvery\tO\tvery\tO\nhard\tO\thard\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nocclusion\tO\tocclusion\tO\nwith\tO\twith\tO\nhigh\tO\thigh\tO\nfidelity\tO\tfidelity\tO\nand\tO\tand\tO\nhigh\tO\thigh\tO\nperformance\tO\tperformance\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nideas\tO\tideas\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\ndifferent\tO\tdifferent\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nUse\tO\tUse\tO\n3D\tO\t3D\tO\nreconstruction\tO\treconstruction\tO\n.\tO\t.\tO\n\t\nTango\tB-Application\tTango\tO\ndoes\tO\tdoes\tO\nprovide\tO\tprovide\tO\nfunctionalities\tO\tfunctionalities\tO\nto\tO\tto\tO\nconstruct\tO\tconstruct\tO\n3D\tO\t3D\tO\nmeshes\tO\tmeshes\tO\nfrom\tO\tfrom\tO\npoint\tO\tpoint\tO\ncloud\tO\tcloud\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nsample\tO\tsample\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nTango\tB-Application\tTango\tO\nsample\tO\tsample\tO\ncode\tO\tcode\tO\nrepository\tO\trepository\tO\n(\tO\t(\tO\nC\tB-Language\tC\tO\n,\tO\t,\tO\nJava\tB-Language\tJava\tO\n,\tO\t,\tO\nUnity\tB-Application\tUnity\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nworld\tO\tworld\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\npre-scanned\tO\tpre-scanned\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nessentially\tO\tessentially\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nmesh\tO\tmesh\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\noccluded\tO\toccluded\tO\nvirtual\tO\tvirtual\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\ntime\tO\ttime\tO\nup-sampling\tO\tup-sampling\tO\ndepth\tO\tdepth\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nproject\tO\tproject\tO\nall\tO\tall\tO\npoint\tO\tpoint\tO\nclouds\tO\tclouds\tO\non\tO\ton\tO\nto\tO\tto\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\nplane\tI-User_Interface_Element\tplane\tO\n,\tO\t,\tO\nup-sample\tO\tup-sample\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nas\tO\tas\tO\na\tO\ta\tO\ndepth\tO\tdepth\tO\nbuffer\tO\tbuffer\tO\nfor\tO\tfor\tO\nrendering\tO\trendering\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nARScreen\tB-Device\tARScreen\tO\nocclusion\tO\tocclusion\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nin\tO\tin\tO\nTangoUnitySDK\tB-Library\tTangoUnitySDK\tO\n.\tO\t.\tO\n\t\nDue\tO\tDue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlimitation\tO\tlimitation\tO\nof\tO\tof\tO\nTango\tB-Application\tTango\tO\ndepth\tO\tdepth\tO\nsensing\tO\tsensing\tO\nhardware\tO\thardware\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nquality\tO\tquality\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nideal\tO\tideal\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nif\tO\tif\tO\nall\tO\tall\tO\nphysical\tO\tphysical\tO\nobjects\tO\tobjects\tO\nare\tO\tare\tO\nfar\tO\tfar\tO\naway\tO\taway\tO\n(\tO\t(\tO\nbeyond\tO\tbeyond\tO\n4\tO\t4\tO\nmeters\tO\tmeters\tO\n)\tO\t)\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28633285\tO\t28633285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28633285/\tO\thttps://stackoverflow.com/questions/28633285/\tO\n\t\n\t\ntalbe\tB-User_Interface_Element\ttalbe\tO\nrow\tI-User_Interface_Element\trow\tO\nwith\tO\twith\tO\nas\tO\tas\tO\nset\tO\tset\tO\nof\tO\tof\tO\nelements\tO\telements\tO\n(\tO\t(\tO\ntextboxes\tB-User_Interface_Element\ttextboxes\tO\n)\tO\t)\tO\nare\tO\tare\tO\ndynamically\tO\tdynamically\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\nJavascript\tB-Language\tJavascript\tO\nlike\tO\tlike\tO\nfollow\tO\tfollow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3366\tI-Code_Block\tQ_3366\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nafter\tO\tafter\tO\nsubmitted\tO\tsubmitted\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nretrieve\tO\tretrieve\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ninput\tO\tinput\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndynamically\tO\tdynamically\tO\ncreated\tO\tcreated\tO\ntextboxes\tB-User_Interface_Element\ttextboxes\tO\nusing\tO\tusing\tO\nphp\tB-File_Type\tphp\tO\nfile\tO\tfile\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3367\tI-Code_Block\tQ_3367\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhowever\tO\thowever\tO\n,\tO\t,\tO\ni\tO\ti\tO\ngot\tO\tgot\tO\n\"\tO\t\"\tO\nInternal\tB-Error_Name\tInternal\tO\nServer\tI-Error_Name\tServer\tO\nError\tI-Error_Name\tError\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nany\tO\tany\tO\nsuggestion\tO\tsuggestion\tO\nabout\tO\tabout\tO\nreasons\tO\treasons\tO\n?\tO\t?\tO\n\t\nthanx\tO\tthanx\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28633285\tO\t28633285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28633285/\tO\thttps://stackoverflow.com/questions/28633285/\tO\n\t\n\t\nthanx\tO\tthanx\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nfor\tO\tfor\tO\nreply\tO\treply\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nloop\tO\tloop\tO\ncontrol\tO\tcontrol\tO\n,\tO\t,\tO\ni\tO\ti\tO\nmiss\tO\tmiss\tO\n\"\tB-Value\t\"\tO\n$\tI-Value\t$\tO\n\"\tI-Value\t\"\tO\nbefore\tO\tbefore\tO\nindex\tO\tindex\tO\ni\tB-Variable_Name\ti\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13950187\tO\t13950187\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13950187/\tO\thttps://stackoverflow.com/questions/13950187/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nJava\tB-Language\tJava\tO\nlibrary\tO\tlibrary\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\na\tO\ta\tO\nsocket\tB-Library_Class\tsocket\tO\nto\tO\tto\tO\ncommunicate\tO\tcommunicate\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nworld\tO\tworld\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nsocket\tB-Library_Class\tsocket\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nmonitor\tO\tmonitor\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\nis\tO\tis\tO\nsending\tO\tsending\tO\nand\tO\tand\tO\nreceiving\tO\treceiving\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhook\tO\thook\tO\nJava\tB-Language\tJava\tO\n's\tO\t's\tO\nsockets\tB-Library_Class\tsockets\tO\nsystem\tO\tsystem\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nmonitor\tO\tmonitor\tO\nsocket\tB-Library_Class\tsocket\tO\ncommunications\tO\tcommunications\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\ncreates\tO\tcreates\tO\nthe\tO\tthe\tO\nsocket\tB-Library_Class\tsocket\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13950187\tO\t13950187\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13950187/\tO\thttps://stackoverflow.com/questions/13950187/\tO\n\t\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthat\tO\tthat\tO\nidea\tO\tidea\tO\n:\tO\t:\tO\n\t\nFinding\tO\tFinding\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\nnetwork\tO\tnetwork\tO\nsockets\tB-Library_Class\tsockets\tO\nare\tO\tare\tO\nopen\tO\topen\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nJava\tB-Application\tJava\tO\nVM\tI-Application\tVM\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\ntested\tO\ttested\tO\nit\tO\tit\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\ninteresting\tO\tinteresting\tO\nas\tO\tas\tO\nit\tO\tit\tO\npresents\tO\tpresents\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhook\tO\thook\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nsocket\tB-Library_Class\tsocket\tO\ncreation\tO\tcreation\tO\nprocess\tO\tprocess\tO\nof\tO\tof\tO\nJava\tB-Language\tJava\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22611575\tO\t22611575\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22611575/\tO\thttps://stackoverflow.com/questions/22611575/\tO\n\t\n\t\nSituation\tO\tSituation\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\non\tO\ton\tO\nBootstrap\tB-Library\tBootstrap\tO\n3.0\tB-Version\t3.0\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nsection\tO\tsection\tO\nwith\tO\twith\tO\nupcoming\tO\tupcoming\tO\nevents\tO\tevents\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nwants\tO\twants\tO\nto\tO\tto\tO\nattend\tO\tattend\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nby\tO\tby\tO\nclicking\tO\tclicking\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\na\tO\ta\tO\nmodal\tO\tmodal\tO\nappears\tO\tappears\tO\nwith\tO\twith\tO\nname\tO\tname\tO\n,\tO\t,\tO\ne-mail\tO\te-mail\tO\nand\tO\tand\tO\nevent\tO\tevent\tO\ntitle\tO\ttitle\tO\ninput\tB-User_Interface_Element\tinput\tO\nfields\tI-User_Interface_Element\tfields\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ne-mail\tO\te-mail\tO\ngoes\tO\tgoes\tO\nto\tO\tto\tO\nme\tO\tme\tO\nso\tO\tso\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nwho\tO\twho\tO\n's\tO\t's\tO\ncoming\tO\tcoming\tO\nfor\tO\tfor\tO\nwhat\tO\twhat\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nhtml\tB-Language\thtml\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nevent\tO\tevent\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2476\tI-Code_Block\tQ_2476\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion\tO\tQuestion\tO\n:\tO\t:\tO\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ncode\tO\tcode\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nautomatically\tO\tautomatically\tO\nadds\tO\tadds\tO\nthe\tO\tthe\tO\ntitle\tO\ttitle\tO\nof\tO\tof\tO\nan\tO\tan\tO\nevent\tO\tevent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ne-mail\tO\te-mail\tO\nby\tO\tby\tO\nclicking\tO\tclicking\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\ntype\tO\ttype\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\ntitle\tO\ttitle\tO\nmanually\tO\tmanually\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nmodal\tO\tmodal\tO\nappears\tO\tappears\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nalso\tO\talso\tO\nopen\tO\topen\tO\nfor\tO\tfor\tO\nbetter\tO\tbetter\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\ncurrent\tO\tcurrent\tO\nprocess\tO\tprocess\tO\n:\tO\t:\tO\n\t\nvisitor\tO\tvisitor\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\nevent\tO\tevent\tO\n>\tO\t>\tO\nfills\tO\tfills\tO\nin\tO\tin\tO\nname\tO\tname\tO\n,\tO\t,\tO\ne-mail\tO\te-mail\tO\nand\tO\tand\tO\nevent\tO\tevent\tO\ntitle\tO\ttitle\tO\n>\tO\t>\tO\nsubmits\tO\tsubmits\tO\nform\tO\tform\tO\n\t\nfuture\tO\tfuture\tO\nprocess\tO\tprocess\tO\n:\tO\t:\tO\n\t\nvisitor\tO\tvisitor\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\nevent\tO\tevent\tO\n>\tO\t>\tO\nfills\tO\tfills\tO\nin\tO\tin\tO\nname\tO\tname\tO\n,\tO\t,\tO\nemail\tO\temail\tO\n>\tO\t>\tO\nsubmits\tO\tsubmits\tO\nform\tO\tform\tO\n\t\nInfo\tO\tInfo\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nWordpress\tB-Application\tWordpress\tO\nas\tO\tas\tO\nCMS\tO\tCMS\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22611575\tO\t22611575\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22611575/\tO\thttps://stackoverflow.com/questions/22611575/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\npost\tO\tpost\tO\ntype\tO\ttype\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nevents\tO\tevents\tO\n.\tO\t.\tO\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\nthe\tO\tthe\tO\nhidden\tO\thidden\tO\nfield\tB-User_Interface_Element\tfield\tO\nyourself\tO\tyourself\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nsingle\tO\tsingle\tO\ntemplate\tO\ttemplate\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tB-HTML_XML_Tag\tform\tO\nmarkup\tO\tmarkup\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\noutput\tO\toutput\tO\nthe\tO\tthe\tO\ntitle\tO\ttitle\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nhidden\tO\thidden\tO\nfield\tO\tfield\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nwordpress\tB-Application\twordpress\tO\nfunction\tO\tfunction\tO\nthe_title()\tB-Library_Function\tthe_title()\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\njavascript\tB-Language\tjavascript\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nexactly\tO\texactly\tO\nthe\tO\tthe\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nsituation\tO\tsituation\tO\nwordpress\tB-Application\twordpress\tO\ntemplates\tO\ttemplates\tO\nand\tO\tand\tO\nPHP\tB-Language\tPHP\tO\nare\tO\tare\tO\nmade\tO\tmade\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nalso\tO\talso\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\ngrabbing\tO\tgrabbing\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\npost\tB-Library_Variable\tpost\tO\nid\tI-Library_Variable\tid\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nusing\tO\tusing\tO\nthe_ID()\tB-Library_Function\tthe_ID()\tO\n.\tO\t.\tO\n\t\nTwo\tO\tTwo\tO\nevents\tO\tevents\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntitle\tO\ttitle\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwill\tO\twill\tO\nnever\tO\tnever\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\npost\tB-Library_Variable\tpost\tO\nid\tI-Library_Variable\tid\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3066\tI-Code_Block\tA_3066\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nworth\tO\tworth\tO\nnoting\tO\tnoting\tO\nthat\tO\tthat\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nnamed\tO\tnamed\tO\n\"\tB-Value\t\"\tO\nhidden\tI-Value\thidden\tO\nfield\tI-Value\tfield\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\neasily\tO\teasily\tO\naccessible\tO\taccessible\tO\nto\tO\tto\tO\nanyone\tO\tanyone\tO\nusing\tO\tusing\tO\nyour\tO\tyour\tO\nform\tB-User_Interface_Element\tform\tO\n,\tO\t,\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nloads\tO\tloads\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nPHP\tB-Language\tPHP\tO\nis\tO\tis\tO\noutput\tO\toutput\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nchanged\tO\tchanged\tO\nto\tO\tto\tO\nanything\tO\tanything\tO\nvery\tO\tvery\tO\neasily\tO\teasily\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsubmitted\tO\tsubmitted\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nrestrictions\tO\trestrictions\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nevents\tO\tevents\tO\nare\tO\tare\tO\nshown\tO\tshown\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nusers\tO\tusers\tO\n,\tO\t,\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\npotentially\tO\tpotentially\tO\njust\tO\tjust\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\ntitle\tO\ttitle\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\nform\tB-User_Interface_Element\tform\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nevent\tO\tevent\tO\nthey\tO\tthey\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nrsvp\tO\trsvp\tO\nfor\tO\tfor\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nnever\tO\tnever\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nyou\tO\tyou\tO\nreceive\tO\treceive\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\na\tO\ta\tO\nwhole\tO\twhole\tO\nother\tO\tother\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34924977\tO\t34924977\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34924977/\tO\thttps://stackoverflow.com/questions/34924977/\tO\n\t\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nformatted\tO\tformatted\tO\nstring\tB-Data_Type\tstring\tO\ntemplate\tO\ttemplate\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4270\tI-Code_Block\tQ_4270\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nfaster\tO\tfaster\tO\nthan\tO\tthan\tO\njust\tO\tjust\tO\na\tO\ta\tO\nregular\tO\tregular\tO\nstring\tB-Data_Type\tstring\tO\ntemplate\tO\ttemplate\tO\non\tO\ton\tO\n1\tO\t1\tO\nline\tO\tline\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4271\tI-Code_Block\tQ_4271\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nbenchmark\tO\tbenchmark\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJsPerf\tB-Application\tJsPerf\tO\ntest\tO\ttest\tO\nlinked\tO\tlinked\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nwhy\tO\twhy\tO\ndoes\tO\tdoes\tO\nFirefox\tB-Application\tFirefox\tO\nperform\tO\tperform\tO\nway\tO\tway\tO\nbetter\tO\tbetter\tO\nthan\tO\tthan\tO\nChrome\tB-Application\tChrome\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nbenchmark\tO\tbenchmark\tO\n?\tO\t?\tO\n\t\nJsPerf\tB-Application\tJsPerf\tO\ntest\tO\ttest\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30857515\tO\t30857515\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30857515/\tO\thttps://stackoverflow.com/questions/30857515/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\npython\tB-Language\tpython\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\ncompares\tO\tcompares\tO\na\tO\ta\tO\nrange\tO\trange\tO\nusing\tO\tusing\tO\nnetaddr\tB-Library\tnetaddr\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nhost\tO\thost\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nrange\tO\trange\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmatches\tO\tmatches\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nSnippet\tO\tSnippet\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3716\tI-Code_Block\tQ_3716\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSomething\tO\tSomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n192.168.1.1\tB-Value\t192.168.1.1\tO\n192.168.1.1\tI-Value\t192.168.1.1\tO\nhost1\tB-Variable_Name\thost1\tO\n\t\n192.168.1.2\tB-Value\t192.168.1.2\tO\n192.168.1.2\tI-Value\t192.168.1.2\tO\nhost2\tB-Variable_Name\thost2\tO\n\t\n192.168.1.3\tB-Value\t192.168.1.3\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nstill\tO\tstill\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nIP\tB-Variable_Name\tIP\tO\neven\tO\teven\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nmatch\tO\tmatch\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nassistance\tO\tassistance\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30857515\tO\t30857515\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30857515/\tO\thttps://stackoverflow.com/questions/30857515/\tO\n\t\n\t\nEasy\tO\tEasy\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ninitialize\tO\tinitialize\tO\na\tO\ta\tO\nmatch\tO\tmatch\tO\nvariable\tO\tvariable\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nip\tB-Variable_Name\tip\tO\nonce\tO\tonce\tO\nif\tO\tif\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nturn\tO\tturn\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4398\tI-Code_Block\tA_4398\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1160833\tO\t1160833\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1160833/\tO\thttps://stackoverflow.com/questions/1160833/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nway\tO\tway\tO\nto\tO\tto\tO\nprogrammatically\tO\tprogrammatically\tO\ninitiate\tO\tinitiate\tO\nediting\tO\tediting\tO\non\tO\ton\tO\na\tO\ta\tO\nSystem.Windows.Forms.PropertyGrid\tB-Library_Class\tSystem.Windows.Forms.PropertyGrid\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nGridItem\tB-Library_Class\tGridItem\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\ncursor\tB-User_Interface_Element\tcursor\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nedit\tO\tedit\tO\nfield\tB-User_Interface_Element\tfield\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1160833\tO\t1160833\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1160833/\tO\thttps://stackoverflow.com/questions/1160833/\tO\n\t\n\t\nDid\tO\tDid\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nsending\tO\tsending\tO\nthe\tO\tthe\tO\nTAB\tB-Keyboard_IP\tTAB\tO\nkey\tO\tkey\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_116\tI-Code_Block\tA_116\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47028204\tO\t47028204\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47028204/\tO\thttps://stackoverflow.com/questions/47028204/\tO\n\t\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nreviewed\tO\treviewed\tO\nthis\tO\tthis\tO\nthread\tO\tthread\tO\nwhich\tO\twhich\tO\ncovers\tO\tcovers\tO\nperforming\tO\tperforming\tO\na\tO\ta\tO\nbulk\tO\tbulk\tO\ninsert\tO\tinsert\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nmysql\tB-Application\tmysql\tO\nnode\tB-Library_Class\tnode\tO\nmodule\tO\tmodule\tO\nbut\tO\tbut\tO\nwith\tO\twith\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nparticular\tO\tparticular\tO\nsyntax\tO\tsyntax\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nsubqueries\tO\tsubqueries\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nhow\tO\thow\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nperform\tO\tperform\tO\na\tO\ta\tO\nbulk\tO\tbulk\tO\ninsert\tO\tinsert\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6224\tI-Code_Block\tQ_6224\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhile\tO\tWhile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nable\tO\table\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmysql\tB-Application\tmysql\tO\nmodule\tO\tmodule\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\nover\tO\tover\tO\na\tO\ta\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nhoping\tO\thoping\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nspeedier\tO\tspeedier\tO\ninsert\tO\tinsert\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nadjust\tO\tadjust\tO\nthe\tO\tthe\tO\nsyntax\tO\tsyntax\tO\nso\tO\tso\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nbulk\tO\tbulk\tO\ninsert\tO\tinsert\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nCheers\tO\tCheers\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2820006\tO\t2820006\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2820006/\tO\thttps://stackoverflow.com/questions/2820006/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nCruise\tB-Library\tCruise\tO\nControl\tI-Library\tControl\tO\nwith\tO\twith\tO\nSVN\tB-Application\tSVN\tO\nand\tO\tand\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsimple\tO\tsimple\tO\nsteps\tO\tsteps\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nable\tO\table\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nout\tO\tout\tO\nmuch\tO\tmuch\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2820006\tO\t2820006\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2820006/\tO\thttps://stackoverflow.com/questions/2820006/\tO\n\t\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nblock\tO\tblock\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_276\tI-Code_Block\tA_276\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\njust\tO\tjust\tO\nput\tO\tput\tO\nit\tO\tit\tO\nsomewhere\tO\tsomewhere\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\ndirectly\tO\tdirectly\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nnode\tO\tnode\tO\n)\tO\t)\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_277\tI-Code_Block\tA_277\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrepeat\tO\trepeat\tO\nthe\tO\tthe\tO\nsubversion\tB-Application\tsubversion\tO\nconfiguration\tO\tconfiguration\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23939532\tO\t23939532\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23939532/\tO\thttps://stackoverflow.com/questions/23939532/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsetup\tO\tsetup\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nwatch\tO\twatch\tO\nthe\tO\tthe\tO\nwindow.innerWidth\tB-Library_Variable\twindow.innerWidth\tB-Code_Block\nproperty\tO\tproperty\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n$scope\tB-Library_Class\t$scope\tB-Code_Block\nbased\tO\tbased\tO\non\tO\ton\tO\nthat\tO\tthat\tO\nwidth\tO\twidth\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\non\tO\ton\tO\nany\tO\tany\tO\nresize\tO\tresize\tO\nafter\tO\tafter\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthe\tO\tthe\tO\n$digest\tB-Library_Function\t$digest\tO\nmethod\tO\tmethod\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nso\tO\tso\tO\nwhy\tO\twhy\tO\nnot\tO\tnot\tO\n?\tO\t?\tO\n\t\nModule\tO\tModule\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2654\tI-Code_Block\tQ_2654\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nController\tO\tController\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2655\tI-Code_Block\tQ_2655\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nView\tO\tView\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2656\tI-Code_Block\tQ_2656\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nrefresh\tO\trefresh\tO\nthe\tO\tthe\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nafter\tO\tafter\tO\nresizing\tO\tresizing\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nexpand\tB-Library_Class\texpand\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\napplied\tO\tapplied\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nresize\tO\tresize\tO\nit\tO\tit\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\nhappens\tO\thappens\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nconsole.log\tB-Library_Function\tconsole.log\tO\nfunction\tO\tfunction\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nfire\tO\tfire\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23939532\tO\t23939532\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23939532/\tO\thttps://stackoverflow.com/questions/23939532/\tO\n\t\n\t\nResizing\tO\tResizing\tO\nthe\tO\tthe\tO\nwindow\tB-User_Interface_Element\twindow\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ncause\tO\tcause\tO\nAngular\tB-Library\tAngular\tO\nto\tO\tto\tO\nre-run\tO\tre-run\tO\na\tO\ta\tO\n$digest\tB-Library_Function\t$digest\tB-Code_Block\nloop\tO\tloop\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwindow.innerWidth\tB-Library_Variable\twindow.innerWidth\tB-Code_Block\n'\tO\t'\tO\ns\tO\ts\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nchecked\tO\tchecked\tO\nonly\tO\tonly\tO\nwhen\tO\twhen\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\ncauses\tO\tcauses\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\ninstead\tO\tinstead\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndirective\tO\tdirective\tO\n(\tO\t(\tO\nie\tO\tie\tO\n.\tO\t.\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncontroller\tO\tcontroller\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbinding\tO\tbinding\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nwindow.onresize\tB-Library_Function\twindow.onresize\tB-Code_Block\nevent\tO\tevent\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3259\tI-Code_Block\tA_3259\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nscope\tB-Library_Function\tscope\tB-Code_Block\n.\tI-Library_Function\t.\tI-Code_Block\n$\tI-Library_Function\t$\tI-Code_Block\napply\tI-Library_Function\tapply\tI-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncauses\tO\tcauses\tO\nthe\tO\tthe\tO\n$digest\tB-Library_Function\t$digest\tO\nloop\tO\tloop\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nfollowing\tO\tfollowing\tO\nthis\tO\tthis\tO\nevent\tO\tevent\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nAngular\tB-Library\tAngular\tO\ncontext\tO\tcontext\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ndirective\tO\tdirective\tO\nto\tO\tto\tO\ndecorate\tO\tdecorate\tO\nan\tO\tan\tO\nelement\tO\telement\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nscope\tO\tscope\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nchanging\tO\tchanging\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3260\tI-Code_Block\tA_3260\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDemo\tO\tDemo\tO\n(\tO\t(\tO\nbest\tO\tbest\tO\nviewed\tO\tviewed\tO\nfull-screen\tO\tfull-screen\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1905231\tO\t1905231\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1905231/\tO\thttps://stackoverflow.com/questions/1905231/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nadded\tO\tadded\tO\na\tO\ta\tO\nDigg\tB-User_Interface_Element\tDigg\tO\nbutton\tI-User_Interface_Element\tbutton\tO\nto\tO\tto\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\njavascript\tB-Language\tjavascript\tO\nrequired\tO\trequired\tO\nfor\tO\tfor\tO\ndynamic\tO\tdynamic\tO\nDigg\tB-User_Interface_Element\tDigg\tO\nbuttons\tI-User_Interface_Element\tbuttons\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nbefore\tO\tbefore\tO\nmy\tO\tmy\tO\n</body>\tB-HTML_XML_Tag\t</body>\tB-Code_Block\nclose\tO\tclose\tO\ntag\tO\ttag\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_121\tI-Code_Block\tQ_121\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEverything\tO\tEverything\tO\nworks\tO\tworks\tO\non\tO\ton\tO\npages\tB-User_Interface_Element\tpages\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ndynamic\tO\tdynamic\tO\nDigg\tB-User_Interface_Element\tDigg\tO\nbuttons\tI-User_Interface_Element\tbuttons\tO\non\tO\ton\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\non\tO\ton\tO\npages\tB-User_Interface_Element\tpages\tO\nthat\tO\tthat\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\n,\tO\t,\tO\nan\tO\tan\tO\norphan\tO\torphan\tO\nDigg\tB-User_Interface_Element\tDigg\tO\nicon\tI-User_Interface_Element\ticon\tO\nis\tO\tis\tO\nfloating\tO\tfloating\tO\nin\tO\tin\tO\nspace\tO\tspace\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\nnormal\tO\tnormal\tO\nbehaviour\tO\tbehaviour\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nprevent\tO\tprevent\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1905231\tO\t1905231\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1905231/\tO\thttps://stackoverflow.com/questions/1905231/\tO\n\t\n\t\nI\tO\tI\tO\nbroke\tO\tbroke\tO\ndown\tO\tdown\tO\nand\tO\tand\tO\nsimply\tO\tsimply\tO\ntook\tO\ttook\tO\nthe\tO\tthe\tO\n<script>\tB-HTML_XML_Tag\t<script>\tB-Code_Block\nout\tO\tout\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nbase\tO\tbase\tO\ntemplate\tO\ttemplate\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nput\tO\tput\tO\nit\tO\tit\tO\non\tO\ton\tO\npages\tB-User_Interface_Element\tpages\tO\nwith\tO\twith\tO\ndigg\tB-User_Interface_Element\tdigg\tO\nbuttons\tI-User_Interface_Element\tbuttons\tO\n.\tO\t.\tO\n\t\nTook\tO\tTook\tO\nsome\tO\tsome\tO\nextra\tO\textra\tO\ntemplate\tO\ttemplate\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nghost\tO\tghost\tO\n\"\tO\t\"\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25837132\tO\t25837132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25837132/\tO\thttps://stackoverflow.com/questions/25837132/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nprogram\tO\tprogram\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nvisible\tO\tvisible\tO\nview\tO\tview\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nExample\tO\tExample\tO\n:\tO\t:\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nvisible\tO\tvisible\tO\nview\tO\tview\tO\nto\tO\tto\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nxcode\tB-Application\txcode\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\npicture\tO\tpicture\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25837132\tO\t25837132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25837132/\tO\thttps://stackoverflow.com/questions/25837132/\tO\n\t\n\t\nYou\tO\tYou\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nUIViewController\tB-Library_Class\tUIViewController\tO\nand\tO\tand\tO\nsimply\tO\tsimply\tO\npresent\tO\tpresent\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\nRootViewController\tB-Library_Class\tRootViewController\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nIOSLauncher\tB-Application\tIOSLauncher\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3574\tI-Code_Block\tA_3574\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\none\tO\tone\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3575\tI-Code_Block\tA_3575\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3576\tI-Code_Block\tA_3576\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47720663\tO\t47720663\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47720663/\tO\thttps://stackoverflow.com/questions/47720663/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\n6\tO\t6\tO\ndifferent\tO\tdifferent\tO\npies\tB-User_Interface_Element\tpies\tO\nusing\tO\tusing\tO\nscatterpie\tB-Library\tscatterpie\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\n101\tO\t101\tO\ndifferent\tO\tdifferent\tO\ncategories\tO\tcategories\tO\nmaking\tO\tmaking\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\npies\tB-User_Interface_Element\tpies\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nall\tO\tall\tO\npies\tB-User_Interface_Element\tpies\tO\nhave\tO\thave\tO\n10\tO\t10\tO\n1)\tO\t1)\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndifferentiate\tO\tdifferentiate\tO\nthe\tO\tthe\tO\ncolors\tO\tcolors\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nenough\tO\tenough\tO\ncolors\tO\tcolors\tO\n(\tO\t(\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\njust\tO\tjust\tO\nby\tO\tby\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\npies\tB-User_Interface_Element\tpies\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6331\tI-Code_Block\tQ_6331\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ncolors\tO\tcolors\tO\nmanually\tO\tmanually\tO\nas\tO\tas\tO\nbelow\tO\tbelow\tO\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\nblank\tO\tblank\tO\nscreen\tO\tscreen\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ncolors\tO\tcolors\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nscatterpie\tB-Library_Function\tscatterpie\tO\n(color=sample(allcolors\tB-Code_Block\t(color=sample(allcolors\tO\n,\tI-Code_Block\t,\tO\n101))\tI-Code_Block\t101))\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\t\nError\tO\tError\tO\n:\tO\t:\tO\nAesthetics\tO\tAesthetics\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\neither\tO\teither\tO\nlength\tO\tlength\tO\n1\tO\t1\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\n286\tB-Error_Name\t286\tO\n4)\tI-Error_Name\t4)\tO\n:\tO\t:\tO\ncolour\tO\tcolour\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6332\tI-Code_Block\tQ_6332\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47720663\tO\t47720663\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47720663/\tO\thttps://stackoverflow.com/questions/47720663/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\nworking\tO\tworking\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nthe\tO\tthe\tO\nscale_color_manual\tB-Library_Function\tscale_color_manual\tO\nto\tO\tto\tO\nscale_fill_manual\tB-Library_Function\tscale_fill_manual\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6972\tI-Code_Block\tA_6972\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40927659\tO\t40927659\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40927659/\tO\thttps://stackoverflow.com/questions/40927659/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nNVD3\tB-Library\tNVD3\tO\nlibrary\tO\tlibrary\tO\nand\tO\tand\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\nlinks\tO\tlinks\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlibraries\tO\tlibraries\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nneed.I\tO\tneed.I\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nv3\tB-Version\tv3\tO\nfor\tO\tfor\tO\nD3\tB-Library\tD3\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nangular\tB-Library\tangular\tO\nNVD3\tI-Library\tNVD3\tO\nlink\tO\tlink\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nchart\tO\tchart\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrendering\tO\trendering\tO\nand\tO\tand\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nlinks\tO\tlinks\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nindex\tB-File_Name\tindex\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5173\tI-Code_Block\tQ_5173\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5174\tI-Code_Block\tQ_5174\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nSample\tO\tSample\tO\nCode\tO\tCode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5175\tI-Code_Block\tQ_5175\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34373709\tO\t34373709\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34373709/\tO\thttps://stackoverflow.com/questions/34373709/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\non\tO\ton\tO\na\tO\ta\tO\ncontroller\tO\tcontroller\tO\nwithout\tO\twithout\tO\nreload\tO\treload\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\njwplayer\tB-Application\tjwplayer\tO\nreciving\tO\treciving\tO\na\tO\ta\tO\nplaylist\tO\tplaylist\tO\nvia\tO\tvia\tO\nRss\tO\tRss\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nplaylist\tO\tplaylist\tO\nend\tO\tend\tO\n's\tO\t's\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nanother\tO\tanother\tO\nplaylist\tO\tplaylist\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nrefresh\tO\trefresh\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n(\tO\t(\tO\nThat\tO\tThat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\neasier\tO\teasier\tO\nway\tO\tway\tO\n)\tO\t)\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nplayer\tB-Library_Class\tplayer\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\nfullscreen\tO\tfullscreen\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34373709\tO\t34373709\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34373709/\tO\thttps://stackoverflow.com/questions/34373709/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\ncontroller\tO\tcontroller\tO\nhas\tO\thas\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nrequired\tO\trequired\tO\ndata\tO\tdata\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\n\t\ninject\tO\tinject\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nchanging\tO\tchanging\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nsupplied\tO\tsupplied\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\najax\tB-Library_Function\tajax\tO\ncalls\tO\tcalls\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\najax\tB-Library_Function\tajax\tO\ncall\tO\tcall\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\ncurrent\tO\tcurrent\tO\nplaylist\tO\tplaylist\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\najax\tB-Library_Function\tajax\tO\ncall\tO\tcall\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4898\tI-Code_Block\tA_4898\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nroutes\tO\troutes\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4899\tI-Code_Block\tA_4899\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24064906\tO\t24064906\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24064906/\tO\thttps://stackoverflow.com/questions/24064906/\tO\n\t\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\n\"\tO\t\"\tO\nThu\tB-Value\tThu\tO\nJun\tI-Value\tJun\tO\n5\tI-Value\t5\tO\n10:59:10\tI-Value\t10:59:10\tO\nCDT\tI-Value\tCDT\tO\n2014\tI-Value\t2014\tO\n\"\tO\t\"\tO\ninto\tO\tinto\tO\npython\tB-Language\tpython\tO\ndatetime\tB-Library_Class\tdatetime\tO\nobject\tO\tobject\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nCDT\tO\tCDT\tO\n.\tO\t.\tO\n\t\n%Z\tB-Code_Block\t%Z\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthrowing\tO\tthrowing\tO\nerrors\tO\terrors\tO\n:(\tO\t:(\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24064906\tO\t24064906\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24064906/\tO\thttps://stackoverflow.com/questions/24064906/\tO\n\t\n\t\ndateutil\tB-Library\tdateutil\tB-Code_Block\ncan\tO\tcan\tO\nparse\tO\tparse\tO\nmost\tO\tmost\tO\ndate\tO\tdate\tO\nformats\tO\tformats\tO\nwithout\tO\twithout\tO\neffort\tO\teffort\tO\n\t\n$\tB-Code_Block\t$\tB-Code_Block\neasy_install\tI-Code_Block\teasy_install\tI-Code_Block\ndateutil\tI-Code_Block\tdateutil\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3268\tI-Code_Block\tA_3268\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nI\tO\tI\tO\ndont\tO\tdont\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nhandles\tO\thandles\tO\nthe\tO\tthe\tO\ntimezone\tO\ttimezone\tO\nquite\tO\tquite\tO\nright\tO\tright\tO\nthough.\tO\tthough.\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ncertainly\tO\tcertainly\tO\nparses\tO\tparses\tO\nit.\tO\tit.\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24064906\tO\t24064906\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24064906/\tO\thttps://stackoverflow.com/questions/24064906/\tO\n\t\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nusual\tO\tusual\tO\nmethods\tO\tmethods\tO\nfrom\tO\tfrom\tO\ndatetime\tB-Library_Class\tdatetime\tB-Code_Block\nto\tO\tto\tO\nconstruct\tO\tconstruct\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nstrptime\tB-Library_Function\tstrptime\tB-Code_Block\ncan\tO\tcan\tO\nwork\tO\twork\tO\nonly\tO\tonly\tO\nwith\tO\twith\tO\n(\tO\t(\tB-Code_Block\nempty\tO\tempty\tI-Code_Block\n)\tO\t)\tI-Code_Block\n,\tO\t,\tB-Code_Block\nUTC\tO\tUTC\tI-Code_Block\n,\tO\t,\tI-Code_Block\nEST\tO\tEST\tI-Code_Block\n,\tO\t,\tI-Code_Block\nCST\tO\tCST\tI-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3269\tI-Code_Block\tA_3269\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\npython-dateutil\tB-Library\tpython-dateutil\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nparse\tO\tparse\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nnaive\tO\tnaive\tO\ndatetime\tB-Library_Class\tdatetime\tO\nobject\tO\tobject\tO\n(\tO\t(\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ntake\tO\ttake\tO\ninto\tO\tinto\tO\naccount\tO\taccount\tO\nthe\tO\tthe\tO\ntimezone.\tO\ttimezone.\tO\n.\tO\t.\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3270\tI-Code_Block\tA_3270\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35679636\tO\t35679636\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35679636/\tO\thttps://stackoverflow.com/questions/35679636/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndirectory\tO\tdirectory\tO\nstructure\tO\tstructure\tO\nin\tO\tin\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nprojects\tO\tprojects\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nexclude\tO\texclude\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndirectories\tO\tdirectories\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nchoosing\tO\tchoosing\tO\neach\tO\teach\tO\ndirectory\tO\tdirectory\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nMark\tO\tMark\tB-Code_Block\nDirectory\tO\tDirectory\tI-Code_Block\nas\tO\tas\tI-Code_Block\n->\tO\t->\tI-Code_Block\nExcluded\tO\tExcluded\tI-Code_Block\n\t\nFor\tO\tFor\tO\nExample\tO\tExample\tO\n:\tO\t:\tO\nbower-components/\tB-File_Name\tbower-components/\tB-Code_Block\n,\tO\t,\tO\nnode-modules\tB-File_Name\tnode-modules\tB-Code_Block\n,\tO\t,\tO\netc.\tO\tetc.\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthat\tO\tthat\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nthat\tO\tthat\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35679636\tO\t35679636\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35679636/\tO\thttps://stackoverflow.com/questions/35679636/\tO\n\t\n\t\nSettings\tO\tSettings\tO\n|\tO\t|\tO\nEditor\tO\tEditor\tO\n|\tO\t|\tO\nFile\tO\tFile\tO\nTypes\tO\tTypes\tO\n|\tO\t|\tO\nFiles\tO\tFiles\tO\nand\tO\tand\tO\nfolders\tO\tfolders\tO\nto\tO\tto\tO\nignore\tO\tignore\tO\n\t\n(\tO\t(\tO\nNote\tO\tNote\tO\nthat\tO\tthat\tO\napplying\tO\tapplying\tO\nit\tO\tit\tO\nto\tO\tto\tO\nnode-modules\tB-Code_Block\tnode-modules\tB-Code_Block\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nidea\tO\tidea\tO\nbecause\tO\tbecause\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nJS\tB-Language\tJS\tO\nsupport\tO\tsupport\tO\nin\tO\tin\tO\nIntelliJ\tB-Application\tIntelliJ\tO\nIDEA\tI-Application\tIDEA\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nsee\tO\tsee\tO\nany\tO\tany\tO\ndeclarations\tO\tdeclarations\tO\nin\tO\tin\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnode\tO\tnode\tO\nmodules\tO\tmodules\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nlose\tO\tlose\tO\non\tO\ton\tO\ncode\tO\tcode\tO\ncompletion\tO\tcompletion\tO\nand\tO\tand\tO\nnavigation\tO\tnavigation\tO\nsupport\tO\tsupport\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8284306\tO\t8284306\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8284306/\tO\thttps://stackoverflow.com/questions/8284306/\tO\n\t\n\t\nIssues\tO\tIssues\tO\n:\tO\t:\tO\n\t\nUsing\tO\tUsing\tO\nls\tB-Code_Block\tls\tO\nin\tO\tin\tO\nGIT\tB-Application\tGIT\tO\nshows\tO\tshows\tO\nall\tO\tall\tO\nunicode\tO\tunicode\tO\nin\tO\tin\tO\nfilenames\tO\tfilenames\tO\nas\tO\tas\tO\n'\tO\t'\tO\n?\tO\t?\tO\n'\tO\t'\tO\n\t\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n???\tB-File_Name\t???\tO\n.\tI-File_Name\t.\tO\nmp\tI-File_Name\tmp\tO\n3)\tI-File_Name\t3)\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nusing\tO\tusing\tO\ngit\tB-Code_Block\tgit\tO\nadd\tI-Code_Block\tadd\tO\n-A\tI-Code_Block\t-A\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nreturned\tO\treturned\tO\n:\tO\t:\tO\n\"\tB-Output_Block\t\"\tO\nfatal\tI-Output_Block\tfatal\tO\n:\tI-Output_Block\t:\tO\nunable\tI-Output_Block\tunable\tO\nto\tI-Output_Block\tto\tO\nstat\tI-Output_Block\tstat\tO\n'\tI-Output_Block\t'\tO\nexample/\tI-Output_Block\texample/\tO\n?\tI-Output_Block\t?\tO\n?\tI-Output_Block\t?\tO\n\t\n?\tB-Output_Block\t?\tO\n.\tI-Output_Block\t.\tO\nmp3\tI-Output_Block\tmp3\tO\n'\tB-Output_Block\t'\tO\n:\tI-Output_Block\t:\tO\nno\tI-Output_Block\tno\tO\nsuch\tI-Output_Block\tsuch\tO\nfile\tI-Output_Block\tfile\tO\nor\tI-Output_Block\tor\tO\ndirectory\tI-Output_Block\tdirectory\tO\n\"\tO\t\"\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8284306\tO\t8284306\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8284306/\tO\thttps://stackoverflow.com/questions/8284306/\tO\n\t\n\t\nAs\tO\tAs\tO\nof\tO\tof\tO\nMSysGit\tB-Application\tMSysGit\tO\n1.7.10\tB-Version\t1.7.10\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n,\tO\t,\tO\nUnicode\tO\tUnicode\tO\nis\tO\tis\tO\ncorrectly\tO\tcorrectly\tO\nsupported\tO\tsupported\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\n,\tO\t,\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ncondition\tO\tcondition\tO\nyou\tO\tyou\tO\ntweak\tO\ttweak\tO\nsome\tO\tsome\tO\nsettings\tO\tsettings\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ntruetype\tO\ttruetype\tO\nfont\tO\tfont\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nexplanations\tO\texplanations\tO\nhere\tO\there\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nprevious\tO\tprevious\tO\nrepositories\tO\trepositories\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8284306\tO\t8284306\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8284306/\tO\thttps://stackoverflow.com/questions/8284306/\tO\n\t\n\t\nMsysgit\tB-Application\tMsysgit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nnon-ASCII\tO\tnon-ASCII\tO\ncharacters\tO\tcharacters\tO\nin\tO\tin\tO\nfilenames\tO\tfilenames\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nits\tO\tits\tO\nissue\tO\tissue\tO\n80\tO\t80\tO\nfor\tO\tfor\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nConsider\tO\tConsider\tO\nusing\tO\tusing\tO\nCygwin\tB-Application\tCygwin\tO\n's\tO\t's\tO\ngit\tB-Application\tgit\tO\npackage\tO\tpackage\tO\ninstead\tO\tinstead\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nhave\tO\thave\tO\nfull\tO\tfull\tO\nUTF-8\tO\tUTF-8\tO\nsupport\tO\tsupport\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39680154\tO\t39680154\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39680154/\tO\thttps://stackoverflow.com/questions/39680154/\tO\n\t\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\nload\tO\tload\tO\nall\tO\tall\tO\nvideo\tB-File_Type\tvideo\tO\nfrom\tO\tfrom\tO\nraw\tB-File_Name\traw\tO\nfolder\tO\tfolder\tO\nand\tO\tand\tO\nshow\tO\tshow\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nmediaplayr\tB-Application\tmediaplayr\tO\n.\tO\t.\tO\n\t\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nuse\tO\tuse\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nbut\tO\tbut\tO\nget\tO\tget\tO\nException\tB-Library_Class\tException\tO\n.\tO\t.\tO\n\t\nwhat\tO\twhat\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nthanks\tO\tthanks\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5005\tI-Code_Block\tQ_5005\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39680154\tO\t39680154\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39680154/\tO\thttps://stackoverflow.com/questions/39680154/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nplay\tO\tplay\tO\nthe\tO\tthe\tO\nvideos\tO\tvideos\tO\nfrom\tO\tfrom\tO\nraw\tB-File_Name\traw\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5721\tI-Code_Block\tA_5721\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCode\tO\tCode\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\nbishop\tB-User_Name\tbishop\tO\nFakhry\tI-User_Name\tFakhry\tO\nFrom\tO\tFrom\tO\nhere\tO\there\tO\nhow-to-play-videos-in-android-from-assets-folder-or-raw-folder\tO\thow-to-play-videos-in-android-from-assets-folder-or-raw-folder\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37654476\tO\t37654476\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37654476/\tO\thttps://stackoverflow.com/questions/37654476/\tO\n\t\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\nminidump\tB-File_Type\tminidump\tO\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\non\tO\ton\tO\na\tO\ta\tO\ncrash\tO\tcrash\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngiving\tO\tgiving\tO\nme\tO\tme\tO\ndetails\tO\tdetails\tO\nlike\tO\tlike\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\nand\tO\tand\tO\nline\tO\tline\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nOutput\tO\tOutput\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4727\tI-Code_Block\tQ_4727\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThese\tO\tThese\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\ni\tO\ti\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\ndump\tB-File_Type\tdump\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4728\tI-Code_Block\tQ_4728\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nanything\tO\tanything\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10916492\tO\t10916492\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10916492/\tO\thttps://stackoverflow.com/questions/10916492/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\ntext\tB-User_Interface_Element\ttext\tO\nboxes\tI-User_Interface_Element\tboxes\tO\none\tO\tone\tO\nfor\tO\tfor\tO\nfirst\tO\tfirst\tO\ntext\tB-User_Interface_Element\ttext\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nfor\tO\tfor\tO\nsecond\tO\tsecond\tO\ntext\tB-User_Interface_Element\ttext\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndrop\tB-User_Interface_Element\tdrop\tO\ndown\tI-User_Interface_Element\tdown\tO\nbox\tI-User_Interface_Element\tbox\tO\nfor\tO\tfor\tO\nchoosing\tO\tchoosing\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\n(\tO\t(\tO\nso\tO\tso\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nof\tO\tof\tO\ndifferent\tO\tdifferent\tO\nor\tO\tor\tO\nsame\tO\tsame\tO\nsize\tO\tsize\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRight\tO\tRight\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\ndifferent\tO\tdifferent\tO\nsizes\tO\tsizes\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntrouble\tO\ttrouble\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\nis\tO\tis\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\ndisplayed\tO\tdisplayed\tO\nin\tO\tin\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\nlines\tO\tlines\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_993\tI-Code_Block\tQ_993\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndisplayed\tO\tdisplayed\tO\nnext\tO\tnext\tO\nto\tO\tto\tO\neach\tO\teach\tO\nother\tO\tother\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_994\tI-Code_Block\tQ_994\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_995\tI-Code_Block\tQ_995\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10916492\tO\t10916492\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10916492/\tO\thttps://stackoverflow.com/questions/10916492/\tO\n\t\n\t\nTry\tO\tTry\tO\nadding\tO\tadding\tO\nstyle\tB-Code_Block\tstyle\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\ndisplay\tI-Code_Block\tdisplay\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ninline\tI-Code_Block\tinline\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nto\tO\tto\tO\nyour\tO\tyour\tO\nh1\tB-HTML_XML_Tag\th1\tO\ntags\tO\ttags\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nreally\tO\treally\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nCSS\tB-File_Type\tCSS\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nquickly\tO\tquickly\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23291584\tO\t23291584\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23291584/\tO\thttps://stackoverflow.com/questions/23291584/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nselect\tB-HTML_XML_Tag\tselect\tO\ntag\tO\ttag\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2558\tI-Code_Block\tQ_2558\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\njavascript\tB-Language\tjavascript\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nhere\tO\there\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2559\tI-Code_Block\tQ_2559\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nalert\tO\talert\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\ntext\tO\ttext\tO\nhere\tO\there\tO\n,\tO\t,\tO\nIf\tO\tIf\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\noption\tO\toption\tO\nis\tO\tis\tO\ncoming\tO\tcoming\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nalert\tO\talert\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\noption\tO\toption\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\ntell\tO\ttell\tO\nto\tO\tto\tO\nachive\tO\tachive\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nalert\tO\talert\tO\nit\tO\tit\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nany\tO\tany\tO\nclass\tO\tclass\tO\nor\tO\tor\tO\nid\tO\tid\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nalert\tO\talert\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nobj\tB-Variable_Name\tobj\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nIn\tO\tIn\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23291584\tO\t23291584\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23291584/\tO\thttps://stackoverflow.com/questions/23291584/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis.\tO\tthis.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3168\tI-Code_Block\tA_3168\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23291584\tO\t23291584\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23291584/\tO\thttps://stackoverflow.com/questions/23291584/\tO\n\t\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\ntrick.\tO\ttrick.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3167\tI-Code_Block\tA_3167\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\njQuery\tB-Library\tjQuery\tO\nobject\tO\tobject\tO\n$(obj)\tB-Code_Block\t$(obj)\tB-Code_Block\n,\tO\t,\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nalready\tO\talready\tO\nhad\tO\thad\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndoes\tO\tdoes\tO\na\tO\ta\tO\nfind()\tB-Library_Function\tfind()\tB-Code_Block\nwhich\tO\twhich\tO\nsearches\tO\tsearches\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\nelements\tO\telements\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\noption\tB-Code_Block\toption\tB-Code_Block\n.\tO\t.\tO\n\t\njQuery\tB-Library\tjQuery\tO\nfind()\tB-Library_Function\tfind()\tO\n\t\n:selected\tB-Code_Block\t:selected\tO\npseudo-selector\tO\tpseudo-selector\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5433578\tO\t5433578\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5433578/\tO\thttps://stackoverflow.com/questions/5433578/\tO\n\t\n\t\nConsider\tO\tConsider\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_381\tI-Code_Block\tQ_381\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhile\tO\tWhile\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nholds\tO\tholds\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_382\tI-Code_Block\tQ_382\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nfacing\tO\tfacing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_383\tI-Code_Block\tQ_383\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhy\tO\tWhy\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nmean\tO\tmean\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nclear\tO\tclear\tO\nthat\tO\tthat\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nSet\tB-Data_Structure\tSet\tB-Code_Block\nout\tO\tout\tO\nof\tO\tof\tO\na\tO\ta\tO\nSeq\tB-Data_Structure\tSeq\tB-Code_Block\nchooses\tO\tchooses\tO\nrandom\tO\trandom\tO\nelements\tO\telements\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\nduplicates\tO\tduplicates\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nduplicates\tO\tduplicates\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\n\"(...).distinct.sameElements(...)\"\tB-Code_Block\t\"(...).distinct.sameElements(...)\"\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncertainly\tO\tcertainly\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ndeeper\tO\tdeeper\tO\nunderstanding\tO\tunderstanding\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nequality\tO\tequality\tO\ncheck.\tO\tcheck.\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nAfter\tO\tAfter\tO\na\tO\ta\tO\nlong\tO\tlong\tO\nsearch\tO\tsearch\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nand\tO\tand\tO\ncondensed\tO\tcondensed\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nMy\tO\tMy\tO\nelements\tO\telements\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\nmust\tO\tmust\tO\ntake\tO\ttake\tO\na\tO\ta\tO\ncloser\tO\tcloser\tO\nlook\tO\tlook\tO\nwhy\tO\twhy\tO\ndistinct.sameElements\tB-Library_Function\tdistinct.sameElements\tB-Code_Block\nis\tO\tis\tO\nn't\tO\tn't\tO\ncomplaining\tO\tcomplaining\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nmeanwhile\tO\tmeanwhile\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nquestion\tO\tquestion\tO\narose\tO\tarose\tO\n:\tO\t:\tO\n\t\nConsider\tO\tConsider\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_384\tI-Code_Block\tQ_384\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nto\tO\tto\tO\nsequences\tB-Data_Structure\tsequences\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbecause\tO\tbecause\tO\nthey\tO\tthey\tO\ndepend\tO\tdepend\tO\non\tO\ton\tO\na\tO\ta\tO\nm2-construct\tB-Variable_Name\tm2-construct\tB-Code_Block\nand\tO\tand\tO\nso\tO\tso\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\na\tO\ta\tO\naccessing\tO\taccessing\tO\nthem\tO\tthem\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nnew\tO\tnew\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\ndoes\tO\tdoes\tO\nm2\tB-Variable_Name\tm2\tB-Code_Block\nbehave\tO\tbehave\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\ncontrast\tO\tcontrast\tO\nto\tO\tto\tO\nm1\tB-Variable_Name\tm1\tB-Code_Block\nalthough\tO\talthough\tO\nboth\tO\tboth\tO\nare\tO\tare\tO\nimmutable\tO\timmutable\tO\nmaps\tB-Data_Structure\tmaps\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nintuitively\tO\tintuitively\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5433578\tO\t5433578\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5433578/\tO\thttps://stackoverflow.com/questions/5433578/\tO\n\t\n\t\nThe\tO\tThe\tO\nmost\tO\tmost\tO\ncommon\tO\tcommon\tO\nreasons\tO\treasons\tO\nfor\tO\tfor\tO\nproblems\tO\tproblems\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\narea--testing\tO\tarea--testing\tO\nset\tO\tset\tO\nequality\tO\tequality\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nlike--are\tO\tlike--are\tO\n\t\nhashCode\tB-Library_Variable\thashCode\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nagree\tO\tagree\tO\nwith\tO\twith\tO\nequals\tB-Library_Function\tequals\tB-Code_Block\n\t\nYour\tO\tYour\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nstable\tO\tstable\tO\n(\tO\t(\tO\nso\tO\tso\tO\nprevious\tO\tprevious\tO\nhashCode\tB-Library_Variable\thashCode\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nagree\tO\tagree\tO\nwith\tO\twith\tO\ncurrent\tO\tcurrent\tO\nequals\tB-Library_Function\tequals\tB-Code_Block\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nmatters\tO\tmatters\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\ndistinct\tB-Library_Function\tdistinct\tB-Code_Block\nand\tO\tand\tO\ntoSet\tB-Library_Function\ttoSet\tB-Code_Block\nuse\tO\tuse\tO\nhash\tO\thash\tO\ncodes\tO\tcodes\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nsets\tB-Data_Structure\tsets\tO\n,\tO\t,\tO\nwhereas\tO\twhereas\tO\ncontains\tB-Code_Block\tcontains\tB-Code_Block\nsimply\tO\tsimply\tO\nruns\tO\truns\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nexists\tB-Code_Block\texists\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_587\tI-Code_Block\tA_587\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmade\tO\tmade\tO\nmore\tO\tmore\tO\ncomplicated\tO\tcomplicated\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nmany\tO\tmany\tO\nsets\tB-Data_Structure\tsets\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nstart\tO\tstart\tO\nusing\tO\tusing\tO\nhash\tB-Library_Variable\thash\tO\ncodes\tI-Library_Variable\tcodes\tO\nuntil\tO\tuntil\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\nlarger\tO\tlarger\tO\nthan\tO\tthan\tO\nsome\tO\tsome\tO\nminimal\tO\tminimal\tO\nsize\tO\tsize\tO\n(\tO\t(\tO\nusually\tO\tusually\tO\n4)\tO\t4)\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nalways\tO\talways\tO\nnotice\tO\tnotice\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\ntesting\tO\ttesting\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nprove\tO\tprove\tO\nit\tO\tit\tO\nto\tO\tto\tO\nourselves\tO\tourselves\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_588\tI-Code_Block\tA_588\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOkay\tO\tOkay\tO\n,\tO\t,\tO\nso\tO\tso\tO\nnow\tO\tnow\tO\nwe\tO\twe\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\noperations\tO\toperations\tO\n,\tO\t,\tO\nmatching\tO\tmatching\tO\nup\tO\tup\tO\nhashCode\tB-Library_Variable\thashCode\tB-Code_Block\nand\tO\tand\tO\nequals\tB-Library_Function\tequals\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nGood\tO\tGood\tO\nThing\tO\tThing\tO\n.\tO\t.\tO\n\t\nWarning\tO\tWarning\tO\n:\tO\t:\tO\nin\tO\tin\tO\nJava\tB-Language\tJava\tO\n,\tO\t,\tO\nmismatches\tO\tmismatches\tO\nhappens\tO\thappens\tO\nfrequently\tO\tfrequently\tO\neven\tO\teven\tO\nwith\tO\twith\tO\nprimitives\tO\tprimitives\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_589\tI-Code_Block\tA_589\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nScala\tB-Language\tScala\tO\nnow\tO\tnow\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\ncatches\tO\tcatches\tO\nthat\tO\tthat\tO\n(\tO\t(\tO\nhopefully\tO\thopefully\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_590\tI-Code_Block\tA_590\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCase\tO\tCase\tO\nclasses\tO\tclasses\tO\nalso\tO\talso\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nproperly\tO\tproperly\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwe\tO\twe\tO\n're\tO\t're\tO\nleft\tO\tleft\tO\nwith\tO\twith\tO\nthree\tO\tthree\tO\npossibilities\tO\tpossibilities\tO\n\t\nYou\tO\tYou\tO\noverrode\tO\toverrode\tO\nequals\tB-Library_Function\tequals\tB-Code_Block\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nhashCode\tB-Library_Variable\thashCode\tB-Code_Block\nto\tO\tto\tO\nmatch\tO\tmatch\tO\n\t\nYour\tO\tYour\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nstable\tO\tstable\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nand\tO\tand\tO\nJava\tB-Language\tJava\tO\nwrapped\tO\twrapped\tO\nprimitive\tO\tprimitive\tO\nhashCode\tB-Library_Variable\thashCode\tO\nmismatch\tO\tmismatch\tO\nis\tO\tis\tO\ncoming\tO\tcoming\tO\nback\tO\tback\tO\nto\tO\tto\tO\nbite\tO\tbite\tO\nyou\tO\tyou\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\nis\tO\tis\tO\neasy\tO\teasy\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\none\tO\tone\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\narises\tO\tarises\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nmapValues\tB-Library_Function\tmapValues\tB-Code_Block\nactually\tO\tactually\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nview\tO\tview\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ncollection\tO\tcollection\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncollection\tO\tcollection\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nfilterKeys\tB-Library_Function\tfilterKeys\tB-Code_Block\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\nalso\tO\talso\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nPersonally\tO\tPersonally\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nquestionable\tO\tquestionable\tO\nchoice\tO\tchoice\tO\nof\tO\tof\tO\ndesign\tO\tdesign\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nnormally\tO\tnormally\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nview\tO\tview\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nconcrete\tO\tconcrete\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nit\tO\tit\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n.force\tB-Code_Block\t.force\tB-Code_Block\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ndefault\tO\tdefault\tO\nmaps\tB-Data_Structure\tmaps\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\n.force\tB-Code_Block\t.force\tB-Code_Block\nbecause\tO\tbecause\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nrealize\tO\trealize\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nviews\tO\tviews\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nresort\tO\tresort\tO\nto\tO\tto\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_591\tI-Code_Block\tA_591\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nimportant\tO\timportant\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndoing\tO\tdoing\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\nfile\tO\tfile\tO\nIO\tO\tIO\tO\nto\tO\tto\tO\nmap\tB-Data_Structure\tmap\tO\nyour\tO\tyour\tO\nvalues\tO\tvalues\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nfilenames\tO\tfilenames\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nmapping\tO\tmapping\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\ncontents\tO\tcontents\tO\n)\tO\t)\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nover\tO\tover\tO\nand\tO\tand\tO\nover\tO\tover\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nyour\tO\tyour\tO\ncase--where\tO\tcase--where\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nassigning\tO\tassigning\tO\nrandom\tO\trandom\tO\nvalues--is\tO\tvalues--is\tO\nanother\tO\tanother\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nis\tO\tis\tO\nimportant\tO\timportant\tO\nto\tO\tto\tO\npick\tO\tpick\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ncopy\tO\tcopy\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nrecreate\tO\trecreate\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nover\tO\tover\tO\nand\tO\tand\tO\nover\tO\tover\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20969949\tO\t20969949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20969949/\tO\thttps://stackoverflow.com/questions/20969949/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nWordpress\tB-Application\tWordpress\tO\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\ntaxonomy\tO\ttaxonomy\tO\ncalled\tO\tcalled\tO\ncategorie\tB-Value\tcategorie\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\napp\tB-Value\tapp\tB-Code_Block\n,\tO\t,\tO\nweb\tB-Value\tweb\tB-Code_Block\nand\tO\tand\tO\nbranding\tB-Value\tbranding\tB-Code_Block\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nterm\tO\tterm\tO\napp\tB-Value\tapp\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nload\tO\tload\tO\nanother\tO\tanother\tO\ntheme\tO\ttheme\tO\n/\tO\t/\tO\nblog\tO\tblog\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nterm\tO\tterm\tO\nweb\tB-Value\tweb\tO\nor\tO\tor\tO\nbranding\tB-Value\tbranding\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nload\tO\tload\tO\nsingle.php\tB-File_Name\tsingle.php\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlast\tO\tlast\tO\none\tO\tone\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2232\tI-Code_Block\tQ_2232\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nterm\tO\tterm\tO\napp\tB-Value\tapp\tB-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\ntheme\tO\ttheme\tO\nthemeApp\tB-Value\tthemeApp\tB-Code_Block\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nsuggestions\tO\tsuggestions\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20969949\tO\t20969949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20969949/\tO\thttps://stackoverflow.com/questions/20969949/\tO\n\t\n\t\nWe\tO\tWe\tO\nhad\tO\thad\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\ntask\tO\ttask\tO\nin\tO\tin\tO\nour\tO\tour\tO\nplugin\tO\tplugin\tO\n,\tO\t,\tO\nAppPresser\tB-Application\tAppPresser\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nour\tO\tour\tO\nsolution\tO\tsolution\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://github.com/WebDevStudios/AppPresser/blob/master/inc/theme-switcher.php\tO\thttps://github.com/WebDevStudios/AppPresser/blob/master/inc/theme-switcher.php\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntheme\tO\ttheme\tO\nname\tO\tname\tO\nin\tO\tin\tO\n3\tO\t3\tO\nfilters\tO\tfilters\tO\n:\tO\t:\tO\n'\tB-Variable_Name\t'\tO\ntemplate\tI-Variable_Name\ttemplate\tO\n'\tO\t'\tO\n,\tO\t,\tO\n'\tO\t'\tO\noption_template\tB-Variable_Name\toption_template\tO\n'\tB-Variable_Name\t'\tO\n,\tO\t,\tO\n'\tB-Variable_Name\t'\tO\noption_stylesheet\tI-Variable_Name\toption_stylesheet\tO\n'\tB-Variable_Name\t'\tO\n.\tO\t.\tO\n\t\nGetting\tO\tGetting\tO\nthe\tO\tthe\tO\ncategory\tO\tcategory\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nso\tO\tso\tO\nsimple\tO\tsimple\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\ncheck\tO\tcheck\tO\nhappens\tO\thappens\tO\nearly\tO\tearly\tO\nenough\tO\tenough\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nWordPress\tB-Application\tWordPress\tO\nprocess\tO\tprocess\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nglobal\tB-Data_Type\tglobal\tO\n$post\tB-Variable_Name\t$post\tB-Code_Block\nand\tO\tand\tO\n$wp_query\tB-Variable_Name\t$wp_query\tB-Code_Block\nobjects\tO\tobjects\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\navailable\tO\tavailable\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\none\tO\tone\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccomplished\tO\taccomplished\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2814\tI-Code_Block\tA_2814\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35578366\tO\t35578366\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35578366/\tO\thttps://stackoverflow.com/questions/35578366/\tO\n\t\n\t\nAfter\tO\tAfter\tO\nupgrading\tO\tupgrading\tO\nto\tO\tto\tO\n7.4.1\tB-Version\t7.4.1\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nCourier\tB-Application\tCourier\tO\nMedia\tO\tMedia\tO\nitems\tO\titems\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nerror\tO\terror\tO\nwas\tO\twas\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\nno\tO\tno\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nfor\tO\tfor\tO\nhelp\tO\thelp\tO\ntext\tO\ttext\tO\n,\tO\t,\tO\nSo\tO\tSo\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nboth\tO\tboth\tO\nenvironments\tO\tenvironments\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4351\tI-Code_Block\tQ_4351\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nnow\tO\tnow\tO\nanother\tO\tanother\tO\nexception\tB-Library_Class\texception\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nthrown\tO\tthrown\tO\nwhen\tO\twhen\tO\npackaging\tO\tpackaging\tO\nitems\tO\titems\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4352\tI-Code_Block\tQ_4352\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3255212\tO\t3255212\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3255212/\tO\thttps://stackoverflow.com/questions/3255212/\tO\n\t\n\t\nHere\tO\tHere\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntransfer\tO\ttransfer\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\none\tO\tone\tO\ndatabase\tO\tdatabase\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\ndatabase\tO\tdatabase\tO\nin\tO\tin\tO\nsql\tB-Language\tsql\tO\n2005\tB-Version\t2005\tO\n,\tO\t,\tO\n\t\ni\tO\ti\tO\ntried\tO\ttried\tO\nin\tO\tin\tO\ndts\tB-Application\tdts\tO\nbut\tO\tbut\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3255212\tO\t3255212\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3255212/\tO\thttps://stackoverflow.com/questions/3255212/\tO\n\t\n\t\nNeed\tO\tNeed\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\njust\tO\tjust\tO\ncopy\tO\tcopy\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nback\tO\tback\tO\nit\tO\tit\tO\nup\tO\tup\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nrestore\tO\trestore\tO\nthat\tO\tthat\tO\nbackup\tO\tbackup\tO\nin\tO\tin\tO\nanother\tO\tanother\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nindividual\tO\tindividual\tO\ntables\tB-Data_Structure\ttables\tO\nthen\tO\tthen\tO\nDTS\tB-Application\tDTS\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\nfriend\tO\tfriend\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nis\tO\tis\tO\nit\tO\tit\tO\n\"\tO\t\"\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3255212\tO\t3255212\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3255212/\tO\thttps://stackoverflow.com/questions/3255212/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nmoving\tO\tmoving\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ntables\tB-Data_Structure\ttables\tO\nonce\tO\tonce\tO\noff\tO\toff\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nBCP\tB-Application\tBCP\tO\ncommand\tI-Application\tcommand\tO\nline\tI-Application\tline\tO\nutility\tI-Application\tutility\tO\n.\tO\t.\tO\n\t\nbcp\tB-Code_Block\tbcp\tO\ndb_name.schema_name.table_name\tI-Code_Block\tdb_name.schema_name.table_name\tO\nout\tI-Code_Block\tout\tO\ntable_name.dat\tI-Code_Block\ttable_name.dat\tO\n-c\tI-Code_Block\t-c\tO\n-t\tI-Code_Block\t-t\tO\n,\tI-Code_Block\t,\tO\n-S\tI-Code_Block\t-S\tO\nsource_server\tI-Code_Block\tsource_server\tO\n-T\tI-Code_Block\t-T\tO\n\t\nbcp\tB-Code_Block\tbcp\tO\ndb_name.schema_name.table_name\tI-Code_Block\tdb_name.schema_name.table_name\tO\nin\tI-Code_Block\tin\tO\ntable_name.dat\tI-Code_Block\ttable_name.dat\tO\n-c\tI-Code_Block\t-c\tO\n-t\tI-Code_Block\t-t\tO\n,\tI-Code_Block\t,\tO\n-S\tI-Code_Block\t-S\tO\ndestination_server\tI-Code_Block\tdestination_server\tO\n-T\tI-Code_Block\t-T\tO\n\t\nChange\tO\tChange\tO\n'\tO\t'\tO\n-T\tB-Code_Block\t-T\tO\n'\tO\t'\tO\nto\tO\tto\tO\n'\tO\t'\tO\n-U\tB-Code_Block\t-U\tO\nyour_username\tI-Code_Block\tyour_username\tO\n-P\tI-Code_Block\t-P\tO\nyour_password\tI-Code_Block\tyour_password\tO\n'\tO\t'\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\ntrusted\tO\ttrusted\tO\nconnections\tO\tconnections\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nmoving\tO\tmoving\tO\ndata\tO\tdata\tO\nregularly\tO\tregularly\tO\nbetween\tO\tbetween\tO\nservers\tB-Device\tservers\tO\non\tO\ton\tO\na\tO\ta\tO\nLAN\tO\tLAN\tO\nthen\tO\tthen\tO\nconsider\tO\tconsider\tO\nusing\tO\tusing\tO\nlinked\tO\tlinked\tO\nservers\tB-Device\tservers\tO\n.\tO\t.\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/ff772782.aspx\tO\thttp://msdn.microsoft.com/en-us/library/ff772782.aspx\tO\n\t\nLink\tO\tLink\tO\nserver\tB-Device\tserver\tO\nperformance\tO\tperformance\tO\nover\tO\tover\tO\nWANs\tO\tWANs\tO\nis\tO\tis\tO\noften\tO\toften\tO\npoor\tO\tpoor\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nexperience\tO\texperience\tO\n.\tO\t.\tO\n\t\nConsider\tO\tConsider\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nBCP\tB-Code_Block\tBCP\tO\nout\tI-Code_Block\tout\tO\n,\tO\t,\tO\nsecure\tO\tsecure\tO\nfile\tO\tfile\tO\ntransfer\tO\ttransfer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndestination\tO\tdestination\tO\nserver\tB-Device\tserver\tO\nthen\tO\tthen\tO\nBCP\tB-Code_Block\tBCP\tO\nin\tI-Code_Block\tin\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nservers\tB-Device\tservers\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nLAN\tO\tLAN\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40044299\tO\t40044299\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40044299/\tO\thttps://stackoverflow.com/questions/40044299/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\ncopying\tO\tcopying\tO\ntext\tB-User_Interface_Element\ttext\tO\nfrom\tO\tfrom\tO\nWord\tB-Application\tWord\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\ncumbersome\tO\tcumbersome\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\ncould\tO\tcould\tO\nsomeone\tO\tsomeone\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ninsert\tO\tinsert\tO\nbullet\tB-User_Interface_Element\tbullet\tO\npoints\tI-User_Interface_Element\tpoints\tO\ninside\tO\tinside\tO\na\tO\ta\tO\ncell\tB-User_Interface_Element\tcell\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40044299\tO\t40044299\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40044299/\tO\thttps://stackoverflow.com/questions/40044299/\tO\n\t\n\t\nMicrosoft\tB-Organization\tMicrosoft\tO\nprovides\tO\tprovides\tO\npretty\tO\tpretty\tO\nexcellent\tO\texcellent\tO\ndocumentation\tO\tdocumentation\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nfound\tO\tfound\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nGoogle\tB-Website\tGoogle\tO\nsearch\tO\tsearch\tO\n,\tO\t,\tO\nno\tO\tno\tO\nless\tO\tless\tO\n!\tO\t!\tO\n\t\n)\tO\t)\tO\n:\tO\t:\tO\nhttps://support.microsoft.com/en-us/kb/323567\tO\thttps://support.microsoft.com/en-us/kb/323567\tO\n\t\nTo\tO\tTo\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nbullet\tB-User_Interface_Element\tbullet\tO\npoint\tI-User_Interface_Element\tpoint\tO\nsymbol\tO\tsymbol\tO\n,\tO\t,\tO\ntype\tO\ttype\tO\nALT+\tB-Keyboard_IP\tALT+\tO\n0149\tI-Keyboard_IP\t0149\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\napply\tO\tapply\tO\nbullet\tB-User_Interface_Element\tbullet\tO\npoint\tI-User_Interface_Element\tpoint\tO\nto\tO\tto\tO\nan\tO\tan\tO\nentire\tO\tentire\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nor\tO\tor\tO\nselection\tO\tselection\tO\nof\tO\tof\tO\ncells\tB-User_Interface_Element\tcells\tO\n,\tO\t,\tO\nhighlight\tO\thighlight\tO\nthose\tO\tthose\tO\ncells\tB-User_Interface_Element\tcells\tO\n,\tO\t,\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nscreen\tB-Device\tscreen\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\non\tO\ton\tO\n\"\tB-User_Interface_Element\t\"\tO\nHome\tI-User_Interface_Element\tHome\tO\n\"\tI-User_Interface_Element\t\"\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nclick\tO\tclick\tO\nNumber\tO\tNumber\tO\n(\tO\t(\tO\nShould\tO\tShould\tO\nbe\tO\tbe\tO\nbetween\tO\tbetween\tO\nalignment\tO\talignment\tO\nand\tO\tand\tO\nfont\tO\tfont\tO\n)\tO\t)\tO\nand\tO\tand\tO\npick\tO\tpick\tO\nCustom\tO\tCustom\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\n@\tO\t@\tO\nsymbol\tO\tsymbol\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntype\tB-User_Interface_Element\ttype\tO\nbox\tI-User_Interface_Element\tbox\tO\n.\tO\t.\tO\n\t\nClick\tO\tClick\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nof\tO\tof\tO\nit\tO\tit\tO\nand\tO\tand\tO\ntype\tO\ttype\tO\nALT-0149\tB-Keyboard_IP\tALT-0149\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nbullet\tB-User_Interface_Element\tbullet\tO\npoint\tI-User_Interface_Element\tpoint\tO\nin\tO\tin\tO\nand\tO\tand\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nabove\tO\tabove\tO\nit\tO\tit\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\n's\tO\t's\tO\nhow\tO\thow\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15238612\tO\t15238612\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15238612/\tO\thttps://stackoverflow.com/questions/15238612/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nitem\tO\titem\tO\nto\tO\tto\tO\nall\tO\tall\tO\ntext\tB-User_Interface_Element\ttext\tO\nfield\tI-User_Interface_Element\tfield\tO\n's\tO\t's\tO\ncontextual\tO\tcontextual\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nif\tO\tif\tO\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\nhold\tO\thold\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninternal\tO\tinternal\tO\nfield\tO\tfield\tO\neditor\tO\teditor\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nNSTextView\tB-Library_Class\tNSTextView\tO\nused\tO\tused\tO\nby\tO\tby\tO\nall\tO\tall\tO\nNSTextField\tB-Library_Class\tNSTextField\tO\n's\tO\t's\tO\nthrough\tO\tthrough\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\ngetting\tO\tgetting\tO\nit\tO\tit\tO\n,\tO\t,\tO\nis\tO\tis\tO\nby\tO\tby\tO\naccessing\tO\taccessing\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\n[\tO\t[\tO\nwindow\tB-Library_Class\twindow\tO\nfirstResponder\tB-Library_Variable\tfirstResponder\tO\n]\tO\t]\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nanother\tO\tanother\tO\nway\tO\tway\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15238612\tO\t15238612\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15238612/\tO\thttps://stackoverflow.com/questions/15238612/\tO\n\t\n\t\nOne\tO\tOne\tO\nmore\tO\tmore\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\nis\tO\tis\tO\nsubclassing\tO\tsubclassing\tO\nthe\tO\tthe\tO\nNSTextField\tB-Library_Class\tNSTextField\tO\nto\tO\tto\tO\nextend\tO\textend\tO\nits\tO\tits\tO\nbehaviour\tO\tbehaviour\tO\nby\tO\tby\tO\noverriding\tO\toverriding\tO\nthe\tO\tthe\tO\nmenuForEvent\tB-Library_Function\tmenuForEvent\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\nreturn\tO\treturn\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncustom\tO\tcustom\tO\nfield\tO\tfield\tO\neditor\tO\teditor\tO\nusing\tO\tusing\tO\nwindowWillReturnFieldEditor\tB-Library_Function\twindowWillReturnFieldEditor\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwindow\tB-Library_Class\twindow\tO\ndelegate\tO\tdelegate\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46424407\tO\t46424407\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46424407/\tO\thttps://stackoverflow.com/questions/46424407/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nsomehow\tO\tsomehow\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nCLI\tB-Application\tCLI\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninflux\tB-Application\tinflux\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nof\tO\tof\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nshard\tB-Data_Structure\tshard\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nalso\tO\talso\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nseries\tO\tseries\tO\nwithin\tO\twithin\tO\ntwo\tO\ttwo\tO\ntimestamps\tO\ttimestamps\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nfound\tO\tfound\tO\nhow\tO\thow\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\ninput\tO\tinput\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n,\tO\t,\tO\nthank\tO\tthank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46424407\tO\t46424407\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46424407/\tO\thttps://stackoverflow.com/questions/46424407/\tO\n\t\n\t\nQ\tO\tQ\tO\n:\tO\t:\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nsomehow\tO\tsomehow\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nCLI\tB-Application\tCLI\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninflux\tB-Application\tinflux\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nof\tO\tof\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nshard\tB-Data_Structure\tshard\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\n:\tO\t:\tO\nAt\tO\tAt\tO\ninfluxdb\tB-Application\tinfluxdb\tO\n1.3\tB-Version\t1.3\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\ndata\tO\tdata\tO\nlives\tO\tlives\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nshow\tB-Code_Block\tshow\tB-Code_Block\nshard\tI-Code_Block\tshard\tI-Code_Block\nstatement\tO\tstatement\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninflux\tB-Application\tinflux\tO\ncommand\tI-Application\tcommand\tO\nline\tI-Application\tline\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tB-Code_Block\nand\tO\tand\tO\nend\tO\tend\tB-Code_Block\ndate\tO\tdate\tO\ntime\tO\ttime\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\nacross\tO\tacross\tO\nall\tO\tall\tO\nseries\tO\tseries\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n)\tO\t)\tO\ncontained\tO\tcontained\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nshard\tB-Data_Structure\tshard\tB-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n\t\nGiven\tO\tGiven\tO\nShard\tO\tShard\tO\ninfo\tO\tinfo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6941\tI-Code_Block\tA_6941\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGiven\tO\tGiven\tO\nMeasurements\tO\tMeasurements\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6942\tI-Code_Block\tA_6942\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nShard\tB-Data_Structure\tShard\tB-Code_Block\n123\tB-Value\t123\tO\nwill\tO\twill\tO\ncontain\tO\tcontain\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nacross\tO\tacross\tO\nthe\tO\tthe\tO\nnoted\tO\tnoted\tO\nmeasurements\tO\tmeasurements\tO\nabove\tO\tabove\tO\nthat\tO\tthat\tO\nfall\tO\tfall\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\ntime\tO\ttime\tO\nof\tO\tof\tO\n2012-11-26T00:00:00Z\tB-Value\t2012-11-26T00:00:00Z\tB-Code_Block\nand\tO\tand\tO\nend\tO\tend\tO\ntime\tO\ttime\tO\nof\tO\tof\tO\n2012-12-03T00:00:00Z\tB-Value\t2012-12-03T00:00:00Z\tB-Code_Block\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\n,\tO\t,\tO\nrunning\tO\trunning\tO\na\tO\ta\tO\ndrop\tO\tdrop\tB-Code_Block\nshard\tB-Data_Structure\tshard\tI-Code_Block\n123\tB-Value\t123\tI-Code_Block\nwould\tO\twould\tO\nsee\tO\tsee\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nrange\tO\trange\tO\ndisappearing\tO\tdisappearing\tO\nacross\tO\tacross\tO\nthe\tO\tthe\tO\nmeasurements\tO\tmeasurements\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39730807\tO\t39730807\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39730807/\tO\thttps://stackoverflow.com/questions/39730807/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nMichael\tB-User_Name\tMichael\tO\nHartl\tI-User_Name\tHartl\tO\n's\tO\t's\tO\nrailstutorial.org\tB-Website\trailstutorial.org\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nan\tO\tan\tO\nexercise\tO\texercise\tO\nfactoring\tO\tfactoring\tO\nout\tO\tout\tO\na\tO\ta\tO\nform\tO\tform\tO\nin\tO\tin\tO\na\tO\ta\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nchapter\tO\tchapter\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\nlisting\tO\tlisting\tO\n10.5\tO\t10.5\tO\n,\tO\t,\tO\n10.6\tO\t10.6\tO\nand\tO\tand\tO\n10.7\tO\t10.7\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nexactly\tO\texactly\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\n:url\tB-Variable_Name\t:url\tB-Code_Block\n,\tO\t,\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\n.\tO\t.\tO\n\t\nhttps://www.railstutorial.org/book/updating_and_deleting_users\tO\thttps://www.railstutorial.org/book/updating_and_deleting_users\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\n_form.html.erb\tB-File_Name\t_form.html.erb\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5010\tI-Code_Block\tQ_5010\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nedit.html.erb\tB-File_Name\tedit.html.erb\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5011\tI-Code_Block\tQ_5011\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nnew.html.erb\tB-File_Name\tnew.html.erb\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5012\tI-Code_Block\tQ_5012\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nrepeatedly\tO\trepeatedly\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n,\tO\t,\tO\ntrying\tO\ttrying\tO\nvarious\tO\tvarious\tO\nways\tO\tways\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nto\tO\tto\tO\nno\tO\tno\tO\navail\tO\tavail\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nfailing\tO\tfailing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5013\tI-Code_Block\tQ_5013\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5014\tI-Code_Block\tQ_5014\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nroutes.rb\tB-File_Name\troutes.rb\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5015\tI-Code_Block\tQ_5015\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48406596\tO\t48406596\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48406596/\tO\thttps://stackoverflow.com/questions/48406596/\tO\n\t\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nsmtp\tB-Application\tsmtp\tO\nmailgun\tI-Application\tmailgun\tO\nfor\tO\tfor\tO\nsending\tO\tsending\tO\nemail\tO\temail\tO\nin\tO\tin\tO\nKentico\tB-Application\tKentico\tO\n.\tO\t.\tO\n\t\nhow\tO\thow\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nup\tO\tup\tO\npop3\tO\tpop3\tO\nfor\tO\tfor\tO\ncheck\tO\tcheck\tO\nBounced\tO\tBounced\tO\nemails\tO\temails\tO\nfrom\tO\tfrom\tO\nmailgun\tB-Application\tmailgun\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\na\tO\ta\tO\nport\tB-Device\tport\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48406596\tO\t48406596\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48406596/\tO\thttps://stackoverflow.com/questions/48406596/\tO\n\t\n\t\nAs\tO\tAs\tO\nper\tO\tper\tO\nBrenden\tB-User_Name\tBrenden\tO\n's\tO\t's\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nMailGun\tB-Application\tMailGun\tO\nare\tO\tare\tO\ndiscontinuing\tO\tdiscontinuing\tO\nPOP3\tO\tPOP3\tO\nsupport\tO\tsupport\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\nemail\tO\temail\tO\nsupplier\tO\tsupplier\tO\nthat\tO\tthat\tO\nsupports\tO\tsupports\tO\nPOP3\tO\tPOP3\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nlinked\tO\tlinked\tO\narticle\tO\tarticle\tO\nsuggests\tO\tsuggests\tO\nRackspace\tB-Application\tRackspace\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPOP3\tB-Application\tPOP3\tO\nserver\tI-Application\tserver\tO\nlistens\tO\tlistens\tO\nusually\tO\tusually\tO\nlisten\tO\tlisten\tO\non\tO\ton\tO\nport\tB-Device\tport\tO\n110\tB-Value\t110\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\nto\tO\tto\tO\nPOP3S\tO\tPOP3S\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\nTransport\tO\tTransport\tO\nLayer\tO\tLayer\tO\nSecurity\tO\tSecurity\tO\n(\tO\t(\tO\nTLS\tO\tTLS\tO\n)\tO\t)\tO\nor\tO\tor\tO\nSecure\tO\tSecure\tO\nSockets\tO\tSockets\tO\nLayer\tO\tLayer\tO\n(\tO\t(\tO\nSSL\tO\tSSL\tO\n)\tO\t)\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nport\tB-Device\tport\tO\n995\tB-Value\t995\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nmail\tO\tmail\tO\nprovider\tO\tprovider\tO\n's\tO\t's\tO\nsupport\tO\tsupport\tO\nteam\tO\tteam\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nadvise\tO\tadvise\tO\nyou\tO\tyou\tO\non\tO\ton\tO\nwhich\tO\twhich\tO\nport\tB-Device\tport\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6667416\tO\t6667416\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6667416/\tO\thttps://stackoverflow.com/questions/6667416/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_498\tI-Code_Block\tQ_498\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nstyle\tB-Library_Class\tstyle\tO\npart\tO\tpart\tO\nnever\tO\tnever\tO\ngets\tO\tgets\tO\napplied\tO\tapplied\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nHierachicalDataTemplate\tB-Library_Class\tHierachicalDataTemplate\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nstyle\tB-Library_Class\tstyle\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nto\tO\tto\tO\napply\tO\tapply\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nsince\tO\tsince\tO\nmultiple\tO\tmultiple\tO\ntypes\tO\ttypes\tO\nare\tO\tare\tO\ninvolved\tO\tinvolved\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6667416\tO\t6667416\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6667416/\tO\thttps://stackoverflow.com/questions/6667416/\tO\n\t\n\t\nDataTemplate\tB-Library_Class\tDataTemplate\tB-Code_Block\nhas\tO\thas\tO\nhigher\tO\thigher\tO\nprecedence\tO\tprecedence\tO\nover\tO\tover\tO\nStyle\tB-Library_Class\tStyle\tB-Code_Block\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nmoving\tO\tmoving\tO\nthe\tO\tthe\tO\nDataTemplate\tB-Library_Class\tDataTemplate\tB-Code_Block\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nStyle\tB-Library_Class\tStyle\tB-Code_Block\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_758\tI-Code_Block\tA_758\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8909317\tO\t8909317\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8909317/\tO\thttps://stackoverflow.com/questions/8909317/\tO\n\t\n\t\nthere\tO\tthere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nposts\tO\tposts\tO\nthat\tO\tthat\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nvalidation\tO\tvalidation\tO\ncontrols\tO\tcontrols\tO\ninside\tO\tinside\tO\nupdate\tB-Library_Class\tupdate\tO\npanel\tI-Library_Class\tpanel\tO\nand\tO\tand\tO\npartial\tO\tpartial\tO\npage\tO\tpage\tO\nrendering\tO\trendering\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ni\tO\ti\tO\ngot\tO\tgot\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nproblem\tO\tproblem\tO\nhere\tO\there\tO\n,\tO\t,\tO\ni\tO\ti\tO\ndid\tO\tdid\tO\ntry\tO\ttry\tO\nupdating\tO\tupdating\tO\nto\tO\tto\tO\nsp1\tB-Library\tsp1\tO\n.NET\tI-Library\t.NET\tO\nframework\tI-Library\tframework\tO\n2.0\tB-Version\t2.0\tO\nand\tO\tand\tO\nagain\tO\tagain\tO\n.NET\tB-Library\t.NET\tO\nFramework\tI-Library\tFramework\tO\n4.0\tB-Version\t4.0\tO\nbut\tO\tbut\tO\nnothing\tO\tnothing\tO\nhappens\tO\thappens\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\ni\tO\ti\tO\ngot\tO\tgot\tO\na\tO\ta\tO\ndropdownlist\tB-Library_Class\tdropdownlist\tO\ninside\tO\tinside\tO\nupdate\tB-Library_Class\tupdate\tO\npanel\tI-Library_Class\tpanel\tO\nwhose\tO\twhose\tO\nautopostback\tB-Library_Variable\tautopostback\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\ntrue\tB-Value\ttrue\tO\nand\tO\tand\tO\nan\tO\tan\tO\nempty\tB-Value\tempty\tO\nitem\tO\titem\tO\n-\tB-Code_Block\t-\tB-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\nSelect\tI-Code_Block\tSelect\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\nis\tO\tis\tO\nadded\tO\tadded\tO\nas\tO\tas\tO\nindex\tO\tindex\tB-Code_Block\n0\tB-Value\t0\tI-Code_Block\nfor\tO\tfor\tO\nvalidation\tO\tvalidation\tO\n(\tO\t(\tO\nRequired\tO\tRequired\tB-Code_Block\nField\tO\tField\tI-Code_Block\nValidator\tO\tValidator\tI-Code_Block\n)\tO\t)\tO\npurpose\tO\tpurpose\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndoes\tO\tdoes\tO\nhappen\tO\thappen\tO\nthat\tO\tthat\tO\neven\tO\teven\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nselect\tO\tselect\tO\nindex\tO\tindex\tO\n0\tB-Value\t0\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nvalidation\tO\tvalidation\tO\nmessage\tO\tmessage\tO\nappears\tO\tappears\tO\nbriefly\tO\tbriefly\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\npartial\tO\tpartial\tO\npostback\tO\tpostback\tO\ntakes\tO\ttakes\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nreasons\tO\treasons\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nor\tO\tor\tO\nalternate\tO\talternate\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nnote\tO\tnote\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\npopulating\tO\tpopulating\tO\nother\tO\tother\tO\ncontrols\tO\tcontrols\tO\n(\tO\t(\tO\ndropdownlist\tB-Library_Class\tdropdownlist\tO\n)\tO\t)\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\nindex\tO\tindex\tO\nchanged\tO\tchanged\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\ncascading\tO\tcascading\tO\ndropdownlist\tB-Library_Class\tdropdownlist\tO\nfrom\tO\tfrom\tO\nAjaxControlToolkit\tB-Library\tAjaxControlToolkit\tB-Code_Block\nbut\tO\tbut\tO\nthen\tO\tthen\tO\ni\tO\ti\tO\nlose\tO\tlose\tO\nevent\tO\tevent\tO\nvalidation\tO\tvalidation\tO\nfunctionality\tO\tfunctionality\tO\nthat\tO\tthat\tO\nother\tO\tother\tO\ncontrols\tO\tcontrols\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8909317\tO\t8909317\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8909317/\tO\thttps://stackoverflow.com/questions/8909317/\tO\n\t\n\t\nwhy\tO\twhy\tO\nnot\tO\tnot\tO\nvalidating\tO\tvalidating\tO\nclient\tO\tclient\tO\nchoise\tO\tchoise\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\nbehind\tO\tbehind\tO\n?\tO\t?\tO\n\t\nfor\tO\tfor\tO\nex\tO\tex\tO\n'\tO\t'\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1084\tI-Code_Block\tA_1084\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8909317\tO\t8909317\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8909317/\tO\thttps://stackoverflow.com/questions/8909317/\tO\n\t\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nquick\tO\tquick\tO\ntest\tO\ttest\tO\nI\tO\tI\tO\n've\tO\t've\tO\ncome\tO\tcome\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nworks\tO\tworks\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1085\tI-Code_Block\tA_1085\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbehind\tO\tbehind\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1086\tI-Code_Block\tA_1086\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPopulates\tO\tPopulates\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nDDL\tB-Variable_Name\tDDL\tO\nwhen\tO\twhen\tO\nany\tO\tany\tO\noption\tO\toption\tO\nis\tO\tis\tO\nchosen\tO\tchosen\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nitem\tO\titem\tO\nof\tO\tof\tO\n0\tB-Value\t0\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nAdded\tO\tAdded\tO\nin\tO\tin\tO\nTextBox\tB-Library_Class\tTextBox\tB-Code_Block\nand\tO\tand\tO\nButton\tB-Library_Class\tButton\tB-Code_Block\nwith\tO\twith\tO\nvalidation\tO\tvalidation\tO\ngroups\tO\tgroups\tO\n;\tO\t;\tO\nOnly\tO\tOnly\tO\nddl1\tB-Variable_Name\tddl1\tB-Code_Block\nis\tO\tis\tO\nvalidated\tO\tvalidated\tO\non\tO\ton\tO\nSelectedIndexChanged\tB-Library_Variable\tSelectedIndexChanged\tB-Code_Block\nbut\tO\tbut\tO\nboth\tO\tboth\tO\nddl1\tB-Variable_Name\tddl1\tB-Code_Block\nand\tO\tand\tO\ntxt1\tB-Variable_Name\ttxt1\tB-Code_Block\nare\tO\tare\tO\nvalidated\tO\tvalidated\tO\nOnClick\tB-Library_Function\tOnClick\tB-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47865756\tO\t47865756\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47865756/\tO\thttps://stackoverflow.com/questions/47865756/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nFacebook\tB-Application\tFacebook\tO\nApp\tO\tApp\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nsubscribed\tO\tsubscribed\tO\nto\tO\tto\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n20,000\tO\t20,000\tO\npages\tB-User_Interface_Element\tpages\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nserver\tB-Application\tserver\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nable\tO\table\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nhooks\tO\thooks\tO\nfrom\tO\tfrom\tO\nall\tO\tall\tO\nthese\tO\tthese\tO\nFacebook\tB-Application\tFacebook\tO\npages\tB-User_Interface_Element\tpages\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nunsubscribe\tO\tunsubscribe\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\nall\tO\tall\tO\nthese\tO\tthese\tO\nFacebook\tB-Application\tFacebook\tO\npages\tB-User_Interface_Element\tpages\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nquicker\tO\tquicker\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nMost\tO\tMost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\naccess\tO\taccess\tO\ntoken\tO\ttoken\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nexpired\tO\texpired\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nloop\tO\tloop\tO\nthrough\tO\tthrough\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\npages\tB-User_Interface_Element\tpages\tO\nand\tO\tand\tO\nunsubscribe\tO\tunsubscribe\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47865756\tO\t47865756\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47865756/\tO\thttps://stackoverflow.com/questions/47865756/\tO\n\t\n\t\nTo\tO\tTo\tO\nunsubscribe\tO\tunsubscribe\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nFacebook\tB-Application\tFacebook\tO\npage\tB-User_Interface_Element\tpage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ntoken\tO\ttoken\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\nApp\tB-Variable_Name\tApp\tO\nAccess\tI-Variable_Name\tAccess\tO\nToken\tI-Variable_Name\tToken\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nunsubscribe\tO\tunsubscribe\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\njust\tO\tjust\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nDELETE\tB-Library_Function\tDELETE\tO\nhttp\tO\thttp\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7031\tI-Code_Block\tA_7031\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nApp\tB-Variable_Name\tApp\tO\nAccess\tI-Variable_Name\tAccess\tO\nToken\tI-Variable_Name\tToken\tO\nby\tO\tby\tO\nsending\tO\tsending\tO\na\tO\ta\tO\nGET\tB-Library_Function\tGET\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7032\tI-Code_Block\tA_7032\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\njust\tO\tjust\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nDELETE\tB-Library_Function\tDELETE\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\neach\tO\teach\tO\npage\tB-User_Interface_Element\tpage\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nunsubscribe\tO\tunsubscribe\tO\nfrom\tO\tfrom\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25869321\tO\t25869321\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25869321/\tO\thttps://stackoverflow.com/questions/25869321/\tO\n\t\n\t\nFor\tO\tFor\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nlocation\tO\tlocation\tO\n,\tO\t,\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nLocationManager.h\tB-File_Name\tLocationManager.h\tB-Code_Block\nand\tO\tand\tO\nLocationManager.m\tB-File_Name\tLocationManager.m\tB-Code_Block\n\t\nLocationManager.h\tB-File_Name\tLocationManager.h\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2955\tI-Code_Block\tQ_2955\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLocationManager.m\tB-File_Name\tLocationManager.m\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2956\tI-Code_Block\tQ_2956\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nMainViewController.m\tB-File_Name\tMainViewController.m\tB-Code_Block\ncall\tO\tcall\tO\nlocation\tB-Library_Class\tlocation\tO\nmanager\tI-Library_Class\tmanager\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2957\tI-Code_Block\tQ_2957\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ninstall\tO\tinstall\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nlocation\tO\tlocation\tO\nis\tO\tis\tO\n0.00000\tB-Value\t0.00000\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nidea\tO\tidea\tO\nwhy\tO\twhy\tO\nlocation\tO\tlocation\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25869321\tO\t25869321\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25869321/\tO\thttps://stackoverflow.com/questions/25869321/\tO\n\t\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nremember\tO\tremember\tO\ni\tO\ti\tO\nread\tO\tread\tO\nsomewhere\tO\tsomewhere\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nimediatly\tO\timediatly\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nknown\tO\tknown\tO\nlocation\tO\tlocation\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nupdates\tO\tupdates\tO\nof\tO\tof\tO\nnew\tO\tnew\tO\nlocations\tO\tlocations\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\nGetting\tO\tGetting\tO\nthe\tO\tthe\tO\nUser\tO\tUser\tO\n's\tO\t's\tO\nCurrent\tO\tCurrent\tO\nLocation\tO\tLocation\tO\n|\tO\t|\tO\nReceiving\tO\tReceiving\tO\nLocation\tO\tLocation\tO\nData\tO\tData\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nService\tO\tService\tO\napple\tB-Organization\tapple\tO\nrecommends\tO\trecommends\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nage\tO\tage\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nreceived\tO\treceived\tO\ndata\tO\tdata\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3564\tI-Code_Block\tA_3564\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ni\tO\ti\tO\nthink\tO\tthink\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfilter\tO\tfilter\tO\nthe\tO\tthe\tO\n\"\tB-Value\t\"\tO\ninvalid\tI-Value\tinvalid\tO\n\"\tI-Value\t\"\tO\nlocation\tO\tlocation\tO\nupdates\tO\tupdates\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\n\"\tB-Value\t\"\tO\nzero\tI-Value\tzero\tO\nupdate\tI-Value\tupdate\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41534228\tO\t41534228\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41534228/\tO\thttps://stackoverflow.com/questions/41534228/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nvertx\tB-Library\tvertx\tO\nunder\tO\tunder\tO\nOSGi\tB-Library\tOSGi\tO\n(\tO\t(\tO\nbndtools/eclipse\tB-Application\tbndtools/eclipse\tO\n)\tO\t)\tO\nand\tO\tand\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nunderlying\tO\tunderlying\tO\nNetty\tB-Library\tNetty\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nvertx\tB-Library\tvertx\tO\n3.3.3\tB-Version\t3.3.3\tO\n\t\nusing\tO\tusing\tO\nbndtools\tB-Application\tbndtools\tO\nin\tO\tin\tO\nstandalone\tO\tstandalone\tO\nmode\tO\tmode\tO\n(\tO\t(\tO\nmaven\tB-Application\tmaven\tO\n)\tO\t)\tO\nso\tO\tso\tO\nall\tO\tall\tO\ndependencies\tO\tdependencies\tO\nare\tO\tare\tO\nimported\tO\timported\tO\nusing\tO\tusing\tO\nmaven\tB-Application\tmaven\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nbndtools\tB-Application\tbndtools\tO\n(\tO\t(\tO\ncnf\tO\tcnf\tO\n)\tO\t)\tO\ntemplate\tO\ttemplate\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5273\tI-Code_Block\tQ_5273\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nbundle\tO\tbundle\tO\nactivator\tO\tactivator\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nvertx\tB-Variable_Name\tvertx\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nstatic\tB-Data_Type\tstatic\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\n```\tO\t```\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5274\tI-Code_Block\tQ_5274\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n```\tO\t```\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nbndtools\tB-Application\tbndtools\tO\ntemplate\tO\ttemplate\tO\n(\tO\t(\tO\nnone\tO\tnone\tO\nmaven\tB-Application\tmaven\tO\n)\tO\t)\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nmix\tO\tmix\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nmodes\tO\tmodes\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nI\tO\tI\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nstick\tO\tstick\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmaven\tB-Application\tmaven\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nthis\tO\tthis\tO\nsample\tO\tsample\tO\nproject\tO\tproject\tO\ncloned\tO\tcloned\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nParemus\tB-Organization\tParemus\tO\nproject\tO\tproject\tO\nhello\tO\thello\tO\nexample\tO\texample\tO\nto\tO\tto\tO\ndemonstrate\tO\tdemonstrate\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\nwith\tO\twith\tO\nVert.x\tB-Library\tVert.x\tO\n&\tO\t&\tO\nOSGi\tB-Library\tOSGi\tO\n\t\nhttps://github.com/gadieichhorn/hello-examples/tree/hello-1.13.x\tO\thttps://github.com/gadieichhorn/hello-examples/tree/hello-1.13.x\tO\n\t\nEDIT\tO\tEDIT\tO\n2\tO\t2\tO\n\t\nI\tO\tI\tO\nmoved\tO\tmoved\tO\nthe\tO\tthe\tO\nVertx\tB-Library_Class\tVertx\tO\ninitialization\tO\tinitialization\tO\nto\tO\tto\tO\na\tO\ta\tO\nservice\tO\tservice\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nbundle\tO\tbundle\tO\nactivator\tO\tactivator\tO\n)\tO\t)\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nmore\tO\tmore\tO\ndetailed\tO\tdetailed\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5275\tI-Code_Block\tQ_5275\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nany\tO\tany\tO\nhelp\tO\thelp\tO\nappreciated\tO\tappreciated\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41534228\tO\t41534228\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41534228/\tO\thttps://stackoverflow.com/questions/41534228/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\n\"\tO\t\"\tO\nPlatformDependent0\tB-Library_Class\tPlatformDependent0\tO\n\"\tO\t\"\tO\nimport\tO\timport\tO\n\"\tB-File_Name\t\"\tO\nsun.misc\tI-File_Name\tsun.misc\tO\n\"\tI-File_Name\t\"\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\n\"\tB-Code_Block\t\"\tB-Code_Block\norg.osgi.framework.system.packages.extra\tI-Code_Block\torg.osgi.framework.system.packages.extra\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nsun.misc\tI-Code_Block\tsun.misc\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n1\tO\t1\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nOSGi\tB-Library\tOSGi\tO\nframework\tO\tframework\tO\n(\tO\t(\tO\nApache\tB-Application\tApache\tO\nFelix\tI-Application\tFelix\tO\n)\tO\t)\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6126\tI-Code_Block\tA_6126\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndirectly\tO\tdirectly\tO\nput\tO\tput\tO\nthis\tO\tthis\tO\nsetting\tO\tsetting\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\"\tB-File_Name\t\"\tB-Code_Block\nfelix.config.properties\tI-File_Name\tfelix.config.properties\tI-Code_Block\n\"\tI-File_Name\t\"\tI-Code_Block\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblems\tO\tproblems\tO\noccurs\tO\toccurs\tO\nbecause\tO\tbecause\tO\nsun.misc\tB-File_Name\tsun.misc\tB-Code_Block\nis\tO\tis\tO\nprivate\tO\tprivate\tO\nAPI\tB-Library\tAPI\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nexplicitly\tO\texplicitly\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\nas\tO\tas\tO\nan\tO\tan\tO\nextra\tO\textra\tO\npackage\tO\tpackage\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nMain\tO\tMain\tO\nBundle\tO\tBundle\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nimplicitly\tO\timplicitly\tO\nfor\tO\tfor\tO\npublic\tO\tpublic\tO\nAPI\tB-Library\tAPI\tO\n(\tO\t(\tO\njava.lang\tB-Library\tjava.lang\tO\n,\tO\t,\tO\nutil\tB-Library\tutil\tO\n..\tI-Library\t..\tO\n.\tI-Library\t.\tO\n)\tI-Library\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23204156\tO\t23204156\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23204156/\tO\thttps://stackoverflow.com/questions/23204156/\tO\n\t\n\t\nDoes\tO\tDoes\tO\nbinding\tO\tbinding\tO\nan\tO\tan\tO\nevent\tO\tevent\tO\non\tO\ton\tO\ndocument\tB-Variable_Name\tdocument\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nperformance\tO\tperformance\tO\nconcerns\tO\tconcerns\tO\n?\tO\t?\tO\n\t\ni.e\tO\ti.e\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2543\tI-Code_Block\tQ_2543\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nVs\tO\tVs\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2544\tI-Code_Block\tQ_2544\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nkeeping\tO\tkeeping\tO\na\tO\ta\tO\ntrack\tO\ttrack\tO\nvia\tO\tvia\tO\ndocument\tB-Variable_Name\tdocument\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nmore\tO\tmore\tO\nprocessing\tO\tprocessing\tO\npower\tO\tpower\tO\nthen\tO\tthen\tO\nassigning\tO\tassigning\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nonly\tO\tonly\tO\na\tO\ta\tO\nlimited\tO\tlimited\tO\nDOM\tB-Library\tDOM\tO\nelements\tO\telements\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23204156\tO\t23204156\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23204156/\tO\thttps://stackoverflow.com/questions/23204156/\tO\n\t\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nperformance\tO\tperformance\tO\ntest\tO\ttest\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\ndifference\tO\tdifference\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nminimal\tO\tminimal\tO\nimpact\tO\timpact\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nbinding\tO\tbinding\tO\nevents\tO\tevents\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nwill\tO\twill\tO\nmean\tO\tmean\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncatch\tO\tcatch\tO\nany\tO\tany\tO\nelement\tO\telement\tO\nevent\tO\tevent\tO\nonce\tO\tonce\tO\nit\tO\tit\tO\nbubbles\tO\tbubbles\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntop-most\tO\ttop-most\tO\nelement\tO\telement\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\nAnyways\tO\tAnyways\tO\n,\tO\t,\tO\nskipping\tO\tskipping\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nperformance\tO\tperformance\tO\nargument\tO\targument\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\nlooks\tO\tlooks\tO\nbetter\tO\tbetter\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nbind\tO\tbind\tO\na\tO\ta\tO\nhandler\tB-Library_Class\thandler\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nnearest\tO\tnearest\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nonly\tO\tonly\tO\nabout\tO\tabout\tO\nperformance\tO\tperformance\tO\n:\tO\t:\tO\nit\tO\tit\tO\n's\tO\t's\tO\nmore\tO\tmore\tO\nlogical\tO\tlogical\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27208364\tO\t27208364\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27208364/\tO\thttps://stackoverflow.com/questions/27208364/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\n2\tO\t2\tO\nsubstrings\tO\tsubstrings\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nI\tO\tI\tO\nmust\tO\tmust\tO\nhave\tO\thave\tO\n/etc/ld.so.cache\tB-Value\t/etc/ld.so.cache\tB-Code_Block\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\n/etc/ld.so.cache\tB-Value\t/etc/ld.so.cache\tB-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3131\tI-Code_Block\tQ_3131\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ngroup\tO\tgroup\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\n,\tO\t,\tO\nif\tO\tif\tO\nmy\tO\tmy\tO\nregex\tB-Variable_Name\tregex\tO\nis\tO\tis\tO\ngood\tO\tgood\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27208364\tO\t27208364\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27208364/\tO\thttps://stackoverflow.com/questions/27208364/\tO\n\t\n\t\nNearly\tO\tNearly\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nPOSIX\tB-Operating_System\tPOSIX\tO\nregexes\tO\tregexes\tO\n,\tO\t,\tO\nparentheses\tB-Value\tparentheses\tO\nand\tO\tand\tO\nother\tO\tother\tO\nspecial\tO\tspecial\tO\ncharacters\tB-Data_Type\tcharacters\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nescaped\tO\tescaped\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nmatch\tO\tmatch\tO\nthemselves\tO\tthemselves\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\ntheir\tO\ttheir\tO\nspecial\tO\tspecial\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3765\tI-Code_Block\tA_3765\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ncaptures\tO\tcaptures\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nthe\tO\tthe\tO\nregex\tO\tregex\tO\nwithout\tO\twithout\tO\nREG_NOSUB\tB-Code_Block\tREG_NOSUB\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3766\tI-Code_Block\tA_3766\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\n..\tO\t..\tO\nthe\tO\tthe\tO\nprintf\tB-Code_Block\tprintf\tB-Code_Block\nwill\tO\twill\tO\nprobably\tO\tprobably\tO\nsegfault\tB-Error_Name\tsegfault\tO\non\tO\ton\tO\nyou\tO\tyou\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\n;\tO\t;\tO\nthe\tO\tthe\tO\narguments\tO\targuments\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nformat\tO\tformat\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45518269\tO\t45518269\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45518269/\tO\thttps://stackoverflow.com/questions/45518269/\tO\n\t\n\t\nSo\tO\tSo\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nsay\tO\tsay\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5960\tI-Code_Block\tQ_5960\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5961\tI-Code_Block\tQ_5961\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ntd2\tB-HTML_XML_Tag\ttd2\tO\ntext\tB-User_Interface_Element\ttext\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nfirst\tO\tfirst\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ntd3\tB-HTML_XML_Tag\ttd3\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nwhen\tO\twhen\tO\nclicking\tO\tclicking\tO\nthe\tO\tthe\tO\ntd2\tO\ttd2\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nit\tO\tit\tO\nmakes\tO\tmakes\tO\na\tO\ta\tO\nfadeout\tO\tfadeout\tO\nor\tO\tor\tO\nslides\tO\tslides\tO\nupwards\tO\tupwards\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nreveal\tO\treveal\tO\nthe\tO\tthe\tO\ntd3\tO\ttd3\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\ntext\tB-User_Interface_Element\ttext\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nparticular\tO\tparticular\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncome\tO\tcome\tO\nback\tO\tback\tO\nwhen\tO\twhen\tO\nre-clicking\tO\tre-clicking\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\na\tO\ta\tO\n\"\tO\t\"\tO\none\tO\tone\tO\nway\tO\tway\tO\nticket\tO\tticket\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nClick\tO\tClick\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\ngone\tO\tgone\tO\nforever\tO\tforever\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45518269\tO\t45518269\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45518269/\tO\thttps://stackoverflow.com/questions/45518269/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nJQuery\tB-Library\tJQuery\tO\nUI\tI-Library\tUI\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfade\tO\tfade\tB-Code_Block\neffect\tO\teffect\tO\n,\tO\t,\tO\nand\tO\tand\tO\nregister\tO\tregister\tO\nto\tO\tto\tO\nclick\tO\tclick\tB-Code_Block\nevent\tO\tevent\tO\non\tO\ton\tO\n.td2\tB-HTML_XML_Tag\t.td2\tB-Code_Block\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nDOM\tB-Library\tDOM\tO\nas\tO\tas\tO\nper\tO\tper\tO\nyour\tO\tyour\tO\nrequirement\tO\trequirement\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\none\tO\tone\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6599\tI-Code_Block\tQ_6599\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6600\tI-Code_Block\tQ_6600\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6601\tI-Code_Block\tQ_6601\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45518269\tO\t45518269\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45518269/\tO\thttps://stackoverflow.com/questions/45518269/\tO\n\t\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6602\tI-Code_Block\tQ_6602\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6603\tI-Code_Block\tQ_6603\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6604\tI-Code_Block\tQ_6604\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\nsome\tO\tsome\tO\njavascript\tB-Language\tjavascript\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\njQuery\tB-Library\tjQuery\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n;)\tO\t;)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37692737\tO\t37692737\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37692737/\tO\thttps://stackoverflow.com/questions/37692737/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\nan\tO\tan\tO\nexplain\tO\texplain\tO\ncommand\tO\tcommand\tO\nin\tO\tin\tO\nmysql(innodb)\tB-Application\tmysql(innodb)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4734\tI-Code_Block\tQ_4734\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nschema\tO\tschema\tO\nof\tO\tof\tO\ntable\tB-Data_Structure\ttable\tO\nmulti_index_test_tbl_1\tB-Variable_Name\tmulti_index_test_tbl_1\tB-Code_Block\nis\tO\tis\tO\nas\tO\tas\tO\nfollow\tO\tfollow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4735\tI-Code_Block\tQ_4735\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nquery_index_1\tB-Variable_Name\tquery_index_1\tB-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\n'\tO\t'\tO\nusing\tO\tusing\tO\nindex\tO\tindex\tO\n'\tO\t'\tO\nappears\tO\tappears\tO\nin\tO\tin\tO\nExtra\tB-Variable_Name\tExtra\tB-Code_Block\nwhile\tO\twhile\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\nquery_index_1\tB-Variable_Name\tquery_index_1\tB-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ncontain\tO\tcontain\tO\nall\tO\tall\tO\nfields\tO\tfields\tO\nin\tO\tin\tO\ntable\tB-Data_Structure\ttable\tO\nmulti_index_test_tbl_1\tB-Variable_Name\tmulti_index_test_tbl_1\tB-Code_Block\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nmysql\tB-Application\tmysql\tO\ndoc\tO\tdoc\tO\nsays\tO\tsays\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nconfused\tO\tconfused\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nexactly\tO\texactly\tO\nhappening\tO\thappening\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37692737\tO\t37692737\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37692737/\tO\thttps://stackoverflow.com/questions/37692737/\tO\n\t\n\t\nAh\tO\tAh\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\n'\tO\t'\tO\ncontain\tO\tcontain\tO\nrequired\tO\trequired\tO\nfields\tO\tfields\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nelaborate.\tO\telaborate.\tO\n.\tO\t.\tO\n\t\nInnoDB\tB-Application\tInnoDB\tO\nincludes\tO\tincludes\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nPRIMARY\tB-Code_Block\tPRIMARY\tB-Code_Block\nKEY\tI-Code_Block\tKEY\tI-Code_Block\nin\tO\tin\tO\neach\tO\teach\tO\n'\tO\t'\tO\nsecondary\tO\tsecondary\tO\n'\tO\t'\tO\nindex\tO\tindex\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5455\tI-Code_Block\tA_5455\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nis\tO\tis\tO\nreally\tO\treally\tO\nmore\tO\tmore\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5456\tI-Code_Block\tA_5456\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nincludes\tO\tincludes\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSELECT\tB-Library_Function\tSELECT\tB-Code_Block\n,\tO\t,\tO\nincluding\tO\tincluding\tO\n*\tB-Code_Block\t*\tB-Code_Block\nis\tO\tis\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nsecondary\tO\tsecondary\tO\nindex\tO\tindex\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nUsing\tO\tUsing\tO\nindex\tO\tindex\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\n'\tO\t'\tO\ncorrect\tO\tcorrect\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\none\tO\tone\tO\nway\tO\tway\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nInnoDB\tB-Application\tInnoDB\tO\nis\tO\tis\tO\nsometimes\tO\tsometimes\tO\nbetter\tO\tbetter\tO\nthan\tO\tthan\tO\nMyISAM\tB-Application\tMyISAM\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nEXPLAIN\tB-Code_Block\tEXPLAIN\tB-Code_Block\nFORMAT\tI-Code_Block\tFORMAT\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nJSON\tI-Code_Block\tJSON\tI-Code_Block\nSELECT\tI-Code_Block\tSELECT\tI-Code_Block\n..\tI-Code_Block\t..\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\nto\tO\tto\tO\nget\tO\tget\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21836851\tO\t21836851\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21836851/\tO\thttps://stackoverflow.com/questions/21836851/\tO\n\t\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nsimple\tO\tsimple\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2355\tI-Code_Block\tQ_2355\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nif\tO\tif\tO\ni\tO\ti\tO\nput\tO\tput\tO\n1000000000\tB-Value\t1000000000\tO\nfor\tO\tfor\tO\nboth\tO\tboth\tO\nm\tB-Variable_Name\tm\tO\nand\tO\tand\tO\nn\tB-Variable_Name\tn\tO\nas\tO\tas\tO\na\tO\ta\tO\nresult\tO\tresult\tO\ni\tO\ti\tO\nget\tO\tget\tO\n-1486618624\tB-Value\t-1486618624\tO\n,\tO\t,\tO\nalso\tO\talso\tO\nm\tB-Variable_Name\tm\tO\nand\tO\tand\tO\nn\tB-Variable_Name\tn\tO\nare\tO\tare\tO\nlongint\tB-Data_Type\tlongint\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nlimit\tO\tlimit\tO\nwith\tO\twith\tO\n1\tB-Value\t1\tO\n000\tI-Value\t000\tO\n000\tI-Value\t000\tO\n000\tI-Value\t000\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21836851\tO\t21836851\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21836851/\tO\thttps://stackoverflow.com/questions/21836851/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nm*n\tB-Code_Block\tm*n\tB-Code_Block\nis\tO\tis\tO\n1,000,000,000,000,000,000\tB-Value\t1,000,000,000,000,000,000\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nfit\tO\tfit\tO\nin\tO\tin\tO\na\tO\ta\tO\nLongInt\tB-Data_Type\tLongInt\tB-Code_Block\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nusing\tO\tusing\tO\nInt64\tB-Data_Type\tInt64\tB-Code_Block\nor\tO\tor\tO\nQWord\tB-Data_Type\tQWord\tB-Code_Block\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45228951\tO\t45228951\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45228951/\tO\thttps://stackoverflow.com/questions/45228951/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nhad\tO\thad\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nitems\tO\titems\tO\ncome\tO\tcome\tO\nup\tO\tup\tO\nrecently\tO\trecently\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nimmediately\tO\timmediately\tO\nafter\tO\tafter\tO\ninitial\tO\tinitial\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nload\tO\tload\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nscenario's\tO\tscenario's\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\nProcessing\tO\tProcessing\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nshown\tO\tshown\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprocessing\tO\tprocessing\tO\nscreen\tB-User_Interface_Element\tscreen\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\nAPI\tB-Library\tAPI\tO\n(\tO\t(\tO\ndynamically\tO\tdynamically\tO\nloaded\tO\tloaded\tO\nand\tO\tand\tO\nparsed\tO\tparsed\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ndisplayed\tO\tdisplayed\tO\nfor\tO\tfor\tO\nprocessing\tO\tprocessing\tO\n)\tO\t)\tO\n\t\n2)\tO\t2)\tO\nAutomatically\tO\tAutomatically\tO\nload\tO\tload\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\nwindow/tab\tB-User_Interface_Element\twindow/tab\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nfinishes\tO\tfinishes\tO\nloading\tO\tloading\tO\nbased\tO\tbased\tO\non\tO\ton\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrecord\tO\trecord\tO\n.\tO\t.\tO\n\t\n3)\tO\t3)\tO\nA\tO\tA\tO\npopup\tB-User_Interface_Element\tpopup\tO\nprompt\tI-User_Interface_Element\tprompt\tO\nafter\tO\tafter\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nload\tO\tload\tO\nnotifying\tO\tnotifying\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nof\tO\tof\tO\na\tO\ta\tO\nsituation\tO\tsituation\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nitem\tO\titem\tO\nthe\tO\tthe\tO\nloaded\tO\tloaded\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nthree\tO\tthree\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\npresent\tO\tpresent\tO\ndifferent\tO\tdifferent\tO\nchallenges\tO\tchallenges\tO\nwhich\tO\twhich\tO\nlead\tO\tlead\tO\nme\tO\tme\tO\nto\tO\tto\tO\nwonder\tO\twonder\tO\nif\tO\tif\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nday\tO\tday\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthese\tO\tthese\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nitem\tO\titem\tO\n1\tO\t1\tO\n-\tO\t-\tO\ncurrently\tO\tcurrently\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\na\tO\ta\tO\ncall\tO\tcall\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nGetRecords\tB-Function_Name\tGetRecords\tO\n\"\tO\t\"\tO\noverride\tO\toverride\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nView\tO\tView\tO\ncontains\tO\tcontains\tO\nno\tO\tno\tO\nrecords\tO\trecords\tO\n,\tO\t,\tO\ncalls\tO\tcalls\tO\nthe\tO\tthe\tO\na\tO\ta\tO\nlong\tO\tlong\tO\nrunning\tO\trunning\tO\nprocess\tO\tprocess\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\ngrab\tO\tgrab\tO\nthe\tO\tthe\tO\nrecords\tO\trecords\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\npresented\tO\tpresented\tO\nwith\tO\twith\tO\ntwo\tO\ttwo\tO\nissues\tO\tissues\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nlong\tO\tlong\tO\nprocess\tO\tprocess\tO\nrun\tO\trun\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrequest\tO\trequest\tO\na\tO\ta\tO\nrefresh\tO\trefresh\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\n\"\tO\t\"\tO\nProcess/Process\tO\tProcess/Process\tO\nAll\tO\tAll\tO\n\"\tO\t\"\tO\nbefore\tO\tbefore\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nalso\tO\talso\tO\neffects\tO\teffects\tO\nscheduling\tO\tscheduling\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nblock\tO\tblock\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nwith\tO\twith\tO\na\tO\ta\tO\nWaitTillCompleted\tB-Function_Name\tWaitTillCompleted\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\npresented\tO\tpresented\tO\nwith\tO\twith\tO\na\tO\ta\tO\nstandard\tO\tstandard\tO\npage\tB-User_Interface_Element\tpage\tO\nloading\tI-User_Interface_Element\tloading\tO\nspinner\tI-User_Interface_Element\tspinner\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nLong\tO\tLong\tO\nrunning\tO\trunning\tO\nProcess\tO\tProcess\tO\n\"\tO\t\"\tO\nindicator\tO\tindicator\tO\nbut\tO\tbut\tO\nallows\tO\tallows\tO\nscheduling\tO\tscheduling\tO\nto\tO\tto\tO\nwork\tO\twork\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\n#2\tO\t#2\tO\n/3\tO\t/3\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nwindow/tab\tB-User_Interface_Element\twindow/tab\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\npopup\tB-User_Interface_Element\tpopup\tO\nboth\tO\tboth\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ninitiated\tO\tinitiated\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\npostback\tO\tpostback\tO\nto\tO\tto\tO\nfunction\tO\tfunction\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nleads\tO\tleads\tO\nme\tO\tme\tO\nto\tO\tto\tO\nbelieve\tO\tbelieve\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\njavascript\tB-Language\tjavascript\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\nfinishes\tO\tfinishes\tO\ninit\tO\tinit\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nactions\tO\tactions\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\neither\tO\teither\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nsituations\tO\tsituations\tO\nwith\tO\twith\tO\nnative\tO\tnative\tO\nframework\tO\tframework\tO\nmethods\tO\tmethods\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45228951\tO\t45228951\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45228951/\tO\thttps://stackoverflow.com/questions/45228951/\tO\n\t\n\t\nWhile\tO\tWhile\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndirectly\tO\tdirectly\tO\nanswer\tO\tanswer\tO\nthe\tO\tthe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\npage\tB-User_Interface_Element\tpage\tO\nload\tO\tload\tO\n,\tO\t,\tO\nhere\tO\there\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\noptions\tO\toptions\tO\nfor\tO\tfor\tO\nchecking\tO\tchecking\tO\nfor\tO\tfor\tO\nrunning\tO\trunning\tO\nprocess\tO\tprocess\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nor\tO\tor\tO\ndisplaying\tO\tdisplaying\tO\nmessages\tO\tmessages\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\na\tO\ta\tO\npopup\tB-User_Interface_Element\tpopup\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nareas\tO\tareas\tO\nwhere\tO\twhere\tO\nwe\tO\twe\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nwait\tO\twait\tO\nor\tO\tor\tO\nprevent\tO\tprevent\tO\nusers\tO\tusers\tO\nfrom\tO\tfrom\tO\nre-processing\tO\tre-processing\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nprocess\tO\tprocess\tO\ncompletes\tO\tcompletes\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nimplemented\tO\timplemented\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nexamples\tO\texamples\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\ndisable\tO\tdisable\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nor\tO\tor\tO\nexist\tO\texist\tO\naction\tO\taction\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6555\tI-Code_Block\tA_6555\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWait\tO\tWait\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nrunning\tO\trunning\tO\nprocess\tO\tprocess\tO\nto\tO\tto\tO\nfinish\tO\tfinish\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6556\tI-Code_Block\tA_6556\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nworked\tO\tworked\tO\nwith\tO\twith\tO\na\tO\ta\tO\npopup\tB-User_Interface_Element\tpopup\tO\nduring\tO\tduring\tO\ndata\tO\tdata\tO\nload\tO\tload\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\noff\tO\toff\tO\npresenting\tO\tpresenting\tO\na\tO\ta\tO\nrow\tB-Variable_Name\trow\tO\nwarning/error\tO\twarning/error\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndisplayed\tO\tdisplayed\tO\ndata\tO\tdata\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\na\tO\ta\tO\npop\tB-User_Interface_Element\tpop\tO\nup\tI-User_Interface_Element\tup\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6557\tI-Code_Block\tA_6557\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14727586\tO\t14727586\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14727586/\tO\thttps://stackoverflow.com/questions/14727586/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nandroid\tB-Operating_System\tandroid\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1411\tI-Code_Block\tQ_1411\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhy\tO\twhy\tO\nnot\tO\tnot\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1412\tI-Code_Block\tQ_1412\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nmodifying\tO\tmodifying\tO\nargument\tO\targument\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nreturning\tO\treturning\tO\nnew\tO\tnew\tO\nvalue\tO\tvalue\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14727586\tO\t14727586\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14727586/\tO\thttps://stackoverflow.com/questions/14727586/\tO\n\t\n\t\nThe\tO\tThe\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nmodifying\tO\tmodifying\tO\nan\tO\tan\tO\nargument\tO\targument\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nreturning\tO\treturning\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ninstance\tO\tinstance\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nput\tO\tput\tO\ncontrol\tO\tcontrol\tO\nof\tO\tof\tO\ninstantiation\tO\tinstantiation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nhands\tO\thands\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncalling\tO\tcalling\tO\ncode\tO\tcode\tO\n-\tO\t-\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\nallow\tO\tallow\tO\nit\tO\tit\tO\nto\tO\tto\tO\nre-use\tO\tre-use\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n'\tO\t'\tO\nmodifying\tO\tmodifying\tO\nargument\tO\targument\tO\n'\tO\t'\tO\napproach\tO\tapproach\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ninitialise\tO\tinitialise\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nusing\tO\tusing\tO\nseveral\tO\tseveral\tO\nsuch\tO\tsuch\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1875\tI-Code_Block\tA_1875\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nArguably\tO\tArguably\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nby\tO\tby\tO\nreturning\tO\treturning\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ninstance\tO\tinstance\tO\nas\tO\tas\tO\nwas\tO\twas\tO\npassed\tO\tpassed\tO\nin\tO\tin\tO\nas\tO\tas\tO\na\tO\ta\tO\nparameter\tO\tparameter\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\npersonally\tO\tpersonally\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nasking\tO\tasking\tO\nfor\tO\tfor\tO\ntrouble\tO\ttrouble\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\npossible\tO\tpossible\tO\nreason\tO\treason\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ncost\tO\tcost\tO\nof\tO\tof\tO\ninstantiation\tO\tinstantiation\tO\nwas\tO\twas\tO\nhigh\tO\thigh\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrecycle\tO\trecycle\tO\nan\tO\tan\tO\nold\tO\told\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nappear\tO\tappear\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nyou\tO\tyou\tO\npresent\tO\tpresent\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nan\tO\tan\tO\noptimisation\tO\toptimisation\tO\nso\tO\tso\tO\nonly\tO\tonly\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nif\tO\tif\tO\nabsolutely\tO\tabsolutely\tO\nnecessary\tO\tnecessary\tO\n!\tO\t!\tO\n\t\nPersonally\tO\tPersonally\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ntend\tO\ttend\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ninstance\tO\tinstance\tO\n'\tO\t'\tO\napproach\tO\tapproach\tO\nunless\tO\tunless\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nreason\tO\treason\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsimpler\tO\tsimpler\tO\nand\tO\tand\tO\ndecreases\tO\tdecreases\tO\nthe\tO\tthe\tO\nlikelihood\tO\tlikelihood\tO\nof\tO\tof\tO\nsubtle\tO\tsubtle\tO\nerrors\tO\terrors\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncalling\tO\tcalling\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18528327\tO\t18528327\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18528327/\tO\thttps://stackoverflow.com/questions/18528327/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nwith\tO\twith\tO\na\tO\ta\tO\n.NET/C\tB-Library\t.NET/C\tO\n#\tB-Language\t#\tO\nWebForm\tB-User_Interface_Element\tWebForm\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nSession\tB-Library_Class\tSession\tB-Code_Block\nor\tO\tor\tO\nRequest\tB-Library_Class\tRequest\tB-Code_Block\n(\tO\t(\tO\nas\tO\tas\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\non\tO\ton\tO\nan\tO\tan\tO\n.aspx\tB-File_Type\t.aspx\tO\npage\tB-User_Interface_Element\tpage\tO\n)\tO\t)\tO\nwithout\tO\twithout\tO\nprefix\tO\tprefix\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nHttpContext.Current\tB-Library_Variable\tHttpContext.Current\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\nimport\tO\timport\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\n?\tO\t?\tO\n\t\nBut\tO\tBut\tO\nwhich\tO\twhich\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18528327\tO\t18528327\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18528327/\tO\thttps://stackoverflow.com/questions/18528327/\tO\n\t\n\t\nTo\tO\tTo\tO\nobtain\tO\tobtain\tO\nRequest\tB-Library_Class\tRequest\tB-Code_Block\n,\tO\t,\tO\nSession\tB-Library_Class\tSession\tB-Code_Block\netc\tO\tetc\tO\nin\tO\tin\tO\nan\tO\tan\tO\nunrelated\tO\tunrelated\tO\nclass\tO\tclass\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nHttpContext.Current\tB-Library_Variable\tHttpContext.Current\tB-Code_Block\nfirst.\tO\tfirst.\tO\n.\tO\t.\tO\nwell\tO\twell\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\n-\tO\t-\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\nproperties\tO\tproperties\tO\nsomewhere\tO\tsomewhere\tO\n-\tO\t-\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2426\tI-Code_Block\tA_2426\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nfrankly\tO\tfrankly\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nstrongly\tO\tstrongly\tO\nadvise\tO\tadvise\tO\nlimiting\tO\tlimiting\tO\nhow\tO\thow\tO\nmuch\tO\tmuch\tO\nyour\tO\tyour\tO\nutility\tO\tutility\tO\ncode\tO\tcode\tO\nknows\tO\tknows\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nmodel\tO\tmodel\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsimply\tO\tsimply\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\nand\tO\tand\tO\ngive\tO\tgive\tO\nit\tO\tit\tO\nexactly\tO\texactly\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nlayer\tO\tlayer\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\nASP.NET\tB-Library\tASP.NET\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nyour\tO\tyour\tO\nlogic\tO\tlogic\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18528327\tO\t18528327\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18528327/\tO\thttps://stackoverflow.com/questions/18528327/\tO\n\t\n\t\nBy\tO\tBy\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nSystem.Web.SessionState\tB-Library_Class\tSystem.Web.SessionState\tB-Code_Block\nyou\tO\tyou\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\n\t\nNamespace\tO\tNamespace\tO\n:\tO\t:\tO\nSystem.Web.SessionState\tB-Library_Class\tSystem.Web.SessionState\tO\n\t\nAssembly\tO\tAssembly\tO\n:\tO\t:\tO\nSystem.Web\tB-Library_Class\tSystem.Web\tO\n(\tO\t(\tO\nin\tO\tin\tO\nSystem.Web.dll\tB-Library_Class\tSystem.Web.dll\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29816538\tO\t29816538\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29816538/\tO\thttps://stackoverflow.com/questions/29816538/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\npage\tO\tpage\tO\napplication\tO\tapplication\tO\nusing\tO\tusing\tO\nAngularJS\tB-Library\tAngularJS\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfacing\tO\tfacing\tO\none\tO\tone\tO\nperformance\tO\tperformance\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napplication\tO\tapplication\tO\nprocesses\tO\tprocesses\tO\nincoming\tO\tincoming\tO\nevents\tO\tevents\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAngularJS\tB-Library\tAngularJS\tO\nframework\tO\tframework\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nside\tO\tside\tO\nusing\tO\tusing\tO\nASP.NET\tB-Library\tASP.NET\tO\nSignalR\tI-Library\tSignalR\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmillions\tO\tmillions\tO\nof\tO\tof\tO\nevents\tO\tevents\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nreceived\tO\treceived\tO\nby\tO\tby\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nperformance\tO\tperformance\tO\nissue\tO\tissue\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\nand\tO\tand\tO\nit\tO\tit\tO\neasily\tO\teasily\tO\npasses\tO\tpasses\tO\nthese\tO\tthese\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nevents\tO\tevents\tO\none\tO\tone\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAngularJS\tB-Library\tAngularJS\tO\nframework\tO\tframework\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nlies\tO\tlies\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nprocessing\tO\tprocessing\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\n,\tO\t,\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\n$scope.$apply()\tB-Library_Function\t$scope.$apply()\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nand\tO\tand\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\ncase\tO\tcase\tO\nwhere\tO\twhere\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmultiple\tO\tmultiple\tO\nevents\tO\tevents\tO\nbeing\tO\tbeing\tO\nreceived\tO\treceived\tO\none\tO\tone\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\n,\tO\t,\tO\ncalling\tO\tcalling\tO\n$scope.$apply()\tB-Library_Function\t$scope.$apply()\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nslows\tO\tslows\tO\ndown\tO\tdown\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\nquickly\tO\tquickly\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nevents\tO\tevents\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\npassed\tO\tpassed\tO\nat\tO\tat\tO\nrandom\tO\trandom\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nany\tO\tany\tO\nevents\tO\tevents\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nreceived\tO\treceived\tO\nby\tO\tby\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nat\tO\tat\tO\nany\tO\tany\tO\npoint\tO\tpoint\tO\nin\tO\tin\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nresolved\tO\tresolved\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29816538\tO\t29816538\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29816538/\tO\thttps://stackoverflow.com/questions/29816538/\tO\n\t\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\n$scope.$apply()\tB-Library_Function\t$scope.$apply()\tB-Code_Block\n,\tO\t,\tO\nuse\tO\tuse\tO\n$scope.$evalAsync()\tB-Library_Function\t$scope.$evalAsync()\tB-Code_Block\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\ndocs\tO\tdocs\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\ntended\tO\ttended\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\n$scope.$safeApply()\tB-Library_Function\t$scope.$safeApply()\tB-Code_Block\nmethod\tO\tmethod\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\neffectively\tO\teffectively\tO\na\tO\ta\tO\ndebounced\tO\tdebounced\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\n$scope.$evalAsync()\tB-Library_Function\t$scope.$evalAsync()\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35712849\tO\t35712849\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35712849/\tO\thttps://stackoverflow.com/questions/35712849/\tO\n\t\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nexcel\tB-File_Type\texcel\tO\nfile\tO\tfile\tO\nas\tO\tas\tO\nsuch\tO\tsuch\tO\n\t\nhttp://i.stack.imgur.com/zX3xC.png\tO\thttp://i.stack.imgur.com/zX3xC.png\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ninput\tO\tinput\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nafter\tO\tafter\tO\nhaving\tO\thaving\tO\nthe\tO\tthe\tO\nsearch\tB-User_Interface_Element\tsearch\tO\nbutton\tI-User_Interface_Element\tbutton\tO\npressed\tO\tpressed\tO\nand\tO\tand\tO\nan\tO\tan\tO\nInput\tB-User_Interface_Element\tInput\tO\nbox\tI-User_Interface_Element\tbox\tO\nappears\tO\tappears\tO\n,\tO\t,\tO\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsearch\tB-User_Interface_Element\tsearch\tO\nbar\tI-User_Interface_Element\tbar\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nnumbers\tO\tnumbers\tO\nthat\tO\tthat\tO\nmatch\tO\tmatch\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nspreadsheet\tB-User_Interface_Element\tspreadsheet\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nselected\tO\tselected\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nas\tO\tas\tO\nas\tO\tas\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nput\tO\tput\tO\nin\tO\tin\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nnumbers\tO\tnumbers\tO\n(\tO\t(\tO\n40\tB-Value\t40\tO\n,\tO\t,\tO\n21\tB-Value\t21\tO\n,\tO\t,\tO\n33\tB-Value\t33\tO\nseparated\tO\tseparated\tO\nby\tO\tby\tO\ncommas\tO\tcommas\tO\n)\tO\t)\tO\n\t\nMy\tO\tMy\tO\ncurrent\tO\tcurrent\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4371\tI-Code_Block\tQ_4371\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nfairly\tO\tfairly\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\ncoding\tO\tcoding\tO\nso\tO\tso\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nhas\tO\thas\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\ninternet\tO\tinternet\tO\nresearch\tO\tresearch\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35712849\tO\t35712849\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35712849/\tO\thttps://stackoverflow.com/questions/35712849/\tO\n\t\n\t\nAbandon\tO\tAbandon\tO\nyour\tO\tyour\tO\nAutoFilter\tB-Library_Function\tAutoFilter\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nfavor\tO\tfavor\tO\nof\tO\tof\tO\na\tO\ta\tO\nRange.Find\tB-Library_Function\tRange.Find\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nultimately\tO\tultimately\tO\npossible\tO\tpossible\tO\nwith\tO\twith\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\n.AutoFilters\tB-Library_Function\t.AutoFilters\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\neach\tO\teach\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n,\tO\t,\tO\nsimply\tO\tsimply\tO\ncollecting\tO\tcollecting\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\n.Find\tB-Library_Function\t.Find\tO\noperation\tO\toperation\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nUnion\tB-Library_Function\tUnion\tO\nmethod\tO\tmethod\tO\nmakes\tO\tmakes\tO\nmore\tO\tmore\tO\nsense\tO\tsense\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5102\tI-Code_Block\tA_5102\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nclear\tO\tclear\tO\nwhat\tO\twhat\tO\nactions\tO\tactions\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nRange\tB-Library_Function\tRange\tO\n.Selectยน\tI-Library_Function\t.Selectยน\tO\nmethod\tO\tmethod\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\napplied\tO\tapplied\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nsuggest\tO\tsuggest\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nWith\tB-Code_Block\tWith\tO\n..\tI-Code_Block\t..\tO\n.\tI-Code_Block\t.\tO\nEnd\tI-Code_Block\tEnd\tO\nWith\tI-Code_Block\tWith\tO\nstatement\tO\tstatement\tO\nwoudl\tO\twoudl\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ncontinue\tO\tcontinue\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nrng\tB-Variable_Name\trng\tO\ndiscontiguous\tO\tdiscontiguous\tO\nRange\tB-Library_Class\tRange\tO\nobject\tO\tobject\tO\nwithout\tO\twithout\tO\nactually\tO\tactually\tO\nselecting\tO\tselecting\tO\nit\tO\tit\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nยน\tO\tยน\tO\nSee\tO\tSee\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nusing\tO\tusing\tO\nSelect\tB-Library_Function\tSelect\tO\nin\tO\tin\tO\nExcel\tB-Application\tExcel\tO\nVBA\tI-Application\tVBA\tO\nmacros\tO\tmacros\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\nmethods\tO\tmethods\tO\non\tO\ton\tO\ngetting\tO\tgetting\tO\naway\tO\taway\tO\nfrom\tO\tfrom\tO\nrelying\tO\trelying\tO\non\tO\ton\tO\nselect\tB-Library_Function\tselect\tO\nand\tO\tand\tO\nactivate\tB-Library_Function\tactivate\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nyour\tO\tyour\tO\ngoals\tO\tgoals\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40709760\tO\t40709760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40709760/\tO\thttps://stackoverflow.com/questions/40709760/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntested\tO\ttested\tO\nwhile\tB-Code_Block\twhile\tO\nloop\tO\tloop\tO\nbelow\tO\tbelow\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5145\tI-Code_Block\tQ_5145\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nx\tB-Code_Block\tx\tO\n=\tI-Code_Block\t=\tO\n1.5\tI-Code_Block\t1.5\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nused\tO\tused\tO\nwhile\tO\twhile\tO\ncondition\tO\tcondition\tO\nwhere\tO\twhere\tO\nx\tB-Code_Block\tx\tO\n<\tI-Code_Block\t<\tO\n14.1\tI-Code_Block\t14.1\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nexplain\tO\texplain\tO\nthis\tO\tthis\tO\nresult\tO\tresult\tO\n?\tO\t?\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\n\t\nand\tO\tand\tO\none\tO\tone\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\nfor\tO\tfor\tO\nDouble\tB-Data_Type\tDouble\tO\nand\tO\tand\tO\nFloat\tB-Data_Type\tFloat\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5146\tI-Code_Block\tQ_5146\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUpdate\tO\tUpdate\tO\n2\tO\t2\tO\n\t\nand\tO\tand\tO\nanother\tO\tanother\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ndifference\tO\tdifference\tO\nfor\tO\tfor\tO\n<\tB-Code_Block\t<\tO\nand\tO\tand\tO\n<=\tB-Code_Block\t<=\tO\nconditions\tO\tconditions\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nit\tO\tit\tO\nmean\tO\tmean\tO\nthat\tO\tthat\tO\nusage\tO\tusage\tO\nof\tO\tof\tO\n<=\tB-Code_Block\t<=\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nsense\tO\tsense\tO\nfor\tO\tfor\tO\nfloating\tB-Data_Type\tfloating\tO\npoint\tI-Data_Type\tpoint\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5147\tI-Code_Block\tQ_5147\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40709760\tO\t40709760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40709760/\tO\thttps://stackoverflow.com/questions/40709760/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nelse\tO\telse\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\nexpect\tO\texpect\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nloop\tO\tloop\tO\nis\tO\tis\tO\nexecuted\tO\texecuted\tO\n15\tO\t15\tO\ntimes\tO\ttimes\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\n14th\tO\t14th\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nx\tB-Variable_Name\tx\tO\nis\tO\tis\tO\n1.4\tB-Value\t1.4\tO\nand\tO\tand\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nanother\tO\tanother\tO\n0.1\tB-Value\t0.1\tO\n,\tO\t,\tO\nmaking\tO\tmaking\tO\nit\tO\tit\tO\n1.5\tB-Value\t1.5\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nexpect\tO\texpect\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nto\tO\tto\tO\nterminate\tO\tterminate\tO\nat\tO\tat\tO\n1.4\tB-Value\t1.4\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nincrement\tO\tincrement\tO\nx\tB-Variable_Name\tx\tO\nbefore\tO\tbefore\tO\nchecking\tO\tchecking\tO\nthe\tO\tthe\tO\nwhile\tO\twhile\tO\ncondition\tO\tcondition\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nafter\tO\tafter\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nexpect\tO\texpect\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nto\tO\tto\tO\nterminate\tO\tterminate\tO\non\tO\ton\tO\n1.41\tB-Value\t1.41\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nincrement\tO\tincrement\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5832\tI-Code_Block\tA_5832\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ninstead\tO\tinstead\tO\n,\tO\t,\tO\nmaking\tO\tmaking\tO\nit\tO\tit\tO\n141\tO\t141\tO\niterations\tO\titerations\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\naware\tO\taware\tO\nthat\tO\tthat\tO\nFloat\tB-Data_Type\tFloat\tB-Code_Block\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nmonetary\tO\tmonetary\tO\ncalculations\tO\tcalculations\tO\nand\tO\tand\tO\nsuch\tO\tsuch\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nits\tO\tits\tO\nlack\tO\tlack\tO\nof\tO\tof\tO\nprecision\tO\tprecision\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntrusted\tO\ttrusted\tO\nDouble\tB-Data_Type\tDouble\tB-Code_Block\nso\tO\tso\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nwhile\tO\twhile\tO\nloop\tO\tloop\tO\nin\tO\tin\tO\nrun\tO\trun\tO\n15\tO\t15\tO\nactually\tO\tactually\tO\nclaims\tO\tclaims\tO\nthe\tO\tthe\tO\nDouble\tB-Data_Type\tDouble\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n1.0\tB-Value\t1.0\tO\nwhile\tO\twhile\tO\nit\tO\tit\tO\nis\tO\tis\tO\nreported\tO\treported\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n1.0\tB-Value\t1.0\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nprecision\tO\tprecision\tO\nproblem\tO\tproblem\tO\nhere\tO\there\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nwe\tO\twe\tO\nsubstract\tO\tsubstract\tO\nx\tB-Variable_Name\tx\tO\nfrom\tO\tfrom\tO\n1.0\tB-Value\t1.0\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5833\tI-Code_Block\tA_5833\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\nreturns\tO\treturns\tO\n:\tO\t:\tO\n1.11022302462516e-16\tB-Value\t1.11022302462516e-16\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nFloat\tB-Data_Type\tFloat\tB-Code_Block\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nunprecise\tO\tunprecise\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ndirection\tO\tdirection\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nrun\tO\trun\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbigger\tO\tbigger\tO\nthan\tO\tthan\tO\n0.9\tB-Value\t0.9\tO\n(\tO\t(\tO\n0.9\tB-Value\t0.9\tO\n+\tI-Value\t+\tO\n5.96046e-08\tI-Value\t5.96046e-08\tO\n)\tO\t)\tO\n,\tO\t,\tO\nmaking\tO\tmaking\tO\nit\tO\tit\tO\nbigger\tO\tbigger\tO\nthan\tO\tthan\tO\n10\tB-Value\t10\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nwhy\tO\twhy\tO\nDouble\tB-Data_Type\tDouble\tB-Code_Block\nand\tO\tand\tO\nFloat\tB-Data_Type\tFloat\tB-Code_Block\nare\tO\tare\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\ndirections\tO\tdirections\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nmatter\tO\tmatter\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nstored\tO\tstored\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ndifferent\tO\tdifferent\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwith\tO\twith\tO\n2.0\tO\t2.0\tO\nboth\tO\tboth\tO\nactual\tO\tactual\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nbigger\tO\tbigger\tO\n:\tO\t:\tO\nDouble\tB-Data_Type\tDouble\tB-Code_Block\nby\tO\tby\tO\n4.440892.e-16\tB-Value\t4.440892.e-16\tO\nand\tO\tand\tO\nFloat\tB-Data_Type\tFloat\tB-Code_Block\nby\tO\tby\tO\n2.38419e-07\tB-Value\t2.38419e-07\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\n3.0\tO\t3.0\tO\nDouble\tB-Data_Type\tDouble\tB-Code_Block\nis\tO\tis\tO\nbigger\tO\tbigger\tO\nby\tO\tby\tO\n1.33226e-15\tO\t1.33226e-15\tO\nand\tO\tand\tO\nFloat\tB-Data_Type\tFloat\tB-Code_Block\nsmaller\tO\tsmaller\tO\nby\tO\tby\tO\n7.1525e-07\tO\t7.1525e-07\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsame\tO\tsame\tO\nproblems\tO\tproblems\tO\noccur\tO\toccur\tO\nusing\tO\tusing\tO\nx.isLess(than:1.0)\tB-Library_Function\tx.isLess(than:1.0)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbasis\tO\tbasis\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n<\tB-Code_Block\t<\tO\noperator\tO\toperator\tO\nas\tO\tas\tO\nof\tO\tof\tO\nhttps://developer.apple.com/reference/swift/floatingpoint/1849403-isless\tO\thttps://developer.apple.com/reference/swift/floatingpoint/1849403-isless\tO\n\t\nisLessThanOrEqualTo(1.0)\tB-Library_Function\tisLessThanOrEqualTo(1.0)\tB-Code_Block\n,\tO\t,\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nhand\tO\thand\tO\n,\tO\t,\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nreliably\tO\treliably\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\nitself\tO\titself\tO\nby\tO\tby\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ncurious\tO\tcurious\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\nhas\tO\thas\tO\nan\tO\tan\tO\nin-depth\tO\tin-depth\tO\nexplanation\tO\texplanation\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n\t\nThe\tO\tThe\tO\nmore\tO\tmore\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nless\tO\tless\tO\nof\tO\tof\tO\na\tO\ta\tO\nSwift\tB-Language\tSwift\tO\nproblem\tO\tproblem\tO\nit\tO\tit\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthat\tO\tthat\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nall\tO\tall\tO\nfloating\tB-Data_Type\tfloating\tO\npoint\tI-Data_Type\tpoint\tO\ncalculations\tO\tcalculations\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nnever\tO\tnever\tO\nprecise\tO\tprecise\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\nFloat\tB-Data_Type\tFloat\tB-Code_Block\nand\tO\tand\tO\nDouble\tB-Data_Type\tDouble\tB-Code_Block\nare\tO\tare\tO\nnot\tO\tnot\tO\nprecise\tO\tprecise\tO\n,\tO\t,\tO\nDouble\tB-Data_Type\tDouble\tB-Code_Block\nis\tO\tis\tO\njust\tO\tjust\tO\ntwice\tO\ttwice\tO\nas\tO\tas\tO\naccurate\tO\taccurate\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\ncomparisons\tO\tcomparisons\tO\nlike\tO\tlike\tO\n==\tB-Code_Block\t==\tB-Code_Block\nare\tO\tare\tO\nuseless\tO\tuseless\tO\nwith\tO\twith\tO\nfloating\tB-Data_Type\tfloating\tO\npoint\tI-Data_Type\tpoint\tO\nvalues\tO\tvalues\tO\nunless\tO\tunless\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nboth\tO\tboth\tO\nrounded\tO\trounded\tO\n.\tO\t.\tO\n\t\nTherefore\tO\tTherefore\tO\n,\tO\t,\tO\ngood\tO\tgood\tO\nadvice\tO\tadvice\tO\nin\tO\tin\tO\nloops\tO\tloops\tO\nlike\tO\tlike\tO\nthose\tO\tthose\tO\nof\tO\tof\tO\nyours\tO\tyours\tO\nwith\tO\twith\tO\na\tO\ta\tO\nknown\tO\tknown\tO\nprecision\tO\tprecision\tO\n(\tO\t(\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\none\tO\tone\tO\ndecimal\tB-Data_Type\tdecimal\tO\n)\tO\t)\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nround\tO\tround\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nprecision\tO\tprecision\tO\nbefore\tO\tbefore\tO\ndoing\tO\tdoing\tO\nany\tO\tany\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ncomparison\tO\tcomparison\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nfix\tO\tfix\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5834\tI-Code_Block\tA_5834\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17474473\tO\t17474473\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17474473/\tO\thttps://stackoverflow.com/questions/17474473/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nWordpress\tB-Application\tWordpress\tO\npage\tO\tpage\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\na\tO\ta\tO\nlocation\tO\tlocation\tO\nby\tO\tby\tO\nwriting\tO\twriting\tO\nthe\tO\tthe\tO\nadress\tO\tadress\tO\nor\tO\tor\tO\nbrowsing\tO\tbrowsing\tO\na\tO\ta\tO\nmap`\tB-User_Interface_Element\tmap`\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n(\tO\t(\tO\nhttp://www.levinor.es/pruebas/pagina-ejemplo/\tO\thttp://www.levinor.es/pruebas/pagina-ejemplo/\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nmap\tB-User_Interface_Element\tmap\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nloading\tO\tloading\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nchecked\tO\tchecked\tO\nthe\tO\tthe\tO\nAPI\tB-Library_Variable\tAPI\tO\nKey\tI-Library_Variable\tKey\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nallowed\tO\tallowed\tO\ndomains\tO\tdomains\tO\n(\tO\t(\tO\n.levinor.es/\tO\t.levinor.es/\tO\n)\tO\t)\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nhelp\tO\thelp\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nthis\tO\tthis\tO\njavascript\tB-Language\tjavascript\tO\n(\tO\t(\tO\ngoogle-maps.js\tB-Library\tgoogle-maps.js\tO\n)\tO\t)\tO\nand\tO\tand\tO\nplaced\tO\tplaced\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nfolder\tO\tfolder\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ntheme\tO\ttheme\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1773\tI-Code_Block\tQ_1773\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nplaced\tO\tplaced\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ncode\tO\tcode\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nfuncionts.php\tB-File_Name\tfuncionts.php\tO\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nreferencing\tO\treferencing\tO\nthe\tO\tthe\tO\njs\tB-Language\tjs\tO\n(\tO\t(\tO\nI\tO\tI\tO\ndoubled\tO\tdoubled\tO\nchecked\tO\tchecked\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nID\tO\tID\tO\nand\tO\tand\tO\nmy\tO\tmy\tO\nAPI\tB-Library_Variable\tAPI\tO\nKey\tI-Library_Variable\tKey\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1774\tI-Code_Block\tQ_1774\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tB-Code_Block\t}\tO\n\t\nAnd\tO\tAnd\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nheader.php\tB-File_Name\theader.php\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1775\tI-Code_Block\tQ_1775\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1776\tI-Code_Block\tQ_1776\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\ngratefull\tO\tgratefull\tO\nif\tO\tif\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17474473\tO\t17474473\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17474473/\tO\thttps://stackoverflow.com/questions/17474473/\tO\n\t\n\t\nGoogle\tB-Website\tGoogle\tO\nhas\tO\thas\tO\ndisabled\tO\tdisabled\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\npt\tO\tpt\tO\nthe\tO\tthe\tO\nMaps\tB-Library\tMaps\tO\nAPI\tI-Library\tAPI\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nkey\tO\tkey\tO\nyou\tO\tyou\tO\nused\tO\tused\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvalid\tO\tvalid\tO\nor\tO\tor\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nauthorized\tO\tauthorized\tO\nfor\tO\tfor\tO\nGoogle\tB-Library\tGoogle\tO\nmaps\tI-Library\tmaps\tO\nJavaScript\tI-Library\tJavaScript\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nobtained\tO\tobtained\tO\nthis\tO\tthis\tO\nkey\tO\tkey\tO\nyou\tO\tyou\tO\nstill\tO\tstill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nenable\tO\tenable\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nJavaScript\tB-Library\tJavaScript\tO\nAPI\tI-Library\tAPI\tO\n\t\nGo\tO\tGo\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\n:\tO\t:\tO\n\t\nhttps://developers.google.com/maps/documentation/javascript/tutorial\tO\thttps://developers.google.com/maps/documentation/javascript/tutorial\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23129639\tO\t23129639\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23129639/\tO\thttps://stackoverflow.com/questions/23129639/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nreport\tO\treport\tO\nwith\tO\twith\tO\nseveral\tO\tseveral\tO\ndata\tO\tdata\tO\nsets\tO\tsets\tO\n.\tO\t.\tO\n\t\nDS1\tB-Variable_Name\tDS1\tO\n-\tO\t-\tO\nExecutes\tO\tExecutes\tO\nan\tO\tan\tO\nSP\tO\tSP\tO\nwhich\tO\twhich\tO\nTruncates\tO\tTruncates\tO\nand\tO\tand\tO\nloads\tO\tloads\tO\na\tO\ta\tO\nTable\tB-Data_Structure\tTable\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nyear\tO\tyear\tO\nand\tO\tand\tO\nperiod\tO\tperiod\tO\npassed\tO\tpassed\tO\nas\tO\tas\tO\na\tO\ta\tO\nparameter\tO\tparameter\tO\nby\tO\tby\tO\nuser\tO\tuser\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nreport\tO\treport\tO\n.\tO\t.\tO\n\t\nDS2\tB-Variable_Name\tDS2\tO\nand\tO\tand\tO\nDS3\tB-Variable_Name\tDS3\tO\n-\tO\t-\tO\nSelect\tO\tSelect\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\nloaded\tO\tloaded\tO\nin\tO\tin\tO\nlast\tO\tlast\tO\nstep\tO\tstep\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nDS1\tB-Variable_Name\tDS1\tO\nexecutes\tO\texecutes\tO\nbefore\tO\tbefore\tO\nDS2\tB-Variable_Name\tDS2\tO\nand\tO\tand\tO\nDS3\tB-Variable_Name\tDS3\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nsource\tO\tsource\tO\nproperty\tO\tproperty\tO\nwhich\tO\twhich\tO\ntells\tO\ttells\tO\nSSRS\tB-Application\tSSRS\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nData\tO\tData\tO\nSets\tO\tSets\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ntransaction\tO\ttransaction\tO\nand\tO\tand\tO\nhence\tO\thence\tO\nexecute\tO\texecute\tO\nthem\tO\tthem\tO\nsequentially\tO\tsequentially\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nin\tO\tin\tO\nparallel\tO\tparallel\tO\nas\tO\tas\tO\nexplained\tO\texplained\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nhttp://blogs.msdn.com/b/robertbruckner/archive/2008/08/07/dataset-execution-order.aspx\tO\thttp://blogs.msdn.com/b/robertbruckner/archive/2008/08/07/dataset-execution-order.aspx\tO\n\t\nBut\tO\tBut\tO\nmy\tO\tmy\tO\ndoubt\tO\tdoubt\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndeploy\tO\tdeploy\tO\nthis\tO\tthis\tO\nreport\tO\treport\tO\nto\tO\tto\tO\na\tO\ta\tO\nreport\tB-Application\treport\tO\nserver\tI-Application\tserver\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nshared\tO\tshared\tO\ndata\tO\tdata\tO\nsource\tO\tsource\tO\nalready\tO\talready\tO\ncreated\tO\tcreated\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nwill\tO\twill\tO\nhappen\tO\thappen\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nproperty\tO\tproperty\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nset\tO\tset\tO\nat\tO\tat\tO\ndesign\tO\tdesign\tO\ntime\tO\ttime\tO\nafter\tO\tafter\tO\ndeployment\tO\tdeployment\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22798628\tO\t22798628\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22798628/\tO\thttps://stackoverflow.com/questions/22798628/\tO\n\t\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nprocess.php\tB-File_Name\tprocess.php\tO\npage\tO\tpage\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2492\tI-Code_Block\tQ_2492\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDoes\tO\tDoes\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\nmuch\tO\tmuch\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncontradicting\tO\tcontradicting\tO\nitself\tO\titself\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nmy\tO\tmy\tO\nprocess.php\tB-File_Name\tprocess.php\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2493\tI-Code_Block\tQ_2493\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nprobably\tO\tprobably\tO\na\tO\ta\tO\nstupid\tO\tstupid\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nlearning\tO\tlearning\tO\nwhile\tO\twhile\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22798628\tO\t22798628\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22798628/\tO\thttps://stackoverflow.com/questions/22798628/\tO\n\t\n\t\nChange\tO\tChange\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3087\tI-Code_Block\tA_3087\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3088\tI-Code_Block\tA_3088\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22798628\tO\t22798628\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22798628/\tO\thttps://stackoverflow.com/questions/22798628/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3086\tI-Code_Block\tA_3086\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nyou\tO\tyou\tO\nmissed\tO\tmissed\tO\na\tO\ta\tO\nbacktick\tO\tbacktick\tO\n=>\tO\t=>\tO\n`\tB-Value\t`\tB-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35621497\tO\t35621497\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35621497/\tO\thttps://stackoverflow.com/questions/35621497/\tO\n\t\n\t\nI\tO\tI\tO\nusing\tO\tusing\tO\nphpMyAdmin\tB-Application\tphpMyAdmin\tO\n4.4.14\tB-Version\t4.4.14\tO\nin\tO\tin\tO\nWin7+Chrome\tB-Operating_System\tWin7+Chrome\tO\nand\tO\tand\tO\nMySQL\tB-Application\tMySQL\tO\n5.6\tB-Version\t5.6\tO\nin\tO\tin\tO\nLinux\tB-Operating_System\tLinux\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ntimezone\tO\ttimezone\tO\nis\tO\tis\tO\n+8\tB-Value\t+8\tO\n\t\nThe\tO\tThe\tO\ndate\tB-Library_Function\tdate\tB-Code_Block\ncommand\tO\tcommand\tO\nin\tO\tin\tO\nLinux\tB-Operating_System\tLinux\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\ncorrect\tO\tcorrect\tO\ndate\tO\tdate\tO\nand\tO\tand\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nissue\tO\tissue\tO\nselect\tB-Library_Function\tselect\tB-Code_Block\nnow()\tI-Library_Function\tnow()\tI-Code_Block\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nphpMyAdmin\tB-Application\tphpMyAdmin\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nand\tO\tand\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nGeneration\tB-Variable_Name\tGeneration\tB-Code_Block\nTime\tI-Variable_Name\tTime\tI-Code_Block\nis\tO\tis\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nLook\tO\tLook\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nGeneration\tB-Variable_Name\tGeneration\tB-Code_Block\nTime\tI-Variable_Name\tTime\tI-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ndo\tO\tdo\tO\na\tO\ta\tO\n+8\tB-Value\t+8\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhour\tO\thour\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\n?\tO\t?\tO\n\t\nCheers\tO\tCheers\tO\n,\tO\t,\tO\n\t\nAlvin\tB-User_Name\tAlvin\tO\nSIU\tI-User_Name\tSIU\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35621497\tO\t35621497\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35621497/\tO\thttps://stackoverflow.com/questions/35621497/\tO\n\t\n\t\nPrint\tO\tPrint\tO\nview\tO\tview\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nvia\tO\tvia\tO\nPHP\tB-Language\tPHP\tO\nscript\tO\tscript\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nin\tO\tin\tO\nPHP\tB-Language\tPHP\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nMySQL\tB-Application\tMySQL\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthis\tO\tthis\tO\ntimestamp\tO\ttimestamp\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nphp.ini\tB-File_Name\tphp.ini\tO\nand\tO\tand\tO\nto\tO\tto\tO\nchange/add\tO\tchange/add\tO\ndate.timezone\tB-Library_Variable\tdate.timezone\tB-Code_Block\nvariable\tO\tvariable\tO\nwith\tO\twith\tO\ndesired\tO\tdesired\tO\nvalue\tO\tvalue\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5090\tI-Code_Block\tA_5090\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAll\tO\tAll\tO\navailable\tO\tavailable\tO\ntimezones\tO\ttimezones\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://www.php.net/manual/en/timezones.php\tO\thttp://www.php.net/manual/en/timezones.php\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28394255\tO\t28394255\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28394255/\tO\thttps://stackoverflow.com/questions/28394255/\tO\n\t\n\t\nCan\tO\tCan\tO\nthe\tO\tthe\tO\nGoogle\tB-Application\tGoogle\tO\nChrome\tI-Application\tChrome\tO\ndev\tI-Application\tdev\tO\ntools\tI-Application\ttools\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\ndirectly\tO\tdirectly\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Device\tserver\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nby\tO\tby\tO\ndirectly\tO\tdirectly\tO\ninteracting\tO\tinteracting\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nftp\tO\tftp\tO\nserver\tB-Device\tserver\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\nmake\tO\tmake\tO\nPHP\tB-Language\tPHP\tO\nediting\tO\tediting\tO\nmuch\tO\tmuch\tO\neasier\tO\teasier\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28394255\tO\t28394255\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28394255/\tO\thttps://stackoverflow.com/questions/28394255/\tO\n\t\n\t\nUnfortunately\tO\tUnfortunately\tO\nediting\tO\tediting\tO\nDOM\tO\tDOM\tO\nelements\tO\telements\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nupdate\tO\tupdate\tO\nPHP\tB-Language\tPHP\tO\nor\tO\tor\tO\nHTML\tB-Language\tHTML\tO\nmapped\tO\tmapped\tO\nlocal\tO\tlocal\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\na\tO\ta\tO\nlimitation\tO\tlimitation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nworkspace\tO\tworkspace\tO\nfeature\tO\tfeature\tO\n.\tO\t.\tO\n\t\nCSS\tB-Language\tCSS\tO\nStyles\tO\tStyles\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nserver\tB-Device\tserver\tO\nmapping\tO\tmapping\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nbut\tO\tbut\tO\nChrome\tB-Application\tChrome\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncrashing\tO\tcrashing\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nadding\tO\tadding\tO\na\tO\ta\tO\nmapped\tO\tmapped\tO\nFTP\tO\tFTP\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nhad\tO\thad\tO\na\tO\ta\tO\nchance\tO\tchance\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nany\tO\tany\tO\nother\tO\tother\tO\ncomputers\tO\tcomputers\tO\nof\tO\tof\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nChrome/Windows\tB-Application\tChrome/Windows\tO\n\t\nCurrently\tO\tCurrently\tO\nusing\tO\tusing\tO\nChrome\tB-Application\tChrome\tO\n43.0.2357.130\tB-Version\t43.0.2357.130\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\n10\tB-Version\t10\tO\nInsider\tB-Application\tInsider\tO\nPreview\tI-Application\tPreview\tO\n10130\tB-Version\t10130\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28394255\tO\t28394255\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28394255/\tO\thttps://stackoverflow.com/questions/28394255/\tO\n\t\n\t\nThe\tO\tThe\tO\nDevTools\tB-Application\tDevTools\tO\ncan\tO\tcan\tO\nupdate\tO\tupdate\tO\nany\tO\tany\tO\nfiles\tO\tfiles\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\neditable\tO\teditable\tO\nvia\tO\tvia\tO\nSources\tO\tSources\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nPHP\tB-Language\tPHP\tO\nand\tO\tand\tO\nHTML\tB-Language\tHTML\tO\n.\tO\t.\tO\n\t\nCSS\tB-Language\tCSS\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nupdated\tO\tupdated\tO\ndirectly\tO\tdirectly\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nelements\tB-User_Interface_Element\telements\tO\npanel\tI-User_Interface_Element\tpanel\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\ntext\tO\ttext\tO\nfile\tO\tfile\tO\ntypes\tO\ttypes\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nupdated\tO\tupdated\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nSources\tO\tSources\tO\npanel\tO\tpanel\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nmap\tO\tmap\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nDevTools\tB-Application\tDevTools\tO\ndirectly\tO\tdirectly\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nknowledge\tO\tknowledge\tO\nof\tO\tof\tO\nFTP/SFTP/FUSE\tO\tFTP/SFTP/FUSE\tO\nmounts/etc\tO\tmounts/etc\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nit\tO\tit\tO\nknows\tO\tknows\tO\nis\tO\tis\tO\nlocal\tO\tlocal\tO\nfilesystem\tO\tfilesystem\tO\nstructures\tO\tstructures\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\nsoftware\tO\tsoftware\tO\nto\tO\tto\tO\nmount\tO\tmount\tO\na\tO\ta\tO\nremote\tO\tremote\tO\nfilesystem\tO\tfilesystem\tO\nlocally\tO\tlocally\tO\nas\tO\tas\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nfolder\tO\tfolder\tO\nor\tO\tor\tO\ndrive\tO\tdrive\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmap\tO\tmap\tO\nit\tO\tit\tO\nto\tO\tto\tO\nDevTools\tB-Application\tDevTools\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\nthis\tO\tthis\tO\nmyself\tO\tmyself\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npast\tO\tpast\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\nothers\tO\tothers\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nsetup\tO\tsetup\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nsimply\tO\tsimply\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nresearch\tO\tresearch\tO\nyour\tO\tyour\tO\nOS\tO\tOS\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nsoftware\tO\tsoftware\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ncomfortable\tO\tcomfortable\tO\nwith\tO\twith\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nmounting\tO\tmounting\tO\n.\tO\t.\tO\n\t\nWarning\tO\tWarning\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nlarge\tO\tlarge\tO\nproject\tO\tproject\tO\nfile\tO\tfile\tO\nstructures\tO\tstructures\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nthings\tO\tthings\tO\nslow\tO\tslow\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21522727\tO\t21522727\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21522727/\tO\thttps://stackoverflow.com/questions/21522727/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nJSON\tB-Data_Type\tJSON\tO\nresponse\tO\tresponse\tO\nfrom\tO\tfrom\tO\nPHP\tB-Language\tPHP\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2315\tI-Code_Block\tQ_2315\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nout\tO\tout\tO\noutput\tO\toutput\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nnumber\tO\tnumber\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nin\tO\tin\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nid\tB-Variable_Name\tid\tO\nof\tO\tof\tO\n#ordernum\tB-Code_Block\t#ordernum\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nparts\tO\tparts\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\ncontainer\tO\tcontainer\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nname\tB-Variable_Name\tname\tO\nand\tO\tand\tO\nid\tB-Variable_Name\tid\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nbit\tO\tbit\tO\nworking\tO\tworking\tO\nbut\tO\tbut\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nunsure\tO\tunsure\tO\nof\tO\tof\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nloop\tO\tloop\tO\nthrough\tO\tthrough\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nJSON\tB-Data_Type\tJSON\tO\nrows\tO\trows\tO\nto\tO\tto\tO\nget\tO\tget\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npart\tO\tpart\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nmy\tO\tmy\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nappends\tO\tappends\tO\nto\tO\tto\tO\na\tO\ta\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nnew\tO\tnew\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nanother\tO\tanother\tO\n$.each()\tB-Code_Block\t$.each()\tO\nafter\tI-Code_Block\tafter\tO\n$('#ordernum').text(row[0].order)\tI-Code_Block\t$('#ordernum').text(row[0].order)\tO\n;\tI-Code_Block\t;\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2316\tI-Code_Block\tQ_2316\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\njson\tB-Data_Type\tjson\tO\nis\tO\tis\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\n$rows\tB-Variable_Name\t$rows\tO\nis\tO\tis\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nSQLSERVER\tB-Application\tSQLSERVER\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\nI\tO\tI\tO\nloop\tO\tloop\tO\nthrough\tO\tthrough\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nrows\tB-Data_Structure\trows\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nMySQL\tB-Application\tMySQL\tO\ndatabase\tO\tdatabase\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2317\tI-Code_Block\tQ_2317\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21522727\tO\t21522727\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21522727/\tO\thttps://stackoverflow.com/questions/21522727/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\neverthing\tO\teverthing\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nright\tO\tright\tO\n\t\njust\tO\tjust\tO\nresponse.order\tB-Variable_Name\tresponse.order\tO\nwill\tO\twill\tO\nsay\tO\tsay\tO\nundefined\tO\tundefined\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\n.each\tB-Library_Function\t.each\tO\nloop\tO\tloop\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nas\tO\tas\tO\nsaying\tO\tsaying\tO\nthen\tO\tthen\tO\nput\tO\tput\tO\nbefore\tO\tbefore\tO\nloop\tO\tloop\tO\n\t\nvar\tB-Code_Block\tvar\tO\nresponse\tI-Code_Block\tresponse\tO\n=\tI-Code_Block\t=\tO\n$.parseJSON(response)\tI-Code_Block\t$.parseJSON(response)\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nif\tO\tif\tO\nu\tO\tu\tO\nneed\tO\tneed\tO\nresopnse\tO\tresopnse\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2911\tI-Code_Block\tA_2911\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthen\tO\tthen\tO\nin\tO\tin\tO\nphp\tB-Language\tphp\tO\ncode\tO\tcode\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nin\tO\tin\tO\nsecond\tO\tsecond\tO\nlast\tO\tlast\tO\nline\tO\tline\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2912\tI-Code_Block\tA_2912\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\nindex\tO\tindex\tO\nin\tO\tin\tO\njavascript\tB-Language\tjavascript\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2913\tI-Code_Block\tA_2913\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nput\tO\tput\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nfire\tB-Application\tfire\tO\nbug\tI-Application\tbug\tO\nconsole\tI-Application\tconsole\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2914\tI-Code_Block\tA_2914\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n\t\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nunder\tO\tunder\tO\nfirst\tO\tfirst\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\nsecond\tO\tsecond\tO\nlike\tO\tlike\tO\neven\tO\teven\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\nresponse\tO\tresponse\tO\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\nreformat\tO\treformat\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47964183\tO\t47964183\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47964183/\tO\thttps://stackoverflow.com/questions/47964183/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nDjango\tB-Library\tDjango\tO\nproject\tO\tproject\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nChrome\tB-Application\tChrome\tO\nHeadless\tI-Application\tHeadless\tO\nto\tO\tto\tO\nproduce\tO\tproduce\tO\nPDF\tB-File_Type\tPDF\tO\ndocuments\tO\tdocuments\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nApps\tO\tApps\tO\n,\tO\t,\tO\neach\tO\teach\tO\nof\tO\tof\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nproduce\tO\tproduce\tO\nPDFs\tB-File_Type\tPDFs\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nmade\tO\tmade\tO\nsense\tO\tsense\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nlaunches\tO\tlaunches\tO\nChrome\tB-Application\tChrome\tO\n,\tO\t,\tO\nmakes\tO\tmakes\tO\na\tO\ta\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nkills\tO\tkills\tO\nthe\tO\tthe\tO\nChrome\tB-Application\tChrome\tO\nprocess\tO\tprocess\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\ndeleted\tO\tdeleted\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nopens\tO\topens\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ntab\tB-User_Interface_Element\ttab\tO\n,\tO\t,\tO\nrenders\tO\trenders\tO\nsome\tO\tsome\tO\nHTML\tB-Language\tHTML\tO\n,\tO\t,\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nPDF\tB-File_Type\tPDF\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncloses\tO\tcloses\tO\nthe\tO\tthe\tO\ntab\tB-User_Interface_Element\ttab\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nslightly\tO\tslightly\tO\ninefficient\tO\tinefficient\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nClass\tO\tClass\tO\n,\tO\t,\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\na\tO\ta\tO\nPDF\tB-File_Type\tPDF\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nprimary\tO\tprimary\tO\npurpose\tO\tpurpose\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nglobal\tB-Data_Type\tglobal\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nClass\tO\tClass\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhave\tO\thave\tO\none\tO\tone\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nheadless\tB-Application\theadless\tO\nChrome\tI-Application\tChrome\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nstarting\tO\tstarting\tO\nChrome\tB-Application\tChrome\tO\n,\tO\t,\tO\nconnecting\tO\tconnecting\tO\nto\tO\tto\tO\nit\tO\tit\tO\n,\tO\t,\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nPDF\tB-File_Type\tPDF\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nclosing\tO\tclosing\tO\neverything\tO\teverything\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nposts\tO\tposts\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nsuggest\tO\tsuggest\tO\nthat\tO\tthat\tO\nany\tO\tany\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nglobal\tB-Data_Type\tglobal\tO\nvariable\tO\tvariable\tO\n(\tO\t(\tO\naside\tO\taside\tO\nfrom\tO\tfrom\tO\nsome\tO\tsome\tO\nconstants\tO\tconstants\tO\nin\tO\tin\tO\nsettings\tO\tsettings\tO\n)\tO\t)\tO\nis\tO\tis\tO\na\tO\ta\tO\nbad\tO\tbad\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nparticular\tO\tparticular\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nstill\tO\tstill\tO\na\tO\ta\tO\nbad\tO\tbad\tO\nidea\tO\tidea\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n?\tO\t?\tO\n\t\nImportantly\tO\tImportantly\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\napproach\tO\tapproach\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20119192\tO\t20119192\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20119192/\tO\thttps://stackoverflow.com/questions/20119192/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\nrespecting\tO\trespecting\tO\nthe\tO\tthe\tO\nJAX-WS\tB-Library\tJAX-WS\tO\nspecification\tO\tspecification\tO\nand\tO\tand\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\nport\tB-Device\tport\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nmetro\tB-Library\tmetro\tO\nWS\tI-Library\tWS\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\n\t\n(\tB-Code_Block\t(\tO\n(\tB-Code_Block\t(\tO\ncom.sun.xml.ws.Closeable\tB-Code_Block\tcom.sun.xml.ws.Closeable\tO\n)\tI-Code_Block\t)\tO\nport\tI-Code_Block\tport\tO\n)\tI-Code_Block\t)\tO\n;\tB-Code_Block\t;\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\nport\tB-Device\tport\tO\nespecially\tO\tespecially\tO\nfor\tO\tfor\tO\nperformance\tO\tperformance\tO\nreasons\tO\treasons\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20119192\tO\t20119192\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20119192/\tO\thttps://stackoverflow.com/questions/20119192/\tO\n\t\n\t\nCXF\tB-Library\tCXF\tO\n's\tO\t's\tO\nport\tB-Library_Class\tport\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\njava.io.Closeable\tB-Library_Class\tjava.io.Closeable\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\ncast\tO\tcast\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nand\tO\tand\tO\nclose()\tB-Library_Function\tclose()\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nnormal\tO\tnormal\tO\nHTTP\tO\tHTTP\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nreally\tO\treally\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nMUCH\tO\tMUCH\tO\nadvantage\tO\tadvantage\tO\nin\tO\tin\tO\ndoing\tO\tdoing\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nusing\tO\tusing\tO\nWS-RM\tB-Library\tWS-RM\tO\nor\tO\tor\tO\nJMS\tB-Library\tJMS\tO\nor\tO\tor\tO\nsimilar\tO\tsimilar\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nallow\tO\tallow\tO\nthings\tO\tthings\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndisconnected\tO\tdisconnected\tO\nand\tO\tand\tO\nsuch\tO\tsuch\tO\nsooner\tO\tsooner\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16983482\tO\t16983482\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16983482/\tO\thttps://stackoverflow.com/questions/16983482/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nproblem\tO\tproblem\tO\nand\tO\tand\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\nwhen\tO\twhen\tO\nreceive\tO\treceive\tO\nmessages\tO\tmessages\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nchat\tO\tchat\tO\ni\tO\ti\tO\nmake\tO\tmake\tO\n,\tO\t,\tO\ni\tO\ti\tO\nonly\tO\tonly\tO\nsuccess\tO\tsuccess\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\nand\tO\tand\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nsend\tO\tsend\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nfailed\tO\tfailed\tO\nto\tO\tto\tO\nreceive\tO\treceive\tO\nand\tO\tand\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nreceive\tO\treceive\tO\nfrom\tO\tfrom\tO\nother\tO\tother\tO\nparty\tO\tparty\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nretrieve\tO\tretrieve\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\nfrom\tO\tfrom\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\nalways\tO\talways\tO\nnull\tO\tnull\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\ncome\tO\tcome\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nnot\tO\tnot\tO\nchecking\tO\tchecking\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\nmessages\tO\tmessages\tO\nand\tO\tand\tO\nnull\tO\tnull\tO\nand\tO\tand\tO\ni\tO\ti\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\nstop\tO\tstop\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nchecking\tO\tchecking\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nso\tO\tso\tO\nanyone\tO\tanyone\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nthank\tO\tthank\tO\nyou\tO\tyou\tO\n\t\nchatroom.php\tB-File_Name\tchatroom.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1721\tI-Code_Block\tQ_1721\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nChatroom.java\tB-File_Name\tChatroom.java\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1722\tI-Code_Block\tQ_1722\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLogCat\tB-Application\tLogCat\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1723\tI-Code_Block\tQ_1723\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24684653\tO\t24684653\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24684653/\tO\thttps://stackoverflow.com/questions/24684653/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nPHP\tB-Language\tPHP\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nUser\tO\tUser\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nin\tO\tin\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\nwebsite\tO\twebsite\tO\n,\tO\t,\tO\nin\tO\tin\tO\nother\tO\tother\tO\nwords\tO\twords\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nHTTP_REFERER\tB-Library_Variable\tHTTP_REFERER\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nown\tO\town\tO\ndomain\tO\tdomain\tO\n.\tO\t.\tO\n\t\nSave\tO\tSave\tO\nthis\tO\tthis\tO\nHTTP_REFERER\tB-Library_Variable\tHTTP_REFERER\tO\nin\tO\tin\tO\na\tO\ta\tO\ncookie\tO\tcookie\tO\n\t\nIn\tO\tIn\tO\nanother\tO\tanother\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\nI\tO\tI\tO\nwill\tO\twill\tO\ncheck\tO\tcheck\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\ncookie\tO\tcookie\tO\nis\tO\tis\tO\npresent\tO\tpresent\tO\nand\tO\tand\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nsaved\tO\tsaved\tO\nreferer\tO\treferer\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nprofile\tO\tprofile\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24684653\tO\t24684653\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24684653/\tO\thttps://stackoverflow.com/questions/24684653/\tO\n\t\n\t\nSaving\tO\tSaving\tO\ncookies\tO\tcookies\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\neasy\tO\teasy\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nPHP\tB-Language\tPHP\tO\nCookies\tO\tCookies\tO\nfor\tO\tfor\tO\ndetails\tO\tdetails\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3382\tI-Code_Block\tA_3382\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRetrieving\tO\tRetrieving\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nas\tO\tas\tO\neasy\tO\teasy\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3383\tI-Code_Block\tA_3383\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38346055\tO\t38346055\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38346055/\tO\thttps://stackoverflow.com/questions/38346055/\tO\n\t\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nMatConvNet\tB-Application\tMatConvNet\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\na\tO\ta\tO\nfeedforward\tB-Algorithm\tfeedforward\tO\nnet\tI-Algorithm\tnet\tO\nfor\tO\tfor\tO\nthree-classes\tO\tthree-classes\tO\nclassification\tO\tclassification\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ninput\tO\tinput\tO\ndata\tO\tdata\tO\nhas\tO\thas\tO\n5\tO\t5\tO\nfeatures\tO\tfeatures\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nnet\tO\tnet\tO\nwork\tO\twork\tO\ntopology\tO\ttopology\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\n*\tO\t*\tO\nhidden\tO\thidden\tO\nlayer\tO\tlayer\tO\n:\tO\t:\tO\nnode\tO\tnode\tO\nwith\tO\twith\tO\n5\tO\t5\tO\nweights\tO\tweights\tO\n&\tO\t&\tO\n1\tO\t1\tO\nbias\tO\tbias\tO\nactivation\tO\tactivation\tO\nfunc\tO\tfunc\tO\n:\tO\t:\tO\nsigmoid\tB-Function_Name\tsigmoid\tO\n\t\n*\tO\t*\tO\noutput\tO\toutput\tO\nlayer\tO\tlayer\tO\n:\tO\t:\tO\n3\tO\t3\tO\nnodes\tO\tnodes\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nhave\tO\thave\tO\n1\tO\t1\tO\nweights\tO\tweights\tO\n&\tO\t&\tO\n1\tO\t1\tO\nbias\tO\tbias\tO\nactivation\tO\tactivation\tO\nfunc\tO\tfunc\tO\n:\tO\t:\tO\nsigmoid\tB-Function_Name\tsigmoid\tO\n/\tO\t/\tO\nsoftmax\tB-Function_Name\tsoftmax\tO\n+\tO\t+\tO\nloss\tB-Function_Name\tloss\tO\n\t\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\nhow\tO\thow\tO\ni\tO\ti\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nnetwork\tO\tnetwork\tO\n's\tO\t's\tO\ntopology\tO\ttopology\tO\n,\tO\t,\tO\nas\tO\tas\tO\nalong\tO\talong\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nnetwork\tO\tnetwork\tO\nhas\tO\thas\tO\nhidden\tO\thidden\tO\nlayers\tO\tlayers\tO\n,\tO\t,\tO\nit\tO\tit\tO\nalways\tO\talways\tO\nreturn\tO\treturn\tO\nsame\tO\tsame\tO\nlabel\tO\tlabel\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nMoreover\tO\tMoreover\tO\nonce\tO\tonce\tO\ni\tO\ti\tO\nadd\tO\tadd\tO\nhidden\tO\thidden\tO\nlayers\tO\tlayers\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nnetwork\tO\tnetwork\tO\nalways\tO\talways\tO\nconverge\tO\tconverge\tO\nwithin\tO\twithin\tO\n3\tO\t3\tO\nepoch\tO\tepoch\tO\n.\tO\t.\tO\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nconverged\tO\tconverged\tO\nwith\tO\twith\tO\nhidden\tO\thidden\tO\nlayer\tO\tlayer\tO\n\t\nhowever\tO\thowever\tO\nthe\tO\tthe\tO\nnetwork\tO\tnetwork\tO\ncould\tO\tcould\tO\nrun\tO\trun\tO\n\"\tO\t\"\tO\nnormally\tO\tnormally\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\ngives\tO\tgives\tO\ndifferent\tO\tdifferent\tO\nlabel\tO\tlabel\tO\n)\tO\t)\tO\nif\tO\tif\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nhidden\tO\thidden\tO\nlayer\tO\tlayer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\n:\tO\t:\tO\n\t\n*\tO\t*\tO\nnormalized\tO\tnormalized\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\ndata\tO\tdata\tO\n\t\n*\tO\t*\tO\nsubtract\tO\tsubtract\tO\nmean\tO\tmean\tO\n\t\n*\tO\t*\tO\nchange\tO\tchange\tO\nto\tO\tto\tO\ndifferent\tO\tdifferent\tO\nactivation\tO\tactivation\tO\nfunc\tO\tfunc\tO\n,\tO\t,\tO\nsigmoid/softmax\tB-Function_Name\tsigmoid/softmax\tO\n\t\nbut\tO\tbut\tO\nnone\tO\tnone\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nworks\tO\tworks\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34841716\tO\t34841716\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34841716/\tO\thttps://stackoverflow.com/questions/34841716/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nprocedure\tO\tprocedure\tO\nand\tO\tand\tO\ni\tO\ti\tO\ncant\tO\tcant\tO\nsee\tO\tsee\tO\nmy\tO\tmy\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nsomeone\tO\tsomeone\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\ntext\tO\ttext\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nvocals\tB-Variable_Name\tvocals\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4250\tI-Code_Block\tQ_4250\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nnear\tO\tnear\tO\nfrom\tO\tfrom\tO\n\"\tO\t\"\tO\ncase\tB-Code_Block\tcase\tO\n\"\tO\t\"\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34841716\tO\t34841716\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34841716/\tO\thttps://stackoverflow.com/questions/34841716/\tO\n\t\n\t\nAn\tO\tAn\tO\nalternative\tO\talternative\tO\nway\tO\tway\tO\nof\tO\tof\tO\ngathering\tO\tgathering\tO\nvowels\tO\tvowels\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4962\tI-Code_Block\tA_4962\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34841716\tO\t34841716\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34841716/\tO\thttps://stackoverflow.com/questions/34841716/\tO\n\t\n\t\nCouple\tO\tCouple\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\nby\tO\tby\tO\nVKP\tB-User_Name\tVKP\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\npull\tO\tpull\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nCASE\tB-Code_Block\tCASE\tO\nstatement\tO\tstatement\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nto\tO\tto\tO\nget\tO\tget\tO\naround\tO\taround\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nadditional\tO\tadditional\tO\nSELECT\tB-Code_Block\tSELECT\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nCASE\tB-Code_Block\tCASE\tO\nstatement\tO\tstatement\tO\n\t\nSecond\tO\tSecond\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nCASE\tB-Code_Block\tCASE\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nequal\tO\tequal\tO\nsign\tO\tsign\tO\n(=\tB-Code_Block\t(=\tO\n)\tO\t)\tO\nafter\tO\tafter\tO\nTHEN\tB-Code_Block\tTHEN\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nTHEN\tB-Code_Block\tTHEN\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nessentially\tO\tessentially\tO\nthe\tO\tthe\tO\nequal\tO\tequal\tO\nsign\tO\tsign\tO\nso\tO\tso\tO\njust\tO\tjust\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nequal\tO\tequal\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nruns\tO\truns\tO\nsuccesfully\tO\tsuccesfully\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4961\tI-Code_Block\tA_4961\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\ncurrently\tO\tcurrently\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nquery\tO\tquery\tO\nwill\tO\twill\tO\njust\tO\tjust\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nNULL\tB-Value\tNULL\tO\nvalues\tO\tvalues\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n@vocales\tB-Variable_Name\t@vocales\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nparameter\tO\tparameter\tO\n@resultado\tB-Variable_Name\t@resultado\tO\nis\tO\tis\tO\nnever\tO\tnever\tO\ndeclared\tO\tdeclared\tO\nand\tO\tand\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nCASE\tB-Code_Block\tCASE\tO\nstatement\tO\tstatement\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nadding\tO\tadding\tO\na\tO\ta\tO\nNULL\tB-Value\tNULL\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\na\tO\ta\tO\nknown\tO\tknown\tO\nvalue\tO\tvalue\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nequal\tO\tequal\tO\nNULL\tB-Value\tNULL\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\noutput\tO\toutput\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nrevise\tO\trevise\tO\nmy\tO\tmy\tO\nquery\tO\tquery\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5856497\tO\t5856497\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5856497/\tO\thttps://stackoverflow.com/questions/5856497/\tO\n\t\n\t\ni\tO\ti\tO\nam\tO\tam\tO\nfacing\tO\tfacing\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nmanagement\tO\tmanagement\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nallocation\tO\tallocation\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nit\tO\tit\tO\nincreases\tO\tincreases\tO\n32kb\tO\t32kb\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nload\tO\tload\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nrelease\tO\trelease\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\n.and\tO\t.and\tO\nafter\tO\tafter\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\nmemory\tO\tmemory\tO\nreach\tO\treach\tO\nto\tO\tto\tO\n3\tO\t3\tO\nmb\tO\tmb\tO\nit\tO\tit\tO\ncrashes\tO\tcrashes\tO\nin\tO\tin\tO\n3mb\tO\t3mb\tO\n1\tO\t1\tO\nmb\tO\tmb\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\naudiotoolbox\tB-Library\taudiotoolbox\tO\nmalloc\tB-Library_Function\tmalloc\tO\n.\tO\t.\tO\n\t\nhere\tO\there\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n\t\nin\tO\tin\tO\n.h\tB-File_Type\t.h\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_419\tI-Code_Block\tQ_419\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5856497\tO\t5856497\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5856497/\tO\thttps://stackoverflow.com/questions/5856497/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nnumerous\tO\tnumerous\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\ncalling\tO\tcalling\tO\n[\tB-Code_Block\t[\tB-Code_Block\nsuper\tI-Code_Block\tsuper\tI-Code_Block\ndealloc\tI-Code_Block\tdealloc\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\n-dealloc\tB-Library_Function\t-dealloc\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nreleasing\tO\treleasing\tO\nsoundFileURL\tB-Variable_Name\tsoundFileURL\tO\nin\tO\tin\tO\n-dealloc\tB-Library_Function\t-dealloc\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmethod\tO\tmethod\tO\nnames\tO\tnames\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ncamel\tO\tcamel\tO\ncase\tO\tcase\tO\n(\tO\t(\tO\nviewDidLoad\tB-Library_Function\tviewDidLoad\tO\nnot\tO\tnot\tO\nviewdidload\tO\tviewdidload\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\neither\tO\teither\tO\n[\tB-Code_Block\t[\tB-Code_Block\nappSoundPlayer\tI-Code_Block\tappSoundPlayer\tI-Code_Block\nrelease\tI-Code_Block\trelease\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nor\tO\tor\tO\nself.appSoundPlayer\tB-Code_Block\tself.appSoundPlayer\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nnil\tI-Code_Block\tnil\tI-Code_Block\n,\tO\t,\tO\nnot\tO\tnot\tO\nboth\tO\tboth\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhighly\tO\thighly\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nmanagement\tO\tmanagement\tO\nprogramming\tO\tprogramming\tO\nguide\tO\tguide\tO\nhttp://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html\tO\thttp://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19485949\tO\t19485949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19485949/\tO\thttps://stackoverflow.com/questions/19485949/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nput\tO\tput\tO\nin\tO\tin\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nimage\tB-User_Interface_Element\timage\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nresolution\tO\tresolution\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nnormal\tO\tnormal\tO\nscreen\tB-Device\tscreen\tO\nand\tO\tand\tO\nsmartphones\tB-Device\tsmartphones\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlarge\tO\tlarge\tO\nresolution\tO\tresolution\tO\nscreens\tB-Device\tscreens\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nrelevant\tO\trelevant\tO\nsections\tO\tsections\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCSS\tB-Language\tCSS\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2046\tI-Code_Block\tQ_2046\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHTML\tB-Language\tHTML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2047\tI-Code_Block\tQ_2047\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19485949\tO\t19485949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19485949/\tO\thttps://stackoverflow.com/questions/19485949/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nHTML\tB-Language\tHTML\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\nposting\tO\tposting\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nfiddle\tB-Application\tfiddle\tO\nwould\tO\twould\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19485949\tO\t19485949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19485949/\tO\thttps://stackoverflow.com/questions/19485949/\tO\n\t\n\t\nI\tO\tI\tO\nactually\tO\tactually\tO\njust\tO\tjust\tO\nfigured\tO\tfigured\tO\nit\tO\tit\tO\nout\tO\tout\tO\n!\tO\t!\tO\n\t\nBecause\tO\tBecause\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nhiding\tO\thiding\tO\nthe\tO\tthe\tO\nDIV\tB-HTML_XML_Tag\tDIV\tO\nfor\tO\tfor\tO\nregular\tO\tregular\tO\nDesktop/Laptop\tB-Device\tDesktop/Laptop\tO\nResolution\tO\tResolution\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\ndefining\tO\tdefining\tO\nthe\tO\tthe\tO\nmax-width\tB-Library_Variable\tmax-width\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nits\tO\tits\tO\nMedia\tO\tMedia\tO\nQuery\tO\tQuery\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nalso\tO\talso\tO\nhiding\tO\thiding\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nLarge\tO\tLarge\tO\nResolution\tO\tResolution\tO\nMedia\tO\tMedia\tO\nQuery\tO\tQuery\tO\n.\tO\t.\tO\n\t\nSimple\tO\tSimple\tO\nfix\tO\tfix\tO\nof\tO\tof\tO\ndefining\tO\tdefining\tO\na\tO\ta\tO\nmax-width\tB-Library_Variable\tmax-width\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nStandard\tO\tStandard\tO\nRes\tO\tRes\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\n:)\tO\t:)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30973937\tO\t30973937\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30973937/\tO\thttps://stackoverflow.com/questions/30973937/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\ncode\tO\tcode\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nreason\tO\treason\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nOSX\tB-Operating_System\tOSX\tO\n-\tO\t-\tO\n/\tB-File_Name\t/\tO\nusr\tI-File_Name\tusr\tO\n/\tI-File_Name\t/\tO\nlocal\tI-File_Name\tlocal\tO\n\"\tO\t\"\tO\nunder\tO\tunder\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\ninstalled\tO\tinstalled\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3738\tI-Code_Block\tQ_3738\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nError\tO\tError\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3739\tI-Code_Block\tQ_3739\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCommand\tO\tCommand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3740\tI-Code_Block\tQ_3740\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30973937\tO\t30973937\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30973937/\tO\thttps://stackoverflow.com/questions/30973937/\tO\n\t\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\npath\tO\tpath\tB-Code_Block\nof\tO\tof\tO\nevhttp.h\tB-File_Name\tevhttp.h\tB-Code_Block\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\npath\tO\tpath\tB-Code_Block\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n#include\tB-Code_Block\t#include\tB-Code_Block\nfiles\tO\tfiles\tO\nsearch\tO\tsearch\tO\npath\tO\tpath\tO\nlist\tO\tlist\tO\nby\tO\tby\tO\ncommand\tO\tcommand\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4410\tI-Code_Block\tA_4410\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4411\tI-Code_Block\tA_4411\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\npath\tO\tpath\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nadd\tO\tadd\tO\n-I\tB-Code_Block\t-I\tB-Code_Block\n/missed_include\tI-Code_Block\t/missed_include\tI-Code_Block\n(\tO\t(\tO\nassume\tO\tassume\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npath\tO\tpath\tB-Code_Block\n)\tO\t)\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncommand\tO\tcommand\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\n\t\ngcc\tB-Code_Block\tgcc\tO\n-o\tI-Code_Block\t-o\tO\noctopus\tI-Code_Block\toctopus\tO\n/Users/batuhangoksu/Desktop/test.c\tI-Code_Block\t/Users/batuhangoksu/Desktop/test.c\tO\n-levent\tI-Code_Block\t-levent\tO\n-lpthread\tI-Code_Block\t-lpthread\tO\n-I\tI-Code_Block\t-I\tO\n/missed_include\tI-Code_Block\t/missed_include\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19168590\tO\t19168590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19168590/\tO\thttps://stackoverflow.com/questions/19168590/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nJSP\tB-Application\tJSP\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nmultiple\tO\tmultiple\tO\nsections\tO\tsections\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nof\tO\tof\tO\ntabs\tB-User_Interface_Element\ttabs\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nclicking\tO\tclicking\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nthe\tO\tthe\tO\nform\tB-User_Interface_Element\tform\tO\nis\tO\tis\tO\nvalidated\tO\tvalidated\tO\nand\tO\tand\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\nare\tO\tare\tO\ndisplayed\tO\tdisplayed\tO\nas\tO\tas\tO\nper\tO\tper\tO\nthe\tO\tthe\tO\nvalidation\tO\tvalidation\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nmove\tO\tmove\tO\nto\tO\tto\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\ntab\tB-User_Interface_Element\ttab\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nearlier\tO\tearlier\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\nare\tO\tare\tO\nstill\tO\tstill\tO\nthere\tO\tthere\tO\non\tO\ton\tO\ntab\tB-User_Interface_Element\ttab\tO\n2\tO\t2\tO\nand\tO\tand\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\nremoved\tO\tremoved\tO\nwhen\tO\twhen\tO\nclicking\tO\tclicking\tO\nnext\tO\tnext\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nswitch\tO\tswitch\tO\nto\tO\tto\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nsection\tO\tsection\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nform\tB-User_Interface_Element\tform\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nremove\tO\tremove\tO\nearlier\tO\tearlier\tO\nvalidation\tO\tvalidation\tO\nerrors\tO\terrors\tO\nwithout\tO\twithout\tO\nsubmitting\tO\tsubmitting\tO\nthe\tO\tthe\tO\nform\tB-User_Interface_Element\tform\tO\nagain\tO\tagain\tO\n\t\nThanks\tO\tThanks\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42301777\tO\t42301777\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42301777/\tO\thttps://stackoverflow.com/questions/42301777/\tO\n\t\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nServer.js\tB-File_Name\tServer.js\tB-Code_Block\nfile\tO\tfile\tO\ni\tO\ti\tO\nlaunch\tO\tlaunch\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nCMD\tB-Application\tCMD\tO\n:\tO\t:\tO\nnode\tB-Code_Block\tnode\tB-Code_Block\nserver\tI-Code_Block\tserver\tI-Code_Block\n\t\nThe\tO\tThe\tO\nServer.js\tB-File_Name\tServer.js\tB-Code_Block\nfile\tO\tfile\tO\ncreates\tO\tcreates\tO\nan\tO\tan\tO\nnew\tO\tnew\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nclass\tO\tclass\tB-Code_Block\nA\tB-Class_Name\tA\tI-Code_Block\n\t\nClass\tO\tClass\tB-Code_Block\nA\tB-Class_Name\tA\tI-Code_Block\ncreates\tO\tcreates\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nclass\tO\tclass\tB-Code_Block\nB\tB-Class_Name\tB\tI-Code_Block\n(\tO\t(\tO\nweb\tB-Library_Class\tweb\tO\nsocket\tI-Library_Class\tsocket\tO\n)\tO\t)\tO\nand\tO\tand\tO\nC\tB-Class_Name\tC\tO\n(\tO\t(\tO\nREST\tB-Library\tREST\tO\nAPI\tI-Library\tAPI\tO\n)\tO\t)\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nweb\tB-Library_Class\tweb\tO\nsocket\tI-Library_Class\tsocket\tO\nconnection\tO\tconnection\tO\nis\tO\tis\tO\nclose/disconnected\tO\tclose/disconnected\tO\nin\tO\tin\tO\nclass\tO\tclass\tB-Code_Block\nB\tB-Class_Name\tB\tI-Code_Block\nthen\tO\tthen\tO\nentire\tO\tentire\tO\nNodeJS\tB-Application\tNodeJS\tB-Code_Block\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nsimply\tO\tsimply\tO\nstops/shuts\tO\tstops/shuts\tO\ndown\tO\tdown\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nthough\tO\tthough\tO\ni\tO\ti\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nprocess\tO\tprocess\tO\n\"\tO\t\"\tO\nagain\tO\tagain\tO\n...\tO\t...\tO\nby\tO\tby\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nplace\tO\tplace\tO\ndifferent\tO\tdifferent\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nin\tO\tin\tO\nclose\tB-Library_Function\tclose\tO\nevent\tO\tevent\tO\n-\tO\t-\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nclose\tB-Library_Function\tclose\tO\nevent\tO\tevent\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\n-\tO\t-\tO\nwhat\tO\twhat\tO\nand\tO\tand\tO\nhow\tO\thow\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nre-launch\tO\tre-launch\tO\n\"\tO\t\"\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nexecute\tO\texecute\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n-\tO\t-\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nshuts\tO\tshuts\tO\ndown\tO\tdown\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\nto\tO\tto\tO\nre-launch\tO\tre-launch\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\napp\tO\tapp\tO\n-\tO\t-\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nNPM\tB-Application\tNPM\tO\nforever\tO\tforever\tO\netc\tO\tetc\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\n\t\nSorry\tO\tSorry\tO\nfor\tO\tfor\tO\nnot\tO\tnot\tO\nmaking\tO\tmaking\tO\nmyself\tO\tmyself\tO\nclear\tO\tclear\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nactually\tO\tactually\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nbullet\tO\tbullet\tO\npoint\tO\tpoint\tO\nno\tO\tno\tO\n.\tO\t.\tO\n\t\n4\tO\t4\tO\n..\tO\t..\tO\n.\tO\t.\tO\nliterally\tO\tliterally\tO\nno\tO\tno\tO\n-\tO\t-\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nnode\tB-Application\tnode\tO\napp\tO\tapp\tO\nagain\tO\tagain\tO\n..\tO\t..\tO\n.\tO\t.\tO\nthats\tO\tthats\tO\nwhy\tO\twhy\tO\ni\tO\ti\tO\nused\tO\tused\tO\n\"\"\tB-Value\t\"\"\tO\n(\tO\t(\tO\nquotes\tO\tquotes\tO\n)\tO\t)\tO\n..\tO\t..\tO\n.\tO\t.\tO\nas\tO\tas\tO\ni\tO\ti\tO\ndescribed\tO\tdescribed\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nup\tO\tup\tO\nagain\tO\tagain\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\n'\tO\t'\tO\nclose'\tB-Library_Function\tclose'\tO\n)\tO\t)\tO\nevent\tB-Library_Class\tevent\tO\nhandler\tI-Library_Class\thandler\tO\n...\tO\t...\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\ndebug\tO\tdebug\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nreach\tO\treach\tO\nthe\tO\tthe\tO\npoint\tO\tpoint\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\neventhandler\tB-Library_Class\teventhandler\tO\n...\tO\t...\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\n/\tO\t/\tO\ncall\tO\tcall\tO\nA.start()\tB-Library_Function\tA.start()\tO\nfunction\tO\tfunction\tO\nagain\tO\tagain\tO\nor\tO\tor\tO\nvia\tO\tvia\tO\nfirering\tO\tfirering\tO\nan\tO\tan\tO\nevent\tO\tevent\tO\n...\tO\t...\tO\nso\tO\tso\tO\nits\tO\tits\tO\nsome\tO\tsome\tO\nthing\tO\tthing\tO\nabout\tO\tabout\tO\nscopes\tO\tscopes\tO\n,\tO\t,\tO\ninstances\tO\tinstances\tO\n,\tO\t,\tO\nfunction\tO\tfunction\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\nproperly\tO\tproperly\tO\ndont\tO\tdont\tO\ndo\tO\tdo\tO\ncorrect\tO\tcorrect\tO\n-\tO\t-\tO\nthats\tO\tthats\tO\nwhy\tO\twhy\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndescribe\tO\tdescribe\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nfunctions\tO\tfunctions\tO\n...\tO\t...\tO\nnow\tO\tnow\tO\n-\tO\t-\tO\ni\tO\ti\tO\nhope\tO\thope\tO\nits\tO\tits\tO\nmore\tO\tmore\tO\nclear\tO\tclear\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nmean\tO\tmean\tO\n:-)\tO\t:-)\tO\n\t\nUPDATE\tO\tUPDATE\tO\n2\tO\t2\tO\n:\tO\t:\tO\n\t\nServer.js\tB-File_Name\tServer.js\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5384\tI-Code_Block\tQ_5384\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDownload-manager.js\tB-File_Name\tDownload-manager.js\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5385\tI-Code_Block\tQ_5385\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWsclient.js\tB-File_Name\tWsclient.js\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5386\tI-Code_Block\tQ_5386\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42301777\tO\t42301777\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42301777/\tO\thttps://stackoverflow.com/questions/42301777/\tO\n\t\n\t\nA\tO\tA\tO\nnode\tB-Application\tnode\tO\napp\tO\tapp\tO\nwill\tO\twill\tO\nstay\tO\tstay\tO\nalive\tO\talive\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nactive\tO\tactive\tO\nelements\tO\telements\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nstill\tO\tstill\tO\nreceive\tO\treceive\tO\nevents\tO\tevents\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\ninclude\tO\tinclude\tO\na\tO\ta\tO\nTCP\tO\tTCP\tO\nconnection\tO\tconnection\tO\n,\tO\t,\tO\na\tO\ta\tO\nlistening\tO\tlistening\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\na\tO\ta\tO\ntimer\tO\ttimer\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nnone\tO\tnone\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nexist\tO\texist\tO\nany\tO\tany\tO\nmore\tO\tmore\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nqueue\tB-Data_Structure\tqueue\tO\nis\tO\tis\tO\nempty\tO\tempty\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nflow\tO\tflow\tO\nof\tO\tof\tO\ncontrol\tO\tcontrol\tO\nreturns\tO\treturns\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nno\tO\tno\tO\nJS\tB-Language\tJS\tO\nis\tO\tis\tO\nexecuting\tO\texecuting\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nnode\tB-Application\tnode\tO\napp\tO\tapp\tO\nwill\tO\twill\tO\nshut\tO\tshut\tO\nitself\tO\titself\tO\ndown\tO\tdown\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nidea\tO\tidea\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nnothing\tO\tnothing\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\nthat\tO\tthat\tO\ncould\tO\tcould\tO\npossible\tO\tpossible\tO\ncreate\tO\tcreate\tO\nmore\tO\tmore\tO\nevents\tO\tevents\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nnothing\tO\tnothing\tO\nelse\tO\telse\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nhappen\tO\thappen\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nnode\tB-Application\tnode\tO\napp\tO\tapp\tO\nso\tO\tso\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nsaying\tO\tsaying\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nstart\tO\tstart\tO\nany\tO\tany\tO\nmore\tO\tmore\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nlogging\tO\tlogging\tO\nof\tO\tof\tO\nerrors\tO\terrors\tO\nand\tO\tand\tO\ndebugging\tO\tdebugging\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhy\tO\twhy\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nlog\tO\tlog\tO\nevery\tO\tevery\tO\npossible\tO\tpossible\tO\nplace\tO\tplace\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nstart-up\tO\tstart-up\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nprobably\tO\tprobably\tO\ndiscover\tO\tdiscover\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nkeeping\tO\tkeeping\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nstarting\tO\tstarting\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nprovided\tO\tprovided\tO\nnot\tO\tnot\tO\ndetails\tO\tdetails\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\ngo\tO\tgo\tO\non\tO\ton\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nissue\tO\tissue\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\npreventing\tO\tpreventing\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nlist\tO\tlist\tO\nsome\tO\tsome\tO\ncommon\tO\tcommon\tO\nthings\tO\tthings\tO\n:\tO\t:\tO\n\t\nSome\tO\tSome\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nrunning\tO\trunning\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\ncontrol\tO\tcontrol\tO\nof\tO\tof\tO\nsome\tO\tsome\tO\nresource\tO\tresource\tO\n(\tO\t(\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\na\tO\ta\tO\nport\tB-Device\tport\tO\n)\tO\t)\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrestart\tO\trestart\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshuts\tO\tshuts\tO\ndown\tO\tdown\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\naccess\tO\taccess\tO\nthat\tO\tthat\tO\nresource\tO\tresource\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nrunning\tO\trunning\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nopen\tO\topen\tO\nfile\tO\tfile\tO\nresources\tO\tresources\tO\n,\tO\t,\tO\nrestricting\tO\trestricting\tO\nyour\tO\tyour\tO\nability\tO\tability\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthose\tO\tthose\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ncheck\tO\tcheck\tO\nyour\tO\tyour\tO\nOS\tB-Application\tOS\tO\nprocess\tI-Application\tprocess\tO\nmanager\tI-Application\tmanager\tO\nto\tO\tto\tO\nverify\tO\tverify\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\noriginal\tO\toriginal\tO\napp\tO\tapp\tO\ninstance\tO\tinstance\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nstill\tO\tstill\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsymptoms\tO\tsymptoms\tO\nyou\tO\tyou\tO\ndescribe\tO\tdescribe\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nsound\tO\tsound\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nstill\tO\tstill\tO\nrunning\tO\trunning\tO\nand\tO\tand\tO\nholding\tO\tholding\tO\nonto\tO\tonto\tO\nsome\tO\tsome\tO\nresources\tO\tresources\tO\nthat\tO\tthat\tO\nkeep\tO\tkeep\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\nrunning\tO\trunning\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npart\tO\tpart\tO\nhas\tO\thas\tO\nme\tO\tme\tO\nconfused\tO\tconfused\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nsay\tO\tsay\tO\n\"\tO\t\"\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nprocess\tO\tprocess\tO\nagain\tO\tagain\tO\n\"\tO\t\"\tO\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\nwed\tO\twed\tO\nsocket\tO\tsocket\tO\ncloses\tO\tcloses\tO\n.\tO\t.\tO\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nliterally\tO\tliterally\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nexec\tO\texec\tO\nnode\tO\tnode\tB-Code_Block\nserver.js\tB-File_Name\tserver.js\tI-Code_Block\nagain\tO\tagain\tO\nfrom\tO\tfrom\tO\nwithin\tO\twithin\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\nactually\tO\tactually\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthere\tO\tthere\tO\n?\tO\t?\tO\n\t\nWe\tO\tWe\tO\nprobably\tO\tprobably\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nparticular\tO\tparticular\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nFYI\tO\tFYI\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nno\tO\tno\tO\nbig\tO\tbig\tO\ndeal\tO\tdeal\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nre-establish\tO\tre-establish\tO\na\tO\ta\tO\nwebSocket\tB-Library_Class\twebSocket\tO\nconnection\tO\tconnection\tO\nafter\tO\tafter\tO\nit\tO\tit\tO\nclosed\tO\tclosed\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nrestart\tO\trestart\tO\nyour\tO\tyour\tO\nwhole\tO\twhole\tO\napp\tO\tapp\tO\njust\tO\tjust\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10633677\tO\t10633677\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10633677/\tO\thttps://stackoverflow.com/questions/10633677/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nVideoView\tB-Library_Class\tVideoView\tB-Code_Block\ninside\tO\tinside\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ndialog\tB-Variable_Name\tdialog\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nmedia\tB-Variable_Name\tmedia\tO\ncontroller\tI-Variable_Name\tcontroller\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nVideoView\tB-Library_Class\tVideoView\tB-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nfly\tO\tfly\tO\nand\tO\tand\tO\nassigning\tO\tassigning\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nVideoView\tB-Library_Class\tVideoView\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthe\tO\tthe\tO\ncontroller\tB-User_Interface_Element\tcontroller\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nactually\tO\tactually\tO\nappear\tO\tappear\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nvideo\tB-User_Interface_Element\tvideo\tO\n-\tO\t-\tO\nit\tO\tit\tO\nappears\tO\tappears\tO\nbehind\tO\tbehind\tO\nthe\tO\tthe\tO\ndialog\tB-User_Interface_Element\tdialog\tO\n!\tO\t!\tO\n\t\nAny\tO\tAny\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncontroller\tB-User_Interface_Element\tcontroller\tO\nabove\tO\tabove\tO\nthe\tO\tthe\tO\nvideo\tB-User_Interface_Element\tvideo\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nstatic\tB-Data_Type\tstatic\tO\ndialog\tB-Class_Name\tdialog\tO\nhelper\tI-Class_Name\thelper\tO\nclass\tO\tclass\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nconstruct\tO\tconstruct\tO\nthe\tO\tthe\tO\ncustom\tO\tcustom\tO\ndialogs\tB-Variable_Name\tdialogs\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_956\tI-Code_Block\tQ_956\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nActivity\tB-Library_Class\tActivity\tB-Code_Block\ni\tO\ti\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nmy\tO\tmy\tO\ndialog\tB-Variable_Name\tdialog\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_957\tI-Code_Block\tQ_957\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10633677\tO\t10633677\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10633677/\tO\thttps://stackoverflow.com/questions/10633677/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n\t\nin\tO\tin\tO\nxml\tB-File_Type\txml\tO\nlayout\tO\tlayout\tO\nmake\tO\tmake\tO\nchanges\tO\tchanges\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6334\tI-Code_Block\tA_6334\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\nyour\tO\tyour\tO\ndilog\tB-Variable_Name\tdilog\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6335\tI-Code_Block\tA_6335\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nvideo\tB-Library_Class\tvideo\tO\nview\tI-Library_Class\tview\tO\nuse\tO\tuse\tO\nsetOnPreparedListener\tB-Library_Function\tsetOnPreparedListener\tO\nlistener\tO\tlistener\tO\nand\tO\tand\tO\nset\tB-Library_Function\tset\tO\nmedia\tI-Library_Function\tmedia\tO\ncontroller\tI-Library_Function\tcontroller\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6336\tI-Code_Block\tA_6336\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10633677\tO\t10633677\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10633677/\tO\thttps://stackoverflow.com/questions/10633677/\tO\n\t\n\t\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nActivity\tB-Library_Class\tActivity\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nDialog\tB-Library_Class\tDialog\tB-Code_Block\n.\tO\t.\tO\n\t\nSet\tO\tSet\tO\nyour\tO\tyour\tO\nActivity\tB-Library_Class\tActivity\tB-Code_Block\ntheme\tO\ttheme\tO\nto\tO\tto\tO\nemulate\tO\temulate\tO\na\tO\ta\tO\nDialog\tB-Library_Class\tDialog\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nmanifest\tO\tmanifest\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n-\tO\t-\tO\nAndroidManifest.xml\tB-File_Name\tAndroidManifest.xml\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2047\tI-Code_Block\tA_2047\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\na\tO\ta\tO\nVideoView\tB-Library_Class\tVideoView\tB-Code_Block\nas\tO\tas\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nexamples\tO\texamples\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33291480\tO\t33291480\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33291480/\tO\thttps://stackoverflow.com/questions/33291480/\tO\n\t\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\na\tO\ta\tO\nC#\tB-Language\tC#\tO\napplication\tO\tapplication\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nplan\tO\tplan\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nconnection\tO\tconnection\tO\nand\tO\tand\tO\noutput\tO\toutput\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nto\tO\tto\tO\nremember\tO\tremember\tO\nthose\tO\tthose\tO\nsettings\tO\tsettings\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nstarts\tO\tstarts\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nthinking\tO\tthinking\tO\nsaving\tO\tsaving\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nan\tO\tan\tO\nXML\tB-File_Type\tXML\tO\nfile\tO\tfile\tO\nthen\tO\tthen\tO\njust\tO\tjust\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nXML\tB-File_Type\tXML\tO\nfile\tO\tfile\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nstarts\tO\tstarts\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nPerhaps\tO\tPerhaps\tO\nVisual\tB-Application\tVisual\tO\nStudios\tI-Application\tStudios\tO\n'\tO\t'\tO\napplication\tO\tapplication\tO\nsettings\tO\tsettings\tO\n?\tO\t?\tO\n\t\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n->\tO\t->\tO\nProject\tO\tProject\tO\n->\tO\t->\tO\n(\tO\t(\tO\nproject\tO\tproject\tO\nname\tO\tname\tO\n)\tO\t)\tO\nProperties\tO\tProperties\tO\n->\tO\t->\tO\nSettings\tO\tSettings\tO\ntab\tB-User_Interface_Element\ttab\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nlatter\tO\tlatter\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33291480\tO\t33291480\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33291480/\tO\thttps://stackoverflow.com/questions/33291480/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nyour\tO\tyour\tO\ndescription\tO\tdescription\tO\n,\tO\t,\tO\nit\tO\tit\tO\nsounds\tO\tsounds\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\ndefinitely\tO\tdefinitely\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nProperties.Settings\tB-Library_Class\tProperties.Settings\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nlet\tO\tlet\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nuser-specific\tO\tuser-specific\tO\nconnections\tO\tconnections\tO\neasily\tO\teasily\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nthis\tO\tthis\tO\nanswer\tO\tanswer\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nbreakdown\tO\tbreakdown\tO\nof\tO\tof\tO\neach\tO\teach\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28495384\tO\t28495384\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28495384/\tO\thttps://stackoverflow.com/questions/28495384/\tO\n\t\n\t\nI\tO\tI\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nin\tO\tin\tO\nUIWebView\tB-Library_Class\tUIWebView\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\noption\tO\toption\tO\nchoose\tO\tchoose\tO\nfile\tO\tfile\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nimage\tB-User_Interface_Element\timage\tO\npicker\tO\tpicker\tO\ncontroller\tO\tcontroller\tO\nand\tO\tand\tO\npick\tO\tpick\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\npicked\tO\tpicked\tO\nimage\tB-User_Interface_Element\timage\tO\nshould\tO\tshould\tO\nupload\tO\tupload\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nurl\tO\turl\tO\n.\tO\t.\tO\n\t\nExample:\tO\tExample:\tO\n-\tO\t-\tO\n\"\tO\t\"\tO\nif\tO\tif\tO\nprofile\tO\tprofile\tO\nview\tO\tview\tO\nloaded\tO\tloaded\tO\ninto\tO\tinto\tO\nUIWebview\tB-Library_Class\tUIWebview\tO\nthan\tO\tthan\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\ntheir\tO\ttheir\tO\nprofile\tO\tprofile\tO\npicture\tO\tpicture\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nUIWebview\tB-Library_Class\tUIWebview\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\noption\tO\toption\tO\nlike\tO\tlike\tO\nchoose\tO\tchoose\tO\nfile\tO\tfile\tO\nwhere\tO\twhere\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nopen\tO\topen\tO\npicker\tO\tpicker\tO\ncontroller\tO\tcontroller\tO\nto\tO\tto\tO\npick\tO\tpick\tO\nimage\tB-User_Interface_Element\timage\tO\nand\tO\tand\tO\nset\tO\tset\tO\nselected\tO\tselected\tO\nthat\tO\tthat\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3345\tI-Code_Block\tQ_3345\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nselected\tO\tselected\tO\nimage\tB-User_Interface_Element\timage\tO\nnot\tO\tnot\tO\nupload\tO\tupload\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nurl\tO\turl\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\nin\tO\tin\tO\nUIWebview\tB-Library_Class\tUIWebview\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\nsolution\tO\tsolution\tO\nthan\tO\tthan\tO\nplease\tO\tplease\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11390739\tO\t11390739\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11390739/\tO\thttps://stackoverflow.com/questions/11390739/\tO\n\t\n\t\nso\tO\tso\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nparses\tO\tparses\tO\nan\tO\tan\tO\nxml\tB-File_Type\txml\tO\nfeed\tO\tfeed\tO\non\tO\ton\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nserver\tB-Device\tserver\tO\n(\tO\t(\tO\nie\tO\tie\tO\nwww.site1.com\tO\twww.site1.com\tO\n)\tO\t)\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nlocally\tO\tlocally\tO\nhosted\tO\thosted\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ncomputer\tB-Device\tcomputer\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\nworks\tO\tworks\tO\nperfectly\tO\tperfectly\tO\nin\tO\tin\tO\nsafari\tB-Application\tsafari\tO\n.\tO\t.\tO\n\t\nbut\tO\tbut\tO\ndoesnt\tO\tdoesnt\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nchrome\tB-Application\tchrome\tO\nor\tO\tor\tO\nfirefox\tB-Application\tfirefox\tO\n.\tO\t.\tO\n\t\nwhen\tO\twhen\tO\ni\tO\ti\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nxml\tB-File_Type\txml\tO\nfeed\tO\tfeed\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nserver\tO\tserver\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nhtml\tB-File_Type\thtml\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nie\tO\tie\tO\nboth\tO\tboth\tO\nfiles\tO\tfiles\tO\non\tO\ton\tO\nwww.site2.com\tO\twww.site2.com\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nparses\tO\tparses\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\nall\tO\tall\tO\nbrowsers\tB-Application\tbrowsers\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\nxml\tB-File_Type\txml\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\nserver\tB-Device\tserver\tO\n.\tO\t.\tO\n\t\nhow\tO\thow\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\ni\tO\ti\tO\nfeel\tO\tfeel\tO\nlike\tO\tlike\tO\nive\tO\tive\tO\ntried\tO\ttried\tO\neverything\tO\teverything\tO\n.\tO\t.\tO\n\t\ncallback\tB-Library_Function\tcallback\tO\nfunctions\tO\tfunctions\tO\n,\tO\t,\tO\njsonp.js\tB-File_Name\tjsonp.js\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nand\tO\tand\tO\nall\tO\tall\tO\nsorts\tO\tsorts\tO\nof\tO\tof\tO\njquery\tB-Library\tjquery\tO\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nbut\tO\tbut\tO\nno\tO\tno\tO\ndice\tO\tdice\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nanyone\tO\tanyone\tO\nhas\tO\thas\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nreal\tO\treal\tO\nappreciative\tO\tappreciative\tO\n!\tO\t!\tO\n\t\nthank\tO\tthank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1058\tI-Code_Block\tQ_1058\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11390739\tO\t11390739\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11390739/\tO\thttps://stackoverflow.com/questions/11390739/\tO\n\t\n\t\nLook\tO\tLook\tO\nat\tO\tat\tO\nyour\tO\tyour\tO\nconsole\tB-Application\tconsole\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\ncross\tO\tcross\tO\ndomain\tO\tdomain\tO\najax\tB-Library_Function\tajax\tO\nrequest\tI-Library_Function\trequest\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nable\tO\table\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\ncross\tO\tcross\tO\ndomain\tO\tdomain\tO\nparsing\tO\tparsing\tO\n,\tO\t,\tO\nis\tO\tis\tO\nwith\tO\twith\tO\njsonp\tB-File_Type\tjsonp\tO\n.\tO\t.\tO\n\t\nWhere\tO\tWhere\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\ngrabbing\tO\tgrabbing\tO\nthe\tO\tthe\tO\nxml\tB-File_Type\txml\tO\nfeed\tO\tfeed\tO\nfrom\tO\tfrom\tO\n?\tO\t?\tO\n\t\nMaybe\tO\tMaybe\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\na\tO\ta\tO\njsonp\tB-File_Type\tjsonp\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\na\tO\ta\tO\njsonp\tB-File_Type\tjsonp\tO\nurl\tO\turl\tO\nhttp://www.kiabuzz.co.za/?feed=json&callback=\tO\thttp://www.kiabuzz.co.za/?feed=json&callback=\tO\n?\tO\t?\tO\n.\tO\t.\tO\n\t\nPaste\tO\tPaste\tO\nit\tO\tit\tO\nin\tO\tin\tO\nreplace\tO\treplace\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nwill\tO\twill\tO\ndisappear\tO\tdisappear\tO\n.\tO\t.\tO\n\t\nObviously\tO\tObviously\tO\nthe\tO\tthe\tO\ndatatype\tO\tdatatype\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\njson\tB-File_Type\tjson\tO\nas\tO\tas\tO\nopposed\tO\topposed\tO\nto\tO\tto\tO\nxml\tB-File_Type\txml\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Device\tserver\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nwill\tO\twill\tO\ndisappear\tO\tdisappear\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nprovide\tO\tprovide\tO\nme\tO\tme\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ngrab\tO\tgrab\tO\nthe\tO\tthe\tO\nxml\tB-File_Type\txml\tO\nfeed\tO\tfeed\tO\nfrom\tO\tfrom\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25332606\tO\t25332606\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25332606/\tO\thttps://stackoverflow.com/questions/25332606/\tO\n\t\n\t\nSuppose\tO\tSuppose\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nShape\tB-Class_Name\tShape\tO\n.\tO\t.\tO\n\t\nAssume\tO\tAssume\tO\nShape\tB-Class_Name\tShape\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ninstantiated\tO\tinstantiated\tO\nas\tO\tas\tO\nCircle\tB-Variable_Name\tCircle\tO\n,\tO\t,\tO\nSquare\tB-Variable_Name\tSquare\tO\n,\tO\t,\tO\nand\tO\tand\tO\nTriangle\tB-Variable_Name\tTriangle\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nat\tO\tat\tO\nruntime\tO\truntime\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnames\tO\tnames\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nShape\tB-Class_Name\tShape\tO\nobjects\tO\tobjects\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nto\tO\tto\tO\niterate\tO\titerate\tO\nover\tO\tover\tO\nthose\tO\tthose\tO\nobjects\tO\tobjects\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25332606\tO\t25332606\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25332606/\tO\thttps://stackoverflow.com/questions/25332606/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nrecommend\tO\trecommend\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\none\tO\tone\tO\nway\tO\tway\tO\nof\tO\tof\tO\ntracking\tO\ttracking\tO\nall\tO\tall\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nshape\tO\tshape\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3493\tI-Code_Block\tA_3493\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nsolving\tO\tsolving\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nto\tO\tto\tO\nVyrx\tB-User_Name\tVyrx\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nWeakReference\tB-Library_Class\tWeakReference\tB-Code_Block\nsuggestion\tO\tsuggestion\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\ngarbage\tO\tgarbage\tO\ncollection\tO\tcollection\tO\nissues\tO\tissues\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25332606\tO\t25332606\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25332606/\tO\thttps://stackoverflow.com/questions/25332606/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nway\tO\tway\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nreflection\tO\treflection\tO\nto\tO\tto\tO\nobtain\tO\tobtain\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\ninstantiated\tO\tinstantiated\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nReflection\tO\tReflection\tO\ncan\tO\tcan\tO\ngive\tO\tgive\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\ntype\tO\ttype\tO\nor\tO\tor\tO\ninteract\tO\tinteract\tO\nwith\tO\twith\tO\nobjects\tO\tobjects\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nreference\tO\treference\tO\nto\tO\tto\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nlet\tO\tlet\tO\nyou\tO\tyou\tO\nfind\tO\tfind\tO\n\"\tO\t\"\tO\nall\tO\tall\tO\nobject\tO\tobject\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\ntype\tO\ttype\tO\never\tO\tever\tO\ncreated\tO\tcreated\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ndubugging\tB-Application\tdubugging\tO\nAPIs\tI-Application\tAPIs\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nI.e\tO\tI.e\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nWinDbg\tB-Application\tWinDbg\tO\n+\tO\t+\tO\nSOS\tB-Application\tSOS\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3492\tI-Code_Block\tA_3492\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26707597\tO\t26707597\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26707597/\tO\thttps://stackoverflow.com/questions/26707597/\tO\n\t\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nsaw\tO\tsaw\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nhttp://livedemo00.template-help.com/wordpress_39638/contacts/\tO\thttp://livedemo00.template-help.com/wordpress_39638/contacts/\tO\nand\tO\tand\tO\ni\tO\ti\tO\nliked\tO\tliked\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\ngoogle\tB-Application\tgoogle\tO\nmaps\tI-Application\tmaps\tO\nis\tO\tis\tO\nused\tO\tused\tO\nhere\tO\there\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\niframe\tB-HTML_XML_Tag\tiframe\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nhttp://maps.google.com/mapsf=q&source=s_q&hl=en&geocode=&q=Brooklyn,+NY,+USA&aq=0&sll=37.0625,-95.677068&sspn=47.704107,79.013672&ie=UTF8&hq=&hnear=Brooklyn,+Kings,+New+York&ll=40.649974,-73.949919&spn=0.01628,0.028238&z=14&iwloc=A&output=embed\tO\thttp://maps.google.com/mapsf=q&source=s_q&hl=en&geocode=&q=Brooklyn,+NY,+USA&aq=0&sll=37.0625,-95.677068&sspn=47.704107,79.013672&ie=UTF8&hq=&hnear=Brooklyn,+Kings,+New+York&ll=40.649974,-73.949919&spn=0.01628,0.028238&z=14&iwloc=A&output=embed\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\ngenerate\tO\tgenerate\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nlocation\tO\tlocation\tO\n's\tO\t's\tO\ngoogle\tB-Application\tgoogle\tO\nmaps\tI-Application\tmaps\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26707597\tO\t26707597\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26707597/\tO\thttps://stackoverflow.com/questions/26707597/\tO\n\t\n\t\nhttps://developers.google.com/maps/documentation/embed/start\tO\thttps://developers.google.com/maps/documentation/embed/start\tO\nhas\tO\thas\tO\na\tO\ta\tO\npretty\tO\tpretty\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nfollow\tO\tfollow\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\n4\tO\t4\tO\nsteps\tO\tsteps\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9320083\tO\t9320083\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9320083/\tO\thttps://stackoverflow.com/questions/9320083/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ndbase\tB-Application\tdbase\tO\nlibrary\tO\tlibrary\tO\nin\tO\tin\tO\nphp5.3\tB-Language\tphp5.3\tO\nto\tO\tto\tO\nopen\tO\topen\tO\na\tO\ta\tO\n.dbf\tB-File_Type\t.dbf\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\ndbase.so\tB-Library\tdbase.so\tO\nlibrary\tO\tlibrary\tO\ninstalled\tO\tinstalled\tO\nand\tO\tand\tO\nactive\tO\tactive\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nphp5\tB-Language\tphp5\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nexecuting\tO\texecuting\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_786\tI-Code_Block\tQ_786\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhere\tO\tWhere\tO\nCMX.dbf\tB-File_Name\tCMX.dbf\tO\nis\tO\tis\tO\na\tO\ta\tO\nVisual\tB-Language\tVisual\tO\nFoxPro9\tI-Language\tFoxPro9\tO\ndata\tO\tdata\tO\ntable\tB-Data_Structure\ttable\tO\nand\tO\tand\tO\nis\tO\tis\tO\nlocated\tO\tlocated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndirectory\tO\tdirectory\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nexecuting\tO\texecuting\tO\nscript\tO\tscript\tO\nwith\tO\twith\tO\nread/write/execute\tO\tread/write/execute\tO\npermissions\tO\tpermissions\tO\nenabled\tO\tenabled\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexert\tO\texert\tO\nfrom\tO\tfrom\tO\n/var/log/apache2/error.log\tB-File_Name\t/var/log/apache2/error.log\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_787\tI-Code_Block\tQ_787\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nline\tO\tline\tO\n28\tO\t28\tO\n\t\nAs\tO\tAs\tO\nthis\tO\tthis\tO\nerror/warning\tO\terror/warning\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\ndescriptive\tO\tdescriptive\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nissues\tO\tissues\tO\ntracking\tO\ttracking\tO\ndown\tO\tdown\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\ncause\tO\tcause\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9320083\tO\t9320083\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9320083/\tO\thttps://stackoverflow.com/questions/9320083/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4148\tI-Code_Block\tA_4148\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9320083\tO\t9320083\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9320083/\tO\thttps://stackoverflow.com/questions/9320083/\tO\n\t\n\t\nNot\tO\tNot\tO\npositive\tO\tpositive\tO\nabout\tO\tabout\tO\nPHP\tB-Language\tPHP\tO\n,\tO\t,\tO\nnor\tO\tnor\tO\nApache\tB-Application\tApache\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ntypically\tO\ttypically\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\ndatabase\tO\tdatabase\tO\nfiles\tO\tfiles\tO\n(\tO\t(\tO\nor\tO\tor\tO\nFoxpro\tB-Language\tFoxpro\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ntypical\tO\ttypical\tO\napproach\tO\tapproach\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nCONNECTION\tB-Library_Function\tCONNECTION\tO\nto\tO\tto\tO\na\tO\ta\tO\nPATH\tB-Library_Variable\tPATH\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nperform\tO\tperform\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37041943\tO\t37041943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37041943/\tO\thttps://stackoverflow.com/questions/37041943/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndataset\tO\tdataset\tO\nwith\tO\twith\tO\n25000\tO\t25000\tO\nrows\tB-Data_Structure\trows\tO\nand\tO\tand\tO\n761\tO\t761\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nincludes\tO\tincludes\tO\none\tO\tone\tO\nbinary\tO\tbinary\tO\nresponse\tO\tresponse\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nbinary\tO\tbinary\tO\nresponse\tO\tresponse\tO\nhad\tO\thad\tO\nvalues\tO\tvalues\tO\n'\tO\t'\tO\n-1\tB-Value\t-1\tO\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\n1\tB-Value\t1\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nxgboost\tB-Library\txgboost\tO\non\tO\ton\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nkeep\tO\tkeep\tO\ngetting\tO\tgetting\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nwhich\tO\twhich\tO\nsays\tO\tsays\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4595\tI-Code_Block\tQ_4595\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\nlevels\tO\tlevels\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nresponse\tO\tresponse\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncommand\tO\tcommand\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4596\tI-Code_Block\tQ_4596\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nstill\tO\tstill\tO\nkeep\tO\tkeep\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nand\tO\tand\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nexactly\tO\texactly\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nimportant\tO\timportant\tO\npoint\tO\tpoint\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nrare\tO\trare\tO\nevent\tO\tevent\tO\ndetection\tO\tdetection\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nproportion\tO\tproportion\tO\nof\tO\tof\tO\npositive\tO\tpositive\tO\ncases\tO\tcases\tO\nbeing\tO\tbeing\tO\n1%\tO\t1%\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\nobservations\tO\tobservations\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nthat\tO\tthat\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nreason\tO\treason\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37041943\tO\t37041943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37041943/\tO\thttps://stackoverflow.com/questions/37041943/\tO\n\t\n\t\nBefore\tO\tBefore\tO\nrunning\tO\trunning\tO\nXgboost\tB-Library\tXgboost\tO\nmodel\tO\tmodel\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\ncertain\tO\tcertain\tO\nsteps\tO\tsteps\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nvariables\tO\tvariables\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nnumeric\tB-Data_Type\tnumeric\tO\n\t\nfor\tO\tfor\tO\nbinary\tO\tbinary\tO\nclassification\tO\tclassification\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\noutput\tO\toutput\tO\nvariable\tO\tvariable\tO\nshould\tO\tshould\tO\nrange\tO\trange\tO\nfrom\tO\tfrom\tO\n0\tB-Value\t0\tO\nto\tO\tto\tO\n1\tB-Value\t1\tO\n\t\nUsing\tO\tUsing\tO\nlevels(output)[levels(output)==\"-1\"]\tB-Code_Block\tlevels(output)[levels(output)==\"-1\"]\tO\n<\tI-Code_Block\t<\tO\n-\tI-Code_Block\t-\tO\n\"\tI-Code_Block\t\"\tO\n0\tI-Code_Block\t0\tO\n\"\tI-Code_Block\t\"\tO\n,\tO\t,\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\noutput\tO\toutput\tO\nvariable\tO\tvariable\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ncharacter\tB-Data_Type\tcharacter\tO\n.\tO\t.\tO\n\t\nChange\tO\tChange\tO\nit\tO\tit\tO\nto\tO\tto\tO\nnumeric\tB-Data_Type\tnumeric\tO\n,\tO\t,\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nbetween\tO\tbetween\tO\n0\tB-Value\t0\tO\nand\tO\tand\tO\n1\tB-Value\t1\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nXgboost\tB-Library\tXgboost\tO\nmodel\tO\tmodel\tO\nwill\tO\twill\tO\nprobably\tO\tprobably\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37041943\tO\t37041943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37041943/\tO\thttps://stackoverflow.com/questions/37041943/\tO\n\t\n\t\nJust\tO\tJust\tO\nso\tO\tso\tO\nthis\tO\tthis\tO\nmay\tO\tmay\tO\nhelp\tO\thelp\tO\nsomeone\tO\tsomeone\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\na\tO\ta\tO\nfactor\tO\tfactor\tO\nvariable\tO\tvariable\tO\nwith\tO\twith\tO\nlevels\tO\tlevels\tO\n0\tB-Value\t0\tO\nand\tO\tand\tO\n1\tB-Value\t1\tO\ninto\tO\tinto\tO\nlabels\tO\tlabels\tO\nfor\tO\tfor\tO\ninput\tO\tinput\tO\nto\tO\tto\tO\nXGBoost\tB-Library\tXGBoost\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\naware\tO\taware\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsubtract\tO\tsubtract\tO\n1\tB-Value\t1\tO\nafter\tO\tafter\tO\nconverting\tO\tconverting\tO\nto\tO\tto\tO\ninteger\tB-Data_Type\tinteger\tO\n(\tO\t(\tO\nor\tO\tor\tO\nnumeric\tB-Data_Type\tnumeric\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5587\tI-Code_Block\tA_5587\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6256245\tO\t6256245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6256245/\tO\thttps://stackoverflow.com/questions/6256245/\tO\n\t\n\t\nI\tO\tI\tO\nhaving\tO\thaving\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nConcurrentModificationException\tB-Library_Class\tConcurrentModificationException\tB-Code_Block\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nsubList\tB-Library_Function\tsubList\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nIs\tO\tIs\tO\nsafe\tO\tsafe\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncollection\tO\tcollection\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nsubList\tB-Library_Function\tsubList\tO\n?\tO\t?\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_468\tI-Code_Block\tQ_468\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nresult\tO\tresult\tO\nlist\tB-Library_Class\tlist\tO\nmust\tO\tmust\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nindependent\tO\tindependent\tO\nlist\tB-Library_Class\tlist\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nlist\tB-Library_Class\tlist\tO\n.\tO\t.\tO\n\t\nSorry\tO\tSorry\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nenglish\tO\tenglish\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6256245\tO\t6256245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6256245/\tO\thttps://stackoverflow.com/questions/6256245/\tO\n\t\n\t\nWithout\tO\tWithout\tO\nseeing\tO\tseeing\tO\nmore\tO\tmore\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nthat\tO\tthat\tO\nanother\tO\tanother\tO\nthread\tO\tthread\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nmodifying\tO\tmodifying\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nsomeList\tB-Variable_Name\tsomeList\tB-Code_Block\n,\tO\t,\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nsynchronization\tO\tsynchronization\tO\npolicy\tO\tpolicy\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\na\tO\ta\tO\nsynchronized\tB-Function_Name\tsynchronized\tO\nblock\tO\tblock\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\nextract\tO\textract\tO\na\tO\ta\tO\nsub-list\tB-Data_Structure\tsub-list\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n-\tO\t-\tO\n-\tO\t-\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nme\tO\tme\tO\nshooting\tO\tshooting\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndark\tO\tdark\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_711\tI-Code_Block\tA_711\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsub-list\tB-Data_Structure\tsub-list\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmiddle\tO\tmiddle\tO\nof\tO\tof\tO\niterating\tO\titerating\tO\nover\tO\tover\tO\nit\tO\tit\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nrecommend\tO\trecommend\tO\ndoing\tO\tdoing\tO\nso\tO\tso\tO\nusing\tO\tusing\tO\niterator.remove()\tB-Library_Function\titerator.remove()\tO\nsince\tO\tsince\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6256245\tO\t6256245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6256245/\tO\thttps://stackoverflow.com/questions/6256245/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nsublist\tB-Library_Function\tsublist\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmodifiable\tO\tmodifiable\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30746836\tO\t30746836\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30746836/\tO\thttps://stackoverflow.com/questions/30746836/\tO\n\t\n\t\nIn\tO\tIn\tO\nLinux\tB-Operating_System\tLinux\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndelete\tO\tdelete\tO\nall\tO\tall\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nparticular\tO\tparticular\tO\ndirectory\tO\tdirectory\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n/home/xd/karthik\tB-File_Name\t/home/xd/karthik\tB-Code_Block\nis\tO\tis\tO\nmy\tO\tmy\tO\npath\tO\tpath\tO\n;\tO\t;\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndelete\tO\tdelete\tO\nall\tO\tall\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ndisk\tB-Device\tdisk\tO\nusage\tO\tusage\tO\nexceeds\tO\texceeds\tO\n90%\tO\t90%\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30746836\tO\t30746836\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30746836/\tO\thttps://stackoverflow.com/questions/30746836/\tO\n\t\n\t\nrm\tB-Code_Block\trm\tB-Code_Block\n/path/to/directory/\tI-Code_Block\t/path/to/directory/\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\n\t\nadd\tO\tadd\tO\nrm\tB-Code_Block\trm\tB-Code_Block\n-r\tI-Code_Block\t-r\tI-Code_Block\nto\tO\tto\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nhierarchy\tO\thierarchy\tO\nrooted\tO\trooted\tO\nin\tO\tin\tO\neach\tO\teach\tO\nfile\tO\tfile\tO\nargument\tO\targument\tO\n.\tO\t.\tO\n\t\ndont\tO\tdont\tO\nneed\tO\tneed\tO\nscript\tO\tscript\tO\njust\tO\tjust\tO\nbasic\tO\tbasic\tO\nshell\tB-Application\tshell\tO\ncommand\tO\tcommand\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12214665\tO\t12214665\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12214665/\tO\thttps://stackoverflow.com/questions/12214665/\tO\n\t\n\t\nSometimes\tO\tSometimes\tO\n,\tO\t,\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\narc\tB-Application\tarc\tO\nwas\tO\twas\tO\nintroduced\tO\tintroduced\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n@property\tB-Code_Block\t@property\tO\ndeclaration\tO\tdeclaration\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\njust\tO\tjust\tO\niVar\tB-Code_Block\tiVar\tO\nlike\tO\tlike\tO\nfollow\tO\tfollow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1156\tI-Code_Block\tQ_1156\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\nARC\tB-Application\tARC\tO\nif\tO\tif\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n@property\tB-Code_Block\t@property\tB-Code_Block\ndeclaration\tO\tdeclaration\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12214665\tO\t12214665\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12214665/\tO\thttps://stackoverflow.com/questions/12214665/\tO\n\t\n\t\nDeclare\tO\tDeclare\tO\nstr\tB-Variable_Name\tstr\tO\nin\tO\tin\tO\n.h\tB-File_Type\t.h\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1590\tI-Code_Block\tA_1590\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsynthesize\tO\tsynthesize\tO\nthis\tO\tthis\tO\nvariable\tO\tvariable\tO\nin\tO\tin\tO\n.m\tB-File_Type\t.m\tO\nfile\tO\tfile\tO\nlike\tO\tlike\tO\n@sythesize\tB-Code_Block\t@sythesize\tB-Code_Block\nstr\tI-Code_Block\tstr\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nself.str\tB-Variable_Name\tself.str\tB-Code_Block\nfor\tO\tfor\tO\nassigning\tO\tassigning\tO\nor\tO\tor\tO\ngetting\tO\tgetting\tO\nstr\tB-Variable_Name\tstr\tB-Code_Block\n.\tO\t.\tI-Code_Block\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\nread\tO\tread\tO\nthis\tO\tthis\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12214665\tO\t12214665\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12214665/\tO\thttps://stackoverflow.com/questions/12214665/\tO\n\t\n\t\nARC\tB-Application\tARC\tO\njust\tO\tjust\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1589\tI-Code_Block\tA_1589\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n..\tO\t..\tO\n.\tO\t.\tO\nand\tO\tand\tO\nno\tO\tno\tO\ndealloc\tB-Library_Function\tdealloc\tO\n:)\tO\t:)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21934347\tO\t21934347\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21934347/\tO\thttps://stackoverflow.com/questions/21934347/\tO\n\t\n\t\nFrom\tO\tFrom\tO\npost\tO\tpost\tO\nWPF\tB-Library\tWPF\tO\n:\tO\t:\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nprogrammatically\tO\tprogrammatically\tO\nremove\tO\tremove\tO\nfocus\tO\tfocus\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nTextBox\tB-Library_Class\tTextBox\tO\n,\tO\t,\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nTextBox\tB-Library_Class\tTextBox\tB-Code_Block\n's\tO\t's\tO\nfocus\tO\tfocus\tO\nback\tO\tback\tO\nto\tO\tto\tO\nits\tO\tits\tO\nparent\tO\tparent\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2370\tI-Code_Block\tQ_2370\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngeneralize\tO\tgeneralize\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\ntemplate\tO\ttemplate\tO\nfunctions\tO\tfunctions\tO\n)\tO\t)\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nalso\tO\talso\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nother\tO\tother\tO\nitems\tO\titems\tO\nlike\tO\tlike\tO\nComboBox\tB-Library_Class\tComboBox\tB-Code_Block\n,\tO\t,\tO\nCanvas\tB-Library_Class\tCanvas\tB-Code_Block\n,\tO\t,\tO\nImage\tB-Library_Class\tImage\tB-Code_Block\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21934347\tO\t21934347\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21934347/\tO\thttps://stackoverflow.com/questions/21934347/\tO\n\t\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\npossibility\tO\tpossibility\tO\n,\tO\t,\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nimplement\tO\timplement\tO\nattached\tO\tattached\tB-Code_Block\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nLogic\tO\tLogic\tO\nat\tO\tat\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\na\tO\ta\tO\nfocus\tO\tfocus\tO\nmust\tO\tmust\tO\nfit\tO\tfit\tO\ninto\tO\tinto\tO\nDependencyPropertyChangedEvent\tB-Library_Class\tDependencyPropertyChangedEvent\tB-Code_Block\nhandler\tO\thandler\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n:\tO\t:\tO\n\t\nXAML\tB-Language\tXAML\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2972\tI-Code_Block\tA_2972\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCode-behind\tO\tCode-behind\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2973\tI-Code_Block\tA_2973\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21934347\tO\t21934347\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21934347/\tO\thttps://stackoverflow.com/questions/21934347/\tO\n\t\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nrelatively\tO\trelatively\tO\nstraightforward\tO\tstraightforward\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2974\tI-Code_Block\tA_2974\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nbecause\tO\tbecause\tO\nall\tO\tall\tO\ncontrols\tO\tcontrols\tO\ninherit\tO\tinherit\tO\nfrom\tO\tfrom\tO\nFrameworkElement\tB-Library_Class\tFrameworkElement\tO\nwhich\tO\twhich\tO\ninherits\tO\tinherits\tO\nfrom\tO\tfrom\tO\nDependencyObject\tB-Library_Class\tDependencyObject\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nctrl\tB-Keyboard_IP\tctrl\tB-Code_Block\nto\tO\tto\tO\nany\tO\tany\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\ncontrol\tO\tcontrol\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n:\tO\t:\tO\nComboBox\tB-Library_Class\tComboBox\tB-Code_Block\n,\tO\t,\tO\nTextBox\tB-Library_Class\tTextBox\tB-Code_Block\n,\tO\t,\tO\nButton\tB-Library_Class\tButton\tB-Code_Block\n,\tO\t,\tO\nCanvas\tB-Library_Class\tCanvas\tB-Code_Block\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41370656\tO\t41370656\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41370656/\tO\thttps://stackoverflow.com/questions/41370656/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5248\tI-Code_Block\tQ_5248\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhenever\tO\tWhenever\tO\nI\tO\tI\tO\npress\tO\tpress\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nappear\tO\tappear\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41370656\tO\t41370656\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41370656/\tO\thttps://stackoverflow.com/questions/41370656/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5929\tI-Code_Block\tA_5929\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nimages\tB-User_Interface_Element\timages\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nfolder\tO\tfolder\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndirectory\tO\tdirectory\tO\nas\tO\tas\tO\nyour\tO\tyour\tO\nHTML\tB-File_Type\tHTML\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16013460\tO\t16013460\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16013460/\tO\thttps://stackoverflow.com/questions/16013460/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nconfiguration\tB-HTML_XML_Tag\tconfiguration\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nread\tO\tread\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nvalue\tO\tvalue\tO\nif\tO\tif\tO\nI\tO\tI\tO\nchoose\tO\tchoose\tO\nproduct\tO\tproduct\tO\nor\tO\tor\tO\npreview\tO\tpreview\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1577\tI-Code_Block\tQ_1577\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nread\tO\tread\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ndebugging\tO\tdebugging\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16013460\tO\t16013460\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16013460/\tO\thttps://stackoverflow.com/questions/16013460/\tO\n\t\n\t\nIn\tO\tIn\tO\nC#\tB-Language\tC#\tO\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nLinq\tB-Library\tLinq\tO\nto\tO\tto\tO\nXML\tB-Language\tXML\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\n.net\tB-Library\t.net\tO\nframework\tO\tframework\tO\n(\tO\t(\tO\n3.5\tB-Version\t3.5\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nXML\tB-Language\tXML\tO\n,\tO\t,\tO\nand\tO\tand\tO\nto\tO\tto\tO\nread\tO\tread\tO\nevery\tO\tevery\tO\nnode\tO\tnode\tO\nand\tO\tand\tO\nattribute\tO\tattribute\tO\nof\tO\tof\tO\nit\tO\tit\tO\neasily\tO\teasily\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16013460\tO\t16013460\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16013460/\tO\thttps://stackoverflow.com/questions/16013460/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nquite\tO\tquite\tO\neasy\tO\teasy\tO\nusing\tO\tusing\tO\nLINQ\tB-Library\tLINQ\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2075\tI-Code_Block\tA_2075\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45981707\tO\t45981707\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45981707/\tO\thttps://stackoverflow.com/questions/45981707/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmaven\tB-Application\tmaven\tO\ninstalled\tO\tinstalled\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\nwell\tO\twell\tO\nbefore\tO\tbefore\tO\nbut\tO\tbut\tO\nnow\tO\tnow\tO\nMaven\tB-Application\tMaven\tO\nclean\tO\tclean\tO\nstop/stuck\tO\tstop/stuck\tO\nat\tO\tat\tO\ncertain\tO\tcertain\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nrestarting\tO\trestarting\tO\neclipse\tB-Application\teclipse\tO\nbut\tO\tbut\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nEclipse\tB-Application\tEclipse\tO\nVersion\tO\tVersion\tO\n:\tO\t:\tO\nLuna\tB-Version\tLuna\tO\nService\tI-Version\tService\tO\nRelease\tI-Version\tRelease\tO\n2\tI-Version\t2\tO\n(\tI-Version\t(\tO\n4.4.2\tI-Version\t4.4.2\tO\n)\tI-Version\t)\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6031\tI-Code_Block\tQ_6031\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45981707\tO\t45981707\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45981707/\tO\thttps://stackoverflow.com/questions/45981707/\tO\n\t\n\t\nDeleting\tO\tDeleting\tO\neclipse\tB-Application\teclipse\tO\nlocal\tO\tlocal\tO\nhistory\tO\thistory\tO\n,\tO\t,\tO\nindexes\tO\tindexes\tO\nand\tO\tand\tO\ntemp\tO\ttemp\tO\nfiles\tO\tfiles\tO\nsolved\tO\tsolved\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20007302\tO\t20007302\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20007302/\tO\thttps://stackoverflow.com/questions/20007302/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\npersistent\tO\tpersistent\tO\nfooters/headers\tB-User_Interface_Element\tfooters/headers\tO\nin\tO\tin\tO\na\tO\ta\tO\njqm\tB-Library\tjqm\tO\napp\tO\tapp\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nwork\tO\twork\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ntapping\tO\ttapping\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\"\tB-Value\t\"\tO\nwhite\tI-Value\twhite\tO\nspace\tI-Value\tspace\tO\n\"\tI-Value\t\"\tO\nanywhere\tO\tanywhere\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\n[\tO\t[\tO\ndata-role=\"content\"\tB-Code_Block\tdata-role=\"content\"\tO\n]\tO\t]\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nheader\tB-User_Interface_Element\theader\tO\nand\tO\tand\tO\nfooter\tB-User_Interface_Element\tfooter\tO\nscroll\tO\tscroll\tO\nout\tO\tout\tO\nof\tO\tof\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nTapping\tO\tTapping\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nwhere\tO\twhere\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nlinks\tO\tlinks\tO\nor\tO\tor\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nagain\tO\tagain\tO\nslides\tO\tslides\tO\nthe\tO\tthe\tO\nheader\tB-User_Interface_Element\theader\tO\nand\tO\tand\tO\nfooter\tB-User_Interface_Element\tfooter\tO\nback\tO\tback\tO\ninto\tO\tinto\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nprototype\tO\tprototype\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\non\tO\ton\tO\n:\tO\t:\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nappropriate\tO\tappropriate\tO\nfor\tO\tfor\tO\npages\tB-User_Interface_Element\tpages\tO\nwhere\tO\twhere\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlong\tO\tlong\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nof\tO\tof\tO\ntext\tO\ttext\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nget\tO\tget\tO\nmore\tO\tmore\tO\nscreen\tO\tscreen\tO\nreal\tO\treal\tO\nestate\tO\testate\tO\nfor\tO\tfor\tO\nreading\tO\treading\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nnice\tO\tnice\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nexpect\tO\texpect\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmap\tB-User_Interface_Element\tmap\tO\npage\tI-User_Interface_Element\tpage\tO\n,\tO\t,\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nclunky\tO\tclunky\tO\n-\tO\t-\tO\nnew\tO\tnew\tO\nusers\tO\tusers\tO\nmay\tO\tmay\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nbug\tO\tbug\tO\n-\tO\t-\tO\n-\tO\t-\tO\nespecially\tO\tespecially\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\noff\tO\toff\tO\nthe\tO\tthe\tO\nmap\tB-User_Interface_Element\tmap\tO\npage\tI-User_Interface_Element\tpage\tO\nor\tO\tor\tO\nanother\tO\tanother\tO\npage\tB-User_Interface_Element\tpage\tO\nwith\tO\twith\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nviewing\tO\tviewing\tO\na\tO\ta\tO\npage\tB-User_Interface_Element\tpage\tO\nwith\tO\twith\tO\ncontent\tO\tcontent\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nshorter\tO\tshorter\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\nlength\tO\tlength\tO\non\tO\ton\tO\na\tO\ta\tO\ndesktop\tB-Device\tdesktop\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfooter\tB-User_Interface_Element\tfooter\tO\nactually\tO\tactually\tO\nclimbs\tO\tclimbs\tO\nup\tO\tup\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nexpect\tO\texpect\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\ndata-position\tB-Code_Block\tdata-position\tO\n=\tI-Code_Block\t=\tO\n\"\tI-Code_Block\t\"\tO\nfixed\tI-Code_Block\tfixed\tO\n\"\tI-Code_Block\t\"\tO\nreally\tO\treally\tO\nwork\tO\twork\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nexpect\tO\texpect\tO\nit\tO\tit\tO\nto\tO\tto\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20007302\tO\t20007302\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20007302/\tO\thttps://stackoverflow.com/questions/20007302/\tO\n\t\n\t\nTry\tO\tTry\tO\napplying\tO\tapplying\tO\nthe\tO\tthe\tO\ndata-tap-toggle\tB-Code_Block\tdata-tap-toggle\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nfalse\tI-Code_Block\tfalse\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nattribute\tO\tattribute\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nheader\tB-User_Interface_Element\theader\tO\nand\tO\tand\tO\nfooter\tB-User_Interface_Element\tfooter\tO\n,\tO\t,\tO\nor\tO\tor\tO\nin\tO\tin\tO\njavascript\tB-Language\tjavascript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2674\tI-Code_Block\tA_2674\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nAPI\tB-Library\tAPI\tO\ndocumentation\tO\tdocumentation\tO\n:\tO\t:\tO\nhttp://api.jquerymobile.com/fixedtoolbar/#option-tapToggle\tO\thttp://api.jquerymobile.com/fixedtoolbar/#option-tapToggle\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9068830\tO\t9068830\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9068830/\tO\thttps://stackoverflow.com/questions/9068830/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nlooking\tO\tlooking\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\nof\tO\tof\tO\na\tO\ta\tO\ncontrol\tB-Library_Class\tcontrol\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nbasically\tO\tbasically\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\npart\tO\tpart\tO\nof\tO\tof\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\nstyle\tO\tstyle\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nstyle\tO\tstyle\tO\nof\tO\tof\tO\na\tO\ta\tO\ncontrol\tB-Library_Class\tcontrol\tO\nis\tO\tis\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nam\tO\tam\tO\nwanting\tO\twanting\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nheaders\tO\theaders\tO\nin\tO\tin\tO\na\tO\ta\tO\nDataGrid\tB-Library_Class\tDataGrid\tO\ngo\tO\tgo\tO\nblue\tO\tblue\tO\non\tO\ton\tO\nmouse\tB-Device\tmouse\tO\nover\tO\tover\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nrow\tB-User_Interface_Element\trow\tO\nheaders\tO\theaders\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9068830\tO\t9068830\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9068830/\tO\thttps://stackoverflow.com/questions/9068830/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nsome\tO\tsome\tO\ntemplates\tO\ttemplates\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\nclose\tO\tclose\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndefaults\tO\tdefaults\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nMSDN\tB-Website\tMSDN\tO\nsite\tO\tsite\tO\n\t\nAnother\tO\tAnother\tO\nalternative\tO\talternative\tO\nis\tO\tis\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nExpression\tB-Application\tExpression\tO\nBlend\tI-Application\tBlend\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nstyle\tO\tstyle\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nBlend\tB-Application\tBlend\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nfree\tO\tfree\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9068830\tO\t9068830\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9068830/\tO\thttps://stackoverflow.com/questions/9068830/\tO\n\t\n\t\nContrary\tO\tContrary\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nRachel\tB-User_Name\tRachel\tO\nsays\tO\tsays\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nshe\tO\tshe\tO\nprovides\tO\tprovides\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nprovide\tO\tprovide\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\ntemplates\tO\ttemplates\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\nusing\tO\tusing\tO\nSystem.Windows.Markup.XamlWriter.Save(myObject.Template)\tB-Library_Function\tSystem.Windows.Markup.XamlWriter.Save(myObject.Template)\tB-Code_Block\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\ntemplates\tO\ttemplates\tO\nare\tO\tare\tO\ncompletely\tO\tcompletely\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nwhat\tO\twhat\tO\nthat\tO\tthat\tO\nsite\tO\tsite\tO\nshows\tO\tshows\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47183765\tO\t47183765\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47183765/\tO\thttps://stackoverflow.com/questions/47183765/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nComboBox\tB-Library_Class\tComboBox\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndatasource\tB-Library_Variable\tdatasource\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nDataTable\tB-Library_Class\tDataTable\tO\n(\tO\t(\tO\nDataView\tB-Library_Class\tDataView\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nsource\tO\tsource\tO\nreturn\tO\treturn\tO\n5\tO\t5\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nComboBox\tB-Library_Class\tComboBox\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\none\tO\tone\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\n5\tO\t5\tO\nitems\tO\titems\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nanother\tO\tanother\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nmy\tO\tmy\tO\ncombobox\tB-Library_Class\tcombobox\tO\nvalues\tO\tvalues\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6260\tI-Code_Block\tQ_6260\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nComboBox.SelectedValue\tB-Library_Variable\tComboBox.SelectedValue\tO\nis\tO\tis\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\ndatabase\tO\tdatabase\tO\nby\tO\tby\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6261\tI-Code_Block\tQ_6261\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nat\tO\tat\tO\nComboBox.SelectedValue\tB-Library_Variable\tComboBox.SelectedValue\tB-Code_Block\n..\tO\t..\tO\n.\tO\t.\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nSelect\tO\tSelect\tO\nanother\tO\tanother\tO\nvalue\tO\tvalue\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nreturned\tO\treturned\tO\nlist\tB-Data_Structure\tlist\tO\nfrom\tO\tfrom\tO\nDT\tB-Library_Class\tDT\tO\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47183765\tO\t47183765\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47183765/\tO\thttps://stackoverflow.com/questions/47183765/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbind\tO\tbind\tO\nboth\tO\tboth\tO\nSelectedValue\tB-Library_Variable\tSelectedValue\tB-Code_Block\nand\tO\tand\tO\nText\tB-Library_Variable\tText\tB-Code_Block\nto\tO\tto\tO\ncontractsBindingSource.InvoicingIBAN\tB-Library_Variable\tcontractsBindingSource.InvoicingIBAN\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6880\tI-Code_Block\tA_6880\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEnsure\tO\tEnsure\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nComboBox\tB-Library_Class\tComboBox\tO\nallows\tO\tallows\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nbankAccountCombo.DropDownStyle\tB-Code_Block\tbankAccountCombo.DropDownStyle\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nComboBoxStyle.DropDown\tI-Code_Block\tComboBoxStyle.DropDown\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42927658\tO\t42927658\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42927658/\tO\thttps://stackoverflow.com/questions/42927658/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\nstarting\tO\tstarting\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nAngular\tB-Library\tAngular\tO\n2\tB-Version\t2\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nMaterial\tB-Application\tMaterial\tO\n2\tB-Version\t2\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nresponsive\tO\tresponsive\tO\neffect\tO\teffect\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nhide\tO\thide\tO\na\tO\ta\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nwhen\tO\twhen\tO\nmy\tO\tmy\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nis\tO\tis\tO\n960\tB-Value\t960\tO\nor\tO\tor\tO\nlower\tO\tlower\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nMaterial\tB-Application\tMaterial\tO\n2\tB-Version\t2\tO\nhas\tO\thas\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndetect\tO\tdetect\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nsize\tO\tsize\tO\nfor\tO\tfor\tO\nsizing\tO\tsizing\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5489\tI-Code_Block\tQ_5489\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\na\tO\ta\tO\nway\tO\tway\tO\nin\tO\tin\tO\nAngular\tB-Library\tAngular\tO\n2\tB-Version\t2\tO\nand\tO\tand\tO\nMaterial\tB-Application\tMaterial\tO\n2\tB-Version\t2\tO\nto\tO\tto\tO\ndetect\tO\tdetect\tO\nand\tO\tand\tO\nhid\tO\thid\tO\na\tO\ta\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42927658\tO\t42927658\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42927658/\tO\thttps://stackoverflow.com/questions/42927658/\tO\n\t\n\t\nTake\tO\tTake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nfxShow\tB-HTML_XML_Tag\tfxShow\tB-Code_Block\nand\tO\tand\tO\nfxhide\tB-HTML_XML_Tag\tfxhide\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6197\tI-Code_Block\tA_6197\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43831708\tO\t43831708\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43831708/\tO\thttps://stackoverflow.com/questions/43831708/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsort\tO\tsort\tO\na\tO\ta\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\nby\tO\tby\tO\nlines\tO\tlines\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\t\nfile1\tB-File_Name\tfile1\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5652\tI-Code_Block\tQ_5652\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nfile2\tB-File_Name\tfile2\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5653\tI-Code_Block\tQ_5653\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5654\tI-Code_Block\tQ_5654\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nmerged\tO\tmerged\tO\nfile1\tB-File_Name\tfile1\tO\nand\tO\tand\tO\nfile2\tB-File_Name\tfile2\tO\nin\tO\tin\tO\na\tO\ta\tO\nfile3\tB-File_Name\tfile3\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nideas\tO\tideas\tO\nof\tO\tof\tO\nhow\tO\thow\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nsort\tO\tsort\tO\nfile\tB-File_Name\tfile\tO\n3\tI-File_Name\t3\tO\nby\tO\tby\tO\nlines\tO\tlines\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nreally\tO\treally\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthem\tO\tthem\tO\nhappen\tO\thappen\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nlonger\tO\tlonger\tO\ntext\tO\ttext\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\n,\tO\t,\tO\nfind\tO\tfind\tO\na\tO\ta\tO\n\\n\tB-Value\t\\n\tO\nand\tO\tand\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nup\tO\tup\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\n\\n\tB-Value\t\\n\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nput\tO\tput\tO\nin\tO\tin\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsort\tO\tsort\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nput\tO\tput\tO\neach\tO\teach\tO\nelement\tO\telement\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsorted\tO\tsorted\tO\narray\tB-Data_Structure\tarray\tO\non\tO\ton\tO\na\tO\ta\tO\nline\tO\tline\tO\nform\tO\tform\tO\nfile3\tB-File_Name\tfile3\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nfile3\tB-File_Name\tfile3\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nsomehow\tO\tsomehow\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\nalphabitically\tO\talphabitically\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nbubblesort\tB-Algorithm\tbubblesort\tO\n.\tO\t.\tO\n\t\nedit:managed\tO\tedit:managed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nneeded\tO\tneeded\tO\nsome\tO\tsome\tO\ndirection\tO\tdirection\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\neveryone\tO\teveryone\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43831708\tO\t43831708\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43831708/\tO\thttps://stackoverflow.com/questions/43831708/\tO\n\t\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nverbal\tO\tverbal\tO\nprocedure\tO\tprocedure\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nAllocate\tO\tAllocate\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\npointers\tB-Data_Type\tpointers\tO\nto\tO\tto\tO\nchars\tB-Data_Type\tchars\tO\n\t\nRead\tO\tRead\tO\nall\tO\tall\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nAllocate\tO\tAllocate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nstring\tB-Data_Type\tstring\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nline\tO\tline\tO\nand\tO\tand\tO\nput\tO\tput\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nis\tO\tis\tO\ntoo\tO\ttoo\tO\nsmall\tO\tsmall\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nrealloc\tB-Library_Function\trealloc\tB-Code_Block\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nlarger\tO\tlarger\tO\n.\tO\t.\tO\n\t\nRead\tO\tRead\tO\nabout\tO\tabout\tO\nrealloc\tB-Library_Function\trealloc\tB-Code_Block\nto\tO\tto\tO\navoid\tO\tavoid\tO\ncommon\tO\tcommon\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nread\tO\tread\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nbubble\tB-Algorithm\tbubble\tO\nsort\tI-Algorithm\tsort\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\n's\tO\t's\tO\nqsort\tB-Library_Function\tqsort\tB-Code_Block\nto\tO\tto\tO\nsort\tO\tsort\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nRead\tO\tRead\tO\nabout\tO\tabout\tO\nqsort\tB-Library_Function\tqsort\tB-Code_Block\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nsorted\tO\tsorted\tO\n,\tO\t,\tO\nre-write\tO\tre-write\tO\nfile3\tB-File_Name\tfile3\tB-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nCoding\tO\tCoding\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nnice\tO\tnice\tO\nexcercise\tO\texcercise\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nleave\tO\tleave\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43831708\tO\t43831708\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43831708/\tO\thttps://stackoverflow.com/questions/43831708/\tO\n\t\n\t\nEasy\tO\tEasy\tO\nway\tO\tway\tO\n:\tO\t:\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ntext\tB-File_Type\ttext\tO\nfiles\tO\tfiles\tO\ninto\tO\tinto\tO\none\tO\tone\tO\narray\tB-Data_Structure\tarray\tO\n(\tO\t(\tO\nfirst\tO\tfirst\tO\nline\tO\tline\tO\nof\tO\tof\tO\nsecond\tO\tsecond\tO\nfile\tO\tfile\tO\nfollowing\tO\tfollowing\tO\nlast\tO\tlast\tO\nline\tO\tline\tO\nof\tO\tof\tO\nfirst\tO\tfirst\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nhint\tO\thint\tO\n:\tO\t:\tO\nfgets\tB-Library_Function\tfgets\tB-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nsort\tO\tsort\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n(\tO\t(\tO\nhint\tO\thint\tO\n:\tO\t:\tO\nqsort\tB-Library_Function\tqsort\tB-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45533583\tO\t45533583\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45533583/\tO\thttps://stackoverflow.com/questions/45533583/\tO\n\t\n\t\nThe\tO\tThe\tO\nformat\tO\tformat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ntext\tB-User_Interface_Element\ttext\tO\nboxes\tI-User_Interface_Element\tboxes\tO\nare\tO\tare\tO\ncomma\tO\tcomma\tO\ndelimited\tO\tdelimited\tO\nlists\tB-Data_Structure\tlists\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\na\tO\ta\tO\nline\tO\tline\tO\nbreak\tO\tbreak\tO\nin\tO\tin\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ncomma\tO\tcomma\tO\ndelimited\tO\tdelimited\tO\nlists\tB-Data_Structure\tlists\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5963\tI-Code_Block\tQ_5963\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nlimited\tO\tlimited\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nValidationExpression\tB-Library_Variable\tValidationExpression\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5964\tI-Code_Block\tQ_5964\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nexpression\tO\texpression\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nable\tO\table\tO\nto\tO\tto\tO\nenter\tO\tenter\tO\none\tB-Value\tone\tO\nrow\tB-Data_Structure\trow\tO\nof\tO\tof\tO\ncomma\tO\tcomma\tO\ndelimited\tO\tdelimited\tO\nnumbers\tO\tnumbers\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nproceed\tO\tproceed\tO\nto\tO\tto\tO\naccept\tO\taccept\tO\nmultiple\tO\tmultiple\tO\nrows\tB-Data_Structure\trows\tO\nby\tO\tby\tO\naccepting\tO\taccepting\tO\nline\tO\tline\tO\nbreaks\tO\tbreaks\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45533583\tO\t45533583\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45533583/\tO\thttps://stackoverflow.com/questions/45533583/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nrecommend\tO\trecommend\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ngroups\tO\tgroups\tO\nand\tO\tand\tO\nrepeat\tO\trepeat\tO\nthem\tO\tthem\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6610\tI-Code_Block\tA_6610\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nis\tO\tis\tO\nsymmetric\tO\tsymmetric\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\nthen\tO\tthen\tO\nregex\tB-Library_Class\tregex\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nit\tO\tit\tO\nout\tO\tout\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://regex101.com/r/GqtOuQ/2/\tO\thttps://regex101.com/r/GqtOuQ/2/\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nmore\tO\tmore\tO\nuser\tO\tuser\tO\nfriendly\tO\tfriendly\tO\nit\tO\tit\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\nhorizontal\tO\thorizontal\tO\nspaces\tO\tspaces\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nwants\tO\twants\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nand\tO\tand\tO\ncomma\tO\tcomma\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\nhe\tO\the\tO\nregex\tB-Library_Class\tregex\tO\ngroup\tO\tgroup\tO\n\\h\tB-Code_Block\t\\h\tB-Code_Block\nwhich\tO\twhich\tO\nallows\tO\tallows\tO\nevery\tO\tevery\tO\nwhitespace\tO\twhitespace\tO\nexcept\tO\texcept\tO\n\\n\tB-Code_Block\t\\n\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nregex\tB-Library_Class\tregex\tO\ncode\tO\tcode\tO\nlooks\tO\tlooks\tO\nnow\tO\tnow\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nmore\tO\tmore\tO\nmessy\tO\tmessy\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6611\tI-Code_Block\tA_6611\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCheck\tO\tCheck\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://regex101.com/r/GqtOuQ/3\tO\thttps://regex101.com/r/GqtOuQ/3\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\n.NET\tB-Library\t.NET\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6612\tI-Code_Block\tA_6612\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48828782\tO\t48828782\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48828782/\tO\thttps://stackoverflow.com/questions/48828782/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsecuview\tB-Organization\tsecuview\tO\ndvr\tB-Device\tdvr\tO\nconnected\tO\tconnected\tO\nto\tO\tto\tO\nmikrotik\tB-Device\tmikrotik\tO\n,\tO\t,\tO\ni\tO\ti\tO\nsuccessfully\tO\tsuccessfully\tO\nconfigured\tO\tconfigured\tO\na\tO\ta\tO\nport\tB-Device\tport\tO\nforwarding\tO\tforwarding\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndvr\tB-Device\tdvr\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nusing\tO\tusing\tO\na\tO\ta\tO\npublic\tO\tpublic\tO\nip\tO\tip\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmikrotik\tB-Device\tmikrotik\tO\nand\tO\tand\tO\nprivate\tO\tprivate\tO\nip\tO\tip\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndvr\tB-Device\tdvr\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\n,\tO\t,\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nsuccessfully\tO\tsuccessfully\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndvr\tB-Device\tdvr\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nlocal\tO\tlocal\tO\nnetwork\tO\tnetwork\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nprivate\tO\tprivate\tO\nip\tO\tip\tO\ni.e\tB-Value\ti.e\tO\n192.168.100.2\tI-Value\t192.168.100.2\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ncannot\tO\tcannot\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\noutside\tO\toutside\tO\nmy\tO\tmy\tO\nnetwork\tO\tnetwork\tO\n,\tO\t,\tO\ni\tO\ti\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\npage\tO\tpage\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndvr\tB-Device\tdvr\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnone\tO\tnone\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncredentials\tO\tcredentials\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\nnetwork\tO\tnetwork\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nconfig\tO\tconfig\tO\n\t\naction\tB-Code_Block\taction\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\ndst-nat\tI-Code_Block\tdst-nat\tI-Code_Block\nchain\tI-Code_Block\tchain\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\ndstnat\tI-Code_Block\tdstnat\tI-Code_Block\ndisabled\tI-Code_Block\tdisabled\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nno\tI-Code_Block\tno\tI-Code_Block\ndst-port\tI-Code_Block\tdst-port\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n80\tI-Code_Block\t80\tI-Code_Block\nDst\tI-Code_Block\tDst\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\nAddress\tI-Code_Block\tAddress\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n41.78.x.x\tI-Code_Block\t41.78.x.x\tI-Code_Block\nprotocol\tI-Code_Block\tprotocol\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\ntcp\tI-Code_Block\ttcp\tI-Code_Block\nto-addresses\tI-Code_Block\tto-addresses\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n192.168.100.2\tI-Code_Block\t192.168.100.2\tI-Code_Block\nto-ports\tI-Code_Block\tto-ports\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n80\tI-Code_Block\t80\tI-Code_Block\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nattached\tO\tattached\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\npage\tB-User_Interface_Element\tpage\tO\nfrom\tO\tfrom\tO\noutside\tO\toutside\tO\nmy\tO\tmy\tO\nnetwork\tO\tnetwork\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsomething\tO\tsomething\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47620507\tO\t47620507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47620507/\tO\thttps://stackoverflow.com/questions/47620507/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nable\tO\table\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nkinect\tB-Application\tkinect\tO\nfusion\tI-Application\tfusion\tO\nas\tO\tas\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nNewcombe\tB-User_Name\tNewcombe\tO\nwith\tO\twith\tO\nKinect\tB-Device\tKinect\tO\nv2.0\tB-Version\tv2.0\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nthat\tO\tthat\tO\nprinciple\tO\tprinciple\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nKinect\tB-Device\tKinect\tO\n1\tB-Version\t1\tO\nis\tO\tis\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nprinciple\tO\tprinciple\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nKinect\tB-Device\tKinect\tO\n2.0\tB-Version\t2.0\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nfound\tO\tfound\tO\none\tO\tone\tO\nfamous\tO\tfamous\tO\nopen\tO\topen\tO\nsource\tO\tsource\tO\nlibrary\tO\tlibrary\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\npcl\tB-Library\tpcl\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nspecific\tO\tspecific\tO\nfor\tO\tfor\tO\nkinect\tB-Device\tkinect\tO\n1.0\tB-Version\t1.0\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nopensource\tO\topensource\tO\nlibrary\tO\tlibrary\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nKinect\tB-Device\tKinect\tO\n2.0\tB-Version\t2.0\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nrefactor\tO\trefactor\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nopen\tO\topen\tO\nsource\tO\tsource\tO\ncodes\tO\tcodes\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\n2.0\tB-Version\t2.0\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nam\tO\tam\tO\nrefactoring\tO\trefactoring\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\n2.0\tB-Version\t2.0\tO\nthen\tO\tthen\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\n,\tO\t,\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nresolution\tO\tresolution\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncamera\tB-Device\tcamera\tO\noutputs\tO\toutputs\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ncompensate\tO\tcompensate\tO\nfor\tO\tfor\tO\nextra\tO\textra\tO\nnoisy\tO\tnoisy\tO\nresult\tO\tresult\tO\ngiven\tO\tgiven\tO\nby\tO\tby\tO\nKinect\tB-Device\tKinect\tO\n2.0\tB-Version\t2.0\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\nincreasing\tO\tincreasing\tO\nthe\tO\tthe\tO\nsmoothing\tO\tsmoothing\tO\nin\tO\tin\tO\nbilateral\tO\tbilateral\tO\nfiltering\tO\tfiltering\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nextra\tO\textra\tO\ndistorted\tO\tdistorted\tO\nresults\tO\tresults\tO\ngiven\tO\tgiven\tO\nby\tO\tby\tO\nKinect\tB-Device\tKinect\tO\n2.0\tB-Version\t2.0\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nlooking\tO\tlooking\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nlibfreenect2\tB-Library\tlibfreenect2\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n:)\tO\t:)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26986623\tO\t26986623\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26986623/\tO\thttps://stackoverflow.com/questions/26986623/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nmechanize\tB-Library\tmechanize\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nafter\tO\tafter\tO\npage\tO\tpage\tO\nload\tO\tload\tO\n(\tO\t(\tO\nsome\tO\tsome\tO\nwebsites\tO\twebsites\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntimer\tO\ttimer\tO\nbefore\tO\tbefore\tO\nlinks\tO\tlinks\tO\nappear\tO\tappear\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nin\tO\tin\tO\ndownload\tO\tdownload\tO\npages\tO\tpages\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nlinks\tO\tlinks\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nloaded\tO\tloaded\tO\n,\tO\t,\tO\nclick\tO\tclick\tO\non\tO\ton\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nlink\tO\tlink\tO\n?\tO\t?\tO\n\t\nSince\tO\tSince\tO\nit\tO\tit\tO\n's\tO\t's\tO\nan\tO\tan\tO\nanchor\tB-HTML_XML_Tag\tanchor\tO\ntag\tO\ttag\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nsubmit\tO\tsubmit\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nwill\tO\twill\tO\nbrowser.submit()\tB-Library_Function\tbrowser.submit()\tO\nwork\tO\twork\tO\n(\tO\t(\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nerrors\tO\terrors\tO\nwhile\tO\twhile\tO\ndoing\tO\tdoing\tO\nthat\tO\tthat\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26986623\tO\t26986623\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26986623/\tO\thttps://stackoverflow.com/questions/26986623/\tO\n\t\n\t\nMechanize\tB-Library\tMechanize\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\noffer\tO\toffer\tO\njavascript\tB-Language\tjavascript\tO\nfunctionality\tO\tfunctionality\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nsee\tO\tsee\tO\ndynamic\tO\tdynamic\tO\ncontent\tO\tcontent\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ntimer\tO\ttimer\tO\nthat\tO\tthat\tO\nturns\tO\tturns\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nlink\tO\tlink\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nclicking\tO\tclicking\tO\non\tO\ton\tO\na\tO\ta\tO\nlink\tO\tlink\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncall\tO\tcall\tO\nclick_link\tB-Library_Function\tclick_link\tO\non\tO\ton\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nFinding\tO\tFinding\tB-Code_Block\nLinks\tO\tLinks\tI-Code_Block\nsection\tO\tsection\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nsuch\tO\tsuch\tO\nsites\tO\tsites\tO\n,\tO\t,\tO\na\tO\ta\tO\ngood\tO\tgood\tO\noption\tO\toption\tO\nis\tO\tis\tO\nPhantomJS\tB-Application\tPhantomJS\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nuses\tO\tuses\tO\nnodejs\tB-Application\tnodejs\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nruns\tO\truns\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nwebkit\tB-Application\twebkit\tO\nengine\tI-Application\tengine\tO\n,\tO\t,\tO\nallowing\tO\tallowing\tO\nyou\tO\tyou\tO\nparse\tO\tparse\tO\ndynamic\tO\tdynamic\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nheart\tO\theart\tO\nset\tO\tset\tO\non\tO\ton\tO\npython\tB-Language\tpython\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nSelenium\tB-Library\tSelenium\tO\nto\tO\tto\tO\nprogramatically\tO\tprogramatically\tO\ndrive\tO\tdrive\tO\na\tO\ta\tO\nreal\tO\treal\tO\nbrowser\tB-Application\tbrowser\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nyour\tO\tyour\tO\nbest\tO\tbest\tO\nbet\tO\tbet\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26986623\tO\t26986623\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26986623/\tO\thttps://stackoverflow.com/questions/26986623/\tO\n\t\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\n's\tO\t's\tO\nan\tO\tan\tO\nanchor\tB-HTML_XML_Tag\tanchor\tO\ntag\tO\ttag\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\njust\tO\tjust\tO\nGET/POST\tB-Library_Function\tGET/POST\tO\nwhatever\tO\twhatever\tO\nit\tO\tit\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntimer\tO\ttimer\tO\nbetween\tO\tbetween\tO\nlinks\tO\tlinks\tO\nappearing\tO\tappearing\tO\nis\tO\tis\tO\ngenerally\tO\tgenerally\tO\ndone\tO\tdone\tO\nin\tO\tin\tO\njavascript\tB-Language\tjavascript\tO\n-\tO\t-\tO\nsome\tO\tsome\tO\nsites\tO\tsites\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nscrape\tO\tscrape\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nusable\tO\tusable\tO\nwithout\tO\twithout\tO\njavascript\tB-Language\tjavascript\tO\n,\tO\t,\tO\nor\tO\tor\tO\nrequires\tO\trequires\tO\na\tO\ta\tO\ntoken\tO\ttoken\tO\ngenerated\tO\tgenerated\tO\nin\tO\tin\tO\njavascript\tB-Language\tjavascript\tO\nwith\tO\twith\tO\nclientside\tB-Application\tclientside\tO\nmath\tO\tmath\tO\n.\tO\t.\tO\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\neither\tO\teither\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\nwait\tO\twait\tO\ntime\tO\ttime\tO\nin\tO\tin\tO\nmsec/sec\tO\tmsec/sec\tO\nand\tO\tand\tO\ntime.sleep()\tB-Library_Function\ttime.sleep()\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nlong\tO\tlong\tO\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nexecute\tO\texecute\tO\njavascript\tB-Language\tjavascript\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39146807\tO\t39146807\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39146807/\tO\thttps://stackoverflow.com/questions/39146807/\tO\n\t\n\t\nGiven\tO\tGiven\tO\nadjacency\tO\tadjacency\tO\nrelation\tO\trelation\tO\nlike\tO\tlike\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nconstruct\tO\tconstruct\tO\na\tO\ta\tO\ngraph\tB-Data_Structure\tgraph\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\na\tO\ta\tO\neasier\tO\teasier\tO\nimplementation\tO\timplementation\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nunderstood\tO\tunderstood\tO\nby\tO\tby\tO\na\tO\ta\tO\nbeginner\tO\tbeginner\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nself\tO\tself\tO\nreferential\tO\treferential\tO\nstructures\tO\tstructures\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39146807\tO\t39146807\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39146807/\tO\thttps://stackoverflow.com/questions/39146807/\tO\n\t\n\t\nUse\tO\tUse\tO\nproper\tO\tproper\tO\nabstraction\tO\tabstraction\tO\nlevel\tO\tlevel\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrepresent\tO\trepresent\tO\neach\tO\teach\tO\nnode\tO\tnode\tO\nas\tO\tas\tO\nan\tO\tan\tO\nint\tB-Data_Type\tint\tO\nwith\tO\twith\tO\na\tO\ta\tO\nset\tB-Data_Structure\tset\tO\nof\tO\tof\tO\nneightbours\tO\tneightbours\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5675\tI-Code_Block\tA_5675\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39146807\tO\t39146807\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39146807/\tO\thttps://stackoverflow.com/questions/39146807/\tO\n\t\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nAdjacency\tO\tAdjacency\tO\nMatrix\tB-Data_Structure\tMatrix\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\npretty\tO\tpretty\tO\nsimple\tO\tsimple\tO\nand\tO\tand\tO\neasy\tO\teasy\tO\n.\tO\t.\tO\n\t\nAdjacency\tO\tAdjacency\tO\nmatrices\tB-Data_Structure\tmatrices\tO\nare\tO\tare\tO\nmatrices\tB-Data_Structure\tmatrices\tO\nwhich\tO\twhich\tO\ndefine\tO\tdefine\tO\nrelations\tO\trelations\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nvertices\tO\tvertices\tO\nof\tO\tof\tO\na\tO\ta\tO\ngraph\tB-Data_Structure\tgraph\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nedge\tO\tedge\tO\ngoing\tO\tgoing\tO\nfrom\tO\tfrom\tO\nvertex\tB-Variable_Name\tvertex\tO\n1\tB-Value\t1\tB-Code_Block\nto\tO\tto\tO\n2\tO\t2\tB-Code_Block\n,\tB-Value\t,\tO\nso\tO\tso\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\n1\tB-Value\t1\tB-Code_Block\nat\tO\tat\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\n[\tB-Value\t[\tB-Code_Block\n1\tI-Value\t1\tI-Code_Block\n]\tI-Value\t]\tI-Code_Block\n[\tB-Value\t[\tB-Code_Block\n2\tI-Value\t2\tI-Code_Block\n]\tI-Value\t]\tI-Code_Block\nof\tO\tof\tO\nadjacency\tO\tadjacency\tO\nmatrix\tB-Data_Structure\tmatrix\tO\n,\tO\t,\tO\nsimilar\tO\tsimilar\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nwith\tO\twith\tO\n[\tB-Value\t[\tB-Code_Block\n1\tI-Value\t1\tI-Code_Block\n]\tI-Value\t]\tI-Code_Block\n[\tB-Value\t[\tB-Code_Block\n3\tI-Value\t3\tI-Code_Block\n]\tI-Value\t]\tI-Code_Block\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nedge\tO\tedge\tO\ngoing\tO\tgoing\tO\nfrom\tO\tfrom\tO\n1\tB-Value\t1\tB-Code_Block\nto\tO\tto\tO\n5\tB-Value\t5\tB-Code_Block\n,\tO\t,\tO\nso\tO\tso\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\n0\tB-Value\t0\tB-Code_Block\nat\tO\tat\tO\nindex\tO\tindex\tO\n[\tB-Value\t[\tB-Code_Block\n1\tI-Value\t1\tI-Code_Block\n]\tI-Value\t]\tI-Code_Block\n[\tB-Value\t[\tB-Code_Block\n5\tI-Value\t5\tI-Code_Block\n]\tI-Value\t]\tI-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nAdjacency\tO\tAdjacency\tO\nList\tB-Data_Structure\tList\tO\n,\tO\t,\tO\nnow\tO\tnow\tO\ngo\tO\tgo\tO\nahead\tO\tahead\tO\nand\tO\tand\tO\ngoogle\tO\tgoogle\tO\nit\tO\tit\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nunderstanding\tO\tunderstanding\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nAdjacency\tO\tAdjacency\tO\nMatrices\tB-Data_Structure\tMatrices\tO\nand\tO\tand\tO\nAdjacency\tO\tAdjacency\tO\nLists\tB-Data_Structure\tLists\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncome\tO\tcome\tO\nback\tO\tback\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nreal\tO\treal\tO\nproblem\tO\tproblem\tO\nthen\tO\tthen\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nunderstanding\tO\tunderstanding\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\ngraph\tB-Data_Structure\tgraph\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nwrite\tO\twrite\tO\nsome\tO\tsome\tO\nexamples\tO\texamples\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nusing\tO\tusing\tO\nAdjacency\tO\tAdjacency\tO\nMatrix\tB-Data_Structure\tMatrix\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nallocate\tO\tallocate\tO\na\tO\ta\tO\n2D\tO\t2D\tO\narray\tB-Data_Structure\tarray\tO\nin\tO\tin\tO\nc++\tB-Language\tc++\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nadjacency\tO\tadjacency\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngraph\tB-Data_Structure\tgraph\tO\ncontaining\tO\tcontaining\tO\nn\tB-Variable_Name\tn\tB-Code_Block\nvertices\tO\tvertices\tO\n,\tO\t,\tO\nsimply\tO\tsimply\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\n2D\tO\t2D\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nsize\tO\tsize\tO\nn\tB-Variable_Name\tn\tB-Code_Block\nx\tO\tx\tI-Code_Block\nn\tB-Variable_Name\tn\tI-Code_Block\nand\tO\tand\tO\ninitialize\tO\tinitialize\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n0\tB-Value\t0\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5668\tI-Code_Block\tA_5668\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThere\tO\tThere\tO\nyou\tO\tyou\tO\ngo\tO\tgo\tO\n,\tO\t,\tO\ncall\tO\tcall\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\nyourself\tO\tyourself\tO\nan\tO\tan\tO\nAdjacency\tO\tAdjacency\tO\nMatrix\tB-Data_Structure\tMatrix\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5669\tI-Code_Block\tA_5669\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nwhatever\tO\twhatever\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\ngraph\tB-Variable_Name\tgraph\tO\n(\tO\t(\tO\nFor\tO\tFor\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nedges\tO\tedges\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nhave\tO\thave\tO\nedges\tO\tedges\tO\nin\tO\tin\tO\nit\tO\tit\tO\n,\tO\t,\tO\nsimply\tO\tsimply\tO\nplace\tO\tplace\tO\n1\tB-Value\t1\tB-Code_Block\nwherever\tO\twherever\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nput\tO\tput\tO\nan\tO\tan\tO\nedge\tO\tedge\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5670\tI-Code_Block\tA_5670\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nsimply\tO\tsimply\tO\ncall\tO\tcall\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\nedges\tO\tedges\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ngraph\tB-Variable_Name\tgraph\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\ngonna\tO\tgonna\tO\nput\tO\tput\tO\nsome\tO\tsome\tO\nedges\tO\tedges\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nshown\tO\tshown\tO\ngraph\tB-Variable_Name\tgraph\tO\nin\tO\tin\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5671\tI-Code_Block\tA_5671\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nwhatever\tO\twhatever\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\ngraph\tB-Variable_Name\tgraph\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nshould\tO\tshould\tO\nwe\tO\twe\tO\ncalculate\tO\tcalculate\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\noutgoing\tO\toutgoing\tO\nedges\tO\tedges\tO\nvertex\tB-Variable_Name\tvertex\tB-Code_Block\n1\tB-Value\t1\tI-Code_Block\nhas\tO\thas\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\nloop\tO\tloop\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nrow\tB-Data_Structure\trow\tO\n1\tB-Value\t1\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5672\tI-Code_Block\tA_5672\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nde-allocate\tO\tde-allocate\tO\nthe\tO\tthe\tO\nallocated\tO\tallocated\tO\nmemory\tO\tmemory\tO\nfor\tO\tfor\tO\nadjacency\tO\tadjacency\tO\ngraph\tB-Variable_Name\tgraph\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5673\tI-Code_Block\tA_5673\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\ni\tO\ti\tO\nthink\tO\tthink\tO\nby\tO\tby\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nhave\tO\thave\tO\nmuch\tO\tmuch\tO\nbetter\tO\tbetter\tO\nunderstanding\tO\tunderstanding\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nimplemented\tO\timplemented\tO\nthe\tO\tthe\tO\ngraph\tB-Data_Structure\tgraph\tO\nwith\tO\twith\tO\nusing\tO\tusing\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nfunctions\tO\tfunctions\tO\n,\tO\t,\tO\nand\tO\tand\tO\npassing\tO\tpassing\tO\nadjacency\tO\tadjacency\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\n(\tO\t(\tO\nmy\tO\tmy\tO\nbad\tO\tbad\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nstrongly\tO\tstrongly\tO\nrecommend\tO\trecommend\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nGraph\tB-Data_Structure\tGraph\tO\nin\tO\tin\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nhandles\tO\thandles\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nGraph\tB-Data_Structure\tGraph\tO\nstuff\tO\tstuff\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nadjacency\tO\tadjacency\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nto\tO\tto\tO\nit\tO\tit\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\nGraph\tB-Class_Name\tGraph\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\nimplemented\tO\timplemented\tO\nusing\tO\tusing\tO\nAdjacency\tO\tAdjacency\tO\nMatrix\tB-Data_Structure\tMatrix\tO\nor\tO\tor\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nmethod\tO\tmethod\tO\n(\tO\t(\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nimplementing\tO\timplementing\tO\nit\tO\tit\tO\n)\tO\t)\tO\n\t\nYou\tO\tYou\tO\nclass\tO\tclass\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5674\tI-Code_Block\tA_5674\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\ngo\tO\tgo\tO\nahead\tO\tahead\tO\nand\tO\tand\tO\nimplement\tO\timplement\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nwhatever\tO\twhatever\tO\nfunctions\tO\tfunctions\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44113411\tO\t44113411\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44113411/\tO\thttps://stackoverflow.com/questions/44113411/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexample\tO\texample\tO\nNative\tB-Library_Class\tNative\tO\naddon\tI-Library_Class\taddon\tO\nfor\tO\tfor\tO\nElectron\tB-Library\tElectron\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nkeep\tO\tkeep\tO\nrunning\tO\trunning\tO\ninto\tO\tinto\tO\nthis\tO\tthis\tO\nversion\tO\tversion\tO\nmiss\tO\tmiss\tO\nmatch\tO\tmatch\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n.nvmrc\tB-File_Type\t.nvmrc\tO\nfiles\tO\tfiles\tO\nfor\tO\tfor\tO\nboth\tO\tboth\tO\nmy\tO\tmy\tO\nelectron\tB-Library\telectron\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\naddon\tO\taddon\tO\nproject\tO\tproject\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\nnode\tB-Library\tnode\tO\n7.4.0\tB-Version\t7.4.0\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nElectron\tB-Library\tElectron\tO\n1.6.7\tB-Version\t1.6.7\tO\n\t\nNode\tB-Library\tNode\tO\n7.4.0\tB-Version\t7.4.0\tO\n\t\nNvm\tB-Application\tNvm\tO\n0.33.2\tB-Version\t0.33.2\tO\n\t\nNPM\tB-Application\tNPM\tO\n4.0.5\tB-Version\t4.0.5\tO\n\t\nThe\tO\tThe\tO\nError\tO\tError\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5715\tI-Code_Block\tQ_5715\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTried\tO\tTried\tO\nsolutions\tO\tsolutions\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\nTried\tO\tTried\tO\nusing\tO\tusing\tO\n./node_modules/.bin/electron\tB-Code_Block\t./node_modules/.bin/electron\tO\n-rebuild\tI-Code_Block\t-rebuild\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\nTried\tO\tTried\tO\nrebuilding\tO\trebuilding\tO\nmy\tO\tmy\tO\naddon\tO\taddon\tO\nnvm\tB-Application\tnvm\tO\nuse\tO\tuse\tO\n7.4.0\tB-Version\t7.4.0\tO\nnpm\tB-Application\tnpm\tO\nrebuild\tO\trebuild\tO\n\t\nStill\tO\tStill\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\npost\tO\tpost\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsolution\tO\tsolution\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43003720\tO\t43003720\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43003720/\tO\thttps://stackoverflow.com/questions/43003720/\tO\n\t\n\t\nBeginner\tO\tBeginner\tO\n's\tO\t's\tO\nQuestion\tO\tQuestion\tO\n:\tO\t:\tO\n2\tO\t2\tO\ntables\tB-Data_Structure\ttables\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ndb\tO\tdb\tO\n:\tO\t:\tO\nProducts\tB-Variable_Name\tProducts\tO\n,\tO\t,\tO\nCategories\tB-Variable_Name\tCategories\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nView\tO\tView\tO\nof\tO\tof\tO\nProducts\tB-Variable_Name\tProducts\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nSidebar\tB-Class_Name\tSidebar\tO\nMenu\tI-Class_Name\tMenu\tO\nas\tO\tas\tO\na\tO\ta\tO\nPartial\tB-Class_Name\tPartial\tO\nView\tI-Class_Name\tView\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5498\tI-Code_Block\tQ_5498\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlist\tO\tlist\tO\nmy\tO\tmy\tO\ncategories\tB-Variable_Name\tcategories\tO\nin\tO\tin\tO\n_SidebarMenu\tB-Class_Name\t_SidebarMenu\tO\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\n_SidebarMenu\tB-Class_Name\t_SidebarMenu\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5499\tI-Code_Block\tQ_5499\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nServer\tB-Error_Name\tServer\tO\nError\tI-Error_Name\tError\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nmodel\tO\tmodel\tO\nitem\tO\titem\tO\npassed\tO\tpassed\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ndictionary\tB-Data_Structure\tdictionary\tO\nis\tO\tis\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\n'\tO\t'\tO\nSystem.Collections.Generic.List\tB-Library_Class\tSystem.Collections.Generic.List\tO\n`1\tO\t`1\tO\n[\tO\t[\tO\nProjectName.MVCWebUI.Models.Products\tB-Library_Class\tProjectName.MVCWebUI.Models.Products\tO\n]\tO\t]\tO\n'\tO\t'\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ndictionary\tB-Data_Structure\tdictionary\tO\nrequires\tO\trequires\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nitem\tO\titem\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\n'\tO\t'\tO\nProjectName.MVCWebUI.Areas.Admin.Models.AdminMenuContent\tB-Library_Class\tProjectName.MVCWebUI.Areas.Admin.Models.AdminMenuContent\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nlist\tO\tlist\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nModel\tO\tModel\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\na\tO\ta\tO\nModel\tO\tModel\tO\nin\tO\tin\tO\na\tO\ta\tO\nrendering\tO\trendering\tO\nView\tO\tView\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43003720\tO\t43003720\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43003720/\tO\thttps://stackoverflow.com/questions/43003720/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nrecommend\tO\trecommend\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nchild\tO\tchild\tO\naction\tO\taction\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\n's\tO\t's\tO\nvirtually\tO\tvirtually\tO\nimpossible\tO\timpossible\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nmodel\tO\tmodel\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npartial\tO\tpartial\tO\nin\tO\tin\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\nview\tO\tview\tO\notherwise\tO\totherwise\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nchoice\tO\tchoice\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\naction\tO\taction\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6209\tI-Code_Block\tA_6209\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nlayout\tO\tlayout\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthis\tO\tthis\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nto\tO\tto\tO\nappear\tO\tappear\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6210\tI-Code_Block\tA_6210\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhere\tO\tWhere\tO\n\"\tO\t\"\tO\nFoo\tO\tFoo\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nyou\tO\tyou\tO\nput\tO\tput\tO\nthis\tO\tthis\tO\naction\tO\taction\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43003720\tO\t43003720\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43003720/\tO\thttps://stackoverflow.com/questions/43003720/\tO\n\t\n\t\nAssuming\tO\tAssuming\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nViewModel\tB-Class_Name\tViewModel\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6205\tI-Code_Block\tA_6205\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMain\tO\tMain\tO\nview\tO\tview\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6206\tI-Code_Block\tA_6206\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPartial\tO\tPartial\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6207\tI-Code_Block\tA_6207\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nmain\tO\tmain\tO\nview\tO\tview\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nrender\tO\trender\tO\nthe\tO\tthe\tO\npartial\tO\tpartial\tO\nand\tO\tand\tO\npassing\tO\tpassing\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nlist\tB-Data_Structure\tlist\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6208\tI-Code_Block\tA_6208\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10388882\tO\t10388882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10388882/\tO\thttps://stackoverflow.com/questions/10388882/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nheader\tB-File_Name\theader\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_919\tI-Code_Block\tQ_919\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nIntList\tB-Class_Name\tIntList\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_920\tI-Code_Block\tQ_920\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nA\tB-Variable_Name\tA\tB-Code_Block\nwhose\tO\twhose\tO\ntype\tO\ttype\tO\nis\tO\tis\tO\nIntList\tB-Class_Name\tIntList\tB-Code_Block\nbut\tO\tbut\tO\nI\tO\tI\tO\nmeet\tO\tmeet\tO\nan\tO\tan\tO\nerror\tO\terror\tO\non\tO\ton\tO\n\"_BLOCK_TYPE_IS_VALID(pHead->nBlockUse)\tB-Error_Name\t\"_BLOCK_TYPE_IS_VALID(pHead->nBlockUse)\tB-Code_Block\nin\tO\tin\tO\nvisual\tB-Application\tvisual\tO\nstudio\tI-Application\tstudio\tO\n2010\tB-Version\t2010\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nrepair\tO\trepair\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33488345\tO\t33488345\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33488345/\tO\thttps://stackoverflow.com/questions/33488345/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nRuby\tB-Language\tRuby\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nsubscribe\tO\tsubscribe\tO\nto\tO\tto\tO\nPubNub\tB-Library\tPubNub\tO\nand\tO\tand\tO\nrelay\tO\trelay\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nchannel\tO\tchannel\tO\nto\tO\tto\tO\nFluentd\tB-Application\tFluentd\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nperiodically\tO\tperiodically\tO\nseeing\tO\tseeing\tO\nsome\tO\tsome\tO\nduplicate\tO\tduplicate\tO\nmessages\tO\tmessages\tO\narrive\tO\tarrive\tO\nin\tO\tin\tO\nFluentd\tB-Application\tFluentd\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ninfinite\tO\tinfinite\tO\nloop+sleep\tB-Library_Function\tloop+sleep\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmore\tO\tmore\tO\ncorrect\tO\tcorrect\tO\nway\tO\tway\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nMany\tO\tMany\tO\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4089\tI-Code_Block\tQ_4089\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14771841\tO\t14771841\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14771841/\tO\thttps://stackoverflow.com/questions/14771841/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nweird\tO\tweird\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nseems\tO\tseems\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nread\tO\tread\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nrelation\tO\trelation\tO\nbetween\tO\tbetween\tO\nand\tO\tand\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nanother\tO\tanother\tO\nthing\tO\tthing\tO\n.\tO\t.\tO\n\t\nLEt\tO\tLEt\tO\nme\tO\tme\tO\nexplain\tO\texplain\tO\nall\tO\tall\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1425\tI-Code_Block\tQ_1425\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\ncontent\tO\tcontent\tO\nas\tO\tas\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nexpected\tO\texpected\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\ncanvas\tB-User_Interface_Element\tcanvas\tO\n,\tO\t,\tO\nboth\tO\tboth\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n0\tB-Value\t0\tO\n,\tI-Value\t,\tO\n0\tI-Value\t0\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\ngame\tB-User_Interface_Element\tgame\tO\ncentered\tO\tcentered\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwebpage\tB-User_Interface_Element\twebpage\tO\n,\tO\t,\tO\nso\tO\tso\tO\n,\tO\t,\tO\ni\tO\ti\tO\nthought\tO\tthought\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1426\tI-Code_Block\tQ_1426\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nthat\tO\tthat\tO\npreviously\tO\tpreviously\tO\nwas\tO\twas\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\ncanvas\tB-User_Interface_Element\tcanvas\tO\nnow\tO\tnow\tO\nis\tO\tis\tO\nright\tO\tright\tO\nbehind\tO\tbehind\tO\n..\tO\t..\tO\n.\tO\t.\tO\n¿why\tO\t¿why\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nwith\tO\twith\tO\ninherit\tO\tinherit\tO\npositioning\tO\tpositioning\tO\ntoo\tO\ttoo\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nattack\tO\tattack\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\ngrateful\tO\tgrateful\tO\nwith\tO\twith\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14771841\tO\t14771841\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14771841/\tO\thttps://stackoverflow.com/questions/14771841/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncenter\tO\tcenter\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nin\tO\tin\tO\na\tO\ta\tO\nweb\tB-User_Interface_Element\tweb\tO\npage\tI-User_Interface_Element\tpage\tO\nhorizontally\tO\thorizontally\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\nwidth\tB-Variable_Name\twidth\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\nelement\tO\telement\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nmargin\tB-Code_Block\tmargin\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nauto\tI-Code_Block\tauto\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nthat\tO\tthat\tO\n's\tO\t's\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhorizontally\tO\thorizontally\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nvertically\tO\tvertically\tO\ncentered\tO\tcentered\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nposition\tB-Code_Block\tposition\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nabsolute\tI-Code_Block\tabsolute\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1890\tI-Code_Block\tA_1890\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nstill\tO\tstill\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nconfused\tO\tconfused\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nwent\tO\twent\tO\nbehind\tO\tbehind\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\nwent\tO\twent\tO\nbehind\tO\tbehind\tO\nand\tO\tand\tO\nhow\tO\thow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nz-index\tB-Variable_Name\tz-index\tB-Code_Block\nto\tO\tto\tO\nre-arrange\tO\tre-arrange\tO\nthe\tO\tthe\tO\nstack\tO\tstack\tO\nlevel\tO\tlevel\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11912690\tO\t11912690\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11912690/\tO\thttps://stackoverflow.com/questions/11912690/\tO\n\t\n\t\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nopen\tO\topen\tO\na\tO\ta\tO\nserial\tO\tserial\tO\nport\tB-Device\tport\tO\nsend\tO\tsend\tO\ncommand\tO\tcommand\tO\n00\tB-Value\t00\tO\n00\tI-Value\t00\tO\nF0\tI-Value\tF0\tO\n00\tI-Value\t00\tO\n00\tI-Value\t00\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nreceive\tO\treceive\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nport\tB-Device\tport\tO\nif\tO\tif\tO\nhe\tO\the\tO\ncommand\tO\tcommand\tO\nreceived\tO\treceived\tO\nis\tO\tis\tO\nF1\tB-Value\tF1\tO\nand\tO\tand\tO\ndata\tO\tdata\tO\nreceived\tO\treceived\tO\nis\tO\tis\tO\nF1\tB-Value\tF1\tO\nD6\tI-Value\tD6\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nopen\tO\topen\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nthen\tO\tthen\tO\nagain\tO\tagain\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nF1\tB-Value\tF1\tO\nand\tO\tand\tO\nif\tO\tif\tO\ncommand\tO\tcommand\tO\nreceived\tO\treceived\tO\nis\tO\tis\tO\nF2\tB-Value\tF2\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11912690\tO\t11912690\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11912690/\tO\thttps://stackoverflow.com/questions/11912690/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nSerialPort\tB-Library_Class\tSerialPort\tO\nClass\tO\tClass\tO\nin\tO\tin\tO\n.NET\tB-Library\t.NET\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nRead(...)\tB-Library_Function\tRead(...)\tB-Code_Block\nand\tO\tand\tO\nWrite(...)\tB-Library_Function\tWrite(...)\tB-Code_Block\nmethods\tO\tmethods\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nyour\tO\tyour\tO\ntask\tO\ttask\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11912690\tO\t11912690\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11912690/\tO\thttps://stackoverflow.com/questions/11912690/\tO\n\t\n\t\nFirstly\tO\tFirstly\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nserialPort1\tB-Library_Class\tserialPort1\tO\ntools\tO\ttools\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nform\tB-User_Interface_Element\tform\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6184\tI-Code_Block\tA_6184\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthat\tO\tthat\tO\ncodes\tO\tcodes\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nyour\tO\tyour\tO\nport\tB-Device\tport\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nWrite()\tB-Library_Function\tWrite()\tO\nand\tO\tand\tO\nRead()\tB-Library_Function\tRead()\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nserialPort1\tB-Library_Class\tserialPort1\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23205170\tO\t23205170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23205170/\tO\thttps://stackoverflow.com/questions/23205170/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nthis\tO\tthis\tO\narray\tB-Data_Structure\tarray\tO\nby\tO\tby\tO\nreference\tO\treference\tO\nbut\tO\tbut\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\npick\tO\tpick\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nHelp\tO\tHelp\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2545\tI-Code_Block\tQ_2545\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23205170\tO\t23205170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23205170/\tO\thttps://stackoverflow.com/questions/23205170/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYou\tO\tYou\tO\nalmost\tO\talmost\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nsyntax\tO\tsyntax\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n's\tO\t's\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nspecify\tO\tspecify\tO\nexplicitly\tO\texplicitly\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\none\tO\tone\tO\nsize\tO\tsize\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3150\tI-Code_Block\tA_3150\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\ntemplate\tO\ttemplate\tO\nto\tO\tto\tO\ndeduce\tO\tdeduce\tO\nit\tO\tit\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nfunctions\tO\tfunctions\tO\nfor\tO\tfor\tO\ndifferent\tO\tdifferent\tO\nsizes\tO\tsizes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3151\tI-Code_Block\tA_3151\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nidiomatic\tO\tidiomatic\tO\nsolutions\tO\tsolutions\tO\nin\tO\tin\tO\nC++\tB-Language\tC++\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nis\tO\tis\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nbegin\tO\tbegin\tO\nand\tO\tand\tO\none-past-the-end\tO\tone-past-the-end\tO\niterators\tO\titerators\tO\n(\tO\t(\tO\nplain\tO\tplain\tO\npointers\tB-Data_Type\tpointers\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\n)\tO\t)\tO\nspecifying\tO\tspecifying\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nOthers\tO\tOthers\tO\nare\tO\tare\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nstd::array\tB-Library_Class\tstd::array\tB-Code_Block\nfor\tO\tfor\tO\nfixed\tO\tfixed\tO\nsize\tO\tsize\tO\narrays\tB-Data_Structure\tarrays\tO\nand\tO\tand\tO\nstd::vector\tB-Library_Class\tstd::vector\tB-Code_Block\nfor\tO\tfor\tO\ndynamically\tO\tdynamically\tO\nsized\tO\tsized\tO\nones\tO\tones\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8131525\tO\t8131525\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8131525/\tO\thttps://stackoverflow.com/questions/8131525/\tO\n\t\n\t\nWhy\tO\tWhy\tO\nare\tO\tare\tO\n2\tO\t2\tO\nconcurrent\tO\tconcurrent\tO\ncalls\tO\tcalls\tO\nto\tO\tto\tO\napache2\tB-Application\tapache2\tO\nnot\tO\tnot\tO\nprocessed\tO\tprocessed\tO\nin\tO\tin\tO\nparallel\tO\tparallel\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_688\tI-Code_Block\tQ_688\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOpen\tO\tOpen\tO\n2\tO\t2\tO\ntabs\tB-User_Interface_Element\ttabs\tO\ninto\tO\tinto\tO\nchrome\tB-Application\tchrome\tO\n,\tO\t,\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n\t\nResult\tO\tResult\tO\nfrom\tO\tfrom\tO\nTAB\tB-User_Interface_Element\tTAB\tO\n1\tI-User_Interface_Element\t1\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_689\tI-Code_Block\tQ_689\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nResult\tO\tResult\tO\nfrom\tO\tfrom\tO\nTAB\tB-User_Interface_Element\tTAB\tO\n2\tI-User_Interface_Element\t2\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_690\tI-Code_Block\tQ_690\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nprevent\tO\tprevent\tO\nthis\tO\tthis\tO\nfrom\tO\tfrom\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\nYour\tO\tYour\tO\nquestions\tO\tquestions\tO\nhinted\tO\thinted\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nsession.auto_start\tB-Code_Block\tsession.auto_start\tO\n=\tI-Code_Block\t=\tO\n1\tI-Code_Block\t1\tO\nwas\tO\twas\tO\nactivated\tO\tactivated\tO\nin\tO\tin\tO\nphp.ini\tB-File_Name\tphp.ini\tO\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\neither\tO\teither\tO\nstart\tO\tstart\tO\nscript\tO\tscript\tO\nwith\tO\twith\tO\n:\tO\t:\tO\nsession_write_close()\tB-Library_Function\tsession_write_close()\tO\n;\tO\t;\tO\n\t\nor\tO\tor\tO\nsession.auto_start\tB-Code_Block\tsession.auto_start\tO\n=\tI-Code_Block\t=\tO\n0\tI-Code_Block\t0\tO\n;\tO\t;\tO\ninto\tO\tinto\tO\nphp.ini\tB-File_Name\tphp.ini\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8131525\tO\t8131525\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8131525/\tO\thttps://stackoverflow.com/questions/8131525/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nChrome\tB-Application\tChrome\tO\nand\tO\tand\tO\nrequest\tO\trequest\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nresource\tO\tresource\tO\nin\tO\tin\tO\nmultiple\tO\tmultiple\tO\ntabs\tB-User_Interface_Element\ttabs\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nresource\tO\tresource\tO\nto\tO\tto\tO\nfinish\tO\tfinish\tO\ndownloading\tO\tdownloading\tO\nin\tO\tin\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nheaders\tO\theaders\tO\nallow\tO\tallow\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\ntab\tB-User_Interface_Element\ttab\tO\nwill\tO\twill\tO\nload\tO\tload\tO\nfrom\tO\tfrom\tO\ncache\tO\tcache\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nreloading\tO\treloading\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nnothing\tO\tnothing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nserver\tB-Application\tserver\tO\nconfiguration\tO\tconfiguration\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmore\tO\tmore\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nflawed\tO\tflawed\tO\ntest\tO\ttest\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nFire\tO\tFire\tO\noff\tO\toff\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nwget\tB-Code_Block\twget\tB-Code_Block\ncalls\tO\tcalls\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nlikely\tO\tlikely\tO\nwork\tO\twork\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nverify\tO\tverify\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ndebugging\tO\tdebugging\tO\nproxy\tO\tproxy\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nFiddler\tB-Application\tFiddler\tO\n,\tO\t,\tO\nor\tO\tor\tO\npacket\tO\tpacket\tO\nsniffing\tO\tsniffing\tO\nsoftware\tO\tsoftware\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nWireshark\tB-Application\tWireshark\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8131525\tO\t8131525\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8131525/\tO\thttps://stackoverflow.com/questions/8131525/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nare\tO\tare\tO\nyour\tO\tyour\tO\napache\tB-Application\tapache\tO\nsettings\tO\tsettings\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nconfig\tO\tconfig\tO\nset\tO\tset\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nrun\tO\trun\tO\n1\tO\t1\tO\nserver\tB-Application\tserver\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nmultiple\tO\tmultiple\tO\nservers\tB-Application\tservers\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwere\tO\twere\tO\nset\tO\tset\tO\nthat\tO\tthat\tO\nway\tO\tway\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nimpossible\tO\timpossible\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nconcurrently\tO\tconcurrently\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40909611\tO\t40909611\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40909611/\tO\thttps://stackoverflow.com/questions/40909611/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nextension\tO\textension\tO\nto\tO\tto\tO\nfilter\tO\tfilter\tO\nthe\tO\tthe\tO\nnews\tB-Class_Name\tnews\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nbuild\tO\tbuild\tO\nan\tO\tan\tO\nextension\tO\textension\tO\nwith\tO\twith\tO\nnews\tB-Class_Name\tnews\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nmodel\tO\tmodel\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5169\tI-Code_Block\tQ_5169\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nlist\tO\tlist\tO\nall\tO\tall\tO\nnews\tB-Class_Name\tnews\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nextension\tO\textension\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ncalled\tO\tcalled\tO\nthe\tO\tthe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5170\tI-Code_Block\tQ_5170\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFrom\tO\tFrom\tO\nmy\tO\tmy\tO\ncontroller.But\tO\tcontroller.But\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\nobject.So\tO\tobject.So\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nfunction\tO\tfunction\tO\nFilterNews()\tB-Function_Name\tFilterNews()\tB-Code_Block\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5171\tI-Code_Block\tQ_5171\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nnews\tB-Class_Name\tnews\tO\nwith\tO\twith\tO\nuid\tB-Code_Block\tuid\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n1.But\tI-Code_Block\t1.But\tI-Code_Block\nit\tO\tit\tO\nreturns\tO\treturns\tO\nempty\tO\tempty\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\naccess\tO\taccess\tO\nnews\tB-Class_Name\tnews\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nincluded\tO\tincluded\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nrepository\tO\trepository\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5172\tI-Code_Block\tQ_5172\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40909611\tO\t40909611\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40909611/\tO\thttps://stackoverflow.com/questions/40909611/\tO\n\t\n\t\nAlways\tO\tAlways\tO\nforgetting\tO\tforgetting\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n:\tO\t:\tO\nDo\tO\tDo\tO\nyou\tO\tyou\tO\n\"\tO\t\"\tO\nreturn\tB-Code_Block\treturn\tO\n$query->execute();\"\tI-Code_Block\t$query->execute();\"\tO\n?\tO\t?\tO\n\t\n;-)\tO\t;-)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40909611\tO\t40909611\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40909611/\tO\thttps://stackoverflow.com/questions/40909611/\tO\n\t\n\t\nAnother\tO\tAnother\tO\nsolution\tO\tsolution\tO\n:\tO\t:\tO\nAdd\tO\tAdd\tO\ntable\tB-Data_Structure\ttable\tO\nmapping\tO\tmapping\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nmodel\tO\tmodel\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nextension\tO\textension\tO\n:\tO\t:\tO\nhttps://github.com/Schweriner/tgm_lazynews/blob/master/ext_typoscript_setup.txt\tO\thttps://github.com/Schweriner/tgm_lazynews/blob/master/ext_typoscript_setup.txt\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41257705\tO\t41257705\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41257705/\tO\thttps://stackoverflow.com/questions/41257705/\tO\n\t\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\nautomatically\tO\tautomatically\tO\ndeletes\tO\tdeletes\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nspecified\tO\tspecified\tO\nin\tO\tin\tO\nLst2\tB-Variable_Name\tLst2\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nelement\tO\telement\tO\n3\tO\t3\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmanually\tO\tmanually\tO\npick\tO\tpick\tO\nwhat\tO\twhat\tO\nelement\tO\telement\tO\nis\tO\tis\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndeleted\tO\tdeleted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwill\tO\twill\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5223\tI-Code_Block\tQ_5223\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41257705\tO\t41257705\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41257705/\tO\thttps://stackoverflow.com/questions/41257705/\tO\n\t\n\t\nPassing\tO\tPassing\tO\nin\tO\tin\tO\nan\tO\tan\tO\nindex\tO\tindex\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\ndel\tB-Library_Function\tdel\tB-Code_Block\nfunction\tO\tfunction\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5905\tI-Code_Block\tA_5905\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\nfrom\tO\tfrom\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\nSTDIN\tB-Code_Block\tSTDIN\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5906\tI-Code_Block\tA_5906\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1873870\tO\t1873870\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1873870/\tO\thttps://stackoverflow.com/questions/1873870/\tO\n\t\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\nsubitem\tO\tsubitem\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nListView\tB-Library_Class\tListView\tO\nin\tO\tin\tO\n.NET\tB-Library\t.NET\tO\nWinforms\tI-Library\tWinforms\tO\n?\tI-Library\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1873870\tO\t1873870\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1873870/\tO\thttps://stackoverflow.com/questions/1873870/\tO\n\t\n\t\nUnless\tO\tUnless\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nreally\tO\treally\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\nfundamental\tO\tfundamental\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nselect\tO\tselect\tO\na\tO\ta\tO\nsubitem\tO\tsubitem\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nsubitem\tO\tsubitem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nFullRowSelect\tB-Library_Variable\tFullRowSelect\tO\nproperty\tO\tproperty\tO\nto\tO\tto\tO\nTrue\tO\tTrue\tO\n.\tO\t.\tO\n\t\nNeither\tO\tNeither\tO\nhelps\tO\thelps\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nwhat\tO\twhat\tO\nsubitem\tO\tsubitem\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nno\tO\tno\tO\nway\tO\tway\tO\nto\tO\tto\tO\nguess\tO\tguess\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclipboard\tB-Application\tclipboard\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nDataGridView\tB-Library_Class\tDataGridView\tO\nto\tO\tto\tO\nwork\tO\twork\tO\naround\tO\taround\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1873870\tO\t1873870\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1873870/\tO\thttps://stackoverflow.com/questions/1873870/\tO\n\t\n\t\nEach\tO\tEach\tO\nitem\tO\titem\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\na\tO\ta\tO\nListView\tB-Library_Class\tListView\tB-Code_Block\ncontrol\tO\tcontrol\tO\nis\tO\tis\tO\nrepresented\tO\trepresented\tO\nby\tO\tby\tO\na\tO\ta\tO\nListViewItem\tB-Library_Class\tListViewItem\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nListViewItem\tB-Library_Class\tListViewItem\tB-Code_Block\nhas\tO\thas\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\ncalled\tO\tcalled\tO\nSubItems\tB-Library_Variable\tSubItems\tB-Code_Block\nwhich\tO\twhich\tO\nstarts\tO\tstarts\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nvery\tO\tvery\tO\nfirst\tO\tfirst\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nListView\tB-Library_Class\tListView\tB-Code_Block\ncontrol\tO\tcontrol\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ncopy\tO\tcopy\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n,\tO\t,\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\nListViewItem\tB-Library_Class\tListViewItem\tB-Code_Block\nand\tO\tand\tO\nreference\tO\treference\tO\nthe\tO\tthe\tO\nText\tB-Library_Variable\tText\tB-Code_Block\nproperty\tO\tproperty\tO\navailable\tO\tavailable\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nSubItems\tB-Library_Variable\tSubItems\tB-Code_Block\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_193\tI-Code_Block\tA_193\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42222414\tO\t42222414\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42222414/\tO\thttps://stackoverflow.com/questions/42222414/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nrunning\tO\trunning\tO\nan\tO\tan\tO\nown\tO\town\tO\ntool\tO\ttool\tO\n(\tO\t(\tO\n.NET\tB-Library\t.NET\tO\n3.5\tB-Version\t3.5\tO\nClient\tO\tClient\tO\nProfile\tO\tProfile\tO\n)\tO\t)\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\nServer\tI-Operating_System\tServer\tO\n2012\tB-Version\t2012\tO\nR2\tI-Version\tR2\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntool\tO\ttool\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsingleton\tB-Library_Class\tsingleton\tO\nSettings\tO\tSettings\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nprogram\tO\tprogram\tO\nsettings\tO\tsettings\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nuser\tO\tuser\tO\ndefined\tO\tdefined\tO\ntool\tO\ttool\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nconfiguration\tO\tconfiguration\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\nSettingsSingleFileGenerator\tB-Library_Class\tSettingsSingleFileGenerator\tB-Code_Block\n-\tO\t-\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmean\tO\tmean\tO\nanything\tO\tanything\tO\nand\tO\tand\tO\njust\tO\tjust\tO\npoints\tO\tpoints\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nGUI\tO\tGUI\tO\nbased\tO\tbased\tO\nsettings\tO\tsettings\tO\neditor\tB-Application\teditor\tO\n?\tO\t?\tO\n!\tO\t!\tO\n\t\nWhen\tO\tWhen\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nany\tO\tany\tO\nWindows\tB-Operating_System\tWindows\tO\n7\tB-Version\t7\tO\nmachine\tO\tmachine\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\nServer\tI-Operating_System\tServer\tO\n2012\tB-Version\t2012\tO\nR2\tI-Version\tR2\tO\nin\tO\tin\tO\nelevated\tO\televated\tO\nmode\tO\tmode\tO\n,\tO\t,\tO\nstoring\tO\tstoring\tO\nthe\tO\tthe\tO\nsettings\tO\tsettings\tO\nseveral\tO\tseveral\tO\ntimes\tO\ttimes\tO\nis\tO\tis\tO\nno\tO\tno\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ntool\tO\ttool\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\nServer\tI-Operating_System\tServer\tO\n2012\tB-Version\t2012\tO\nR2\tI-Version\tR2\tO\nnon-elevated\tO\tnon-elevated\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncall\tO\tcall\tO\nof\tO\tof\tO\nSettings.Default.Save()\tB-Library_Function\tSettings.Default.Save()\tB-Code_Block\nis\tO\tis\tO\nworking\tO\tworking\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nevery\tO\tevery\tO\nfollowing\tO\tfollowing\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n\"\tO\t\"\tO\nThe\tO\tThe\tO\nprocess\tO\tprocess\tO\ncannot\tO\tcannot\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n..\tO\t..\tO\n.\tO\t.\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nused\tO\tused\tO\nby\tO\tby\tO\nanother\tO\tanother\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nSysinternals\tB-Application\tSysinternals\tO\nProcess\tI-Application\tProcess\tO\nExplorer\tI-Application\tExplorer\tO\n(\tO\t(\tO\nrunning\tO\trunning\tO\nelevated\tO\televated\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nchecked\tO\tchecked\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nbeing\tO\tbeing\tO\nused\tO\tused\tO\nby\tO\tby\tO\nanother\tO\tanother\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nmy\tO\tmy\tO\ntool\tO\ttool\tO\nappears\tO\tappears\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nremarks\tO\tremarks\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\nsomehow\tO\tsomehow\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nafter\tO\tafter\tO\nsaving\tO\tsaving\tO\n.\tO\t.\tO\n\t\nDespite\tO\tDespite\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nno\tO\tno\tO\nsuch\tO\tsuch\tO\nfunction\tO\tfunction\tO\nas\tO\tas\tO\nclosed\tO\tclosed\tO\ngiven\tO\tgiven\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nSettings.Default\tB-Library_Function\tSettings.Default\tB-Code_Block\nInstance\tO\tInstance\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\nalso\tO\talso\tO\nno\tO\tno\tO\nhint\tO\thint\tO\nthat\tO\tthat\tO\nan\tO\tan\tO\nException\tB-Library_Class\tException\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ngenerated\tO\tgenerated\tO\nwhen\tO\twhen\tO\ncalling\tO\tcalling\tO\nSave().\tB-Library_Function\tSave().\tB-Code_Block\n.\tO\t.\tO\n\t\nMight\tO\tMight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsetting\tO\tsetting\tO\nin\tO\tin\tO\nWindows\tB-Operating_System\tWindows\tO\nServer\tI-Operating_System\tServer\tO\n2012\tB-Version\t2012\tO\nR2\tI-Version\tR2\tO\n?\tO\t?\tO\n\t\nA\tO\tA\tO\nsecurity\tO\tsecurity\tO\nfeature\tO\tfeature\tO\n?\tO\t?\tO\n\t\nBug\tO\tBug\tO\nin\tO\tin\tO\n.NET\tB-Library\t.NET\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nappreciate\tO\tappreciate\tO\nany\tO\tany\tO\nhint\tO\thint\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthat\tO\tthat\tO\nproblem\tO\tproblem\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41234699\tO\t41234699\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41234699/\tO\thttps://stackoverflow.com/questions/41234699/\tO\n\t\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nEditText\tB-User_Interface_Element\tEditText\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nupdated\tO\tupdated\tO\nmy\tO\tmy\tO\nAndroid\tB-Application\tAndroid\tO\nStudio\tI-Application\tStudio\tO\nto\tO\tto\tO\n2.2.3\tB-Version\t2.2.3\tO\nthen\tO\tthen\tO\nsuddenly\tO\tsuddenly\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nEditText\tB-User_Interface_Element\tEditText\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nSoft\tB-User_Interface_Element\tSoft\tO\nKeyboard\tI-User_Interface_Element\tKeyboard\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nevery\tO\tevery\tO\npossible\tO\tpossible\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\nto\tO\tto\tO\nforce\tO\tforce\tO\nit\tO\tit\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nbut\tO\tbut\tO\nnone\tO\tnone\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nthinking\tO\tthinking\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsetShowSoftInputOnFocus()\tB-Library_Function\tsetShowSoftInputOnFocus()\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\navailable\tO\tavailable\tO\nfrom\tO\tfrom\tO\nSDK\tB-Application\tSDK\tO\n21\tB-Version\t21\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nSTBs\tB-Device\tSTBs\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nSDK\tB-Application\tSDK\tO\n17\tB-Version\t17\tO\nand\tO\tand\tO\n19\tB-Version\t19\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41234699\tO\t41234699\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41234699/\tO\thttps://stackoverflow.com/questions/41234699/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\npass\tO\tpass\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nsetShowSoftInputOnFocus(false)\tB-Library_Variable\tsetShowSoftInputOnFocus(false)\tB-Code_Block\nthen\tO\tthen\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nhide\tO\thide\tO\nthe\tO\tthe\tO\nkeyboard\tB-User_Interface_Element\tkeyboard\tO\nfor\tO\tfor\tO\nEditText\tB-User_Interface_Element\tEditText\tO\neven\tO\teven\tO\nit\tO\tit\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\nfocus\tO\tfocus\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nkeyboard\tB-User_Interface_Element\tkeyboard\tO\non\tO\ton\tO\nEditText\tB-User_Interface_Element\tEditText\tO\nfocus\tO\tfocus\tO\nset\tO\tset\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\ntrue\tO\ttrue\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nfalse\tO\tfalse\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\n's\tO\t's\tO\ndetails\tO\tdetails\tO\nfrom\tO\tfrom\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41234699\tO\t41234699\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41234699/\tO\thttps://stackoverflow.com/questions/41234699/\tO\n\t\n\t\nI\tO\tI\tO\nsolved\tO\tsolved\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSomeone\tO\tSomeone\tO\nmessed\tO\tmessed\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsettings\tO\tsettings\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ntest\tO\ttest\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11483199\tO\t11483199\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11483199/\tO\thttps://stackoverflow.com/questions/11483199/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nimages\tB-User_Interface_Element\timages\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nin\tO\tin\tO\na\tO\ta\tO\nGridView\tB-Library_Class\tGridView\tB-Code_Block\nwithin\tO\twithin\tO\na\tO\ta\tO\nFragment\tB-Library_Class\tFragment\tB-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nCursorAdapter\tB-Library_Class\tCursorAdapter\tO\n's\tO\t's\tO\nnewView()\tB-Library_Function\tnewView()\tB-Code_Block\nor\tO\tor\tO\nbindView()\tB-Library_Function\tbindView()\tB-Code_Block\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\ncalled\tO\tcalled\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nGridImageAdapter.java\tB-File_Name\tGridImageAdapter.java\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1062\tI-Code_Block\tQ_1062\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nfrom\tO\tfrom\tO\nfragment\tB-Library_Class\tfragment\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1063\tI-Code_Block\tQ_1063\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nCursorAdapter\tB-Library_Class\tCursorAdapter\tB-Code_Block\nnot\tO\tnot\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\nnewView()/bindView()\tB-Library_Function\tnewView()/bindView()\tB-Code_Block\nmethods\tO\tmethods\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nlogcat\tB-Application\tlogcat\tO\noutput\tO\toutput\tO\non\tO\ton\tO\nthose\tO\tthose\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nreaching\tO\treaching\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11483199\tO\t11483199\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11483199/\tO\thttps://stackoverflow.com/questions/11483199/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nit\tO\tit\tO\n's\tO\t's\tO\nlate\tO\tlate\tO\n-I\tO\t-I\tO\nhad\tO\thad\tO\nn't\tO\tn't\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\npost\tO\tpost\tO\n-\tO\t-\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\n(\tO\t(\tO\nthough\tO\tthough\tO\nI\tO\tI\tO\nwas\tO\twas\tO\njust\tO\tjust\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nTo-Do\tO\tTo-Do\tO\nList\tO\tList\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nspent\tO\tspent\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nthree\tO\tthree\tO\nhour\tO\thour\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nwas\tO\twas\tO\nand\tO\tand\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\npossible\tO\tpossible\tO\nsolutions\tO\tsolutions\tO\nsomewhere\tO\tsomewhere\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\nhelp\tO\thelp\tO\nsomebody\tO\tsomebody\tO\nelse\tO\telse\tO\nanyway\tO\tanyway\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nput\tO\tput\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\nwhat\tO\twhat\tO\nworked\tO\tworked\tO\nwas\tO\twas\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nMain\tO\tMain\tO\nActivity\tB-Library_Class\tActivity\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nonCreate\tB-Library_Function\tonCreate\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1606\tI-Code_Block\tA_1606\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n..\tO\t..\tO\n.\tO\t.\tO\nand\tO\tand\tO\nmoving\tO\tmoving\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nLoaderCallbacks\tB-Library_Class\tLoaderCallbacks\tO\nmethods\tO\tmethods\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1607\tI-Code_Block\tA_1607\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nreason\tO\treason\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nworking\tO\tworking\tO\nwas\tO\twas\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nadapter\tB-Library_Class\tadapter\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nbeing\tO\tbeing\tO\nset\tO\tset\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nListView\tB-Library_Class\tListView\tO\n,\tO\t,\tO\nso\tO\tso\tO\nmy\tO\tmy\tO\nlist\tB-Data_Structure\tlist\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nanything\tO\tanything\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\nnewView()\tB-Library_Function\tnewView()\tO\nand\tO\tand\tO\nbindView()\tB-Library_Function\tbindView()\tO\nnever\tO\tnever\tO\ngot\tO\tgot\tO\ncalled\tO\tcalled\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\nwork\tO\twork\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nadapter\tB-Library_Class\tadapter\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nGridView\tB-Library_Class\tGridView\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nonLoadFinished\tB-Library_Function\tonLoadFinished\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nthe\tO\tthe\tO\ncursor\tO\tcursor\tO\nload\tO\tload\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nmade\tO\tmade\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nsolve\tO\tsolve\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nor\tO\tor\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\n's\tO\t's\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nit\tO\tit\tO\nhelps\tO\thelps\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11483199\tO\t11483199\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11483199/\tO\thttps://stackoverflow.com/questions/11483199/\tO\n\t\n\t\nI'v\tO\tI'v\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\ntoo\tO\ttoo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsolved\tO\tsolved\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\nfragment\tB-Library_Class\tfragment\tO\n,\tO\t,\tO\nchange\tO\tchange\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6030\tI-Code_Block\tA_6030\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6031\tI-Code_Block\tA_6031\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nformer\tO\tformer\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nActivity\tB-Library_Class\tActivity\tO\nas\tO\tas\tO\ncontext\tB-Library_Class\tcontext\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nFragment\tB-Library_Class\tFragment\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nnotified\tO\tnotified\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34742358\tO\t34742358\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34742358/\tO\thttps://stackoverflow.com/questions/34742358/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsliding\tO\tsliding\tO\ntabs\tB-User_Interface_Element\ttabs\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nrecyclerview\tB-Library_Class\trecyclerview\tO\nin\tO\tin\tO\nevery\tO\tevery\tO\ntab\tB-User_Interface_Element\ttab\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntesting\tO\ttesting\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\nAndroid\tB-Operating_System\tAndroid\tO\nEspresso\tB-Version\tEspresso\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\non\tO\ton\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrecyclerview\tB-Library_Class\trecyclerview\tO\nitem\tO\titem\tO\n.\tO\t.\tO\n\t\nwhen\tO\twhen\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4239\tI-Code_Block\tQ_4239\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nexception\tB-Library_Class\texception\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4240\tI-Code_Block\tQ_4240\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nany\tO\tany\tO\nIdeas\tO\tIdeas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34742358\tO\t34742358\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34742358/\tO\thttps://stackoverflow.com/questions/34742358/\tO\n\t\n\t\nUhm\tO\tUhm\tO\n,\tO\t,\tO\ni\tO\ti\tO\nguess\tO\tguess\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nxml\tB-File_Type\txml\tO\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nRecyclerView\tB-Library_Class\tRecyclerView\tB-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\ntabs\tB-User_Interface_Element\ttabs\tO\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\nall\tO\tall\tO\nyour\tO\tyour\tO\nRecyclerView\tB-Library_Class\tRecyclerView\tB-Code_Block\n's\tO\t's\tI-Code_Block\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nID\tB-Library_Variable\tID\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nRecyclerView\tB-Library_Class\tRecyclerView\tB-Code_Block\n's\tO\t's\tI-Code_Block\nusing\tO\tusing\tO\nyour\tO\tyour\tO\nID\tB-Library_Variable\tID\tO\n's\tO\t's\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\neither\tO\teither\tO\ngive\tO\tgive\tO\nevery\tO\tevery\tO\nRecyclerView\tB-Library_Class\tRecyclerView\tB-Code_Block\nit\tO\tit\tO\n's\tO\t's\tO\nown\tO\town\tO\nID\tB-Library_Variable\tID\tO\nor\tO\tor\tO\ntry\tO\ttry\tO\nsearching\tO\tsearching\tO\nwith\tO\twith\tO\nany\tO\tany\tO\nother\tO\tother\tO\nViewMatcher\tB-Library_Class\tViewMatcher\tB-Code_Block\nlike\tO\tlike\tO\nwithText\tB-Library_Function\twithText\tB-Code_Block\n(\tI-Library_Function\t(\tI-Code_Block\n\"\tB-Library_Function\t\"\tB-Code_Block\nany\tI-Library_Function\tany\tI-Code_Block\nspecific\tI-Library_Function\tspecific\tI-Code_Block\ntext\tI-Library_Function\ttext\tI-Code_Block\nin\tI-Library_Function\tin\tI-Code_Block\nyour\tI-Library_Function\tyour\tI-Code_Block\nrecyclers\tI-Library_Function\trecyclers\tI-Code_Block\n\"\tI-Library_Function\t\"\tI-Code_Block\n)\tI-Library_Function\t)\tI-Code_Block\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nfind\tO\tfind\tO\nmethods\tO\tmethods\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34742358\tO\t34742358\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34742358/\tO\thttps://stackoverflow.com/questions/34742358/\tO\n\t\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nsuggest\tO\tsuggest\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nViewHolder\tB-Library_Class\tViewHolder\tB-Code_Block\nmatcher\tO\tmatcher\tO\nto\tO\tto\tO\nmatch\tO\tmatch\tO\nspecific\tO\tspecific\tO\nitem\tO\titem\tO\ninside\tO\tinside\tO\nRecyclerView\tB-Library_Class\tRecyclerView\tB-Code_Block\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nPositionableRecyclerViewAction\tB-Library_Class\tPositionableRecyclerViewAction\tB-Code_Block\nlike\tO\tlike\tO\nscrollToHolder(...)\tB-Library_Function\tscrollToHolder(...)\tB-Code_Block\nfor\tO\tfor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4956\tI-Code_Block\tA_4956\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4957\tI-Code_Block\tA_4957\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34850439\tO\t34850439\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34850439/\tO\thttps://stackoverflow.com/questions/34850439/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\njob\tO\tjob\tO\nand\tO\tand\tO\na\tO\ta\tO\ntrigger\tO\ttrigger\tO\n,\tO\t,\tO\nand\tO\tand\tO\nevery\tO\tevery\tO\nx\tB-Variable_Name\tx\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\ntrigger\tO\ttrigger\tO\ntriggers\tO\ttriggers\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\n.\tO\t.\tO\n\t\nSometimes\tO\tSometimes\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nanother\tO\tanother\tO\nscenario\tO\tscenario\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\ncount\tO\tcount\tO\nis\tO\tis\tO\n300\tB-Value\t300\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\ncount\tO\tcount\tO\ngets\tO\tgets\tO\nto\tO\tto\tO\n300\tB-Value\t300\tO\nI\tO\tI\tO\ntrigger\tO\ttrigger\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4251\tI-Code_Block\tQ_4251\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\nregular\tO\tregular\tO\ntime\tO\ttime\tO\ntrigger\tO\ttrigger\tO\n,\tO\t,\tO\nand\tO\tand\tO\nrestart\tO\trestart\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nregular\tO\tregular\tO\ntrigger\tO\ttrigger\tO\nis\tO\tis\tO\n3\tO\t3\tO\nminutes\tO\tminutes\tO\n,\tO\t,\tO\nand\tO\tand\tO\n1\tO\t1\tO\nminute\tO\tminute\tO\npassed\tO\tpassed\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\nwas\tO\twas\tO\ntriggered\tO\ttriggered\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\ncount\tO\tcount\tO\ngetting\tO\tgetting\tO\nover\tO\tover\tO\n300\tB-Value\t300\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nregular\tO\tregular\tO\ntime\tO\ttime\tO\ntrigger\tO\ttrigger\tO\nto\tO\tto\tO\nstop\tO\tstop\tO\nand\tO\tand\tO\nstart\tO\tstart\tO\nagain\tO\tagain\tO\nfrom\tO\tfrom\tO\n0\tB-Value\t0\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nYou\tO\tYou\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34850439\tO\t34850439\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34850439/\tO\thttps://stackoverflow.com/questions/34850439/\tO\n\t\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nJob\tO\tJob\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nJobKey\tB-Library_Class\tJobKey\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nFirst\tO\tFirst\tO\nJob\tO\tJob\tO\n,\tO\t,\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nPause\tO\tPause\tO\nit\tO\tit\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4964\tI-Code_Block\tA_4964\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nJobKeys\tB-Library_Class\tJobKeys\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4965\tI-Code_Block\tA_4965\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nJobKey\tB-Library_Class\tJobKey\tO\n(\tO\t(\tO\nof\tO\tof\tO\nhte\tO\thte\tO\nfirst\tO\tfirst\tO\njob\tO\tjob\tO\n)\tO\t)\tO\nin\tO\tin\tO\na\tO\ta\tO\n.config\tB-File_Type\t.config\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nhard\tO\thard\tO\ncode\tO\tcode\tO\nit\tO\tit\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n\"\tO\t\"\tO\nShowJobs\tB-Function_Name\tShowJobs\tO\n\"\tO\t\"\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nlocate\tO\tlocate\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\njob\tO\tjob\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\npseudo\tO\tpseudo\tO\ncode\tO\tcode\tO\n...\tO\t...\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\n......\tO\t......\tO\nnot\tO\tnot\tO\n\t\nSomething\tO\tSomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4966\tI-Code_Block\tA_4966\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\n300\tB-Value\t300\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nresearch\tO\tresearch\tO\nPersistJobDataAfterExecution\tB-Library_Class\tPersistJobDataAfterExecution\tO\n(\tO\t(\tO\nPersistJobDataAfterExecutionAttribute\tB-Library_Class\tPersistJobDataAfterExecutionAttribute\tO\n)\tO\t)\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\nto\tO\tto\tO\npersist\tO\tpersist\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nlater\tO\tlater\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28639760\tO\t28639760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28639760/\tO\thttps://stackoverflow.com/questions/28639760/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nlinux\tB-Operating_System\tlinux\tO\n/dev/\tB-File_Name\t/dev/\tO\nfolder\tO\tfolder\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmtd0\tB-File_Name\tmtd0\tO\n-\tO\t-\tO\nmtd7\tB-File_Name\tmtd7\tO\nand\tO\tand\tO\nmtdblock0\tB-File_Name\tmtdblock0\tO\n-\tO\t-\tO\nmtdblock7\tB-File_Name\tmtdblock7\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nmore\tO\tmore\tO\nmtd\tB-Device\tmtd\tO\ndevices\tO\tdevices\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nwhen\tO\twhen\tO\nbuilding\tO\tbuilding\tO\nthe\tO\tthe\tO\nkernel\tB-Application\tkernel\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28639760\tO\t28639760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28639760/\tO\thttps://stackoverflow.com/questions/28639760/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nmore\tO\tmore\tO\nmtd\tB-Device\tmtd\tO\npartitions\tO\tpartitions\tO\n.\tO\t.\tO\n\t\nUpon\tO\tUpon\tO\nboot\tO\tboot\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nkernel\tB-Application\tkernel\tO\ncreates\tO\tcreates\tO\none\tO\tone\tO\nmtd\tB-Device\tmtd\tO\nand\tO\tand\tO\none\tO\tone\tO\nmtdblock\tB-Device\tmtdblock\tO\nunder\tO\tunder\tO\n/dev\tB-File_Name\t/dev\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nMTD\tB-Device\tMTD\tO\npartitions\tO\tpartitions\tO\nare\tO\tare\tO\nusually\tO\tusually\tO\nwritten\tO\twritten\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nboard\tO\tboard\tO\n's\tO\t's\tO\nBSP\tB-File_Type\tBSP\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\noverride\tO\toverride\tO\nthat\tO\tthat\tO\nby\tO\tby\tO\npassing\tO\tpassing\tO\nthe\tO\tthe\tO\nkernel\tB-Application\tkernel\tO\na\tO\ta\tO\nmtdparts\tB-Code_Block\tmtdparts\tB-Code_Block\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\ninfo\tO\tinfo\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nmtdinfo\tB-File_Name\tmtdinfo\tO\nand\tO\tand\tO\n/proc/mtd\tB-File_Name\t/proc/mtd\tB-Code_Block\ndescribe\tO\tdescribe\tO\nthe\tO\tthe\tO\nstart-end\tO\tstart-end\tO\nof\tO\tof\tO\neach\tO\teach\tO\npartition\tO\tpartition\tO\nand\tO\tand\tO\nits\tO\tits\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmtd\tB-Class_Name\tmtd\tO\npartition\tI-Class_Name\tpartition\tO\ntable\tB-Data_Structure\ttable\tO\nis\tO\tis\tO\nin\tO\tin\tO\narch/arm/mach-omap2/board\tB-File_Name\tarch/arm/mach-omap2/board\tB-Code_Block\n-omap3beagle.c\tI-File_Name\t-omap3beagle.c\tI-Code_Block\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbeagleboard\tB-Device\tbeagleboard\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4027\tI-Code_Block\tA_4027\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tO\t}\tO\n;\tO\t;\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\n5\tO\t5\tO\npartitions\tO\tpartitions\tO\nmtd0\tB-File_Name\tmtd0\tO\nto\tO\tto\tO\nmtd4\tB-File_Name\tmtd4\tO\nwith\tO\twith\tO\nsizes\tO\tsizes\tO\nhard-coded\tO\thard-coded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nKernel\tB-Application\tKernel\tO\nimage\tO\timage\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11707812\tO\t11707812\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11707812/\tO\thttps://stackoverflow.com/questions/11707812/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\nsome\tO\tsome\tO\nimage\tO\timage\tO\nprocessing\tO\tprocessing\tO\noperations\tO\toperations\tO\non\tO\ton\tO\nGPU\tB-Device\tGPU\tO\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nhistogram\tB-User_Interface_Element\thistogram\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nwritten\tO\twritten\tO\nand\tO\tand\tO\ntested\tO\ttested\tO\nthe\tO\tthe\tO\nprocessing\tO\tprocessing\tO\nkernels\tO\tkernels\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntested\tO\ttested\tO\nthe\tO\tthe\tO\nhistogram\tB-Function_Name\thistogram\tO\nkernel\tO\tkernel\tO\nfor\tO\tfor\tO\nsamples\tO\tsamples\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\npictures\tB-User_Interface_Element\tpictures\tO\nseparately\tO\tseparately\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nboth\tO\tboth\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nput\tO\tput\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\none\tO\tone\tO\nloop\tO\tloop\tO\nI\tO\tI\tO\nget\tO\tget\tO\nnothing\tO\tnothing\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nhistogram\tB-Function_Name\thistogram\tO\nkernel\tO\tkernel\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1091\tI-Code_Block\tQ_1091\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nupdating\tO\tupdating\tO\nhistogram\tB-Function_Name\thistogram\tO\nvectors\tB-Data_Structure\tvectors\tO\nfor\tO\tfor\tO\nred\tB-Value\tred\tO\n,\tO\t,\tO\ngreen\tB-Value\tgreen\tO\n,\tO\t,\tO\nand\tO\tand\tO\nblue\tB-Value\tblue\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\n'\tO\t'\tO\nl\tB-Variable_Name\tl\tO\n'\tO\t'\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvectors\tB-Data_Structure\tvectors\tO\n)\tO\t)\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ncomment\tO\tcomment\tO\nout\tO\tout\tO\natomicAdds\tB-Library_Function\tatomicAdds\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\nproduces\tO\tproduces\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nbut\tO\tbut\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nhistogram\tB-User_Interface_Element\thistogram\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthey\tO\tthey\tO\nwork\tO\twork\tO\ntogether\tO\ttogether\tO\n?\tO\t?\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1092\tI-Code_Block\tQ_1092\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nto\tO\tto\tO\nhost\tO\thost\tO\nmemory\tO\tmemory\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nvideo\tB-User_Interface_Element\tvideo\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nare\tO\tare\tO\nc\tB-Language\tc\tO\ncodes\tO\tcodes\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\ncall\tO\tcall\tO\ntheir\tO\ttheir\tO\nkernels\tO\tkernels\tO\nwith\tO\twith\tO\ndimGrid\tB-Variable_Name\tdimGrid\tO\nand\tO\tand\tO\ndimBlock\tB-Variable_Name\tdimBlock\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ngiven\tO\tgiven\tO\nas\tO\tas\tO\ninputs\tO\tinputs\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1093\tI-Code_Block\tQ_1093\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nhistogram\tB-Function_Name\thistogram\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\nbetter\tO\tbetter\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nit\tO\tit\tO\nmatter\tO\tmatter\tO\n?\tO\t?\tO\n\t\nEdit2\tO\tEdit2\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\n-arch\tB-Code_Block\t-arch\tO\n=\tI-Code_Block\t=\tO\nsm_11\tI-Code_Block\tsm_11\tO\noption\tO\toption\tO\nfor\tO\tfor\tO\ncompilation\tO\tcompilation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nread\tO\tread\tO\nit\tO\tit\tO\nsomewhere\tO\tsomewhere\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nanyone\tO\tanyone\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nhow\tO\thow\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nchoose\tO\tchoose\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11707812\tO\t11707812\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11707812/\tO\thttps://stackoverflow.com/questions/11707812/\tO\n\t\n\t\nperhaps\tO\tperhaps\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nwithout\tO\twithout\tO\n-arch\tB-Code_Block\t-arch\tO\n=\tI-Code_Block\t=\tO\nsm_11\tI-Code_Block\tsm_11\tO\nflag\tO\tflag\tO\n.\tO\t.\tO\n\t\nsm\tB-Device\tsm\tO\n1.1\tB-Version\t1.1\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\narchitecture\tO\tarchitecture\tO\nwhich\tO\twhich\tO\nsupported\tO\tsupported\tO\natomic\tO\tatomic\tO\noperations\tO\toperations\tO\non\tO\ton\tO\nglobal\tO\tglobal\tO\nmemory\tO\tmemory\tO\nwhile\tO\twhile\tO\nyour\tO\tyour\tO\nGPU\tB-Device\tGPU\tO\nsupports\tO\tsupports\tO\nSM\tB-Device\tSM\tO\n2.0\tB-Version\t2.0\tO\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nreason\tO\treason\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nfor\tO\tfor\tO\nSM\tB-Device\tSM\tO\n1.1\tB-Version\t1.1\tO\nunless\tO\tunless\tO\nfor\tO\tfor\tO\nbackward\tO\tbackward\tO\ncompatibility\tO\tcompatibility\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\npossible\tO\tpossible\tO\nissue\tO\tissue\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\nSM\tB-Device\tSM\tO\n1.1\tB-Version\t1.1\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\natomic\tB-Application\tatomic\tO\noperations\tO\toperations\tO\non\tO\ton\tO\n64-bit\tO\t64-bit\tO\nints\tB-Data_Type\tints\tO\nin\tO\tin\tO\nglobal\tO\tglobal\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nsuggest\tO\tsuggest\tO\nyou\tO\tyou\tO\nrecompile\tO\trecompile\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nwithout\tO\twithout\tO\n-arch\tB-Code_Block\t-arch\tO\noption\tO\toption\tO\n,\tO\t,\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\n-arch\tB-Code_Block\t-arch\tO\n=\tI-Code_Block\t=\tO\nsm_20\tI-Code_Block\tsm_20\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34097315\tO\t34097315\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34097315/\tO\thttps://stackoverflow.com/questions/34097315/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nThe\tO\tThe\tO\nlast\tO\tlast\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nAndroid\tB-Application\tAndroid\tO\nStudio\tI-Application\tStudio\tO\n(\tO\t(\tO\n1.5\tB-Version\t1.5\tO\n)\tO\t)\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nusing\tO\tusing\tO\nDrawer\tB-Library_Class\tDrawer\tO\nLayout\tI-Library_Class\tLayout\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nposition\tO\tposition\tO\nits\tO\tits\tO\ncall\tO\tcall\tO\nGravityCompat\tB-Library_Class\tGravityCompat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ncomponents\tO\tcomponents\tO\nand\tO\tand\tO\nmodify\tO\tmodify\tO\nit\tO\tit\tO\n,\tO\t,\tO\nputting\tO\tputting\tO\nthe\tO\tthe\tO\nDrawer\tB-User_Interface_Element\tDrawer\tO\nout\tO\tout\tO\nfrom\tO\tfrom\tO\nright\tO\tright\tO\nto\tO\tto\tO\nleft\tO\tleft\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4167\tI-Code_Block\tQ_4167\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nXML\tB-Language\tXML\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4168\tI-Code_Block\tQ_4168\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nGravityCompat\tB-Library_Class\tGravityCompat\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nto\tO\tto\tO\nput\tO\tput\tO\nright\tO\tright\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nEND\tB-Library_Variable\tEND\tO\nor\tO\tor\tO\nSTART\tB-Library_Variable\tSTART\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nI\tO\tI\tO\nput\tO\tput\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nXML\tB-Language\tXML\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncrash\tO\tcrash\tO\n.\tO\t.\tO\n\t\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4169\tI-Code_Block\tQ_4169\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34097315\tO\t34097315\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34097315/\tO\thttps://stackoverflow.com/questions/34097315/\tO\n\t\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\nreplace\tO\treplace\tO\non\tO\ton\tO\nDrawerLayout\tB-Library_Class\tDrawerLayout\tO\nthe\tO\tthe\tO\ntools:openDrawer\tB-Code_Block\ttools:openDrawer\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nstart\tI-Code_Block\tstart\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nwith\tO\twith\tO\ntools:openDrawer\tB-Code_Block\ttools:openDrawer\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nend\tI-Code_Block\tend\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntoggle\tO\ttoggle\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nopens\tO\topens\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\ndrawer\tB-User_Interface_Element\tdrawer\tO\n,\tO\t,\tO\nand\tO\tand\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nonly\tO\tonly\tO\nright\tO\tright\tO\ndrawer\tB-User_Interface_Element\tdrawer\tO\nit\tO\tit\tO\nthrows\tO\tthrows\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nbutton\tB-User_Interface_Element\tbutton\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nactionbar\tB-User_Interface_Element\tactionbar\tO\n(\tO\t(\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nside\tO\tside\tO\n)\tO\t)\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\ndrawer\tB-User_Interface_Element\tdrawer\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\napp_bar.xml\tB-File_Name\tapp_bar.xml\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4876\tI-Code_Block\tA_4876\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\nonCreate\tB-Function_Name\tonCreate\tO\nmethod\tO\tmethod\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nActivity\tB-Class_Name\tActivity\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4877\tI-Code_Block\tA_4877\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ndrawer\tB-User_Interface_Element\tdrawer\tO\nhere\tO\there\tO\nor\tO\tor\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\n:)\tO\t:)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34097315\tO\t34097315\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34097315/\tO\thttps://stackoverflow.com/questions/34097315/\tO\n\t\n\t\nuse\tO\tuse\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ndrawerLayout\tB-Library_Class\tdrawerLayout\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4918\tI-Code_Block\tA_4918\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5754934\tO\t5754934\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5754934/\tO\thttps://stackoverflow.com/questions/5754934/\tO\n\t\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\n=\tB-Code_Block\t=\tB-Code_Block\nstatement\tO\tstatement\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nLIKE\tB-Code_Block\tLIKE\tB-Code_Block\none\tO\tone\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nintegers\tB-Data_Type\tintegers\tO\n?\tO\t?\tO\n\t\nby\tO\tby\tO\neg\tO\teg\tO\n.\tO\t.\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_407\tI-Code_Block\tQ_407\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nLIKE\tB-Code_Block\tLIKE\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n=\tB-Code_Block\t=\tB-Code_Block\nbecause\tO\tbecause\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\n%\tB-Code_Block\t%\tB-Code_Block\nwhen\tO\twhen\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nfilter\tO\tfilter\tO\nfor\tO\tfor\tO\nFOOID.\tB-Variable_Name\tFOOID.\tO\n.\tO\t.\tO\n\t\nSQL\tB-Application\tSQL\tO\nServer\tI-Application\tServer\tO\n2005\tB-Version\t2005\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n1\tO\t1\tO\n@Martin\tB-User_Name\t@Martin\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5754934\tO\t5754934\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5754934/\tO\thttps://stackoverflow.com/questions/5754934/\tO\n\t\n\t\nUse\tO\tUse\tO\nNULL\tB-Value\tNULL\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nparameter\tO\tparameter\tO\nvalue\tO\tvalue\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n%\tB-Value\t%\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nwildcard\tO\twildcard\tO\ncondition\tO\tcondition\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4259\tI-Code_Block\tA_4259\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5754934\tO\t5754934\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5754934/\tO\thttps://stackoverflow.com/questions/5754934/\tO\n\t\n\t\nUse\tO\tUse\tO\na\tO\ta\tO\nCASE\tB-Code_Block\tCASE\tB-Code_Block\nstatement\tO\tstatement\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nan\tO\tan\tO\ninput\tO\tinput\tO\nstring\tB-Data_Type\tstring\tO\nto\tO\tto\tO\nan\tO\tan\tO\ninteger\tB-Data_Type\tinteger\tO\n.\tO\t.\tO\n\t\nConvert\tO\tConvert\tO\nthe\tO\tthe\tO\nwildcard\tO\twildcard\tO\n%\tB-Value\t%\tB-Code_Block\nto\tO\tto\tO\na\tO\ta\tO\nNULL\tB-Value\tNULL\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nbetter\tO\tbetter\tO\nperformance\tO\tperformance\tO\nthan\tO\tthan\tO\nimplicitly\tO\timplicitly\tO\nconverting\tO\tconverting\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nint\tB-Data_Type\tint\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nto\tO\tto\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_635\tI-Code_Block\tA_635\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5729304\tO\t5729304\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5729304/\tO\thttps://stackoverflow.com/questions/5729304/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\njust\tO\tjust\tO\none\tO\tone\tO\nsimple\tO\tsimple\tO\nsilly\tO\tsilly\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nFacebook\tB-Website\tFacebook\tO\non\tO\ton\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n?\tO\t?\tO\n\t\nAdd\tO\tAdd\tO\nan\tO\tan\tO\neasy\tO\teasy\tO\nUIWebView\tB-Library_Class\tUIWebView\tO\nconnecting\tO\tconnecting\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nUrl\tO\tUrl\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nFaceboook\tB-Website\tFaceboook\tO\npage\tO\tpage\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\n;\tO\t;\tO\n\t\nImplement\tO\tImplement\tO\nthe\tO\tthe\tO\nAPI\tB-Library\tAPI\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\nseveral\tO\tseveral\tO\nanswer\tO\tanswer\tO\nall\tO\tall\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\nalready\tO\talready\tO\ngave\tO\tgave\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nforum\tO\tforum\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n\t\nLuigi\tB-User_Name\tLuigi\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5729304\tO\t5729304\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5729304/\tO\thttps://stackoverflow.com/questions/5729304/\tO\n\t\n\t\nThe\tO\tThe\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\nit\tO\tit\tO\ndepends\tO\tdepends\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nbut\tO\tbut\tO\nIMHO\tO\tIMHO\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nasking\tO\tasking\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nbetter\tO\tbetter\tO\nquestion\tO\tquestion\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n\"\tO\t\"\tO\nwhich\tO\twhich\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nintegrating\tO\tintegrating\tO\nwith\tO\twith\tO\nFB\tB-Website\tFB\tO\nwould\tO\twould\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nexperience\tO\texperience\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nusers\tO\tusers\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\n,\tO\t,\tO\nwould\tO\twould\tO\nyour\tO\tyour\tO\nusers\tO\tusers\tO\nbe\tO\tbe\tO\nbest\tO\tbest\tO\nserved\tO\tserved\tO\nby\tO\tby\tO\n\"\tO\t\"\tO\nframing\tO\tframing\tO\n\"\tO\t\"\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nFB\tB-Website\tFB\tO\nweb\tO\tweb\tO\ninterface\tO\tinterface\tO\nin\tO\tin\tO\na\tO\ta\tO\nUIWebView\tB-Library_Class\tUIWebView\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nmaybe\tO\tmaybe\tO\nthey\tO\tthey\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nhappier\tO\thappier\tO\nwith\tO\twith\tO\njust\tO\tjust\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\nFB\tB-Website\tFB\tO\nfunctionality\tO\tfunctionality\tO\nembedded\tO\tembedded\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nupload\tO\tupload\tO\nto\tO\tto\tO\nFB\tB-Website\tFB\tO\n\"\tO\t\"\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\niMovie\tB-Application\tiMovie\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\ndecide\tO\tdecide\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\ntends\tO\ttends\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nfairly\tO\tfairly\tO\nobvious\tO\tobvious\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\ndoes\tO\tdoes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nyour\tO\tyour\tO\nusers\tO\tusers\tO\nwill\tO\twill\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n-\tO\t-\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\npart\tO\tpart\tO\nfar\tO\tfar\tO\nbetter\tO\tbetter\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nus\tO\tus\tO\ndo\tO\tdo\tO\n!\tO\t!\tO\n\t\n:-)\tO\t:-)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5729304\tO\t5729304\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5729304/\tO\thttps://stackoverflow.com/questions/5729304/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nanswered\tO\tanswered\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nShareKit\tB-Library\tShareKit\tO\niOS\tB-Operating_System\tiOS\tO\n-\tO\t-\tO\ndifferent\tO\tdifferent\tO\ncontent\tO\tcontent\tO\nfor\tO\tfor\tO\ndifferent\tO\tdifferent\tO\nplatforms\tO\tplatforms\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nI\tO\tI\tO\nused\tO\tused\tO\nShareKit\tB-Library\tShareKit\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\npopular\tO\tpopular\tO\nand\tO\tand\tO\nindeed\tO\tindeed\tO\nwas\tO\twas\tO\na\tO\ta\tO\nbreeze\tO\tbreeze\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\neasy\tO\teasy\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nCheers\tO\tCheers\tO\n,\tO\t,\tO\n\t\nOded\tB-User_Name\tOded\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17468860\tO\t17468860\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17468860/\tO\thttps://stackoverflow.com/questions/17468860/\tO\n\t\n\t\nI\tO\tI\tO\nreally\tO\treally\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\nPlease.\tO\tPlease.\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ntooltip\tB-User_Interface_Element\ttooltip\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\ngraph\tB-Data_Structure\tgraph\tO\n:\tO\t:\tO\nhttp://jsfiddle.net/dvqFj/1/\tO\thttp://jsfiddle.net/dvqFj/1/\tO\n\t\nAny\tO\tAny\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nany\tO\tany\tO\nsimilar\tO\tsimilar\tO\nexample\tO\texample\tO\nin\tO\tin\tO\nD3.js\tB-Library\tD3.js\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nwithout\tO\twithout\tO\nno\tO\tno\tO\nsucess\tO\tsucess\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1772\tI-Code_Block\tQ_1772\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17468860\tO\t17468860\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17468860/\tO\thttps://stackoverflow.com/questions/17468860/\tO\n\t\n\t\nYou\tO\tYou\tO\nalmost\tO\talmost\tO\nhad\tO\thad\tO\nit\tO\tit\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\nmouseover\tB-Library_Function\tmouseover\tB-Code_Block\nfunctions\tO\tfunctions\tO\njust\tO\tjust\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\npath\tO\tpath\tO\nelements\tO\telements\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2294\tI-Code_Block\tA_2294\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhttp://jsfiddle.net/dvqFj/5/\tO\thttp://jsfiddle.net/dvqFj/5/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17468860\tO\t17468860\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17468860/\tO\thttps://stackoverflow.com/questions/17468860/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nclear\tO\tclear\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nwhether\tO\twhether\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nan\tO\tan\tO\noption\tO\toption\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\none\tO\tone\tO\npossibility\tO\tpossibility\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ntitle\tO\ttitle\tO\nelement\tO\telement\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nimplementing\tO\timplementing\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ntooltip\tB-User_Interface_Element\ttooltip\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nbeing\tO\tbeing\tO\nstandard\tO\tstandard\tO\nand\tO\tand\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nexpense\tO\texpense\tO\nof\tO\tof\tO\nreducing\tO\treducing\tO\npossible\tO\tpossible\tO\ncustomisation\tO\tcustomisation\tO\n.\tO\t.\tO\n\t\nhttp://jsfiddle.net/ezUex/\tO\thttp://jsfiddle.net/ezUex/\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2293\tI-Code_Block\tA_2293\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n"
  },
  {
    "path": "resources/annotated_ner_data/StackOverflow/test.txt",
    "content": "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.com/questions/13968390/\tO\thttps://stackoverflow.com/questions/13968390/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\ncustom\tO\tcustom\tO\nadapter\tB-Variable_Name\tadapter\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nListView\tB-Library_Class\tListView\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\ncreating\tO\tcreating\tO\nArrayList\tB-Library_Class\tArrayList\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1327\tI-Code_Block\tQ_1327\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1328\tI-Code_Block\tQ_1328\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncheckbox\tB-User_Interface_Element\tcheckbox\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\nhappens\tO\thappens\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmanage\tO\tmanage\tO\ntoggling\tO\ttoggling\tO\ncheckbox\tB-User_Interface_Element\tcheckbox\tO\nstate\tO\tstate\tO\nmanually\tO\tmanually\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1329\tI-Code_Block\tQ_1329\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nbefore\tO\tbefore\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nsetChoiceMode\tB-Library_Function\tsetChoiceMode\tO\nmethod\tO\tmethod\tO\ncall\tO\tcall\tO\n)\tO\t)\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\neffect\tO\teffect\tO\n?\tO\t?\tO\n\t\nmy\tO\tmy\tO\nR.layout.listview_item_text.xml\tB-File_Name\tR.layout.listview_item_text.xml\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1330\tI-Code_Block\tQ_1330\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nadapter\tB-Variable_Name\tadapter\tO\nI\tO\tI\tO\ninflate\tO\tinflate\tO\ncheckbox\tB-User_Interface_Element\tcheckbox\tO\nlayout\tO\tlayout\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1331\tI-Code_Block\tQ_1331\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nlistview_item_checkbox.xml\tB-File_Name\tlistview_item_checkbox.xml\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1332\tI-Code_Block\tQ_1332\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13968390\tO\t13968390\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13968390/\tO\thttps://stackoverflow.com/questions/13968390/\tO\n\t\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nwidget\tB-User_Interface_Element\twidget\tO\nthat\tO\tthat\tO\nimplements\tO\timplements\tO\nCheckable\tB-Library_Class\tCheckable\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nwith\tO\twith\tO\nandroid.R.layout.simple_list_item_multiple_choice\tB-Library_Variable\tandroid.R.layout.simple_list_item_multiple_choice\tB-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\ntwo\tO\ttwo\tO\nlines\tO\tlines\tO\nthen\tO\tthen\tO\nimplement\tO\timplement\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13968390\tO\t13968390\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13968390/\tO\thttps://stackoverflow.com/questions/13968390/\tO\n\t\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1782\tI-Code_Block\tA_1782\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTry\tO\tTry\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1783\tI-Code_Block\tA_1783\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\n-\tO\t-\tO\nimprove\tO\timprove\tO\nyur\tO\tyur\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\ncreate\tO\tcreate\tO\nCheckableFrameLayout\tB-Library_Class\tCheckableFrameLayout\tB-Code_Block\nas\tO\tas\tO\nparent\tO\tparent\tO\nlayout\tO\tlayout\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nList\tB-Library_Class\tList\tO\nItem\tI-Library_Class\tItem\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nListView\tB-Library_Class\tListView\tB-Code_Block\nkeep\tO\tkeep\tO\nBooleanSparseArray\tB-Library_Class\tBooleanSparseArray\tO\nof\tO\tof\tO\nchecked\tO\tchecked\tO\npositions\tO\tpositions\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nmethod\tO\tmethod\tO\ngetCheckedItemPositions())\tB-Library_Function\tgetCheckedItemPositions())\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\ngrepcode\tB-Application\tgrepcode\tO\n)\tO\t)\tO\nit\tO\tit\tO\nset\tO\tset\tO\nView\tB-Library_Class\tView\tB-Code_Block\nchecked\tO\tchecked\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nby\tO\tby\tO\nitself\tO\titself\tO\nonly\tO\tonly\tO\nif\tO\tif\tO\nView\tB-Library_Class\tView\tB-Code_Block\nis\tO\tis\tO\nimplementing\tO\timplementing\tO\nCheckable\tB-Library_Class\tCheckable\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\ncreate\tO\tcreate\tO\nCheckableFrameLayout\tB-Library_Class\tCheckableFrameLayout\tB-Code_Block\nand\tO\tand\tO\nsat\tO\tsat\tO\nas\tO\tas\tO\nmain\tO\tmain\tO\nparent\tO\tparent\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthese\tO\tthese\tO\ncases\tO\tcases\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nadapter\tB-Variable_Name\tadapter\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26896100\tO\t26896100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26896100/\tO\thttps://stackoverflow.com/questions/26896100/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\nthis\tO\tthis\tO\non\tO\ton\tO\na\tO\ta\tO\nmac\tB-Device\tmac\tO\nand\tO\tand\tO\nit\tO\tit\tO\ncompiles\tO\tcompiles\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nterminal\tB-Application\tterminal\tO\nbut\tO\tbut\tO\nafter\tO\tafter\tO\ni\tO\ti\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\njava\tB-Value\tjava\tO\nLab9\tI-Value\tLab9\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nput\tO\tput\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nterminal\tB-Application\tterminal\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3081\tI-Code_Block\tQ_3081\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n//compiles\tO\t//compiles\tO\nbut\tO\tbut\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3082\tI-Code_Block\tQ_3082\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26896100\tO\t26896100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26896100/\tO\thttps://stackoverflow.com/questions/26896100/\tO\n\t\n\t\nThe\tO\tThe\tO\nprogram\tO\tprogram\tO\nis\tO\tis\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nAdd\tO\tAdd\tO\na\tO\ta\tO\nprompt\tO\tprompt\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3716\tI-Code_Block\tA_3716\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30634017\tO\t30634017\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30634017/\tO\thttps://stackoverflow.com/questions/30634017/\tO\n\t\n\t\ni\tO\ti\tO\n'm\tO\t'm\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\nandroid\tB-Operating_System\tandroid\tO\napplication\tO\tapplication\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\ndetect\tO\tdetect\tO\ntraffic\tO\ttraffic\tO\njams\tO\tjams\tO\nand\tO\tand\tO\nmap\tO\tmap\tO\non\tO\ton\tO\nopenstreetmaps.in\tB-Application\topenstreetmaps.in\tO\nnavigating\tO\tnavigating\tO\nbetween\tO\tbetween\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\nlocation\tO\tlocation\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndestination\tO\tdestination\tO\nif\tO\tif\tO\na\tO\ta\tO\ntraffic\tO\ttraffic\tO\njam\tO\tjam\tO\nis\tO\tis\tO\ndetected\tO\tdetected\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nshould\tO\tshould\tO\nsuggest\tO\tsuggest\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nalternative\tO\talternative\tO\nroutes.how\tO\troutes.how\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nget\tO\tget\tO\nthese\tO\tthese\tO\nalternative\tO\talternative\tO\nroutes\tO\troutes\tO\nfrom\tO\tfrom\tO\nopenstreetmaps\tB-Application\topenstreetmaps\tO\n.\tO\t.\tO\n\t\nA1\tB-Variable_Name\tA1\tO\n-\tO\t-\tO\nalternative\tO\talternative\tO\nroute\tO\troute\tO\n1\tO\t1\tO\n,\tO\t,\tO\n\t\nA2\tB-Variable_Name\tA2\tO\n-\tO\t-\tO\nalternative\tO\talternative\tO\nroute\tO\troute\tO\n2\tO\t2\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30634017\tO\t30634017\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30634017/\tO\thttps://stackoverflow.com/questions/30634017/\tO\n\t\n\t\nSome\tO\tSome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nonline\tO\tonline\tO\nrouters\tO\trouters\tO\nfor\tO\tfor\tO\nOSM\tB-Application\tOSM\tO\nhave\tO\thave\tO\nan\tO\tan\tO\navoid\tO\tavoid\tO\nareas\tO\tareas\tO\nfeature\tO\tfeature\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30634017\tO\t30634017\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30634017/\tO\thttps://stackoverflow.com/questions/30634017/\tO\n\t\n\t\nGraphHopper\tB-Library\tGraphHopper\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nrouting\tO\trouting\tO\ninfluenced\tO\tinfluenced\tO\nby\tO\tby\tO\ntraffic\tO\ttraffic\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nblogged\tO\tblogged\tO\nrecently\tO\trecently\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\nblock\tO\tblock\tO\ncertain\tO\tcertain\tO\nstreets\tO\tstreets\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nblocking\tO\tblocking\tO\nweighting\tO\tweighting\tO\ndescribed\tO\tdescribed\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30514307\tO\t30514307\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30514307/\tO\thttps://stackoverflow.com/questions/30514307/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndesign\tO\tdesign\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nfor\tO\tfor\tO\nstoring\tO\tstoring\tO\nskills\tO\tskills\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nperson\tO\tperson\tO\n,\tO\t,\tO\na\tO\ta\tO\nperson\tO\tperson\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\nnone\tO\tnone\tO\n,\tO\t,\tO\none\tO\tone\tO\nor\tO\tor\tO\nseveral\tO\tseveral\tO\nskills\tO\tskills\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nway\tO\tway\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nit\tO\tit\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\neasy\tO\teasy\tO\nmodification\tO\tmodification\tO\nof\tO\tof\tO\nskill\tO\tskill\tO\nand\tO\tand\tO\nfast\tO\tfast\tO\nsearch\tO\tsearch\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nthinking\tO\tthinking\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nbit\tO\tbit\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\neach\tO\teach\tO\nbit\tO\tbit\tO\nposition\tO\tposition\tO\nrepresents\tO\trepresents\tO\na\tO\ta\tO\nskill\tO\tskill\tO\n,\tO\t,\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\na\tO\ta\tO\nrelation\tO\trelation\tO\ntable\tB-Data_Structure\ttable\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\nrow\tB-Data_Structure\trow\tO\nlink\tO\tlink\tO\na\tO\ta\tO\nperson\tO\tperson\tO\nto\tO\tto\tO\na\tO\ta\tO\nSKILL\tO\tSKILL\tO\n\t\n3\tO\t3\tO\n.\tO\t.\tO\neach\tO\teach\tO\nskill\tO\tskill\tO\nas\tO\tas\tO\na\tO\ta\tO\nfield\tO\tfield\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nperson\tO\tperson\tO\n\t\nAny\tO\tAny\tO\nother\tO\tother\tO\nsuggestion\tO\tsuggestion\tO\nor\tO\tor\tO\nwhat\tO\twhat\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\naim\tO\taim\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30514307\tO\t30514307\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30514307/\tO\thttps://stackoverflow.com/questions/30514307/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nclasic\tO\tclasic\tO\nmany\tO\tmany\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\nrelationship\tO\trelationship\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nsuggest\tO\tsuggest\tO\na\tO\ta\tO\npersons\tB-Variable_Name\tpersons\tO\ntable\tB-Data_Structure\ttable\tO\n,\tO\t,\tO\nskills\tB-Variable_Name\tskills\tO\ntable\tB-Data_Structure\ttable\tO\nand\tO\tand\tO\na\tO\ta\tO\npersonToSkill\tB-Variable_Name\tpersonToSkill\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nother\tO\tother\tO\nsuggested\tO\tsuggested\tO\nsolutions\tO\tsolutions\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\ntempting\tO\ttempting\tO\nat\tO\tat\tO\nfirst\tO\tfirst\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nboth\tO\tboth\tO\na\tO\ta\tO\nmaitnence\tO\tmaitnence\tO\nhell\tO\thell\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30514307\tO\t30514307\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30514307/\tO\thttps://stackoverflow.com/questions/30514307/\tO\n\t\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\na\tO\ta\tO\npersons\tB-Variable_Name\tpersons\tB-Code_Block\ntable\tB-Data_Structure\ttable\tO\n(\tO\t(\tO\nall\tO\tall\tO\ncode\tO\tcode\tO\nexamples\tO\texamples\tO\nuse\tO\tuse\tO\nMySQL\tB-Application\tMySQL\tO\nsyntax\tO\tsyntax\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4337\tI-Code_Block\tA_4337\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\npretend\tO\tpretend\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4338\tI-Code_Block\tA_4338\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nskills\tB-Variable_Name\tskills\tB-Code_Block\ntable\tB-Data_Structure\ttable\tO\nto\tO\tto\tO\nhold\tO\thold\tO\nall\tO\tall\tO\nknown\tO\tknown\tO\nskills\tO\tskills\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4339\tI-Code_Block\tA_4339\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFinally\tO\tFinally\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ntable\tB-Data_Structure\ttable\tO\nthat\tO\tthat\tO\nassociates\tO\tassociates\tO\na\tO\ta\tO\nperson\tB-Variable_Name\tperson\tB-Code_Block\nwith\tO\twith\tO\na\tO\ta\tO\nskill\tB-Variable_Name\tskill\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4340\tI-Code_Block\tA_4340\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nprimary\tO\tprimary\tO\nkey\tO\tkey\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nno\tO\tno\tO\nperson\tB-Variable_Name\tperson\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nskill\tB-Variable_Name\tskill\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nonce\tO\tonce\tO\nand\tO\tand\tO\nboth\tO\tboth\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nare\tO\tare\tO\nforeign\tO\tforeign\tO\nkey\tO\tkey\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\nrespective\tO\trespective\tO\ntables\tB-Data_Structure\ttables\tO\n.\tO\t.\tO\n\t\nAssume\tO\tAssume\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4341\tI-Code_Block\tA_4341\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ndata\tO\tdata\tO\nwould\tO\twould\tO\nindicate\tO\tindicate\tO\nthat\tO\tthat\tO\nJohn\tB-Value\tJohn\tO\nDoe\tI-Value\tDoe\tO\n,\tO\t,\tO\nBenny\tB-Value\tBenny\tO\nHill\tI-Value\tHill\tO\nand\tO\tand\tO\nLinus\tB-Value\tLinus\tO\nTorvalds\tI-Value\tTorvalds\tO\nall\tO\tall\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nskill\tO\tskill\tO\n\"\tO\t\"\tO\nSwimming\tB-Value\tSwimming\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nBenny\tB-Value\tBenny\tO\nHill\tI-Value\tHill\tO\nand\tO\tand\tO\nDonald\tB-Value\tDonald\tO\nKnuth\tI-Value\tKnuth\tO\nare\tO\tare\tO\nboth\tO\tboth\tO\npilots\tB-Value\tpilots\tO\n.\tO\t.\tO\n\t\nLinus\tB-Value\tLinus\tO\nTorvalds\tI-Value\tTorvalds\tO\ncreated\tI-Value\tcreated\tO\na\tI-Value\ta\tO\nkernel\tI-Value\tkernel\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nDonald\tB-Value\tDonald\tO\nKnuth\tI-Value\tKnuth\tO\nis\tO\tis\tO\na\tO\ta\tO\nwriter\tB-Value\twriter\tO\n.\tO\t.\tO\n\t\nNone\tO\tNone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npersons\tO\tpersons\tO\nare\tO\tare\tO\nan\tO\tan\tO\nAstronaut\tB-Value\tAstronaut\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14792002\tO\t14792002\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14792002/\tO\thttps://stackoverflow.com/questions/14792002/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nalarm\tB-Library_Class\talarm\tO\nmanager\tI-Library_Class\tmanager\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nmaintain\tO\tmaintain\tO\nthe\tO\tthe\tO\nalarms\tO\talarms\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nreboots\tO\treboots\tO\nso\tO\tso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nread\tO\tread\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nboot\tB-Library_Class\tboot\tO\nreceiver\tI-Library_Class\treceiver\tO\nwhich\tO\twhich\tO\nextends\tO\textends\tO\nbroadcastReceiver\tB-Library_Class\tbroadcastReceiver\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nreceiver\tB-Library_Class\treceiver\tO\nitself\tO\titself\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nboot\tB-Library_Class\tboot\tO\nreceiver\tI-Library_Class\treceiver\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonReceive\tB-Library_Function\tonReceive\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nbroadcastReceiver\tB-Library_Class\tbroadcastReceiver\tO\nactually\tO\tactually\tO\ntakes\tO\ttakes\tO\nme\tO\tme\tO\nto\tO\tto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nactivity\tB-Library_Class\tactivity\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nintent\tB-Library_Class\tintent\tO\nshould\tO\tshould\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\npaste\tO\tpaste\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nonReceive\tB-Library_Function\tonReceive\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbootReceiver\tB-Library_Class\tbootReceiver\tO\n?\tO\t?\tO\n\t\nor\tO\tor\tO\nwhat\tO\twhat\tO\nexactly\tO\texactly\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbootReceiver\tB-Library_Class\tbootReceiver\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nvery\tO\tvery\tO\nconfused\tO\tconfused\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nalarms\tO\talarms\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ngiven\tO\tgiven\tO\neach\tO\teach\tO\none\tO\tone\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nrequestCode\tB-Library_Variable\trequestCode\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14792002\tO\t14792002\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14792002/\tO\thttps://stackoverflow.com/questions/14792002/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nseparate\tO\tseparate\tO\nentity\tO\tentity\tO\n\"\tO\t\"\tO\nBoot\tB-Library_Class\tBoot\tO\nReceiver\tI-Library_Class\tReceiver\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nAndroid\tB-Operating_System\tAndroid\tO\n.\tO\t.\tO\n\t\nBoot\tB-Library_Class\tBoot\tO\nreceiver\tI-Library_Class\treceiver\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nbroadcast\tB-Library_Class\tbroadcast\tO\nreceiver\tI-Library_Class\treceiver\tO\nwhich\tO\twhich\tO\nresponds\tO\tresponds\tO\nto\tO\tto\tO\nintent\tB-Library_Class\tintent\tO\nwith\tO\twith\tO\naction\tO\taction\tO\nandroid.intent.action.BOOT_COMPLETED\tB-Library_Variable\tandroid.intent.action.BOOT_COMPLETED\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nthings\tO\tthings\tO\n:\tO\t:\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\ninherit\tO\tinherit\tO\nfrom\tO\tfrom\tO\nBroadcastReceiver\tB-Library_Class\tBroadcastReceiver\tO\n\t\nAdd\tO\tAdd\tO\nit\tO\tit\tO\nto\tO\tto\tO\nManifest\tB-File_Name\tManifest\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\ninfo\tO\tinfo\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nhandle\tO\thandle\tO\nandroid.intent.action.BOOT_COMPLETED\tB-Library_Variable\tandroid.intent.action.BOOT_COMPLETED\tO\n\t\nin\tO\tin\tO\nonReceive\tB-Library_Function\tonReceive\tO\ncode\tO\tcode\tO\nread\tO\tread\tO\nall\tO\tall\tO\nyour\tO\tyour\tO\nalarms\tO\talarms\tO\nfrom\tO\tfrom\tO\npersistent\tO\tpersistent\tO\nstorage\tO\tstorage\tO\nand\tO\tand\tO\nset\tO\tset\tO\nthem\tO\tthem\tO\nagain\tO\tagain\tO\n(\tO\t(\tO\nso\tO\tso\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\nagain\tO\tagain\tO\nafter\tO\tafter\tO\neach\tO\teach\tO\nreboot\tO\treboot\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nP.S\tO\tP.S\tO\n.\tO\t.\tO\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthrough\tO\tthrough\tO\n:\tO\t:\tO\n\t\nhttp://developer.android.com/reference/android/content/BroadcastReceiver.html\tO\thttp://developer.android.com/reference/android/content/BroadcastReceiver.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42091674\tO\t42091674\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42091674/\tO\thttps://stackoverflow.com/questions/42091674/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\npracticing\tO\tpracticing\tO\nfor\tO\tfor\tO\nJava\tB-Language\tJava\tO\nfresher\tO\tfresher\tO\ninterview\tO\tinterview\tO\ncoding\tO\tcoding\tO\nexamples\tO\texamples\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nduplicate\tO\tduplicate\tO\nnumbers\tO\tnumbers\tO\nbetween\tO\tbetween\tO\n1\tB-Value\t1\tB-Code_Block\nto\tO\tto\tO\nN\tB-Variable_Name\tN\tB-Code_Block\n,\tO\t,\tO\nwhere\tO\twhere\tO\nN\tB-Variable_Name\tN\tO\nis\tO\tis\tO\ngiven\tO\tgiven\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnumbers\tO\tnumbers\tO\nthemselves\tO\tthemselves\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5344\tI-Code_Block\tQ_5344\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nEclipse\tB-Application\tEclipse\tO\nNeon\tB-Version\tNeon\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5345\tI-Code_Block\tQ_5345\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nthe\tO\tthe\tO\nJVM\tB-Application\tJVM\tO\nheap\tB-Data_Structure\theap\tO\nspace\tO\tspace\tO\nerror\tO\terror\tO\n?\tO\t?\tO\n\t\nCode\tO\tCode\tO\ncompiles\tO\tcompiles\tO\nand\tO\tand\tO\nruns\tO\truns\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42091674\tO\t42091674\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42091674/\tO\thttps://stackoverflow.com/questions/42091674/\tO\n\t\n\t\nDataInputStream\tB-Library_Class\tDataInputStream\tO\nis\tO\tis\tO\nfor\tO\tfor\tO\nbinary\tO\tbinary\tO\nnot\tO\tnot\tO\ntext\tO\ttext\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\ntype\tO\ttype\tO\n4\tO\t4\tO\nbytes\tO\tbytes\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nturned\tO\tturned\tO\ninto\tO\tinto\tO\na\tO\ta\tO\n32-bit\tO\t32-bit\tO\nint\tB-Data_Type\tint\tB-Code_Block\nvalue\tO\tvalue\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n5\tB-Value\t5\tO\n,\tO\t,\tO\n\\n\tB-Value\t\\n\tO\n,\tO\t,\tO\n\\n\tB-Value\t\\n\tO\n,\tO\t,\tO\n\\n\tB-Value\t\\n\tO\nis\tO\tis\tO\nabout\tO\tabout\tO\n900\tO\t900\tO\nmillion\tO\tmillion\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\ncomplains\tO\tcomplains\tO\nabout\tO\tabout\tO\nmemory\tO\tmemory\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nstepping\tO\tstepping\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ndebugger\tB-Application\tdebugger\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\ntext\tO\ttext\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6019\tI-Code_Block\tA_6019\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42091674\tO\t42091674\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42091674/\tO\thttps://stackoverflow.com/questions/42091674/\tO\n\t\n\t\nTry\tO\tTry\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nScanner\tB-Library_Class\tScanner\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nclass\tO\tclass\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nbasic\tO\tbasic\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6022\tI-Code_Block\tA_6022\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40586358\tO\t40586358\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40586358/\tO\thttps://stackoverflow.com/questions/40586358/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nscrapping\tO\tscrapping\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\nto\tO\tto\tO\nget\tO\tget\tO\nproduct\tO\tproduct\tO\ninformations\tO\tinformations\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nof\tO\tof\tO\na\tO\ta\tO\nproduct\tO\tproduct\tO\nattributes\tO\tattributes\tO\nare\tO\tare\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5127\tI-Code_Block\tQ_5127\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nplan\tO\tplan\tO\nis\tO\tis\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproducts\tO\tproducts\tO\n'\tO\t'\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nserver\tB-Application\tserver\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\nthem\tO\tthem\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nsmart\tO\tsmart\tO\nmove\tO\tmove\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nimg\tB-File_Type\timg\tO\nfiles\tO\tfiles\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nserver/link\tO\tserver/link\tO\nthem\tO\tthem\tO\non\tO\ton\tO\nmysql\tB-Application\tmysql\tO\nDB\tO\tDB\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nor\tO\tor\tO\nwill\tO\twill\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\nfast\tO\tfast\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\njust\tO\tjust\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nimg\tB-File_Type\timg\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nimg\tB-File_Type\timg\tO\nsrc\tO\tsrc\tO\nurl\tO\turl\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nwebsite\tO\twebsite\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40586358\tO\t40586358\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40586358/\tO\thttps://stackoverflow.com/questions/40586358/\tO\n\t\n\t\nIt\tO\tIt\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nperformance\tO\tperformance\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nsetup\tO\tsetup\tO\ncompared\tO\tcompared\tO\nto\tO\tto\tO\ntheirs\tO\ttheirs\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\nuser\tO\tuser\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhere\tO\twhere\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nplanet\tO\tplanet\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsafe\tO\tsafe\tO\nto\tO\tto\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nany\tO\tany\tO\ndifferences\tO\tdifferences\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmarginal\tO\tmarginal\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nserving\tO\tserving\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nsame-sized\tO\tsame-sized\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nwebsite\tO\twebsite\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nhot\tO\thot\tO\nlinking\tO\tlinking\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\nimages\tB-User_Interface_Element\timages\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nchange\tO\tchange\tO\ntheir\tO\ttheir\tO\nfilenames\tO\tfilenames\tO\nor\tO\tor\tO\nimages\tB-User_Interface_Element\timages\tO\nyour\tO\tyour\tO\nlinks\tO\tlinks\tO\nwill\tO\twill\tO\nbreak\tO\tbreak\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18549870\tO\t18549870\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18549870/\tO\thttps://stackoverflow.com/questions/18549870/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncustom\tO\tcustom\tO\nlist\tB-HTML_XML_Tag\tlist\tO\nview\tI-HTML_XML_Tag\tview\tO\nlayout\tO\tlayout\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nlist\tB-Data_Structure\tlist\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n5\tO\t5\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\n5-10\tO\t5-10\tO\nitems\tO\titems\tO\nare\tO\tare\tO\nthere\tO\tthere\tO\nin\tO\tin\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nsay\tO\tsay\tO\nonly\tO\tonly\tO\n5\tO\t5\tO\nitems\tO\titems\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nblank\tO\tblank\tO\nspace\tO\tspace\tO\nappears\tO\tappears\tO\nbelow\tO\tbelow\tO\nlist\tB-Data_Structure\tlist\tO\non\tO\ton\tO\ndevices\tO\tdevices\tO\nlarger\tO\tlarger\tO\nin\tO\tin\tO\nheight\tO\theight\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nlook\tO\tlook\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nfollowing\tO\tfollowing\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nlist\tB-Data_Structure\tlist\tO\nrow\tI-Data_Structure\trow\tO\nlayout\tO\tlayout\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1916\tI-Code_Block\tQ_1916\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nlistview\tB-HTML_XML_Tag\tlistview\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1917\tI-Code_Block\tQ_1917\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\ndesire\tO\tdesire\tO\nis\tO\tis\tO\n,\tO\t,\tO\nif\tO\tif\tO\nheight\tO\theight\tO\nof\tO\tof\tO\ndevice\tO\tdevice\tO\nis\tO\tis\tO\nlarger\tO\tlarger\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nlist\tB-Data_Structure\tlist\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\ncomplete\tO\tcomplete\tO\nheight\tO\theight\tO\nby\tO\tby\tO\nscaling\tO\tscaling\tO\nheight\tO\theight\tO\nof\tO\tof\tO\neach\tO\teach\tO\nrow\tB-User_Interface_Element\trow\tO\nin\tO\tin\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\ndisplay\tO\tdisplay\tO\nall\tO\tall\tO\nitems\tO\titems\tO\nw/o\tO\tw/o\tO\nscroll\tO\tscroll\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nitems\tO\titems\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nthen\tO\tthen\tO\nscroll\tO\tscroll\tO\nshould\tO\tshould\tO\nappear\tO\tappear\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\nup\tO\tup\tO\n?\tO\t?\tO\n\t\nUpdate\tO\tUpdate\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nopt-in\tO\topt-in\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ncheck\tO\tcheck\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\nitems\tO\titems\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthere\tO\tthere\tO\nin\tO\tin\tO\nlist\tB-Data_Structure\tlist\tO\nbefore\tO\tbefore\tO\nand\tO\tand\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n5-6\tO\t5-6\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nchoose\tO\tchoose\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nlayout\tO\tlayout\tO\nconsisting\tO\tconsisting\tO\nof\tO\tof\tO\nLinearLayout\tB-HTML_XML_Tag\tLinearLayout\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nfill\tO\tfill\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nblank\tO\tblank\tO\nspace\tO\tspace\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nfor\tO\tfor\tO\nsuch\tO\tsuch\tO\nLinearLayout\tB-HTML_XML_Tag\tLinearLayout\tB-Code_Block\n.\tO\t.\tO\n\t\nShould\tO\tShould\tO\nI\tO\tI\tO\nchoose\tO\tchoose\tO\n5-6\tO\t5-6\tO\nLinearLayout\tB-HTML_XML_Tag\tLinearLayout\tO\nbelow\tO\tbelow\tO\none\tO\tone\tO\nanother\tO\tanother\tO\nor\tO\tor\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nwith\tO\twith\tO\niteration\tO\titeration\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18549870\tO\t18549870\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18549870/\tO\thttps://stackoverflow.com/questions/18549870/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nview\tO\tview\tO\nif\tO\tif\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\ndo\tO\tdo\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nexist\tO\texist\tO\nblank\tO\tblank\tO\nyou\tO\tyou\tO\ndont\tO\tdont\tO\nwant(blankHeight=(ListViewHeight-count*rowHeight)>0)\tB-Code_Block\twant(blankHeight=(ListViewHeight-count*rowHeight)>0)\tO\n\t\nheightToPlus\tB-Code_Block\theightToPlus\tO\n=\tI-Code_Block\t=\tO\nblankHeight/count\tI-Code_Block\tblankHeight/count\tO\n\t\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nheight\tO\theight\tO\nof\tO\tof\tO\neach\tO\teach\tO\nrow\tB-User_Interface_Element\trow\tO\nto\tO\tto\tO\nrowHeight+heightToPlus\tB-Variable_Name\trowHeight+heightToPlus\tO\n\t\nevery\tO\tevery\tO\nheight\tO\theight\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nget\tO\tget\tO\nby\tO\tby\tO\ngetHeight\tB-Library_Function\tgetHeight\tO\nand\tO\tand\tO\nalso\tO\talso\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\nby\tO\tby\tO\nsetHeight\tB-Library_Function\tsetHeight\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nview\tB-Library_Class\tview\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ni\tO\ti\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nnot\tO\tnot\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18347569\tO\t18347569\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18347569/\tO\thttps://stackoverflow.com/questions/18347569/\tO\n\t\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nof\tO\tof\tO\ncustomValidator\tB-Library_Class\tcustomValidator\tO\nwithout\tO\twithout\tO\nPOSTBACK\tB-Library_Function\tPOSTBACK\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nboth\tO\tboth\tO\nrequiredFieldValidator\tB-Library_Class\trequiredFieldValidator\tO\nand\tO\tand\tO\ncustomValidator\tB-Library_Class\tcustomValidator\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfomer\tO\tfomer\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ninline\tO\tinline\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nshow\tO\tshow\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nwithout\tO\twithout\tO\npostback\tB-Library_Function\tpostback\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\npossible\tO\tpossible\tO\nfor\tO\tfor\tO\ncustomValidator\tB-Library_Class\tcustomValidator\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18347569\tO\t18347569\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18347569/\tO\thttps://stackoverflow.com/questions/18347569/\tO\n\t\n\t\nOption\tO\tOption\tO\n1\tO\t1\tO\n:\tO\t:\tO\n\t\nWhenever\tO\tWhenever\tO\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncustom\tB-Class_Name\tcustom\tO\nvalidator\tI-Class_Name\tvalidator\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nserver\tB-Application\tserver\tO\nand\tO\tand\tO\nclient\tB-Application\tclient\tO\nside\tO\tside\tO\nvalidation\tO\tvalidation\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\n.\tO\t.\tO\n\t\ncreating\tO\tcreating\tO\na\tO\ta\tO\nclient\tB-Application\tclient\tO\nside\tO\tside\tO\nmethod\tO\tmethod\tO\nwill\tO\twill\tO\navoid\tO\tavoid\tO\nunnecessary\tO\tunnecessary\tO\npostback\tB-Library_Function\tpostback\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nsafety\tO\tsafety\tO\nmeasure\tO\tmeasure\tO\n,\tO\t,\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\nmethod\tO\tmethod\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\npresent\tO\tpresent\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2402\tI-Code_Block\tA_2402\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOption\tO\tOption\tO\n2\tO\t2\tO\n:\tO\t:\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nalways\tO\talways\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nclient\tB-Application\tclient\tO\nside\tO\tside\tO\nvalidation\tO\tvalidation\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nupdate\tB-Library_Class\tupdate\tO\npanel\tI-Library_Class\tpanel\tO\nto\tO\tto\tO\nhide\tO\thide\tO\nthose\tO\tthose\tO\npostbacks\tB-Library_Function\tpostbacks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18347569\tO\t18347569\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18347569/\tO\thttps://stackoverflow.com/questions/18347569/\tO\n\t\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nUpdate\tB-Library_Class\tUpdate\tO\nPanel\tI-Library_Class\tPanel\tO\najax\tB-Library\tajax\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\naction\tO\taction\tO\nwithout\tO\twithout\tO\npostback\tB-Library_Function\tpostback\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10809866\tO\t10809866\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10809866/\tO\thttps://stackoverflow.com/questions/10809866/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nhomebrew\tB-Application\thomebrew\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nguidelines\tO\tguidelines\tO\ndescribed\tO\tdescribed\tO\nin\tO\tin\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncurl\tB-Library\tcurl\tO\nand\tO\tand\tO\nrvm\tB-Library\trvm\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nrails\tB-Library\trails\tO\n1.9.3\tB-Version\t1.9.3\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nlion\tB-Operating_System\tlion\tO\n1.7.4\tB-Version\t1.7.4\tO\nwith\tO\twith\tO\nXcode\tB-Application\tXcode\tO\n4.3.2\tB-Version\t4.3.2\tO\nand\tO\tand\tO\nwith\tO\twith\tO\ndeveloper\tB-Application\tdeveloper\tO\ncommand\tI-Application\tcommand\tO\nline\tI-Application\tline\tO\ntools\tI-Application\ttools\tO\ninstalled\tO\tinstalled\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nlibksba\tB-Library\tlibksba\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nrequires\tO\trequires\tO\nme\tO\tme\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\ncommand\tO\tcommand\tO\nbrew\tB-Code_Block\tbrew\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nlibksba\tI-Code_Block\tlibksba\tI-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nHome\tB-Application\tHome\tO\nBrew\tI-Application\tBrew\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\ninstructions\tO\tinstructions\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\n\t\n/usr/bin/ruby\tB-Code_Block\t/usr/bin/ruby\tB-Code_Block\n-e\tI-Code_Block\t-e\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n$\tI-Code_Block\t$\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n/usr/bin/curl\tB-Code_Block\t/usr/bin/curl\tB-Code_Block\n-fsSL\tI-Code_Block\t-fsSL\tI-Code_Block\nhttps://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb\tI-Code_Block\thttps://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n\t\nwhich\tO\twhich\tO\noutputs\tO\toutputs\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_973\tI-Code_Block\tQ_973\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nthis\tO\tthis\tO\nmeans\tO\tmeans\tO\nbasically\tO\tbasically\tO\nthat\tO\tthat\tO\nbrew\tB-Application\tbrew\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\ninstalled\tO\tinstalled\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\nit\tO\tit\tO\nis\tO\tis\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nMacPorts\tB-Application\tMacPorts\tO\nin\tO\tin\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\ncompletely\tO\tcompletely\tO\nerased\tO\terased\tO\nso\tO\tso\tO\nthere\tO\tthere\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nno\tO\tno\tO\nconflicts\tO\tconflicts\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n!!\tO\t!!\tO\n!\tO\t!\tO\n\t\nThanks\tO\tThanks\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n!\tO\t!\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nan\tO\tan\tO\nawesome\tO\tawesome\tO\ncommunity\tO\tcommunity\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\ntime\tO\ttime\tO\nmachined\tO\tmachined\tO\nback\tO\tback\tO\na\tO\ta\tO\nyear\tO\tyear\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nsomething\tO\tsomething\tO\ncritically\tO\tcritically\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\ninstalling\tO\tinstalling\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nmore\tO\tmore\tO\ncommon\tO\tcommon\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ninstalled\tO\tinstalled\tO\nhomebrew\tB-Application\thomebrew\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_974\tI-Code_Block\tQ_974\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAny\tO\tAny\tO\ncommand\tO\tcommand\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nbrew\tB-Application\tbrew\tO\n\"\tO\t\"\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_975\tI-Code_Block\tQ_975\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAny\tO\tAny\tO\nsuggestions\tO\tsuggestions\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nall\tO\tall\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10809866\tO\t10809866\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10809866/\tO\thttps://stackoverflow.com/questions/10809866/\tO\n\t\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\nas\tO\tas\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncomment\tO\tcomment\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nresolve\tO\tresolve\tO\nit\tO\tit\tO\nI\tO\tI\tO\nended\tO\tended\tO\nup\tO\tup\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nrestore\tO\trestore\tO\nmy\tO\tmy\tO\ndefault\tO\tdefault\tO\nsystem\tO\tsystem\tO\nruby\tB-Language\truby\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\non\tO\ton\tO\nSnowLeopard\tB-Operating_System\tSnowLeopard\tO\n-\tI-Operating_System\t-\tO\nOSX\tI-Operating_System\tOSX\tO\n10.6.8\tB-Version\t10.6.8\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyour\tO\tyour\tO\nresources\tO\tresources\tO\nmay\tO\tmay\tO\nvary\tO\tvary\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nwas\tO\twas\tO\n:\tO\t:\tO\n\t\nuninstall\tO\tuninstall\tO\nxcode\tB-Application\txcode\tO\n:\tO\t:\tO\nsudo\tB-Code_Block\tsudo\tO\n/Developer/Library/uninstall\tI-Code_Block\t/Developer/Library/uninstall\tO\n-devtools\tI-Code_Block\t-devtools\tO\n--mode\tI-Code_Block\t--mode\tO\n=\tI-Code_Block\t=\tO\nall\tI-Code_Block\tall\tO\n\t\nrsync\tB-Code_Block\trsync\tO\nor\tO\tor\tO\ncopy\tO\tcopy\tO\n/System/Library/Frameworks/Ruby.framework\tB-File_Name\t/System/Library/Frameworks/Ruby.framework\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nmachine\tO\tmachine\tO\nrunning\tO\trunning\tO\n10.6.8\tB-Version\t10.6.8\tO\n\t\nYou\tO\tYou\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nruby\tB-Language\truby\tO\nexecutables\tO\texecutables\tO\nin\tO\tin\tO\n/usr/bin\tB-File_Name\t/usr/bin\tO\nto\tO\tto\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nRuby\tB-Language\tRuby\tO\n:\tO\t:\tO\n/usr/bin/{erb,gem,irb,rdoc,ri,ruby,testrb}\tB-File_Name\t/usr/bin/{erb,gem,irb,rdoc,ri,ruby,testrb}\tO\n\t\nthese\tO\tthese\tO\nare\tO\tare\tO\njust\tO\tjust\tO\nsymlinks\tB-File_Type\tsymlinks\tO\nto\tO\tto\tO\n/System/Library/Frameworks/Ruby.framework\tB-File_Name\t/System/Library/Frameworks/Ruby.framework\tO\n\t\nerb\tB-File_Name\terb\tO\n->\tO\t->\tO\n../../System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/erb\tB-File_Name\t../../System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/erb\tO\n\t\nso\tO\tso\tO\nI\tO\tI\tO\nre-symlinked\tO\tre-symlinked\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nfrom\tO\tfrom\tO\n/usr/bin\tB-Code_Block\t/usr/bin\tO\n:\tI-Code_Block\t:\tO\nsudo\tI-Code_Block\tsudo\tO\nln\tI-Code_Block\tln\tO\n-s\tI-Code_Block\t-s\tO\n../../System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/erb\tI-Code_Block\t../../System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/erb\tO\n./erb\tI-Code_Block\t./erb\tO\n\t\nthe\tO\tthe\tO\nbrew\tB-Application\tbrew\tO\nexecutable\tO\texecutable\tO\ncurrently\tO\tcurrently\tO\nuses\tO\tuses\tO\n/usr/bin/ruby\tB-File_Name\t/usr/bin/ruby\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthere\tO\tthere\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nleast\tO\tleast\tO\n\t\nI\tO\tI\tO\nhear\tO\thear\tO\nfuture\tO\tfuture\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nbrew\tB-Application\tbrew\tO\nwill\tO\twill\tO\npoint\tO\tpoint\tO\ndirectly\tO\tdirectly\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nruby\tB-Language\truby\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n/System/Library/Frameworks/Ruby.framework\tB-File_Name\t/System/Library/Frameworks/Ruby.framework\tO\npath\tO\tpath\tO\n,\tO\t,\tO\nso\tO\tso\tO\nsymlinking\tO\tsymlinking\tO\nruby\tB-Language\truby\tO\nto\tO\tto\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ninstall\tO\tinstall\tO\nis\tO\tis\tO\na\tO\ta\tO\nbad\tO\tbad\tO\nidea\tO\tidea\tO\n\t\nAt\tO\tAt\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nbrew\tB-Application\tbrew\tO\ncommands\tO\tcommands\tO\nworked\tO\tworked\tO\nagain\tO\tagain\tO\nand\tO\tand\tO\nostruct\tB-Library_Class\tostruct\tO\n(\tO\t(\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nruby\tB-Language\truby\tO\nstandard\tO\tstandard\tO\nlib\tO\tlib\tO\n)\tO\t)\tO\nwas\tO\twas\tO\nagain\tO\tagain\tO\nfound\tO\tfound\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwent\tO\twent\tO\nahead\tO\tahead\tO\nand\tO\tand\tO\nadded\tO\tadded\tO\nxcode\tB-Application\txcode\tO\nback\tO\tback\tO\nin\tO\tin\tO\nand\tO\tand\tO\nworked\tO\tworked\tO\nthrough\tO\tthrough\tO\nsome\tO\tsome\tO\nminor\tO\tminor\tO\n'\tO\t'\tO\nbrew\tB-Code_Block\tbrew\tO\ndoctor\tI-Code_Block\tdoctor\tO\n'\tO\t'\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nnow\tO\tnow\tO\nreplaced\tO\treplaced\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nold\tO\told\tO\nmacports\tB-Application\tmacports\tO\npackages\tO\tpackages\tO\nwith\tO\twith\tO\nhomebrew\tB-Application\thomebrew\tO\npackages\tO\tpackages\tO\nand\tO\tand\tO\nits\tO\tits\tO\nsuch\tO\tsuch\tO\nan\tO\tan\tO\nimprovement\tO\timprovement\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43821933\tO\t43821933\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43821933/\tO\thttps://stackoverflow.com/questions/43821933/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndictionary\tB-Data_Structure\tdictionary\tO\nwith\tO\twith\tO\n5000\tO\t5000\tO\nkeys\tO\tkeys\tO\nwho\tO\twho\tO\n's\tO\t's\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nlists\tB-Data_Structure\tlists\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nquickly\tO\tquickly\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlongest\tO\tlongest\tO\nstring\tB-Data_Type\tstring\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nindex\tO\tindex\tO\nin\tO\tin\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndictionary\tB-Data_Structure\tdictionary\tO\nvalues\tO\tvalues\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5649\tI-Code_Block\tQ_5649\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nexpected\tO\texpected\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n5\tB-Value\t5\tB-Code_Block\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nat\tO\tat\tO\nindex\tO\tindex\tO\n1\tB-Value\t1\tO\n(\tO\t(\tO\n'\tB-Value\t'\tB-Code_Block\ndefg\tI-Value\tdefg\tI-Code_Block\n'\tB-Value\t'\tB-Code_Block\nand\tO\tand\tO\n'\tB-Value\t'\tO\nklmno'`\tI-Value\tklmno'`\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlatter\tO\tlatter\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nlongest\tO\tlongest\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43821933\tO\t43821933\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43821933/\tO\thttps://stackoverflow.com/questions/43821933/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ngenerator\tO\tgenerator\tO\nexpression\tO\texpression\tO\nto\tO\tto\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nindex\tO\tindex\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6321\tI-Code_Block\tA_6321\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ngenerator\tO\tgenerator\tO\nexpression\tO\texpression\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6322\tI-Code_Block\tA_6322\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDemo\tO\tDemo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6323\tI-Code_Block\tA_6323\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nescape\tO\tescape\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\niterate\tO\titerate\tO\nover\tO\tover\tO\nall\tO\tall\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndictionary\tB-Data_Structure\tdictionary\tO\nhowever\tO\thowever\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43821933\tO\t43821933\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43821933/\tO\thttps://stackoverflow.com/questions/43821933/\tO\n\t\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nextract\tO\textract\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nstrings\tB-Data_Type\tstrings\tO\nof\tO\tof\tO\ninterest\tO\tinterest\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\ncomprehension\tO\tcomprehension\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6324\tI-Code_Block\tA_6324\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNext\tO\tNext\tO\n,\tO\t,\tO\ntake\tO\ttake\tO\nmax\tB-Library_Function\tmax\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nlens\tB-Library_Function\tlens\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstrings\tB-Data_Type\tstrings\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6325\tI-Code_Block\tA_6325\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20428669\tO\t20428669\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20428669/\tO\thttps://stackoverflow.com/questions/20428669/\tO\n\t\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\nsome\tO\tsome\tO\nstrange\tO\tstrange\tO\nbehaviour\tO\tbehaviour\tO\nusing\tO\tusing\tO\ngrails\tB-Library\tgrails\tO\n2.3.x\tB-Version\t2.3.x\tO\nand\tO\tand\tO\nasync\tO\tasync\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nsome\tO\tsome\tO\ntest\tO\ttest\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2170\tI-Code_Block\tQ_2170\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nlog\tB-File_Type\tlog\tO\ni\tO\ti\tO\ngot\tO\tgot\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2171\tI-Code_Block\tQ_2171\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\nthe\tO\tthe\tO\ntasks\tO\ttasks\tO\n(\tO\t(\tO\nand\tO\tand\tO\nonError\tB-Library_Class\tonError\tO\nclosure\tO\tclosure\tO\n)\tO\t)\tO\nare\tO\tare\tO\nexecuted\tO\texecuted\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonComplete\tB-Library_Class\tonComplete\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\n(\tO\t(\tO\noff\tO\toff\tO\ncourse\tO\tcourse\tO\n)\tO\t)\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nwhat\tO\twhat\tO\nam\tO\tam\tO\ni\tO\ti\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nexcept\tO\texcept\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nThread.sleep()\tB-Library_Function\tThread.sleep()\tO\nis\tO\tis\tO\npratically\tO\tpratically\tO\ncode\tO\tcode\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\ndoc\tO\tdoc\tO\n:\tO\t:\tO\nhttp://grails.org/doc/latest/guide/async.html\tO\thttp://grails.org/doc/latest/guide/async.html\tO\n\t\nIs\tO\tIs\tO\nThread.sleep()\tB-Library_Function\tThread.sleep()\tO\nnot\tO\tnot\tO\ncompatible\tO\tcompatible\tO\nwith\tO\twith\tO\nGPars\tB-Library\tGPars\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20428669\tO\t20428669\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20428669/\tO\thttps://stackoverflow.com/questions/20428669/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nonComplete\tB-Library_Class\tonComplete\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nblock\tO\tblock\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrequest/action\tO\trequest/action\tO\ndoes\tO\tdoes\tO\nfinish\tO\tfinish\tO\nbefore\tO\tbefore\tO\nyour\tO\tyour\tO\ntasks\tO\ttasks\tO\nand\tO\tand\tO\nlist\tB-Variable_Name\tlist\tB-Code_Block\ngoes\tO\tgoes\tO\nout\tO\tout\tO\nof\tO\tof\tO\nscope\tO\tscope\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nwaitAll()\tB-Library_Function\twaitAll()\tB-Code_Block\nto\tO\tto\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\ntasks\tO\ttasks\tO\nto\tO\tto\tO\nfinish\tO\tfinish\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\naction\tO\taction\tO\nreturns\tO\treturns\tO\n.\tO\t.\tO\n\t\nEasiest\tO\tEasiest\tO\nis\tO\tis\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nonComplete\tB-Class_Name\tonComplete\tB-Code_Block\nwith\tO\twith\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3409\tI-Code_Block\tA_3409\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nlist.get()\tB-Library_Function\tlist.get()\tB-Code_Block\nis\tO\tis\tO\nimplemented\tO\timplemented\tO\nby\tO\tby\tO\ncalling\tO\tcalling\tO\nwaitAll()\tB-Library_Function\twaitAll()\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10435773\tO\t10435773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10435773/\tO\thttps://stackoverflow.com/questions/10435773/\tO\n\t\n\t\nWhenever\tO\tWhenever\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ntab\tB-User_Interface_Element\ttab\tO\nTroubleShooting->Logs\tO\tTroubleShooting->Logs\tO\nand\tO\tand\tO\nTrace->Server\tB-Application\tTrace->Server\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ngeneral\tO\tgeneral\tO\nproperties\tO\tproperties\tO\nsection\tO\tsection\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nonly\tO\tonly\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nof\tO\tof\tO\nChange\tO\tChange\tO\nLog\tB-File_Type\tLog\tO\nDetails\tO\tDetails\tO\nLevel\tO\tLevel\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\ntracing\tO\ttracing\tO\ninside\tO\tinside\tO\nto\tO\tto\tO\nreflect\tO\treflect\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\napps\tO\tapps\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nbeyond\tO\tbeyond\tO\nthis\tO\tthis\tO\noption\tO\toption\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nlog\tB-File_Type\tlog\tO\nfiles\tO\tfiles\tO\ninside\tO\tinside\tO\nWAS\tB-Application\tWAS\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nWAS\tO\tWAS\tO\non\tO\ton\tO\nZ/OS\tB-Operating_System\tZ/OS\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nable\tO\table\tO\nto\tO\tto\tO\nview\tO\tview\tO\nlogs\tB-File_Type\tlogs\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmainframe\tB-Device\tmainframe\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nfile\tO\tfile\tO\nor\tO\tor\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nto\tO\tto\tO\nenable\tO\tenable\tO\nJVM\tB-Application\tJVM\tO\nlogs\tB-File_Type\tlogs\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10435773\tO\t10435773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10435773/\tO\thttps://stackoverflow.com/questions/10435773/\tO\n\t\n\t\n\t\nOn\tO\tOn\tO\nAIX\tB-Operating_System\tAIX\tO\n,\tO\t,\tO\nlinux\tB-Operating_System\tlinux\tO\nand\tO\tand\tO\nWindows\tB-Operating_System\tWindows\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nTroubleShooting\tO\tTroubleShooting\tO\n->\tO\t->\tO\nLogs\tO\tLogs\tO\nand\tO\tand\tO\nTrace\tO\tTrace\tO\n->\tO\t->\tO\nServer\tB-Application\tServer\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nseveral\tO\tseveral\tO\nlinks\tO\tlinks\tO\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\nproperties\tO\tproperties\tO\nsection\tO\tsection\tO\n,\tO\t,\tO\none\tO\tone\tO\nof\tO\tof\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\n'\tB-Value\t'\tO\nDiagnostic\tI-Value\tDiagnostic\tO\nTrace\tI-Value\tTrace\tO\n'\tB-Value\t'\tO\nthrough\tO\tthrough\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nenable/disable\tO\tenable/disable\tO\ntracing\tO\ttracing\tO\nand\tO\tand\tO\nconfigure\tO\tconfigure\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nlog\tB-File_Type\tlog\tO\nfiles\tO\tfiles\tO\nshall\tO\tshall\tO\nbe\tO\tbe\tO\nlocated\tO\tlocated\tO\nat\tO\tat\tO\n,\tO\t,\tO\ntheir\tO\ttheir\tO\nsizes\tO\tsizes\tO\n,\tO\t,\tO\nrollover\tO\trollover\tO\nsettings\tO\tsettings\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\neither\tO\teither\tO\nsuggests\tO\tsuggests\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nz/OS\tB-Operating_System\tz/OS\tO\nspecific\tO\tspecific\tO\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nprivileges\tO\tprivileges\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nruntime\tO\truntime\tO\noperations\tO\toperations\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlogging\tO\tlogging\tO\nin\tO\tin\tO\nwith\tO\twith\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nin\tO\tin\tO\nAdministrators\tO\tAdministrators\tO\ngroup\tO\tgroup\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\ncheck\tO\tcheck\tO\nyou\tO\tyou\tO\nuser\tO\tuser\tO\nat\tO\tat\tO\nUsers\tO\tUsers\tO\nand\tO\tand\tO\nGroups\tO\tGroups\tO\n->\tO\t->\tO\nAdministrative\tO\tAdministrative\tO\nUser\tO\tUser\tO\nRoles\tO\tRoles\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\ntabs\tB-User_Interface_Element\ttabs\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nchange\tO\tchange\tO\ntrace\tO\ttrace\tO\noptions\tO\toptions\tO\n,\tO\t,\tO\nnamely\tO\tnamely\tO\n'\tO\t'\tO\nconfiguration\tB-Value\tconfiguration\tO\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\nruntime\tB-Value\truntime\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nmaking\tO\tmaking\tO\nchanges\tO\tchanges\tO\nat\tO\tat\tO\nconfiguration\tO\tconfiguration\tO\ntab\tB-User_Interface_Element\ttab\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nrecycle\tO\trecycle\tO\nthe\tO\tthe\tO\nserver\tB-Device\tserver\tO\nfor\tO\tfor\tO\ntrace\tO\ttrace\tO\nstring\tB-Data_Type\tstring\tO\nto\tO\tto\tO\nbecome\tO\tbecome\tO\nactive\tO\tactive\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\nRuntime\tO\tRuntime\tO\ntab\tB-User_Interface_Element\ttab\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\ndone\tO\tdone\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\ntry\tO\ttry\tO\nenabling\tO\tenabling\tO\ntrace\tO\ttrace\tO\nusing\tO\tusing\tO\nwsadmin\tB-Application\twsadmin\tO\nas\tO\tas\tO\nin\tO\tin\tO\nhttp://pic.dhe.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.express.doc%2Finfo%2Fexp%2Fae%2Ftxml_profiletrace.html\tO\thttp://pic.dhe.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.express.doc%2Finfo%2Fexp%2Fae%2Ftxml_profiletrace.html\tO\n\t\nturn\tO\tturn\tO\non\tO\ton\tO\ntrace\tO\ttrace\tO\n(\tO\t(\tO\nputting\tO\tputting\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ntrace\tO\ttrace\tO\nstring\tB-Data_Type\tstring\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1324\tI-Code_Block\tQ_1324\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nturn\tO\tturn\tO\noff\tO\toff\tO\ntrace\tO\ttrace\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1325\tI-Code_Block\tQ_1325\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29330978\tO\t29330978\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29330978/\tO\thttps://stackoverflow.com/questions/29330978/\tO\n\t\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\na\tO\ta\tO\n<p:calendar>\tB-HTML_XML_Tag\t<p:calendar>\tB-Code_Block\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ntoday\tO\ttoday\tO\n's\tO\t's\tO\ndate\tO\tdate\tO\nas\tO\tas\tO\nplaceholder\tO\tplaceholder\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nattempt\tO\tattempt\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nOmniFaces\tB-Library\tOmniFaces\tO\n#{now}\tB-Code_Block\t#{now}\tB-Code_Block\nin\tO\tin\tO\ncombination\tO\tcombination\tO\nwith\tO\twith\tO\na:placeholder\tB-HTML_XML_Tag\ta:placeholder\tB-Code_Block\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3491\tI-Code_Block\tQ_3491\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhere\tO\tWhere\tO\nsomeproperty\tO\tsomeproperty\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\njava.util.date\tB-Library_Class\tjava.util.date\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nformat\tO\tformat\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nlike\tO\tlike\tO\ndd.MM.yyyy\tB-Code_Block\tdd.MM.yyyy\tB-Code_Block\nHH:mm\tI-Code_Block\tHH:mm\tI-Code_Block\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29330978\tO\t29330978\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29330978/\tO\thttps://stackoverflow.com/questions/29330978/\tO\n\t\n\t\nUse\tO\tUse\tO\nof:formatDate()\tB-Library_Function\tof:formatDate()\tB-Code_Block\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nEL\tO\tEL\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4145\tI-Code_Block\tA_4145\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nreuse\tO\treuse\tO\ncalendar\tO\tcalendar\tO\ncomponent\tO\tcomponent\tO\n's\tO\t's\tO\nown\tO\town\tO\npattern\tO\tpattern\tO\nattribute\tO\tattribute\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4146\tI-Code_Block\tA_4146\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSee\tO\tSee\tO\nalso\tO\talso\tO\n:\tO\t:\tO\n\t\nWhat\tO\tWhat\tO\nexactly\tO\texactly\tO\nis\tO\tis\tO\n#{component}\tB-Code_Block\t#{component}\tO\nin\tO\tin\tO\nEL\tO\tEL\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14202215\tO\t14202215\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14202215/\tO\thttps://stackoverflow.com/questions/14202215/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhoping\tO\thoping\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\npoint\tO\tpoint\tO\nme\tO\tme\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ndirection\tO\tdirection\tO\n;\tO\t;\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nclose\tO\tclose\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnever\tO\tnever\tO\ndone\tO\tdone\tO\nthreading\tO\tthreading\tO\nand\tO\tand\tO\nkeep\tO\tkeep\tO\ngetting\tO\tgetting\tO\nstuck\tO\tstuck\tO\non\tO\ton\tO\nsyntax/concepts\tO\tsyntax/concepts\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\npart\tO\tpart\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlovely\tO\tlovely\tO\nWPF\tB-Library\tWPF\tO\nerror\tO\terror\tO\nregarding\tO\tregarding\tO\nthe\tO\tthe\tO\nowner\tO\towner\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nsomehow\tO\tsomehow\tO\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\nget\tO\tget\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nwith\tO\twith\tO\nDispatcher\tB-Library_Class\tDispatcher\tO\nor\tO\tor\tO\nBackGroundWorker\tB-Library_Class\tBackGroundWorker\tO\nbut\tO\tbut\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\ngetting\tO\tgetting\tO\nshort\tO\tshort\tO\n-\tO\t-\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhitting\tO\thitting\tO\ntoo\tO\ttoo\tO\nmany\tO\tmany\tO\nwalls\tO\twalls\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nit\tO\tit\tO\nalone\tO\talone\tO\ntonight\tO\ttonight\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npart\tO\tpart\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nfailing\tO\tfailing\tO\nat\tO\tat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1349\tI-Code_Block\tQ_1349\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nthis\tO\tthis\tO\nnext\tO\tnext\tO\nbit\tO\tbit\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nis\tO\tis\tO\neither\tO\teither\tO\nA\tO\tA\tO\n)\tO\t)\tO\nWorking\tO\tWorking\tO\nor\tO\tor\tO\nB\tO\tB\tO\n)\tO\t)\tO\nfooling\tO\tfooling\tO\nme\tO\tme\tO\nas\tO\tas\tO\nI\tO\tI\tO\n've\tO\t've\tO\nyet\tO\tyet\tO\nto\tO\tto\tO\nprove\tO\tprove\tO\nit\tO\tit\tO\n:)\tO\t:)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1350\tI-Code_Block\tQ_1350\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFinally\tO\tFinally\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nThe\tB-Output_Block\tThe\tB-Code_Block\ncalling\tI-Output_Block\tcalling\tI-Code_Block\nthread\tI-Output_Block\tthread\tI-Code_Block\ncannot\tI-Output_Block\tcannot\tI-Code_Block\naccess\tI-Output_Block\taccess\tI-Code_Block\nthis\tI-Output_Block\tthis\tI-Code_Block\nobject\tI-Output_Block\tobject\tI-Code_Block\nbecause\tI-Output_Block\tbecause\tI-Code_Block\na\tI-Output_Block\ta\tI-Code_Block\ndifferent\tI-Output_Block\tdifferent\tI-Code_Block\nthread\tI-Output_Block\tthread\tI-Code_Block\nowns\tI-Output_Block\towns\tI-Code_Block\nit\tI-Output_Block\tit\tI-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ntackling\tO\ttackling\tO\nthis\tO\tthis\tO\nagain\tO\tagain\tO\nin\tO\tin\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nhours\tO\thours\tO\nonce\tO\tonce\tO\nI\tO\tI\tO\n've\tO\t've\tO\nhad\tO\thad\tO\nchance\tO\tchance\tO\nto\tO\tto\tO\neat\tO\teat\tO\nand\tO\tand\tO\nread\tO\tread\tO\n,\tO\t,\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nglaring\tO\tglaring\tO\nsilliness\tO\tsilliness\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnot\tO\tnot\tO\nquite\tO\tquite\tO\ngot\tO\tgot\tO\nmy\tO\tmy\tO\nhead\tO\thead\tO\naround\tO\taround\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nrather\tO\trather\tO\ngrateful\tO\tgrateful\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\ncontext\tO\tcontext\tO\nis\tO\tis\tO\nan\tO\tan\tO\nEntity\tB-Library\tEntity\tO\nFramework\tI-Library\tFramework\tO\n5\tB-Version\t5\tO\nObservableCollection\tB-Library_Class\tObservableCollection\tO\nwith\tO\twith\tO\nchild\tO\tchild\tO\nnavigation\tO\tnavigation\tO\nfiltered\tO\tfiltered\tO\nproperties-I\tO\tproperties-I\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nquite\tO\tquite\tO\nsays\tO\tsays\tO\nit\tO\tit\tO\n:)\tO\t:)\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n:)\tO\t:)\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nrequested\tO\trequested\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\nI\tO\tI\tO\nget\tO\tget\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\noccurrs\tO\toccurrs\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrepository\tB-Class_Name\trepository\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nThread\tO\tThread\tO\nstuff\tO\tstuff\tO\nis\tO\tis\tO\na\tO\ta\tO\nred\tO\tred\tO\nherring\tO\therring\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1351\tI-Code_Block\tQ_1351\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nInnerException\tB-Error_Name\tInnerException\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nexception\tB-Library_Class\texception\tO\nand\tO\tand\tO\nit\tO\tit\tO\noccurs\tO\toccurs\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1352\tI-Code_Block\tQ_1352\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\narticles\tO\tarticles\tO\nlast\tO\tlast\tO\nnight\tO\tnight\tO\n,\tO\t,\tO\nwhilst\tO\twhilst\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nit\tO\tit\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbetter\tO\tbetter\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nstill\tO\tstill\tO\nstruggling\tO\tstruggling\tO\nto\tO\tto\tO\napply\tO\tapply\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nrepository\tB-Class_Name\trepository\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nusually\tO\tusually\tO\na\tO\ta\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nsyntax\tO\tsyntax\tO\nconfusion\tO\tconfusion\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nquite\tO\tquite\tO\ngetting\tO\tgetting\tO\nit\tO\tit\tO\non\tO\ton\tO\nmy\tO\tmy\tO\npart\tO\tpart\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\na\tO\ta\tO\nfeeling\tO\tfeeling\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\nout\tO\tout\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noperation\tO\toperation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ngetfiltered\tB-Library_Function\tgetfiltered\tO\nresidents\tO\tresidents\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nawait\tO\tawait\tO\ntask\tO\ttask\tO\nbut\tO\tbut\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nit\tO\tit\tO\nout\tO\tout\tO\njust\tO\tjust\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nToday\tO\tToday\tO\n's\tO\t's\tO\njob\tO\tjob\tO\n-\tO\t-\tO\nif\tO\tif\tO\nentity\tB-Library\tentity\tO\nframework\tI-Library\tframework\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47993805\tO\t47993805\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47993805/\tO\thttps://stackoverflow.com/questions/47993805/\tO\n\t\n\t\nHello\tO\tHello\tO\nto\tO\tto\tO\nevery\tO\tevery\tO\nWordpress\tB-Application\tWordpress\tO\ngenius\tO\tgenius\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nsingle-page\tO\tsingle-page\tO\nsite\tO\tsite\tO\nwith\tO\twith\tO\nBootstrap\tB-Library\tBootstrap\tO\nand\tO\tand\tO\nuploaded\tO\tuploaded\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nto\tO\tto\tO\nWordpress\tB-Website\tWordpress\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nsome\tO\tsome\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\n(\tO\t(\tO\nmostly\tO\tmostly\tO\nsome\tO\tsome\tO\ntext\tO\ttext\tO\n)\tO\t)\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nWordpress\tB-Application\tWordpress\tO\nCMS\tI-Application\tCMS\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nrewriting\tO\trewriting\tO\nthe\tO\tthe\tO\nHTML\tB-File_Type\tHTML\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nor\tO\tor\tO\nknow\tO\tknow\tO\na\tO\ta\tO\ndetailed\tO\tdetailed\tO\ntutorial\tO\ttutorial\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nspent\tO\tspent\tO\nages\tO\tages\tO\ngoogling\tO\tgoogling\tO\nit\tO\tit\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nsuccess\tO\tsuccess\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nadvice\tO\tadvice\tO\nand\tO\tand\tO\nhave\tO\thave\tO\npeaceful\tO\tpeaceful\tO\nholidays\tO\tholidays\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27716407\tO\t27716407\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27716407/\tO\thttps://stackoverflow.com/questions/27716407/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nnested\tO\tnested\tO\nrelationship\tO\trelationship\tO\nusing\tO\tusing\tO\nDjango\tB-Library\tDjango\tO\nRest\tI-Library\tRest\tO\nFramework\tI-Library\tFramework\tO\n3.0\tB-Version\t3.0\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\nmy\tO\tmy\tO\nserializers\tB-Library_Class\tserializers\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nattempted\tO\tattempted\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\ncreate()\tB-Library_Function\tcreate()\tB-Code_Block\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nmodels\tO\tmodels\tO\nare\tO\tare\tO\ndefined\tO\tdefined\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3234\tI-Code_Block\tQ_3234\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nnote\tO\tnote\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nprices\tB-Class_Name\tprices\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nitems\tB-Class_Name\titems\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nserializers\tB-Library_Class\tserializers\tO\nare\tO\tare\tO\ndefined\tO\tdefined\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3235\tI-Code_Block\tQ_3235\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nPOST\tO\tPOST\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nitem\tO\titem\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3236\tI-Code_Block\tQ_3236\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3237\tI-Code_Block\tQ_3237\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPresumably\tO\tPresumably\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nPrice\tB-Class_Name\tPrice\tO\nserializer\tI-Class_Name\tserializer\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nID\tO\tID\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nitem\tB-Class_Name\titem\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\noverriding\tO\toverriding\tO\nthis\tO\tthis\tO\nfunctionality\tO\tfunctionality\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncreate()\tB-Library_Function\tcreate()\tB-Code_Block\nfunction\tO\tfunction\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nserializer\tB-Library_Class\tserializer\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nappears\tO\tappears\tO\nas\tO\tas\tO\nthough\tO\tthough\tO\nthe\tO\tthe\tO\nserializer\tB-Library_Class\tserializer\tO\n's\tO\t's\tO\nvalidation\tO\tvalidation\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nhit\tO\thit\tO\nbefore\tO\tbefore\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nopportunity\tO\topportunity\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nitem\tB-Class_Name\titem\tO\nand\tO\tand\tO\nassociate\tO\tassociate\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nprice\tB-Class_Name\tprice\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n-\tO\t-\tO\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nitem\tB-Class_Name\titem\tO\n,\tO\t,\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nitem\tB-Class_Name\titem\tO\nID\tB-Variable_Name\tID\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncreate\tO\tcreate\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nprices\tB-Class_Name\tprices\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27716407\tO\t27716407\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27716407/\tO\thttps://stackoverflow.com/questions/27716407/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nPriceSerializer\tB-Class_Name\tPriceSerializer\tB-Code_Block\nis\tO\tis\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nitem\tB-Variable_Name\titem\tB-Code_Block\nkey\tO\tkey\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nspecified\tO\tspecified\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nPrice\tB-Class_Name\tPrice\tB-Code_Block\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nimmediately\tO\timmediately\tO\nobvious\tO\tobvious\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nMeta.exclude\tB-Variable_Name\tMeta.exclude\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nMeta.fields\tB-Variable_Name\tMeta.fields\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3855\tI-Code_Block\tA_3855\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nwriting\tO\twriting\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3856\tI-Code_Block\tA_3856\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhich\tO\tWhich\tO\nmakes\tO\tmakes\tO\nit\tO\tit\tO\nvery\tO\tvery\tO\nclear\tO\tclear\tO\nwhat\tO\twhat\tO\nyour\tO\tyour\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nyour\tO\tyour\tO\nitem\tB-Variable_Name\titem\tB-Code_Block\nfield\tO\tfield\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nempty\tB-Code_Block\tempty\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nTrue\tI-Code_Block\tTrue\tI-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\nnull\tB-Code_Block\tnull\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nTrue\tI-Code_Block\tTrue\tI-Code_Block\n)\tO\t)\tO\nset\tO\tset\tO\n,\tO\t,\tO\nDjango\tB-Library\tDjango\tO\nREST\tI-Library\tREST\tO\nFramework\tI-Library\tFramework\tO\nautomatically\tO\tautomatically\tO\ngenerates\tO\tgenerates\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nPrimaryKeyRelatedField\tB-Library_Variable\tPrimaryKeyRelatedField\tB-Code_Block\nwith\tO\twith\tO\nrequired\tB-Code_Block\trequired\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nTrue\tI-Code_Block\tTrue\tI-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nThis\tO\tThis\tB-Code_Block\nfield\tO\tfield\tI-Code_Block\nis\tO\tis\tI-Code_Block\nrequired\tO\trequired\tI-Code_Block\nis\tO\tis\tO\nrequired\tO\trequired\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nDjango\tB-Library\tDjango\tO\nREST\tI-Library\tREST\tO\nFramework\tI-Library\tFramework\tO\ncannot\tO\tcannot\tO\nautomatically\tO\tautomatically\tO\ndetect\tO\tdetect\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\ncoming\tO\tcoming\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nparent\tO\tparent\tO\nserializer\tB-Class_Name\tserializer\tO\nwhich\tO\twhich\tO\nalready\tO\talready\tO\nhas\tO\thas\tO\nthat\tO\tthat\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nremoving\tO\tremoving\tO\nthe\tO\tthe\tO\nfield\tO\tfield\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserializer\tB-Class_Name\tserializer\tO\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nappear\tO\tappear\tO\nto\tO\tto\tO\never\tO\tever\tO\nbe\tO\tbe\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3857\tI-Code_Block\tA_3857\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nitem\tB-Variable_Name\titem\tB-Code_Block\nfield\tO\tfield\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nactually\tO\tactually\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3316844\tO\t3316844\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3316844/\tO\thttps://stackoverflow.com/questions/3316844/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nwrap\tO\twrap\tO\nparticular\tO\tparticular\tO\nlines\tO\tlines\tO\nin\tO\tin\tO\na\tO\ta\tO\ntext\tO\ttext\tO\nmass\tO\tmass\tO\nwith\tO\twith\tO\n<b></b>\tB-HTML_XML_Tag\t<b></b>\tB-Code_Block\n\t\nFirst\tO\tFirst\tO\nline\tO\tline\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\n\t\nAll\tO\tAll\tO\nlines\tO\tlines\tO\nwith\tO\twith\tO\na\tO\ta\tO\nprevious\tO\tprevious\tO\nempty\tO\tempty\tO\nline\tO\tline\tO\n(\tO\t(\tO\neg\tO\teg\tO\ntwo\tO\ttwo\tO\nnewlines\tO\tnewlines\tO\nbefore\tO\tbefore\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\npreg_replace\tB-Library_Function\tpreg_replace\tO\nwith\tO\twith\tO\nphp\tB-Language\tphp\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nreally\tO\treally\tO\nshitty\tO\tshitty\tO\nwith\tO\twith\tO\nregex\tO\tregex\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\ntutorials\tO\ttutorials\tO\nare\tO\tare\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3316844\tO\t3316844\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3316844/\tO\thttps://stackoverflow.com/questions/3316844/\tO\n\t\n\t\nIn\tO\tIn\tO\nHTML\tB-Language\tHTML\tO\n(\tO\t(\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\n)\tO\t)\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nsuch\tO\tsuch\tO\nthing\tO\tthing\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\nlines\tO\tlines\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nregards\tO\tregards\tO\nto\tO\tto\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\npossible\tO\tpossible\tO\nreliable\tO\treliable\tO\nto\tO\tto\tO\ndeterminate\tO\tdeterminate\tO\nhow\tO\thow\tO\na\tO\ta\tO\ntext\tO\ttext\tO\nwraps\tO\twraps\tO\n(\tO\t(\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nwrapping\tO\twrapping\tO\nyourself\tO\tyourself\tO\nwith\tO\twith\tO\n<br>\tB-HTML_XML_Tag\t<br>\tB-Code_Block\nor\tO\tor\tO\n<pre>\tB-HTML_XML_Tag\t<pre>\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nCSS\tB-Language\tCSS\tO\npseudo-element\tO\tpseudo-element\tO\n:first-line\tB-Library_Variable\t:first-line\tB-Code_Block\nthat\tO\tthat\tO\nwill\tO\twill\tO\nlet\tO\tlet\tO\nyou\tO\tyou\tO\nformat\tO\tformat\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nline\tO\tline\tO\nof\tO\tof\tO\nan\tO\tan\tO\nelement\tO\telement\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\na\tO\ta\tO\nparagraph\tO\tparagraph\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_347\tI-Code_Block\tA_347\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3316844\tO\t3316844\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3316844/\tO\thttps://stackoverflow.com/questions/3316844/\tO\n\t\n\t\nTry\tO\tTry\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_346\tI-Code_Block\tA_346\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nhttp://www.ideone.com/1pTwD\tO\thttp://www.ideone.com/1pTwD\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23159108\tO\t23159108\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23159108/\tO\thttps://stackoverflow.com/questions/23159108/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\nincluding\tO\tincluding\tO\nNSMutableArrays\tB-Library_Class\tNSMutableArrays\tO\n,\tO\t,\tO\nNSNumbers\tB-Library_Class\tNSNumbers\tO\n,\tO\t,\tO\nvarious\tO\tvarious\tO\ncustom\tO\tcustom\tO\nclasses\tO\tclasses\tO\n)\tO\t)\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nNSCoding\tO\tNSCoding\tO\nprotocol\tO\tprotocol\tO\npresently\tO\tpresently\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nan\tO\tan\tO\nincremental\tO\tincremental\tO\nsaving\tO\tsaving\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\ntime\tO\ttime\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nsaving\tO\tsaving\tO\nprocess\tO\tprocess\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nloading\tO\tloading\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nimportant\tO\timportant\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nexisting\tO\texisting\tO\ncontainer\tO\tcontainer\tO\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nits\tO\tits\tO\nmembers\tO\tmembers\tO\nfor\tO\tfor\tO\n\"\tO\t\"\tO\ndirty\tO\tdirty\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nupdates\tO\tupdates\tO\nthose\tO\tthose\tO\nvalues\tO\tvalues\tO\nwhen\tO\twhen\tO\nwriting\tO\twriting\tO\nto\tO\tto\tO\nfile\tO\tfile\tO\n;\tO\t;\tO\nor\tO\tor\tO\nbetter\tO\tbetter\tO\nyet\tO\tyet\tO\n,\tO\t,\tO\na\tO\ta\tO\nprotocol\tO\tprotocol\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nimplemented\tO\timplemented\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n;\tO\t;\tO\nor\tO\tor\tO\nany\tO\tany\tO\nother\tO\tother\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\navailable\tO\tavailable\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23159108\tO\t23159108\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23159108/\tO\thttps://stackoverflow.com/questions/23159108/\tO\n\t\n\t\nFor\tO\tFor\tO\nlarge\tO\tlarge\tO\namount\tO\tamount\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nits\tO\tits\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\ndata\tO\tdata\tO\nmodel\tO\tmodel\tO\nto\tO\tto\tO\nCore\tO\tCore\tO\nData\tO\tData\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nchanges\tO\tchanges\tO\nafter\tO\tafter\tO\nspecific\tO\tspecific\tO\nevents\tO\tevents\tO\n,\tO\t,\tO\nor\tO\tor\tO\n,\tO\t,\tO\nbad\tO\tbad\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nNSTimer\tB-Library_Class\tNSTimer\tO\n,\tO\t,\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nall\tO\tall\tO\ndata\tO\tdata\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41430759\tO\t41430759\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41430759/\tO\thttps://stackoverflow.com/questions/41430759/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nexecute\tO\texecute\tO\nbulk\tO\tbulk\tO\noperations\tO\toperations\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nMongocxx\tB-Application\tMongocxx\tO\ndriver\tI-Application\tdriver\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\ndriver\tB-Application\tdriver\tO\nmanual\tO\tmanual\tO\nis\tO\tis\tO\nhorrible\tO\thorrible\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nexamples\tO\texamples\tO\nanywhere\tO\tanywhere\tO\n!!\tO\t!!\tO\n!\tO\t!\tO\n\t\nRelevant\tO\tRelevant\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\nhttp://mongodb.github.io/mongo-cxx-driver/api/mongocxx-3.1.1/classmongocxx_1_1bulk__write.html\tO\thttp://mongodb.github.io/mongo-cxx-driver/api/mongocxx-3.1.1/classmongocxx_1_1bulk__write.html\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\noperation\tO\toperation\tO\nusing\tO\tusing\tO\nbulk_write::bulk_write()\tB-Library_Function\tbulk_write::bulk_write()\tB-Code_Block\nand\tO\tand\tO\nadd\tO\tadd\tO\nqueries\tO\tqueries\tO\nusing\tO\tusing\tO\nbulk_write::append()\tB-Library_Function\tbulk_write::append()\tB-Code_Block\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nconfused\tO\tconfused\tO\nas\tO\tas\tO\nto\tO\tto\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nterrible\tO\tterrible\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nprovide\tO\tprovide\tO\nsimilar\tO\tsimilar\tO\nfunctions\tO\tfunctions\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nmongo\tB-Application\tmongo\tO\nshell\tI-Application\tshell\tO\n.\tO\t.\tO\n\t\nEx\tO\tEx\tO\n:\tO\t:\tO\nhttps://docs.mongodb.com/manual/reference/method/Bulk/\tO\thttps://docs.mongodb.com/manual/reference/method/Bulk/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41430759\tO\t41430759\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41430759/\tO\thttps://stackoverflow.com/questions/41430759/\tO\n\t\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nbulk_write\tB-Library_Function\tbulk_write\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\npopulate\tO\tpopulate\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nwrite\tO\twrite\tO\noperations\tO\toperations\tO\nand\tO\tand\tO\nfinally\tO\tfinally\tO\nsubmit\tO\tsubmit\tO\nit\tO\tit\tO\nto\tO\tto\tO\nMongo\tB-Application\tMongo\tO\ncollection\tO\tcollection\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5938\tI-Code_Block\tA_5938\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18298603\tO\t18298603\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18298603/\tO\thttps://stackoverflow.com/questions/18298603/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nGoogle\tB-Library\tGoogle\tO\nMaps\tI-Library\tMaps\tO\nv2\tB-Version\tv2\tO\nlibraries\tO\tlibraries\tO\ninto\tO\tinto\tO\nmy\tO\tmy\tO\nlocal\tO\tlocal\tO\nMaven\tB-File_Name\tMaven\tO\nrepository\tO\trepository\tO\nusing\tO\tusing\tO\nmaven-android-sdk-deployer\tB-Application\tmaven-android-sdk-deployer\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmanual\tO\tmanual\tO\non\tO\ton\tO\nthat\tO\tthat\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nmvn\tB-Code_Block\tmvn\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n-P\tI-Code_Block\t-P\tI-Code_Block\n4.1\tI-Code_Block\t4.1\tI-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1890\tI-Code_Block\tQ_1890\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nno\tO\tno\tO\nappcompat\tB-Library\tappcompat\tB-Code_Block\ndirectory\tO\tdirectory\tO\nin\tO\tin\tO\nC:\\Program\tB-File_Name\tC:\\Program\tB-Code_Block\nFiles\tI-File_Name\tFiles\tI-Code_Block\n\\adt-bundle-windows-x86\\adt-bundle-windows-x86\\sdk\\extras\\android\\support\\v7\tI-File_Name\t\\adt-bundle-windows-x86\\adt-bundle-windows-x86\\sdk\\extras\\android\\support\\v7\tI-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nsome\tO\tsome\tO\npackag\tO\tpackag\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nAndroid\tB-Application\tAndroid\tO\nSDK\tI-Application\tSDK\tO\nManager\tI-Application\tManager\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\npackage\tO\tpackage\tO\n(\tO\t(\tO\nname\tO\tname\tO\n,\tO\t,\tO\nversion\tO\tversion\tO\n)\tO\t)\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ninstall\tO\tinstall\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18298603\tO\t18298603\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18298603/\tO\thttps://stackoverflow.com/questions/18298603/\tO\n\t\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnecessary\tO\tnecessary\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nall\tO\tall\tO\n\"\tO\t\"\tO\nExtras\tO\tExtras\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAndroid\tB-Application\tAndroid\tO\nSDK\tI-Application\tSDK\tO\nmanager\tI-Application\tmanager\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14687673\tO\t14687673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14687673/\tO\thttps://stackoverflow.com/questions/14687673/\tO\n\t\n\t\nI\tO\tI\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nconnection\tO\tconnection\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nlink\tO\tlink\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nasynctask\tB-Library_Class\tasynctask\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsometimes\tO\tsometimes\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\ncrash\tO\tcrash\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthread\tO\tthread\tO\ni\tO\ti\tO\nthink\tO\tthink\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\ni\tO\ti\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nalways\tO\talways\tO\ncrash\tO\tcrash\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nsolution\tO\tsolution\tO\n?\tO\t?\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nonCreate\tB-Library_Function\tonCreate\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1402\tI-Code_Block\tQ_1402\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14687673\tO\t14687673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14687673/\tO\thttps://stackoverflow.com/questions/14687673/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\ncheck\tO\tcheck\tO\nnet\tO\tnet\tO\nconnection\tO\tconnection\tO\ninside\tO\tinside\tO\ndoInBackground\tB-Library_Function\tdoInBackground\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1862\tI-Code_Block\tA_1862\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14687673\tO\t14687673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14687673/\tO\thttps://stackoverflow.com/questions/14687673/\tO\n\t\n\t\nYour\tO\tYour\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nvague\tO\tvague\tO\n!\tO\t!\tO\n\t\nYet\tO\tYet\tO\n:\tO\t:\tO\nIn\tO\tIn\tO\nnewer\tO\tnewer\tO\nandroids\tB-Operating_System\tandroids\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\nexecute\tO\texecute\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthread\tO\tthread\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1857\tI-Code_Block\tA_1857\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nso\tO\tso\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\neverything\tO\teverything\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nThread\tB-Library_Class\tThread\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1858\tI-Code_Block\tA_1858\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nhas\tO\thas\tO\nsome\tO\tsome\tO\nblocks\tO\tblocks\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\na\tO\ta\tO\ndialog\tB-User_Interface_Element\tdialog\tO\n(\tO\t(\tO\nguessing\tO\tguessing\tO\n)\tO\t)\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1859\tI-Code_Block\tA_1859\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThese\tO\tThese\tO\nfunction\tO\tfunction\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nhandler\tB-Library_Class\thandler\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1860\tI-Code_Block\tA_1860\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\ninside\tO\tinside\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1861\tI-Code_Block\tA_1861\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nfix\tO\tfix\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreal\tO\treal\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\npost\tO\tpost\tO\nthe\tO\tthe\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tO\nanyway\tO\tanyway\tO\nand\tO\tand\tO\nhandle\tO\thandle\tO\nerrors\tO\terrors\tO\nor\tO\tor\tO\nsuccess\tO\tsuccess\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nonPostExecute()\tB-Library_Function\tonPostExecute()\tB-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17283382\tO\t17283382\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17283382/\tO\thttps://stackoverflow.com/questions/17283382/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\na\tO\ta\tO\ntotal\tO\ttotal\tO\nnewbie\tO\tnewbie\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nusing\tO\tusing\tO\nTerminal\tB-Application\tTerminal\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nunderstand\tO\tunderstand\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nhappening\tO\thappening\tO\nhere\tO\there\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nupgrade\tO\tupgrade\tO\nmy\tO\tmy\tO\nruby\tB-Language\truby\tO\nversion\tO\tversion\tO\n(\tO\t(\tO\n1.8.7\tB-Version\t1.8.7\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nrvm\tB-Application\trvm\tO\non\tO\ton\tO\na\tO\ta\tO\nMac\tB-Operating_System\tMac\tO\nOS\tI-Operating_System\tOS\tO\nX\tI-Operating_System\tX\tO\n10.7.3\tB-Version\t10.7.3\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ninput\tO\tinput\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1757\tI-Code_Block\tQ_1757\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1758\tI-Code_Block\tQ_1758\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\nmean\tO\tmean\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nproceed\tO\tproceed\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ninstallation\tO\tinstallation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17283382\tO\t17283382\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17283382/\tO\thttps://stackoverflow.com/questions/17283382/\tO\n\t\n\t\nThe\tO\tThe\tO\ncurrent\tB-Code_Block\tcurrent\tB-Code_Block\nrvm\tI-Code_Block\trvm\tO\ncommand\tO\tcommand\tO\noutputs\tO\toutputs\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nactive\tO\tactive\tO\ninstallation\tO\tinstallation\tO\nof\tO\tof\tO\nRuby\tB-Language\tRuby\tO\n;\tO\t;\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nusing\tO\tusing\tO\nyour\tO\tyour\tO\nsystem\tO\tsystem\tO\n's\tO\t's\tO\npre-installed\tO\tpre-installed\tO\nRuby\tB-Language\tRuby\tO\n(\tO\t(\tO\n1.8.7\tB-Version\t1.8.7\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2262\tI-Code_Block\tA_2262\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6565999\tO\t6565999\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6565999/\tO\thttps://stackoverflow.com/questions/6565999/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nfashioning\tO\tfashioning\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nafter\tO\tafter\tO\nGame\tB-Application\tGame\tO\nMaker\tI-Application\tMaker\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nhow\tO\thow\tO\neasy\tO\teasy\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nhas\tO\thas\tO\na\tO\ta\tO\nSplitContainer\tB-Library_Class\tSplitContainer\tO\nwith\tO\twith\tO\nPanel1\tB-Variable_Name\tPanel1\tO\ncontaining\tO\tcontaining\tO\na\tO\ta\tO\nTreeView\tB-Library_Class\tTreeView\tO\nand\tO\tand\tO\nPanel2\tB-Variable_Name\tPanel2\tO\ncontaining\tO\tcontaining\tO\nan\tO\tan\tO\narbitrary\tO\tarbitrary\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nself-contained\tO\tself-contained\tO\nwindows\tB-User_Interface_Element\twindows\tO\n(\tO\t(\tO\nreal\tO\treal\tO\nwindows\tB-User_Interface_Element\twindows\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nsome\tO\tsome\tO\nhacky\tO\thacky\tO\nworkaround\tO\tworkaround\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nuser-controls\tO\tuser-controls\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\ncontrols\tB-Library_Class\tcontrols\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nthings\tO\tthings\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nput\tO\tput\tO\nit\tO\tit\tO\nin\tO\tin\tO\na\tO\ta\tO\nwindow\tB-User_Interface_Element\twindow\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nsplitContainer\tB-Library_Class\tsplitContainer\tO\n's\tO\t's\tO\nPanel2\tB-Variable_Name\tPanel2\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nhttp://i.stack.imgur.com/CG6kO.png\tO\thttp://i.stack.imgur.com/CG6kO.png\tO\n\t\nThose\tO\tThose\tO\ntwo\tO\ttwo\tO\nsprite\tO\tsprite\tO\nproperty\tO\tproperty\tO\nwindows\tB-User_Interface_Element\twindows\tO\nare\tO\tare\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6565999\tO\t6565999\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6565999/\tO\thttps://stackoverflow.com/questions/6565999/\tO\n\t\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nsimilar\tO\tsimilar\tO\nthing\tO\tthing\tO\nonce\tO\tonce\tO\n,\tO\t,\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nreason\tO\treason\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nReplaceControl\tB-Function_Name\tReplaceControl\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\npaste\tO\tpaste\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_748\tI-Code_Block\tA_748\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOnly\tO\tOnly\tO\nthing\tO\tthing\tO\nleft\tO\tleft\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nsome\tO\tsome\tO\ncontrol\tB-Library_Class\tcontrol\tO\nmanually\tO\tmanually\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nform\tB-Library_Class\tform\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nplaceholder\tO\tplaceholder\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nForm\tB-Library_Class\tForm\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nlabel\tB-Library_Class\tlabel\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na-form-inside-a-form\tO\ta-form-inside-a-form\tO\nwith\tO\twith\tO\nruntime\tO\truntime\tO\nembedded\tO\tembedded\tO\nforms\tO\tforms\tO\nswitching\tO\tswitching\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6565999\tO\t6565999\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6565999/\tO\thttps://stackoverflow.com/questions/6565999/\tO\n\t\n\t\nPut\tO\tPut\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nPanel2\tB-Variable_Name\tPanel2\tO\n's\tO\t's\tO\nControl\tB-Library_Class\tControl\tO\ncollection\tO\tcollection\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nAdd()\tB-Library_Function\tAdd()\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\napply\tO\tapply\tO\ncoordinates\tO\tcoordinates\tO\n,\tO\t,\tO\nanchor\tO\tanchor\tO\nand\tO\tand\tO\ndocking\tO\tdocking\tO\nprogrammaticaly\tO\tprogrammaticaly\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27886442\tO\t27886442\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27886442/\tO\thttps://stackoverflow.com/questions/27886442/\tO\n\t\n\t\nThis\tO\tThis\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\nbasic\tO\tbasic\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nam\tO\tam\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\ndigit\tO\tdigit\tO\nof\tO\tof\tO\na\tO\ta\tO\nnumber\tB-Data_Type\tnumber\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ndigit\tO\tdigit\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\n54\tB-Value\t54\tB-Code_Block\nwill\tO\twill\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\ntwo\tO\ttwo\tO\nintegers\tB-Data_Type\tintegers\tO\n,\tO\t,\tO\nint\tB-Code_Block\tint\tB-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n5\tI-Code_Block\t5\tI-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nint\tB-Code_Block\tint\tB-Code_Block\nb\tI-Code_Block\tb\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n4\tI-Code_Block\t4\tI-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27886442\tO\t27886442\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27886442/\tO\thttps://stackoverflow.com/questions/27886442/\tO\n\t\n\t\nTry\tO\tTry\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3868\tI-Code_Block\tA_3868\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBasic\tO\tBasic\tO\nstuff\tO\tstuff\tO\n\t\nFor\tO\tFor\tO\niharob\tB-User_Name\tiharob\tO\nsatisfaction\tO\tsatisfaction\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3869\tI-Code_Block\tA_3869\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27886442\tO\t27886442\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27886442/\tO\thttps://stackoverflow.com/questions/27886442/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3870\tI-Code_Block\tA_3870\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nnotice\tO\tnotice\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ndigits\tO\tdigits\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35087680\tO\t35087680\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35087680/\tO\thttps://stackoverflow.com/questions/35087680/\tO\n\t\n\t\nContext\tO\tContext\tO\n\t\nIn\tO\tIn\tO\na\tO\ta\tO\nC#\tB-Language\tC#\tO\nWindows\tB-Library_Class\tWindows\tO\nForms\tI-Library_Class\tForms\tO\napplication\tO\tapplication\tO\nfor\tO\tfor\tO\nWin7\tB-Operating_System\tWin7\tO\nwe\tO\twe\tO\nhost\tO\thost\tO\nan\tO\tan\tO\nActiveX\tB-Library_Class\tActiveX\tO\ncontrol\tI-Library_Class\tcontrol\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nso\tO\tso\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nNeed\tO\tNeed\tO\n:\tO\t:\tO\nprevent\tO\tprevent\tO\nActiveX\tB-Library\tActiveX\tO\nto\tO\tto\tO\nreceive\tO\treceive\tO\nmouse\tB-Device\tmouse\tO\nevents\tO\tevents\tO\n\t\nActually\tO\tActually\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nActiveX\tB-Library\tActiveX\tO\nhas\tO\thas\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\nfunctionality\tO\tfunctionality\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\ncustomizable\tO\tcustomizable\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\noff\tO\toff\tO\nfeatures\tO\tfeatures\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\nif\tO\tif\tO\nwe\tO\twe\tO\njust\tO\tjust\tO\nprevented\tO\tprevented\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nreceiving\tO\treceiving\tO\nmouse\tB-Device\tmouse\tO\nevents\tO\tevents\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nideal\tO\tideal\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\njust\tO\tjust\tO\ntreat\tO\ttreat\tO\nevents\tO\tevents\tO\nas\tO\tas\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nActiveX\tB-Library\tActiveX\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmouse\tB-Device\tmouse\tO\nclicks\tO\tclicks\tO\ngo\tO\tgo\tO\nright\tO\tright\tO\nthrough\tO\tthrough\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nunderlying\tO\tunderlying\tO\n(\tO\t(\tO\nor\tO\tor\tO\ncontaining\tO\tcontaining\tO\n)\tO\t)\tO\nControl\tB-Library_Class\tControl\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nwe\tO\twe\tO\njust\tO\tjust\tO\nprevent\tO\tprevent\tO\nthe\tO\tthe\tO\nActiveX\tB-Library\tActiveX\tO\nfrom\tO\tfrom\tO\ngetting\tO\tgetting\tO\nevents\tO\tevents\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nokay\tO\tokay\tO\nwith\tO\twith\tO\nus\tO\tus\tO\n.\tO\t.\tO\n\t\nSearch\tO\tSearch\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nask\tO\task\tO\n\t\nSome\tO\tSome\tO\nanswers\tO\tanswers\tO\nto\tO\tto\tO\nprevious\tO\tprevious\tO\nquestions\tO\tquestions\tO\nmention\tO\tmention\tO\nto\tO\tto\tO\nprotected\tB-Code_Block\tprotected\tB-Code_Block\noverride\tI-Code_Block\toverride\tI-Code_Block\nvoid\tI-Code_Block\tvoid\tI-Code_Block\nWndProc\tI-Code_Block\tWndProc\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nref\tI-Code_Block\tref\tI-Code_Block\nMessage\tI-Code_Block\tMessage\tI-Code_Block\nm\tI-Code_Block\tm\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nc#\tB-Language\tc#\tO\n-\tO\t-\tO\nPass-through\tO\tPass-through\tO\nmouse\tB-Device\tmouse\tO\nevents\tO\tevents\tO\nto\tO\tto\tO\nparent\tO\tparent\tO\ncontrol\tO\tcontrol\tO\n-\tO\t-\tO\nStack\tB-Website\tStack\tO\nOverflow\tI-Website\tOverflow\tO\n\t\nOther\tO\tOther\tO\nmentions\tO\tmentions\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nIMessageFilters\tB-Library_Class\tIMessageFilters\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n:\tO\t:\tO\n\t\nwinforms\tB-Library_Class\twinforms\tO\n-\tO\t-\tO\nC#\tB-Language\tC#\tO\nApplication-Wide\tO\tApplication-Wide\tO\nLeft\tO\tLeft\tO\nMouse\tB-Device\tMouse\tO\nClick\tO\tClick\tO\nEvent\tO\tEvent\tO\n-\tO\t-\tO\nStack\tB-Website\tStack\tO\nOverflow\tI-Website\tOverflow\tO\n\t\nwinforms\tB-Library_Class\twinforms\tO\n-\tO\t-\tO\nHandling\tO\tHandling\tO\na\tO\ta\tO\nclick\tO\tclick\tO\nevent\tO\tevent\tO\nanywhere\tO\tanywhere\tO\ninside\tO\tinside\tO\na\tO\ta\tO\npanel\tO\tpanel\tO\nin\tO\tin\tO\nC#\tB-Language\tC#\tO\n-\tO\t-\tO\nStack\tB-Website\tStack\tO\nOverflow\tI-Website\tOverflow\tO\n\t\nwinforms\tB-Library_Class\twinforms\tO\n-\tO\t-\tO\nC#\tB-Language\tC#\tO\nApplication-Wide\tO\tApplication-Wide\tO\nLeft\tO\tLeft\tO\nMouse\tB-Device\tMouse\tO\nClick\tO\tClick\tO\nEvent\tO\tEvent\tO\n-\tO\t-\tO\nStack\tB-Website\tStack\tO\nOverflow\tI-Website\tOverflow\tO\n\t\nCapturing\tO\tCapturing\tO\nMouse\tB-Device\tMouse\tO\nEvents\tO\tEvents\tO\nfrom\tO\tfrom\tO\nevery\tO\tevery\tO\ncomponent\tO\tcomponent\tO\non\tO\ton\tO\nC#\tB-Language\tC#\tO\nWInForm\tB-Library\tWInForm\tO\n-\tO\t-\tO\nStack\tB-Website\tStack\tO\nOverflow\tI-Website\tOverflow\tO\n\t\nExperiment\tO\tExperiment\tO\n:\tO\t:\tO\nActiveX\tB-Library\tActiveX\tO\nstill\tO\tstill\tO\ngets\tO\tgets\tO\nevents\tO\tevents\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nfairly\tO\tfairly\tO\nextensively\tO\textensively\tO\ntried\tO\ttried\tO\nboth\tO\tboth\tO\noverride\tO\toverride\tB-Code_Block\nWndProc\tB-Library_Class\tWndProc\tI-Code_Block\nand\tO\tand\tO\nIMessageFilter\tB-Library_Class\tIMessageFilter\tB-Code_Block\nways\tO\tways\tO\n,\tO\t,\tO\nfiltering\tO\tfiltering\tO\n(\tO\t(\tO\nopt-in\tO\topt-in\tO\nand\tO\tand\tO\nopt-out\tO\topt-out\tO\n)\tO\t)\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nevents\tO\tevents\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nprevent\tO\tprevent\tO\nevents\tO\tevents\tO\nto\tO\tto\tO\nreach\tO\treach\tO\nnative\tO\tnative\tO\nC#\tB-Language\tC#\tO\ncontrols\tO\tcontrols\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nActiveX\tB-Library\tActiveX\tO\nstill\tO\tstill\tO\ngot\tO\tgot\tO\nits\tO\tits\tO\nshare\tO\tshare\tO\n.\tO\t.\tO\n\t\nFiltering\tO\tFiltering\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\n,\tO\t,\tO\nprevented\tO\tprevented\tO\ncontrols\tO\tcontrols\tO\nand\tO\tand\tO\nActiveX\tB-Library\tActiveX\tO\nto\tO\tto\tO\npaint\tO\tpaint\tO\n,\tO\t,\tO\nor\tO\tor\tO\neven\tO\teven\tO\napplication\tO\tapplication\tO\nto\tO\tto\tO\ndraw\tO\tdraw\tO\nproperly\tO\tproperly\tO\nor\tO\tor\tO\ncaused\tO\tcaused\tO\ncrash\tO\tcrash\tO\non\tO\ton\tO\nexit\tO\texit\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naverted\tO\taverted\tO\nby\tO\tby\tO\nselecting\tO\tselecting\tO\nopt-in\tO\topt-in\tO\nor\tO\tor\tO\nopt-out\tO\topt-out\tO\noptions\tO\toptions\tO\ncarefully\tO\tcarefully\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nanother\tO\tanother\tO\nway\tO\tway\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nanother\tO\tanother\tO\nway\tO\tway\tO\nfrom\tO\tfrom\tO\nC#\tB-Language\tC#\tO\n/.NET\tB-Library\t/.NET\tO\nto\tO\tto\tO\nhost\tO\thost\tO\nan\tO\tan\tO\nActiveX\tB-Library_Class\tActiveX\tO\nControl\tI-Library_Class\tControl\tO\nwhile\tO\twhile\tO\npreventing\tO\tpreventing\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\ngetting\tO\tgetting\tO\nmouse\tB-Device\tmouse\tO\nevents\tO\tevents\tO\n?\tO\t?\tO\n\t\nPerhaps\tO\tPerhaps\tO\nat\tO\tat\tO\napplication\tO\tapplication\tO\nstart\tO\tstart\tO\ntime\tO\ttime\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35087680\tO\t35087680\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35087680/\tO\thttps://stackoverflow.com/questions/35087680/\tO\n\t\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nEnableWindow(hand,FALSE)\tB-Library_Function\tEnableWindow(hand,FALSE)\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nuppermost\tO\tuppermost\tO\nhwnd\tB-Library_Class\thwnd\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nActiveX\tB-Library\tActiveX\tO\nControl\tI-Library\tControl\tO\nafter\tO\tafter\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nUsing\tO\tUsing\tO\nWindow\tO\tWindow\tO\nHandle\tO\tHandle\tO\nto\tO\tto\tO\ndisable\tO\tdisable\tO\nMouse\tB-Device\tMouse\tO\nclicks\tO\tclicks\tO\nusing\tO\tusing\tO\nc#\tB-Language\tc#\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nc#\tB-Language\tc#\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36059546\tO\t36059546\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36059546/\tO\thttps://stackoverflow.com/questions/36059546/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\ngoogle\tB-Library\tgoogle\tO\nmaps\tI-Library\tmaps\tO\napi\tI-Library\tapi\tO\n,\tO\t,\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nPOLYGONS\tB-Library_Class\tPOLYGONS\tO\nand\tO\tand\tO\nPOLYINES\tB-Library_Class\tPOLYINES\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nboth\tO\tboth\tO\n(\tO\t(\tO\npolygon\tB-Library_Class\tpolygon\tO\nand\tO\tand\tO\npolyline\tB-Library_Class\tpolyline\tO\n)\tO\t)\tO\nin\tO\tin\tO\ngoogle\tB-Library\tgoogle\tO\nmaps\tI-Library\tmaps\tO\napi\tI-Library\tapi\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntried\tO\ttried\tO\nsomething\tO\tsomething\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nnot\tO\tnot\tO\nshow\tO\tshow\tO\nboth\tO\tboth\tO\npolygons\tB-Variable_Name\tpolygons\tO\nand\tO\tand\tO\npolyline\tB-Variable_Name\tpolyline\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\npolygons\tB-Variable_Name\tpolygons\tO\nis\tO\tis\tO\nshowing\tO\tshowing\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nboth\tO\tboth\tO\nPolygons\tB-Library_Class\tPolygons\tO\nand\tO\tand\tO\npolylines.I\tB-Library_Class\tpolylines.I\tO\nhave\tO\thave\tO\na\tO\ta\tO\nJson\tB-File_Type\tJson\tO\nthat\tO\tthat\tO\njson\tB-File_Type\tjson\tO\nhave\tO\thave\tO\nsource\tO\tsource\tO\npolygon\tB-Library_Class\tpolygon\tO\nor\tO\tor\tO\npolyline\tB-Library_Class\tpolyline\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nsource\tO\tsource\tO\nbased\tO\tbased\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nshowing\tO\tshowing\tO\nhere.sorry\tO\there.sorry\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nenglish\tO\tenglish\tO\n.\tO\t.\tO\n\t\nHopefully\tO\tHopefully\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\nkindly\tO\tkindly\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfailing\tO\tfailing\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n.Demo\tO\t.Demo\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4418\tI-Code_Block\tQ_4418\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36059546\tO\t36059546\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36059546/\tO\thttps://stackoverflow.com/questions/36059546/\tO\n\t\n\t\nA\tO\tA\tO\ngoogle.maps.PolylineOptions\tB-Library_Class\tgoogle.maps.PolylineOptions\tO\nobject\tO\tobject\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\npaths\tO\tpaths\tB-Code_Block\nproperty\tO\tproperty\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nvalid\tO\tvalid\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngoogle.maps.PolygonOptions\tB-Library_Class\tgoogle.maps.PolygonOptions\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nChange\tO\tChange\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5146\tI-Code_Block\tA_5146\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5147\tI-Code_Block\tA_5147\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nproof\tO\tproof\tO\nof\tO\tof\tO\nconcept\tO\tconcept\tO\nfiddle\tB-Application\tfiddle\tO\n\t\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5148\tI-Code_Block\tQ_5148\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5149\tI-Code_Block\tQ_5149\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5150\tI-Code_Block\tQ_5150\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11520804\tO\t11520804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11520804/\tO\thttps://stackoverflow.com/questions/11520804/\tO\n\t\n\t\nPage\tB-User_Interface_Element\tPage\tO\nis\tO\tis\tO\nrefreshed\tO\trefreshed\tO\nevery\tO\tevery\tO\n5\tO\t5\tO\nseconds\tO\tseconds\tO\n.\tO\t.\tO\n\t\nImages\tB-User_Interface_Element\tImages\tO\nthat\tO\tthat\tO\nreceived\tO\treceived\tO\nfrom\tO\tfrom\tO\n.php\tB-File_Type\t.php\tB-Code_Block\nfile\tO\tfile\tO\nare\tO\tare\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\n<li\tB-HTML_XML_Tag\t<li\tB-Code_Block\n>\tI-HTML_XML_Tag\t>\tI-Code_Block\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1066\tI-Code_Block\tQ_1066\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEverything\tO\tEverything\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nreloadImages()\tB-Function_Name\treloadImages()\tB-Code_Block\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n,\tO\t,\tO\nImages\tB-User_Interface_Element\tImages\tO\nare\tO\tare\tO\nflickering\tO\tflickering\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nreload\tO\treload\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nthis\tO\tthis\tO\nflicker\tO\tflicker\tO\n?\tO\t?\tO\n\t\nPreload\tO\tPreload\tO\nImages\tB-User_Interface_Element\tImages\tO\n?\tO\t?\tO\n\t\nHelp\tO\tHelp\tO\nme\tO\tme\tO\naddress\tO\taddress\tO\nthe\tO\tthe\tO\nflickering\tO\tflickering\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11520804\tO\t11520804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11520804/\tO\thttps://stackoverflow.com/questions/11520804/\tO\n\t\n\t\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfolowing\tO\tfolowing\tO\nmechanism\tO\tmechanism\tO\nof\tO\tof\tO\npreload\tO\tpreload\tO\nand\tO\tand\tO\ncallback\tO\tcallback\tO\n(\tO\t(\tO\nis'n\tO\tis'n\tO\ntested\tO\ttested\tO\nactually\tO\tactually\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1480\tI-Code_Block\tA_1480\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11520804\tO\t11520804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11520804/\tO\thttps://stackoverflow.com/questions/11520804/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nhttps://github.com/desandro/imagesloaded\tO\thttps://github.com/desandro/imagesloaded\tO\nplugin\tO\tplugin\tO\nto\tO\tto\tO\nload\tO\tload\tO\nimages\tB-User_Interface_Element\timages\tO\ninto\tO\tinto\tO\ndisplay\tB-Code_Block\tdisplay\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nnone\tI-Code_Block\tnone\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\ndiv\tB-HTML_XML_Tag\tdiv\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nmove\tO\tmove\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ndestionation\tO\tdestionation\tO\non\tO\ton\tO\ncallback\tB-Library_Function\tcallback\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20321910\tO\t20321910\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20321910/\tO\thttps://stackoverflow.com/questions/20321910/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nGhost\tB-Application\tGhost\tO\nBlogging\tI-Application\tBlogging\tO\nPlatform\tI-Application\tPlatform\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ninsert\tO\tinsert\tO\na\tO\ta\tO\nimage\tB-User_Interface_Element\timage\tO\nit\tO\tit\tO\nautomatically\tO\tautomatically\tO\nwraps\tO\twraps\tO\na\tO\ta\tO\nimage\tB-User_Interface_Element\timage\tO\nin\tO\tin\tO\na\tO\ta\tO\np\tB-HTML_XML_Tag\tp\tO\ntag\tO\ttag\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmax-width\tB-Library_Variable\tmax-width\tO\nsetup\tO\tsetup\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\nwrapping\tO\twrapping\tO\nthe\tO\tthe\tO\np\tB-HTML_XML_Tag\tp\tO\ntag\tO\ttag\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nimg\tB-HTML_XML_Tag\timg\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nimg\tB-HTML_XML_Tag\timg\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nlarger\tO\tlarger\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\na\tO\ta\tO\nwidth\tB-Library_Variable\twidth\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nimg\tB-HTML_XML_Tag\timg\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nlarger\tO\tlarger\tO\nwith\tO\twith\tO\nwidth\tB-Code_Block\twidth\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n62rem\tI-Code_Block\t62rem\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nHowever\tO\tHowever\tO\nit\tO\tit\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nis\tO\tis\tO\nresponsive\tO\tresponsive\tO\nvs\tO\tvs\tO\nwidth\tB-Code_Block\twidth\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n100%\tI-Code_Block\t100%\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nimg\tB-HTML_XML_Tag\timg\tO\nto\tO\tto\tO\nresize\tO\tresize\tO\nas\tO\tas\tO\nI\tO\tI\tO\nresize\tO\tresize\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nhoping\tO\thoping\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwithout\tO\twithout\tO\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\nI\tO\tI\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nalready\tO\talready\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\np\tB-HTML_XML_Tag\tp\tO\ntags\tO\ttags\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\nblockquote\tB-HTML_XML_Tag\tblockquote\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\nsection\tO\tsection\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nmy\tO\tmy\tO\nimage\tB-User_Interface_Element\timage\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\np\tB-HTML_XML_Tag\tp\tO\ntag\tO\ttag\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nmain\tO\tmain\tO\nconcern\tO\tconcern\tO\nis\tO\tis\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\nimg\tB-HTML_XML_Tag\timg\tO\nresponsive\tO\tresponsive\tO\nand\tO\tand\tO\nlarger\tO\tlarger\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nalready\tO\talready\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nlarger\tO\tlarger\tO\non\tO\ton\tO\nits\tO\tits\tO\nown\tO\town\tO\nwith\tO\twith\tO\na\tO\ta\tO\nspecified\tO\tspecified\tO\nwidth\tB-Library_Variable\twidth\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nstays\tO\tstays\tO\nresponsive\tO\tresponsive\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nCODE\tO\tCODE\tO\n\t\nHTML\tB-Language\tHTML\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2156\tI-Code_Block\tQ_2156\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCSS\tB-Language\tCSS\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2157\tI-Code_Block\tQ_2157\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20321910\tO\t20321910\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20321910/\tO\thttps://stackoverflow.com/questions/20321910/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nsetting\tO\tsetting\tO\n100%\tO\t100%\tO\nwidth\tB-Library_Variable\twidth\tO\ntoo\tO\ttoo\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nalso\tO\talso\tO\ngiving\tO\tgiving\tO\nit\tO\tit\tO\nborders\tB-User_Interface_Element\tborders\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncauses\tO\tcauses\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsubtract\tO\tsubtract\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nborder\tB-Library_Variable\tborder\tO\nfrom\tO\tfrom\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2707\tI-Code_Block\tA_2707\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFiddle\tB-Application\tFiddle\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20321910\tO\t20321910\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20321910/\tO\thttps://stackoverflow.com/questions/20321910/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nof\tO\tof\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nsize\tO\tsize\tO\nand\tO\tand\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nwithin\tO\twithin\tO\nthat\tO\tthat\tO\nwhich\tO\twhich\tO\nthen\tO\tthen\tO\nbreaks\tO\tbreaks\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nset\tO\tset\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nlarger\tO\tlarger\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\n.container\tB-Code_Block\t.container\tB-Code_Block\n\t\nFirst\tO\tFirst\tO\nthing\tO\tthing\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nreorganize\tO\treorganize\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\ncontainer\tO\tcontainer\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nFIDDLE\tB-Application\tFIDDLE\tO\nof\tO\tof\tO\nsome\tO\tsome\tO\nbasic\tO\tbasic\tO\nhtml\tB-Language\thtml\tO\nto\tO\tto\tO\nreference\tO\treference\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nthing\tO\tthing\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ndo\tO\tdo\tO\n-\tO\t-\tO\nis\tO\tis\tO\nask\tO\task\tO\na\tO\ta\tO\nmore\tO\tmore\tO\ntargeted\tO\ttargeted\tO\nquestion\tO\tquestion\tO\nabout\tO\tabout\tO\nremoving\tO\tremoving\tO\nthe\tO\tthe\tO\nautomatic\tO\tautomatic\tO\np\tB-HTML_XML_Tag\tp\tO\ntag\tO\ttag\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nin\tO\tin\tO\na\tO\ta\tO\nghost\tB-Application\tghost\tO\nforum\tO\tforum\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nthey\tO\tthey\tO\nexist\tO\texist\tO\nby\tO\tby\tO\nnow\tO\tnow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nWordPress\tB-Website\tWordPress\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nrunning\tO\trunning\tO\na\tO\ta\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\nsearch\tO\tsearch\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbet\tO\tbet\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nghost\tB-Application\tghost\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthere\tO\tthere\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nreally\tO\treally\tO\nreally\tO\treally\tO\nsoon\tO\tsoon\tO\n-\tO\t-\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nhuge\tO\thuge\tO\npain\tO\tpain\tO\n-\tO\t-\tO\nand\tO\tand\tO\nalmost\tO\talmost\tO\nno\tO\tno\tO\none\tO\tone\tO\nactually\tO\tactually\tO\nputs\tO\tputs\tO\nimages\tB-User_Interface_Element\timages\tO\ninline\tO\tinline\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\ndid\tO\tdid\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nwould\tO\twould\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\nwhen\tO\twhen\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2708\tI-Code_Block\tA_2708\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\nwith\tO\twith\tO\nGhost\tB-Application\tGhost\tO\nsoon\tO\tsoon\tO\nand\tO\tand\tO\nI\tO\tI\tO\nbet\tO\tbet\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38572866\tO\t38572866\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38572866/\tO\thttps://stackoverflow.com/questions/38572866/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nroute\tO\troute\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nnode/express\tB-Library\tnode/express\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\nres.render\tB-Library_Function\tres.render\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4860\tI-Code_Block\tQ_4860\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOn\tO\tOn\tO\nrendering\tO\trendering\tO\nthis\tO\tthis\tO\nindex\tO\tindex\tO\npage\tB-User_Interface_Element\tpage\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncapture\tO\tcapture\tO\nthis\tO\tthis\tO\nreq.user\tB-Library_Variable\treq.user\tO\nas\tO\tas\tO\na\tO\ta\tO\n$scope\tB-Library_Class\t$scope\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nangular\tB-Library\tangular\tO\ncontroller\tO\tcontroller\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfront\tO\tfront\tO\nend\tO\tend\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\n?\tO\t?\tO\n\t\nPlease\tO\tPlease\tO\nprovide\tO\tprovide\tO\ncode\tO\tcode\tO\nsnippets\tO\tsnippets\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38572866\tO\t38572866\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38572866/\tO\thttps://stackoverflow.com/questions/38572866/\tO\n\t\n\t\nTo\tO\tTo\tO\naccomplish\tO\taccomplish\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nfirst\tO\tfirst\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nline\tO\tline\tO\nin\tO\tin\tO\nJADE\tB-Library\tJADE\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nglobal\tB-Data_Type\tglobal\tO\njavascript\tB-Language\tjavascript\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nhold\tO\thold\tO\nthe\tO\tthe\tO\nuser\tB-Variable_Name\tuser\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5580\tI-Code_Block\tA_5580\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncontroller\tO\tcontroller\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5581\tI-Code_Block\tA_5581\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nprojects\tO\tprojects\tO\n.\tO\t.\tO\n\t\nAaron\tB-User_Name\tAaron\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25892372\tO\t25892372\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25892372/\tO\thttps://stackoverflow.com/questions/25892372/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\ndelegate\tO\tdelegate\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\nlineedit\tB-Variable_Name\tlineedit\tO\nwith\tO\twith\tO\nsuggestions\tO\tsuggestions\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\npassing\tO\tpassing\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nthat\tO\tthat\tO\ndelegate\tO\tdelegate\tO\nshould\tO\tshould\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nfrom\tO\tfrom\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nsince\tO\tsince\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\ndelgate\tO\tdelgate\tO\nis\tO\tis\tO\nconstructed\tO\tconstructed\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nQCompleter\tB-Library_Class\tQCompleter\tO\nis\tO\tis\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nnot\tO\tnot\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nexternal\tO\texternal\tO\nmodifications\tO\tmodifications\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nrecived_model\tB-Variable_Name\trecived_model\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nonly\tO\tonly\tO\nwork\tO\twork\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nsuggestions\tO\tsuggestions\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nrecived_model\tB-Variable_Name\trecived_model\tO\nhas\tO\thas\tO\nn't\tO\tn't\tO\nchanged\tO\tchanged\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nConsidering\tO\tConsidering\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndelegates\tO\tdelegates\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nused\tO\tused\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nrecived_model\tB-Variable_Name\trecived_model\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthere\tO\tthere\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ncompleter\tO\tcompleter\tO\nto\tO\tto\tO\nget\tO\tget\tO\nsuggestions\tO\tsuggestions\tO\nfrom\tO\tfrom\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nusing\tO\tusing\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nfor\tB-Code_Block\tfor\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nQStringList\tB-Library_Class\tQStringList\tO\nthat\tO\tthat\tO\nconstains\tO\tconstains\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nthe\tO\tthe\tO\ncompleter\tO\tcompleter\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nas\tO\tas\tO\nsuggestions\tO\tsuggestions\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nshow\tO\tshow\tO\nbe\tO\tbe\tO\nredone\tO\tredone\tO\nany\tO\tany\tO\ntime\tO\ttime\tO\nother\tO\tother\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nis\tO\tis\tO\naccessed\tO\taccessed\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nstart\tO\tstart\tO\n,\tO\t,\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n..\tO\t..\tO\n.\tO\t.\tO\nHope\tO\tHope\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2964\tI-Code_Block\tQ_2964\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\nimplementation\tO\timplementation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2965\tI-Code_Block\tQ_2965\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n.\tO\t.\tO\n\t\n.\tO\t.\tO\n\t\n.\tO\t.\tO\n\t\nModelWithoutDuplicatesProxy\tB-Function_Name\tModelWithoutDuplicatesProxy\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2966\tI-Code_Block\tQ_2966\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nImplementation\tO\tImplementation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2967\tI-Code_Block\tQ_2967\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThere\tO\tThere\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nduplicates\tO\tduplicates\tO\ndeleter\tO\tdeleter\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4522886\tO\t4522886\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4522886/\tO\thttps://stackoverflow.com/questions/4522886/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nreading\tO\treading\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndynamically\tO\tdynamically\tO\ntheme\tO\ttheme\tO\nDrupal\tB-Library\tDrupal\tO\nblocks\tB-Library_Class\tblocks\tO\nand\tO\tand\tO\nnodes\tB-Library_Class\tnodes\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\ntemplate\tO\ttemplate\tO\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\npage-node-1.tpl\tB-File_Name\tpage-node-1.tpl\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\nblock-modulename-2.tpl\tB-File_Name\tblock-modulename-2.tpl\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\ndelta\tB-Library_Variable\tdelta\tO\nvalue\tO\tvalue\tO\n(\tO\t(\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n1\tB-Value\t1\tO\nor\tO\tor\tO\n2)\tB-Value\t2)\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nnode\tB-Library_Class\tnode\tO\nor\tO\tor\tO\nblock\tB-Library_Class\tblock\tO\n?\tO\t?\tO\n\t\nDo\tO\tDo\tO\nthese\tO\tthese\tO\ndelta\tB-Library_Variable\tdelta\tO\nvalues\tO\tvalues\tO\nkeep\tO\tkeep\tO\nchanging\tO\tchanging\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nassigns\tO\tassigns\tO\nthese\tO\tthese\tO\ndelta\tB-Library_Variable\tdelta\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4522886\tO\t4522886\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4522886/\tO\thttps://stackoverflow.com/questions/4522886/\tO\n\t\n\t\n\t\nGo\tO\tGo\tO\nto\tO\tto\tO\nadmin/build/block\tB-File_Name\tadmin/build/block\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nmove\tO\tmove\tO\ncursor\tB-User_Interface_Element\tcursor\tO\nover\tO\tover\tO\nany\tO\tany\tO\n'\tO\t'\tO\nconfigure\tO\tconfigure\tO\n'\tO\t'\tO\nlink\tO\tlink\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nblock\tB-Library_Class\tblock\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nsee\tO\tsee\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n'\tO\t'\tO\nadmin/build/block/configure/views/news\tB-File_Name\tadmin/build/block/configure/views/news\tO\n-block_2\tI-File_Name\t-block_2\tO\n'\tO\t'\tO\npath\tO\tpath\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmeans\tO\tmeans\tO\nthis\tO\tthis\tO\nblock\tB-Library_Class\tblock\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\n'\tO\t'\tO\nViews\tB-Library_Class\tViews\tO\n'\tO\t'\tO\nmodule\tO\tmodule\tO\nand\tO\tand\tO\nhas\tO\thas\tO\ndelta\tB-Library_Variable\tdelta\tO\n'\tO\t'\tO\nnews-block_2\tB-File_Name\tnews-block_2\tO\n'\tO\t'\tO\n\t\nNo\tO\tNo\tO\n\t\nModules\tO\tModules\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44033073\tO\t44033073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44033073/\tO\thttps://stackoverflow.com/questions/44033073/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nGulp\tB-Library\tGulp\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nsimply\tO\tsimply\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nsass\tB-File_Type\tsass\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\noptimize\tO\toptimize\tO\nimages\tB-User_Interface_Element\timages\tO\nand\tO\tand\tO\nwatch\tO\twatch\tO\nchanges\tO\tchanges\tO\non\tO\ton\tO\nsaid\tO\tsaid\tO\nsass\tB-File_Type\tsass\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nsass\tB-Library_Function\tsass\tO\nand\tO\tand\tO\nimagemin\tB-Library_Function\timagemin\tO\ntasks\tO\ttasks\tO\ncorrectly\tO\tcorrectly\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nwatch\tO\twatch\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\nseveral\tO\tseveral\tO\nseconds\tO\tseconds\tO\nit\tO\tit\tO\njus\tO\tjus\tO\nexits\tO\texits\tO\ngulp\tB-Variable_Name\tgulp\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nback\tO\tback\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\nlike\tO\tlike\tO\nif\tO\tif\tO\nI\tO\tI\tO\nmanually\tO\tmanually\tO\nstopped\tO\tstopped\tO\nthe\tO\tthe\tO\ntasks\tO\ttasks\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nany\tO\tany\tO\nerrors\tO\terrors\tO\nor\tO\tor\tO\nwarnings\tO\twarnings\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nends\tO\tends\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ngulpfile.js\tB-File_Name\tgulpfile.js\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5695\tI-Code_Block\tQ_5695\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOn\tO\tOn\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nall\tO\tall\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5696\tI-Code_Block\tQ_5696\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nafter\tO\tafter\tO\napprox\tO\tapprox\tO\n.\tO\t.\tO\n\t\n20secs\tO\t20secs\tO\nit\tO\tit\tO\nexits\tO\texits\tO\ngulp\tB-Variable_Name\tgulp\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nlooking\tO\tlooking\tO\neverywhere\tO\teverywhere\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nother\tO\tother\tO\npost\tO\tpost\tO\nfixes\tO\tfixes\tO\nand\tO\tand\tO\nno\tO\tno\tO\nluck\tO\tluck\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16105653\tO\t16105653\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16105653/\tO\thttps://stackoverflow.com/questions/16105653/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nwebsite\tO\twebsite\tO\nin\tO\tin\tO\nasp.net\tB-Library\tasp.net\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nits\tO\tits\tO\nmobile\tB-Device\tmobile\tO\nversion\tO\tversion\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nuser\tO\tuser\tO\ntypes\tO\ttypes\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmobile\tB-Device\tmobile\tO\n:\tO\t:\tO\n\t\nhttp://example.com/ViewVacancy.aspx?ID=8674\tO\thttp://example.com/ViewVacancy.aspx?ID=8674\tO\n\t\nthen\tO\tthen\tO\nhe\tO\the\tO\nis\tO\tis\tO\ndirected\tO\tdirected\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nhttp://m.example.com/vacancy.aspx?name=8674\tO\thttp://m.example.com/vacancy.aspx?name=8674\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nwritten\tO\twritten\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1582\tI-Code_Block\tQ_1582\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\ntypes\tO\ttypes\tO\n\t\nhttp://example.com\tO\thttp://example.com\tO\n\t\nso\tO\tso\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nredirected\tO\tredirected\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nhttp://m.example.com\tO\thttp://m.example.com\tO\n\t\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\ntypes\tO\ttypes\tO\n:\tO\t:\tO\n\t\nhttp://example.com/viewvacancy.aspx?id=8674\tO\thttp://example.com/viewvacancy.aspx?id=8674\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nredirected\tO\tredirected\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nhttp://m.example.com/vacancy.aspx?name=8674\tO\thttp://m.example.com/vacancy.aspx?name=8674\tO\n\t\nPlease\tO\tPlease\tO\nsuggest\tO\tsuggest\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16105653\tO\t16105653\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16105653/\tO\thttps://stackoverflow.com/questions/16105653/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nString.Replace()\tB-Library_Function\tString.Replace()\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2078\tI-Code_Block\tA_2078\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21220540\tO\t21220540\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21220540/\tO\thttps://stackoverflow.com/questions/21220540/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nhang\tO\thang\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\najax\tB-Library_Function\tajax\tO\nloads\tI-Library_Function\tloads\tO\n(\tO\t(\tO\nmostly\tO\tmostly\tO\nvia\tO\tvia\tO\njquery\tB-Library\tjquery\tO\n)\tO\t)\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nmy\tO\tmy\tO\nsite\tO\tsite\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\n.\tO\t.\tO\n\t\nWondering\tO\tWondering\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\ncan\tO\tcan\tO\nprovide\tO\tprovide\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\nre\tO\tre\tO\n\"\tO\t\"\tO\nbest\tO\tbest\tO\npractices\tO\tpractices\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\nusing\tO\tusing\tO\najax\tB-Library_Function\tajax\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsimplify\tO\tsimplify\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nfor\tO\tfor\tO\nmultiple\tO\tmultiple\tO\najax\tB-Library_Function\tajax\tO\ncalls\tO\tcalls\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nworking\tO\tworking\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2274\tI-Code_Block\tQ_2274\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nscript\tO\tscript\tO\njust\tO\tjust\tO\ngets\tO\tgets\tO\nlonger\tO\tlonger\tO\nand\tO\tand\tO\nlonger\tO\tlonger\tO\nwith\tO\twith\tO\neach\tO\teach\tO\nadditional\tO\tadditional\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nsimpler\tO\tsimpler\tO\n,\tO\t,\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthis\tO\tthis\tO\nscript\tO\tscript\tO\nto\tO\tto\tO\ncover\tO\tcover\tO\nmultiple\tO\tmultiple\tO\nload\tB-Library_Function\tload\tO\nscripts\tO\tscripts\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\najax\tB-Library_Function\tajax\tO\nloads\tI-Library_Function\tloads\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nmajority\tO\tmajority\tO\nof\tO\tof\tO\nactual\tO\tactual\tO\nlinks\tO\tlinks\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21220540\tO\t21220540\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21220540/\tO\thttps://stackoverflow.com/questions/21220540/\tO\n\t\n\t\nAssuming\tO\tAssuming\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nid\tB-Library_Variable\tid\tB-Code_Block\nmatches\tO\tmatches\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nname\tO\tname\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsimplified\tO\tsimplified\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2857\tI-Code_Block\tA_2857\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nscript\tO\tscript\tO\nsimply\tO\tsimply\tO\nspecifies\tO\tspecifies\tO\neach\tO\teach\tO\nid\tB-Library_Variable\tid\tB-Code_Block\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nselector\tO\tselector\tO\nthat\tO\tthat\tO\nseparates\tO\tseparates\tO\neach\tO\teach\tO\nid\tB-Library_Variable\tid\tB-Code_Block\nwith\tO\twith\tO\na\tO\ta\tO\ncomma\tO\tcomma\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ncalls\tO\tcalls\tO\nthe\tO\tthe\tO\nclick\tB-Library_Function\tclick\tB-Code_Block\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nfired\tO\tfired\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nanonymous\tO\tanonymous\tO\nfunction\tO\tfunction\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclick\tB-Library_Function\tclick\tO\nevent\tO\tevent\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nid\tB-Library_Variable\tid\tB-Code_Block\nof\tO\tof\tO\neach\tO\teach\tO\nelement\tO\telement\tO\nis\tO\tis\tO\nobtained\tO\tobtained\tO\nand\tO\tand\tO\nconcatenated\tO\tconcatenated\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nname\tO\tname\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthen\tO\tthen\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nload\tB-Library_Function\tload\tB-Code_Block\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nid\tB-Library_Variable\tid\tB-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nalways\tO\talways\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nelement\tO\telement\tB-Code_Block\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2858\tI-Code_Block\tA_2858\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21220540\tO\t21220540\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21220540/\tO\thttps://stackoverflow.com/questions/21220540/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nsuggestion\tO\tsuggestion\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nyou\tO\tyou\tO\nposted\tO\tposted\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\npattern\tO\tpattern\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nid\tB-Library_Variable\tid\tB-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nfilename\tO\tfilename\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2855\tI-Code_Block\tA_2855\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nsuggestion\tO\tsuggestion\tO\nuses\tO\tuses\tO\n.on()\tB-Library_Function\t.on()\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ncommonParentElementHere\tB-Function_Name\tcommonParentElementHere\tB-Code_Block\n,\tO\t,\tO\na\tO\ta\tO\nid\tB-Library_Variable\tid\tO\nor\tO\tor\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncommon\tO\tcommon\tO\nparent\tO\tparent\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\noption\tO\toption\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nclass\tO\tclass\tO\non\tO\ton\tO\nall\tO\tall\tO\nelements\tO\telements\tO\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nclickable\tO\tclickable\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\npassing\tO\tpassing\tO\nthe\tO\tthe\tO\nid\tB-Library_Variable\tid\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhtml\tB-File_Type\thtml\tO\nfile\tO\tfile\tO\nname\tO\tname\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2856\tI-Code_Block\tA_2856\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40175072\tO\t40175072\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40175072/\tO\thttps://stackoverflow.com/questions/40175072/\tO\n\t\n\t\nQuestion\tO\tQuestion\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nmy\tO\tmy\tO\ngui\tO\tgui\tO\nwith\tO\twith\tO\na\tO\ta\tO\ntimer\tB-Library_Class\ttimer\tO\n(\tO\t(\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nand\tO\tand\tO\nchanges\tO\tchanges\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nfor\tO\tfor\tO\nmypic\tB-Variable_Name\tmypic\tO\nbut\tO\tbut\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nupdate\tO\tupdate\tO\nmytext\tB-Variable_Name\tmytext\tO\nlabel\tO\tlabel\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nweird\tO\tweird\tO\nreason\tO\treason\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\n*\tO\t*\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nadd\tO\tadd\tO\nthat\tO\tthat\tO\nmytext\tB-Variable_Name\tmytext\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nshowing\tO\tshowing\tO\nup\tO\tup\tO\nat\tO\tat\tO\nall\tO\tall\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ngui\tO\tgui\tO\nsince\tO\tsince\tO\nintroducing\tO\tintroducing\tO\nthe\tO\tthe\tO\ntimer\tB-Library_Class\ttimer\tO\n...\tO\t...\tO\nbut\tO\tbut\tO\nmypic\tB-Variable_Name\tmypic\tO\ndoes\tO\tdoes\tO\n???\tO\t???\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5077\tI-Code_Block\tQ_5077\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUPDATE\tO\tUPDATE\tO\nwith\tO\twith\tO\nsuggestions\tO\tsuggestions\tO\nstill\tO\tstill\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nworking.\tO\tworking.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5078\tI-Code_Block\tQ_5078\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40175072\tO\t40175072\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40175072/\tO\thttps://stackoverflow.com/questions/40175072/\tO\n\t\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nworking\tO\tworking\tO\nsolution\tO\tsolution\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntailor\tO\ttailor\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncause\tO\tcause\tO\nseemed\tO\tseemed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nhad\tO\thad\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nComponents\tB-Library_Class\tComponents\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\naction\tB-Library_Class\taction\tO\nlistener\tI-Library_Class\tlistener\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\napproach\tO\tapproach\tO\nwas\tO\twas\tO\njust\tO\tjust\tO\nreplacing\tO\treplacing\tO\nmyText\tB-Variable_Name\tmyText\tB-Code_Block\nwith\tO\twith\tO\nmyPic\tB-Variable_Name\tmyPic\tB-Code_Block\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ninitially\tO\tinitially\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nJFrame\tB-Library_Class\tJFrame\tB-Code_Block\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nlayout\tB-Library_Class\tlayout\tO\nmanager\tI-Library_Class\tmanager\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nexample\tO\texample\tO\nI\tO\tI\tO\n've\tO\t've\tO\ngiven\tO\tgiven\tO\nis\tO\tis\tO\nwith\tO\twith\tO\noverlaying\tO\toverlaying\tO\nusing\tO\tusing\tO\nJLayeredPane\tB-Library_Class\tJLayeredPane\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nlayout\tB-Library_Class\tlayout\tO\nmanager\tI-Library_Class\tmanager\tO\ninstead\tO\tinstead\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\noutcome\tO\toutcome\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nOracle\tB-Organization\tOracle\tO\nTutorial\tO\tTutorial\tO\non\tO\ton\tO\nusing\tO\tusing\tO\nlayout\tB-Library_Class\tlayout\tO\nmanagers\tI-Library_Class\tmanagers\tO\n.\tO\t.\tO\n\t\nWidget\tB-Library_Class\tWidget\tO\nclass\tO\tclass\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5764\tI-Code_Block\tA_5764\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWeather\tB-Class_Name\tWeather\tO\nclass\tO\tclass\tO\nfor\tO\tfor\tO\ndemonstration\tO\tdemonstration\tO\npurposes\tO\tpurposes\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5765\tI-Code_Block\tA_5765\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45464493\tO\t45464493\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45464493/\tO\thttps://stackoverflow.com/questions/45464493/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nin\tO\tin\tO\nReact\tB-Library\tReact\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nstructure\tO\tstructure\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\nusing\tO\tusing\tO\nFirebase\tB-Application\tFirebase\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nreference\tO\treference\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nchild\tO\tchild\tO\nnode\tO\tnode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nkeep\tO\tkeep\tO\ngetting\tO\tgetting\tO\n'\tO\t'\tO\nTypeError\tB-Output_Block\tTypeError\tO\n:\tI-Output_Block\t:\tO\nmessagesRef.child\tI-Output_Block\tmessagesRef.child\tO\nis\tI-Output_Block\tis\tO\nnot\tI-Output_Block\tnot\tO\na\tI-Output_Block\ta\tO\nfunction\tI-Output_Block\tfunction\tO\n'\tO\t'\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nerrors\tO\terrors\tO\nout\tO\tout\tO\non\tO\ton\tO\nline\tO\tline\tO\n3\tO\t3\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nreferences\tO\treferences\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5939\tI-Code_Block\tQ_5939\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nmaking\tO\tmaking\tO\nthese\tO\tthese\tO\nreferences\tO\treferences\tO\ncorrectly\tO\tcorrectly\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nfollowed\tO\tfollowed\tO\nthe\tO\tthe\tO\nFirebase\tB-Application\tFirebase\tO\ndocumentation\tO\tdocumentation\tO\nto\tO\tto\tO\na\tO\ta\tO\ntee\tO\ttee\tO\nand\tO\tand\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45464493\tO\t45464493\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45464493/\tO\thttps://stackoverflow.com/questions/45464493/\tO\n\t\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\n\t\nvar\tB-Code_Block\tvar\tB-Code_Block\nmessagesRef\tI-Code_Block\tmessagesRef\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nfirebase.database().ref('messages').limitToLast(30)\tI-Code_Block\tfirebase.database().ref('messages').limitToLast(30)\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nis\tO\tis\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\n\t\nfirebase.database.Query\tB-Library_Class\tfirebase.database.Query\tB-Code_Block\n\t\nand\tO\tand\tO\nnot\tO\tnot\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\n\t\nfirebase.database.Reference\tB-Library_Class\tfirebase.database.Reference\tB-Code_Block\n\t\nThe\tO\tThe\tO\nmethod\tO\tmethod\tO\nchild\tB-Library_Function\tchild\tB-Code_Block\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\non\tO\ton\tO\nReference\tB-Library_Class\tReference\tB-Code_Block\ntype\tO\ttype\tO\nobjects\tO\tobjects\tO\n,\tO\t,\tO\nso\tO\tso\tO\ninstead\tO\tinstead\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\n\t\nvar\tB-Code_Block\tvar\tB-Code_Block\nmessagesRef\tI-Code_Block\tmessagesRef\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nfirebase.database().ref('messages/users').limitToLast(30)\tI-Code_Block\tfirebase.database().ref('messages/users').limitToLast(30)\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nassuming\tO\tassuming\tO\nyour\tO\tyour\tO\ndatabase\tO\tdatabase\tO\nstructure\tO\tstructure\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6586\tI-Code_Block\tA_6586\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22879151\tO\t22879151\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22879151/\tO\thttps://stackoverflow.com/questions/22879151/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\nPlain\tO\tPlain\tO\nC\tB-Language\tC\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\nprogram\tO\tprogram\tO\nArduino\tB-Device\tArduino\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nProcessing\tB-Language\tProcessing\tO\nprogramming\tO\tprogramming\tO\nlanguage\tO\tlanguage\tO\n\"\tO\t\"\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\nmy\tO\tmy\tO\nC\tB-Language\tC\tO\nprogramming\tO\tprogramming\tO\nskills\tO\tskills\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nArduino\tB-Application\tArduino\tO\nfor\tO\tfor\tO\nembedded\tO\tembedded\tO\nsystems\tO\tsystems\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nvery\tO\tvery\tO\nlimited\tO\tlimited\tO\nability\tO\tability\tO\nto\tO\tto\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nC++\tB-Language\tC++\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlove\tO\tlove\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nArduino\tB-Language\tArduino\tO\nLibrary\tO\tLibrary\tO\nusing\tO\tusing\tO\n\"\tO\t\"\tO\nC\tB-Language\tC\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nusing\tO\tusing\tO\nclasses\tO\tclasses\tO\nand\tO\tand\tO\nOOP\tO\tOOP\tO\n.\tO\t.\tO\n\t\nProcessing\tB-Language\tProcessing\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nJava\tB-Language\tJava\tO\nto\tO\tto\tO\nme\tO\tme\tO\n,\tO\t,\tO\nand\tO\tand\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\nC\tB-Language\tC\tO\npointers\tB-Data_Type\tpointers\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\ngain\tO\tgain\tO\nmore\tO\tmore\tO\npractical\tO\tpractical\tO\nknowledge\tO\tknowledge\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22879151\tO\t22879151\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22879151/\tO\thttps://stackoverflow.com/questions/22879151/\tO\n\t\n\t\nThe\tO\tThe\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nArduino\tB-Device\tArduino\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nProcessing\tB-Language\tProcessing\tO\n.\tO\t.\tO\n\t\nProcessing\tB-Language\tProcessing\tO\nis\tO\tis\tO\n(\tO\t(\tO\nwas\tO\twas\tO\n?\tO\t?\tO\n)\tO\t)\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nprogramming\tO\tprogramming\tO\nlanguage\tO\tlanguage\tO\nwhich\tO\twhich\tO\nwas\tO\twas\tO\ndeveloped\tO\tdeveloped\tO\nindependently\tO\tindependently\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\npurpose\tO\tpurpose\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlanguage\tO\tlanguage\tO\nresembles\tO\tresembles\tO\nC\tB-Language\tC\tO\nand\tO\tand\tO\nC++\tB-Language\tC++\tO\nvery\tO\tvery\tO\nclosely\tO\tclosely\tO\n,\tO\t,\tO\nso\tO\tso\tO\nclosely\tO\tclosely\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\nalmost\tO\talmost\tO\nidentical\tO\tidentical\tO\n.\tO\t.\tO\n\t\nProgramming\tO\tProgramming\tO\nthe\tO\tthe\tO\nArduino\tB-Device\tArduino\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nis\tO\tis\tO\naccomplished\tO\taccomplished\tO\nusing\tO\tusing\tO\na\tO\ta\tO\n(\tO\t(\tO\nn\tO\tn\tO\nunfortunate\tO\tunfortunate\tO\n)\tO\t)\tO\nmixture\tO\tmixture\tO\nof\tO\tof\tO\nC\tB-Language\tC\tO\nand\tO\tand\tO\nC++\tB-Language\tC++\tO\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\ncustom\tO\tcustom\tO\nlibraries\tO\tlibraries\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nsimilar\tO\tsimilar\tO\nin\tO\tin\tO\nstyle\tO\tstyle\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nof\tO\tof\tO\nProcessing\tB-Language\tProcessing\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nlibraries\tO\tlibraries\tO\nare\tO\tare\tO\nwritten\tO\twritten\tO\nin\tO\tin\tO\nC\tB-Language\tC\tO\nand\tO\tand\tO\nC++\tB-Language\tC++\tO\nthemselves\tO\tthemselves\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\ngood\tO\tgood\tO\nfor\tO\tfor\tO\nmaking\tO\tmaking\tO\none\tO\tone\tO\n's\tO\t's\tO\ncode\tO\tcode\tO\nmore\tO\tmore\tO\nportable\tO\tportable\tO\nacross\tO\tacross\tO\ndifferent\tO\tdifferent\tO\nMCU\tB-Device\tMCU\tO\ntypes\tO\ttypes\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nthem\tO\tthem\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nstrictly\tO\tstrictly\tO\nnecessary\tO\tnecessary\tO\nfor\tO\tfor\tO\nprogramming\tO\tprogramming\tO\nthe\tO\tthe\tO\nAVR\tB-Device\tAVR\tO\nMCU\tI-Device\tMCU\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlibraries\tO\tlibraries\tO\nhave\tO\thave\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ndrawbacks\tO\tdrawbacks\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nbig\tO\tbig\tO\n,\tO\t,\tO\ninherently\tO\tinherently\tO\nslow\tO\tslow\tO\nand\tO\tand\tO\nugly\tO\tugly\tO\n,\tO\t,\tO\namongst\tO\tamongst\tO\nothers\tO\tothers\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nplain\tO\tplain\tO\nol\tO\tol\tO\n'\tO\t'\tO\nC\tB-Language\tC\tO\nfor\tO\tfor\tO\nprogramming\tO\tprogramming\tO\nthe\tO\tthe\tO\nArduino\tB-Device\tArduino\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\njust\tO\tjust\tO\ngo\tO\tgo\tO\nahead\tO\tahead\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nGrab\tO\tGrab\tO\nthe\tO\tthe\tO\nreference\tO\treference\tO\nPDF\tB-File_Type\tPDF\tO\nfrom\tO\tfrom\tO\nAtmel\tB-Website\tAtmel\tO\n's\tO\t's\tO\nsite\tO\tsite\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nparticular\tO\tparticular\tO\nMCU\tB-Device\tMCU\tO\n,\tO\t,\tO\nlearn\tO\tlearn\tO\nthe\tO\tthe\tO\nspecial\tO\tspecial\tO\nregisters\tB-Device\tregisters\tO\n(\tO\t(\tO\nI/O\tO\tI/O\tO\n,\tO\t,\tO\ntimers\tO\ttimers\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n,\tO\t,\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\navr-gcc\tB-Application\tavr-gcc\tO\ntoolchain\tI-Application\ttoolchain\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ncomputer\tO\tcomputer\tO\n,\tO\t,\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\navr-gcc\tB-Code_Block\tavr-gcc\tB-Code_Block\n,\tO\t,\tI-Code_Block\navr-objcopy\tB-Code_Block\tavr-objcopy\tI-Code_Block\nand\tO\tand\tO\navrdude\tB-Code_Block\tavrdude\tB-Code_Block\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nand\tO\tand\tO\ninstall\tO\tinstall\tO\nyour\tO\tyour\tO\nprograms\tO\tprograms\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nalso\tO\talso\tO\nhappens\tO\thappens\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nC-only\tB-Language\tC-only\tO\nlibrary\tO\tlibrary\tO\nwhich\tO\twhich\tO\nfollows\tO\tfollows\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nconvention\tO\tconvention\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nprovide\tO\tprovide\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\nabstraction\tO\tabstraction\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nstock\tO\tstock\tO\nArduino\tB-Language\tArduino\tO\nlibrary\tO\tlibrary\tO\nhas\tO\thas\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\nlower-level\tO\tlower-level\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nit\tO\tit\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\none\tO\tone\tO\ncan\tO\tcan\tO\naccomplish\tO\taccomplish\tO\nbasic\tO\tbasic\tO\nalgorithms\tO\talgorithms\tO\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nlibraries\tO\tlibraries\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35849814\tO\t35849814\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35849814/\tO\thttps://stackoverflow.com/questions/35849814/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4392\tI-Code_Block\tQ_4392\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nUid\tB-Library_Variable\tUid\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\ndifferent\tO\tdifferent\tO\nnamespace\tO\tnamespace\tO\nprobably\tO\tprobably\tO\n,\tO\t,\tO\nsame\tO\tsame\tO\ngoes\tO\tgoes\tO\nfor\tO\tfor\tO\nav:Canvas.Top\tB-Library_Variable\tav:Canvas.Top\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthese\tO\tthese\tO\nattributes\tO\tattributes\tO\n?\tO\t?\tO\n\t\n-TIA\tB-User_Name\t-TIA\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35849814\tO\t35849814\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35849814/\tO\thttps://stackoverflow.com/questions/35849814/\tO\n\t\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nnamespaces\tB-Code_Block\tnamespaces\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5122\tI-Code_Block\tA_5122\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nattributes\tO\tattributes\tO\nand\tO\tand\tO\nnodes\tO\tnodes\tO\nregardless\tO\tregardless\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnamespace\tB-Code_Block\tnamespace\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nsimply\tO\tsimply\tO\nvisit\tO\tvisit\tO\neach\tO\teach\tO\nnode\tO\tnode\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nloop\tO\tloop\tO\nthrough\tO\tthrough\tO\nits\tO\tits\tO\nattributes\tO\tattributes\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5123\tI-Code_Block\tA_5123\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nvisit\tO\tvisit\tO\nin\tO\tin\tO\nSelectSingleNode\tB-Library_Function\tSelectSingleNode\tB-Code_Block\nand\tO\tand\tO\nyour\tO\tyour\tO\nnamespaces\tB-Code_Block\tnamespaces\tB-Code_Block\nare\tO\tare\tO\ndeclared\tO\tdeclared\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthrough\tO\tthrough\tO\nany\tO\tany\tO\nnode\tO\tnode\tO\nand\tO\tand\tO\nget\tO\tget\tO\nany\tO\tany\tO\nvalue\tO\tvalue\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35849814\tO\t35849814\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35849814/\tO\thttps://stackoverflow.com/questions/35849814/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5120\tI-Code_Block\tA_5120\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46618900\tO\t46618900\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46618900/\tO\thttps://stackoverflow.com/questions/46618900/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nSaved\tO\tSaved\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nin\tO\tin\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nview\tO\tview\tO\nthat\tO\tthat\tO\nlink\tO\tlink\tO\nin\tO\tin\tO\nview\tO\tview\tO\nin\tO\tin\tO\nasp.net\tB-Library\tasp.net\tO\nmvc\tB-Algorithm\tmvc\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nhttps://www.google.com\tO\thttps://www.google.com\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6141\tI-Code_Block\tQ_6141\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46618900\tO\t46618900\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46618900/\tO\thttps://stackoverflow.com/questions/46618900/\tO\n\t\n\t\nJust\tO\tJust\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6764\tI-Code_Block\tA_6764\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\n@Url\tB-Code_Block\t@Url\tB-Code_Block\nhelpers\tO\thelpers\tO\nare\tO\tare\tO\nfor\tO\tfor\tO\nlinks\tO\tlinks\tO\npointing\tO\tpointing\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5400925\tO\t5400925\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5400925/\tO\thttps://stackoverflow.com/questions/5400925/\tO\n\t\n\t\nSimple\tO\tSimple\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nwhere\tO\twhere\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\ntableView\tB-Variable_Name\ttableView\tB-Code_Block\nand\tO\tand\tO\nsection\tB-Variable_Name\tsection\tB-Code_Block\narguments\tO\targuments\tO\nget\tO\tget\tO\npassed\tO\tpassed\tO\nfrom\tO\tfrom\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nactual\tO\tactual\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nreturn\tB-Code_Block\treturn\tB-Code_Block\n[\tI-Code_Block\t[\tI-Code_Block\nself.listData\tI-Code_Block\tself.listData\tI-Code_Block\ncount\tI-Code_Block\tcount\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n;\tB-Code_Block\t;\tB-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nmention\tO\tmention\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\ninterface\tO\tinterface\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_379\tI-Code_Block\tQ_379\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nimplementation\tO\timplementation\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_380\tI-Code_Block\tQ_380\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n(\tB-Code_Block\t(\tB-Code_Block\nNSInteger\tI-Code_Block\tNSInteger\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\ntableView\tB-Code_Block\ttableView\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nUITableView\tI-Code_Block\tUITableView\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nnumberOfRowsInSection\tB-Code_Block\tnumberOfRowsInSection\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nreceive\tO\treceive\tO\nthose\tO\tthose\tO\narguments\tO\targuments\tO\n?\tO\t?\tO\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\neverywhere\tO\teverywhere\tO\n;\tO\t;\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5400925\tO\t5400925\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5400925/\tO\thttps://stackoverflow.com/questions/5400925/\tO\n\t\n\t\nThe\tO\tThe\tO\nSimple_TableViewController\tB-Class_Name\tSimple_TableViewController\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\nlikely\tO\tlikely\tO\nmeant\tO\tmeant\tO\nto\tO\tto\tO\nmanage\tO\tmanage\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ntable\tB-User_Interface_Element\ttable\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nsection\tO\tsection\tO\n.\tO\t.\tO\n\t\nGiven\tO\tGiven\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ntableView\tB-Variable_Name\ttableView\tO\nand\tO\tand\tO\nsection\tB-Variable_Name\tsection\tO\nparameters\tO\tparameters\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nimportant\tO\timportant\tO\nbecause\tO\tbecause\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\none\tO\tone\tO\nthing\tO\tthing\tO\n:\tO\t:\tO\na\tO\ta\tO\npointer\tB-Data_Type\tpointer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntable\tB-User_Interface_Element\ttable\tO\nand\tO\tand\tO\n0\tB-Value\t0\tO\n,\tO\t,\tO\nrespectively\tO\trespectively\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5400925\tO\t5400925\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5400925/\tO\thttps://stackoverflow.com/questions/5400925/\tO\n\t\n\t\nYour\tO\tYour\tO\nview\tO\tview\tO\ncontroller\tO\tcontroller\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\nadding\tO\tadding\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nthese\tO\tthese\tO\ncallback\tO\tcallback\tO\nmethods\tO\tmethods\tO\nthrough\tO\tthrough\tO\nUITableViewDelegate\tB-Library_Class\tUITableViewDelegate\tO\nand\tO\tand\tO\nUITableViewDataSource\tB-Variable_Name\tUITableViewDataSource\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nadding\tO\tadding\tO\nthis\tO\tthis\tO\nsupport\tO\tsupport\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\n.h\tB-File_Type\t.h\tO\nfile\tO\tfile\tO\nthrough\tO\tthrough\tO\n<UITableViewDelegate,\tB-Code_Block\t<UITableViewDelegate,\tB-Code_Block\nUITableViewDataSource>\tI-Code_Block\tUITableViewDataSource>\tI-Code_Block\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nclasses\tO\tclasses\tO\nare\tO\tare\tO\nbuilt\tO\tbuilt\tO\nin\tO\tin\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nCocoa\tB-Library\tCocoa\tO\nTouch\tI-Library\tTouch\tO\nframework\tO\tframework\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\njust\tO\tjust\tO\nusing\tO\tusing\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\ntable\tB-User_Interface_Element\ttable\tO\nis\tO\tis\tO\n(\tO\t(\tO\nre\tO\tre\tO\n)\tO\t)\tO\nloaded\tO\tloaded\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ncallback\tO\tcallback\tO\nmethods\tO\tmethods\tO\nare\tO\tare\tO\ncalled\tO\tcalled\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ndefined\tO\tdefined\tO\nthem\tO\tthem\tO\n(\tO\t(\tO\nsome\tO\tsome\tO\nare\tO\tare\tO\nrequired\tO\trequired\tO\n,\tO\t,\tO\nothers\tO\tothers\tO\nare\tO\tare\tO\noptional\tO\toptional\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29258410\tO\t29258410\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29258410/\tO\thttps://stackoverflow.com/questions/29258410/\tO\n\t\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nclasses\tO\tclasses\tO\nas\tO\tas\tO\n:\tO\t:\tO\nInventory\tB-Class_Name\tInventory\tO\n,\tO\t,\tO\nProduct\tB-Class_Name\tProduct\tO\n,\tO\t,\tO\nSales\tB-Class_Name\tSales\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nmy\tO\tmy\tO\nrequirement\tO\trequirement\tO\nis\tO\tis\tO\nto\tO\tto\tO\nput\tO\tput\tO\nall\tO\tall\tO\nabove\tO\tabove\tO\ntypes\tO\ttypes\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nmap\tB-Library_Class\tmap\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nmultiple\tO\tmultiple\tO\nmaps\tB-Library_Class\tmaps\tO\nfor\tO\tfor\tO\nputting\tO\tputting\tO\nabove\tO\tabove\tO\neach\tO\teach\tO\nobject\tO\tobject\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29258410\tO\t29258410\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29258410/\tO\thttps://stackoverflow.com/questions/29258410/\tO\n\t\n\t\nIf\tO\tIf\tO\nall\tO\tall\tO\nyour\tO\tyour\tO\nclasses\tO\tclasses\tO\ncan\tO\tcan\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ninterface\tO\tinterface\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstore\tO\tstore\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nObject\tB-Library_Class\tObject\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\ngenerally\tO\tgenerally\tO\n-\tO\t-\tO\nwhy\tO\twhy\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmultiple\tO\tmultiple\tO\nmaps\tB-Library_Class\tmaps\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29258410\tO\t29258410\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29258410/\tO\thttps://stackoverflow.com/questions/29258410/\tO\n\t\n\t\nSet\tO\tSet\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\ntype\tO\ttype\tO\nas\tO\tas\tO\nObject\tB-Library_Class\tObject\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4134\tI-Code_Block\tA_4134\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\n,\tO\t,\tO\nif\tO\tif\tO\nInventory\tB-Class_Name\tInventory\tB-Code_Block\n,\tO\t,\tO\nProduct\tB-Class_Name\tProduct\tB-Code_Block\n,\tO\t,\tO\nSales\tB-Class_Name\tSales\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nwhatever\tO\twhatever\tO\nelse\tO\telse\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nmap\tB-Library_Class\tmap\tO\nshare\tO\tshare\tO\na\tO\ta\tO\nsuperclass\tO\tsuperclass\tO\nor\tO\tor\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ninterface\tO\tinterface\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\ntype\tO\ttype\tO\nas\tO\tas\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4135\tI-Code_Block\tA_4135\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30444947\tO\t30444947\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30444947/\tO\thttps://stackoverflow.com/questions/30444947/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nSKTextureAtlas\tB-Library_Class\tSKTextureAtlas\tB-Code_Block\nto\tO\tto\tO\nanimate\tO\tanimate\tO\na\tO\ta\tO\nSKSpriteNode\tB-Library_Class\tSKSpriteNode\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nanimation\tO\tanimation\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nweird\tO\tweird\tO\nbecause\tO\tbecause\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\nthe\tO\tthe\tO\nsprite\tO\tsprite\tO\n's\tO\t's\tO\nheight\tO\theight\tO\nis\tO\tis\tO\nchanging\tO\tchanging\tO\nseveral\tO\tseveral\tO\ntimes\tO\ttimes\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nanimation\tO\tanimation\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nalso\tO\talso\tO\ncauses\tO\tcauses\tO\nthe\tO\tthe\tO\ny\tB-Variable_Name\ty\tO\nposition\tO\tposition\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nelse\tO\telse\tO\nremains\tO\tremains\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nexcept\tO\texcept\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nheight\tO\theight\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ny\tB-Variable_Name\ty\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nthing\tO\tthing\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\namounts\tO\tamounts\tO\nof\tO\tof\tO\ntransparent\tO\ttransparent\tO\npixels\tO\tpixels\tO\nwithin\tO\twithin\tO\neach\tO\teach\tO\nframe\tO\tframe\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nimage\tO\timage\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nsize\tO\tsize\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nSKAction.animateWithTextures(atlasFrames,timePerFrame:0.1,resize:true,restore:false)\tB-Code_Block\tSKAction.animateWithTextures(atlasFrames,timePerFrame:0.1,resize:true,restore:false)\tB-Code_Block\n,\tO\t,\tO\nwith\tO\twith\tO\nresize\tB-Variable_Name\tresize\tO\nset\tO\tset\tO\nto\tO\tto\tO\ntrue\tB-Value\ttrue\tO\nand\tO\tand\tO\nfalse\tB-Value\tfalse\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\npersists\tO\tpersists\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30444947\tO\t30444947\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30444947/\tO\thttps://stackoverflow.com/questions/30444947/\tO\n\t\n\t\nI\tO\tI\tO\nheard\tO\theard\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\ntextures\tB-Library_Variable\ttextures\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nall\tO\tall\tO\ntextures\tB-Library_Variable\ttextures\tO\nof\tO\tof\tO\nsame\tO\tsame\tO\nsize\tO\tsize\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nbackground\tO\tbackground\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nimages\tB-User_Interface_Element\timages\tO\nof\tO\tof\tO\n1%\tB-Value\t1%\tO\nalpha\tB-Variable_Name\talpha\tO\n(\tO\t(\tO\nit\tO\tit\tO\nwont\tO\twont\tO\nbe\tO\tbe\tO\nvisible\tO\tvisible\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nwhere\tO\twhere\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nbecause\tO\tbecause\tO\ninvisible\tO\tinvisible\tO\nbackground\tO\tbackground\tO\nis\tO\tis\tO\ncut\tO\tcut\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nwatch\tO\twatch\tO\nthis\tO\tthis\tO\nguide\tO\tguide\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\nhttps://www.youtube.com/watch?v=TDwSR3e6nN0\tO\thttps://www.youtube.com/watch?v=TDwSR3e6nN0\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14951651\tO\t14951651\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14951651/\tO\thttps://stackoverflow.com/questions/14951651/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsingleton\tO\tsingleton\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nConnection\tB-Library_Class\tConnection\tO\nobject\tO\tobject\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nby\tO\tby\tO\nmultiple\tO\tmultiple\tO\nusers\tO\tusers\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1443\tI-Code_Block\tQ_1443\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nclass\tO\tclass\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\nsame\tO\tsame\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nconnection\tB-Library_Class\tconnection\tO\nuntil\tO\tuntil\tO\nand\tO\tand\tO\nunless\tO\tunless\tO\nconnection\tB-Library_Class\tconnection\tO\nis\tO\tis\tO\nclosed\tO\tclosed\tO\nor\tO\tor\tO\nnull\tB-Value\tnull\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nsame\tO\tsame\tO\nconnection\tB-Library_Class\tconnection\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nshared\tO\tshared\tO\nby\tO\tby\tO\nall\tO\tall\tO\nusers\tO\tusers\tO\non\tO\ton\tO\ndifferent\tO\tdifferent\tO\nmachine\tO\tmachine\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\nstatic\tO\tstatic\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\none\tO\tone\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nsetting\tO\tsetting\tO\nauto\tO\tauto\tO\ncommit\tO\tcommit\tO\nto\tO\tto\tO\noff\tO\toff\tO\nto\tO\tto\tO\ncommit\tO\tcommit\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nstatements\tO\tstatements\tO\nas\tO\tas\tO\ntransaction\tO\ttransaction\tO\n,\tO\t,\tO\nwill\tO\twill\tO\nthis\tO\tthis\tO\ncreate\tO\tcreate\tO\nproblems\tO\tproblems\tO\nfor\tO\tfor\tO\nother\tO\tother\tO\nusers\tO\tusers\tO\nby\tO\tby\tO\nrestricting\tO\trestricting\tO\ntheir\tO\ttheir\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\ndisable\tO\tdisable\tO\nautocommit\tO\tautocommit\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nor\tO\tor\tO\nby\tO\tby\tO\ncommiting\tO\tcommiting\tO\ntheir\tO\ttheir\tO\ntransaction\tO\ttransaction\tO\nin\tO\tin\tO\nmid\tO\tmid\tO\nway\tO\tway\tO\nif\tO\tif\tO\none\tO\tone\tO\nuser\tO\tuser\tO\nhas\tO\thas\tO\nused\tO\tused\tO\ncon.commit()\tB-Library_Function\tcon.commit()\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14951651\tO\t14951651\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14951651/\tO\thttps://stackoverflow.com/questions/14951651/\tO\n\t\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nare\tO\tare\tO\nsharing\tO\tsharing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthis\tO\tthis\tO\nstatement\tO\tstatement\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1907\tI-Code_Block\tA_1907\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nread\tO\tread\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1908\tI-Code_Block\tA_1908\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSince\tO\tSince\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\n(\tO\t(\tO\nthreads\tO\tthreads\tO\n)\tO\t)\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nchanges\tO\tchanges\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nit\tO\tit\tO\nby\tO\tby\tO\none\tO\tone\tO\nuser\tO\tuser\tO\nwill\tO\twill\tO\naffect\tO\taffect\tO\nthe\tO\tthe\tO\nothers\tO\tothers\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nShivam\tB-User_Name\tShivam\tO\nKalra\tI-User_Name\tKalra\tO\nsays\tO\tsays\tO\n,\tO\t,\tO\nconnection\tB-Library_Class\tconnection\tO\npools\tO\tpools\tO\nare\tO\tare\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\ntool\tO\ttool\tO\n.\tO\t.\tO\n\t\nMost\tO\tMost\tO\nprobably\tO\tprobably\tO\nyour\tO\tyour\tO\nweb\tO\tweb\tO\nserver\tO\tserver\tO\nwill\tO\twill\tO\nalready\tO\talready\tO\nprovide\tO\tprovide\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nthird\tO\tthird\tO\nparty\tO\tparty\tO\nlibraries\tO\tlibraries\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14951651\tO\t14951651\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14951651/\tO\thttps://stackoverflow.com/questions/14951651/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYes\tO\tYes\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYes\tO\tYes\tO\n.\tO\t.\tO\n\t\nDatabase\tO\tDatabase\tO\nconnections\tO\tconnections\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nsafe\tO\tsafe\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\nby\tO\tby\tO\nmultiple\tO\tmultiple\tO\nthreads\tO\tthreads\tO\n,\tO\t,\tO\nand\tO\tand\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\neven\tO\teven\tO\nbe\tO\tbe\tO\nmember\tO\tmember\tO\nfields\tO\tfields\tO\nlet\tO\tlet\tO\nalone\tO\talone\tO\nsingletons\tO\tsingletons\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nmethod-local\tO\tmethod-local\tO\nvariables\tO\tvariables\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\neconomize\tO\teconomize\tO\non\tO\ton\tO\ncreating\tO\tcreating\tO\n&\tO\t&\tO\ndestroying\tO\tdestroying\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nconnection\tB-Library_Class\tconnection\tO\npool\tO\tpool\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n494550\tO\t494550\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/494550/\tO\thttps://stackoverflow.com/questions/494550/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nwriting\tO\twriting\tO\nan\tO\tan\tO\nintegration\tO\tintegration\tO\ntest\tO\ttest\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ninserting\tO\tinserting\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nobjects\tO\tobjects\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nchecking\tO\tchecking\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nwhether\tO\twhether\tO\nmy\tO\tmy\tO\nmethod\tO\tmethod\tO\nretrieves\tO\tretrieves\tO\nthose\tO\tthose\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nis\tO\tis\tO\nthrough\tO\tthrough\tO\nNHibernate\tB-Library\tNHibernate\tO\n...\tO\t...\tO\nand\tO\tand\tO\nmy\tO\tmy\tO\nusual\tO\tusual\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\ncreating\tO\tcreating\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\ntest\tO\ttest\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_25\tI-Code_Block\tQ_25\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nrecently\tO\trecently\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nabout\tO\tabout\tO\nTransactionScope\tB-Library_Class\tTransactionScope\tO\nwhich\tO\twhich\tO\napparently\tO\tapparently\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nvery\tO\tvery\tO\npurpose\tO\tpurpose\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nexample\tO\texample\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_26\tI-Code_Block\tQ_26\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\ntxScope.Complete()\tB-Library_Function\ttxScope.Complete()\tB-Code_Block\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ninserted\tO\tinserted\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nrolled\tO\trolled\tO\nback\tO\tback\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nunfortunately\tO\tunfortunately\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\npossible.\tO\tpossible.\tO\n.\tO\t.\tO\nhow\tO\thow\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\ntxScope\tB-Variable_Name\ttxScope\tB-Code_Block\nobject\tO\tobject\tO\nkeep\tO\tkeep\tO\na\tO\ta\tO\ntrack\tO\ttrack\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndeptAdapter\tB-Variable_Name\tdeptAdapter\tB-Code_Block\nand\tO\tand\tO\nempAdapter\tB-Variable_Name\tempAdapter\tB-Code_Block\nobjects\tO\tobjects\tO\nand\tO\tand\tO\ntheir\tO\ttheir\tO\ntransactions\tO\ttransactions\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nmissing\tO\tmissing\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\ninformation\tO\tinformation\tO\nhere\tO\there\tO\n..\tO\t..\tO\nam\tO\tam\tO\nI\tO\tI\tO\nreally\tO\treally\tO\nable\tO\table\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nmy\tO\tmy\tO\nBeginTransaction()\tB-Library_Function\tBeginTransaction()\tB-Code_Block\nand\tO\tand\tO\nRollbackTransaction()\tB-Library_Function\tRollbackTransaction()\tB-Code_Block\ncalls\tO\tcalls\tO\nby\tO\tby\tO\nsurrounding\tO\tsurrounding\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nusing\tO\tusing\tO\nTransactionScope\tB-Library_Class\tTransactionScope\tB-Code_Block\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nthen\tO\tthen\tO\ndoes\tO\tdoes\tO\nTransactionScope\tB-Library_Class\tTransactionScope\tB-Code_Block\nwork\tO\twork\tO\nto\tO\tto\tO\nroll\tO\troll\tO\nback\tO\tback\tO\ntransactions\tO\ttransactions\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n494550\tO\t494550\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/494550/\tO\thttps://stackoverflow.com/questions/494550/\tO\n\t\n\t\nEssentially\tO\tEssentially\tO\nTransactionScope\tB-Library_Class\tTransactionScope\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ntrack\tO\ttrack\tO\nyour\tO\tyour\tO\nAdapter\tB-Class_Name\tAdapter\tO\n's\tO\t's\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nis\tO\tis\tO\nit\tO\tit\tO\ntracks\tO\ttracks\tO\ndatabase\tO\tdatabase\tO\nconnections\tO\tconnections\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nopen\tO\topen\tO\na\tO\ta\tO\nDB\tO\tDB\tO\nconnection\tO\tconnection\tO\nthe\tO\tthe\tO\nconnections\tO\tconnections\tO\nwill\tO\twill\tO\nlooks\tO\tlooks\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nambient\tO\tambient\tO\ntransaction\tO\ttransaction\tO\n(\tO\t(\tO\nTransaction\tB-Library_Class\tTransaction\tO\nScope\tI-Library_Class\tScope\tO\n)\tO\t)\tO\nand\tO\tand\tO\nif\tO\tif\tO\nso\tO\tso\tO\nenlist\tO\tenlist\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCaution\tO\tCaution\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nSQL\tB-Application\tSQL\tO\nserver\tI-Application\tserver\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nescalate\tO\tescalate\tO\nto\tO\tto\tO\na\tO\ta\tO\nDistribtued\tO\tDistribtued\tO\nTransaction\tO\tTransaction\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nhappens\tO\thappens\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nusing\tO\tusing\tO\nblock\tO\tblock\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nensuring\tO\tensuring\tO\ndispose\tB-Library_Function\tdispose\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\neven\tO\teven\tO\nif\tO\tif\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\noccurs\tO\toccurs\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\ndispose\tB-Library_Function\tdispose\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nbefore\tO\tbefore\tO\ntxScope.Complete()\tB-Library_Function\ttxScope.Complete()\tO\nthe\tO\tthe\tO\nTransactionScope\tB-Library_Class\tTransactionScope\tO\nwill\tO\twill\tO\ntell\tO\ttell\tO\nthe\tO\tthe\tO\nconnections\tO\tconnections\tO\nto\tO\tto\tO\nrollback\tO\trollback\tO\ntheir\tO\ttheir\tO\ntransactions\tO\ttransactions\tO\n(\tO\t(\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nDTC\tO\tDTC\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n494550\tO\t494550\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/494550/\tO\thttps://stackoverflow.com/questions/494550/\tO\n\t\n\t\nThe\tO\tThe\tO\nTransactionScope\tB-Library_Class\tTransactionScope\tB-Code_Block\nclass\tO\tclass\tO\nworks\tO\tworks\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nTransaction\tB-Library_Class\tTransaction\tB-Code_Block\nclass\tO\tclass\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthread-specific\tO\tthread-specific\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nTransactionScope\tB-Library_Class\tTransactionScope\tB-Code_Block\nis\tO\tis\tO\ncreated\tO\tcreated\tO\n,\tO\t,\tO\nit\tO\tit\tO\nchecks\tO\tchecks\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nTransaction\tB-Library_Class\tTransaction\tB-Code_Block\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\n;\tO\t;\tO\nif\tO\tif\tO\none\tO\tone\tO\nexists\tO\texists\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\notherwise\tO\totherwise\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nnew\tO\tnew\tO\none\tO\tone\tO\nand\tO\tand\tO\npushes\tO\tpushes\tO\nit\tO\tit\tO\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nstack\tB-Data_Structure\tstack\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\none\tO\tone\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nincrements\tO\tincrements\tO\na\tO\ta\tO\ncounter\tO\tcounter\tO\nfor\tO\tfor\tO\nreleases\tO\treleases\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nDispose\tB-Library_Function\tDispose\tB-Code_Block\non\tO\ton\tO\nit\tO\tit\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nrelease\tO\trelease\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nTransaction\tB-Library_Class\tTransaction\tB-Code_Block\nwas\tO\twas\tO\nnot\tO\tnot\tO\ncomitted\tO\tcomitted\tO\n,\tO\t,\tO\nit\tO\tit\tO\nrolls\tO\trolls\tO\nback\tO\tback\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nwhy\tO\twhy\tO\nclasses\tO\tclasses\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nmagically\tO\tmagically\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\ntransactions\tO\ttransactions\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nleft\tO\tleft\tO\nas\tO\tas\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\ndetail\tO\tdetail\tO\nfor\tO\tfor\tO\nthose\tO\tthose\tO\nclasses\tO\tclasses\tO\nthat\tO\tthat\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\ndeptAdapter\tB-Variable_Name\tdeptAdapter\tB-Code_Block\nand\tO\tand\tO\nemptAdapter\tB-Variable_Name\temptAdapter\tB-Code_Block\ninstances\tO\tinstances\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\ncheck\tO\tcheck\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncurrent\tO\tcurrent\tO\ntransaction\tO\ttransaction\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nstatic\tO\tstatic\tO\nCurrent\tB-Library_Class\tCurrent\tB-Code_Block\nproperty\tO\tproperty\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nTransaction\tB-Library_Class\tTransaction\tB-Code_Block\nclass\tO\tclass\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nregisters\tO\tregisters\tO\nitself\tO\titself\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nTransaction\tB-Library_Class\tTransaction\tB-Code_Block\n,\tO\t,\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\npart\tO\tpart\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncommit/rollback\tO\tcommit/rollback\tO\nsequence\tO\tsequence\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nTransaction\tB-Library_Class\tTransaction\tB-Code_Block\ncontrols\tO\tcontrols\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmight\tO\tmight\tO\npropogate\tO\tpropogate\tO\nto\tO\tto\tO\nvarying\tO\tvarying\tO\ntransaction\tO\ttransaction\tO\ncoordinators\tO\tcoordinators\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nkernel\tB-Application\tkernel\tO\n,\tO\t,\tO\ndistributed\tO\tdistributed\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8312581\tO\t8312581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8312581/\tO\thttps://stackoverflow.com/questions/8312581/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncreating\tO\tcreating\tO\nan\tO\tan\tO\nXML\tB-File_Type\tXML\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nscratch\tO\tscratch\tO\nusing\tO\tusing\tO\nPHP\tB-Language\tPHP\tO\n's\tO\t's\tO\nSimpleXML\tB-Library_Class\tSimpleXML\tO\nObject\tO\tObject\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nwhen\tO\twhen\tO\nvalidating\tO\tvalidating\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\n:\tO\t:\tO\n'\tB-Output_Block\t'\tO\nCan\tI-Output_Block\tCan\tO\nnot\tI-Output_Block\tnot\tO\nfind\tI-Output_Block\tfind\tO\ndeclaration\tI-Output_Block\tdeclaration\tO\nof\tI-Output_Block\tof\tO\nelement\tI-Output_Block\telement\tO\n\"\tI-Output_Block\t\"\tO\nexample\tI-Output_Block\texample\tO\n\"\tI-Output_Block\t\"\tO\n.\tI-Output_Block\t.\tO\n'\tI-Output_Block\t'\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\nXML\tB-File_Type\tXML\tO\ndocument\tO\tdocument\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_705\tI-Code_Block\tQ_705\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nXML\tB-File_Type\tXML\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nproduced\tO\tproduced\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_706\tI-Code_Block\tQ_706\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8312581\tO\t8312581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8312581/\tO\thttps://stackoverflow.com/questions/8312581/\tO\n\t\n\t\nAn\tO\tAn\tO\nXML\tB-File_Type\tXML\tO\nfile\tO\tfile\tO\nneeds\tO\tneeds\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\nit\tO\tit\tO\nagainst\tO\tagainst\tO\n,\tO\t,\tO\na\tO\ta\tO\nDocument\tO\tDocument\tO\nType\tO\tType\tO\nDefinition\tO\tDefinition\tO\n(\tO\t(\tO\nDTD\tO\tDTD\tO\n)\tO\t)\tO\nor\tO\tor\tO\nan\tO\tan\tO\nXML\tB-Language\tXML\tO\nSchema\tI-Language\tSchema\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nproviding\tO\tproviding\tO\nany\tO\tany\tO\n,\tO\t,\tO\nso\tO\tso\tO\nvalidation\tO\tvalidation\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n,\tO\t,\tO\nchecking\tO\tchecking\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nstructure/content\tO\tstructure/content\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nXML\tB-File_Type\tXML\tO\ndocument\tO\tdocument\tO\nconforms\tO\tconforms\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nrules\tO\trules\tO\nset\tO\tset\tO\nforth\tO\tforth\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nDTD/Schema\tO\tDTD/Schema\tO\n)\tO\t)\tO\nis\tO\tis\tO\nimpossible\tO\timpossible\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\ndid\tO\tdid\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nwish\tO\twish\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nwell-formedness\tO\twell-formedness\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n,\tO\t,\tO\nchecking\tO\tchecking\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\ntags\tO\ttags\tO\nare\tO\tare\tO\nclosed\tO\tclosed\tO\nproperly\tO\tproperly\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nillegal\tO\tillegal\tO\ncharacters\tO\tcharacters\tO\nanywhere\tO\tanywhere\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8312581\tO\t8312581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8312581/\tO\thttps://stackoverflow.com/questions/8312581/\tO\n\t\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\nan\tO\tan\tO\nXML\tB-File_Type\tXML\tO\ndocument\tO\tdocument\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nDTD\tB-File_Type\tDTD\tO\n(\tO\t(\tO\nor\tO\tor\tO\nXML\tB-File_Type\tXML\tO\nSchema\tI-File_Type\tSchema\tO\n)\tO\t)\tO\nwhich\tO\twhich\tO\ndescribes\tO\tdescribes\tO\nhow\tO\thow\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\ndocument\tO\tdocument\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nDTD\tB-File_Type\tDTD\tO\nexample.dtd\tB-File_Name\texample.dtd\tB-Code_Block\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nXML\tB-File_Type\tXML\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nand\tO\tand\tO\neither\tO\teither\tO\ngive\tO\tgive\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nvalidator\tO\tvalidator\tO\nor\tO\tor\tO\ninclude\tO\tinclude\tO\nit\tO\tit\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nXML\tB-File_Type\tXML\tO\ndocument\tO\tdocument\tO\n,\tO\t,\tO\nby\tO\tby\tO\nprefixing\tO\tprefixing\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1000\tI-Code_Block\tA_1000\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSince\tO\tSince\tO\nSimpleXML\tB-Library_Class\tSimpleXML\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\ndoctypes\tB-HTML_XML_Tag\tdoctypes\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\neither\tO\teither\tO\nmanually\tO\tmanually\tO\nprefix\tO\tprefix\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nline\tO\tline\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\nphp\tB-Language\tphp\tO\n's\tO\t's\tO\nDOM\tB-Library\tDOM\tO\nextension\tO\textension\tO\n.\tO\t.\tO\n\t\nFortunately\tO\tFortunately\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\nSimpleXML\tB-Library_Class\tSimpleXML\tO\nfragment\tO\tfragment\tO\nto\tO\tto\tO\nDOM\tB-Library\tDOM\tO\nwith\tO\twith\tO\ndom_import_simplexml\tB-Code_Block\tdom_import_simplexml\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7302448\tO\t7302448\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7302448/\tO\thttps://stackoverflow.com/questions/7302448/\tO\n\t\n\t\nSay\tO\tSay\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nClass\tO\tClass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_568\tI-Code_Block\tQ_568\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nother\tO\tother\tO\nobjects\tO\tobjects\tO\nto\tO\tto\tO\ninherit\tO\tinherit\tO\nvariables\tO\tvariables\tO\n&\tO\t&\tO\nfunctions\tO\tfunctions\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_569\tI-Code_Block\tQ_569\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\ninstantiate\tO\tinstantiate\tO\nmy\tO\tmy\tO\nobjects\tO\tobjects\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_570\tI-Code_Block\tQ_570\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nFoo\tB-Function_Name\tFoo\tB-Code_Block\nin\tO\tin\tO\nBar\tB-Function_Name\tBar\tB-Code_Block\nand\tO\tand\tO\nBaz\tB-Function_Name\tBaz\tB-Code_Block\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nalready\tO\talready\tO\ndid\tO\tdid\tO\nBar.prototype\tB-Code_Block\tBar.prototype\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nnew\tI-Code_Block\tnew\tI-Code_Block\nFoo()\tI-Code_Block\tFoo()\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nfail\tO\tfail\tO\non\tO\ton\tO\nour\tO\tour\tO\nbeloved\tO\tbeloved\tO\nIE\tB-Application\tIE\tO\n(\tO\t(\tO\n<\tO\t<\tO\n9\tB-Version\t9\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7302448\tO\t7302448\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7302448/\tO\thttps://stackoverflow.com/questions/7302448/\tO\n\t\n\t\nhave\tO\thave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nto\tO\tto\tO\nClassy\tB-Library\tClassy\tO\nor\tO\tor\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\nRuby\tB-Language\tRuby\tO\nand\tO\tand\tO\nwant\tO\twant\tO\na\tO\ta\tO\nmore\tO\tmore\tO\ncomplete\tO\tcomplete\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nJS.Class\tB-Language\tJS.Class\tO\n.\tO\t.\tO\n\t\nThose\tO\tThose\tO\nlibraries\tO\tlibraries\tO\nhelps\tO\thelps\tO\nyou\tO\tyou\tO\nwith\tO\twith\tO\nobject\tO\tobject\tO\norientation\tO\torientation\tO\nin\tO\tin\tO\njavascript\tB-Language\tjavascript\tO\nad\tO\tad\tO\nhide\tO\thide\tO\nprototype\tO\tprototype\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndeveloper\tO\tdeveloper\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7302448\tO\t7302448\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7302448/\tO\thttps://stackoverflow.com/questions/7302448/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nattach\tO\tattach\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nproperties\tO\tproperties\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nprototype\tO\tprototype\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\npreferable\tO\tpreferable\tO\n,\tO\t,\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nfor\tO\tfor\tO\nmethods\tO\tmethods\tO\n)\tO\t)\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_845\tI-Code_Block\tA_845\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthen\tO\tthen\tO\nassigning\tO\tassigning\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\n's\tO\t's\tO\nprototype\tO\tprototype\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\n's\tO\t's\tO\nprototype\tO\tprototype\tO\nis\tO\tis\tO\nsufficient\tO\tsufficient\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_846\tI-Code_Block\tA_846\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nwe\tO\twe\tO\nused\tO\tused\tO\nan\tO\tan\tO\nintermediate\tO\tintermediate\tO\nconstructor\tO\tconstructor\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\ndecouple\tO\tdecouple\tO\n\"\tO\t\"\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nprototypes\tO\tprototypes\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nchange\tO\tchange\tO\none\tO\tone\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\none\tO\tone\tO\ntoo\tO\ttoo\tO\n(\tO\t(\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nreference\tO\treference\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nobject\tO\tobject\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\npretty\tO\tpretty\tO\npopular\tO\tpopular\tO\nand\tO\tand\tO\nused\tO\tused\tO\nby\tO\tby\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nlibraries\tO\tlibraries\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\n's\tO\t's\tO\nconstructor\tO\tconstructor\tO\nfunction\tO\tfunction\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\n's\tO\t's\tO\nconstructor\tO\tconstructor\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_847\tI-Code_Block\tA_847\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nyou\tO\tyou\tO\nalways\tO\talways\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nthe\tO\tthe\tO\nproperties\tO\tproperties\tO\nset\tO\tset\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconstructor\tO\tconstructor\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nadditional\tO\tadditional\tO\nremark\tO\tremark\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_848\tI-Code_Block\tA_848\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n(\tO\t(\tO\nalso\tO\talso\tO\nin\tO\tin\tO\nIE\tO\tIE\tO\nactually\tO\tactually\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nhas\tO\thas\tO\ntwo\tO\ttwo\tO\nmajor\tO\tmajor\tO\nflaws\tO\tflaws\tO\n:\tO\t:\tO\n\t\nAll\tO\tAll\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\nproperties\tO\tproperties\tO\nset\tO\tset\tO\nup\tO\tup\tO\nin\tO\tin\tO\nFoo\tB-Code_Block\tFoo\tB-Code_Block\nwill\tO\twill\tO\nbecome\tO\tbecome\tO\nproperties\tO\tproperties\tO\nshared\tO\tshared\tO\nby\tO\tby\tO\nall\tO\tall\tO\nBar\tB-Code_Block\tBar\tB-Code_Block\ninstances\tO\tinstances\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nif\tO\tif\tO\nFoo\tB-Code_Block\tFoo\tB-Code_Block\nexpects\tO\texpects\tO\nsome\tO\tsome\tO\narguments\tO\targuments\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\navailable\tO\tavailable\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nBar\tB-Code_Block\tBar\tB-Code_Block\ninstance\tO\tinstance\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5816737\tO\t5816737\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5816737/\tO\thttps://stackoverflow.com/questions/5816737/\tO\n\t\n\t\nWhenever\tO\tWhenever\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nEclipse\tB-Application\tEclipse\tO\nwith\tO\twith\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nworkspace\tO\tworkspace\tO\n,\tO\t,\tO\nit\tO\tit\tO\nturn\tO\tturn\tO\nout\tO\tout\tO\ngive\tO\tgive\tO\nempty\tO\tempty\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nbox\tI-User_Interface_Element\tbox\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46367823\tO\t46367823\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46367823/\tO\thttps://stackoverflow.com/questions/46367823/\tO\n\t\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nlimit\tO\tlimit\tO\nthe\tO\tthe\tO\nbandwidth\tO\tbandwidth\tO\nin\tO\tin\tO\nNSURLSession\tB-Library_Class\tNSURLSession\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nmaking\tO\tmaking\tO\nfile-sync-client\tB-Application\tfile-sync-client\tO\nfor\tO\tfor\tO\nmacOS\tB-Operating_System\tmacOS\tO\nlike\tO\tlike\tO\nDropbox/GoogleDrive/pCloud\tB-Application\tDropbox/GoogleDrive/pCloud\tB-Code_Block\nand\tO\tand\tO\nthey\tO\tthey\tO\nall\tO\tall\tO\nhave\tO\thave\tO\nbandwidth\tO\tbandwidth\tO\nlimiting\tO\tlimiting\tO\noptions\tO\toptions\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nNSURLSession\tB-Library_Class\tNSURLSession\tO\nto\tO\tto\tO\nrespect\tO\trespect\tO\nbandwidth\tO\tbandwidth\tO\nlimiting\tO\tlimiting\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46367823\tO\t46367823\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46367823/\tO\thttps://stackoverflow.com/questions/46367823/\tO\n\t\n\t\nUnless\tO\tUnless\tO\nApple\tB-Organization\tApple\tO\nhas\tO\thas\tO\nadded\tO\tadded\tO\nsomething\tO\tsomething\tO\nvery\tO\tvery\tO\nrecently\tO\trecently\tO\n,\tO\t,\tO\nNSURLSession\tB-Library_Class\tNSURLSession\tO\nprovides\tO\tprovides\tO\nno\tO\tno\tO\nfacilities\tO\tfacilities\tO\nfor\tO\tfor\tO\nbandwidth\tO\tbandwidth\tO\nlimiting\tO\tlimiting\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nways\tO\tways\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\naware\tO\taware\tO\nof\tO\tof\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\n:\tO\t:\tO\n\t\nUse\tO\tUse\tO\nlower-level\tO\tlower-level\tO\nAPIs\tB-Library\tAPIs\tO\nthat\tO\tthat\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nsockets\tO\tsockets\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthrottle\tO\tthrottle\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nrate\tO\trate\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nTCP\tO\tTCP\tO\nsocket\tO\tsocket\tO\nlevel\tO\tlevel\tO\n.\tO\t.\tO\n\t\nProvide\tO\tProvide\tO\nan\tO\tan\tO\nin-app\tO\tin-app\tO\nweb\tO\tweb\tO\nproxy\tO\tproxy\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\noutgoing\tO\toutgoing\tO\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nConfigure\tO\tConfigure\tO\nthe\tO\tthe\tO\nproxy\tO\tproxy\tO\nto\tO\tto\tO\nlimit\tO\tlimit\tO\nthe\tO\tthe\tO\nbandwidth\tO\tbandwidth\tO\nof\tO\tof\tO\nall\tO\tall\tO\nrequests\tO\trequests\tO\nthat\tO\tthat\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32617121\tO\t32617121\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32617121/\tO\thttps://stackoverflow.com/questions/32617121/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nAndroid\tB-Operating_System\tAndroid\tO\nand\tO\tand\tO\nMVP\tB-Algorithm\tMVP\tO\nin-general\tO\tin-general\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ndoing\tO\tdoing\tO\niOS\tB-Operating_System\tiOS\tO\nprogramming\tO\tprogramming\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\n1.5\tO\t1.5\tO\nyears\tO\tyears\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nfind\tO\tfind\tO\ndelegate\tO\tdelegate\tO\npatterns\tO\tpatterns\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\ndigest\tO\tdigest\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nimplemented\tO\timplemented\tO\nMVP\tB-Algorithm\tMVP\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nconforms\tO\tconforms\tO\nto\tO\tto\tO\na\tO\ta\tO\npresenter\tO\tpresenter\tO\n's\tO\t's\tO\nprotocol\tO\tprotocol\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nlets\tO\tlets\tO\nthe\tO\tthe\tO\npresenter\tO\tpresenter\tO\ndisregard\tO\tdisregard\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\n's\tO\t's\tO\nspecific\tO\tspecific\tO\ntype\tO\ttype\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nlets\tO\tlets\tO\nit\tO\tit\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\ncertain\tO\tcertain\tO\nmethods\tO\tmethods\tO\nare\tO\tare\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\nokay\tO\tokay\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nreading\tO\treading\tO\nvarious\tO\tvarious\tO\nMVP\tB-Algorithm\tMVP\tO\nguides\tO\tguides\tO\n,\tO\t,\tO\nand\tO\tand\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nMosby\tB-Library\tMosby\tO\ntutorials\tO\ttutorials\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nI\tO\tI\tO\nagree\tO\tagree\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthe\tO\tthe\tO\npattern\tO\tpattern\tO\nI\tO\tI\tO\n've\tO\t've\tO\nimplemented\tO\timplemented\tO\nkosher\tO\tkosher\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nsome\tO\tsome\tO\nfeedback\tO\tfeedback\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nkeep\tO\tkeep\tO\nheading\tO\theading\tO\nin\tO\tin\tO\na\tO\ta\tO\nbad\tO\tbad\tO\ndirection\tO\tdirection\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nindeed\tO\tindeed\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\n\t\nBase\tO\tBase\tO\nPresenter\tB-Class_Name\tPresenter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3960\tI-Code_Block\tQ_3960\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\nsubclass\tO\tsubclass\tO\nthis\tO\tthis\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nPhotoRecyclerPresenter\tB-Class_Name\tPhotoRecyclerPresenter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3961\tI-Code_Block\tQ_3961\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nit\tO\tit\tO\ncommunicates\tO\tcommunicates\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\n:\tO\t:\tO\n\t\nPhotoRecyclerFragment\tB-Class_Name\tPhotoRecyclerFragment\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3962\tI-Code_Block\tQ_3962\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nlets\tO\tlets\tO\nme\tO\tme\tO\ndefine\tO\tdefine\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\nrequirements\tO\trequirements\tO\na\tO\ta\tO\nview\tO\tview\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nconform\tO\tconform\tO\nto\tO\tto\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nutilize\tO\tutilize\tO\nthe\tO\tthe\tO\nsingleton\tO\tsingleton\tO\npresenter\tO\tpresenter\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nkeeping\tO\tkeeping\tO\nthe\tO\tthe\tO\npresenter\tO\tpresenter\tO\nagnostic\tO\tagnostic\tO\nabout\tO\tabout\tO\nwhat\tO\twhat\tO\nviews\tO\tviews\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n,\tO\t,\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nconform\tO\tconform\tO\nto\tO\tto\tO\nits\tO\tits\tO\nprotocol\tO\tprotocol\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\npractice\tO\tpractice\tO\nproject\tO\tproject\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nresources\tO\tresources\tO\nwhere\tO\twhere\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nis\tO\tis\tO\nrecommended\tO\trecommended\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nMVP\tB-Algorithm\tMVP\tO\ngoes\tO\tgoes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nenough\tO\tenough\tO\nself-doubt\tO\tself-doubt\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nask\tO\task\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nStackOverflow\tB-Website\tStackOverflow\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nwho\tO\twho\tO\nhas\tO\thas\tO\nexperience\tO\texperience\tO\nwith\tO\twith\tO\nMVP\tB-Algorithm\tMVP\tO\nshed\tO\tshed\tO\nsome\tO\tsome\tO\nlight\tO\tlight\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nasking\tO\tasking\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nplace\tO\tplace\tO\n,\tO\t,\tO\nfeel\tO\tfeel\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\npoint\tO\tpoint\tO\nme\tO\tme\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nplace\tO\tplace\tO\nto\tO\tto\tO\npost\tO\tpost\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n:)\tO\t:)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30443827\tO\t30443827\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30443827/\tO\thttps://stackoverflow.com/questions/30443827/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nCUDA\tB-Application\tCUDA\tO\nprogram\tO\tprogram\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3657\tI-Code_Block\tQ_3657\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\nwhich\tO\twhich\tO\nevery\tO\tevery\tO\nthread\tO\tthread\tO\nwill\tO\twill\tO\nprint\tO\tprint\tO\nits\tO\tits\tO\nthreadIdx.x\tB-Variable_Name\tthreadIdx.x\tB-Code_Block\nand\tO\tand\tO\nblockIdx.x\tB-Variable_Name\tblockIdx.x\tB-Code_Block\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\npossible\tO\tpossible\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nprogram\tO\tprogram\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3658\tI-Code_Block\tQ_3658\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRunning\tO\tRunning\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nseveral\tO\tseveral\tO\ntimes\tO\ttimes\tO\nI\tO\tI\tO\nget\tO\tget\tO\nsimilar\tO\tsimilar\tO\nresults\tO\tresults\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nthat\tO\tthat\tO\nblock\tO\tblock\tO\norder\tO\torder\tO\nis\tO\tis\tO\nrandom\tO\trandom\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\noutput\tO\toutput\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nblock\tO\tblock\tO\norder\tO\torder\tO\n0\tB-Value\t0\tO\n,\tO\t,\tO\n2\tB-Value\t2\tO\n,\tO\t,\tO\n3\tB-Value\t3\tO\n,\tO\t,\tO\n1\tB-Value\t1\tO\n.\tO\t.\tO\n\t\nRunning\tO\tRunning\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nagain\tO\tagain\tO\nI\tO\tI\tO\nget\tO\tget\tO\n1\tB-Value\t1\tO\n,\tO\t,\tO\n2\tB-Value\t2\tO\n,\tO\t,\tO\n3\tB-Value\t3\tO\n,\tO\t,\tO\n0\tB-Value\t0\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\norder\tO\torder\tO\nin\tO\tin\tO\nevery\tO\tevery\tO\nblock\tO\tblock\tO\nis\tO\tis\tO\nalways\tO\talways\tO\n0\tB-Value\t0\tO\n,\tO\t,\tO\n1\tB-Value\t1\tO\n,\tO\t,\tO\n2\tB-Value\t2\tO\n,\tO\t,\tO\n3\tB-Value\t3\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nrandom\tO\trandom\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nforce\tO\tforce\tO\nthread\tO\tthread\tO\n0\tB-Value\t0\tO\nin\tO\tin\tO\nevery\tO\tevery\tO\nblock\tO\tblock\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nlonger\tO\tlonger\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3659\tI-Code_Block\tQ_3659\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nthread\tO\tthread\tO\norder\tO\torder\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n1\tB-Value\t1\tO\n,\tO\t,\tO\n2\tB-Value\t2\tO\n,\tO\t,\tO\n3\tB-Value\t3\tO\n,\tO\t,\tO\n0\tB-Value\t0\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nresult\tO\tresult\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nshown\tO\tshown\tO\nabove\tO\tabove\tO\nwhere\tO\twhere\tO\nthread\tO\tthread\tO\norder\tO\torder\tO\nwas\tO\twas\tO\nalways\tO\talways\tO\n0\tB-Value\t0\tO\n,\tO\t,\tO\n1\tB-Value\t1\tO\n,\tO\t,\tO\n2\tB-Value\t2\tO\n,\tO\t,\tO\n3\tB-Value\t3\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30443827\tO\t30443827\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30443827/\tO\thttps://stackoverflow.com/questions/30443827/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWith\tO\tWith\tO\n4\tO\t4\tO\nthreads\tO\tthreads\tO\nper\tO\tper\tO\nblock\tO\tblock\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\nlaunching\tO\tlaunching\tO\none\tO\tone\tO\nwarp\tO\twarp\tO\nper\tO\tper\tO\nblock\tO\tblock\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nwarp\tO\twarp\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nunit\tO\tunit\tO\nof\tO\tof\tO\nexecution\tO\texecution\tO\n(\tO\t(\tO\nand\tO\tand\tO\nscheduling\tO\tscheduling\tO\n,\tO\t,\tO\nand\tO\tand\tO\nresource\tO\tresource\tO\nassignment\tO\tassignment\tO\n)\tO\t)\tO\nin\tO\tin\tO\nCUDA\tB-Application\tCUDA\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\na\tO\ta\tO\nwarp\tO\twarp\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\n32\tO\t32\tO\nthreads\tO\tthreads\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\n4\tO\t4\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nthreads\tO\tthreads\tO\nper\tO\tper\tO\nblock\tO\tblock\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nconditional\tO\tconditional\tO\nbehavior\tO\tbehavior\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n)\tO\t)\tO\nare\tO\tare\tO\nexecuting\tO\texecuting\tO\nin\tO\tin\tO\nlockstep\tO\tlockstep\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthey\tO\tthey\tO\nreach\tO\treach\tO\nthe\tO\tthe\tO\nprintf\tB-Library_Function\tprintf\tB-Code_Block\nfunction\tO\tfunction\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nall\tO\tall\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nline\tO\tline\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nin\tO\tin\tO\nlockstep\tO\tlockstep\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nbecomes\tO\tbecomes\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nsituation\tO\tsituation\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nCUDA\tB-Application\tCUDA\tO\nruntime\tO\truntime\tO\ndispatch\tO\tdispatch\tO\nthese\tO\tthese\tO\n\"\tO\t\"\tO\nsimultaneous\tO\tsimultaneous\tO\n\"\tO\t\"\tO\nfunction\tO\tfunction\tO\ncalls\tO\tcalls\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nunspecified\tO\tunspecified\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\n\"\tO\t\"\tO\nrandom\tO\trandom\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nTherefore\tO\tTherefore\tO\nit\tO\tit\tO\n's\tO\t's\tO\nreasonable\tO\treasonable\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\ndispatch\tO\tdispatch\tO\nfor\tO\tfor\tO\noperations\tO\toperations\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nwarp\tO\twarp\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\nfrom\tO\tfrom\tO\nrun\tO\trun\tO\nto\tO\tto\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nlaunch\tO\tlaunch\tO\nenough\tO\tenough\tO\nthreads\tO\tthreads\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nmultiple\tO\tmultiple\tO\nwarps\tO\twarps\tO\nper\tO\tper\tO\nblock\tO\tblock\tO\n,\tO\t,\tO\nand\tO\tand\tO\nprobably\tO\tprobably\tO\nalso\tO\talso\tO\ninclude\tO\tinclude\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\ndisperse\tO\tdisperse\tO\nand\tO\tand\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\nrandomize\tO\trandomize\tO\n\"\tO\t\"\tO\nthe\tO\tthe\tO\nbehavior\tO\tbehavior\tO\nbetween\tO\tbetween\tO\nwarps\tO\twarps\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nprintf\tB-Library_Function\tprintf\tB-Code_Block\noperations\tO\toperations\tO\nemanating\tO\temanating\tO\nfrom\tO\tfrom\tO\nseparate\tO\tseparate\tO\nwarps\tO\twarps\tO\noccurring\tO\toccurring\tO\nin\tO\tin\tO\n\"\tO\t\"\tO\nrandom\tO\trandom\tO\n\"\tO\t\"\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30443827\tO\t30443827\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30443827/\tO\thttps://stackoverflow.com/questions/30443827/\tO\n\t\n\t\nTo\tO\tTo\tO\nanswer\tO\tanswer\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ncontrol\tO\tcontrol\tO\nflow\tO\tflow\tO\ndiverges\tO\tdiverges\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nif\tB-Code_Block\tif\tB-Code_Block\nstatement\tO\tstatement\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nthreads\tO\tthreads\tO\nwhere\tO\twhere\tO\nthreadIdx.x\tB-Code_Block\tthreadIdx.x\tB-Code_Block\n!=\tI-Code_Block\t!=\tI-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\nsimply\tO\tsimply\tO\nwait\tO\twait\tO\nto\tO\tto\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nconvergence\tO\tconvergence\tO\npoint\tO\tpoint\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nif\tB-Code_Block\tif\tB-Code_Block\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\ngo\tO\tgo\tO\non\tO\ton\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nprintf\tB-Library_Function\tprintf\tB-Code_Block\nstatement\tO\tstatement\tO\nuntil\tO\tuntil\tO\nthread\tO\tthread\tO\n0\tO\t0\tO\nhas\tO\thas\tO\ncompleted\tO\tcompleted\tO\nthe\tO\tthe\tO\nif\tB-Code_Block\tif\tB-Code_Block\nblock\tO\tblock\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37406714\tO\t37406714\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37406714/\tO\thttps://stackoverflow.com/questions/37406714/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nSpring\tB-Library\tSpring\tO\nBoot\tI-Library\tBoot\tO\n1.4.0.M3\tB-Version\t1.4.0.M3\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\n@Entity\tB-Class_Name\t@Entity\tB-Code_Block\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\nusername\tB-Variable_Name\tusername\tB-Code_Block\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nunique\tO\tunique\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4677\tI-Code_Block\tQ_4677\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsing\tO\tUsing\tO\na\tO\ta\tO\nSpring\tB-Library\tSpring\tO\nData\tO\tData\tO\nRepository\tO\tRepository\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nduplicate\tO\tduplicate\tO\nusername\tB-Variable_Name\tusername\tO\nis\tO\tis\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ntest\tO\ttest\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4678\tI-Code_Block\tQ_4678\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nadding\tO\tadding\tO\n@Transactional\tB-Class_Name\t@Transactional\tB-Code_Block\nwith\tO\twith\tO\n@Commit\tB-Class_Name\t@Commit\tB-Code_Block\n,\tO\t,\tO\nthis\tO\tthis\tO\ntest\tO\ttest\tO\nfails\tO\tfails\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4679\tI-Code_Block\tQ_4679\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nlogging\tO\tlogging\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nDataIntegrityViolationException\tB-Library_Class\tDataIntegrityViolationException\tB-Code_Block\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nthrown\tO\tthrown\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nfail\tO\tfail\tO\n?\tO\t?\tO\n\t\nCould\tO\tCould\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\nJUnit\tB-Library\tJUnit\tO\nchecks\tO\tchecks\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\nis\tO\tis\tO\nthrown\tO\tthrown\tO\nbefore\tO\tbefore\tO\nSpring\tB-Library\tSpring\tO\ncommits\tO\tcommits\tO\nthe\tO\tthe\tO\ntransaction\tO\ttransaction\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37406714\tO\t37406714\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37406714/\tO\thttps://stackoverflow.com/questions/37406714/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nDataIntegrityViolationException\tB-Library_Class\tDataIntegrityViolationException\tB-Code_Block\nin\tO\tin\tO\nMVC\tB-Algorithm\tMVC\tO\ncontroller\tO\tcontroller\tO\ntest\tO\ttest\tO\n(\tO\t(\tO\n@WebAppConfiguration\tB-Class_Name\t@WebAppConfiguration\tB-Code_Block\n)\tO\t)\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\n@ResponseStatus\tB-Class_Name\t@ResponseStatus\tB-Code_Block\nmodification\tO\tmodification\tO\ninside\tO\tinside\tO\napplication\tO\tapplication\tO\nby\tO\tby\tO\n@ControllerAdvice\tB-Class_Name\t@ControllerAdvice\tB-Code_Block\n.So\tO\t.So\tO\nyours\tO\tyours\tO\napproach\tO\tapproach\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nsuit\tO\tsuit\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n,\tO\t,\tO\nit\tO\tit\tO\nflush\tO\tflush\tO\ntoo\tO\ttoo\tO\nlate\tO\tlate\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n@NotTransactional\tB-Class_Name\t@NotTransactional\tB-Code_Block\nannotation\tO\tannotation\tO\nwas\tO\twas\tO\nexcluded\tO\texcluded\tO\nin\tO\tin\tO\nSpring\tB-Library\tSpring\tO\n4\tB-Version\t4\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nseparate\tO\tseparate\tO\nmy\tO\tmy\tO\ntests\tO\ttests\tO\nfor\tO\tfor\tO\n@Transactional\tB-Class_Name\t@Transactional\tB-Code_Block\nand\tO\tand\tO\nnot\tO\tnot\tO\ntransactional\tO\ttransactional\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nalso\tO\talso\tO\nhttp://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/testing.html#integration-testing-annotations\tO\thttp://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/testing.html#integration-testing-annotations\tO\nfrom\tO\tfrom\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nUPDATE\tO\tUPDATE\tO\n.\tO\t.\tO\n\t\n2\tO\t2\tO\nways\tO\tways\tO\nsolution\tO\tsolution\tO\n:\tO\t:\tO\n\t\nseparate\tO\tseparate\tO\nyour\tO\tyour\tO\ntest\tO\ttest\tO\nexplicitly\tO\texplicitly\tO\nfor\tO\tfor\tO\nTransactional\tO\tTransactional\tO\nand\tO\tand\tO\nNon\tO\tNon\tO\ntransactional\tO\ttransactional\tO\n\t\nuse\tO\tuse\tO\n@Transactional\tB-Code_Block\t@Transactional\tB-Code_Block\n(\tB-Code_Block\t(\tB-Code_Block\npropagation\tI-Code_Block\tpropagation\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nPropagation.NEVER\tI-Code_Block\tPropagation.NEVER\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nwhere\tO\twhere\tO\ntransaction\tO\ttransaction\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndesirable\tO\tdesirable\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37406714\tO\t37406714\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37406714/\tO\thttps://stackoverflow.com/questions/37406714/\tO\n\t\n\t\nBased\tO\tBased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\nby\tO\tby\tO\nM.Deinum\tB-User_Name\tM.Deinum\tO\nand\tO\tand\tO\nStephane\tB-User_Name\tStephane\tO\nNicoll\tI-User_Name\tNicoll\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nworking\tO\tworking\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5376\tI-Code_Block\tA_5376\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nboth\tO\tboth\tO\nstatic\tB-Data_Type\tstatic\tO\nmethods\tO\tmethods\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37453085\tO\t37453085\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37453085/\tO\thttps://stackoverflow.com/questions/37453085/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\nJSTL\tB-Library\tJSTL\tO\ncore\tO\tcore\tO\nlibrary\tO\tlibrary\tO\ndirectly\tO\tdirectly\tO\ninto\tO\tinto\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\naccessing\tO\taccessing\tO\nit\tO\tit\tO\nby\tO\tby\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4687\tI-Code_Block\tQ_4687\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\nit\tO\tit\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\njstl.jar\tB-File_Name\tjstl.jar\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\neclipse\tB-Application\teclipse\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\njsp\tB-File_Type\tjsp\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\nwithout\tO\twithout\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nwebsite\tO\twebsite\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nhttp://java.sun.com/jsp/jstl/core\tO\thttp://java.sun.com/jsp/jstl/core\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37453085\tO\t37453085\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37453085/\tO\thttps://stackoverflow.com/questions/37453085/\tO\n\t\n\t\n\t\nDownload\tO\tDownload\tO\nthe\tO\tthe\tO\njar\tB-File_Type\tjar\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\nhttp://www.java2s.com/Code/Jar/j/Downloadjstljar.htm\tO\thttp://www.java2s.com/Code/Jar/j/Downloadjstljar.htm\tO\n\t\nImport\tO\tImport\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nIDE\tB-Application\tIDE\tO\n:\tO\t:\tO\n\t\nEclipse\tB-Application\tEclipse\tO\n:\tO\t:\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nimport\tO\timport\tO\na\tO\ta\tO\njar\tB-File_Type\tjar\tO\nin\tO\tin\tO\nEclipse\tB-Application\tEclipse\tO\n\t\nNetBeans\tB-Application\tNetBeans\tO\n:\tO\t:\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.jar\tB-File_Type\t.jar\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nNetBeans\tB-Application\tNetBeans\tO\n?\tO\t?\tO\n\t\nUse\tO\tUse\tO\nan\tO\tan\tO\nimport\tB-Code_Block\timport\tO\nstatement\tO\tstatement\tO\nto\tO\tto\tO\nimport\tO\timport\tO\nyour\tO\tyour\tO\nlibrary\tO\tlibrary\tO\n:\tO\t:\tO\nimport\tB-Code_Block\timport\tO\njavax.servlet.jsp.jstl.core.*\tI-Code_Block\tjavax.servlet.jsp.jstl.core.*\tO\n;\tI-Code_Block\t;\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18141829\tO\t18141829\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18141829/\tO\thttps://stackoverflow.com/questions/18141829/\tO\n\t\n\t\nAll\tO\tAll\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nxmpp\tB-Library\txmpp\tO\nframework\tO\tframework\tO\nfor\tO\tfor\tO\nFacebook\tB-Website\tFacebook\tO\nchat\tO\tchat\tO\nimplementation\tO\timplementation\tO\nin\tO\tin\tO\niOS\tB-Operating_System\tiOS\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nchat\tO\tchat\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\nwith\tO\twith\tO\niOS\tB-Operating_System\tiOS\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\none\tO\tone\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nonline\tO\tonline\tO\nand\tO\tand\tO\noffline\tO\toffline\tO\nfriends\tO\tfriends\tO\nare\tO\tare\tO\nbeing\tO\tbeing\tO\nshown\tO\tshown\tO\n,\tO\t,\tO\nalways\tO\talways\tO\npresence\tO\tpresence\tO\nof\tO\tof\tO\nonline\tO\tonline\tO\nand\tO\tand\tO\noffline\tO\toffline\tO\nfriend\tO\tfriend\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nprocess\tO\tprocess\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nBlank\tO\tBlank\tO\nname\tO\tname\tO\nof\tO\tof\tO\nonline\tO\tonline\tO\nuser\tO\tuser\tO\nin\tO\tin\tO\nFacebook\tB-Website\tFacebook\tO\nchat\tO\tchat\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nname\tO\tname\tO\nfield\tO\tfield\tO\nis\tO\tis\tO\nblank\tO\tblank\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21918322\tO\t21918322\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21918322/\tO\thttps://stackoverflow.com/questions/21918322/\tO\n\t\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nconfig\tO\tconfig\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nand\tO\tand\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\noutputing\tO\toutputing\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\noutput\tO\toutput\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\nafter\tO\tafter\tO\ntwo\tO\ttwo\tO\nruns\tO\truns\tO\n\t\nlog-file_2014.02.20.xml\tB-File_Name\tlog-file_2014.02.20.xml\tO\n\t\nlog-file_2014.02.20.1.xml\tB-File_Name\tlog-file_2014.02.20.1.xml\tO\n\t\nWhich\tO\tWhich\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nit\tO\tit\tO\na\tO\ta\tO\nthird\tO\tthird\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nlog-file_2014.02.20.2.xml\tB-File_Name\tlog-file_2014.02.20.2.xml\tO\nhowever\tO\thowever\tO\n..\tO\t..\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nactively\tO\tactively\tO\nlogging\tO\tlogging\tO\nfile\tO\tfile\tO\nreplaces\tO\treplaces\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nindex\tO\tindex\tO\n\"\tO\t\"\tO\nlog-file_2014.02.20.xml\tB-File_Name\tlog-file_2014.02.20.xml\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nthat\tO\tthat\tO\nhad\tO\thad\tO\nno\tO\tno\tO\nindex\tB-Variable_Name\tindex\tO\ngets\tO\tgets\tO\nmoved\tO\tmoved\tO\nto\tO\tto\tO\none\tO\tone\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n.1\tB-Value\t.1\tO\nindex\tB-Variable_Name\tindex\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nthat\tO\tthat\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\n.1\tB-Value\t.1\tO\nindex\tB-Library_Variable\tindex\tO\nis\tO\tis\tO\ndeleted\tO\tdeleted\tO\n!\tO\t!\tO\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\nindexes\tB-Variable_Name\tindexes\tO\nnever\tO\tnever\tO\ngo\tO\tgo\tO\npast\tO\tpast\tO\n.1\tB-Value\t.1\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\ndate\tO\tdate\tO\n.\tO\t.\tO\n\t\nDid\tO\tDid\tO\nya\tO\tya\tO\nfollow\tO\tfollow\tO\nthat\tO\tthat\tO\n..\tO\t..\tO\n.\tO\t.\tO\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngrateful\tO\tgrateful\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2366\tI-Code_Block\tQ_2366\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21918322\tO\t21918322\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21918322/\tO\thttps://stackoverflow.com/questions/21918322/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2976\tI-Code_Block\tA_2976\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n\t\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nconfigration\tO\tconfigration\tO\n..\tO\t..\tO\n.\tO\t.\tO\nHope\tO\tHope\tO\nit\tO\tit\tO\nhelps\tO\thelps\tO\n..\tO\t..\tO\n.\tO\t.\tO\n:)\tO\t:)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12028246\tO\t12028246\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12028246/\tO\thttps://stackoverflow.com/questions/12028246/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nC#\tB-Language\tC#\tO\nprogram\tO\tprogram\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbig\tO\tbig\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nSQL\tB-Application\tSQL\tO\nserver\tI-Application\tserver\tO\ndatabase\tO\tdatabase\tO\nnamed\tO\tnamed\tO\n\"\tB-Value\t\"\tO\nBehgozin_DB\tI-Value\tBehgozin_DB\tO\n\"\tI-Value\t\"\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nsteps\tO\tsteps\tO\nfor\tO\tfor\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n:\tO\t:\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nSQL\tB-Application\tSQL\tO\nserver\tI-Application\tserver\tO\nmanagement\tI-Application\tmanagement\tO\nstudio\tI-Application\tstudio\tO\nI\tO\tI\tO\ndetach\tO\tdetach\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nvisual\tB-Application\tvisual\tO\nstudio\tI-Application\tstudio\tO\nfrom\tO\tfrom\tO\nData\tO\tData\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\ndata\tO\tdata\tO\nsource\tO\tsource\tO\n\t\nMy\tO\tMy\tO\nConnection\tO\tConnection\tO\nString\tB-Data_Type\tString\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nEverything\tO\tEverything\tO\nis\tO\tis\tO\nOK\tO\tOK\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ninsert\tO\tinsert\tO\nsomething\tO\tsomething\tO\ninto\tO\tinto\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\nafter\tO\tafter\tO\nclosing\tO\tclosing\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\nsee\tO\tsee\tO\nany\tO\tany\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nright\tO\tright\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ntables\tB-Data_Structure\ttables\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nvisual\tB-Application\tvisual\tO\nstudio\tI-Application\tstudio\tO\nserver\tO\tserver\tO\nexplorer\tO\texplorer\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nand\tO\tand\tO\nchoose\tO\tchoose\tO\nshow\tO\tshow\tO\ntable\tB-Data_Structure\ttable\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nreads\tO\treads\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ntable\tB-Data_Structure\ttable\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\ncompletely\tO\tcompletely\tO\n!\tO\t!\tO\n\t\nAnother\tO\tAnother\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nafter\tO\tafter\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\napp\tO\tapp\tO\n,\tO\t,\tO\neven\tO\teven\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\nread\tO\tread\tO\nits\tO\tits\tO\nown\tO\town\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nIts\tO\tIts\tO\na\tO\ta\tO\nC#\tB-Language\tC#\tO\nproject\tO\tproject\tO\nin\tO\tin\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2010\tB-Version\t2010\tO\nSQL\tB-Application\tSQL\tO\nServer\tI-Application\tServer\tO\n2008\tB-Version\t2008\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12028246\tO\t12028246\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12028246/\tO\thttps://stackoverflow.com/questions/12028246/\tO\n\t\n\t\nYour\tO\tYour\tO\ndatabase\tO\tdatabase\tO\nfile\tO\tfile\tO\nhas\tO\thas\tO\n2\tO\t2\tO\ncopies\tO\tcopies\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nis\tO\tis\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nis\tO\tis\tO\nin\tO\tin\tO\nbin\tB-File_Name\tbin\tB-Code_Block\n\\debug\tI-File_Name\t\\debug\tI-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ndesign\tO\tdesign\tO\ntime\tO\ttime\tO\nyou\tO\tyou\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\ntime\tO\ttime\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nbuild\tO\tbuild\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\ndatabase\tO\tdatabase\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\noverwriting\tO\toverwriting\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nbin\tB-File_Name\tbin\tO\n\\debug\tI-File_Name\t\\debug\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nupdating\tO\tupdating\tO\nin\tO\tin\tO\nrun-time\tO\trun-time\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthree\tO\tthree\tO\noptions\tO\toptions\tO\n:\tO\t:\tO\n\t\nUse\tO\tUse\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nbin\tB-File_Name\tbin\tO\n\\debug\tI-File_Name\t\\debug\tO\n.\tO\t.\tO\n\t\nSet\tO\tSet\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\ndatabase\tO\tdatabase\tO\nfile\tO\tfile\tO\ncopy\tO\tcopy\tO\noptions\tO\toptions\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nNever\tO\tNever\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nproperties\tO\tproperties\tO\nwindow\tB-User_Interface_Element\twindow\tO\n)\tO\t)\tO\n,\tO\t,\tO\nshow\tO\tshow\tO\nall\tO\tall\tO\nfiles\tO\tfiles\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nbin\tB-File_Name\tbin\tO\n\\debug\tI-File_Name\t\\debug\tO\ndatabase\tO\tdatabase\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nexplorer\tI-Application\texplorer\tO\n.\tO\t.\tO\n\t\nCaution\tO\tCaution\tO\n:\tO\t:\tO\nIf\tO\tIf\tO\nyou\tO\tyou\tO\naccidently\tO\taccidently\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\nbin\tB-File_Name\tbin\tO\n\\debug\tI-File_Name\t\\debug\tO\nfolder\tO\tfolder\tO\nall\tO\tall\tO\nyour\tO\tyour\tO\nchanges\tO\tchanges\tO\nare\tO\tare\tO\ngone\tO\tgone\tO\n.\tO\t.\tO\n\t\nManually\tO\tManually\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nbin\tB-File_Name\tbin\tO\n\\debug\tI-File_Name\t\\debug\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nfolder\tO\tfolder\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPut\tO\tPut\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nsql\tB-Application\tsql\tO\nserver\tI-Application\tserver\tO\nfolder\tO\tfolder\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ndeploying\tO\tdeploying\tO\n,\tO\t,\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nconnection\tO\tconnection\tO\nstring\tB-Data_Type\tstring\tO\nand\tO\tand\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nfrom\tO\tfrom\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nReplace\tO\tReplace\tO\n\"\tO\t\"\tO\n|DataDirectory|\tB-Library_Variable\t|DataDirectory|\tO\n\"\tO\t\"\tO\nmacro\tO\tmacro\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nabsolute\tO\tabsolute\tO\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\ndatabase\tO\tdatabase\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ndeploying\tO\tdeploying\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nback\tO\tback\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\n|DataDirectory|\tB-Library_Variable\t|DataDirectory|\tO\n\"\tO\t\"\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28966823\tO\t28966823\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28966823/\tO\thttps://stackoverflow.com/questions/28966823/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nfacing\tO\tfacing\tO\nan\tO\tan\tO\nauthentication\tO\tauthentication\tO\nissue\tO\tissue\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\nable\tO\table\tO\nto\tO\tto\tO\nread/write\tO\tread/write\tO\nto\tO\tto\tO\nCloudStorage\tB-Application\tCloudStorage\tO\nfrom\tO\tfrom\tO\nPHP\tB-Language\tPHP\tO\non\tO\ton\tO\nGCE\tB-Application\tGCE\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntested\tO\ttested\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nAPI\tO\tAPI\tO\nbut\tO\tbut\tO\nreceived\tO\treceived\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\nauthentication\tO\tauthentication\tO\nfailed\tO\tfailed\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\nno\tO\tno\tO\nRedirect\tO\tRedirect\tO\nURI\tO\tURI\tO\ngenerated\tO\tgenerated\tO\nin\tO\tin\tO\n\"\tO\t\"\tO\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nGenerated\tO\tGenerated\tO\na\tO\ta\tO\nClient\tO\tClient\tO\nID\tO\tID\tO\n\"\tO\t\"\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1795649\tO\t1795649\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1795649/\tO\thttps://stackoverflow.com/questions/1795649/\tO\n\t\n\t\nMaybe\tO\tMaybe\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nstupid\tO\tstupid\tO\nquestion\tO\tquestion\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbugging\tO\tbugging\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbi-directional\tO\tbi-directional\tO\none\tO\tone\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\nrelationship\tO\trelationship\tO\nof\tO\tof\tO\nEmployee\tB-Class_Name\tEmployee\tO\nto\tO\tto\tO\nVehicles\tB-Class_Name\tVehicles\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\npersist\tO\tpersist\tO\nan\tO\tan\tO\nEmployee\tB-Class_Name\tEmployee\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nassigned\tO\tassigned\tO\nID\tB-Variable_Name\tID\tO\n)\tO\t)\tO\nI\tO\tI\tO\nalso\tO\talso\tO\nwant\tO\twant\tO\nits\tO\tits\tO\nassociated\tO\tassociated\tO\nVehicles\tB-Class_Name\tVehicles\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npersisted\tO\tpersisted\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\nsaved\tO\tsaved\tO\nVehicle\tB-Class_Name\tVehicle\tO\nentity\tO\tentity\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nassociated\tO\tassociated\tO\nEmployee\tB-Class_Name\tEmployee\tO\nmapped\tO\tmapped\tO\nautomatically\tO\tautomatically\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nthe\tO\tthe\tO\nemployee_id\tB-Variable_Name\temployee_id\tO\nforeign\tO\tforeign\tO\nkey\tO\tkey\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nVehicle\tB-Class_Name\tVehicle\tO\ntable\tB-Data_Structure\ttable\tO\nis\tO\tis\tO\nnull\tB-Value\tnull\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nVehicle\tB-Class_Name\tVehicle\tO\n's\tO\t's\tO\nemployee\tO\temployee\tO\npersisted\tO\tpersisted\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nEmployee\tB-Class_Name\tEmployee\tO\nitself\tO\titself\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\npersisted\tO\tpersisted\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nrealise\tO\trealise\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nEmployee\tB-Class_Name\tEmployee\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsaved\tO\tsaved\tO\nfirst\tO\tfirst\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nVehicle\tB-Class_Name\tVehicle\tO\nsaved\tO\tsaved\tO\nafterwards\tO\tafterwards\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nJPA\tB-Library\tJPA\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nautomatically\tO\tautomatically\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_109\tI-Code_Block\tQ_109\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nAs\tO\tAs\tO\nrequested\tO\trequested\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\nmappings\tO\tmappings\tO\n(\tO\t(\tO\nwithout\tO\twithout\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nmethods\tO\tmethods\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_110\tI-Code_Block\tQ_110\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nrealised\tO\trealised\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmethod\tO\tmethod\tO\ndefined\tO\tdefined\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nEmployee\tB-Class_Name\tEmployee\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_111\tI-Code_Block\tQ_111\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nabove\tO\tabove\tO\nwill\tO\twill\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_112\tI-Code_Block\tQ_112\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMuch\tO\tMuch\tO\nsimpler\tO\tsimpler\tO\nand\tO\tand\tO\ncleaner\tO\tcleaner\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\neveryone\tO\teveryone\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1795649\tO\t1795649\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1795649/\tO\thttps://stackoverflow.com/questions/1795649/\tO\n\t\n\t\nOne\tO\tOne\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ncascade\tO\tcascade\tO\noption\tO\toption\tO\non\tO\ton\tO\nyou\tO\tyou\tO\n\"\tO\t\"\tO\nOne\tO\tOne\tO\n\"\tO\t\"\tO\nside\tO\tside\tO\nof\tO\tof\tO\nrelationship\tO\trelationship\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_166\tI-Code_Block\tA_166\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nby\tO\tby\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_167\tI-Code_Block\tA_167\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nit\tO\tit\tO\nwill\tO\twill\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nvehicles\tB-Class_Name\tvehicles\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1795649\tO\t1795649\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1795649/\tO\thttps://stackoverflow.com/questions/1795649/\tO\n\t\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nassociatedEmployee\tO\tassociatedEmployee\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nVehicle\tB-Class_Name\tVehicle\tO\nbefore\tO\tbefore\tO\npersisting\tO\tpersisting\tO\nthe\tO\tthe\tO\nEmployee\tB-Class_Name\tEmployee\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_168\tI-Code_Block\tA_168\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1721791\tO\t1721791\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1721791/\tO\thttps://stackoverflow.com/questions/1721791/\tO\n\t\n\t\nMy\tO\tMy\tO\ntable\tB-Data_Structure\ttable\tO\n(\tO\t(\tO\nprojects\tB-Variable_Name\tprojects\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_94\tI-Code_Block\tQ_94\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nnoticed\tO\tnoticed\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhierarchical\tO\thierarchical\tO\ndata\tO\tdata\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nnested\tO\tnested\tO\nset\tB-Data_Structure\tset\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nTree\tB-Data_Structure\tTree\tO\npretty-printed\tO\tpretty-printed\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_95\tI-Code_Block\tQ_95\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nall\tO\tall\tO\nsub\tO\tsub\tO\nprojects\tO\tprojects\tO\nunder\tO\tunder\tO\nproject\tB-Variable_Name\tproject\tO\n1\tB-Value\t1\tO\nand\tO\tand\tO\n4\tB-Value\t4\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_96\tI-Code_Block\tQ_96\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nslow\tO\tslow\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\ntable\tB-Data_Structure\ttable\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nrunning\tO\trunning\tO\nEXPLAIN\tB-Library_Function\tEXPLAIN\tO\n(\tI-Library_Function\t(\tO\nQuery\tI-Library_Function\tQuery\tO\n)\tI-Library_Function\t)\tO\ni\tO\ti\tO\nget\tO\tget\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_97\tI-Code_Block\tQ_97\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nThe\tO\tThe\tO\nproject\tB-Variable_Name\tproject\tO\ntable\tB-Data_Structure\ttable\tO\nhas\tO\thas\tO\nindexes\tO\tindexes\tO\non\tO\ton\tO\nlft\tB-Variable_Name\tlft\tO\n,\tO\t,\tO\nrgt\tB-Variable_Name\trgt\tO\n,\tO\t,\tO\nand\tO\tand\tO\nlft-rgt\tB-Variable_Name\tlft-rgt\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nmysql\tB-Application\tmysql\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\nindex\tO\tindex\tO\n,\tO\t,\tO\nand\tO\tand\tO\nloops\tO\tloops\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\n7040\tO\t7040\tO\nrecords\tO\trecords\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nselect\tO\tselect\tO\nfor\tO\tfor\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsuper\tO\tsuper\tO\nproject\tB-Variable_Name\tproject\tO\n,\tO\t,\tO\nmysql\tB-Application\tmysql\tO\nmanages\tO\tmanages\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nindexes\tO\tindexes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_98\tI-Code_Block\tQ_98\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEXPLAINs\tB-Library_Function\tEXPLAINs\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_99\tI-Code_Block\tQ_99\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFINALLY\tO\tFINALLY\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nI\tO\tI\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nSELECT\tB-Code_Block\tSELECT\tO\nrows\tB-Data_Structure\trows\tO\nmatching\tO\tmatching\tO\nmultiple\tO\tmultiple\tO\nranges\tO\tranges\tO\n,\tO\t,\tO\nand\tO\tand\tO\nstill\tO\tstill\tO\nbenefit\tO\tbenefit\tO\nfrom\tO\tfrom\tO\nindexes\tO\tindexes\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1721791\tO\t1721791\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1721791/\tO\thttps://stackoverflow.com/questions/1721791/\tO\n\t\n\t\nFrom\tO\tFrom\tO\n7.2.5.1\tO\t7.2.5.1\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nRange\tO\tRange\tO\nAccess\tO\tAccess\tO\nMethod\tO\tMethod\tO\nfor\tO\tfor\tO\nSingle-Part\tO\tSingle-Part\tO\nIndexes\tO\tIndexes\tO\nin\tO\tin\tO\nMySQL\tB-Application\tMySQL\tO\nreference\tO\treference\tO\nmanual\tO\tmanual\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nunion\tB-Code_Block\tunion\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\nselects\tB-Code_Block\tselects\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1721791\tO\t1721791\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1721791/\tO\thttps://stackoverflow.com/questions/1721791/\tO\n\t\n\t\nhave\tO\thave\tO\nyou\tO\tyou\tO\ntried\tO\ttried\tO\na\tO\ta\tO\nunion\tB-Code_Block\tunion\tO\n?\tO\t?\tO\n\t\ntake\tO\ttake\tO\nyour\tO\tyour\tO\nsecond\tO\tsecond\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\n\"\tO\t\"\tO\nunion\tB-Code_Block\tunion\tO\n\"\tO\t\"\tO\nunderneath\tO\tunderneath\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nrepeat\tO\trepeat\tO\nbut\tO\tbut\tO\nmatching\tO\tmatching\tO\nid\tB-Library_Variable\tid\tO\n4\tB-Value\t4\tO\n.\tO\t.\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\nobvious\tO\tobvious\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\n.\tO\t.\tO\n\t\nedit\tO\tedit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_155\tI-Code_Block\tA_155\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19471961\tO\t19471961\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19471961/\tO\thttps://stackoverflow.com/questions/19471961/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\nIPython\tB-Application\tIPython\tO\nto\tO\tto\tO\nautomatically\tO\tautomatically\tO\nload\tO\tload\tO\nSympy\tB-Library\tSympy\tO\nand\tO\tand\tO\nconfigure\tO\tconfigure\tO\nit\tO\tit\tO\n's\tO\t's\tO\noutput\tO\toutput\tO\nmethod\tO\tmethod\tO\non\tO\ton\tO\nstartup\tO\tstartup\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhatever\tO\twhatever\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nsympy\tB-Library\tsympy\tO\nto\tO\tto\tO\ninitialize\tO\tinitialize\tO\nthe\tO\tthe\tO\nlatex/unicode\tB-Language\tlatex/unicode\tO\nstyle\tO\tstyle\tO\noutput\tO\toutput\tO\nprinting\tO\tprinting\tO\n.\tO\t.\tO\n\t\nSteps\tO\tSteps\tO\ntaken\tO\ttaken\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2042\tI-Code_Block\tQ_2042\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nstartup\tO\tstartup\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2043\tI-Code_Block\tQ_2043\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nstart\tO\tstart\tO\nipython\tB-Application\tipython\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndisplay\tO\tdisplay\tO\na\tO\ta\tO\n\"\tO\t\"\tO\npretty-printed\tO\tpretty-printed\tO\n\"\tO\t\"\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2044\tI-Code_Block\tQ_2044\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOutput\tO\tOutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2045\tI-Code_Block\tQ_2045\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSimilar\tO\tSimilar\tO\noutput\tO\toutput\tO\nusing\tO\tusing\tO\nqtconsole/notebook\tB-Application\tqtconsole/notebook\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ninit_printing\tB-Code_Block\tinit_printing\tO\ncommand\tO\tcommand\tO\nagain\tO\tagain\tO\nthe\tO\tthe\tO\npretty\tO\tpretty\tO\nprint\tO\tprint\tO\ndisplay\tO\tdisplay\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nkernel\tB-Application\tkernel\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nAdditionally\tO\tAdditionally\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nstartup\tO\tstartup\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nrun\tO\trun\tO\nproperly\tO\tproperly\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nprint\tB-Code_Block\tprint\tO\nstatements\tO\tstatements\tO\nand\tO\tand\tO\nget\tO\tget\tO\noutput\tO\toutput\tO\n(\tO\t(\tO\nadditionally\tO\tadditionally\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npackages\tO\tpackages\tO\nare\tO\tare\tO\nimported\tO\timported\tO\nand\tO\tand\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\nsympy\tB-Library\tsympy\tO\n0.7.3\tB-Version\t0.7.3\tO\n,\tO\t,\tO\nipython3\tB-Application\tipython3\tO\n1.1\tB-Version\t1.1\tO\n,\tO\t,\tO\nmatplotlib\tB-Library\tmatplotlib\tO\n1.3.1\tB-Version\t1.3.1\tO\n,\tO\t,\tO\nnumpy\tB-Library\tnumpy\tO\n1.7.1\tB-Version\t1.7.1\tO\n,\tO\t,\tO\nscipy\tB-Library\tscipy\tO\n0.12.0\tB-Version\t0.12.0\tO\non\tO\ton\tO\na\tO\ta\tO\n64-bit\tO\t64-bit\tO\nUbuntu\tB-Operating_System\tUbuntu\tO\n13.10\tB-Version\t13.10\tO\ninstall\tO\tinstall\tO\n.\tO\t.\tO\n\t\nIncidentally\tO\tIncidentally\tO\n,\tO\t,\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nplain\tO\tplain\tO\npython3\tB-Application\tpython3\tO\nterminal\tI-Application\tterminal\tO\nwith\tO\twith\tO\nPYTHONSTARTUP\tB-Library_Variable\tPYTHONSTARTUP\tO\nset\tO\tset\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nstartup\tO\tstartup\tO\nscript\tO\tscript\tO\nwill\tO\twill\tO\nproperly\tO\tproperly\tO\npretty\tO\tpretty\tO\nprint\tO\tprint\tO\nSympy\tB-Library\tSympy\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19471961\tO\t19471961\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19471961/\tO\thttps://stackoverflow.com/questions/19471961/\tO\n\t\n\t\nIn\tO\tIn\tO\nresponse\tO\tresponse\tO\nto\tO\tto\tO\nJakob\tB-User_Name\tJakob\tO\n's\tO\t's\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nipython3\tB-Application\tipython3\tO\n1.1.0\tB-Version\t1.1.0\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ninteractive\tO\tinteractive\tO\nsympy\tB-Library\tsympy\tO\nmodule\tO\tmodule\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nsympy\tB-Library\tsympy\tO\n0.7.3\tB-Version\t0.7.3\tO\n'\tO\t'\tO\ns\tO\ts\tO\ninit_printing\tB-Code_Block\tinit_printing\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ntheoretically\tO\ttheoretically\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nexcept\tO\texcept\tO\nI\tO\tI\tO\nget\tO\tget\tO\nnasty\tO\tnasty\tO\nwarning\tO\twarning\tO\noutput\tO\toutput\tO\nat\tO\tat\tO\nstart\tO\tstart\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nalso\tO\talso\tO\nnot\tO\tnot\tO\ntoo\tO\ttoo\tO\nkeen\tO\tkeen\tO\non\tO\ton\tO\neverything\tO\teverything\tO\nin\tO\tin\tO\nsympy\tB-Library\tsympy\tO\nbeing\tO\tbeing\tO\nimported\tO\timported\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nglobal\tB-Data_Type\tglobal\tO\nnamespace\tO\tnamespace\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nthe\tO\tthe\tO\nbundled\tO\tbundled\tO\nsympy\tB-Library\tsympy\tO\nconfig\tO\tconfig\tO\ndoes\tO\tdoes\tO\n(\tO\t(\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\ndefine\tO\tdefine\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nvariables\tO\tvariables\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsuggestion\tO\tsuggestion\tO\ndid\tO\tdid\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nfix\tO\tfix\tO\n:\tO\t:\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\nputting\tO\tputting\tO\nmy\tO\tmy\tO\nstartup\tO\tstartup\tO\ncode\tO\tcode\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\n00-startup.py\tB-File_Name\t00-startup.py\tB-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\nmodified\tO\tmodified\tO\nthe\tO\tthe\tO\nipython_config.py\tB-File_Name\tipython_config.py\tB-Code_Block\nfile\tO\tfile\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nadditional\tO\tadditional\tO\nlines\tO\tlines\tO\nat\tO\tat\tO\nstartup\tO\tstartup\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2589\tI-Code_Block\tA_2589\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nunsure\tO\tunsure\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\neither\tO\teither\tO\nsympy\tB-Library\tsympy\tO\nor\tO\tor\tO\nipython\tB-Application\tipython\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\noption\tO\toption\tO\ncertainly\tO\tcertainly\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9607349\tO\t9607349\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9607349/\tO\thttps://stackoverflow.com/questions/9607349/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nset\tO\tset\tO\nleft\tO\tleft\tO\nmouse\tB-Device\tmouse\tO\nclick\tO\tclick\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\ndoc\tB-File_Type\tdoc\tO\n(\tO\t(\tO\ndocx\tB-File_Type\tdocx\tO\n)\tO\t)\tO\ndocument\tO\tdocument\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ncomputer\tB-Device\tcomputer\tO\n?\tO\t?\tO\n\t\nAt\tO\tAt\tO\nthis\tO\tthis\tO\nmoment\tO\tmoment\tO\nits\tO\tits\tO\nonly\tO\tonly\tO\nopening\tO\topening\tO\ndoc\tB-File_Type\tdoc\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\na\tO\ta\tO\nbrowser\tB-Application\tbrowser\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\n's\tO\t's\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_829\tI-Code_Block\tQ_829\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nabove\tO\tabove\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n-\tO\t-\tO\nstill\tO\tstill\tO\nopening\tO\topening\tO\nthat\tO\tthat\tO\ndoc\tB-File_Type\tdoc\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\na\tO\ta\tO\nbrowser\tB-Application\tbrowser\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nthat\tO\tthat\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ntest.php\tB-File_Name\ttest.php\tO\npage\tO\tpage\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_830\tI-Code_Block\tQ_830\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nload\tO\tload\tO\ntest.php\tB-File_Name\ttest.php\tO\nit\tO\tit\tO\nalways\tO\talways\tO\nasks\tO\tasks\tO\nme\tO\tme\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthat\tO\tthat\tO\nfile\tO\tfile\tO\n..\tO\t..\tO\n.\tO\t.\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nmake\tO\tmake\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nlinks\tO\tlinks\tO\nthat\tO\tthat\tO\nleading\tO\tleading\tO\nto\tO\tto\tO\ndoc||docx\tB-File_Type\tdoc||docx\tO\nfiles\tO\tfiles\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9607349\tO\t9607349\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9607349/\tO\thttps://stackoverflow.com/questions/9607349/\tO\n\t\n\t\nAdd\tO\tAdd\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\n.htaccess\tB-File_Type\t.htaccess\tB-Code_Block\nfile\tO\tfile\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nsites\tO\tsites\tO\ndirectory\tO\tdirectory\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1207\tI-Code_Block\tA_1207\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nforce\tO\tforce\tO\nit\tO\tit\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nregular\tO\tregular\tO\n<a\tB-Code_Block\t<a\tB-Code_Block\nhref=''>\tI-Code_Block\thref=''>\tI-Code_Block\nto\tO\tto\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nJS\tB-Language\tJS\tO\nintervention\tO\tintervention\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24150707\tO\t24150707\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24150707/\tO\thttps://stackoverflow.com/questions/24150707/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nswap\tO\tswap\tO\nmouse-1\tB-Library_Variable\tmouse-1\tO\nand\tO\tand\tO\nmouse-2\tB-Library_Variable\tmouse-2\tO\non\tO\ton\tO\nEmacs\tB-Application\tEmacs\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\n.emacs\tB-File_Type\t.emacs\tO\ncode\tO\tcode\tO\n;\tO\t;\tO\nI\tO\tI\tO\nspent\tO\tspent\tO\none\tO\tone\tO\nhour\tO\thour\tO\nsearching\tO\tsearching\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nexample\tO\texample\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24150707\tO\t24150707\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24150707/\tO\thttps://stackoverflow.com/questions/24150707/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3297\tI-Code_Block\tA_3297\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ntell\tO\ttell\tO\nus\tO\tus\tO\nwhy\tO\twhy\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\ngive\tO\tgive\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nE.g\tO\tE.g\tO\n.\tO\t.\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nmouse-1-click-follows-link\tB-Library_Variable\tmouse-1-click-follows-link\tB-Code_Block\nwhich\tO\twhich\tO\nperforms\tO\tperforms\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\npartial\tO\tpartial\tO\n)\tO\t)\tO\nswap\tO\tswap\tO\n(\tO\t(\tO\nand\tO\tand\tO\nis\tO\tis\tO\nactivated\tO\tactivated\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46385065\tO\t46385065\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46385065/\tO\thttps://stackoverflow.com/questions/46385065/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndownladed\tO\tdownladed\tO\nan\tO\tan\tO\nOBJ\tB-File_Type\tOBJ\tO\nfile\tO\tfile\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\nmeta\tO\tmeta\tO\ninformation\tO\tinformation\tO\nand\tO\tand\tO\nproperties\tO\tproperties\tO\n,\tO\t,\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nan\tO\tan\tO\nIFC\tO\tIFC\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nuploaded\tO\tuploaded\tO\nto\tO\tto\tO\nAutodesk\tB-Application\tAutodesk\tO\nForge\tI-Application\tForge\tO\n.\tO\t.\tO\n\t\nQuestion\tO\tQuestion\tO\nis\tO\tis\tO\n;\tO\t;\tO\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nmap\tO\tmap\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nOBJ\tB-File_Type\tOBJ\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nentries\tO\tentries\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nmeta\tO\tmeta\tO\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\nproperties\tO\tproperties\tO\n'\tO\t'\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20719858\tO\t20719858\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20719858/\tO\thttps://stackoverflow.com/questions/20719858/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nprocedure\tO\tprocedure\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nin\tO\tin\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n(\tO\t(\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\nall\tO\tall\tO\n)\tO\t)\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nview\tO\tview\tO\ncontrollers\tO\tcontrollers\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nit\tO\tit\tO\nin\tO\tin\tO\none\tO\tone\tO\nplace\tO\tplace\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\ncode\tO\tcode\tO\ncleanliness\tO\tcleanliness\tO\nand\tO\tand\tO\nmaintenance\tO\tmaintenance\tO\n)\tO\t)\tO\nand\tO\tand\tO\nutilize\tO\tutilize\tO\nit\tO\tit\tO\nelsewhere\tO\telsewhere\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20719858\tO\t20719858\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20719858/\tO\thttps://stackoverflow.com/questions/20719858/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\nall\tO\tall\tO\nControllers\tO\tControllers\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nrecommend\tO\trecommend\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\ncategory\tO\tcategory\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfunctionality\tO\tfunctionality\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nadding\tO\tadding\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nintro\tO\tintro\tO\nto\tO\tto\tO\ncategories\tO\tcategories\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\nin\tO\tin\tO\nall\tO\tall\tO\nUIViewControllers\tB-Library_Class\tUIViewControllers\tB-Code_Block\n,\tO\t,\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nbase\tO\tbase\tO\nController\tO\tController\tO\nand\tO\tand\tO\nsubclassing\tO\tsubclassing\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nbetter\tO\tbetter\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nother\tO\tother\tO\nmethods\tO\tmethods\tO\nof\tO\tof\tO\nimplementing\tO\timplementing\tO\n(\tO\t(\tO\nPlacing\tO\tPlacing\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\na\tO\ta\tO\nutility\tB-Application\tutility\tO\n/\tO\t/\tO\nAdding\tO\tAdding\tO\nto\tO\tto\tO\n*\tO\t*\tO\n-Prefix.pch\tB-File_Name\t-Prefix.pch\tO\n)\tO\t)\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nideal\tO\tideal\tO\nsolutions\tO\tsolutions\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nthe\tO\tthe\tO\nfunctionality\tO\tfunctionality\tO\nyour\tO\tyour\tO\n're\tO\t're\tO\nadding\tO\tadding\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\napplicable\tO\tapplicable\tO\nto\tO\tto\tO\nUIViewController\tB-Library_Class\tUIViewController\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20719858\tO\t20719858\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20719858/\tO\thttps://stackoverflow.com/questions/20719858/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nways\tO\tways\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\napproach\tO\tapproach\tO\nthis\tO\tthis\tO\n-\tO\t-\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nexactly\tO\texactly\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nmethods\tO\tmethods\tO\nare\tO\tare\tO\ntied\tO\ttied\tO\nwith\tO\twith\tO\nUIViewController\tB-Library_Class\tUIViewController\tB-Code_Block\n's\tO\t's\tO\nlife\tO\tlife\tO\nand\tO\tand\tO\ndata\tO\tdata\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nprobably\tO\tprobably\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsubclass\tO\tsubclass\tO\nUIViewController\tB-Library_Class\tUIViewController\tB-Code_Block\nor\tO\tor\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\nUIViewController\tB-Library_Class\tUIViewController\tB-Code_Block\ncategory\tO\tcategory\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\n:\tO\t:\tO\nSubclassing\tO\tSubclassing\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\ncustom\tO\tcustom\tO\nproperties\tO\tproperties\tO\n,\tO\t,\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\nmethods\tO\tmethods\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nMySubclassedViewController.h\tB-File_Name\tMySubclassedViewController.h\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2765\tI-Code_Block\tA_2765\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMySubclassedViewController.m\tB-File_Name\tMySubclassedViewController.m\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2766\tI-Code_Block\tA_2766\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nB\tO\tB\tO\n:\tO\t:\tO\nCategory\tO\tCategory\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\nextra\tO\textra\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nUIViewController+\tB-Library_Class\tUIViewController+\tO\nSpecialCatrgory.h\tB-File_Name\tSpecialCatrgory.h\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2767\tI-Code_Block\tA_2767\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUIViewController+\tB-Library_Class\tUIViewController+\tO\nSpecialCatrgory.m\tB-File_Name\tSpecialCatrgory.m\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2768\tI-Code_Block\tA_2768\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nC\tO\tC\tO\n:\tO\t:\tO\nDedicated\tO\tDedicated\tO\nhelper\tO\thelper\tO\nclass\tO\tclass\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nhand\tO\thand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nfind\tO\tfind\tO\nyourself\tO\tyourself\tO\nusing\tO\tusing\tO\nsome\tO\tsome\tO\nindependent\tO\tindependent\tO\nmethod\tO\tmethod\tO\non\tO\ton\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\none\tO\tone\tO\nplace\tO\tplace\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\n\t\nwant\tO\twant\tO\nto\tO\tto\tO\nconsider\tO\tconsider\tO\nwriting\tO\twriting\tO\nup\tO\tup\tO\na\tO\ta\tO\nhelper\tO\thelper\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nsingleton\tO\tsingleton\tO\n.\tO\t.\tO\n\t\nMyHelperClass.h\tB-File_Name\tMyHelperClass.h\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2769\tI-Code_Block\tA_2769\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMyHelperClass.m\tB-File_Name\tMyHelperClass.m\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2770\tI-Code_Block\tA_2770\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nsimply\tO\tsimply\tO\nby\tO\tby\tO\nimporting\tO\timporting\tO\nMyHelperClass.h\tB-File_Name\tMyHelperClass.h\tB-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\nputting\tO\tputting\tO\nit\tO\tit\tO\nin\tO\tin\tO\n-Prefix.pch\tB-File_Name\t-Prefix.pch\tB-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nexplicitly\tO\texplicitly\tO\ncreating\tO\tcreating\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2771\tI-Code_Block\tA_2771\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26080263\tO\t26080263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26080263/\tO\thttps://stackoverflow.com/questions/26080263/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nqueue\tB-Data_Structure\tqueue\tO\n,\tO\t,\tO\ndequeueing\tO\tdequeueing\tO\nand\tO\tand\tO\nrequeueing\tO\trequeueing\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nchannel\tO\tchannel\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\nquestions\tO\tquestions\tO\n:\tO\t:\tO\n\t\nwhy\tO\twhy\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nobtain\tO\tobtain\tO\na\tO\ta\tO\ndeadlock\tO\tdeadlock\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nexpecting\tO\texpecting\tO\nan\tO\tan\tO\ninfinite\tO\tinfinite\tO\nloop\tO\tloop\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nam\tO\tam\tO\nrequeueing\tO\trequeueing\tO\neven\tO\teven\tO\nelements\tO\telements\tO\nwhich\tO\twhich\tO\ngenerate\tO\tgenerate\tO\nmore\tO\tmore\tO\nelements\tO\telements\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nShould\tO\tShould\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\nrange\tB-Code_Block\trange\tB-Code_Block\nqueue\tI-Code_Block\tqueue\tI-Code_Block\nalways\tO\talways\tO\nlistening\tO\tlistening\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nchannel\tO\tchannel\tO\n?\tO\t?\tO\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprint\tO\tprint\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\ndeadloks\tO\tdeadloks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2983\tI-Code_Block\tQ_2983\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAre\tO\tAre\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\ngoroutines\tO\tgoroutines\tO\ndequeueing\tO\tdequeueing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nelement\tO\telement\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\ndata\tO\tdata\tO\nrace\tO\trace\tO\n;\tO\t;\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nrange\tB-Code_Block\trange\tB-Code_Block\nwould\tO\twould\tO\npick\tO\tpick\tO\none\tO\tone\tO\nper\tO\tper\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nin\tO\tin\tO\nPlayground\tB-Application\tPlayground\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2984\tI-Code_Block\tQ_2984\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26080263\tO\t26080263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26080263/\tO\thttps://stackoverflow.com/questions/26080263/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWhen\tO\tWhen\tO\na\tO\ta\tO\nrange\tO\trange\tO\nloop\tO\tloop\tO\nover\tO\tover\tO\na\tO\ta\tO\nchannel\tO\tchannel\tO\nreaches\tO\treaches\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchannel\tO\tchannel\tO\n's\tO\t's\tO\nbuffer\tB-Data_Structure\tbuffer\tO\n(\tO\t(\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nchannel\tO\tchannel\tO\nhas\tO\thas\tO\none\tO\tone\tO\n)\tO\t)\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nblock\tO\tblock\tO\n,\tO\t,\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\nelements\tO\telements\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsent\tO\tsent\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nchannel\tO\tchannel\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nother\tO\tother\tO\nrunning\tO\trunning\tO\nor\tO\tor\tO\nrunnable\tO\trunnable\tO\ngoroutines\tO\tgoroutines\tO\nthen\tO\tthen\tO\nwe\tO\twe\tO\n've\tO\t've\tO\nreached\tO\treached\tO\na\tO\ta\tO\ndeadlock\tO\tdeadlock\tO\n.\tO\t.\tO\n\t\nMinimal\tO\tMinimal\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nhttp://play.golang.org/p/Vb4-RFEmm3\tO\thttp://play.golang.org/p/Vb4-RFEmm3\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3590\tI-Code_Block\tA_3590\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nNo\tO\tNo\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nhappening\tO\thappening\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n(\tO\t(\tO\n26\tO\t26\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3591\tI-Code_Block\tA_3591\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ninstructs\tO\tinstructs\tO\nGo\tB-Language\tGo\tO\n's\tO\t's\tO\nruntime\tO\truntime\tO\nto\tO\tto\tO\nschedule\tO\tschedule\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ngoroutine\tO\tgoroutine\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nnecessarily\tO\tnecessarily\tO\nexecute\tO\texecute\tO\nimmediately\tO\timmediately\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\ngoroutine\tO\tgoroutine\tO\neffectively\tO\teffectively\tO\nruns\tO\truns\tO\n,\tO\t,\tO\nnew\tB-Variable_Name\tnew\tB-Code_Block\n's\tO\t's\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\n1001\tB-Value\t1001\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\n1000\tB-Value\t1000\tO\nas\tO\tas\tO\nprinted\tO\tprinted\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26080263\tO\t26080263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26080263/\tO\thttps://stackoverflow.com/questions/26080263/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nscope\tO\tscope\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nhappens\tO\thappens\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nwhen\tO\twhen\tO\ngetting\tO\tgetting\tO\nstarted\tO\tstarted\tO\nwith\tO\twith\tO\ngo\tB-Code_Block\tgo\tB-Code_Block\nfunc()\tI-Code_Block\tfunc()\tI-Code_Block\n{\tB-Code_Block\t{\tB-Code_Block\n...\tI-Code_Block\t...\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\n;\tO\t;\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\ncommon\tO\tcommon\tO\nthan\tO\tthan\tO\nreal\tO\treal\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nconcurrency\tO\tconcurrency\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nsections\tO\tsections\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFAQ\tO\tFAQ\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nGo\tB-Language\tGo\tO\nwiki\tO\twiki\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nanonymous\tO\tanonymous\tO\nfunc\tB-Code_Block\tfunc\tB-Code_Block\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\ngets\tO\tgets\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nouter\tO\touter\tO\nscope\tO\tscope\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nfunc\tB-Code_Block\tfunc\tB-Code_Block\nstatement\tO\tstatement\tO\nruns\tO\truns\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthat\tO\tthat\tO\nloop\tO\tloop\tO\nvariable\tO\tvariable\tO\nis\tO\tis\tO\nupdated\tO\tupdated\tO\neach\tO\teach\tO\npass\tO\tpass\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nchanges\tO\tchanges\tO\nbetween\tO\tbetween\tO\nyour\tO\tyour\tO\ngo\tB-Code_Block\tgo\tB-Code_Block\nstatement\tO\tstatement\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ngoroutine\tO\tgoroutine\tO\nactually\tO\tactually\tO\nruns\tO\truns\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nwork\tO\twork\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\ndeclaring\tO\tdeclaring\tO\nanother\tO\tanother\tO\nvariable\tO\tvariable\tO\nduring\tO\tduring\tO\neach\tO\teach\tO\niteration\tO\titeration\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n,\tO\t,\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nfor\tB-Code_Block\tfor\tB-Code_Block\nbraces\tO\tbraces\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nloop\tO\tloop\tO\nwas\tO\twas\tO\nfor\tB-Code_Block\tfor\tB-Code_Block\ni\tI-Code_Block\ti\tI-Code_Block\n:=\tI-Code_Block\t:=\tI-Code_Block\nrange\tI-Code_Block\trange\tI-Code_Block\narr\tI-Code_Block\tarr\tI-Code_Block\n{\tB-Code_Block\t{\tB-Code_Block\n...\tI-Code_Block\t...\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\nyou\tO\tyou\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nadd\tO\tadd\tO\ni\tB-Code_Block\ti\tB-Code_Block\n:=\tI-Code_Block\t:=\tI-Code_Block\ni\tI-Code_Block\ti\tI-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nbad\tO\tbad\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3587\tI-Code_Block\tA_3587\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nalways\tO\talways\tO\n...\tO\t...\tO\nprints\tO\tprints\tO\n9\tB-Value\t9\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nfixed\tO\tfixed\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\nredeclaring\tO\tredeclaring\tO\ni\tB-Variable_Name\ti\tB-Code_Block\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3588\tI-Code_Block\tA_3588\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nprints\tO\tprints\tO\n..\tO\t..\tO\n0-9\tB-Value\t0-9\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\ndifferent\tO\tdifferent\tO\n,\tO\t,\tO\narguably\tO\targuably\tO\nmore\tO\tmore\tO\nelegant\tO\telegant\tO\nway\tO\tway\tO\nto\tO\tto\tO\nredeclare\tO\tredeclare\tO\ni\tB-Variable_Name\ti\tB-Code_Block\nis\tO\tis\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\na\tO\ta\tO\nparam\tO\tparam\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nanonymous\tO\tanonymous\tO\nfunc\tB-Code_Block\tfunc\tB-Code_Block\n;\tO\t;\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nweird-looking\tO\tweird-looking\tO\nstandalone\tO\tstandalone\tO\nstatement\tO\tstatement\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3589\tI-Code_Block\tA_3589\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nPlayground\tB-Application\tPlayground\tO\nversions\tO\tversions\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsynchronization\tO\tsynchronization\tO\nso\tO\tso\tO\nmain\tB-Function_Name\tmain\tB-Code_Block\nwould\tO\twould\tO\nn't\tO\tn't\tO\nexit\tO\texit\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\ngoroutines\tO\tgoroutines\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nconfusing\tO\tconfusing\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ndeclaration\tO\tdeclaration\tO\nthat\tO\tthat\tO\n\"\tO\t\"\tO\nruns\tO\truns\tO\n\"\tO\t\"\tO\nonce\tO\tonce\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nbehaves\tO\tbehaves\tO\ndifferently\tO\tdifferently\tO\n(\tO\t(\tO\nweird\tO\tweird\tO\nway\tO\tway\tO\nfor\tO\tfor\tO\nscope\tO\tscope\tO\nto\tO\tto\tO\nmanifest\tO\tmanifest\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\naround\tO\taround\tO\nit\tO\tit\tO\nis\tO\tis\tO\nstraightforward\tO\tstraightforward\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n:\tO\t:\tO\nqueue\tB-Code_Block\tqueue\tB-Code_Block\n<\tI-Code_Block\t<\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\nnew\tI-Code_Block\tnew\tI-Code_Block\ncan\tO\tcan\tO\nrun\tO\trun\tO\nat\tO\tat\tO\nany\tO\tany\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nturns\tO\tturns\tO\nout\tO\tout\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ngone\tO\tgone\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nfor\tB-Code_Block\tfor\tB-Code_Block\n_\tI-Code_Block\t_\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nnew\tI-Code_Block\tnew\tI-Code_Block\nloop\tO\tloop\tO\nentirely\tO\tentirely\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\nwhatever\tO\twhatever\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nnew\tB-Variable_Name\tnew\tB-Code_Block\nis\tO\tis\tO\nas\tO\tas\tO\nof\tO\tof\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nactually\tO\tactually\tO\nruns\tO\truns\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nas\tO\tas\tO\nof\tO\tof\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ngo\tB-Language\tgo\tO\nstatement\tO\tstatement\tO\nwas\tO\twas\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\ngoroutines\tO\tgoroutines\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n1001\tB-Value\t1001\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nso\tO\tso\tO\nsecond\tO\tsecond\tO\ntime\tO\ttime\tO\nthrough\tO\tthrough\tO\nboth\tO\tboth\tO\nvalues\tO\tvalues\tO\npassed\tO\tpassed\tO\ninto\tO\tinto\tO\nenqueue\tB-Function_Name\tenqueue\tO\nare\tO\tare\tO\nodd\tO\todd\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nas\tO\tas\tO\ntwo\tO\ttwo\tO\nusing\tB-Output_Block\tusing\tB-Code_Block\n1001s\tI-Output_Block\t1001s\tI-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\noutput\tO\toutput\tO\n)\tO\t)\tO\nso\tO\tso\tO\nnothing\tO\tnothing\tO\nwrites\tO\twrites\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nqueue\tB-Data_Structure\tqueue\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nnothing\tO\tnothing\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nrange\tB-Code_Block\trange\tB-Code_Block\nqueue\tI-Code_Block\tqueue\tI-Code_Block\nloop\tO\tloop\tO\nto\tO\tto\tO\nconsume\tO\tconsume\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nchannel\tO\tchannel\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nclosed\tO\tclosed\tO\neither\tO\teither\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nmain\tB-Function_Name\tmain\tB-Code_Block\nca\tO\tca\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\nend\tO\tend\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\na\tO\ta\tO\ndeadlock\tO\tdeadlock\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwant\tO\twant\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n\"\tO\t\"\tO\ncaptured\tO\tcaptured\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nexecution\tO\texecution\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ngoroutine\tO\tgoroutine\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nnew\tB-Code_Block\tnew\tB-Code_Block\n:=\tI-Code_Block\t:=\tI-Code_Block\nnew\tI-Code_Block\tnew\tI-Code_Block\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\nas\tO\tas\tO\nfunny\tO\tfunny\tO\nas\tO\tas\tO\nthat\tO\tthat\tO\nlooks\tO\tlooks\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\neach\tO\teach\tO\niteration\tO\titeration\tO\na\tO\ta\tO\n\"\tO\t\"\tO\ndifferent\tO\tdifferent\tO\nvar\tB-Data_Type\tvar\tB-Code_Block\n\"\tO\t\"\tO\nfrom\tO\tfrom\tO\nGo\tB-Language\tGo\tO\n's\tO\t's\tO\nperspective\tO\tperspective\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\n1000\tB-Value\t1000\tB-Code_Block\nand\tO\tand\tO\n1001\tB-Value\t1001\tB-Code_Block\ninserted\tO\tinserted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nchannel\tO\tchannel\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nactually\tO\tactually\tO\ngot\tO\tgot\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nPlayground\tB-Application\tPlayground\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nactually\tO\tactually\tO\nrun\tO\trun\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nsuccessfully\tO\tsuccessfully\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nloops\tO\tloops\tO\nforever\tO\tforever\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\na\tO\ta\tO\nzillion\tO\tzillion\tO\ngoroutines\tO\tgoroutines\tO\nrunning\tO\trunning\tO\nand\tO\tand\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\nthe\tO\tthe\tO\nPlayground\tB-Application\tPlayground\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n(\tO\t(\tO\noverusing\tO\toverusing\tO\nresources\tO\tresources\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nlimit\tO\tlimit\tO\nof\tO\tof\tO\n100\tO\t100\tO\nelements\tO\telements\tO\ndequeued\tO\tdequeued\tO\nbefore\tO\tbefore\tO\nquitting\tO\tquitting\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nhttp://play.golang.org/p/bBM3uTnvxi\tO\thttp://play.golang.org/p/bBM3uTnvxi\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nalso\tO\talso\tO\nnotice\tO\tnotice\tO\nthe\tO\tthe\tO\nnumbers\tO\tnumbers\tO\nit\tO\tit\tO\noutputs\tO\toutputs\tO\nget\tO\tget\tO\nweird\tO\tweird\tO\nbecause\tO\tbecause\tO\nmultiplying\tO\tmultiplying\tO\nby\tO\tby\tO\n100\tB-Value\t100\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nwill\tO\twill\tO\neventually\tO\teventually\tO\noverflow\tO\toverflow\tO\nthe\tO\tthe\tO\nmachine\tO\tmachine\tO\n's\tO\t's\tO\nint\tB-Data_Type\tint\tO\ntype\tO\ttype\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\njust\tO\tjust\tO\nhow\tO\thow\tO\nit\tO\tit\tO\ngoes\tO\tgoes\tO\nwriting\tO\twriting\tO\nprograms\tO\tprograms\tO\nin\tO\tin\tO\nlowish-level\tO\tlowish-level\tO\nlanguages\tO\tlanguages\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nminor\tO\tminor\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nname\tO\tname\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nnew\tB-Variable_Name\tnew\tB-Code_Block\nbecause\tO\tbecause\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nalso\tO\talso\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\na\tO\ta\tO\nbuilt-in\tO\tbuilt-in\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nlegal\tO\tlegal\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nconfusing\tO\tconfusing\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nreflexive\tO\treflexive\tO\nto\tO\tto\tO\nname\tO\tname\tO\na\tO\ta\tO\nlength\tO\tlength\tO\nvariable\tO\tvariable\tO\nlen\tB-Variable_Name\tlen\tB-Code_Block\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nif\tO\tif\tO\nnothing\tO\tnothing\tO\nwas\tO\twas\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlanguage\tO\tlanguage\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ncoming\tO\tcoming\tO\nfrom\tO\tfrom\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36992422\tO\t36992422\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36992422/\tO\thttps://stackoverflow.com/questions/36992422/\tO\n\t\n\t\nI\tO\tI\tO\nwish\tO\twish\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nask\tO\task\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nin\tO\tin\tO\ncontext\tO\tcontext\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nenough\tO\tenough\tO\nrep\tO\trep\tO\nto\tO\tto\tO\ncomment\tO\tcomment\tO\nand\tO\tand\tO\nask\tO\task\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nnew\tO\tnew\tO\npost\tO\tpost\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\ncomment\tO\tcomment\tO\n:\tO\t:\tO\n\t\nhttps://stackoverflow.com/a/21034111/432509\tO\thttps://stackoverflow.com/a/21034111/432509\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nPython\tB-Language\tPython\tO\nin\tO\tin\tO\nHoudini\tB-Library\tHoudini\tO\nat\tO\tat\tO\nschool\tO\tschool\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nam\tO\tam\tO\nlimited\tO\tlimited\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nlibraries\tO\tlibraries\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nutilize\tO\tutilize\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\ninstalled\tO\tinstalled\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\npure\tO\tpure\tO\npython\tB-Language\tpython\tO\nimplementation\tO\timplementation\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nsome\tO\tsome\tO\ndata\tO\tdata\tO\nout\tO\tout\tO\nas\tO\tas\tO\na\tO\ta\tO\nPNG\tB-File_Type\tPNG\tO\nmap\tO\tmap\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4574\tI-Code_Block\tQ_4574\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nUnfortunately\tO\tUnfortunately\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nfamiliar\tO\tfamiliar\tO\nwith\tO\twith\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nsyntax\tO\tsyntax\tO\nand\tO\tand\tO\nas\tO\tas\tO\nsuch\tO\tsuch\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nrepair\tO\trepair\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmyself\tO\tmyself\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nclues\tO\tclues\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19776462\tO\t19776462\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19776462/\tO\thttps://stackoverflow.com/questions/19776462/\tO\n\t\n\t\nHow\tO\tHow\tO\ndoes\tO\tdoes\tO\none\tO\tone\tO\ninject\tO\tinject\tO\nstate\tO\tstate\tO\ninto\tO\tinto\tO\nring\tB-Library\tring\tO\nhandlers\tO\thandlers\tO\nmost\tO\tmost\tO\nconveniently\tO\tconveniently\tO\n(\tO\t(\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nglobal\tB-Data_Type\tglobal\tO\nvars\tO\tvars\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2071\tI-Code_Block\tQ_2071\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe-state\tB-Variable_Name\tthe-state\tB-Code_Block\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ncompojure\tB-Library\tcompojure\tO\nhandler\tO\thandler\tO\nfor\tO\tfor\tO\nmain-routes\tB-Function_Name\tmain-routes\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nstate\tO\tstate\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nmap\tB-Data_Structure\tmap\tO\ncreated\tO\tcreated\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2072\tI-Code_Block\tQ_2072\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\na\tO\ta\tO\nnon\tO\tnon\tO\nring\tB-Library\tring\tO\napplication\tO\tapplication\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nin\tO\tin\tO\na\tO\ta\tO\nmain\tB-Function_Name\tmain\tO\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nstart\tO\tstart\tO\ninjecting\tO\tinjecting\tO\nit\tO\tit\tO\n,\tO\t,\tO\nor\tO\tor\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nit\tO\tit\tO\n,\tO\t,\tO\nas\tO\tas\tO\nfunction\tO\tfunction\tO\nparameters\tO\tparameters\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndifferent\tO\tdifferent\tO\ncomponents\tO\tcomponents\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\nring\tB-Library\tring\tO\n's\tO\t's\tO\n:init\tB-Library_Function\t:init\tB-Code_Block\nfunction\tO\tfunction\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nglobal\tB-Data_Type\tglobal\tO\nvar\tO\tvar\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19776462\tO\t19776462\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19776462/\tO\thttps://stackoverflow.com/questions/19776462/\tO\n\t\n\t\nThe\tO\tThe\tO\n\"\tO\t\"\tO\ncorrect\tO\tcorrect\tO\n\"\tO\t\"\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndynamically\tO\tdynamically\tO\nbound\tO\tbound\tO\nvar\tO\tvar\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ndefine\tO\tdefine\tO\na\tO\ta\tO\nvar\tO\tvar\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2623\tI-Code_Block\tA_2623\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\nsome\tO\tsome\tO\nring\tB-Library\tring\tO\nmiddleware\tO\tmiddleware\tO\nwhich\tO\twhich\tO\nbinds\tO\tbinds\tO\nthe\tO\tthe\tO\nvar\tO\tvar\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nhandler\tO\thandler\tO\ncall\tO\tcall\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2624\tI-Code_Block\tA_2624\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\ninject\tO\tinject\tO\ndependencies\tO\tdependencies\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\n'\tO\t'\tO\nmain\tB-Function_Name\tmain\tO\n'\tO\t'\tO\nfunction\tO\tfunction\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nlaunch\tO\tlaunch\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2625\tI-Code_Block\tA_2625\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19776462\tO\t19776462\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19776462/\tO\thttps://stackoverflow.com/questions/19776462/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nseen\tO\tseen\tO\nthis\tO\tthis\tO\ndone\tO\tdone\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nways\tO\tways\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nmiddleware\tO\tmiddleware\tO\nthat\tO\tthat\tO\ninjects\tO\tinjects\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nas\tO\tas\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nkey\tO\tkey\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nmap\tB-Data_Structure\tmap\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2621\tI-Code_Block\tA_2621\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\ndefroutes\tB-Code_Block\tdefroutes\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nbehind\tO\tbehind\tO\nthe\tO\tthe\tO\nscenes\tO\tscenes\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nhandler\tO\thandler\tO\nand\tO\tand\tO\nassign\tO\tassign\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nvar\tO\tvar\tO\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\naccept\tO\taccept\tO\nsome\tO\tsome\tO\nstate\tO\tstate\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nroutes\tB-Function_Name\troutes\tO\n,\tO\t,\tO\ninjecting\tO\tinjecting\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nas\tO\tas\tO\nparameters\tO\tparameters\tO\nto\tO\tto\tO\nfunction\tO\tfunction\tO\ncalls\tO\tcalls\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nroute\tB-Function_Name\troute\tO\ndefinitions\tO\tdefinitions\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2622\tI-Code_Block\tA_2622\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGiven\tO\tGiven\tO\na\tO\ta\tO\nchoice\tO\tchoice\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nprobably\tO\tprobably\tO\ngo\tO\tgo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25566739\tO\t25566739\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25566739/\tO\thttps://stackoverflow.com/questions/25566739/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nNSTableview\tB-Library_Class\tNSTableview\tO\nwhich\tO\twhich\tO\nshows\tO\tshows\tO\n50\tO\t50\tO\nrows\tB-User_Interface_Element\trows\tO\ncurrently\tO\tcurrently\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nfixed\tO\tfixed\tO\nstatic\tB-Data_Type\tstatic\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nfeature\tO\tfeature\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nmore\tO\tmore\tO\n50\tO\t50\tO\nrows\tB-User_Interface_Element\trows\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntable\tB-User_Interface_Element\ttable\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nreach\tO\treach\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nrow\tB-User_Interface_Element\trow\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nNSTableView\tB-Library_Class\tNSTableView\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmean\tO\tmean\tO\ncurrently\tO\tcurrently\tO\nI\tO\tI\tO\nam\tO\tam\tO\nshowing\tO\tshowing\tO\nfixed\tO\tfixed\tO\n50\tO\t50\tO\nrows\tB-User_Interface_Element\trows\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n50\tO\t50\tO\nmore\tO\tmore\tO\nrows\tB-User_Interface_Element\trows\tO\nwhenever\tO\twhenever\tO\nuser\tO\tuser\tO\nreaches\tO\treaches\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nrow\tB-User_Interface_Element\trow\tO\nof\tO\tof\tO\nprevious\tO\tprevious\tO\nNsTableview\tB-Library_Class\tNsTableview\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\nor\tO\tor\tO\nany\tO\tany\tO\nsample\tO\tsample\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nmy\tO\tmy\tO\nmotive\tO\tmotive\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\nis\tO\tis\tO\n(\tO\t(\tO\nThis\tO\tThis\tO\ncode\tO\tcode\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nrow\tB-User_Interface_Element\trow\tO\nselected\tO\tselected\tO\n(\tO\t(\tO\nDown\tB-Keyboard_IP\tDown\tO\nkey\tI-Keyboard_IP\tkey\tO\npressed\tO\tpressed\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nload\tO\tload\tO\nnew\tO\tnew\tO\nrows\tB-User_Interface_Element\trows\tO\n)\tO\t)\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2906\tI-Code_Block\tQ_2906\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43318137\tO\t43318137\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43318137/\tO\thttps://stackoverflow.com/questions/43318137/\tO\n\t\n\t\nTrying\tO\tTrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nfeatures\tO\tfeatures\tO\nfrom\tO\tfrom\tO\nOpenMP\tB-Library\tOpenMP\tO\n3\tB-Version\t3\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5539\tI-Code_Block\tQ_5539\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2017\tB-Version\t2017\tO\n;\tO\t;\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nerror\tB-Error_Name\terror\tB-Code_Block\nc3005\tI-Error_Name\tc3005\tI-Code_Block\n:\tO\t:\tI-Code_Block\n'\tB-Output_Block\t'\tI-Code_Block\ncollapse\tI-Output_Block\tcollapse\tI-Code_Block\n'\tB-Output_Block\t'\tB-Code_Block\nunexpected\tI-Output_Block\tunexpected\tI-Code_Block\ntoken\tI-Output_Block\ttoken\tI-Code_Block\nencountered\tI-Output_Block\tencountered\tI-Code_Block\non\tI-Output_Block\ton\tI-Code_Block\nopenmp\tI-Output_Block\topenmp\tI-Code_Block\n'\tI-Output_Block\t'\tI-Code_Block\nparallel\tI-Output_Block\tparallel\tI-Code_Block\nfor\tI-Output_Block\tfor\tI-Code_Block\n'\tB-Output_Block\t'\tB-Code_Block\ndirective\tI-Output_Block\tdirective\tI-Code_Block\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2017\tB-Version\t2017\tO\nonly\tO\tonly\tO\nsupports\tO\tsupports\tO\nOpenMP2\tB-Library\tOpenMP2\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\na\tO\ta\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nOpenMP4.5\tB-Library\tOpenMP4.5\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nsaid\tO\tsaid\tO\nfrom\tO\tfrom\tO\nVS\tB-Application\tVS\tO\nteam\tO\tteam\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnother\tO\tAnother\tO\nanswer\tO\tanswer\tO\nsaid\tO\tsaid\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nclang-cl\tB-Application\tclang-cl\tO\nwith\tO\twith\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2017\tB-Version\t2017\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfallback\tO\tfallback\tO\noption\tO\toption\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43318137\tO\t43318137\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43318137/\tO\thttps://stackoverflow.com/questions/43318137/\tO\n\t\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nobtain\tO\tobtain\tO\nclang-cl\tB-Application\tclang-cl\tO\nfrom\tO\tfrom\tO\nhttp://llvm.org/builds/\tO\thttp://llvm.org/builds/\tO\n\t\nBut\tO\tBut\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\nintegration\tO\tintegration\tO\nissues\tO\tissues\tO\nstarting\tO\tstarting\tO\nwith\tO\twith\tO\nVS2017\tB-Application\tVS2017\tO\n:\tO\t:\tO\n\t\nhttps://bugs.llvm.org/show_bug.cgi?id=33672\tO\thttps://bugs.llvm.org/show_bug.cgi?id=33672\tO\n\t\nhttps://www.reddit.com/r/cpp/comments/6oepq4/making_windows_clang_401_play_nice_with_visual/\tO\thttps://www.reddit.com/r/cpp/comments/6oepq4/making_windows_clang_401_play_nice_with_visual/\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nattempt\tO\tattempt\tO\nat\tO\tat\tO\nsolving\tO\tsolving\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nhttps://github.com/WubbaLubba/LlvmForVS2017\tO\thttps://github.com/WubbaLubba/LlvmForVS2017\tO\n\t\n/fallback\tB-Code_Block\t/fallback\tO\nis\tO\tis\tO\na\tO\ta\tO\nclang-cl\tB-Application\tclang-cl\tO\noption\tO\toption\tO\nwhich\tO\twhich\tO\nmakes\tO\tmakes\tO\nit\tO\tit\tO\nfall\tO\tfall\tO\nback\tO\tback\tO\nto\tO\tto\tO\nMicrosoft\tB-Organization\tMicrosoft\tO\n's\tO\t's\tO\ncompiler\tB-Application\tcompiler\tO\nif\tO\tif\tO\nit\tO\tit\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ncompile\tO\tcompile\tO\nsomething\tO\tsomething\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nkeep\tO\tkeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n/MP\tB-Code_Block\t/MP\tO\nhack\tO\thack\tO\n:\tO\t:\tO\nhttp://clang-developers.42468.n3.nabble.com/clang-windows-clang-cl-support-for-MP-tp4045651p4045659.html\tO\thttp://clang-developers.42468.n3.nabble.com/clang-windows-clang-cl-support-for-MP-tp4045651p4045659.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27926052\tO\t27926052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27926052/\tO\thttps://stackoverflow.com/questions/27926052/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nimplemented\tO\timplemented\tO\nthe\tO\tthe\tO\nIQKeyboardManager\tB-Library\tIQKeyboardManager\tO\nframework\tO\tframework\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nkeyboard\tB-Device\tkeyboard\tO\nhandle\tO\thandle\tO\neasier\tO\teasier\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nvery\tO\tvery\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nfor\tO\tfor\tO\none\tO\tone\tO\nthing\tO\tthing\tO\n:\tO\t:\tO\n\t\nThere\tO\tThere\tO\n're\tO\t're\tO\nsome\tO\tsome\tO\nUItextField\tB-Library_Class\tUItextField\tB-Code_Block\ncontrols\tO\tcontrols\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nwhich\tO\twhich\tO\nopen\tO\topen\tO\na\tO\ta\tO\nUIDatePicker\tB-Library_Class\tUIDatePicker\tB-Code_Block\nin\tO\tin\tO\nplace\tO\tplace\tO\nof\tO\tof\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\nkeyboard\tB-Device\tkeyboard\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nnumber\tO\tnumber\tO\npad\tB-User_Interface_Element\tpad\tO\n,\tO\t,\tO\ndecimal\tO\tdecimal\tO\npad\tB-User_Interface_Element\tpad\tO\n,\tO\t,\tO\nASCII\tO\tASCII\tO\ncapable\tO\tcapable\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ngraphical\tO\tgraphical\tO\nresult\tO\tresult\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3250\tI-Code_Block\tQ_3250\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\naction\tO\taction\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nOK\tO\tOK\tO\n\"\tO\t\"\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\nthe\tO\tthe\tO\nfield\tO\tfield\tO\n\"\tB-Value\t\"\tO\nDate\tI-Value\tDate\tO\nde\tI-Value\tde\tO\nnaissance\tI-Value\tnaissance\tO\n\"\tI-Value\t\"\tO\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nones\tO\tones\tO\nwho\tO\twho\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nI\tO\tI\tO\nsolved\tO\tsolved\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nin\tO\tin\tO\nmy\tO\tmy\tO\n.h\tB-File_Type\t.h\tO\n,\tO\t,\tO\nI\tO\tI\tO\nimported\tO\timported\tO\nIQDropDownTextField.h\tB-File_Name\tIQDropDownTextField.h\tB-Code_Block\n:\tO\t:\tO\n\t\n#import\tB-Code_Block\t#import\tB-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nIQDropDownTextField.h\tI-Code_Block\tIQDropDownTextField.h\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\n.h\tB-File_Type\t.h\tO\n,\tO\t,\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nUITextField\tB-Library_Class\tUITextField\tB-Code_Block\nto\tO\tto\tO\nIQDropDownTextField\tB-Library_Class\tIQDropDownTextField\tB-Code_Block\n:\tO\t:\tO\n\t\n@property\tB-Code_Block\t@property\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nweak\tI-Code_Block\tweak\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nnonatomic\tI-Code_Block\tnonatomic\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nIBOutlet\tB-Code_Block\tIBOutlet\tB-Code_Block\nIQDropDownTextField\tI-Code_Block\tIQDropDownTextField\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\nmyTextField\tI-Code_Block\tmyTextField\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nselect\tO\tselect\tO\nyour\tO\tyour\tO\nfield\tO\tfield\tO\nin\tO\tin\tO\nInterface\tB-Application\tInterface\tO\nBuilder\tI-Application\tBuilder\tO\nor\tO\tor\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\n.xib\tB-File_Type\t.xib\tO\n,\tO\t,\tO\nand\tO\tand\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nIdentity\tB-Application\tIdentity\tO\nInspector\tI-Application\tInspector\tO\n:\tO\t:\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\nfield\tO\tfield\tO\n's\tO\t's\tO\nclass\tO\tclass\tO\nto\tO\tto\tO\nIQDropDownTextField\tB-Library_Class\tIQDropDownTextField\tB-Code_Block\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nMohd\tB-User_Name\tMohd\tO\nIftekhar\tI-User_Name\tIftekhar\tO\nQurashi\tI-User_Name\tQurashi\tO\ncomment\tO\tcomment\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nnext\tO\tnext\tO\npoints\tO\tpoints\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\navoided\tO\tavoided\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3251\tI-Code_Block\tQ_3251\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\n.m\tB-File_Type\t.m\tO\n,\tO\t,\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\nsetCustomDoneTarget:action\tB-Function_Name\tsetCustomDoneTarget:action\tB-Code_Block\n:\tI-Function_Name\t:\tI-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3252\tI-Code_Block\tQ_3252\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\n.m\tB-File_Type\t.m\tO\n,\tO\t,\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\ndoneAction\tB-Function_Name\tdoneAction\tB-Code_Block\n:\tI-Function_Name\t:\tI-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3253\tI-Code_Block\tQ_3253\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27926052\tO\t27926052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27926052/\tO\thttps://stackoverflow.com/questions/27926052/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nnow\tO\tnow\tO\nadd\tO\tadd\tO\ncustomised\tO\tcustomised\tO\nselector\tO\tselector\tO\n(\tO\t(\tO\nplease\tO\tplease\tO\nrefer\tO\trefer\tO\n'\tO\t'\tB-Code_Block\nIQUIView+\tB-Library_Class\tIQUIView+\tI-Code_Block\nIQKeyboardToolbar.h\tB-File_Name\tIQKeyboardToolbar.h\tI-Code_Block\n'\tO\t'\tI-Code_Block\n)\tO\t)\tO\nfor\tO\tfor\tO\nprevious/next/done\tB-Value\tprevious/next/done\tB-Code_Block\nto\tO\tto\tO\nget\tO\tget\tO\nnotify\tO\tnotify\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\ncustom\tO\tcustom\tO\nselector\tO\tselector\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\naffect\tO\taffect\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\nfunctionality\tO\tfunctionality\tO\nof\tO\tof\tO\nprevious/next/done\tB-Value\tprevious/next/done\tB-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\njust\tO\tjust\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\ncallback\tO\tcallback\tO\npurpose\tO\tpurpose\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ndetail\tO\tdetail\tO\ndocumentation\tO\tdocumentation\tO\nplease\tO\tplease\tO\nrefer\tO\trefer\tO\n'\tO\t'\tB-Code_Block\nIQUIView+\tB-Library_Class\tIQUIView+\tI-Code_Block\nIQKeyboardToolbar.h\tB-File_Name\tIQKeyboardToolbar.h\tI-Code_Block\n'\tO\t'\tI-Code_Block\n,\tO\t,\tO\nfor\tO\tfor\tO\n'\tO\t'\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n?\tO\t?\tO\n'\tO\t'\tO\n\t\nplease\tO\tplease\tO\nrefer\tO\trefer\tO\n'\tO\t'\tO\nTextFieldViewController.m\tB-File_Name\tTextFieldViewController.m\tB-Code_Block\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32929844\tO\t32929844\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32929844/\tO\thttps://stackoverflow.com/questions/32929844/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\nParse\tB-Error_Name\tParse\tO\nerror\tI-Error_Name\terror\tO\n:\tO\t:\tO\nsyntax\tB-Error_Name\tsyntax\tO\nerror\tI-Error_Name\terror\tO\n,\tO\t,\tO\nunexpected\tO\tunexpected\tO\nend\tO\tend\tO\nof\tO\tof\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\n/var/www/html/dashboard.php\tB-File_Name\t/var/www/html/dashboard.php\tO\non\tO\ton\tO\nline\tO\tline\tO\n1021\tO\t1021\tO\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3997\tI-Code_Block\tQ_3997\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCan\tO\tCan\tO\nsomebody\tO\tsomebody\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nin\tO\tin\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32929844\tO\t32929844\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32929844/\tO\thttps://stackoverflow.com/questions/32929844/\tO\n\t\n\t\nWhich\tO\tWhich\tO\nline\tO\tline\tO\nis\tO\tis\tO\nline\tO\tline\tO\n1021\tO\t1021\tO\n?\tO\t?\tO\n\t\nTaking\tO\tTaking\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nit\tO\tit\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nmissing\tO\tmissing\tO\na\tO\ta\tO\n}\tB-Code_Block\t}\tB-Code_Block\nat\tO\tat\tO\nthe\tO\tthe\tO\nvery\tO\tvery\tO\nend\tO\tend\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4687\tI-Code_Block\tA_4687\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPHP\tB-Language\tPHP\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nclosing\tO\tclosing\tO\n}\tB-Code_Block\t}\tB-Code_Block\nto\tO\tto\tO\nend\tO\tend\tO\nyour\tO\tyour\tO\nif\tO\tif\tO\nstatement\tO\tstatement\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nunexpected\tB-Error_Name\tunexpected\tO\nend\tI-Error_Name\tend\tO\nof\tI-Error_Name\tof\tO\nfile\tI-Error_Name\tfile\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23599709\tO\t23599709\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23599709/\tO\thttps://stackoverflow.com/questions/23599709/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2604\tI-Code_Block\tQ_2604\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nexport\tO\texport\tO\nFirewall\tB-Application\tFirewall\tO\nlogs\tB-File_Type\tlogs\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\ngiving\tO\tgiving\tO\nme\tO\tme\tO\nabove\tO\tabove\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\nclient\tB-Application\tclient\tO\nand\tO\tand\tO\nserver\tB-Application\tserver\tO\nare\tO\tare\tO\nLinux/Unix\tB-Operating_System\tLinux/Unix\tO\nbased\tO\tbased\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23599709\tO\t23599709\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23599709/\tO\thttps://stackoverflow.com/questions/23599709/\tO\n\t\n\t\nSCP\tO\tSCP\tO\nsyntax\tO\tsyntax\tO\ngoes\tO\tgoes\tO\n:\tO\t:\tO\nscp\tB-Code_Block\tscp\tB-Code_Block\n[[user@]host1:]file1\tI-Code_Block\t[[user@]host1:]file1\tI-Code_Block\n..\tI-Code_Block\t..\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n[[user@]host2:]file2\tI-Code_Block\t[[user@]host2:]file2\tI-Code_Block\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\n@\tB-Value\t@\tO\nsymbols\tO\tsymbols\tO\nwill\tO\twill\tO\ndefinitely\tO\tdefinitely\tO\nconfuse\tO\tconfuse\tO\nscp\tB-Code_Block\tscp\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\neven\tO\teven\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nyour\tO\tyour\tO\nexport\tB-Code_Block\texport\tO\nfirst\tO\tfirst\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nexport\tO\texport\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42853925\tO\t42853925\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42853925/\tO\thttps://stackoverflow.com/questions/42853925/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthis\tO\tthis\tO\nhql\tB-Language\thql\tO\nquery\tO\tquery\tO\nin\tO\tin\tO\nhibernate\tB-Library\thibernate\tO\ncriteria\tO\tcriteria\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nfollowing\tO\tfollowing\tO\nquery\tO\tquery\tO\ni\tO\ti\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncount\tO\tcount\tO\n#option\tB-Code_Block\t#option\tB-Code_Block\npicked\tO\tpicked\tO\nby\tO\tby\tO\nvarious\tO\tvarious\tO\nuser\tO\tuser\tO\nduring\tO\tduring\tO\na\tO\ta\tO\nsurvey\tO\tsurvey\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\ni\tO\ti\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\ncase\tB-Code_Block\tcase\tB-Code_Block\ninside\tO\tinside\tO\ncount()\tB-Function_Name\tcount()\tB-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nmy\tO\tmy\tO\nhibernate\tB-Library\thibernate\tO\nversion\tB-Version\tversion\tO\n5.1\tI-Version\t5.1\tO\n\t\nhow\tO\thow\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5474\tI-Code_Block\tQ_5474\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18528751\tO\t18528751\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18528751/\tO\thttps://stackoverflow.com/questions/18528751/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntesting\tO\ttesting\tO\nnew\tO\tnew\tO\nJS/HTML5\tB-Language\tJS/HTML5\tO\nhistory\tB-Library_Function\thistory\tB-Code_Block\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nsubpage\tO\tsubpage\tO\nload\tO\tload\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nevent\tO\tevent\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nand\tO\tand\tO\nhistory\tB-Library_Function\thistory\tO\nstate\tO\tstate\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1914\tI-Code_Block\tQ_1914\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nclicks\tO\tclicks\tO\nback\tO\tback\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nthe\tO\tthe\tO\nhistory.state\tB-Library_Variable\thistory.state\tB-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nchanges\tO\tchanges\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nloading\tO\tloading\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\npage\tO\tpage\tO\n(\tO\t(\tO\nwithout\tO\twithout\tO\nrefreshing\tO\trefreshing\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nURL\tO\tURL\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nmanual\tO\tmanual\tO\nrefresh\tO\trefresh\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nhistory.state\tB-Library_Variable\thistory.state\tB-Code_Block\nchange\tO\tchange\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1915\tI-Code_Block\tQ_1915\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18528751\tO\t18528751\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18528751/\tO\thttps://stackoverflow.com/questions/18528751/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2647\tI-Code_Block\tA_2647\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26266420\tO\t26266420\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26266420/\tO\thttps://stackoverflow.com/questions/26266420/\tO\n\t\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nsegmentation\tB-Error_Name\tsegmentation\tO\nfault\tI-Error_Name\tfault\tO\nwhen\tO\twhen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\none\tO\tone\tO\ncpp\tB-File_Type\tcpp\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nlocate\tO\tlocate\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nusing\tO\tusing\tO\nValgrind\tB-Application\tValgrind\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nconfused\tO\tconfused\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nlarge\tO\tlarge\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\npost\tO\tpost\tO\na\tO\ta\tO\nshort\tO\tshort\tO\nportion\tO\tportion\tO\nof\tO\tof\tO\nit\tO\tit\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26266420\tO\t26266420\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26266420/\tO\thttps://stackoverflow.com/questions/26266420/\tO\n\t\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nrunning\tO\trunning\tO\nvalgrind\tB-Application\tvalgrind\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\n.\tO\t.\tO\n\t\nUnless\tO\tUnless\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nrunning\tO\trunning\tO\nvalgrind\tB-Application\tvalgrind\tO\non\tO\ton\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\ninstead\tO\tinstead\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3617\tI-Code_Block\tA_3617\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nreplace\tO\treplace\tO\n./MyApp\tB-Value\t./MyApp\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nexecutable\tO\texecutable\tO\nname\tO\tname\tO\nand\tO\tand\tO\narguments\tO\targuments\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n)\tO\t)\tO\n\t\n(\tO\t(\tO\nExplanation\tO\tExplanation\tO\n:\tO\t:\tO\nvalgrind\tB-Application\tvalgrind\tO\nis\tO\tis\tO\na\tO\ta\tO\nrun-time\tO\trun-time\tO\nanalysis\tO\tanalysis\tO\ntool\tO\ttool\tO\n;\tO\t;\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nas\tO\tas\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ncompiler\tB-Application\tcompiler\tO\ntool\tO\ttool\tO\nlike\tO\tlike\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ndebugging\tO\tdebugging\tO\ntools\tO\ttools\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nout\tO\tout\tO\nthere\tO\tthere\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8763993\tO\t8763993\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8763993/\tO\thttps://stackoverflow.com/questions/8763993/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nexample\tO\texample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_730\tI-Code_Block\tQ_730\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine.\tO\tfine.\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\naggregate\tO\taggregate\tO\nfunction\tO\tfunction\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nclear\tO\tclear\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nself.counters\tB-Variable_Name\tself.counters\tO\ndict\tB-Data_Structure\tdict\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nissues\tO\tissues\tO\ndoing\tO\tdoing\tO\nthis.\tO\tthis.\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_731\tI-Code_Block\tQ_731\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nreference\tO\treference\tO\nself.counters\tB-Variable_Name\tself.counters\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nfunction\tO\tfunction\tO\nI\tO\tI\tO\nget\tO\tget\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_732\tI-Code_Block\tQ_732\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8763993\tO\t8763993\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8763993/\tO\thttps://stackoverflow.com/questions/8763993/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\na\tO\ta\tO\nrunnable\tO\trunnable\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\ndescribe\tO\tdescribe\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1070\tI-Code_Block\tA_1070\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13322287\tO\t13322287\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13322287/\tO\thttps://stackoverflow.com/questions/13322287/\tO\n\t\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\npermissions\tO\tpermissions\tO\nto\tO\tto\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nuser\tO\tuser\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nformat\tO\tformat\tO\na\tO\ta\tO\npermissions\tO\tpermissions\tO\nresource\tO\tresource\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1260\tI-Code_Block\tQ_1260\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nif\tO\tif\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ngrant\tO\tgrant\tO\nread-only\tO\tread-only\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nanyone\tO\tanyone\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1261\tI-Code_Block\tQ_1261\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nput\tO\tput\tO\nas\tO\tas\tO\n'\tO\t'\tO\nvalue\tB-Library_Variable\tvalue\tO\n'\tO\t'\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13322287\tO\t13322287\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13322287/\tO\thttps://stackoverflow.com/questions/13322287/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nit\tO\tit\tO\nturns\tO\tturns\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\n\"\tO\t\"\tO\nvalue\tB-Library_Variable\tvalue\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrequired\tO\trequired\tO\nparameter\tO\tparameter\tO\nfor\tO\tfor\tO\ntype\tB-Code_Block\ttype\tO\n=\tI-Code_Block\t=\tO\nanyone\tI-Code_Block\tanyone\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1704\tI-Code_Block\tA_1704\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39554893\tO\t39554893\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39554893/\tO\thttps://stackoverflow.com/questions/39554893/\tO\n\t\n\t\nI\tO\tI\tO\nposted\tO\tposted\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\na\tO\ta\tO\nmodal\tO\tmodal\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\neditDependent\tB-Function_Name\teditDependent\tO\nas\tO\tas\tO\nmodel\tO\tmodel\tO\nin\tO\tin\tO\na\tO\ta\tO\nmodal\tO\tmodal\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nin\tO\tin\tO\na\tO\ta\tO\npage\tO\tpage\tO\nemployee.html\tB-File_Name\temployee.html\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nrouted\tO\trouted\tO\nin\tO\tin\tO\na\tO\ta\tO\ninner\tO\tinner\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nui-view\tI-HTML_XML_Tag\tui-view\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\ntwo-way\tO\ttwo-way\tO\nbinding\tO\tbinding\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nmodal\tO\tmodal\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nexplain\tO\texplain\tO\nit\tO\tit\tO\nmore\tO\tmore\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nindex\tO\tindex\tO\nas\tO\tas\tO\nmain\tB-File_Name\tmain\tO\nhtml\tB-File_Type\thtml\tO\nwhich\tO\twhich\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nui-view\tB-HTML_XML_Tag\tui-view\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncontrol\tO\tcontrol\tO\nthe\tO\tthe\tO\nrouting\tO\trouting\tO\n\t\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4989\tI-Code_Block\tQ_4989\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nemployee.html\tB-File_Name\temployee.html\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4990\tI-Code_Block\tQ_4990\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nEmployeeService\tB-Function_Name\tEmployeeService\tO\nand\tO\tand\tO\nEmployeeController\tB-Function_Name\tEmployeeController\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4991\tI-Code_Block\tQ_4991\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUPDATE\tO\tUPDATE\tO\n\t\nI\tO\tI\tO\nadded\tO\tadded\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4992\tI-Code_Block\tQ_4992\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nlinked\tO\tlinked\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\n2\tO\t2\tO\nbuttons(new/edit)\tB-User_Interface_Element\tbuttons(new/edit)\tO\nwith\tO\twith\tO\nng-view=\"editDependent()\"\tB-Code_Block\tng-view=\"editDependent()\"\tO\nbut\tO\tbut\tO\n$scope\tB-Code_Block\t$scope\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nundefined\tO\tundefined\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27635409\tO\t27635409\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27635409/\tO\thttps://stackoverflow.com/questions/27635409/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ncascading\tO\tcascading\tO\nprimary\tB-Code_Block\tprimary\tO\nkey\tI-Code_Block\tkey\tO\nlike\tO\tlike\tO\ngiven\tO\tgiven\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nRoot\tB-Variable_Name\tRoot\tO\ntable\tB-Data_Structure\ttable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3202\tI-Code_Block\tQ_3202\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nParent\tB-Variable_Name\tParent\tO\ntable\tB-Data_Structure\ttable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3203\tI-Code_Block\tQ_3203\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nChild\tB-Variable_Name\tChild\tO\ntable\tB-Data_Structure\ttable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3204\tI-Code_Block\tQ_3204\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFor\tO\tFor\tO\nINSERT\tB-Code_Block\tINSERT\tO\nstatements\tO\tstatements\tO\nthe\tO\tthe\tO\nFOREIGN\tB-Code_Block\tFOREIGN\tO\nKEY\tI-Code_Block\tKEY\tO\npart\tO\tpart\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ngiven\tO\tgiven\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3205\tI-Code_Block\tQ_3205\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUnfortunately\tO\tUnfortunately\tO\nI\tO\tI\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\n2\tO\t2\tO\nissues\tO\tissues\tO\n:\tO\t:\tO\n\t\nid\tB-Variable_Name\tid\tB-Code_Block\nof\tO\tof\tO\nchild\tO\tchild\tO\ntable\tB-Data_Structure\ttable\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\n0\tO\t0\tO\nfor\tO\tfor\tO\nfirst\tO\tfirst\tO\ninsert\tB-Code_Block\tinsert\tO\n(\tO\t(\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\ndeclared\tO\tdeclared\tO\nas\tO\tas\tO\nNOT\tB-Value\tNOT\tO\nNULL\tI-Value\tNULL\tO\n)\tO\t)\tO\n\t\nsecond\tO\tsecond\tO\ninsert\tB-Code_Block\tinsert\tO\nwith\tO\twith\tO\nsame\tO\tsame\tO\nid_root\tB-Variable_Name\tid_root\tB-Code_Block\nand\tO\tand\tO\nid_parent\tB-Variable_Name\tid_parent\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\ntaking\tO\ttaking\tO\nplace\tO\tplace\tO\n(\tO\t(\tO\nguess\tO\tguess\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nprimary\tB-Code_Block\tprimary\tO\nkey\tI-Code_Block\tkey\tO\nviolation\tO\tviolation\tO\nwith\tO\twith\tO\nid\tB-Code_Block\tid\tB-Code_Block\n=\tI-Code_Block\t=\tO\n0\tI-Code_Block\t0\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\nmysql\tB-Language\tmysql\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthrowing\tO\tthrowing\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nlike\tO\tlike\tO\nnormally\tO\tnormally\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nplayed\tO\tplayed\tO\nwith\tO\twith\tO\nUNIQUE\tB-Code_Block\tUNIQUE\tO\nKEY\tI-Code_Block\tKEY\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nPRIMARY\tB-Code_Block\tPRIMARY\tO\nKEY\tI-Code_Block\tKEY\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsame\tO\tsame\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nAuto_increment\tB-Library_Function\tAuto_increment\tO\nof\tO\tof\tO\nid\tB-Variable_Name\tid\tB-Code_Block\nis\tO\tis\tO\nrejected\tO\trejected\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nengine\tB-Application\tengine\tO\nwhen\tO\twhen\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nApart\tO\tApart\tO\nfrom\tO\tfrom\tO\ngiving\tO\tgiving\tO\nthe\tO\tthe\tO\nid\tB-Variable_Name\tid\tB-Code_Block\nvalue\tO\tvalue\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nthrough\tO\tthrough\tO\ntriggers\tO\ttriggers\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nanother\tO\tanother\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11934853\tO\t11934853\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11934853/\tO\thttps://stackoverflow.com/questions/11934853/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndefined\tO\tdefined\tO\na\tO\ta\tO\nHotKey\tB-Variable_Name\tHotKey\tB-Code_Block\nCtrl\tB-Keyboard_IP\tCtrl\tB-Keyboard_IP\n+\tO\t+\tI-Keyboard_IP\nSpace\tB-Keyboard_IP\tSpace\tI-Keyboard_IP\nto\tO\tto\tO\nactivate\tO\tactivate\tO\nmy\tO\tmy\tO\nWindows\tB-Operating_System\tWindows\tO\nForm\tB-User_Interface_Element\tForm\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nhandles\tO\thandles\tO\nthis\tO\tthis\tO\nHotKey\tB-Variable_Name\tHotKey\tB-Code_Block\n,\tO\t,\tO\nthis\tO\tthis\tO\nevent\tO\tevent\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nseen\tO\tseen\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsubsequently\tO\tsubsequently\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nunhandle\tO\tunhandle\tO\nthese\tO\tthese\tO\nkeystrokes\tO\tkeystrokes\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nThat\tO\tThat\tO\nis\tO\tis\tO\n,\tO\t,\tO\nunregister\tO\tunregister\tO\nthe\tO\tthe\tO\nHotKey\tB-Variable_Name\tHotKey\tB-Code_Block\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1120\tI-Code_Block\tQ_1120\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11934853\tO\t11934853\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11934853/\tO\thttps://stackoverflow.com/questions/11934853/\tO\n\t\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nglobal\tB-Data_Type\tglobal\tO\nbool\tI-Data_Type\tbool\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nSet\tO\tSet\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nfalse\tB-Value\tfalse\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nWindows\tB-Operating_System\tWindows\tO\nKeyDown\tB-Library_Function\tKeyDown\tO\nevent\tO\tevent\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nbool\tB-Data_Type\tbool\tO\nvariable\tO\tvariable\tO\nis\tO\tis\tO\ntrue\tB-Value\ttrue\tO\nreturn\tO\treturn\tO\nfrom\tO\tfrom\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nunhandle\tO\tunhandle\tO\nthese\tO\tthese\tO\nkeystrokes\tO\tkeystrokes\tO\nset\tO\tset\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\ntrue\tB-Value\ttrue\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthese\tO\tthese\tO\nkeystrokes\tO\tkeystrokes\tO\nset\tO\tset\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nfalse\tB-Value\tfalse\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1542\tI-Code_Block\tA_1542\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\nflag\tB-Variable_Name\tflag\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nor\tO\tor\tO\nunhandle\tO\tunhandle\tO\nyour\tO\tyour\tO\nkeystrokes\tO\tkeystrokes\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n276184\tO\t276184\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/276184/\tO\thttps://stackoverflow.com/questions/276184/\tO\n\t\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nexample\tO\texample\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\na\tO\ta\tO\ncpython\tB-Language\tcpython\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nIronPython\tB-Language\tIronPython\tO\n)\tO\t)\tO\nclient\tO\tclient\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\ncall\tO\tcall\tO\nWindows\tB-Library\tWindows\tO\nCommunication\tI-Library\tCommunication\tO\nFoundation\tI-Library\tFoundation\tO\n(\tO\t(\tO\nWCF\tB-Library\tWCF\tO\n)\tO\t)\tO\nservice\tO\tservice\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n276184\tO\t276184\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/276184/\tO\thttps://stackoverflow.com/questions/276184/\tO\n\t\n\t\nWCF\tB-Library\tWCF\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nexpose\tO\texpose\tO\nfunctionality\tO\tfunctionality\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\ncommunication\tO\tcommunication\tO\nprotocol\tO\tprotocol\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\ncommonly\tO\tcommonly\tO\nused\tO\tused\tO\nprotocol\tO\tprotocol\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nSOAP\tO\tSOAP\tO\nover\tO\tover\tO\nHTTP\tO\tHTTP\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nthen\tO\tthen\tO\n.\tO\t.\tO\n\t\nTake\tO\tTake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nchapter\tO\tchapter\tO\nin\tO\tin\tO\nDive\tO\tDive\tO\nInto\tO\tInto\tO\nPython\tB-Language\tPython\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\nyou\tO\tyou\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nSOAP\tO\tSOAP\tO\ncalls\tO\tcalls\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\nno\tO\tno\tO\nunified\tO\tunified\tO\nway\tO\tway\tO\nof\tO\tof\tO\ncalling\tO\tcalling\tO\na\tO\ta\tO\nWCF\tB-Library\tWCF\tO\nservice\tO\tservice\tO\nin\tO\tin\tO\nPython\tB-Language\tPython\tO\n,\tO\t,\tO\nregardless\tO\tregardless\tO\nof\tO\tof\tO\ncommunication\tO\tcommunication\tO\nprotocol\tO\tprotocol\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n276184\tO\t276184\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/276184/\tO\thttps://stackoverflow.com/questions/276184/\tO\n\t\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nsuds\tB-Library\tsuds\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_402\tI-Code_Block\tA_402\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\nshould\tO\tshould\tO\nget\tO\tget\tO\nyou\tO\tyou\tO\nstarted\tO\tstarted\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nable\tO\table\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nexposed\tO\texposed\tO\nservices\tO\tservices\tO\nfrom\tO\tfrom\tO\nWCF\tB-Library\tWCF\tO\nand\tO\tand\tO\na\tO\ta\tO\nRESTful\tB-Library\tRESTful\tO\nlayer\tO\tlayer\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\ndata\tO\tdata\tO\nmassaging\tO\tmassaging\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\ndo\tO\tdo\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbind\tO\tbind\tO\nto\tO\tto\tO\nseveral\tO\tseveral\tO\nnamespaces\tO\tnamespaces\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29820283\tO\t29820283\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29820283/\tO\thttps://stackoverflow.com/questions/29820283/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nsaving\tO\tsaving\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\ninto\tO\tinto\tO\nmy\tO\tmy\tO\nSQL\tB-Language\tSQL\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsystem\tO\tsystem\tO\nshould\tO\tshould\tO\nsave\tO\tsave\tO\ntime\tO\ttime\tO\nand\tO\tand\tO\ndate\tO\tdate\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nscans\tO\tscans\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nbuilding\tO\tbuilding\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nmoment\tO\tmoment\tO\nit\tO\tit\tO\nsaves\tO\tsaves\tO\ndate\tO\tdate\tO\nbut\tO\tbut\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\nsaved\tO\tsaved\tO\nas\tO\tas\tO\n00:00\tB-Value\t00:00\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nproblems\tO\tproblems\tO\nconverting\tO\tconverting\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nto\tO\tto\tO\nSQL\tB-Language\tSQL\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nsave\tO\tsave\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nso\tO\tso\tO\nmaybe\tO\tmaybe\tO\ni\tO\ti\tO\n've\tO\t've\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nmistake\tO\tmistake\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nages\tO\tages\tO\nand\tO\tand\tO\ncant\tO\tcant\tO\nsee\tO\tsee\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\nwouldnt\tO\twouldnt\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nquestion\tO\tquestion\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3567\tI-Code_Block\tQ_3567\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29820283\tO\t29820283\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29820283/\tO\thttps://stackoverflow.com/questions/29820283/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nits\tO\tits\tO\ndatatype\tO\tdatatype\tO\nand\tO\tand\tO\nconvert\tO\tconvert\tO\nit\tO\tit\tO\nto\tO\tto\tO\nstring\tB-Data_Type\tstring\tB-Code_Block\n,\tO\t,\tO\njust\tO\tjust\tO\npass\tO\tpass\tO\nit\tO\tit\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nin\tO\tin\tO\ndatabase\tO\tdatabase\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\ndate\tB-Library_Class\tdate\tB-Code_Block\nor\tO\tor\tO\ndatetime\tB-Library_Class\tdatetime\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4241\tI-Code_Block\tA_4241\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29820283\tO\t29820283\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29820283/\tO\thttps://stackoverflow.com/questions/29820283/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndirectly\tO\tdirectly\tO\npass\tO\tpass\tO\nDateTime.Now\tB-Library_Variable\tDateTime.Now\tB-Code_Block\nfor\tO\tfor\tO\ncommand\tO\tcommand\tO\nparameters\tO\tparameters\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\ndatabase\tO\tdatabase\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nis\tO\tis\tO\nDateTime\tB-Library_Class\tDateTime\tB-Code_Block\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nIt\tO\tIt\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4242\tI-Code_Block\tA_4242\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nremove\tO\tremove\tO\nbelow\tO\tbelow\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrequired\tO\trequired\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4243\tI-Code_Block\tA_4243\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34937906\tO\t34937906\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34937906/\tO\thttps://stackoverflow.com/questions/34937906/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nSDL\tB-Library\tSDL\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nrandom\tO\trandom\tO\nset\tO\tset\tO\nof\tO\tof\tO\npieces\tO\tpieces\tO\nand\tO\tand\tO\nrender\tO\trender\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nconstantly\tO\tconstantly\tO\nrender\tO\trender\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nrandom\tO\trandom\tO\nset\tO\tset\tO\nof\tO\tof\tO\npieces\tO\tpieces\tO\non\tO\ton\tO\na\tO\ta\tO\n10\tB-Value\t10\tO\nby\tI-Value\tby\tO\n10\tI-Value\t10\tO\ngrid\tB-Data_Structure\tgrid\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nit\tO\tit\tO\nso\tO\tso\tO\nrender\tO\trender\tO\nonce\tO\tonce\tO\nand\tO\tand\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nset\tO\tset\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nstill\tO\tstill\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\nlocations\tO\tlocations\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4274\tI-Code_Block\tQ_4274\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nfor\tO\tfor\tO\ngenerating\tO\tgenerating\tO\nthe\tO\tthe\tO\nset\tO\tset\tO\nand\tO\tand\tO\nI\tO\tI\tO\nput\tO\tput\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34937906\tO\t34937906\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34937906/\tO\thttps://stackoverflow.com/questions/34937906/\tO\n\t\n\t\nCreate\tO\tCreate\tO\nyour\tO\tyour\tO\narray\tB-Data_Structure\tarray\tO\n\"\tO\t\"\tO\nloc\tB-Variable_Name\tloc\tO\n\"\tO\t\"\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nlocation\tO\tlocation\tO\ngeneration\tO\tgeneration\tO\nand\tO\tand\tO\nrender\tO\trender\tO\nfunctions\tO\tfunctions\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nnow\tO\tnow\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nnew\tO\tnew\tO\narray\tB-Data_Structure\tarray\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nyou\tO\tyou\tO\nrender\tO\trender\tO\n(\tO\t(\tO\nmultiple\tO\tmultiple\tO\ntimes\tO\ttimes\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\narray\tB-Data_Structure\tarray\tO\nonce\tO\tonce\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\npass\tO\tpass\tO\nit\tO\tit\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nlocation\tO\tlocation\tO\ngeneration\tO\tgeneration\tO\nfunction\tO\tfunction\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nalter\tO\talter\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nrender\tO\trender\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nreduce\tO\treduce\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34937906\tO\t34937906\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34937906/\tO\thttps://stackoverflow.com/questions/34937906/\tO\n\t\n\t\nI\tO\tI\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nmisunderstanding\tO\tmisunderstanding\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhy\tO\twhy\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nyou\tO\tyou\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nwith\tO\twith\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\nlocations\tO\tlocations\tO\n?\tO\t?\tO\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nexecution\tO\texecution\tO\nwould\tO\twould\tO\nthen\tO\tthen\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4980\tI-Code_Block\tA_4980\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSimply\tO\tSimply\tO\nput\tO\tput\tO\n,\tO\t,\tO\nis\tO\tis\tO\nseparating\tO\tseparating\tO\nthe\tO\tthe\tO\nfunctions\tO\tfunctions\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9618386\tO\t9618386\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9618386/\tO\thttps://stackoverflow.com/questions/9618386/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\n5\tO\t5\tO\nstrings\tB-Data_Type\tstrings\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nNSURLConnection\tB-Library_Class\tNSURLConnection\tO\nto\tO\tto\tO\nget\tO\tget\tO\ncontnent\tO\tcontnent\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nNSLog\tB-Library_Function\tNSLog\tO\nshows\tO\tshows\tO\nme\tO\tme\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\n'\tO\t'\tO\ndump\tB-Variable_Name\tdump\tO\n'\tO\t'\tO\nis\tO\tis\tO\nempty\tO\tempty\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ntransform\tO\ttransform\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nNSMutableData\tB-Library_Class\tNSMutableData\tO\nto\tO\tto\tO\nNSArray\tB-Library_Class\tNSArray\tO\n.\tO\t.\tO\n\t\nArrays\tB-Data_Structure\tArrays\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nthose\tO\tthose\tO\n5\tO\t5\tO\nitems\tO\titems\tO\nin\tO\tin\tO\na\tO\ta\tO\nTableView\tB-Library_Class\tTableView\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_831\tI-Code_Block\tQ_831\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nBTW\tO\tBTW\tO\nURL\tO\tURL\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9618386\tO\t9618386\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9618386/\tO\thttps://stackoverflow.com/questions/9618386/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndelegate\tO\tdelegate\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nsynchronous\tO\tsynchronous\tO\ncall\tO\tcall\tO\nwith\tO\twith\tO\nNSURLConnection\tB-Library_Class\tNSURLConnection\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1208\tI-Code_Block\tA_1208\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJust\tO\tJust\tO\nbeware\tO\tbeware\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nrunning\tO\trunning\tO\nasynchronously\tO\tasynchronously\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nrun\tO\trun\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nand\tO\tand\tO\nblock\tO\tblock\tO\nyour\tO\tyour\tO\nmain\tO\tmain\tO\nthread/UI\tO\tthread/UI\tO\n,\tO\t,\tO\nconsider\tO\tconsider\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\nGCD\tO\tGCD\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9618386\tO\t9618386\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9618386/\tO\thttps://stackoverflow.com/questions/9618386/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\ndelegate\tO\tdelegate\tO\nmethods\tO\tmethods\tO\nfor\tO\tfor\tO\nNSURLConnection\tB-Library_Class\tNSURLConnection\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nnotified\tO\tnotified\tO\nof\tO\tof\tO\nincoming\tO\tincoming\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nasynchronous\tO\tasynchronous\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\n[\tB-Code_Block\t[\tB-Code_Block\nNSMutableData\tI-Code_Block\tNSMutableData\tI-Code_Block\ndata\tI-Code_Block\tdata\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\njust\tO\tjust\tO\ncreates\tO\tcreates\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\ndata-object\tO\tdata-object\tO\n.\tO\t.\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nexpect\tO\texpect\tO\nit\tO\tit\tO\nto\tO\tto\tO\ncontain\tO\tcontain\tO\nany\tO\tany\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nyou\tO\tyou\tO\nread\tO\tread\tO\nhttps://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html#//apple_ref/doc/uid/20001836-BAJEAIEE\tO\thttps://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html#//apple_ref/doc/uid/20001836-BAJEAIEE\tO\n\t\n(\tO\t(\tO\ncompletely\tO\tcompletely\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7056525\tO\t7056525\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7056525/\tO\thttps://stackoverflow.com/questions/7056525/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_543\tI-Code_Block\tQ_543\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nselect\tO\tselect\tO\nfrom\tO\tfrom\tO\ntable\tB-Data_Structure\ttable\tO\nPrivateMessages\tB-Variable_Name\tPrivateMessages\tB-Code_Block\nwhere\tO\twhere\tO\nSender==QueryString('idCompany')\tB-Code_Block\tSender==QueryString('idCompany')\tB-Code_Block\n\t\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\nwant\tO\twant\tO\nselect\tO\tselect\tO\nfrom\tO\tfrom\tO\nprivateMessage\tB-Variable_Name\tprivateMessage\tB-Code_Block\nwhere\tO\twhere\tO\nSender\tB-Code_Block\tSender\tB-Code_Block\n==\tI-Code_Block\t==\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nadmin\tI-Code_Block\tadmin\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n???????\tO\t???????\tO\n?\tO\t?\tO\n\t\nwhere\tO\twhere\tO\nsender\tB-Variable_Name\tsender\tO\nequal\tO\tequal\tO\na\tO\ta\tO\nconst\tB-Data_Type\tconst\tO\nstring\tI-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7056525\tO\t7056525\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7056525/\tO\thttps://stackoverflow.com/questions/7056525/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nSelecting\tB-Library_Function\tSelecting\tB-Code_Block\nevent\tO\tevent\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_811\tI-Code_Block\tA_811\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7056525\tO\t7056525\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7056525/\tO\thttps://stackoverflow.com/questions/7056525/\tO\n\t\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nWhereParameters\tB-HTML_XML_Tag\tWhereParameters\tB-Code_Block\nsection\tO\tsection\tO\nwith\tO\twith\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_812\tI-Code_Block\tA_812\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDepends\tO\tDepends\tO\non\tO\ton\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nchoosing\tO\tchoosing\tO\nwhat\tO\twhat\tO\nflavor\tO\tflavor\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n2\tO\t2\tO\nsolutions\tO\tsolutions\tO\nbest\tO\tbest\tO\nsuits\tO\tsuits\tO\nthis\tO\tthis\tO\nscenario\tO\tscenario\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42692779\tO\t42692779\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42692779/\tO\thttps://stackoverflow.com/questions/42692779/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nquite\tO\tquite\tO\nodd\tO\todd\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\npass\tO\tpass\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ncontroller\tB-Class_Name\tcontroller\tO\naction\tO\taction\tO\n(\tO\t(\tO\n.NET\tB-Library\t.NET\tO\nMVC\tB-Algorithm\tMVC\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5439\tI-Code_Block\tQ_5439\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nchecked\tO\tchecked\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nan\tO\tan\tO\nserver\tB-Error_Name\tserver\tO\ninternal\tI-Error_Name\tinternal\tO\nerror\tI-Error_Name\terror\tO\n500\tI-Error_Name\t500\tO\n..\tO\t..\tO\n.\tO\t.\tO\nTo\tO\tTo\tO\nmake\tO\tmake\tO\nthings\tO\tthings\tO\nworse\tO\tworse\tO\nI\tO\tI\tO\n've\tO\t've\tO\ntested\tO\ttested\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\npost\tB-Function_Name\tpost\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\ndifferent\tO\tdifferent\tO\nkinds\tO\tkinds\tO\nof\tO\tof\tO\ntitles\tO\ttitles\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\"\tB-Value\t\"\tO\nsuper\tI-Value\tsuper\tO\nduper\tI-Value\tduper\tO\namoled\tI-Value\tamoled\tO\nTV\tI-Value\tTV\tO\n\"\tI-Value\t\"\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks.\tO\tworks.\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\ncontains\tO\tcontains\tO\nspecial\tO\tspecial\tO\ncharacthers\tO\tcharacthers\tO\nlike\tO\tlike\tO\n'\tB-Value\t'\tO\nand\tO\tand\tO\n\"\tB-Value\t\"\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npost\tB-Function_Name\tpost\tO\nmethod\tO\tmethod\tO\nitself\tO\titself\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5440\tI-Code_Block\tQ_5440\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFirst\tO\tFirst\tO\npost\tB-Variable_Name\tpost\tO\ndata\tI-Variable_Name\tdata\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\npost\tB-Function_Name\tpost\tO\nitself\tO\titself\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5441\tI-Code_Block\tQ_5441\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\nController\tB-Class_Name\tController\tO\naction\tO\taction\tO\nitself\tO\titself\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5442\tI-Code_Block\tQ_5442\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\ntitle\tO\ttitle\tO\nitself\tO\titself\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n've\tO\t've\tO\nshown\tO\tshown\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\naction\tO\taction\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ngets\tO\tgets\tO\ntriggered\tO\ttriggered\tO\nat\tO\tat\tO\nall.\tO\tall.\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nI\tO\tI\tO\nsimply\tO\tsimply\tO\nget\tO\tget\tO\ninternal\tB-Error_Name\tinternal\tO\nserver\tI-Error_Name\tserver\tO\nerror\tI-Error_Name\terror\tO\n500\tI-Error_Name\t500\tO\nin\tO\tin\tO\nconsole\tB-Application\tconsole\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncould\tO\tcould\tO\nI\tO\tI\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42692779\tO\t42692779\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42692779/\tO\thttps://stackoverflow.com/questions/42692779/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nserialize\tO\tserialize\tO\nthe\tO\tthe\tO\npostData\tB-Variable_Name\tpostData\tB-Code_Block\nand\tO\tand\tO\nexpect\tO\texpect\tO\na\tO\ta\tO\nrequest\tB-Library_Class\trequest\tO\nobject\tO\tobject\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\naction\tO\taction\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nfurther\tO\tfurther\tO\nbe\tO\tbe\tO\nde-serialized\tO\tde-serialized\tO\nto\tO\tto\tO\nobtain\tO\tobtain\tO\nindividual\tO\tindividual\tO\nproperties\tO\tproperties\tO\n.\tO\t.\tO\n\t\nModel\tO\tModel\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6164\tI-Code_Block\tA_6164\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nController\tB-Class_Name\tController\tO\nAction\tO\tAction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6165\tI-Code_Block\tA_6165\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\n\t\nJson\tB-Data_Type\tJson\tO\nobject\tO\tobject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6166\tI-Code_Block\tA_6166\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30743014\tO\t30743014\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30743014/\tO\thttps://stackoverflow.com/questions/30743014/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nstruct\tB-Data_Structure\tstruct\tO\n,\tO\t,\tO\na\tO\ta\tO\nstatic\tB-Data_Type\tstatic\tO\nvariable\tO\tvariable\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\ntrack\tO\ttrack\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\nstructs\tB-Data_Structure\tstructs\tO\nare\tO\tare\tO\nalive\tO\talive\tO\nand\tO\tand\tO\nalso\tO\talso\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nall\tO\tall\tO\ncurrent\tO\tcurrent\tO\nstructs\tB-Data_Structure\tstructs\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\ncreating\tO\tcreating\tO\nthis\tO\tthis\tO\nlist\tB-Data_Structure\tlist\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nconstructor\tO\tconstructor\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3691\tI-Code_Block\tQ_3691\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nby\tO\tby\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nstatic\tB-Data_Type\tstatic\tO\narray\tB-Data_Structure\tarray\tO\nthat\tO\tthat\tO\ngets\tO\tgets\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nconstructor\tO\tconstructor\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\"\tB-Output_Block\t\"\tO\nlvalue\tI-Output_Block\tlvalue\tO\nrequired\tI-Output_Block\trequired\tO\nas\tI-Output_Block\tas\tO\nleft\tI-Output_Block\tleft\tO\noperand\tI-Output_Block\toperand\tO\nof\tI-Output_Block\tof\tO\nassignment\tI-Output_Block\tassignment\tO\n\"\tI-Output_Block\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nplace\tO\tplace\tO\nI\tO\tI\tO\nindicated\tO\tindicated\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nletting\tO\tletting\tO\nme\tO\tme\tO\nassign\tO\tassign\tO\nnew\tO\tnew\tO\nstructs\tB-Data_Structure\tstructs\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nstatic\tB-Data_Type\tstatic\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\npointers\tB-Data_Type\tpointers\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nbane\tO\tbane\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nlife\tO\tlife\tO\nso\tO\tso\tO\nplease\tO\tplease\tO\nexplain\tO\texplain\tO\nit\tO\tit\tO\nto\tO\tto\tO\nme\tO\tme\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nto\tO\tto\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nchild\tO\tchild\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30743014\tO\t30743014\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30743014/\tO\thttps://stackoverflow.com/questions/30743014/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\ndefine\tO\tdefine\tO\nMyStruct\tB-Code_Block\tMyStruct\tB-Code_Block\nMyStruct::*\tI-Code_Block\tMyStruct::*\tI-Code_Block\nAllStructs\tI-Code_Block\tAllStructs\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n,\tO\t,\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndoing\tO\tdoing\tO\nis\tO\tis\tO\nallocating\tO\tallocating\tO\nmemory\tO\tmemory\tO\nfor\tO\tfor\tO\none\tO\tone\tO\nsingle\tO\tsingle\tO\npointer\tB-Data_Type\tpointer\tO\nto\tO\tto\tO\na\tO\ta\tO\nMyStruct\tB-Class_Name\tMyStruct\tB-Code_Block\nobject\tO\tobject\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nactually\tO\tactually\tO\ncreating\tO\tcreating\tO\nspace\tO\tspace\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\narray\tB-Data_Structure\tarray\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nmemory\tO\tmemory\tO\nlocation\tO\tlocation\tO\ninitialised\tO\tinitialised\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\nto\tO\tto\tO\nlive\tO\tlive\tO\nin\tO\tin\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nstore\tO\tstore\tO\nits\tO\tits\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\npointers\tB-Data_Type\tpointers\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nlikely\tO\tlikely\tO\nto\tO\tto\tO\nget\tO\tget\tO\nmessy\tO\tmessy\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nstatic\tB-Data_Type\tstatic\tO\nstd::vector\tB-Library_Class\tstd::vector\tB-Code_Block\ninstead\tO\tinstead\tO\nto\tO\tto\tO\nmanage\tO\tmanage\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nallocation\tO\tallocation\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nMyStruct\tB-Class_Name\tMyStruct\tB-Code_Block\n.\tO\t.\tO\n\t\nSimple\tO\tSimple\tO\nas\tO\tas\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4367\tI-Code_Block\tA_4367\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHope\tO\tHope\tO\nthat\tO\tthat\tO\nhelps\tO\thelps\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7219258\tO\t7219258\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7219258/\tO\thttps://stackoverflow.com/questions/7219258/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nMySQL\tB-Application\tMySQL\tO\ntables\tB-Data_Structure\ttables\tO\nlooking\tO\tlooking\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n\t\nregions\tB-Variable_Name\tregions\tO\ntable\tB-Data_Structure\ttable\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_557\tI-Code_Block\tQ_557\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nschools\tB-Variable_Name\tschools\tO\ntable\tB-Data_Structure\ttable\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_558\tI-Code_Block\tQ_558\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmultiple\tO\tmultiple\tO\nselect\tO\tselect\tO\n(\tO\t(\tO\ndropdown\tB-User_Interface_Element\tdropdown\tO\n)\tO\t)\tO\nmenus\tB-User_Interface_Element\tmenus\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nregistration\tO\tregistration\tO\nform\tB-User_Interface_Element\tform\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nregions\tO\tregions\tO\ndropdown\tB-User_Interface_Element\tdropdown\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_559\tI-Code_Block\tQ_559\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\nnew\tO\tnew\tO\ndropdown\tB-User_Interface_Element\tdropdown\tO\nlist\tI-User_Interface_Element\tlist\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nprevious\tO\tprevious\tO\nselections\tO\tselections\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\n,\tO\t,\tO\nget\tO\tget\tO\n\"\tO\t\"\tO\nregions\tB-Variable_Name\tregions\tO\n\"\tO\t\"\tO\nid\tO\tid\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\npopulate\tO\tpopulate\tO\nschools\tO\tschools\tO\ndropdown\tB-User_Interface_Element\tdropdown\tO\nmenu\tI-User_Interface_Element\tmenu\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nid\tB-Variable_Name\tid\tO\n(\tO\t(\tO\nid\tB-Variable_Name\tid\tO\nof\tO\tof\tO\nprevious\tO\tprevious\tO\nselection\tO\tselection\tO\n)\tO\t)\tO\nfrom\tO\tfrom\tO\n\"\tO\t\"\tO\nschools\tB-Variable_Name\tschools\tO\n\"\tO\t\"\tO\ntable\tB-Data_Structure\ttable\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfly\tO\tfly\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\njs\tB-Language\tjs\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_560\tI-Code_Block\tQ_560\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nsearch.php\tB-File_Name\tsearch.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_561\tI-Code_Block\tQ_561\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nto\tO\tto\tO\nfinish\tO\tfinish\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThx\tO\tThx\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7219258\tO\t7219258\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7219258/\tO\thttps://stackoverflow.com/questions/7219258/\tO\n\t\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\ncalling\tO\tcalling\tO\ngetschools()\tB-Function_Name\tgetschools()\tB-Code_Block\nwith\tO\twith\tO\nno\tO\tno\tO\nparameter\tO\tparameter\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nnothing\tO\tnothing\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwere\tO\twere\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nafter\tO\tafter\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nPOST\tO\tPOST\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsearch.php\tB-File_Name\tsearch.php\tB-Code_Block\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnot\tO\tnot\tO\ntested\tO\ttested\tO\nit\tO\tit\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nchange\tO\tchange\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_824\tI-Code_Block\tA_824\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_825\tI-Code_Block\tA_825\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44075338\tO\t44075338\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44075338/\tO\thttps://stackoverflow.com/questions/44075338/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\ntwilio\tB-Application\ttwilio\tO\n\t\nmy\tO\tmy\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ncall\tO\tcall\tO\nIVR\tB-Application\tIVR\tO\nwill\tO\twill\tO\nask\tO\task\tO\nfor\tO\tfor\tO\nuser\tO\tuser\tO\nmood\tO\tmood\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nstart\tO\tstart\tO\nrecording\tO\trecording\tO\nfor\tO\tfor\tO\n10\tO\t10\tO\nsecond\tO\tsecond\tO\n,\tO\t,\tO\ntake\tO\ttake\tO\nthat\tO\tthat\tO\nrecording\tO\trecording\tO\nto\tO\tto\tO\nserver\tO\tserver\tO\nfind\tO\tfind\tO\npodcast\tO\tpodcast\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nuser\tO\tuser\tO\nmood\tO\tmood\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nback\tO\tback\tO\nTWIML\tB-Language\tTWIML\tO\nwith\tO\twith\tO\npodcast\tO\tpodcast\tO\nmp3\tB-File_Type\tmp3\tO\nurl\tO\turl\tO\nand\tO\tand\tO\nplay\tO\tplay\tO\nit\tO\tit\tO\nto\tO\tto\tO\nuser\tO\tuser\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\njob\tO\tjob\tO\n\t\nnow\tO\tnow\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nfeature\tO\tfeature\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nuser\tO\tuser\tO\nsay\tO\tsay\tO\n\"\tB-Value\t\"\tO\nSkip\tI-Value\tSkip\tO\n\"\tI-Value\t\"\tO\nor\tO\tor\tO\n\"\tB-Value\t\"\tO\nI\tI-Value\tI\tO\ndo\tI-Value\tdo\tO\nn't\tI-Value\tn't\tO\nlike\tI-Value\tlike\tO\nthis\tI-Value\tthis\tO\none\tI-Value\tone\tO\nplease\tI-Value\tplease\tO\nskip\tI-Value\tskip\tO\n\"\tI-Value\t\"\tO\n(\tO\t(\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\nwill\tO\twill\tO\nhandle\tO\thandle\tO\nwith\tO\twith\tO\nA\tO\tA\tO\ni)\tO\ti)\tO\nimmediately\tO\timmediately\tO\nstop\tO\tstop\tO\nplaying\tO\tplaying\tO\nand\tO\tand\tO\ngoto\tO\tgoto\tO\nserver\tB-Application\tserver\tO\nand\tO\tand\tO\nget\tO\tget\tO\nanother\tO\tanother\tO\npodcast\tO\tpodcast\tO\nmp3\tB-File_Type\tmp3\tO\nurl\tO\turl\tO\nand\tO\tand\tO\nplay\tO\tplay\tO\nit\tO\tit\tO\n\t\nfor\tO\tfor\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5709\tI-Code_Block\tQ_5709\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nsolve\tO\tsolve\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nbecause\tO\tbecause\tO\ntwilio\tB-Application\ttwilio\tO\nwill\tO\twill\tO\nstart\tO\tstart\tO\nrecording\tO\trecording\tO\nafter\tO\tafter\tO\nfinish\tO\tfinish\tO\nplaying\tO\tplaying\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrecord\tO\trecord\tO\neach\tO\teach\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nto\tO\tto\tO\nserver\tO\tserver\tO\ncontinuously\tO\tcontinuously\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nlistening\tO\tlistening\tO\npodcast\tO\tpodcast\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5710\tI-Code_Block\tQ_5710\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\neach\tO\teach\tO\ntime\tO\ttime\tO\nwhen\tO\twhen\tO\nwe\tO\twe\tO\nget\tO\tget\tO\nrecording\tO\trecording\tO\non\tO\ton\tO\nserver\tO\tserver\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwill\tO\twill\tO\nconvert\tO\tconvert\tO\nrecording\tO\trecording\tO\nto\tO\tto\tO\ntext\tO\ttext\tO\nad\tO\tad\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nuser\tO\tuser\tO\nsaid\tO\tsaid\tO\n\"\tO\t\"\tO\nskip\tO\tskip\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyes\tO\tyes\tO\ni\tO\ti\tO\nwill\tO\twill\tO\nmodify\tO\tmodify\tO\ncall\tO\tcall\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfly\tO\tfly\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44075338\tO\t44075338\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44075338/\tO\thttps://stackoverflow.com/questions/44075338/\tO\n\t\n\t\nTwilio\tB-Application\tTwilio\tO\ndeveloper\tO\tdeveloper\tO\nevangelist\tO\tevangelist\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nafraid\tO\tafraid\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\nnot\tO\tnot\tO\npossible*\tO\tpossible*\tO\nto\tO\tto\tO\nrecord\tO\trecord\tO\nslices\tO\tslices\tO\nof\tO\tof\tO\na\tO\ta\tO\ncall\tO\tcall\tO\nwhile\tO\twhile\tO\nsimultaneously\tO\tsimultaneously\tO\nplaying\tO\tplaying\tO\nan\tO\tan\tO\nmp3\tB-File_Type\tmp3\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nthat\tO\tthat\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nvoice\tO\tvoice\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nkey\tO\tkey\tO\npress\tO\tpress\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nfunctionality\tO\tfunctionality\tO\ninstead\tO\tinstead\tO\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nTwiML\tB-Language\tTwiML\tO\n(\tO\t(\tO\nas\tO\tas\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6342\tI-Code_Block\tA_6342\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nan\tO\tan\tO\nendpoint\tO\tendpoint\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nat\tO\tat\tO\n/voice/check\tB-File_Name\t/voice/check\tB-Code_Block\n-digits\tI-File_Name\t-digits\tI-Code_Block\nthat\tO\tthat\tO\ndirects\tO\tdirects\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\npodcast\tO\tpodcast\tO\n.\tO\t.\tO\n\t\n*\tO\t*\tO\nOK\tO\tOK\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nplay\tO\tplay\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nconference\tO\tconference\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nanother\tO\tanother\tO\nscript\tO\tscript\tO\ndial\tO\tdial\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nconference\tO\tconference\tO\nand\tO\tand\tO\nrecord\tO\trecord\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nhangup\tO\thangup\tO\nas\tO\tas\tO\nanother\tO\tanother\tO\nscript\tO\tscript\tO\ndials\tO\tdials\tO\nin\tO\tin\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nrecording\tO\trecording\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\neven\tO\teven\tO\nthen\tO\tthen\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\nvoice\tO\tvoice\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncaller\tO\tcaller\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npodcast\tO\tpodcast\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nunlikely\tO\tunlikely\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\naccurate\tO\taccurate\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nEspecially\tO\tEspecially\tO\nif\tO\tif\tO\na\tO\ta\tO\nvoice\tO\tvoice\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npodcast\tO\tpodcast\tO\nsays\tO\tsays\tO\n\"\tB-Value\t\"\tO\nskip\tI-Value\tskip\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nrecommend\tO\trecommend\tO\nusing\tO\tusing\tO\n<Gather>\tB-HTML_XML_Tag\t<Gather>\tB-Code_Block\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17366530\tO\t17366530\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17366530/\tO\thttps://stackoverflow.com/questions/17366530/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nscript\tO\tscript\tO\nfor\tO\tfor\tO\nasterisk\tO\tasterisk\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1764\tI-Code_Block\tQ_1764\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nthis\tO\tthis\tO\nscript\tO\tscript\tO\nfrom\tO\tfrom\tO\nbuild.xml\tB-File_Name\tbuild.xml\tB-Code_Block\nfile\tO\tfile\tO\n\t\nthis\tO\tthis\tO\nversion\tO\tversion\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1765\tI-Code_Block\tQ_1765\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCan\tO\tCan\tO\nanybody\tO\tanybody\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17366530\tO\t17366530\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17366530/\tO\thttps://stackoverflow.com/questions/17366530/\tO\n\t\n\t\nThe\tO\tThe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nyou\tO\tyou\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nAnt\tB-Application\tAnt\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nworking\tO\tworking\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\none\tO\tone\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nasterisk\tB-Value\tasterisk\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nProbably\tO\tProbably\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2281\tI-Code_Block\tA_2281\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1179655\tO\t1179655\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1179655/\tO\thttps://stackoverflow.com/questions/1179655/\tO\n\t\n\t\nIn\tO\tIn\tO\nErlang\tB-Language\tErlang\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nreference\tO\treference\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nexecuting\tO\texecuting\tO\nfunction\tO\tfunction\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\nto\tO\tto\tO\nspawn\tO\tspawn\tO\nan\tO\tan\tO\ninfinite\tO\tinfinite\tO\nloop\tO\tloop\tO\n:\tB-Code_Block\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_70\tI-Code_Block\tQ_70\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nJavaScript\tB-Language\tJavaScript\tO\narguments.callee\tB-Library_Function\targuments.callee\tB-Code_Block\ndoes\tO\tdoes\tO\njust\tO\tjust\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nspecification\tO\tspecification\tO\non\tO\ton\tO\nMDC\tO\tMDC\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\na\tO\ta\tO\n'\tO\t'\tO\nwhy\tO\twhy\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n'\tO\t'\tO\n:\tO\t:\tO\nmostly\tO\tmostly\tO\ncuriosity\tO\tcuriosity\tO\n;\tO\t;\tO\nit\tO\tit\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nuseful\tO\tuseful\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\na\tO\ta\tO\ntimer\tO\ttimer\tO\nwhen\tO\twhen\tO\nprorotyping\tO\tprorotyping\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_71\tI-Code_Block\tQ_71\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1179655\tO\t1179655\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1179655/\tO\thttps://stackoverflow.com/questions/1179655/\tO\n\t\n\t\nThe\tO\tThe\tO\nErlang\tB-Language\tErlang\tO\nlanguage\tO\tlanguage\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nexpose\tO\texpose\tO\nany\tO\tany\tO\nway\tO\tway\tO\nfor\tO\tfor\tO\nanonymous\tO\tanonymous\tO\nfunctions\tO\tfunctions\tO\nto\tO\tto\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\nself\tO\tself\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nrumour\tO\trumour\tO\nthat\tO\tthat\tO\nCore\tB-Language\tCore\tO\nErlang\tI-Language\tErlang\tO\n(\tO\t(\tO\nan\tO\tan\tO\nintermediate\tO\tintermediate\tO\nbut\tO\tbut\tO\nofficial\tO\tofficial\tO\nrepresentation\tO\trepresentation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\nphases\tO\tphases\tO\n)\tO\t)\tO\ndoes\tO\tdoes\tO\nhave\tO\thave\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nfeature\tO\tfeature\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\nam\tO\tam\tO\nforwarding\tO\tforwarding\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhappen\tO\thappen\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ngenerating\tO\tgenerating\tO\nCore\tB-Language\tCore\tO\nErlang\tI-Language\tErlang\tO\nin\tO\tin\tO\na\tO\ta\tO\nDSL\tB-Language\tDSL\tO\nor\tO\tor\tO\nsimilar\tO\tsimilar\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nwithin\tO\twithin\tO\nreach\tO\treach\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1179655\tO\t1179655\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1179655/\tO\thttps://stackoverflow.com/questions/1179655/\tO\n\t\n\t\nIn\tO\tIn\tO\nErlang/OTP\tB-Language\tErlang/OTP\tO\n17.0-rc1\tB-Version\t17.0-rc1\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nnamed\tO\tnamed\tO\nfun\tO\tfun\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_112\tI-Code_Block\tA_112\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nearlier\tO\tearlier\tO\nversions\tO\tversions\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nexactly\tO\texactly\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nitself\tO\titself\tO\nas\tO\tas\tO\nan\tO\tan\tO\nargument\tO\targument\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_113\tI-Code_Block\tA_113\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10294533\tO\t10294533\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10294533/\tO\thttps://stackoverflow.com/questions/10294533/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndeveloping\tO\tdeveloping\tO\nan\tO\tan\tO\niOS\tB-Operating_System\tiOS\tO\napplication\tO\tapplication\tO\n(\tO\t(\tO\niPad\tB-Device\tiPad\tO\n)\tO\t)\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nmy\tO\tmy\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nequivalent\tO\tequivalent\tO\nof\tO\tof\tO\n1Mb\tO\t1Mb\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\none\tO\tone\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nand\tO\tand\tO\nWhy\tO\tWhy\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nProperty\tB-Data_Structure\tProperty\tO\nlist\tI-Data_Structure\tlist\tO\n,\tO\t,\tO\nXML\tB-Language\tXML\tO\n,\tO\t,\tO\nSQlite\tB-Library\tSQlite\tO\n,\tO\t,\tO\n.\tO\t.\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nour\tO\tour\tO\nanswers\tO\tanswers\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10294533\tO\t10294533\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10294533/\tO\thttps://stackoverflow.com/questions/10294533/\tO\n\t\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nenough\tO\tenough\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nfactors\tO\tfactors\tO\nthat\tO\tthat\tO\naffect\tO\taffect\tO\nthe\tO\tthe\tO\ndecision\tO\tdecision\tO\n.\tO\t.\tO\n\t\nPersistence\tO\tPersistence\tO\nlibraries\tO\tlibraries\tO\nand\tO\tand\tO\nframeworks\tO\tframeworks\tO\nall\tO\tall\tO\nhave\tO\thave\tO\nvery\tO\tvery\tO\nspecial\tO\tspecial\tO\nconstraints\tO\tconstraints\tO\nand\tO\tand\tO\nlearning\tO\tlearning\tO\ncurves\tO\tcurves\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nquestions\tO\tquestions\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ntaken\tO\ttaken\tO\ninto\tO\tinto\tO\naccount\tO\taccount\tO\n:\tO\t:\tO\n\t\nWhat\tO\tWhat\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\nmuch\tO\tmuch\tO\ndata\tO\tdata\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\noften\tO\toften\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nchange\tO\tchange\tO\nand\tO\tand\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\npatterns\tO\tpatterns\tO\n?\tO\t?\tO\n\t\nWhere\tO\tWhere\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\n(\tO\t(\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n)\tO\t)\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsynchronize\tO\tsynchronize\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\niCloud\tB-Application\tiCloud\tO\n,\tO\t,\tO\nDropbox\tB-Application\tDropbox\tO\n,\tO\t,\tO\nother\tO\tother\tO\nservices\tO\tservices\tO\n)\tO\t)\tO\n\t\nWhat\tO\tWhat\tO\nare\tO\tare\tO\ntypical\tO\ttypical\tO\naccess\tO\taccess\tO\npatterns\tO\tpatterns\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nDatabase\tO\tDatabase\tO\nvs\tO\tvs\tO\n.\tO\t.\tO\nwhole\tO\twhole\tO\nfile\tO\tfile\tO\n)\tO\t)\tO\n\t\nShall\tO\tShall\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nbe\tO\tbe\tO\nportable\tO\tportable\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10747489\tO\t10747489\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10747489/\tO\thttps://stackoverflow.com/questions/10747489/\tO\n\t\n\t\nTextView\tB-Library_Class\tTextView\tO\nhas\tO\thas\tO\nsetText(String)\tB-Library_Function\tsetText(String)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nlooking\tO\tlooking\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nDoc\tO\tDoc\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\none\tO\tone\tO\nfor\tO\tfor\tO\nGridLayout\tB-Library_Class\tGridLayout\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nan\tO\tan\tO\nadapter\tB-Class_Name\tadapter\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ninstead\tO\tinstead\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nso\tO\tso\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\none\tO\tone\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10747489\tO\t10747489\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10747489/\tO\thttps://stackoverflow.com/questions/10747489/\tO\n\t\n\t\nGridLayout\tB-Library_Class\tGridLayout\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nViewGroup\tB-Library_Class\tViewGroup\tB-Code_Block\n,\tO\t,\tO\nto\tO\tto\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nadd\tO\tadd\tO\nviews\tO\tviews\tO\n;\tO\t;\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ncalendar\tB-Application\tcalendar\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nGridView\tB-Library_Class\tGridView\tB-Code_Block\n.\tO\t.\tO\n\t\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nGridView\tB-Library_Class\tGridView\tB-Code_Block\n,\tO\t,\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nadapter\tB-Class_Name\tadapter\tO\nwhich\tO\twhich\tO\nextends\tO\textends\tO\nBaseAdapter\tB-Library_Class\tBaseAdapter\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nTextView\tB-Library_Class\tTextView\tB-Code_Block\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ngrid\tO\tgrid\tO\n's\tO\t's\tO\nlayout\tO\tlayout\tO\n.\tO\t.\tO\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42064739\tO\t42064739\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42064739/\tO\thttps://stackoverflow.com/questions/42064739/\tO\n\t\n\t\nWe\tO\tWe\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nmany\tO\tmany\tO\nwrapper\tO\twrapper\tO\nscripts\tO\tscripts\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nspecific\tO\tspecific\tO\nbinary\tB-File_Type\tbinary\tO\nfiles\tO\tfiles\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nalias\tO\talias\tO\nto\tO\tto\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\ndifferent\tO\tdifferent\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nrequirement\tO\trequirement\tO\nis\tO\tis\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nalias\tO\talias\tO\nstring\tB-Data_Type\tstring\tO\nin\tO\tin\tO\nexec\tB-Library_Function\texec\tO\nsystem\tO\tsystem\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\nrun\tO\trun\tO\nthat\tO\tthat\tO\nstring\tB-Data_Type\tstring\tO\ndirectly\tO\tdirectly\tO\nin\tO\tin\tO\nexec\tB-Library_Function\texec\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\ncall\tO\tcall\tO\nfails\tO\tfails\tO\n\t\nEx\tO\tEx\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5341\tI-Code_Block\tQ_5341\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\nexecl\tB-Library_Function\texecl\tO\nsystem\tO\tsystem\tO\ncall\tO\tcall\tO\nfails\tO\tfails\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nis\tO\tis\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nalias\tO\talias\tO\nstring\tB-Data_Type\tstring\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nPATH\tB-Library_Variable\tPATH\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nget\tO\tget\tO\naway\tO\taway\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42064739\tO\t42064739\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42064739/\tO\thttps://stackoverflow.com/questions/42064739/\tO\n\t\n\t\nThe\tO\tThe\tO\nusage\tO\tusage\tO\nof\tO\tof\tO\nksh/bash\tB-Application\tksh/bash\tO\nwith\tO\twith\tO\ncommand\tO\tcommand\tO\nas\tO\tas\tO\noptions\tO\toptions\tO\nworked\tO\tworked\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ncharm\tO\tcharm\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43323560\tO\t43323560\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43323560/\tO\thttps://stackoverflow.com/questions/43323560/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\nfields\tO\tfields\tO\nof\tO\tof\tO\na\tO\ta\tO\nrow\tB-Data_Structure\trow\tO\nwho\tO\twho\tO\nhas\tO\thas\tO\nmin\tB-Library_Function\tmin\tO\nsqrt\tI-Library_Function\tsqrt\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\none\tO\tone\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5540\tI-Code_Block\tQ_5540\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nmin\tB-Library_Function\tmin\tO\nfunction\tO\tfunction\tO\nworks\tO\tworks\tO\nperfectly\tO\tperfectly\tO\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nname\tB-Library_Function\tname\tO\nand\tO\tand\tO\ndist\tB-Library_Function\tdist\tO\nwould\tO\twould\tO\nalways\tO\talways\tO\nreturn\tO\treturn\tO\nfrom\tO\tfrom\tO\nfirst\tO\tfirst\tO\nrow\tB-Data_Structure\trow\tO\n.\tO\t.\tO\n\t\nEg\tO\tEg\tO\n.\tO\t.\tO\n\t\nMin\tB-Library_Function\tMin\tO\nwas\tO\twas\tO\nfrom\tO\tfrom\tO\n5th\tO\t5th\tO\nrow\tB-Data_Structure\trow\tO\neven\tO\teven\tO\nthen\tO\tthen\tO\nname\tB-Library_Function\tname\tO\nand\tO\tand\tO\ndist\tB-Library_Function\tdist\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nof\tO\tof\tO\nfirst\tO\tfirst\tO\nrow\tB-Data_Structure\trow\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43323560\tO\t43323560\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43323560/\tO\thttps://stackoverflow.com/questions/43323560/\tO\n\t\n\t\nmysql\tB-Application\tmysql\tO\nversion\tO\tversion\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6270\tI-Code_Block\tA_6270\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32084760\tO\t32084760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32084760/\tO\thttps://stackoverflow.com/questions/32084760/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nconfiguration\tO\tconfiguration\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\nhardcoded\tO\thardcoded\tO\nresolution\tO\tresolution\tO\nof\tO\tof\tO\n1200x800\tO\t1200x800\tB-Code_Block\n,\tO\t,\tO\nhowever.\tO\thowever.\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nonPrepare\tB-Function_Name\tonPrepare\tB-Code_Block\nI\tO\tI\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nuser-agent\tB-Variable_Name\tuser-agent\tB-Code_Block\nstring\tB-Data_Type\tstring\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nsomeone\tO\tsomeone\tO\nis\tO\tis\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\niPhone\tB-Device\tiPhone\tO\nor\tO\tor\tO\niPad\tB-Device\tiPad\tO\n.\tO\t.\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nresolution\tO\tresolution\tO\naccordingly\tO\taccordingly\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\ngreat\tO\tgreat\tO\nwith\tO\twith\tO\nplain\tO\tplain\tO\nold\tO\told\tO\nprotractor/nodeJS\tB-Library\tprotractor/nodeJS\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmy\tO\tmy\tO\ngrunt\tB-Application\tgrunt\tO\ntask\tO\ttask\tO\n.\tO\t.\tO\nit\tO\tit\tO\ncompletely\tO\tcompletely\tO\nignores\tO\tignores\tO\nthe\tO\tthe\tO\nupdated\tO\tupdated\tO\nresolution\tO\tresolution\tO\nof\tO\tof\tO\n375x667\tB-Value\t375x667\tB-Code_Block\nand\tO\tand\tO\nruns\tO\truns\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\noccurring\tO\toccurring\tO\nwas\tO\twas\tO\na\tO\ta\tO\nversion\tO\tversion\tO\nmismatch\tO\tmismatch\tO\nperhaps\tO\tperhaps\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nunsure\tO\tunsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix/track\tO\tfix/track\tO\nthis\tO\tthis\tO\nbehavior\tO\tbehavior\tO\ndown\tO\tdown\tO\n.\tO\t.\tO\n\t\nIdeas\tO\tIdeas\tO\n?\tO\t?\tO\n\t\nmytestconfig.conf.js\tB-File_Name\tmytestconfig.conf.js\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3891\tI-Code_Block\tQ_3891\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43661057\tO\t43661057\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43661057/\tO\thttps://stackoverflow.com/questions/43661057/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nrecurrence\tO\trecurrence\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5611\tI-Code_Block\tQ_5611\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsolved\tO\tsolved\tO\ndirectly\tO\tdirectly\tO\nwith\tO\twith\tO\na\tO\ta\tO\ntheorem\tO\ttheorem\tO\ncalled\tO\tcalled\tO\n\"\tO\t\"\tO\nSubtraction\tB-Algorithm\tSubtraction\tO\nand\tI-Algorithm\tand\tO\nConquer\tI-Algorithm\tConquer\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nback\tB-Algorithm\tback\tO\nsubstitution\tI-Algorithm\tsubstitution\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nbelow\tO\tbelow\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nalmost\tO\talmost\tO\ncertain\tO\tcertain\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n've\tO\t've\tO\ncommitted\tO\tcommitted\tO\nsome\tO\tsome\tO\nerror\tO\terror\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\nequation\tO\tequation\tO\n..\tO\t..\tO\n.\tO\t.\tO\n,\tO\t,\tO\nbelow\tO\tbelow\tO\nmy\tO\tmy\tO\nattempt\tO\tattempt\tO\n:\tO\t:\tO\n\t\n1st\tO\t1st\tO\niteration\tO\titeration\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5612\tI-Code_Block\tQ_5612\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n2nd\tO\t2nd\tO\niteration\tO\titeration\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5613\tI-Code_Block\tQ_5613\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n3rd\tO\t3rd\tO\niteration\tO\titeration\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5614\tI-Code_Block\tQ_5614\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAttempt\tO\tAttempt\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nequation\tO\tequation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5615\tI-Code_Block\tQ_5615\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46042992\tO\t46042992\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46042992/\tO\thttps://stackoverflow.com/questions/46042992/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nthree\tO\tthree\tO\nobjects\tO\tobjects\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\narray\tB-Data_Structure\tarray\tO\nwhile\tO\twhile\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nvariable\tO\tvariable\tO\nis\tO\tis\tO\nindependent\tO\tindependent\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\nwithout\tO\twithout\tO\nexplicitly\tO\texplicitly\tO\nadding\tO\tadding\tO\n:\tO\t:\tO\nfunction\tB-Code_Block\tfunction\tO\nB()\tI-Code_Block\tB()\tO\n{\tI-Code_Block\t{\tO\nthis.arr\tI-Code_Block\tthis.arr\tO\n=\tI-Code_Block\t=\tO\n[\tB-Code_Block\t[\tO\n]\tB-Code_Block\t]\tO\n;\tB-Code_Block\t;\tO\n}\tI-Code_Block\t}\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6040\tI-Code_Block\tQ_6040\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46042992\tO\t46042992\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46042992/\tO\thttps://stackoverflow.com/questions/46042992/\tO\n\t\n\t\nAn\tO\tAn\tO\nexplanation\tO\texplanation\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nPrototypes\tO\tPrototypes\tO\nare\tO\tare\tO\nlive\tO\tlive\tO\nchains\tO\tchains\tO\nbetween\tO\tbetween\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nB\tB-Function_Name\tB\tO\n's\tO\t's\tO\nprototype\tO\tprototype\tO\nis\tO\tis\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ntone\tO\ttone\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nA\tB-Function_Name\tA\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nprop\tO\tprop\tO\nis\tO\tis\tO\npassed\tO\tpassed\tO\nby\tO\tby\tO\nreference\tO\treference\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nB\tB-Function_Name\tB\tO\ninstance\tO\tinstance\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nA\tB-Function_Name\tA\tO\ninstance\tO\tinstance\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nprototype\tO\tprototype\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmight\tO\tmight\tO\nsound\tO\tsound\tO\nconfusing\tO\tconfusing\tO\nat\tO\tat\tO\nfirst\tO\tfirst\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nmagic\tO\tmagic\tO\nof\tO\tof\tO\nprototypes\tO\tprototypes\tO\nin\tO\tin\tO\nJavaScript\tB-Language\tJavaScript\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncaveat\tO\tcaveat\tO\nof\tO\tof\tO\nprototypal\tO\tprototypal\tO\ninheritance\tO\tinheritance\tO\n.\tO\t.\tO\n\t\nAnything\tO\tAnything\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nprototype\tO\tprototype\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\npassed\tO\tpassed\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\neach\tO\teach\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nmaintain\tO\tmaintain\tO\ndifferent\tO\tdifferent\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\nwe\tO\twe\tO\ninitialise\tO\tinitialise\tO\nour\tO\tour\tO\nobject\tO\tobject\tO\n's\tO\t's\tO\nattributes\tO\tattributes\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconstructor\tO\tconstructor\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\nJS\tB-Language\tJS\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\narrays\tB-Data_Structure\tarrays\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\npassed\tO\tpassed\tO\nby\tO\tby\tO\nreference\tO\treference\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nmake\tO\tmake\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nJS\tB-Language\tJS\tO\n's\tO\t's\tO\nprototype\tO\tprototype\tO\nsystem\tO\tsystem\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nsuggest\tO\tsuggest\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6689\tI-Code_Block\tA_6689\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nwe\tO\twe\tO\nreuse\tO\treuse\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nparent\tO\tparent\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlocalised\tO\tlocalised\tO\narray\tB-Data_Structure\tarray\tO\nin\tO\tin\tO\nour\tO\tour\tO\n\"\tO\t\"\tO\nchild\tO\tchild\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\na\tO\ta\tO\nfirst\tO\tfirst\tO\nglance\tO\tglance\tO\nthis\tO\tthis\tO\nmight\tO\tmight\tO\nlook\tO\tlook\tO\nas\tO\tas\tO\na\tO\ta\tO\nclassic\tO\tclassic\tO\nOOP\tO\tOOP\tO\ninheritance\tO\tinheritance\tO\ncase\tO\tcase\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nbit\tO\tbit\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nread\tO\tread\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nprototypes\tO\tprototypes\tO\nin\tO\tin\tO\nJS\tB-Language\tJS\tO\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4830927\tO\t4830927\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4830927/\tO\thttps://stackoverflow.com/questions/4830927/\tO\n\t\n\t\nHi\tO\tHi\tO\nall\tO\tall\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nCSV\tB-File_Type\tCSV\tO\nopening\tO\topening\tO\nthrough\tO\tthrough\tO\nPHP\tB-Language\tPHP\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nPHP\tB-Language\tPHP\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_339\tI-Code_Block\tQ_339\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nin\tO\tin\tO\nPHP\tB-Language\tPHP\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nin\tO\tin\tO\n.csv\tB-File_Type\t.csv\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nPHP\tB-Language\tPHP\tO\ncode\tO\tcode\tO\nmust\tO\tmust\tO\nwork\tO\twork\tO\neven\tO\teven\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nmissing\tO\tmissing\tO\ncomma\tO\tcomma\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nthe\tO\tthe\tO\nnormal\tO\tnormal\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n.csv\tB-File_Type\t.csv\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_340\tI-Code_Block\tQ_340\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4830927\tO\t4830927\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4830927/\tO\thttps://stackoverflow.com/questions/4830927/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nlines\tO\tlines\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_500\tI-Code_Block\tA_500\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhere\tO\tWhere\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ncity\tO\tcity\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nnever\tO\tnever\tO\nget\tO\tget\tO\n\"\tB-Value\t\"\tO\n9876542\tI-Value\t9876542\tO\n\"\tI-Value\t\"\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nphone\tB-Variable_Name\tphone\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\napply\tO\tapply\tO\nsome\tO\tsome\tO\nlogic\tO\tlogic\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\ncity\tB-Variable_Name\tcity\tO\n,\tO\t,\tO\nand\tO\tand\tO\nto\tO\tto\tO\nskip\tO\tskip\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\n6\tO\t6\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nin\tO\tin\tO\neach\tO\teach\tO\nrow\tB-Data_Structure\trow\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nresetting\tO\tresetting\tO\n$max\tB-Variable_Name\t$max\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\njust\tO\tjust\tO\nset\tO\tset\tO\nit\tO\tit\tO\nonce\tO\tonce\tO\nafter\tO\tafter\tO\nreading\tO\treading\tO\nthe\tO\tthe\tO\nheader\tO\theader\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\ndisplay\tO\tdisplay\tO\nthat\tO\tthat\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nfrom\tO\tfrom\tO\neach\tO\teach\tO\nrow\tB-Data_Structure\trow\tO\nyou\tO\tyou\tO\nread\tO\tread\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4830927\tO\t4830927\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4830927/\tO\thttps://stackoverflow.com/questions/4830927/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_501\tI-Code_Block\tA_501\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n49078144\tO\t49078144\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49078144/\tO\thttps://stackoverflow.com/questions/49078144/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nstructure\tO\tstructure\tO\ncalled\tO\tcalled\tO\nPROCESS\tB-Class_Name\tPROCESS\tO\nin\tO\tin\tO\nC\tB-Language\tC\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nstruct\tB-Data_Structure\tstruct\tO\nshould\tO\tshould\tO\ncontain\tO\tcontain\tO\nthe\tO\tthe\tO\nID(id)\tB-Variable_Name\tID(id)\tO\nand\tO\tand\tO\nwaiting\tO\twaiting\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\nwt\tB-Variable_Name\twt\tO\n)\tO\t)\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprocess\tB-Class_Name\tprocess\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6554\tI-Code_Block\tQ_6554\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nnow\tO\tnow\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nmore\tO\tmore\tO\nthen\tO\tthen\tO\none\tO\tone\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nstruct\tB-Data_Structure\tstruct\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nwhat\tO\twhat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6555\tI-Code_Block\tQ_6555\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\ndynamic\tO\tdynamic\tO\nmemory\tO\tmemory\tO\nallocation\tO\tallocation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6556\tI-Code_Block\tQ_6556\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhat\tO\twhat\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nmistake\tO\tmistake\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n49078144\tO\t49078144\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49078144/\tO\thttps://stackoverflow.com/questions/49078144/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7211\tI-Code_Block\tA_7211\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nallocate\tO\tallocate\tO\nlike\tO\tlike\tO\nthis->\tO\tthis->\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7212\tI-Code_Block\tA_7212\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWrite->\tO\tWrite->\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7213\tI-Code_Block\tA_7213\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRead->\tO\tRead->\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7214\tI-Code_Block\tA_7214\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFree\tB-Library_Function\tFree\tO\nwhen\tO\twhen\tO\ndone.\tO\tdone.\tO\n.\tO\t.\tO\n\t\n/A\tO\t/A\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n49078144\tO\t49078144\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49078144/\tO\thttps://stackoverflow.com/questions/49078144/\tO\n\t\n\t\npt\tB-Variable_Name\tpt\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\npointer\tB-Data_Type\tpointer\tO\nto\tO\tto\tO\nPROCESS\tB-Class_Name\tPROCESS\tB-Code_Block\n,\tO\t,\tO\npt[0]\tB-Variable_Name\tpt[0]\tB-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nPROCESS\tB-Class_Name\tPROCESS\tB-Code_Block\nobject\tO\tobject\tO\npointed\tO\tpointed\tO\nto\tO\tto\tO\nby\tO\tby\tO\npt\tB-Variable_Name\tpt\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n->\tB-Code_Block\t->\tB-Code_Block\noperator\tO\toperator\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nmembers\tO\tmembers\tO\nof\tO\tof\tO\na\tO\ta\tO\nstruct\tB-Data_Structure\tstruct\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nwith\tO\twith\tO\npointers\tB-Data_Type\tpointers\tO\nonly\tO\tonly\tO\n,\tO\t,\tO\notherwise\tO\totherwise\tO\nuse\tO\tuse\tO\n.\tB-Code_Block\t.\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7206\tI-Code_Block\tA_7206\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwould\tO\twould\tO\nbe\tO\tbe\tO\ncorrect.1\tO\tcorrect.1\tO\n\t\nAn\tO\tAn\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\nsay\tO\tsay\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndoing\tO\tdoing\tO\nC\tB-Language\tC\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncast\tO\tcast\tO\nmalloc\tB-Library_Function\tmalloc\tB-Code_Block\nor\tO\tor\tO\ncalloc\tB-Library_Function\tcalloc\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7207\tI-Code_Block\tA_7207\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\ncalloc\tB-Library_Function\tcalloc\tB-Code_Block\nand\tO\tand\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\nfree\tO\tfree\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nlater\tO\tlater\tO\nwith\tO\twith\tO\nfree(pt)\tB-Library_Function\tfree(pt)\tB-Code_Block\n;\tI-Library_Function\t;\tI-Code_Block\n.\tO\t.\tO\n\t\nFotenotes\tO\tFotenotes\tO\n\t\n1Note\tO\t1Note\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nequivalent\tO\tequivalent\tO\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7208\tI-Code_Block\tA_7208\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nset\tO\tset\tO\nid\tB-Variable_Name\tid\tB-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nelement\tO\telement\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7209\tI-Code_Block\tA_7209\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\nmore\tO\tmore\tO\nreadable\tO\treadable\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7210\tI-Code_Block\tA_7210\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28374038\tO\t28374038\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28374038/\tO\thttps://stackoverflow.com/questions/28374038/\tO\n\t\n\t\nSuppose\tO\tSuppose\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3316\tI-Code_Block\tQ_3316\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\ndiamond\tB-User_Interface_Element\tdiamond\tO\narrangement\tO\tarrangement\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nelements\tO\telements\tO\nd\tB-Variable_Name\td\tO\n,\tO\t,\tO\nb\tB-Variable_Name\tb\tO\n,\tO\t,\tO\nf\tB-Variable_Name\tf\tO\n,\tO\t,\tO\nh\tB-Variable_Name\th\tO\n,\tO\t,\tO\ne\tB-Variable_Name\te\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\n1D\tO\t1D\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\narray\tB-Data_Structure\tarray\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmatrix\tB-Data_Structure\tmatrix\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nany\tO\tany\tO\nsize\tO\tsize\tO\nrectangular\tO\trectangular\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nlocation\tO\tlocation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndiamond\tB-User_Interface_Element\tdiamond\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nanywhere\tO\tanywhere\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28374038\tO\t28374038\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28374038/\tO\thttps://stackoverflow.com/questions/28374038/\tO\n\t\n\t\nAssuming\tO\tAssuming\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\n5-elements\tO\t5-elements\tO\ndiamonds\tB-User_Interface_Element\tdiamonds\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nyou\tO\tyou\tO\nspecified\tO\tspecified\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3951\tI-Code_Block\tA_3951\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28374038\tO\t28374038\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28374038/\tO\thttps://stackoverflow.com/questions/28374038/\tO\n\t\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nby\tO\tby\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\nmask\tO\tmask\tO\n(\tO\t(\tO\nlogical\tO\tlogical\tO\nindex\tO\tindex\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\ndiamond\tB-User_Interface_Element\tdiamond\tO\nshape\tO\tshape\tO\nand\tO\tand\tO\na\tO\ta\tO\nspecified\tO\tspecified\tO\ncenter\tO\tcenter\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmask\tO\tmask\tO\nis\tO\tis\tO\nobtained\tO\tobtained\tO\nby\tO\tby\tO\ncomputing\tO\tcomputing\tO\nthe\tO\tthe\tO\nL1\tO\tL1\tO\n(\tO\t(\tO\nor\tO\tor\tO\ntaxicab\tO\ttaxicab\tO\n)\tO\t)\tO\ndistance\tO\tdistance\tO\nfrom\tO\tfrom\tO\neach\tO\teach\tO\nentry\tO\tentry\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndiamond\tB-User_Interface_Element\tdiamond\tO\ncenter\tO\tcenter\tO\nand\tO\tand\tO\ncomparing\tO\tcomparing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nthreshold\tO\tthreshold\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3956\tI-Code_Block\tA_3956\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n995116\tO\t995116\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/995116/\tO\thttps://stackoverflow.com/questions/995116/\tO\n\t\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\n.NET\tB-Application\t.NET\tO\nReactor\tI-Application\tReactor\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nManaged\tB-Library\tManaged\tO\nExtensibility\tI-Library\tExtensibility\tO\nFramework\tI-Library\tFramework\tO\n(\tO\t(\tO\nMEF\tB-Library\tMEF\tO\n)\tO\t)\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nhost\tO\thost\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nload\tO\tload\tO\nadpators\tO\tadpators\tO\nand\tO\tand\tO\naddins\tO\taddins\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nforum\tO\tforum\tO\nsupport\tO\tsupport\tO\nfrom\tO\tfrom\tO\n.NET\tB-Application\t.NET\tO\nReactor\tI-Application\tReactor\tO\n,\tO\t,\tO\nso\tO\tso\tO\nstackoverlow\tB-Website\tstackoverlow\tO\nseems\tO\tseems\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nplace\tO\tplace\tO\nto\tO\tto\tO\nask\tO\task\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\n:)\tO\t:)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n995116\tO\t995116\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/995116/\tO\thttps://stackoverflow.com/questions/995116/\tO\n\t\n\t\nGiven\tO\tGiven\tO\nthe\tO\tthe\tO\nspecificity\tO\tspecificity\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nissue\tO\tissue\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nconsider\tO\tconsider\tO\ncontacting\tO\tcontacting\tO\nEziriz\tB-User_Name\tEziriz\tO\ndirectly\tO\tdirectly\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nobfuscate\tO\tobfuscate\tO\nthe\tO\tthe\tO\nmetadata\tO\tmetadata\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntypes\tO\ttypes\tO\nexported\tO\texported\tO\neverything\tO\teverything\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nMind\tO\tMind\tO\nthat\tO\tthat\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nobfuscate\tO\tobfuscate\tO\nthe\tO\tthe\tO\nmetadata\tO\tmetadata\tO\nof\tO\tof\tO\na\tO\ta\tO\npublic\tB-Data_Type\tpublic\tO\ntype\tO\ttype\tO\nused\tO\tused\tO\nelsewhere\tO\telsewhere\tO\nthings\tO\tthings\tO\nwill\tO\twill\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\nbreak\tO\tbreak\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40345054\tO\t40345054\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40345054/\tO\thttps://stackoverflow.com/questions/40345054/\tO\n\t\n\t\nAs\tO\tAs\tO\nper\tO\tper\tO\nmy\tO\tmy\tO\nrequirement\tO\trequirement\tO\nmain\tO\tmain\tO\npage\tO\tpage\tO\ncontains\tO\tcontains\tO\nTextField\tB-Library_Class\tTextField\tO\nand\tO\tand\tO\nradio\tB-User_Interface_Element\tradio\tO\nbutton\tI-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nScenario\tO\tScenario\tO\n1\tO\t1\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nenter\tO\tenter\tO\n\"\tO\t\"\tO\nlocationno\tB-Variable_Name\tlocationno\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nTextField\tB-Library_Class\tTextField\tO\nand\tO\tand\tO\nsubmit\tO\tsubmit\tO\nservlet\tB-Library\tservlet\tO\nwill\tO\twill\tO\ncall\tO\tcall\tO\nDB\tO\tDB\tO\nand\tO\tand\tO\nfetch\tO\tfetch\tO\nrecords\tO\trecords\tO\nfor\tO\tfor\tO\nentered\tO\tentered\tO\nlocationno\tB-Variable_Name\tlocationno\tO\nfrom\tO\tfrom\tO\nDatabase\tO\tDatabase\tO\nand\tO\tand\tO\nforward\tB-Library_Function\tforward\tO\nto\tO\tto\tO\nlocationDetails\tB-File_Name\tlocationDetails\tO\npage.its\tO\tpage.its\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\n\t\nScenario\tO\tScenario\tO\n2\tO\t2\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nenter\tO\tenter\tO\nenters\tO\tenters\tO\nlocationno\tO\tlocationno\tO\nin\tO\tin\tO\nTextField\tB-Library_Class\tTextField\tO\nsimultaneously\tO\tsimultaneously\tO\nclick\tO\tclick\tO\nradio\tB-User_Interface_Element\tradio\tO\nbutton\tI-User_Interface_Element\tbutton\tO\nservlet\tB-Library\tservlet\tO\nwill\tO\twill\tO\ncall\tO\tcall\tO\nDB\tO\tDB\tO\nand\tO\tand\tO\nfetch\tO\tfetch\tO\nall\tO\tall\tO\ndetails\tO\tdetails\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nparticular\tO\tparticular\tO\nlocationno\tB-Variable_Name\tlocationno\tO\nand\tO\tand\tO\nforward\tB-Library_Function\tforward\tO\nto\tO\tto\tO\nlocationAllDetails\tB-File_Name\tlocationAllDetails\tO\npage.Here\tO\tpage.Here\tO\nit\tO\tit\tO\nis\tO\tis\tO\nfetching\tO\tfetching\tO\nrecords\tO\trecords\tO\nproper\tO\tproper\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nalways\tO\talways\tO\nforward\tB-Library_Function\tforward\tO\nto\tO\tto\tO\nlocationDetails\tB-File_Name\tlocationDetails\tO\npage\tO\tpage\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nlocationAllDetails\tB-File_Name\tlocationAllDetails\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\nsubmit\tO\tsubmit\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nafter\tO\tafter\tO\nenter\tO\tenter\tO\nTextField\tB-Library_Class\tTextField\tO\nand\tO\tand\tO\nradio\tB-User_Interface_Element\tradio\tO\nbutton\tI-User_Interface_Element\tbutton\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlog\tO\tlog\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\nOutputtype\tO\tOutputtype\tO\n(\tO\t(\tO\nradio\tB-User_Interface_Element\tradio\tO\nbutton\tI-User_Interface_Element\tbutton\tO\nname\tO\tname\tO\n)\tO\t)\tO\nas\tO\tas\tO\n\"\tB-Value\t\"\tO\nALL\tI-Value\tALL\tO\n\"\tI-Value\t\"\tO\nbut\tO\tbut\tO\nstill\tO\tstill\tO\nit\tO\tit\tO\nalways\tO\talways\tO\nforward\tB-Library_Function\tforward\tO\nto\tO\tto\tO\nlocationDetails\tB-File_Name\tlocationDetails\tO\npage\tO\tpage\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nlocationAllDetails\tB-User_Interface_Element\tlocationAllDetails\tO\npage\tO\tpage\tO\n\t\nwhat\tO\twhat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nmy\tO\tmy\tO\ndoubt\tO\tdoubt\tO\nis\tO\tis\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5097\tI-Code_Block\tQ_5097\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlease\tO\tPlease\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\nand\tO\tand\tO\nhelp\tO\thelp\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5098\tI-Code_Block\tQ_5098\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40345054\tO\t40345054\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40345054/\tO\thttps://stackoverflow.com/questions/40345054/\tO\n\t\n\t\nAfter\tO\tAfter\tO\nevery\tO\tevery\tO\nforward\tB-Library_Function\tforward\tB-Code_Block\ndo\tO\tdo\tO\na\tO\ta\tO\nreturn\tB-Code_Block\treturn\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5790\tI-Code_Block\tA_5790\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30021696\tO\t30021696\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30021696/\tO\thttps://stackoverflow.com/questions/30021696/\tO\n\t\n\t\nSay\tO\tSay\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\naccessing\tO\taccessing\tO\nwww.mywebsite.com\tO\twww.mywebsite.com\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwebsite\tO\twebsite\tO\nfetches\tO\tfetches\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nasset\tO\tasset\tO\n:\tO\t:\tO\n\t\nhttp://www.mywebsite.com/styles/app.css\tO\thttp://www.mywebsite.com/styles/app.css\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\nexactly\tO\texactly\tO\nas\tO\tas\tO\nI\tO\tI\tO\nnormally\tO\tnormally\tO\nwould\tO\twould\tO\n,\tO\t,\tO\nwith\tO\twith\tO\none\tO\tone\tO\nexception\tO\texception\tO\n:\tO\t:\tO\n\t\nWhenever\tO\tWhenever\tO\nmy\tO\tmy\tO\nbrowser\tB-Application\tbrowser\tO\nmakes\tO\tmakes\tO\na\tO\ta\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\n/styles/app.css\tB-File_Name\t/styles/app.css\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nfetching\tO\tfetching\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nhttp://www.mywebsite.com\tO\thttp://www.mywebsite.com\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nfetch\tO\tfetch\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nhttp://localhost:3000/mywebsite/\tO\thttp://localhost:3000/mywebsite/\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ninstead\tO\tinstead\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nfetching\tO\tfetching\tO\n:\tO\t:\tO\n\t\nhttp://localhost:3000/mywebsite/styles/app.css\tO\thttp://localhost:3000/mywebsite/styles/app.css\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\npossible\tO\tpossible\tO\nwith\tO\twith\tO\nnginx\tB-Application\tnginx\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nserver\tB-Application\tserver\tO\nconfig\tO\tconfig\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3603\tI-Code_Block\tQ_3603\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\neven\tO\teven\tO\nafter\tO\tafter\tO\nrestarting\tO\trestarting\tO\nnginx\tB-Application\tnginx\tO\n(\tO\t(\tO\nsudo\tB-Code_Block\tsudo\tB-Code_Block\nnginx\tI-Code_Block\tnginx\tI-Code_Block\n-s\tI-Code_Block\t-s\tI-Code_Block\nquit\tI-Code_Block\tquit\tI-Code_Block\n,\tO\t,\tO\nsudo\tB-Code_Block\tsudo\tB-Code_Block\nnginx\tI-Code_Block\tnginx\tI-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nchanged\tO\tchanged\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nbrowse\tO\tbrowse\tO\nto\tO\tto\tO\nwww.mywebsite.com/styles/app.css\tO\twww.mywebsite.com/styles/app.css\tO\n,\tO\t,\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nold\tO\told\tO\napp.css\tB-File_Name\tapp.css\tO\nbeing\tO\tbeing\tO\nretrieved\tO\tretrieved\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nmy\tO\tmy\tO\nlocal\tO\tlocal\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46568047\tO\t46568047\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46568047/\tO\thttps://stackoverflow.com/questions/46568047/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbig\tO\tbig\tO\ndataframe\tB-Data_Structure\tdataframe\tO\nin\tO\tin\tO\nR\tB-Language\tR\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsome\tO\tsome\tO\nnew\tO\tnew\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nexisting\tO\texisting\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nrow\tB-Data_Structure\trow\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nvalue\tO\tvalue\tO\ndepends\tO\tdepends\tO\nalso\tO\talso\tO\non\tO\ton\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nrows\tB-Data_Structure\trows\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\ndummy\tO\tdummy\tO\ndata\tO\tdata\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6128\tI-Code_Block\tQ_6128\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nis\tO\tis\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nrow\tB-Data_Structure\trow\tO\n(\tO\t(\tO\nuniquely\tO\tuniquely\tO\nidentified\tO\tidentified\tO\nby\tO\tby\tO\ndocnr\tB-Variable_Name\tdocnr\tO\n)\tO\t)\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\ndate\tB-Variable_Name\tdate\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nclient\tB-Variable_Name\tclient\tO\nid\tI-Variable_Name\tid\tO\n,\tO\t,\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nrows\tB-Data_Structure\trows\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nclientid\tB-Variable_Name\tclientid\tO\n,\tO\t,\tO\nand\tO\tand\tO\nan\tO\tan\tO\nearlier\tO\tearlier\tO\ndate\tB-Variable_Name\tdate\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncalculate\tO\tcalculate\tO\nsome\tO\tsome\tO\nthings\tO\tthings\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nsubset\tO\tsubset\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nrows\tB-Data_Structure\trows\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nsubset\tO\tsubset\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\nof\tO\tof\tO\nall\tO\tall\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nsubset\tO\tsubset\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6129\tI-Code_Block\tQ_6129\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\n,\tO\t,\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfor\tB-Code_Block\tfor\tO\nloop\tO\tloop\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6130\tI-Code_Block\tQ_6130\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nloop\tO\tloop\tO\nis\tO\tis\tO\nobviously\tO\tobviously\tO\nvery\tO\tvery\tO\nslow\tO\tslow\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ndataframe\tB-Data_Structure\tdataframe\tO\nof\tO\tof\tO\n700k\tO\t700k\tO\nrows\tB-Data_Structure\trows\tO\n(\tO\t(\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nto\tO\tto\tO\ncompletion\tO\tcompletion\tO\nyet\tO\tyet\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nparallel\tO\tparallel\tO\nimplementation\tO\timplementation\tO\nwith\tO\twith\tO\ndoSNOW\tB-Library\tdoSNOW\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nscale\tO\tscale\tO\nmuch\tO\tmuch\tO\nbetter\tO\tbetter\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nsql\tB-Language\tsql\tO\nquery\tO\tquery\tO\nwith\tO\twith\tO\nsqldf\tB-Library\tsqldf\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nsubqueries\tO\tsubqueries\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nreturn\tO\treturn\tO\n1\tO\t1\tO\nvalue\tO\tvalue\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nmean\tO\tmean\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nall\tO\tall\tO\nover\tO\tover\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nnew\tO\tnew\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\n(\tO\t(\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nmany\tO\tmany\tO\nmore\tO\tmore\tO\nderivative\tO\tderivative\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nlater\tO\tlater\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncame\tO\tcame\tO\nacross\tO\tacross\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nwith\tO\twith\tO\nSQL\tB-Language\tSQL\tO\nobjects\tO\tobjects\tO\n(\tO\t(\tO\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nget\tO\tget\tO\nmultiple\tO\tmultiple\tO\nvalues\tO\tvalues\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nsubquery\tO\tsubquery\tO\n?\tO\t?\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nobjects\tO\tobjects\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nR\tB-Language\tR\tO\n's\tO\t's\tO\nsqldf\tB-Library\tsqldf\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\njoins\tO\tjoins\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nquery\tO\tquery\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ninformation\tO\tinformation\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nstarted\tO\tstarted\tO\nin\tO\tin\tO\nR\tB-Language\tR\tO\n(\tO\t(\tO\nand\tO\tand\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nfamiliar\tO\tfamiliar\tO\nwith\tO\twith\tO\nsql\tB-Language\tsql\tO\n)\tO\t)\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nobliged\tO\tobliged\tO\nif\tO\tif\tO\nsomeone\tO\tsomeone\tO\nknew\tO\tknew\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46568047\tO\t46568047\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46568047/\tO\thttps://stackoverflow.com/questions/46568047/\tO\n\t\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\nbase\tO\tbase\tO\nR\tB-Language\tR\tO\ncode\tO\tcode\tO\nusing\tO\tusing\tO\nave\tB-Library_Function\tave\tB-Code_Block\nfor\tO\tfor\tO\ngrouping\tO\tgrouping\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6754\tI-Code_Block\tA_6754\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nreturns\tO\treturns\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6755\tI-Code_Block\tA_6755\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nwil\tO\twil\tO\nperform\tO\tperform\tO\nquickly\tO\tquickly\tO\nenough\tO\tenough\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndescribed\tO\tdescribed\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\ndata.table\tB-Library\tdata.table\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nrecommended\tO\trecommended\tO\npackage\tO\tpackage\tO\nfor\tO\tfor\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\ndatases\tO\tdatases\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nbillions\tO\tbillions\tO\nof\tO\tof\tO\nrows\tB-Data_Structure\trows\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nanalog\tO\tanalog\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\ndata.table\tB-Library\tdata.table\tB-Code_Block\nwould\tO\twould\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6756\tI-Code_Block\tA_6756\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhere\tO\twhere\tO\nseq_len(.N)\tB-Library_Function\tseq_len(.N)\tB-Code_Block\nfills\tO\tfills\tO\nthe\tO\tthe\tO\nrole\tO\trole\tO\nof\tO\tof\tO\nseq_along\tB-Library_Function\tseq_along\tB-Code_Block\nand\tO\tand\tO\nshift\tB-Library_Function\tshift\tB-Code_Block\nfills\tO\tfills\tO\nthe\tO\tthe\tO\nrole\tO\trole\tO\nof\tO\tof\tO\nc\tB-Code_Block\tc\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nhead\tI-Code_Block\thead\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncumsum(x)\tB-Code_Block\tcumsum(x)\tB-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n-1\tI-Code_Block\t-1\tI-Code_Block\n)\tB-Code_Block\t)\tB-Code_Block\n)\tB-Code_Block\t)\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\ndata.table\tB-Library_Class\tdata.table\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nvalues\tO\tvalues\tO\nas\tO\tas\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6757\tI-Code_Block\tA_6757\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ndata\tO\tdata\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6758\tI-Code_Block\tA_6758\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46568047\tO\t46568047\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46568047/\tO\thttps://stackoverflow.com/questions/46568047/\tO\n\t\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\neasily\tO\teasily\tO\nwith\tO\twith\tO\ndplyr\tB-Library\tdplyr\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6759\tI-Code_Block\tA_6759\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ndf1\tB-Variable_Name\tdf1\tO\nnow\tO\tnow\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42873050\tO\t42873050\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42873050/\tO\thttps://stackoverflow.com/questions/42873050/\tO\n\t\n\t\nRecently\tO\tRecently\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nZSL\tO\tZSL\tB-Code_Block\nsession\tO\tsession\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ncamera\tB-Application\tcamera\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncamera2\tB-Library\tcamera2\tB-Code_Block\nAPI\tI-Library\tAPI\tI-Code_Block\nfrom\tO\tfrom\tO\nandroid\tB-Operating_System\tandroid\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\nwith\tO\twith\tO\na\tO\ta\tO\nLEVEL-3\tO\tLEVEL-3\tB-Code_Block\nhardware\tO\thardware\tO\nlevel\tO\tlevel\tO\nwhich\tO\twhich\tO\nsupports\tO\tsupports\tO\nYUV_REPROCESSING\tB-Code_Block\tYUV_REPROCESSING\tB-Code_Block\n.\tO\t.\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ntemplate\tO\ttemplate\tO\n:\tO\t:\tO\n\t\nAll\tO\tAll\tO\nthe\tO\tthe\tO\ntables\tB-Data_Structure\ttables\tO\nand\tO\tand\tO\ninformation\tO\tinformation\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nReprocessableCaptureSession\tB-Library_Class\tReprocessableCaptureSession\tO\ndocumentation\tO\tdocumentation\tO\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nReprocessableCatureSession\tB-Library_Class\tReprocessableCatureSession\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nvalues\tO\tvalues\tO\n:\tO\t:\tO\n\t\nInput\tO\tInput\tO\nconfiguration\tO\tconfiguration\tO\nin\tO\tin\tO\nYUV\tB-File_Type\tYUV\tB-Code_Block\nformat\tO\tformat\tO\nwith\tO\twith\tO\n4608\tB-Value\t4608\tO\nx\tI-Value\tx\tO\n3456\tI-Value\t3456\tO\nSize\tO\tSize\tO\n(\tO\t(\tO\nThe\tO\tThe\tO\none\tO\tone\tO\nreturned\tO\treturned\tO\nby\tO\tby\tO\nmy\tO\tmy\tO\nCameraCharacteristics\tB-Library_Class\tCameraCharacteristics\tB-Code_Block\nwhen\tO\twhen\tO\ncalling\tO\tcalling\tO\ngetInputSizes(ImageFormat.YUV_420_888)\tB-Library_Function\tgetInputSizes(ImageFormat.YUV_420_888)\tB-Code_Block\n\t\nYUV_420_888\tB-File_Type\tYUV_420_888\tB-Code_Block\nImageReader\tB-Library_Class\tImageReader\tI-Code_Block\nSurface\tI-Library_Class\tSurface\tI-Code_Block\nwith\tO\twith\tO\n4608\tO\t4608\tO\nx\tO\tx\tO\n3456\tO\t3456\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nJPEG\tB-File_Type\tJPEG\tB-Code_Block\nImageReader\tB-Library_Class\tImageReader\tI-Code_Block\nSurface\tI-Library_Class\tSurface\tI-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n(\tO\t(\tO\nWith\tO\tWith\tO\na\tO\ta\tO\nmaximum\tO\tmaximum\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\n4608x3456\tB-Value\t4608x3456\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nPreview\tO\tPreview\tO\nSurface\tB-Library_Class\tSurface\tB-Code_Block\nin\tO\tin\tO\nYUV\tB-File_Type\tYUV\tO\nFormat\tO\tFormat\tO\n.\tO\t.\tO\n\t\nRAW\tB-File_Type\tRAW\tB-Code_Block\nImageReader\tB-Library_Class\tImageReader\tI-Code_Block\nSurface\tI-Library_Class\tSurface\tI-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nmax\tO\tmax\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n(\tO\t(\tO\nRAW\tB-File_Type\tRAW\tO\nalways\tO\talways\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsensor\tO\tsensor\tO\ndevice\tO\tdevice\tO\nsize\tO\tsize\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthis\tO\tthis\tO\nvalues\tO\tvalues\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nReprocessableCaptureSession\tB-Library_Class\tReprocessableCaptureSession\tB-Code_Block\nan\tO\tan\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nattached\tO\tattached\tO\nmy\tO\tmy\tO\nYUV_420_888\tB-File_Type\tYUV_420_888\tB-Code_Block\nSurface\tB-Library_Class\tSurface\tI-Code_Block\nto\tO\tto\tO\nmy\tO\tmy\tO\npreview\tO\tpreview\tO\nCaptureRequest\tB-Library_Class\tCaptureRequest\tB-Code_Block\nto\tO\tto\tO\ncapture\tO\tcapture\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nimages\tB-User_Interface_Element\timages\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npreview\tO\tpreview\tO\nin\tO\tin\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nclass\tO\tclass\tO\nwhich\tO\twhich\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\na\tO\ta\tO\nRingQueue\tB-Library_Class\tRingQueue\tO\nof\tO\tof\tO\nimages\tB-User_Interface_Element\timages\tO\nand\tO\tand\tO\nCaptureRequest\tB-Library_Class\tCaptureRequest\tB-Code_Block\nwhere\tO\twhere\tO\nI\tO\tI\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nX\tB-Variable_Name\tX\tO\nimages\tB-User_Interface_Element\timages\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\npreview\tO\tpreview\tO\n,\tO\t,\tO\nready\tO\tready\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ntaked\tO\ttaked\tO\nand\tO\tand\tO\nreprocessed\tO\treprocessed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwant(ZSL)\tO\twant(ZSL)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nreprocess\tO\treprocess\tO\nimages\tO\timages\tO\nfrom\tO\tfrom\tO\nYUV\tB-File_Type\tYUV\tB-Code_Block\nto\tO\tto\tO\nRAW\tB-File_Type\tRAW\tB-Code_Block\n,\tO\t,\tO\nto\tO\tto\tO\nJPEG\tB-File_Type\tJPEG\tB-Code_Block\n,\tO\t,\tO\nchange\tO\tchange\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\neverything\tO\teverything\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nappear\tO\tappear\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nYUV\tB-File_Type\tYUV\tB-Code_Block\nimages\tB-User_Interface_Element\timages\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncaptured\tO\tcaptured\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nalways\tO\talways\tO\nat\tO\tat\tO\nMAX\tB-Library_Variable\tMAX\tB-Code_Block\nSIZE(4608x3456)\tI-Library_Variable\tSIZE(4608x3456)\tI-Code_Block\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nJPEG\tB-File_Type\tJPEG\tB-Code_Block\nfrom\tO\tfrom\tO\nthem\tO\tthem\tO\nor\tO\tor\tO\nprocess\tO\tprocess\tO\nthem\tO\tthem\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nnative\tO\tnative\tO\nlibraries\tO\tlibraries\tO\nwhich\tO\twhich\tO\nuses\tO\tuses\tO\nYUV\tB-File_Type\tYUV\tO\nbytearrays\tB-Data_Structure\tbytearrays\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nmy\tO\tmy\tO\nimage\tB-User_Interface_Element\timage\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nMAX\tB-Library_Variable\tMAX\tO\nSize\tI-Library_Variable\tSize\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndocumentation\tO\tdocumentation\tO\nsays\tO\tsays\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\n\"\tO\t\"\tO\nSame\tO\tSame\tO\nas\tO\tas\tO\ninput\tO\tinput\tO\n\"\tO\t\"\tO\nTarget\tO\tTarget\tB-Code_Block\n(\tO\t(\tI-Code_Block\nYUV\tB-File_Type\tYUV\tI-Code_Block\nin\tO\tin\tI-Code_Block\nthis\tO\tthis\tI-Code_Block\ncase\tO\tcase\tI-Code_Block\n)\tO\t)\tI-Code_Block\nsize\tO\tsize\tO\ncan\tO\tcan\tO\ngo\tO\tgo\tO\nfrom\tO\tfrom\tO\nminimum\tO\tminimum\tO\nto\tO\tto\tO\nMAXIMUM\tB-Library_Variable\tMAXIMUM\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nindicate\tO\tindicate\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmax\tO\tmax\tO\nsize\tO\tsize\tO\ngiven\tO\tgiven\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nhardware\tO\thardware\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthese\tO\tthese\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nmean\tO\tmean\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nto\tO\tto\tO\nmore\tO\tmore\tO\ncodes\tO\tcodes\tO\nwhich\tO\twhich\tO\nuse\tO\tuse\tO\nCamera\tB-Library_Class\tCamera\tB-Code_Block\nAPI\tI-Library_Class\tAPI\tI-Code_Block\n2\tI-Library_Class\t2\tI-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nabout\tO\tabout\tO\nReprocessableCaptureRequest\tB-Library_Class\tReprocessableCaptureRequest\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nbit\tO\tbit\tO\npoor\tO\tpoor\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\non\tO\ton\tO\ninternet\tO\tinternet\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nCTS\tB-Application\tCTS\tB-Code_Block\nrepository\tO\trepository\tI-Code_Block\nfrom\tO\tfrom\tO\nGoogle\tB-Organization\tGoogle\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsolved\tO\tsolved\tO\njust\tO\tjust\tO\nfinding\tO\tfinding\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nmy\tO\tmy\tO\nSession\tB-Library_Class\tSession\tB-Code_Block\nwith\tO\twith\tO\na\tO\ta\tO\nlower\tO\tlower\tO\nYUV\tB-File_Type\tYUV\tB-Code_Block\nimageReader\tB-Library_Class\timageReader\tI-Code_Block\nsession\tO\tsession\tO\nor\tO\tor\tO\nlooking\tO\tlooking\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\nto\tO\tto\tO\nresize\tO\tresize\tO\na\tO\ta\tO\nYUV\tB-File_Type\tYUV\tB-Code_Block\nByte[]\tB-Data_Type\tByte[]\tI-Code_Block\nto\tO\tto\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nwidth\tO\twidth\tO\nand\tO\tand\tO\nheight\tO\theight\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntime\tO\ttime\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9965761\tO\t9965761\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9965761/\tO\thttps://stackoverflow.com/questions/9965761/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nhard-coded\tO\thard-coded\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\neach\tO\teach\tO\nlist\tB-Data_Structure\tlist\tO\nitem\tO\titem\tO\nof\tO\tof\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nan\tO\tan\tO\nID\tB-Variable_Name\tID\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\njQuery\tB-Library\tjQuery\tO\ngenerate\tO\tgenerate\tO\nlist\tB-Data_Structure\tlist\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nanother\tO\tanother\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nand\tO\tand\tO\nset\tO\tset\tO\nas\tO\tas\tO\ntheir\tO\ttheir\tO\ntext\tO\ttext\tO\ncontent\tO\tcontent\tO\nthe\tO\tthe\tO\nID\tB-Variable_Name\tID\tO\nattribute\tO\tattribute\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nhard-coded\tO\thard-coded\tO\nlist\tB-Data_Structure\tlist\tO\n's\tO\t's\tO\nitems\tO\titems\tO\n:\tO\t:\tO\n\t\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nhard-coded\tO\thard-coded\tO\nlist\tB-Data_Structure\tlist\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_860\tI-Code_Block\tQ_860\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\njQuery-generated\tB-Library\tjQuery-generated\tO\nlist\tB-Data_Structure\tlist\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_861\tI-Code_Block\tQ_861\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\njQ\tB-Library\tjQ\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ngallery\tO\tgallery\tO\nitems\tO\titems\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_862\tI-Code_Block\tQ_862\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n..\tO\t..\tO\n.\tO\t.\tO\nhere\tO\there\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ntrouble\tO\ttrouble\tO\n:\tO\t:\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nget\tO\tget\tO\njQuery\tB-Library\tjQuery\tO\nto\tO\tto\tO\nget\tO\tget\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nitems\tO\titems\tO\n'\tO\t'\tO\nIDs\tB-Variable_Name\tIDs\tO\nas\tO\tas\tO\nit\tO\tit\tO\ngenerates\tO\tgenerates\tO\nthe\tO\tthe\tO\nnav\tO\tnav\tO\nlist\tB-Data_Structure\tlist\tO\n(\tO\t(\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_863\tI-Code_Block\tQ_863\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\ngenerating\tO\tgenerating\tO\nthe\tO\tthe\tO\nnav\tO\tnav\tO\nlist\tB-Data_Structure\tlist\tO\nhowever\tO\thowever\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nin\tO\tin\tO\neach\tO\teach\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nblindspot\tO\tblindspot\tO\nwith\tO\twith\tO\nregard\tO\tregard\tO\nto\tO\tto\tO\nvar\tB-Data_Type\tvar\tO\nListItemIndex\tB-Variable_Name\tListItemIndex\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_864\tI-Code_Block\tQ_864\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\ngenerates\tO\tgenerates\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nbut\tO\tbut\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nitems\tO\titems\tO\n'\tO\t'\tO\ncontent\tO\tcontent\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\n'\tB-Value\t'\tO\nSlide\tI-Value\tSlide\tO\n#1\tI-Value\t#1\tO\nof\tI-Value\tof\tO\n3\tI-Value\t3\tO\nitems\tI-Value\titems\tO\n'\tI-Value\t'\tO\n.\tO\t.\tO\n\t\nMany\tO\tMany\tO\nthanks\tO\tthanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nsvs\tB-User_Name\tsvs\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9965761\tO\t9965761\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9965761/\tO\thttps://stackoverflow.com/questions/9965761/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\njsFiddle\tB-Application\tjsFiddle\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1259\tI-Code_Block\tA_1259\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\nbasics\tO\tbasics\tO\nright\tO\tright\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nappending\tO\tappending\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\neach\tB-Function_Name\teach\tB-Code_Block\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nexecute\tO\texecute\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nlist\tB-Data_Structure\tlist\tO\nitem\tO\titem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nitem\tO\titem\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nbe\tO\tbe\tO\naccessed\tO\taccessed\tO\nwith\tO\twith\tO\n$(this)\tB-Code_Block\t$(this)\tB-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9965761\tO\t9965761\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9965761/\tO\thttps://stackoverflow.com/questions/9965761/\tO\n\t\n\t\ni\tO\ti\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nappend\tO\tappend\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nconstructing\tO\tconstructing\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nand\tO\tand\tO\nappend\tO\tappend\tO\nit\tO\tit\tO\nwhen\tO\twhen\tO\nits\tO\tits\tO\nfinished\tO\tfinished\tO\n.\tO\t.\tO\n\t\nits\tO\tits\tO\nmuch\tO\tmuch\tO\nfaster\tO\tfaster\tO\nthen\tO\tthen\tO\nappend\tO\tappend\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nli\tB-HTML_XML_Tag\tli\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ngallery\tO\tgallery\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1261\tI-Code_Block\tA_1261\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ndemo\tO\tdemo\tO\n:\tO\t:\tO\n\t\nhttp://jsfiddle.net/meo/yKgSf/​\tO\thttp://jsfiddle.net/meo/yKgSf/​\tO\n\t\nor\tO\tor\tO\nthe\tO\tthe\tO\nfancy\tO\tfancy\tO\nversion\tO\tversion\tO\n(\tO\t(\tO\nbecause\tO\tbecause\tO\nconstructing\tO\tconstructing\tO\nlong\tO\tlong\tO\nstrings\tB-Data_Type\tstrings\tO\nwith\tO\twith\tO\nJS\tB-Language\tJS\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nslow\tO\tslow\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1262\tI-Code_Block\tA_1262\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ndemo\tO\tdemo\tO\n:\tO\t:\tO\n\t\nhttp://jsfiddle.net/meo/yKgSf/2/\tO\thttp://jsfiddle.net/meo/yKgSf/2/\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nHaving\tO\tHaving\tO\nonly\tO\tonly\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nas\tO\tas\tO\nID\tB-Variable_Name\tID\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nW3C\tB-Organization\tW3C\tO\nvalid\tO\tvalid\tO\nin\tO\tin\tO\nHTML4\tB-Language\tHTML4\tO\n.\tO\t.\tO\n\t\nThats\tO\tThats\tO\nwhy\tO\twhy\tO\ni\tO\ti\tO\nchoose\tO\tchoose\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\nalternatively\tO\talternatively\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nID\tB-Variable_Name\tID\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30003070\tO\t30003070\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30003070/\tO\thttps://stackoverflow.com/questions/30003070/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\nmultiple\tO\tmultiple\tO\nimages\tB-User_Interface_Element\timages\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ngallery\tO\tgallery\tO\n\t\ntill\tO\ttill\tO\ntoday\tO\ttoday\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\nsingle\tO\tsingle\tO\nimages\tB-User_Interface_Element\timages\tO\n\t\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3593\tI-Code_Block\tQ_3593\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nmodels\tO\tmodels\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3594\tI-Code_Block\tQ_3594\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nmy\tO\tmy\tO\nview\tO\tview\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3595\tI-Code_Block\tQ_3595\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nfor\tO\tfor\tO\nuploading\tO\tuploading\tO\nsingle\tO\tsingle\tO\nimages\tB-User_Interface_Element\timages\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\nmultiple\tO\tmultiple\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nimages\tB-Variable_Name\timages\tO\nfields\tO\tfields\tO\non\tO\ton\tO\ndatabase\tO\tdatabase\tO\ndid\tO\tdid\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nmore\tO\tmore\tO\nimages\tB-Variable_Name\timages\tO\nfields\tO\tfields\tO\nfor\tO\tfor\tO\nupload\tO\tupload\tO\nmultiple\tO\tmultiple\tO\nimages\tB-User_Interface_Element\timages\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30003070\tO\t30003070\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30003070/\tO\thttps://stackoverflow.com/questions/30003070/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\nmultiple\tO\tmultiple\tO\nimages\tB-User_Interface_Element\timages\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nso\tO\tso\tO\nmany\tO\tmany\tO\nplugins\tO\tplugins\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThis\tO\tThis\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nsimple\tO\tsimple\tO\nand\tO\tand\tO\nvery\tO\tvery\tO\ngreat\tO\tgreat\tO\nplugin\tO\tplugin\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\nused\tO\tused\tO\nit\tO\tit\tO\nin\tO\tin\tO\nmay\tO\tmay\tO\nprojects\tO\tprojects\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30003070\tO\t30003070\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30003070/\tO\thttps://stackoverflow.com/questions/30003070/\tO\n\t\n\t\nYou\tO\tYou\tO\ngot\tO\tgot\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\n<input\tB-Code_Block\t<input\tB-Code_Block\ntype=\"file\"\tI-Code_Block\ttype=\"file\"\tI-Code_Block\nname=\"userfile\">\tI-Code_Block\tname=\"userfile\">\tI-Code_Block\nas\tO\tas\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4273\tI-Code_Block\tA_4273\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nposted\tO\tposted\tO\nimage\tB-User_Interface_Element\timage\tO\ndo\tO\tdo\tO\nan\tO\tan\tO\nupload\tO\tupload\tO\n.\tO\t.\tO\n\t\nBTW\tO\tBTW\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nsearch\tO\tsearch\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\ngave\tO\tgave\tO\nme\tO\tme\tO\nthis\tO\tthis\tO\npost\tO\tpost\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nall\tO\tall\tO\nother\tO\tother\tO\ninfo\tO\tinfo\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n:\tO\t:\tO\n\t\nMultiple\tO\tMultiple\tO\nfiles\tO\tfiles\tO\nupload\tO\tupload\tO\n(\tO\t(\tO\nArray\tB-Data_Structure\tArray\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nCodeIgniter\tB-Library\tCodeIgniter\tO\n2.0\tB-Version\t2.0\tO\n\t\ngood\tO\tgood\tO\nluck\tO\tluck\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27702641\tO\t27702641\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27702641/\tO\thttps://stackoverflow.com/questions/27702641/\tO\n\t\n\t\nInside\tO\tInside\tO\nmy\tO\tmy\tO\nbuild.xml\tB-File_Name\tbuild.xml\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3227\tI-Code_Block\tQ_3227\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ninvoke\tO\tinvoke\tO\nthis\tO\tthis\tO\ntarget\tO\ttarget\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3228\tI-Code_Block\tQ_3228\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nKindly\tO\tKindly\tO\nsuggest\tO\tsuggest\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\nConstants\tB-Class_Name\tConstants\tO\nclass\tO\tclass\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nclasspath\tB-Library_Variable\tclasspath\tO\n?\tO\t?\tO\n\t\nSomewhere\tO\tSomewhere\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nbuild.xml\tB-File_Name\tbuild.xml\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3229\tI-Code_Block\tQ_3229\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nProject\tO\tProject\tO\nstructure\tO\tstructure\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3230\tI-Code_Block\tQ_3230\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nbuild.xml\tB-File_Name\tbuild.xml\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3231\tI-Code_Block\tQ_3231\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27702641\tO\t27702641\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27702641/\tO\thttps://stackoverflow.com/questions/27702641/\tO\n\t\n\t\nAs\tO\tAs\tO\nsuggested\tO\tsuggested\tO\nby\tO\tby\tO\nChristian\tB-User_Name\tChristian\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\ngot\tO\tgot\tO\nresolved\tO\tresolved\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3851\tI-Code_Block\tA_3851\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45209386\tO\t45209386\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45209386/\tO\thttps://stackoverflow.com/questions/45209386/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndeclare\tO\tdeclare\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nglobal\tB-Data_Type\tglobal\tO\nvariables\tO\tvariables\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\ninitialize\tO\tinitialize\tO\nthese\tO\tthese\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nmacros\tO\tmacros\tO\n,\tO\t,\tO\nand\tO\tand\tO\nchange\tO\tchange\tO\ntheir\tO\ttheir\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nother\tO\tother\tO\nmacros\tO\tmacros\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nstarted\tO\tstarted\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nit\tO\tit\tO\nas\tO\tas\tO\npublic\tB-Data_Type\tpublic\tO\nvariables\tO\tvariables\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5900\tI-Code_Block\tQ_5900\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nSub_Init_Globals()\tB-Function_Name\tSub_Init_Globals()\tO\nin\tO\tin\tO\neach\tO\teach\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nSubProcedure\tO\tSubProcedure\tO\n,\tO\t,\tO\nand\tO\tand\tO\nso\tO\tso\tO\nif\tO\tif\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nglobal\tB-Data_Type\tglobal\tO\nvariables\tO\tvariables\tO\ninside\tO\tinside\tO\nother\tO\tother\tO\nSubProcedures\tO\tSubProcedures\tO\n,\tO\t,\tO\nthose\tO\tthose\tO\nchanges\tO\tchanges\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nmade\tO\tmade\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nsuch\tO\tsuch\tO\nvariables\tO\tvariables\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45209386\tO\t45209386\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45209386/\tO\thttps://stackoverflow.com/questions/45209386/\tO\n\t\n\t\nAs\tO\tAs\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\nunderstood\tO\tunderstood\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\njust\tO\tjust\tO\nstarting\tO\tstarting\tO\nvalues\tO\tvalues\tO\nwhat\tO\twhat\tO\nleaves\tO\tleaves\tO\nyou\tO\tyou\tO\nwith\tO\twith\tO\nnext\tO\tnext\tO\noptions\tO\toptions\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndeclare\tO\tdeclare\tO\nthese\tO\tthese\tO\nvariables\tO\tvariables\tO\nand\tO\tand\tO\nassign\tO\tassign\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nWorkbook_Open\tB-Library_Function\tWorkbook_Open\tO\nsub\tO\tsub\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nhere\tO\there\tO\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ndeclare\tO\tdeclare\tO\na\tO\ta\tO\npublic\tB-Data_Type\tpublic\tO\nvariable\tO\tvariable\tO\nin\tO\tin\tO\nvba\tB-Language\tvba\tO\nand\tO\tand\tO\nassign\tO\tassign\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\nvalue\tO\tvalue\tO\n?\tO\t?\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nCreate\tO\tCreate\tO\nseparate\tO\tseparate\tO\nsheet\tO\tsheet\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nhidden\tO\thidden\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nsupport\tO\tsupport\tO\ntable\tB-Data_Structure\ttable\tO\nconsisting\tO\tconsisting\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nall\tO\tall\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthese\tO\tthese\tO\nvalues\tO\tvalues\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nsaved\tO\tsaved\tO\neven\tO\teven\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\nclose\tO\tclose\tO\nWorkbook\tO\tWorkbook\tO\n.\tO\t.\tO\n\t\n3\tO\t3\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nDeclare\tO\tDeclare\tO\nconstants\tO\tconstants\tO\nand\tO\tand\tO\nassign\tO\tassign\tO\nit\tO\tit\tO\n's\tO\t's\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nvariable\tO\tvariable\tO\ninside\tO\tinside\tO\nProcedures\tO\tProcedures\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35521073\tO\t35521073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35521073/\tO\thttps://stackoverflow.com/questions/35521073/\tO\n\t\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nschema\tO\tschema\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nput\tO\tput\tO\na\tO\ta\tO\nconstraint\tO\tconstraint\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\nnew\tO\tnew\tO\nentry\tO\tentry\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nput\tO\tput\tO\nin\tO\tin\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nroom\tO\troom\tO\nnumber\tO\tnumber\tO\n,\tO\t,\tO\neven\tO\teven\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\ndepDt\tB-Variable_Name\tdepDt\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nroom\tO\troom\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nany\tO\tany\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4345\tI-Code_Block\tQ_4345\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\ngiving\tO\tgiving\tO\na\tO\ta\tO\nsub\tO\tsub\tO\nquery\tO\tquery\tO\nunder\tO\tunder\tO\nWHERE\tB-Code_Block\tWHERE\tO\nin\tO\tin\tO\nCONSTRAINTS\tB-Code_Block\tCONSTRAINTS\tO\nbut\tO\tbut\tO\nits\tO\tits\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nSQL\tB-Application\tSQL\tO\nFiddle\tI-Application\tFiddle\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35521073\tO\t35521073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35521073/\tO\thttps://stackoverflow.com/questions/35521073/\tO\n\t\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nexclusion\tO\texclusion\tO\nconstraint\tO\tconstraint\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nrange\tO\trange\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5062\tI-Code_Block\tA_5062\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nbtree_gist\tB-Library\tbtree_gist\tO\nextension\tO\textension\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nthe\tO\tthe\tO\n=\tB-Code_Block\t=\tB-Code_Block\noperator\tO\toperator\tO\nin\tO\tin\tO\na\tO\ta\tO\nGiST\tB-Library_Function\tGiST\tO\nindex\tO\tindex\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35521073\tO\t35521073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35521073/\tO\thttps://stackoverflow.com/questions/35521073/\tO\n\t\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nof\tO\tof\tO\nrace\tO\trace\tO\nconditions\tO\tconditions\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nwhether\tO\twhether\tO\na\tO\ta\tO\nroom\tO\troom\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nconditions\tO\tconditions\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nscalar\tO\tscalar\tO\nboolean\tB-Data_Type\tboolean\tO\nvalue\tO\tvalue\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\nCHECK\tB-Code_Block\tCHECK\tB-Code_Block\nconstraint\tO\tconstraint\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\npreview\tO\tpreview\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n(\tO\t(\tO\nremember\tO\tremember\tO\nto\tO\tto\tO\nuncomment\tO\tuncomment\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ninsert\tO\tinsert\tO\nstatement\tO\tstatement\tO\n)\tO\t)\tO\n:SQL\tB-Application\t:SQL\tO\nFIDDLE\tI-Application\tFIDDLE\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5059\tI-Code_Block\tA_5059\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCreate\tO\tCreate\tO\ntable\tB-Data_Structure\ttable\tO\nwith\tO\twith\tO\nnew\tO\tnew\tO\nconstraint\tO\tconstraint\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5060\tI-Code_Block\tA_5060\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTry\tO\tTry\tO\ninserting\tO\tinserting\tO\ntwo\tO\ttwo\tO\nrows\tB-Data_Structure\trows\tO\nin\tO\tin\tO\nseparate\tO\tseparate\tO\nstatements\tO\tstatements\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5061\tI-Code_Block\tA_5061\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFirst\tO\tFirst\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\ninserted\tO\tinserted\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nwhen\tO\twhen\tO\nissuing\tO\tissuing\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\ninsert\tO\tinsert\tO\nstatement\tO\tstatement\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\na\tO\ta\tO\ncheck\tO\tcheck\tO\nconstraint\tO\tconstraint\tO\nviolation\tO\tviolation\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThis\tO\tThis\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\neasily\tO\teasily\tO\nimplemented\tO\timplemented\tO\nusing\tO\tusing\tO\ntriggers\tO\ttriggers\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\njust\tO\tjust\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nand\tO\tand\tO\nissue\tO\tissue\tO\na\tO\ta\tO\nCREATE\tB-Code_Block\tCREATE\tB-Code_Block\nTRIGGER\tI-Code_Block\tTRIGGER\tI-Code_Block\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18775019\tO\t18775019\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18775019/\tO\thttps://stackoverflow.com/questions/18775019/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nanother\tO\tanother\tO\nquestion\tO\tquestion\tO\non\tO\ton\tO\ndate\tO\tdate\tO\nstring\tB-Data_Type\tstring\tO\nto\tO\tto\tO\ndatevalue\tB-Library_Function\tdatevalue\tO\nconversion\tO\tconversion\tO\n.\tO\t.\tO\n\t\nInput\tO\tInput\tO\nformat\tO\tformat\tO\nis\tO\tis\tO\n\"\tB-Value\t\"\tO\nMarch\tI-Value\tMarch\tO\n17\tI-Value\t17\tO\n,\tI-Value\t,\tO\n2013\tI-Value\t2013\tO\n7:04:28\tI-Value\t7:04:28\tO\nPM\tI-Value\tPM\tO\nGMT-07:00\tI-Value\tGMT-07:00\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nOutput\tO\tOutput\tO\nof\tO\tof\tO\nSAP\tB-Application\tSAP\tO\ntool\tO\ttool\tO\n)\tO\t)\tO\n\t\n=DATEVALUE(B26)\tB-Output_Block\t=DATEVALUE(B26)\tO\nfails\tI-Output_Block\tfails\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nchances\tO\tchances\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\n\t\nGert\tB-User_Name\tGert\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18775019\tO\t18775019\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18775019/\tO\thttps://stackoverflow.com/questions/18775019/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nUS\tO\tUS\tO\nregional\tO\tregional\tO\nsettings\tO\tsettings\tO\nthen\tO\tthen\tO\nyour\tO\tyour\tO\ntext\tO\ttext\tO\nis\tO\tis\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\ndate/time\tO\tdate/time\tO\nformat\tO\tformat\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\nremove\tO\tremove\tO\n\"\tB-Value\t\"\tO\nGMT\tI-Value\tGMT\tO\n\"\tI-Value\t\"\tO\nand\tO\tand\tO\neverything\tO\teverything\tO\nafter\tO\tafter\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nformula\tO\tformula\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nsimply\tO\tsimply\tO\nremove\tO\tremove\tO\nthat\tO\tthat\tO\npart\tO\tpart\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nco-erce\tO\tco-erce\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\na\tO\ta\tO\ndate/time\tO\tdate/time\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\n=LEFT(B26,FIND(\"GMT\",B26)-1)+0\tB-Code_Block\t=LEFT(B26,FIND(\"GMT\",B26)-1)+0\tB-Code_Block\n\t\nformat\tO\tformat\tO\nresult\tO\tresult\tO\ncell\tB-User_Interface_Element\tcell\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrequired\tO\trequired\tO\ndate/time\tO\tdate/time\tO\nformat\tO\tformat\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nm/d/yy\tO\tm/d/yy\tO\nhh:mm\tO\thh:mm\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18775019\tO\t18775019\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18775019/\tO\thttps://stackoverflow.com/questions/18775019/\tO\n\t\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2492\tI-Code_Block\tA_2492\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39288595\tO\t39288595\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39288595/\tO\thttps://stackoverflow.com/questions/39288595/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nconfused\tO\tconfused\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nc++11\tB-Language\tc++11\tO\nrandom\tB-Library\trandom\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\n:\tO\t:\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\ntwo\tO\ttwo\tO\nseparate\tO\tseparate\tO\nconcepts\tO\tconcepts\tO\n:\tO\t:\tO\n\t\nrandom\tB-Library_Class\trandom\tO\nengine\tI-Library_Class\tengine\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\npseudo\tO\tpseudo\tO\n(\tO\t(\tO\nneed\tO\tneed\tO\nseed\tO\tseed\tO\n)\tO\t)\tO\nor\tO\tor\tO\nreal\tO\treal\tO\n)\tO\t)\tO\n\t\ndistribution\tO\tdistribution\tO\n:\tO\t:\tO\nit\tO\tit\tO\nmaps\tO\tmaps\tO\nthe\tO\tthe\tO\nnumbers\tO\tnumbers\tO\nobtained\tO\tobtained\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nengine\tO\tengine\tO\nto\tO\tto\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ninterval\tO\tinterval\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ndistribution\tO\tdistribution\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4950\tI-Code_Block\tQ_4950\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\non\tO\ton\tO\nmost\tO\tmost\tO\nexamples/sites/articles\tO\texamples/sites/articles\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4951\tI-Code_Block\tQ_4951\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\ntalking\tO\ttalking\tO\nabout\tO\tabout\tO\nspecial\tO\tspecial\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\ncryptography\tO\tcryptography\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nyour\tO\tyour\tO\nbasic\tO\tbasic\tO\ngetting\tO\tgetting\tO\nstarted\tO\tstarted\tO\narticles\tO\tarticles\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nsuspicion\tO\tsuspicion\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nstd::mt19937\tB-Library_Class\tstd::mt19937\tB-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\nstd::default_random_engine\tB-Library_Class\tstd::default_random_engine\tB-Code_Block\n)\tO\t)\tO\naccepts\tO\taccepts\tO\na\tO\ta\tO\nseed\tO\tseed\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nby\tO\tby\tO\nproviding\tO\tproviding\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nseed\tO\tseed\tO\nduring\tO\tduring\tO\na\tO\ta\tO\ndebug\tO\tdebug\tO\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4952\tI-Code_Block\tQ_4952\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39288595\tO\t39288595\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39288595/\tO\thttps://stackoverflow.com/questions/39288595/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIt\tO\tIt\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nfine\tO\tfine\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nonce\tO\tonce\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nmany\tO\tmany\tO\ntimes\tO\ttimes\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\ntrack\tO\ttrack\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nstd::random_device\tB-Library_Class\tstd::random_device\tB-Code_Block\nand\tO\tand\tO\nnot\tO\tnot\tO\ncreate\tO\tcreate\tO\n/\tO\t/\tO\ndestroy\tO\tdestroy\tO\nit\tO\tit\tO\nunnecessarily\tO\tunnecessarily\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nlibc++\tB-Library\tlibc++\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nstd::random_device\tB-Library_Class\tstd::random_device\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nsimple\tO\tsimple\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\njust\tO\tjust\tO\na\tO\ta\tO\nthin\tO\tthin\tO\nwrapper\tO\twrapper\tO\nover\tO\tover\tO\nstd::fopen(\"/dev/urandom\")\tB-Library_Function\tstd::fopen(\"/dev/urandom\")\tB-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nstd::random_device\tB-Library_Class\tstd::random_device\tB-Code_Block\nyou\tO\tyou\tO\nare\tO\tare\tO\ngetting\tO\tgetting\tO\nanother\tO\tanother\tO\nfilesystem\tO\tfilesystem\tO\nhandle\tO\thandle\tO\n,\tO\t,\tO\nand\tO\tand\tO\npay\tO\tpay\tO\nall\tO\tall\tO\nassociated\tO\tassociated\tO\ncosts\tO\tcosts\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nwindows\tB-Operating_System\twindows\tO\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\n,\tO\t,\tO\nstd::random_device\tB-Library_Class\tstd::random_device\tB-Code_Block\nrepresents\tO\trepresents\tO\nsome\tO\tsome\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\na\tO\ta\tO\nmicrosoft\tB-Library\tmicrosoft\tO\ncrypto\tI-Library\tcrypto\tO\nAPI\tI-Library\tAPI\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ninitializing\tO\tinitializing\tO\nand\tO\tand\tO\ndestroying\tO\tdestroying\tO\nsome\tO\tsome\tO\ncrypto\tB-Library\tcrypto\tO\nlibrary\tO\tlibrary\tO\ninterface\tO\tinterface\tO\neverytime\tO\teverytime\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\ngeneral\tO\tgeneral\tO\npurposes\tO\tpurposes\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\noverhead\tO\toverhead\tO\nas\tO\tas\tO\nalways\tO\talways\tO\nnegligible\tO\tnegligible\tO\n.\tO\t.\tO\n\t\nSometimes\tO\tSometimes\tO\nit\tO\tit\tO\nis\tO\tis\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nthis\tO\tthis\tO\nties\tO\tties\tO\nback\tO\tback\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nfirst\tO\tfirst\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5683\tI-Code_Block\tA_5683\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAt\tO\tAt\tO\nleast\tO\tleast\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nstd::mt19937\tB-Library_Class\tstd::mt19937\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nsimple\tO\tsimple\tO\nand\tO\tand\tO\nreliable\tO\treliable\tO\nrandom\tO\trandom\tO\ngenerator\tO\tgenerator\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nimplementation\tO\timplementation\tO\nis\tO\tis\tO\nmandated\tO\tmandated\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\n,\tO\t,\tO\nand\tO\tand\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nin\tO\tin\tO\nboost\tO\tboost\tO\n,\tO\t,\tO\nit\tO\tit\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncode\tO\tcode\tO\neverywhere\tO\teverywhere\tO\n,\tO\t,\tO\nderived\tO\tderived\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nmt19937\tB-Algorithm\tmt19937\tB-Code_Block\npaper\tO\tpaper\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nstable\tO\tstable\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncross-platform\tO\tcross-platform\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\npretty\tO\tpretty\tO\nconfident\tO\tconfident\tO\nthat\tO\tthat\tO\ninitializing\tO\tinitializing\tO\nit\tO\tit\tO\n,\tO\t,\tO\nquerying\tO\tquerying\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nto\tO\tto\tO\nsimilar\tO\tsimilar\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nany\tO\tany\tO\nplatform\tO\tplatform\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncompile\tO\tcompile\tO\nit\tO\tit\tO\non\tO\ton\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nsimilar\tO\tsimilar\tO\nperformance\tO\tperformance\tO\n.\tO\t.\tO\n\t\nstd::random_device\tB-Library_Class\tstd::random_device\tB-Code_Block\nby\tO\tby\tO\ncontrast\tO\tcontrast\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nopaque\tO\topaque\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nknow\tO\tknow\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\nis\tO\tis\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\n's\tO\t's\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nor\tO\tor\tO\nhow\tO\thow\tO\nefficient\tO\tefficient\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nactually\tO\tactually\tO\nbe\tO\tbe\tO\nacquired\tO\tacquired\tO\n-\tO\t-\tO\n-\tO\t-\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nthrow\tO\tthrow\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nrequire\tO\trequire\tO\na\tO\ta\tO\nseed\tO\tseed\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nusually\tO\tusually\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\npull\tO\tpull\tO\ntons\tO\ttons\tO\nand\tO\tand\tO\ntons\tO\ttons\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nseeds\tO\tseeds\tO\n.\tO\t.\tO\n\t\nSometimes\tO\tSometimes\tO\n,\tO\t,\tO\nit\tO\tit\tO\nacts\tO\tacts\tO\nas\tO\tas\tO\na\tO\ta\tO\nnice\tO\tnice\tO\ninterface\tO\tinterface\tO\nto\tO\tto\tO\ncryptographic\tO\tcryptographic\tO\nAPIs\tO\tAPIs\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nactually\tO\tactually\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nand\tO\tand\tO\nsadly\tO\tsadly\tO\nsometimes\tO\tsometimes\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmight\tO\tmight\tO\ncorrespond\tO\tcorrespond\tO\nto\tO\tto\tO\n/dev/random\tB-File_Name\t/dev/random\tB-Code_Block\non\tO\ton\tO\nunix\tB-Operating_System\tunix\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\ncorrespond\tO\tcorrespond\tO\nto\tO\tto\tO\n/dev/urandom/\tB-File_Name\t/dev/urandom/\tB-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmight\tO\tmight\tO\ncorrespond\tO\tcorrespond\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nMSVC\tO\tMSVC\tO\ncrypto\tO\tcrypto\tO\nAPI\tO\tAPI\tO\n(\tO\t(\tO\nvisual\tB-Application\tvisual\tO\nstudio\tI-Application\tstudio\tO\n)\tO\t)\tO\n,\tO\t,\tO\nor\tO\tor\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nfixed\tO\tfixed\tO\nconstant\tO\tconstant\tO\n(\tO\t(\tO\nmingw\tB-Application\tmingw\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncross-compile\tO\tcross-compile\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nphone\tB-Device\tphone\tO\n,\tO\t,\tO\nwho\tO\twho\tO\nknows\tO\tknows\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nAnd\tO\tAnd\tO\neven\tO\teven\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nget\tO\tget\tO\n/dev/random\tB-File_Name\t/dev/random\tB-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\nperformance\tO\tperformance\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nconsistent\tO\tconsistent\tO\n-\tO\t-\tO\n-\tO\t-\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nappear\tO\tappear\tO\nto\tO\tto\tO\nwork\tO\twork\tO\ngreat\tO\tgreat\tO\n,\tO\t,\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nentropy\tO\tentropy\tO\npool\tO\tpool\tO\nruns\tO\truns\tO\nout\tO\tout\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nruns\tO\truns\tO\nslow\tO\tslow\tO\nas\tO\tas\tO\na\tO\ta\tO\ndog\tO\tdog\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nis\tO\tis\tO\n,\tO\t,\tO\nstd::random_device\tB-Library_Class\tstd::random_device\tB-Code_Block\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\nimproved\tO\timproved\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nseeding\tO\tseeding\tO\nwith\tO\twith\tO\ntime(NULL)\tB-Library_Function\ttime(NULL)\tB-Code_Block\n-\tO\t-\tO\n-\tO\t-\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\na\tO\ta\tO\nlow\tO\tlow\tO\nbar\tO\tbar\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\ntime(NULL)\tB-Library_Function\ttime(NULL)\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\npretty\tO\tpretty\tO\ncrappy\tO\tcrappy\tO\nseed\tO\tseed\tO\nall\tO\tall\tO\nthings\tO\tthings\tO\nconsidered\tO\tconsidered\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nusually\tO\tusually\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nused\tO\tused\tO\ntime(NULL)\tB-Library_Function\ttime(NULL)\tB-Code_Block\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nseed\tO\tseed\tO\n,\tO\t,\tO\nback\tO\tback\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nday\tO\tday\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nconsider\tO\tconsider\tO\nit\tO\tit\tO\nall\tO\tall\tO\nthat\tO\tthat\tO\nuseful\tO\tuseful\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39288595\tO\t39288595\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39288595/\tO\thttps://stackoverflow.com/questions/39288595/\tO\n\t\n\t\nThis\tO\tThis\tO\narticle\tO\tarticle\tO\nis\tO\tis\tO\na\tO\ta\tO\ngood\tO\tgood\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nsynthesize\tO\tsynthesize\tO\njust\tO\tjust\tO\nfew\tO\tfew\tO\npoints\tO\tpoints\tO\n:\tO\t:\tO\n\t\nIt\tO\tIt\tO\nHas\tO\tHas\tO\nUnknown\tO\tUnknown\tO\nCost\tO\tCost\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nFor\tO\tFor\tO\nmy\tO\tmy\tO\npersonal\tO\tpersonal\tO\nexperience\tO\texperience\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnotified\tO\tnotified\tO\nthat\tO\tthat\tO\nstd::random_device\tB-Library_Class\tstd::random_device\tB-Code_Block\nis\tO\tis\tO\nusually\tO\tusually\tO\nslower\tO\tslower\tO\nthan\tO\tthan\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nPseudo-randomic\tB-Algorithm\tPseudo-randomic\tO\nalgorithm\tO\talgorithm\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nno\tO\tno\tO\ntrue\tO\ttrue\tO\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nusually\tO\tusually\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\ninvolve\tO\tinvolve\tO\nphysical\tO\tphysical\tO\ndevices\tO\tdevices\tO\n,\tO\t,\tO\nor\tO\tor\tO\nother\tO\tother\tO\nhardware\tO\thardware\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nsimple\tO\tsimple\tO\nCPU\tB-Device\tCPU\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nMight\tO\tMight\tO\nActually\tO\tActually\tO\nBe\tO\tBe\tO\nDeterministic\tO\tDeterministic\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30621048\tO\t30621048\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30621048/\tO\thttps://stackoverflow.com/questions/30621048/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nplayers\tO\tplayers\tO\nand\tO\tand\tO\nset\tO\tset\tO\nthem\tO\tthem\tO\nup\tO\tup\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nbracket\tB-User_Interface_Element\tbracket\tO\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nplayers\tO\tplayers\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nnames\tO\tnames\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\nshowing\tO\tshowing\tO\na\tO\ta\tO\nwhole\tO\twhole\tO\nbracket\tB-User_Interface_Element\tbracket\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\npoint\tO\tpoint\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nin\tO\tin\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\n.\tO\t.\tO\n\t\nI.e\tO\tI.e\tO\n.\tO\t.\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nside\tO\tside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narrow\tB-User_Interface_Element\tarrow\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nside\tO\tside\tO\n:\tO\t:\tO\n\t\nMy\tO\tMy\tO\nquestions\tO\tquestions\tO\nis\tO\tis\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nbest\tO\tbest\tO\ndraw\tO\tdraw\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nMy\tO\tMy\tO\ninitial\tO\tinitial\tO\nthought\tO\tthought\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nmultiple\tO\tmultiple\tO\nlayouts\tB-Library_Class\tlayouts\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nhard\tO\thard\tO\ncode\tO\tcode\tO\ntextviews\tB-Library_Class\ttextviews\tO\nwith\tO\twith\tO\ncustom\tO\tcustom\tO\ndrawables\tB-Library_Class\tdrawables\tO\nand\tO\tand\tO\nlines\tO\tlines\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nof\tO\tof\tO\n16/8/4/2\tB-Value\t16/8/4/2\tO\nwith\tO\twith\tO\njust\tO\tjust\tO\none\tO\tone\tO\nborder\tB-User_Interface_Element\tborder\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nconstantly\tO\tconstantly\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nlayout\tB-Library_Class\tlayout\tO\nsetup\tO\tsetup\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nsecond\tO\tsecond\tO\none\tO\tone\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ndynamically\tO\tdynamically\tO\ndraw\tO\tdraw\tO\nit\tO\tit\tO\non\tO\ton\tO\na\tO\ta\tO\ncanvas\tB-Library_Class\tcanvas\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nanswer\tO\tanswer\tO\nhere\tO\there\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\ngive\tO\tgive\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nideas\tO\tideas\tO\nof\tO\tof\tO\nimplementations\tO\timplementations\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nQuestions\tO\tQuestions\tO\n:\tO\t:\tO\nIf\tO\tIf\tO\nI\tO\tI\tO\nchoose\tO\tchoose\tO\nmethod\tO\tmethod\tO\n1\tO\t1\tO\n,\tO\t,\tO\nwill\tO\twill\tO\nI\tO\tI\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndynamically\tO\tdynamically\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nlayout\tB-Library_Class\tlayout\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nactivity\tB-Library_Class\tactivity\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nchoose\tO\tchoose\tO\nmethod\tO\tmethod\tO\n2\tO\t2\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncould\tO\tcould\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstill\tO\tstill\tO\npretty\tO\tpretty\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nandroid\tB-Operating_System\tandroid\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30621048\tO\t30621048\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30621048/\tO\thttps://stackoverflow.com/questions/30621048/\tO\n\t\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nquestion\tO\tquestion\tO\n1\tO\t1\tO\n,\tO\t,\tO\nyes\tO\tyes\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nabsolutely\tO\tabsolutely\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nlayout\tB-Library_Class\tlayout\tO\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nseveral\tO\tseveral\tO\nlayout\tB-Library_Class\tlayout\tO\nfiles\tO\tfiles\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\none\tO\tone\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\nthings\tO\tthings\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\n,\tO\t,\tO\nis\tO\tis\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nyour\tO\tyour\tO\nactivity\tB-Library_Class\tactivity\tO\n's\tO\t's\tO\nsetContentView(int)\tB-Library_Function\tsetContentView(int)\tB-Code_Block\nmethod\tO\tmethod\tO\nto\tO\tto\tO\ncompletely\tO\tcompletely\tO\nreset\tO\treset\tO\nthe\tO\tthe\tO\nactivity\tB-Library_Class\tactivity\tO\n's\tO\t's\tO\nlayout\tB-Library_Class\tlayout\tO\nto\tO\tto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nview\tB-Library_Class\tview\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nidentify\tO\tidentify\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\nview\tB-Library_Class\tview\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbracket\tO\tbracket\tO\nportion\tO\tportion\tO\n,\tO\t,\tO\ncast\tO\tcast\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nViewGroup\tB-Library_Class\tViewGroup\tB-Code_Block\nand\tO\tand\tO\nuse\tO\tuse\tO\naddView(View)\tB-Library_Function\taddView(View)\tB-Code_Block\nand\tO\tand\tO\nremoveView(View)\tB-Library_Function\tremoveView(View)\tB-Code_Block\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nquestion\tO\tquestion\tO\n2\tO\t2\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ncanvas\tB-Library_Class\tcanvas\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nquite\tO\tquite\tO\ndifficult\tO\tdifficult\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nonly\tO\tonly\tO\na\tO\ta\tO\ncanvas\tB-Library_Class\tcanvas\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\npossibly\tO\tpossibly\tO\na\tO\ta\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\na\tO\ta\tO\ncanvas\tB-Library_Class\tcanvas\tO\nand\tO\tand\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\ntext\tB-Library_Class\ttext\tO\nviews\tI-Library_Class\tviews\tO\ncould\tO\tcould\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\ndirectly\tO\tdirectly\tO\nanswering\tO\tanswering\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ntutorial\tO\ttutorial\tO\nis\tO\tis\tO\none\tO\tone\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npast\tO\tpast\tO\n,\tO\t,\tO\nand\tO\tand\tO\ngives\tO\tgives\tO\nyou\tO\tyou\tO\nan\tO\tan\tO\nexcellent\tO\texcellent\tO\nsense\tO\tsense\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nCanvas\tB-Library_Class\tCanvas\tO\nclass\tO\tclass\tO\nin\tO\tin\tO\nandroid\tB-Operating_System\tandroid\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38189474\tO\t38189474\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38189474/\tO\thttps://stackoverflow.com/questions/38189474/\tO\n\t\n\t\nwhile\tO\twhile\tO\nadding\tO\tadding\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nclassifier\tO\tclassifier\tO\nin\tO\tin\tO\nweka\tB-Application\tweka\tO\n...\tO\t...\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\njava\tB-Language\tjava\tO\ncall\tO\tcall\tO\n:java\tB-Code_Block\t:java\tO\n-classpath\tI-Code_Block\t-classpath\tO\n\"\tI-Code_Block\t\"\tO\nweka.jar\tI-Code_Block\tweka.jar\tO\n;\tI-Code_Block\t;\tO\nweka-src.jar\tI-Code_Block\tweka-src.jar\tO\n\"\tI-Code_Block\t\"\tO\nweka.gui.GUIChooser\tI-Code_Block\tweka.gui.GUIChooser\tO\n\t\nwhat\tO\twhat\tO\nto\tO\tto\tO\nset\tO\tset\tO\nclasspath\tO\tclasspath\tO\n...\tO\t...\tO\nand\tO\tand\tO\nis\tO\tis\tO\nit\tO\tit\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nformat\tO\tformat\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nclassifier\tO\tclassifier\tO\na\tO\ta\tO\nweka\tB-Application\tweka\tO\n...\tO\t...\tO\ni\tO\ti\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nwindows\tB-Operating_System\twindows\tO\n10\tB-Version\t10\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38189474\tO\t38189474\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38189474/\tO\thttps://stackoverflow.com/questions/38189474/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nadding\tO\tadding\tO\nclassifiers\tO\tclassifiers\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nadding\tO\tadding\tO\n.jar\tB-File_Type\t.jar\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nabsolute\tO\tabsolute\tO\npaths\tO\tpaths\tO\n(\tO\t(\tO\nC:/..\tB-File_Name\tC:/..\tO\n.\tI-File_Name\t.\tO\n)\tO\t)\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\njar\tB-File_Type\tjar\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\njava\tB-Code_Block\tjava\tB-Code_Block\n-classpath\tI-Code_Block\t-classpath\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nc:/.../weka.jar\tI-Code_Block\tc:/.../weka.jar\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n\t\nweka-src.jar\tB-File_Name\tweka-src.jar\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nneeeded\tO\tneeeded\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\noptional\tO\toptional\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nworking\tO\tworking\tO\ndirectory\tO\tdirectory\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nscript/batch\tB-File_Type\tscript/batch\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nweka.jar\tB-File_Name\tweka.jar\tO\nfile\tO\tfile\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29529833\tO\t29529833\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29529833/\tO\thttps://stackoverflow.com/questions/29529833/\tO\n\t\n\t\nIs\tO\tIs\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n.Net\tB-Library\t.Net\tO\nMemoryStream\tB-Library_Class\tMemoryStream\tO\nObject\tO\tObject\tO\nsecure\tO\tsecure\tO\nin\tO\tin\tO\nMemory\tO\tMemory\tO\n?\tO\t?\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nlarge\tO\tlarge\tO\nfiles\tO\tfiles\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ndownloaded\tO\tdownloaded\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nsecure\tO\tsecure\tO\nsite\tO\tsite\tO\ndirectly\tO\tdirectly\tO\ninto\tO\tinto\tO\nMemoryStream\tB-Library_Class\tMemoryStream\tO\nObjects\tO\tObjects\tO\nthat\tO\tthat\tO\ncontain\tO\tcontain\tO\nPCI\tO\tPCI\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nconcern\tO\tconcern\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nMemoryStream\tB-Library_Class\tMemoryStream\tO\nobject\tO\tobject\tO\nitself\tO\titself\tO\nmaybe\tO\tmaybe\tO\nexposed\tO\texposed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nmemory\tO\tmemory\tO\nto\tO\tto\tO\nRAM\tB-Device\tRAM\tO\nscraping\tO\tscraping\tO\nattacks\tO\tattacks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21380268\tO\t21380268\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21380268/\tO\thttps://stackoverflow.com/questions/21380268/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nof\tO\tof\tO\nnumerical\tO\tnumerical\tO\nvalues\tO\tvalues\tO\nseparated\tO\tseparated\tO\nwith\tO\twith\tO\nspaces\tB-Value\tspaces\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2297\tI-Code_Block\tQ_2297\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\noccurrences\tO\toccurrences\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\ncombined\tO\tcombined\tO\nsum\tO\tsum\tO\nof\tO\tof\tO\nnumbers\tO\tnumbers\tO\nis\tO\tis\tO\nx\tB-Variable_Name\tx\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nsearch\tO\tsearch\tO\n:\tO\t:\tO\n2041\tB-Value\t2041\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nreturn\tO\treturn\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n(\tO\t(\tO\n\"\tB-Value\t\"\tO\n318\tI-Value\t318\tO\n500\tI-Value\t500\tO\n358\tI-Value\t358\tO\n865\tI-Value\t865\tO\n\"\tI-Value\t\"\tO\n)\tO\t)\tO\nor\tO\tor\tO\nif\tO\tif\tO\nI\tO\tI\tO\nsearch\tO\tsearch\tO\n:\tO\t:\tO\n1818\tB-Value\t1818\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nreturn\tO\treturn\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n(\tO\t(\tO\n\"\tB-Value\t\"\tO\n920\tI-Value\t920\tO\n898\tI-Value\t898\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\n\"\tB-Value\t\"\tO\n31\tI-Value\t31\tO\n470\tI-Value\t470\tO\n725\tI-Value\t725\tO\n358\tI-Value\t358\tO\n114\tI-Value\t114\tO\n56\tI-Value\t56\tO\n9\tI-Value\t9\tO\n55\tI-Value\t55\tO\n\"\tI-Value\t\"\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\noptimal\tO\toptimal\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nstring\tB-Data_Type\tstring\tO\nof\tO\tof\tO\nnumbers\tO\tnumbers\tO\ncan\tO\tcan\tO\nsum\tO\tsum\tO\nup\tO\tup\tO\nto\tO\tto\tO\nhundreds\tO\thundreds\tO\nof\tO\tof\tO\nthousands\tO\tthousands\tO\n.\tO\t.\tO\n\t\nPrinciple\tO\tPrinciple\tO\nexplained\tO\texplained\tO\nin\tO\tin\tO\ntheory\tO\ttheory\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngood\tO\tgood\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\npreferred\tO\tpreferred\tO\nlanguages\tO\tlanguages\tO\nare\tO\tare\tO\nPHP\tB-Language\tPHP\tO\nor\tO\tor\tO\nNodeJs\tB-Library\tNodeJs\tO\nif\tO\tif\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\ngiven\tO\tgiven\tO\nby\tO\tby\tO\nprogramming\tO\tprogramming\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nMySQL\tB-Application\tMySQL\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\n,\tO\t,\tO\nif\tO\tif\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nsolution\tO\tsolution\tO\nby\tO\tby\tO\nany\tO\tany\tO\nlanguage\tO\tlanguage\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\nanyway\tO\tanyway\tO\n.\tO\t.\tO\n\t\nExtra\tO\tExtra\tO\nnotes\tO\tnotes\tO\n\t\nnumbers\tO\tnumbers\tO\nare\tO\tare\tO\nall\tO\tall\tO\npositive\tO\tpositive\tO\nintegers\tB-Data_Type\tintegers\tO\n\t\nnumber\tO\tnumber\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nbetween\tO\tbetween\tO\n1-10000\tB-Value\t1-10000\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21380268\tO\t21380268\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21380268/\tO\thttps://stackoverflow.com/questions/21380268/\tO\n\t\n\t\nHere\tO\tHere\tO\nyou\tO\tyou\tO\ngo\tO\tgo\tO\n,\tO\t,\tO\nin\tO\tin\tO\nPython\tB-Language\tPython\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nlinear\tO\tlinear\tO\ncomplexity\tO\tcomplexity\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2884\tI-Code_Block\tA_2884\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nnegative\tO\tnegative\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nconsists\tO\tconsists\tO\npurely\tO\tpurely\tO\nof\tO\tof\tO\nintegers\tB-Data_Type\tintegers\tO\nseparated\tO\tseparated\tO\nby\tO\tby\tO\nspaces\tB-Value\tspaces\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nproblems\tO\tproblems\tO\ntranslating\tO\ttranslating\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nany\tO\tany\tO\nother\tO\tother\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\nis\tO\tis\tO\nself-explanatory\tO\tself-explanatory\tO\n,\tO\t,\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\nask\tO\task\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21380268\tO\t21380268\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21380268/\tO\thttps://stackoverflow.com/questions/21380268/\tO\n\t\n\t\nUsage\tO\tUsage\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2885\tI-Code_Block\tA_2885\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFirst\tO\tFirst\tO\nwe\tO\twe\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nwe\tO\twe\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nwe\tO\twe\tO\nuse\tO\tuse\tO\nmethod\tO\tmethod\tO\nto_array()\tB-Library_Function\tto_array()\tO\nso\tO\tso\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nwhich\tO\twhich\tO\nmode\tO\tmode\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nhas\tO\thas\tO\n2\tO\t2\tO\nmodes\tO\tmodes\tO\n,\tO\t,\tO\nsoft\tO\tsoft\tO\nsearch\tO\tsearch\tO\nand\tO\tand\tO\nhard\tO\thard\tO\nsearch\tO\tsearch\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchoose\tO\tchoose\tO\nwhich\tO\twhich\tO\none\tO\tone\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfind\tB-Function_Name\tfind\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\n->find(true)\tB-Code_Block\t->find(true)\tO\n,\tO\t,\tO\nTrue\tB-Code_Block\tTrue\tO\n=\tI-Code_Block\t=\tO\nhard\tI-Code_Block\thard\tO\nmode\tO\tmode\tO\n,\tO\t,\tO\nFalse\tB-Code_Block\tFalse\tO\n=\tI-Code_Block\t=\tO\nsoft\tI-Code_Block\tsoft\tO\nmode\tO\tmode\tO\n;\tO\t;\tO\n\t\nThe\tO\tThe\tO\nsoft\tB-Variable_Name\tsoft\tO\nmode\tO\tmode\tO\nit\tO\tit\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nmultidimensional\tO\tmultidimensional\tO\narray\tB-Data_Structure\tarray\tO\nwith\tO\twith\tO\nkeys\tO\tkeys\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nstrlen\tB-Library_Function\tstrlen\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnumbers\tO\tnumbers\tO\n(\tO\t(\tO\nmethod\tO\tmethod\tO\norder())\tB-Function_Name\torder())\tO\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nsearching\tO\tsearching\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\n70\tB-Value\t70\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nwanna\tO\twanna\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n3\tO\t3\tO\ndigits\tO\tdigits\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\n,\tO\t,\tO\ni\tO\ti\tO\nmean\tO\tmean\tO\n(\tO\t(\tO\n100\tB-Value\t100\tO\n,\tO\t,\tO\n99999\tB-Value\t99999\tO\netc\tO\tetc\tO\n..\tO\t..\tO\n.\tO\t.\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nminus\tO\tminus\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nvalue\tO\tvalue\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nand\tO\tand\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\narray\tB-Data_Structure\tarray\tO\nwith\tO\twith\tO\n(\tO\t(\tO\nin_array\tB-Library_Function\tin_array\tO\n)\tO\t)\tO\nif\tO\tif\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n;\tO\t;\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2886\tI-Code_Block\tA_2886\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nhard\tB-Variable_Name\thard\tO\nmode\tO\tmode\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nstates\tO\tstates\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nwill\tO\twill\tO\nloop\tO\tloop\tO\nthrough\tO\tthrough\tO\nevery\tO\tevery\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2887\tI-Code_Block\tA_2887\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\nreally\tO\treally\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nmore\tO\tmore\tO\ntweaks\tO\ttweaks\tO\nbut\tO\tbut\tO\nfrom\tO\tfrom\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\ntested\tO\ttested\tO\nit\tO\tit\tO\ngives\tO\tgives\tO\ngood\tO\tgood\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nFeel\tO\tFeel\tO\nfree\tO\tfree\tO\nto\tO\tto\tO\nask\tO\task\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nquestions\tO\tquestions\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\nwith\tO\twith\tO\noutputs\tO\toutputs\tO\n:\tO\t:\tO\nhttp://codepad.viper-7.com/INvSNo\tO\thttp://codepad.viper-7.com/INvSNo\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2888\tI-Code_Block\tA_2888\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOutput\tO\tOutput\tO\nexample\tO\texample\tO\nfor\tO\tfor\tO\n285\tO\t285\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2889\tI-Code_Block\tA_2889\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40438086\tO\t40438086\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40438086/\tO\thttps://stackoverflow.com/questions/40438086/\tO\n\t\n\t\nDetailed\tO\tDetailed\tO\ninformation\tO\tinformation\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nsituation\tO\tsituation\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\nserver\tB-Application\tserver\tO\nwith\tO\twith\tO\nusernames\tO\tusernames\tO\nand\tO\tand\tO\npasswords\tO\tpasswords\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nadding\tO\tadding\tO\nan\tO\tan\tO\nadditional\tO\tadditional\tO\ncouchdb\tB-Application\tcouchdb\tO\nserver\tI-Application\tserver\tO\nto\tO\tto\tO\nmanage\tO\tmanage\tO\ndata\tO\tdata\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nmobile\tB-Device\tmobile\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nwant\tO\twant\tO\nall\tO\tall\tO\nauthentication\tO\tauthentication\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nhandled\tO\thandled\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\nan\tO\tan\tO\nHTTP\tO\tHTTP\tO\nrequest\tO\trequest\tO\nwith\tO\twith\tO\nusername\tO\tusername\tO\nand\tO\tand\tO\npassword\tO\tpassword\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\nserver\tB-Application\tserver\tO\nand\tO\tand\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nback\tO\tback\tO\nanyanything\tO\tanyanything\tO\ni\tO\ti\tO\nlike\tO\tlike\tO\nif\tO\tif\tO\naccess\tO\taccess\tO\nis\tO\tis\tO\naccepted\tO\taccepted\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncould\tO\tcould\tO\nI\tO\tI\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\nauthenticate\tO\tauthenticate\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncouchdb\tB-Application\tcouchdb\tO\nserver\tI-Application\tserver\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nimagine\tO\timagine\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nrecieve\tO\trecieve\tO\na\tO\ta\tO\nsecret\tO\tsecret\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\nserver\tB-Application\tserver\tO\non\tO\ton\tO\nsuccessful\tO\tsuccessful\tO\nauthentication\tO\tauthentication\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\nmatch\tO\tmatch\tO\nto\tO\tto\tO\none\tO\tone\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nmanually\tO\tmanually\tO\nstored\tO\tstored\tO\non\tO\ton\tO\ncouchdb\tB-Application\tcouchdb\tO\nserver\tI-Application\tserver\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\nsecure\tO\tsecure\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nAuthentication\tO\tAuthentication\tO\ndocs\tO\tdocs\tO\nat\tO\tat\tO\ncouchdb\tB-Application\tcouchdb\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nstill\tO\tstill\tO\nconfused\tO\tconfused\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nsuggestions\tO\tsuggestions\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nauthentication\tO\tauthentication\tO\nsystem\tO\tsystem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40438086\tO\t40438086\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40438086/\tO\thttps://stackoverflow.com/questions/40438086/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nJWT\tB-Application\tJWT\tO\nauthentication\tO\tauthentication\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\na\tO\ta\tO\nplugin\tO\tplugin\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n:\tO\t:\tO\nhttps://github.com/dmunch/couch_jwt_auth\tO\thttps://github.com/dmunch/couch_jwt_auth\tO\n(\tO\t(\tO\nThe\tO\tThe\tO\nrepository\tO\trepository\tO\nis\tO\tis\tO\na\tO\ta\tO\nfork\tO\tfork\tO\n,\tO\t,\tO\nimplementing\tO\timplementing\tO\nadditional\tO\tadditional\tO\nfunctionality\tO\tfunctionality\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\none\tO\tone\tO\nplus\tO\tplus\tO\nis\tO\tis\tO\ncompatible\tO\tcompatible\tO\nwith\tO\twith\tO\nCouchDB\tB-Application\tCouchDB\tO\n2.0\tB-Version\t2.0\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nBasically\tO\tBasically\tO\nyou\tO\tyou\tO\nsend\tO\tsend\tO\nyour\tO\tyour\tO\nusername/password\tO\tusername/password\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nauthentication\tO\tauthentication\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nin\tO\tin\tO\nturn\tO\tturn\tO\ngives\tO\tgives\tO\nyou\tO\tyou\tO\nback\tO\tback\tO\na\tO\ta\tO\ntoken\tO\ttoken\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nJWT\tB-Application\tJWT\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nnow\tO\tnow\tO\nauthenticate\tO\tauthenticate\tO\nto\tO\tto\tO\nCouchDB\tB-Application\tCouchDB\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\ntoken\tO\ttoken\tO\n.\tO\t.\tO\n\t\nCouchDB\tB-Application\tCouchDB\tO\nverifies\tO\tverifies\tO\nthe\tO\tthe\tO\nintegrity\tO\tintegrity\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntoken\tO\ttoken\tO\neither\tO\teither\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nshared\tO\tshared\tO\nsecret\tO\tsecret\tO\n(\tO\t(\tO\nHS256\tO\tHS256\tO\n)\tO\t)\tO\nor\tO\tor\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\npublic\tB-Data_Type\tpublic\tO\nkey\tO\tkey\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nauthentication\tO\tauthentication\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44055225\tO\t44055225\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44055225/\tO\thttps://stackoverflow.com/questions/44055225/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nfrequently\tO\tfrequently\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nusing\tO\tusing\tO\nMVC\tB-Algorithm\tMVC\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\neasy\tO\teasy\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nVery\tO\tVery\tO\nfrequently\tO\tfrequently\tO\nI\tO\tI\tO\nfind\tO\tfind\tO\nmyself\tO\tmyself\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nviewmodel\tB-Class_Name\tviewmodel\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nsmaller\tO\tsmaller\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nStaff\tB-Variable_Name\tStaff\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nadds\tO\tadds\tO\na\tO\ta\tO\nstaff\tO\tstaff\tO\nmember\tO\tmember\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nMost\tO\tMost\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nfairly\tO\tfairly\tO\nstraight\tO\tstraight\tO\nforward\tO\tforward\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ncredential\tB-Variable_Name\tcredential\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ncredentials\tB-Variable_Name\tcredentials\tO\na\tO\ta\tO\nstaff\tB-Variable_Name\tstaff\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\nis\tO\tis\tO\ndynamic\tO\tdynamic\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\ntable\tB-Data_Structure\ttable\tO\nwith\tO\twith\tO\na\tO\ta\tO\nforeign\tB-Code_Block\tforeign\tO\nkey\tI-Code_Block\tkey\tO\nreferencing\tO\treferencing\tO\nthe\tO\tthe\tO\nstaff\tB-Variable_Name\tstaff\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\ncredential\tB-Variable_Name\tcredential\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\nviewmodel\tB-Class_Name\tviewmodel\tO\nhas\tO\thas\tO\na\tO\ta\tO\nStaff\tB-Variable_Name\tStaff\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nand\tO\tand\tO\nan\tO\tan\tO\nIEnumerable\tB-Library_Class\tIEnumerable\tO\nof\tO\tof\tO\nCredential\tB-Variable_Name\tCredential\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nadds/edits\tO\tadds/edits\tO\nstaff\tB-Variable_Name\tstaff\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npartialview\tO\tpartialview\tO\nform\tB-User_Interface_Element\tform\tO\n,\tO\t,\tO\na\tO\ta\tO\npopup\tO\tpopup\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncredential\tB-Variable_Name\tcredential\tO\nfields\tO\tfields\tO\nappears\tO\tappears\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\ncredential\tB-Variable_Name\tcredential\tO\n,\tO\t,\tO\nI\tO\tI\tO\nmanually\tO\tmanually\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nhidden\tO\thidden\tO\nfields\tO\tfields\tO\nof\tO\tof\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\nproperty\tO\tproperty\tO\nas\tO\tas\tO\nhidden\tO\thidden\tO\nhtml\tB-Language\thtml\tO\nelements\tO\telements\tO\nusing\tO\tusing\tO\njavascript\tB-Language\tjavascript\tO\nstrings\tB-Data_Type\tstrings\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nappend\tO\tappend\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nplaces\tO\tplaces\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ngets\tO\tgets\tO\nreally\tO\treally\tO\nunmanageable\tO\tunmanageable\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5702\tI-Code_Block\tQ_5702\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\netc\tO\tetc\tO\n...\tO\t...\tO\nto\tO\tto\tO\nhid7\tB-Variable_Name\thid7\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\ntags\tO\ttags\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nabsolute\tO\tabsolute\tO\nmess\tO\tmess\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncurrently\tO\tcurrently\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nabout\tO\tabout\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nsimilar\tO\tsimilar\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nreinventing\tO\treinventing\tO\nthe\tO\tthe\tO\nwheel\tO\twheel\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nfirst\tO\tfirst\tO\ninstinct\tO\tinstinct\tO\nwas\tO\twas\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nnested\tO\tnested\tO\nform\tO\tform\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nresearch\tO\tresearch\tO\ntells\tO\ttells\tO\nme\tO\tme\tO\nMVC\tB-Algorithm\tMVC\tO\nforbids\tO\tforbids\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nsum\tO\tsum\tO\nup\tO\tup\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n:\tO\t:\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndynamically\tO\tdynamically\tO\nload/save\tO\tload/save\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npartial\tO\tpartial\tO\nview\tO\tview\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nlosing\tO\tlosing\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\non\tO\ton\tO\nHTTPPOST\tB-Library_Function\tHTTPPOST\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6326940\tO\t6326940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6326940/\tO\thttps://stackoverflow.com/questions/6326940/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nequivalent\tO\tequivalent\tO\nto\tO\tto\tO\nGROUP_CONCAT\tB-Library_Function\tGROUP_CONCAT\tO\nfunctionality\tO\tfunctionality\tO\nof\tO\tof\tO\nMySql\tB-Application\tMySql\tO\nin\tO\tin\tO\nDB2\tB-Application\tDB2\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nXML\tB-Language\tXML\tO\nAggrigate\tO\tAggrigate\tO\nfuncton\tO\tfuncton\tO\nof\tO\tof\tO\nDB2\tB-Application\tDB2\tO\nfor\tO\tfor\tO\ncocating\tO\tcocating\tO\nmurows\tO\tmurows\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_469\tI-Code_Block\tQ_469\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhich\tO\tWhich\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nresult\tO\tresult\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_470\tI-Code_Block\tQ_470\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\ndistinct/Unique\tO\tdistinct/Unique\tO\nValue\tO\tValue\tO\nof\tO\tof\tO\nBASIC_SKILL2\tB-Variable_Name\tBASIC_SKILL2\tO\n,\tO\t,\tO\nBASIC_SKILL1\tB-Variable_Name\tBASIC_SKILL1\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_471\tI-Code_Block\tQ_471\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6326940\tO\t6326940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6326940/\tO\thttps://stackoverflow.com/questions/6326940/\tO\n\t\n\t\nThe\tO\tThe\tO\nselect\tB-Code_Block\tselect\tO\ndistinct\tI-Code_Block\tdistinct\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\ntables\tB-Data_Structure\ttables\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nduplicates\tO\tduplicates\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nmultiple\tO\tmultiple\tO\njoins\tO\tjoins\tO\ngiving\tO\tgiving\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncombinations\tO\tcombinations\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nevery\tO\tevery\tO\njoin\tB-Code_Block\tjoin\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nleads\tO\tleads\tO\nto\tO\tto\tO\nduplicates\tO\tduplicates\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\naggregate\tO\taggregate\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\npushing\tO\tpushing\tO\nthe\tO\tthe\tO\ngroup\tB-Code_Block\tgroup\tO\nbys\tI-Code_Block\tbys\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\naggregate\tO\taggregate\tO\nfunctions\tO\tfunctions\tO\nto\tO\tto\tO\nsubqueries\tO\tsubqueries\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfrom\tB-Code_Block\tfrom\tO\npart\tO\tpart\tO\ngives\tO\tgives\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4677\tI-Code_Block\tA_4677\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6326940\tO\t6326940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6326940/\tO\thttps://stackoverflow.com/questions/6326940/\tO\n\t\n\t\nCame\tO\tCame\tO\nacross\tO\tacross\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nafter\tO\tafter\tO\nasking\tO\tasking\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\none\tO\tone\tO\nmyself\tO\tmyself\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\nI\tO\tI\tO\ncame\tO\tcame\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncommon\tO\tcommon\tO\ntable\tB-Data_Structure\ttable\tO\nexpression\tO\texpression\tO\nwith\tO\twith\tO\nDISTINCT\tB-Code_Block\tDISTINCT\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2188\tI-Code_Block\tA_2188\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\neasier\tO\teasier\tO\nand\tO\tand\tO\nclearer\tO\tclearer\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsubselects\tO\tsubselects\tO\ninstead\tO\tinstead\tO\n(\tO\t(\tO\nXMLELEMENT\tB-Code_Block\tXMLELEMENT\tO\nboilerplate\tO\tboilerplate\tO\nelided\tO\telided\tO\nfor\tO\tfor\tO\nclarity\tO\tclarity\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2189\tI-Code_Block\tA_2189\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThere\tO\tThere\tO\nmay\tO\tmay\tO\nwell\tO\twell\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\neasier\tO\teasier\tO\nway\tO\tway\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ncame\tO\tcame\tO\nup\tO\tup\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nfunctions\tO\tfunctions\tO\nlike\tO\tlike\tO\nXMLQUERY\tB-Library_Function\tXMLQUERY\tO\nand\tO\tand\tO\nXSLTRANSFORM\tB-Library_Function\tXSLTRANSFORM\tO\n.\tO\t.\tO\n\t\nMuch\tO\tMuch\tO\nsimpler\tO\tsimpler\tO\nand\tO\tand\tO\nless\tO\tless\tO\nerror-prone\tO\terror-prone\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nmanual\tO\tmanual\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35134870\tO\t35134870\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35134870/\tO\thttps://stackoverflow.com/questions/35134870/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\ntpl\tB-File_Type\ttpl\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\ndisplayfield\tB-User_Interface_Element\tdisplayfield\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ntextarea\tB-User_Interface_Element\ttextarea\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsame\tO\tsame\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\ndisplayed\tO\tdisplayed\tO\nin\tO\tin\tO\na\tO\ta\tO\ngrid\tB-User_Interface_Element\tgrid\tO\nwith\tO\twith\tO\nrowexpander\tB-Application\trowexpander\tO\nplugin\tI-Application\tplugin\tO\n(\tO\t(\tO\ndisplay\tO\tdisplay\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nXTemplate\tB-Library\tXTemplate\tO\nlike\tO\tlike\tO\ntextarea\tB-User_Interface_Element\ttextarea\tO\nformat\tO\tformat\tO\n)\tO\t)\tO\n\t\nFiddle\tB-Application\tFiddle\tO\n:\tO\t:\tO\nhttps://fiddle.sencha.com/#fiddle/14sf\tO\thttps://fiddle.sencha.com/#fiddle/14sf\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nFIDDLE\tB-Application\tFIDDLE\tO\n:\tO\t:\tO\nhttps://fiddle.sencha.com/#fiddle/14t7\tO\thttps://fiddle.sencha.com/#fiddle/14t7\tO\n\t\nwithout\tO\twithout\tO\nsucess\tO\tsucess\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nevery\tO\tevery\tO\nway\tO\tway\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nto\tO\tto\tO\nrender\tO\trender\tO\na\tO\ta\tO\ntpl\tB-File_Type\ttpl\tO\nunsuccessfully\tO\tunsuccessfully\tO\n.\tO\t.\tO\n\t\nDisplay\tO\tDisplay\tO\nhas\tO\thas\tO\na\tO\ta\tO\nconfig\tO\tconfig\tO\ntpl\tB-File_Type\ttpl\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nappreciate\tO\tappreciate\tO\nsuggestions\tO\tsuggestions\tO\nfor\tO\tfor\tO\nresolving\tO\tresolving\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35134870\tO\t35134870\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35134870/\tO\thttps://stackoverflow.com/questions/35134870/\tO\n\t\n\t\nThe\tO\tThe\tO\ndisplayfield\tO\tdisplayfield\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\nrenderer\tO\trenderer\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nas\tO\tas\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ngrid\tB-User_Interface_Element\tgrid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5019\tI-Code_Block\tA_5019\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhttps://fiddle.sencha.com/#fiddle/14il\tO\thttps://fiddle.sencha.com/#fiddle/14il\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43803683\tO\t43803683\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43803683/\tO\thttps://stackoverflow.com/questions/43803683/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ninsert\tO\tinsert\tO\nexcel\tB-File_Type\texcel\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\nmongoDB\tB-Application\tmongoDB\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsucceeded\tO\tsucceeded\tO\nto\tO\tto\tO\ninsert\tO\tinsert\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nrow\tB-Data_Structure\trow\tO\nby\tO\tby\tO\nrow\tB-Data_Structure\trow\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\ndata\tO\tdata\tO\ninserted\tO\tinserted\tO\nas\tO\tas\tO\none\tO\tone\tO\nthing\tO\tthing\tO\nand\tO\tand\tO\nunable\tO\tunable\tO\ndifferentiate\tO\tdifferentiate\tO\nthe\tO\tthe\tO\nString\tB-Data_Type\tString\tO\nand\tO\tand\tO\nNumeric\tB-Data_Type\tNumeric\tO\n.\tO\t.\tO\n\t\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ninsert\tO\tinsert\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nrow\tB-Data_Structure\trow\tO\nby\tO\tby\tO\nrow\tB-Data_Structure\trow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nattached\tO\tattached\tO\nmy\tO\tmy\tO\nexcel\tB-File_Type\texcel\tO\n,\tO\t,\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\no/p\tO\to/p\tO\n.\tO\t.\tO\n\t\nOutput\tO\tOutput\tO\n:\tO\t:\tO\n\t\nmongoDB\tB-Application\tmongoDB\tO\noutput\tO\toutput\tO\nas\tO\tas\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nExcel\tB-File_Type\tExcel\tO\n:\tO\t:\tO\n\t\nExcel\tB-File_Type\tExcel\tO\ndata\tO\tdata\tO\nas\tO\tas\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5643\tI-Code_Block\tQ_5643\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tB-Code_Block\t}\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3639039\tO\t3639039\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3639039/\tO\thttps://stackoverflow.com/questions/3639039/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nSilverlight\tB-Application\tSilverlight\tO\n4\tB-Version\t4\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\nPrism\tB-Library\tPrism\tO\n2.2\tB-Version\t2.2\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nmodules\tO\tmodules\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nloading\tO\tloading\tO\non\tO\ton\tO\ndemand\tO\tdemand\tO\nby\tO\tby\tO\ndefining\tO\tdefining\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\nondemand\tB-Library_Variable\tondemand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\ncatalog\tO\tcatalog\tO\n(\tO\t(\tO\nvia\tO\tvia\tO\na\tO\ta\tO\nxaml\tB-File_Type\txaml\tO\nfile\tO\tfile\tO\n)\tO\t)\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nModuleManager\tB-Library_Class\tModuleManager\tO\nto\tO\tto\tO\nrequest\tO\trequest\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nbe\tO\tbe\tO\ndownloaded\tO\tdownloaded\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nmechanism\tO\tmechanism\tO\nin\tO\tin\tO\nPrism\tB-Library\tPrism\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\ndownload\tO\tdownload\tO\nis\tO\tis\tO\ncompleted\tO\tcompleted\tO\nand\tO\tand\tO\nget\tO\tget\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nprogress\tO\tprogress\tO\nevents\tO\tevents\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nwas\tO\twas\tO\na\tO\ta\tO\nthread\tO\tthread\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nprism\tB-Library\tprism\tO\ncodeplex\tB-Website\tcodeplex\tO\nsite\tO\tsite\tO\nbut\tO\tbut\tO\nnone\tO\tnone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsuggestions\tO\tsuggestions\tO\nseemed\tO\tseemed\tO\nto\tO\tto\tO\npan\tO\tpan\tO\nout\tO\tout\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfolks\tO\tfolks\tO\nhaving\tO\thaving\tO\nthe\tO\tthe\tO\ndiscussion\tO\tdiscussion\tO\n\t\nhttp://compositewpf.codeplex.com/Thread/View.aspx?ThreadId=47957\tO\thttp://compositewpf.codeplex.com/Thread/View.aspx?ThreadId=47957\tO\n\t\nthanks\tO\tthanks\tO\n\t\nMichael\tB-User_Name\tMichael\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3639039\tO\t3639039\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3639039/\tO\thttps://stackoverflow.com/questions/3639039/\tO\n\t\n\t\nIt\tO\tIt\tO\nturns\tO\tturns\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nprovided\tO\tprovided\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprism\tB-Library\tprism\tO\ndiscussion\tO\tdiscussion\tO\non\tO\ton\tO\ncodeplex\tB-Website\tcodeplex\tO\nworked\tO\tworked\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ncharm\tO\tcharm\tO\n\t\nhttp://compositewpf.codeplex.com/Thread/View.aspx?ThreadId=47957\tO\thttp://compositewpf.codeplex.com/Thread/View.aspx?ThreadId=47957\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nFileDownloader\tB-Library_Class\tFileDownloader\tO\ncalled\tO\tcalled\tO\nFileDownloaderWithProgress\tB-Class_Name\tFileDownloaderWithProgress\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nsubclass\tO\tsubclass\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\none\tO\tone\tO\nin\tO\tin\tO\nPrism\tB-Library\tPrism\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nWebClient\tB-Library_Class\tWebClient\tO\nthat\tO\tthat\tO\nfires\tO\tfires\tO\nthe\tO\tthe\tO\nDownloadProgressChanged\tB-Library_Variable\tDownloadProgressChanged\tO\nevent\tO\tevent\tO\nwas\tO\twas\tO\nprivate\tB-Data_Type\tprivate\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nby\tO\tby\tO\nimplementing\tO\timplementing\tO\nIFileDownloader\tB-Class_Name\tIFileDownloader\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nDownloadProgressChanged\tB-Library_Variable\tDownloadProgressChanged\tO\nevent\tO\tevent\tO\nhandler\tO\thandler\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFileDownloaderWithProgress\tB-Class_Name\tFileDownloaderWithProgress\tO\nclass\tO\tclass\tO\n-\tO\t-\tO\nI\tO\tI\tO\npublish\tO\tpublish\tO\na\tO\ta\tO\nPrism\tB-Library\tPrism\tO\nevent\tO\tevent\tO\nthat\tO\tthat\tO\nincludes\tO\tincludes\tO\nthe\tO\tthe\tO\n%\tO\t%\tO\ncomplete\tO\tcomplete\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nname\tO\tname\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\ndownloaded\tO\tdownloaded\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41372339\tO\t41372339\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41372339/\tO\thttps://stackoverflow.com/questions/41372339/\tO\n\t\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nIts\tO\tIts\tO\nan\tO\tan\tO\nMVC\tB-Algorithm\tMVC\tO\nproject\tO\tproject\tO\non\tO\ton\tO\nasp.net\tB-Library\tasp.net\tO\n.\tO\t.\tO\n\t\nCa\tO\tCa\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n!\tO\t!\tO\n\t\nCreate\tB-Library_Function\tCreate\tO\n,\tO\t,\tO\nUpdate\tB-Library_Function\tUpdate\tO\nand\tO\tand\tO\nRetrieve\tB-Library_Function\tRetrieve\tO\noperations\tO\toperations\tO\nwork\tO\twork\tO\nsuccessfully\tO\tsuccessfully\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\ndelete\tB-Library_Function\tdelete\tO\noperation\tO\toperation\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5249\tI-Code_Block\tQ_5249\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nController\tO\tController\tO\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5250\tI-Code_Block\tQ_5250\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nError\tO\tError\tO\nShowing\tO\tShowing\tO\n:\tO\t:\tO\n\t\nDELETE\tO\tDELETE\tO\nhttp://localhost:1693/Product/Delete?id=16\tO\thttp://localhost:1693/Product/Delete?id=16\tO\n404\tB-Error_Name\t404\tO\n(\tI-Error_Name\t(\tO\nNot\tI-Error_Name\tNot\tO\nFound\tI-Error_Name\tFound\tO\n)\tI-Error_Name\t)\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41372339\tO\t41372339\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41372339/\tO\thttps://stackoverflow.com/questions/41372339/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nlike\tO\tlike\tO\n/Product\tO\t/Product\tB-Code_Block\nwithout\tO\twithout\tO\nmentioning\tO\tmentioning\tO\nDelete\tB-Library_Function\tDelete\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\n,\tO\t,\tO\nASP.Net\tB-Library\tASP.Net\tO\nWebAPI\tI-Library\tWebAPI\tO\nwill\tO\twill\tO\ntake\tO\ttake\tO\ncare\tO\tcare\tO\nabout\tO\tabout\tO\ncalling\tO\tcalling\tO\nDelete\tB-Library_Function\tDelete\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\n.delete\tB-Library_Function\t.delete\tB-Code_Block\non\tO\ton\tO\n$http\tB-Code_Block\t$http\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5930\tI-Code_Block\tA_5930\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33446515\tO\t33446515\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33446515/\tO\thttps://stackoverflow.com/questions/33446515/\tO\n\t\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nsuggests\tO\tsuggests\tO\ni\tO\ti\tO\ncannot\tO\tcannot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nfoo-tables\tB-Data_Structure\tfoo-tables\tO\n,\tO\t,\tO\neven\tO\teven\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nbasic\tO\tbasic\tO\nway\tO\tway\tO\n-\tO\t-\tO\n3\tO\t3\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n,\tO\t,\tO\nlast\tO\tlast\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ntoggle\tO\ttoggle\tO\nwhich\tO\twhich\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\ndetail\tO\tdetail\tO\nrow\tB-Data_Structure\trow\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nmarkup\tO\tmarkup\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nthus\tO\tthus\tO\n:\tO\t:\tO\n\t\n$('.footable').footable({})\tB-Code_Block\t$('.footable').footable({})\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4082\tI-Code_Block\tQ_4082\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4083\tI-Code_Block\tQ_4083\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nexample\tO\texample\tO\ntemplate\tO\ttemplate\tO\nfrom\tO\tfrom\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\ngot\tO\tgot\tO\nhis\tO\this\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nworks\tO\tworks\tO\nperfectly\tO\tperfectly\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\napp\tO\tapp\tO\nim\tO\tim\tO\nbuilding\tO\tbuilding\tO\nthe\tO\tthe\tO\nthird\tO\tthird\tO\nrow\tB-Data_Structure\trow\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nhidden\tO\thidden\tO\nuntil\tO\tuntil\tO\ntoggled\tO\ttoggled\tO\nis\tO\tis\tO\nun-rendered\tO\tun-rendered\tO\nand\tO\tand\tO\nshows\tO\tshows\tO\nas\tO\tas\tO\na\tO\ta\tO\nthird\tO\tthird\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nsetup\tO\tsetup\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nFooTable\tB-Library\tFooTable\tO\n-\tO\t-\tO\nVersion\tO\tVersion\tO\n:\tO\t:\tO\n2.0.3\tB-Version\t2.0.3\tO\n\t\njQuery-1.11.1\tB-Library\tjQuery-1.11.1\tO\n\t\njQuery\tB-Library\tjQuery\tO\nUI\tO\tUI\tO\n-\tO\t-\tO\nv1.11.0\tB-Version\tv1.11.0\tO\n-\tI-Version\t-\tO\n2014-06-26\tI-Version\t2014-06-26\tO\n\t\nChrome\tB-Application\tChrome\tO\n:\tO\t:\tO\nVersion\tO\tVersion\tO\n46.0.2490.80\tB-Version\t46.0.2490.80\tO\nm\tI-Version\tm\tO\n\t\nAny\tO\tAny\tO\npointers\tO\tpointers\tO\nappreciated\tO\tappreciated\tO\n-\tO\t-\tO\nthanks\tO\tthanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nBTW\tO\tBTW\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nfootables\tB-Data_Structure\tfootables\tO\ncss\tB-Language\tcss\tO\nfile\tO\tfile\tO\nreferenced\tO\treferenced\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nshown\tO\tshown\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\nabove\tO\tabove\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33446515\tO\t33446515\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33446515/\tO\thttps://stackoverflow.com/questions/33446515/\tO\n\t\n\t\nFound\tO\tFound\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nfootable\tB-Library\tfootable\tO\nin\tO\tin\tO\nbootstrap\tB-Library\tbootstrap\tO\n3\tB-Version\t3\tO\nnot\tO\tnot\tO\ninitializing\tO\tinitializing\tO\n\t\n(\tO\t(\tO\nso\tO\tso\tO\nplease\tO\tplease\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\nstampede\tO\tstampede\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\n;¬)\tO\t;¬)\tO\n)\tO\t)\tO\n\t\nThanks\tO\tThanks\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7182845\tO\t7182845\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7182845/\tO\thttps://stackoverflow.com/questions/7182845/\tO\n\t\n\t\nSynopsis\tO\tSynopsis\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ncontrol\tO\tcontrol\tO\nwhich\tO\twhich\tO\ndisplays\tO\tdisplays\tO\nevents\tO\tevents\tO\nin\tO\tin\tO\na\tO\ta\tO\ncalendar\tB-Application\tcalendar\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndraft\tO\tdraft\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nConcept\tO\tConcept\tO\n\t\nThe\tO\tThe\tO\nbottom\tO\tbottom\tO\nleft\tO\tleft\tO\nbox\tB-User_Interface_Element\tbox\tO\nis\tO\tis\tO\nvertically\tO\tvertically\tO\nscrollable\tO\tscrollable\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbottom\tO\tbottom\tO\nright\tO\tright\tO\nbox\tB-User_Interface_Element\tbox\tO\nscrollable\tO\tscrollable\tO\nin\tO\tin\tO\nboth\tO\tboth\tO\ndirections\tO\tdirections\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nevent\tB-User_Interface_Element\tevent\tO\nviews\tI-User_Interface_Element\tviews\tO\naround\tO\taround\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\ncome\tO\tcome\tO\nnear\tO\tnear\tO\nthe\tO\tthe\tO\nbounds\tO\tbounds\tO\nduring\tO\tduring\tO\ndragging\tO\tdragging\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nauto-scrolls\tO\tauto-scrolls\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ndirection\tO\tdirection\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nscroll\tB-User_Interface_Element\tscroll\tO\narea\tI-User_Interface_Element\tarea\tO\nis\tO\tis\tO\nfinite\tO\tfinite\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nearliest\tO\tearliest\tO\nand\tO\tand\tO\nlatest\tO\tlatest\tO\nevent\tO\tevent\tO\nin\tO\tin\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nor\tO\tor\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nmaximum\tO\tmaximum\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncontinues\tO\tcontinues\tO\nscrolling\tO\tscrolling\tO\nthe\tO\tthe\tO\nscroll\tB-User_Interface_Element\tscroll\tO\narea\tI-User_Interface_Element\tarea\tO\ngrows\tO\tgrows\tO\naccordingly\tO\taccordingly\tO\nand\tO\tand\tO\ncollapses\tO\tcollapses\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nscrolls\tO\tscrolls\tO\nback\tO\tback\tO\nand\tO\tand\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\n\"\tO\t\"\tO\nJuly\tO\tJuly\tO\n2011\tO\t2011\tO\n\"\tO\t\"\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nacts\tO\tacts\tO\nas\tO\tas\tO\nscroller\tB-User_Interface_Element\tscroller\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\npulls\tO\tpulls\tO\nit\tO\tit\tO\nbeyond\tO\tbeyond\tO\nthe\tO\tthe\tO\nbounds\tO\tbounds\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscroll\tB-User_Interface_Element\tscroll\tO\narea\tI-User_Interface_Element\tarea\tO\n,\tO\t,\tO\nit\tO\tit\tO\ngrows\tO\tgrows\tO\naccordingly\tO\taccordingly\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmonth\tO\tmonth\tO\nname\tO\tname\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nheader\tO\theader\tO\nstays\tO\tstays\tO\nalways\tO\talways\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nposition\tO\tposition\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nmonth\tO\tmonth\tO\nmoves\tO\tmoves\tO\nin\tO\tin\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nlong\tO\tlong\tO\ncell\tB-User_Interface_Element\tcell\tO\nwhich\tO\twhich\tO\nspans\tO\tspans\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nday\tO\tday\tO\ncells\tB-User_Interface_Element\tcells\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmonth\tO\tmonth\tO\nwith\tO\twith\tO\na\tO\ta\tO\nfloating\tO\tfloating\tO\ncaption\tO\tcaption\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nheader\tB-User_Interface_Element\theader\tO\nrows\tI-User_Interface_Element\trows\tO\nand\tO\tand\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\nare\tO\tare\tO\nalways\tO\talways\tO\nvisible\tO\tvisible\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nQuestion\tO\tQuestion\tO\n\t\nSince\tO\tSince\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nonly\tO\tonly\tO\nslightly\tO\tslightly\tO\nfamiliar\tO\tfamiliar\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncapabilities\tO\tcapabilities\tO\nof\tO\tof\tO\nCappuccino\tB-Library\tCappuccino\tO\nor\tO\tor\tO\nCocoa\tB-Library\tCocoa\tO\n's\tO\t's\tO\ncontrol\tO\tcontrol\tO\nclasses\tO\tclasses\tO\n:\tO\t:\tO\nWhere\tO\tWhere\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\ndirect\tO\tdirect\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nCappuccino\tB-Library\tCappuccino\tO\nor\tO\tor\tO\nCocoa\tB-Library\tCocoa\tO\nclasses\tO\tclasses\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nis\tO\tis\tO\nit\tO\tit\tO\nreasonable\tO\treasonable\tO\nto\tO\tto\tO\nsubclass\tO\tsubclass\tO\nCappuccino/Cocoa\tB-Library\tCappuccino/Cocoa\tO\ncontrols\tO\tcontrols\tO\nand\tO\tand\tO\nwhere\tO\twhere\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\ncustom\tO\tcustom\tO\ncontrols\tO\tcontrols\tO\nfrom\tO\tfrom\tO\nscratch\tO\tscratch\tO\n?\tO\t?\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nMy\tO\tMy\tO\nThoughts\tO\tThoughts\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nits\tO\tits\tO\nreasonable\tO\treasonable\tO\ndividing\tO\tdividing\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\nwith\tO\twith\tO\na\tO\ta\tO\nSplitView\tB-Library_Class\tSplitView\tO\nwith\tO\twith\tO\na\tO\ta\tO\nvertical\tB-User_Interface_Element\tvertical\tO\ndivider\tI-User_Interface_Element\tdivider\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nTableView\tB-Library_Class\tTableView\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nheader\tB-User_Interface_Element\theader\tO\ncolumn\tI-User_Interface_Element\tcolumn\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nsubview\tO\tsubview\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nsynchronize\tO\tsynchronize\tO\nthe\tO\tthe\tO\nvertical\tO\tvertical\tO\nscrolling\tO\tscrolling\tO\nwith\tO\twith\tO\nwhat\tO\twhat\tO\nhappens\tO\thappens\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nso\tO\tso\tO\nsure\tO\tsure\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nview\tB-User_Interface_Element\tview\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nabout\tO\tabout\tO\nTableView\tB-Library_Class\tTableView\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nactually\tO\tactually\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\ncells\tB-User_Interface_Element\tcells\tO\nas\tO\tas\tO\na\tO\ta\tO\nbackground\tB-User_Interface_Element\tbackground\tO\ngrid\tI-User_Interface_Element\tgrid\tO\n.\tO\t.\tO\n\t\nThus\tO\tThus\tO\n,\tO\t,\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ndifficult\tO\tdifficult\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\nheader\tB-User_Interface_Element\theader\tO\nrows\tI-User_Interface_Element\trows\tO\nand\tO\tand\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\nscrolling\tO\tscrolling\tO\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncompletely\tO\tcompletely\tO\nnew\tO\tnew\tO\ncustom\tO\tcustom\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthen\tO\tthen\tO\nagain\tO\tagain\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nWhere\tO\tWhere\tO\nis\tO\tis\tO\nit\tO\tit\tO\nreasonable\tO\treasonable\tO\nto\tO\tto\tO\nsubclass\tO\tsubclass\tO\nCappuccino\tB-Library\tCappuccino\tO\nresp\tO\tresp\tO\n.\tO\t.\tO\n\t\nCocoa\tB-Library\tCocoa\tO\ncontrols\tO\tcontrols\tO\nand\tO\tand\tO\nwhere\tO\twhere\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\ncustom\tO\tcustom\tO\ncontrols\tO\tcontrols\tO\nfrom\tO\tfrom\tO\nscratch\tO\tscratch\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7182845\tO\t7182845\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7182845/\tO\thttps://stackoverflow.com/questions/7182845/\tO\n\t\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\ncalendar\tB-User_Interface_Element\tcalendar\tO\nview\tO\tview\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nsufficiently\tO\tsufficiently\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ntable\tB-User_Interface_Element\ttable\tO\nview\tO\tview\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nwrite\tO\twrite\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nscratch\tO\tscratch\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\na\tO\ta\tO\nbare\tO\tbare\tO\nCPView\tB-Library_Class\tCPView\tB-Code_Block\nand\tO\tand\tO\ndraw\tO\tdraw\tO\nthe\tO\tthe\tO\nbackground\tB-User_Interface_Element\tbackground\tO\nin\tO\tin\tO\nits\tO\tits\tO\ndrawRect\tB-Library_Function\tdrawRect\tO\n:\tO\t:\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nCPControl\tB-Library_Class\tCPControl\tB-Code_Block\nsubclass\tO\tsubclass\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nits\tO\tits\tO\ndrawRect\tB-Library_Function\tdrawRect\tO\nrender\tO\trender\tO\nits\tO\tits\tO\nborders\tB-User_Interface_Element\tborders\tO\nand\tO\tand\tO\nbackground\tB-User_Interface_Element\tbackground\tO\n,\tO\t,\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nCPBox\tB-Library_Class\tCPBox\tB-Code_Block\nwith\tO\twith\tO\nsetBackgroundColor\tB-Library_Function\tsetBackgroundColor\tB-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntext\tB-User_Interface_Element\ttext\tO\nis\tO\tis\tO\nbest\tO\tbest\tO\ndrawn\tO\tdrawn\tO\nwith\tO\twith\tO\nlabel\tO\tlabel\tO\nsubviews\tO\tsubviews\tO\n.\tO\t.\tO\n\t\nReact\tO\tReact\tO\nto\tO\tto\tO\nmouseDown\tB-Library_Variable\tmouseDown\tB-Code_Block\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\ndrag\tO\tdrag\tO\nand\tO\tand\tO\ndrop\tO\tdrop\tO\n,\tO\t,\tO\ndouble\tO\tdouble\tO\nclick\tO\tclick\tO\nevents\tB-Library_Class\tevents\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nelse\tO\telse\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ncalendar\tB-User_Interface_Element\tcalendar\tO\nview\tO\tview\tO\nin\tO\tin\tO\na\tO\ta\tO\nCPScrollView\tB-Library_Class\tCPScrollView\tB-Code_Block\n.\tO\t.\tO\n\t\nSynchronise\tO\tSynchronise\tO\nits\tO\tits\tO\nvertical\tO\tvertical\tO\nscrolling\tO\tscrolling\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nscroll\tO\tscroll\tO\nview\tO\tview\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\n-\tO\t-\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nCPTableView\tB-Library_Class\tCPTableView\tB-Code_Block\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nScrolling\tO\tScrolling\tO\nis\tO\tis\tO\nfairly\tO\tfairly\tO\neasy\tO\teasy\tO\nwith\tO\twith\tO\na\tO\ta\tO\nCPScrollView\tB-Library_Class\tCPScrollView\tB-Code_Block\n:\tO\t:\tO\njust\tO\tjust\tO\ncall\tO\tcall\tO\nscrollToPoint\tB-Library_Function\tscrollToPoint\tB-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nexpand\tO\texpand\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nview\tO\tview\tO\nsize\tO\tsize\tO\ndynamically\tO\tdynamically\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\n'\tO\t'\tO\ninfinite\tO\tinfinite\tO\n'\tO\t'\tO\nscrolling\tO\tscrolling\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nsimply\tO\tsimply\tO\nalways\tO\talways\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nview\tO\tview\tO\nsize\tO\tsize\tO\nthe\tO\tthe\tO\nminimum\tO\tminimum\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nits\tO\tits\tO\nevents\tO\tevents\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nscroll\tO\tscroll\tO\nposition\tO\tposition\tO\n+\tO\t+\tO\nX\tB-Variable_Name\tX\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nX\tB-Variable_Name\tX\tO\ngiving\tO\tgiving\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nsome\tO\tsome\tO\ndistance\tO\tdistance\tO\nto\tO\tto\tO\nscroll\tO\tscroll\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nresize\tO\tresize\tO\nagain\tO\tagain\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\na\tO\ta\tO\nnutshell\tO\tnutshell\tO\n,\tO\t,\tO\nsubclass\tO\tsubclass\tO\nCPView\tB-Library_Class\tCPView\tB-Code_Block\nand\tO\tand\tO\nCPControl\tB-Library_Class\tCPControl\tB-Code_Block\n-\tO\t-\tO\nCPView\tB-Library_Class\tCPView\tB-Code_Block\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ninteraction\tO\tinteraction\tO\n,\tO\t,\tO\nand\tO\tand\tO\nCPControl\tB-Library_Class\tCPControl\tB-Code_Block\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34587689\tO\t34587689\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34587689/\tO\thttps://stackoverflow.com/questions/34587689/\tO\n\t\n\t\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncandidates\tO\tcandidates\tO\nwho\tO\twho\tO\ngot\tO\tgot\tO\nbelow\tO\tbelow\tO\n40\tO\t40\tO\nin\tO\tin\tO\nexactly\tO\texactly\tO\n2\tO\t2\tO\nsubjects\tO\tsubjects\tO\nusing\tO\tusing\tO\nsql\tB-Language\tsql\tO\n\t\ndegree(degcode,name,subject)\tB-Variable_Name\tdegree(degcode,name,subject)\tO\n\t\ncandidate(seatno,degcode,name)\tB-Variable_Name\tcandidate(seatno,degcode,name)\tO\n\t\nmarks(seatno,dedcode,mark)\tB-Variable_Name\tmarks(seatno,dedcode,mark)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34587689\tO\t34587689\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34587689/\tO\thttps://stackoverflow.com/questions/34587689/\tO\n\t\n\t\nYour\tO\tYour\tO\nquery\tO\tquery\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4926\tI-Code_Block\tA_4926\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nthen\tO\tthen\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsqlfiddle\tB-Application\tsqlfiddle\tO\nwith\tO\twith\tO\ndummy\tO\tdummy\tO\ndata\tO\tdata\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\nclairty\tO\tclairty\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nmodify\tO\tmodify\tO\nquery\tO\tquery\tO\nas\tO\tas\tO\nper\tO\tper\tO\nyour\tO\tyour\tO\nrequirement\tO\trequirement\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21923761\tO\t21923761\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21923761/\tO\thttps://stackoverflow.com/questions/21923761/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nmaking\tO\tmaking\tO\nan\tO\tan\tO\nandroid\tB-Operating_System\tandroid\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nTextField\tB-User_Interface_Element\tTextField\tO\nand\tO\tand\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nBased\tO\tBased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntextfield\tB-User_Interface_Element\ttextfield\tO\n,\tO\t,\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nclicks\tO\tclicks\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsomething\tO\tsomething\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2369\tI-Code_Block\tQ_2369\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nhowever\tO\thowever\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ncompile\tO\tcompile\tO\n,\tO\t,\tO\nsaying\tO\tsaying\tO\n\"\tO\t\"\tO\nCannot\tO\tCannot\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\na\tO\ta\tO\nnon-final\tO\tnon-final\tO\nvariable\tO\tvariable\tO\nvalue\tO\tvalue\tO\ninside\tO\tinside\tO\nan\tO\tan\tO\ninner\tO\tinner\tO\nclass\tO\tclass\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nmethod\tO\tmethod\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21923761\tO\t21923761\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21923761/\tO\thttps://stackoverflow.com/questions/21923761/\tO\n\t\n\t\nUse\tO\tUse\tO\n\t\nfinal\tB-Code_Block\tfinal\tB-Code_Block\nString\tI-Code_Block\tString\tI-Code_Block\nvalue\tI-Code_Block\tvalue\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\net.getText().toString()\tI-Code_Block\tet.getText().toString()\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nand\tO\tand\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2970\tI-Code_Block\tQ_2970\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21923761\tO\t21923761\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21923761/\tO\thttps://stackoverflow.com/questions/21923761/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nequals\tB-Library_Function\tequals\tO\n\"\tO\t\"\tO\nmethod\tO\tmethod\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\n=\tO\t=\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2971\tI-Code_Block\tA_2971\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5285999\tO\t5285999\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5285999/\tO\thttps://stackoverflow.com/questions/5285999/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\nlinq\tB-Library\tlinq\tO\ncode\tO\tcode\tO\nformatted\tO\tformatted\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_369\tI-Code_Block\tQ_369\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\nanother\tO\tanother\tO\nDoor\tB-HTML_XML_Tag\tDoor\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n\"\tO\t\"\tO\nlevel\tO\tlevel\tO\n\"\tO\t\"\tO\nas\tO\tas\tO\ntreasure\tB-HTML_XML_Tag\ttreasure\tO\n?\tO\t?\tO\n\t\nEverything\tO\tEverything\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nkeeps\tO\tkeeps\tO\nadding\tO\tadding\tO\nit\tO\tit\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlevel\tO\tlevel\tO\nas\tO\tas\tO\ncard\tB-HTML_XML_Tag\tcard\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_370\tI-Code_Block\tQ_370\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5285999\tO\t5285999\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5285999/\tO\thttps://stackoverflow.com/questions/5285999/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nDeck\tB-Variable_Name\tDeck\tO\nelement\tO\telement\tO\nfirst\tO\tfirst\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_574\tI-Code_Block\tA_574\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nadd\tO\tadd\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\ntreasure\tB-Variable_Name\ttreasure\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\n've\tO\t've\tO\ntaken\tO\ttaken\tO\nthe\tO\tthe\tO\nliberty\tO\tliberty\tO\nof\tO\tof\tO\nrenaming\tO\trenaming\tO\nfrom\tO\tfrom\tO\nroot\tB-Variable_Name\troot\tO\nto\tO\tto\tO\ntreasure\tB-Variable_Name\ttreasure\tO\n)\tO\t)\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndoor\tB-Variable_Name\tdoor\tO\nto\tO\tto\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_575\tI-Code_Block\tA_575\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22197728\tO\t22197728\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22197728/\tO\thttps://stackoverflow.com/questions/22197728/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nwidth\tO\twidth\tO\nof\tO\tof\tO\nxeditable\tB-Library\txeditable\tO\ntextfield\tB-User_Interface_Element\ttextfield\tO\nincrease\tO\tincrease\tO\nor\tO\tor\tO\ndecrease\tO\tdecrease\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\ntext\tO\ttext\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2404\tI-Code_Block\tQ_2404\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22197728\tO\t22197728\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22197728/\tO\thttps://stackoverflow.com/questions/22197728/\tO\n\t\n\t\nAfter\tO\tAfter\tO\na\tO\ta\tO\nlong\tO\tlong\tO\nresearch\tO\tresearch\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nalthough\tO\talthough\tO\nit\tO\tit\tO\nseemed\tO\tseemed\tO\nthat\tO\tthat\tO\nno\tO\tno\tO\none\tO\tone\tO\nactually\tO\tactually\tO\nbothered\tO\tbothered\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nlol\tO\tlol\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3006\tI-Code_Block\tA_3006\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2901077\tO\t2901077\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2901077/\tO\thttps://stackoverflow.com/questions/2901077/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nexecutes\tO\texecutes\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\nFirefox\tB-Application\tFirefox\tO\nand\tO\tand\tO\nChrome\tB-Application\tChrome\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ngives\tO\tgives\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_199\tI-Code_Block\tQ_199\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhen\tO\twhen\tO\nexecuted\tO\texecuted\tO\nin\tO\tin\tO\nInternet\tB-Application\tInternet\tO\nExplorer\tI-Application\tExplorer\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_200\tI-Code_Block\tQ_200\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nthought\tO\tthought\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nindicated\tO\tindicated\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nlikely\tO\tlikely\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ndebugger\tB-Application\tdebugger\tO\nsays\tO\tsays\tO\nthe\tO\tthe\tO\nrun-time\tB-Error_Name\trun-time\tO\nerror\tI-Error_Name\terror\tO\nis\tO\tis\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nindicated\tO\tindicated\tO\n)\tO\t)\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nwhy\tO\twhy\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2901077\tO\t2901077\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2901077/\tO\thttps://stackoverflow.com/questions/2901077/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\njust\tO\tjust\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nMake\tO\tMake\tO\nthe\tO\tthe\tO\nencoding\tO\tencoding\tO\ntype\tO\ttype\tO\nus-ascii\tB-Value\tus-ascii\tO\n(\tO\t(\tO\nencoding='us-ascii'\tB-Code_Block\tencoding='us-ascii'\tO\n)\tO\t)\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nxml\tB-File_Type\txml\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nsolved\tO\tsolved\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2901077\tO\t2901077\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2901077/\tO\thttps://stackoverflow.com/questions/2901077/\tO\n\t\n\t\nTry\tO\tTry\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nas\tO\tas\tO\nusual\tO\tusual\tO\n,\tO\t,\tO\nIE\tB-Application\tIE\tO\ndoes\tO\tdoes\tO\nthings\tO\tthings\tO\ndiferently\tO\tdiferently\tO\n)\tO\t)\tO\n(\tO\t(\tO\ntake\tO\ttake\tO\nfrom\tO\tfrom\tO\nhttp://msdn.microsoft.com/en-us/library/ms534370(VS.85).aspx\tO\thttp://msdn.microsoft.com/en-us/library/ms534370(VS.85).aspx\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_294\tI-Code_Block\tA_294\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20592756\tO\t20592756\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20592756/\tO\thttps://stackoverflow.com/questions/20592756/\tO\n\t\n\t\nhow\tO\thow\tO\ncan\tO\tcan\tO\ninteract\tO\tinteract\tO\nwith\tO\twith\tO\nmultiple\tO\tmultiple\tO\nconsole\tB-User_Interface_Element\tconsole\tO\nwindows\tI-User_Interface_Element\twindows\tO\n,\tO\t,\tO\nfrom\tO\tfrom\tO\none\tO\tone\tO\nnode.js\tB-Library\tnode.js\tO\nscript\tO\tscript\tO\n?\tO\t?\tO\n\t\nso\tO\tso\tO\nfar\tO\tfar\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nresearched\tO\tresearched\tO\na\tO\ta\tO\nbit\tO\tbit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nfound\tO\tfound\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\ncovers\tO\tcovers\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nis\tO\tis\tO\nto\tO\tto\tO\nhave\tO\thave\tO\none\tO\tone\tO\nmain\tO\tmain\tO\nconsole\tB-User_Interface_Element\tconsole\tO\nwindow\tI-User_Interface_Element\twindow\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nit\tO\tit\tO\nreads\tO\treads\tO\nmy\tO\tmy\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2187\tI-Code_Block\tQ_2187\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nredirect\tO\tredirect\tO\nits\tO\tits\tO\noutput\tO\toutput\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nconsole\tB-User_Interface_Element\tconsole\tO\nwindow\tI-User_Interface_Element\twindow\tO\nnamed\tO\tnamed\tO\nas\tO\tas\tO\nLogger\tB-Variable_Name\tLogger\tB-Code_Block\nwhich\tO\twhich\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nstdout\tB-Library_Variable\tstdout\tB-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\naction\tO\taction\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nselected\tO\tselected\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nkeeps\tO\tkeeps\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\n\"\tO\t\"\tO\nselect\tO\tselect\tO\naction\tO\taction\tO\n\"\tO\t\"\tO\nconsole\tB-User_Interface_Element\tconsole\tO\nwindow\tI-User_Interface_Element\twindow\tO\nclean\tO\tclean\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20592756\tO\t20592756\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20592756/\tO\thttps://stackoverflow.com/questions/20592756/\tO\n\t\n\t\nwell\tO\twell\tO\ni\tO\ti\tO\nmanage\tO\tmanage\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nway\tO\tway\tO\naround\tO\taround\tO\nit\tO\tit\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\ni\tO\ti\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nstay\tO\tstay\tO\nwith\tO\twith\tO\nnode.js\tB-Library\tnode.js\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nstart.js\tB-File_Name\tstart.js\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2749\tI-Code_Block\tA_2749\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nlogger.js\tB-File_Name\tlogger.js\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2750\tI-Code_Block\tA_2750\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nstartAdminInterface.js\tB-File_Name\tstartAdminInterface.js\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2751\tI-Code_Block\tA_2751\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbottom\tO\tbottom\tO\n,\tO\t,\tO\nline\tO\tline\tO\nits\tO\tits\tO\na\tO\ta\tO\nworkaround\tO\tworkaround\tO\nnot\tO\tnot\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nwas\tO\twas\tO\nafter\tO\tafter\tO\n,\tO\t,\tO\nput\tO\tput\tO\ni\tO\ti\tO\nsaw\tO\tsaw\tO\npotential\tO\tpotential\tO\n,\tO\t,\tO\non\tO\ton\tO\nlogger.js\tB-File_Name\tlogger.js\tB-Code_Block\nit\tO\tit\tO\ncould\tO\tcould\tO\nlisten\tO\tlisten\tO\nfrom\tO\tfrom\tO\nmultiple\tO\tmultiple\tO\nsources\tO\tsources\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nan\tO\tan\tO\nenormous\tO\tenormous\tO\nplus\tO\tplus\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nbuilding\tO\tbuilding\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7914865\tO\t7914865\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7914865/\tO\thttps://stackoverflow.com/questions/7914865/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\nselenium\tB-Library\tselenium\tO\ntests\tO\ttests\tO\nusing\tO\tusing\tO\nTestNG\tB-Library\tTestNG\tB-Code_Block\nprogramatically\tO\tprogramatically\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrun\tO\trun\tO\ntest\tO\ttest\tO\nmethods\tO\tmethods\tO\nin\tO\tin\tO\nsequence\tO\tsequence\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nmention\tO\tmention\tO\n.\tO\t.\tO\n\t\nIts\tO\tIts\tO\nlike\tO\tlike\tO\nattribute\tO\tattribute\tO\npreserve-order\tB-Code_Block\tpreserve-order\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\ntrue\tI-Code_Block\ttrue\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nif\tO\tif\tO\nwe\tO\twe\tO\nuse\tO\tuse\tO\nfor\tO\tfor\tO\nTestNG.XML\tB-File_Name\tTestNG.XML\tB-Code_Block\n.\tO\t.\tO\n\t\nSimilar\tO\tSimilar\tO\nfunctionality\tO\tfunctionality\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nachive\tO\tachive\tO\nit\tO\tit\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nTestNG.XMl\tB-File_Name\tTestNG.XMl\tO\n.\tO\t.\tO\n\t\nsetTestNames\tB-Library_Function\tsetTestNames\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_640\tI-Code_Block\tQ_640\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nA.class\tB-Variable_Name\tA.class\tB-Code_Block\nis\tO\tis\tO\nhaving\tO\thaving\tO\nclass\tO\tclass\tO\nlevel\tO\tlevel\tO\n@Test\tB-Code_Block\t@Test\tB-Code_Block\nspecified\tI-Code_Block\tspecified\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nall\tO\tall\tO\nmethods\tO\tmethods\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nclass\tO\tclass\tO\nare\tO\tare\tO\ntestcases\tO\ttestcases\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nTestng\tO\tTestng\tO\nexecuting\tO\texecuting\tO\nall\tO\tall\tO\nmethods\tO\tmethods\tO\nin\tO\tin\tO\nA\tB-Class_Name\tA\tO\n.\tO\t.\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nin\tO\tin\tO\nsequence\tO\tsequence\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nappear\tO\tappear\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7914865\tO\t7914865\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7914865/\tO\thttps://stackoverflow.com/questions/7914865/\tO\n\t\n\t\nIn\tO\tIn\tO\ntestNg\tB-Library\ttestNg\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_925\tI-Code_Block\tA_925\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthem\tO\tthem\tO\nchange\tO\tchange\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_926\tI-Code_Block\tA_926\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnother\tO\tAnother\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_927\tI-Code_Block\tA_927\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nsearched\tO\tsearched\tO\nTestNG\tB-Library\tTestNG\tO\ndocs\tO\tdocs\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nsee\tO\tsee\tO\nan\tO\tan\tO\neasy\tO\teasy\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nusing\tO\tusing\tO\nannotatios\tO\tannotatios\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7914865\tO\t7914865\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7914865/\tO\thttps://stackoverflow.com/questions/7914865/\tO\n\t\n\t\nWithout\tO\tWithout\tO\na\tO\ta\tO\ntestng.xml\tB-File_Name\ttestng.xml\tB-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nIMethodInterceptor\tB-Class_Name\tIMethodInterceptor\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n206113\tO\t206113\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/206113/\tO\thttps://stackoverflow.com/questions/206113/\tO\n\t\n\t\nAre\tO\tAre\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nwindows/dialogs\tI-User_Interface_Element\twindows/dialogs\tO\nconsidered\tO\tconsidered\tO\na\tO\ta\tO\ngood\tO\tgood\tO\npractice\tO\tpractice\tO\nfor\tO\tfor\tO\nwebsites\tO\twebsites\tO\n?\tO\t?\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nthings\tO\tthings\tO\nthat\tO\tthat\tO\nconcerns\tO\tconcerns\tO\nme\tO\tme\tO\nabout\tO\tabout\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nwindow\tI-User_Interface_Element\twindow\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\nlike\tO\tlike\tO\na\tO\ta\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\nwindow\tI-User_Interface_Element\twindow\tO\nand\tO\tand\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\ncause\tO\tcause\tO\nuser\tO\tuser\tO\nfrustration\tO\tfrustration\tO\nor\tO\tor\tO\ncause\tO\tcause\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\nclose\tO\tclose\tO\nit\tO\tit\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\nintrusive\tO\tintrusive\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\nany\tO\tany\tO\nstudies\tO\tstudies\tO\nthat\tO\tthat\tO\ntalk\tO\ttalk\tO\nabout\tO\tabout\tO\nuser\tO\tuser\tO\npreferences\tO\tpreferences\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nrates\tO\trates\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\naccessibility\tO\taccessibility\tO\nissues\tO\tissues\tO\nbeyond\tO\tbeyond\tO\nhaving\tO\thaving\tO\nthe\tO\tthe\tO\na\tO\ta\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nwindow\tI-User_Interface_Element\twindow\tO\nlink\tO\tlink\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nin\tO\tin\tO\na\tO\ta\tO\nnew\tO\tnew\tO\npage\tO\tpage\tO\nwhen\tO\twhen\tO\nJavaScript\tB-Language\tJavaScript\tO\nis\tO\tis\tO\nturned\tO\tturned\tO\noff\tO\toff\tO\n?\tO\t?\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\nsites\tO\tsites\tO\nor\tO\tor\tO\nweb\tO\tweb\tO\napps\tO\tapps\tO\nthat\tO\tthat\tO\nuse\tO\tuse\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nwindows\tI-User_Interface_Element\twindows\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nor\tO\tor\tO\nwhy\tO\twhy\tO\nnot\tO\tnot\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nare\tO\tare\tO\ngood\tO\tgood\tO\nand\tO\tand\tO\nbad\tO\tbad\tO\npractices\tO\tpractices\tO\nfor\tO\tfor\tO\nimplementing\tO\timplementing\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nwindows\tI-User_Interface_Element\twindows\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nmodals\tB-User_Interface_Element\tmodals\tO\nare\tO\tare\tO\nprobably\tO\tprobably\tO\nmost\tO\tmost\tO\noften\tO\toften\tO\nused\tO\tused\tO\nwhen\tO\twhen\tO\ndisplaying\tO\tdisplaying\tO\npictures\tB-User_Interface_Element\tpictures\tO\nor\tO\tor\tO\ngalleries\tB-User_Interface_Element\tgalleries\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhat\tO\twhat\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\npractical\tO\tpractical\tO\nuse\tO\tuse\tO\ncases\tO\tcases\tO\n?\tO\t?\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nsite\tO\tsite\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nlead\tO\tlead\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ndecision\tO\tdecision\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n206113\tO\t206113\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/206113/\tO\thttps://stackoverflow.com/questions/206113/\tO\n\t\n\t\nFrom\tO\tFrom\tO\na\tO\ta\tO\npractice\tO\tpractice\tO\nstandpoint\tO\tstandpoint\tO\n-\tO\t-\tO\nexcluding\tO\texcluding\tO\naccessibility\tO\taccessibility\tO\n-\tO\t-\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nwindows\tI-User_Interface_Element\twindows\tO\nprovide\tO\tprovide\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nless\tO\tless\tO\nstartling\tO\tstartling\tO\nas\tO\tas\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nboxes\tI-User_Interface_Element\tboxes\tO\nand\tO\tand\tO\nfeel\tO\tfeel\tO\nless\tO\tless\tO\nintrusive\tO\tintrusive\tO\nthan\tO\tthan\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\nwindows\tI-User_Interface_Element\twindows\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nusually\tO\tusually\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmore\tO\tmore\tO\ncohesive\tO\tcohesive\tO\nfeel\tO\tfeel\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\nthan\tO\tthan\tO\neither\tO\teither\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\naforementioned\tO\taforementioned\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nAside\tO\tAside\tO\nfrom\tO\tfrom\tO\npictures\tB-User_Interface_Element\tpictures\tO\nor\tO\tor\tO\nmedia\tO\tmedia\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nused\tO\tused\tO\nmodal\tB-User_Interface_Element\tmodal\tO\ndialogs\tI-User_Interface_Element\tdialogs\tO\nto\tO\tto\tO\nserve\tO\tserve\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\npurpose\tO\tpurpose\tO\nas\tO\tas\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nboxes\tI-User_Interface_Element\tboxes\tO\n-\tO\t-\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nsome\tO\tsome\tO\nform\tO\tform\tO\nof\tO\tof\tO\nrequired\tO\trequired\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\nor\tO\tor\tO\nto\tO\tto\tO\nacknowledge\tO\tacknowledge\tO\nsomething\tO\tsomething\tO\nbefore\tO\tbefore\tO\nletting\tO\tletting\tO\nthem\tO\tthem\tO\ninteract\tO\tinteract\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\na\tO\ta\tO\npurely\tO\tpurely\tO\naccessible\tO\taccessible\tO\nstandpoint\tO\tstandpoint\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nso\tO\tso\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\ntypically\tO\ttypically\tO\nrequire\tO\trequire\tO\nJavaScript\tB-Language\tJavaScript\tO\n,\tO\t,\tO\nand\tO\tand\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nmodals\tB-User_Interface_Element\tmodals\tO\nare\tO\tare\tO\nmanaged\tO\tmanaged\tO\nwith\tO\twith\tO\nrespect\tO\trespect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nDOM\tO\tDOM\tO\n,\tO\t,\tO\nscreen\tO\tscreen\tO\nreaders\tO\treaders\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\ninterpret\tO\tinterpret\tO\nthem\tO\tthem\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ncombat\tO\tcombat\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nalways\tO\talways\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\ndegrade\tO\tdegrade\tO\ngracefully\tO\tgracefully\tO\n-\tO\t-\tO\none\tO\tone\tO\nsuggestion\tO\tsuggestion\tO\nis\tO\tis\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmodal\tB-User_Interface_Element\tmodal\tO\ndialog\tI-User_Interface_Element\tdialog\tO\nand\tO\tand\tO\nplace\tO\tplace\tO\nit\tO\tit\tO\non\tO\ton\tO\na\tO\ta\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nWhenever\tO\tWhenever\tO\nthe\tO\tthe\tO\nmodal\tB-User_Interface_Element\tmodal\tO\ndialog\tI-User_Interface_Element\tdialog\tO\nshould\tO\tshould\tO\nappear\tO\tappear\tO\n,\tO\t,\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\npage\tO\tpage\tO\nredirect\tO\tredirect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nmodal\tB-User_Interface_Element\tmodal\tO\npage\tI-User_Interface_Element\tpage\tO\n'\tO\t'\tO\n,\tO\t,\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\nand\tO\tand\tO\nreturn\tO\treturn\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nit\tO\tit\tO\nwas\tO\twas\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nmy\tO\tmy\tO\npersonal\tO\tpersonal\tO\nopinions\tO\topinions\tO\nare\tO\tare\tO\nconcerned\tO\tconcerned\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nmind\tO\tmind\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nwindows\tI-User_Interface_Element\twindows\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nused\tO\tused\tO\ncorrectly\tO\tcorrectly\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\ndecent\tO\tdecent\tO\nexperience\tO\texperience\tO\n-\tO\t-\tO\nif\tO\tif\tO\nsomething\tO\tsomething\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nget\tO\tget\tO\nmy\tO\tmy\tO\nattention\tO\tattention\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nrather\tO\trather\tO\nit\tO\tit\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\nwithout\tO\twithout\tO\nredirecting\tO\tredirecting\tO\nme\tO\tme\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nshowing\tO\tshowing\tO\nan\tO\tan\tO\nugly\tO\tugly\tO\noperating\tO\toperating\tO\nsystem\tO\tsystem\tO\nthemed\tO\tthemed\tO\ndialog\tB-User_Interface_Element\tdialog\tO\n,\tO\t,\tO\nor\tO\tor\tO\na\tO\ta\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nmy\tO\tmy\tO\nbrowser\tB-Application\tbrowser\tO\nwill\tO\twill\tO\nlikely\tO\tlikely\tO\nblock\tO\tblock\tO\n,\tO\t,\tO\nanyway\tO\tanyway\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\n,\tO\t,\tO\nto\tO\tto\tO\nsum\tO\tsum\tO\nit\tO\tit\tO\nup\tO\tup\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nhow\tO\thow\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ninterrupted\tO\tinterrupted\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nchoose\tO\tchoose\tO\na\tO\ta\tO\nmodal\tB-User_Interface_Element\tmodal\tO\ndialog\tI-User_Interface_Element\tdialog\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n206113\tO\t206113\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/206113/\tO\thttps://stackoverflow.com/questions/206113/\tO\n\t\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nas\tO\tas\tO\nthough\tO\tthough\tO\nmany\tO\tmany\tO\nconfuse\tO\tconfuse\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nwindow\tI-User_Interface_Element\twindow\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlayered\tB-User_Interface_Element\tlayered\tO\npanel\tI-User_Interface_Element\tpanel\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nbox\tI-User_Interface_Element\tbox\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nwindow\tI-User_Interface_Element\twindow\tO\nand\tO\tand\tO\na\tO\ta\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\nis\tO\tis\tO\na\tO\ta\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nwindow\tI-User_Interface_Element\twindow\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nlayered\tB-User_Interface_Element\tlayered\tO\npanel\tI-User_Interface_Element\tpanel\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nwindow\tB-User_Interface_Element\twindow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nappearance\tO\tappearance\tO\nof\tO\tof\tO\na\tO\ta\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\nor\tO\tor\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nbox\tI-User_Interface_Element\tbox\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsense\tO\tsense\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nunderlying\tO\tunderlying\tO\nlayers\tO\tlayers\tO\nare\tO\tare\tO\nunavailable\tO\tunavailable\tO\n.\tO\t.\tO\n\t\nModal\tB-User_Interface_Element\tModal\tO\nwindow\tI-User_Interface_Element\twindow\tO\nare\tO\tare\tO\npopular\tO\tpopular\tO\non\tO\ton\tO\nweb\tO\tweb\tO\nsites\tO\tsites\tO\nbecause\tO\tbecause\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nimmune\tO\timmune\tO\nto\tO\tto\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\nblockers\tO\tblockers\tO\n.\tO\t.\tO\n\t\nModal\tB-User_Interface_Element\tModal\tO\nwindows\tI-User_Interface_Element\twindows\tO\nwere\tO\twere\tO\ndesigned\tO\tdesigned\tO\nto\tO\tto\tO\nobtain\tO\tobtain\tO\ninformation\tO\tinformation\tO\nor\tO\tor\tO\nuser\tO\tuser\tO\naction\tO\taction\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nunderlying\tO\tunderlying\tO\napplication\tO\tapplication\tO\nrequires\tO\trequires\tO\nto\tO\tto\tO\ncontinue\tO\tcontinue\tO\n.\tO\t.\tO\n\t\nNon-modal\tB-User_Interface_Element\tNon-modal\tO\nwindows\tI-User_Interface_Element\twindows\tO\nallow\tO\tallow\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nback\tO\tback\tO\nand\tO\tand\tO\nforth\tO\tforth\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nwindow\tB-User_Interface_Element\twindow\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nunderlying\tO\tunderlying\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\ngood\tO\tgood\tO\nuse\tO\tuse\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nnon-modal\tO\tnon-modal\tO\nwindow\tB-User_Interface_Element\twindow\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nscreen\tO\tscreen\tO\nhelp\tO\thelp\tO\nor\tO\tor\tO\na\tO\ta\tO\ntutorial\tO\ttutorial\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nneeds\tO\tneeds\tO\na\tO\ta\tO\nreference\tO\treference\tO\ntool\tO\ttool\tO\nand\tO\tand\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nunderlying\tO\tunderlying\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nIMHO\tO\tIMHO\tO\n,\tO\t,\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nwindows\tI-User_Interface_Element\twindows\tO\nwere\tO\twere\tO\ndesigned\tO\tdesigned\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nnarrow\tO\tnarrow\tO\nspecific\tO\tspecific\tO\npurpose\tO\tpurpose\tO\nand\tO\tand\tO\nare\tO\tare\tO\nused\tO\tused\tO\ninappropriately\tO\tinappropriately\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmean\tO\tmean\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\n!\tO\t!\tO\n\t\n:-)\tO\t:-)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45734089\tO\t45734089\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45734089/\tO\thttps://stackoverflow.com/questions/45734089/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nWSDL\tB-File_Type\tWSDL\tO\nfile\tO\tfile\tO\nlocated\tO\tlocated\tO\nunder\tO\tunder\tO\nsrc\tB-File_Name\tsrc\tO\n\\main\\resources\\wsdl\\\tI-File_Name\t\\main\\resources\\wsdl\\\tO\nfolder\tO\tfolder\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\nmultiple\tO\tmultiple\tO\noperations\tO\toperations\tO\ndefined\tO\tdefined\tO\nwithin\tO\twithin\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napplication\tO\tapplication\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nWeblogic\tB-Device\tWeblogic\tO\n12C\tI-Device\t12C\tO\nserver\tI-Device\tserver\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nexpose\tO\texpose\tO\nthe\tO\tthe\tO\nSOAP\tO\tSOAP\tO\nweb-service\tO\tweb-service\tO\nusing\tO\tusing\tO\nApache\tB-Application\tApache\tO\nCammel\tB-Library\tCammel\tO\n(\tO\t(\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n2.18.3\tB-Version\t2.18.3\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nJava\tB-Language\tJava\tO\nDSL\tO\tDSL\tO\n-\tO\t-\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nwritten\tO\twritten\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nunder\tO\tunder\tO\nconfiguration\tB-Library_Function\tconfiguration\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nRouteBuilder\tB-Library_Class\tRouteBuilder\tO\nclass\tO\tclass\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5992\tI-Code_Block\tQ_5992\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhile\tO\tWhile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndeploying\tO\tdeploying\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthrowing\tO\tthrowing\tO\nbelow\tO\tbelow\tO\nexception\tB-Library_Class\texception\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5993\tI-Code_Block\tQ_5993\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\npom.xml\tB-File_Name\tpom.xml\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5994\tI-Code_Block\tQ_5994\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45734089\tO\t45734089\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45734089/\tO\thttps://stackoverflow.com/questions/45734089/\tO\n\t\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nsays\tO\tsays\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nmentioned\tO\tmentioned\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nendpoint\tO\tendpoint\tO\nnames.CODE_BLOCK\tB-Code_Block\tnames.CODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6666\tI-Code_Block\tQ_6666\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nStep\tO\tStep\tO\n1\tO\t1\tO\n:\tO\t:\tO\nGenerate\tO\tGenerate\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nwsdl\tB-Language\twsdl\tO\nusing\tO\tusing\tO\nwsdl2java\tB-Application\twsdl2java\tO\ncommand\tO\tcommand\tO\nor\tO\tor\tO\nyour\tO\tyour\tO\nchoice\tO\tchoice\tO\nof\tO\tof\tO\nIDE\tB-Application\tIDE\tO\n.\tO\t.\tO\n\t\nStep\tO\tStep\tO\n2\tO\t2\tO\n:\tO\t:\tO\nHave\tO\tHave\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nclasspath\tO\tclasspath\tO\n\t\nStep\tO\tStep\tO\n3\tO\t3\tO\n:\tO\t:\tO\nMention\tO\tMention\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nname\tO\tname\tO\nand\tO\tand\tO\nendpoint\tO\tendpoint\tO\nnames\tO\tnames\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38496528\tO\t38496528\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38496528/\tO\thttps://stackoverflow.com/questions/38496528/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nquestions\tO\tquestions\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncommunity\tO\tcommunity\tO\nfor\tO\tfor\tO\nopening\tO\topening\tO\nthe\tO\tthe\tO\nwindow\tO\twindow\tO\nView\tO\tView\tO\non\tO\ton\tO\na\tO\ta\tO\nclick\tO\tclick\tO\nof\tO\tof\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\njust\tO\tjust\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\n.Show\tB-Library_Function\t.Show\tB-Code_Block\nand\tO\tand\tO\nsome\tO\tsome\tO\nquestion\tO\tquestion\tO\nare\tO\tare\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nusing\tO\tusing\tO\nUser\tB-Library_Class\tUser\tO\nControl\tI-Library_Class\tControl\tO\nin\tO\tin\tO\nWindow\tO\tWindow\tO\nView\tO\tView\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nfollowing\tO\tfollowing\tO\nMVVM\tB-Algorithm\tMVVM\tO\npattern\tO\tpattern\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nWPF\tB-Library\tWPF\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nViews\tO\tViews\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nfile\tO\tfile\tO\ncalled\tO\tcalled\tO\nSalesView.xaml\tB-File_Name\tSalesView.xaml\tB-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\na\tO\ta\tO\nUser\tB-Library_Class\tUser\tB-Code_Block\nControl(WPF)\tI-Library_Class\tControl(WPF)\tI-Code_Block\nview\tO\tview\tO\nand\tO\tand\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nI\tO\tI\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nDashboard.xaml\tB-File_Name\tDashboard.xaml\tB-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nApp.xaml\tB-File_Name\tApp.xaml\tB-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\nWindow\tO\tWindow\tO\nView\tO\tView\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nstructure\tO\tstructure\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nthing\tO\tthing\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nMy\tO\tMy\tO\nrequirement\tO\trequirement\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nin\tO\tin\tO\nDashboard.xaml\tB-File_Name\tDashboard.xaml\tB-Code_Block\non\tO\ton\tO\nclick\tO\tclick\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nopen\tO\topen\tO\na\tO\ta\tO\nSalesView.xaml\tB-File_Name\tSalesView.xaml\tB-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\na\tO\ta\tO\nUser\tB-Library_Class\tUser\tB-Code_Block\nControl(WPF)\tI-Library_Class\tControl(WPF)\tI-Code_Block\nview\tO\tview\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nwindow\tO\twindow\tO\nView\tO\tView\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38496528\tO\t38496528\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38496528/\tO\thttps://stackoverflow.com/questions/38496528/\tO\n\t\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nshort\tO\tshort\tO\nof\tO\tof\tO\nshell\tB-Application\tshell\tO\nfor\tO\tfor\tO\nhosting\tO\thosting\tO\nyour\tO\tyour\tO\nuser\tO\tuser\tO\ncontrols\tO\tcontrols\tO\n.\tO\t.\tO\n\t\nSimplest\tO\tSimplest\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthem\tO\tthem\tO\non\tO\ton\tO\nmain\tO\tmain\tO\nwindow\tO\twindow\tO\nas\tO\tas\tO\ncontent\tO\tcontent\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nprevious\tO\tprevious\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\nframework\tO\tframework\tO\nlike\tO\tlike\tO\nPrism\tB-Library\tPrism\tO\n.\tO\t.\tO\n\t\nNormally\tO\tNormally\tO\nhow\tO\thow\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ncontroller/view\tB-Class_Name\tcontroller/view\tO\nmanager\tI-Class_Name\tmanager\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\npass\tO\tpass\tO\nin\tO\tin\tO\nto\tO\tto\tO\nit\tO\tit\tO\nmy\tO\tmy\tO\nview\tB-Variable_Name\tview\tO\nand\tO\tand\tO\nvm\tO\tvm\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nwould\tO\twould\tO\nbind\tO\tbind\tO\nit\tO\tit\tO\nand\tO\tand\tO\nput\tO\tput\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nhosting\tO\thosting\tO\nwindow\tO\twindow\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5551\tI-Code_Block\tA_5551\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsage\tO\tUsage\tO\nsample\tO\tsample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5552\tI-Code_Block\tA_5552\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20557278\tO\t20557278\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20557278/\tO\thttps://stackoverflow.com/questions/20557278/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthree\tO\tthree\tO\nforms\tO\tforms\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nrepeated\tO\trepeated\tO\ninstance\tO\tinstance\tO\nand\tO\tand\tO\nno\tO\tno\tO\nunique\tO\tunique\tO\nidentifier\tO\tidentifier\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2180\tI-Code_Block\tQ_2180\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nattach\tO\tattach\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nconsole.log\tB-File_Name\tconsole.log\tO\nor\tO\tor\tO\nany\tO\tany\tO\nmessage\tO\tmessage\tO\ntriggered\tO\ttriggered\tO\nby\tO\tby\tO\na\tO\ta\tO\nclick\tO\tclick\tO\nto\tO\tto\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntargeting\tO\ttargeting\tO\nthese\tO\tthese\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nwith\tO\twith\tO\na\tO\ta\tO\njQuery\tB-Library\tjQuery\tO\nDom\tI-Library\tDom\tO\nselector\tB-Library_Function\tselector\tO\n$(\"form[action='/haters']\")\tB-Code_Block\t$(\"form[action='/haters']\")\tB-Code_Block\n\t\nI\tO\tI\tO\nposted\tO\tposted\tO\non\tO\ton\tO\ncodepen\tB-Application\tcodepen\tO\nalso\tO\talso\tO\n:\tO\t:\tO\nhttp://codepen.io/marc313/pen/uphiv\tO\thttp://codepen.io/marc313/pen/uphiv\tO\n\t\nPlease\tO\tPlease\tO\nand\tO\tand\tO\nthanks\tO\tthanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20557278\tO\t20557278\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20557278/\tO\thttps://stackoverflow.com/questions/20557278/\tO\n\t\n\t\nWhile\tO\tWhile\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nbind\tO\tbind\tO\nto\tO\tto\tO\neach\tO\teach\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nindividually\tO\tindividually\tO\n,\tO\t,\tO\nas\tO\tas\tO\nin\tO\tin\tO\nDeryck\tB-User_Name\tDeryck\tO\n's\tO\t's\tO\nanswer\tI-User_Name\tanswer\tO\n,\tO\t,\tO\noften\tO\toften\tO\ntimes\tO\ttimes\tO\nsuch\tO\tsuch\tO\npractice\tO\tpractice\tO\nleads\tO\tleads\tO\nto\tO\tto\tO\nduplicate\tO\tduplicate\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nIts\tO\tIts\tO\nlikely\tO\tlikely\tO\nyour\tO\tyour\tO\nactual\tO\tactual\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nto\tO\tto\tO\nlog\tO\tlog\tO\n3\tO\t3\tO\ndifferent\tO\tdifferent\tO\nthings\tO\tthings\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\nwhen\tO\twhen\tO\n3\tO\t3\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nare\tO\tare\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nParticularly\tO\tParticularly\tO\nif\tO\tif\tO\nthese\tO\tthese\tO\n3\tO\t3\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\ndo\tO\tdo\tO\nsimilar\tO\tsimilar\tO\nactions\tO\tactions\tO\nor\tO\tor\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nact\tO\tact\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nset\tO\tset\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nits\tO\tits\tO\noften\tO\toften\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nclean\tO\tclean\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\njQuery\tB-Library\tjQuery\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2743\tI-Code_Block\tA_2743\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMarkup\tO\tMarkup\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2744\tI-Code_Block\tA_2744\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nReference\tO\tReference\tO\n\t\nOn\tO\tOn\tO\ncalling\tO\tcalling\tO\n.on()\tB-Library_Function\t.on()\tO\nfor\tO\tfor\tO\nevent\tO\tevent\tO\nbinding\tO\tbinding\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20557278\tO\t20557278\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20557278/\tO\thttps://stackoverflow.com/questions/20557278/\tO\n\t\n\t\nEach\tO\tEach\tO\nitem\tO\titem\tO\nin\tO\tin\tO\na\tO\ta\tO\nset\tO\tset\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nindex\tB-Code_Block\tindex\tB-Code_Block\nnumber\tO\tnumber\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nidentify\tO\tidentify\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\njQuery\tB-Library\tjQuery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2732\tI-Code_Block\tA_2732\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\n.eq()\tB-Library_Function\t.eq()\tB-Code_Block\nmethod\tO\tmethod\tO\nmeans\tO\tmeans\tO\n\"\tO\t\"\tO\nequals\tO\tequals\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nrefers\tO\trefers\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\nnumber\tO\tnumber\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nselector\tB-Library_Function\tselector\tO\nyou\tO\tyou\tO\nchose\tO\tchose\tO\nin\tO\tin\tO\n$('input[type=submit'])\tB-Code_Block\t$('input[type=submit'])\tB-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nsystemically\tO\tsystemically\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nthat\tO\tthat\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nfor()\tB-Code_Block\tfor()\tB-Code_Block\nor\tO\tor\tO\nwhile()\tB-Code_Block\twhile()\tB-Code_Block\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nreplace\tO\treplace\tO\neq(0)\tB-Library_Function\teq(0)\tB-Code_Block\nwith\tO\twith\tO\nwhatever\tO\twhatever\tO\nnumber\tO\tnumber\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nidentify\tO\tidentify\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n(\tO\t(\tO\nstarting\tO\tstarting\tO\nfrom\tO\tfrom\tO\n0\tB-Value\t0\tO\nbeing\tO\tbeing\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nelement\tO\telement\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nset\tB-Data_Structure\tset\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\ngreater\tO\tgreater\tO\nthan\tO\tthan\tO\n$('input[type=submit]').length)\tB-Code_Block\t$('input[type=submit]').length)\tB-Code_Block\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nfork\tO\tfork\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nCodePen\tB-Application\tCodePen\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\nin\tO\tin\tO\naction\tO\taction\tO\nwith\tO\twith\tO\nalert()\tB-Library_Function\talert()\tB-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19308940\tO\t19308940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19308940/\tO\thttps://stackoverflow.com/questions/19308940/\tO\n\t\n\t\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\nbehaviour\tO\tbehaviour\tO\nfor\tO\tfor\tO\nediting\tO\tediting\tO\na\tO\ta\tO\ncell\tB-User_Interface_Element\tcell\tO\nis\tO\tis\tO\ndouble\tO\tdouble\tO\nclicking\tO\tclicking\tO\nit\tO\tit\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nselect\tO\tselect\tO\nfrom\tO\tfrom\tO\n,\tO\t,\tO\n(\tO\t(\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nhave\tO\thave\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nand\tO\tand\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\neditable\tO\teditable\tO\n)\tO\t)\tO\n,\tO\t,\tO\nso\tO\tso\tO\ni\tO\ti\tO\nopened\tO\topened\tO\npersistent\tB-Application\tpersistent\tO\neditor\tI-Application\teditor\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\ntoo\tO\ttoo\tO\nslow\tO\tslow\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntoo\tO\ttoo\tO\nmany\tO\tmany\tO\nrows\tB-Data_Structure\trows\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\ni\tO\ti\tO\nturned\tO\tturned\tO\nto\tO\tto\tO\nreimplementing\tO\treimplementing\tO\nthe\tO\tthe\tO\nmousePressEvent\tB-Library_Function\tmousePressEvent\tO\nand\tO\tand\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\ncombobox\tB-User_Interface_Element\tcombobox\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nright\tO\tright\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nvisual\tO\tvisual\tO\ncue\tO\tcue\tO\nto\tO\tto\tO\ntell\tO\ttell\tO\nthem\tO\tthem\tO\nwhich\tO\twhich\tO\ncell\tB-User_Interface_Element\tcell\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nright\tO\tright\tO\nclicked\tO\tclicked\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\ni\tO\ti\tO\nknow\tO\tknow\tO\nmaybe\tO\tmaybe\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nbg\tO\tbg\tO\ncolor\tO\tcolor\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\ncell\tB-User_Interface_Element\tcell\tO\n)\tO\t)\tO\n\t\nbut\tO\tbut\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nachieve\tO\tachieve\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\ndrawing\tO\tdrawing\tO\na\tO\ta\tO\nblack\tO\tblack\tO\ntriangle\tB-User_Interface_Element\ttriangle\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nlower\tO\tlower\tO\nright\tO\tright\tO\ncolor\tO\tcolor\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\nto\tO\tto\tO\nindicate\tO\tindicate\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nright\tO\tright\tO\nclicked\tO\tclicked\tO\non\tO\ton\tO\n?\tO\t?\tO\n\t\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nimage\tB-User_Interface_Element\timage\tO\nfrom\tO\tfrom\tO\nexcel\tB-Application\texcel\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19308940\tO\t19308940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19308940/\tO\thttps://stackoverflow.com/questions/19308940/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nQStyleItemDelegate\tB-Library_Class\tQStyleItemDelegate\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2570\tI-Code_Block\tA_2570\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42107523\tO\t42107523\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42107523/\tO\thttps://stackoverflow.com/questions/42107523/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nPOS\tB-Application\tPOS\tO\ntagger\tI-Application\ttagger\tO\nin\tO\tin\tO\nMaven\tB-Application\tMaven\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5348\tI-Code_Block\tQ_5348\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\ninfo\tO\tinfo\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5349\tI-Code_Block\tQ_5349\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nPOS\tB-Application\tPOS\tO\ntagger\tI-Application\ttagger\tO\nis\tO\tis\tO\n3.7.0\tB-Version\t3.7.0\tO\n,\tO\t,\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\neclipse\tB-Application\teclipse\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\npom.xml\tB-File_Name\tpom.xml\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nold\tO\told\tO\nand\tO\tand\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45291615\tO\t45291615\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45291615/\tO\thttps://stackoverflow.com/questions/45291615/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nwondering\tO\twondering\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nwhich\tO\twhich\tO\nmodules\tO\tmodules\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nload\tO\tload\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nmodules\tO\tmodules\tO\narray\tB-Data_Structure\tarray\tO\n(\tO\t(\tO\nconfig/modules.config.php\tB-File_Name\tconfig/modules.config.php\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nautoloader\tB-Library_Function\tautoloader\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nload\tO\tload\tO\nall\tO\tall\tO\nwhich\tO\twhich\tO\nwere\tO\twere\tO\ninstalled\tO\tinstalled\tO\nusing\tO\tusing\tO\ncomposer\tB-Application\tcomposer\tO\nor\tO\tor\tO\nsome\tO\tsome\tO\nare\tO\tare\tO\nalready\tO\talready\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nZF3\tB-Library\tZF3\tO\nitself\tO\titself\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nconflict\tO\tconflict\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nload\tO\tload\tO\nthem\tO\tthem\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45291615\tO\t45291615\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45291615/\tO\thttps://stackoverflow.com/questions/45291615/\tO\n\t\n\t\nAll\tO\tAll\tO\nmodules\tO\tmodules\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\ninstall\tO\tinstall\tO\nusing\tO\tusing\tO\ncomposer\tB-Application\tcomposer\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nregistered\tO\tregistered\tO\nin\tO\tin\tO\nautoloader\tB-Library_Function\tautoloader\tB-Code_Block\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmodules\tO\tmodules\tO\nis\tO\tis\tO\nregistered\tO\tregistered\tO\nin\tO\tin\tO\nconfig/modules.config.php\tB-File_Name\tconfig/modules.config.php\tB-Code_Block\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nZend\tB-Application\tZend\tO\nComponent\tI-Application\tComponent\tO\nInstaller\tI-Application\tInstaller\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nZend\tB-Library\tZend\tO\nModules\tO\tModules\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nloaded\tO\tloaded\tO\nin\tO\tin\tO\nmodules.config.php\tB-File_Name\tmodules.config.php\tB-Code_Block\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nZend\tB-Application\tZend\tO\nComponent\tI-Application\tComponent\tO\nInstaller\tI-Application\tInstaller\tO\nwill\tO\twill\tO\nprompt\tO\tprompt\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ninject\tO\tinject\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nin\tO\tin\tO\nmodules\tO\tmodules\tO\nconfiguration\tO\tconfiguration\tO\n(\tO\t(\tO\nconfig/modules.config.php\tB-File_Name\tconfig/modules.config.php\tB-Code_Block\n)\tO\t)\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nwhile\tO\twhile\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\ncomposer\tB-Application\tcomposer\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nvery\tO\tvery\tO\nhelpful\tO\thelpful\tO\nfeature\tO\tfeature\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nby\tO\tby\tO\nread\tO\tread\tO\nextra.zf.component\tB-Library_Variable\textra.zf.component\tB-Code_Block\nkey\tO\tkey\tO\nin\tO\tin\tO\ncomposer.json\tB-File_Name\tcomposer.json\tB-Code_Block\nfrom\tO\tfrom\tO\ninstalled\tO\tinstalled\tO\nmodule\tO\tmodule\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nfrom\tO\tfrom\tO\nZend\tB-Library\tZend\tO\nForm\tI-Library\tForm\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nZend\tB-Library\tZend\tB-Code_Block\n\\\\Form\tI-Library\t\\\\Form\tI-Code_Block\nto\tO\tto\tO\ncomposer.json\tB-File_Name\tcomposer.json\tB-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\nrun\tO\trun\tO\ncomposer\tB-Code_Block\tcomposer\tB-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\n,\tO\t,\tO\ncomposer\tB-Application\tcomposer\tB-Code_Block\nwill\tO\twill\tO\nprompt\tO\tprompt\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ninject\tO\tinject\tO\nthis\tO\tthis\tO\nmodule\tO\tmodule\tO\nto\tO\tto\tO\nconfig/modules.config.php\tB-File_Name\tconfig/modules.config.php\tB-Code_Block\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nZend\tB-Application\tZend\tO\nComponent\tI-Application\tComponent\tO\nInstaller\tI-Application\tInstaller\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nextra.zf.component\tB-Library_Variable\textra.zf.component\tB-Code_Block\nkey\tO\tkey\tO\nin\tO\tin\tO\ncomposer.json\tB-File_Name\tcomposer.json\tB-Code_Block\nfrom\tO\tfrom\tO\ninstalled\tO\tinstalled\tO\nmodule\tO\tmodule\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nmanually\tO\tmanually\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nconfig/modules.config.php\tB-File_Name\tconfig/modules.config.php\tB-Code_Block\n.\tO\t.\tO\n\t\nFYI\tO\tFYI\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nusing\tO\tusing\tO\nZend\tB-Application\tZend\tO\nSkeleton\tI-Application\tSkeleton\tO\nApplication\tI-Application\tApplication\tO\n,\tO\t,\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nuse\tO\tuse\tO\nZend\tB-Application\tZend\tO\nComponent\tI-Application\tComponent\tO\nInstaller\tI-Application\tInstaller\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11929508\tO\t11929508\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11929508/\tO\thttps://stackoverflow.com/questions/11929508/\tO\n\t\n\t\nHttpSession\tB-Library_Class\tHttpSession\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nresolved\tO\tresolved\tO\nto\tO\tto\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\njsf\tB-Library\tjsf\tO\nlogout\tO\tlogout\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1119\tI-Code_Block\tQ_1119\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28324166\tO\t28324166\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28324166/\tO\thttps://stackoverflow.com/questions/28324166/\tO\n\t\n\t\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ntwo\tO\ttwo\tO\ncountdown\tO\tcountdown\tO\ntimer\tO\ttimer\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nrun\tO\trun\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\nin\tO\tin\tO\none\tO\tone\tO\nandroid\tB-Operating_System\tandroid\tO\napplication\tO\tapplication\tO\nusing\tO\tusing\tO\nchronometer\tB-Library_Class\tchronometer\tO\n.\tO\t.\tO\n\t\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\ntutorials\tO\ttutorials\tO\nplease\tO\tplease\tO\ncomment\tO\tcomment\tO\nit\tO\tit\tO\nin\tO\tin\tO\nhere\tO\there\tO\nI\tO\tI\tO\nwill\tO\twill\tO\ngladly\tO\tgladly\tO\nappreciate\tO\tappreciate\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nthank\tO\tthank\tO\nyou\tO\tyou\tO\n:)\tO\t:)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24663347\tO\t24663347\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24663347/\tO\thttps://stackoverflow.com/questions/24663347/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ninvestigating\tO\tinvestigating\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nNodaTime\tB-Library\tNodaTime\tO\nLocalDate\tB-Library_Class\tLocalDate\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nour\tO\tour\tO\nexisting\tO\texisting\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nBCL\tB-Library\tBCL\tO\nDateTime/DateTimeOffset\tB-Library_Class\tDateTime/DateTimeOffset\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ntimezone\tO\ttimezone\tO\nrelated\tO\trelated\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nour\tO\tour\tO\ncode\tO\tcode\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nour\tO\tour\tO\nmisunderstanding\tO\tmisunderstanding\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narguably\tO\targuably\tO\nambiguous\tO\tambiguous\tO\nbehavior\tO\tbehavior\tO\nof\tO\tof\tO\nDateTime\tB-Library_Class\tDateTime\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nfully\tO\tfully\tO\nleverage\tO\tleverage\tO\nNodaTime\tB-Library\tNodaTime\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nand\tO\tand\tO\nreceive\tO\treceive\tO\ndates\tO\tdates\tO\nfrom\tO\tfrom\tO\nour\tO\tour\tO\nASP.NET\tB-Library\tASP.NET\tO\nWeb\tI-Library\tWeb\tO\nAPI\tI-Library\tAPI\tO\n2\tB-Version\t2\tO\nweb\tO\tweb\tO\nservices\tO\tservices\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nYYYY-MM-DD\tB-Code_Block\tYYYY-MM-DD\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nhad\tO\thad\tO\nsuccess\tO\tsuccess\tO\nin\tO\tin\tO\nproperly\tO\tproperly\tO\nserializing\tO\tserializing\tO\nLocalDate\tB-Library_Class\tLocalDate\tO\nto\tO\tto\tO\nYYYY-MM-DD\tB-Code_Block\tYYYY-MM-DD\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\ndeserialize\tO\tdeserialize\tO\na\tO\ta\tO\ndate\tO\tdate\tO\nquery\tO\tquery\tO\nparameter\tO\tparameter\tO\nto\tO\tto\tO\na\tO\ta\tO\nLocalDate\tB-Library_Class\tLocalDate\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nLocateDate\tB-Library_Class\tLocateDate\tO\nis\tO\tis\tO\nalways\tO\talways\tO\n1970-01-01\tB-Value\t1970-01-01\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\nprototype\tO\tprototype\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nsome\tO\tsome\tO\ncode\tO\tcode\tO\nremoved\tO\tremoved\tO\nfor\tO\tfor\tO\nclarity\tO\tclarity\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nPeopleController.cs\tB-File_Name\tPeopleController.cs\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2765\tI-Code_Block\tQ_2765\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGlobal.asax.cs\tB-File_Name\tGlobal.asax.cs\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2766\tI-Code_Block\tQ_2766\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nservice\tO\tservice\tO\nvia\tO\tvia\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2767\tI-Code_Block\tQ_2767\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nreturned\tO\treturned\tO\nis\tO\tis\tO\nJanuary\tB-Value\tJanuary\tO\n1\tI-Value\t1\tO\n,\tI-Value\t,\tO\n1970\tI-Value\t1970\tO\n.\tO\t.\tO\n\t\nStepping\tO\tStepping\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\nconfirm\tO\tconfirm\tO\nthat\tO\tthat\tO\nbirthday\tB-Variable_Name\tbirthday\tB-Code_Block\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\n1970-01-01\tB-Value\t1970-01-01\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nconfigure\tO\tconfigure\tO\nthe\tO\tthe\tO\nserialization\tO\tserialization\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nspecified\tO\tspecified\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nas\tO\tas\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nparameter\tO\tparameter\tO\n(\tO\t(\tO\nor\tO\tor\tO\npath\tO\tpath\tO\nelement\tO\telement\tO\n)\tO\t)\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nproperly\tO\tproperly\tO\nserialized\tO\tserialized\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nNodaTime\tB-Library\tNodaTime\tO\nLocalDate\tB-Library_Class\tLocalDate\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24663347\tO\t24663347\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24663347/\tO\thttps://stackoverflow.com/questions/24663347/\tO\n\t\n\t\nThanks\tO\tThanks\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nvery\tO\tvery\tO\nhelpful\tO\thelpful\tO\narticle\tO\tarticle\tO\nfrom\tO\tfrom\tO\nMicrosoft\tB-Organization\tMicrosoft\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nmodel\tB-Library_Class\tmodel\tO\nbinder\tI-Library_Class\tbinder\tO\n.\tO\t.\tO\n\t\nAdd\tO\tAdd\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3378\tI-Code_Block\tA_3378\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\ncontroller\tO\tcontroller\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3379\tI-Code_Block\tA_3379\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\narticle\tO\tarticle\tO\nalso\tO\talso\tO\nmentions\tO\tmentions\tO\nother\tO\tother\tO\nways\tO\tways\tO\nto\tO\tto\tO\nregister\tO\tregister\tO\nmodel\tB-Library_Class\tmodel\tO\nbinders\tI-Library_Class\tbinders\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nsince\tO\tsince\tO\nyour\tO\tyour\tO\nmethod\tO\tmethod\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nLocalDate\tB-Library_Class\tLocalDate\tB-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nstill\tO\tstill\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nNoda\tB-Library\tNoda\tO\nTime\tI-Library\tTime\tO\nserialziation\tB-Library_Class\tserialziation\tO\nfor\tO\tfor\tO\nJson.net\tB-Library\tJson.net\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthat\tO\tthat\tO\nends\tO\tends\tO\nup\tO\tup\tO\ngetting\tO\tgetting\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbody\tO\tbody\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22361019\tO\t22361019\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22361019/\tO\thttps://stackoverflow.com/questions/22361019/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nUITableView\tB-Library_Class\tUITableView\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnever\tO\tnever\tO\nconsistent\tO\tconsistent\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ntable\tB-Variable_Name\ttable\tO\nview\tI-Variable_Name\tview\tO\nhas\tO\thas\tO\n2\tO\t2\tO\nsections\tO\tsections\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\n2\tO\t2\tO\nUIButtons\tB-Library_Class\tUIButtons\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nboth\tO\tboth\tO\nare\tO\tare\tO\npractically\tO\tpractically\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\none\tO\tone\tO\nis\tO\tis\tO\ngrey\tB-Value\tgrey\tO\nand\tO\tand\tO\none\tO\tone\tO\nis\tO\tis\tO\nred\tB-Value\tred\tO\n.\tO\t.\tO\n\t\nEvery\tO\tEvery\tO\nrow\tO\trow\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUITableView\tB-Library_Class\tUITableView\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ngrey\tB-Value\tgrey\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nUITableView\tB-Library_Class\tUITableView\tO\nfirst\tO\tfirst\tO\nloads\tO\tloads\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nif\tO\tif\tO\na\tO\ta\tO\nuser\tO\tuser\tO\ntaps\tO\ttaps\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nswitches\tO\tswitches\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nred\tB-Value\tred\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n,\tO\t,\tO\nabout\tO\tabout\tO\n80%\tO\t80%\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\ncontroller\tO\tcontroller\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nUITableView\tB-Library_Class\tUITableView\tO\non\tO\ton\tO\nmy\tO\tmy\tO\niPhone\tB-Device\tiPhone\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n2\tO\t2\tO\nrows\tB-User_Interface_Element\trows\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nsection\tO\tsection\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nweird\tO\tweird\tO\nis\tO\tis\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntap\tO\ttap\tO\nmy\tO\tmy\tO\nfinger\tO\tfinger\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n2\tO\t2\tO\nthings\tO\tthings\tO\nhappen\tO\thappen\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nfunctionality\tO\tfunctionality\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nworks\tO\tworks\tO\nand\tO\tand\tO\nNSLogs\tB-Library_Function\tNSLogs\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\nin\tO\tin\tO\nxcode\tB-Application\txcode\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nred\tO\tred\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nappears\tO\tappears\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nit\tO\tit\tO\n's\tO\t's\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\ngrey\tB-Value\tgrey\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\njust\tO\tjust\tO\ninvisible\tO\tinvisible\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nbecause\tO\tbecause\tO\nif\tO\tif\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nsees\tO\tsees\tO\n2\tO\t2\tO\nrows\tB-User_Interface_Element\trows\tO\nwithout\tO\twithout\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nsomething\tO\tsomething\tO\nis\tO\tis\tO\nbroken\tO\tbroken\tO\nor\tO\tor\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ntap\tO\ttap\tO\non\tO\ton\tO\nthat\tO\tthat\tO\nrow\tB-User_Interface_Element\trow\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nscroll\tO\tscroll\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nvery\tO\tvery\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nUITableView\tB-Library_Class\tUITableView\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nscroll\tO\tscroll\tO\nback\tO\tback\tO\nup\tO\tup\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ninvisible\tO\tinvisible\tO\ngrey\tB-Value\tgrey\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nwill\tO\twill\tO\nmagically\tO\tmagically\tO\nappear\tO\tappear\tO\nlike\tO\tlike\tO\nthey\tO\tthey\tO\nwere\tO\twere\tO\nthere\tO\tthere\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n3\tO\t3\tO\nmethod\tO\tmethod\tO\nimplementations\tO\timplementations\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ninvolved\tO\tinvolved\tO\nin\tO\tin\tO\ncreating\tO\tcreating\tO\nmy\tO\tmy\tO\nUITableView\tB-Library_Class\tUITableView\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2436\tI-Code_Block\tQ_2436\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncellForRowAtIndexPath\tB-Function_Name\tcellForRowAtIndexPath\tB-Code_Block\nmethod\tO\tmethod\tO\nimplementation\tO\timplementation\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwork\tO\twork\tO\nin\tO\tin\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\nUITableView\tB-Library_Class\tUITableView\tO\nand\tO\tand\tO\nwhich\tO\twhich\tO\nactually\tO\tactually\tO\ncreates\tO\tcreates\tO\nthe\tO\tthe\tO\nUIButton\tB-Library_Class\tUIButton\tO\nsettings\tO\tsettings\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nrow\tB-User_Interface_Element\trow\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nif\tB-Code_Block\tif\tO\nelse\tI-Code_Block\telse\tO\nstatement\tO\tstatement\tO\nreally\tO\treally\tO\nhas\tO\thas\tO\n2\tO\t2\tO\nsets\tO\tsets\tO\nof\tO\tof\tO\nnearly\tO\tnearly\tO\nidentical\tO\tidentical\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\ndifference\tO\tdifference\tO\nis\tO\tis\tO\none\tO\tone\tO\nis\tO\tis\tO\nfor\tO\tfor\tO\nsection\tO\tsection\tO\n1\tO\t1\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntable\tB-Variable_Name\ttable\tO\nview\tI-Variable_Name\tview\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nis\tO\tis\tO\nfor\tO\tfor\tO\nsection\tO\tsection\tO\n2\tO\t2\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2437\tI-Code_Block\tQ_2437\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nincluded\tO\tincluded\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nmethod\tO\tmethod\tO\nimplementations\tO\timplementations\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\n2\tO\t2\tO\nstatements\tO\tstatements\tO\ntrigger\tO\ttrigger\tO\nbecause\tO\tbecause\tO\nthey\tO\tthey\tO\nonly\tO\tonly\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nfunctionality\tO\tfunctionality\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\neach\tO\teach\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\nhave\tO\thave\tO\nnothing\tO\tnothing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwill\tO\twill\tO\npost\tO\tpost\tO\nthem\tO\tthem\tO\nhere\tO\there\tO\nanyways\tO\tanyways\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\n2\tO\t2\tO\nstatements\tO\tstatements\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nif\tB-Code_Block\tif\tO\nelse\tI-Code_Block\telse\tO\nfor\tO\tfor\tO\ncellForRowAtIndexPath\tB-Function_Name\tcellForRowAtIndexPath\tB-Code_Block\nand\tO\tand\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\ntouch\tO\ttouch\tO\nevents\tO\tevents\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n2\tO\t2\tO\nsections\tO\tsections\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntable\tB-Variable_Name\ttable\tO\nview\tI-Variable_Name\tview\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2438\tI-Code_Block\tQ_2438\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22361019\tO\t22361019\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22361019/\tO\thttps://stackoverflow.com/questions/22361019/\tO\n\t\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\npattern\tO\tpattern\tO\nof\tO\tof\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nUITableViewCell\tB-Library_Class\tUITableViewCell\tB-Code_Block\nfrom\tO\tfrom\tO\nwithin\tO\twithin\tO\ntableView:cellForRowAtIndexPath\tB-Function_Name\ttableView:cellForRowAtIndexPath\tB-Code_Block\n:\tI-Function_Name\t:\tI-Code_Block\nquite\tO\tquite\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntrouble\tO\ttrouble\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nplace\tO\tplace\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nreally\tO\treally\tO\nonly\tO\tonly\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nbuilt-in\tO\tbuilt-in\tO\nUITableViewCell\tB-Library_Class\tUITableViewCell\tB-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nplace\tO\tplace\tO\n;\tO\t;\tO\nfor\tO\tfor\tO\ncustom\tO\tcustom\tO\ncells\tB-User_Interface_Element\tcells\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nrecommend\tO\trecommend\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nUITableViewCell\tB-Library_Class\tUITableViewCell\tB-Code_Block\nsubclass\tO\tsubclass\tO\nwith\tO\twith\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nsetup\tB-Function_Name\tsetup\tO\n\"\tO\t\"\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nand\tO\tand\tO\nuses\tO\tuses\tO\nthat\tO\tthat\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\n's\tO\t's\tO\nUI\tO\tUI\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\ntake\tO\ttake\tO\nsection\tO\tsection\tO\n0\tO\t0\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nUITableView\tB-Library_Class\tUITableView\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3038\tI-Code_Block\tA_3038\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\n's\tO\t's\tO\nlayout\tO\tlayout\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nimages\tB-User_Interface_Element\timages\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nin\tO\tin\tO\nIB\tB-Application\tIB\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nalso\tO\talso\tO\nmakes\tO\tmakes\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\na\tO\ta\tO\nlot\tO\tlot\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nread\tO\tread\tO\n(\tO\t(\tO\nand\tO\tand\tO\nre-read\tO\tre-read\tO\n6\tO\t6\tO\nmonths\tO\tmonths\tO\nlater\tO\tlater\tO\n!\tO\t!\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nunless\tO\tunless\tO\nthe\tO\tthe\tO\n2\tO\t2\tO\ncells\tB-User_Interface_Element\tcells\tO\n(\tO\t(\tO\nsection\tO\tsection\tO\n0\tO\t0\tO\nand\tO\tand\tO\nsection\tO\tsection\tO\n1)\tO\t1)\tO\nare\tO\tare\tO\nreally\tO\treally\tO\ninterchangeable\tO\tinterchangeable\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nrecommend\tO\trecommend\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\nsubclasses\tO\tsubclasses\tO\nof\tO\tof\tO\nUITableViewCell\tB-Library_Class\tUITableViewCell\tB-Code_Block\nto\tO\tto\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\ngreater\tO\tgreater\tO\ncontrol\tO\tcontrol\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nforce\tO\tforce\tO\none\tO\tone\tO\nto\tO\tto\tO\nact\tO\tact\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nor\tO\tor\tO\nvice\tO\tvice\tO\nversa\tO\tversa\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nsimply\tO\tsimply\tO\nassign\tO\tassign\tO\ndifferent\tO\tdifferent\tO\nidentifiers\tO\tidentifiers\tO\nand\tO\tand\tO\nrecycle\tO\trecycle\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41482106\tO\t41482106\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41482106/\tO\thttps://stackoverflow.com/questions/41482106/\tO\n\t\n\t\nI\tO\tI\tO\nimplemented\tO\timplemented\tO\ndeep\tO\tdeep\tO\nlink\tO\tlink\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nandroid\tB-Operating_System\tandroid\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nWhenever\tO\tWhenever\tO\nI\tO\tI\tO\nclicked\tO\tclicked\tO\nthe\tO\tthe\tO\nshare\tO\tshare\tO\nlink\tO\tlink\tO\nits\tO\tits\tO\nopen\tO\topen\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nperfectly\tO\tperfectly\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nshare\tO\tshare\tO\nlink\tO\tlink\tO\nand\tO\tand\tO\npaste\tO\tpaste\tO\nthe\tO\tthe\tO\nchrome\tB-Application\tchrome\tO\nbrowser\tI-Application\tbrowser\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nopen\tO\topen\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nSorry\tO\tSorry\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nbad\tO\tbad\tO\nenglish\tO\tenglish\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41482106\tO\t41482106\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41482106/\tO\thttps://stackoverflow.com/questions/41482106/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nactually\tO\tactually\tO\nclick\tO\tclick\tO\non\tO\ton\tO\na\tO\ta\tO\nlink\tO\tlink\tO\npointing\tO\tpointing\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nURL\tO\tURL\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\nthe\tO\tthe\tO\ndeep-link\tO\tdeep-link\tO\nIntent\tB-Library_Class\tIntent\tO\n,\tO\t,\tO\nwriting\tO\twriting\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nmanually\tO\tmanually\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ntrigger\tO\ttrigger\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26873953\tO\t26873953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26873953/\tO\thttps://stackoverflow.com/questions/26873953/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3079\tI-Code_Block\tQ_3079\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ninto\tO\tinto\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\ntuples\tB-Data_Structure\ttuples\tO\nrepresenting\tO\trepresenting\tO\nconsecutive\tO\tconsecutive\tO\nranges\tO\tranges\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3080\tI-Code_Block\tQ_3080\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\ncompact\tO\tcompact\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nHaskell\tB-Language\tHaskell\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26873953\tO\t26873953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26873953/\tO\thttps://stackoverflow.com/questions/26873953/\tO\n\t\n\t\nThis\tO\tThis\tO\nseems\tO\tseems\tO\npretty\tO\tpretty\tO\ncompact\tO\tcompact\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3711\tI-Code_Block\tA_3711\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26873953\tO\t26873953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26873953/\tO\thttps://stackoverflow.com/questions/26873953/\tO\n\t\n\t\nSure\tO\tSure\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3712\tI-Code_Block\tA_3712\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10709772\tO\t10709772\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10709772/\tO\thttps://stackoverflow.com/questions/10709772/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nand\tO\tand\tO\nmaybe\tO\tmaybe\tO\nsome\tO\tsome\tO\ncode\tO\tcode\tO\nexamples\tO\texamples\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\npresenter\tO\tpresenter\tO\nduring\tO\tduring\tO\na\tO\ta\tO\nlive\tO\tlive\tO\naddress\tO\taddress\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nhit\tO\thit\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nwhen\tO\twhen\tO\nhe\tO\the\tO\nis\tO\tis\tO\naway\tO\taway\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nwill\tO\twill\tO\nthen\tO\tthen\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\njpg\tB-File_Type\tjpg\tO\nor\tO\tor\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nimage\tB-User_Interface_Element\timage\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nclients\tB-Application\tclients\tO\nside\tO\tside\tO\nthat\tO\tthat\tO\nsays\tO\tsays\tO\nhe\tO\the\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\naway\tO\taway\tO\nand\tO\tand\tO\nto\tO\tto\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nmute\tO\tmute\tO\nthe\tO\tthe\tO\npresenter\tO\tpresenter\tO\n's\tO\t's\tO\nmicrophone\tB-Device\tmicrophone\tO\n?\tO\t?\tO\n\t\nAnyone\tO\tAnyone\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nin\tO\tin\tO\nFMIS\tB-Application\tFMIS\tO\n4\tB-Version\t4\tO\nand\tO\tand\tO\nAS3\tB-Language\tAS3\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10709772\tO\t10709772\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10709772/\tO\thttps://stackoverflow.com/questions/10709772/\tO\n\t\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\ndo-able\tO\tdo-able\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nbreak\tO\tbreak\tO\ndown\tO\tdown\tO\n:\tO\t:\tO\n\t\nClient\tB-Application\tClient\tO\nfor\tO\tfor\tO\npresenter\tO\tpresenter\tO\nmakes\tO\tmakes\tO\na\tO\ta\tO\nNetConnection\tB-Library_Class\tNetConnection\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\npublishes\tO\tpublishes\tO\na\tO\ta\tO\nNetStream\tB-Library_Class\tNetStream\tO\nto\tO\tto\tO\nFMS\tB-Application\tFMS\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\npresenter\tO\tpresenter\tO\nhits\tO\thits\tO\naway\tO\taway\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n:\tO\t:\tO\n\t\nPresenter\tO\tPresenter\tO\n's\tO\t's\tO\nclient\tB-Application\tclient\tO\nsets\tO\tsets\tO\nmicrophone\tB-Device\tmicrophone\tO\ngain\tO\tgain\tO\nto\tO\tto\tO\n0\tB-Value\t0\tO\n\t\nPresenter\tO\tPresenter\tO\n's\tO\t's\tO\nclient\tB-Application\tclient\tO\nuses\tO\tuses\tO\nNetStream.send()\tB-Library_Function\tNetStream.send()\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nall\tO\tall\tO\nsubscribing\tO\tsubscribing\tO\nclients\tB-Application\tclients\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmessage\tO\tmessage\tO\nis\tO\tis\tO\nbasically\tO\tbasically\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\narguments\tO\targuments\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nsubscribing\tO\tsubscribing\tO\nclients\tB-Application\tclients\tO\nshould\tO\tshould\tO\nexecute\tO\texecute\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nwould\tO\twould\tO\ndisplay/hide\tO\tdisplay/hide\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\naway\tO\taway\tO\n\"\tO\t\"\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nthen\tO\tthen\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nreverse\tO\treverse\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\npresenter\tO\tpresenter\tO\nreturns\tO\treturns\tO\n\t\n[\tO\t[\tO\nEdit\tO\tEdit\tO\n]\tO\t]\tO\n\t\nAdding\tO\tAdding\tO\nsome\tO\tsome\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nclarify\tO\tclarify\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nNetStream.send()\tB-Library_Function\tNetStream.send()\tB-Code_Block\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\npresenter\tO\tpresenter\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1351\tI-Code_Block\tA_1351\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nsubscriber\tO\tsubscriber\tO\ncode\tO\tcode\tO\n\t\nWhen\tO\tWhen\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\nNetStream\tB-Library_Class\tNetStream\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nclient\tB-Library_Variable\tclient\tO\nproperty\tO\tproperty\tO\nso\tO\tso\tO\nit\tO\tit\tO\nknows\tO\tknows\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n\"\tO\t\"\tO\ntoggleAwayImageDisplay\tB-Function_Name\ttoggleAwayImageDisplay\tO\n\"\tO\t\"\tO\nwe\tO\twe\tO\nspecified\tO\tspecified\tO\nabove\tO\tabove\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1352\tI-Code_Block\tA_1352\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14649052\tO\t14649052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14649052/\tO\thttps://stackoverflow.com/questions/14649052/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\njoomla\tB-Application\tjoomla\tO\n2.5\tB-Version\t2.5\tO\nwhich\tO\twhich\tO\nlog\tO\tlog\tO\nmany\tO\tmany\tO\ndeprecated\tO\tdeprecated\tO\nwarnings\tO\twarnings\tO\nlike\tO\tlike\tO\nError::raiseNotice()\tB-Error_Name\tError::raiseNotice()\tB-Code_Block\nis\tO\tis\tI-Code_Block\ndeprecated\tO\tdeprecated\tI-Code_Block\n.\tO\t.\tI-Code_Block\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nresult\tO\tresult\tO\nwidth\tO\twidth\tO\na\tO\ta\tO\nbig\tO\tbig\tO\nlog\tB-File_Type\tlog\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\nturn\tO\tturn\tO\noff\tO\toff\tO\nthis\tO\tthis\tO\noption\tO\toption\tO\n,\tO\t,\tO\nand\tO\tand\tO\nlog\tO\tlog\tO\njust\tO\tjust\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nexceptions\tB-Library_Class\texceptions\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14649052\tO\t14649052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14649052/\tO\thttps://stackoverflow.com/questions/14649052/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalways\tO\talways\tO\nplace\tO\tplace\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nreporting\tO\treporting\tO\ncondition\tO\tcondition\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nindex.php\tB-File_Name\tindex.php\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nerror_reporting\tB-Code_Block\terror_reporting\tO\n(\tI-Code_Block\t(\tO\nE_ALL\tI-Code_Block\tE_ALL\tO\n^\tI-Code_Block\t^\tO\nE_DEPRECATED\tI-Code_Block\tE_DEPRECATED\tO\n)\tI-Code_Block\t)\tO\n;\tB-Code_Block\t;\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\n:\tO\t:\tO\nhttp://php.net/manual/en/function.error-reporting.php\tO\thttp://php.net/manual/en/function.error-reporting.php\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nedit\tO\tedit\tO\nerror.php\tB-File_Name\terror.php\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\njoomla\tB-Application\tjoomla\tO\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nand\tO\tand\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1854\tI-Code_Block\tA_1854\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ndisable\tO\tdisable\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nraise\tO\traise\tO\ndeprecated\tO\tdeprecated\tO\nwarnings\tO\twarnings\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4560859\tO\t4560859\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4560859/\tO\thttps://stackoverflow.com/questions/4560859/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\n:\tO\t:\tO\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\ntextbox1\tB-Variable_Name\ttextbox1\tO\nand\tO\tand\tO\ntextbox2\tB-Variable_Name\ttextbox2\tO\nand\tO\tand\tO\n8\tO\t8\tO\ncheckboxes\tB-User_Interface_Element\tcheckboxes\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nASP.NET\tB-Library\tASP.NET\tO\n(\tO\t(\tO\nVB.NET\tB-Language\tVB.NET\tO\n)\tO\t)\tO\nwebform\tO\twebform\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nretrieve\tO\tretrieve\tO\nthe\tO\tthe\tO\nseats\tO\tseats\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nparticular\tO\tparticular\tO\ndates\tO\tdates\tO\nmeans\tO\tmeans\tO\nif\tO\tif\tO\ni\tO\ti\tO\nenter\tO\tenter\tO\n11/12/2010\tB-Value\t11/12/2010\tO\nin\tO\tin\tO\ntextbox1\tB-Variable_Name\ttextbox1\tO\nthen\tO\tthen\tO\nin\tO\tin\tO\ntextbox2\tB-Variable_Name\ttextbox2\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nfrom\tO\tfrom\tO\nseat_select\tB-Variable_Name\tseat_select\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\nsay\tO\tsay\tO\n(\tB-Value\t(\tO\n1\tI-Value\t1\tO\n,\tI-Value\t,\tO\n2\tI-Value\t2\tO\n,\tI-Value\t,\tO\n3)\tI-Value\t3)\tO\nwhere\tO\twhere\tO\ndate\tO\tdate\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n11/12/2010\tB-Value\t11/12/2010\tO\n\t\nIf\tO\tIf\tO\ni\tO\ti\tO\nenter\tO\tenter\tO\n13/12/2010\tB-Value\t13/12/2010\tO\nin\tO\tin\tO\ntextbox1\tB-Variable_Name\ttextbox1\tO\nthen\tO\tthen\tO\nin\tO\tin\tO\ntextbox2\tB-Variable_Name\ttextbox2\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n1\tB-Value\t1\tO\n,\tI-Value\t,\tO\n2\tI-Value\t2\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nVB.NET\tB-Language\tVB.NET\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4560859\tO\t4560859\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4560859/\tO\thttps://stackoverflow.com/questions/4560859/\tO\n\t\n\t\nMarkup\tO\tMarkup\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_478\tI-Code_Block\tA_478\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCode-behind\tO\tCode-behind\tO\n(\tO\t(\tO\nC#\tB-Language\tC#\tO\n)\tO\t)\tO\n-\tO\t-\tO\nformatting\tO\tformatting\tO\non\tO\ton\tO\npresentation\tO\tpresentation\tO\nlayer\tO\tlayer\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_479\tI-Code_Block\tA_479\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nSystem.Data.DataSetExtensions.dll\tB-File_Name\tSystem.Data.DataSetExtensions.dll\tB-Code_Block\n,\tO\t,\tO\nSystem.Core.dll\tB-File_Name\tSystem.Core.dll\tB-Code_Block\n.\tO\t.\tO\n\t\nCode-behind\tO\tCode-behind\tO\n(\tO\t(\tO\nC#\tB-Language\tC#\tO\n)\tO\t)\tO\n-\tO\t-\tO\nformatting\tO\tformatting\tO\non\tO\ton\tO\ndata\tO\tdata\tO\nlayer\tO\tlayer\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_480\tI-Code_Block\tA_480\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4560859\tO\t4560859\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4560859/\tO\thttps://stackoverflow.com/questions/4560859/\tO\n\t\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nquery\tO\tquery\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nyou\tO\tyou\tO\na\tO\ta\tO\ncomma\tO\tcomma\tO\nseparate\tO\tseparate\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nseat_select\tB-Variable_Name\tseat_select\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nlinq\tB-Library\tlinq\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\ndistinct\tO\tdistinct\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nreturned\tO\treturned\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_477\tI-Code_Block\tA_477\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38266387\tO\t38266387\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38266387/\tO\thttps://stackoverflow.com/questions/38266387/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nsurvey\tO\tsurvey\tO\nanswers\tO\tanswers\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\ndecided\tO\tdecided\tO\nput\tO\tput\tO\nsmiley\tO\tsmiley\tO\nimages\tB-User_Interface_Element\timages\tO\nto\tO\tto\tO\nact\tO\tact\tO\nas\tO\tas\tO\na\tO\ta\tO\nradio\tB-Library_Class\tradio\tO\nbuttons\tI-Library_Class\tbuttons\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\non\tO\ton\tO\nandroid\tB-Operating_System\tandroid\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\nsmiley\tO\tsmiley\tO\nimages\tB-User_Interface_Element\timages\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\ntouches\tO\ttouches\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nactivated\tO\tactivated\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nradio\tB-Library_Class\tradio\tO\nbutton\tI-Library_Class\tbutton\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nallowed\tO\tallowed\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nchoose\tO\tchoose\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\ncould\tO\tcould\tO\nguide\tO\tguide\tO\nme\tO\tme\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nappreciate\tO\tappreciate\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38266387\tO\t38266387\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38266387/\tO\thttps://stackoverflow.com/questions/38266387/\tO\n\t\n\t\nThis\tO\tThis\tO\nquestion\tO\tquestion\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nanswered\tO\tanswered\tO\nbefore\tO\tbefore\tO\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nfrom\tO\tfrom\tO\n@Benito\tB-User_Name\t@Benito\tO\n-Bertoli\tI-User_Name\t-Bertoli\tO\n\t\nRadioButton\tB-Library_Class\tRadioButton\tO\n-\tO\t-\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ndrawable\tB-Library_Class\tdrawable\tO\n?\tO\t?\tO\n\t\nGive\tO\tGive\tO\nyour\tO\tyour\tO\nradiobutton\tB-Library_Class\tradiobutton\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nstyle\tB-HTML_XML_Tag\tstyle\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5508\tI-Code_Block\tA_5508\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ncustom_btn_radio.xml\tB-File_Name\tcustom_btn_radio.xml\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5509\tI-Code_Block\tA_5509\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nReplace\tO\tReplace\tO\nthe\tO\tthe\tO\ndrawables\tB-Library_Class\tdrawables\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nown\tO\town\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38266387\tO\t38266387\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38266387/\tO\thttps://stackoverflow.com/questions/38266387/\tO\n\t\n\t\nI\tO\tI\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nlate\tO\tlate\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nandroid:button\tB-Code_Block\tandroid:button\tB-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n@btmImage\tI-Code_Block\t@btmImage\tI-Code_Block\nlink\tI-Code_Block\tlink\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6379\tI-Code_Block\tA_6379\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43446506\tO\t43446506\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43446506/\tO\thttps://stackoverflow.com/questions/43446506/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nVF\tB-Library\tVF\tO\ncomponent\tO\tcomponent\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nbatch\tB-Variable_Name\tbatch\tO\njob\tI-Variable_Name\tjob\tO\ndetails\tO\tdetails\tO\nin\tO\tin\tO\na\tO\ta\tO\npageblock\tB-Library_Class\tpageblock\tO\ntable\tI-Library_Class\ttable\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nmy\tO\tmy\tO\ncomponent\tO\tcomponent\tO\naint\tO\taint\tO\nsaving\tO\tsaving\tO\n,\tO\t,\tO\nit\tO\tit\tO\nsays\tO\tsays\tO\n:\tO\t:\tO\nError\tO\tError\tO\nError\tO\tError\tO\n:\tO\t:\tO\nRead\tB-Error_Name\tRead\tO\nonly\tI-Error_Name\tonly\tO\nproperty\tI-Error_Name\tproperty\tO\n'\tO\t'\tO\nc:batchDetailsComponent.BatchJobDetails\tO\tc:batchDetailsComponent.BatchJobDetails\tO\n'\tO\t'\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nvisualforce\tB-Library\tvisualforce\tO\ncomponent\tO\tcomponent\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5564\tI-Code_Block\tQ_5564\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nVF\tB-Library\tVF\tO\nPage\tO\tPage\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5565\tI-Code_Block\tQ_5565\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nController\tO\tController\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5566\tI-Code_Block\tQ_5566\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43446506\tO\t43446506\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43446506/\tO\thttps://stackoverflow.com/questions/43446506/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\naccess\tB-Variable_Name\taccess\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ncomponent\tO\tcomponent\tO\nto\tO\tto\tO\nglobal\tB-Data_Type\tglobal\tB-Code_Block\n.\tO\t.\tO\n\t\nLike\tO\tLike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n<apex:component\tB-Code_Block\t<apex:component\tB-Code_Block\naccess=\"global\"\tI-Code_Block\taccess=\"global\"\tI-Code_Block\ncontroller=\"BatchOpportunityDetailsExtension\">\tI-Code_Block\tcontroller=\"BatchOpportunityDetailsExtension\">\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35377419\tO\t35377419\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35377419/\tO\thttps://stackoverflow.com/questions/35377419/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nHadoop\tB-Application\tHadoop\tO\nand\tO\tand\tO\nMongo\tB-Application\tMongo\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndownloaded\tO\tdownloaded\tO\nthe\tO\tthe\tO\nmongo-hadoop\tB-File_Name\tmongo-hadoop\tO\nfiles\tO\tfiles\tO\nfrom\tO\tfrom\tO\ngit\tB-Application\tgit\tO\nand\tO\tand\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nbuilt\tO\tbuilt\tO\njar\tB-File_Type\tjar\tO\nfiles\tO\tfiles\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nbelow\tO\tbelow\tO\nerror\tO\terror\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4339\tI-Code_Block\tQ_4339\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\ntell\tO\ttell\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35377419\tO\t35377419\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35377419/\tO\thttps://stackoverflow.com/questions/35377419/\tO\n\t\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nnetwork\tO\tnetwork\tO\nconnection\tO\tconnection\tO\n?\tO\t?\tO\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nconsole\tB-Application\tconsole\tO\nfor\tO\tfor\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nnetwork\tO\tnetwork\tO\nis\tO\tis\tO\nOK\tO\tOK\tO\n:\tO\t:\tO\n\t\n$\tB-Code_Block\t$\tO\nwget\tI-Code_Block\twget\tO\nhttps://repo1.maven.org/maven2/org/apache/commons/commons-math3/3.4.1/commons-math3-3.4.1.jar\tI-Code_Block\thttps://repo1.maven.org/maven2/org/apache/commons/commons-math3/3.4.1/commons-math3-3.4.1.jar\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35377419\tO\t35377419\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35377419/\tO\thttps://stackoverflow.com/questions/35377419/\tO\n\t\n\t\nMy\tO\tMy\tO\nfirewall\tB-Application\tfirewall\tO\nwas\tO\twas\tO\nblocking\tO\tblocking\tO\nthe\tO\tthe\tO\nconnection\tO\tconnection\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ni\tO\ti\tO\ndisabled\tO\tdisabled\tO\nthe\tO\tthe\tO\nfirewall\tB-Application\tfirewall\tO\nand\tO\tand\tO\nrestarted\tO\trestarted\tO\nthe\tO\tthe\tO\nVM\tB-Application\tVM\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nit\tO\tit\tO\n's\tO\t's\tO\nworking\tO\tworking\tO\nperfectly\tO\tperfectly\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29909833\tO\t29909833\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29909833/\tO\thttps://stackoverflow.com/questions/29909833/\tO\n\t\n\t\nI\tO\tI\tO\nremoved\tO\tremoved\tO\nLaravel\tB-Library\tLaravel\tO\n's\tO\t's\tO\nscaffolding\tO\tscaffolding\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nphp\tB-Code_Block\tphp\tB-Code_Block\nartisan\tI-Code_Block\tartisan\tI-Code_Block\nfresh\tI-Code_Block\tfresh\tI-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nAuth\tO\tAuth\tO\nmiddleware\tB-Library\tmiddleware\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\ntalk\tO\ttalk\tO\nabout\tO\tabout\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nfeature\tO\tfeature\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npassword-reset\tB-Variable_Name\tpassword-reset\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nonly\tO\tonly\tO\nexplains\tO\texplains\tO\nits\tO\tits\tO\nuse\tO\tuse\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nscaffolding\tO\tscaffolding\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nif\tO\tif\tO\nI\tO\tI\tO\nremoved\tO\tremoved\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nchapter\tO\tchapter\tO\n\"\tO\t\"\tO\nManuel\tO\tManuel\tO\nauthentication\tO\tauthentication\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\ncommon\tO\tcommon\tO\nauthentication\tO\tauthentication\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\ndetermining\tO\tdetermining\tO\nif\tO\tif\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nauthenticated\tO\tauthenticated\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnothing\tO\tnothing\tO\nabout\tO\tabout\tO\npassword-reset\tB-Variable_Name\tpassword-reset\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\npoint\tO\tpoint\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\nmiddleware\tB-Library\tmiddleware\tO\nneed\tO\tneed\tO\nspecific\tO\tspecific\tO\nrows\tB-Data_Structure\trows\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nDB\tO\tDB\tO\ntables\tB-Data_Structure\ttables\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nwith\tO\twith\tO\nmigrations\tO\tmigrations\tO\n?\tO\t?\tO\n\t\nEspecially\tO\tEspecially\tO\n\"\tO\t\"\tO\nusers\tB-Variable_Name\tusers\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\npassword_resets\tB-Variable_Name\tpassword_resets\tO\n\"\tO\t\"\tO\ntables\tB-Data_Structure\ttables\tO\nconfigured\tO\tconfigured\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napp\tB-File_Name\tapp\tB-Code_Block\n\\config\\auth.php\tI-File_Name\t\\config\\auth.php\tI-Code_Block\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nproblem\tO\tproblem\tO\nmay\tO\tmay\tO\nseem\tO\tseem\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nclue\tO\tclue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34359643\tO\t34359643\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34359643/\tO\thttps://stackoverflow.com/questions/34359643/\tO\n\t\n\t\nI\tO\tI\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nhaving\tO\thaving\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwhen\tO\twhen\tO\nupdating\tO\tupdating\tO\nrecords\tO\trecords\tO\non\tO\ton\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nreference\tO\treference\tO\nhere\tO\there\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4194\tI-Code_Block\tQ_4194\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\ninsert\tO\tinsert\tO\n,\tO\t,\tO\ndelete\tO\tdelete\tO\nand\tO\tand\tO\nquery\tO\tquery\tO\nrows\tB-Data_Structure\trows\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nupdate\tO\tupdate\tO\nother\tO\tother\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nhowever\tO\thowever\tO\nwhenever\tO\twhenever\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nCustomerID\tB-Variable_Name\tCustomerID\tO\nfield\tO\tfield\tO\n(\tO\t(\tO\nint\tB-Data_Type\tint\tO\n,\tO\t,\tO\nnon-null\tB-Value\tnon-null\tO\n)\tO\t)\tO\nit\tO\tit\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nsaying\tO\tsaying\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nall\tO\tall\tO\nrights\tO\trights\tO\nto\tO\tto\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\ntable\tB-Data_Structure\ttable\tO\nhowever\tO\thowever\tO\nwhile\tO\twhile\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nCustomerID\tB-Variable_Name\tCustomerID\tO\ncolumn\tB-Data_Structure\tcolumn\tO\non\tO\ton\tO\nany\tO\tany\tO\nrows\tB-Data_Structure\trows\tO\n,\tO\t,\tO\never\tO\tever\tO\nwhen\tO\twhen\tO\nRevision\tB-Variable_Name\tRevision\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlooked\tO\tlooked\tO\naround\tO\taround\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\ndeal\tO\tdeal\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nregex\tO\tregex\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nphp\tB-Language\tphp\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nall\tO\tall\tO\nnon-printable\tO\tnon-printable\tO\ncharacters\tO\tcharacters\tO\nhowever\tO\thowever\tO\neven\tO\teven\tO\nwhen\tO\twhen\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nfrom\tO\tfrom\tO\nphpMyAdmin\tB-Application\tphpMyAdmin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nthrown\tO\tthrown\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\nhas\tO\thas\tO\ninsight\tO\tinsight\tO\ninto\tO\tinto\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nTable\tB-Data_Structure\tTable\tO\ndescription\tO\tdescription\tO\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34359643\tO\t34359643\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34359643/\tO\thttps://stackoverflow.com/questions/34359643/\tO\n\t\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\npossibly\tO\tpossibly\tO\nencounter\tO\tencounter\tO\nthis\tO\tthis\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nupdate\tO\tupdate\tO\ntrigger\tO\ttrigger\tO\nfiring\tO\tfiring\tO\noff\tO\toff\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nreferencing\tO\treferencing\tO\na\tO\ta\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nMay\tO\tMay\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\noffending\tO\toffending\tO\ntrigger\tO\ttrigger\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\neven\tO\teven\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread/write\tO\tread/write\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\ntable\tB-Data_Structure\ttable\tO\n!\tO\t!\tO\n\t\nAs\tO\tAs\tO\nsuch\tO\tsuch\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nexist\tO\texist\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nis\tO\tis\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nreference\tO\treference\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nFurther\tO\tFurther\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nkick\tO\tkick\tO\noff\tO\toff\tO\na\tO\ta\tO\ncascade\tO\tcascade\tO\nof\tO\tof\tO\nsuch\tO\tsuch\tO\ntriggers\tO\ttriggers\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nburied\tO\tburied\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\none\tO\tone\tO\nlayer\tO\tlayer\tO\ndeep\tO\tdeep\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nshow\tO\tshow\tO\ntriggers\tO\ttriggers\tO\n:\tO\t:\tO\n\t\nhttp://dev.mysql.com/doc/refman/5.7/en/show-triggers.html\tO\thttp://dev.mysql.com/doc/refman/5.7/en/show-triggers.html\tO\n\t\nTo\tO\tTo\tO\nmodify\tO\tmodify\tO\nthem\tO\tthem\tO\n:\tO\t:\tO\n\t\nhttp://dev.mysql.com/doc/refman/5.7/en/trigger-syntax.html\tO\thttp://dev.mysql.com/doc/refman/5.7/en/trigger-syntax.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18946310\tO\t18946310\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18946310/\tO\thttps://stackoverflow.com/questions/18946310/\tO\n\t\n\t\nUITableViewStyleGrouped\tB-Library_Class\tUITableViewStyleGrouped\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nrounded\tO\trounded\tO\ncorners\tO\tcorners\tO\nlike\tO\tlike\tO\nin\tO\tin\tO\niOS\tB-Operating_System\tiOS\tO\nversions\tO\tversions\tO\n<=\tO\t<=\tO\n6\tB-Version\t6\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nanyone\tO\tanyone\tO\nhaving\tO\thaving\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\niOS\tB-Operating_System\tiOS\tO\n7\tB-Version\t7\tO\n?\tO\t?\tO\n\t\nMy\tO\tMy\tO\nUITableView\tB-Library_Class\tUITableView\tO\nis\tO\tis\tO\nall\tO\tall\tO\nwritten\tO\twritten\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\ncomplex\tO\tcomplex\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nhad\tO\thad\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nand\tO\tand\tO\nguidelines\tO\tguidelines\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nsee\tO\tsee\tO\nany\tO\tany\tO\nmention\tO\tmention\tO\nof\tO\tof\tO\nchange\tO\tchange\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\nappearance\tO\tappearance\tO\n.\tO\t.\tO\n\t\nWhere\tO\tWhere\tO\ndid\tO\tdid\tO\nthe\tO\tthe\tO\ncorners\tO\tcorners\tO\ngo\tO\tgo\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18946310\tO\t18946310\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18946310/\tO\thttps://stackoverflow.com/questions/18946310/\tO\n\t\n\t\niOS\tB-Operating_System\tiOS\tO\n7\tB-Version\t7\tO\nis\tO\tis\tO\nBorderless\tO\tBorderless\tO\n.\tO\t.\tO\n\t\nRounded\tO\tRounded\tO\ncorners\tO\tcorners\tO\nare\tO\tare\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\niOS\tB-Operating_System\tiOS\tO\n7\tB-Version\t7\tO\n.\tO\t.\tO\n\t\nApple\tB-Organization\tApple\tO\nremoved\tO\tremoved\tO\nthis\tO\tthis\tO\nfeature\tO\tfeature\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\niOS\tB-Operating_System\tiOS\tO\n7\tB-Version\t7\tO\nand\tO\tand\tO\nhad\tO\thad\tO\na\tO\ta\tO\ndiscussion\tO\tdiscussion\tO\nwith\tO\twith\tO\napple\tB-Organization\tapple\tO\nsupport\tO\tsupport\tO\nguys\tO\tguys\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nconfirmed\tO\tconfirmed\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nno\tO\tno\tO\nmore\tO\tmore\tO\nsupported\tO\tsupported\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nSettings\tB-Application\tSettings\tO\napp\tO\tapp\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n—\tO\t—\tO\nthe\tO\tthe\tO\ntable\tB-User_Interface_Element\ttable\tO\nview\tO\tview\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\ngroup\tO\tgroup\tO\nstyle\tO\tstyle\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10028031\tO\t10028031\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10028031/\tO\thttps://stackoverflow.com/questions/10028031/\tO\n\t\n\t\nNow\tO\tNow\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nexample\tO\texample\tO\nlist\tB-Data_Structure\tlist\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_874\tI-Code_Block\tQ_874\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nis\tO\tis\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\ncount\tO\tcount\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nmain\tO\tmain\tO\nlist\tB-Data_Structure\tlist\tO\n(\tO\t(\tO\ndblWordFreqByCluster\tB-Variable_Name\tdblWordFreqByCluster\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nmeans\tO\tmeans\tO\ngetting\tO\tgetting\tO\ncount\tO\tcount\tO\nof\tO\tof\tO\nList\tB-Code_Block\tList\tB-Code_Block\n<KeyValuePair<string,\tI-Code_Block\t<KeyValuePair<string,\tI-Code_Block\ndouble>>\tI-Code_Block\tdouble>>\tI-Code_Block\nlists\tB-Data_Structure\tlists\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\ncount\tO\tcount\tO\nthem\tO\tthem\tO\nvia\tO\tvia\tO\nmaking\tO\tmaking\tO\nforeach\tB-Code_Block\tforeach\tO\niteration\tO\titeration\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbecause\tO\tbecause\tO\ni\tO\ti\tO\nsuppose\tO\tsuppose\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\ncause\tO\tcause\tO\nunnecessary\tO\tunnecessary\tO\nperformance\tO\tperformance\tO\nloss\tO\tloss\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10028031\tO\t10028031\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10028031/\tO\thttps://stackoverflow.com/questions/10028031/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nLINQ\tB-Library\tLINQ\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1273\tI-Code_Block\tA_1273\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nmuch\tO\tmuch\tO\ndifferent\tO\tdifferent\tO\nthan\tO\tthan\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nforeach\tB-Code_Block\tforeach\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nless\tO\tless\tO\nverbose\tO\tverbose\tO\nand\tO\tand\tO\njust\tO\tjust\tO\nas\tO\tas\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nread\tO\tread\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10028031\tO\t10028031\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10028031/\tO\thttps://stackoverflow.com/questions/10028031/\tO\n\t\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1272\tI-Code_Block\tA_1272\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nShould\tO\tShould\tO\nwork\tO\twork\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nEdited\tO\tEdited\tO\n:\tO\t:\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nit\tO\tit\tO\nwas\tO\twas\tO\njava\tB-Language\tjava\tO\n;)\tO\t;)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36914244\tO\t36914244\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36914244/\tO\thttps://stackoverflow.com/questions/36914244/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\na\tO\ta\tO\ntodo\tO\ttodo\tO\nitem\tO\titem\tO\nby\tO\tby\tO\npatching\tO\tpatching\tO\nin\tO\tin\tO\n:complete\tB-Function_Name\t:complete\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncheckbox\tB-User_Interface_Element\tcheckbox\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nlink_to\tB-Library_Function\tlink_to\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbelow\tO\tbelow\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ncheckbox\tB-User_Interface_Element\tcheckbox\tO\nso\tO\tso\tO\nit\tO\tit\tO\nfeels\tO\tfeels\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\nis\tO\tis\tO\nticked\tO\tticked\tO\noff\tO\toff\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nView\tO\tView\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4549\tI-Code_Block\tQ_4549\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nController\tO\tController\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4550\tI-Code_Block\tQ_4550\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nResources\tO\tResources\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4551\tI-Code_Block\tQ_4551\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ngone\tO\tgone\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nanother\tO\tanother\tO\nway\tO\tway\tO\nbut\tO\tbut\tO\nnow\tO\tnow\tO\nface\tO\tface\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nproblem\tO\tproblem\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmigrated\tO\tmigrated\tO\na\tO\ta\tO\n:completed\tB-Variable_Name\t:completed\tO\nboolean\tB-Data_Type\tboolean\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthen\tO\tthen\tO\nadded\tO\tadded\tO\nit\tO\tit\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nform\tB-User_Interface_Element\tform\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n(\tO\t(\tO\nsimple_form\tB-Variable_Name\tsimple_form\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4552\tI-Code_Block\tQ_4552\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nallows\tO\tallows\tO\nme\tO\tme\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\ncompleted\tO\tcompleted\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\ncompleted\tO\tcompleted\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nview\tO\tview\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\ninto\tO\tinto\tO\neach\tO\teach\tO\ntodo(edit)\tO\ttodo(edit)\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36914244\tO\t36914244\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36914244/\tO\thttps://stackoverflow.com/questions/36914244/\tO\n\t\n\t\nFrom\tO\tFrom\tO\na\tO\ta\tO\nRESTful\tB-Library\tRESTful\tO\nstandpoint\tO\tstandpoint\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nneed\tO\tneed\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nadditional\tO\tadditional\tO\nroute\tO\troute\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nyour\tO\tyour\tO\nwould\tO\twould\tO\nsimply\tO\tsimply\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nPATCH\tB-Library_Function\tPATCH\tB-Code_Block\nrequest\tO\trequest\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnormal\tO\tnormal\tO\nmember\tO\tmember\tO\nroute\tO\troute\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5280\tI-Code_Block\tA_5280\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nreal\tO\treal\tO\nrockstar\tO\trockstar\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nenum\tB-Data_Type\tenum\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nboolean\tB-Data_Type\tboolean\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5281\tI-Code_Block\tA_5281\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5282\tI-Code_Block\tA_5282\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nlets\tO\tlets\tO\nyou\tO\tyou\tO\nsetup\tO\tsetup\tO\nmany\tO\tmany\tO\nstates\tO\tstates\tO\nwithout\tO\twithout\tO\ncreating\tO\tcreating\tO\nseveral\tO\tseveral\tO\nboolean\tB-Data_Type\tboolean\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nand\tO\tand\tO\ngives\tO\tgives\tO\nyou\tO\tyou\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nfunctionality\tO\tfunctionality\tO\nalmost\tO\talmost\tO\nfor\tO\tfor\tO\nfree\tO\tfree\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\nup\tO\tup\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nside\tO\tside\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nsimply\tO\tsimply\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nform\tB-User_Interface_Element\tform\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nelement\tO\telement\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5283\tI-Code_Block\tA_5283\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWe\tO\tWe\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nclassical\tO\tclassical\tO\nsubmit\tO\tsubmit\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nhere\tO\there\tO\nbut\tO\tbut\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nUX\tO\tUX\tO\nwe\tO\twe\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\najax\tB-Library_Function\tajax\tO\n.\tO\t.\tO\n\t\nHaving\tO\tHaving\tO\na\tO\ta\tO\nform\tB-User_Interface_Element\tform\tO\nelement\tO\telement\tO\ngives\tO\tgives\tO\nus\tO\tus\tO\nthe\tO\tthe\tO\nperfect\tO\tperfect\tO\nfoundation\tO\tfoundation\tO\nsince\tO\tsince\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\nenhance\tO\tenhance\tO\nits\tO\tits\tO\nbehavior\tO\tbehavior\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5284\tI-Code_Block\tA_5284\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23267926\tO\t23267926\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23267926/\tO\thttps://stackoverflow.com/questions/23267926/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\nfile\tO\tfile\tO\nof\tO\tof\tO\nmeasurements\tO\tmeasurements\tO\nwith\tO\twith\tO\n3-second\tO\t3-second\tO\nperiod\tO\tperiod\tO\n(\tO\t(\tO\nhere\tO\there\tO\nis\tO\tis\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nit\tO\tit\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\ntime\tO\ttime\tO\nserie\tO\tserie\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2557\tI-Code_Block\tQ_2557\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nstep\tO\tstep\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nconvert\tO\tconvert\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nseries\tO\tseries\tO\nwith\tO\twith\tO\n3\tO\t3\tO\nminutes\tO\tminutes\tO\nupdate\tO\tupdate\tO\ninterval\tO\tinterval\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nvalues\tO\tvalues\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\naverages\tO\taverages\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23267926\tO\t23267926\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23267926/\tO\thttps://stackoverflow.com/questions/23267926/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nperiod.apply\tB-Library_Function\tperiod.apply\tB-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nxts\tB-Library\txts\tB-Code_Block\npackage\tO\tpackage\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3163\tI-Code_Block\tA_3163\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nargument\tO\targument\tO\nto\tO\tto\tO\nperiod.apply\tB-Library_Function\tperiod.apply\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nvector\tB-Data_Structure\tvector\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrow\tB-Data_Structure\trow\tO\nnumbers\tO\tnumbers\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\neach\tO\teach\tO\n3\tO\t3\tO\nminute\tO\tminute\tO\nperiod\tO\tperiod\tO\n.\tO\t.\tO\n\t\nendpoints\tB-Code_Block\tendpoints\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ndat\tI-Code_Block\tdat\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nminutes\tI-Code_Block\tminutes\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n3)\tI-Code_Block\t3)\tI-Code_Block\ncalculates\tO\tcalculates\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ntimestamps\tO\ttimestamps\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n\"\tO\t\"\tO\nrounded\tO\trounded\tO\n\"\tO\t\"\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nbeing\tO\tbeing\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ntimestamp\tO\ttimestamp\tO\nof\tO\tof\tO\neach\tO\teach\tO\nperiod\tO\tperiod\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nalign.time\tB-Library_Function\talign.time\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nalign.time\tB-Library_Function\talign.time\tB-Code_Block\nrequires\tO\trequires\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nis\tO\tis\tO\nan\tO\tan\tO\nxts\tB-Library\txts\tB-Code_Block\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nto\tO\tto\tO\nxts\tB-Library\txts\tB-Code_Block\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3164\tI-Code_Block\tA_3164\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23267926\tO\t23267926\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23267926/\tO\thttps://stackoverflow.com/questions/23267926/\tO\n\t\n\t\nUse\tO\tUse\tO\naggregate.zoo\tB-Library_Function\taggregate.zoo\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3162\tI-Code_Block\tA_3162\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\ndec\tB-Code_Block\tdec\tB-Code_Block\n=\".\"\tI-Code_Block\t=\".\"\tI-Code_Block\nand\tO\tand\tO\nindex\tB-Code_Block\tindex\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\nare\tO\tare\tO\nused\tO\tused\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nin\tO\tin\tO\nread.zoo\tB-Library_Function\tread.zoo\tB-Code_Block\nso\tO\tso\tO\nthey\tO\tthey\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nomitted\tO\tomitted\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nread.zoo\tB-Library_Function\tread.zoo\tB-Code_Block\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23875451\tO\t23875451\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23875451/\tO\thttps://stackoverflow.com/questions/23875451/\tO\n\t\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nan\tO\tan\tO\nAPI\tO\tAPI\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nrails-api\tB-Library\trails-api\tO\ngem\tO\tgem\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nclient\tO\tclient\tO\napp\tO\tapp\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nangular\tB-Library\tangular\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nng-resource\tB-Library\tng-resource\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nI\tO\tI\tO\nsend\tO\tsend\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nAPI\tO\tAPI\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nlike\tO\tlike\tO\n{\tB-Code_Block\t{\tO\npost=>\tI-Code_Block\tpost=>\tO\n{\tI-Code_Block\t{\tO\n\"kind\"=>\"GGG\"\tI-Code_Block\t\"kind\"=>\"GGG\"\tO\n}\tI-Code_Block\t}\tO\n}\tB-Code_Block\t}\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\n{\tB-Code_Block\t{\tO\n\"kind\"=>\"GGG\"\tI-Code_Block\t\"kind\"=>\"GGG\"\tO\n}\tI-Code_Block\t}\tO\nof\tO\tof\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nway\tO\tway\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\napi\tO\tapi\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nI\tO\tI\tO\nsend\tO\tsend\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nstuck\tO\tstuck\tO\nwith\tO\twith\tO\n400\tB-Error_Name\t400\tO\nBad\tI-Error_Name\tBad\tO\nRequest\tI-Error_Name\tRequest\tO\nerrors\tO\terrors\tO\nand\tO\tand\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nrails\tB-Language\trails\tO\ncontroller\tO\tcontroller\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2641\tI-Code_Block\tQ_2641\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nangular\tB-Library\tangular\tO\ncontroller\tO\tcontroller\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2642\tI-Code_Block\tQ_2642\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nangular\tB-Library\tangular\tO\nfactory\tO\tfactory\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2643\tI-Code_Block\tQ_2643\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nlogs\tB-File_Type\tlogs\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2644\tI-Code_Block\tQ_2644\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n-\tO\t-\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23875451\tO\t23875451\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23875451/\tO\thttps://stackoverflow.com/questions/23875451/\tO\n\t\n\t\nChange\tO\tChange\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3509\tI-Code_Block\tA_3509\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3510\tI-Code_Block\tA_3510\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nyou\tO\tyou\tO\nproblem\tO\tproblem\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfixed\tO\tfixed\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17724725\tO\t17724725\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17724725/\tO\thttps://stackoverflow.com/questions/17724725/\tO\n\t\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nasked\tO\tasked\tO\nbefore\tO\tbefore\tO\nand\tO\tand\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nfollowed\tO\tfollowed\tO\nthe\tO\tthe\tO\nadvice\tO\tadvice\tO\nhere\tO\there\tO\nand\tO\tand\tO\nput\tO\tput\tO\nmy\tO\tmy\tO\ndeclerations\tO\tdeclerations\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nstill\tO\tstill\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1816\tI-Code_Block\tQ_1816\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nnote\tO\tnote\tO\nthe\tO\tthe\tO\nlogic\tO\tlogic\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\ncorrect\tO\tcorrect\tO\nas\tO\tas\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nanother\tO\tanother\tO\nmachine\tO\tmachine\tO\n,\tO\t,\tO\nits\tO\tits\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nhappy\tO\thappy\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlayout\tO\tlayout\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17724725\tO\t17724725\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17724725/\tO\thttps://stackoverflow.com/questions/17724725/\tO\n\t\n\t\nThe\tO\tThe\tO\ncompiler\tB-Application\tcompiler\tO\ncomplains\tO\tcomplains\tO\nbecause\tO\tbecause\tO\nassert\tB-Library_Function\tassert\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ndeclaration\tO\tdeclaration\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nassert\tB-Library_Function\tassert\tB-Code_Block\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\ndeclarations\tO\tdeclarations\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\na\tO\ta\tO\nC\tB-Language\tC\tO\ncompiler\tB-Application\tcompiler\tO\nthat\tO\tthat\tO\nsupported\tO\tsupported\tO\na\tO\ta\tO\nstandard\tO\tstandard\tO\nmore\tO\tmore\tO\nrecent\tO\trecent\tO\nthat\tO\tthat\tO\nC89\tB-Language\tC89\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nmove\tO\tmove\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44741900\tO\t44741900\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44741900/\tO\thttps://stackoverflow.com/questions/44741900/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nbash\tB-Language\tbash\tO\nscript\tO\tscript\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\ndollar\tO\tdollar\tO\nwords\tO\twords\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthose\tO\tthose\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\nwho\tO\twho\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\na\tO\ta\tO\ndollar\tO\tdollar\tO\nword\tO\tword\tO\nis\tO\tis\tO\na\tO\ta\tO\nword\tO\tword\tO\nwhose\tO\twhose\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\nletters\tO\tletters\tO\nadd\tO\tadd\tO\nup\tO\tup\tO\nto\tO\tto\tO\n100\tO\t100\tO\nwhen\tO\twhen\tO\nA\tB-Variable_Name\tA\tO\nis\tO\tis\tO\ngiven\tO\tgiven\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n1\tB-Value\t1\tO\n,\tO\t,\tO\nB\tB-Variable_Name\tB\tO\nis\tO\tis\tO\ngiven\tO\tgiven\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n2\tB-Value\t2\tO\n,\tO\t,\tO\nC\tB-Variable_Name\tC\tO\nis\tO\tis\tO\n3\tB-Value\t3\tO\n,\tO\t,\tO\nand\tO\tand\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\nZ\tB-Variable_Name\tZ\tO\nis\tO\tis\tO\n26\tB-Value\t26\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nprogramming\tO\tprogramming\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nvery\tO\tvery\tO\ncrude\tO\tcrude\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\n'll\tO\t'll\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nas\tO\tas\tO\nfast\tO\tfast\tO\nas\tO\tas\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\n.\tO\t.\tO\n\t\nSomething\tO\tSomething\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nslowing\tO\tslowing\tO\nit\tO\tit\tO\ndown\tO\tdown\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5821\tI-Code_Block\tQ_5821\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nspeculate\tO\tspeculate\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nwhile\tB-Code_Block\twhile\tO\nloops\tO\tloops\tO\n,\tO\t,\tO\nor\tO\tor\tO\nwith\tO\twith\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nis\tO\tis\tO\nconstantly\tO\tconstantly\tO\nwriting\tO\twriting\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n$line\tB-Variable_Name\t$line\tB-Code_Block\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nbefore\tO\tbefore\tO\nthat\tO\tthat\tO\nadds\tO\tadds\tO\nnumbers\tO\tnumbers\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nFibonacci\tO\tFibonacci\tO\nsequence\tO\tsequence\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nalmost\tO\talmost\tO\ninstantaneously\tO\tinstantaneously\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nways\tO\tways\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nrun\tO\trun\tO\nmore\tO\tmore\tO\nefficiently\tO\tefficiently\tO\n?\tO\t?\tO\n\t\nApologies\tO\tApologies\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nbelongs\tO\tbelongs\tO\non\tO\ton\tO\ncodereview\tB-Website\tcodereview\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nhighly\tO\thighly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nAlthough\tO\tAlthough\tO\nI\tO\tI\tO\naccepted\tO\taccepted\tO\nGordan\tB-User_Name\tGordan\tO\nDavisson\tI-User_Name\tDavisson\tO\n's\tO\t's\tO\nAnswer\tO\tAnswer\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nones\tO\tones\tO\nare\tO\tare\tO\njust\tO\tjust\tO\nas\tO\tas\tO\ngood\tO\tgood\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nrecommend\tO\trecommend\tO\nreading\tO\treading\tO\neveryone\tO\teveryone\tO\nelse\tO\telse\tO\n's\tO\t's\tO\nanswer\tO\tanswer\tO\nbefore\tO\tbefore\tO\ngiving\tO\tgiving\tO\nthis\tO\tthis\tO\na\tO\ta\tO\ntry\tO\ttry\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nas\tO\tas\tO\nnumerous\tO\tnumerous\tO\nusers\tO\tusers\tO\nhave\tO\thave\tO\npointed\tO\tpointed\tO\nout\tO\tout\tO\n,\tO\t,\tO\nbash\tB-Language\tbash\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nlanguage\tO\tlanguage\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nAgain\tO\tAgain\tO\n,\tO\t,\tO\nThanks\tO\tThanks\tO\nto\tO\tto\tO\neveryone\tO\teveryone\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nsuggestions\tO\tsuggestions\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44741900\tO\t44741900\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44741900/\tO\thttps://stackoverflow.com/questions/44741900/\tO\n\t\n\t\nAs\tO\tAs\tO\n@thatotherguy\tB-User_Name\t@thatotherguy\tO\npointed\tO\tpointed\tO\nout\tO\tout\tO\nin\tO\tin\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nbig\tO\tbig\tO\nproblems\tO\tproblems\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nreading\tO\treading\tO\nlines\tO\tlines\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nreads\tO\treads\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nfile\tO\tfile\tO\nevery\tO\tevery\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\n,\tO\t,\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nline\tO\tline\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\nsed\tB-Code_Block\tsed\tB-Code_Block\n-n\tI-Code_Block\t-n\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\np\tI-Code_Block\tp\tI-Code_Block\nWords.txt\tI-Code_Block\tWords.txt\tI-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nreads\tO\treads\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nprints\tO\tprints\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nline\tO\tline\tO\n;\tO\t;\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\nsed\tB-Code_Block\tsed\tB-Code_Block\n-n\tI-Code_Block\t-n\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\np\tI-Code_Block\tp\tI-Code_Block\nWords.txt\tI-Code_Block\tWords.txt\tI-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nreads\tO\treads\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nfile\tO\tfile\tO\nagain\tO\tagain\tO\nand\tO\tand\tO\nprints\tO\tprints\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nline\tO\tline\tO\n;\tO\t;\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nwhile\tB-Code_Block\twhile\tB-Code_Block\nread\tO\tread\tI-Code_Block\nloop\tO\tloop\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6462\tI-Code_Block\tA_6462\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nanything\tO\tanything\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\nstandard\tO\tstandard\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\nit\tO\tit\tO\n'll\tO\t'll\tO\nsteal\tO\tsteal\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfrom\tO\tfrom\tO\nWords.txt\tB-File_Name\tWords.txt\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthat\tO\tthat\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nover\tO\tover\tO\nFD\tO\tFD\tO\n#3\tO\t#3\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nstandard\tO\tstandard\tO\ninput\tO\tinput\tO\nwith\tO\twith\tO\nwhile\tB-Code_Block\twhile\tB-Code_Block\nread\tI-Code_Block\tread\tI-Code_Block\n-u3\tI-Code_Block\t-u3\tI-Code_Block\n..\tI-Code_Block\t..\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\ndone\tI-Code_Block\tdone\tI-Code_Block\n3\tI-Code_Block\t3\tI-Code_Block\n<\tI-Code_Block\t<\tI-Code_Block\nWords.txt\tI-Code_Block\tWords.txt\tI-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nbit\tO\tbit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6463\tI-Code_Block\tA_6463\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\n..\tO\t..\tO\ncreates\tO\tcreates\tO\n3\tO\t3\tO\nsubprocesses\tO\tsubprocesses\tO\n(\tO\t(\tO\necho\tB-Code_Block\techo\tB-Code_Block\n,\tO\t,\tO\ngrep\tB-Code_Block\tgrep\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nwc\tB-Code_Block\twc\tB-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\ntoo\tO\ttoo\tO\nbad\tO\tbad\tO\nexcept\tO\texcept\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nruns\tO\truns\tO\n26\tO\t26\tO\ntimes\tO\ttimes\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nand\tO\tand\tO\nevery\tO\tevery\tO\nword\tO\tword\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nCreating\tO\tCreating\tO\nprocesses\tO\tprocesses\tO\nis\tO\tis\tO\nexpensive\tO\texpensive\tO\ncompared\tO\tcompared\tO\nto\tO\tto\tO\nmost\tO\tmost\tO\nshell\tB-Application\tshell\tO\noperations\tO\toperations\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nyour\tO\tyour\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nit\tO\tit\tO\nespecially\tO\tespecially\tO\nin\tO\tin\tO\nloops\tO\tloops\tO\nthat\tO\tthat\tO\nrun\tO\trun\tO\nmany\tO\tmany\tO\nmany\tO\tmany\tO\ntimes\tO\ttimes\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\ninstead\tO\tinstead\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6464\tI-Code_Block\tA_6464\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nby\tO\tby\tO\nreplacing\tO\treplacing\tO\nall\tO\tall\tO\ncharacters\tO\tcharacters\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\n${letter[i]}\tB-Variable_Name\t${letter[i]}\tO\nwith\tO\twith\tO\n\"\"\tO\t\"\"\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nparsing\tO\tparsing\tO\nhappens\tO\thappens\tO\nentirely\tO\tentirely\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nshell\tB-Application\tshell\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nfaster\tO\tfaster\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44741900\tO\t44741900\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44741900/\tO\thttps://stackoverflow.com/questions/44741900/\tO\n\t\n\t\nGiven\tO\tGiven\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6472\tI-Code_Block\tA_6472\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n370,101\tO\t370,101\tO\nword\tO\tword\tO\nfile\tO\tfile\tO\nlinked\tO\tlinked\tO\nHERE\tO\tHERE\tO\n)\tO\t)\tO\n\t\nIn\tO\tIn\tO\nBash\tB-Language\tBash\tO\nalone\tO\talone\tO\n,\tO\t,\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\na\tO\ta\tO\nloop\tO\tloop\tO\nthat\tO\tthat\tO\nreads\tO\treads\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nline\tO\tline\tO\nby\tO\tby\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6473\tI-Code_Block\tA_6473\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\ncount\tO\tcount\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\nalone\tO\talone\tO\nin\tO\tin\tO\nBash\tB-Language\tBash\tO\n(\tO\t(\tO\nsame\tO\tsame\tO\nfile\tO\tfile\tO\n)\tO\t)\tO\ntakes\tO\ttakes\tO\nover\tO\tover\tO\n7.8\tO\t7.8\tO\nseconds\tO\tseconds\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ncomputer\tO\tcomputer\tO\n.\tO\t.\tO\n\t\nwc\tB-Code_Block\twc\tB-Code_Block\nin\tO\tin\tO\ncomparison\tO\tcomparison\tO\nexecutes\tO\texecutes\tO\nin\tO\tin\tO\nmicroseconds\tO\tmicroseconds\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nBash\tB-Language\tBash\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nword\tO\tword\tO\nby\tO\tby\tO\nword\tO\tword\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\neach\tO\teach\tO\nword\tO\tword\tO\ncharacter\tO\tcharacter\tO\nby\tO\tby\tO\ncharacter\tO\tcharacter\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\ncharacter\tO\tcharacter\tO\nin\tO\tin\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nalphabet\tO\talphabet\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6474\tI-Code_Block\tA_6474\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPrints\tO\tPrints\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6475\tI-Code_Block\tA_6475\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\ntakes\tO\ttakes\tO\nabout\tO\tabout\tO\n1:55\tO\t1:55\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n370,101\tO\t370,101\tO\nword\tO\tword\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\ncomparison\tO\tcomparison\tO\n,\tO\t,\tO\nconsider\tO\tconsider\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nPython\tB-Language\tPython\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6476\tI-Code_Block\tA_6476\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFar\tO\tFar\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nand\tO\tand\tO\nexecutes\tO\texecutes\tO\nin\tO\tin\tO\n580\tO\t580\tO\nms\tO\tms\tO\n.\tO\t.\tO\n\t\nBash\tB-Language\tBash\tO\nis\tO\tis\tO\ngreat\tO\tgreat\tO\nfor\tO\tfor\tO\ngluing\tO\tgluing\tO\ntogether\tO\ttogether\tO\ndifferent\tO\tdifferent\tO\ntools\tO\ttools\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthat\tO\tthat\tO\ngreat\tO\tgreat\tO\nat\tO\tat\tO\nlarge\tO\tlarge\tO\nprocessing\tO\tprocessing\tO\ntasks\tO\ttasks\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nawk\tB-Language\tawk\tB-Code_Block\nperl\tI-Language\tperl\tI-Code_Block\npython\tI-Language\tpython\tI-Code_Block\nruby\tI-Language\truby\tI-Code_Block\netc\tO\tetc\tO\nfor\tO\tfor\tO\nlarger\tO\tlarger\tO\ntasks\tO\ttasks\tO\n.\tO\t.\tO\n\t\nEasier\tO\tEasier\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\n,\tO\t,\tO\nread\tO\tread\tO\n,\tO\t,\tO\nunderstand\tO\tunderstand\tO\nand\tO\tand\tO\nfaster\tO\tfaster\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8109847\tO\t8109847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8109847/\tO\thttps://stackoverflow.com/questions/8109847/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmatch\tO\tmatch\tO\na\tO\ta\tO\nregex\tO\tregex\tO\nstring\tB-Data_Type\tstring\tO\nagainst\tO\tagainst\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nperl\tB-Language\tperl\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nconstantly\tO\tconstantly\tO\nkeeps\tO\tkeeps\tO\nskipping\tO\tskipping\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nheading\tO\theading\tO\nfor\tO\tfor\tO\n..\tO\t..\tO\n.\tO\t.\tO\nwhat\tO\twhat\tO\ncan\tO\tcan\tO\npossibly\tO\tpossibly\tO\nbe\tO\tbe\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nMy\tO\tMy\tO\nfile\tO\tfile\tO\nsays\tO\tsays\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_682\tI-Code_Block\tQ_682\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngoing\tO\tgoing\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n\"\tB-Value\t\"\tO\nlydskrift\tI-Value\tlydskrift\tO\n\"\tI-Value\t\"\tO\nline\tO\tline\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ngrab\tO\tgrab\tO\nits\tO\tits\tO\ncontent\tO\tcontent\tO\nin\tO\tin\tO\nmultiple\tO\tmultiple\tO\nways\tO\tways\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\nended\tO\tended\tO\nup\tO\tup\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmatch\tO\tmatch\tO\njust\tO\tjust\tO\neverything\tO\teverything\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_683\tI-Code_Block\tQ_683\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSurprisingly\tO\tSurprisingly\tO\nit\tO\tit\tO\nkeeps\tO\tkeeps\tO\ngiving\tO\tgiving\tO\nme\tO\tme\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_684\tI-Code_Block\tQ_684\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nInterestingly\tO\tInterestingly\tO\nenough\tO\tenough\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmatches\tO\tmatches\tO\nall\tO\tall\tO\nfour\tO\tfour\tO\nlines\tO\tlines\tO\nif\tO\tif\tO\nI\tO\tI\tO\nput\tO\tput\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\na\tO\ta\tO\nDATA\tO\tDATA\tO\narea\tO\tarea\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nperl\tB-File_Type\tperl\tO\nfile\tO\tfile\tO\n!\tO\t!\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwhat\tO\twhat\tO\nmakes\tO\tmakes\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8109847\tO\t8109847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8109847/\tO\thttps://stackoverflow.com/questions/8109847/\tO\n\t\n\t\nTo\tO\tTo\tO\nbuild\tO\tbuild\tO\non\tO\ton\tO\nmu\tB-User_Name\tmu\tO\nis\tI-User_Name\tis\tO\ntoo\tI-User_Name\ttoo\tO\nshort\tI-User_Name\tshort\tO\n's\tO\t's\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nwrite\tO\twrite\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_970\tI-Code_Block\tA_970\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nalso\tO\talso\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nskip\tO\tskip\tO\nlines\tO\tlines\tO\nconsisting\tO\tconsisting\tO\nonly\tO\tonly\tO\nof\tO\tof\tO\nwhitespace\tB-Value\twhitespace\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_971\tI-Code_Block\tA_971\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8109847\tO\t8109847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8109847/\tO\thttps://stackoverflow.com/questions/8109847/\tO\n\t\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyour\tO\tyour\tO\nfile\tO\tfile\tO\nhas\tO\thas\tO\none\tO\tone\tO\nmore\tO\tmore\tO\nline\tO\tline\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nincluding\tO\tincluding\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nsuspicion\tO\tsuspicion\tO\nis\tO\tis\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\nregex\tO\tregex\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\n<FILE>\tB-HTML_XML_Tag\t<FILE>\tB-Code_Block\nreads\tO\treads\tO\na\tO\ta\tO\nline\tO\tline\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nevery\tO\tevery\tO\nrun\tO\trun\tO\nthrough\tO\tthrough\tO\nyour\tO\tyour\tO\nloop\tO\tloop\tO\nreads\tO\treads\tO\none\tO\tone\tO\nline\tO\tline\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwhile(\tB-Code_Block\twhile(\tB-Code_Block\n<\tI-Code_Block\t<\tI-Code_Block\nFILE\tI-Code_Block\tFILE\tI-Code_Block\n>\tI-Code_Block\t>\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\nanother\tO\tanother\tO\none\tO\tone\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nif(\tB-Code_Block\tif(\tB-Code_Block\n<\tI-Code_Block\t<\tI-Code_Block\nFILE\tI-Code_Block\tFILE\tI-Code_Block\n>\tI-Code_Block\t>\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n~\tI-Code_Block\t~\tI-Code_Block\nm/\tI-Code_Block\tm/\tI-Code_Block\n(.+)/)\tI-Code_Block\t(.+)/)\tI-Code_Block\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nif\tB-Code_Block\tif\tB-Code_Block\nshould\tO\tshould\tO\nbe\tO\tbe\tO\njust\tO\tjust\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_966\tI-Code_Block\tA_966\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n$_\tB-Code_Block\t$_\tB-Code_Block\nvariable\tO\tvariable\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nwhile(1)\tB-Code_Block\twhile(1)\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\npopulating\tO\tpopulating\tO\n.\tO\t.\tO\n\t\nFurthermore\tO\tFurthermore\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nwhile\tB-Code_Block\twhile\tB-Code_Block\nloop\tO\tloop\tO\nis\tO\tis\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nmore\tO\tmore\tO\nwork\tO\twork\tO\nthan\tO\tthan\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nto\tO\tto\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_967\tI-Code_Block\tA_967\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\neven\tO\teven\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_968\tI-Code_Block\tA_968\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nskip\tO\tskip\tO\nblank\tO\tblank\tO\nlines\tO\tlines\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nmaybe\tO\tmaybe\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_969\tI-Code_Block\tA_969\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40138976\tO\t40138976\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40138976/\tO\thttps://stackoverflow.com/questions/40138976/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\na\tO\ta\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nwhile\tO\twhile\tO\nusing\tO\tusing\tO\nLaravel\tB-Library\tLaravel\tO\n.\tO\t.\tO\n\t\nThough\tO\tThough\tO\nuploading\tO\tuploading\tO\nimages\tB-User_Interface_Element\timages\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\nline\tO\tline\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5064\tI-Code_Block\tQ_5064\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5065\tI-Code_Block\tQ_5065\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nonly\tO\tonly\tO\nsee\tO\tsee\tO\nuploaded\tO\tuploaded\tB-Code_Block\nwritten\tO\twritten\tO\non\tO\ton\tO\na\tO\ta\tO\nnew\tO\tnew\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nvideo\tB-User_Interface_Element\tvideo\tO\n.\tO\t.\tO\n\t\nController\tO\tController\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5066\tI-Code_Block\tQ_5066\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRoutes\tO\tRoutes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5067\tI-Code_Block\tQ_5067\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nView\tO\tView\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5068\tI-Code_Block\tQ_5068\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40138976\tO\t40138976\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40138976/\tO\thttps://stackoverflow.com/questions/40138976/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nController\tO\tController\tO\n:\tO\t:\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5755\tI-Code_Block\tA_5755\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nphp.ini\tB-File_Name\tphp.ini\tO\nfiles\tO\tfiles\tO\ncontains\tO\tcontains\tO\nsome\tO\tsome\tO\nlimits\tO\tlimits\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\naffect\tO\taffect\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nchanging\tO\tchanging\tO\nthese\tO\tthese\tO\nto\tO\tto\tO\nhigh\tO\thigh\tO\nenough\tO\tenough\tO\nvalues\tO\tvalues\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5756\tI-Code_Block\tA_5756\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44642308\tO\t44642308\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44642308/\tO\thttps://stackoverflow.com/questions/44642308/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nasked\tO\tasked\tO\nbefore\tO\tbefore\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nlist\tB-HTML_XML_Tag\tlist\tO\nelements\tO\telements\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5802\tI-Code_Block\tQ_5802\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nwrap\tO\twrap\tO\neach\tO\teach\tO\ngroup\tO\tgroup\tO\nin\tO\tin\tO\na\tO\ta\tO\n<ul></ul>\tB-HTML_XML_Tag\t<ul></ul>\tB-Code_Block\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nmatches\tO\tmatches\tO\nthe\tO\tthe\tO\nindividual\tO\tindividual\tO\nelements\tO\telements\tO\n:\tO\t:\tO\n\t\n/<li\tB-Code_Block\t/<li\tB-Code_Block\n[^>]*>.*<\\/li>/g\tI-Code_Block\t[^>]*>.*<\\/li>/g\tI-Code_Block\n\t\nhttps://regex101.com/r/KXEkJz/1\tO\thttps://regex101.com/r/KXEkJz/1\tO\n\t\nAnd\tO\tAnd\tO\nif\tO\tif\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n/<li\tB-Code_Block\t/<li\tB-Code_Block\n[^>]*>[\\s\\S]*<\\/li>/g\tI-Code_Block\t[^>]*>[\\s\\S]*<\\/li>/g\tI-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nproduces\tO\tproduces\tO\none\tO\tone\tO\ngiant\tO\tgiant\tO\nmatch\tO\tmatch\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44642308\tO\t44642308\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44642308/\tO\thttps://stackoverflow.com/questions/44642308/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ngroup\tO\tgroup\tO\nthem\tO\tthem\tO\nby\tO\tby\tO\nnew\tB-Value\tnew\tO\nlines\tI-Value\tlines\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n(\tB-Code_Block\t(\tB-Code_Block\n<li\tI-Code_Block\t<li\tI-Code_Block\n[^>]*>.*<\\/li>\tI-Code_Block\t[^>]*>.*<\\/li>\tI-Code_Block\n\\n?\tI-Code_Block\t\\n?\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nit\tO\tit\tO\nand\tO\tand\tO\nyours\tO\tyours\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\ncapture\tO\tcapture\tO\nmultiple\tO\tmultiple\tO\n<li>\tB-HTML_XML_Tag\t<li>\tB-Code_Block\nobjects\tO\tobjects\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmind\tO\tmind\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nnew\tB-Value\tnew\tO\nline\tI-Value\tline\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nnew\tB-Value\tnew\tO\nline\tI-Value\tline\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nsomething\tO\tsomething\tO\ndifferent\tO\tdifferent\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nit\tO\tit\tO\nstops\tO\tstops\tO\nmatching\tO\tmatching\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10734649\tO\t10734649\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10734649/\tO\thttps://stackoverflow.com/questions/10734649/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\npopulating\tO\tpopulating\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ntable\tB-User_Interface_Element\ttable\tO\nin\tO\tin\tO\none\tO\tone\tO\nscreen\tO\tscreen\tO\nto\tO\tto\tO\na\tO\ta\tO\nText\tB-Library_Class\tText\tO\nField\tI-Library_Class\tField\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nscreen\tO\tscreen\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\nclasses\tO\tclasses\tO\nFirstClass\tB-Class_Name\tFirstClass\tO\ncontaining\tO\tcontaining\tO\na\tO\ta\tO\ntextbox\tB-User_Interface_Element\ttextbox\tO\nand\tO\tand\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\npressing\tO\tpressing\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\nwindow\tB-User_Interface_Element\twindow\tO\nis\tO\tis\tO\nopened\tO\topened\tO\ncontaining\tO\tcontaining\tO\na\tO\ta\tO\nTable\tB-User_Interface_Element\tTable\tO\nof\tO\tof\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ndouble\tO\tdouble\tO\nclicks\tO\tclicks\tO\na\tO\ta\tO\nrow\tB-User_Interface_Element\trow\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrow\tB-Data_Structure\trow\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ninserted\tO\tinserted\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ntextbox\tB-User_Interface_Element\ttextbox\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nFirstClass\tB-Class_Name\tFirstClass\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nof\tO\tof\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\nclasses\tO\tclasses\tO\nis\tO\tis\tO\nattached\tO\tattached\tO\n.\tO\t.\tO\n\t\nThanking\tO\tThanking\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nanticipation\tO\tanticipation\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_968\tI-Code_Block\tQ_968\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10734649\tO\t10734649\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10734649/\tO\thttps://stackoverflow.com/questions/10734649/\tO\n\t\n\t\nThe\tO\tThe\tO\nquick\tO\tquick\tO\nand\tO\tand\tO\neasy\tO\teasy\tO\nway\tO\tway\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nintroduces\tO\tintroduces\tO\ncoupling\tO\tcoupling\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\n2\tO\t2\tO\nclasses\tO\tclasses\tO\n)\tO\t)\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nuserNameFld\tB-Variable_Name\tuserNameFld\tB-Code_Block\nto\tO\tto\tO\nyour\tO\tyour\tO\nshowDialog\tB-Function_Name\tshowDialog\tB-Code_Block\nmethod\tO\tmethod\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\na\tO\ta\tO\nmember\tO\tmember\tO\nof\tO\tof\tO\nTableClass\tB-Class_Name\tTableClass\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nchange\tO\tchange\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nTableClass\tB-Class_Name\tTableClass\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nbind\tO\tbind\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nuserNameFld\tB-Variable_Name\tuserNameFld\tB-Code_Block\nto\tO\tto\tO\nvalue\tB-Variable_Name\tvalue\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2831693\tO\t2831693\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2831693/\tO\thttps://stackoverflow.com/questions/2831693/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nprogrammatically\tO\tprogrammatically\tO\nfire\tO\tfire\tO\na\tO\ta\tO\nkey\tO\tkey\tO\nevent\tO\tevent\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nleft\tO\tleft\tO\nin\tO\tin\tO\na\tO\ta\tO\ntext\tB-User_Interface_Element\ttext\tO\nbox\tI-User_Interface_Element\tbox\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nhaving\tO\thaving\tO\nany\tO\tany\tO\nluck\tO\tluck\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ninput\tO\tinput\tO\nelement\tO\telement\tO\nhas\tO\thas\tO\nfocus\tO\tfocus\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncursor\tB-User_Interface_Element\tcursor\tO\nis\tO\tis\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncursor\tB-User_Interface_Element\tcursor\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nleft\tO\tleft\tO\none\tO\tone\tO\nstep\tO\tstep\tO\n-\tO\t-\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nletter\tO\tletter\tO\n\"\tB-Value\t\"\tO\nF\tI-Value\tF\tO\n\"\tI-Value\t\"\tO\n*\tO\t*\tO\nprogrammatically\tO\tprogrammatically\tO\nby\tO\tby\tO\nfiring\tO\tfiring\tO\na\tO\ta\tO\nKeyboard\tB-Device\tKeyboard\tO\nevent\tO\tevent\tO\n(\tO\t(\tO\nkeydown/keyup/keypress\tB-Keyboard_IP\tkeydown/keyup/keypress\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nkeystroke\tO\tkeystroke\tO\n←\tB-Keyboard_IP\t←\tO\nor\tO\tor\tO\n→\tB-Keyboard_IP\t→\tO\ntargeted\tO\ttargeted\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ninput\tB-User_Interface_Element\tinput\tO\nbox\tI-User_Interface_Element\tbox\tO\n.\tO\t.\tO\n\t\nABCDEF|\tB-Keyboard_IP\tABCDEF|\tB-Keyboard_IP\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n:\tO\t:\tO\n\t\nHTML\tB-Language\tHTML\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_192\tI-Code_Block\tQ_192\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJavascript\tB-Language\tJavascript\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_193\tI-Code_Block\tQ_193\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSaved\tO\tSaved\tO\na\tO\ta\tO\nquick\tO\tquick\tO\ndemo\tO\tdemo\tO\non\tO\ton\tO\njsfiddle\tB-Application\tjsfiddle\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ncode\tO\tcode\tO\n-\tO\t-\tO\nhttp://jsfiddle.net/Vsafv/\tO\thttp://jsfiddle.net/Vsafv/\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\nmaking\tO\tmaking\tO\nthis\tO\tthis\tO\ncross-browser\tB-Application\tcross-browser\tO\n(\tO\t(\tO\njust\tO\tjust\tO\nget\tO\tget\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nChrome\tB-Application\tChrome\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2831693\tO\t2831693\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2831693/\tO\thttps://stackoverflow.com/questions/2831693/\tO\n\t\n\t\nAnd\tO\tAnd\tO\nfor\tO\tfor\tO\nthose\tO\tthose\tO\nnot\tO\tnot\tO\nviewing\tO\tviewing\tO\njQuery\tB-Library\tjQuery\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\neverything\tO\teverything\tO\n:)\tO\t:)\tO\n\t\nFrom\tO\tFrom\tO\nhttp://blog.josh420.com/archives/2007/10/setting-cursor-position-in-a-textbox-or-textarea-with-javascript.aspx\tO\thttp://blog.josh420.com/archives/2007/10/setting-cursor-position-in-a-textbox-or-textarea-with-javascript.aspx\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_282\tI-Code_Block\tA_282\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2831693\tO\t2831693\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2831693/\tO\thttps://stackoverflow.com/questions/2831693/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_299\tI-Code_Block\tA_299\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhere\tO\twhere\tO\n\"\tB-Value\t\"\tO\ninput\tI-Value\tinput\tO\n\"\tI-Value\t\"\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\ntextarea\tB-User_Interface_Element\ttextarea\tO\n\t\n37\tB-Value\t37\tO\n-\tO\t-\tO\nleft\tB-Keyboard_IP\tleft\tO\n\t\n38\tB-Value\t38\tO\n-\tO\t-\tO\nup\tB-Keyboard_IP\tup\tO\n\t\n39\tB-Value\t39\tO\n-\tO\t-\tO\nright\tB-Keyboard_IP\tright\tO\n\t\n40\tB-Value\t40\tO\n-\tO\t-\tO\ndown\tB-Keyboard_IP\tdown\tO\n\t\nSo\tO\tSo\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nrecord\tO\trecord\tO\nyour\tO\tyour\tO\n\"\tO\t\"\tO\nevents\tO\tevents\tO\n\"\tO\t\"\tO\nyou\tO\tyou\tO\nrecord\tO\trecord\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nkeys\tO\tkeys\tO\npressed\tO\tpressed\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nalready\tO\talready\tO\nfigured\tO\tfigured\tO\nout\tO\tout\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nbut\tO\tbut\tO\njust\tO\tjust\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\nof\tO\tof\tO\nhow\tO\thow\tO\ni\tO\ti\tO\nwould\tO\twould\tO\ntackle\tO\ttackle\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_300\tI-Code_Block\tA_300\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1719694\tO\t1719694\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1719694/\tO\thttps://stackoverflow.com/questions/1719694/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nbounding\tB-User_Interface_Element\tbounding\tO\nbox\tI-User_Interface_Element\tbox\tO\n(\tO\t(\tO\nin\tO\tin\tO\nscene\tO\tscene\tO\nspace\tO\tspace\tO\n)\tO\t)\tO\nof\tO\tof\tO\nQGraphicsItems\tB-Library_Class\tQGraphicsItems\tB-Code_Block\nthat\tO\tthat\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nQGraphicsItem::ItemIgnoresTransformations\tB-Library_Variable\tQGraphicsItem::ItemIgnoresTransformations\tB-Code_Block\nflag\tO\tflag\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndocs\tO\tdocs\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nQGraphicsItem::deviceTransform()\tB-Library_Function\tQGraphicsItem::deviceTransform()\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_93\tI-Code_Block\tQ_93\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nsomething\tO\tsomething\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbounding\tB-User_Interface_Element\tbounding\tO\nboxes\tI-User_Interface_Element\tboxes\tO\nappear\tO\tappear\tO\nsmaller\tO\tsmaller\tO\nand\tO\tand\tO\nfar\tO\tfar\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nitems\tB-Variable_Name\titems\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1719694\tO\t1719694\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1719694/\tO\thttps://stackoverflow.com/questions/1719694/\tO\n\t\n\t\nJust\tO\tJust\tO\nfigured\tO\tfigured\tO\nit\tO\tit\tO\nout\tO\tout\tO\n,\tO\t,\tO\nQGraphicsView::viewportTransform()\tB-Library_Function\tQGraphicsView::viewportTransform()\tO\ndoc\tO\tdoc\tO\nsays\tO\tsays\tO\n\"\tO\t\"\tO\nReturns\tO\tReturns\tO\na\tO\ta\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nthat\tO\tthat\tO\nmaps\tO\tmaps\tO\nviewport\tB-User_Interface_Element\tviewport\tO\ncoordinates\tO\tcoordinates\tO\nto\tO\tto\tO\nscene\tO\tscene\tO\ncoordinates\tO\tcoordinates\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nfact\tO\tfact\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nscene\tO\tscene\tO\nto\tO\tto\tO\nviewport\tB-User_Interface_Element\tviewport\tO\ntransform\tO\ttransform\tO\n.\tO\t.\tO\n\t\nInverting\tO\tInverting\tO\nvp_trans\tB-Variable_Name\tvp_trans\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nstep\tO\tstep\tO\nfixed\tO\tfixed\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13332536\tO\t13332536\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13332536/\tO\thttps://stackoverflow.com/questions/13332536/\tO\n\t\n\t\nIn\tO\tIn\tO\nversion\tO\tversion\tO\n2.0.4\tB-Version\t2.0.4\tO\nof\tO\tof\tO\nTwitter\tB-Library\tTwitter\tO\nBootstrap\tI-Library\tBootstrap\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\na\tO\ta\tO\nbox\tB-User_Interface_Element\tbox\tO\nshadow\tI-User_Interface_Element\tshadow\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nnav-bar\tB-User_Interface_Element\tnav-bar\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nrecently\tO\trecently\tO\nupgraded\tO\tupgraded\tO\nto\tO\tto\tO\nversion\tO\tversion\tO\n2.2.1\tB-Version\t2.2.1\tO\nand\tO\tand\tO\ntried\tO\ttried\tO\ndoing\tO\tdoing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfail\tO\tfail\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nbox\tB-User_Interface_Element\tbox\tO\nshadow\tI-User_Interface_Element\tshadow\tO\nbelow\tO\tbelow\tO\nmy\tO\tmy\tO\nnavbar\tB-User_Interface_Element\tnavbar\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\nstyle\tO\tstyle\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1262\tI-Code_Block\tQ_1262\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\ndrop\tB-User_Interface_Element\tdrop\tO\nshadow\tI-User_Interface_Element\tshadow\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nappearing\tO\tappearing\tO\nin\tO\tin\tO\n2.2.1\tB-Version\t2.2.1\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13332536\tO\t13332536\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13332536/\tO\thttps://stackoverflow.com/questions/13332536/\tO\n\t\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nbug\tO\tbug\tO\nreported\tO\treported\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npossible\tO\tpossible\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1705\tI-Code_Block\tA_1705\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\n2.1.2-WIP\tB-Version\t2.1.2-WIP\tO\nhas\tO\thas\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1706\tI-Code_Block\tA_1706\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33289903\tO\t33289903\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33289903/\tO\thttps://stackoverflow.com/questions/33289903/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nlimit\tO\tlimit\tO\nthe\tO\tthe\tO\nradius\tB-Variable_Name\tradius\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ngreat\tO\tgreat\tO\ncircle\tO\tcircle\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncircle\tO\tcircle\tO\nwill\tO\twill\tO\nextend\tO\textend\tO\nuntil\tO\tuntil\tO\nit\tO\tit\tO\nhits\tO\thits\tO\nanother\tO\tanother\tO\nitem\tO\titem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\nto\tO\tto\tO\nlimit\tO\tlimit\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncircle\tO\tcircle\tO\nto\tO\tto\tO\n5\tB-Value\t5\tO\nmiles\tI-Value\tmiles\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4044\tI-Code_Block\tQ_4044\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33289903\tO\t33289903\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33289903/\tO\thttps://stackoverflow.com/questions/33289903/\tO\n\t\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsurprising\tO\tsurprising\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nradius\tB-Variable_Name\tradius\tO\nin\tO\tin\tO\nkm\tO\tkm\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlimit\tO\tlimit\tO\nit\tO\tit\tO\nto\tO\tto\tO\n5\tB-Value\t5\tO\nmiles\tI-Value\tmiles\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nmake\tO\tmake\tO\nup\tO\tup\tO\nyour\tO\tyour\tO\nmind\tO\tmind\tO\n:\tO\t:\tO\neither\tO\teither\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nmiles\tO\tmiles\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nlimit\tO\tlimit\tO\nin\tO\tin\tO\nmiles\tO\tmiles\tO\n,\tO\t,\tO\nor\tO\tor\tO\nleave\tO\tleave\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nas-is\tO\tas-is\tO\nand\tO\tand\tO\nlimit\tO\tlimit\tO\nit\tO\tit\tO\nby\tO\tby\tO\nkm\tO\tkm\tO\n(\tO\t(\tO\n8\tB-Value\t8\tO\nkm\tI-Value\tkm\tO\nis\tO\tis\tO\nroughly\tO\troughly\tO\n5\tB-Value\t5\tO\nmiles\tI-Value\tmiles\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmiles\tO\tmiles\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nchange\tO\tchange\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4745\tI-Code_Block\tA_4745\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4746\tI-Code_Block\tA_4746\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nreplace\tO\treplace\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4747\tI-Code_Block\tA_4747\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nby\tO\tby\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4748\tI-Code_Block\tA_4748\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstick\tO\tstick\tO\nto\tO\tto\tO\nkm\tO\tkm\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nonly\tO\tonly\tO\nreplace\tO\treplace\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4749\tI-Code_Block\tA_4749\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nby\tO\tby\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4750\tI-Code_Block\tA_4750\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39096604\tO\t39096604\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39096604/\tO\thttps://stackoverflow.com/questions/39096604/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nusing\tO\tusing\tO\npip\tB-Code_Block\tpip\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\nmodule_name\tI-Code_Block\tmodule_name\tI-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\neither\tO\teither\tO\nwheel\tO\twheel\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\neach\tO\teach\tO\nmodule\tO\tmodule\tO\n?\tO\t?\tO\n\t\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4921\tI-Code_Block\tQ_4921\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nestimated\tO\testimated\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndistribution\tO\tdistribution\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nremove\tO\tremove\tO\nthem\tO\tthem\tO\nfrom\tO\tfrom\tO\nwinpython\tB-Application\twinpython\tO\ndistribution\tO\tdistribution\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39096604\tO\t39096604\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39096604/\tO\thttps://stackoverflow.com/questions/39096604/\tO\n\t\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nvague\tO\tvague\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5662\tI-Code_Block\tA_5662\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nlist\tB-Data_Structure\tlist\tO\nat\tO\tat\tO\n:\tO\t:\tO\n\t\nhttp://hastebin.com/qiconesoje.apache\tO\thttp://hastebin.com/qiconesoje.apache\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39096604\tO\t39096604\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39096604/\tO\thttps://stackoverflow.com/questions/39096604/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5661\tI-Code_Block\tA_5661\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nin\tO\tin\tO\nvirtualenv\tB-Application\tvirtualenv\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nfirst\tO\tfirst\tO\noption\tO\toption\tO\nto\tO\tto\tO\nget\tO\tget\tO\nmore\tO\tmore\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18439275\tO\t18439275\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18439275/\tO\thttps://stackoverflow.com/questions/18439275/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\narray\tB-Data_Structure\tarray\tO\nnow\tO\tnow\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\narray\tB-Data_Structure\tarray\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nretain\tO\tretain\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\narray\tB-Data_Structure\tarray\tO\nif\tO\tif\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\n;\tO\t;\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1898\tI-Code_Block\tQ_1898\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\ngiving\tO\tgiving\tO\nme\tO\tme\tO\na\tO\ta\tO\nnull\tB-Error_Name\tnull\tO\npointer\tI-Error_Name\tpointer\tO\nexception\tI-Error_Name\texception\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1899\tI-Code_Block\tQ_1899\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlease\tO\tPlease\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nhow\tO\thow\tO\ncould\tO\tcould\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nnow\tO\tnow\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18439275\tO\t18439275\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18439275/\tO\thttps://stackoverflow.com/questions/18439275/\tO\n\t\n\t\nVery\tO\tVery\tO\nsimple\tO\tsimple\tO\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2417\tI-Code_Block\tA_2417\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18439275\tO\t18439275\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18439275/\tO\thttps://stackoverflow.com/questions/18439275/\tO\n\t\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\nstands\tO\tstands\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nallocate\tO\tallocate\tO\nmemory\tO\tmemory\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndestination\tO\tdestination\tO\n.\tO\t.\tO\n\t\nBefore\tO\tBefore\tO\nSystem.arrayCopy\tB-Library_Function\tSystem.arrayCopy\tO\ncall\tO\tcall\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2416\tI-Code_Block\tA_2416\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nif\tO\tif\tO\nsecondArray\tB-Variable_Name\tsecondArray\tB-Code_Block\nis\tO\tis\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nString\tB-Data_Type\tString\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\naccordingly\tO\taccordingly\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18850298\tO\t18850298\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18850298/\tO\thttps://stackoverflow.com/questions/18850298/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nConvert\tO\tConvert\tO\nMy\tO\tMy\tO\nData\tB-Library_Class\tData\tO\nTable\tI-Library_Class\tTable\tO\nto\tO\tto\tO\nXML\tB-Language\tXML\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nHave\tO\tHave\tO\ntwo\tO\ttwo\tO\ndata\tB-Library_Class\tdata\tO\nTable\tI-Library_Class\tTable\tO\nSimilar\tO\tSimilar\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nsimilar\tO\tsimilar\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1962\tI-Code_Block\tQ_1962\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nHave\tO\tHave\tO\ntried\tO\ttried\tO\nBelow\tO\tBelow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\nlooping\tO\tlooping\tO\nwith\tO\twith\tO\ndatatable\tB-Library_Class\tdatatable\tO\nselect\tO\tselect\tO\nstatement\tO\tstatement\tO\nfor\tO\tfor\tO\nrefid\tB-HTML_XML_Tag\trefid\tO\n.\tO\t.\tO\n\t\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1963\tI-Code_Block\tQ_1963\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18850298\tO\t18850298\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18850298/\tO\thttps://stackoverflow.com/questions/18850298/\tO\n\t\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2499\tI-Code_Block\tA_2499\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18850298\tO\t18850298\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18850298/\tO\thttps://stackoverflow.com/questions/18850298/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nwriteXML\tB-Library_Function\twriteXML\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\nas\tO\tas\tO\nXML\tB-Language\tXML\tO\nHere\tO\tHere\tO\nis\tO\tis\tO\nuseful\tO\tuseful\tO\nlink\tO\tlink\tO\nhttp://msdn.microsoft.com/en-us/library/system.data.datatable.writexml.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.data.datatable.writexml.aspx\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2498\tI-Code_Block\tA_2498\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20581527\tO\t20581527\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20581527/\tO\thttps://stackoverflow.com/questions/20581527/\tO\n\t\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nregex.syntax\tB-Library\tregex.syntax\tB-Code_Block\nmodule\tO\tmodule\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nindividual\tO\tindividual\tO\ntokens\tO\ttokens\tO\nof\tO\tof\tO\na\tO\ta\tO\nparsed\tO\tparsed\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\nwithout\tO\twithout\tO\nsuccess\tO\tsuccess\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nthing\tO\tthing\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nable\tO\table\tO\nto\tO\tto\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\na\tO\ta\tO\nsimplified/optimized\tO\tsimplified/optimized\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nregex\tB-Library\tregex\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2182\tI-Code_Block\tQ_2182\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOutput\tO\tOutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2183\tI-Code_Block\tQ_2183\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ntraverse\tO\ttraverse\tO\nand\tO\tand\tO\noutput\tO\toutput\tO\nits\tO\tits\tO\nparse\tO\tparse\tO\ntree\tB-Data_Structure\ttree\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20581527\tO\t20581527\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20581527/\tO\thttps://stackoverflow.com/questions/20581527/\tO\n\t\n\t\nThe\tO\tThe\tO\nParse\tB-Library_Function\tParse\tB-Code_Block\nfunction\tO\tfunction\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ncalling\tO\tcalling\tO\nis\tO\tis\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nfmt.Println(p)\tB-Library_Function\tfmt.Println(p)\tB-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nparse\tO\tparse\tO\ntree\tB-Data_Structure\ttree\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nconverted\tO\tconverted\tO\nto\tO\tto\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nseeing\tO\tseeing\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nan\tO\tan\tO\nequivalent\tO\tequivalent\tO\nregexp\tB-Library_Variable\tregexp\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nParse\tB-Library_Function\tParse\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\npointer\tB-Data_Type\tpointer\tO\nto\tO\tto\tO\na\tO\ta\tO\nsyntax.Regexp\tB-Library_Variable\tsyntax.Regexp\tB-Code_Block\nstruct\tO\tstruct\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ntraverse\tO\ttraverse\tO\nthe\tO\tthe\tO\nreturned\tO\treturned\tO\nparse\tO\tparse\tO\ntree\tB-Data_Structure\ttree\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nSub\tB-Library_Variable\tSub\tB-Code_Block\nfield\tO\tfield\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nreturned\tO\treturned\tO\nstruct\tB-Data_Structure\tstruct\tO\nwhich\tO\twhich\tO\nlists\tO\tlists\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nsubexpressions\tO\tsubexpressions\tO\n(\tO\t(\tO\na\tO\ta\tO\nslice\tO\tslice\tO\nof\tO\tof\tO\npointers\tB-Data_Type\tpointers\tO\nto\tO\tto\tO\nsyntax.Regexp\tB-Library_Variable\tsyntax.Regexp\tB-Code_Block\nstructs\tB-Data_Structure\tstructs\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2742\tI-Code_Block\tA_2742\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nsyntax\tO\tsyntax\tO\npackage\tO\tpackage\tO\nreference\tO\treference\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\nfields\tO\tfields\tO\nworth\tO\tworth\tO\ninspecting\tO\tinspecting\tO\n:\tO\t:\tO\nOp\tB-Library_Variable\tOp\tB-Code_Block\nand\tO\tand\tO\nRune\tB-Library_Variable\tRune\tB-Code_Block\nare\tO\tare\tO\nmajor\tO\tmajor\tO\nones\tO\tones\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9412898\tO\t9412898\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9412898/\tO\thttps://stackoverflow.com/questions/9412898/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nevent\tO\tevent\tO\nin\tO\tin\tO\nJava\tB-Language\tJava\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ngot\tO\tgot\tO\ntwo\tO\ttwo\tO\njade\tB-Library\tjade\tO\n's\tO\t's\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nFirst\tO\tFirst\tO\nclass\tO\tclass\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_798\tI-Code_Block\tQ_798\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSecond\tO\tSecond\tO\nclass\tO\tclass\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_799\tI-Code_Block\tQ_799\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nProblem\tO\tProblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\nAdd\tO\tAdd\tO\nin\tO\tin\tO\ngui\tO\tgui\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nview\tO\tview\tO\n\"\tO\t\"\tO\nit\tO\tit\tO\nis\tO\tis\tO\nwork\tO\twork\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9412898\tO\t9412898\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9412898/\tO\thttps://stackoverflow.com/questions/9412898/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nJade\tB-Library\tJade\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nvar\tB-Variable_Name\tvar\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\ntrue\tB-Value\ttrue\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nadd\tO\tadd\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nput\tO\tput\tO\na\tO\ta\tO\nSystem.out.println(\"something\")\tB-Library_Function\tSystem.out.println(\"something\")\tB-Code_Block\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nvar\tB-Code_Block\tvar\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\ntrue\tI-Code_Block\ttrue\tI-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nclass\tO\tclass\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhappens\tO\thappens\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nclass\tO\tclass\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1153\tI-Code_Block\tA_1153\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nyou\tO\tyou\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nvar\tB-Variable_Name\tvar\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nfalse\tB-Value\tfalse\tO\nwhen\tO\twhen\tO\nthat\tO\tthat\tO\ncondition\tO\tcondition\tO\nis\tO\tis\tO\ntested\tO\ttested\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nhad\tO\thad\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nadd\tO\tadd\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproper\tO\tproper\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nclass\tO\tclass\tO\nlisten\tO\tlisten\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nclass\tO\tclass\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nalerted\tO\talerted\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\nand\tO\tand\tO\nruns\tO\truns\tO\nsomething\tO\tsomething\tO\nappropriate\tO\tappropriate\tO\nwhen\tO\twhen\tO\nthat\tO\tthat\tO\nhappens\tO\thappens\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16752414\tO\t16752414\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16752414/\tO\thttps://stackoverflow.com/questions/16752414/\tO\n\t\n\t\nIm\tO\tIm\tO\nsimply\tO\tsimply\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\nthis\tO\tthis\tO\nimage\tB-User_Interface_Element\timage\tO\nto\tO\tto\tO\niCloud\tB-Application\tiCloud\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nkeeps\tO\tkeeps\tO\ngiving\tO\tgiving\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\"\tO\t\"\tO\nThe\tB-Output_Block\tThe\tO\noperation\tI-Output_Block\toperation\tO\ncould\tI-Output_Block\tcould\tO\nn't\tI-Output_Block\tn't\tO\nbe\tI-Output_Block\tbe\tO\ncompleted\tI-Output_Block\tcompleted\tO\n.\tI-Output_Block\t.\tO\nOperation\tI-Output_Block\tOperation\tO\nnot\tI-Output_Block\tnot\tO\npermitted\tI-Output_Block\tpermitted\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntook\tO\ttook\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nright\tO\tright\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nDocument\tO\tDocument\tO\nBased\tO\tBased\tO\nApp\tO\tApp\tO\nProgramming\tO\tProgramming\tO\nGuide\tO\tGuide\tO\nand\tO\tand\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nI\tO\tI\tO\n've\tO\t've\tO\nset\tO\tset\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\ncertificates\tO\tcertificates\tO\n,\tO\t,\tO\nidentifiers\tO\tidentifiers\tO\n,\tO\t,\tO\nprofiles\tO\tprofiles\tO\n,\tO\t,\tO\nand\tO\tand\tO\nentitlements\tO\tentitlements\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ninsanely\tO\tinsanely\tO\nfrustrating\tO\tfrustrating\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1685\tI-Code_Block\tQ_1685\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16752414\tO\t16752414\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16752414/\tO\thttps://stackoverflow.com/questions/16752414/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWelcome\tO\tWelcome\tO\nto\tO\tto\tO\niCloud\tB-Application\tiCloud\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\nused\tO\tused\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nfeeling\tO\tfeeling\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nmeantime\tO\tmeantime\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nother\tO\tother\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2176\tI-Code_Block\tA_2176\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nURL\tO\tURL\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2177\tI-Code_Block\tA_2177\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nfile://\tB-Value\tfile://\tB-Code_Block\nURL\tI-Value\tURL\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31461154\tO\t31461154\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31461154/\tO\thttps://stackoverflow.com/questions/31461154/\tO\n\t\n\t\nBelow\tO\tBelow\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\nconfiguration\tO\tconfiguration\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3785\tI-Code_Block\tQ_3785\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ninputFromKafka\tB-Code_Block\tinputFromKafka\tB-Code_Block\ngoes\tO\tgoes\tO\nthrough\tO\tthrough\tO\ntransformation\tO\ttransformation\tO\nbelow\tO\tbelow\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3786\tI-Code_Block\tQ_3786\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nprint\tB-Code_Block\tprint\tO\nstatement\tO\tstatement\tO\nfrom\tO\tfrom\tO\nabove\tO\tabove\tO\nprints\tO\tprints\tO\nonly\tO\tonly\tO\ntwo\tO\ttwo\tO\nconsistent\tO\tconsistent\tO\nheaders\tB-User_Interface_Element\theaders\tO\nregardless\tO\tregardless\tO\n\t\nKAFKA\tB-Code_Block\tKAFKA\tB-Code_Block\nMessage\tI-Code_Block\tMessage\tI-Code_Block\nHeaders\tI-Code_Block\tHeaders\tI-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\nid\tI-Code_Block\tid\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n9c8f09e6-4b28-5aa1-c74c-ebfa53c01ae4\tI-Code_Block\t9c8f09e6-4b28-5aa1-c74c-ebfa53c01ae4\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\ntimestamp\tI-Code_Block\ttimestamp\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n1437066957272}\tI-Code_Block\t1437066957272}\tI-Code_Block\n\t\nWhile\tO\tWhile\tO\nSending\tO\tSending\tO\na\tO\ta\tO\nKafka\tB-Library\tKafka\tO\nmessage\tO\tmessage\tO\nsome\tO\tsome\tO\nheaders\tB-User_Interface_Element\theaders\tO\nwere\tO\twere\tO\npassed\tO\tpassed\tO\nincluding\tO\tincluding\tO\nKafkaHeaders.MESSAGE_KEY\tB-Library_Variable\tKafkaHeaders.MESSAGE_KEY\tB-Code_Block\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nback\tO\tback\tO\nthat\tO\tthat\tO\neither\tO\teither\tO\n,\tO\t,\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\naway\tO\taway\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31461154\tO\t31461154\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31461154/\tO\thttps://stackoverflow.com/questions/31461154/\tO\n\t\n\t\nUnfortunately\tO\tUnfortunately\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nthat\tO\tthat\tO\nway\tO\tway\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nProducer\tO\tProducer\tB-Code_Block\npart\tO\tpart\tO\n(\tO\t(\tO\nKafkaProducerMessageHandler\tB-Library_Class\tKafkaProducerMessageHandler\tB-Code_Block\n)\tO\t)\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4484\tI-Code_Block\tA_4484\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsend\tO\tsend\tO\nany\tO\tany\tO\nmessageHeaders\tB-Library_Class\tmessageHeaders\tB-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nKafka\tB-Library\tKafka\tO\ntopic\tO\ttopic\tB-Code_Block\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\npayload\tO\tpayload\tB-Code_Block\nand\tO\tand\tO\nexactly\tO\texactly\tO\nunder\tO\tunder\tO\nthat\tO\tthat\tO\nmessageKey\tB-Library_Class\tmessageKey\tB-Code_Block\nas\tO\tas\tO\nit\tO\tit\tO\nspecified\tO\tspecified\tO\nby\tO\tby\tO\nKafka\tB-Library\tKafka\tO\nprotocol\tO\tprotocol\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nother\tO\tother\tO\nside\tO\tside\tO\nthe\tO\tthe\tO\nConsumer\tO\tConsumer\tB-Code_Block\nside\tO\tside\tO\n(\tO\t(\tO\nKafkaHighLevelConsumerMessageSource\tB-Library_Class\tKafkaHighLevelConsumerMessageSource\tB-Code_Block\n)\tO\t)\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\nlogic\tO\tlogic\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4485\tI-Code_Block\tA_4485\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ncare\tO\tcare\tO\nhere\tO\there\tO\nabout\tO\tabout\tO\nmessageKey\tB-Library_Class\tmessageKey\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nKafkaMessageDrivenChannelAdapter\tB-Code_Block\tKafkaMessageDrivenChannelAdapter\tB-Code_Block\n(\tI-Code_Block\t(\tO\n<int-kafka:message-driven-channel-adapter>\tI-Code_Block\t<int-kafka:message-driven-channel-adapter>\tB-Code_Block\n)\tI-Code_Block\t)\tO\nis\tO\tis\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\nbefore\tO\tbefore\tO\nsending\tO\tsending\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nchannel\tO\tchannel\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4486\tI-Code_Block\tA_4486\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31461154\tO\t31461154\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31461154/\tO\thttps://stackoverflow.com/questions/31461154/\tO\n\t\n\t\nAs\tO\tAs\tO\nstated\tO\tstated\tO\nbefore\tO\tbefore\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nno\tO\tno\tO\nconcept\tO\tconcept\tO\nof\tO\tof\tO\nmessage\tO\tmessage\tO\nheaders\tB-User_Interface_Element\theaders\tO\nin\tO\tin\tO\nKafka\tB-Library\tKafka\tO\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nI\tO\tI\tO\nstruggled\tO\tstruggled\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npast\tO\tpast\tO\nI\tO\tI\tO\n've\tO\t've\tO\ncompiled\tO\tcompiled\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nlibrary\tO\tlibrary\tO\nthat\tO\tthat\tO\nhelps\tO\thelps\tO\ntackle\tO\ttackle\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmay\tO\tmay\tO\ncome\tO\tcome\tO\nhandy\tO\thandy\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39079773\tO\t39079773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39079773/\tO\thttps://stackoverflow.com/questions/39079773/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\ncalculator\tB-Application\tcalculator\tO\nwith\tO\twith\tO\nflexbox\tB-Library\tflexbox\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\none\tO\tone\tO\nof\tO\tof\tO\nits\tO\tits\tO\nkeys\tO\tkeys\tO\ntwice\tO\ttwice\tO\nthe\tO\tthe\tO\nheight\tB-Library_Variable\theight\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\nkey\tO\tkey\tO\ntwice\tO\ttwice\tO\nthe\tO\tthe\tO\nwidth\tB-Library_Variable\twidth\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ngoogled\tO\tgoogled\tO\nmuch\tO\tmuch\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nbut\tO\tbut\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nboth\tO\tboth\tO\ncases\tO\tcases\tO\ntogether\tO\ttogether\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ntwice\tO\ttwice\tO\nheight\tB-Library_Variable\theight\tO\nkey\tO\tkey\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nanswers\tO\tanswers\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nwas\tO\twas\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nflex-direction\tB-Library_Variable\tflex-direction\tB-Code_Block\nas\tO\tas\tO\ncolumn\tB-Data_Structure\tcolumn\tB-Code_Block\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\ndouble\tO\tdouble\tO\nwidth\tB-Library_Variable\twidth\tO\nkey\tO\tkey\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\non\tO\ton\tO\ncodepen.io\tB-Application\tcodepen.io\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4916\tI-Code_Block\tQ_4916\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4917\tI-Code_Block\tQ_4917\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4918\tI-Code_Block\tQ_4918\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39079773\tO\t39079773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39079773/\tO\thttps://stackoverflow.com/questions/39079773/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\ngeneric\tO\tgeneric\tO\nanswer\tO\tanswer\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ncome\tO\tcome\tO\nup\tO\tup\tO\nwith\tO\twith\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nas\tO\tas\tO\nclose\tO\tclose\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmodified\tO\tmodified\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nfloating\tO\tfloating\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nflexbox\tB-Library\tflexbox\tO\nlayout\tO\tlayout\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nless\tO\tless\tO\nmodern\tO\tmodern\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nviable\tO\tviable\tO\nworkaround\tO\tworkaround\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nparticular\tO\tparticular\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nlittle\tO\tlittle\tO\nto\tO\tto\tO\nno\tO\tno\tO\nnegative\tO\tnegative\tO\neffects\tO\teffects\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nhttps://codepen.io/anon/pen/VjOKGX\tO\thttps://codepen.io/anon/pen/VjOKGX\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5655\tI-Code_Block\tA_5655\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39079773\tO\t39079773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39079773/\tO\thttps://stackoverflow.com/questions/39079773/\tO\n\t\n\t\nWrap\tO\tWrap\tO\nthe\tO\tthe\tO\nuneven\tO\tuneven\tO\nkeys\tB-User_Interface_Element\tkeys\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\nown\tO\town\tO\nflex\tB-Library_Class\tflex\tO\ncontainers\tI-Library_Class\tcontainers\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\nfrom\tO\tfrom\tO\nthere.\tO\tthere.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5656\tI-Code_Block\tQ_5656\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5657\tI-Code_Block\tQ_5657\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRevised\tO\tRevised\tO\nCodepen\tB-Application\tCodepen\tO\n(\tO\t(\tO\nwith\tO\twith\tO\ncompiled\tO\tcompiled\tO\nCSS\tB-Language\tCSS\tO\n)\tO\t)\tO\n\t\nNotes\tO\tNotes\tO\n:\tO\t:\tO\n\t\nInclude\tO\tInclude\tO\npadding\tB-User_Interface_Element\tpadding\tO\nand\tO\tand\tO\nborders\tB-User_Interface_Element\tborders\tO\nin\tO\tin\tO\nwidth\tB-Library_Variable\twidth\tB-Code_Block\n/\tO\t/\tO\nheight\tB-Library_Variable\theight\tB-Code_Block\ncalculations\tO\tcalculations\tO\n.\tO\t.\tO\n\t\nWrap\tO\tWrap\tO\nuneven\tO\tuneven\tO\nkeys\tO\tkeys\tO\nin\tO\tin\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nflex\tB-Library_Class\tflex\tO\ncontainer\tI-Library_Class\tcontainer\tO\n(\tO\t(\tO\nwith\tO\twith\tO\ndefaults\tO\tdefaults\tO\nflex-direction\tB-Code_Block\tflex-direction\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nrow\tI-Code_Block\trow\tI-Code_Block\nand\tO\tand\tO\nflex-wrap\tB-Code_Block\tflex-wrap\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nnowrap\tI-Code_Block\tnowrap\tI-Code_Block\n)\tO\t)\tO\n\t\nWrap\tO\tWrap\tO\nlong\tO\tlong\tO\nkey\tB-User_Interface_Element\tkey\tO\nin\tO\tin\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nflex\tB-Library_Class\tflex\tO\ncontainer\tI-Library_Class\tcontainer\tO\nwith\tO\twith\tO\nwrapping\tO\twrapping\tO\nenabled\tO\tenabled\tO\n(\tO\t(\tO\nand\tO\tand\tO\ntake\tO\ttake\tO\nenough\tO\tenough\tO\nsiblings\tO\tsiblings\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nequal\tO\tequal\tO\nheight\tB-Library_Variable\theight\tO\nwith\tO\twith\tO\ntall\tO\ttall\tO\nkey\tB-User_Interface_Element\tkey\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nForce\tO\tForce\tO\nthree\tO\tthree\tO\nkeys\tB-User_Interface_Element\tkeys\tO\nper\tO\tper\tO\nrow\tB-User_Interface_Element\trow\tO\nmax\tO\tmax\tO\n.\tO\t.\tO\n\t\nMake\tO\tMake\tO\nlong\tO\tlong\tO\nkey\tB-User_Interface_Element\tkey\tO\ntwice\tO\ttwice\tO\nthe\tO\tthe\tO\nwidth\tB-Library_Variable\twidth\tO\nof\tO\tof\tO\nsiblings\tO\tsiblings\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nsimpler\tO\tsimpler\tO\nlong\tB-Class_Name\tlong\tB-Code_Block\nclass\tO\tclass\tO\nselector\tO\tselector\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nweaker\tO\tweaker\tO\nspecificity\tO\tspecificity\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nWrap\tO\tWrap\tO\ntall\tO\ttall\tO\nkey\tB-User_Interface_Element\tkey\tO\nin\tO\tin\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nflex\tB-Library_Class\tflex\tO\ncontainer\tI-Library_Class\tcontainer\tO\nwith\tO\twith\tO\nvertical\tO\tvertical\tO\norientation\tO\torientation\tO\n.\tO\t.\tO\n\t\nMake\tO\tMake\tO\ntall\tO\ttall\tO\nkey\tB-User_Interface_Element\tkey\tO\nconsume\tO\tconsume\tO\nall\tO\tall\tO\navailable\tO\tavailable\tO\nwidth\tB-Library_Variable\twidth\tO\nand\tO\tand\tO\nheight\tB-Library_Variable\theight\tO\nof\tO\tof\tO\ncontainer\tB-Class_Name\tcontainer\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nQuestion\tO\tQuestion\tO\n#1\tO\t#1\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nkeys\tB-User_Interface_Element\tkeys\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nsub-section\tO\tsub-section\tO\ncontainer\tO\tcontainer\tO\n(\tO\t(\tO\ncontaining\tO\tcontaining\tO\n.long\tB-Class_Name\t.long\tB-Code_Block\n)\tO\t)\tO\nare\tO\tare\tO\nsized\tO\tsized\tO\nwith\tO\twith\tO\nflex\tB-Code_Block\tflex\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\n33.33\tI-Code_Block\t33.33\tI-Code_Block\n%\tI-Code_Block\t%\tI-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nshorthand\tO\tshorthand\tO\nfor\tO\tfor\tO\nflex-grow\tB-Code_Block\tflex-grow\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\n,\tO\t,\tO\nflex-shrink\tB-Code_Block\tflex-shrink\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nflex-basis\tB-Code_Block\tflex-basis\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n33.33\tI-Code_Block\t33.33\tI-Code_Block\n%\tI-Code_Block\t%\tI-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\n.long\tB-Class_Name\t.long\tB-Code_Block\nkey\tB-User_Interface_Element\tkey\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nsimply\tO\tsimply\tO\noverriding\tO\toverriding\tO\nthe\tO\tthe\tO\nflex-basis\tB-Library_Variable\tflex-basis\tB-Code_Block\ncomponent\tO\tcomponent\tO\nwith\tO\twith\tO\n66.67\tB-Value\t66.67\tB-Code_Block\n%\tI-Value\t%\tI-Code_Block\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nno\tO\tno\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nre-declare\tO\tre-declare\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ntwo\tO\ttwo\tO\ncomponents\tO\tcomponents\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nreally\tO\treally\tO\nno\tO\tno\tO\ndifference\tO\tdifference\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nbetween\tO\tbetween\tO\nwidth\tB-Library_Variable\twidth\tB-Code_Block\nand\tO\tand\tO\nflex-basis\tB-Library_Variable\tflex-basis\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nsince\tO\tsince\tO\nwe\tO\twe\tO\n're\tO\t're\tO\noverriding\tO\toverriding\tO\nflex-basis\tB-Library_Variable\tflex-basis\tB-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\nused\tO\tused\tO\nflex-basis\tB-Library_Variable\tflex-basis\tB-Code_Block\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nwidth\tB-Library_Variable\twidth\tB-Code_Block\nwould\tO\twould\tO\nleave\tO\tleave\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nflex-basis\tB-Code_Block\tflex-basis\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n33.33\tI-Code_Block\t33.33\tI-Code_Block\n%\tI-Code_Block\t%\tI-Code_Block\nintact\tO\tintact\tO\n,\tO\t,\tO\ncreating\tO\tcreating\tO\ntwo\tO\ttwo\tO\nwidth\tB-Library_Variable\twidth\tB-Code_Block\nrules\tO\trules\tO\nwhich\tO\twhich\tO\nmay\tO\tmay\tO\n,\tO\t,\tO\ntherefore\tO\ttherefore\tO\n,\tO\t,\tO\nfail\tO\tfail\tO\nto\tO\tto\tO\nexpand\tO\texpand\tO\nthe\tO\tthe\tO\n.long\tB-Class_Name\t.long\tB-Code_Block\nkey\tB-User_Interface_Element\tkey\tO\n,\tO\t,\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhich\tO\twhich\tO\nrule\tO\trule\tO\nprevails\tO\tprevails\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncascade\tO\tcascade\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\nexplanation\tO\texplanation\tO\nof\tO\tof\tO\nflex-basis\tB-Library_Variable\tflex-basis\tB-Code_Block\nvs\tO\tvs\tO\n.\tO\t.\tO\nwidth\tB-Library_Variable\twidth\tB-Code_Block\n,\tO\t,\tO\nsee\tO\tsee\tO\nWhat\tO\tWhat\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\ndifferences\tO\tdifferences\tO\nbetween\tO\tbetween\tO\nflex-basis\tB-Library_Variable\tflex-basis\tO\nand\tO\tand\tO\nwidth\tB-Library_Variable\twidth\tO\n?\tO\t?\tO\n\t\nQuestion\tO\tQuestion\tO\n#2\tO\t#2\tO\n:\tO\t:\tO\n\t\nBecause\tO\tBecause\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nflex-grow\tB-Library_Variable\tflex-grow\tB-Code_Block\ncomponent\tO\tcomponent\tO\nis\tO\tis\tO\n0\tB-Value\t0\tB-Code_Block\n(\tO\t(\tO\nsource\tO\tsource\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25840551\tO\t25840551\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25840551/\tO\thttps://stackoverflow.com/questions/25840551/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nquery\tO\tquery\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2949\tI-Code_Block\tQ_2949\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2950\tI-Code_Block\tQ_2950\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhy\tO\tWhy\tO\ncant\tO\tcant\tO\nthe\tO\tthe\tO\nsubquery\tO\tsubquery\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\nquery\tO\tquery\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nvarious\tO\tvarious\tO\ncombinations\tO\tcombinations\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhave\tO\thave\tO\nhad\tO\thad\tO\nno\tO\tno\tO\nluck\tO\tluck\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25840551\tO\t25840551\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25840551/\tO\thttps://stackoverflow.com/questions/25840551/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nconsider\tO\tconsider\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nselect\tO\tselect\tO\nas\tO\tas\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndefining\tO\tdefining\tO\nanother\tO\tanother\tO\nTable\tB-Data_Structure\tTable\tO\n(\tO\t(\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nx\tB-Variable_Name\tx\tB-Code_Block\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3560\tI-Code_Block\tA_3560\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhen\tO\twhen\tO\nthis\tO\tthis\tO\nTable\tB-Data_Structure\tTable\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\na.Lat\tB-Variable_Name\ta.Lat\tB-Code_Block\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\nis\tO\tis\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nouter\tB-Code_Block\touter\tO\n\"\tO\t\"\tO\nquery\tO\tquery\tO\nrun\tO\trun\tO\n,\tO\t,\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nits\tO\tits\tO\nresults\tO\tresults\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nquery\tO\tquery\tO\non\tO\ton\tO\nAWE_Propvids\tB-Variable_Name\tAWE_Propvids\tB-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nlook\tO\tlook\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3561\tI-Code_Block\tA_3561\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25840551\tO\t25840551\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25840551/\tO\thttps://stackoverflow.com/questions/25840551/\tO\n\t\n\t\nQ\tO\tQ\tO\n:\tO\t:\tO\nWhy\tO\tWhy\tO\ncant\tO\tcant\tO\nthe\tO\tthe\tO\nsubquery\tO\tsubquery\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\nquery\tO\tquery\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n?\tO\t?\tO\n\t\nA\tO\tA\tO\n:\tO\t:\tO\nBecause\tO\tBecause\tO\nthat\tO\tthat\tO\nsubquery\tO\tsubquery\tO\nis\tO\tis\tO\nan\tO\tan\tO\ninline\tO\tinline\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nMySQL\tB-Application\tMySQL\tO\nwill\tO\twill\tO\nrun\tO\trun\tO\nthat\tO\tthat\tO\nquery\tO\tquery\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ntemporary\tO\ttemporary\tO\ntable\tB-Data_Structure\ttable\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nderived\tB-Library_Variable\tderived\tO\ntable\tI-Library_Variable\ttable\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nas\tO\tas\tO\nMySQL\tB-Application\tMySQL\tO\ncalls\tO\tcalls\tO\nit\tO\tit\tO\n)\tO\t)\tO\nis\tO\tis\tO\na\tO\ta\tO\nrow\tB-Data_Structure\trow\tO\nsource\tO\tsource\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nouter\tO\touter\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ninline\tO\tinline\tO\nview\tO\tview\tO\nquery\tO\tquery\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nrun\tO\trun\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\nreferences\tO\treferences\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\ncorrelated\tO\tcorrelated\tO\nsubquery\tO\tsubquery\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\na\tO\ta\tO\nWHERE\tB-Code_Block\tWHERE\tO\nclause\tO\tclause\tO\n,\tO\t,\tO\na\tO\ta\tO\nHAVING\tB-Code_Block\tHAVING\tO\nclause\tO\tclause\tO\n,\tO\t,\tO\nan\tO\tan\tO\nIN\tB-Code_Block\tIN\tO\nclause\tO\tclause\tO\n,\tO\t,\tO\nor\tO\tor\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSELECT\tB-Code_Block\tSELECT\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nvalid\tO\tvalid\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFROM\tB-Code_Block\tFROM\tO\nclause\tO\tclause\tO\n,\tO\t,\tO\nas\tO\tas\tO\nan\tO\tan\tO\ninline\tO\tinline\tO\nview\tO\tview\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23383232\tO\t23383232\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23383232/\tO\thttps://stackoverflow.com/questions/23383232/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\npanel\tB-User_Interface_Element\tpanel\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\ncheckboxTree\tB-Library_Class\tcheckboxTree\tO\n,\tO\t,\tO\nI\tO\tI\tO\npopulate\tO\tpopulate\tO\nthe\tO\tthe\tO\ntree\tB-Data_Structure\ttree\tO\nwhen\tO\twhen\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\npanel\tB-User_Interface_Element\tpanel\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmuch\tO\tmuch\tO\nitems\tO\titems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nselected\tO\tselected\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncheckboxtree\tB-Library_Class\tcheckboxtree\tO\n(\tO\t(\tO\nabout\tO\tabout\tO\n4000\tO\t4000\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\npanel\tB-User_Interface_Element\tpanel\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlong\tO\tlong\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nopen\tO\topen\tO\n.\tO\t.\tO\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\ncheckBoxTree.getCheckBoxTreeSelectionModel().setDigIn(true)\tB-Library_Function\tcheckBoxTree.getCheckBoxTreeSelectionModel().setDigIn(true)\tO\n;\tI-Library_Function\t;\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2574\tI-Code_Block\tQ_2574\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nwelcomed\tO\twelcomed\tO\n:)\tO\t:)\tO\n,\tO\t,\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9648463\tO\t9648463\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9648463/\tO\thttps://stackoverflow.com/questions/9648463/\tO\n\t\n\t\nNow\tO\tNow\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nJQM\tB-Library\tJQM\tO\n1.1\tB-Version\t1.1\tO\nRC\tI-Version\tRC\tO\nis\tO\tis\tO\nout\tO\tout\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nmigrate\tO\tmigrate\tO\nmy\tO\tmy\tO\n1.0\tB-Version\t1.0\tO\nmobile\tO\tmobile\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\n1.1\tB-Version\t1.1\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nDo\tO\tDo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nevery\tO\tevery\tO\nfile\tO\tfile\tO\nor\tO\tor\tO\njust\tO\tjust\tO\nsome\tO\tsome\tO\nspecific\tO\tspecific\tO\nfiles\tO\tfiles\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nmy\tO\tmy\tO\nmigration\tO\tmigration\tO\npath\tO\tpath\tO\n?\tO\t?\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nI\tO\tI\tO\nplan\tO\tplan\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\nPhoneGap\tB-Application\tPhoneGap\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmeans\tO\tmeans\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nall\tO\tall\tO\nresources\tO\tresources\tO\nlocally\tO\tlocally\tO\n,\tO\t,\tO\nso\tO\tso\tO\nno\tO\tno\tO\nexternal\tO\texternal\tO\nreferences\tO\treferences\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9648463\tO\t9648463\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9648463/\tO\thttps://stackoverflow.com/questions/9648463/\tO\n\t\n\t\nAdjust\tO\tAdjust\tO\nyour\tO\tyour\tO\njqm\tB-Library\tjqm\tO\ncss\tB-Language\tcss\tO\nand\tO\tand\tO\njs\tB-Language\tjs\tO\nreferences\tO\treferences\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\njquery\tB-Library\tjquery\tO\n1.7.1\tB-Version\t1.7.1\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1215\tI-Code_Block\tA_1215\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18632667\tO\t18632667\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18632667/\tO\thttps://stackoverflow.com/questions/18632667/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nissue\tO\tissue\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nbattling\tO\tbattling\tO\nfor\tO\tfor\tO\ntwo\tO\ttwo\tO\ndays\tO\tdays\tO\nnow\tO\tnow\tO\nto\tO\tto\tO\nresolve\tO\tresolve\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nrecently\tO\trecently\tO\nrecreated\tO\trecreated\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncategory\tO\tcategory\tO\n(\tO\t(\tO\nwww.site.co.za/mens-clothing-3\tO\twww.site.co.za/mens-clothing-3\tO\n)\tO\t)\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\npopulated\tO\tpopulated\tO\nand\tO\tand\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nredirect\tO\tredirect\tO\n(\tO\t(\tO\nwww.site.co.za/mens-clothing\tO\twww.site.co.za/mens-clothing\tO\n)\tO\t)\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ncategory\tO\tcategory\tO\n(\tO\t(\tO\nwww.site.co.za/mens-clothing-3\tO\twww.site.co.za/mens-clothing-3\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nimplementing\tO\timplementing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nhtacess\tB-File_Type\thtacess\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnothing\tO\tnothing\tO\nhappens\tO\thappens\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nold\tO\told\tO\ncategory\tO\tcategory\tO\nlinks\tO\tlinks\tO\n(\tO\t(\tO\nmens-clothing\tO\tmens-clothing\tO\n)\tO\t)\tO\ngoes\tO\tgoes\tO\nobviosuly\tO\tobviosuly\tO\nnow\tO\tnow\tO\nto\tO\tto\tO\na\tO\ta\tO\n404\tB-Error_Name\t404\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nbeing\tO\tbeing\tO\npicked\tO\tpicked\tO\nup\tO\tup\tO\nby\tO\tby\tO\nGoogle\tB-Website\tGoogle\tO\n(\tO\t(\tO\nmain\tO\tmain\tO\nconcern\tO\tconcern\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nhtaccess\tB-File_Type\thtaccess\tO\nrule\tO\trule\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1931\tI-Code_Block\tQ_1931\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18632667\tO\t18632667\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18632667/\tO\thttps://stackoverflow.com/questions/18632667/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nmagento\tB-Application\tmagento\tO\nurl\tO\turl\tO\nredirect\tO\tredirect\tO\ninstead\tO\tinstead\tO\n\t\nhttp://www.magentocommerce.com/wiki/modules_reference/english/mage_adminhtml/urlrewrite/index\tO\thttp://www.magentocommerce.com/wiki/modules_reference/english/mage_adminhtml/urlrewrite/index\tO\n\t\n:)\tO\t:)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42525276\tO\t42525276\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42525276/\tO\thttps://stackoverflow.com/questions/42525276/\tO\n\t\n\t\nCan\tO\tCan\tO\ni\tO\ti\tO\nachieve\tO\tachieve\tO\na\tO\ta\tO\nmany-to-many\tO\tmany-to-many\tO\nrelationship\tO\trelationship\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\na\tO\ta\tO\njunction\tO\tjunction\tO\ntable\tB-Data_Structure\ttable\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\n2\tO\t2\tO\ntables\tB-Data_Structure\ttables\tO\n?\tO\t?\tO\n\t\nAirports\tB-Variable_Name\tAirports\tO\ntable\tB-Data_Structure\ttable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5416\tI-Code_Block\tQ_5416\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAeroplanes\tB-Variable_Name\tAeroplanes\tO\nTable\tB-Data_Structure\tTable\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5417\tI-Code_Block\tQ_5417\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\nthen\tO\tthen\tO\nwhy\tO\twhy\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42525276\tO\t42525276\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42525276/\tO\thttps://stackoverflow.com/questions/42525276/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nyes\tO\tyes\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nshouldn't\tO\tshouldn't\tO\n!\tO\t!\tO\n\t\nWithout\tO\tWithout\tO\nan\tO\tan\tO\nextra\tO\textra\tO\nrelation\tO\trelation\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nentry\tO\tentry\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n:\tO\t:\tO\nevery\tO\tevery\tO\nairport\tB-Variable_Name\tairport\tO\nhas\tO\thas\tO\nzero\tO\tzero\tO\n(\tO\t(\tO\nor\tO\tor\tO\none\tO\tone\tO\n)\tO\t)\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nplanes\tB-Variable_Name\tplanes\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nevery\tO\tevery\tO\nplane\tB-Variable_Name\tplane\tO\nwas\tO\twas\tO\nat\tO\tat\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nairports\tB-Variable_Name\tairports\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nsaving\tO\tsaving\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\none\tO\tone\tO\nrelation\tO\trelation\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nwill\tO\twill\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6127\tI-Code_Block\tA_6127\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nand\tO\tand\tO\nsimilar\tO\tsimilar\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nareoplanes\tB-Variable_Name\tareoplanes\tB-Code_Block\ntable\tB-Data_Structure\ttable\tO\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\ncause\tO\tcause\tO\nsome\tO\tsome\tO\nproblems\tO\tproblems\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nDB\tO\tDB\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nPrimary\tO\tPrimary\tO\nKey\tO\tKey\tO\nfor\tO\tfor\tO\nairport\tB-Variable_Name\tairport\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nunique\tO\tunique\tO\nanymore\tO\tanymore\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmaintain\tO\tmaintain\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ncopies\tO\tcopies\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nupdate\tO\tupdate\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n!\tO\t!\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nbetter\tO\tbetter\tO\ntable\tB-Data_Structure\ttable\tO\ndesign\tO\tdesign\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nscenario\tO\tscenario\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6128\tI-Code_Block\tA_6128\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhere\tO\tWhere\tO\nin\tO\tin\tO\nairports_and_planes\tB-Variable_Name\tairports_and_planes\tB-Code_Block\n:\tO\t:\tO\n\t\nboth\tO\tboth\tO\nfields\tO\tfields\tO\nare\tO\tare\tO\nforeign\tO\tforeign\tO\nkeys\tO\tkeys\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\nrepsective\tO\trepsective\tO\ntables\tB-Data_Structure\ttables\tO\n\t\nboth\tO\tboth\tO\nfields\tO\tfields\tO\nform\tO\tform\tO\nthe\tO\tthe\tO\nprimary\tO\tprimary\tO\nkey\tO\tkey\tO\ntogether\tO\ttogether\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35574488\tO\t35574488\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35574488/\tO\thttps://stackoverflow.com/questions/35574488/\tO\n\t\n\t\nWe\tO\tWe\tO\n're\tO\t're\tO\nhosting\tO\thosting\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nin\tO\tin\tO\nout\tO\tout\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nexceptions/crashes\tB-Library_Class\texceptions/crashes\tO\n,\tO\t,\tO\nwe\tO\twe\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nnumber\tO\tnumber\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstacktrace\tO\tstacktrace\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nsetting\tO\tsetting\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\ndebug\tO\tdebug\tO\ninfo\tO\tinfo\tO\nwhen\tO\twhen\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nCSScript\tB-Application\tCSScript\tO\ncompiler\tI-Application\tcompiler\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35574488\tO\t35574488\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35574488/\tO\thttps://stackoverflow.com/questions/35574488/\tO\n\t\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nCS-Script\tB-Application\tCS-Script\tO\n(\tO\t(\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\nplease\tO\tplease\tO\ncorrect\tO\tcorrect\tO\nme\tO\tme\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ncalling\tO\tcalling\tO\nit\tO\tit\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nfind\tO\tfind\tO\nthis\tO\tthis\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\ndocumentation\tO\tdocumentation\tO\n(\tO\t(\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\nhelp\tO\thelp\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nreflected\tO\treflected\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\nURL\tO\tURL\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nnavigate\tO\tnavigate\tO\nto\tO\tto\tO\nOverview\tO\tOverview\tB-Code_Block\n->\tO\t->\tI-Code_Block\nCommand-line\tO\tCommand-line\tI-Code_Block\ninterface\tO\tinterface\tI-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\n.net\tB-Library\t.net\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstack\tO\tstack\tO\ntrace\tO\ttrace\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncorresponding\tO\tcorresponding\tO\n.pdb\tB-File_Type\t.pdb\tB-Code_Block\nfile\tO\tfile\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nnumber\tO\tnumber\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\ncorrect\tO\tcorrect\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\noptimization\tO\toptimization\tO\ndone\tO\tdone\tO\nat\tO\tat\tO\ncompile\tO\tcompile\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nfor\tO\tfor\tO\nCS-Script\tB-Application\tCS-Script\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nfor\tO\tfor\tO\ncscs.exe\tB-File_Name\tcscs.exe\tB-Code_Block\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nswitch\tO\tswitch\tO\n/dbg\tB-Code_Block\t/dbg\tB-Code_Block\nor\tO\tor\tI-Code_Block\n/d\tB-Code_Block\t/d\tI-Code_Block\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\ninclude\tO\tinclude\tO\nthis\tO\tthis\tO\nswitch\tO\tswitch\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\n.pdb\tB-File_Type\t.pdb\tB-Code_Block\nfile\tO\tfile\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\n.exe\tB-File_Type\t.exe\tB-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n.dll\tB-File_Type\t.dll\tO\nif\tO\tif\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\nlibrary\tO\tlibrary\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nboth\tO\tboth\tO\nfiles\tO\tfiles\tO\nline\tO\tline\tO\nnumbers\tO\tnumbers\tO\nwill\tO\twill\tO\nnow\tO\tnow\tO\nbe\tO\tbe\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstack\tO\tstack\tO\ntrace\tO\ttrace\tO\nof\tO\tof\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\nexception\tB-Library_Class\texception\tO\nthat\tO\tthat\tO\nhits\tO\thits\tO\nan\tO\tan\tO\noperation\tO\toperation\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nassembly\tO\tassembly\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAssume\tO\tAssume\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfile\tO\tfile\tO\ncalled\tO\tcalled\tO\nTest.cs\tB-File_Name\tTest.cs\tB-Code_Block\nwith\tO\twith\tO\nsome\tO\tsome\tO\ntest\tO\ttest\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5185\tI-Code_Block\tA_5185\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\noutput\tO\toutput\tO\n2\tO\t2\tO\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\t\nTest.exe\tB-File_Name\tTest.exe\tO\n\t\nTest.pdb\tB-File_Name\tTest.pdb\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nTest.cs\tB-File_Name\tTest.cs\tB-Code_Block\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nexecute\tO\texecute\tO\nit\tO\tit\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nnumbers\tO\tnumbers\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5186\tI-Code_Block\tA_5186\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFor\tO\tFor\tO\nExecuting\tO\tExecuting\tO\ninline\tO\tinline\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nDebugBuild\tB-Library_Variable\tDebugBuild\tB-Code_Block\nflag\tO\tflag\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nEvaluatorConfig\tB-Library_Class\tEvaluatorConfig\tB-Code_Block\nsection\tO\tsection\tO\nset\tO\tset\tO\nto\tO\tto\tO\ntrue\tB-Value\ttrue\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nexample\tO\texample\tO\nbelow\tO\tbelow\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nget\tO\tget\tO\neverything\tO\teverything\tO\nexpected\tO\texpected\tO\nBUt\tO\tBUt\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nLoadCode\tB-Library_Function\tLoadCode\tB-Code_Block\nit\tO\tit\tO\nuses\tO\tuses\tO\na\tO\ta\tO\ntemporary\tO\ttemporary\tO\nfile\tO\tfile\tO\nname\tO\tname\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nname\tO\tname\tO\nlooks\tO\tlooks\tO\nfunny\tO\tfunny\tO\nalthough\tO\talthough\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nalso\tO\talso\tO\nLoadXXX\tB-Code_Block\tLoadXXX\tO\ncommands\tO\tcommands\tO\nfor\tO\tfor\tO\nloading\tO\tloading\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nfiles\tO\tfiles\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\na\tO\ta\tO\nprettier\tO\tprettier\tO\nstack\tO\tstack\tO\ntrace\tO\ttrace\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nname\tO\tname\tO\nis\tO\tis\tO\nnow\tO\tnow\tO\nknown\tO\tknown\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5187\tI-Code_Block\tA_5187\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\ntest\tO\ttest\tO\nthis\tO\tthis\tO\nall\tO\tall\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nproblems\tO\tproblems\tO\njust\tO\tjust\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37087526\tO\t37087526\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37087526/\tO\thttps://stackoverflow.com/questions/37087526/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncells\tO\tcells\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nif\tB-Code_Block\tif\tO\nstatement\tO\tstatement\tO\nlinked\tO\tlinked\tO\nto\tO\tto\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nsheet\tO\tsheet\tO\nusing\tO\tusing\tO\nimportrange\tO\timportrange\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nstatus\tO\tstatus\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\n\"\tB-Value\t\"\tO\nYES\tI-Value\tYES\tO\n\"\tI-Value\t\"\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nsheet\tO\tsheet\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nonedit\tB-Library_Function\tonedit\tO\nscript\tO\tscript\tO\nwhich\tO\twhich\tO\nlogs\tO\tlogs\tO\ntime\tO\ttime\tO\nand\tO\tand\tO\ndate\tO\tdate\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nmanually\tO\tmanually\tO\ntype\tO\ttype\tO\n\"\tB-Value\t\"\tO\nYES\tI-Value\tYES\tO\n\"\tI-Value\t\"\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nsuccessfully\tO\tsuccessfully\tO\nlogs\tO\tlogs\tO\ntime\tO\ttime\tO\nand\tO\tand\tO\ndate\tO\tdate\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nworkaround\tO\tworkaround\tO\nor\tO\tor\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\nonEdit\tB-Library_Function\tonEdit\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37087526\tO\t37087526\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37087526/\tO\thttps://stackoverflow.com/questions/37087526/\tO\n\t\n\t\nOnEdit\tB-Library_Function\tOnEdit\tB-Code_Block\ntrigger\tO\ttrigger\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ncare\tO\tcare\tO\nif\tO\tif\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nreturned\tO\treturned\tO\nby\tO\tby\tO\nformula\tO\tformula\tO\n,\tO\t,\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nreact\tO\treact\tO\nonly\tO\tonly\tO\nif\tO\tif\tO\ndifferent\tO\tdifferent\tO\nvalue\tO\tvalue\tO\nor\tO\tor\tO\nformula\tO\tformula\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nentered\tO\tentered\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nuse\tO\tuse\tO\nTime-driven\tO\tTime-driven\tO\ntriggers\tO\ttriggers\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5176427\tO\t5176427\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5176427/\tO\thttps://stackoverflow.com/questions/5176427/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncontent\tO\tcontent\tO\nbelow\tO\tbelow\tO\nin\tO\tin\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nuse\tO\tuse\tO\nvim\tB-Code_Block\tvim\tO\n/text\tI-Code_Block\t/text\tO\n\\n[\\t].\\n[\\t]\tI-Code_Block\t\\n[\\t].\\n[\\t]\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\ntext\tB-Value\ttext\tO\n\"\tO\t\"\tO\nword\tO\tword\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nparentheses\tO\tparentheses\tO\nwas\tO\twas\tO\nhighlighted\tO\thighlighted\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\negrep\tB-Code_Block\tegrep\tO\n'\tI-Code_Block\t'\tO\ntext\tI-Code_Block\ttext\tO\n\\n[\\t].\\n[\\t]\tI-Code_Block\t\\n[\\t].\\n[\\t]\tO\n'\tB-Code_Block\t'\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nNO\tO\tNO\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nwondering\tO\twondering\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ngrep\tB-Code_Block\tgrep\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nright\tB-Value\tright\tO\nparentheses\tI-Value\tparentheses\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5176427\tO\t5176427\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5176427/\tO\thttps://stackoverflow.com/questions/5176427/\tO\n\t\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\negrep\tB-Code_Block\tegrep\tB-Code_Block\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nsed\tB-Code_Block\tsed\tB-Code_Block\n.\tO\t.\tO\n\t\nsed\tB-Code_Block\tsed\tB-Code_Block\n-n\tI-Code_Block\t-n\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n/\tI-Code_Block\t/\tI-Code_Block\n^\tI-Code_Block\t^\tI-Code_Block\ntext/\tI-Code_Block\ttext/\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n/\tI-Code_Block\t/\tI-Code_Block\n^($/p\tI-Code_Block\t^($/p\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\nyourfile\tI-Code_Block\tyourfile\tI-Code_Block\nwill\tO\twill\tO\nprint\tO\tprint\tO\nall\tO\tall\tO\nlines\tO\tlines\tO\nstarting\tO\tstarting\tO\nfrom\tO\tfrom\tO\nwhere\tO\twhere\tO\ntext\tB-Value\ttext\tB-Code_Block\nis\tO\tis\tO\nfound\tO\tfound\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\n(\tB-Value\t(\tB-Code_Block\nis\tO\tis\tO\nfound\tO\tfound\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\nof\tO\tof\tO\na\tO\ta\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5176427\tO\t5176427\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5176427/\tO\thttps://stackoverflow.com/questions/5176427/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nlong\tO\tlong\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nAfter\tO\tAfter\tO\nflag\tO\tflag\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\n-AN\tB-Code_Block\t-AN\tB-Code_Block\nwhere\tO\twhere\tO\nN\tB-Variable_Name\tN\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nlines\tO\tlines\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nmatch\tO\tmatch\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ngrab\tO\tgrab\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_551\tI-Code_Block\tA_551\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8360162\tO\t8360162\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8360162/\tO\thttps://stackoverflow.com/questions/8360162/\tO\n\t\n\t\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nfree\tO\tfree\tO\ntool\tO\ttool\tO\nto\tO\tto\tO\nread\tO\tread\tO\nexcel\tB-Application\texcel\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nExcel\tB-Application\tExcel\tO\nInterop\tI-Application\tInterop\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\nusing\tO\tusing\tO\nVisual\tB-Application\tVisual\tO\nstudio\tI-Application\tstudio\tO\n2010\tB-Version\t2010\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nc#\tB-Language\tc#\tO\nand\tO\tand\tO\nasp\tB-Library\tasp\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncant\tO\tcant\tO\ninstall\tO\tinstall\tO\nany\tO\tany\tO\nsoftware\tO\tsoftware\tO\non\tO\ton\tO\nserver\tB-Application\tserver\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\nthird\tO\tthird\tO\nparty\tO\tparty\tO\nfree\tO\tfree\tO\ntool\tO\ttool\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ndb\tO\tdb\tO\n,\tO\t,\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nread\tO\tread\tO\nBoth\tO\tBoth\tO\nXLSX\tB-File_Type\tXLSX\tO\nand\tO\tand\tO\nXLS\tB-File_Type\tXLS\tO\nNeed\tO\tNeed\tO\nsome\tO\tsome\tO\nsuggestions\tO\tsuggestions\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8360162\tO\t8360162\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8360162/\tO\thttps://stackoverflow.com/questions/8360162/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\noptions\tO\toptions\tO\nto\tO\tto\tO\nread/edit/create\tO\tread/edit/create\tO\nExcel\tB-Application\tExcel\tO\nfiles\tO\tfiles\tO\nwithout\tO\twithout\tO\nInterop\tB-Application\tInterop\tO\n:\tO\t:\tO\n\t\nMS\tB-Organization\tMS\tO\nprovides\tO\tprovides\tO\nthe\tO\tthe\tO\nfree\tO\tfree\tO\nOpenXML\tB-Application\tOpenXML\tO\nSDK\tI-Application\tSDK\tO\nV\tB-Version\tV\tO\n2.0\tI-Version\t2.0\tO\n-\tO\t-\tO\nsee\tO\tsee\tO\nhttp://msdn.microsoft.com/en-us/library/bb448854%28office.14%29.aspx\tO\thttp://msdn.microsoft.com/en-us/library/bb448854%28office.14%29.aspx\tO\n(\tO\t(\tO\nXLSX\tB-File_Type\tXLSX\tO\nonly\tO\tonly\tO\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nread+write\tO\tread+write\tO\nMS\tB-Application\tMS\tO\nOffice\tI-Application\tOffice\tO\nfiles\tO\tfiles\tO\n(\tO\t(\tO\nincluding\tO\tincluding\tO\nExcel\tB-Application\tExcel\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nfree\tO\tfree\tO\noption\tO\toption\tO\nsee\tO\tsee\tO\nhttp://www.codeproject.com/KB/office/OpenXML.aspx\tO\thttp://www.codeproject.com/KB/office/OpenXML.aspx\tO\n(\tO\t(\tO\nXLSX\tB-File_Type\tXLSX\tO\nonly\tO\tonly\tO\n)\tO\t)\tO\n\t\nIF\tO\tIF\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nmore\tO\tmore\tO\nlike\tO\tlike\tO\nhandling\tO\thandling\tO\nolder\tO\tolder\tO\nExcel\tB-Application\tExcel\tO\nversions\tO\tversions\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nXLS\tB-File_Type\tXLS\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nonly\tO\tonly\tO\nXLSX\tB-File_Type\tXLSX\tO\n)\tO\t)\tO\n,\tO\t,\tO\nrendering\tO\trendering\tO\n,\tO\t,\tO\ncreating\tO\tcreating\tO\nPDFs\tB-File_Type\tPDFs\tO\n,\tO\t,\tO\nformulas\tO\tformulas\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nthen\tO\tthen\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\nfree\tO\tfree\tO\nand\tO\tand\tO\ncommercial\tO\tcommercial\tO\nlibraries\tO\tlibraries\tO\nlike\tO\tlike\tO\nClosedXML\tB-Library\tClosedXML\tO\n(\tO\t(\tO\nfree\tO\tfree\tO\n,\tO\t,\tO\nXLSX\tB-File_Type\tXLSX\tO\nonly\tO\tonly\tO\n)\tO\t)\tO\n,\tO\t,\tO\nEPPlus\tB-Library\tEPPlus\tO\n(\tO\t(\tO\nfree\tO\tfree\tO\n,\tO\t,\tO\nXLSX\tB-File_Type\tXLSX\tO\nonly\tO\tonly\tO\n)\tO\t)\tO\n,\tO\t,\tO\nAspose.Cells\tB-Library\tAspose.Cells\tO\n,\tO\t,\tO\nSpreadsheetGear\tB-Library\tSpreadsheetGear\tO\n,\tO\t,\tO\nLibXL\tB-Library\tLibXL\tO\nand\tO\tand\tO\nFlexcel\tB-Library\tFlexcel\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nBTW\tO\tBTW\tO\n:\tO\t:\tO\nInterop\tB-Application\tInterop\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nsupported\tO\tsupported\tO\nin\tO\tin\tO\nsever-scenarios\tO\tsever-scenarios\tO\nby\tO\tby\tO\nMS\tB-Organization\tMS\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8360162\tO\t8360162\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8360162/\tO\thttps://stackoverflow.com/questions/8360162/\tO\n\t\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nExcelDataReader\tB-Library\tExcelDataReader\tO\non\tO\ton\tO\na\tO\ta\tO\nrecent\tO\trecent\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nworked\tO\tworked\tO\ngreat\tO\tgreat\tO\nfor\tO\tfor\tO\nreading\tO\treading\tO\nthe\tO\tthe\tO\nXLS/XLSX\tB-File_Type\tXLS/XLSX\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nExcel\tB-Library\tExcel\tO\nData\tI-Library\tData\tO\nReader\tI-Library\tReader\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5338056\tO\t5338056\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5338056/\tO\thttps://stackoverflow.com/questions/5338056/\tO\n\t\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nexplain\tO\texplain\tO\nme\tO\tme\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\nSilverlight\tB-Application\tSilverlight\tO\n4\tB-Version\t4\tO\napplication\tO\tapplication\tO\nusing\tO\tusing\tO\nWCF\tB-Application\tWCF\tO\nRia\tI-Application\tRia\tO\nServices\tI-Application\tServices\tO\n\t\nSL\tB-Application\tSL\tO\napp\tO\tapp\tO\ncalls\tO\tcalls\tO\nStartLongOperation\tB-Library_Function\tStartLongOperation\tB-Code_Block\n[\tB-Code_Block\t[\tB-Code_Block\nInvoke\tI-Code_Block\tInvoke\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nDue\tO\tDue\tO\nto\tO\tto\tO\nsynchronization\tO\tsynchronization\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nexternal\tO\texternal\tO\ncomponents\tO\tcomponents\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nThread.Sleep\tB-Library_Function\tThread.Sleep\tB-Code_Block\n(\tB-Library_Function\t(\tB-Code_Block\n30\tI-Library_Function\t30\tI-Code_Block\n*\tI-Library_Function\t*\tI-Code_Block\n1000\tI-Library_Function\t1000\tI-Code_Block\n)\tI-Library_Function\t)\tI-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nserver-side\tB-Application\tserver-side\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nSL\tB-Application\tSL\tO\napp\tO\tapp\tO\ncalls\tO\tcalls\tO\nGetStatus\tB-Library_Function\tGetStatus\tB-Code_Block\n(\tO\t(\tO\nstandard\tO\tstandard\tO\nquery\tO\tquery\tO\n)\tO\t)\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\ncalls\tO\tcalls\tO\nappear\tO\tappear\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nblocked\tO\tblocked\tO\nserver-side\tB-Application\tserver-side\tO\nand\tO\tand\tO\nare\tO\tare\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nStartLongOperation\tB-Library_Function\tStartLongOperation\tB-Code_Block\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nassuming\tO\tassuming\tO\nthat\tO\tthat\tO\nserverside\tB-Application\tserverside\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nStartLongOperation\tB-Library_Function\tStartLongOperation\tB-Code_Block\nruns\tO\truns\tO\nan\tO\tan\tO\na\tO\ta\tO\nworker\tO\tworker\tO\nthread\tO\tthread\tO\nand\tO\tand\tO\neach\tO\teach\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nGetStatus\tB-Library_Function\tGetStatus\tB-Code_Block\nwould\tO\twould\tO\nrun\tO\trun\tO\non\tO\ton\tO\na\tO\ta\tO\nseperate\tO\tseperate\tO\nworker\tO\tworker\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nClient-side\tB-Application\tClient-side\tO\nthe\tO\tthe\tO\ncalls\tO\tcalls\tO\nare\tO\tare\tO\nasync\tO\tasync\tO\nso\tO\tso\tO\nSL\tB-Application\tSL\tO\nfires\tO\tfires\tO\noff\tO\toff\tO\nthe\tO\tthe\tO\nStartLongOperation\tB-Library_Function\tStartLongOperation\tB-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\ncontinues\tO\tcontinues\tO\nto\tO\tto\tO\npoll\tO\tpoll\tO\nthe\tO\tthe\tO\nGetStatus\tB-Library_Function\tGetStatus\tB-Code_Block\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nGetStatusCompleted\tB-Library_Function\tGetStatusCompleted\tB-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nfired\tO\tfired\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nStartLongOperation\tB-Library_Function\tStartLongOperation\tB-Code_Block\nhas\tO\thas\tO\ncompleted\tO\tcompleted\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5338056\tO\t5338056\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5338056/\tO\thttps://stackoverflow.com/questions/5338056/\tO\n\t\n\t\nSince\tO\tSince\tO\nall\tO\tall\tO\nSilverlight\tB-Application\tSilverlight\tO\nnetwork\tO\tnetwork\tO\ncommunication\tO\tcommunication\tO\nhappens\tO\thappens\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nWCF\tB-Library\tWCF\tO\ncall\tO\tcall\tO\ncan\tO\tcan\tO\nhappen\tO\thappen\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nMeaning\tO\tMeaning\tO\nyour\tO\tyour\tO\nStartLongOperation\tB-Library_Function\tStartLongOperation\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nwill\tO\twill\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nGetStatus\tB-Library_Function\tGetStatus\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nthis\tO\tthis\tO\nbehavior\tO\tbehavior\tO\n,\tO\t,\tO\nfire\tO\tfire\tO\nup\tO\tup\tO\nFiddler\tB-Application\tFiddler\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nfind\tO\tfind\tO\nthat\tO\tthat\tO\nSilverlight\tB-Application\tSilverlight\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nsend\tO\tsend\tO\nan\tO\tan\tO\nHTTP\tO\tHTTP\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nGetStatus\tB-Library_Function\tGetStatus\tO\nmethod\tO\tmethod\tO\nuntil\tO\tuntil\tO\nit\tO\tit\tO\nfirst\tO\tfirst\tO\ngets\tO\tgets\tO\na\tO\ta\tO\nStartLongOperation\tB-Library_Function\tStartLongOperation\tO\nresponse\tO\tresponse\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nserver-side\tB-Application\tserver-side\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nlimitation\tO\tlimitation\tO\nof\tO\tof\tO\nSilverlight\tB-Application\tSilverlight\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27373401\tO\t27373401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27373401/\tO\thttps://stackoverflow.com/questions/27373401/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nretrieve\tO\tretrieve\tO\ntwo\tO\ttwo\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nfrom\tO\tfrom\tO\ndatabase\tO\tdatabase\tO\nnamely\tO\tnamely\tO\nsystem_name\tB-Variable_Name\tsystem_name\tB-Code_Block\nand\tO\tand\tO\narrival_time\tB-Variable_Name\tarrival_time\tB-Code_Block\nand\tO\tand\tO\ndisplay\tO\tdisplay\tO\nthese\tO\tthese\tO\nin\tO\tin\tO\ntabular\tO\ttabular\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\na\tO\ta\tO\nthird\tO\tthird\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nrepresent\tO\trepresent\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ntimes\tO\ttimes\tO\nsystem_name\tB-Variable_Name\tsystem_name\tB-Code_Block\nappears\tO\tappears\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nsql\tB-Application\tsql\tO\nserver\tI-Application\tserver\tO\n2012\tB-Version\t2012\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\ndisplay\tO\tdisplay\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nJSP\tB-Library\tJSP\tO\nAND\tO\tAND\tO\nJSTL\tB-Library\tJSTL\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\ndisplaying\tO\tdisplaying\tO\ntwo\tO\ttwo\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nshows\tO\tshows\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ndata\tO\tdata\tO\nentries\tO\tentries\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\njava\tB-Language\tjava\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3161\tI-Code_Block\tQ_3161\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJsp\tB-Library\tJsp\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3162\tI-Code_Block\tQ_3162\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36802340\tO\t36802340\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36802340/\tO\thttps://stackoverflow.com/questions/36802340/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nevent\tB-Library_Class\tevent\tO\nlistener\tI-Library_Class\tlistener\tO\non\tO\ton\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nis\tO\tis\tO\ninside\tO\tinside\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\ndiv1\tI-HTML_XML_Tag\tdiv1\tB-Code_Block\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nanother\tO\tanother\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ndiv1\tB-HTML_XML_Tag\tdiv1\tB-Code_Block\nposition:absolute\tI-HTML_XML_Tag\tposition:absolute\tI-Code_Block\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nevent\tB-Library_Class\tevent\tO\nlistener\tI-Library_Class\tlistener\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\ndisappears\tO\tdisappears\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\nhappens\tO\thappens\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nor\tO\tor\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndebug\tO\tdebug\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42724032\tO\t42724032\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42724032/\tO\thttps://stackoverflow.com/questions/42724032/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\non\tO\ton\tO\nnetwork\tO\tnetwork\tO\ndrive\tO\tdrive\tO\nwith\tO\twith\tO\nmillion\tO\tmillion\tO\nof\tO\tof\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nread\tO\tread\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5448\tI-Code_Block\tQ_5448\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nit\tO\tit\tO\nwill\tO\twill\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\nuntil\tO\tuntil\tO\nresulting\tO\tresulting\tO\narray\tB-Data_Structure\tarray\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfilled\tO\tfilled\tO\nwith\tO\twith\tO\nfiles\tB-Library_Class\tfiles\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nreceive\tO\treceive\tO\nfiles\tB-Library_Class\tfiles\tO\nby\tO\tby\tO\none\tO\tone\tO\nand\tO\tand\tO\nprintout\tO\tprintout\tO\na\tO\ta\tO\nprogress\tO\tprogress\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nJava\tB-Language\tJava\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42724032\tO\t42724032\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42724032/\tO\thttps://stackoverflow.com/questions/42724032/\tO\n\t\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\ntry\tO\ttry\tO\nwith\tO\twith\tO\nDirectoryStream\tB-Library_Class\tDirectoryStream\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6170\tI-Code_Block\tA_6170\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nDirectoryStream\tB-Library_Class\tDirectoryStream\tB-Code_Block\nfilter\tO\tfilter\tO\nfiles\tB-Library_Class\tfiles\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\n:\tO\t:\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nparameter\tO\tparameter\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nFiles.newDirectoryStream\tB-Library_Function\tFiles.newDirectoryStream\tB-Code_Block\ncall\tO\tcall\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6171\tI-Code_Block\tA_6171\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42724032\tO\t42724032\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42724032/\tO\thttps://stackoverflow.com/questions/42724032/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nNIO.2\tB-Library\tNIO.2\tO\nAPI\tO\tAPI\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6172\tI-Code_Block\tA_6172\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36666794\tO\t36666794\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36666794/\tO\thttps://stackoverflow.com/questions/36666794/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\niterate\tO\titerate\tO\nthrough\tO\tthrough\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nhidden\tO\thidden\tO\nfields\tO\tfields\tO\nand\tO\tand\tO\nchange\tO\tchange\tO\neach\tO\teach\tO\none\tO\tone\tO\n's\tO\t's\tO\nvalue\tO\tvalue\tO\nwith\tO\twith\tO\nJQuery\tB-Library\tJQuery\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4509\tI-Code_Block\tQ_4509\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36666794\tO\t36666794\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36666794/\tO\thttps://stackoverflow.com/questions/36666794/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nby\tO\tby\tO\ncombining\tO\tcombining\tO\n:hidden\tB-Code_Block\t:hidden\tB-Code_Block\nselector\tO\tselector\tO\nand\tO\tand\tO\nattribute\tO\tattribute\tB-Code_Block\nstarts\tO\tstarts\tI-Code_Block\nwith\tO\twith\tI-Code_Block\nselector\tO\tselector\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5255\tI-Code_Block\tA_5255\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDEMO\tO\tDEMO\tO\n\t\nTo\tO\tTo\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nID\tO\tID\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\nuse\tO\tuse\tO\nalso\tO\talso\tO\nthe\tO\tthe\tO\nClientIDMode\tB-Code_Block\tClientIDMode\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nStatic\tI-Code_Block\tStatic\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\non\tO\ton\tO\neach\tO\teach\tO\ncontrol\tO\tcontrol\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nID\tO\tID\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nplace\tO\tplace\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nany\tO\tany\tO\npage\tO\tpage\tO\nthat\tO\tthat\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\nmaster\tO\tmaster\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nor\tO\tor\tO\nis\tO\tis\tO\ninside\tO\tinside\tO\nany\tO\tany\tO\ncustom\tO\tcustom\tO\ncontrol\tO\tcontrol\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyour\tO\tyour\tO\ncontrol\tO\tcontrol\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5256\tI-Code_Block\tA_5256\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43917084\tO\t43917084\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43917084/\tO\thttps://stackoverflow.com/questions/43917084/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nfacing\tO\tfacing\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\ninstalling\tO\tinstalling\tO\nangular-cli\tB-Application\tangular-cli\tO\nlocally\tO\tlocally\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\non\tO\ton\tO\nUbuntu\tB-Operating_System\tUbuntu\tO\n16.04.2\tB-Version\t16.04.2\tO\nLTS\tI-Version\tLTS\tO\nwith\tO\twith\tO\nfollowing\tO\tfollowing\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nnode.js\tB-Library\tnode.js\tO\nand\tO\tand\tO\nnpm\tB-Application\tnpm\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5681\tI-Code_Block\tQ_5681\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nangluar-cli\tB-Application\tangluar-cli\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5682\tI-Code_Block\tQ_5682\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\nworked\tO\tworked\tO\nfine\tO\tfine\tO\nand\tO\tand\tO\ncompleted\tO\tcompleted\tO\nwith\tO\twith\tO\nfollowing\tO\tfollowing\tO\nwarnings\tO\twarnings\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5683\tI-Code_Block\tQ_5683\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\n'\tO\t'\tO\nng\tB-Code_Block\tng\tO\n'\tO\t'\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5684\tI-Code_Block\tQ_5684\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43917084\tO\t43917084\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43917084/\tO\thttps://stackoverflow.com/questions/43917084/\tO\n\t\n\t\nnpm\tB-Code_Block\tnpm\tO\ninstall\tI-Code_Block\tinstall\tO\n@angular\tI-Code_Block\t@angular\tO\n/cli\tI-Code_Block\t/cli\tO\n@latest\tI-Code_Block\t@latest\tO\n\t\nwill\tO\twill\tO\nnot\tO\tnot\tO\ninstall\tO\tinstall\tO\nangular-cli\tB-Application\tangular-cli\tO\nglobally\tO\tglobally\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43917084\tO\t43917084\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43917084/\tO\thttps://stackoverflow.com/questions/43917084/\tO\n\t\n\t\nI\tO\tI\tO\nresolve\tO\tresolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nby\tO\tby\tO\nlearning\tO\tlearning\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\n:\tO\t:\tO\n\t\nFixing\tO\tFixing\tO\nnpm\tB-Application\tnpm\tO\npermissions\tO\tpermissions\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15717628\tO\t15717628\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15717628/\tO\thttps://stackoverflow.com/questions/15717628/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nword\tO\tword\tO\ngame\tO\tgame\tO\nin\tO\tin\tO\nJava\tB-Language\tJava\tO\nfor\tO\tfor\tO\npractice\tO\tpractice\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\ntxt\tB-File_Type\ttxt\tO\nfile\tO\tfile\tO\ncontaining\tO\tcontaining\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfour-letter\tO\tfour-letter\tO\nwords\tO\twords\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nEnglish\tO\tEnglish\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nare\tO\tare\tO\nlength-delimited\tO\tlength-delimited\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nevery\tO\tevery\tO\n4th\tO\t4th\tO\ncharacter\tO\tcharacter\tO\nstarting\tO\tstarting\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\n1st\tO\t1st\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nletter\tO\tletter\tO\nof\tO\tof\tO\na\tO\ta\tO\nword\tO\tword\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nchecking\tO\tchecking\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\na\tO\ta\tO\nword\tO\tword\tO\nexists\tO\texists\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndictionary\tB-Data_Structure\tdictionary\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15717628\tO\t15717628\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15717628/\tO\thttps://stackoverflow.com/questions/15717628/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nTreeSet\tB-Library_Class\tTreeSet\tB-Code_Block\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncontains\tB-Library_Function\tcontains\tB-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\na\tO\ta\tO\nSet\tB-Data_Structure\tSet\tB-Code_Block\ncontains\tO\tcontains\tO\nruns\tO\truns\tO\nin\tO\tin\tO\nconstant\tO\tconstant\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\na\tO\ta\tO\n.toUpperCase()\tB-Library_Function\t.toUpperCase()\tB-Code_Block\nconversion\tO\tconversion\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\ncase\tO\tcase\tO\nrelated\tO\trelated\tO\nissues\tO\tissues\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\nbe\tO\tbe\tO\na\tO\ta\tO\n.toLowerCase()\tB-Library_Function\t.toLowerCase()\tB-Code_Block\nalso\tO\talso\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2044\tI-Code_Block\tA_2044\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46669015\tO\t46669015\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46669015/\tO\thttps://stackoverflow.com/questions/46669015/\tO\n\t\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsum\tO\tsum\tO\nminutes\tO\tminutes\tO\nup\tO\tup\tO\nin\tO\tin\tO\nExcel\tB-Application\tExcel\tO\n,\tO\t,\tO\nand\tO\tand\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nhours\tO\thours\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nif\tO\tif\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsum\tO\tsum\tO\n0.45\tB-Value\t0.45\tO\n+\tI-Value\t+\tO\n0.45\tI-Value\t0.45\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\n90\tB-Value\t90\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\nget\tO\tget\tO\n1.30\tB-Value\t1.30\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46669015\tO\t46669015\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46669015/\tO\thttps://stackoverflow.com/questions/46669015/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nTimeSerial\tB-Library_Function\tTimeSerial\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6768\tI-Code_Block\tA_6768\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46801920\tO\t46801920\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46801920/\tO\thttps://stackoverflow.com/questions/46801920/\tO\n\t\n\t\nAs\tO\tAs\tO\ni\tO\ti\tO\nmentioned\tO\tmentioned\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\ntitle\tO\ttitle\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\napproach\tO\tapproach\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nand\tO\tand\tO\ni\tO\ti\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nand\tO\tand\tO\nexample\tO\texample\tO\n(\tO\t(\tO\nvery\tO\tvery\tO\nsimple\tO\tsimple\tO\none\tO\tone\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfollow\tO\tfollow\tO\n:\tO\t:\tO\n)\tO\t)\tO\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\nsay\tO\tsay\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nAPI\tB-Library\tAPI\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\n1\tO\t1\tO\ncontroller\tO\tcontroller\tO\nand\tO\tand\tO\n1\tO\t1\tO\naction\tO\taction\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nsimplicity\tO\tsimplicity\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6164\tI-Code_Block\tQ_6164\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\naction\tO\taction\tO\ni\tO\ti\tO\nhave\tO\thave\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6165\tI-Code_Block\tQ_6165\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nanother\tO\tanother\tO\nrails\tB-Library\trails\tO\napp\tO\tapp\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nfront-end\tO\tfront-end\tO\nrendering\tO\trendering\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\npass\tO\tpass\tO\nthis\tO\tthis\tO\n@date\tO\t@date\tO\nas\tO\tas\tO\nJSON\tB-File_Type\tJSON\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nAPI\tB-Library\tAPI\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nrender\tO\trender\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nShould\tO\tShould\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nsame\tO\tsame\tO\ncontroller\tO\tcontroller\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\napp\tO\tapp\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nconnect\tO\tconnect\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nhttp\tO\thttp\tO\nrequest\tB-Library_Function\trequest\tO\nand\tO\tand\tO\nreceive\tO\treceive\tO\nresponse\tO\tresponse\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46801920\tO\t46801920\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46801920/\tO\thttps://stackoverflow.com/questions/46801920/\tO\n\t\n\t\nFor\tO\tFor\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nas\tO\tas\tO\nsimple\tO\tsimple\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6795\tI-Code_Block\tA_6795\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nmore\tO\tmore\tO\ncomplicated\tO\tcomplicated\tO\nJSON\tB-File_Type\tJSON\tO\nresponses\tO\tresponses\tO\n,\tO\t,\tO\nso\tO\tso\tO\nbefore\tO\tbefore\tO\nlong\tO\tlong\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nprobably\tO\tprobably\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nJbuilder\tB-Application\tJbuilder\tO\ngem\tO\tgem\tO\nor\tO\tor\tO\nActiveModel\tB-Library_Class\tActiveModel\tO\nSerializers\tI-Library_Class\tSerializers\tO\n(\tO\t(\tO\nmy\tO\tmy\tO\npreferred\tO\tpreferred\tO\napproach\tO\tapproach\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nend\tO\tend\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nfront-end\tO\tfront-end\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\nHTTP\tB-Library_Function\tHTTP\tO\nGET\tI-Library_Function\tGET\tO\nrequest\tB-Variable_Name\trequest\tO\n.\tO\t.\tO\n\t\nLots\tO\tLots\tO\nof\tO\tof\tO\nways\tO\tways\tO\n(\tO\t(\tO\nand\tO\tand\tO\ngems\tO\tgems\tO\n)\tO\t)\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\none\tO\tone\tO\ncommon\tO\tcommon\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nbuilt\tO\tbuilt\tO\nin\tO\tin\tO\nNet::HTTP\tB-Library_Class\tNet::HTTP\tB-Code_Block\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6796\tI-Code_Block\tA_6796\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\nsituation\tO\tsituation\tO\n,\tO\t,\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\napproach\tO\tapproach\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nActive\tB-Application\tActive\tO\nResource\tI-Application\tResource\tO\ngem\tO\tgem\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ngem\tO\tgem\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nmodels\tO\tmodels\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nbacked\tO\tbacked\tO\nby\tO\tby\tO\na\tO\ta\tO\nREST\tB-Library\tREST\tO\nAPI\tI-Library\tAPI\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nAPI\tB-Library\tAPI\tO\napp\tO\tapp\tO\nprovides\tO\tprovides\tO\nbasic\tO\tbasic\tO\nCreate-Read-Update-Destroy\tO\tCreate-Read-Update-Destroy\tO\nactions\tO\tactions\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\nmodel\tO\tmodel\tO\n(\tO\t(\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nWidget\tB-Class_Name\tWidget\tB-Code_Block\n)\tO\t)\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nURLs\tO\tURLs\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6797\tI-Code_Block\tA_6797\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthen\tO\tthen\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nfront-end\tO\tfront-end\tO\napp\tO\tapp\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndeclare\tO\tdeclare\tO\nan\tO\tan\tO\nActive\tB-Application\tActive\tO\nResource\tI-Application\tResource\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6798\tI-Code_Block\tA_6798\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nauto-magically\tO\tauto-magically\tO\naccess\tO\taccess\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nmethods\tO\tmethods\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nAPI\tB-Library\tAPI\tO\n,\tO\t,\tO\nand\tO\tand\tO\nbehave\tO\tbehave\tO\nmuch\tO\tmuch\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nregular\tO\tregular\tO\nActive\tB-Application\tActive\tO\nRecord\tI-Application\tRecord\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nway\tO\tway\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nbasically\tO\tbasically\tO\ndesign\tO\tdesign\tO\nyour\tO\tyour\tO\nfront-end\tO\tfront-end\tO\napp\tO\tapp\tO\nlike\tO\tlike\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nnormal\tO\tnormal\tO\n\"\tO\t\"\tO\nrails\tB-Library\trails\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nusing\tO\tusing\tO\nActiveResource-based\tO\tActiveResource-based\tO\nmodels\tO\tmodels\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nof\tO\tof\tO\nActiveRecord\tB-Application\tActiveRecord\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nnote\tO\tnote\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nmore\tO\tmore\tO\ncommon\tO\tcommon\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthese\tO\tthese\tO\ndays\tO\tdays\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nyour\tO\tyour\tO\nAPI\tO\tAPI\tO\nin\tO\tin\tO\nRails\tB-Library\tRails\tO\n,\tO\t,\tO\nand\tO\tand\tO\nbuild\tO\tbuild\tO\nyour\tO\tyour\tO\nfront-end\tO\tfront-end\tO\nwith\tO\twith\tO\nclient-side\tO\tclient-side\tO\nJavascript\tB-Language\tJavascript\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nJQuery\tB-Library\tJQuery\tO\nor\tO\tor\tO\nAngular\tB-Library\tAngular\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nrequests\tO\trequests\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nAPI\tB-Library\tAPI\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngaining\tO\tgaining\tO\nby\tO\tby\tO\nsplitting\tO\tsplitting\tO\nAPI\tO\tAPI\tO\nand\tO\tand\tO\nfront-end\tO\tfront-end\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nboth\tO\tboth\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nare\tO\tare\tO\nRails\tB-Library\tRails\tO\napps\tO\tapps\tO\n-\tO\t-\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\ncompelling\tO\tcompelling\tO\nreason\tO\treason\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\njust\tO\tjust\tO\nbuild\tO\tbuild\tO\none\tO\tone\tO\nRails\tB-Library\tRails\tO\napp\tO\tapp\tO\nthat\tO\tthat\tO\nhandles\tO\thandles\tO\nboth\tO\tboth\tO\nAPI\tB-Library\tAPI\tO\nand\tO\tand\tO\nfront-end\tO\tfront-end\tO\n,\tO\t,\tO\nor\tO\tor\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nRails\tB-Library\tRails\tO\nAPI\tI-Library\tAPI\tO\n+\tO\t+\tO\nAngular\tB-Library\tAngular\tO\n(\tO\t(\tO\nor\tO\tor\tO\nsimilar\tO\tsimilar\tO\n)\tO\t)\tO\nfront-end\tO\tfront-end\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37820736\tO\t37820736\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37820736/\tO\thttps://stackoverflow.com/questions/37820736/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nAWS\tB-Application\tAWS\tO\nWorkMail\tI-Application\tWorkMail\tO\nto\tO\tto\tO\nreceive\tO\treceive\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nemail\tO\temail\tO\nusing\tO\tusing\tO\ncustom\tO\tcustom\tO\ndomain\tO\tdomain\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\njohn@mycompany.com\tB-Value\tjohn@mycompany.com\tB-Code_Block\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nour\tO\tour\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\nand\tO\tand\tO\naccess\tO\taccess\tO\nemails\tO\temails\tO\nat\tO\tat\tO\nhttps://mail.mycompany.com\tO\thttps://mail.mycompany.com\tB-Code_Block\n(\tO\t(\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nAWS\tB-Website\tAWS\tO\nprovided\tO\tprovided\tO\naccess\tO\taccess\tO\nurl\tO\turl\tO\nhttps://mycompany.awsapps.com\tO\thttps://mycompany.awsapps.com\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndocument\tO\tdocument\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nseems\tO\tseems\tO\nonly\tO\tonly\tO\nhandle\tO\thandle\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\ncase\tO\tcase\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nalready\tO\talready\tO\ndone\tO\tdone\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37820736\tO\t37820736\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37820736/\tO\thttps://stackoverflow.com/questions/37820736/\tO\n\t\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nsub-domain\tO\tsub-domain\tO\n\"\tO\t\"\tO\nmail.mycompany.com\tB-Value\tmail.mycompany.com\tO\n\"\tB-Value\t\"\tO\nand\tO\tand\tO\nredirect\tO\tredirect\tO\nit\tO\tit\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nmycompany.awsapps.com\tB-Value\tmycompany.awsapps.com\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37820736\tO\t37820736\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37820736/\tO\thttps://stackoverflow.com/questions/37820736/\tO\n\t\n\t\nI\tO\tI\tO\nresolved\tO\tresolved\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nbuilt-in\tO\tbuilt-in\tO\nCloudFront\tB-Application\tCloudFront\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nadmit\tO\tadmit\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\npoor\tO\tpoor\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\naim\tO\taim\tO\nbehind\tO\tbehind\tO\nit\tO\tit\tO\nis\tO\tis\tO\nto\tO\tto\tO\nget\tO\tget\tO\npeople\tO\tpeople\tO\nto\tO\tto\tO\npay\tO\tpay\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nredirection\tO\tredirection\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nmywebmail.mydomain.com\tB-Value\tmywebmail.mydomain.com\tO\nmapped\tO\tmapped\tO\ninto\tO\tinto\tO\nmyaws.awsapps.com/workmail\tB-Value\tmyaws.awsapps.com/workmail\tO\nthen\tO\tthen\tO\nplease\tO\tplease\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\nthis\tO\tthis\tO\nstep\tO\tstep\tO\nalready\tO\talready\tO\n:\tO\t:\tO\nOn\tO\tOn\tO\nyour\tO\tyour\tO\nDNS\tO\tDNS\tO\nserver\tO\tserver\tO\n(\tO\t(\tO\nwhere\tO\twhere\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\n)\tO\t)\tO\n,\tO\t,\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nCNAME\tO\tCNAME\tO\nto\tO\tto\tO\nmap\tB-Value\tmap\tO\nmywebmail.mydomain.com\tI-Value\tmywebmail.mydomain.com\tO\ninto\tO\tinto\tO\nmyaws.awsapps.com\tB-Value\tmyaws.awsapps.com\tO\n\t\n2)\tO\t2)\tO\nLogin\tO\tLogin\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nCloudFront\tB-Application\tCloudFront\tO\ninterface\tO\tinterface\tO\nhttps://console.aws.amazon.com/cloudfront/\tO\thttps://console.aws.amazon.com/cloudfront/\tO\n\t\n3)\tO\t3)\tO\nClick\tO\tClick\tO\non\tO\ton\tO\n\"\tO\t\"\tO\nCreate\tO\tCreate\tO\nDistribution\tO\tDistribution\tO\n\"\tO\t\"\tO\n\t\n4)\tO\t4)\tO\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nOrigin-Domain\tO\tOrigin-Domain\tO\nput\tO\tput\tO\nmyaws.awsapps.com\tB-Value\tmyaws.awsapps.com\tO\n\t\n5)\tO\t5)\tO\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nOrigin-URI\tO\tOrigin-URI\tO\nput\tO\tput\tO\n/workmail\tB-Value\t/workmail\tO\n\t\n6\tO\t6\tO\n)\tO\t)\tO\nAdjust\tO\tAdjust\tO\nthe\tO\tthe\tO\nsetting\tO\tsetting\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nredirecting\tO\tredirecting\tO\nfrom\tO\tfrom\tO\nHTTP\tO\tHTTP\tO\ninto\tO\tinto\tO\nHTTPS\tO\tHTTPS\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\nas-is\tO\tas-is\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\n7\tO\t7\tO\n)\tO\t)\tO\nScroll\tO\tScroll\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nCNAME\tO\tCNAME\tO\nand\tO\tand\tO\nenter\tO\tenter\tO\nthe\tO\tthe\tO\naliases\tO\taliases\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nput\tO\tput\tO\nin\tO\tin\tO\nmywebmail.mydomain.com\tB-Value\tmywebmail.mydomain.com\tO\n\t\n8\tO\t8\tO\n)\tO\t)\tO\nSave\tO\tSave\tO\n\t\n9\tO\t9\tO\n)\tO\t)\tO\nNotice\tO\tNotice\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nmight\tO\tmight\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nto\tO\tto\tO\nget\tO\tget\tO\ncreated\tO\tcreated\tO\n,\tO\t,\tO\nmine\tO\tmine\tO\ntook\tO\ttook\tO\nabout\tO\tabout\tO\n30\tO\t30\tO\nminutes\tO\tminutes\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\n,\tO\t,\tO\nalso\tO\talso\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nsomething\tO\tsomething\tO\nit\tO\tit\tO\nwould\tO\twould\tO\ntake\tO\ttake\tO\naround\tO\taround\tO\n10-20\tO\t10-20\tO\nminutes\tO\tminutes\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\n.\tO\t.\tO\n\t\n10\tO\t10\tO\n)\tO\t)\tO\nOnce\tO\tOnce\tO\ndone\tO\tdone\tO\n,\tO\t,\tO\nbrowse\tO\tbrowse\tO\nyour\tO\tyour\tO\nmywebmail.mydomain.com\tO\tmywebmail.mydomain.com\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nCNAME\tO\tCNAME\tO\non\tO\ton\tO\nyour\tO\tyour\tO\noriginal\tO\toriginal\tO\nDNS\tO\tDNS\tO\n(\tO\t(\tO\nstep\tO\tstep\tO\n1\tO\t1\tO\nabove\tO\tabove\tO\n)\tO\t)\tO\nshould\tO\tshould\tO\nask\tO\task\tO\nyour\tO\tyour\tO\nbrowser\tB-Application\tbrowser\tO\nto\tO\tto\tO\nredirect\tO\tredirect\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nwith\tO\twith\tO\nAWS\tB-Application\tAWS\tO\nCloundFront\tI-Application\tCloundFront\tO\nsetting\tO\tsetting\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nURI\tO\tURI\tO\nafterwards\tO\tafterwards\tO\n,\tO\t,\tO\n\t\n1\tO\t1\tO\n1)\tO\t1)\tO\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\na\tO\ta\tO\nblank\tO\tblank\tO\npage\tB-User_Interface_Element\tpage\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncheck\tO\tcheck\tO\nyour\tO\tyour\tO\nheaders\tO\theaders\tO\n,\tO\t,\tO\nin\tO\tin\tO\nparticular\tO\tparticular\tO\n(\tO\t(\tO\n?\tO\t?\tO\norganization\tO\torganization\tO\n=\tO\t=\tO\nYourDomainName\tO\tYourDomainName\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmanually\tO\tmanually\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nthere\tO\tthere\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbehaviours\tO\tbehaviours\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nitem\tO\titem\tO\nyou\tO\tyou\tO\ncreated\tO\tcreated\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n\t\nKind\tO\tKind\tO\nRegards\tO\tRegards\tO\n\t\nHeider\tB-User_Name\tHeider\tO\nSati\tI-User_Name\tSati\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4936223\tO\t4936223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4936223/\tO\thttps://stackoverflow.com/questions/4936223/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nis\tO\tis\tO\nsafe\tO\tsafe\tO\nin\tO\tin\tO\nZend\tB-Library\tZend\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_351\tI-Code_Block\tQ_351\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nchecking\tO\tchecking\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\n$postid\tB-Variable_Name\t$postid\tB-Code_Block\nis\tO\tis\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nZend\tB-Library\tZend\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\nautomatically\tO\tautomatically\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nmake\tO\tmake\tO\nqueries\tO\tqueries\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_352\tI-Code_Block\tQ_352\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nof\tO\tof\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nwriting\tO\twriting\tO\nqueries\tO\tqueries\tO\nis\tO\tis\tO\nmuch\tO\tmuch\tO\nfaster\tO\tfaster\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nbe\tO\tbe\tO\nmanually\tO\tmanually\tO\nescaping\tO\tescaping\tO\nor\tO\tor\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\ndone\tO\tdone\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nwhat\tO\twhat\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4936223\tO\t4936223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4936223/\tO\thttps://stackoverflow.com/questions/4936223/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nZend_Db_Select\tB-Library_Class\tZend_Db_Select\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_517\tI-Code_Block\tA_517\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhere\tO\tWhere\tO\nthe\tO\tthe\tO\n2nd\tO\t2nd\tO\nparam\tO\tparam\tO\nis\tO\tis\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nvalues\tO\tvalues\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndropped\tO\tdropped\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nplaceholders\tO\tplaceholders\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\n:\tO\t:\tO\nhttp://framework.zend.com/manual/en/zend.db.statement.html\tO\thttp://framework.zend.com/manual/en/zend.db.statement.html\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4936223\tO\t4936223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4936223/\tO\thttps://stackoverflow.com/questions/4936223/\tO\n\t\n\t\nZend\tB-Library\tZend\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nescaping\tO\tescaping\tO\nyour\tO\tyour\tO\nvariable\tO\tvariable\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nnever\tO\tnever\tO\nsees\tO\tsees\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nvariable\tO\tvariable\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\n$\tB-Library_Function\t$\tO\ndb->query\tI-Library_Function\tdb->query\tO\nmethod\tO\tmethod\tO\ngets\tO\tgets\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nas\tO\tas\tO\na\tO\ta\tO\nwhole\tO\twhole\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nquery()\tB-Library_Function\tquery()\tO\nmethod\tO\tmethod\tO\ndoes\tO\tdoes\tO\nany\tO\tany\tO\nsanitization\tO\tsanitization\tO\nanyway\tO\tanyway\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38734432\tO\t38734432\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38734432/\tO\thttps://stackoverflow.com/questions/38734432/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfolder\tO\tfolder\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\nmultiple\tO\tmultiple\tO\nsub-directories\tO\tsub-directories\tO\n\t\nThe\tO\tThe\tO\nversion\tO\tversion\tO\nformat\tO\tformat\tO\nis\tO\tis\tO\n[\tB-Code_Block\t[\tB-Code_Block\nmajor\tI-Code_Block\tmajor\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n[\tI-Code_Block\t[\tI-Code_Block\nminor\tI-Code_Block\tminor\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n[\tI-Code_Block\t[\tI-Code_Block\nupdate\tI-Code_Block\tupdate\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n[\tB-Code_Block\t[\tB-Code_Block\nphase\tI-Code_Block\tphase\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n[\tB-Code_Block\t[\tB-Code_Block\nbuild\tI-Code_Block\tbuild\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n,\tO\t,\tO\nlike\tO\tlike\tO\n1.0.0d0\tB-Value\t1.0.0d0\tB-Code_Block\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nvalid\tO\tvalid\tO\nphases\tO\tphases\tO\nare\tO\tare\tO\nd(ev)\tB-Value\td(ev)\tO\n,\tO\t,\tO\na(lpha)\tB-Value\ta(lpha)\tO\n,\tO\t,\tO\nb(eta)\tB-Value\tb(eta)\tO\n,\tO\t,\tO\nf(inal)\tB-Value\tf(inal)\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nnote\tO\tnote\tO\nd\tB-Value\td\tO\n<\tO\t<\tO\na\tB-Value\ta\tO\n<\tO\t<\tO\nb\tB-Value\tb\tO\n<\tO\t<\tO\nf\tB-Value\tf\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nnumber\tO\tnumber\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\n16.0.0a2\tB-Version\t16.0.0a2\tO\nusing\tO\tusing\tO\nbatch\tB-Language\tbatch\tO\nscript\tI-Language\tscript\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwrite\tO\twrite\tO\nsuch\tO\tsuch\tO\ncodes\tO\tcodes\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nsub-directories\tO\tsub-directories\tO\nare\tO\tare\tO\nsorted\tO\tsorted\tO\nby\tO\tby\tO\nalphabetical\tO\talphabetical\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\na\tO\ta\tO\nresult\tO\tresult\tO\n16.0.0d24\tB-Version\t16.0.0d24\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4875\tI-Code_Block\tQ_4875\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38734432\tO\t38734432\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38734432/\tO\thttps://stackoverflow.com/questions/38734432/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nscript\tO\tscript\tO\ndoes\tO\tdoes\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5599\tI-Code_Block\tA_5599\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nbasic\tO\tbasic\tO\nconcept\tO\tconcept\tO\nis\tO\tis\tO\nto\tO\tto\tO\nadapt\tO\tadapt\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nnumbers\tO\tnumbers\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\n(\tO\t(\tO\nalpha\tO\talpha\tO\n-\tO\t-\tO\n)\tO\t)\tO\nnumeric\tO\tnumeric\tO\nsorting\tO\tsorting\tO\nprovides\tO\tprovides\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nresult\tO\tresult\tO\nas\tO\tas\tO\nalphabetic\tO\talphabetic\tO\nsorting\tO\tsorting\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nachieved\tO\tachieved\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\nnumber\tO\tnumber\tO\nto\tO\tto\tO\nevery\tO\tevery\tO\nnumeric\tO\tnumeric\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nnumbers\tO\tnumbers\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\none\tO\tone\tO\nalways\tO\talways\tO\nhas\tO\thas\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ndigits\tO\tdigits\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\npriority\tO\tpriority\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nphase\tO\tphase\tO\nfigure\tO\tfigure\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nof\tO\tof\tO\nalphabetical\tO\talphabetical\tO\norder\tO\torder\tO\n,\tO\t,\tO\nadequate\tO\tadequate\tO\nreplacements\tO\treplacements\tO\nare\tO\tare\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncore\tO\tcore\tO\nidea\tO\tidea\tO\nis\tO\tis\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nanswer\tO\tanswer\tO\nand\tO\tand\tO\nis\tO\tis\tO\ncredited\tO\tcredited\tO\nto\tO\tto\tO\nAacini\tB-User_Name\tAacini\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38734432\tO\t38734432\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38734432/\tO\thttps://stackoverflow.com/questions/38734432/\tO\n\t\n\t\nSimilar\tO\tSimilar\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nposted\tO\tposted\tO\nby\tO\tby\tO\naschipfl\tB-User_Name\taschipfl\tO\n.\tO\t.\tO\n\t\nSame\tO\tSame\tO\nvalue\tO\tvalue\tO\npadding\tO\tpadding\tO\napproach\tO\tapproach\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nsegment\tO\tsegment\tO\n,\tO\t,\tO\njust\tO\tjust\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nhandling\tO\thandling\tO\nof\tO\tof\tO\nname\tO\tname\tO\nsplitting\tO\tsplitting\tO\nand\tO\tand\tO\nvalue\tO\tvalue\tO\npadding\tO\tpadding\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5601\tI-Code_Block\tA_5601\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30846327\tO\t30846327\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30846327/\tO\thttps://stackoverflow.com/questions/30846327/\tO\n\t\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nlike\tB-Library_Function\tlike\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\ncontains\tB-Library_Function\tcontains\tO\n\"\tO\t\"\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nAmpscript\tB-Library\tAmpscript\tO\n?\tO\t?\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\nGetContent\tO\tGetContent\tO\nwhere\tO\twhere\tO\nname\tO\tname\tO\ncontains\tO\tcontains\tO\n\"\tB-Value\t\"\tO\nLOY\tI-Value\tLOY\tO\n\"\tI-Value\t\"\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30846327\tO\t30846327\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30846327/\tO\thttps://stackoverflow.com/questions/30846327/\tO\n\t\n\t\nPerhaps\tO\tPerhaps\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nIndexOf()\tB-Library_Function\tIndexOf()\tO\nfunction\tO\tfunction\tO\n?\tO\t?\tO\n\t\nBTW\tO\tBTW\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nmore\tO\tmore\tO\npeople\tO\tpeople\tO\nanswering\tO\tanswering\tO\nSFMC\tO\tSFMC\tO\nquestions\tO\tquestions\tO\nover\tO\tover\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ndedicated\tO\tdedicated\tO\nSF\tB-Website\tSF\tO\nsite\tO\tsite\tO\n:\tO\t:\tO\nhttp://salesforce.stackexchange.com\tO\thttp://salesforce.stackexchange.com\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10572941\tO\t10572941\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10572941/\tO\thttps://stackoverflow.com/questions/10572941/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nsearch\tO\tsearch\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nandroid\tB-Operating_System\tandroid\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nthings\tO\tthings\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\nfrom\tO\tfrom\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n!\tO\t!\tO\n\t\n:)\tO\t:)\tO\nSo\tO\tSo\tO\nyeah\tO\tyeah\tO\n,\tO\t,\tO\nmaby\tO\tmaby\tO\nsomeone\tO\tsomeone\tO\ncould\tO\tcould\tO\nlink\tO\tlink\tO\nme\tO\tme\tO\na\tO\ta\tO\ntutorial\tO\ttutorial\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\n:)\tO\t:)\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\n(\tO\t(\tO\nREALLY\tO\tREALLY\tO\nsorry\tO\tsorry\tO\nfor\tO\tfor\tO\nbad\tO\tbad\tO\nenglish\tO\tenglish\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10572941\tO\t10572941\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10572941/\tO\thttps://stackoverflow.com/questions/10572941/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\ntutorial\tO\ttutorial\tO\n:\tO\t:\tO\n\t\nsearching\tO\tsearching\tO\nemployees\tO\temployees\tO\n\t\nand\tO\tand\tO\nthis\tO\tthis\tO\none\tO\tone\tO\nfrom\tO\tfrom\tO\nandroid\tB-Website\tandroid\tO\ndeveloper\tI-Website\tdeveloper\tO\nsite\tI-Website\tsite\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12689702\tO\t12689702\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12689702/\tO\thttps://stackoverflow.com/questions/12689702/\tO\n\t\n\t\n(\tO\t(\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nhope\tO\thope\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nstill\tO\tstill\tO\nfits\tO\tfits\tO\ninto\tO\tinto\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nallowed\tO\tallowed\tO\nto\tO\tto\tO\nask\tO\task\tO\nhere\tO\there\tO\n)\tO\t)\tO\n\t\nHaving\tO\tHaving\tO\nsuccessfully\tO\tsuccessfully\tO\ndeveloped\tO\tdeveloped\tO\nand\tO\tand\tO\ndeployed\tO\tdeployed\tO\niPhone\tB-Device\tiPhone\tO\napplications\tO\tapplications\tO\nusing\tO\tusing\tO\nMonoTouch\tB-Application\tMonoTouch\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nOS\tB-Operating_System\tOS\tO\nX\tB-Version\tX\tO\n,\tO\t,\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nwas\tO\twas\tO\nMonoMac\tB-Application\tMonoMac\tO\n(\tO\t(\tO\nalso\tO\talso\tO\non\tO\ton\tO\nGithub\tB-Website\tGithub\tO\n)\tO\t)\tO\nwhich\tO\twhich\tO\nlooks\tO\tlooks\tO\npromising\tO\tpromising\tO\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nmost\tO\tmost\tO\nstuff\tO\tstuff\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nfrom\tO\tfrom\tO\n2010/2011\tO\t2010/2011\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nunsure\tO\tunsure\tO\nwhether\tO\twhether\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nup-to-date\tO\tup-to-date\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestions\tO\tquestions\tO\ntherefore\tO\ttherefore\tO\nare\tO\tare\tO\n:\tO\t:\tO\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nreal-world\tO\treal-world\tO\napplications\tO\tapplications\tO\nout\tO\tout\tO\nthere\tO\tthere\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\nrecently\tO\trecently\tO\nsuccessfully\tO\tsuccessfully\tO\nsubmitted\tO\tsubmitted\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nMac\tB-Operating_System\tMac\tO\nOS\tI-Operating_System\tOS\tO\nX\tB-Version\tX\tO\nAppStore\tB-Application\tAppStore\tO\n?\tO\t?\tO\n\t\nWould\tO\tWould\tO\nyou\tO\tyou\tO\nrecommend\tO\trecommend\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\ncommercial\tO\tcommercial\tO\nprojects\tO\tprojects\tO\nnowadays\tO\tnowadays\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nworking\tO\tworking\tO\nalternatives\tO\talternatives\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nbeside\tO\tbeside\tO\nlearning\tO\tlearning\tO\nObjective\tB-Language\tObjective\tO\nC\tI-Language\tC\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ncurrently\tO\tcurrently\tO\ndoing\tO\tdoing\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14831694\tO\t14831694\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14831694/\tO\thttps://stackoverflow.com/questions/14831694/\tO\n\t\n\t\nI\tO\tI\tO\nstumbled\tO\tstumbled\tO\nupon\tO\tupon\tO\nan\tO\tan\tO\ninteresting\tO\tinteresting\tO\nbehavior\tO\tbehavior\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nTrackbar\tB-Library_Class\tTrackbar\tO\nWinforms\tB-Library\tWinforms\tO\ncontrol\tO\tcontrol\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\na\tO\ta\tO\nhorizontal\tO\thorizontal\tO\ntrackbar\tB-User_Interface_Element\ttrackbar\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nleft/right\tB-Keyboard_IP\tleft/right\tO\narrow\tI-Keyboard_IP\tarrow\tO\nkeys\tO\tkeys\tO\nwork\tO\twork\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nLeft\tB-Keyboard_IP\tLeft\tO\narrow\tI-Keyboard_IP\tarrow\tO\nmoves\tO\tmoves\tO\nthe\tO\tthe\tO\nslider\tB-User_Interface_Element\tslider\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nand\tO\tand\tO\ndecreases\tO\tdecreases\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nright\tB-Keyboard_IP\tright\tO\narrow\tI-Keyboard_IP\tarrow\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nopposite\tO\topposite\tO\n)\tO\t)\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nalso\tO\talso\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmanipulate\tO\tmanipulate\tO\nthe\tO\tthe\tO\nslider\tB-User_Interface_Element\tslider\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nup/down\tB-Keyboard_IP\tup/down\tO\narrow\tI-Keyboard_IP\tarrow\tO\nkeys\tO\tkeys\tO\nand\tO\tand\tO\nPageUp/PageDown\tB-Keyboard_IP\tPageUp/PageDown\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbehavior\tO\tbehavior\tO\nseem\tO\tseem\tO\ncounter-intuitive\tO\tcounter-intuitive\tO\n:\tO\t:\tO\narrow\tB-Keyboard_IP\tarrow\tO\nup\tI-Keyboard_IP\tup\tO\nand\tO\tand\tO\npage\tB-Keyboard_IP\tpage\tO\nup\tI-Keyboard_IP\tup\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nslider\tB-User_Interface_Element\tslider\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nand\tO\tand\tO\nconsequently\tO\tconsequently\tO\ndecrease\tO\tdecrease\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nArrow\tB-Keyboard_IP\tArrow\tO\ndown\tI-Keyboard_IP\tdown\tO\nand\tO\tand\tO\npage\tB-Keyboard_IP\tpage\tO\ndown\tI-Keyboard_IP\tdown\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nslider\tB-User_Interface_Element\tslider\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nand\tO\tand\tO\nincrease\tO\tincrease\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nvertical\tO\tvertical\tO\ntrackbar\tB-User_Interface_Element\ttrackbar\tO\n,\tO\t,\tO\nup/down\tB-Keyboard_IP\tup/down\tO\nkeys\tI-Keyboard_IP\tkeys\tO\nwork\tO\twork\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\nbut\tO\tbut\tO\narrow\tB-Keyboard_IP\tarrow\tO\nleft\tI-Keyboard_IP\tleft\tO\n=\tO\t=\tO\nincrease\tO\tincrease\tO\nand\tO\tand\tO\narrow\tB-Keyboard_IP\tarrow\tO\nright\tI-Keyboard_IP\tright\tO\n=\tO\t=\tO\ndecrease\tO\tdecrease\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nbehavior\tO\tbehavior\tO\nin\tO\tin\tO\nC#\tB-Language\tC#\tO\nWinforms\tB-Library\tWinforms\tO\n,\tO\t,\tO\nand\tO\tand\tO\napparently\tO\tapparently\tO\nin\tO\tin\tO\nnative\tO\tnative\tO\nWindows\tB-Operating_System\tWindows\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nlatter\tO\tlatter\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nslider\tB-User_Interface_Element\tslider\tO\nfor\tO\tfor\tO\nUAC\tB-User_Interface_Element\tUAC\tO\ndoes\tO\tdoes\tO\nwork\tO\twork\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n)\tO\t)\tO\n\t\nIn\tO\tIn\tO\nWPF\tB-Library\tWPF\tO\nthe\tO\tthe\tO\nslider\tB-User_Interface_Element\tslider\tO\ncontrol\tO\tcontrol\tO\nworks\tO\tworks\tO\n\"\tO\t\"\tO\nproperly\tO\tproperly\tO\n\"\tO\t\"\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nincreases\tO\tincreases\tO\nwith\tO\twith\tO\narrow\tB-Keyboard_IP\tarrow\tO\nup\tI-Keyboard_IP\tup\tO\n,\tO\t,\tO\narrow\tB-Keyboard_IP\tarrow\tO\nright\tI-Keyboard_IP\tright\tO\nund\tO\tund\tO\nPgUp\tB-Keyboard_IP\tPgUp\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nthe\tO\tthe\tO\nslider\tB-User_Interface_Element\tslider\tO\nin\tO\tin\tO\nInternet\tB-Application\tInternet\tO\nExplorer\tI-Application\tExplorer\tO\nPrivacy\tO\tPrivacy\tO\nsettings\tO\tsettings\tO\nworks\tO\tworks\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nwhy\tO\twhy\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nhandling\tO\thandling\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nkeys\tO\tkeys\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nan\tO\tan\tO\nergonomics\tO\tergonomics\tO\nstandpoint\tO\tstandpoint\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nclear\tO\tclear\tO\nthat\tO\tthat\tO\nup\tO\tup\tO\n,\tO\t,\tO\nright\tO\tright\tO\n,\tO\t,\tO\nforward\tO\tforward\tO\nand\tO\tand\tO\nclockwise\tO\tclockwise\tO\nmanipulation\tO\tmanipulation\tO\nof\tO\tof\tO\nanything\tO\tanything\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nincrease\tO\tincrease\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nThis\tO\tThis\tO\nnothing\tO\tnothing\tO\nnew\tO\tnew\tO\n,\tO\t,\tO\ncompare\tO\tcompare\tO\nA\tO\tA\tO\nGuide\tO\tGuide\tO\nto\tO\tto\tO\nHuman\tO\tHuman\tO\nFactors\tO\tFactors\tO\nand\tO\tand\tO\nErgonomics\tO\tErgonomics\tO\n,\tO\t,\tO\nSecond\tO\tSecond\tO\nEdition\tO\tEdition\tO\nPage\tO\tPage\tO\n100\tO\t100\tO\n)\tO\t)\tO\n\t\nNow\tO\tNow\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nQuestion\tO\tQuestion\tO\n:\tO\t:\tO\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nit\tO\tit\tO\nis\tO\tis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14831694\tO\t14831694\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14831694/\tO\thttps://stackoverflow.com/questions/14831694/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstrongly\tO\tstrongly\tO\ninclined\tO\tinclined\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nthis\tO\tthis\tO\nbehavior\tO\tbehavior\tO\nwas\tO\twas\tO\nchosen\tO\tchosen\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\ntrackbar\tB-Library_Class\ttrackbar\tO\ncontrol\tI-Library_Class\tcontrol\tO\nconsistent\tO\tconsistent\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nscrollbar\tB-Library_Class\tscrollbar\tO\ncontrol\tI-Library_Class\tcontrol\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\ntwo\tO\ttwo\tO\ncontrols\tO\tcontrols\tO\nhave\tO\thave\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nin\tO\tin\tO\ncommon\tO\tcommon\tO\n(\tO\t(\tO\ntheir\tO\ttheir\tO\nthumb\tO\tthumb\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmoved\tO\tmoved\tO\nby\tO\tby\tO\n\"\tO\t\"\tO\nline\tO\tline\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\npage\tO\tpage\tO\n\"\tO\t\"\tO\nincrements\tO\tincrements\tO\n,\tO\t,\tO\nboth\tO\tboth\tO\ncontrols\tO\tcontrols\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nlaid\tO\tlaid\tO\nout\tO\tout\tO\nhorizontally\tO\thorizontally\tO\nor\tO\tor\tO\nvertically\tO\tvertically\tO\n,\tO\t,\tO\nboth\tO\tboth\tO\nuse\tO\tuse\tO\nWM_HSCROLL\tB-Library_Function\tWM_HSCROLL\tO\nand\tO\tand\tO\nWM_VSCROLL\tB-Library_Function\tWM_VSCROLL\tO\nto\tO\tto\tO\nnotify\tO\tnotify\tO\ntheir\tO\ttheir\tO\nparent\tO\tparent\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nthumb\tO\tthumb\tO\nposition\tO\tposition\tO\nchanges\tO\tchanges\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\n's\tO\t's\tO\npoint\tO\tpoint\tO\nof\tO\tof\tO\nview\tO\tview\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nthumb\tO\tthumb\tO\ncan\tO\tcan\tO\nmove\tO\tmove\tO\n\"\tO\t\"\tO\nup\tO\tup\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\ndown\tO\tdown\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\n\"\tO\t\"\tO\nleft\tO\tleft\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\nright\tO\tright\tO\n\"\tO\t\"\tO\nrespectively\tO\trespectively\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nkeyboard\tB-Device\tkeyboard\tO\nnavigation\tO\tnavigation\tO\nfor\tO\tfor\tO\nscrollbars\tB-User_Interface_Element\tscrollbars\tO\nused\tO\tused\tO\nLeft\tB-Keyboard_IP\tLeft\tB-Keyboard_IP\nand\tO\tand\tO\nUp\tB-Keyboard_IP\tUp\tB-Keyboard_IP\nfor\tO\tfor\tO\nupwards\tO\tupwards\tO\n(\tO\t(\tO\nleftwards\tO\tleftwards\tO\n)\tO\t)\tO\nmovement\tO\tmovement\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nRight\tB-Keyboard_IP\tRight\tB-Keyboard_IP\nand\tO\tand\tO\nDown\tB-Keyboard_IP\tDown\tB-Keyboard_IP\nfor\tO\tfor\tO\ndownwards\tO\tdownwards\tO\n(\tO\t(\tO\nrightwards\tO\trightwards\tO\n)\tO\t)\tO\nmovement\tO\tmovement\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmust\tO\tmust\tO\nhave\tO\thave\tO\nmade\tO\tmade\tO\nsense\tO\tsense\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ntrackbar\tB-Library_Class\ttrackbar\tO\ncontrol\tI-Library_Class\tcontrol\tO\nto\tO\tto\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nconventions\tO\tconventions\tO\n,\tO\t,\tO\nso\tO\tso\tO\ndevelopers\tO\tdevelopers\tO\nused\tO\tused\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nscrollbar\tB-Library_Class\tscrollbar\tO\ncontrol\tI-Library_Class\tcontrol\tO\n's\tO\t's\tO\nimplementation\tO\timplementation\tO\ncould\tO\tcould\tO\napply\tO\tapply\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nprinciples\tO\tprinciples\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntrackbar\tB-Library_Class\ttrackbar\tO\ncontrol\tI-Library_Class\tcontrol\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33084463\tO\t33084463\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33084463/\tO\thttps://stackoverflow.com/questions/33084463/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nexperimenting\tO\texperimenting\tO\nwith\tO\twith\tO\nOrientDB\tB-Application\tOrientDB\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nmodel\tO\tmodel\tO\na\tO\ta\tO\nnon\tO\tnon\tO\ndisjunctive\tO\tdisjunctive\tO\ninheritance\tO\tinheritance\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\n-\tO\t-\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nPerson\tB-Class_Name\tPerson\tO\n\t\n-\tO\t-\tO\na\tO\ta\tO\nStudent\tB-Class_Name\tStudent\tO\nis\tO\tis\tO\na\tO\ta\tO\nPerson\tB-Class_Name\tPerson\tO\n\t\n-\tO\t-\tO\na\tO\ta\tO\nWorker\tB-Class_Name\tWorker\tO\nis\tO\tis\tO\na\tO\ta\tO\nPerson\tB-Class_Name\tPerson\tO\n\t\n-\tO\t-\tO\n\"\tB-Value\t\"\tO\nAlberto\tI-Value\tAlberto\tO\n\"\tI-Value\t\"\tO\nis\tO\tis\tO\nboth\tO\tboth\tO\na\tO\ta\tO\nStudent\tB-Class_Name\tStudent\tO\nand\tO\tand\tO\nWorker\tB-Class_Name\tWorker\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmodel\tO\tmodel\tO\nthis\tO\tthis\tO\nsituation\tO\tsituation\tO\nwith\tO\twith\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nthree\tO\tthree\tO\nclasses\tO\tclasses\tO\nI\tO\tI\tO\ndefined\tO\tdefined\tO\n(\tO\t(\tO\nStudent\tB-Class_Name\tStudent\tO\n,\tO\t,\tO\nWorker\tB-Class_Name\tWorker\tO\n,\tO\t,\tO\nPerson\tB-Class_Name\tPerson\tO\n)\tO\t)\tO\nor\tO\tor\tO\nshall\tO\tshall\tO\nI\tO\tI\tO\nintroduce\tO\tintroduce\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nclass\tO\tclass\tO\nWorkingStudent\tB-Class_Name\tWorkingStudent\tO\n,\tO\t,\tO\nextending\tO\textending\tO\nboth\tO\tboth\tO\nWorker\tB-Class_Name\tWorker\tO\nand\tO\tand\tO\nStudent\tB-Class_Name\tStudent\tO\n,\tO\t,\tO\ncontaining\tO\tcontaining\tO\n\"\tB-Value\t\"\tO\nAlberto\tI-Value\tAlberto\tO\n\"\tI-Value\t\"\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\na\tO\ta\tO\nvertex\tB-Library_Class\tvertex\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\none\tO\tone\tO\nclass\tO\tclass\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\ncluster\tB-Library_Class\tcluster\tO\nto\tO\tto\tO\nput\tO\tput\tO\nit\tO\tit\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nfound\tO\tfound\tO\nan\tO\tan\tO\nexplicit\tO\texplicit\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nCheers\tO\tCheers\tO\n,\tO\t,\tO\n\t\nAlberto\tB-User_Name\tAlberto\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nworking\tO\tworking\tO\nstudent\tO\tstudent\tO\n:-)\tO\t:-)\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33084463\tO\t33084463\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33084463/\tO\thttps://stackoverflow.com/questions/33084463/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nAlberto\tB-Value\tAlberto\tO\nwill\tO\twill\tO\npresumably\tO\tpresumably\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nPerson\tB-Class_Name\tPerson\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nAlberto\tB-Value\tAlberto\tO\ngraduates\tO\tgraduates\tO\n,\tO\t,\tO\nhe\tO\the\tO\nwill\tO\twill\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nStudent\tB-Class_Name\tStudent\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nhe\tO\the\tO\nmight\tO\tmight\tO\nalso\tO\talso\tO\nlose\tO\tlose\tO\nhis\tO\this\tO\njob\tO\tjob\tO\nand\tO\tand\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nWorker\tB-Class_Name\tWorker\tO\n.\tO\t.\tO\n\t\nMoving\tO\tMoving\tO\nhim\tO\thim\tO\nfrom\tO\tfrom\tO\none\tO\tone\tO\nclass\tO\tclass\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nis\tO\tis\tO\na\tO\ta\tO\nconsiderable\tO\tconsiderable\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\ncreate\tO\tcreate\tO\nseparate\tO\tseparate\tO\n,\tO\t,\tO\nsmaller\tO\tsmaller\tO\nnodes\tO\tnodes\tO\nof\tO\tof\tO\nWorker\tB-Class_Name\tWorker\tO\nand\tO\tand\tO\nStudent\tB-Class_Name\tStudent\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\ncreate\tO\tcreate\tO\nedges\tO\tedges\tO\nfrom\tO\tfrom\tO\nPerson\tB-Class_Name\tPerson\tO\nto\tO\tto\tO\nWorker\tB-Class_Name\tWorker\tO\n,\tO\t,\tO\nor\tO\tor\tO\nPerson\tB-Class_Name\tPerson\tO\nto\tO\tto\tO\nStudent\tB-Class_Name\tStudent\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nedge\tO\tedge\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nnamed\tO\tnamed\tO\n\"\tO\t\"\tO\nIs\tO\tIs\tO\nA\tO\tA\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\ncategories\tO\tcategories\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n\"\tO\t\"\tO\nParent\tO\tParent\tO\n\"\tO\t\"\tO\nor\tO\tor\tO\n\"\tO\t\"\tO\nSpouse\tO\tSpouse\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\nchanging\tO\tchanging\tO\nyour\tO\tyour\tO\nclass\tO\tclass\tO\ninheritance\tO\tinheritance\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfantastic\tO\tfantastic\tO\nadvantages\tO\tadvantages\tO\nof\tO\tof\tO\na\tO\ta\tO\nGraph\tB-Library\tGraph\tO\ndatabase\tI-Library\tdatabase\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33084463\tO\t33084463\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33084463/\tO\thttps://stackoverflow.com/questions/33084463/\tO\n\t\n\t\nin\tO\tin\tO\nOrientDb\tB-Library\tOrientDb\tO\na\tO\ta\tO\nvertex\tB-Library_Class\tvertex\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nmultiple\tO\tmultiple\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nthis\tO\tthis\tO\ncommand\tO\tcommand\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4705\tI-Code_Block\tA_4705\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nKind\tO\tKind\tO\nregards\tO\tregards\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32765610\tO\t32765610\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32765610/\tO\thttps://stackoverflow.com/questions/32765610/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nNet::SMTPAuthenticationError\tB-Library_Class\tNet::SMTPAuthenticationError\tB-Code_Block\nboth\tO\tboth\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ndevelopment\tO\tdevelopment\tO\n(\tO\t(\tO\nlocal\tO\tlocal\tO\n)\tO\t)\tO\nenv\tO\tenv\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nhost\tO\thost\tO\non\tO\ton\tO\nHeroku\tB-Application\tHeroku\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nmails\tO\tmails\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nrails\tB-Library\trails\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nstarted\tO\tstarted\tO\nafter\tO\tafter\tO\nsending\tO\tsending\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nemail\tO\temail\tO\n(\tO\t(\tO\n2\tO\t2\tO\nmails\tO\tmails\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nspecific\tO\tspecific\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nresearch\tO\tresearch\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nmade\tO\tmade\tO\nme\tO\tme\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\n2-factor\tO\t2-factor\tB-Code_Block\nauth\tO\tauth\tI-Code_Block\nenabled\tO\tenabled\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ngmail\tB-Application\tgmail\tO\naccount\tO\taccount\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nchecked\tO\tchecked\tO\nthe\tO\tthe\tO\naccount\tO\taccount\tO\n,\tO\t,\tO\n2-factor\tO\t2-factor\tB-Code_Block\nautt\tO\tautt\tI-Code_Block\nwas\tO\twas\tO\nnot\tO\tnot\tO\nenabled\tO\tenabled\tO\n.\tO\t.\tO\n\t\nbelow\tO\tbelow\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nsmtp\tO\tsmtp\tO\nsetting\tO\tsetting\tO\nboth\tO\tboth\tO\nin\tO\tin\tO\nconfig/development.rb\tB-File_Name\tconfig/development.rb\tB-Code_Block\nand\tO\tand\tO\nconfig/production.rb\tB-File_Name\tconfig/production.rb\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3974\tI-Code_Block\tQ_3974\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nmailer\tO\tmailer\tO\nis\tO\tis\tO\nset\tO\tset\tO\nup\tO\tup\tO\nas\tO\tas\tO\nfollow\tO\tfollow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3975\tI-Code_Block\tQ_3975\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOn\tO\tOn\tO\ncalling\tO\tcalling\tO\nPushWatir::StackoMailer.success_mail.deliver_now\tB-Function_Name\tPushWatir::StackoMailer.success_mail.deliver_now\tB-Code_Block\n!\tI-Function_Name\t!\tI-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3976\tI-Code_Block\tQ_3976\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ncausing\tO\tcausing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nBig\tO\tBig\tO\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nresponses\tO\tresponses\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32765610\tO\t32765610\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32765610/\tO\thttps://stackoverflow.com/questions/32765610/\tO\n\t\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsolutions\tO\tsolutions\tO\nthat\tO\tthat\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nis\tO\tis\tO\nby\tO\tby\tO\nallowing\tO\tallowing\tO\n\"\tO\t\"\tO\nless\tO\tless\tO\nsecure\tO\tsecure\tO\napps\tO\tapps\tO\n\"\tO\t\"\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\ngoogle\tB-Website\tgoogle\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nSteps\tO\tSteps\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nare\tO\tare\tO\nas\tO\tas\tO\nfollow\tO\tfollow\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nFrom\tO\tFrom\tO\nyour\tO\tyour\tO\nGoogle\tB-Website\tGoogle\tO\nAccount\tO\tAccount\tO\nsettings\tO\tsettings\tO\n,\tO\t,\tO\nfind\tO\tfind\tO\n\"\tO\t\"\tO\nSign\tO\tSign\tO\nIn\tO\tIn\tO\n&\tO\t&\tO\nSecurity\tO\tSecurity\tO\n\"\tO\t\"\tO\n->\tO\t->\tO\n\"\tO\t\"\tO\nAllow\tO\tAllow\tO\nless\tO\tless\tO\nsecure\tO\tsecure\tO\napps\tO\tapps\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nenable\tO\tenable\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nReference\tO\tReference\tO\n-\tO\t-\tO\nhttps://support.google.com/accounts/answer/6010255\tO\thttps://support.google.com/accounts/answer/6010255\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22470038\tO\t22470038\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22470038/\tO\thttps://stackoverflow.com/questions/22470038/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\necommerce\tO\tecommerce\tO\nwebsite\tO\twebsite\tO\n(\tO\t(\tO\nLemonstand\tB-Website\tLemonstand\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nshop\tO\tshop\tO\nsells\tO\tsells\tO\nboth\tO\tboth\tO\nnormal\tO\tnormal\tO\nbooks\tO\tbooks\tO\nand\tO\tand\tO\nebooks\tO\tebooks\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncharge\tO\tcharge\tO\ndifferent\tO\tdifferent\tO\nrates\tO\trates\tO\nof\tO\tof\tO\nfor\tO\tfor\tO\nshipping\tO\tshipping\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsubtotal\tO\tsubtotal\tO\nof\tO\tof\tO\nall\tO\tall\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\n(\tO\t(\tO\n$7\tO\t$7\tO\nshipping\tO\tshipping\tO\ncost\tO\tcost\tO\nfor\tO\tfor\tO\nsubtotal\tO\tsubtotal\tO\nof\tO\tof\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n$20\tO\t$20\tO\n,\tO\t,\tO\n$14\tO\t$14\tO\nshipping\tO\tshipping\tO\ncost\tO\tcost\tO\nfor\tO\tfor\tO\nbetween\tO\tbetween\tO\n$20\tO\t$20\tO\nand\tO\tand\tO\n$\tO\t$\tO\n50\tO\t50\tO\n..\tO\t..\tO\netc\tO\tetc\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\njust\tO\tjust\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nsubtotal\tO\tsubtotal\tO\nof\tO\tof\tO\nall\tO\tall\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nwhich\tO\twhich\tO\nrate\tO\trate\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\napplied\tO\tapplied\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nsubtotal\tO\tsubtotal\tO\nof\tO\tof\tO\nnormal\tO\tnormal\tO\nbooks\tO\tbooks\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\ncalculating\tO\tcalculating\tO\nshipping\tO\tshipping\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nobviously\tO\tobviously\tO\nebooks\tO\tebooks\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nshipping\tO\tshipping\tO\n.\tO\t.\tO\n\t\nLemonstand\tB-Website\tLemonstand\tO\nplatform\tO\tplatform\tO\nhas\tO\thas\tO\nsome\tO\tsome\tO\nbuilt_in\tO\tbuilt_in\tO\nfunctions\tO\tfunctions\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nupdate_shipping_quote\tB-Function_Name\tupdate_shipping_quote\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\njust\tO\tjust\tO\nbefore\tO\tbefore\tO\nshipping\tO\tshipping\tO\ncost\tO\tcost\tO\nis\tO\tis\tO\ncalculated\tO\tcalculated\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nsubtotal\tO\tsubtotal\tO\nof\tO\tof\tO\ncart\tO\tcart\tO\nitems\tO\titems\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nshipping\tO\tshipping\tO\ncost\tO\tcost\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncalculated\tO\tcalculated\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsubtotal\tO\tsubtotal\tO\nof\tO\tof\tO\nnon-ebooks\tO\tnon-ebooks\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nAPI\tB-Library\tAPI\tO\ndocumentation\tO\tdocumentation\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\nhttps://v1.lemonstand.com/api/event/shop:onupdateshippingquote/\tO\thttps://v1.lemonstand.com/api/event/shop:onupdateshippingquote/\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\ngiving\tO\tgiving\tO\nme\tO\tme\tO\ntrouble\tO\ttrouble\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nI\tO\tI\tO\nget\tO\tget\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\n($non_ebook_subtotal)\tB-Variable_Name\t($non_ebook_subtotal)\tO\nactually\tO\tactually\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\ncan\tO\tcan\tO\ncome\tO\tcome\tO\nup\tO\tup\tO\nwith\tO\twith\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nmethod\tO\tmethod\tO\nfor\tO\tfor\tO\ndoing\tO\tdoing\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nshare\tO\tshare\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2454\tI-Code_Block\tQ_2454\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\npublic\tB-Code_Block\tpublic\tO\nfunction\tI-Code_Block\tfunction\tO\nupdate_shipping_quote\tI-Code_Block\tupdate_shipping_quote\tO\n(\tI-Code_Block\t(\tO\n$shipping_option\tI-Code_Block\t$shipping_option\tO\n,\tI-Code_Block\t,\tO\n$params\tI-Code_Block\t$params\tO\n)\tI-Code_Block\t)\tO\n{\tB-Code_Block\t{\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2455\tI-Code_Block\tQ_2455\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22470038\tO\t22470038\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22470038/\tO\thttps://stackoverflow.com/questions/22470038/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3056\tI-Code_Block\tA_3056\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18656558\tO\t18656558\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18656558/\tO\thttps://stackoverflow.com/questions/18656558/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nsent\tO\tsent\tO\nover\tO\tover\tO\nAJAX\tB-Variable_Name\tAJAX\tO\nrequest\tI-Variable_Name\trequest\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfunction\tO\tfunction\tO\nbody\tO\tbody\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncalling\tO\tcalling\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\ncomplete\tO\tcomplete\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\ngiven\tO\tgiven\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n\t\n1.calling\tO\t1.calling\tO\nPHP\tB-Language\tPHP\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1936\tI-Code_Block\tQ_1936\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n2.ajax_js2.php\tB-File_Name\t2.ajax_js2.php\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1937\tI-Code_Block\tQ_1937\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nputting\tO\tputting\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\ntest\tB-Variable_Name\ttest\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncalling\tO\tcalling\tO\nscript\tO\tscript\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nscript.What\tO\tscript.What\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nserver\tB-Application\tserver\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nspan\tB-HTML_XML_Tag\tspan\tO\nas\tO\tas\tO\na\tO\ta\tO\nresponse\tO\tresponse\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nclicking\tO\tclicking\tO\nupon\tO\tupon\tO\nthe\tO\tthe\tO\nspan\tB-HTML_XML_Tag\tspan\tO\n\"\tB-Value\t\"\tO\nTest\tI-Value\tTest\tO\nAJAX\tI-Value\tAJAX\tO\n\"\tI-Value\t\"\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18656558\tO\t18656558\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18656558/\tO\thttps://stackoverflow.com/questions/18656558/\tO\n\t\n\t\n<script>\tB-HTML_XML_Tag\t<script>\tB-Code_Block\ntags\tO\ttags\tO\ninserted\tO\tinserted\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nDOM\tB-Library\tDOM\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\n,\tO\t,\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\neval()\tB-Library_Function\teval()\tB-Code_Block\n.\tO\t.\tO\n\t\nRead\tO\tRead\tO\nmore\tO\tmore\tO\nhere\tO\there\tO\n:\tO\t:\tO\nCan\tO\tCan\tO\nscripts\tO\tscripts\tO\nbe\tO\tbe\tO\ninserted\tO\tinserted\tO\nwith\tO\twith\tO\ninnerHTML\tB-Library_Variable\tinnerHTML\tO\n?\tO\t?\tO\n\t\nSo\tO\tSo\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\ntest()\tB-Function_Name\ttest()\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nundefined\tO\tundefined\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nspan\tB-HTML_XML_Tag\tspan\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\ncode\tO\tcode\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nbeen\tO\tbeen\tO\nexecuted\tO\texecuted\tO\n(\tO\t(\tO\nthus\tO\tthus\tO\nnever\tO\tnever\tO\ndefined\tO\tdefined\tO\nthe\tO\tthe\tO\ntest\tB-Function_Name\ttest\tB-Code_Block\nfunction\tO\tfunction\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\naround\tO\taround\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nDOM\tO\tDOM\tO\ninjection\tO\tinjection\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2450\tI-Code_Block\tA_2450\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\np.s\tO\tp.s\tO\n.\tO\t.\tO\n\t\neval\tB-Library_Function\teval\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nevil\tO\tevil\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22864488\tO\t22864488\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22864488/\tO\thttps://stackoverflow.com/questions/22864488/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nfrom\tO\tfrom\tO\nbrazil\tO\tbrazil\tO\nand\tO\tand\tO\nim\tO\tim\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nkeystore\tB-Library_Class\tkeystore\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbin\tB-File_Name\tbin\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\njre7/bin\tB-File_Name\tjre7/bin\tO\nin\tO\tin\tO\nhere\tO\there\tO\nits\tO\tits\tO\n\"\tO\t\"\tO\nC:\\Program\tB-File_Name\tC:\\Program\tO\nFiles\tI-File_Name\tFiles\tO\n\\Java\\jdk1.7.0_51\\bin\tI-File_Name\t\\Java\\jdk1.7.0_51\\bin\tO\n\"\tO\t\"\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2502\tI-Code_Block\tQ_2502\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nasking\tO\tasking\tO\nme\tO\tme\tO\nfor\tO\tfor\tO\na\tO\ta\tO\npassword\tO\tpassword\tO\nafter\tO\tafter\tO\nthat\tO\tthat\tO\nand\tO\tand\tO\ni\tO\ti\tO\ncant\tO\tcant\tO\ntype\tO\ttype\tO\nanything\tO\tanything\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\ni\tO\ti\tO\npressed\tO\tpressed\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nkeyboard\tB-Device\tkeyboard\tO\nkeys\tO\tkeys\tO\nand\tO\tand\tO\nnothing\tO\tnothing\tO\nwas\tO\twas\tO\nwriten\tO\twriten\tO\nall\tO\tall\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\npress\tO\tpress\tO\nenter\tB-Keyboard_IP\tenter\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngenerated\tO\tgenerated\tO\n..\tO\t..\tO\n.\tO\t.\tO\nHas\tO\tHas\tO\nanyone\tO\tanyone\tO\never\tO\tever\tO\nwent\tO\twent\tO\nthrough\tO\tthrough\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nportuguese\tO\tportuguese\tO\nhe\tO\the\tO\nasks\tO\tasks\tO\nme\tO\tme\tO\nfor\tO\tfor\tO\n:\tO\t:\tO\n\"\tB-Output_Block\t\"\tO\nInforme\tI-Output_Block\tInforme\tO\na\tI-Output_Block\ta\tO\nsenha\tI-Output_Block\tsenha\tO\nda\tI-Output_Block\tda\tO\nárea\tI-Output_Block\tárea\tO\nde\tI-Output_Block\tde\tO\narmazenamento\tI-Output_Block\tarmazenamento\tO\nde\tI-Output_Block\tde\tO\nchaves\tI-Output_Block\tchaves\tO\n:\tI-Output_Block\t:\tO\n\"\tI-Output_Block\t\"\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22864488\tO\t22864488\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22864488/\tO\thttps://stackoverflow.com/questions/22864488/\tO\n\t\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntype\tO\ttype\tO\npassword\tO\tpassword\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nencrypt\tO\tencrypt\tO\nthe\tO\tthe\tO\nkey\tB-Library_Class\tkey\tO\nstore\tI-Library_Class\tstore\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nconfirm\tO\tconfirm\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPasswords\tO\tPasswords\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nshadowed\tO\tshadowed\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nempty\tO\tempty\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nspecify\tO\tspecify\tO\npassword\tO\tpassword\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\nitself\tO\titself\tO\nwith\tO\twith\tO\nstorepass\tB-Library_Variable\tstorepass\tB-Code_Block\nand\tO\tand\tO\nkeypass\tB-Library_Variable\tkeypass\tB-Code_Block\nparametrs\tO\tparametrs\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3103\tI-Code_Block\tA_3103\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nstorepass\tB-Library_Variable\tstorepass\tB-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\npassword\tO\tpassword\tO\nto\tO\tto\tO\nencrypt\tO\tencrypt\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nkey\tO\tkey\tO\nstore\tO\tstore\tO\n,\tO\t,\tO\nand\tO\tand\tO\nkeypass\tB-Library_Variable\tkeypass\tB-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nencrypt\tO\tencrypt\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nentry\tO\tentry\tO\n.\tO\t.\tO\n\t\nTheir\tO\tTheir\tO\nvalues\tO\tvalues\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22864488\tO\t22864488\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22864488/\tO\thttps://stackoverflow.com/questions/22864488/\tO\n\t\n\t\nif\tO\tif\tO\nin\tO\tin\tO\ndebug\tO\tdebug\tO\nmode\tO\tmode\tO\nuse\tO\tuse\tO\nandroid\tB-Operating_System\tandroid\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nit\tO\tit\tO\nhelped\tO\thelped\tO\nyou\tO\tyou\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42257809\tO\t42257809\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42257809/\tO\thttps://stackoverflow.com/questions/42257809/\tO\n\t\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nstart\tO\tstart\tO\nmy\tO\tmy\tO\nthread\tB-Library_Class\tthread\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5366\tI-Code_Block\tQ_5366\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\nhas\tO\thas\tO\na\tO\ta\tO\nloop\tO\tloop\tO\nthat\tO\tthat\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nonce\tO\tonce\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5367\tI-Code_Block\tQ_5367\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nthread\tB-Library_Class\tthread\tO\nsleep\tO\tsleep\tO\nwithout\tO\twithout\tO\npausing\tO\tpausing\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\nthread\tB-Library_Class\tthread\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42257809\tO\t42257809\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42257809/\tO\thttps://stackoverflow.com/questions/42257809/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6067\tI-Code_Block\tA_6067\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRef\tO\tRef\tO\n:\tO\t:\tO\nhttps://msdn.microsoft.com/en-us/library/d00bd51t(v=vs.110).aspx\tO\thttps://msdn.microsoft.com/en-us/library/d00bd51t(v=vs.110).aspx\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42257809\tO\t42257809\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42257809/\tO\thttps://stackoverflow.com/questions/42257809/\tO\n\t\n\t\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nMSDN\tB-Website\tMSDN\tO\n,\tO\t,\tO\nThread.Sleep\tB-Library_Function\tThread.Sleep\tB-Code_Block\npauses\tO\tpauses\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nthread\tB-Library_Class\tthread\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\namount\tO\tamount\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nthread\tB-Library_Class\tthread\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\nrun\tB-Function_Name\trun\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42049923\tO\t42049923\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42049923/\tO\thttps://stackoverflow.com/questions/42049923/\tO\n\t\n\t\nIn\tO\tIn\tO\nNodeJS\tB-Library\tNodeJS\tO\nHapi\tI-Library\tHapi\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nforward\tO\tforward\tO\na\tO\ta\tO\nroute\tO\troute\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nroute\tO\troute\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nan\tO\tan\tO\nHTTP\tO\tHTTP\tO\nredirect\tO\tredirect\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nroot\tO\troot\tO\nrequest\tB-Library_Variable\trequest\tO\n('/')\tB-Value\t('/')\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nindex.html\tB-File_Name\tindex.html\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nstatic\tO\tstatic\tO\nroutes\tO\troutes\tO\nhandler\tO\thandler\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n/\tB-Value\t/\tB-Code_Block\nwill\tO\twill\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nreply\tO\treply\tO\nas\tO\tas\tO\n/public/index.html\tB-File_Name\t/public/index.html\tB-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42049923\tO\t42049923\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42049923/\tO\thttps://stackoverflow.com/questions/42049923/\tO\n\t\n\t\nAs\tO\tAs\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nno\tO\tno\tO\nsuch\tO\tsuch\tO\nfunctionality\tO\tfunctionality\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nhandler\tO\thandler\tO\nfunction\tO\tfunction\tO\nof\tO\tof\tO\na\tO\ta\tO\nroute\tO\troute\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nHapi\tB-Library\tHapi\tO\nis\tO\tis\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nserver\tB-Application\tserver\tO\nextension\tO\textension\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6016\tI-Code_Block\tA_6016\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43356150\tO\t43356150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43356150/\tO\thttps://stackoverflow.com/questions/43356150/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nneed\tO\tneed\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nreleases\tO\treleases\tO\nfrom\tO\tfrom\tO\nTeam\tB-Application\tTeam\tO\nServices\tI-Application\tServices\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nRelease\tO\tRelease\tO\nPipeline\tO\tPipeline\tO\nand\tO\tand\tO\nartifacts\tO\tartifacts\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ncreated\tO\tcreated\tO\nin\tO\tin\tO\na\tO\ta\tO\nprevious\tO\tprevious\tO\nexternal\tO\texternal\tO\nbuild\tO\tbuild\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nartifacts\tO\tartifacts\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\ncreated\tO\tcreated\tO\n,\tO\t,\tO\ndacpacs\tB-File_Type\tdacpacs\tO\nand\tO\tand\tO\nwebsites\tO\twebsites\tO\nect\tO\tect\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndeploy\tO\tdeploy\tO\nthese\tO\tthese\tO\nitems\tO\titems\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfeatures\tO\tfeatures\tO\nin\tO\tin\tO\nrelease\tO\trelease\tO\nPipelines\tO\tPipelines\tO\nbut\tO\tbut\tO\nartifact\tO\tartifact\tO\nsources\tO\tsources\tO\nonly\tO\tonly\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nbuild\tO\tbuild\tO\nor\tO\tor\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nversion\tO\tversion\tO\ncontrol\tO\tcontrol\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napproach\tO\tapproach\tO\n(\tO\t(\tO\nhack\tO\thack\tO\n)\tO\t)\tO\nwas\tO\twas\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nbuild\tO\tbuild\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nexternal\tO\texternal\tO\nfiles\tO\tfiles\tO\nand\tO\tand\tO\npublish\tO\tpublish\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nartifact\tO\tartifact\tO\ncontainer\tO\tcontainer\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nrelease\tO\trelease\tO\npipelines\tO\tpipelines\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nmy\tO\tmy\tO\nreleases\tO\treleases\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nBuild\tO\tBuild\tO\ncopy\tO\tcopy\tO\ntasks\tO\ttasks\tO\nonly\tO\tonly\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\npaths\tO\tpaths\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nrepo\tO\trepo\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nfall\tO\tfall\tO\nback\tO\tback\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nrelease\tO\trelease\tO\npipeline\tO\tpipeline\tO\nand\tO\tand\tO\npowershell\tB-Application\tpowershell\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nreleases\tO\treleases\tO\nwith\tO\twith\tO\nthese\tO\tthese\tO\nexternally\tO\texternally\tO\ncreated\tO\tcreated\tO\nartifacts\tO\tartifacts\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nsure\tO\tsure\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthis\tO\tthis\tO\nsince\tO\tsince\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nnice\tO\tnice\tO\ncapability\tO\tcapability\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrelease\tO\trelease\tO\npipeline\tO\tpipeline\tO\ntasks\tO\ttasks\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\ncompliance\tO\tcompliance\tO\nrequirement\tO\trequirement\tO\nmy\tO\tmy\tO\nfirm\tO\tfirm\tO\nhas\tO\thas\tO\nwhich\tO\twhich\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrather\tO\trather\tO\ncrazy\tO\tcrazy\tO\npost\tO\tpost\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nreally\tO\treally\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43356150\tO\t43356150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43356150/\tO\thttps://stackoverflow.com/questions/43356150/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nCopy\tO\tCopy\tO\nFiles\tO\tFiles\tO\ntask\tO\ttask\tO\nand\tO\tand\tO\nPublish\tO\tPublish\tO\nBuild\tO\tBuild\tO\nArtifacts\tO\tArtifacts\tO\ntask\tO\ttask\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nbuild\tO\tbuild\tO\ndefinition\tO\tdefinition\tO\n.\tO\t.\tO\n\t\nCopy\tO\tCopy\tO\nFiles\tO\tFiles\tO\ntask\tO\ttask\tO\n\t\nSource\tO\tSource\tO\nFolder\tO\tFolder\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nfolder\tO\tfolder\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nyour\tO\tyour\tO\nexternal\tO\texternal\tO\nbuild\tO\tbuild\tO\nartifacts\tO\tartifacts\tO\n.\tO\t.\tO\n\t\nSuch\tO\tSuch\tO\nas\tO\tas\tO\nC:\\project\\a\tB-File_Name\tC:\\project\\a\tB-Code_Block\n.\tO\t.\tO\n\t\nContents\tO\tContents\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nwildcards\tO\twildcards\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nwhich\tO\twhich\tO\nfiles\tO\tfiles\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\n.\tO\t.\tO\n\t\nSuch\tO\tSuch\tO\nas\tO\tas\tO\n**\\*\tB-File_Name\t**\\*\tB-Code_Block\n.dll\tI-File_Name\t.dll\tI-Code_Block\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\ncopy\tO\tcopy\tO\nall\tO\tall\tO\n*\tB-File_Type\t*\tB-Code_Block\n.dll\tI-File_Type\t.dll\tI-Code_Block\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nC:\\project\\a\tB-File_Name\tC:\\project\\a\tB-Code_Block\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsubfilder\tO\tsubfilder\tO\n.\tO\t.\tO\n\t\nTarget\tO\tTarget\tO\nFolder\tO\tFolder\tO\n:\tO\t:\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nthese\tO\tthese\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nUsually\tO\tUsually\tO\nit\tO\tit\tO\n's\tO\t's\tO\n$(build.artifactstagingdirectory)\tB-Code_Block\t$(build.artifactstagingdirectory)\tB-Code_Block\n.\tO\t.\tO\n\t\nPublish\tO\tPublish\tO\nBuild\tO\tBuild\tO\nArtifacts\tO\tArtifacts\tO\ntask\tO\ttask\tO\n\t\nPath\tO\tPath\tO\nto\tO\tto\tO\nPublish\tO\tPublish\tO\n:\tO\t:\tO\nset\tO\tset\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwith\tO\twith\tO\nTarget\tO\tTarget\tO\nfolder\tO\tfolder\tO\nin\tO\tin\tO\nCopy\tO\tCopy\tO\nfiles\tO\tfiles\tO\ntask\tO\ttask\tO\n.\tO\t.\tO\n\t\nSuch\tO\tSuch\tO\nas\tO\tas\tO\n$(build.artifactstagingdirectory)\tB-Code_Block\t$(build.artifactstagingdirectory)\tB-Code_Block\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nCopy\tO\tCopy\tO\nfiles\tO\tfiles\tO\ntask\tO\ttask\tO\nwill\tO\twill\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nfolder\tO\tfolder\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmachine\tO\tmachine\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nprivate\tO\tprivate\tO\nagent\tO\tagent\tO\nis\tO\tis\tO\nlocated\tO\tlocated\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30761883\tO\t30761883\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30761883/\tO\thttps://stackoverflow.com/questions/30761883/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nURL\tO\tURL\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3696\tI-Code_Block\tQ_3696\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nhash\tO\thash\tO\nwill\tO\twill\tO\nautomatically\tO\tautomatically\tO\nopen\tO\topen\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ntab\tB-User_Interface_Element\ttab\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\na\tO\ta\tO\n_GET\tB-Variable_Name\t_GET\tO\nvariable\tO\tvariable\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3697\tI-Code_Block\tQ_3697\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3698\tI-Code_Block\tQ_3698\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\n...\tO\t...\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nan\tO\tan\tO\nundefined\tB-Error_Name\tundefined\tO\nindex\tI-Error_Name\tindex\tO\nerror\tI-Error_Name\terror\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nget\tO\tget\tO\nPHP\tB-Language\tPHP\tO\nto\tO\tto\tO\nrecognize\tO\trecognize\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30761883\tO\t30761883\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30761883/\tO\thttps://stackoverflow.com/questions/30761883/\tO\n\t\n\t\nAnything\tO\tAnything\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nhash\tO\thash\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nRegardless\tO\tRegardless\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nprobably\tO\tprobably\tO\nformat\tO\tformat\tO\nyour\tO\tyour\tO\nurl\tO\turl\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nGET\tO\tGET\tO\nparameters\tO\tparameters\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nhttp://www.example.com/page.php#tabname?color=red\tO\thttp://www.example.com/page.php#tabname?color=red\tO\n\t\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n\t\nhttp://www.example.com/page.php?color=red#tabname\tO\thttp://www.example.com/page.php?color=red#tabname\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30761883\tO\t30761883\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30761883/\tO\thttps://stackoverflow.com/questions/30761883/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nstring\tB-Data_Type\tstring\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nhash\tO\thash\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4376\tI-Code_Block\tA_4376\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45167112\tO\t45167112\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45167112/\tO\thttps://stackoverflow.com/questions/45167112/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndll\tB-File_Type\tdll\tO\nand\tO\tand\tO\nheader\tB-File_Type\theader\tO\nfiles\tO\tfiles\tO\nbut\tO\tbut\tO\nnothing\tO\tnothing\tO\nelse\tO\telse\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\n's\tO\t's\tO\nfunctionality\tO\tfunctionality\tO\nin\tO\tin\tO\na\tO\ta\tO\nC#\tB-Language\tC#\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\nDllImport\tB-Library_Function\tDllImport\tO\n\"\tO\t\"\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nfunctions\tO\tfunctions\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nreturn\tO\treturn\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nwhose\tO\twhose\tO\nclass\tO\tclass\tO\nalso\tO\talso\tO\nis\tO\tis\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nwrapper\tO\twrapper\tO\nexamples\tO\texamples\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nexamples\tO\texamples\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nwritten\tO\twritten\tO\nby\tO\tby\tO\nknowing\tO\tknowing\tO\nthe\tO\tthe\tO\nbody\tO\tbody\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nheaders\tB-File_Type\theaders\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nsource\tO\tsource\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ndll\tB-File_Type\tdll\tO\nand\tO\tand\tO\nheader\tB-File_Type\theader\tO\nfiles\tO\tfiles\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nthankful\tO\tthankful\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5780785\tO\t5780785\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5780785/\tO\thttps://stackoverflow.com/questions/5780785/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nprinting\tO\tprinting\tO\nexcel\tB-File_Type\texcel\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_411\tI-Code_Block\tQ_411\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncontent\tO\tcontent\tO\nis\tO\tis\tO\nplain\tO\tplain\tO\nhtml\tB-Language\thtml\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndownload\tO\tdownload\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\ninitial\tO\tinitial\tO\nconfirmation\tB-User_Interface_Element\tconfirmation\tO\nbox\tI-User_Interface_Element\tbox\tO\nwritten\tO\twritten\tO\n\t\nThe\tO\tThe\tB-Code_Block\nfile\tO\tfile\tI-Code_Block\nyou\tO\tyou\tI-Code_Block\nare\tO\tare\tI-Code_Block\ntrying\tO\ttrying\tI-Code_Block\nto\tO\tto\tI-Code_Block\nopen\tO\topen\tI-Code_Block\n'\tB-File_Name\t'\tI-Code_Block\nFile_name.xls\tI-File_Name\tFile_name.xls\tI-Code_Block\n'\tO\t'\tI-Code_Block\n,\tO\t,\tI-Code_Block\nis\tO\tis\tI-Code_Block\nin\tO\tin\tI-Code_Block\na\tO\ta\tI-Code_Block\ndifferent\tO\tdifferent\tI-Code_Block\nformat\tO\tformat\tI-Code_Block\nthan\tO\tthan\tI-Code_Block\nspecified\tO\tspecified\tI-Code_Block\nby\tO\tby\tI-Code_Block\nthe\tO\tthe\tI-Code_Block\nfile\tO\tfile\tI-Code_Block\nextension\tO\textension\tI-Code_Block\n.\tO\t.\tI-Code_Block\n\t\nVerified\tO\tVerified\tB-Code_Block\nthat\tO\tthat\tI-Code_Block\nthe\tO\tthe\tI-Code_Block\nfile\tO\tfile\tI-Code_Block\nis\tO\tis\tI-Code_Block\nnot\tO\tnot\tI-Code_Block\ncorrupted\tO\tcorrupted\tI-Code_Block\nand\tO\tand\tI-Code_Block\nis\tO\tis\tI-Code_Block\nfrom\tO\tfrom\tI-Code_Block\na\tO\ta\tI-Code_Block\ntrusted\tO\ttrusted\tI-Code_Block\nsource\tO\tsource\tI-Code_Block\nbefore\tO\tbefore\tI-Code_Block\nopening\tO\topening\tI-Code_Block\nthe\tO\tthe\tI-Code_Block\nfile.\tO\tfile.\tI-Code_Block\n.\tO\t.\tI-Code_Block\nDo\tO\tDo\tI-Code_Block\nyou\tO\tyou\tI-Code_Block\nwant\tO\twant\tI-Code_Block\nto\tO\tto\tI-Code_Block\nopen\tO\topen\tI-Code_Block\nthe\tO\tthe\tI-Code_Block\nfile\tO\tfile\tI-Code_Block\nnow\tO\tnow\tI-Code_Block\n?\tO\t?\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n'\tO\t'\tO\nyes\tO\tyes\tO\n'\tO\t'\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nBit\tO\tBit\tO\nstrange\tO\tstrange\tO\n,\tO\t,\tO\nany\tO\tany\tO\ninput\tO\tinput\tO\nhere\tO\there\tO\nfriends\tO\tfriends\tO\nplease\tO\tplease\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5780785\tO\t5780785\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5780785/\tO\thttps://stackoverflow.com/questions/5780785/\tO\n\t\n\t\nI\tO\tI\tO\nalways\tO\talways\tO\nuse\tO\tuse\tO\ncontent\tO\tcontent\tO\ntype\tB-Code_Block\ttype\tO\n=\tI-Code_Block\t=\tO\n\"\tI-Code_Block\t\"\tO\napplication/ms\tI-Code_Block\tapplication/ms\tO\n-excel\tI-Code_Block\t-excel\tO\n\"\tI-Code_Block\t\"\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5780785\tO\t5780785\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5780785/\tO\thttps://stackoverflow.com/questions/5780785/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\none\tO\tone\tO\nsuddenly\tO\tsuddenly\tO\ngot\tO\tgot\tO\nsolved\tO\tsolved\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncopied\tO\tcopied\tO\nand\tO\tand\tO\npasted\tO\tpasted\tO\ncodes\tO\tcodes\tO\nof\tO\tof\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\npage\tB-User_Interface_Element\tpage\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nexcel\tB-File_Type\texcel\tO\nthing\tO\tthing\tO\nwas\tO\twas\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\nmanually\tO\tmanually\tO\nto\tO\tto\tO\nadapt\tO\tadapt\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n2nd\tO\t2nd\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nsome\tO\tsome\tO\nhit\tO\thit\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\n,\tO\t,\tO\nit\tO\tit\tO\nsuddenly\tO\tsuddenly\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nanswers\tO\tanswers\tO\nanyway\tO\tanyway\tO\n.\tO\t.\tO\n\t\nPS\tO\tPS\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\nsolved\tO\tsolved\tO\n,\tO\t,\tO\nI\tO\tI\tO\nmean\tO\tmean\tO\nthat\tO\tthat\tO\nexcel\tB-Application\texcel\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncrushing\tO\tcrushing\tO\nanymore\tO\tanymore\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\nI\tO\tI\tO\nam\tO\tam\tO\nstill\tO\tstill\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nconfirm\tB-User_Interface_Element\tconfirm\tO\nbox\tI-User_Interface_Element\tbox\tO\nabout\tO\tabout\tO\nincorrect\tO\tincorrect\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41722253\tO\t41722253\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41722253/\tO\thttps://stackoverflow.com/questions/41722253/\tO\n\t\n\t\nScreen\tO\tScreen\tO\nShot\tO\tShot\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndeveloping\tO\tdeveloping\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nusing\tO\tusing\tO\nXamarin\tB-Library\tXamarin\tO\nForms\tI-Library\tForms\tO\nin\tO\tin\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2013\tB-Version\t2013\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nHeader\tB-User_Interface_Element\tHeader\tO\nBackground\tI-User_Interface_Element\tBackground\tO\ncolor\tI-User_Interface_Element\tcolor\tO\nfor\tO\tfor\tO\nAndroid\tB-Operating_System\tAndroid\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfailing\tO\tfailing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfor\tO\tfor\tO\nWindows\tB-Operating_System\tWindows\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncomes\tO\tcomes\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nDefault\tO\tDefault\tO\nDark\tO\tDark\tO\ntheme\tO\ttheme\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nAssist\tO\tAssist\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nYou\tO\tYou\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41722253\tO\t41722253\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41722253/\tO\thttps://stackoverflow.com/questions/41722253/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5981\tI-Code_Block\tA_5981\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41722253\tO\t41722253\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41722253/\tO\thttps://stackoverflow.com/questions/41722253/\tO\n\t\n\t\nYour\tO\tYour\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nclear\tO\tclear\tO\nto\tO\tto\tO\nme\tO\tme\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\n\"\tO\t\"\tO\nHeader\tB-User_Interface_Element\tHeader\tO\nBackground\tI-User_Interface_Element\tBackground\tO\ncolor\tI-User_Interface_Element\tcolor\tO\n\"\tO\t\"\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nthe\tO\tthe\tO\nbackground\tB-User_Interface_Element\tbackground\tO\ncolor\tI-User_Interface_Element\tcolor\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntitle\tO\ttitle\tO\nof\tO\tof\tO\na\tO\ta\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nXamarin.Forms\tB-Library\tXamarin.Forms\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nAndroid\tB-Operating_System\tAndroid\tO\n,\tO\t,\tO\niOS\tB-Operating_System\tiOS\tO\nand\tO\tand\tO\nUWP\tB-Library\tUWP\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5980\tI-Code_Block\tA_5980\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\ncolor\tO\tcolor\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbackground\tB-User_Interface_Element\tbackground\tO\ncolor\tI-User_Interface_Element\tcolor\tO\non\tO\ton\tO\nevery\tO\tevery\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44963031\tO\t44963031\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44963031/\tO\thttps://stackoverflow.com/questions/44963031/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5856\tI-Code_Block\tQ_5856\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ndebug\tO\tdebug\tO\nit\tO\tit\tO\n(\tO\t(\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nthat\tO\tthat\tO\nappears\tO\tappears\tO\nin\tO\tin\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ngoes\tO\tgoes\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nof\tO\tof\tO\n'\tO\t'\tO\nreturn\tB-Code_Block\treturn\tO\nsize\tI-Code_Block\tsize\tO\n'\tO\t'\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\n(\tO\t(\tO\nside\tO\tside\tO\nquestion\tO\tquestion\tO\n-\tO\t-\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nput\tO\tput\tO\nline\tO\tline\tO\nnumbers\tO\tnumbers\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncode.\tO\tcode.\tO\n.\tO\t.\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nkeeps\tO\tkeeps\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nline\tO\tline\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\n-1\tB-Value\t-1\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncome\tO\tcome\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nreturn\tB-Code_Block\treturn\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ngo\tO\tgo\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nfirst\tO\tfirst\tO\ntried\tO\ttried\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nput\tO\tput\tO\nany\tO\tany\tO\nreturn\tB-Code_Block\treturn\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nreach\tO\treach\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\nsays\tO\tsays\tO\n\"\tO\t\"\tO\ncontrol\tO\tcontrol\tO\nreaches\tO\treaches\tO\nend\tO\tend\tO\nof\tO\tof\tO\nnon-void\tO\tnon-void\tO\nfunction\tO\tfunction\tO\n\"\tO\t\"\tO\nso\tO\tso\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nreturn\tB-Code_Block\treturn\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nobviously\tO\tobviously\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\ndo.\tO\tdo.\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44963031\tO\t44963031\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44963031/\tO\thttps://stackoverflow.com/questions/44963031/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrecursive\tO\trecursive\tO\ncall\tO\tcall\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6522\tI-Code_Block\tA_6522\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44963031\tO\t44963031\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44963031/\tO\thttps://stackoverflow.com/questions/44963031/\tO\n\t\n\t\nReplaced\tO\tReplaced\tO\nrecursive\tO\trecursive\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6521\tI-Code_Block\tA_6521\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\njust\tO\tjust\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nignoring\tO\tignoring\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\ngoing\tO\tgoing\tO\ninto\tO\tinto\tO\nreturn\tO\treturn\tB-Code_Block\n-1\tB-Value\t-1\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9705709\tO\t9705709\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9705709/\tO\thttps://stackoverflow.com/questions/9705709/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ngoto\tO\tgoto\tO\nblgz.co\tB-Website\tblgz.co\tO\non\tO\ton\tO\nfirefox\tB-Application\tfirefox\tO\non\tO\ton\tO\na\tO\ta\tO\nmac\tB-Device\tmac\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nside\tO\tside\tO\nbar\tB-User_Interface_Element\tbar\tO\nis\tO\tis\tO\nsitting\tO\tsitting\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nfirefox\tB-Application\tfirefox\tO\non\tO\ton\tO\nwindows\tB-Operating_System\twindows\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nmac\tB-Device\tmac\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\npinpoint\tO\tpinpoint\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\n=(\tO\t=(\tO\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nplease\tO\tplease\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9705709\tO\t9705709\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9705709/\tO\thttps://stackoverflow.com/questions/9705709/\tO\n\t\n\t\nreformat\tO\treformat\tO\nthe\tO\tthe\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nhierarchy\tO\thierarchy\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1222\tI-Code_Block\tA_1222\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nfloat\tO\tfloat\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nleft\tO\tleft\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\n#content\tB-Code_Block\t#content\tO\n-inner\tI-Code_Block\t-inner\tO\nis\tO\tis\tO\nnow\tO\tnow\tO\ninside\tO\tinside\tO\n#content\tB-Code_Block\t#content\tO\nand\tO\tand\tO\nas\tO\tas\tO\nI\tO\tI\tO\nunderstood\tO\tunderstood\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsidebar-second\tB-Variable_Name\tsidebar-second\tO\nshould\tO\tshould\tO\nfloat\tO\tfloat\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n#content\tB-Code_Block\t#content\tO\n-inner\tI-Code_Block\t-inner\tO\n.\tO\t.\tO\n\t\nhowever\tO\thowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nof\tO\tof\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nme\tO\tme\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\ncomplicated\tO\tcomplicated\tO\nfor\tO\tfor\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nlayout.\tO\tlayout.\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9160048\tO\t9160048\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9160048/\tO\thttps://stackoverflow.com/questions/9160048/\tO\n\t\n\t\nUsing\tO\tUsing\tO\ncore\tO\tcore\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nfetched\tO\tfetched\tO\nproperly\tO\tproperly\tO\nand\tO\tand\tO\nshown\tO\tshown\tO\nproperly\tO\tproperly\tO\n,\tO\t,\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nfilter\tO\tfilter\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n,\tO\t,\tO\nwhatever\tO\twhatever\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsearch\tB-User_Interface_Element\tsearch\tO\nbar\tI-User_Interface_Element\tbar\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntable\tB-User_Interface_Element\ttable\tO\nview\tO\tview\tO\nwith\tO\twith\tO\nsame\tO\tsame\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfiltered\tO\tfiltered\tO\nresults.\tO\tresults.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_770\tI-Code_Block\tQ_770\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFetching\tO\tFetching\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\ncore\tO\tcore\tO\ndata\tO\tdata\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_771\tI-Code_Block\tQ_771\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSearch\tB-User_Interface_Element\tSearch\tO\nbar\tI-User_Interface_Element\tbar\tO\nimplementation\tO\timplementation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_772\tI-Code_Block\tQ_772\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nresolve\tO\tresolve\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9160048\tO\t9160048\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9160048/\tO\thttps://stackoverflow.com/questions/9160048/\tO\n\t\n\t\nJust\tO\tJust\tO\nmake\tO\tmake\tO\ncode\tO\tcode\tO\nclear\tO\tclear\tO\nbefore\tO\tbefore\tO\nand\tO\tand\tO\ndefine\tO\tdefine\tO\nevery\tO\tevery\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\njust\tO\tjust\tO\nsetting\tO\tsetting\tO\npredicate\tO\tpredicate\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nfiring\tO\tfiring\tO\nquery\tO\tquery\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\njust\tO\tjust\tO\nmake\tO\tmake\tO\nseparate\tO\tseparate\tO\nmethod\tO\tmethod\tO\nand\tO\tand\tO\njust\tO\tjust\tO\npass\tO\tpass\tO\nsearch\tB-Variable_Name\tsearch\tO\ntext\tI-Variable_Name\ttext\tO\nas\tO\tas\tO\nparameter\tO\tparameter\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\nfor\tO\tfor\tO\npredicate\tO\tpredicate\tO\nand\tO\tand\tO\nfire\tO\tfire\tO\nfetch\tO\tfetch\tO\nquery\tO\tquery\tO\nthen\tO\tthen\tO\nreload\tO\treload\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6681368\tO\t6681368\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6681368/\tO\thttps://stackoverflow.com/questions/6681368/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\nform\tB-User_Interface_Element\tform\tO\nthat\tO\tthat\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nenter\tO\tenter\tO\ndatabase\tO\tdatabase\tO\nconnection\tO\tconnection\tO\nparameters\tO\tparameters\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nare\tO\tare\tO\ntyped\tO\ttyped\tO\n\t\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\ntest\tO\ttest\tO\n(\tO\t(\tO\nbtnTester\tB-Value\tbtnTester\tO\n)\tO\t)\tO\nif\tO\tif\tO\nconnection\tO\tconnection\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nestablished\tO\testablished\tO\nwith\tO\twith\tO\nits\tO\tits\tO\nparameters\tO\tparameters\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nall\tO\tall\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nis\tO\tis\tO\nproduced\tO\tproduced\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nof\tO\tof\tO\na\tO\ta\tO\nfailed\tO\tfailed\tO\nconnection\tO\tconnection\tO\nattempt\tO\tattempt\tO\nfrom\tO\tfrom\tO\nbacking\tB-Library\tbacking\tO\nbean\tI-Library\tbean\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_499\tI-Code_Block\tQ_499\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nappear\tO\tappear\tO\nin\tO\tin\tO\na\tO\ta\tO\np:message\tB-HTML_XML_Tag\tp:message\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\nhappen\tO\thappen\tO\n.\tO\t.\tO\n\t\nNo\tO\tNo\tO\nmessage\tO\tmessage\tO\n(\tO\t(\tO\nconnection\tO\tconnection\tO\nsuccessful\tO\tsuccessful\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n)\tO\t)\tO\nis\tO\tis\tO\ndisplayed\tO\tdisplayed\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n:\\\tO\t:\\\tO\n\t\nEven\tO\tEven\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nglobal\tB-Data_Type\tglobal\tO\nattribute\tO\tattribute\tO\nset\tO\tset\tO\nto\tO\tto\tO\nfalse\tB-Value\tfalse\tO\nor\tO\tor\tO\ntrue\tB-Value\ttrue\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_500\tI-Code_Block\tQ_500\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6681368\tO\t6681368\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6681368/\tO\thttps://stackoverflow.com/questions/6681368/\tO\n\t\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ngrowl\tB-Library\tgrowl\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nfor\tO\tfor\tO\nsolving\tO\tsolving\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6681368\tO\t6681368\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6681368/\tO\thttps://stackoverflow.com/questions/6681368/\tO\n\t\n\t\nHere\tO\tHere\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\n\"\tO\t\"\tO\nattribute\tO\tattribute\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\np:message\tB-HTML_XML_Tag\tp:message\tO\nuse\tO\tuse\tO\np:messages\tB-HTML_XML_Tag\tp:messages\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5961\tI-Code_Block\tQ_5961\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21322221\tO\t21322221\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21322221/\tO\thttps://stackoverflow.com/questions/21322221/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ninferred\tO\tinferred\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nsearches\tO\tsearches\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nURI\tO\tURI\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nGoogle\tB-Application\tGoogle\tO\nCalendar\tI-Application\tCalendar\tO\nfeed\tO\tfeed\tO\nthat\tO\tthat\tO\nlimits\tO\tlimits\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nrange\tO\trange\tO\nshould\tO\tshould\tO\ninclude\tO\tinclude\tO\ntimeMin\tB-Library_Variable\ttimeMin\tO\nand\tO\tand\tO\ntimeMax\tB-Library_Variable\ttimeMax\tO\nand\tO\tand\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\ninclude\tO\tinclude\tO\nsingleEvents\tB-Library_Variable\tsingleEvents\tO\nand\tO\tand\tO\norderBy\tB-Library_Variable\torderBy\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nURI\tO\tURI\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n've\tO\t've\tO\nconstructed\tO\tconstructed\tO\n:\tO\t:\tO\n\t\nhttps://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\tO\thttps://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\tO\n\t\nRegardless\tO\tRegardless\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nquery\tO\tquery\tO\nparameters\tO\tparameters\tO\nI\tO\tI\tO\nput\tO\tput\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nprojection\tO\tprojection\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nget\tO\tget\tO\nback\tO\tback\tO\nall\tO\tall\tO\nevents\tO\tevents\tO\ndating\tO\tdating\tO\nfrom\tO\tfrom\tO\n8/2008\tO\t8/2008\tO\nthrough\tO\tthrough\tO\nwhatever\tO\twhatever\tO\nfuture\tO\tfuture\tO\ndates\tO\tdates\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncalendar\tB-Application\tcalendar\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nreally\tO\treally\tO\nam\tO\tam\tO\n\"\tO\t\"\tO\nconstructing\tO\tconstructing\tO\n\"\tO\t\"\tO\nthis\tO\tthis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nvery\tO\tvery\tO\nlittle\tO\tlittle\tO\nknowledge\tO\tknowledge\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nset\tO\tset\tO\nme\tO\tme\tO\nstraight\tO\tstraight\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21322221\tO\t21322221\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21322221/\tO\thttps://stackoverflow.com/questions/21322221/\tO\n\t\n\t\nMastoll\tO\tMastoll\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\ncalendar\tB-Application\tcalendar\tO\nv3\tB-Version\tv3\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\ntry\tO\ttry\tO\n:\tO\t:\tO\n\t\nhttps://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&\tO\thttps://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&\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\nstart-min\tB-Library_Variable\tstart-min\tO\nand\tO\tand\tO\nstart-max\tB-Library_Variable\tstart-max\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ntimeMin\tB-Library_Variable\ttimeMin\tO\nand\tO\tand\tO\ntimeMax\tB-Library_Variable\ttimeMax\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nparameter\tO\tparameter\tO\nfor\tO\tfor\tO\ncalendar\tB-Application\tcalendar\tO\nv2\tB-Version\tv2\tO\n,\tI-Version\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwhy\tO\twhy\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nv2\tB-Version\tv2\tO\nparameter\tO\tparameter\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\npublic\tO\tpublic\tO\ncalendar\tB-Application\tcalendar\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfutureevents\tB-Code_Block\tfutureevents\tO\n=\tI-Code_Block\t=\tO\ntrue\tI-Code_Block\ttrue\tO\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\ninformation\tO\tinformation\tO\nfor\tO\tfor\tO\nv2\tB-Version\tv2\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nhttps://developers.google.com/google-apps/calendar/v2/reference?hl=de&csw=1#Parameters\tO\thttps://developers.google.com/google-apps/calendar/v2/reference?hl=de&csw=1#Parameters\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21322221\tO\t21322221\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21322221/\tO\thttps://stackoverflow.com/questions/21322221/\tO\n\t\n\t\nIt\tO\tIt\tO\nalso\tO\talso\tO\ntook\tO\ttook\tO\nme\tO\tme\tO\nquite\tO\tquite\tO\nsome\tO\tsome\tO\ntrials\tO\ttrials\tO\nand\tO\tand\tO\nerrors\tO\terrors\tO\nto\tO\tto\tO\nrealize\tO\trealize\tO\nthat\tO\tthat\tO\noffset\tB-Library_Variable\toffset\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nmandatory\tO\tmandatory\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\noptional\tO\toptional\tO\n,\tO\t,\tO\nas\tO\tas\tO\ndocumented\tO\tdocumented\tO\nin\tO\tin\tO\n\t\nhttps://developers.google.com/google-apps/calendar/concepts\tO\thttps://developers.google.com/google-apps/calendar/concepts\tO\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n\"\tB-Value\t\"\tO\nZ\tI-Value\tZ\tO\n\"\tI-Value\t\"\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nURL\tO\tURL\tO\n:\tO\t:\tO\n\t\nhttps://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\tO\thttps://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\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14929583\tO\t14929583\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14929583/\tO\thttps://stackoverflow.com/questions/14929583/\tO\n\t\n\t\nGiven\tO\tGiven\tO\nan\tO\tan\tO\nXML\tB-File_Type\tXML\tO\nfile\tO\tfile\tO\nof\tO\tof\tO\nofferings\tO\tofferings\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthen\tO\tthen\tO\nloaded\tO\tloaded\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nclass\tO\tclass\tO\ncalled\tO\tcalled\tO\nOfferings\tB-Class_Name\tOfferings\tO\nvia\tO\tvia\tO\nJAXB\tB-Library\tJAXB\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nclass\tO\tclass\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nName\tB-Variable_Name\tName\tO\n,\tO\t,\tO\nPrice\tB-Variable_Name\tPrice\tO\nsub-Class\tO\tsub-Class\tO\n,\tO\t,\tO\nModifiers\tB-Class_Name\tModifiers\tO\n,\tO\t,\tO\nOrdering\tO\tOrdering\tO\nRules\tO\tRules\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\norder\tO\torder\tO\nand\tO\tand\tO\nwithin\tO\twithin\tO\nthat\tO\tthat\tO\norder\tO\torder\tO\n\t\nOrder\tB-Class_Name\tOrder\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1438\tI-Code_Block\tQ_1438\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOrder\tB-Class_Name\tOrder\tO\nItem\tI-Class_Name\tItem\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1439\tI-Code_Block\tQ_1439\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOffering\tB-Class_Name\tOffering\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1440\tI-Code_Block\tQ_1440\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nOffering\tB-Class_Name\tOffering\tO\nand\tO\tand\tO\nModifiers\tB-Class_Name\tModifiers\tO\nare\tO\tare\tO\nclasses\tO\tclasses\tO\nwith\tO\twith\tO\nJAXB\tB-Library\tJAXB\tO\nalready\tO\talready\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nwant\tO\twant\tO\nto\tO\tto\tO\npush\tO\tpush\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nXML\tB-Language\tXML\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nanotations\tO\tanotations\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nelements\tO\telements\tO\nare\tO\tare\tO\nsent\tO\tsent\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\noffering\tB-Class_Name\toffering\tO\n->\tO\t->\tO\nmodifiers\tB-Class_Name\tmodifiers\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14929583\tO\t14929583\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14929583/\tO\thttps://stackoverflow.com/questions/14929583/\tO\n\t\n\t\nUse\tO\tUse\tO\n@XmlTransient\tB-Library_Class\t@XmlTransient\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n@XmlElement\tB-Library_Class\t@XmlElement\tB-Code_Block\ntag\tO\ttag\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5444478\tO\t5444478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5444478/\tO\thttps://stackoverflow.com/questions/5444478/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndownloaded\tO\tdownloaded\tO\nthis\tO\tthis\tO\ntwitter\tB-Website\ttwitter\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n\t\nhttp://www.silverlightshow.net/items/Silvester-A-Silverlight-Twitter-Widget.aspx\tO\thttp://www.silverlightshow.net/items/Silvester-A-Silverlight-Twitter-Widget.aspx\tO\n\t\nAfter\tO\tAfter\tO\nopening\tO\topening\tO\nin\tO\tin\tO\nVS\tB-Application\tVS\tO\n2010\tB-Version\t2010\tO\nand\tO\tand\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nproject\tO\tproject\tO\nas\tO\tas\tO\nstartup\tO\tstartup\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nin\tO\tin\tO\nIE\tB-Application\tIE\tO\n9\tB-Version\t9\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nIE\tB-Application\tIE\tO\n9\tB-Version\t9\tO\nasks\tO\tasks\tO\nme\tO\tme\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nsilverlight\tB-Library\tsilverlight\tO\nI\tO\tI\tO\nsaid\tO\tsaid\tO\nOK\tO\tOK\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nit\tO\tit\tO\nsays\tO\tsays\tO\nit\tO\tit\tO\ncannot\tO\tcannot\tO\ninstall\tO\tinstall\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\nalready\tO\talready\tO\ninstalled\tO\tinstalled\tO\nso\tO\tso\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\nclearly\tO\tclearly\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nthis\tO\tthis\tO\napp\tO\tapp\tO\nwas\tO\twas\tO\ndeveloper\tO\tdeveloper\tO\nmaybe\tO\tmaybe\tO\nin\tO\tin\tO\nolder\tO\tolder\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nsilverlight\tB-Library\tsilverlight\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5444478\tO\t5444478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5444478/\tO\thttps://stackoverflow.com/questions/5444478/\tO\n\t\n\t\nTry\tO\tTry\tO\ndownloading\tO\tdownloading\tO\nthe\tO\tthe\tO\nvery\tO\tvery\tO\nlatest\tO\tlatest\tO\n(\tO\t(\tO\nFeb\tO\tFeb\tO\n201\tO\t201\tO\n1)\tO\t1)\tO\ndeveloper\tO\tdeveloper\tO\nruntime\tO\truntime\tO\nfor\tO\tfor\tO\nSilverlight\tB-Library\tSilverlight\tO\n4\tB-Version\t4\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nfound\tO\tfound\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5444478\tO\t5444478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5444478/\tO\thttps://stackoverflow.com/questions/5444478/\tO\n\t\n\t\nhttp://ie.microsoft.com/testdrive/Browser/ActiveXFiltering/About.html\tO\thttp://ie.microsoft.com/testdrive/Browser/ActiveXFiltering/About.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42742311\tO\t42742311\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42742311/\tO\thttps://stackoverflow.com/questions/42742311/\tO\n\t\n\t\nWe\tO\tWe\tO\n've\tO\t've\tO\nseen\tO\tseen\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nnet\tO\tnet\tO\nat\tO\tat\tO\none\tO\tone\tO\npoint\tO\tpoint\tO\nor\tO\tor\tO\nanother\tO\tanother\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nproven\tO\tproven\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nperfectly\tO\tperfectly\tO\nfine\tO\tfine\tO\n;\tO\t;\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nWindows\tB-Operating_System\tWindows\tO\n10\tB-Version\t10\tO\nmachine\tO\tmachine\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\ncompile\tO\tcompile\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\naudio\tO\taudio\tO\nto\tO\tto\tO\nspeak\tO\tspeak\tO\nof\tO\tof\tO\nonce\tO\tonce\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5449\tI-Code_Block\tQ_5449\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOn\tO\tOn\tO\nWindows\tB-Operating_System\tWindows\tO\n7\tB-Version\t7\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nworking\tO\tworking\tO\nperfectly\tO\tperfectly\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonce\tO\tonce\tO\nI\tO\tI\tO\nmoved\tO\tmoved\tO\nto\tO\tto\tO\nWindows\tB-Operating_System\tWindows\tO\n10\tB-Version\t10\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\naudio\tO\taudio\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nmonths\tO\tmonths\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nany\tO\tany\tO\none\tO\tone\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nidea\tO\tidea\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\n10\tB-Version\t10\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsettings\tO\tsettings\tO\nchange\tO\tchange\tO\nthat\tO\tthat\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmade\tO\tmade\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\naware\tO\taware\tO\nof\tO\tof\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30516702\tO\t30516702\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30516702/\tO\thttps://stackoverflow.com/questions/30516702/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndeploy\tO\tdeploy\tO\nand\tO\tand\tO\ntest\tO\ttest\tO\na\tO\ta\tO\nUniversal\tB-Application\tUniversal\tO\nWindows\tI-Application\tWindows\tO\nApp\tI-Application\tApp\tO\nto\tO\tto\tO\na\tO\ta\tO\nSurface\tB-Device\tSurface\tO\nPro\tI-Device\tPro\tO\n3\tB-Version\t3\tO\ndirectly\tO\tdirectly\tO\nfrom\tO\tfrom\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2013\tB-Version\t2013\tO\n(\tO\t(\tO\nUpdate\tB-Version\tUpdate\tO\n4)\tI-Version\t4)\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nlaunch\tO\tlaunch\tO\nthe\tO\tthe\tO\nApp\tO\tApp\tO\n(\tO\t(\tO\nby\tO\tby\tO\nhitting\tO\thitting\tO\nF\tB-Keyboard_IP\tF\tO\n5)\tI-Keyboard_IP\t5)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nfix\tO\tfix\tO\nto\tO\tto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nsolutions\tO\tsolutions\tO\nof\tO\tof\tO\nDEP0700\tB-Error_Name\tDEP0700\tO\nerrors\tO\terrors\tO\nonline\tO\tonline\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnone\tO\tnone\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nspecific\tO\tspecific\tO\nsub-error\tO\tsub-error\tO\nmessage\tO\tmessage\tO\nCannot\tO\tCannot\tO\nmap\tO\tmap\tO\nthe\tO\tthe\tO\nserial\tO\tserial\tO\nwell-known\tO\twell-known\tO\ndevice\tO\tdevice\tO\nname\tO\tname\tO\nto\tO\tto\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\ninterface\tO\tinterface\tO\nGUID\tO\tGUID\tO\n(\tO\t(\tO\nblah\tO\tblah\tO\nblah\tO\tblah\tO\nblah\tO\tblah\tO\n)\tO\t)\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nseeing\tO\tseeing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3663\tI-Code_Block\tQ_3663\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30516702\tO\t30516702\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30516702/\tO\thttps://stackoverflow.com/questions/30516702/\tO\n\t\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\ndeclared\tO\tdeclared\tO\nany\tO\tany\tO\nserial\tO\tserial\tO\ncommunication\tO\tcommunication\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nAppxManifest\tB-File_Name\tAppxManifest\tO\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nother\tO\tother\tO\napps\tO\tapps\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nissue\tO\tissue\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nbecause\tO\tbecause\tO\nopening/editing\tO\topening/editing\tO\nApxManifest\tB-File_Name\tApxManifest\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndesigner\tB-Application\tdesigner\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nand\tO\tand\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\nmanifest\tB-File_Name\tmanifest\tO\nthrough\tO\tthrough\tO\nonly\tO\tonly\tO\nthrough\tO\tthrough\tO\nXML\tB-Application\tXML\tO\nEditor\tI-Application\tEditor\tO\n,\tO\t,\tO\nif\tO\tif\tO\nrequired\tO\trequired\tO\n&\tO\t&\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nopen\tO\topen\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndesigner\tB-Application\tdesigner\tO\n.\tO\t.\tO\n\t\nReference\tO\tReference\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\n\t\nhttp://ms-iot.github.io/content/en-US/win10/samples/SerialSample.htm\tO\thttp://ms-iot.github.io/content/en-US/win10/samples/SerialSample.htm\tO\n\t\n\"\tO\t\"\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2015\tB-Version\t2015\tO\nhas\tO\thas\tO\na\tO\ta\tO\nknown\tO\tknown\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nManifest\tB-Application\tManifest\tO\nDesigner\tI-Application\tDesigner\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nvisual\tB-Application\tvisual\tO\neditor\tI-Application\teditor\tO\nfor\tO\tfor\tO\nappxmanifest\tB-File_Name\tappxmanifest\tO\nfiles\tO\tfiles\tO\n)\tO\t)\tO\nthat\tO\tthat\tO\naffects\tO\taffects\tO\nthe\tO\tthe\tO\nserialcommunication\tO\tserialcommunication\tO\ncapability\tO\tcapability\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\n\t\nyour\tO\tyour\tO\nappxmanifest\tB-File_Name\tappxmanifest\tO\nadds\tO\tadds\tO\nthe\tO\tthe\tO\nserialcommunication\tO\tserialcommunication\tO\ncapability\tO\tcapability\tO\n,\tO\t,\tO\nmodifying\tO\tmodifying\tO\nyour\tO\tyour\tO\nappxmanifest\tB-File_Name\tappxmanifest\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndesigner\tB-Application\tdesigner\tO\nwill\tO\twill\tO\ncorrupt\tO\tcorrupt\tO\nyour\tO\tyour\tO\nappxmanifest\tB-File_Name\tappxmanifest\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nDevice\tO\tDevice\tO\nxml\tB-Language\txml\tO\nchild\tO\tchild\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nlost\tO\tlost\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nworkaround\tO\tworkaround\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nby\tO\tby\tO\nhand\tO\thand\tO\neditting\tO\teditting\tO\nthe\tO\tthe\tO\nappxmanifest\tB-File_Name\tappxmanifest\tO\nby\tO\tby\tO\nright-clicking\tO\tright-clicking\tO\nyour\tO\tyour\tO\nappxmanifest\tB-File_Name\tappxmanifest\tO\nand\tO\tand\tO\nselecting\tO\tselecting\tO\nView\tO\tView\tO\nCode\tO\tCode\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12206050\tO\t12206050\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12206050/\tO\thttps://stackoverflow.com/questions/12206050/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nreally\tO\treally\tO\nsimple\tO\tsimple\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nin\tO\tin\tO\nMs\tB-Application\tMs\tO\nAccess\tI-Application\tAccess\tO\n2010\tB-Version\t2010\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\na\tO\ta\tO\ncontrol\tO\tcontrol\tO\non\tO\ton\tO\na\tO\ta\tO\nform\tB-User_Interface_Element\tform\tO\nto\tO\tto\tO\nopen\tO\topen\tO\na\tO\ta\tO\nword\tB-File_Type\tword\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nseveral\tO\tseveral\tO\nthings\tO\tthings\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\n've\tO\t've\tO\ncobbled\tO\tcobbled\tO\ntogether\tO\ttogether\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1154\tI-Code_Block\tQ_1154\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncompiles\tO\tcompiles\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nwithout\tO\twithout\tO\nWord\tB-Application\tWord\tO\nbeing\tO\tbeing\tO\nopen\tO\topen\tO\nI\tO\tI\tO\nget\tO\tget\tO\n\"\tO\t\"\tO\nrun\tB-Error_Name\trun\tO\ntime\tI-Error_Name\ttime\tO\n429\tI-Error_Name\t429\tO\nerror\tI-Error_Name\terror\tO\n:\tO\t:\tO\nactivex\tO\tactivex\tO\ncomponent\tO\tcomponent\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ncreate\tO\tcreate\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nWord\tB-Application\tWord\tO\nopen\tO\topen\tO\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ndocument\tO\tdocument\tO\nopening\tO\topening\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nupdating\tO\tupdating\tO\nreferences\tO\treferences\tO\nto\tO\tto\tO\nADO\tB-Application\tADO\tO\n6.0\tB-Version\t6.0\tO\nto\tO\tto\tO\nno\tO\tno\tO\navail\tO\tavail\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nVBA\tB-Language\tVBA\tO\nso\tO\tso\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12206050\tO\t12206050\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12206050/\tO\thttps://stackoverflow.com/questions/12206050/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ngenerally\tO\tgenerally\tO\nopen\tO\topen\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nregistered\tO\tregistered\tO\napplication\tO\tapplication\tO\nwith\tO\twith\tO\nFollowHyperlink\tB-Library_Function\tFollowHyperlink\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1586\tI-Code_Block\tA_1586\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nCreateObject\tB-Library_Function\tCreateObject\tO\nwhen\tO\twhen\tO\nWord\tB-Application\tWord\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1587\tI-Code_Block\tA_1587\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48626975\tO\t48626975\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48626975/\tO\thttps://stackoverflow.com/questions/48626975/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nvim\tB-Application\tvim\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nhighlighting\tO\thighlighting\tO\nmatches\tO\tmatches\tO\nright\tO\tright\tO\naway\tO\taway\tO\nas\tO\tas\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\nafter\tO\tafter\tO\ntyping\tO\ttyping\tO\n'\tO\t'\tO\n/\tB-Keyboard_IP\t/\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\nhighlight\tO\thighlight\tO\ncolor\tO\tcolor\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncolor\tO\tcolor\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\nmatches\tO\tmatches\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntext\tO\ttext\tO\n:\tO\t:\tO\n\t\nfoo\tB-Value\tfoo\tO\nbar\tI-Value\tbar\tO\nbaz\tI-Value\tbaz\tO\n\t\nAfter\tO\tAfter\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nsequence\tO\tsequence\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\n(\tO\t(\tO\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nsequence\tO\tsequence\tO\nwas\tO\twas\tO\ntyped\tO\ttyped\tO\nin\tO\tin\tO\nnormal\tO\tnormal\tO\nmode\tO\tmode\tO\nand\tO\tand\tO\nno\tO\tno\tO\n<return>\tB-Keyboard_IP\t<return>\tB-Code_Block\nwas\tO\twas\tO\npressed\tO\tpressed\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsequence\tO\tsequence\tO\n)\tO\t)\tO\n\t\nfoo\tB-Value\tfoo\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nhighlighted\tO\thighlighted\tO\nwith\tO\twith\tO\none\tO\tone\tO\ncolor\tO\tcolor\tO\n(\tO\t(\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\n\"\tO\t\"\tO\nfound\tO\tfound\tO\nmatch\tO\tmatch\tO\n\"\tO\t\"\tO\ncolor\tO\tcolor\tO\n)\tO\t)\tO\nand\tO\tand\tO\nbar\tO\tbar\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nhighlighted\tO\thighlighted\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\ncolor\tO\tcolor\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nincremental\tO\tincremental\tO\nsearch\tO\tsearch\tO\ncolor\tO\tcolor\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48626975\tO\t48626975\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48626975/\tO\thttps://stackoverflow.com/questions/48626975/\tO\n\t\n\t\nYou\tO\tYou\tO\ncannot\tO\tcannot\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nbuilt-in\tO\tbuilt-in\tO\nsearch\tO\tsearch\tO\n.\tO\t.\tO\n\t\nVim\tB-Application\tVim\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nhighlight\tO\thighlight\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nmatch\tO\tmatch\tO\nwith\tO\twith\tO\nIncSearch\tB-Code_Block\tIncSearch\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nall\tO\tall\tO\nother\tO\tother\tO\nmatches\tO\tmatches\tO\n(\tO\t(\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\ncurrently\tO\tcurrently\tO\ntyped\tO\ttyped\tO\npattern\tO\tpattern\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nSearch\tB-Code_Block\tSearch\tB-Code_Block\nhighlight\tO\thighlight\tO\ngroup\tO\tgroup\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\n:set\tB-Code_Block\t:set\tB-Code_Block\nhlsearch\tI-Code_Block\thlsearch\tI-Code_Block\nincsearch\tI-Code_Block\tincsearch\tI-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nmatch\tO\tmatch\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nhighlighting\tO\thighlighting\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nwindow\tB-User_Interface_Element\twindow\tO\nonly\tO\tonly\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7126\tI-Code_Block\tA_7126\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nplugin\tB-Application\tplugin\tO\nrecommendations\tO\trecommendations\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\none\tO\tone\tO\nconcurrent\tO\tconcurrent\tO\nmatch\tO\tmatch\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nrobust\tO\trobust\tO\nimplementation\tO\timplementation\tO\nthat\tO\tthat\tO\ncovers\tO\tcovers\tO\nall\tO\tall\tO\nwindows\tB-User_Interface_Element\twindows\tO\nand\tO\tand\tO\ntabs\tB-User_Interface_Element\ttabs\tO\n(\tO\t(\tO\nand\tO\tand\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nextra\tO\textra\tO\nfeatures\tO\tfeatures\tO\n)\tO\t)\tO\n,\tO\t,\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nmy\tO\tmy\tO\nMark\tB-Application\tMark\tO\nplugin\tI-Application\tplugin\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nThe\tO\tThe\tO\nplugin\tB-Application\tplugin\tO\npage\tB-User_Interface_Element\tpage\tO\nhas\tO\thas\tO\nlinks\tO\tlinks\tO\nto\tO\tto\tO\nalternative\tO\talternative\tO\nplugins\tB-Application\tplugins\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30003971\tO\t30003971\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30003971/\tO\thttps://stackoverflow.com/questions/30003971/\tO\n\t\n\t\nThe\tO\tThe\tO\nexplanation\tO\texplanation\tO\n:\tO\t:\tO\n\t\nWorking\tO\tWorking\tO\nwith\tO\twith\tO\ntwo\tO\ttwo\tO\ninput\tO\tinput\tO\nstreams\tO\tstreams\tO\nstreams\tO\tstreams\tO\n,\tO\t,\tO\nboth\tO\tboth\tO\nuse\tO\tuse\tO\ngetline()\tB-Library_Function\tgetline()\tB-Code_Block\nto\tO\tto\tO\ncapture\tO\tcapture\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\ngetline()\tB-Library_Function\tgetline()\tB-Code_Block\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nuserStringPrompt()\tB-Library_Function\tuserStringPrompt()\tB-Code_Block\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3596\tI-Code_Block\tQ_3596\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\nsets\tO\tsets\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nlater\tO\tlater\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nfunctions\tO\tfunctions\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\ncount\tO\tcount\tO\nits\tO\tits\tO\nconsonants\tO\tconsonants\tO\n,\tO\t,\tO\nits\tO\tits\tO\nvowels\tO\tvowels\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\ninput\tO\tinput\tO\nis\tO\tis\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmenu\tO\tmenu\tO\nselection\tO\tselection\tO\n(\tO\t(\tO\nchoose\tO\tchoose\tO\nwhat\tO\twhat\tO\nfunction/method\tO\tfunction/method\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nstring\tB-Data_Type\tstring\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3597\tI-Code_Block\tQ_3597\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ntakes\tO\ttakes\tO\nin\tO\tin\tO\na\tO\ta\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n:\tO\t:\tO\nA\tB-Value\tA\tB-Code_Block\n,\tO\t,\tI-Code_Block\nB\tB-Value\tB\tI-Code_Block\n,\tO\t,\tI-Code_Block\nC\tB-Value\tC\tI-Code_Block\n,\tO\t,\tI-Code_Block\nD\tB-Value\tD\tI-Code_Block\n,\tO\t,\tI-Code_Block\nE\tB-Value\tE\tI-Code_Block\nand\tO\tand\tO\nperforms\tO\tperforms\tO\nan\tO\tan\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\na\tO\ta\tO\nuser\tO\tuser\tO\ninputs\tO\tinputs\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ninput\tO\tinput\tO\nstream\tO\tstream\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nand\tO\tand\tO\nthen\tO\tthen\tO\nenter\tO\tenter\tO\n\"\tO\t\"\tO\nA\tB-Value\tA\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\ninput\tO\tinput\tO\nstream\tO\tstream\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\ncount\tO\tcount\tO\nthe\tO\tthe\tO\nvowels\tO\tvowels\tO\nin\tO\tin\tO\nhello\tB-Value\thello\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncalculation\tO\tcalculation\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n2\tB-Value\t2\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nprogram\tO\tprogram\tO\nfunctions\tO\tfunctions\tO\ncorrectly\tO\tcorrectly\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nin\tO\tin\tO\nuserStringPrompt\tB-Function_Name\tuserStringPrompt\tB-Code_Block\nis\tO\tis\tO\nwithout\tO\twithout\tO\nspaces\tB-Value\tspaces\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nHello\tB-Value\tHello\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nHello\tB-Value\tHello\tO\nWorld\tI-Value\tWorld\tO\nwould\tO\twould\tO\nbreak\tO\tbreak\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\ncause\tO\tcause\tO\na\tO\ta\tO\nforce\tO\tforce\tO\nclose\tO\tclose\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhy\tO\twhy\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nam\tO\tam\tO\ncapturing\tO\tcapturing\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nwith\tO\twith\tO\ngetline(cin,\tB-Library_Function\tgetline(cin,\tO\nstring)\tI-Library_Function\tstring)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nentire\tO\tentire\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3598\tI-Code_Block\tQ_3598\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAny\tO\tAny\tO\nguidance/hints\tO\tguidance/hints\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nabsolutely\tO\tabsolutely\tO\nconfused\tO\tconfused\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30003971\tO\t30003971\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30003971/\tO\thttps://stackoverflow.com/questions/30003971/\tO\n\t\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncrushing\tO\tcrushing\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\njust\tO\tjust\tO\nnormally\tO\tnormally\tO\nexits\tO\texits\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4265\tI-Code_Block\tA_4265\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\nis\tO\tis\tO\nok\tO\tok\tO\n,\tO\t,\tO\nno\tO\tno\tO\nerror\tO\terror\tO\ncode\tO\tcode\tO\nreturned\tO\treturned\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\nit\tO\tit\tO\nasks\tO\tasks\tO\nfor\tO\tfor\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nits\tO\tits\tO\nwork\tO\twork\tO\nand\tO\tand\tO\nbecause\tO\tbecause\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nmore\tO\tmore\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n-\tO\t-\tO\nexits\tO\texits\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nCtrl\tB-Keyboard_IP\tCtrl\tO\n+\tI-Keyboard_IP\t+\tO\nF5\tI-Keyboard_IP\tF5\tO\nin\tO\tin\tO\nVS\tB-Application\tVS\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nadd\tO\tadd\tO\npause\tB-Code_Block\tpause\tB-Code_Block\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nway\tO\tway\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nis\tO\tis\tO\nto\tO\tto\tO\nopen\tO\topen\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nin\tO\tin\tO\nbreak\tB-Code_Block\tbreak\tB-Code_Block\nstatements\tO\tstatements\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nchoose\tO\tchoose\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nyou\tO\tyou\tO\nbreak\tO\tbreak\tO\nyour\tO\tyour\tO\nloop\tO\tloop\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nrun\tO\trun\tO\nwhile\tO\twhile\tO\nuser\tO\tuser\tO\nenters\tO\tenters\tO\ne\tB-Value\te\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRemove\tO\tRemove\tO\nall\tO\tall\tO\nbreaks\tB-Code_Block\tbreaks\tB-Code_Block\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28939781\tO\t28939781\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28939781/\tO\thttps://stackoverflow.com/questions/28939781/\tO\n\t\n\t\nIN\tO\tIN\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nconstraints\tO\tconstraints\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nview\tO\tview\tO\nusing\tO\tusing\tO\nnslayoutconstraints.the\tB-Library_Class\tnslayoutconstraints.the\tO\nview\tO\tview\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\na\tO\ta\tO\ntableview\tB-Variable_Name\ttableview\tO\n,\tO\t,\tO\ncollectionview\tB-Variable_Name\tcollectionview\tO\nand\tO\tand\tO\na\tO\ta\tO\nmain\tB-Variable_Name\tmain\tO\nview.When\tI-Variable_Name\tview.When\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\ncrashes\tO\tcrashes\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3425\tI-Code_Block\tQ_3425\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n***\tO\t***\tO\nFirst\tO\tFirst\tO\nthrow\tO\tthrow\tO\ncall\tO\tcall\tO\nstack\tB-Data_Structure\tstack\tO\n:\tO\t:\tO\n\t\n(\tB-Output_Block\t(\tO\n0x27126d67\tI-Output_Block\t0x27126d67\tO\n0x34c61c77\tI-Output_Block\t0x34c61c77\tO\n0x27047237\tI-Output_Block\t0x27047237\tO\n0x2704701b\tI-Output_Block\t0x2704701b\tO\n0xe1333\tI-Output_Block\t0xe1333\tO\n0xe0bc1\tI-Output_Block\t0xe0bc1\tO\n0x1c6ca7\tI-Output_Block\t0x1c6ca7\tO\n0x1d24e1\tI-Output_Block\t0x1d24e1\tO\n0x9b59cb\tI-Output_Block\t0x9b59cb\tO\n0x9b59b7\tI-Output_Block\t0x9b59b7\tO\n0x9b9411\tI-Output_Block\t0x9b9411\tO\n0x270ecc41\tI-Output_Block\t0x270ecc41\tO\n0x270eb361\tI-Output_Block\t0x270eb361\tO\n0x27038981\tI-Output_Block\t0x27038981\tO\n0x27038793\tI-Output_Block\t0x27038793\tO\n0x2e3e8051\tI-Output_Block\t0x2e3e8051\tO\n0x2a62a981\tI-Output_Block\t0x2a62a981\tO\n0x1d72b5\tI-Output_Block\t0x1d72b5\tO\n0x351fdaaf\tI-Output_Block\t0x351fdaaf\tO\n)\tI-Output_Block\t)\tO\n\t\nlibc++\tB-Output_Block\tlibc++\tO\nabi.dylib\tI-Output_Block\tabi.dylib\tO\n:\tI-Output_Block\t:\tO\nterminating\tI-Output_Block\tterminating\tO\nwith\tI-Output_Block\twith\tO\nuncaught\tI-Output_Block\tuncaught\tO\nexception\tI-Output_Block\texception\tO\nof\tI-Output_Block\tof\tO\ntype\tI-Output_Block\ttype\tO\nNSException\tI-Output_Block\tNSException\tO\n\t\nThe\tO\tThe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntableview\tB-Variable_Name\ttableview\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\nNIL\tB-Value\tNIL\tO\n\"\tO\t\"\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3426\tI-Code_Block\tQ_3426\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ndictionary\tB-Data_Structure\tdictionary\tO\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nheight\tO\theight\tO\nconstraint\tO\tconstraint\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntableview\tB-Variable_Name\ttableview\tO\nas\tO\tas\tO\nbelow\tO\tbelow\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3427\tI-Code_Block\tQ_3427\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nit\tO\tit\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\ntableview\tB-Variable_Name\ttableview\tO\nis\tO\tis\tO\nnil\tO\tnil\tO\n?\tO\t?\tO\nThis\tO\tThis\tO\ntablview\tB-Variable_Name\ttablview\tO\nis\tO\tis\tO\nan\tO\tan\tO\nIBOUTLET\tB-Library_Class\tIBOUTLET\tO\nfrom\tO\tfrom\tO\nstoryboard.When\tB-Application\tstoryboard.When\tO\ni\tO\ti\tO\nallocate\tO\tallocate\tO\nmemory\tO\tmemory\tO\nprogramatically\tO\tprogramatically\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nruns.but\tO\truns.but\tO\nthe\tO\tthe\tO\ntableview\tB-Variable_Name\ttableview\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nloaded\tO\tloaded\tO\nwith\tO\twith\tO\ndata.Can\tO\tdata.Can\tO\nanyone\tO\tanyone\tO\nget\tO\tget\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nreason\tO\treason\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28939781\tO\t28939781\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28939781/\tO\thttps://stackoverflow.com/questions/28939781/\tO\n\t\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\ncalling\tO\tcalling\tO\nthis\tO\tthis\tO\ntoo\tO\ttoo\tO\nearly\tO\tearly\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ntable\tB-Variable_Name\ttable\tO\nview\tI-Variable_Name\tview\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nyet\tO\tyet\tO\nbeen\tO\tbeen\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nexecuting\tO\texecuting\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\n\"\tO\t\"\tO\nviewDidLoad\tB-Library_Function\tviewDidLoad\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\ntry\tO\ttry\tO\nviewWillAppear\tB-Library_Function\tviewWillAppear\tO\n,\tO\t,\tO\nor\tO\tor\tO\nviewDidLayoutSubviews\tB-Library_Function\tviewDidLayoutSubviews\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28939781\tO\t28939781\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28939781/\tO\thttps://stackoverflow.com/questions/28939781/\tO\n\t\n\t\nPlease\tO\tPlease\tO\nensure\tO\tensure\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nsynthesizing\tO\tsynthesizing\tO\ncorrectly\tO\tcorrectly\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4071\tI-Code_Block\tA_4071\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29024420\tO\t29024420\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29024420/\tO\thttps://stackoverflow.com/questions/29024420/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\na\tO\ta\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nwhere\tO\twhere\tO\nif\tO\tif\tO\nis\tO\tis\tO\nredirected\tO\tredirected\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nlogin\tO\tlogin\tO\ncontroller\tO\tcontroller\tO\nthen\tO\tthen\tO\nshows\tO\tshows\tO\nthis\tO\tthis\tO\nmessage\tO\tmessage\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nuser_agent\tB-Library\tuser_agent\tO\nlibrary\tO\tlibrary\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nauto\tO\tauto\tO\nloaded\tO\tloaded\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3444\tI-Code_Block\tQ_3444\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion\tO\tQuestion\tO\n:\tO\t:\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nignore\tO\tignore\tO\nmessage\tO\tmessage\tO\nif\tO\tif\tO\nredirected\tO\tredirected\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nlogout\tO\tlogout\tO\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29024420\tO\t29024420\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29024420/\tO\thttps://stackoverflow.com/questions/29024420/\tO\n\t\n\t\nTry\tO\tTry\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4096\tI-Code_Block\tA_4096\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\noptimized\tO\toptimized\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nif\tO\tif\tO\nstatement\tO\tstatement\tO\nshould\tO\tshould\tO\nevaluate\tO\tevaluate\tO\nto\tO\tto\tO\ntrue\tB-Value\ttrue\tO\non\tO\ton\tO\nall\tO\tall\tO\nreferrers\tO\treferrers\tO\nexcept\tO\texcept\tO\nfrom\tO\tfrom\tO\nones\tO\tones\tO\nthat\tO\tthat\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\nwhatever\tO\twhatever\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nis\tO\tis\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nlogout\tO\tlogout\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nthis\tO\tthis\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40885052\tO\t40885052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40885052/\tO\thttps://stackoverflow.com/questions/40885052/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nBrowser\tB-Application\tBrowser\tO\ncookies\tO\tcookies\tO\nusing\tO\tusing\tO\nJavaScript.I\tB-Language\tJavaScript.I\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\ncross\tO\tcross\tO\ndomain\tO\tdomain\tO\ncookies\tO\tcookies\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5168\tI-Code_Block\tQ_5168\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40885052\tO\t40885052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40885052/\tO\thttps://stackoverflow.com/questions/40885052/\tO\n\t\n\t\nIn\tO\tIn\tO\nmost\tO\tmost\tO\nsituations\tO\tsituations\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nread\tO\tread\tO\ncross\tO\tcross\tO\ndomain\tO\tdomain\tO\ncookies\tO\tcookies\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nsecurity\tO\tsecurity\tO\nreasons\tO\treasons\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\ncookie\tO\tcookie\tO\nhas\tO\thas\tO\na\tO\ta\tO\ndomain\tO\tdomain\tO\nof\tO\tof\tO\ndefinition\tO\tdefinition\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nbrowser\tB-Application\tbrowser\tO\nreads\tO\treads\tO\nthose\tO\tthose\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\nwhich\tO\twhich\tO\ncookies\tO\tcookies\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nwhich\tO\twhich\tO\ndomain\tO\tdomain\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ncontrol\tO\tcontrol\tO\nof\tO\tof\tO\nboth\tO\tboth\tO\ndomains\tO\tdomains\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmodify\tO\tmodify\tO\ncookie\tO\tcookie\tO\nsettings\tO\tsettings\tO\non\tO\ton\tO\ndomain\tO\tdomain\tO\nB\tB-Variable_Name\tB\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nread\tO\tread\tO\nby\tO\tby\tO\ndomain\tO\tdomain\tO\nA\tB-Variable_Name\tA\tO\n,\tO\t,\tO\nor\tO\tor\tO\ncode\tO\tcode\tO\na\tO\ta\tO\ncookie\tO\tcookie\tO\ngetter\tO\tgetter\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nBe\tO\tBe\tO\ncreative\tO\tcreative\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17672380\tO\t17672380\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17672380/\tO\thttps://stackoverflow.com/questions/17672380/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nClean\tB-Application\tClean\tO\nURLs\tI-Application\tURLs\tO\nPlugin\tO\tPlugin\tO\nand\tO\tand\tO\nI\tO\tI\tO\nend\tO\tend\tO\nup\tO\tup\tO\nhaving\tO\thaving\tO\nredundant\tO\tredundant\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\n/out/\tB-File_Name\t/out/\tO\ndirectory\tO\tdirectory\tO\nafter\tO\tafter\tO\ndocpad\tB-Code_Block\tdocpad\tB-Code_Block\ngenerate\tI-Code_Block\tgenerate\tI-Code_Block\n--env\tI-Code_Block\t--env\tI-Code_Block\nstatic\tI-Code_Block\tstatic\tI-Code_Block\n:\tO\t:\tO\none\tO\tone\tO\ncontent.html\tB-File_Name\tcontent.html\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nin\tO\tin\tO\n/content/index.html\tB-File_Name\t/content/index.html\tO\n\t\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\na\tO\ta\tO\nwrong\tO\twrong\tO\nbehaviour\tO\tbehaviour\tO\n?\tO\t?\tO\n\t\nDoes\tO\tDoes\tO\nit\tO\tit\tO\nresult\tO\tresult\tO\nbecause\tO\tbecause\tO\ndocpad\tB-Code_Block\tdocpad\tB-Code_Block\nrun\tI-Code_Block\trun\tI-Code_Block\ncreates\tO\tcreates\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nnon\tO\tnon\tO\nstatic\tO\tstatic\tO\nbehavious\tO\tbehavious\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndocpad\tB-Code_Block\tdocpad\tB-Code_Block\ngenerate\tI-Code_Block\tgenerate\tI-Code_Block\n--env\tI-Code_Block\t--env\tI-Code_Block\nstatic\tI-Code_Block\tstatic\tI-Code_Block\nthe\tO\tthe\tO\nother\tO\tother\tO\nones\tO\tones\tO\nafterwards\tO\tafterwards\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17672380\tO\t17672380\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17672380/\tO\thttps://stackoverflow.com/questions/17672380/\tO\n\t\n\t\nTo\tO\tTo\tO\nanswer\tO\tanswer\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nwhere\tO\twhere\tO\nsomething\tO\tsomething\tO\nwent\tO\twent\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nstill\tO\tstill\tO\nthe\tO\tthe\tO\nredundant\tO\tredundant\tO\nhtml\tB-File_Type\thtml\tO\nfiles\tO\tfiles\tO\nat\tO\tat\tO\nfirst\tO\tfirst\tO\nsight\tO\tsight\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nones\tO\tones\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nredirect\tO\tredirect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nothers\tO\tothers\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nall\tO\tall\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nlooked\tO\tlooked\tO\nbefore\tO\tbefore\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreasons\tO\treasons\tO\nI\tO\tI\tO\ncaught\tO\tcaught\tO\na\tO\ta\tO\nstrange\tO\tstrange\tO\nglitch\tO\tglitch\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18513596\tO\t18513596\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18513596/\tO\thttps://stackoverflow.com/questions/18513596/\tO\n\t\n\t\nBasically\tO\tBasically\tO\nno\tO\tno\tO\nusers\tO\tusers\tO\nwith\tO\twith\tO\niOS\tB-Operating_System\tiOS\tO\n6\tB-Version\t6\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nthe\tO\tthe\tO\napps\tO\tapps\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\niOS\tB-Application\tiOS\tO\n7\tI-Application\t7\tO\nsdk\tI-Application\tsdk\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18513596\tO\t18513596\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18513596/\tO\thttps://stackoverflow.com/questions/18513596/\tO\n\t\n\t\nPut\tO\tPut\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nscreenshot\tO\tscreenshot\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nOnly\tO\tOnly\tO\nsupports\tO\tsupports\tO\nIOS\tB-Operating_System\tIOS\tO\n7\tB-Version\t7\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18513596\tO\t18513596\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18513596/\tO\thttps://stackoverflow.com/questions/18513596/\tO\n\t\n\t\n1.Open\tO\t1.Open\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nin\tO\tin\tO\nXcode\tB-Application\tXcode\tO\n5.0\tB-Version\t5.0\tO\n\t\n2.Select\tO\t2.Select\tO\nproject->Targets->your\tO\tproject->Targets->your\tO\nproject->Search\tO\tproject->Search\tO\nFor\tO\tFor\tO\nIOS\tB-Operating_System\tIOS\tO\nDeployment\tO\tDeployment\tO\nTarget\tO\tTarget\tO\nand\tO\tand\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\n7.0\tB-Version\t7.0\tO\n\"\tO\t\"\tO\n\t\n3.Also\tO\t3.Also\tO\nyour\tO\tyour\tO\nBase\tB-Application\tBase\tO\nSDK\tI-Application\tSDK\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nLatest\tO\tLatest\tO\nios\tB-Operating_System\tios\tO\n(\tO\t(\tO\nIOS\tB-Operating_System\tIOS\tO\n7.0\tB-Version\t7.0\tO\n)\tO\t)\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nCheck\tO\tCheck\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nproject->Targets->your\tO\tproject->Targets->your\tO\nproject->Build\tO\tproject->Build\tO\nSettings->Base\tB-Application\tSettings->Base\tO\nSDK\tI-Application\tSDK\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nThats\tO\tThats\tO\nit.then\tO\tit.then\tO\nnobody\tO\tnobody\tO\nwith\tO\twith\tO\nios\tB-Operating_System\tios\tO\n6\tB-Version\t6\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n:)\tO\t:)\tO\ncool.\tO\tcool.\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15628140\tO\t15628140\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15628140/\tO\thttps://stackoverflow.com/questions/15628140/\tO\n\t\n\t\nMy\tO\tMy\tO\ncase\tO\tcase\tO\nvalue\tO\tvalue\tO\ntext\tO\ttext\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\nequals\tO\tequals\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nrelevant\tO\trelevant\tO\nOSResultStruct\tB-Library_Class\tOSResultStruct\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\n\"\tO\t\"\tO\nThe\tO\tThe\tO\nway\tO\tway\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nimplemented\tO\timplemented\tO\nnow\tO\tnow\tO\nand\tO\tand\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\n\"\tO\t\"\tO\n.So\tO\t.So\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\nosedition\tO\tosedition\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nOSResultStruct.OSEdition\tB-Library_Variable\tOSResultStruct.OSEdition\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nso\tO\tso\tO\nthen\tO\tthen\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nreplace\tO\treplace\tO\nmy\tO\tmy\tO\nswitch\tO\tswitch\tO\nstatement\tO\tstatement\tO\nwith\tO\twith\tO\none\tO\tone\tO\nline\tO\tline\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1536\tI-Code_Block\tQ_1536\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nimplimented\tO\timplimented\tO\nnow\tO\tnow\tO\nand\tO\tand\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1537\tI-Code_Block\tQ_1537\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15628140\tO\t15628140\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15628140/\tO\thttps://stackoverflow.com/questions/15628140/\tO\n\t\n\t\nTry\tO\tTry\tO\nReflection\tO\tReflection\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2025\tI-Code_Block\tA_2025\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFor\tO\tFor\tO\na\tO\ta\tO\nmore\tO\tmore\tO\ngeneric\tO\tgeneric\tO\napproach\tO\tapproach\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nDefine\tO\tDefine\tO\nan\tO\tan\tO\nextension\tO\textension\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2026\tI-Code_Block\tA_2026\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUse\tO\tUse\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\ninstantiable\tO\tinstantiable\tO\ntype\tO\ttype\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2027\tI-Code_Block\tA_2027\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15628140\tO\t15628140\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15628140/\tO\thttps://stackoverflow.com/questions/15628140/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nreflection\tO\treflection\tO\n-\tO\t-\tO\nget\tO\tget\tO\nproperty\tO\tproperty\tO\naccessor\tO\taccessor\tO\n(\tO\t(\tO\nType.GetProperty\tB-Library_Function\tType.GetProperty\tO\n)\tO\t)\tO\nby\tO\tby\tO\nname\tO\tname\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nIgnoreCase\tB-Library_Variable\tIgnoreCase\tO\nwhen\tO\twhen\tO\ngetting\tO\tgetting\tO\none\tO\tone\tO\nas\tO\tas\tO\nyour\tO\tyour\tO\nnames\tO\tnames\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nall\tO\tall\tO\nlower\tO\tlower\tO\ncase\tO\tcase\tO\n)\tO\t)\tO\nand\tO\tand\tO\nthan\tO\tthan\tO\nGetValue\tB-Library_Function\tGetValue\tO\nof\tO\tof\tO\nproperty\tO\tproperty\tO\nusing\tO\tusing\tO\naccessor\tO\taccessor\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48601855\tO\t48601855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48601855/\tO\thttps://stackoverflow.com/questions/48601855/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nnext\tO\tnext\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nthan\tO\tthan\tO\nid\tB-Code_Block\tid\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nupper1\tI-Code_Block\tupper1\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nbecome\tO\tbecome\tO\nid\tB-Code_Block\tid\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nupper2\tI-Code_Block\tupper2\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nand\tO\tand\tO\nid\tB-Code_Block\tid\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nupper2\tI-Code_Block\tupper2\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nbecome\tO\tbecome\tO\nid\tB-Code_Block\tid\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nupper3\tI-Code_Block\tupper3\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nand\tO\tand\tO\nid\tB-Code_Block\tid\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nupper3\tI-Code_Block\tupper3\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nbecome\tO\tbecome\tO\nid\tB-Code_Block\tid\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nupper1\tI-Code_Block\tupper1\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\n$('#next')\tB-Code_Block\t$('#next')\tO\n.click\tI-Code_Block\t.click\tO\n(\tI-Code_Block\t(\tO\nfunction()\tI-Code_Block\tfunction()\tO\n{\tI-Code_Block\t{\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6472\tI-Code_Block\tQ_6472\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6473\tI-Code_Block\tQ_6473\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6474\tI-Code_Block\tQ_6474\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48601855\tO\t48601855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48601855/\tO\thttps://stackoverflow.com/questions/48601855/\tO\n\t\n\t\nWith\tO\tWith\tO\njQuery\tB-Library\tjQuery\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7109\tI-Code_Block\tA_7109\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nblock\tO\tblock\tO\nthat\tO\tthat\tO\nwaits\tO\twaits\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\nto\tO\tto\tO\nload\tO\tload\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7110\tI-Code_Block\tA_7110\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nattr\tB-Library_Function\tattr\tB-Code_Block\nallows\tO\tallows\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nid\tB-Variable_Name\tid\tB-Code_Block\nto\tO\tto\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nformer\tO\tformer\tO\nid\tB-Variable_Name\tid\tO\n'\tI-Variable_Name\t'\tO\ns\tI-Variable_Name\ts\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nthe\tO\tthe\tO\njsFiddle\tB-Application\tjsFiddle\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nas\tO\tas\tO\nnoted\tO\tnoted\tO\nby\tO\tby\tO\nother\tO\tother\tO\npeople\tO\tpeople\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nhaving\tO\thaving\tO\nfixed\tO\tfixed\tO\nid\tB-Variable_Name\tid\tO\n's\tO\t's\tO\nand\tO\tand\tO\nchanging\tO\tchanging\tO\nclasses\tO\tclasses\tO\nthat\tO\tthat\tO\ndefined\tO\tdefined\tO\nthe\tO\tthe\tO\nattributes\tO\tattributes\tO\nto\tO\tto\tO\nrotate\tO\trotate\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48601855\tO\t48601855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48601855/\tO\thttps://stackoverflow.com/questions/48601855/\tO\n\t\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nany\tO\tany\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nelement\tO\telement\tO\nwith\tO\twith\tO\nany\tO\tany\tO\nIDs\tB-Variable_Name\tIDs\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_7111\tI-Code_Block\tQ_7111\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_7112\tI-Code_Block\tQ_7112\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_7113\tI-Code_Block\tQ_7113\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n81972\tO\t81972\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/81972/\tO\thttps://stackoverflow.com/questions/81972/\tO\n\t\n\t\nThe\tO\tThe\tO\nquestion\tO\tquestion\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nask\tO\task\tO\nis\tO\tis\tO\nthus\tO\tthus\tO\n:\tO\t:\tO\n\t\nIs\tO\tIs\tO\ncasting\tO\tcasting\tO\ndown\tO\tdown\tO\nthe\tO\tthe\tO\ninheritance\tO\tinheritance\tO\ntree\tB-Data_Structure\ttree\tO\n(\tO\t(\tO\nie\tO\tie\tO\n.\tO\t.\tO\ntowards\tO\ttowards\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nspecialiased\tO\tspecialiased\tO\nclass\tO\tclass\tO\n)\tO\t)\tO\nfrom\tO\tfrom\tO\ninside\tO\tinside\tO\nan\tO\tan\tO\nabstract\tO\tabstract\tO\nclass\tO\tclass\tO\nexcusable\tO\texcusable\tO\n,\tO\t,\tO\nor\tO\tor\tO\neven\tO\teven\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\nor\tO\tor\tO\nis\tO\tis\tO\nit\tO\tit\tO\nalways\tO\talways\tO\na\tO\ta\tO\npoor\tO\tpoor\tO\nchoice\tO\tchoice\tO\nwith\tO\twith\tO\nbetter\tO\tbetter\tO\noptions\tO\toptions\tO\navailable\tO\tavailable\tO\n?\tO\t?\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecently\tO\trecently\tO\nimplemented\tO\timplemented\tO\nBencoding\tO\tBencoding\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nBitTorrent\tB-Website\tBitTorrent\tO\nprotocol\tO\tprotocol\tO\nin\tO\tin\tO\nC#\tB-Language\tC#\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\nenough\tO\tenough\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nrepresent\tO\trepresent\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nchose\tO\tchose\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n,\tO\t,\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nabstract\tB-Data_Type\tabstract\tB-Code_Block\nBItem\tB-Class_Name\tBItem\tI-Code_Block\nclass\tO\tclass\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nprovides\tO\tprovides\tO\nsome\tO\tsome\tO\nbasic\tO\tbasic\tO\nfunctionality\tO\tfunctionality\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\nstatic\tB-Code_Block\tstatic\tB-Code_Block\nBItem\tI-Code_Block\tBItem\tI-Code_Block\nDecode(string)\tI-Code_Block\tDecode(string)\tI-Code_Block\nthat\tO\tthat\tO\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\ndecode\tO\tdecode\tO\na\tO\ta\tO\nBencoded\tO\tBencoded\tO\nstring\tB-Data_Type\tstring\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nnecessary\tO\tnecessary\tO\nstructure\tO\tstructure\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nalso\tO\talso\tO\nfour\tO\tfour\tO\nderived\tO\tderived\tO\nclasses\tO\tclasses\tO\n,\tO\t,\tO\nBString\tB-Class_Name\tBString\tB-Code_Block\n,\tO\t,\tO\nBInteger\tB-Class_Name\tBInteger\tB-Code_Block\n,\tO\t,\tO\nBList\tB-Class_Name\tBList\tB-Code_Block\nand\tO\tand\tO\nBDictionary\tB-Class_Name\tBDictionary\tB-Code_Block\n,\tO\t,\tO\nrepresenting\tO\trepresenting\tO\nthe\tO\tthe\tO\nfour\tO\tfour\tO\ndifferent\tO\tdifferent\tO\ndata\tO\tdata\tO\ntypes\tO\ttypes\tO\nthat\tO\tthat\tO\nbe\tO\tbe\tO\nencoded\tO\tencoded\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ntricky\tO\ttricky\tO\npart\tO\tpart\tO\n.\tO\t.\tO\n\t\nBList\tB-Class_Name\tBList\tB-Code_Block\nand\tO\tand\tO\nBDictionary\tB-Class_Name\tBDictionary\tB-Code_Block\nhave\tO\thave\tO\nthis[int]\tB-Data_Type\tthis[int]\tB-Code_Block\nand\tO\tand\tO\nthis[string]\tB-Data_Type\tthis[string]\tB-Code_Block\naccessors\tO\taccessors\tO\nrespectively\tO\trespectively\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\narray-like\tB-Data_Structure\tarray-like\tO\nqualities\tO\tqualities\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ndata\tO\tdata\tO\ntypes\tO\ttypes\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npotentially\tO\tpotentially\tO\nhorrific\tO\thorrific\tO\npart\tO\tpart\tO\nis\tO\tis\tO\ncoming\tO\tcoming\tO\nnow\tO\tnow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5\tI-Code_Block\tQ_5\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\npicture\tO\tpicture\tO\n..\tO\t..\tO\n.\tO\t.\tO\nOuch\tO\tOuch\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nhard\tO\thard\tO\non\tO\ton\tO\nthe\tO\tthe\tO\neyes\tO\teyes\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nmention\tO\tmention\tO\nthe\tO\tthe\tO\nbrain\tO\tbrain\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nintroduced\tO\tintroduced\tO\nsomething\tO\tsomething\tO\nextra\tO\textra\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nabstract\tO\tabstract\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6\tI-Code_Block\tQ_6\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\nrewrite\tO\trewrite\tO\nthat\tO\tthat\tO\nold\tO\told\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_7\tI-Code_Block\tQ_7\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWow\tO\tWow\tO\n,\tO\t,\tO\nhey\tO\they\tO\npresto\tO\tpresto\tO\n,\tO\t,\tO\nMUCH\tO\tMUCH\tO\nmore\tO\tmore\tO\nreadable\tO\treadable\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ndid\tO\tdid\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nsell\tO\tsell\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nsoul\tO\tsoul\tO\nfor\tO\tfor\tO\nimplying\tO\timplying\tO\nknowledge\tO\tknowledge\tO\nof\tO\tof\tO\nsubclasses\tO\tsubclasses\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nabstract\tO\tabstract\tO\nclass\tO\tclass\tO\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nIn\tO\tIn\tO\nresponse\tO\tresponse\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nanswers\tO\tanswers\tO\ncoming\tO\tcoming\tO\nin\tO\tin\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ncompletely\tO\tcompletely\tO\noff\tO\toff\tO\ntrack\tO\ttrack\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nparticular\tO\tparticular\tO\nquestion\tO\tquestion\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nis\tO\tis\tO\nvariable\tO\tvariable\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\nmy\tO\tmy\tO\nexample\tO\texample\tO\nof\tO\tof\tO\ntorrent[\"info\"][\"files\"][0][\"length\"]\tB-Variable_Name\ttorrent[\"info\"][\"files\"][0][\"length\"]\tB-Code_Block\nis\tO\tis\tO\nvalid\tO\tvalid\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nso\tO\tso\tO\nis\tO\tis\tO\ntorrent[\"announce-list\"][0][0]\tB-Variable_Name\ttorrent[\"announce-list\"][0][0]\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nboth\tO\tboth\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\n90%\tO\t90%\tO\nof\tO\tof\tO\ntorrent\tB-File_Type\ttorrent\tO\nfiles\tO\tfiles\tO\nout\tO\tout\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nGenerics\tO\tGenerics\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\natleast\tO\tatleast\tO\n:(\tO\t:(\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nclick\tO\tclick\tO\nthrough\tO\tthrough\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nspec\tO\tspec\tO\nI\tO\tI\tO\nlinked\tO\tlinked\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nonly\tO\tonly\tO\n4\tO\t4\tO\nsmall\tO\tsmall\tO\ndot-points\tO\tdot-points\tO\nlarge\tO\tlarge\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n81972\tO\t81972\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/81972/\tO\thttps://stackoverflow.com/questions/81972/\tO\n\t\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nall\tO\tall\tO\nBItems\tB-Class_Name\tBItems\tO\nare\tO\tare\tO\ncollections\tO\tcollections\tO\n,\tO\t,\tO\nthus\tO\tthus\tO\nnot\tO\tnot\tO\nall\tO\tall\tO\nBItems\tB-Class_Name\tBItems\tO\nhave\tO\thave\tO\nindexers\tO\tindexers\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nindexer\tO\tindexer\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nBItem\tB-Class_Name\tBItem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nderive\tO\tderive\tO\nanother\tO\tanother\tO\nabstract\tO\tabstract\tO\nclass\tO\tclass\tO\nfrom\tO\tfrom\tO\nBItem\tB-Class_Name\tBItem\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nname\tO\tname\tO\nit\tO\tit\tO\nBCollection\tB-Class_Name\tBCollection\tO\n,\tO\t,\tO\nand\tO\tand\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nindexers\tO\tindexers\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_12\tI-Code_Block\tA_12\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nmake\tO\tmake\tO\nBList\tB-Class_Name\tBList\tO\nand\tO\tand\tO\nBDictionary\tB-Class_Name\tBDictionary\tO\ninherit\tO\tinherit\tO\nfrom\tO\tfrom\tO\nBCollection\tB-Class_Name\tBCollection\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ngo\tO\tgo\tO\nthe\tO\tthe\tO\nextra\tO\textra\tO\nmile\tO\tmile\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nBCollection\tB-Class_Name\tBCollection\tO\na\tO\ta\tO\ngeneric\tO\tgeneric\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n81972\tO\t81972\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/81972/\tO\thttps://stackoverflow.com/questions/81972/\tO\n\t\n\t\nYou\tO\tYou\tO\nreally\tO\treally\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\naccess\tO\taccess\tO\nany\tO\tany\tO\nderived\tO\tderived\tO\nclasses\tO\tclasses\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\nas\tO\tas\tO\nit\tO\tit\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nbreaks\tO\tbreaks\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\nof\tO\tof\tO\nOOP\tO\tOOP\tO\n.\tO\t.\tO\n\t\nReadibility\tO\tReadibility\tO\ncertainly\tO\tcertainly\tO\ngoes\tO\tgoes\tO\na\tO\ta\tO\nlong\tO\tlong\tO\nway\tO\tway\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\ntrade\tO\ttrade\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nreusability\tO\treusability\tO\n.\tO\t.\tO\n\t\nConsider\tO\tConsider\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nanother\tO\tanother\tO\nsubclass\tO\tsubclass\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\naccordingly\tO\taccordingly\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42527503\tO\t42527503\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42527503/\tO\thttps://stackoverflow.com/questions/42527503/\tO\n\t\n\t\nThe\tO\tThe\tO\nMacro\tB-Application\tMacro\tO\nExcel\tI-Application\tExcel\tO\npointe\tO\tpointe\tO\nin\tO\tin\tO\nCognos\tB-Application\tCognos\tO\n8\tB-Version\t8\tO\nCube\tB-Data_Structure\tCube\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncube\tB-Data_Structure\tcube\tO\nis\tO\tis\tO\npublished\tO\tpublished\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nserver\tB-Device\tserver\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncompany\tO\tcompany\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthese\tO\tthese\tO\nprocess\tO\tprocess\tO\nlocal\tO\tlocal\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ncheck\tO\tcheck\tO\nand\tO\tand\tO\nadvice\tO\tadvice\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42527503\tO\t42527503\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42527503/\tO\thttps://stackoverflow.com/questions/42527503/\tO\n\t\n\t\nNOTE-Cognos\tB-Application\tNOTE-Cognos\tO\n8\tB-Version\t8\tO\nis\tO\tis\tO\nunsupported\tO\tunsupported\tO\n-\tO\t-\tO\nhighly\tO\thighly\tO\nsuggest\tO\tsuggest\tO\nyou\tO\tyou\tO\nupgrade\tO\tupgrade\tO\nto\tO\tto\tO\n10\tB-Version\t10\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nfeasible\tO\tfeasible\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nclarify\tO\tclarify\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nthis\tO\tthis\tO\ncube\tB-Data_Structure\tcube\tO\nlocally\tO\tlocally\tO\n?\tO\t?\tO\n\t\nOn\tO\tOn\tO\nyour\tO\tyour\tO\ndesktop\tB-Device\tdesktop\tO\n?\tO\t?\tO\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nsize\tO\tsize\tO\nand\tO\tand\tO\nstructure\tO\tstructure\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nup\tO\tup\tO\nall\tO\tall\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\nresources\tO\tresources\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nthis\tO\tthis\tO\n-\tO\t-\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nBuild\tO\tBuild\tO\nthe\tO\tthe\tO\ncube\tO\tcube\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Device\tserver\tO\nand\tO\tand\tO\ncopy\tO\tcopy\tO\nit\tO\tit\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ndestination\tO\tdestination\tO\n.\tO\t.\tO\n\t\nd:\\Cognos\\PowerCubes\\Build\tB-File_Name\td:\\Cognos\\PowerCubes\\Build\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nto\tO\tto\tO\npublish\tO\tpublish\tO\nthem\tO\tthem\tO\n-\tO\t-\tO\ncopy\tO\tcopy\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\ndirectory\tO\tdirectory\tO\nd:\\Cognos\\PowerCubes\\Live\tB-File_Name\td:\\Cognos\\PowerCubes\\Live\tO\n\t\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nwindows\tB-Operating_System\twindows\tO\ncopy\tO\tcopy\tO\ncommand\tO\tcommand\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\ncopy\tB-Code_Block\tcopy\tO\nd:\\Cognos\\PowerCubes\\Build\\yourcube.mdc\tI-Code_Block\td:\\Cognos\\PowerCubes\\Build\\yourcube.mdc\tO\nd:\\Cognos\\PowerCubes\\Live\tI-Code_Block\td:\\Cognos\\PowerCubes\\Live\tO\n/Y\tI-Code_Block\t/Y\tO\n/B\tI-Code_Block\t/B\tO\n\t\nLocal\tO\tLocal\tO\n-\tO\t-\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\ncube\tB-Data_Structure\tcube\tO\nusing\tO\tusing\tO\ntask\tB-Application\ttask\tO\nscheduler\tI-Application\tscheduler\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\nmachine\tO\tmachine\tO\n.\tO\t.\tO\n\t\nHTH\tB-User_Name\tHTH\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42527503\tO\t42527503\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42527503/\tO\thttps://stackoverflow.com/questions/42527503/\tO\n\t\n\t\nActually\tO\tActually\tO\nI\tO\tI\tO\nbuild\tO\tbuild\tO\nmycube.mdc\tB-File_Name\tmycube.mdc\tO\nlocally\tO\tlocally\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\npublish\tO\tpublish\tO\nis\tO\tis\tO\nin\tO\tin\tO\nserver\tB-Device\tserver\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ndiffrents\tO\tdiffrents\tO\nsteps\tO\tsteps\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nto\tO\tto\tO\npublish\tO\tpublish\tO\nthe\tO\tthe\tO\ncube\tB-Data_Structure\tcube\tO\nlocally\tO\tlocally\tO\n.Hence\tO\t.Hence\tO\n,\tO\t,\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\ncube\tB-Data_Structure\tcube\tO\nthrough\tO\tthrough\tO\nmacro\tB-Application\tmacro\tO\nexcel\tI-Application\texcel\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n563548\tO\t563548\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/563548/\tO\thttps://stackoverflow.com/questions/563548/\tO\n\t\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\nentity\tO\tentity\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nattributes\tO\tattributes\tO\nat\tO\tat\tO\nrun-time\tO\trun-time\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n563548\tO\t563548\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/563548/\tO\thttps://stackoverflow.com/questions/563548/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nattributes\tO\tattributes\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\ndata-binding\tO\tdata-binding\tO\netc\tO\tetc\tO\n,\tO\t,\tO\nTypeDescriptor\tB-Library_Class\tTypeDescriptor\tB-Code_Block\nshould\tO\tshould\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_55\tI-Code_Block\tA_55\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nonly\tO\tonly\tO\naffects\tO\taffects\tO\nSystem.ComponentModel\tB-Library_Class\tSystem.ComponentModel\tB-Code_Block\nusage\tO\tusage\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\ndirect\tO\tdirect\tO\nreflection\tO\treflection\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\noften\tO\toften\tO\nenough\tO\tenough\tO\n-\tO\t-\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nassociate\tO\tassociate\tO\na\tO\ta\tO\nTypeConverter\tB-Library_Class\tTypeConverter\tB-Code_Block\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nby\tO\tby\tO\n\"\tO\t\"\tO\nattributes\tO\tattributes\tO\n\"\tO\t\"\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\n\"\tO\t\"\tO\nproperties\tO\tproperties\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\n(\tO\t(\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\ndata-binding\tO\tdata-binding\tO\nis\tO\tis\tO\nconcerned\tO\tconcerned\tO\n)\tO\t)\tO\nTypeDescriptor\tB-Library_Class\tTypeDescriptor\tB-Code_Block\nalso\tO\talso\tO\nhas\tO\thas\tO\npotential\tO\tpotential\tO\nthere\tO\tthere\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnon-trivial\tO\tnon-trivial\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\neither\tO\teither\tO\nimplement\tO\timplement\tO\nICustomTypeDescriptor\tB-Library_Class\tICustomTypeDescriptor\tB-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nor\tO\tor\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nCustomTypeDescriptor\tB-Library_Class\tCustomTypeDescriptor\tB-Code_Block\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\n-\tO\t-\tO\nand\tO\tand\tO\nin\tO\tin\tO\neither\tO\teither\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nPropertyDescriptor\tB-Library_Class\tPropertyDescriptor\tB-Code_Block\nimplementation\tO\timplementation\tO\n(\tO\t(\tO\noften\tO\toften\tO\ntalking\tO\ttalking\tO\nto\tO\tto\tO\na\tO\ta\tO\nper-instance\tO\tper-instance\tO\ndictionary\tB-Data_Structure\tdictionary\tO\netc\tO\tetc\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nused\tO\tused\tO\nby\tO\tby\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_56\tI-Code_Block\tA_56\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAgain\tO\tAgain\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ncovers\tO\tcovers\tO\na\tO\ta\tO\nwide\tO\twide\tO\nrange\tO\trange\tO\nof\tO\tof\tO\ndata-binding\tO\tdata-binding\tO\nand\tO\tand\tO\nsimilar\tO\tsimilar\tO\nscenarios\tO\tscenarios\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nhere\tO\there\tO\n-\tO\t-\tO\nit\tO\tit\tO\nis\tO\tis\tO\nfar\tO\tfar\tO\nfrom\tO\tfrom\tO\ntrivial\tO\ttrivial\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nexample\tO\texample\tO\nusage\tO\tusage\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\n)\tO\t)\tO\nadds\tO\tadds\tO\ntwo\tO\ttwo\tO\nproperties\tO\tproperties\tO\nat\tO\tat\tO\nruntime\tO\truntime\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_57\tI-Code_Block\tA_57\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n563548\tO\t563548\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/563548/\tO\thttps://stackoverflow.com/questions/563548/\tO\n\t\n\t\nUse\tO\tUse\tO\na\tO\ta\tO\nhashtable\tB-Library_Class\thashtable\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nyour\tO\tyour\tO\nattributes\tO\tattributes\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nmore\tO\tmore\tO\nruntime\tO\truntime\tO\nflexibility\tO\tflexibility\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\ntry\tO\ttry\tO\nRuby\tB-Language\tRuby\tO\nor\tO\tor\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\ninterpreted\tO\tinterpreted\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41527933\tO\t41527933\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41527933/\tO\thttps://stackoverflow.com/questions/41527933/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nconstrained\tO\tconstrained\tO\nto\tO\tto\tO\nwriting\tO\twriting\tO\nC++11\tB-Language\tC++11\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nstd::cbegin()\tB-Library_Function\tstd::cbegin()\tB-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nGCC\tB-Application\tGCC\tO\n5.4.0\tB-Version\t5.4.0\tO\n'\tO\t'\tO\ns\tO\ts\tO\nimplementation\tO\timplementation\tO\n,\tO\t,\tO\nin\tO\tin\tO\n/usr/include/c\tB-File_Name\t/usr/include/c\tB-Code_Block\n++\tI-File_Name\t++\tI-Code_Block\n/5/bits/range_access.h\tI-File_Name\t/5/bits/range_access.h\tI-Code_Block\non\tO\ton\tO\nmy\tO\tmy\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nthinking\tO\tthinking\tO\nI\tO\tI\tO\nmight\tO\tmight\tO\nwrite\tO\twrite\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5271\tI-Code_Block\tQ_5271\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nis\tO\tis\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nto\tO\tto\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nit\tO\tit\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncome\tO\tcome\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nC++11\tB-Language\tC++11\tO\nlike\tO\tlike\tO\nstd::begin()\tB-Library_Function\tstd::begin()\tB-Code_Block\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41527933\tO\t41527933\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41527933/\tO\thttps://stackoverflow.com/questions/41527933/\tO\n\t\n\t\nNo\tO\tNo\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\ncovers\tO\tcovers\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAlthough\tO\tAlthough\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nfunction\tO\tfunction\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nwith\tO\twith\tO\na\tO\ta\tO\nrelatively\tO\trelatively\tO\nsmall\tO\tsmall\tO\namount\tO\tamount\tO\nof\tO\tof\tO\neffort\tO\teffort\tO\n,\tO\t,\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\nfinite\tO\tfinite\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncommittee\tO\tcommittee\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nunlimited\tO\tunlimited\tO\nresource\tO\tresource\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nexample\tO\texample\tO\nof\tO\tof\tO\na\tO\ta\tO\nreasonably\tO\treasonably\tO\nuseful\tO\tuseful\tO\nand\tO\tand\tO\ntrivial\tO\ttrivial\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nomitted\tO\tomitted\tO\nuntil\tO\tuntil\tO\nC++14\tB-Language\tC++14\tO\nis\tO\tis\tO\nstd::make_unique\tB-Library_Function\tstd::make_unique\tB-Code_Block\n.\tO\t.\tO\n\t\nThings\tO\tThings\tO\nimprove\tO\timprove\tO\nover\tO\tover\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41527933\tO\t41527933\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41527933/\tO\thttps://stackoverflow.com/questions/41527933/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYes\tO\tYes\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nNot\tO\tNot\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\naware\tO\taware\tO\nof\tO\tof\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThe\tO\tThe\tO\nglobal\tO\tglobal\tO\ntemplates\tO\ttemplates\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nproposal\tO\tproposal\tO\nas\tO\tas\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmember\tO\tmember\tO\nfunctions\tO\tfunctions\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nproposal\tO\tproposal\tO\npreferred\tO\tpreferred\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nprovide\tO\tprovide\tO\nthe\tO\tthe\tO\nmember\tO\tmember\tO\nfunctions\tO\tfunctions\tO\nin\tO\tin\tO\nfavour\tO\tfavour\tO\nof\tO\tof\tO\nproviding\tO\tproviding\tO\neither\tO\teither\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nglobal\tO\tglobal\tO\ntemplates\tO\ttemplates\tO\n,\tO\t,\tO\nor\tO\tor\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\ntemplates\tO\ttemplates\tO\nand\tO\tand\tO\nmembers\tO\tmembers\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nAssuming\tO\tAssuming\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nproposal\tO\tproposal\tO\n:\tO\t:\tO\nN167\tO\tN167\tO\n4)\tO\t4)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncommittee\tO\tcommittee\tO\nchose\tO\tchose\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nmember\tO\tmember\tO\nfunction\tO\tfunction\tO\nalternative\tO\talternative\tO\nin\tO\tin\tO\nC++11\tB-Language\tC++11\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nnot\tO\tnot\tO\nuntil\tO\tuntil\tO\nC++\tB-Language\tC++\tO\n14\tB-Version\t14\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncommittee\tO\tcommittee\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncannot\tO\tcannot\tO\nspeak\tO\tspeak\tO\nfor\tO\tfor\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nguess\tO\tguess\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nattitude\tO\tattitude\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproposal\tO\tproposal\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\naffected\tO\taffected\tO\nthe\tO\tthe\tO\ndecision\tO\tdecision\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndevelopment\tO\tdevelopment\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nC++\tB-Library\tC++\tO\nStandard\tI-Library\tStandard\tO\nLibrary\tI-Library\tLibrary\tO\nDefect\tO\tDefect\tO\nReport\tO\tReport\tO\nissue\tO\tissue\tO\n(\tO\t(\tO\n2128\tO\t2128\tO\n)\tO\t)\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nversions\tO\tversions\tO\nwere\tO\twere\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nadopted\tO\tadopted\tO\ninto\tO\tinto\tO\nC++14\tB-Language\tC++14\tO\nafter\tO\tafter\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42354117\tO\t42354117\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42354117/\tO\thttps://stackoverflow.com/questions/42354117/\tO\n\t\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nregex\tO\tregex\tO\nto\tO\tto\tO\nextract\tO\textract\tO\nonly\tO\tonly\tO\nfloats\tB-Data_Type\tfloats\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nConsider\tO\tConsider\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nstring\tB-Data_Type\tstring\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5400\tI-Code_Block\tQ_5400\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nextract\tO\textract\tO\n2.1\tB-Value\t2.1\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nintegers\tB-Data_Type\tintegers\tO\nand\tO\tand\tO\nfloats\tB-Data_Type\tfloats\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5401\tI-Code_Block\tQ_5401\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ni\tO\ti\tO\nthen\tO\tthen\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nis_float\tB-Library_Function\tis_float\tB-Code_Block\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nfloats\tB-Data_Type\tfloats\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nalso\tO\talso\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nintegers\tB-Data_Type\tintegers\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nthanks\tO\tthanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42354117\tO\t42354117\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42354117/\tO\thttps://stackoverflow.com/questions/42354117/\tO\n\t\n\t\nConsider\tO\tConsider\tO\nthis\tO\tthis\tO\nsimple\tO\tsimple\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6092\tI-Code_Block\tA_6092\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMatches\tO\tMatches\tO\n\"\tO\t\"\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\ndigits\tO\tdigits\tO\n,\tO\t,\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nexactly\tO\texactly\tO\none\tO\tone\tO\nfull\tO\tfull\tO\nstop\tO\tstop\tO\nand\tO\tand\tO\nagain\tO\tagain\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\ndigits\tO\tdigits\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\nobviously\tO\tobviously\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6093\tI-Code_Block\tA_6093\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42354117\tO\t42354117\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42354117/\tO\thttps://stackoverflow.com/questions/42354117/\tO\n\t\n\t\nYour\tO\tYour\tO\nregex\tO\tregex\tO\nmatches\tO\tmatches\tO\nfloat\tB-Data_Type\tfloat\tO\nand\tO\tand\tO\nintegers\tB-Data_Type\tintegers\tO\n,\tO\t,\tO\nand\tO\tand\tO\neven\tO\teven\tO\nstrings\tB-Data_Type\tstrings\tO\nconsisting\tO\tconsisting\tO\nof\tO\tof\tO\njust\tO\tjust\tO\ncommas\tO\tcommas\tO\n.\tO\t.\tO\n\t\n[0-9,]+\tB-Code_Block\t[0-9,]+\tB-Code_Block\n-\tO\t-\tO\n1\tO\t1\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\ndigits\tO\tdigits\tO\nor\tO\tor\tO\n,\tB-Code_Block\t,\tB-Code_Block\n\t\n(?:\\.\tB-Code_Block\t(?:\\.\tB-Code_Block\n[\tI-Code_Block\t[\tI-Code_Block\n0-9\tI-Code_Block\t0-9\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n*)\tI-Code_Block\t*)\tI-Code_Block\n?\tI-Code_Block\t?\tI-Code_Block\n-\tO\t-\tO\none\tO\tone\tO\nor\tO\tor\tO\nzero\tO\tzero\tO\nsequences\tO\tsequences\tO\nof\tO\tof\tO\n.\tB-Code_Block\t.\tO\n+\tO\t+\tO\nzero\tO\tzero\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\ndigits\tO\tdigits\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6088\tI-Code_Block\tA_6088\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\nwill\tO\twill\tO\nmatch\tO\tmatch\tO\n1+\tO\t1+\tO\ndigits\tO\tdigits\tO\n,\tO\t,\tO\n.\tB-Code_Block\t.\tO\nand\tO\tand\tO\n1+\tO\t1+\tO\ndigits\tO\tdigits\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\n,\tO\t,\tO\nto\tO\tto\tO\nalso\tO\talso\tO\nmatch\tO\tmatch\tO\nnegative\tO\tnegative\tO\nand\tO\tand\tO\npositive\tO\tpositive\tO\nfloats\tB-Data_Type\tfloats\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\noptional\tO\toptional\tO\n-\tB-Code_Block\t-\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6089\tI-Code_Block\tA_6089\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDetails\tO\tDetails\tO\n\t\n-\tB-Code_Block\t-\tO\n?\tI-Code_Block\t?\tB-Code_Block\n-\tO\t-\tO\none\tO\tone\tO\nor\tO\tor\tO\nzero\tO\tzero\tO\nhyphens\tO\thyphens\tO\n(\tO\t(\tO\n?\tB-Code_Block\t?\tO\nmeans\tO\tmeans\tO\nmatch\tO\tmatch\tO\none\tO\tone\tO\nor\tO\tor\tO\nzero\tO\tzero\tO\noccurrences\tO\toccurrences\tO\n)\tO\t)\tO\n\t\n\\d+\tB-Code_Block\t\\d+\tB-Code_Block\n-\tO\t-\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\ndigits\tO\tdigits\tO\n(\tO\t(\tO\n+\tB-Code_Block\t+\tO\nmeans\tO\tmeans\tO\nmatch\tO\tmatch\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\noccurrences\tO\toccurrences\tO\n,\tO\t,\tO\n\\d\tB-Code_Block\t\\d\tB-Code_Block\nmatches\tO\tmatches\tO\na\tO\ta\tO\ndigit\tO\tdigit\tO\nchar\tB-Data_Type\tchar\tO\n)\tO\t)\tO\n\t\n\\\tB-Code_Block\t\\\tO\n.\tI-Code_Block\t.\tB-Code_Block\n-\tO\t-\tO\na\tO\ta\tO\nliteral\tO\tliteral\tO\ndot\tO\tdot\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\na\tO\ta\tO\ndot\tO\tdot\tO\nin\tO\tin\tO\na\tO\ta\tO\nregex\tO\tregex\tO\nis\tO\tis\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nmetacharacter\tO\tmetacharacter\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nescaped\tO\tescaped\tO\nto\tO\tto\tO\ndenote\tO\tdenote\tO\na\tO\ta\tO\nliteral\tO\tliteral\tO\ndot\tO\tdot\tO\n)\tO\t)\tO\n\t\n\\d+\tB-Code_Block\t\\d+\tB-Code_Block\n-\tO\t-\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\ndigits\tO\tdigits\tO\n\t\nPHP\tB-Language\tPHP\tO\ndemo\tO\tdemo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6090\tI-Code_Block\tA_6090\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nA\tO\tA\tO\nbonus\tO\tbonus\tO\nregex\tO\tregex\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nmatch\tO\tmatch\tO\nonly\tO\tonly\tO\nfloat\tB-Data_Type\tfloat\tO\nnumbers\tO\tnumbers\tO\nwith\tO\twith\tO\noptional\tO\toptional\tO\nexponent\tO\texponent\tO\n(\tO\t(\tO\na\tO\ta\tO\nvariant\tO\tvariant\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nregex\tO\tregex\tO\nat\tO\tat\tO\nregular-expressions.info\tO\tregular-expressions.info\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6091\tI-Code_Block\tA_6091\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nan\tO\tan\tO\noptional\tO\toptional\tO\n+\tB-Code_Block\t+\tO\nor\tO\tor\tO\n-\tB-Code_Block\t-\tO\nis\tO\tis\tO\nmatched\tO\tmatched\tO\nfirst\tO\tfirst\tO\n(\tO\t(\tO\n[\tB-Code_Block\t[\tO\n-+\tI-Code_Block\t-+\tB-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n?)\tI-Code_Block\t?)\tI-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\npattern\tO\tpattern\tO\nas\tO\tas\tO\nabove\tO\tabove\tO\nis\tO\tis\tO\nused\tO\tused\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncomes\tO\tcomes\tO\nan\tO\tan\tO\noptional\tO\toptional\tO\nnon-capturing\tO\tnon-capturing\tO\ngroup\tO\tgroup\tO\n(\tB-Code_Block\t(\tO\n?\tI-Code_Block\t?\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n..\tI-Code_Block\t..\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n?\tI-Code_Block\t?\tI-Code_Block\nthat\tO\tthat\tI-Code_Block\nmatches\tO\tmatches\tO\n1\tO\t1\tO\nor\tO\tor\tO\n0\tO\t0\tO\noccurrences\tO\toccurrences\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nsequence\tO\tsequence\tO\n:\tO\t:\tO\ne\tB-Code_Block\te\tO\nor\tO\tor\tB-Code_Block\nE\tB-Code_Block\tE\tO\n(\tO\t(\tB-Code_Block\nsince\tO\tsince\tO\n/i\tB-Code_Block\t/i\tO\nis\tO\tis\tB-Code_Block\na\tO\ta\tO\ncase\tO\tcase\tO\ninsensitive\tO\tinsensitive\tO\nmodifier\tO\tmodifier\tO\n)\tO\t)\tO\n,\tO\t,\tO\n[\tB-Code_Block\t[\tO\n-+\tI-Code_Block\t-+\tB-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n?\tB-Code_Block\t?\tB-Code_Block\nmatches\tO\tmatches\tI-Code_Block\nan\tO\tan\tO\noptional\tO\toptional\tO\n+\tB-Code_Block\t+\tO\nor\tO\tor\tB-Code_Block\n-\tB-Code_Block\t-\tO\n,\tO\t,\tO\nand\tO\tand\tO\n\\d+`\tB-Code_Block\t\\d+`\tO\nmatches\tO\tmatches\tO\n1+\tO\t1+\tO\ndigits\tO\tdigits\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10813825\tO\t10813825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10813825/\tO\thttps://stackoverflow.com/questions/10813825/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nvector\tB-Data_Structure\tvector\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_976\tI-Code_Block\tQ_976\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAll\tO\tAll\tO\nits\tO\tits\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nbetween\tO\tbetween\tO\n1\tB-Value\t1\tB-Code_Block\nand\tO\tand\tO\nn\tB-Variable_Name\tn\tB-Code_Block\n(\tO\t(\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\n3)\tB-Value\t3)\tB-Code_Block\nand\tO\tand\tO\ndenote\tO\tdenote\tO\ndifferent\tO\tdifferent\tO\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nof\tO\tof\tO\nsize\tO\tsize\tO\nsize(y,\tB-Library_Function\tsize(y,\tB-Code_Block\n1)\tI-Library_Function\t1)\tI-Code_Block\nx\tO\tx\tO\nn\tB-Variable_Name\tn\tB-Code_Block\nwhose\tO\twhose\tO\nrows\tB-Data_Structure\trows\tO\ncorrepond\tO\tcorrepond\tO\nto\tO\tto\tO\ny\tB-Variable_Name\ty\tB-Code_Block\nvalues\tO\tvalues\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_977\tI-Code_Block\tQ_977\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOne\tO\tOne\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_978\tI-Code_Block\tQ_978\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nexpression\tO\texpression\tO\n?\tO\t?\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nwith\tO\twith\tO\nboolean\tB-Data_Type\tboolean\tO\npredicate\tO\tpredicate\tO\n(\tB-Code_Block\t(\tB-Code_Block\ni\tI-Code_Block\ti\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nj\tI-Code_Block\tj\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n=>\tB-Code_Block\t=>\tB-Code_Block\nj\tI-Code_Block\tj\tI-Code_Block\n==\tI-Code_Block\t==\tI-Code_Block\ny(i)\tI-Code_Block\ty(i)\tI-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10813825\tO\t10813825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10813825/\tO\thttps://stackoverflow.com/questions/10813825/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\nif\tO\tif\tO\na\tB-Variable_Name\ta\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\ncolumn\tO\tcolumn\tO\nvector\tB-Data_Structure\tvector\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1362\tI-Code_Block\tA_1362\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthis\tO\tthis\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nrow\tO\trow\tO\nvector\tB-Data_Structure\tvector\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1363\tI-Code_Block\tA_1363\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10813825\tO\t10813825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10813825/\tO\thttps://stackoverflow.com/questions/10813825/\tO\n\t\n\t\nIn\tO\tIn\tO\nOctave\tB-Language\tOctave\tO\n(\tO\t(\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nas\tO\tas\tO\nof\tO\tof\tO\n3.6.3\tB-Version\t3.6.3\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nintroduced\tO\tintroduced\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nbroadcasting\tO\tbroadcasting\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nextremely\tO\textremely\tO\neasily\tO\teasily\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1984\tI-Code_Block\tA_1984\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nif\tO\tif\tO\ny\tB-Variable_Name\ty\tO\nis\tO\tis\tO\na\tO\ta\tO\nrow\tO\trow\tO\nmatrix\tB-Data_Structure\tmatrix\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ntranspose\tO\ttranspose\tO\nit\tO\tit\tO\nfirst\tO\tfirst\tO\n-\tO\t-\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nY\tB-Variable_Name\tY\tO\ntransposed\tO\ttransposed\tO\ninstead\tO\tinstead\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\ny==(1:3)')\tB-Code_Block\ty==(1:3)')\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10567163\tO\t10567163\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10567163/\tO\thttps://stackoverflow.com/questions/10567163/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nweb\tO\tweb\tO\ncontrol\tB-Library_Class\tcontrol\tO\nhaving\tO\thaving\tO\ntwo\tO\ttwo\tO\nlabels\tB-Library_Class\tlabels\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\ndisplay\tO\tdisplay\tO\npage\tB-User_Interface_Element\tpage\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\ntext\tB-User_Interface_Element\ttext\tO\nof\tO\tof\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlabels\tB-Library_Class\tlabels\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\na\tO\ta\tO\ncondition\tO\tcondition\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10567163\tO\t10567163\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10567163/\tO\thttps://stackoverflow.com/questions/10567163/\tO\n\t\n\t\nThe\tO\tThe\tO\nanswer\tO\tanswer\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nhow\tO\thow\tO\nyour\tO\tyour\tO\ncontrol\tB-Library_Class\tcontrol\tO\nin\tO\tin\tO\ndefined\tO\tdefined\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nlabel\tB-Library_Class\tlabel\tO\nis\tO\tis\tO\npublic\tB-Data_Type\tpublic\tO\nyou\tO\tyou\tO\nsimply\tO\tsimply\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nlabel\tB-Library_Class\tlabel\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ncontrol\tB-Library_Class\tcontrol\tO\ninstance\tO\tinstance\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1337\tI-Code_Block\tA_1337\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\nprivate\tB-Data_Type\tprivate\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\na\tO\ta\tO\npublic\tB-Data_Type\tpublic\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncontrol\tB-Library_Class\tcontrol\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntext\tB-Library_Variable\ttext\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1338\tI-Code_Block\tA_1338\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1339\tI-Code_Block\tA_1339\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1523043\tO\t1523043\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1523043/\tO\thttps://stackoverflow.com/questions/1523043/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nrename\tO\trename\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\njpg\tB-File_Type\tjpg\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\na\tO\ta\tO\nfolder\tO\tfolder\tO\nto\tO\tto\tO\nuniform\tO\tuniform\tO\nconvention\tO\tconvention\tO\nlike\tO\tlike\tO\nPicture00000001.jpg\tB-File_Name\tPicture00000001.jpg\tO\nwhere\tO\twhere\tO\n00000001\tB-Value\t00000001\tO\nis\tO\tis\tO\na\tO\ta\tO\ncounter\tO\tcounter\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nwalk\tO\twalk\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npark\tO\tpark\tO\nin\tO\tin\tO\nC#\tB-Language\tC#\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nthink\tO\tthink\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nbread\tO\tbread\tO\nand\tO\tand\tO\nbutter\tO\tbutter\tO\nstuff\tO\tstuff\tO\nthat\tO\tthat\tO\nPowerShell\tB-Application\tPowerShell\tO\nwas\tO\twas\tO\nmade\tO\tmade\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nguessing\tO\tguessing\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_89\tI-Code_Block\tQ_89\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nbefore\tO\tbefore\tO\nI\tO\tI\tO\nhit\tO\thit\tO\nthe\tO\tthe\tO\ngas\tO\tgas\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\n1)\tO\t1)\tO\nformat\tO\tformat\tO\nthe\tO\tthe\tO\ncounter\tO\tcounter\tO\n,\tO\t,\tO\nand\tO\tand\tO\n2)\tO\t2)\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nsense\tO\tsense\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nin\tO\tin\tO\nfact\tO\tfact\tO\neven\tO\teven\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nsounds\tO\tsounds\tO\nmore\tO\tmore\tO\nlike\tO\tlike\tO\nOCD\tO\tOCD\tO\nthan\tO\tthan\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nplease\tO\tplease\tO\nspeak\tO\tspeak\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1523043\tO\t1523043\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1523043/\tO\thttps://stackoverflow.com/questions/1523043/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nFilenameWithOutExtension\tB-Library_Class\tFilenameWithOutExtension\tO\n\t\n$\tB-Code_Block\t$\tO\nf.DirectoryName\tI-Code_Block\tf.DirectoryName\tO\n+\tI-Code_Block\t+\tO\n\"\tI-Code_Block\t\"\tO\n\\\tI-Code_Block\t\\\tO\n\"\tB-Code_Block\t\"\tO\n+\tI-Code_Block\t+\tO\n$\tI-Code_Block\t$\tO\nf.BaseName\tI-Code_Block\tf.BaseName\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1523043\tO\t1523043\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1523043/\tO\thttps://stackoverflow.com/questions/1523043/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nfairly\tO\tfairly\tO\nsimply\tO\tsimply\tO\nin\tO\tin\tO\nPowerShell\tB-Application\tPowerShell\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_144\tI-Code_Block\tA_144\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nbasename\tO\tbasename\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\non\tO\ton\tO\nPowerShell\tB-Application\tPowerShell\tO\n2.0\tB-Version\t2.0\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nBasename\tB-Variable_Name\tBasename\tO\nproperty\tO\tproperty\tO\nthat\tO\tthat\tO\nPowerShell\tB-Application\tPowerShell\tO\nadds\tO\tadds\tO\nto\tO\tto\tO\neach\tO\teach\tO\nFileInfo\tB-Library_Class\tFileInfo\tO\nobject\tO\tobject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_145\tI-Code_Block\tA_145\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\non\tO\ton\tO\nPowerShell\tB-Application\tPowerShell\tO\n1.0\tB-Version\t1.0\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nPowerShell\tB-Application\tPowerShell\tO\nCommunity\tO\tCommunity\tO\nExtensions\tO\tExtensions\tO\nadds\tO\tadds\tO\nthis\tO\tthis\tO\nsame\tO\tsame\tO\nBasename\tB-Variable_Name\tBasename\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nintent\tO\tintent\tO\nis\tO\tis\tO\nto\tO\tto\tO\nappend\tO\tappend\tO\na\tO\ta\tO\ncounter\tO\tcounter\tO\nstring\tB-Data_Type\tstring\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n's\tO\t's\tO\nbasename\tO\tbasename\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nrename\tO\trename\tO\noperation\tO\toperation\tO\nthen\tO\tthen\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_146\tI-Code_Block\tA_146\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44307806\tO\t44307806\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44307806/\tO\thttps://stackoverflow.com/questions/44307806/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nattached\tO\tattached\tO\njoomla\tB-Application\tjoomla\tO\n's\tO\t's\tO\nMenu\tB-User_Interface_Element\tMenu\tO\nmodule\tO\tmodule\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ntemplate\tO\ttemplate\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nneeded\tO\tneeded\tO\nit\tO\tit\tO\nto\tO\tto\tO\nload\tO\tload\tO\nin\tO\tin\tO\nfooter\tB-User_Interface_Element\tfooter\tO\nposition\tO\tposition\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\nanother\tO\tanother\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nget\tO\tget\tO\nadded\tO\tadded\tO\nin\tO\tin\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\npositions\tO\tpositions\tO\nin\tO\tin\tO\nHeader\tB-User_Interface_Element\tHeader\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfooter\tB-User_Interface_Element\tfooter\tO\n..\tO\t..\tO\n.\tO\t.\tO\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nto\tO\tto\tO\nload\tO\tload\tO\na\tO\ta\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nmodule\tO\tmodule\tO\nto\tO\tto\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\npositions\tO\tpositions\tO\nin\tO\tin\tO\na\tO\ta\tO\npage\tB-User_Interface_Element\tpage\tO\n,\tO\t,\tO\nin\tO\tin\tO\nheader\tB-User_Interface_Element\theader\tO\nand\tO\tand\tO\nin\tO\tin\tO\nfooter\tB-User_Interface_Element\tfooter\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nmultiple\tO\tmultiple\tO\npositions\tO\tpositions\tO\nin\tO\tin\tO\nadministrator\tO\tadministrator\tO\nsection\tO\tsection\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nmodule\tO\tmodule\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nscreen\tO\tscreen\tO\nshots\tO\tshots\tO\nare\tO\tare\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44307806\tO\t44307806\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44307806/\tO\thttps://stackoverflow.com/questions/44307806/\tO\n\t\n\t\nFor\tO\tFor\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nJoomla3.x\tB-Application\tJoomla3.x\tO\n:\tO\t:\tO\n\t\nGet\tO\tGet\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nmodules\tO\tmodules\tO\nby\tO\tby\tO\ntemplate\tO\ttemplate\tO\nposition\tO\tposition\tO\n(\tO\t(\tO\nreplace\tO\treplace\tO\nposition\tO\tposition\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\ntemplate\tO\ttemplate\tO\nposition\tO\tposition\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6394\tI-Code_Block\tA_6394\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOther\tO\tOther\tO\nSolution\tO\tSolution\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndefine\tO\tdefine\tO\nposition\tO\tposition\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nand\tO\tand\tO\nassign\tO\tassign\tO\nmodule\tO\tmodule\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nposition\tO\tposition\tO\n\t\nSteps\tO\tSteps\tO\n:\tO\t:\tO\n\t\n1.Customize\tO\t1.Customize\tO\ntemplateDetails.xml\tB-File_Name\ttemplateDetails.xml\tO\nfile\tO\tfile\tO\nadd\tO\tadd\tO\nnewposition\tO\tnewposition\tO\n\t\n2.create\tO\t2.create\tO\nposition\tO\tposition\tO\nin\tO\tin\tO\nindex\tB-File_Name\tindex\tO\nfile\tO\tfile\tO\nof\tO\tof\tO\ntemplate\tO\ttemplate\tO\nin\tO\tin\tO\ntemplates/your_template/index.php\tB-File_Name\ttemplates/your_template/index.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6395\tI-Code_Block\tA_6395\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44307806\tO\t44307806\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44307806/\tO\thttps://stackoverflow.com/questions/44307806/\tO\n\t\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\ncorrectly\tO\tcorrectly\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nsimply\tO\tsimply\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nduplicate\tO\tduplicate\tO\nyour\tO\tyour\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nmodule\tO\tmodule\tO\n(\tO\t(\tO\nin\tO\tin\tO\nextensions->modules\tO\textensions->modules\tO\n)\tO\t)\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nduplicate\tO\tduplicate\tO\nmodule\tO\tmodule\tO\nto\tO\tto\tO\na\tO\ta\tO\nmodule\tO\tmodule\tO\nposition\tO\tposition\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfooter\tB-User_Interface_Element\tfooter\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ntemplate\tO\ttemplate\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nmodule\tO\tmodule\tO\nposition\tO\tposition\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfooter\tB-User_Interface_Element\tfooter\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\none\tO\tone\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n-\tO\t-\tO\nlist\tB-Data_Structure\tlist\tO\nin\tO\tin\tO\ntemplateDetails.xml\tB-File_Name\ttemplateDetails.xml\tO\n,\tO\t,\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nto\tO\tto\tO\nindex.php\tB-File_Name\tindex.php\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ntemplate\tO\ttemplate\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6393\tI-Code_Block\tA_6393\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22948901\tO\t22948901\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22948901/\tO\thttps://stackoverflow.com/questions/22948901/\tO\n\t\n\t\nPYTHON\tB-Language\tPYTHON\tO\n3.3\tB-Version\t3.3\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\nHDD\tB-Device\tHDD\tO\npartitioned\tO\tpartitioned\tO\nwith\tO\twith\tO\nprogrammes\tO\tprogrammes\tO\non\tO\ton\tO\n\"\tB-File_Name\t\"\tO\nC\tI-File_Name\tC\tO\n\"\tI-File_Name\t\"\tO\nand\tO\tand\tO\ndata\tO\tdata\tO\non\tO\ton\tO\n\"\tB-File_Name\t\"\tO\nD\tI-File_Name\tD\tO\n\"\tI-File_Name\t\"\tO\none\tO\tone\tO\nNTFS\tO\tNTFS\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nfat32\tO\tfat32\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ndownloaded\tO\tdownloaded\tO\nexamples\tO\texamples\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npopular\tO\tpopular\tO\nmanuals\tO\tmanuals\tO\nonto\tO\tonto\tO\n\"\tB-File_Name\t\"\tO\nD\tI-File_Name\tD\tO\n\"\tI-File_Name\t\"\tO\n.\tO\t.\tO\n\t\nRunning\tO\tRunning\tO\nsys.path\tB-File_Name\tsys.path\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nshow\tO\tshow\tO\nthese\tO\tthese\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nlooked\tO\tlooked\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsys.path\tB-File_Name\tsys.path\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\npermanently\tO\tpermanently\tO\nadd\tO\tadd\tO\nmy\tO\tmy\tO\n\"\tO\t\"\tO\npath\tO\tpath\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsys.path\tB-File_Name\tsys.path\tO\ncome\tO\tcome\tO\nup\tO\tup\tO\nin\tO\tin\tO\nIDLE\tB-Value\tIDLE\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmaking\tO\tmaking\tO\nchanges\tO\tchanges\tO\nhere\tO\there\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\ntemporary\tO\ttemporary\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nirritation\tO\tirritation\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\ngo\tO\tgo\tO\nlooking\tO\tlooking\tO\n\"\tO\t\"\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nreally\tO\treally\tO\nappreciate\tO\tappreciate\tO\nsome\tO\tsome\tO\ncomments\tO\tcomments\tO\n,\tO\t,\tO\nand\tO\tand\tO\napologize\tO\tapologize\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nhas\tO\thas\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\nanswered\tO\tanswered\tO\nsomewhere\tO\tsomewhere\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22948901\tO\t22948901\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22948901/\tO\thttps://stackoverflow.com/questions/22948901/\tO\n\t\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\n/home/me/mypy\tB-File_Name\t/home/me/mypy\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\n,\tO\t,\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nsource\tO\tsource\tO\n:\tO\t:\tO\nhttp://www.johnny-lin.com/cdat_tips/tips_pylang/path.html\tO\thttp://www.johnny-lin.com/cdat_tips/tips_pylang/path.html\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22948901\tO\t22948901\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22948901/\tO\thttps://stackoverflow.com/questions/22948901/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\nenvironment\tO\tenvironment\tO\nvariable\tO\tvariable\tO\nPYTHONPATH\tB-Library_Variable\tPYTHONPATH\tB-Code_Block\nto\tO\tto\tO\nadjust\tO\tadjust\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\npath\tO\tpath\tO\nPython\tB-Language\tPython\tO\nlooks\tO\tlooks\tO\nfor\tO\tfor\tO\nmodules\tO\tmodules\tO\nwhen\tO\twhen\tO\nimporting\tO\timporting\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9450199\tO\t9450199\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9450199/\tO\thttps://stackoverflow.com/questions/9450199/\tO\n\t\n\t\nso\tO\tso\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\ngoogle\tB-Application\tgoogle\tO\nchrome\tI-Application\tchrome\tO\nextension\tO\textension\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nchromebook\tB-Device\tchromebook\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nidea\tO\tidea\tO\nis\tO\tis\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nmagnifying\tO\tmagnifying\tO\n\"\tO\t\"\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\neffect\tO\teffect\tO\nwherever\tO\twherever\tO\nthe\tO\tthe\tO\nmouse\tB-Device\tmouse\tO\ngoes\tO\tgoes\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nwebpage\tO\twebpage\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nzoom\tO\tzoom\tO\nin\tO\tin\tO\non\tO\ton\tO\ntext/images\tB-User_Interface_Element\ttext/images\tO\nor\tO\tor\tO\nwhatever\tO\twhatever\tO\nthe\tO\tthe\tO\nmouse\tB-Device\tmouse\tO\nhovers\tO\thovers\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\neffect\tO\teffect\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nwebpage\tO\twebpage\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nWhere\tO\tWhere\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nconfused\tO\tconfused\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\na\tO\ta\tO\nchrome\tB-Application\tchrome\tO\nextension\tO\textension\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nwant\tO\twant\tO\nan\tO\tan\tO\nextension\tO\textension\tO\nlike\tO\tlike\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nupper\tO\tupper\tO\nright\tO\tright\tO\ncorner\tO\tcorner\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchrome\tB-Application\tchrome\tO\nbrowser\tI-Application\tbrowser\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nclick\tO\tclick\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nbox\tB-User_Interface_Element\tbox\tO\nor\tO\tor\tO\nmagnifying\tB-User_Interface_Element\tmagnifying\tO\nglass\tI-User_Interface_Element\tglass\tO\n\"\tO\t\"\tO\nwould\tO\twould\tO\nappear\tO\tappear\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nclick\tO\tclick\tO\nand\tO\tand\tO\ndrag\tO\tdrag\tO\nit\tO\tit\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbox\tB-User_Interface_Element\tbox\tO\nwould\tO\twould\tO\ngo\tO\tgo\tO\naway\tO\taway\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nclicked\tO\tclicked\tO\nthe\tO\tthe\tO\nextension\tO\textension\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nonline\tO\tonline\tO\nsearching\tO\tsearching\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\n-\tO\t-\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nmanifest.json\tB-File_Name\tmanifest.json\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\nfile\tO\tfile\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_810\tI-Code_Block\tQ_810\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tO\t}\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ndifferent\tO\tdifferent\tO\nthings\tO\tthings\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nthings\tO\tthings\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nhttp://www.supertecho.com/background.html\tO\thttp://www.supertecho.com/background.html\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nmagnification\tO\tmagnification\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\npopup.html\tB-File_Name\tpopup.html\tO\nfile\tO\tfile\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\npopup.html\tB-File_Name\tpopup.html\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nbackground.html\tB-File_Name\tbackground.html\tO\ncode\tO\tcode\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nnecessary\tO\tnecessary\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n(\tO\t(\tO\nor\tO\tor\tO\nmaybe\tO\tmaybe\tO\nboth\tO\tboth\tO\nis\tO\tis\tO\nneeded\tO\tneeded\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunclear\tO\tunclear\tO\nabout\tO\tabout\tO\nthings\tO\tthings\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nclarify\tO\tclarify\tO\n!\tO\t!\tO\n\t\nThanks\tO\tThanks\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n:-)\tO\t:-)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9450199\tO\t9450199\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9450199/\tO\thttps://stackoverflow.com/questions/9450199/\tO\n\t\n\t\nThe\tO\tThe\tO\nmagnifying\tO\tmagnifying\tO\neffect\tO\teffect\tO\ncode\tO\tcode\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ncontent\tO\tcontent\tO\nscript\tO\tscript\tO\n,\tO\t,\tO\nrunning\tO\trunning\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nDOM\tO\tDOM\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbrowsed\tO\tbrowsed\tO\npages\tB-User_Interface_Element\tpages\tO\n(\tO\t(\tO\neffectively\tO\teffectively\tO\ninjected\tO\tinjected\tO\ninto\tO\tinto\tO\neach\tO\teach\tO\npage\tB-User_Interface_Element\tpage\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nhttp://code.google.com/chrome/extensions/content_scripts.html\tO\thttp://code.google.com/chrome/extensions/content_scripts.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21643393\tO\t21643393\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21643393/\tO\thttps://stackoverflow.com/questions/21643393/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\ninformation\tO\tinformation\tO\nof\tO\tof\tO\n1\tO\t1\tO\nvariable\tO\tvariable\tO\nwith\tO\twith\tO\njavascript\tB-Language\tjavascript\tO\ninto\tO\tinto\tO\nPHP\tB-Language\tPHP\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\ni\tO\ti\tO\nused\tO\tused\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nin\tO\tin\tO\nindex.php\tB-File_Name\tindex.php\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2334\tI-Code_Block\tQ_2334\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\ni\tO\ti\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWhat\tO\tWhat\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21643393\tO\t21643393\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21643393/\tO\thttps://stackoverflow.com/questions/21643393/\tO\n\t\n\t\nalso\tO\talso\tO\n,\tO\t,\tO\nIn\tO\tIn\tO\nusing\tO\tusing\tO\njQuery\tB-Library\tjQuery\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nclosed\tO\tclosed\tO\nthe\tO\tthe\tO\ntag\tO\ttag\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2936\tI-Code_Block\tA_2936\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nclose\tO\tclose\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2937\tI-Code_Block\tA_2937\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21643393\tO\t21643393\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21643393/\tO\thttps://stackoverflow.com/questions/21643393/\tO\n\t\n\t\n$name\tB-Variable_Name\t$name\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\ndefined\tO\tdefined\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\necho\tB-Code_Block\techo\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nif\tO\tif\tO\nstatement\tO\tstatement\tO\n,\tO\t,\tO\nmove\tO\tmove\tO\nit\tO\tit\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nbraces\tO\tbraces\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2935\tI-Code_Block\tA_2935\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\npost\tO\tpost\tO\nto\tO\tto\tO\nsubmit.php\tB-File_Name\tsubmit.php\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nfor\tO\tfor\tO\nphp\tB-File_Name\tphp\tO\n..\tI-File_Name\t..\tO\n.\tI-File_Name\t.\tO\nso\tI-File_Name\tso\tO\nyou\tI-File_Name\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35154661\tO\t35154661\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35154661/\tO\thttps://stackoverflow.com/questions/35154661/\tO\n\t\n\t\nFor\tO\tFor\tO\nhighcharts\tB-Library\thighcharts\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nparse\tO\tparse\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nseries\tO\tseries\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nAPI\tB-Application\tAPI\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4300\tI-Code_Block\tQ_4300\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\na\tO\ta\tO\nteam\tO\tteam\tO\nand\tO\tand\tO\nplayers\tO\tplayers\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsometimes\tO\tsometimes\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nXX\tB-Variable_Name\tXX\tO\n,\tO\t,\tO\nI\tO\tI\tO\nselected\tO\tselected\tO\n4\tO\t4\tO\nteam\tO\tteam\tO\nID\tB-Variable_Name\tID\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nAPI\tB-Application\tAPI\tO\nreturns\tO\treturns\tO\nonly\tO\tonly\tO\n2\tO\t2\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nconsideration\tO\tconsideration\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndifferent\tO\tdifferent\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nseries\tO\tseries\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\nrepresents\tO\trepresents\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nteam\tO\tteam\tO\nscores\tO\tscores\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\none\tO\tone\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nplayers\tO\tplayers\tO\nscores\tO\tscores\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nscore\tO\tscore\tO\neach\tO\teach\tO\nteam\tO\tteam\tO\ndid\tO\tdid\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\ngraphs\tB-Data_Structure\tgraphs\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nAmpserand.js\tB-Library\tAmpserand.js\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbut\tO\tbut\tO\nhe\tO\the\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\ntime\tO\ttime\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nteams\tO\tteams\tO\nselected\tO\tselected\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4301\tI-Code_Block\tQ_4301\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nseries\tO\tseries\tO\ngenerated\tO\tgenerated\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nresult\tO\tresult\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nteam\tO\tteam\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napi\tB-Application\tapi\tO\n's\tO\t's\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nusable\tO\tusable\tO\narray\tB-Data_Structure\tarray\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4302\tI-Code_Block\tQ_4302\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMoreover\tO\tMoreover\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nlooks\tO\tlooks\tO\nredundant\tO\tredundant\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\ntrick\tO\ttrick\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nArray\tB-Data_Structure\tArray\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nmore\tO\tmore\tO\neasily\tO\teasily\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n,\tO\t,\tO\nbig\tO\tbig\tO\nproblem\tO\tproblem\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nhere\tO\there\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35154661\tO\t35154661\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35154661/\tO\thttps://stackoverflow.com/questions/35154661/\tO\n\t\n\t\nDoes\tO\tDoes\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nhttp://jsfiddle.net/ma50685a/5/\tO\thttp://jsfiddle.net/ma50685a/5/\tO\n-\tO\t-\tO\nlooks\tO\tlooks\tO\nstrange\tO\tstrange\tO\n.\tO\t.\tO\n\t\nAnyway\tO\tAnyway\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nsuggest\tO\tsuggest\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nyour\tO\tyour\tO\nif-else\tB-Code_Block\tif-else\tB-Code_Block\nstatements\tO\tstatements\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5029\tI-Code_Block\tA_5029\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmade\tO\tmade\tO\nas\tO\tas\tO\none\tO\tone\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5030\tI-Code_Block\tA_5030\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nsimply\tO\tsimply\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5031\tI-Code_Block\tA_5031\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nCode\tO\tCode\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ntested\tO\ttested\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nsetup\tO\tsetup\tO\nworking\tO\tworking\tO\ndemo\tO\tdemo\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ninfo\tO\tinfo\tO\nyou\tO\tyou\tO\nprovided\tO\tprovided\tO\n,\tO\t,\tO\nsorry\tO\tsorry\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29175\tO\t29175\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29175/\tO\thttps://stackoverflow.com/questions/29175/\tO\n\t\n\t\nOkay\tO\tOkay\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\ntest\tO\ttest\tO\nwebserver\tB-Application\twebserver\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nprivate\tO\tprivate\tO\nnetwork\tO\tnetwork\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nmachine\tO\tmachine\tO\nrunning\tO\trunning\tO\nWindows\tB-Operating_System\tWindows\tO\n2000\tB-Version\t2000\tO\nPro\tI-Version\tPro\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nan\tO\tan\tO\nASP.NET\tB-Library\tASP.NET\tO\napp\tO\tapp\tO\nthrough\tO\tthrough\tO\nIIS\tB-Application\tIIS\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwrote\tO\twrote\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nwebpage\tO\twebpage\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nregistry\tO\tregistry\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\ncertain\tO\tcertain\tO\nsettings\tO\tsettings\tO\n(\tO\t(\tO\nconnection\tO\tconnection\tO\nstrings\tB-Data_Type\tstrings\tO\n,\tO\t,\tO\npotentially\tO\tpotentially\tO\nvolatile\tO\tvolatile\tO\nlocations\tO\tlocations\tO\nof\tO\tof\tO\nother\tO\tother\tO\nweb\tO\tweb\tO\nservices\tO\tservices\tO\n,\tO\t,\tO\npaths\tO\tpaths\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\nfilesystem\tO\tfilesystem\tO\nwhere\tO\twhere\tO\ncertain\tO\tcertain\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\nstored\tO\tstored\tO\netc\tO\tetc\tO\n..\tO\t..\tO\n.\tO\t.\tO\n)\tO\t)\tO\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\nfine\tO\tfine\tO\nwhen\tO\twhen\tO\ntesting\tO\ttesting\tO\nwith\tO\twith\tO\nVStudio.NET\tB-Application\tVStudio.NET\tO\n2005\tB-Version\t2005\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nhas\tO\thas\tO\nelevated\tO\televated\tO\nprivileges\tO\tprivileges\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nrunning\tO\trunning\tO\nit\tO\tit\tO\non\tO\ton\tO\nIIS\tB-Application\tIIS\tO\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\n\"\tB-Output_Block\t\"\tO\nAccess\tI-Output_Block\tAccess\tO\nto\tI-Output_Block\tto\tO\nthe\tI-Output_Block\tthe\tO\nregistry\tI-Output_Block\tregistry\tO\nkey\tI-Output_Block\tkey\tO\n'\tI-Output_Block\t'\tO\nHKEY_LOCAL_MACHINE\\Software\tI-Output_Block\tHKEY_LOCAL_MACHINE\\Software\tO\n'\tB-Output_Block\t'\tO\nis\tI-Output_Block\tis\tO\ndenied\tI-Output_Block\tdenied\tO\n.\tI-Output_Block\t.\tO\n\"\tI-Output_Block\t\"\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nsuggests\tO\tsuggests\tO\nthe\tO\tthe\tO\nIIS\tB-Application\tIIS\tO\nuser\tO\tuser\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nread\tO\tread\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nregistry\tO\tregistry\tO\n(\tO\t(\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\ndo\tO\tdo\tO\nreads\tO\treads\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nnever\tO\tnever\tO\nwrites\tO\twrites\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nlike\tO\tlike\tO\n\"\tO\t\"\tO\nokay\tO\tokay\tO\n,\tO\t,\tO\nsimple\tO\tsimple\tO\nenough\tO\tenough\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\njust\tO\tjust\tO\ngo\tO\tgo\tO\ngive\tO\tgive\tO\nthat\tO\tthat\tO\nuser\tO\tuser\tO\nrights\tO\trights\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nregistry\tO\tregistry\tO\nthrough\tO\tthrough\tO\nregedit\tB-Application\tregedit\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nan\tO\tan\tO\noption\tO\toption\tO\nanywhere\tO\tanywhere\tO\nin\tO\tin\tO\nregedit\tB-Application\tregedit\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nsecurity\tO\tsecurity\tO\nsettings\tO\tsettings\tO\n..\tO\t..\tO\n.\tO\t.\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\ngot\tO\tgot\tO\nme\tO\tme\tO\nthinking\tO\tthinking\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\n've\tO\t've\tO\never\tO\tever\tO\nactually\tO\tactually\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nsecurity\tO\tsecurity\tO\nsettings\tO\tsettings\tO\nfor\tO\tfor\tO\nregistry\tO\tregistry\tO\nhives/keys\tO\thives/keys\tO\nbefore\tO\tbefore\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHalf\tO\tHalf\tO\nan\tO\tan\tO\nhour\tO\thour\tO\nof\tO\tof\tO\nsearching\tO\tsearching\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nlater\tO\tlater\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nfound\tO\tfound\tO\nany\tO\tany\tO\nusable\tO\tusable\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nsubject\tO\tsubject\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nwondering\tO\twondering\tO\nis\tO\tis\tO\n..\tO\t..\tO\n.\tO\t.\tO\nhow\tO\thow\tO\nDO\tO\tDO\tO\nyou\tO\tyou\tO\nchange\tO\tchange\tO\nsecurity\tO\tsecurity\tO\nrights\tO\trights\tO\nto\tO\tto\tO\nportions\tO\tportions\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nregistry\tO\tregistry\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstumped\tO\tstumped\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nmy\tO\tmy\tO\nability\tO\tability\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\non\tO\ton\tO\nGoogle\tB-Website\tGoogle\tO\nis\tO\tis\tO\nfailing\tO\tfailing\tO\nme\tO\tme\tO\nutterly\tO\tutterly\tO\n..\tO\t..\tO\n.\tO\t.\tO\nand\tO\tand\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nsigned\tO\tsigned\tO\nup\tO\tup\tO\nhere\tO\there\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\nhere\tO\there\tO\nknew\tO\tknew\tO\n.\tO\t.\tO\n\t\n=)\tO\t=)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29175\tO\t29175\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29175/\tO\thttps://stackoverflow.com/questions/29175/\tO\n\t\n\t\nOh\tO\tOh\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\ntry\tO\ttry\tO\nthat\tO\tthat\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nrealize\tO\trealize\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nremotely\tO\tremotely\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nregistry\tO\tregistry\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nwork\tO\twork\tO\n..\tO\t..\tO\n.\tO\t.\tO\nit\tO\tit\tO\njust\tO\tjust\tO\ntook\tO\ttook\tO\nseveral\tO\tseveral\tO\nminutes\tO\tminutes\tO\nto\tO\tto\tO\nrespond\tO\trespond\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\npermissions\tO\tpermissions\tO\nremotely\tO\tremotely\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nremote\tO\tremote\tO\nconnection\tO\tconnection\tO\nidea\tO\tidea\tO\ndid\tO\tdid\tO\nit\tO\tit\tO\n!\tO\t!\tO\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\ngood\tO\tgood\tO\n!\tO\t!\tO\n\t\nThanks\tO\tThanks\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nnever\tO\tnever\tO\nrealized\tO\trealized\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nremote\tO\tremote\tO\nconnect\tO\tconnect\tO\nwith\tO\twith\tO\nRegEdit\tB-Application\tRegEdit\tO\n..\tO\t..\tO\n.\tO\t.\tO\nyou\tO\tyou\tO\nlearn\tO\tlearn\tO\nsomething\tO\tsomething\tO\nnew\tO\tnew\tO\nevery\tO\tevery\tO\nday\tO\tday\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nsay\tO\tsay\tO\n!\tO\t!\tO\n\t\n=)\tO\t=)\tO\nThanks\tO\tThanks\tO\nagain\tO\tagain\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nassistance\tO\tassistance\tO\n!\tO\t!\tO\n\t\n=)\tO\t=)\tO\n\t\nOn\tO\tOn\tO\nanother\tO\tanother\tO\nnote\tO\tnote\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nabout\tO\tabout\tO\ncopying\tO\tcopying\tO\nthe\tO\tthe\tO\nXP\tB-Version\tXP\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nRegEdit\tB-Application\tRegEdit\tO\nto\tO\tto\tO\nWindows\tB-Operating_System\tWindows\tO\n2000\tB-Version\t2000\tO\n..\tO\t..\tO\n.\tO\t.\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nsafe\tO\tsafe\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nthey\tO\tthey\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ncoded\tO\tcoded\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nway\tO\tway\tO\nas\tO\tas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nincompatible\tO\tincompatible\tO\n..\tO\t..\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nassuming\tO\tassuming\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\n.\tO\t.\tO\n\t\n=)\tO\t=)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29175\tO\t29175\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29175/\tO\thttps://stackoverflow.com/questions/29175/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nhaving\tO\thaving\tO\ntouble\tO\ttouble\tO\nwith\tO\twith\tO\nRegEdit\tB-Application\tRegEdit\tO\nin\tO\tin\tO\nWindows\tB-Operating_System\tWindows\tO\n2000\tB-Version\t2000\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCopy\tO\tCopy\tO\nthe\tO\tthe\tO\nWindows\tB-Operating_System\tWindows\tO\nXP\tB-Version\tXP\tO\nRegEdt32.exe\tB-File_Name\tRegEdt32.exe\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nWindows\tB-Operating_System\tWindows\tO\n2000\tB-Version\t2000\tO\nMachine\tO\tMachine\tO\n\t\nUsing\tO\tUsing\tO\na\tO\ta\tO\nWindows\tB-Operating_System\tWindows\tO\nXP\tB-Version\tXP\tO\nMachine\tO\tMachine\tO\n,\tO\t,\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nWindows\tB-Operating_System\tWindows\tO\n2000\tB-Version\t2000\tO\nregistry\tO\tregistry\tO\nremotely\tO\tremotely\tO\n:\tO\t:\tO\nFile\tO\tFile\tO\n>\tO\t>\tO\nConnect\tO\tConnect\tO\nNetwork\tO\tNetwork\tO\nRegistry\tO\tRegistry\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10688736\tO\t10688736\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10688736/\tO\thttps://stackoverflow.com/questions/10688736/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nuploading\tO\tuploading\tO\npicture\tB-User_Interface_Element\tpicture\tO\nfrom\tO\tfrom\tO\nandroid\tB-Application\tandroid\tO\navd\tI-Application\tavd\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_967\tI-Code_Block\tQ_967\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nadds\tO\tadds\tO\nfew\tO\tfew\tO\nextra\tO\textra\tO\nheader\tO\theader\tO\ninfo\tO\tinfo\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nlike\tO\tlike\tO\nfollowing\tO\tfollowing\tO\n\t\n--*\tO\t--*\tO\n\t\nContent-Disposition\tB-Code_Block\tContent-Disposition\tO\n:\tI-Code_Block\t:\tO\nform-data\tI-Code_Block\tform-data\tO\n;\tI-Code_Block\t;\tO\nname\tI-Code_Block\tname\tO\n=\tI-Code_Block\t=\tO\n\"\tI-Code_Block\t\"\tO\nvalue1\tI-Code_Block\tvalue1\tO\n\"\tI-Code_Block\t\"\tO\n;\tI-Code_Block\t;\tO\n\t\ntest\tO\ttest\tO\n\t\n--*\tO\t--*\tO\n\t\nContent-Disposition\tB-Code_Block\tContent-Disposition\tO\n:\tI-Code_Block\t:\tO\nform-data\tI-Code_Block\tform-data\tO\n;\tI-Code_Block\t;\tO\nname\tI-Code_Block\tname\tO\n=\tI-Code_Block\t=\tO\n\"\tI-Code_Block\t\"\tO\nvalue2\tI-Code_Block\tvalue2\tO\n\"\tI-Code_Block\t\"\tO\n;\tI-Code_Block\t;\tO\n\t\nparam\tO\tparam\tO\n\t\n--*\tO\t--*\tO\n\t\nContent-Disposition\tB-Code_Block\tContent-Disposition\tO\n:\tI-Code_Block\t:\tO\nform-data\tI-Code_Block\tform-data\tO\n;\tI-Code_Block\t;\tO\nname\tI-Code_Block\tname\tO\n=\tI-Code_Block\t=\tO\n\"\tI-Code_Block\t\"\tO\nfile\tI-Code_Block\tfile\tO\n\"\tI-Code_Block\t\"\tO\n;\tI-Code_Block\t;\tO\nfilename\tI-Code_Block\tfilename\tO\n=\tI-Code_Block\t=\tO\n\"\tI-Code_Block\t\"\tO\n1.jpg\tI-Code_Block\t1.jpg\tO\n\"\tO\t\"\tO\n\t\nContent-Type\tO\tContent-Type\tO\n:\tO\t:\tO\nimage/jpeg\tB-User_Interface_Element\timage/jpeg\tO\n\t\ntherefore\tO\ttherefore\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nstored\tO\tstored\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nserver\tB-Device\tserver\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nopened\tO\topened\tO\nas\tO\tas\tO\nJPEG\tB-File_Type\tJPEG\tO\nImage\tO\tImage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\noptions\tO\toptions\tO\nobject\tO\tobject\tO\nis\tO\tis\tO\nresponsible\tO\tresponsible\tO\nfor\tO\tfor\tO\nadding\tO\tadding\tO\nthose\tO\tthose\tO\nextra\tO\textra\tO\nheader\tO\theader\tO\ninfo\tO\tinfo\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\ntried\tO\ttried\tO\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\noptions\tO\toptions\tO\nobject\tO\tobject\tO\nby\tO\tby\tO\nassigning\tO\tassigning\tO\nnull\tB-Value\tnull\tO\n.\tO\t.\tO\n\t\nbut\tO\tbut\tO\nstill\tO\tstill\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nfew\tO\tfew\tO\nextra\tO\textra\tO\ninfo\tO\tinfo\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nLooking\tO\tLooking\tO\nforward\tO\tforward\tO\nfor\tO\tfor\tO\nsuggestions\tO\tsuggestions\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\nfile\tO\tfile\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nextra\tO\textra\tO\ninfo\tO\tinfo\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10688736\tO\t10688736\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10688736/\tO\thttps://stackoverflow.com/questions/10688736/\tO\n\t\n\t\nWell\tO\tWell\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ntake\tO\ttake\tO\nout\tO\tout\tO\nthese\tO\tthese\tO\nlines\tO\tlines\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1348\tI-Code_Block\tA_1348\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nyou\tO\tyou\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1349\tI-Code_Block\tA_1349\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nstill\tO\tstill\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1350\tI-Code_Block\tA_1350\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nas\tO\tas\tO\nthe\tO\tthe\tO\nweb\tB-Application\tweb\tO\nserver\tI-Application\tserver\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nincoming\tO\tincoming\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nweb\tB-Application\tweb\tO\nserver\tI-Application\tserver\tO\nend\tO\tend\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\nreceives\tO\treceives\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10688736\tO\t10688736\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10688736/\tO\thttps://stackoverflow.com/questions/10688736/\tO\n\t\n\t\ntry\tO\ttry\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1347\tI-Code_Block\tA_1347\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16956686\tO\t16956686\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16956686/\tO\thttps://stackoverflow.com/questions/16956686/\tO\n\t\n\t\nand\tO\tand\tO\nwhat\tO\twhat\tO\ndo\tO\tdo\tO\nthese\tO\tthese\tO\nmean\tO\tmean\tO\n?\tO\t?\tO\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\n.jjt\tB-File_Type\t.jjt\tO\nfile.I\tO\tfile.I\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nmake\tO\tmake\tO\nany\tO\tany\tO\nunderstand\tO\tunderstand\tO\nof\tO\tof\tO\nit\tO\tit\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\n`\tO\t`\tO\n\t\njjtThis.setName()\tB-Library_Function\tjjtThis.setName()\tO\n;\tO\t;\tO\n\t\njjtThis.type\tB-Library_Variable\tjjtThis.type\tO\n;\tO\t;\tO\n\t\njjtThis.setLength()\tB-Library_Function\tjjtThis.setLength()\tO\n;\tO\t;\tO\n\t\njjtThis.correlationName\tB-Library_Variable\tjjtThis.correlationName\tO\n;\tO\t;\tO\n\t\njjtThis.setScale()\tB-Library_Function\tjjtThis.setScale()\tO\n;\tO\t;\tO\n\t\njjtThis.setPrecision()\tB-Library_Function\tjjtThis.setPrecision()\tO\n;\tO\t;\tO\n\t\njjtThis.add()\tB-Library_Function\tjjtThis.add()\tO\n;\tO\t;\tO\n\t\njjtThis.tableName\tB-Library_Variable\tjjtThis.tableName\tO\n;\tO\t;\tO\n\t\njjtThis.name\tB-Library_Variable\tjjtThis.name\tO\n;\tO\t;\tO\n\t\njjtThis.position\tB-Library_Variable\tjjtThis.position\tO\n;\tO\t;\tO\n\t\njjtThis.length\tB-Library_Variable\tjjtThis.length\tO\n;\tO\t;\tO\n\t\n..\tO\t..\tO\n.\tO\t.\tO\n\t\n`\tO\t`\tO\n\t\nwhat\tO\twhat\tO\ndo\tO\tdo\tO\nthese\tO\tthese\tO\nmethods\tO\tmethods\tO\nand\tO\tand\tO\nfields\tO\tfields\tO\nof\tO\tof\tO\njjtThis\tB-Library_Class\tjjtThis\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\n?\tO\t?\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nmeanings\tO\tmeanings\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nthings\tO\tthings\tO\n?..\tO\t?..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16956686\tO\t16956686\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16956686/\tO\thttps://stackoverflow.com/questions/16956686/\tO\n\t\n\t\nIt\tO\tIt\tO\nrefers\tO\trefers\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nnode\tO\tnode\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nhttps://javacc.java.net/doc/JJTree.html\tO\thttps://javacc.java.net/doc/JJTree.html\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetail\tO\tdetail\tO\n.\tO\t.\tO\n\t\n"
  },
  {
    "path": "resources/annotated_ner_data/StackOverflow/train.txt",
    "content": "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.com/questions/37985879/\tO\thttps://stackoverflow.com/questions/37985879/\tO\n\t\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\n2\tO\t2\tO\ntables\tB-Data_Structure\ttables\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4780\tI-Code_Block\tQ_4780\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nresult\tO\tresult\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4781\tI-Code_Block\tQ_4781\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nquery\tO\tquery\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nadjusted\tO\tadjusted\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4782\tI-Code_Block\tQ_4782\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSQLFIDDLE\tB-Application\tSQLFIDDLE\tO\n:\tO\t:\tO\nhttp://sqlfiddle.com/#!9/11093\tO\thttp://sqlfiddle.com/#!9/11093\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37985879\tO\t37985879\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37985879/\tO\thttps://stackoverflow.com/questions/37985879/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\nclose\tO\tclose\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nwhere\tB-Code_Block\twhere\tB-Code_Block\nclause\tO\tclause\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5464\tI-Code_Block\tA_5464\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nA\tO\tA\tO\nmore\tO\tmore\tO\ntraditional\tO\ttraditional\tO\napproach\tO\tapproach\tO\nuses\tO\tuses\tO\nNOT\tB-Code_Block\tNOT\tB-Code_Block\nEXISTS\tI-Code_Block\tEXISTS\tI-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5465\tI-Code_Block\tA_5465\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nSQL\tB-Application\tSQL\tO\nFiddle\tI-Application\tFiddle\tO\nillustrating\tO\tillustrating\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25481513\tO\t25481513\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25481513/\tO\thttps://stackoverflow.com/questions/25481513/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nchat\tO\tchat\tO\nprogram\tO\tprogram\tO\nafter\tO\tafter\tO\nreading\tO\treading\tO\nBeej\tO\tBeej\tO\n's\tO\t's\tO\nguide\tO\tguide\tO\nto\tO\tto\tO\nprogramming\tO\tprogramming\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nthinking\tO\tthinking\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nbasics\tO\tbasics\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\nrecv()\tB-Library_Function\trecv()\tO\nand\tO\tand\tO\nget\tO\tget\tO\ninput\tO\tinput\tO\nfor\tO\tfor\tO\nsend()\tB-Library_Function\tsend()\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nclient\tO\tclient\tO\ncan\tO\tcan\tO\nalways\tO\talways\tO\nwrite\tO\twrite\tO\nsomething\tO\tsomething\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nalso\tO\talso\tO\nprint\tO\tprint\tO\nsomething\tO\tsomething\tO\nwhile\tO\twhile\tO\nhe\tO\the\tO\n's\tO\t's\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ninput\tO\tinput\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nabout\tO\tabout\tO\nthreads\tO\tthreads\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nlearned\tO\tlearned\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\nabout\tO\tabout\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\n2\tO\t2\tO\nsimple\tO\tsimple\tO\nthreads\tO\tthreads\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\n,\tO\t,\tO\nprints\tO\tprints\tO\na\tO\ta\tO\nsentence\tO\tsentence\tO\nevery\tO\tevery\tO\n3\tO\t3\tO\nseconds\tO\tseconds\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\none\tO\tone\tO\nget\tO\tget\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nlittle\tO\tlittle\tO\nprogram\tO\tprogram\tO\nof-course\tO\tof-course\tO\nhad\tO\thad\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nissues\tO\tissues\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nex\tO\tex\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nstarted\tO\tstarted\tO\ntyping\tO\ttyping\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nthread\tO\tthread\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nsomething\tO\tsomething\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nsimply\tO\tsimply\tO\ntake\tO\ttake\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwrote\tO\twrote\tO\n,\tO\t,\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nitself\tO\titself\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nrecreate\tO\trecreate\tO\nit\tO\tit\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhope\tO\thope\tO\nyou\tO\tyou\tO\nguys\tO\tguys\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2894\tI-Code_Block\tQ_2894\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25481513\tO\t25481513\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25481513/\tO\thttps://stackoverflow.com/questions/25481513/\tO\n\t\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nundefined\tO\tundefined\tO\nbehavior\tO\tbehavior\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\nhaven\tO\thaven\tO\nan\tO\tan\tO\nuninitialized\tO\tuninitialized\tO\npointer\tO\tpointer\tO\ninput\tB-Function_Name\tinput\tB-Code_Block\nin\tO\tin\tO\ngetinput\tB-Function_Name\tgetinput\tB-Code_Block\n.\tO\t.\tO\n\t\nUninitialized\tO\tUninitialized\tO\n(\tO\t(\tO\nnon-static\tB-Data_Type\tnon-static\tO\n)\tO\t)\tO\nlocal\tO\tlocal\tO\nvariables\tO\tvariables\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nindeterminate\tO\tindeterminate\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nrandom\tO\trandom\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nindeterminate\tO\tindeterminate\tO\n(\tO\t(\tO\nand\tO\tand\tO\nseemingly\tO\tseemingly\tO\nrandom\tO\trandom\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nscanf\tB-Library_Function\tscanf\tB-Code_Block\ncall\tO\tcall\tO\nwill\tO\twill\tO\nwrite\tO\twrite\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nunknown\tO\tunknown\tO\nplace\tO\tplace\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\n,\tO\t,\tO\noverwriting\tO\toverwriting\tO\nwhatever\tO\twhatever\tO\nwas\tO\twas\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\neasily\tO\teasily\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nmaking\tO\tmaking\tO\ninput\tB-Function_Name\tinput\tB-Code_Block\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40639751\tO\t40639751\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40639751/\tO\thttps://stackoverflow.com/questions/40639751/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nC#\tB-Language\tC#\tO\n/.NET\tB-Library\t/.NET\tO\napplication\tO\tapplication\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmultiple\tO\tmultiple\tO\nthreads\tO\tthreads\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nconcurrently\tO\tconcurrently\tO\n,\tO\t,\tO\n6\tO\t6\tO\nthreads\tO\tthreads\tO\n)\tO\t)\tO\n,\tO\t,\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nfollowing\tO\tfollowing\tO\nupdate\tO\tupdate\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5130\tI-Code_Block\tQ_5130\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nrun\tO\trun\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntransaction\tO\ttransaction\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\ntables\tO\ttables\tO\nhave\tO\thave\tO\n3+mio\tO\t3+mio\tO\nrecords\tO\trecords\tO\n.\tO\t.\tO\n\t\nClustered\tO\tClustered\tO\nkey\tO\tkey\tO\nis\tO\tis\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n[\tO\t[\tO\nId\tB-Variable_Name\tId\tO\n]\tO\t]\tO\nfield\tO\tfield\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nnon-clustered\tO\tnon-clustered\tO\nindexes\tO\tindexes\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nFunny\tO\tFunny\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nmanually\tO\tmanually\tO\nchecked\tO\tchecked\tO\nand\tO\tand\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nparticular\tO\tparticular\tO\nexample\tO\texample\tO\nwith\tO\twith\tO\n3+mio\tO\t3+mio\tO\nrecords\tO\trecords\tO\ncWrh\tB-Variable_Name\tcWrh\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nOptions\tO\tOptions\tO\n]\tO\t]\tO\nand\tO\tand\tO\ncStg\tB-Variable_Name\tcStg\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nOptions\tO\tOptions\tO\n]\tO\t]\tO\nare\tO\tare\tO\nalways\tO\talways\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nso\tO\tso\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattaching\tO\tattaching\tO\nthe\tO\tthe\tO\ndeadlog\tO\tdeadlog\tO\ngraph\tB-Data_Structure\tgraph\tO\n,\tO\t,\tO\nredacted\tO\tredacted\tO\nvalues\tO\tvalues\tO\nsay\tO\tsay\tO\nDB.wrh.Cars\tB-Variable_Name\tDB.wrh.Cars\tO\n:\tO\t:\tO\n\t\nDeadlock\tO\tDeadlock\tO\ngraph\tB-Data_Structure\tgraph\tO\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nparticular\tO\tparticular\tO\nexample\tO\texample\tO\nconcurrency\tO\tconcurrency\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\nadding\tO\tadding\tO\nany\tO\tany\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\n\"\tB-Value\t\"\tO\nReset\tI-Value\tReset\tO\n\"\tI-Value\t\"\tO\nquery\tO\tquery\tO\n;\tO\t;\tO\nthe\tO\tthe\tO\n\"\tB-Value\t\"\tO\nRecalculate\tI-Value\tRecalculate\tO\n\"\tI-Value\t\"\tO\nquery\tO\tquery\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nsome\tO\tsome\tO\n[\tO\t[\tO\nOptions\tO\tOptions\tO\n]\tO\t]\tO\ncalculation\tO\tcalculation\tO\nin\tO\tin\tO\nC#\tB-Language\tC#\tO\n,\tO\t,\tO\nbulk\tO\tbulk\tO\ninserts\tO\tinserts\tO\nback\tO\tback\tO\ninto\tO\tinto\tO\nSQL\tB-Language\tSQL\tO\nand\tO\tand\tO\nupdates\tO\tupdates\tO\nlater\tO\tlater\tO\nin\tO\tin\tO\na\tO\ta\tO\nconcurrent\tO\tconcurrent\tO\nmode\tO\tmode\tO\nspeeds\tO\tspeeds\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nthing\tO\tthing\tO\nsignificantly\tO\tsignificantly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nstick\tO\tstick\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nconcurrent\tO\tconcurrent\tO\napproach\tO\tapproach\tO\nregardless\tO\tregardless\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\n(\tO\t(\tO\nsimple\tO\tsimple\tO\nreset\tO\treset\tO\nvs\tO\tvs\tO\nCPU\tB-Device\tCPU\tO\nintensive\tO\tintensive\tO\nwork\tO\twork\tO\n)\tO\t)\tO\nif\tO\tif\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nsuggestion\tO\tsuggestion\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nwork\tO\twork\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\ndeadlock\tO\tdeadlock\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40639751\tO\t40639751\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40639751/\tO\thttps://stackoverflow.com/questions/40639751/\tO\n\t\n\t\nAs\tO\tAs\tO\nsuggested\tO\tsuggested\tO\nby\tO\tby\tO\n@KamranFarzami\tB-User_Name\t@KamranFarzami\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nby\tO\tby\tO\n@Grantly\tB-User_Name\t@Grantly\tO\nsolved\tO\tsolved\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npoint\tO\tpoint\tO\nfor\tO\tfor\tO\nanswering\tO\tanswering\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\ngoes\tO\tgoes\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nTransaction\tO\tTransaction\tO\nIsolation\tO\tIsolation\tO\nLevel\tO\tLevel\tO\nof\tO\tof\tO\nSNAPSHOT\tO\tSNAPSHOT\tO\nprevents\tO\tprevents\tO\ndeadlocks\tO\tdeadlocks\tO\nfrom\tO\tfrom\tO\nocurring\tO\tocurring\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29336940\tO\t29336940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29336940/\tO\thttps://stackoverflow.com/questions/29336940/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\nam\tO\tam\tO\nstruggling\tO\tstruggling\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nfiddle\tO\tfiddle\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\n\"\tB-Value\t\"\tO\nx2\tI-Value\tx2\tO\n\"\tI-Value\t\"\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\n1\tB-Value\t1\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n1\tB-Value\t1\tO\nx2\tI-Value\tx2\tO\n\t\nUse\tO\tUse\tO\nJavascript\tB-Language\tJavascript\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nabove\tO\tabove\tO\nthe\tO\tthe\tO\nx2\tB-Value\tx2\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nwill\tO\twill\tO\ndouble\tO\tdouble\tO\n.\tO\t.\tO\n\t\nSend\tO\tSend\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfiddle\tB-Application\tfiddle\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthus\tO\tthus\tO\nfar\tO\tfar\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntargeting\tO\ttargeting\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nvia\tO\tvia\tO\nJS\tB-Language\tJS\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nupdated\tO\tupdated\tO\nvalue\tO\tvalue\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nx2\tB-Value\tx2\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3492\tI-Code_Block\tQ_3492\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29336940\tO\t29336940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29336940/\tO\thttps://stackoverflow.com/questions/29336940/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4141\tI-Code_Block\tA_4141\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29336940\tO\t29336940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29336940/\tO\thttps://stackoverflow.com/questions/29336940/\tO\n\t\n\t\nLook\tO\tLook\tO\nat\tO\tat\tO\nwhat\tO\twhat\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\ndoing\tO\tdoing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4140\tI-Code_Block\tA_4140\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nmultiplying\tO\tmultiplying\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nby\tO\tby\tO\ntwo\tO\ttwo\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nNOT\tO\tNOT\tO\nreading\tO\treading\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ninnerHTML\tB-Library_Function\tinnerHTML\tB-Code_Block\nor\tO\tor\tO\ntextContent\tB-Library_Function\ttextContent\tB-Code_Block\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nparseInt()\tB-Library_Function\tparseInt()\tB-Code_Block\nor\tO\tor\tO\nparseFloat()\tB-Library_Function\tparseFloat()\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31336417\tO\t31336417\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31336417/\tO\thttps://stackoverflow.com/questions/31336417/\tO\n\t\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\noverride\tO\toverride\tO\nparent\tO\tparent\tO\nclass\tO\tclass\tO\n's\tO\t's\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nsuper()\tB-Library_Function\tsuper()\tB-Code_Block\nto\tO\tto\tO\navoid\tO\tavoid\tO\nmention\tO\tmention\tO\nof\tO\tof\tO\nparent\tO\tparent\tO\nclass\tO\tclass\tO\n's\tO\t's\tO\nname\tO\tname\tO\n-\tO\t-\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nclear\tO\tclear\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhat\tO\twhat\tO\nabout\tO\tabout\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nwe\tO\twe\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nin\tO\tin\tO\nsubclass\tO\tsubclass\tO\nsome\tO\tsome\tO\nfunction\tO\tfunction\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nparent\tO\tparent\tO\nclass\tO\tclass\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\npreferable\tO\tpreferable\tO\nway\tO\tway\tO\n:\tO\t:\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsuper().parent_method()\tB-Function_Name\tsuper().parent_method()\tB-Code_Block\nor\tO\tor\tO\nself.parent_method()\tB-Function_Name\tself.parent_method()\tB-Code_Block\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nno\tO\tno\tO\ndifference\tO\tdifference\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3770\tI-Code_Block\tQ_3770\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31336417\tO\t31336417\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31336417/\tO\thttps://stackoverflow.com/questions/31336417/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nactually\tO\tactually\tO\nsuper()\tB-Library_Function\tsuper()\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nsyntactic\tO\tsyntactic\tO\nsugar\tO\tsugar\tO\n,\tO\t,\tO\nits\tO\tits\tO\npurpose\tO\tpurpose\tO\nis\tO\tis\tO\nto\tO\tto\tO\ninvoke\tO\tinvoke\tO\nparent\tO\tparent\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsuper()\tB-Library_Function\tsuper()\tB-Code_Block\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\na\tO\ta\tO\nparent\tO\tparent\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsuper()\tB-Library_Function\tsuper()\tB-Code_Block\nwhen\tO\twhen\tO\ninstead\tO\tinstead\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\noverwrite\tO\toverwrite\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndifference\tO\tdifference\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nextra\tO\textra\tO\nbehavior\tO\tbehavior\tO\n(\tO\t(\tO\naka\tO\taka\tO\ncode\tO\tcode\tO\nexecution\tO\texecution\tO\n)\tO\t)\tO\nbefore\tO\tbefore\tO\nor\tO\tor\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nimplementation\tO\timplementation\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\ncompletely\tO\tcompletely\tO\ndifferent\tO\tdifferent\tO\nimplementation\tO\timplementation\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nself.method_name()\tB-Function_Name\tself.method_name()\tB-Code_Block\nin\tO\tin\tO\nan\tO\tan\tO\noverride\tO\toverride\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nrecursion\tO\trecursion\tO\nerror\tO\terror\tO\n!\tO\t!\tO\n\t\n(\tO\t(\tO\nRuntimeError\tB-Error_Name\tRuntimeError\tB-Code_Block\n:\tO\t:\tI-Code_Block\nmaximum\tO\tmaximum\tI-Code_Block\nrecursion\tO\trecursion\tI-Code_Block\ndepth\tO\tdepth\tI-Code_Block\nexceeded\tO\texceeded\tI-Code_Block\n)\tO\t)\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4468\tI-Code_Block\tA_4468\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGiven\tO\tGiven\tO\na\tO\ta\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\nA\tB-Class_Name\tA\tB-Code_Block\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nm\tB-Function_Name\tm\tB-Code_Block\n,\tO\t,\tO\nB\tB-Class_Name\tB\tB-Code_Block\nextends\tO\textends\tO\nA\tB-Class_Name\tA\tB-Code_Block\nby\tO\tby\tO\noverriding\tO\toverriding\tO\nm\tB-Function_Name\tm\tB-Code_Block\n,\tO\t,\tO\nC\tB-Class_Name\tC\tB-Code_Block\nextends\tO\textends\tO\nA\tB-Class_Name\tA\tB-Code_Block\nby\tO\tby\tO\noverwriting\tO\toverwriting\tO\nm\tB-Function_Name\tm\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nD\tB-Class_Name\tD\tB-Code_Block\ngenerates\tO\tgenerates\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n!\tO\t!\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nrealized\tO\trealized\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nactually\tO\tactually\tO\nhave\tO\thave\tO\n2\tO\t2\tO\ndifferent\tO\tdifferent\tO\nmethods\tO\tmethods\tO\n(\tO\t(\tO\ntest_a\tB-Function_Name\ttest_a\tB-Code_Block\nand\tO\tand\tO\ntest_b\tB-Function_Name\ttest_b\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nvalid\tO\tvalid\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nregarding\tO\tregarding\tO\nyour\tO\tyour\tO\nspecific\tO\tspecific\tO\nscenario\tO\tscenario\tO\n:\tO\t:\tO\n\t\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\nself.test_a()\tB-Function_Name\tself.test_a()\tB-Code_Block\nunless\tO\tunless\tO\nyou\tO\tyou\tO\noverride/overwrite\tO\toverride/overwrite\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nclass\tO\tclass\tO\nB\tB-Class_Name\tB\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nimplementation.\tO\timplementation.\tO\n.\tO\t.\tO\nso\tO\tso\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nsay\tO\tsay\tO\nthat\tO\tthat\tO\ncalling\tO\tcalling\tO\nsuper().test_a()\tB-Function_Name\tsuper().test_a()\tB-Code_Block\nor\tO\tor\tO\nself.test_a()\tB-Function_Name\tself.test_a()\tB-Code_Block\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ngiven\tO\tgiven\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nnever\tO\tnever\tO\noverride/overwrite\tO\toverride/overwrite\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ntest_a()\tB-Function_Name\ttest_a()\tB-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\nsubclasses.\tO\tsubclasses.\tO\n.\tO\t.\tO\nhowever\tO\thowever\tO\nis\tO\tis\tO\na\tO\ta\tO\nnonsense\tO\tnonsense\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsuper()\tB-Library_Function\tsuper()\tB-Code_Block\nif\tO\tif\tO\nnot\tO\tnot\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\noverride/overwrite\tO\toverride/overwrite\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31336417\tO\t31336417\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31336417/\tO\thttps://stackoverflow.com/questions/31336417/\tO\n\t\n\t\nUsually\tO\tUsually\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nself.test_a()\tB-Function_Name\tself.test_a()\tB-Code_Block\nto\tO\tto\tO\ncall\tO\tcall\tO\nan\tO\tan\tO\ninherited\tO\tinherited\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\nrare\tO\trare\tO\nsituations\tO\tsituations\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsuper().test_a()\tB-Function_Name\tsuper().test_a()\tB-Code_Block\neven\tO\teven\tO\nthough\tO\tthough\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nequivalent\tO\tequivalent\tO\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbehavior\tO\tbehavior\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nexplore\tO\texplore\tO\nthe\tO\tthe\tO\ndifferences\tO\tdifferences\tO\n,\tO\t,\tO\nlets\tO\tlets\tO\nmake\tO\tmake\tO\ntwo\tO\ttwo\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nB\tB-Class_Name\tB\tB-Code_Block\nclass\tO\tclass\tO\n,\tO\t,\tO\none\tO\tone\tO\nwith\tO\twith\tO\neach\tO\teach\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nmake\tO\tmake\tO\ntwo\tO\ttwo\tO\nC\tB-Class_Name\tC\tB-Code_Block\nclasses\tO\tclasses\tO\nthat\tO\tthat\tO\nfurther\tO\tfurther\tO\nextend\tO\textend\tO\nthe\tO\tthe\tO\nB\tB-Class_Name\tB\tB-Code_Block\nclasses\tO\tclasses\tO\nand\tO\tand\tO\noverride\tO\toverride\tO\ntest_a\tB-Function_Name\ttest_a\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4469\tI-Code_Block\tA_4469\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\ntest_b()\tB-Function_Name\ttest_b()\tB-Code_Block\nmethod\tO\tmethod\tO\non\tO\ton\tO\nC1\tB-Class_Name\tC1\tB-Code_Block\nand\tO\tand\tO\nC2\tB-Class_Name\tC2\tB-Code_Block\ninstances\tO\tinstances\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\ndifferent\tO\tdifferent\tO\nresults\tO\tresults\tO\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nB1\tB-Class_Name\tB1\tB-Code_Block\nand\tO\tand\tO\nB2\tB-Class_Name\tB2\tB-Code_Block\nbehave\tO\tbehave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4470\tI-Code_Block\tA_4470\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nsuper()\tB-Library_Function\tsuper()\tB-Code_Block\ncall\tO\tcall\tO\nin\tO\tin\tO\nB2.test_b\tB-Function_Name\tB2.test_b\tB-Code_Block\ntells\tO\ttells\tO\nPython\tB-Language\tPython\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nskip\tO\tskip\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\ntest_a\tB-Function_Name\ttest_a\tB-Code_Block\nin\tO\tin\tO\nany\tO\tany\tO\nmore\tO\tmore\tO\nderived\tO\tderived\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nalways\tO\talways\tO\ncall\tO\tcall\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nparent\tO\tparent\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nActually\tO\tActually\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsibling\tO\tsibling\tO\nclass\tO\tclass\tO\nin\tO\tin\tO\na\tO\ta\tO\nmultiple\tO\tmultiple\tO\ninheritance\tO\tinheritance\tO\nsituation\tO\tsituation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\ngetting\tO\tgetting\tO\neven\tO\teven\tO\nmore\tO\tmore\tO\nobscure\tO\tobscure\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nLike\tO\tLike\tO\nI\tO\tI\tO\nsaid\tO\tsaid\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nusually\tO\tusually\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\na\tO\ta\tO\nmore-derived\tO\tmore-derived\tO\nclass\tO\tclass\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nCs\tB-Class_Name\tCs\tB-Code_Block\nto\tO\tto\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\nbehavior\tO\tbehavior\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninherited\tO\tinherited\tO\nmethods\tO\tmethods\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ncalling\tO\tcalling\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nless-derived\tO\tless-derived\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nusing\tO\tusing\tO\nself.whatever\tB-Code_Block\tself.whatever\tB-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsuper\tB-Library_Function\tsuper\tB-Code_Block\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nfancy\tO\tfancy\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37527241\tO\t37527241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37527241/\tO\thttps://stackoverflow.com/questions/37527241/\tO\n\t\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\n's\tO\t's\tO\nparameter\tO\tparameter\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\nlater\tO\tlater\tO\nabout\tO\tabout\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nparameter\tO\tparameter\tO\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nchange\tO\tchange\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nthinking\tO\tthinking\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nsample\tO\tsample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4704\tI-Code_Block\tQ_4704\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nparameter\tO\tparameter\tO\nof\tO\tof\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nchanged\tO\tchanged\tO\n?\tO\t?\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nwhich\tO\twhich\tO\nparameter\tO\tparameter\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\n..\tO\t..\tO\nthought\tO\tthought\tO\nabout\tO\tabout\tO\nswitch\tB-Code_Block\tswitch\tB-Code_Block\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\na\tO\ta\tO\ngood\tO\tgood\tO\ndirection\tO\tdirection\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\ndiscussed\tO\tdiscussed\tO\non\tO\ton\tO\ninternet\tO\tinternet\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nread\tO\tread\tO\neverything\tO\teverything\tO\nabout\tO\tabout\tO\nfunctions\tO\tfunctions\tO\nand\tO\tand\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nsearching\tO\tsearching\tO\nusing\tO\tusing\tO\nwrong\tO\twrong\tO\nkeywords\tO\tkeywords\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37527241\tO\t37527241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37527241/\tO\thttps://stackoverflow.com/questions/37527241/\tO\n\t\n\t\nIf\tO\tIf\tO\nCarinherits\tB-Variable_Name\tCarinherits\tB-Code_Block\nfrom\tO\tfrom\tO\nNSObject\tB-Library_Class\tNSObject\tB-Code_Block\nyou\tO\tyou\tO\nget\tO\tget\tO\nkey-value-coding\tO\tkey-value-coding\tO\nfor\tO\tfor\tO\nfree\tO\tfree\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nwith\tO\twith\tO\nsetValue:forKey\tB-Code_Block\tsetValue:forKey\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5402\tI-Code_Block\tA_5402\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37527241\tO\t37527241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37527241/\tO\thttps://stackoverflow.com/questions/37527241/\tO\n\t\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nKVC\tO\tKVC\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\ninherit\tO\tinherit\tO\nfrom\tO\tfrom\tO\nNSObject\tB-Library_Class\tNSObject\tB-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nfunc\tO\tfunc\tO\nthat\tO\tthat\tO\nguards\tO\tguards\tO\nagain\tO\tagain\tO\nbad\tO\tbad\tO\nproperty\tO\tproperty\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5400\tI-Code_Block\tA_5400\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\ncrash\tO\tcrash\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nenter\tO\tenter\tO\nbad\tO\tbad\tO\nproperty\tO\tproperty\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nanswers\tO\tanswers\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26585170\tO\t26585170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26585170/\tO\thttps://stackoverflow.com/questions/26585170/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nusing\tO\tusing\tO\nhaskell\tB-Language\thaskell\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nmost/some\tO\tmost/some\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nconcepts\tO\tconcepts\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nexactly\tO\texactly\tO\ndoes\tO\tdoes\tO\nhaskells\tB-Language\thaskells\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nallow\tO\tallow\tO\nme\tO\tme\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\ndo\tO\tdo\tO\nin\tO\tin\tO\nanother\tO\tanother\tO\nstatically\tO\tstatically\tO\ntyped\tO\ttyped\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nintuitively\tO\tintuitively\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nhaskells\tB-Language\thaskells\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nin\tO\tin\tO\nevery\tO\tevery\tO\nimaginable\tO\timaginable\tO\nway\tO\tway\tO\ncompared\tO\tcompared\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nin\tO\tin\tO\nC\tB-Language\tC\tO\n,\tO\t,\tO\nC++\tB-Language\tC++\tO\nor\tO\tor\tO\njava\tB-Language\tjava\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nexplain\tO\texplain\tO\nit\tO\tit\tO\nlogically\tO\tlogically\tO\n,\tO\t,\tO\nprimarily\tO\tprimarily\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\na\tO\ta\tO\nlack\tO\tlack\tO\nof\tO\tof\tO\nin\tO\tin\tO\ndepth\tO\tdepth\tO\nknowledge\tO\tknowledge\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\ndifferences\tO\tdifferences\tO\nin\tO\tin\tO\ntype\tO\ttype\tO\nsystems\tO\tsystems\tO\nbetween\tO\tbetween\tO\nhaskell\tB-Language\thaskell\tO\nand\tO\tand\tO\nother\tO\tother\tO\nstatically\tO\tstatically\tO\ntyped\tO\ttyped\tO\nlanguages\tO\tlanguages\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nsomeone\tO\tsomeone\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nexamples\tO\texamples\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nhaskells\tB-Language\thaskells\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nhelpful\tO\thelpful\tO\ncompared\tO\tcompared\tO\nto\tO\tto\tO\na\tO\ta\tO\nlanguage\tO\tlanguage\tO\nwith\tO\twith\tO\na\tO\ta\tO\nstatic\tB-Data_Type\tstatic\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nExamples\tO\tExamples\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nterse\tO\tterse\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsuccinctly\tO\tsuccinctly\tO\nexpressed\tO\texpressed\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26585170\tO\t26585170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26585170/\tO\thttps://stackoverflow.com/questions/26585170/\tO\n\t\n\t\nThe\tO\tThe\tO\nHaskell\tB-Language\tHaskell\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nhas\tO\thas\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nfeatures\tO\tfeatures\tO\nwhich\tO\twhich\tO\nall\tO\tall\tO\nexist\tO\texist\tO\nin\tO\tin\tO\nother\tO\tother\tO\nlanguages\tO\tlanguages\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nare\tO\tare\tO\nrarely\tO\trarely\tO\ncombined\tO\tcombined\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\n,\tO\t,\tO\nconsistent\tO\tconsistent\tO\nlanguage\tO\tlanguage\tO\n:\tO\t:\tO\n\t\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nsound\tO\tsound\tO\n,\tO\t,\tO\nstatic\tB-Data_Type\tstatic\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nmeaning\tO\tmeaning\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nerrors\tO\terrors\tO\nare\tO\tare\tO\nguaranteed\tO\tguaranteed\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nhappen\tO\thappen\tO\nat\tO\tat\tO\nruntime\tO\truntime\tO\nwithout\tO\twithout\tO\nneeding\tO\tneeding\tO\nruntime\tO\truntime\tO\ntype\tO\ttype\tO\nchecks\tO\tchecks\tO\n(\tO\t(\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nin\tO\tin\tO\nCaml\tB-Language\tCaml\tO\n,\tO\t,\tO\nSML\tB-Language\tSML\tO\nand\tO\tand\tO\nalmost\tO\talmost\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nin\tO\tin\tO\nJava\tB-Language\tJava\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\nLisp\tB-Language\tLisp\tO\n,\tO\t,\tO\nPython\tB-Language\tPython\tO\n,\tO\t,\tO\nC\tB-Language\tC\tO\n,\tO\t,\tO\nor\tO\tor\tO\nC++\tB-Language\tC++\tO\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nit\tO\tit\tO\npeforms\tO\tpeforms\tO\nstatic\tB-Data_Type\tstatic\tO\ntype\tO\ttype\tO\nreconstruction\tO\treconstruction\tO\n,\tO\t,\tO\nmeaning\tO\tmeaning\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nprogrammer\tO\tprogrammer\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\ntypes\tO\ttypes\tO\nunless\tO\tunless\tO\nhe\tO\the\tO\nwants\tO\twants\tO\nto\tO\tto\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\nwill\tO\twill\tO\nreconstruct\tO\treconstruct\tO\nthem\tO\tthem\tO\non\tO\ton\tO\nits\tO\tits\tO\nown\tO\town\tO\n(\tO\t(\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nin\tO\tin\tO\nCaml\tB-Language\tCaml\tO\nand\tO\tand\tO\nSML\tB-Language\tSML\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nJava\tB-Language\tJava\tO\nor\tO\tor\tO\nC\tB-Language\tC\tO\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nit\tO\tit\tO\nsupports\tO\tsupports\tO\nimpredicative\tO\timpredicative\tO\npolymorphism\tO\tpolymorphism\tO\n(\tO\t(\tO\ntype\tO\ttype\tO\nvariables\tO\tvariables\tO\n)\tO\t)\tO\n,\tO\t,\tO\neven\tO\teven\tO\nat\tO\tat\tO\nhigher\tO\thigher\tO\nkinds\tO\tkinds\tO\n(\tO\t(\tO\nunlike\tO\tunlike\tO\nCaml\tB-Language\tCaml\tO\nand\tO\tand\tO\nSML\tB-Language\tSML\tO\n,\tO\t,\tO\nor\tO\tor\tO\nany\tO\tany\tO\nother\tO\tother\tO\nproduction-ready\tO\tproduction-ready\tO\nlanguage\tO\tlanguage\tO\nknown\tO\tknown\tO\nto\tO\tto\tO\nme\tO\tme\tO\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nit\tO\tit\tO\nhas\tO\thas\tO\ngood\tO\tgood\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\noverloading\tO\toverloading\tO\n(\tO\t(\tO\ntype\tO\ttype\tO\nclasses\tO\tclasses\tO\n)\tO\t)\tO\n(\tO\t(\tO\nunlike\tO\tunlike\tO\nCaml\tB-Language\tCaml\tO\nand\tO\tand\tO\nSML\tB-Language\tSML\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhether\tO\tWhether\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nmake\tO\tmake\tO\nHaskell\tB-Language\tHaskell\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nlanguage\tO\tlanguage\tO\nis\tO\tis\tO\nopen\tO\topen\tO\nto\tO\tto\tO\ndiscussion\tO\tdiscussion\tO\n—\tO\t—\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\nhappen\tO\thappen\tO\nto\tO\tto\tO\nlike\tO\tlike\tO\ntype\tO\ttype\tO\nclasses\tO\tclasses\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n,\tO\t,\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nCaml\tB-Language\tCaml\tO\nprogrammers\tO\tprogrammers\tO\nwho\tO\twho\tO\nstrongly\tO\tstrongly\tO\ndislike\tO\tdislike\tO\noverloading\tO\toverloading\tO\nand\tO\tand\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nhand\tO\thand\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nHaskell\tB-Language\tHaskell\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nlacks\tO\tlacks\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nfeatures\tO\tfeatures\tO\nthat\tO\tthat\tO\nother\tO\tother\tO\nlanguages\tO\tlanguages\tO\nsupport\tO\tsupport\tO\nelegantly\tO\telegantly\tO\n:\tO\t:\tO\n\t\nit\tO\tit\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nruntime\tO\truntime\tO\ndispatch\tO\tdispatch\tO\n(\tO\t(\tO\nunlike\tO\tunlike\tO\nJava\tB-Language\tJava\tO\n,\tO\t,\tO\nLisp\tB-Language\tLisp\tO\n,\tO\t,\tO\nand\tO\tand\tO\nJulia\tB-Language\tJulia\tO\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nit\tO\tit\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nexistential\tO\texistential\tO\ntypes\tO\ttypes\tO\nand\tO\tand\tO\nGADTs\tO\tGADTs\tO\n(\tO\t(\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nboth\tO\tboth\tO\nGHC\tO\tGHC\tO\nextensions\tO\textensions\tO\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nit\tO\tit\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\ndependent\tO\tdependent\tO\ntypes\tO\ttypes\tO\n(\tO\t(\tO\nunlike\tO\tunlike\tO\nCoq\tB-Language\tCoq\tO\n,\tO\t,\tO\nAgda\tB-Language\tAgda\tO\nand\tO\tand\tO\nIdris\tB-Language\tIdris\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAgain\tO\tAgain\tO\n,\tO\t,\tO\nwhether\tO\twhether\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\ndesirable\tO\tdesirable\tO\nfeatures\tO\tfeatures\tO\nin\tO\tin\tO\na\tO\ta\tO\ngeneral-purpose\tO\tgeneral-purpose\tO\nprogramming\tO\tprogramming\tO\nlanguage\tO\tlanguage\tO\nis\tO\tis\tO\nopen\tO\topen\tO\nto\tO\tto\tO\ndiscussion\tO\tdiscussion\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26585170\tO\t26585170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26585170/\tO\thttps://stackoverflow.com/questions/26585170/\tO\n\t\n\t\nOne\tO\tOne\tO\nmajor\tO\tmajor\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nHaskell\tB-Language\tHaskell\tO\n's\tO\t's\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nof\tO\tof\tO\nmost\tO\tmost\tO\nOO\tO\tOO\tO\nlanguages\tO\tlanguages\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nside\tO\tside\tO\neffects\tO\teffects\tO\nis\tO\tis\tO\nrepresented\tO\trepresented\tO\nby\tO\tby\tO\na\tO\ta\tO\ndata\tO\tdata\tO\ntype\tO\ttype\tO\n(\tO\t(\tO\na\tO\ta\tO\nmonad\tB-Data_Type\tmonad\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nIO\tB-Data_Type\tIO\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\npure\tO\tpure\tO\nfunctions\tO\tfunctions\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\ncan\tO\tcan\tO\nverify\tO\tverify\tO\nare\tO\tare\tO\nside-effect-free\tO\tside-effect-free\tO\nand\tO\tand\tO\nreferentially\tO\treferentially\tO\ntransparent\tO\ttransparent\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ngenerally\tO\tgenerally\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nand\tO\tand\tO\nless\tO\tless\tO\nprone\tO\tprone\tO\nto\tO\tto\tO\nbugs\tO\tbugs\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nside-effect-free\tO\tside-effect-free\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nother\tO\tother\tO\nlanguages\tO\tlanguages\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\n's\tO\t's\tO\nhelp\tO\thelp\tO\nin\tO\tin\tO\ndoing\tO\tdoing\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nHaskell\tB-Language\tHaskell\tO\nmakes\tO\tmakes\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nmore\tO\tmore\tO\ncarefully\tO\tcarefully\tO\nabout\tO\tabout\tO\nwhich\tO\twhich\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nside\tO\tside\tO\neffects\tO\teffects\tO\n(\tO\t(\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nI/O\tB-Data_Type\tI/O\tO\nor\tO\tor\tO\nmutable\tB-Data_Type\tmutable\tO\nvariables\tO\tvariables\tO\n)\tO\t)\tO\nand\tO\tand\tO\nwhich\tO\twhich\tO\nparts\tO\tparts\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\npure\tO\tpure\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nquite\tO\tquite\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nfunction\tO\tfunction\tO\ndefinitions\tO\tdefinitions\tO\nin\tO\tin\tO\nHaskell\tB-Language\tHaskell\tO\nare\tO\tare\tO\nexpressions\tO\texpressions\tO\n(\tO\t(\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nlists\tO\tlists\tO\nof\tO\tof\tO\nstatements\tO\tstatements\tO\n)\tO\t)\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nmore\tO\tmore\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nsubject\tO\tsubject\tO\nto\tO\tto\tO\ntype-checking\tO\ttype-checking\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nlanguages\tO\tlanguages\tO\nlike\tO\tlike\tO\nC++\tB-Language\tC++\tO\nand\tO\tand\tO\nJava\tB-Language\tJava\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\noften\tO\toften\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nintroduce\tO\tintroduce\tO\nlogic\tO\tlogic\tO\nerrors\tO\terrors\tO\nby\tO\tby\tO\nwriting\tO\twriting\tO\nstatements\tO\tstatements\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\norder\tO\torder\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nthat\tO\tthat\tO\none\tO\tone\tO\nstatement\tO\tstatement\tO\nmust\tO\tmust\tO\nprecede\tO\tprecede\tO\nanother\tO\tanother\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nhave\tO\thave\tO\none\tO\tone\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\nmodifies\tO\tmodifies\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\n's\tO\t's\tO\nstate\tO\tstate\tO\n,\tO\t,\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nsomething\tO\tsomething\tO\nimportant\tO\timportant\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthat\tO\tthat\tO\nstate\tO\tstate\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nup\tO\tup\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nthings\tO\tthings\tO\nhappen\tO\thappen\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nHaskell\tB-Language\tHaskell\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nordering\tO\tordering\tO\ndependency\tO\tdependency\tO\ntends\tO\ttends\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nexpressed\tO\texpressed\tO\nthrough\tO\tthrough\tO\nfunction\tO\tfunction\tO\ncomposition\tO\tcomposition\tO\n—\tO\t—\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nf\tB-Function_Name\tf\tB-Code_Block\n(\tI-Function_Name\t(\tI-Code_Block\ng\tI-Function_Name\tg\tI-Code_Block\nx\tI-Function_Name\tx\tI-Code_Block\n)\tI-Function_Name\t)\tI-Code_Block\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\ng\tB-Function_Name\tg\tB-Code_Block\nmust\tO\tmust\tO\nrun\tO\trun\tO\nfirst\tO\tfirst\tO\n—\tO\t—\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\ng\tB-Function_Name\tg\tB-Code_Block\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\nargument\tO\targument\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nf\tB-Function_Name\tf\tB-Code_Block\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\ncomposed\tO\tcomposed\tO\nthem\tO\tthem\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32560750\tO\t32560750\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32560750/\tO\thttps://stackoverflow.com/questions/32560750/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3953\tI-Code_Block\tQ_3953\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhttps://www.youtube.com/watch?v=XPpsI8mWKmg\tO\thttps://www.youtube.com/watch?v=XPpsI8mWKmg\tO\n\t\nThis\tO\tThis\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nhas\tO\thas\tO\nclosed\tO\tclosed\tO\ncaptions\tO\tcaptions\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nresponse\tO\tresponse\tO\nalways\tO\talways\tO\nreturns\tO\treturns\tO\nisCC\tB-Code_Block\tisCC\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nfalse\tI-Code_Block\tfalse\tI-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nhappens\tO\thappens\tO\nwith\tO\twith\tO\nmore\tO\tmore\tO\nvideos\tB-User_Interface_Element\tvideos\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhy\tO\twhy\tO\n?\tO\t?\tO\n\t\nhttps://developers.google.com/youtube/v3/docs/captions\tO\thttps://developers.google.com/youtube/v3/docs/captions\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3954\tI-Code_Block\tQ_3954\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32560750\tO\t32560750\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32560750/\tO\thttps://stackoverflow.com/questions/32560750/\tO\n\t\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nset\tO\tset\tO\nclosed\tO\tclosed\tO\ncaptions\tO\tcaptions\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nand\tO\tand\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nplayer\tO\tplayer\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nCC\tB-User_Interface_Element\tCC\tO\n\"\tO\t\"\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nreferring\tO\treferring\tO\nto\tO\tto\tO\nsubtitles\tO\tsubtitles\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nimportant\tO\timportant\tO\ndistinction\tO\tdistinction\tO\nbetween\tO\tbetween\tO\nsubtitles\tO\tsubtitles\tO\nand\tO\tand\tO\nclosed\tO\tclosed\tO\ncaptioning\tO\tcaptioning\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nhere\tO\there\tO\nand\tO\tand\tO\nhere\tO\there\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nTherefore\tO\tTherefore\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nisCC\tB-Variable_Name\tisCC\tB-Code_Block\nwill\tO\twill\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\ntrue\tO\ttrue\tB-Code_Block\nfor\tO\tfor\tO\nvideos\tB-User_Interface_Element\tvideos\tO\nthat\tO\tthat\tO\ninclude\tO\tinclude\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ncaptioning\tO\tcaptioning\tO\nintended\tO\tintended\tO\nfor\tO\tfor\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nhear\tO\thear\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nhappening\tO\thappening\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nvideo\tB-User_Interface_Element\tvideo\tO\n,\tO\t,\tO\nas\tO\tas\tO\nopposed\tO\topposed\tO\nto\tO\tto\tO\njust\tO\tjust\tO\ngeneral\tO\tgeneral\tO\ncaptions\tO\tcaptions\tO\nthat\tO\tthat\tO\npeople\tO\tpeople\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nonto\tO\tonto\tO\ntheir\tO\ttheir\tO\nvideos\tB-User_Interface_Element\tvideos\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nalmost\tO\talmost\tO\nall\tO\tall\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nhigh\tO\thigh\tO\nquality\tO\tquality\tO\n,\tO\t,\tO\npaid\tO\tpaid\tO\nmovies\tO\tmovies\tO\non\tO\ton\tO\nYouTube\tB-Website\tYouTube\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nthese\tO\tthese\tO\nkinds\tO\tkinds\tO\nof\tO\tof\tO\ncaptions\tO\tcaptions\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthat\tO\tthat\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nisCC\tB-Variable_Name\tisCC\tB-Code_Block\nproperty\tO\tproperty\tO\nworks\tO\tworks\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32560750\tO\t32560750\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32560750/\tO\thttps://stackoverflow.com/questions/32560750/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nsyntax\tO\tsyntax\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4650\tI-Code_Block\tA_4650\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\nmaybe\tO\tmaybe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4651\tI-Code_Block\tA_4651\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ndont\tO\tdont\tO\nhave\tO\thave\tO\nmuch\tO\tmuch\tO\nexperience\tO\texperience\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nyoutube\tB-Library\tyoutube\tO\napi\tI-Library\tapi\tO\nbut\tO\tbut\tO\nchecking\tO\tchecking\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\ncode\tO\tcode\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32177557\tO\t32177557\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32177557/\tO\thttps://stackoverflow.com/questions/32177557/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nlearning\tO\tlearning\tO\nCollection\tB-Library\tCollection\tO\nFramework\tI-Library\tFramework\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nwebsite\tO\twebsite\tO\n:\tO\t:\tO\nhttp://way2java.com/collections/hashtable-about/\tO\thttp://way2java.com/collections/hashtable-about/\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nreading\tO\treading\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\nof\tO\tof\tO\nHashtable\tB-Library_Class\tHashtable\tB-Code_Block\nI\tO\tI\tO\nsee\tO\tsee\tO\ntwo\tO\ttwo\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\ntable\tO\ttable\tO\n's\tO\t's\tO\nkeys\tO\tkeys\tO\n:\tO\t:\tO\n\t\nSet\tB-Library_Function\tSet\tB-Code_Block\nkeys()\tI-Library_Function\tkeys()\tI-Code_Block\n:\tO\t:\tO\nReturns\tO\tReturns\tO\na\tO\ta\tO\nSet\tB-Library_Class\tSet\tB-Code_Block\nobject\tO\tobject\tO\ncontaining\tO\tcontaining\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nkeys\tO\tkeys\tO\n\t\nSet\tB-Library_Function\tSet\tB-Code_Block\nkeySet()\tI-Library_Function\tkeySet()\tI-Code_Block\n:\tO\t:\tO\nReturns\tO\tReturns\tO\na\tO\ta\tO\nSet\tB-Library_Class\tSet\tB-Code_Block\nobject\tO\tobject\tO\ncontaining\tO\tcontaining\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nkeys\tO\tkeys\tO\nof\tO\tof\tO\nHashtable\tB-Library_Class\tHashtable\tB-Code_Block\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nsimilarity\tO\tsimilarity\tO\nis\tO\tis\tO\nHashtable\tB-Library_Class\tHashtable\tB-Code_Block\nand\tO\tand\tO\nSet\tB-Library_Class\tSet\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nallow\tO\tallow\tO\nduplicates\tO\tduplicates\tO\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\nand\tO\tand\tO\nremoving\tO\tremoving\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nSet\tB-Library_Class\tSet\tB-Code_Block\nalso\tO\talso\tO\nreflects\tO\treflects\tO\nin\tO\tin\tO\nHashtable\tB-Library_Class\tHashtable\tB-Code_Block\n\t\nBoth\tO\tBoth\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nSet\tB-Library_Class\tSet\tB-Code_Block\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ndifferent\tO\tdifferent\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nAnyone\tO\tAnyone\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32177557\tO\t32177557\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32177557/\tO\thttps://stackoverflow.com/questions/32177557/\tO\n\t\n\t\nkeys()\tB-Library_Function\tkeys()\tB-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nSet\tB-Library_Class\tSet\tB-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nan\tO\tan\tO\nEnumeration<K>\tB-Code_Block\tEnumeration<K>\tB-Code_Block\n.\tO\t.\tO\n\t\nHashtable\tB-Library_Class\tHashtable\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nlegacy\tO\tlegacy\tO\nclass\tO\tclass\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nrecommended\tO\trecommended\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nreplaced\tO\treplaced\tO\nby\tO\tby\tO\nHashMap\tB-Library_Class\tHashMap\tB-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\nConcurrentHashMap\tB-Library_Class\tConcurrentHashMap\tB-Code_Block\n†\tO\t†\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nexisted\tO\texisted\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nJCF\tB-Library\tJCF\tO\ndid\tO\tdid\tO\n,\tO\t,\tO\ntherefore\tO\ttherefore\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nkeys\tB-Library_Class\tkeys\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nwas\tO\twas\tO\nthrough\tO\tthrough\tO\nan\tO\tan\tO\nEnumeration\tB-Library_Class\tEnumeration\tB-Code_Block\n-\tO\t-\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nJava\tB-Language\tJava\tO\ninterface\tO\tinterface\tO\nfor\tO\tfor\tO\nmoving\tO\tmoving\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\ncame\tO\tcame\tO\nJava\tB-Language\tJava\tO\n1.2\tB-Version\t1.2\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nJCF\tB-Library\tJCF\tO\n.\tO\t.\tO\n\t\nHashtable\tB-Library_Class\tHashtable\tB-Code_Block\nwas\tO\twas\tO\nretrofitted\tO\tretrofitted\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nMap\tO\tMap\tB-Code_Block\ninterface\tO\tinterface\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nkeySet()\tB-Library_Function\tkeySet()\tB-Code_Block\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nreturned\tO\treturned\tO\na\tO\ta\tO\nSet\tB-Library_Class\tSet\tB-Code_Block\n(\tO\t(\tO\nalso\tO\talso\tO\nintroduced\tO\tintroduced\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nJCF\tB-Library\tJCF\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nkeys\tB-Variable_Name\tkeys\tB-Code_Block\nmethod\tO\tmethod\tO\nwas\tO\twas\tO\nretained\tO\tretained\tO\nfor\tO\tfor\tO\nlegacy\tO\tlegacy\tO\ncompatibility\tO\tcompatibility\tO\nreasons\tO\treasons\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nSet\tB-Library_Class\tSet\tB-Code_Block\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nmethod\tO\tmethod\tO\nachieves\tO\tachieves\tO\ntwo\tO\ttwo\tO\nthings\tO\tthings\tO\n:\tO\t:\tO\n\t\nconveys\tO\tconveys\tO\nintent\tO\tintent\tO\n-\tO\t-\tO\nit\tO\tit\tO\nreinforces\tO\treinforces\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nkeys\tO\tkeys\tO\nof\tO\tof\tO\na\tO\ta\tO\nHashtable\tB-Library_Class\tHashtable\tB-Code_Block\nare\tO\tare\tO\na\tO\ta\tO\nmathematical\tO\tmathematical\tO\nset\tO\tset\tO\n\t\nimplements\tO\timplements\tO\nIterable\tB-Library_Class\tIterable\tB-Code_Block\n<T>,\tI-Library_Class\t<T>,\tI-Code_Block\nwhich\tO\twhich\tO\nreplaces\tO\treplaces\tO\nEnumerable<T>\tB-Library_Class\tEnumerable<T>\tB-Code_Block\n\t\n†\tO\t†\tO\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nHashtable\tB-Library_Class\tHashtable\tB-Code_Block\ndocumentation\tI-Library_Class\tdocumentation\tI-Code_Block\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32177557\tO\t32177557\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32177557/\tO\thttps://stackoverflow.com/questions/32177557/\tO\n\t\n\t\nThe\tO\tThe\tO\nmethod\tO\tmethod\tO\nkeys()\tB-Library_Function\tkeys()\tO\nin\tO\tin\tO\nHashtable\tB-Library_Class\tHashtable\tO\nactually\tO\tactually\tO\nreturn\tO\treturn\tO\nEnumeration\tB-Library_Class\tEnumeration\tO\nof\tO\tof\tO\nkeys\tO\tkeys\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4605\tI-Code_Block\tA_4605\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nReturns\tO\tReturns\tO\nan\tO\tan\tO\nenumeration\tB-Library_Class\tenumeration\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nkeys\tO\tkeys\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nhashtable\tB-Library_Class\thashtable\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32153515\tO\t32153515\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32153515/\tO\thttps://stackoverflow.com/questions/32153515/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\nrecord\tO\trecord\tO\nin\tO\tin\tO\nmongoDb\tB-Application\tmongoDb\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ni\tO\ti\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3898\tI-Code_Block\tQ_3898\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nMay\tO\tMay\tO\nbe\tO\tbe\tO\ni\tO\ti\tO\nam\tO\tam\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nsyntax\tO\tsyntax\tO\nfor\tO\tfor\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nanyone\tO\tanyone\tO\nlend\tO\tlend\tO\na\tO\ta\tO\nhelping\tO\thelping\tO\nhand\tO\thand\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\ni\tO\ti\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nupsert\tO\tupsert\tO\nbecause\tO\tbecause\tO\nif\tO\tif\tO\nrecord\tO\trecord\tO\nnot\tO\tnot\tO\nfound\tO\tfound\tO\nfor\tO\tfor\tO\nupdate\tO\tupdate\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ninsert\tO\tinsert\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nrecord\tO\trecord\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32153515\tO\t32153515\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32153515/\tO\thttps://stackoverflow.com/questions/32153515/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nmissing\tO\tmissing\tO\n{\tB-Code_Block\t{\tB-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\nupdate\tO\tupdate\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\n{\tB-Code_Block\t{\tB-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n$set\tI-Code_Block\t$set\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nstudent_record}\tI-Code_Block\tstudent_record}\tI-Code_Block\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\n\"\tO\t\"\tO\nstudent_grade\tB-Variable_Name\tstudent_grade\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\nfloat\tB-Data_Type\tfloat\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\nupsert\tB-Code_Block\tupsert\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nFalse\tI-Code_Block\tFalse\tI-Code_Block\nso\tO\tso\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nif\tO\tif\tO\nstatement\tO\tstatement\tO\ncan\tO\tcan\tO\nby\tO\tby\tO\nsimplify\tO\tsimplify\tO\nas\tO\tas\tO\n:\tO\t:\tO\nif\tB-Code_Block\tif\tB-Code_Block\nflag.lower()\tI-Code_Block\tflag.lower()\tI-Code_Block\n==\tI-Code_Block\t==\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\ny\tI-Code_Block\ty\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4604\tI-Code_Block\tA_4604\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLast\tO\tLast\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nleast\tO\tleast\tO\nthe\tO\tthe\tO\nupdate\tB-Library_Function\tupdate\tB-Code_Block\nmethod\tO\tmethod\tO\nis\tO\tis\tO\ndeprecated\tO\tdeprecated\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nAPI\tO\tAPI\tO\n.\tO\t.\tO\n\t\nupdate_one\tO\tupdate_one\tB-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1009654\tO\t1009654\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1009654/\tO\thttps://stackoverflow.com/questions/1009654/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nRails\tB-Library\tRails\tO\n1.2.3\tB-Version\t1.2.3\tO\non\tO\ton\tO\na\tO\ta\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nUpgrading\tO\tUpgrading\tO\nrails\tB-Library\trails\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\noption\tO\toption\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ntest\tO\ttest\tO\nweb-service\tO\tweb-service\tO\nusing\tO\tusing\tO\nRails\tB-Library\tRails\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntested\tO\ttested\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nRails\tB-Library\tRails\tO\ninvoke\tO\tinvoke\tO\nscaffold\tO\tscaffold\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsetup\tO\tsetup\tO\na\tO\ta\tO\nclient\tB-Application\tclient\tO\nvia\tO\tvia\tO\n.NET\tB-Library\t.NET\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\nan\tO\tan\tO\nASP.NET\tB-Library\tASP.NET\tO\nWeb\tO\tWeb\tO\nApp\tO\tApp\tO\nproject\tO\tproject\tO\nin\tO\tin\tO\nC#\tB-Language\tC#\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nadding\tO\tadding\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nWeb\tO\tWeb\tO\nReference\tO\tReference\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nReference\tO\tReference\tO\nURL\tO\tURL\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nfield\tO\tfield\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwizard\tB-User_Interface_Element\twizard\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_57\tI-Code_Block\tQ_57\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthen\tO\tthen\tO\nI\tO\tI\tO\nreceive\tO\treceive\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nwizard\tB-User_Interface_Element\twizard\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_58\tI-Code_Block\tQ_58\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nknown\tO\tknown\tO\nissues\tO\tissues\tO\nbetween\tO\tbetween\tO\nActionWebService\tB-Application\tActionWebService\tO\nand\tO\tand\tO\n.NET\tB-Library\t.NET\tO\nor\tO\tor\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nmy\tO\tmy\tO\nURL\tO\tURL\tO\ncorrect\tO\tcorrect\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nrails\tB-Library\trails\tO\nweb-service\tO\tweb-service\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1009654\tO\t1009654\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1009654/\tO\thttps://stackoverflow.com/questions/1009654/\tO\n\t\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nprobably\tO\tprobably\tO\nbeen\tO\tbeen\tO\nanswered\tO\tanswered\tO\nelsewhere\tO\telsewhere\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsince\tO\tsince\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\npops\tO\tpops\tO\nup\tO\tup\tO\nwhen\tO\twhen\tO\nsearching\tO\tsearching\tO\ngoogle\tB-Website\tgoogle\tO\nfor\tO\tfor\tO\nactionwebservice\tB-Application\tactionwebservice\tO\nand\tO\tand\tO\nget\tO\tget\tO\nrequests\tO\trequests\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nanswer\tO\tanswer\tO\nit\tO\tit\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\nAWS\tB-Application\tAWS\tO\nrefuses\tO\trefuses\tO\nnon-POST\tB-Library_Function\tnon-POST\tO\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nSpecifically\tO\tSpecifically\tO\nit\tO\tit\tO\nhas\tO\thas\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\naction_controller_dispatcher.rb\tB-File_Name\taction_controller_dispatcher.rb\tO\nthat\tO\tthat\tO\nreads\tO\treads\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_423\tI-Code_Block\tA_423\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBasically\tO\tBasically\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\neither\tO\teither\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nPOST\tB-Library_Function\tPOST\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nGETting\tB-Library_Function\tGETting\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nAWS\tB-Application\tAWS\tO\n's\tO\t's\tO\nhandling\tO\thandling\tO\nof\tO\tof\tO\nGET\tB-Library_Function\tGET\tO\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nYou\tO\tYou\tO\nmight\tO\tmight\tO\ntry\tO\ttry\tO\nediting\tO\tediting\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\ngem\tO\tgem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\n(\tO\t(\tO\n1)\tO\t1)\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nget\tO\tget\tO\noverwritten\tO\toverwritten\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ngem\tO\tgem\tO\nand\tO\tand\tO\n(\tO\t(\tO\n2)\tO\t2)\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\ngood\tO\tgood\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\nand\tO\tand\tO\n(\tO\t(\tO\n3)\tO\t3)\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnever\tO\tnever\tO\ntried\tO\ttried\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nformer\tO\tformer\tO\nis\tO\tis\tO\nlikely\tO\tlikely\tO\nmore\tO\tmore\tO\nappropriate\tO\tappropriate\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ncontrol\tO\tcontrol\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ngenerating\tO\tgenerating\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\n,\tO\t,\tO\nZack\tB-User_Name\tZack\tO\nChandler\tI-User_Name\tChandler\tO\nhad\tO\thad\tO\na\tO\ta\tO\nworkaround\tO\tworkaround\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nQuickBooks\tB-Application\tQuickBooks\tO\n's\tO\t's\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\na\tO\ta\tO\nweb-service\tO\tweb-service\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nany\tO\tany\tO\ncase\tO\tcase\tO\n)\tO\t)\tO\n,\tO\t,\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nquoting\tO\tquoting\tO\nit\tO\tit\tO\nbelow\tO\tbelow\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nObviously\tO\tObviously\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\ndispatch_web_service_request\tB-Function_Name\tdispatch_web_service_request\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nQuickBooks\tB-Application\tQuickBooks\tO\nspecific\tO\tspecific\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhope\tO\thope\tO\nZack\tB-User_Name\tZack\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmind\tO\tmind\tO\nme\tO\tme\tO\nreposting\tO\treposting\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27972844\tO\t27972844\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27972844/\tO\thttps://stackoverflow.com/questions/27972844/\tO\n\t\n\t\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nlarge\tO\tlarge\tO\ntext\tO\ttext\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3265\tI-Code_Block\tQ_3265\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nevery\tO\tevery\tO\n3rd\tO\t3rd\tO\nsymbol\tO\tsymbol\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ntext\tO\ttext\tO\nwith\tO\twith\tO\nvalue\tO\tvalue\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n'\tB-Value\t'\tB-Code_Block\nc'\tI-Value\tc'\tI-Code_Block\n)\tO\t)\tO\nand\tO\tand\tO\nif\tO\tif\tO\ntrue\tB-Value\ttrue\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n1\tB-Value\t1\tB-Code_Block\nto\tO\tto\tO\ncounter\tO\tcounter\tO\ni\tB-Variable_Name\ti\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ngrep\tB-Code_Block\tgrep\tB-Code_Block\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nsuite\tO\tsuite\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\npurpose\tO\tpurpose\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\nor\tO\tor\tO\nadvice\tO\tadvice\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nthan\tO\tthan\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nextract\tO\textract\tO\ncertain\tO\tcertain\tO\nvalues\tO\tvalues\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nstring\tB-Data_Type\tstring\tO\nto\tO\tto\tO\na\tO\ta\tO\nvector\tB-Data_Structure\tvector\tO\n.\tO\t.\tO\n\t\n4\tO\t4\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nextract\tO\textract\tO\n4:10\tB-Value\t4:10\tO\nsymbols\tO\tsymbols\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3266\tI-Code_Block\tQ_3266\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nP.S\tO\tP.S\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nscript\tO\tscript\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nin\tO\tin\tO\nR\tB-Language\tR\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ncurious\tO\tcurious\tO\nif\tO\tif\tO\nits\tO\tits\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nit\tO\tit\tO\nin\tO\tin\tO\nan\tO\tan\tO\nadequate\tO\tadequate\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27972844\tO\t27972844\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27972844/\tO\thttps://stackoverflow.com/questions/27972844/\tO\n\t\n\t\nEdited\tO\tEdited\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nfast\tO\tfast\tO\nfor\tO\tfor\tO\nmuch\tO\tmuch\tO\nlarger\tO\tlarger\tO\nstrings\tB-Data_Type\tstrings\tO\n:\tO\t:\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nlong\tO\tlong\tO\nstring\tB-Data_Type\tstring\tO\n(\tO\t(\tO\non\tO\ton\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\nmillions\tO\tmillions\tO\nof\tO\tof\tO\nnucleotides\tO\tnucleotides\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlookbehind\tO\tlookbehind\tO\nassertion\tO\tassertion\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\noriginal\tO\toriginal\tO\nanswer\tO\tanswer\tO\n(\tO\t(\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\nis\tO\tis\tO\ntoo\tO\ttoo\tO\nslow\tO\tslow\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npractical\tO\tpractical\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthat\tO\tthat\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nmore\tO\tmore\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\n:\tO\t:\tO\n(\tO\t(\tO\n1)\tO\t1)\tO\nsplits\tO\tsplits\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\napart\tO\tapart\tO\nbetween\tO\tbetween\tO\nevery\tO\tevery\tO\ncharacter\tB-Data_Type\tcharacter\tO\n;\tO\t;\tO\n(\tO\t(\tO\n2)\tO\t2)\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\ncharacters\tB-Data_Type\tcharacters\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\nup\tO\tup\tO\na\tO\ta\tO\nthree\tO\tthree\tO\nrow\tB-Data_Structure\trow\tO\nmatrix\tI-Data_Structure\tmatrix\tO\n;\tO\t;\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\n(\tO\t(\tO\n3)\tO\t3)\tO\nextracts\tO\textracts\tO\nthe\tO\tthe\tO\ncharacters\tB-Data_Type\tcharacters\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n3rd\tO\t3rd\tO\nrow\tB-Data_Structure\trow\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmatrix\tB-Data_Structure\tmatrix\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ntakes\tO\ttakes\tO\non\tO\ton\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\n0.2\tO\t0.2\tO\nseconds\tO\tseconds\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\na\tO\ta\tO\n3-million\tO\t3-million\tO\ncharacter\tO\tcharacter\tO\nlong\tO\tlong\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3878\tI-Code_Block\tA_3878\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOriginal\tO\tOriginal\tO\nanswer\tO\tanswer\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nmight\tO\tmight\tO\nuse\tO\tuse\tO\nsubstr()\tB-Library_Function\tsubstr()\tB-Code_Block\nin\tO\tin\tO\nboth\tO\tboth\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3879\tI-Code_Block\tA_3879\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27972844\tO\t27972844\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27972844/\tO\thttps://stackoverflow.com/questions/27972844/\tO\n\t\n\t\nCompare\tO\tCompare\tO\nevery\tO\tevery\tO\nthird\tO\tthird\tO\ncharacter\tB-Data_Type\tcharacter\tO\nwith\tO\twith\tO\n\"\tB-Value\t\"\tB-Code_Block\nc\tI-Value\tc\tI-Code_Block\n\"\tI-Value\t\"\tI-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3876\tI-Code_Block\tA_3876\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExtract\tO\tExtract\tO\ncharacters\tB-Data_Type\tcharacters\tO\n4\tB-Value\t4\tO\nto\tO\tto\tO\n10\tB-Value\t10\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3877\tI-Code_Block\tA_3877\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23996309\tO\t23996309\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23996309/\tO\thttps://stackoverflow.com/questions/23996309/\tO\n\t\n\t\nI\tO\tI\tO\ninstall\tO\tinstall\tO\nckeditor\tB-Application\tckeditor\tO\nand\tO\tand\tO\nconfiguration\tO\tconfiguration\tO\nfile\tO\tfile\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nis\tO\tis\tO\ndescribe\tO\tdescribe\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nor\tO\tor\tO\ncreate\tO\tcreate\tO\nHTML\tB-File_Type\tHTML\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nalfresco\tB-Application\talfresco\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\narea\tO\tarea\tO\nis\tO\tis\tO\nempty\tO\tempty\tO\n(\tO\t(\tO\nblank\tO\tblank\tO\n)\tO\t)\tO\nand\tO\tand\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nedit\tO\tedit\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nHelp\tO\tHelp\tO\nplease\tO\tplease\tO\n!\tO\t!\tO\n\t\n:(\tO\t:(\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23996309\tO\t23996309\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23996309/\tO\thttps://stackoverflow.com/questions/23996309/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\nI\tO\tI\tO\ndownloaded\tO\tdownloaded\tO\nckeditor-forms-master\tB-Application\tckeditor-forms-master\tO\nfrom\tO\tfrom\tO\ngithub\tB-Website\tgithub\tO\n\t\n2)\tO\t2)\tO\nIn\tO\tIn\tO\ncmd\tB-Application\tcmd\tO\nfrom\tO\tfrom\tO\nparent\tO\tparent\tO\nfolder\tO\tfolder\tO\nckeditor-forms-master\tO\tckeditor-forms-master\tO\nI\tO\tI\tO\nexecute\tO\texecute\tO\nthese\tO\tthese\tO\ncommands\tO\tcommands\tO\n\t\nant\tB-Code_Block\tant\tO\nclean\tI-Code_Block\tclean\tO\ndist-jar\tI-Code_Block\tdist-jar\tO\n\t\nant\tB-Code_Block\tant\tO\n-Dtomcat.home\tI-Code_Block\t-Dtomcat.home\tO\n=\tI-Code_Block\t=\tO\nC:/Alfresco/tomcat\tI-Code_Block\tC:/Alfresco/tomcat\tO\nclean\tI-Code_Block\tclean\tO\ndist-jar\tI-Code_Block\tdist-jar\tO\nhotcopy-tomcat-jar\tI-Code_Block\thotcopy-tomcat-jar\tO\n\t\nBoth\tO\tBoth\tO\nwere\tO\twere\tO\nsuccessfully\tO\tsuccessfully\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nRestarted\tO\tRestarted\tO\nthe\tO\tthe\tO\nalfresco\tB-Application\talfresco\tO\ntomcat\tI-Application\ttomcat\tO\nserver\tI-Application\tserver\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncreate/edit\tO\tcreate/edit\tO\nHTML\tB-File_Type\tHTML\tO\nfile\tO\tfile\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\narea\tO\tarea\tO\nis\tO\tis\tO\nblank\tO\tblank\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nalfresco\tB-Application\talfresco\tO\nversion\tO\tversion\tO\n4.2.f\tB-Version\t4.2.f\tO\n.\tO\t.\tO\n\t\nbrowser\tB-Application\tbrowser\tO\ngoogle\tI-Application\tgoogle\tO\nchrome\tI-Application\tchrome\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5848861\tO\t5848861\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5848861/\tO\thttps://stackoverflow.com/questions/5848861/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\nSencha\tB-Library\tSencha\tO\nTouch\tI-Library\tTouch\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nstuck\tO\tstuck\tO\non\tO\ton\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\npretty\tO\tpretty\tO\nobvious\tO\tobvious\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\ntabPanel\tB-Library_Class\ttabPanel\tO\nwith\tO\twith\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ntap\tO\ttap\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nto\tO\tto\tO\nload\tO\tload\tO\n'\tO\t'\tO\nmaptestPanel\tB-Variable_Name\tmaptestPanel\tO\n'\tO\t'\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\npanel\tB-User_Interface_Element\tpanel\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nmap\tB-User_Interface_Element\tmap\tO\nloaded\tO\tloaded\tO\nfrom\tO\tfrom\tO\nits\tO\tits\tO\nown\tO\town\tO\njs\tB-File_Type\tjs\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmap\tB-User_Interface_Element\tmap\tO\npanel\tI-User_Interface_Element\tpanel\tO\nlooks\tO\tlooks\tO\nok\tO\tok\tO\nby\tO\tby\tO\nitself\tO\titself\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_417\tI-Code_Block\tQ_417\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nseeing\tO\tseeing\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nproperly\tO\tproperly\tO\nplace\tO\tplace\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntabPanel\tB-Variable_Name\ttabPanel\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_418\tI-Code_Block\tQ_418\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nadvice\tO\tadvice\tO\nor\tO\tor\tO\na\tO\ta\tO\nsteer\tO\tsteer\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ndirection\tO\tdirection\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5848861\tO\t5848861\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5848861/\tO\thttps://stackoverflow.com/questions/5848861/\tO\n\t\n\t\nI\tO\tI\tO\nonly\tO\tonly\tO\nknow\tO\tknow\tO\n\"\tO\t\"\tO\nclassic\tO\tclassic\tO\n\"\tO\t\"\tO\nsencha\tB-Library\tsencha\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\n:\tO\t:\tO\nSo\tO\tSo\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nmapPanel\tB-Library_Class\tmapPanel\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\nhidden\tO\thidden\tO\n)\tO\t)\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ntabPanel\tB-Library_Class\ttabPanel\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nhandler\tO\thandler\tO\nshow\tO\tshow\tO\nit\tO\tit\tO\nwhile\tO\twhile\tO\nhiding\tO\thiding\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\npanel\tO\tpanel\tO\n.\tO\t.\tO\n\t\nBesides\tO\tBesides\tO\n,\tO\t,\tO\nspeaking\tO\tspeaking\tO\nof\tO\tof\tO\nlayouts\tO\tlayouts\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nprecise\tO\tprecise\tO\nlayout\tB-Library_Variable\tlayout\tO\n:\tO\t:\tO\n'\tO\t'\tO\ncard\tO\tcard\tO\n'\tO\t'\tO\nin\tO\tin\tO\ntabPanel\tB-Variable_Name\ttabPanel\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\na\tO\ta\tO\ncard\tO\tcard\tO\nlayout\tB-Library_Variable\tlayout\tO\nby\tO\tby\tO\ndefinition\tO\tdefinition\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5848861\tO\t5848861\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5848861/\tO\thttps://stackoverflow.com/questions/5848861/\tO\n\t\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\nseveral\tO\tseveral\tO\nthings\tO\tthings\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nup\tO\tup\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\n'\tO\t'\tO\nMaps\tB-Library_Class\tMaps\tO\n'\tO\t'\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nlayout\tB-Library_Variable\tlayout\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nit\tO\tit\tO\nhas\tO\thas\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nchild\tO\tchild\tO\nitem\tO\titem\tO\n,\tO\t,\tO\nlayout\tB-Library_Variable\tlayout\tO\n:\tO\t:\tO\n'\tO\t'\tO\nfit\tB-Library_Variable\tfit\tO\n'\tO\t'\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappropriate\tO\tappropriate\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\n2)\tO\t2)\tO\nOnly\tO\tOnly\tO\nuse\tO\tuse\tO\nfullscreen\tB-Library_Variable\tfullscreen\tO\non\tO\ton\tO\nthe\tO\tthe\tO\noutermost\tO\toutermost\tO\nitem\tO\titem\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nitems\tO\titems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nfullscreen\tB-Library_Variable\tfullscreen\tO\nsince\tO\tsince\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nchild\tO\tchild\tO\nitems\tO\titems\tO\nof\tO\tof\tO\nother\tO\tother\tO\ncontainers\tO\tcontainers\tO\n.\tO\t.\tO\n\t\n3)\tO\t3)\tO\nTo\tO\tTo\tO\ndynamically\tO\tdynamically\tO\nadd\tO\tadd\tO\nitems\tO\titems\tO\nto\tO\tto\tO\na\tO\ta\tO\ncontainer\tO\tcontainer\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nadd()\tB-Library_Function\tadd()\tO\nmethod\tO\tmethod\tO\non\tO\ton\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\ndoLayout()\tB-Library_Function\tdoLayout()\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\nlayout\tB-Library_Variable\tlayout\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_652\tI-Code_Block\tA_652\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nmap\tB-User_Interface_Element\tmap\tO\nto\tO\tto\tO\na\tO\ta\tO\npanel\tB-User_Interface_Element\tpanel\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nany\tO\tany\tO\nextra\tO\textra\tO\nfunctionality\tO\tfunctionality\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nmap\tB-User_Interface_Element\tmap\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbtnPanel\tB-Variable_Name\tbtnPanel\tO\n.\tO\t.\tO\n\t\n4)\tO\t4)\tO\nThe\tO\tThe\tO\nbtnPanel\tB-Variable_Name\tbtnPanel\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nlayout\tB-Library_Variable\tlayout\tO\neither\tO\teither\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nan\tO\tan\tO\nappropriate\tO\tappropriate\tO\nlayout\tB-Library_Variable\tlayout\tO\nthere\tO\tthere\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n,\tO\t,\tO\npossibly\tO\tpossibly\tO\nthe\tO\tthe\tO\nvbox\tO\tvbox\tO\nlayout\tB-Library_Variable\tlayout\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43402715\tO\t43402715\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43402715/\tO\thttps://stackoverflow.com/questions/43402715/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nread\tO\tread\tO\nsome\tO\tsome\tO\nquestions\tO\tquestions\tO\nabout\tO\tabout\tO\nkinesis\tB-Application\tkinesis\tO\nshard\tB-Library_Class\tshard\tO\nand\tO\tand\tO\nmultiple\tO\tmultiple\tO\nconsumers\tB-Library_Class\tconsumers\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nkinesis\tB-Application\tkinesis\tO\nstream\tB-Library_Class\tstream\tO\nwith\tO\twith\tO\njust\tO\tjust\tO\none\tO\tone\tO\nshard\tB-Library_Class\tshard\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nconsume\tO\tconsume\tO\nthis\tO\tthis\tO\nshard\tB-Library_Class\tshard\tO\nusing\tO\tusing\tO\ndifferent\tO\tdifferent\tO\nlambda\tO\tlambda\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nindependently\tO\tindependently\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\nlambda\tO\tlambda\tO\nfunction\tO\tfunction\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nit\tO\tit\tO\n's\tO\t's\tO\nown\tO\town\tO\nshard\tB-Library_Class\tshard\tO\niterator\tO\titerator\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nSet\tO\tSet\tO\nmultiple\tO\tmultiple\tO\nlambda\tO\tlambda\tO\nconsumers\tB-Library_Class\tconsumers\tO\n(\tO\t(\tO\nstream\tB-Library_Class\tstream\tO\nbased\tO\tbased\tO\n)\tO\t)\tO\nreading\tO\treading\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nstream/shard\tB-Library_Class\tstream/shard\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43402715\tO\t43402715\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43402715/\tO\thttps://stackoverflow.com/questions/43402715/\tO\n\t\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nno\tO\tno\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nshards\tB-Library_Class\tshards\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nlimit\tO\tlimit\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nconsumers\tB-Library_Class\tconsumers\tO\na\tO\ta\tO\nstream\tB-Library_Class\tstream\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyou\tO\tyou\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\njust\tO\tjust\tO\nlimit\tO\tlimit\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nconcurrent\tO\tconcurrent\tO\ninvocations\tO\tinvocations\tO\nof\tO\tof\tO\neach\tO\teach\tO\nlambda\tO\tlambda\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nconsumers\tB-Library_Class\tconsumers\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nshards\tB-Library_Class\tshards\tO\nof\tO\tof\tO\nconcurrent\tO\tconcurrent\tO\nexecutions\tO\texecutions\tO\n.\tO\t.\tO\n\t\nSeethis\tO\tSeethis\tO\ndoc\tO\tdoc\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25688230\tO\t25688230\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25688230/\tO\thttps://stackoverflow.com/questions/25688230/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nenum\tB-Data_Type\tenum\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2925\tI-Code_Block\tQ_2925\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nEnumDropDownListFor\tB-Library_Class\tEnumDropDownListFor\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2926\tI-Code_Block\tQ_2926\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nas\tO\tas\tO\ndefault\tO\tdefault\tO\n(\tO\t(\tO\nwhen\tO\twhen\tO\npage\tO\tpage\tO\nhad\tO\thad\tO\nbeen\tO\tbeen\tO\nloaded\tO\tloaded\tO\n)\tO\t)\tO\ni\tO\ti\tO\nsee\tO\tsee\tO\nEmployee\tB-Variable_Name\tEmployee\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nform.But\tO\tform.But\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nfirstly\tO\tfirstly\tO\nEvaluation.My\tB-Variable_Name\tEvaluation.My\tO\nfirst\tO\tfirst\tO\ndecision\tO\tdecision\tO\nwas\tO\twas\tO\nchanging\tO\tchanging\tO\nenum\tB-Data_Type\tenum\tO\nquery\tO\tquery\tO\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2927\tI-Code_Block\tQ_2927\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nbad\tO\tbad\tO\ndecision\tO\tdecision\tO\nfor\tO\tfor\tO\nwhole\tO\twhole\tO\nproject\tO\tproject\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\nworking\tO\tworking\tO\n)\tO\t)\tO\n.So\tO\t.So\tO\nhow\tO\thow\tO\neasly\tO\teasly\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nanother\tO\tanother\tO\ndefault\tO\tdefault\tO\n?\tO\t?\tO\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15564380\tO\t15564380\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15564380/\tO\thttps://stackoverflow.com/questions/15564380/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthis\tO\tthis\tO\nSlideshow\tB-User_Interface_Element\tSlideshow\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nI\tO\tI\tO\ndouble\tO\tdouble\tO\nchecked\tO\tchecked\tO\nendless\tO\tendless\tO\ntimes\tO\ttimes\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1524\tI-Code_Block\tQ_1524\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhttp://jsfiddle.net/2VQ9A/\tO\thttp://jsfiddle.net/2VQ9A/\tO\n\t\nIt\tO\tIt\tO\nonly\tO\tonly\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\non\tO\ton\tO\njsfiddle\tB-Application\tjsfiddle\tO\n,\tO\t,\tO\nits\tO\tits\tO\nlike\tO\tlike\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\nrecognized\tO\trecognized\tO\nby\tO\tby\tO\nmy\tO\tmy\tO\nbrowser\tB-Application\tbrowser\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nweird\tO\tweird\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nsilly\tO\tsilly\tO\nquestion\tO\tquestion\tO\nand\tO\tand\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nJavascript\tB-Language\tJavascript\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nappreciate\tO\tappreciate\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\n:)\tO\t:)\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15564380\tO\t15564380\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15564380/\tO\thttps://stackoverflow.com/questions/15564380/\tO\n\t\n\t\ninclude\tO\tinclude\tO\nthese\tO\tthese\tO\nfiles\tO\tfiles\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2002\tI-Code_Block\tA_2002\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nfiddle\tB-Application\tfiddle\tO\nmeans\tO\tmeans\tO\ndefinetely\tO\tdefinetely\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nprobme.Try\tO\tprobme.Try\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15564380\tO\t15564380\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15564380/\tO\thttps://stackoverflow.com/questions/15564380/\tO\n\t\n\t\nCheck\tO\tCheck\tO\non\tO\ton\tO\nyou\tO\tyou\tO\npage\tO\tpage\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\njquery\tB-Library\tjquery\tB-Code_Block\nfiles\tO\tfiles\tI-Code_Block\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2003\tI-Code_Block\tA_2003\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\nadd\tO\tadd\tO\nthese\tO\tthese\tO\nfiles\tO\tfiles\tO\nby\tO\tby\tO\nany\tO\tany\tO\nCDN\tO\tCDN\tB-Code_Block\nlike\tO\tlike\tO\nGoogle\tB-Application\tGoogle\tB-Code_Block\nor\tO\tor\tO\nMicrosoft\tB-Application\tMicrosoft\tB-Code_Block\n\t\nAlso\tO\tAlso\tO\nAdd\tO\tAdd\tO\nyou\tO\tyou\tO\ncode\tO\tcode\tO\nafter\tO\tafter\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nfiles\tO\tfiles\tO\n\t\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2004\tI-Code_Block\tA_2004\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41528707\tO\t41528707\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41528707/\tO\thttps://stackoverflow.com/questions/41528707/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\ntable\tB-Data_Structure\ttable\tO\ncalled\tO\tcalled\tO\ntemp_09.jwn\tB-File_Name\ttemp_09.jwn\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncolumn\tB-Data_Structure\tcolumn\tO\ncalled\tO\tcalled\tO\ncobrand_bank_id\tB-Variable_Name\tcobrand_bank_id\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nskip\tO\tskip\tO\nthe\tO\tthe\tO\nALTER\tB-Code_Block\tALTER\tO\nTABLE\tI-Code_Block\tTABLE\tO\nstep\tO\tstep\tO\nbelow\tO\tbelow\tO\nand\tO\tand\tO\njust\tO\tjust\tO\ndirectly\tO\tdirectly\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\ninsert\tB-Code_Block\tinsert\tO\ninto\tO\tinto\tO\nstatement\tO\tstatement\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5272\tI-Code_Block\tQ_5272\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41528707\tO\t41528707\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41528707/\tO\thttps://stackoverflow.com/questions/41528707/\tO\n\t\n\t\nNo\tO\tNo\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nSchema-less\tO\tSchema-less\tO\ndatabases\tO\tdatabases\tO\n(\tO\t(\tO\nNoSQL\tB-Application\tNoSQL\tO\n)\tO\t)\tO\ncan\tO\tcan\tO\nsupport\tO\tsupport\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nan\tO\tan\tO\nRDBMS\tB-Application\tRDBMS\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nits\tO\tits\tO\nscheme\tO\tscheme\tO\naltered\tO\taltered\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nlike\tO\tlike\tO\nsaying\tO\tsaying\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nI\tO\tI\tO\nbought\tO\tbought\tO\nthese\tO\tthese\tO\nnew\tO\tnew\tO\nshoes\tO\tshoes\tO\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nbin\tO\tbin\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\njust\tO\tjust\tO\ntoss\tO\ttoss\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncorner\tO\tcorner\tO\nwill\tO\twill\tO\na\tO\ta\tO\nbin\tO\tbin\tO\nappear\tO\tappear\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\nNo\tO\tNo\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nbin\tB-File_Type\tbin\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41528707\tO\t41528707\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41528707/\tO\thttps://stackoverflow.com/questions/41528707/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nseveral\tO\tseveral\tO\noptions\tO\toptions\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nschema\tO\tschema\tO\nflexibility\tO\tflexibility\tO\nin\tO\tin\tO\nan\tO\tan\tO\n(\tO\t(\tO\nSQL\tB-Language\tSQL\tO\n-\tO\t-\tO\n)\tO\t)\tO\nRDBMS\tB-Application\tRDBMS\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nEntity\tO\tEntity\tO\n–\tO\t–\tO\nattribute\tO\tattribute\tO\n–\tO\t–\tO\nvalue\tO\tvalue\tO\nmodel\tO\tmodel\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\nstore\tO\tstore\tO\na\tO\ta\tO\nJSON\tB-File_Type\tJSON\tO\ndocument\tO\tdocument\tO\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\ndata\tO\tdata\tO\nvolume\tO\tvolume\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\na\tO\ta\tO\nnosql\tB-Application\tnosql\tO\ndb\tO\tdb\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nbetter\tO\tbetter\tO\nchoice\tO\tchoice\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nsometimes\tO\tsometimes\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nor\tO\tor\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ntables\tB-Data_Structure\ttables\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nschema-flexible\tO\tschema-flexible\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nother\tO\tother\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nrelational\tO\trelational\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nSQL\tB-Language\tSQL\tO\nRDBMS\tB-Application\tRDBMS\tO\nsupport\tO\tsupport\tO\nschema\tO\tschema\tO\nflexible\tO\tflexible\tO\ntables\tB-Data_Structure\ttables\tO\n,\tO\t,\tO\nE.g\tO\tE.g\tO\n.\tO\t.\tO\nSAP\tB-Code_Block\tSAP\tO\nHANA\tI-Code_Block\tHANA\tO\n(\tI-Code_Block\t(\tO\n\"\tI-Code_Block\t\"\tO\nCREATE\tI-Code_Block\tCREATE\tO\nTABLE\tI-Code_Block\tTABLE\tO\n..\tI-Code_Block\t..\tO\n.\tI-Code_Block\t.\tO\nWITH\tI-Code_Block\tWITH\tO\nSCHEMA\tI-Code_Block\tSCHEMA\tO\nFLEXIBILITY\tI-Code_Block\tFLEXIBILITY\tO\n..\tI-Code_Block\t..\tO\n.\tI-Code_Block\t.\tO\n\"\tI-Code_Block\t\"\tO\n)\tI-Code_Block\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36843164\tO\t36843164\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36843164/\tO\thttps://stackoverflow.com/questions/36843164/\tO\n\t\n\t\nInternet\tO\tInternet\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nvirtual\tB-Application\tvirtual\tO\nmachine\tI-Application\tmachine\tO\n(\tO\t(\tO\nCentOS\tB-Operating_System\tCentOS\tO\n7\tB-Version\t7\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nmachine\tO\tmachine\tO\nhas\tO\thas\tO\ntwo\tO\ttwo\tO\nnetwork\tB-Device\tnetwork\tO\nadapter\tI-Device\tadapter\tO\n,\tO\t,\tO\nNAT\tO\tNAT\tO\nand\tO\tand\tO\nHost\tO\tHost\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nping\tO\tping\tO\namong\tO\tamong\tO\nvirtual\tB-Application\tvirtual\tO\nmachines\tI-Application\tmachines\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n\"\tB-Code_Block\t\"\tO\nping\tI-Code_Block\tping\tO\nslave1\tI-Code_Block\tslave1\tO\n\"\tI-Code_Block\t\"\tO\n\"\tI-Code_Block\t\"\tO\nping\tI-Code_Block\tping\tO\nslave2\tI-Code_Block\tslave2\tO\n\"\tI-Code_Block\t\"\tO\n...\tO\t...\tO\n.\tO\t.\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\n\t\nping\tB-Code_Block\tping\tO\n8.8.8.8\tI-Code_Block\t8.8.8.8\tO\n\t\n->\tO\t->\tO\nPING\tB-Output_Block\tPING\tO\n8.8.8.8\tI-Output_Block\t8.8.8.8\tO\n(\tI-Output_Block\t(\tO\n8.8.8.8\tI-Output_Block\t8.8.8.8\tO\n)\tI-Output_Block\t)\tO\n56(84)\tI-Output_Block\t56(84)\tO\nbytes\tI-Output_Block\tbytes\tO\nof\tI-Output_Block\tof\tO\ndata\tI-Output_Block\tdata\tO\n.\tI-Output_Block\t.\tO\n\t\nafter\tO\tafter\tO\nthis\tO\tthis\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\ncomes\tO\tcomes\tO\nout.\tO\tout.\tO\n.\tO\t.\tO\n\t\nping\tB-Code_Block\tping\tO\ngoogle.com\tI-Code_Block\tgoogle.com\tO\n\t\n->\tO\t->\tO\nno\tO\tno\tO\nany\tO\tany\tO\nmessage\tO\tmessage\tO\ncomes\tO\tcomes\tO\nout\tO\tout\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nand\tO\tand\tO\nit\tO\tit\tO\nsays\tO\tsays\tO\n\"\tO\t\"\tO\nping\tB-Output_Block\tping\tO\n:\tI-Output_Block\t:\tO\nunkown\tI-Output_Block\tunkown\tO\nhost\tI-Output_Block\thost\tO\ngoogle.com\tI-Output_Block\tgoogle.com\tO\n\"\tO\t\"\tO\n\t\nenp0s3\tB-Code_Block\tenp0s3\tO\n->\tI-Code_Block\t->\tO\nNAT(on)\tI-Code_Block\tNAT(on)\tO\n\t\n->\tO\t->\tO\ninet\tB-Output_Block\tinet\tO\n10.0.2.15\tI-Output_Block\t10.0.2.15\tO\n\t\n->\tO\t->\tO\nnetmask\tB-Output_Block\tnetmask\tO\n255.255.255.0\tI-Output_Block\t255.255.255.0\tO\n\t\nenp0s8\tB-Code_Block\tenp0s8\tO\n->\tI-Code_Block\t->\tO\nhost(on)\tI-Code_Block\thost(on)\tO\n\t\n->\tO\t->\tO\n192.168.56.101\tB-Output_Block\t192.168.56.101\tO\n\t\nWhere\tO\tWhere\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nstart\tO\tstart\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nit\tO\tit\tO\nout\tO\tout\tO\n?\tO\t?\tO\n\t\nPlease\tO\tPlease\tO\nI\tO\tI\tO\nam\tO\tam\tO\nspending\tO\tspending\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n17\tO\t17\tO\nhours\tO\thours\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36843164\tO\t36843164\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36843164/\tO\thttps://stackoverflow.com/questions/36843164/\tO\n\t\n\t\nThe\tO\tThe\tO\nNetwrok\tB-Device\tNetwrok\tO\nadaptateur\tI-Device\tadaptateur\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nEnabled\tO\tEnabled\tO\n\t\nAttached\tO\tAttached\tO\nto\tO\tto\tO\nBridge\tB-Device\tBridge\tO\nAdapter\tI-Device\tAdapter\tO\n\t\nThen\tO\tThen\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nvirtual\tB-Application\tvirtual\tO\nmachine\tI-Application\tmachine\tO\n,\tO\t,\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nNetwork\tO\tNetwork\tO\nConnections\tO\tConnections\tO\nconfiguration\tO\tconfiguration\tO\nand\tO\tand\tO\nconfigure\tO\tconfigure\tO\nto\tO\tto\tO\nObtain\tO\tObtain\tO\nan\tO\tan\tO\nIP\tO\tIP\tO\naddress\tO\taddress\tO\nautomatically\tO\tautomatically\tO\nand\tO\tand\tO\nObtain\tO\tObtain\tO\nDNS\tB-Application\tDNS\tO\nserver\tI-Application\tserver\tO\naddress\tO\taddress\tO\nautomatically\tO\tautomatically\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32390491\tO\t32390491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32390491/\tO\thttps://stackoverflow.com/questions/32390491/\tO\n\t\n\t\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nlogin\tO\tlogin\tO\nand\tO\tand\tO\nregister\tO\tregister\tO\nwith\tO\twith\tO\nPHP\tB-Language\tPHP\tO\nand\tO\tand\tO\nMySQL\tB-Application\tMySQL\tO\nin\tO\tin\tO\nfragment\tO\tfragment\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nsample\tO\tsample\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nhope\tO\thope\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nloginfragment\tB-Class_Name\tloginfragment\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3925\tI-Code_Block\tQ_3925\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nloginlayout\tB-Variable_Name\tloginlayout\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3926\tI-Code_Block\tQ_3926\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nandroid\tB-Operating_System\tandroid\tO\nso\tO\tso\tO\nI\tO\tI\tO\nreally\tO\treally\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalready\tO\talready\tO\ndevelop\tO\tdevelop\tO\nlogin\tO\tlogin\tO\nand\tO\tand\tO\nregister\tO\tregister\tO\nwith\tO\twith\tO\nPHP\tB-Language\tPHP\tO\nand\tO\tand\tO\nMySQL\tB-Application\tMySQL\tO\nby\tO\tby\tO\nfollowing\tO\tfollowing\tO\ntutorials\tO\ttutorials\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\nactivity\tB-Library_Class\tactivity\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32390491\tO\t32390491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32390491/\tO\thttps://stackoverflow.com/questions/32390491/\tO\n\t\n\t\nYou\tO\tYou\tO\nasked\tO\tasked\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nan\tO\tan\tO\ninvolved\tO\tinvolved\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nwithout\tO\twithout\tO\nbeing\tO\tbeing\tO\nable\tO\table\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nyour\tO\tyour\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\nmentioned\tO\tmentioned\tO\nneeding\tO\tneeding\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nAndroid\tB-Operating_System\tAndroid\tO\nDevelopers\tO\tDevelopers\tO\ntraining\tO\ttraining\tO\nwith\tO\twith\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nexamples\tO\texamples\tO\n,\tO\t,\tO\nhttp://developer.android.com/training/basics/network-ops/connecting.html\tO\thttp://developer.android.com/training/basics/network-ops/connecting.html\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nrelevant\tO\trelevant\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nhere\tO\there\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4633\tI-Code_Block\tA_4633\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHaving\tO\tHaving\tO\ndone\tO\tdone\tO\nthis\tO\tthis\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ntimes\tO\ttimes\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\npoint\tO\tpoint\tO\nout\tO\tout\tO\nsome\tO\tsome\tO\nthings\tO\tthings\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nlikely\tO\tlikely\tO\nbite\tO\tbite\tO\nyou\tO\tyou\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthis\tO\tthis\tO\n\t\nAndroid\tB-Operating_System\tAndroid\tO\nrequires\tO\trequires\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\ncalls\tO\tcalls\tO\na\tO\ta\tO\nweb\tO\tweb\tO\nserver\tB-Application\tserver\tO\nin\tO\tin\tO\na\tO\ta\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nhttp://developer.android.com/training/multiple-threads/index.html\tO\thttp://developer.android.com/training/multiple-threads/index.html\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nprobably\tO\tprobably\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nauthentication\tO\tauthentication\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nif\tO\tif\tO\nPHP\tB-Language\tPHP\tO\nside\tO\tside\tO\nyou\tO\tyou\tO\nused\tO\tused\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nDrupal\tB-Library\tDrupal\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nPHP\tB-Language\tPHP\tO\nframework\tO\tframework\tO\nrequires\tO\trequires\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nSession\tO\tSession\tO\nauth\tO\tauth\tO\nwith\tO\twith\tO\na\tO\ta\tO\nCRLF\tB-Value\tCRLF\tO\ntoken\tO\ttoken\tO\nor\tO\tor\tO\nOAuth\tO\tOAuth\tO\nor\tO\tor\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nscheme\tO\tscheme\tO\n.\tO\t.\tO\n\t\nAuthentication\tO\tAuthentication\tO\nwill\tO\twill\tO\ninvolve\tO\tinvolve\tO\nthree\tO\tthree\tO\nsteps\tO\tsteps\tO\n:\tO\t:\tO\n\t\n**\tO\t**\tO\nSign\tO\tSign\tO\nin\tO\tin\tO\n\t\n**\tO\t**\tO\nRetrieve\tO\tRetrieve\tO\na\tO\ta\tO\ncookie\tO\tcookie\tO\nor\tO\tor\tO\ntoken\tO\ttoken\tO\n\t\n**\tO\t**\tO\nSend\tO\tSend\tO\nthe\tO\tthe\tO\ntoken\tO\ttoken\tO\nin\tO\tin\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\ncontent\tO\tcontent\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nheaders\tO\theaders\tO\n\t\nFinally\tO\tFinally\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nencapsulation\tO\tencapsulation\tO\nlayer\tO\tlayer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlike\tO\tlike\tO\nJSON\tB-File_Type\tJSON\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nfolks\tO\tfolks\tO\nlike\tO\tlike\tO\nXML\tB-File_Type\tXML\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nGSON\tB-Library\tGSON\tO\nlibrary\tO\tlibrary\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nlearn\tO\tlearn\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nhere\tO\there\tO\n,\tO\t,\tO\nhttps://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/Gson.html\tO\thttps://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/Gson.html\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nuser\tO\tuser\tO\nand\tO\tand\tO\nbeginner\tO\tbeginner\tO\nfriendly\tO\tfriendly\tO\nJSON\tB-File_Type\tJSON\tO\nlibrary\tO\tlibrary\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\npractice\tO\tpractice\tO\nI\tO\tI\tO\nusually\tO\tusually\tO\nuse\tO\tuse\tO\nAndroid\tB-Operating_System\tAndroid\tO\n's\tO\t's\tO\nbuilt-in\tO\tbuilt-in\tO\nJSONArray\tB-Library_Class\tJSONArray\tO\nand\tO\tand\tO\nJSONObject\tB-Library_Class\tJSONObject\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32390491\tO\t32390491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32390491/\tO\thttps://stackoverflow.com/questions/32390491/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\ngood\tO\tgood\tO\nexample\tO\texample\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n\t\nhttp://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/\tO\thttp://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/\tO\n\t\nOverall\tO\tOverall\tO\nsteps\tO\tsteps\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCreate\tO\tCreate\tO\nWeb-service\tO\tWeb-service\tO\nfor\tO\tfor\tO\nlogin\tO\tlogin\tO\nin\tO\tin\tO\nPHP\tB-Language\tPHP\tB-Code_Block\n\t\nCall\tO\tCall\tO\nthat\tO\tthat\tO\nWeb-service\tO\tWeb-service\tO\nform\tO\tform\tO\nandroid\tB-Operating_System\tandroid\tO\nFragment\tB-Library_Class\tFragment\tB-Code_Block\n\t\nGet\tO\tGet\tO\nresponse\tO\tresponse\tO\nand\tO\tand\tO\nparse\tO\tparse\tO\nit\tO\tit\tO\n\t\nShow\tO\tShow\tO\nthe\tO\tthe\tO\nResult\tO\tResult\tO\nto\tO\tto\tO\nUser\tO\tUser\tO\n\t\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nfor\tO\tfor\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nFragments\tB-Library_Class\tFragments\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2476581\tO\t2476581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2476581/\tO\thttps://stackoverflow.com/questions/2476581/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nrich\tB-Data_Type\trich\tO\ntext\tI-Data_Type\ttext\tO\nin\tO\tin\tO\na\tO\ta\tO\nQComboBox\tB-Library_Class\tQComboBox\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nsubclass\tO\tsubclass\tO\n?\tO\t?\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunsure\tO\tunsure\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nas\tO\tas\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnever\tO\tnever\tO\ndone\tO\tdone\tO\nanything\tO\tanything\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2476581\tO\t2476581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2476581/\tO\thttps://stackoverflow.com/questions/2476581/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\ncustom\tO\tcustom\tO\ndelegate\tO\tdelegate\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\nreplace\tO\treplace\tO\nstandard\tO\tstandard\tO\ndrawing\tO\tdrawing\tO\nroutine\tO\troutine\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nown\tO\town\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nQLabel\tB-Library_Class\tQLabel\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nwas\tO\twas\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nquestion\tO\tquestion\tO\nhere\tO\there\tO\n:\tO\t:\tO\nQListView/QListWidget\tB-Library_Class\tQListView/QListWidget\tO\nwith\tO\twith\tO\ncustom\tO\tcustom\tO\nitems\tO\titems\tO\nand\tO\tand\tO\ncustom\tO\tcustom\tO\nitem\tO\titem\tO\nwidgets\tB-User_Interface_Element\twidgets\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25610261\tO\t25610261\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25610261/\tO\thttps://stackoverflow.com/questions/25610261/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nvalidating\tO\tvalidating\tO\nan\tO\tan\tO\nXML\tB-Language\tXML\tO\nDOMDocument\tB-Library_Class\tDOMDocument\tO\nwith\tO\twith\tO\na\tO\ta\tO\nscheme\tO\tscheme\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nmessage\tO\tmessage\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nWarning\tO\tWarning\tO\n:\tO\t:\tO\nDOMDocument::schemaValidate()\tB-Library_Function\tDOMDocument::schemaValidate()\tO\n:\tO\t:\tO\nElement\tO\tElement\tO\n'\tO\t'\tO\nfoo\tB-Code_Block\tfoo\tO\n'\tO\t'\tO\n:\tO\t:\tO\nThis\tO\tThis\tO\nelement\tO\telement\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nExpected\tO\tExpected\tO\nis\tO\tis\tO\none\tO\tone\tO\nof\tO\tof\tO\n(\tO\t(\tO\n{url}foo\tB-Code_Block\t{url}foo\tO\n,\tI-Code_Block\t,\tO\n{url}bar\tI-Code_Block\t{url}bar\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\n'\tO\t'\tO\nfoo\tB-Code_Block\tfoo\tO\n'\tO\t'\tO\nand\tO\tand\tO\n'{url}foo'\tB-Code_Block\t'{url}foo'\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nwarning\tO\twarning\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25610261\tO\t25610261\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25610261/\tO\thttps://stackoverflow.com/questions/25610261/\tO\n\t\n\t\nThe\tO\tThe\tO\nnotation\tO\tnotation\tO\n{url}foo\tB-Code_Block\t{url}foo\tB-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nan\tO\tan\tO\nexpanded\tO\texpanded\tO\nname\tO\tname\tO\nwhose\tO\twhose\tO\nnamespace\tO\tnamespace\tO\npart\tO\tpart\tO\nis\tO\tis\tO\nurl\tB-Variable_Name\turl\tB-Code_Block\nand\tO\tand\tO\nwhose\tO\twhose\tO\nlocal\tO\tlocal\tO\nname\tO\tname\tO\npart\tO\tpart\tO\nis\tO\tis\tO\nfoo\tB-Variable_Name\tfoo\tB-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nsometimes\tO\tsometimes\tO\nreferred\tO\treferred\tO\nto\tO\tto\tO\nas\tO\tas\tO\n'\tO\t'\tO\nClark\tO\tClark\tO\nnotation\tO\tnotation\tO\n'\tO\t'\tO\nfor\tO\tfor\tO\nJames\tB-User_Name\tJames\tO\nClark\tI-User_Name\tClark\tO\n,\tO\t,\tO\nwho\tO\twho\tO\npromoted\tO\tpromoted\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthis\tO\tthis\tO\nnotation\tO\tnotation\tO\nis\tO\tis\tO\nin\tO\tin\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nunqualified\tO\tunqualified\tO\nnames\tO\tnames\tO\nare\tO\tare\tO\nsometimes\tO\tsometimes\tO\nreferred\tO\treferred\tO\nto\tO\tto\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nnotation\tO\tnotation\tO\n{}foo\tB-Code_Block\t{}foo\tB-Code_Block\nand\tO\tand\tO\nsometimes\tO\tsometimes\tO\n(\tO\t(\tO\nas\tO\tas\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n)\tO\t)\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nnotation\tO\tnotation\tO\nfoo\tB-Variable_Name\tfoo\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nis\tO\tis\tO\ntelling\tO\ttelling\tO\nyou\tO\tyou\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nfound\tO\tfound\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nunqualified\tO\tunqualified\tO\nname\tO\tname\tO\nfoo\tB-Variable_Name\tfoo\tB-Code_Block\n,\tO\t,\tO\nat\tO\tat\tO\na\tO\ta\tO\nlocation\tO\tlocation\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nexpecting\tO\texpecting\tO\na\tO\ta\tO\nnamespace-qualfied\tO\tnamespace-qualfied\tO\nelement\tO\telement\tO\nnamed\tO\tnamed\tO\neither\tO\teither\tO\nfoo\tB-Variable_Name\tfoo\tB-Code_Block\nor\tO\tor\tO\nbar\tB-Variable_Name\tbar\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nnamespace\tO\tnamespace\tO\nurl\tB-Variable_Name\turl\tB-Code_Block\n.\tO\t.\tO\n\t\nProbable\tO\tProbable\tO\ncause\tO\tcause\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nXML\tB-Language\tXML\tO\ninstance\tO\tinstance\tO\nlacks\tO\tlacks\tO\na\tO\ta\tO\nrequired\tO\trequired\tO\nnamespace\tO\tnamespace\tO\ndeclaration\tO\tdeclaration\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46622949\tO\t46622949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46622949/\tO\thttps://stackoverflow.com/questions/46622949/\tO\n\t\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nclassify\tO\tclassify\tO\nstrings\tB-Data_Type\tstrings\tO\nusing\tO\tusing\tO\nr\tB-Language\tr\tO\n\t\nMy\tO\tMy\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nstructure\tO\tstructure\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6142\tI-Code_Block\tQ_6142\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndistinguish\tO\tdistinguish\tO\nday\tO\tday\tO\n/\tO\t/\tO\nmonth\tO\tmonth\tO\n/\tO\t/\tO\nyear\tO\tyear\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ncommands\tO\tcommands\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nstrsplit\tB-Library_Function\tstrsplit\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nstr_split\tB-Library_Function\tstr_split\tO\n\"\tO\t\"\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nday\tO\tday\tO\n/\tO\t/\tO\nmonth\tO\tmonth\tO\n/\tO\t/\tO\nyear\tO\tyear\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncategorize\tO\tcategorize\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nappreciate\tO\tappreciate\tO\nit\tO\tit\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nanswer\tO\tanswer\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6143\tI-Code_Block\tQ_6143\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46622949\tO\t46622949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46622949/\tO\thttps://stackoverflow.com/questions/46622949/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\na\tO\ta\tO\npattern\tO\tpattern\tO\nfor\tO\tfor\tO\ndates\tO\tdates\tO\nmore\tO\tmore\tO\ncompletely\tO\tcompletely\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6765\tI-Code_Block\tA_6765\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46622949\tO\t46622949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46622949/\tO\thttps://stackoverflow.com/questions/46622949/\tO\n\t\n\t\nstringr\tB-Library\tstringr\tO\nand\tO\tand\tO\nrebus\tB-Library\trebus\tO\npackages\tO\tpackages\tO\nare\tO\tare\tO\nreally\tO\treally\tO\nhelpful\tO\thelpful\tO\nand\tO\tand\tO\nintuitive\tO\tintuitive\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6767\tI-Code_Block\tA_6767\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12897909\tO\t12897909\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12897909/\tO\thttps://stackoverflow.com/questions/12897909/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nmy\tO\tmy\tO\nMVC\tB-Algorithm\tMVC\tO\napplication\tO\tapplication\tO\nfrom\tO\tfrom\tO\nAzure\tB-Application\tAzure\tO\nto\tO\tto\tO\nan\tO\tan\tO\nin-house\tO\tin-house\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nexport\tO\texport\tO\nthe\tO\tthe\tO\nSSL\tO\tSSL\tO\ncertificate\tO\tcertificate\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nApp\tO\tApp\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\nserver\tB-Application\tserver\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nat\tO\tat\tO\nall\tO\tall\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12897909\tO\t12897909\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12897909/\tO\thttps://stackoverflow.com/questions/12897909/\tO\n\t\n\t\nNO\tO\tNO\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\ncertificate\tO\tcertificate\tO\nout\tO\tout\tO\nof\tO\tof\tO\nWindows\tB-Application\tWindows\tO\nAzure\tI-Application\tAzure\tO\n.\tO\t.\tO\n\t\nQuestion\tO\tQuestion\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nit\tO\tit\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\ncertificate\tO\tcertificate\tO\n)\tO\t)\tO\nappeared\tO\tappeared\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAzure\tB-Application\tAzure\tO\nat\tO\tat\tO\nfirst\tO\tfirst\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwas\tO\twas\tO\ncertainly\tO\tcertainly\tO\nnot\tO\tnot\tO\nuploaded\tO\tuploaded\tO\nby\tO\tby\tO\nMicrosoft\tB-Organization\tMicrosoft\tO\npeople\tO\tpeople\tO\nor\tO\tor\tO\nsome\tO\tsome\tO\nmagic\tO\tmagic\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\ndeveloper\tO\tdeveloper\tO\nwho\tO\twho\tO\npacked\tO\tpacked\tO\nthe\tO\tthe\tO\ndeployment\tO\tdeployment\tO\npackage\tO\tpackage\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\ncertificate\tO\tcertificate\tO\nreference\tO\treference\tO\n(\tO\t(\tO\nthumbprint\tO\tthumbprint\tO\n)\tO\t)\tO\nand\tO\tand\tO\nservice\tO\tservice\tO\nadministrator\tO\tadministrator\tO\n(\tO\t(\tO\nor\tO\tor\tO\nco-admin\tO\tco-admin\tO\n)\tO\t)\tO\nwho\tO\twho\tO\nuploaded\tO\tuploaded\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ncertificate\tO\tcertificate\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAzure\tB-Application\tAzure\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ncontact\tO\tcontact\tO\nthat\tO\tthat\tO\npeople\tO\tpeople\tO\n(\tO\t(\tO\nwhom\tO\twhom\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\njust\tO\tjust\tO\nyou\tO\tyou\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nand\tO\tand\tO\nask\tO\task\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ncertificate\tO\tcertificate\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\ncertificate\tO\tcertificate\tO\nis\tO\tis\tO\nlost\tO\tlost\tO\n,\tO\t,\tO\ncontact\tO\tcontact\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nissuer\tO\tissuer\tO\n(\tO\t(\tO\ncertification\tO\tcertification\tO\nauthority\tO\tauthority\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwere\tO\twere\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nto\tO\tto\tO\noriginally\tO\toriginally\tO\nrequested\tO\trequested\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\noriginally\tO\toriginally\tO\nrequested\tO\trequested\tO\nthe\tO\tthe\tO\ncertificate\tO\tcertificate\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nmight\tO\tmight\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\na\tO\ta\tO\nreason\tO\treason\tO\nbehind\tO\tbehind\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40689342\tO\t40689342\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40689342/\tO\thttps://stackoverflow.com/questions/40689342/\tO\n\t\n\t\nGiven\tO\tGiven\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nindices\tO\tindices\tO\nof\tO\tof\tO\nnearest\tO\tnearest\tO\nnon-coprime\tO\tnon-coprime\tO\nnumber\tO\tnumber\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nGCD(Ai,\tB-Code_Block\tGCD(Ai,\tO\nAj)\tI-Code_Block\tAj)\tO\n>\tI-Code_Block\t>\tO\n1\tI-Code_Block\t1\tO\n,\tI-Code_Block\t,\tO\nfor\tI-Code_Block\tfor\tO\nany\tI-Code_Block\tany\tO\nAi\tI-Code_Block\tAi\tO\nand\tI-Code_Block\tand\tO\nAj\tI-Code_Block\tAj\tO\nin\tI-Code_Block\tin\tO\nthe\tI-Code_Block\tthe\tO\narray\tI-Code_Block\tarray\tO\n,\tI-Code_Block\t,\tO\ni\tI-Code_Block\ti\tO\n!=\tI-Code_Block\t!=\tO\nj\tI-Code_Block\tj\tO\n)\tO\t)\tO\nExample\tO\tExample\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5142\tI-Code_Block\tQ_5142\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nanswer\tO\tanswer\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5143\tI-Code_Block\tQ_5143\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nwritten\tO\twritten\tO\nthis\tO\tthis\tO\nbrute\tO\tbrute\tO\nforce\tO\tforce\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nO(n^2))\tO\tO(n^2))\tO\nusing\tO\tusing\tO\nBinary\tB-Algorithm\tBinary\tO\nGCD\tI-Algorithm\tGCD\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nefficient\tO\tefficient\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nfaster\tO\tfaster\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nParticularly\tO\tParticularly\tO\nin\tO\tin\tO\nO(NlogN)\tO\tO(NlogN)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5144\tI-Code_Block\tQ_5144\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40689342\tO\t40689342\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40689342/\tO\thttps://stackoverflow.com/questions/40689342/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nyour\tO\tyour\tO\nmax\tO\tmax\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nnumbers\tO\tnumbers\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nafford\tO\tafford\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nprimes\tO\tprimes\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nfactoring\tO\tfactoring\tO\nthem\tO\tthem\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\naverage/random\tO\taverage/random\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nworst\tO\tworst\tO\ncase\tO\tcase\tO\ncomplexity\tO\tcomplexity\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nstill\tO\tstill\tO\nO(N*N)\tO\tO(N*N)\tO\n-\tO\t-\tO\nthink\tO\tthink\tO\n\"\tO\t\"\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nare\tO\tare\tO\nprimes\tO\tprimes\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nworst\tO\tworst\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nApproach\tO\tApproach\tO\n:\tO\t:\tO\n\t\nfactor\tO\tfactor\tO\nthem\tO\tthem\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\na\tO\ta\tO\nMap[N]\tB-Code_Block\tMap[N]\tB-Code_Block\n+\tO\t+\tO\nint\tO\tint\tO\nclosestNeigh[]\tO\tclosestNeigh[]\tO\n\t\ntake\tO\ttake\tO\na\tO\ta\tO\nfactor\tO\tfactor\tO\nand\tO\tand\tO\nO(N)\tO\tO(N)\tB-Code_Block\ndetermine\tO\tdetermine\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nthe\tO\tthe\tO\nclosest\tO\tclosest\tO\nthat\tO\tthat\tO\ncontain\tO\tcontain\tO\nthat\tO\tthat\tO\nfactor\tO\tfactor\tO\n(\tO\t(\tO\nprefix/sufix\tO\tprefix/sufix\tO\nsums\tO\tsums\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ninvolved\tO\tinvolved\tO\n)\tO\t)\tO\n\t\neliminate\tO\teliminate\tO\nthat\tO\tthat\tO\nfactor\tO\tfactor\tO\nfrom\tO\tfrom\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfactor\tO\tfactor\tO\nmaps\tO\tmaps\tO\n\t\ntake\tO\ttake\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nfactor\tO\tfactor\tO\n.\tO\t.\tO\n\t\nAdjust\tO\tAdjust\tO\nthe\tO\tthe\tO\nclosest\tO\tclosest\tO\nneighbor\tO\tneighbor\tO\nindex\tO\tindex\tO\nonly\tO\tonly\tO\nif\tO\tif\tO\nnew\tO\tnew\tO\none\tO\tone\tO\nis\tO\tis\tO\nclosest\tO\tclosest\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmay\tO\tmay\tO\nbring\tO\tbring\tO\nsome\tO\tsome\tO\n\"\tO\t\"\tO\nrelief\tO\trelief\tO\n\"\tO\t\"\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nof\tO\tof\tO\nO\tB-Code_Block\tO\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nN*\tI-Code_Block\tN*\tI-Code_Block\n<num_distict_factors>\tI-Code_Block\t<num_distict_factors>\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nagain\tO\tagain\tO\nif\tO\tif\tO\n<num_distict_factors>\tB-Code_Block\t<num_distict_factors>\tB-Code_Block\n==\tI-Code_Block\t==\tI-Code_Block\nN\tI-Code_Block\tN\tI-Code_Block\n(\tO\t(\tO\nall\tO\tall\tO\nprimes\tO\tprimes\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nO(N*N)\tO\tO(N*N)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40689342\tO\t40689342\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40689342/\tO\thttps://stackoverflow.com/questions/40689342/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nwilling\tO\twilling\tO\nto\tO\tto\tO\nget\tO\tget\tO\ninto\tO\tinto\tO\nfactorization\tO\tfactorization\tO\n,\tO\t,\tO\none\tO\tone\tO\ncould\tO\tcould\tO\ntraverse\tO\ttraverse\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\n,\tO\t,\tO\nfactoring\tO\tfactoring\tO\neach\tO\teach\tO\nnumber\tO\tnumber\tO\n,\tO\t,\tO\nhashing\tO\thashing\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\nof\tO\tof\tO\neach\tO\teach\tO\nnew\tO\tnew\tO\nprime\tO\tprime\tO\n(\tO\t(\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nprime\tO\tprime\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\n)\tO\t)\tO\n,\tO\t,\tO\nupdating\tO\tupdating\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\nof\tO\tof\tO\neach\tO\teach\tO\nprime\tO\tprime\tO\nalready\tO\talready\tO\nseen\tO\tseen\tO\n,\tO\t,\tO\nand\tO\tand\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nnoting\tO\tnoting\tO\nthe\tO\tthe\tO\nnearest\tO\tnearest\tO\nseen\tO\tseen\tO\nprime\tO\tprime\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nthis\tO\tthis\tO\ntraversal\tO\ttraversal\tO\nwould\tO\twould\tO\nmiss\tO\tmiss\tO\nthe\tO\tthe\tO\nnearest\tO\tnearest\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\n,\tO\t,\tO\nconduct\tO\tconduct\tO\nanother\tO\tanother\tO\ntraversal\tO\ttraversal\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nany\tO\tany\tO\nnearer\tO\tnearer\tO\nshared\tO\tshared\tO\nprime\tO\tprime\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfactor\tO\tfactor\tO\nlists\tB-Data_Structure\tlists\tO\nalready\tO\talready\tO\nsaved\tO\tsaved\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13528130\tO\t13528130\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13528130/\tO\thttps://stackoverflow.com/questions/13528130/\tO\n\t\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nread\tO\tread\tO\nany\tO\tany\tO\nimage\tB-User_Interface_Element\timage\tO\nand\tO\tand\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ncolors\tO\tcolors\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nseveral\tO\tseveral\tO\nimages\tB-User_Interface_Element\timages\tO\nwith\tO\twith\tO\nseveral\tO\tseveral\tO\nformats\tO\tformats\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nadvice\tO\tadvice\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nreceive\tO\treceive\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ncolors\tO\tcolors\tO\nin\tO\tin\tO\nWriteableBitmap.GetPixels()\tB-Library_Function\tWriteableBitmap.GetPixels()\tB-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\njust\tO\tjust\tO\ncloned\tO\tcloned\tB-Code_Block\nthe\tO\tthe\tI-Code_Block\nimage\tB-User_Interface_Element\timage\tI-Code_Block\nby\tO\tby\tO\nreading\tO\treading\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\npixel\tO\tpixel\tO\nby\tO\tby\tO\npixel\tO\tpixel\tO\nand\tO\tand\tO\nputting\tO\tputting\tO\nthis\tO\tthis\tO\npixel\tO\tpixel\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nwriteablebitmap\tB-Library_Class\twriteablebitmap\tO\non\tO\ton\tO\nsame\tO\tsame\tO\nposition\tO\tposition\tO\n.\tO\t.\tO\n\t\nLike\tO\tLike\tO\ncloning\tO\tcloning\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13528130\tO\t13528130\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13528130/\tO\thttps://stackoverflow.com/questions/13528130/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nfault\tO\tfault\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nWriteablebitmap\tB-Library_Class\tWriteablebitmap\tO\nEx\tO\tEx\tO\ncompiled\tO\tcompiled\tO\n/\tO\t/\tO\ndownloadable\tO\tdownloadable\tO\nversion\tO\tversion\tO\n1.0.2\tB-Version\t1.0.2\tO\n(\tO\t(\tO\nothers\tO\tothers\tO\nversion\tO\tversion\tO\nuntil\tO\tuntil\tO\nV\tB-Version\tV\tO\n1.0.5\tI-Version\t1.0.5\tO\nuntested\tO\tuntested\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsourcecode\tO\tsourcecode\tO\nof\tO\tof\tO\nwriteablebitmapex\tB-Library_Class\twriteablebitmapex\tO\nVersion\tO\tVersion\tO\n1.0.5\tB-Version\t1.0.5\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30826425\tO\t30826425\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30826425/\tO\thttps://stackoverflow.com/questions/30826425/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\none\tO\tone\tO\ntable\tB-Data_Structure\ttable\tO\nand\tO\tand\tO\ni\tO\ti\tO\nam\tO\tam\tO\niterating\tO\titerating\tO\ntr\tB-HTML_XML_Tag\ttr\tO\non\tO\ton\tO\nclick\tO\tclick\tO\nof\tO\tof\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3713\tI-Code_Block\tQ_3713\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\npage\tB-User_Interface_Element\tpage\tO\nX\tB-Variable_Name\tX\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nall\tO\tall\tO\niterated\tO\titerated\tO\ntr\tB-HTML_XML_Tag\ttr\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nnew\tO\tnew\tO\npage\tB-User_Interface_Element\tpage\tO\nY\tB-Variable_Name\tY\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3714\tI-Code_Block\tQ_3714\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nvery\tO\tvery\tO\nnew\tO\tnew\tO\nin\tO\tin\tO\nangular\tB-Library\tangular\tO\nso\tO\tso\tO\nmy\tO\tmy\tO\nbad\tO\tbad\tO\nif\tO\tif\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nas\tO\tas\tO\nper\tO\tper\tO\nstandard\tO\tstandard\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30826425\tO\t30826425\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30826425/\tO\thttps://stackoverflow.com/questions/30826425/\tO\n\t\n\t\nAdd\tO\tAdd\tO\ndeveloper\tO\tdeveloper\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n$rootScope\tB-Variable_Name\t$rootScope\tO\nand\tO\tand\tO\npass\tO\tpass\tO\nthat\tO\tthat\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\nscope\tO\tscope\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4395\tI-Code_Block\tA_4395\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\non\tO\ton\tO\nsecond\tO\tsecond\tO\npage\tO\tpage\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\n$rootScope\tB-Variable_Name\t$rootScope\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\nlocal\tO\tlocal\tO\n$scope\tB-Variable_Name\t$scope\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\nones\tO\tones\tO\nto\tO\tto\tO\nit\tO\tit\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nalso\tO\talso\tO\naccessible\tO\taccessible\tO\nto\tO\tto\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nexample\tO\texample\tO\non\tO\ton\tO\njsfiddle\tB-Application\tjsfiddle\tO\nhttp://jsfiddle.net/ae8neq3k/\tO\thttp://jsfiddle.net/ae8neq3k/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16400513\tO\t16400513\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16400513/\tO\thttps://stackoverflow.com/questions/16400513/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmultidimensional\tO\tmultidimensional\tO\narray\tB-Data_Structure\tarray\tO\ncalled\tO\tcalled\tO\n$responses\tB-Variable_Name\t$responses\tO\nand\tO\tand\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nprint_r\tB-Library_Function\tprint_r\tO\n\t\nMy\tO\tMy\tO\nforeach\tB-Code_Block\tforeach\tO\nloop\tO\tloop\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1646\tI-Code_Block\tQ_1646\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nan\tO\tan\tO\noutput\tO\toutput\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nprint_r($output)\tB-Library_Function\tprint_r($output)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16400513\tO\t16400513\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16400513/\tO\thttps://stackoverflow.com/questions/16400513/\tO\n\t\n\t\nSeems\tO\tSeems\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ntransformation\tO\ttransformation\tO\nto\tO\tto\tO\nme\tO\tme\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2122\tI-Code_Block\tA_2122\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16400513\tO\t16400513\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16400513/\tO\thttps://stackoverflow.com/questions/16400513/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2121\tI-Code_Block\tA_2121\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\ndo\tO\tdo\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nvar_dump\tB-Library_Function\tvar_dump\tO\n\"\tO\t\"\tO\non\tO\ton\tO\n\"\tO\t\"\tO\n$responses\tB-Variable_Name\t$responses\tO\n\"\tO\t\"\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nprint_r\tB-Library_Function\tprint_r\tO\n\"\tO\t\"\tO\nbecause\tO\tbecause\tO\nwe\tO\twe\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nview\tO\tview\tO\nhow\tO\thow\tO\nthis\tO\tthis\tO\nvariable\tO\tvariable\tO\nis\tO\tis\tO\nexactly\tO\texactly\tO\ndefined\tO\tdefined\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34713402\tO\t34713402\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34713402/\tO\thttps://stackoverflow.com/questions/34713402/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\niterator\tO\titerator\tO\n,\tO\t,\tO\ninheriting\tO\tinheriting\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\niter\tB-Library_Class\titer\tB-Code_Block\nclass\tO\tclass\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\niterators\tB-Library\titerators\tB-Code_Block\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\niterator\tO\titerator\tO\nand\tO\tand\tO\nits\tO\tits\tO\nmethods\tO\tmethods\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nexported\tO\texported\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\niterator\tO\titerator\tO\nand\tO\tand\tO\na\tO\ta\tO\ntest\tO\ttest\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nreproducible\tO\treproducible\tO\nand\tO\tand\tO\nrunnable\tO\trunnable\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\niterator\tO\titerator\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\npairsRef\tB-Function_Name\tpairsRef\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4231\tI-Code_Block\tQ_4231\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\niterator\tO\titerator\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nforeach\tO\tforeach\tO\nloops\tO\tloops\tO\nin\tO\tin\tO\na\tO\ta\tO\npackage\tO\tpackage\tO\nof\tO\tof\tO\nmine\tO\tmine\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nput\tO\tput\tO\nTest2\tB-Function_Name\tTest2\tO\nin\tO\tin\tO\na\tO\ta\tO\npackage\tO\tpackage\tO\n(\tO\t(\tO\nexported\tO\texported\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nfunctions\tO\tfunctions\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n(\tO\t(\tO\nunexported\tO\tunexported\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\nnamespace\tO\tnamespace\tO\nimport\tO\timport\tO\nBiostrings\tB-Library\tBiostrings\tO\n,\tO\t,\tO\niterators\tB-Library\titerators\tO\n,\tO\t,\tO\nand\tO\tand\tO\nforeach\tB-Library\tforeach\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\na\tO\ta\tO\nfresh\tO\tfresh\tO\nR\tB-Language\tR\tO\nsession\tO\tsession\tO\n,\tO\t,\tO\nloading\tO\tloading\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nrunning\tO\trunning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4232\tI-Code_Block\tQ_4232\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nResults\tO\tResults\tO\nin\tO\tin\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nError\tO\tError\tO\nin\tO\tin\tO\n{\tO\t{\tO\n:\tO\t:\tO\nattempt\tB-Error_Name\tattempt\tO\nto\tI-Error_Name\tto\tO\napply\tI-Error_Name\tapply\tO\nnon-function\tI-Error_Name\tnon-function\tO\n\"\tO\t\"\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ncustom\tO\tcustom\tO\niterator\tO\titerator\tO\nis\tO\tis\tO\ninternal\tO\tinternal\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nor\tO\tor\tO\nsuggestions\tO\tsuggestions\tO\nare\tO\tare\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nEDIT\tO\tEDIT\tO\n]\tO\t]\tO\n-\tO\t-\tO\nIf\tO\tIf\tO\nI\tO\tI\tO\nexport\tO\texport\tO\nthe\tO\tthe\tO\niterator\tO\titerator\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nfunctions\tO\tfunctions\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nall\tO\tall\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nnecessarily\tO\tnecessarily\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nexport\tO\texport\tO\niterators\tO\titerators\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\n\t\nBen\tB-User_Name\tBen\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34713402\tO\t34713402\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34713402/\tO\thttps://stackoverflow.com/questions/34713402/\tO\n\t\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nnextElem\tB-Function_Name\tnextElem\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nimported\tO\timported\tO\nfrom\tO\tfrom\tO\niterators\tB-Library\titerators\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nadditional\tO\tadditional\tO\nmethod\tO\tmethod\tO\nunique\tO\tunique\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n,\tO\t,\tO\nexported\tO\texported\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nvisible\tO\tvisible\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfunctions\tO\tfunctions\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nforeach\tB-Library\tforeach\tO\npackage\tO\tpackage\tO\nnamespace\tO\tnamespace\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18969916\tO\t18969916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18969916/\tO\thttps://stackoverflow.com/questions/18969916/\tO\n\t\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nMongoDB\tB-Application\tMongoDB\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1987\tI-Code_Block\tQ_1987\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nquery\tO\tquery\tO\n\"\tO\t\"\tO\nSUM\tO\tSUM\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nincoming\tO\tincoming\tO\nbetween\tO\tbetween\tO\n11\tB-Value\t11\tO\n-\tI-Value\t-\tO\n12\tI-Value\t12\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n500\tB-Value\t500\tO\n)\tO\t)\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncould\tO\tcould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\nMongo\tB-Application\tMongo\tO\nShell\tI-Application\tShell\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18969916\tO\t18969916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18969916/\tO\thttps://stackoverflow.com/questions/18969916/\tO\n\t\n\t\nAs\tO\tAs\tO\nllovet\tB-User_Name\tllovet\tO\nsuggested\tO\tsuggested\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\naggregation\tB-Library\taggregation\tO\nframework\tO\tframework\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyour\tO\tyour\tO\nquery\tO\tquery\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2517\tI-Code_Block\tA_2517\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nshape\tO\tshape\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\ndocument\tO\tdocument\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\ncontain\tO\tcontain\tO\nthe\tO\tthe\tO\nsum\tO\tsum\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\na\tO\ta\tO\n$project\tB-Library_Variable\t$project\tO\noperator\tO\toperator\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npipeline\tO\tpipeline\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2518\tI-Code_Block\tA_2518\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35970585\tO\t35970585\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35970585/\tO\thttps://stackoverflow.com/questions/35970585/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nthat\tO\tthat\tO\nrequires\tO\trequires\tO\nJSON\tB-Language\tJSON\tO\nfor\tO\tfor\tO\ngetting\tO\tgetting\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\njson\tB-File_Type\tjson\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nran\tO\tran\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwhen\tO\twhen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\njson\tB-Language\tjson\tO\nstring\tB-Data_Type\tstring\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nfor\tO\tfor\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nID\tO\tID\tO\nworks\tO\tworks\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntested\tO\ttested\tO\nthis\tO\tthis\tO\nmultiple\tO\tmultiple\tO\ntimes\tO\ttimes\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nenter\tO\tenter\tO\nint\tO\tint\tO\nhe\tO\the\tO\nID\tO\tID\tO\nas\tO\tas\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nit\tO\tit\tO\nalso\tO\talso\tO\nworks\tO\tworks\tO\nprefectly\tO\tprefectly\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\njsonString\tB-Class_Name\tjsonString\tO\nit\tO\tit\tO\nstops\tO\tstops\tO\nworking\tO\tworking\tO\nand\tO\tand\tO\ngives\tO\tgives\tO\na\tO\ta\tO\nnullpoiterexeption\tB-Error_Name\tnullpoiterexeption\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4402\tI-Code_Block\tQ_4402\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\njson\tB-Language\tjson\tO\nstring\tB-Data_Type\tstring\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\ninfo\tO\tinfo\tO\n{\tB-Code_Block\t{\tB-Code_Block\n\"W1121000-00002\":\tI-Code_Block\t\"W1121000-00002\":\tI-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\n\"clnt\":1023\tI-Code_Block\t\"clnt\":1023\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n\"srvr\":870\tI-Code_Block\t\"srvr\":870\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\n}\tB-Code_Block\t}\tB-Code_Block\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nclnt\tB-Value\tclnt\tB-Code_Block\nvalue\tO\tvalue\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24842192\tO\t24842192\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24842192/\tO\thttps://stackoverflow.com/questions/24842192/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nPyhton3.4.1\tB-Language\tPyhton3.4.1\tO\nand\tO\tand\tO\nwin7\tB-Operating_System\twin7\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nreading\tO\treading\tO\na\tO\ta\tO\ntxt\tB-File_Type\ttxt\tO\nfile\tO\tfile\tO\nexported\tO\texported\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nsoftware\tO\tsoftware\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\npython\tB-Language\tpython\tO\ncannot\tO\tcannot\tO\nread\tO\tread\tO\nthis\tO\tthis\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nif\tO\tif\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\nby\tO\tby\tO\nnotepad\tB-Application\tnotepad\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nspace\tO\tspace\tO\nin\tO\tin\tO\nany\tO\tany\tO\nplace\tO\tplace\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npython\tB-Language\tpython\tO\nworks\tO\tworks\tO\nwell\tO\twell\tO\nthen\tO\tthen\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nsame\tO\tsame\tO\nfile\tO\tfile\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nmac\tB-Device\tmac\tO\n,\tO\t,\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\nas\tO\tas\tO\nin\tO\tin\tO\nwindows\tB-Operating_System\twindows\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\noriginal\tO\toriginal\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nopen\tO\topen\tO\nand\tO\tand\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\nwindows\tB-Operating_System\twindows\tO\nnotepad\tB-Application\tnotepad\tO\n,\tO\t,\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\n\t\nopen\tO\topen\tO\nans\tO\tans\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\nmac\tB-Device\tmac\tO\ntextedit\tB-Application\ttextedit\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndoubting\tO\tdoubting\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ncoding\tO\tcoding\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nPython\tB-Language\tPython\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2796\tI-Code_Block\tQ_2796\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nShell\tB-Application\tShell\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2797\tI-Code_Block\tQ_2797\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlus\tO\tPlus\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncode\tO\tcode\tO\nreported\tO\treported\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nmac(Python3.4.1,OS10.9)\tB-Device\tmac(Python3.4.1,OS10.9)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2798\tI-Code_Block\tQ_2798\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24842192\tO\t24842192\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24842192/\tO\thttps://stackoverflow.com/questions/24842192/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nNotepad\tB-Application\tNotepad\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nreencoded\tO\treencoded\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsaved\tO\tsaved\tO\nas\tO\tas\tO\nyour\tO\tyour\tO\ndefault\tO\tdefault\tO\nfile\tO\tfile\tO\nencoding\tO\tencoding\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nWindows\tB-Operating_System\tWindows\tO\ninstallation\tO\tinstallation\tO\n.\tO\t.\tO\n\t\nNotepad\tB-Application\tNotepad\tO\nauto-detected\tO\tauto-detected\tO\nthe\tO\tthe\tO\nencoding\tO\tencoding\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nopened\tO\topened\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n.\tO\t.\tO\n\t\nPython\tB-Language\tPython\tO\nopens\tO\topens\tO\nfile\tO\tfile\tO\nusing\tO\tusing\tO\nthat\tO\tthat\tO\nsame\tO\tsame\tO\nsystem\tO\tsystem\tO\nencoding\tO\tencoding\tO\n,\tO\t,\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nnow\tO\tnow\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nQuoting\tO\tQuoting\tO\nthe\tO\tthe\tO\nopen()\tB-Library_Function\topen()\tB-Code_Block\nfunction\tO\tfunction\tO\ndocumentation\tO\tdocumentation\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nexplicitly\tO\texplicitly\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nencoding\tO\tencoding\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nit\tO\tit\tO\ndirectly\tO\tdirectly\tO\nin\tO\tin\tO\nPython\tB-Language\tPython\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3408\tI-Code_Block\tA_3408\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nused\tO\tused\tO\n'\tB-Value\t'\tB-Code_Block\nutf-8-sig\tI-Value\tutf-8-sig\tI-Code_Block\n'\tI-Value\t'\tI-Code_Block\nas\tO\tas\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nhere\tO\there\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nencoding\tO\tencoding\tO\nthat\tO\tthat\tO\nNotepad\tB-Application\tNotepad\tO\ncan\tO\tcan\tO\nauto-detect\tO\tauto-detect\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncould\tO\tcould\tO\nwell\tO\twell\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nencoding\tO\tencoding\tO\nis\tO\tis\tO\nUTF-16\tB-Value\tUTF-16\tO\nor\tO\tor\tO\nplain\tO\tplain\tO\nUTF-8\tB-Value\tUTF-8\tO\nor\tO\tor\tO\nany\tO\tany\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nother\tO\tother\tO\nencodings\tO\tencodings\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nis\tO\tis\tO\nencoded\tO\tencoded\tO\nwith\tO\twith\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nANSI\tO\tANSI\tO\ncodepage\tO\tcodepage\tO\nyou\tO\tyou\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nname\tO\tname\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\ncodepage\tO\tcodepage\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nsystem\tO\tsystem\tO\nis\tO\tis\tO\nconfigured\tO\tconfigured\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ncode\tO\tcode\tO\npage\tO\tpage\tO\n936\tO\t936\tO\n(\tO\t(\tO\nGBK\tO\tGBK\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nencoding\tO\tencoding\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\ncodecs\tB-Library\tcodecs\tB-Code_Block\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nsupported\tO\tsupported\tO\nencodings\tO\tencodings\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1152958\tO\t1152958\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1152958/\tO\thttps://stackoverflow.com/questions/1152958/\tO\n\t\n\t\nCompile\tO\tCompile\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nclass\tO\tclass\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_68\tI-Code_Block\tQ_68\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nusing\tO\tusing\tO\ngcc\tB-Code_Block\tgcc\tB-Code_Block\n-fdump-class-hierarchy\tI-Code_Block\t-fdump-class-hierarchy\tI-Code_Block\n.\tO\t.\tO\n\t\ngcc\tB-Code_Block\tgcc\tB-Code_Block\nemits\tO\temits\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tO\n:\tI-Code_Block\t:\tO\n(\tI-Code_Block\t(\tO\ncode\tI-Code_Block\tcode\tO\nomitted\tI-Code_Block\tomitted\tO\nfor\tI-Code_Block\tfor\tO\nannotation\tI-Code_Block\tannotation\tO\n)\tI-Code_Block\t)\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsignificance\tO\tsignificance\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nnearly-empty\tO\tnearly-empty\tO\n\"\tO\t\"\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nmean\tO\tmean\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1152958\tO\t1152958\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1152958/\tO\thttps://stackoverflow.com/questions/1152958/\tO\n\t\n\t\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nit\tO\tit\tO\n's\tO\t's\tO\nto\tO\tto\tO\ndifferentiate\tO\tdifferentiate\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\n\"\tO\t\"\tO\nempty\tO\tempty\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nif\tO\tif\tO\ncompile\tO\tcompile\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nmembers\tO\tmembers\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nnearly-empty\tO\tnearly-empty\tO\n\"\tO\t\"\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nmean\tO\tmean\tO\nit\tO\tit\tO\nhasa\tO\thasa\tO\nvtable\tB-Data_Structure\tvtable\tO\nand\tO\tand\tO\nnothing\tO\tnothing\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1152958\tO\t1152958\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1152958/\tO\thttps://stackoverflow.com/questions/1152958/\tO\n\t\n\t\nThe\tO\tThe\tO\nC++\tB-Language\tC++\tO\nABI\tO\tABI\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nnearly\tO\tnearly\tO\nempty\tO\tempty\tO\n\"\tO\t\"\tO\nclasses\tO\tclasses\tO\nand\tO\tand\tO\nan\tO\tan\tO\ninteresting\tO\tinteresting\tO\ndiscussion\tO\tdiscussion\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nthey\tO\tthey\tO\naffect\tO\taffect\tO\nvtable\tB-Data_Structure\tvtable\tO\nconstruction\tO\tconstruction\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nran\tO\tran\tO\nacross\tO\tacross\tO\nthis\tO\tthis\tO\nwhile\tO\twhile\tO\nresearching\tO\tresearching\tO\nthe\tO\tthe\tO\neffect\tO\teffect\tO\nof\tO\tof\tO\nnearly\tO\tnearly\tO\nempty\tO\tempty\tO\nvirtual\tO\tvirtual\tO\nbases\tO\tbases\tO\non\tO\ton\tO\nobject\tO\tobject\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\nvtable\tB-Data_Structure\tvtable\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\nand\tO\tand\tO\nvirtual\tO\tvirtual\tO\ncall\tO\tcall\tO\noverhead\tO\toverhead\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16261619\tO\t16261619\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16261619/\tO\thttps://stackoverflow.com/questions/16261619/\tO\n\t\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nNSJSONSerialization\tB-Library_Class\tNSJSONSerialization\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nlogin\tO\tlogin\tO\nurl\tO\turl\tO\nwhich\tO\twhich\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nJSON\tB-Data_Type\tJSON\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nobj\tO\tobj\tO\nhas\tO\thas\tO\n3\tO\t3\tO\nprops\tO\tprops\tO\n:\tO\t:\tO\ndata\tB-Variable_Name\tdata\tO\nis\tO\tis\tO\nobj\tO\tobj\tO\n,\tO\t,\tO\nsuccess\tB-Variable_Name\tsuccess\tO\nis\tO\tis\tO\nboolean\tB-Data_Type\tboolean\tO\n(\tO\t(\tO\nNOT\tO\tNOT\tO\nString\tB-Data_Type\tString\tO\n,\tO\t,\tO\nindicates\tO\tindicates\tO\nlogin\tO\tlogin\tO\nsuccess\tO\tsuccess\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n)\tO\t)\tO\n,\tO\t,\tO\ntimeout\tB-Variable_Name\ttimeout\tO\nis\tO\tis\tO\nnumber\tB-Data_Type\tnumber\tO\n(\tO\t(\tO\nNOT\tO\tNOT\tO\nString\tB-Data_Type\tString\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsuccess\tB-Variable_Name\tsuccess\tO\nand\tO\tand\tO\ntimeout\tB-Variable_Name\ttimeout\tO\n's\tO\t's\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nnull\tB-Value\tnull\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndata\tB-Variable_Name\tdata\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntested\tO\ttested\tO\nthis\tO\tthis\tO\nurl\tO\turl\tO\nfrom\tO\tfrom\tO\nhtml\tB-File_Type\thtml\tO\nfile\tO\tfile\tO\nrequiring\tO\trequiring\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nhttp://screencast.com/t/chDMshKPl\tO\thttp://screencast.com/t/chDMshKPl\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2004873\tO\t2004873\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2004873/\tO\thttps://stackoverflow.com/questions/2004873/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nCSS\tB-Language\tCSS\tO\nto\tO\tto\tO\nforce\tO\tforce\tO\na\tO\ta\tO\nvertical\tO\tvertical\tO\nscrollbar\tB-User_Interface_Element\tscrollbar\tO\nin\tO\tin\tO\nFirefox\tB-Application\tFirefox\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_129\tI-Code_Block\tQ_129\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDoes\tO\tDoes\tO\nthis\tO\tthis\tO\ntechnique\tO\ttechnique\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nSafari\tB-Application\tSafari\tO\nand\tO\tand\tO\nOpera\tB-Application\tOpera\tO\n?\tO\t?\tO\n\t\nSome\tO\tSome\tO\npeople\tO\tpeople\tO\nsay\tO\tsay\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nsay\tO\tsay\tO\notherwise\tO\totherwise\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2004873\tO\t2004873\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2004873/\tO\thttps://stackoverflow.com/questions/2004873/\tO\n\t\n\t\nThis\tO\tThis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_581\tI-Code_Block\tA_581\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nworks\tO\tworks\tO\nin\tO\tin\tO\nOpera\tB-Application\tOpera\tO\n11.01\tB-Version\t11.01\tO\nand\tO\tand\tO\nSafari\tB-Application\tSafari\tO\n5.0.3\tB-Version\t5.0.3\tO\nfor\tO\tfor\tO\nWindows\tB-Operating_System\tWindows\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_582\tI-Code_Block\tA_582\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nOpera\tB-Application\tOpera\tO\nand\tO\tand\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2004873\tO\t2004873\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2004873/\tO\thttps://stackoverflow.com/questions/2004873/\tO\n\t\n\t\nThe\tO\tThe\tO\nCSS\tB-Language\tCSS\tO\nrule\tO\trule\tO\noverflow-y\tB-Code_Block\toverflow-y\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nscroll\tI-Code_Block\tscroll\tI-Code_Block\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nin\tO\tin\tO\n:\tO\t:\tO\n\t\nOpera\tB-Application\tOpera\tO\n10.10\tB-Version\t10.10\tO\n\t\nGoogle\tB-Application\tGoogle\tO\nChrome\tI-Application\tChrome\tO\n3.0.195.38\tB-Version\t3.0.195.38\tO\n\t\nMozilla\tB-Application\tMozilla\tO\nFirefox\tI-Application\tFirefox\tO\n3.5.6\tB-Version\t3.5.6\tO\n\t\nand\tO\tand\tO\nobviously\tO\tobviously\tO\nall\tO\tall\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nMicrosoft\tB-Application\tMicrosoft\tO\nInternet\tI-Application\tInternet\tO\nExplorer\tI-Application\tExplorer\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nscrollbar\tB-User_Interface_Element\tscrollbar\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nshown\tO\tshown\tO\n.\tO\t.\tO\n\t\nSafari\tB-Application\tSafari\tO\nand\tO\tand\tO\nGoogle\tB-Application\tGoogle\tO\nChrome\tI-Application\tChrome\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nview\tO\tview\tO\nengine\tO\tengine\tO\n,\tO\t,\tO\nso\tO\tso\tO\nchances\tO\tchances\tO\nare\tO\tare\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nin\tO\tin\tO\nSafari\tB-Application\tSafari\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n:)\tO\t:)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27210487\tO\t27210487\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27210487/\tO\thttps://stackoverflow.com/questions/27210487/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nin\tO\tin\tO\nKendo\tB-Application\tKendo\tO\nUI\tI-Application\tUI\tO\n&\tO\t&\tO\nCodeigniter\tB-Application\tCodeigniter\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntrouble\tO\ttrouble\tO\nwith\tO\twith\tO\nKendo\tB-Application\tKendo\tO\nUI\tI-Application\tUI\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread\tO\tread\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\ncodeigniter\tB-Library\tcodeigniter\tO\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\njson\tB-File_Type\tjson\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nreturn\tO\treturn\tO\nfrom\tO\tfrom\tO\ncontroller\tO\tcontroller\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nnot\tO\tnot\tO\ndisplay\tO\tdisplay\tO\nat\tO\tat\tO\nKendo\tB-Application\tKendo\tO\nUI\tI-Application\tUI\tO\ngrid\tO\tgrid\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nscreen\tO\tscreen\tO\nshoot\tO\tshoot\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\ndebug\tO\tdebug\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nscreen\tO\tscreen\tO\nshot\tO\tshot\tO\nerror\tO\terror\tO\nhttp://prntscr.com/5bmn3n\tO\thttp://prntscr.com/5bmn3n\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nscreen\tO\tscreen\tO\nshot\tO\tshot\tO\ndata\tO\tdata\tO\ni\tO\ti\tO\nrecived\tO\trecived\tO\nhttp://prntscr.com/5bmne5\tO\thttp://prntscr.com/5bmne5\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nscreen\tO\tscreen\tO\nshot\tO\tshot\tO\nKendo\tB-Application\tKendo\tO\nUI\tI-Application\tUI\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\nprntscr.com/5bmnib\tO\tprntscr.com/5bmnib\tO\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\nis\tO\tis\tO\nscreen\tO\tscreen\tO\nshot\tO\tshot\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\nprntscr.com/5bmnni\tO\tprntscr.com/5bmnni\tO\n\t\nHope\tO\tHope\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27210487\tO\t27210487\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27210487/\tO\thttps://stackoverflow.com/questions/27210487/\tO\n\t\n\t\nPlease\tO\tPlease\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3776\tI-Code_Block\tQ_3776\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nhave\tO\thave\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\n\"\tO\t\"\tO\njsonp\tB-Library_Class\tjsonp\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\nfor\tO\tfor\tO\ncross-domain\tO\tcross-domain\tO\nrequests\tO\trequests\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23630009\tO\t23630009\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23630009/\tO\thttps://stackoverflow.com/questions/23630009/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nan\tO\tan\tO\nMVC5\tB-Library\tMVC5\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nserver-side\tB-Application\tserver-side\tO\nvalidation\tO\tvalidation\tO\nof\tO\tof\tO\nnumber\tO\tnumber\tO\nfields\tO\tfields\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nspecific\tO\tspecific\tO\nculture\tO\tculture\tO\n(\tO\t(\tO\nde-CH\tB-Value\tde-CH\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nreally\tO\treally\tO\nfeels\tO\tfeels\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\nis\tO\tis\tO\ndefaulting\tO\tdefaulting\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nGerman\tO\tGerman\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nweb.config\tB-File_Name\tweb.config\tO\nglobalization\tO\tglobalization\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2609\tI-Code_Block\tQ_2609\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nany\tO\tany\tO\nresource\tO\tresource\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nso\tO\tso\tO\nfrom\tO\tfrom\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\nuiCulture\tB-Library_Class\tuiCulture\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ncome\tO\tcome\tO\ninto\tO\tinto\tO\nplay\tO\tplay\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclient\tB-Application\tclient\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\njquery.globalize\tB-Library_Variable\tjquery.globalize\tO\nand\tO\tand\tO\ncorrectly\tO\tcorrectly\tO\nloading\tO\tloading\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nde-CH\tB-Value\tde-CH\tO\nculture\tO\tculture\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2610\tI-Code_Block\tQ_2610\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nreports\tO\treports\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nculture\tO\tculture\tO\nof\tO\tof\tO\n'\tB-Value\t'\tO\nde-CH\tI-Value\tde-CH\tO\n'\tI-Value\t'\tO\non\tO\ton\tO\nboth\tO\tboth\tO\nmachines\tO\tmachines\tO\n.\tO\t.\tO\n\t\nLocally\tO\tLocally\tO\nit\tO\tit\tO\nvalidates\tO\tvalidates\tO\n100.00\tB-Value\t100.00\tO\nas\tO\tas\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nit\tO\tit\tO\nsays\tO\tsays\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nproperly\tO\tproperly\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nlocal\tO\tlocal\tO\nWin7\tB-Operating_System\tWin7\tO\nIIS7\tO\tIIS7\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nThough\tO\tThough\tO\nwhen\tO\twhen\tO\nwe\tO\twe\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nWin8\tB-Operating_System\tWin8\tO\nserver\tB-Application\tserver\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclient-side\tB-Application\tclient-side\tO\nis\tO\tis\tO\nvalidating\tO\tvalidating\tO\nnumbers\tO\tnumbers\tO\nproperly\tO\tproperly\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nde-CH\tB-Value\tde-CH\tO\nculture\tO\tculture\tO\n'\tB-Value\t'\tO\n0.00\tI-Value\t0.00\tO\n'\tI-Value\t'\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nrejects\tO\trejects\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\ninvalid\tO\tinvalid\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nDate\tO\tDate\tO\nformats\tO\tformats\tO\nARE\tO\tARE\tO\nhowever\tO\thowever\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\njust\tO\tjust\tO\nadds\tO\tadds\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconfusion\tO\tconfusion\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwonder\tO\twonder\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsomehow\tO\tsomehow\tO\nfalling\tO\tfalling\tO\nback\tO\tback\tO\nto\tO\tto\tO\nde-DE\tB-Value\tde-DE\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nformats\tO\tformats\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nformat\tO\tformat\tO\nis\tO\tis\tO\n'\tB-Value\t'\tO\n0\tI-Value\t0\tO\n,\tI-Value\t,\tO\n00\tI-Value\t00\tO\n'\tB-Value\t'\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\na\tO\ta\tO\nserver\tB-Application\tserver\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nculture\tO\tculture\tO\nenabled/installed\tO\tenabled/installed\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nany\tO\tany\tO\nother\tO\tother\tO\nideas\tO\tideas\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23630009\tO\t23630009\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23630009/\tO\thttps://stackoverflow.com/questions/23630009/\tO\n\t\n\t\nFinally\tO\tFinally\tO\nwe\tO\twe\tO\nfigured\tO\tfigured\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nApparently\tO\tApparently\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nregistry\tO\tregistry\tO\nsettings\tO\tsettings\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nculture\tO\tculture\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\nset\tO\tset\tO\nto\tO\tto\tO\nde-AT\tB-Value\tde-AT\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nsomehow\tO\tsomehow\tO\nwere\tO\twere\tO\nbeing\tO\tbeing\tO\nhonored\tO\thonored\tO\nabove\tO\tabove\tO\nthe\tO\tthe\tO\nWeb.Config\tB-File_Name\tWeb.Config\tO\nsettings\tO\tsettings\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43565672\tO\t43565672\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43565672/\tO\thttps://stackoverflow.com/questions/43565672/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsomehow\tO\tsomehow\tO\nextract\tO\textract\tO\nplain\tO\tplain\tO\nHTTP\tO\tHTTP\tO\nrequest\tO\trequest\tO\nmessage\tO\tmessage\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nRequest\tB-Library_Class\tRequest\tB-Code_Block\nobject\tO\tobject\tO\nin\tO\tin\tO\nScrapy\tB-Library\tScrapy\tO\n(\tO\t(\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ncopy/paste\tO\tcopy/paste\tO\nthis\tO\tthis\tO\nrequest\tO\trequest\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nfrom\tO\tfrom\tO\nBurp\tB-Application\tBurp\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ngiven\tO\tgiven\tO\na\tO\ta\tO\nscrapy.http.Request\tB-Library_Class\tscrapy.http.Request\tB-Code_Block\nobject\tO\tobject\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nrequest\tO\trequest\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5581\tI-Code_Block\tQ_5581\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nClearly\tO\tClearly\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nRequest\tB-Library_Class\tRequest\tB-Code_Block\nobject\tO\tobject\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nreconstruct\tO\treconstruct\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nmanually\tO\tmanually\tO\nis\tO\tis\tO\nerror-prone\tO\terror-prone\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nmiss\tO\tmiss\tO\nsome\tO\tsome\tO\nedge\tO\tedge\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nunderstanding\tO\tunderstanding\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nScrapy\tB-Library\tScrapy\tO\nfirst\tO\tfirst\tO\nconverts\tO\tconverts\tO\nthis\tO\tthis\tO\nRequest\tB-Library_Class\tRequest\tB-Code_Block\ninto\tO\tinto\tO\nTwisted\tB-Library\tTwisted\tB-Code_Block\nobject\tO\tobject\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nthen\tO\tthen\tO\nwrites\tO\twrites\tO\nheaders\tO\theaders\tO\nand\tO\tand\tO\nbody\tO\tbody\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nTCP\tO\tTCP\tO\ntransport\tO\ttransport\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmaybe\tO\tmaybe\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\naway\tO\taway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwrite\tO\twrite\tO\nto\tO\tto\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\ninstead\tO\tinstead\tO\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nget\tO\tget\tO\nHTTP\tO\tHTTP\tB-Code_Block\n1.0\tB-Version\t1.0\tI-Code_Block\nrequest\tO\trequest\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nhttp.py\tB-Library_Class\thttp.py\tB-Code_Block\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\nwith\tO\twith\tO\nHTTP\tO\tHTTP\tB-Code_Block\n1.1\tB-Version\t1.1\tI-Code_Block\nrequests\tO\trequests\tO\n/\tO\t/\tO\nhttp11.py\tB-File_Name\thttp11.py\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nactually\tO\tactually\tO\nbeing\tO\tbeing\tO\nsent\tO\tsent\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nobviously\tO\tobviously\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nduplicating\tO\tduplicating\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nScrapy/Twisted\tB-Library\tScrapy/Twisted\tB-Code_Block\nframeworks\tO\tframeworks\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5582\tI-Code_Block\tQ_5582\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43565672\tO\t43565672\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43565672/\tO\thttps://stackoverflow.com/questions/43565672/\tO\n\t\n\t\nAs\tO\tAs\tO\nscrapy\tB-Library\tscrapy\tO\nis\tO\tis\tO\nopen\tO\topen\tO\nsource\tO\tsource\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\nplenty\tO\tplenty\tO\nof\tO\tof\tO\nextension\tO\textension\tO\npoints\tO\tpoints\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndoable\tO\tdoable\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrequests\tO\trequests\tO\nare\tO\tare\tO\nfinally\tO\tfinally\tO\nassembled\tO\tassembled\tO\nand\tO\tand\tO\nsent\tO\tsent\tO\nout\tO\tout\tO\nin\tO\tin\tO\nscrapy/core/downloader/handlers/http11.py\tB-File_Name\tscrapy/core/downloader/handlers/http11.py\tO\nin\tO\tin\tO\nScrapyAgent.download_request\tB-Library_Function\tScrapyAgent.download_request\tB-Code_Block\n(\tO\t(\tO\nhttps://github.com/scrapy/scrapy/blob/master/scrapy/core/downloader/handlers/http11.py#L270\tO\thttps://github.com/scrapy/scrapy/blob/master/scrapy/core/downloader/handlers/http11.py#L270\tO\n)\tO\t)\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nplace\tO\tplace\tO\nyour\tO\tyour\tO\nhook\tO\thook\tO\nthere\tO\tthere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndump\tO\tdump\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\ntype\tO\ttype\tO\n,\tO\t,\tO\nrequest\tO\trequest\tO\nheaders\tO\theaders\tO\n,\tO\t,\tO\nand\tO\tand\tO\nrequest\tO\trequest\tO\nbody\tO\tbody\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nplace\tO\tplace\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nthere\tO\tthere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\neither\tO\teither\tO\ntry\tO\ttry\tO\nmonkey\tO\tmonkey\tO\npatching\tO\tpatching\tO\nScrapyAgent.download_request\tB-Library_Function\tScrapyAgent.download_request\tB-Code_Block\nor\tO\tor\tO\nto\tO\tto\tO\nsubclass\tO\tsubclass\tO\nScrapyAgent\tB-Library_Class\tScrapyAgent\tB-Code_Block\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nlogging\tO\tlogging\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nsubclass\tO\tsubclass\tO\nHTTP11DownloadHandler\tB-Library_Class\tHTTP11DownloadHandler\tB-Code_Block\nto\tO\tto\tO\nuse\tO\tuse\tO\nyour\tO\tyour\tO\nScrapy\tB-Library\tScrapy\tO\nAgent\tO\tAgent\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nset\tO\tset\tO\nHTTP11DownloadHandler\tB-Library_Class\tHTTP11DownloadHandler\tO\nas\tO\tas\tO\nnew\tO\tnew\tO\nDOWNLOAD_HANDLER\tB-Library_Class\tDOWNLOAD_HANDLER\tO\nfor\tO\tfor\tO\nhttp\tO\thttp\tO\n/\tO\t/\tO\nhttps\tO\thttps\tO\nrequests\tO\trequests\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n's\tO\t's\tO\nsettings.py\tB-File_Name\tsettings.py\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\ndetails\tO\tdetails\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\nhttps://doc.scrapy.org/en/latest/topics/settings.html#download-handlers\tO\thttps://doc.scrapy.org/en/latest/topics/settings.html#download-handlers\tO\n)\tO\t)\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nopinion\tO\topinion\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nclosest\tO\tclosest\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nto\tO\tto\tO\nlogging\tO\tlogging\tO\nthe\tO\tthe\tO\nrequests\tO\trequests\tO\ngoing\tO\tgoing\tO\nout\tO\tout\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\na\tO\ta\tO\npacket\tO\tpacket\tO\nsniffer\tO\tsniffer\tO\nor\tO\tor\tO\na\tO\ta\tO\nlogging\tO\tlogging\tO\nproxy\tO\tproxy\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbit\tO\tbit\tO\noverkill\tO\toverkill\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nscenario\tO\tscenario\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36118227\tO\t36118227\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36118227/\tO\thttps://stackoverflow.com/questions/36118227/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n:\tO\t:\tO\n\t\n\"\tO\t\"\tO\nAssigning\tO\tAssigning\tO\nto\tO\tto\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\nwidth\tO\twidth\tO\nor\tO\tor\tO\nheight\tO\theight\tO\nchanges\tO\tchanges\tO\nthe\tO\tthe\tO\ndimensions\tO\tdimensions\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrectangle\tO\trectangle\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncircle\tB-User_Interface_Element\tcircle\tO\n,\tO\t,\tO\nassign\tO\tassign\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nattribute\tO\tattribute\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nchanges\tO\tchanges\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nseen\tO\tseen\tO\nin\tO\tin\tO\ncircle\tB-User_Interface_Element\tcircle\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\ni\tO\ti\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4438\tI-Code_Block\tQ_4438\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36118227\tO\t36118227\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36118227/\tO\thttps://stackoverflow.com/questions/36118227/\tO\n\t\n\t\nYou\tO\tYou\tO\ndraw\tO\tdraw\tO\nthe\tO\tthe\tO\ncircle\tB-User_Interface_Element\tcircle\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nsurface\tO\tsurface\tO\n.\tO\t.\tO\n\t\nEvery\tO\tEvery\tO\ndrawing\tO\tdrawing\tO\nfunction\tO\tfunction\tO\nthen\tO\tthen\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nRect\tB-Library_Class\tRect\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nTo\tO\tTo\tO\nactually\tO\tactually\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ncircle\tB-User_Interface_Element\tcircle\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nscreen\tB-User_Interface_Element\tscreen\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nerase\tO\terase\tO\nit\tO\tit\tO\nfirst\tO\tfirst\tO\n(\tO\t(\tO\ndraw\tO\tdraw\tO\nsomething\tO\tsomething\tO\nabove\tO\tabove\tO\nit\tO\tit\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ndraw\tO\tdraw\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncircle\tB-User_Interface_Element\tcircle\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5160\tI-Code_Block\tA_5160\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48628260\tO\t48628260\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48628260/\tO\thttps://stackoverflow.com/questions/48628260/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nup-sample\tO\tup-sample\tO\nan\tO\tan\tO\nicosahedron\tO\ticosahedron\tO\nin\tO\tin\tO\nMATLAB\tB-Application\tMATLAB\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nnew\tO\tnew\tO\nvertices\tO\tvertices\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nmid-points\tO\tmid-points\tO\nof\tO\tof\tO\neach\tO\teach\tO\nedge\tO\tedge\tO\nand\tO\tand\tO\nrecomputing\tO\trecomputing\tO\nthe\tO\tthe\tO\nfaces\tO\tfaces\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\nplace\tO\tplace\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nvertices\tO\tvertices\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nrecompute\tO\trecompute\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nfaces\tO\tfaces\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\neach\tO\teach\tO\nvertex\tO\tvertex\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nits\tO\tits\tO\nclosest\tO\tclosest\tO\nneighbours\tO\tneighbours\tO\nto\tO\tto\tO\nform\tO\tform\tO\na\tO\ta\tO\nnew\tO\tnew\tO\n,\tO\t,\tO\nup-sampled\tO\tup-sampled\tO\nicosahedron\tO\ticosahedron\tO\n.\tO\t.\tO\n\t\nSample\tO\tSample\tO\ndata\tO\tdata\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6479\tI-Code_Block\tQ_6479\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6480\tI-Code_Block\tQ_6480\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48628260\tO\t48628260\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48628260/\tO\thttps://stackoverflow.com/questions/48628260/\tO\n\t\n\t\nFor\tO\tFor\tO\na\tO\ta\tO\ntriangle\tO\ttriangle\tO\n{\tO\t{\tB-Code_Block\n1\tB-Value\t1\tI-Code_Block\n,\tO\t,\tI-Code_Block\n2\tB-Value\t2\tI-Code_Block\n,\tO\t,\tI-Code_Block\n3}\tB-Value\t3}\tI-Code_Block\n,\tO\t,\tO\nsubdividing\tO\tsubdividing\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\n3\tO\t3\tO\nnew\tO\tnew\tO\nvertices\tO\tvertices\tO\n{\tO\t{\tB-Code_Block\na\tB-Variable_Name\ta\tI-Code_Block\n,\tO\t,\tI-Code_Block\nb\tB-Variable_Name\tb\tI-Code_Block\n,\tO\t,\tI-Code_Block\nc}\tB-Variable_Name\tc}\tI-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7127\tI-Code_Block\tA_7127\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\ncreate\tO\tcreate\tO\n4\tO\t4\tO\nnew\tO\tnew\tO\nfaces\tO\tfaces\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7128\tI-Code_Block\tA_7128\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\ncreates\tO\tcreates\tO\nthe\tO\tthe\tO\ncoordinates\tO\tcoordinates\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nvertices\tO\tvertices\tO\nin\tO\tin\tO\nV\tB-Variable_Name\tV\tB-Code_Block\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\na\tB-Variable_Name\ta\tB-Code_Block\nvertices\tO\tvertices\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntriangles\tO\ttriangles\tO\ncome\tO\tcome\tO\nfirst\tO\tfirst\tO\n,\tO\t,\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nc\tB-Variable_Name\tc\tB-Code_Block\nvertices\tO\tvertices\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nb\tB-Variable_Name\tb\tB-Code_Block\nvertices\tO\tvertices\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nindices\tO\tindices\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nvertices\tO\tvertices\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nindices\tO\tindices\tO\nstart\tO\tstart\tO\nfrom\tO\tfrom\tO\nsize(S.vertices)+1\tB-Code_Block\tsize(S.vertices)+1\tB-Code_Block\nand\tO\tand\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\na\tO\ta\tO\ntotal\tO\ttotal\tO\nof\tO\tof\tO\n3*size(S.faces)\tB-Code_Block\t3*size(S.faces)\tB-Code_Block\nof\tO\tof\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\nalso\tO\talso\tO\ngroup\tO\tgroup\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nvertices\tO\tvertices\tO\nfor\tO\tfor\tO\na\tO\ta\tO\neach\tO\teach\tO\nexisting\tO\texisting\tO\nface\tO\tface\tO\ntogether\tO\ttogether\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7129\tI-Code_Block\tA_7129\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ngives\tO\tgives\tO\nus\tO\tus\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\n[\tB-Code_Block\t[\tB-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nb\tI-Code_Block\tb\tI-Code_Block\nc\tI-Code_Block\tc\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nfaces\tO\tfaces\tO\n(\tO\t(\tO\nactually\tO\tactually\tO\n,\tO\t,\tO\nin\tO\tin\tO\n[\tB-Code_Block\t[\tB-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nc\tI-Code_Block\tc\tI-Code_Block\nb\tI-Code_Block\tb\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\norder\tO\torder\tO\n)\tO\t)\tO\nin\tO\tin\tO\nVx(f,:)\tB-Code_Block\tVx(f,:)\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\na\tB-Variable_Name\ta\tB-Code_Block\nvertices\tO\tvertices\tO\nin\tO\tin\tO\nVx(:,1)\tB-Code_Block\tVx(:,1)\tB-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nb\tB-Variable_Name\tb\tB-Code_Block\nvertices\tO\tvertices\tO\nin\tO\tin\tO\nVx(:,3)<-\tB-Code_Block\tVx(:,3)<-\tB-Code_Block\n-\tO\t-\tO\nnot\tO\tnot\tO\n2\tB-Value\t2\tO\n!\tO\t!\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nc\tB-Variable_Name\tc\tB-Code_Block\nvertices\tO\tvertices\tO\nin\tO\tin\tO\nVx(:,2)\tB-Code_Block\tVx(:,2)\tB-Code_Block\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\n3\tO\t3\tO\nnew\tO\tnew\tO\nfaces\tO\tfaces\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nexisting\tO\texisting\tO\nface\tO\tface\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\ncat\tB-Library_Function\tcat\tB-Code_Block\n,\tO\t,\tO\npermute\tB-Library_Function\tpermute\tB-Code_Block\nand\tO\tand\tO\nreshape\tB-Library_Function\treshape\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nreally\tO\treally\tO\nugly\tO\tugly\tO\nand\tO\tand\tO\nincomprehensible\tO\tincomprehensible\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nwe\tO\twe\tO\n've\tO\t've\tO\nonly\tO\tonly\tO\ngot\tO\tgot\tO\n9\tO\t9\tO\nvertices\tO\tvertices\tO\nthat\tO\tthat\tO\ngo\tO\tgo\tO\ninto\tO\tinto\tO\nthese\tO\tthese\tO\nfaces\tO\tfaces\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nplug\tO\tplug\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nmanually\tO\tmanually\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nm\tB-Code_Block\tm\tB-Code_Block\nx\tI-Code_Block\tx\tI-Code_Block\n9\tI-Code_Block\t9\tI-Code_Block\nmatrix\tB-Data_Structure\tmatrix\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nreshape\tB-Library_Function\treshape\tO\ninto\tO\tinto\tO\nm*3\tB-Code_Block\tm*3\tB-Code_Block\nx\tI-Code_Block\tx\tI-Code_Block\n3\tI-Code_Block\t3\tI-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7130\tI-Code_Block\tA_7130\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nall\tO\tall\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nleft\tO\tleft\tO\nis\tO\tis\tO\nupdating\tO\tupdating\tO\nS\tB-Variable_Name\tS\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7131\tI-Code_Block\tA_7131\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47203799\tO\t47203799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47203799/\tO\thttps://stackoverflow.com/questions/47203799/\tO\n\t\n\t\nSo\tO\tSo\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\nnodemon\tB-Code_Block\tnodemon\tO\nserver.js\tI-Code_Block\tserver.js\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\ndeploy\tO\tdeploy\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nBitnami\tB-Library\tBitnami\tO\npowered\tO\tpowered\tO\ncompute\tB-Device\tcompute\tO\nengine\tI-Device\tengine\tO\nmachine\tO\tmachine\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nMongoDB\tB-Application\tMongoDB\tO\ninstalled\tO\tinstalled\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\nto\tO\tto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nmy\tO\tmy\tO\nnodejs\tB-Application\tnodejs\tO\nApp\tO\tApp\tO\nengine\tO\tengine\tO\nI\tO\tI\tO\nconnect\tO\tconnect\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6268\tI-Code_Block\tQ_6268\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nI\tO\tI\tO\nget\tO\tget\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6269\tI-Code_Block\tQ_6269\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nssh-ing\tO\tssh-ing\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ncompute\tB-Device\tcompute\tO\nengine\tI-Device\tengine\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nadding\tO\tadding\tO\nperimision\tO\tperimision\tO\nfor\tO\tfor\tO\nport\tB-Device\tport\tO\n27017\tO\t27017\tO\n:\tO\t:\tO\n\t\ngcloud\tB-Code_Block\tgcloud\tB-Code_Block\ncompute\tI-Code_Block\tcompute\tI-Code_Block\nfirewall-rules\tI-Code_Block\tfirewall-rules\tI-Code_Block\ncreate\tI-Code_Block\tcreate\tI-Code_Block\nallow-mongodb\tI-Code_Block\tallow-mongodb\tI-Code_Block\n--allow\tI-Code_Block\t--allow\tI-Code_Block\ntcp:27017\tI-Code_Block\ttcp:27017\tI-Code_Block\n\t\nIt\tO\tIt\tO\nsaid\tO\tsaid\tO\nit\tO\tit\tO\nalready\tO\talready\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nin\tO\tin\tO\nmongodb.config\tB-File_Name\tmongodb.config\tO\nin\tO\tin\tO\nbind_ip\tB-Library_Variable\tbind_ip\tO\nto\tO\tto\tO\n0.0.0.0\tB-Value\t0.0.0.0\tO\n.\tO\t.\tO\n\t\nStill\tO\tStill\tO\nnothing\tO\tnothing\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nfrustating\tO\tfrustating\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nidea\tO\tidea\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\napreciate\tO\tapreciate\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nmention\tO\tmention\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nexperience\tO\texperience\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nso\tO\tso\tO\nplease\tO\tplease\tO\nbe\tO\tbe\tO\nexplicit\tO\texplicit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47203799\tO\t47203799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47203799/\tO\thttps://stackoverflow.com/questions/47203799/\tO\n\t\n\t\nI\tO\tI\tO\nusually\tO\tusually\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6885\tI-Code_Block\tA_6885\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nhelped\tO\thelped\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10935804\tO\t10935804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10935804/\tO\thttps://stackoverflow.com/questions/10935804/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nvirtual\tB-Application\tvirtual\tO\nprinter\tI-Application\tprinter\tO\nthat\tO\tthat\tO\n'\tO\t'\tO\nshreds\tO\tshreds\tO\n'\tO\t'\tO\n\t\nBasically\tO\tBasically\tO\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsoftware\tO\tsoftware\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\n'\tO\t'\tO\nprint\tO\tprint\tO\n'\tO\t'\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nshredder\tO\tshredder\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nsaves\tO\tsaves\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nactually\tO\tactually\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nprinted\tO\tprinted\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nto\tO\tto\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\nsecurely\tO\tsecurely\tO\ndeletes\tO\tdeletes\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nand\tO\tand\tO\nshows\tO\tshows\tO\nas\tO\tas\tO\na\tO\ta\tO\ndriver\tB-Application\tdriver\tO\nin\tO\tin\tO\nWindows\tB-Operating_System\tWindows\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nC#\tB-Language\tC#\tO\nof\tO\tof\tO\nVB.Net\tB-Language\tVB.Net\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10935804\tO\t10935804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10935804/\tO\thttps://stackoverflow.com/questions/10935804/\tO\n\t\n\t\nNo\tO\tNo\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\njust\tO\tjust\tO\nprint\tO\tprint\tO\nto\tO\tto\tO\nnul\tB-Value\tnul\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nworked\tO\tworked\tO\nsince\tO\tsince\tO\nDOS\tB-Operating_System\tDOS\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nprinter\tB-Device\tprinter\tO\n,\tO\t,\tO\nprinting\tO\tprinting\tO\nto\tO\tto\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nport\tB-Device\tport\tO\n,\tO\t,\tO\nand\tO\tand\tO\nput\tO\tput\tO\nnul\tB-Value\tnul\tB-Code_Block\nin\tO\tin\tO\nthere\tO\tthere\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nport\tB-Device\tport\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nhttp://www.markmmanning.com/blog/2009/01/creating-fake-printer-devnull-for.html\tO\thttp://www.markmmanning.com/blog/2009/01/creating-fake-printer-devnull-for.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39787671\tO\t39787671\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39787671/\tO\thttps://stackoverflow.com/questions/39787671/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngenerating\tO\tgenerating\tO\nPDF\tB-File_Type\tPDF\tO\nfiles\tO\tfiles\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nold\tO\told\tO\nlibrary\tO\tlibrary\tO\nof\tO\tof\tO\niText\tB-Library\tiText\tO\non\tO\ton\tO\nUnix\tB-Operating_System\tUnix\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nexploitation\tO\texploitation\tO\nteam\tO\tteam\tO\nhas\tO\thas\tO\njust\tO\tjust\tO\ncontacted\tO\tcontacted\tO\nme\tO\tme\tO\ntelling\tO\ttelling\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nhaving\tO\thaving\tO\nstorage\tO\tstorage\tO\ntroubles\tO\ttroubles\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\ntemp\tB-File_Type\ttemp\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\na\tO\ta\tO\ndiscussion\tO\tdiscussion\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nindicate\tO\tindicate\tO\nme\tO\tme\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\n\"\tB-File_Name\t\"\tO\nAcroaxxxxx\tI-File_Name\tAcroaxxxxx\tO\n\"\tI-File_Name\t\"\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\ncreated\tO\tcreated\tO\nunder\tO\tunder\tO\n/tmp\tB-File_Name\t/tmp\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nchecking\tO\tchecking\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nI\tO\tI\tO\ngenerate\tO\tgenerate\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nhandling\tO\thandling\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nsimple\tO\tsimple\tO\n:\tO\t:\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmodify\tO\tmodify\tO\nor\tO\tor\tO\nadd\tO\tadd\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nindicate\tO\tindicate\tO\nto\tO\tto\tO\niText\tB-Library\tiText\tO\nto\tO\tto\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\ntmp\tB-File_Type\ttmp\tO\nfile\tO\tfile\tO\ncreated\tO\tcreated\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\n?\tO\t?\tO\n\t\nThnks\tO\tThnks\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24008410\tO\t24008410\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24008410/\tO\thttps://stackoverflow.com/questions/24008410/\tO\n\t\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\n\t\napache_setenv\tB-Code_Block\tapache_setenv\tO\n(\tI-Code_Block\t(\tO\n'sessionID'\tI-Code_Block\t'sessionID'\tO\n,\tI-Code_Block\t,\tO\nsession_id()\tI-Code_Block\tsession_id()\tO\n,\tI-Code_Block\t,\tO\nTRUE\tI-Code_Block\tTRUE\tO\n)\tI-Code_Block\t)\tO\n\t\nBUT\tO\tBUT\tO\n\t\nit\tO\tit\tO\nonly\tO\tonly\tO\nmakes\tO\tmakes\tO\nsessionID\tB-Variable_Name\tsessionID\tO\nappear\tO\tappear\tO\non\tO\ton\tO\nGETs\tB-Code_Block\tGETs\tO\nof\tO\tof\tO\nPHP\tB-File_Type\tPHP\tO\nfiles\tO\tfiles\tO\nwhich\tO\twhich\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nsessionID\tB-Variable_Name\tsessionID\tO\nto\tO\tto\tO\nappear\tO\tappear\tO\non\tO\ton\tO\nall\tO\tall\tO\nGETs\tB-Code_Block\tGETs\tO\nincluding\tO\tincluding\tO\njs\tB-File_Type\tjs\tO\n,\tO\t,\tO\njpg\tB-File_Type\tjpg\tO\n,\tO\t,\tO\ngif\tB-File_Type\tgif\tO\netc\tO\tetc\tO\nreferred\tO\treferred\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nPHP\tB-File_Type\tPHP\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nPHP\tB-File_Type\tPHP\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nthat\tO\tthat\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nan\tO\tan\tO\napache\tB-Application\tapache\tO\nenvironment\tO\tenvironment\tO\nvariable\tO\tvariable\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nscope\tO\tscope\tO\nwould\tO\twould\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nGET\tB-Code_Block\tGET\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nPHP\tB-File_Type\tPHP\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\np.s\tO\tp.s\tO\n.\tO\t.\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nsetting\tO\tsetting\tO\napache\tB-Library_Function\tapache\tO\nnote\tI-Library_Function\tnote\tO\nfirst\tO\tfirst\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\nexactly\tO\texactly\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19032760\tO\t19032760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19032760/\tO\thttps://stackoverflow.com/questions/19032760/\tO\n\t\n\t\nGetting\tO\tGetting\tO\n\"\tO\t\"\tO\nGateway\tB-Error_Name\tGateway\tO\nerror\tI-Error_Name\terror\tO\n:\tO\t:\tO\nUnable\tO\tUnable\tO\nto\tO\tto\tO\nread\tO\tread\tO\nresponse\tO\tresponse\tO\nor\tO\tor\tO\nresponse\tO\tresponse\tO\nis\tO\tis\tO\nempty\tO\tempty\tO\n\"\tO\t\"\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\npost\tO\tpost\tO\npayments\tO\tpayments\tO\nto\tO\tto\tO\nauthorize.net\tB-Application\tauthorize.net\tO\n.\tO\t.\tO\n\t\nAuthorize.net\tB-Application\tAuthorize.net\tO\ncannot\tO\tcannot\tO\nsee\tO\tsee\tO\nanything\tO\tanything\tO\ncoming\tO\tcoming\tO\nthrough\tO\tthrough\tO\n,\tO\t,\tO\nhost\tO\thost\tO\nprovider\tO\tprovider\tO\nsays\tO\tsays\tO\nno\tO\tno\tO\nissues\tO\tissues\tO\non\tO\ton\tO\ntheir\tO\ttheir\tO\nend\tO\tend\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nAuthorize.net\tB-Application\tAuthorize.net\tO\npayment\tO\tpayment\tO\ntype\tO\ttype\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nverified\tO\tverified\tO\nmy\tO\tmy\tO\nAPI\tB-Variable_Name\tAPI\tO\nlogin\tI-Variable_Name\tlogin\tO\nand\tO\tand\tO\ntrans\tB-Variable_Name\ttrans\tO\nID\tI-Variable_Name\tID\tO\nin\tO\tin\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nwebsite\tO\twebsite\tO\n,\tO\t,\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\nview\tO\tview\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ninstalled\tO\tinstalled\tO\ncURL\tB-Application\tcURL\tO\nSSL\tI-Application\tSSL\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nverified\tO\tverified\tO\nno\tO\tno\tO\nfirewalls\tB-Application\tfirewalls\tO\nare\tO\tare\tO\nblocking\tO\tblocking\tO\nconnections\tO\tconnections\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\ntestmode\tO\ttestmode\tO\n\t\ndebugging\tO\tdebugging\tO\nis\tO\tis\tO\non\tO\ton\tO\n,\tO\t,\tO\nand\tO\tand\tO\nresults\tO\tresults\tO\nare\tO\tare\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nexception.log\tB-File_Name\texception.log\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1991\tI-Code_Block\tQ_1991\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19032760\tO\t19032760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19032760/\tO\thttps://stackoverflow.com/questions/19032760/\tO\n\t\n\t\ni\tO\ti\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nenabled\tO\tenabled\tO\nTest\tO\tTest\tO\nMode\tO\tMode\tO\nin\tO\tin\tO\nSystem->Configuration->PaymentMethods\tB-Application\tSystem->Configuration->PaymentMethods\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19032760\tO\t19032760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19032760/\tO\thttps://stackoverflow.com/questions/19032760/\tO\n\t\n\t\nTurns\tO\tTurns\tO\nout\tO\tout\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nnameservers\tB-Application\tnameservers\tO\nat\tO\tat\tO\nmy\tO\tmy\tO\nhost\tO\thost\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\nusing\tO\tusing\tO\ninformation\tO\tinformation\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://www.magentocommerce.com/boards/viewthread/50611/\tO\thttp://www.magentocommerce.com/boards/viewthread/50611/\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nreferenced\tO\treferenced\tO\nthread\tO\tthread\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nviewed\tO\tviewed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\narchive\tO\tarchive\tO\n,\tO\t,\tO\nhere\tO\there\tO\nhttps://web.archive.org/web/20150315055800/http://www.magentocommerce.com/boards/viewthread/50611\tO\thttps://web.archive.org/web/20150315055800/http://www.magentocommerce.com/boards/viewthread/50611\tO\n)\tO\t)\tO\n\t\nAfter\tO\tAfter\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nreceived\tO\treceived\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\na\tO\ta\tO\nblocked\tO\tblocked\tO\nIP\tO\tIP\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nadded\tO\tadded\tO\nmy\tO\tmy\tO\nnew\tO\tnew\tO\nip\tO\tip\tO\nat\tO\tat\tO\naccounts.authorize.net\tO\taccounts.authorize.net\tO\nin\tO\tin\tO\nTools\tB-Application\tTools\tO\n(\tO\t(\tO\ntop\tO\ttop\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n)\tO\t)\tO\n>\tO\t>\tO\nFraud\tO\tFraud\tO\nSuite\tO\tSuite\tO\n(\tO\t(\tO\nleft\tO\tleft\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n)\tO\t)\tO\n>\tO\t>\tO\nAuthorized\tO\tAuthorized\tO\nAIM\tO\tAIM\tO\nip\tO\tip\tO\naddresses\tO\taddresses\tO\n(\tO\t(\tO\nbody\tO\tbody\tO\n,\tO\t,\tO\nsecond\tO\tsecond\tO\nto\tO\tto\tO\nlast\tO\tlast\tO\nitem\tO\titem\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28485125\tO\t28485125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28485125/\tO\thttps://stackoverflow.com/questions/28485125/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nproject\tO\tproject\tO\nfor\tO\tfor\tO\nuniversity\tO\tuniversity\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nreceive\tO\treceive\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nprevious\tO\tprevious\tO\npage\tO\tpage\tO\nan\tO\tan\tO\nid\tO\tid\tO\nas\tO\tas\tO\n$_POST['ids']\tB-Variable_Name\t$_POST['ids']\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nI\tO\tI\tO\nsend\tO\tsend\tO\nthat\tO\tthat\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\na\tO\ta\tO\nhidden\tO\thidden\tO\nfield\tO\tfield\tO\nso\tO\tso\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\na\tO\ta\tO\ncicle\tO\tcicle\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nsubmit\tO\tsubmit\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nerrors\tO\terrors\tO\non\tO\ton\tO\n$service_info\tB-Variable_Name\t$service_info\tO\nand\tO\tand\tO\nno\tO\tno\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\ndo\tO\tdo\tO\nvar_dump()\tB-Library_Function\tvar_dump()\tO\neverything\tO\teverything\tO\nand\tO\tand\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3340\tI-Code_Block\tQ_3340\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28485125\tO\t28485125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28485125/\tO\thttps://stackoverflow.com/questions/28485125/\tO\n\t\n\t\nchange\tO\tchange\tO\ninside\tO\tinside\tO\nyour\tO\tyour\tO\nform\tO\tform\tO\nthis\tO\tthis\tO\ninput\tO\tinput\tO\nhidden\tO\thidden\tO\nyou\tO\tyou\tO\ncreated\tO\tcreated\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3979\tI-Code_Block\tA_3979\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3980\tI-Code_Block\tA_3980\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nechoing\tO\techoing\tO\nthis\tO\tthis\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\n$_POST['ids']\tB-Variable_Name\t$_POST['ids']\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nget\tO\tget\tO\nany\tO\tany\tO\nvalue\tO\tvalue\tO\npassed\tO\tpassed\tO\nfrom\tO\tfrom\tO\nform\tB-User_Interface_Element\tform\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33651301\tO\t33651301\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33651301/\tO\thttps://stackoverflow.com/questions/33651301/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nquery\tO\tquery\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\ninsert\tO\tinsert\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\n,\tO\t,\tO\nAzure\tB-Application\tAzure\tO\nMobile\tI-Application\tMobile\tO\nService\tI-Application\tService\tO\nadds\tO\tadds\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nthe\tO\tthe\tO\n__createdAt\tB-Library_Variable\t__createdAt\tB-Code_Block\ncolumn\tB-Data_Structure\tcolumn\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nplanning\tO\tplanning\tO\nto\tO\tto\tO\nsort\tO\tsort\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nspecific\tO\tspecific\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\n__createdAt\tB-Library_Variable\t__createdAt\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nsystem\tO\tsystem\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nof\tO\tof\tO\nadding\tO\tadding\tO\nit\tO\tit\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ntable\tB-Data_Structure\ttable\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nquery\tO\tquery\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nC#\tB-Language\tC#\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33651301\tO\t33651301\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33651301/\tO\thttps://stackoverflow.com/questions/33651301/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nmodel\tO\tmodel\tO\nthat\tO\tthat\tO\ntracks\tO\ttracks\tO\nthe\tO\tthe\tO\n__createdAt\tB-Library_Variable\t__createdAt\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsort\tO\tsort\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4813\tI-Code_Block\tA_4813\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4814\tI-Code_Block\tA_4814\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45667456\tO\t45667456\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45667456/\tO\thttps://stackoverflow.com/questions/45667456/\tO\n\t\n\t\nHi\tO\tHi\tO\nall\tO\tall\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nquestion\tO\tquestion\tO\nhere\tO\there\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nvery\tO\tvery\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nHaskell\tB-Language\tHaskell\tO\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nHaskell\tB-Language\tHaskell\tO\nfunction\tO\tfunction\tO\nwhich\tO\twhich\tO\ntakes\tO\ttakes\tO\na\tO\ta\tO\nTree\tB-Data_Structure\tTree\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nits\tO\tits\tO\nnode\tO\tnode\tO\nin\tO\tin\tO\na\tO\ta\tO\npreorder\tO\tpreorder\tO\ntraversal\tO\ttraversal\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nTree\tB-Data_Structure\tTree\tO\ndefinition\tO\tdefinition\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5981\tI-Code_Block\tQ_5981\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\npreorder\tB-Library_Function\tpreorder\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5982\tI-Code_Block\tQ_5982\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nadvance\tO\tadvance\tO\nthank\tO\tthank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n:)\tO\t:)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25737212\tO\t25737212\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25737212/\tO\thttps://stackoverflow.com/questions/25737212/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nListView\tB-Library_Class\tListView\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nWindows\tB-Application\tWindows\tO\nStore\tI-Application\tStore\tO\nApp\tO\tApp\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nselects\tO\tselects\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nthrough\tO\tthrough\tO\ndataTemplateSelector\tB-Library_Class\tdataTemplateSelector\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nItemTemplate\tB-Library_Class\tItemTemplate\tO\nof\tO\tof\tO\nListView\tB-Library_Class\tListView\tO\n,\tO\t,\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthe\tO\tthe\tO\nheight\tB-Variable_Name\theight\tO\nand\tO\tand\tO\nwidth\tB-Variable_Name\twidth\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nit\tO\tit\tO\nto\tO\tto\tO\nadjust\tO\tadjust\tO\nitself\tO\titself\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nspace\tO\tspace\tO\navailable\tO\tavailable\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndisplayed\tO\tdisplayed\tO\nbigger\tO\tbigger\tO\nin\tO\tin\tO\nbig\tO\tbig\tO\nscreen\tO\tscreen\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nFollowing\tO\tFollowing\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nListView\tB-Library_Class\tListView\tO\nXAML\tB-Language\tXAML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2934\tI-Code_Block\tQ_2934\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nVerticalContentAlignment\tB-Library_Class\tVerticalContentAlignment\tO\nto\tO\tto\tO\nStretch\tO\tStretch\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nstretches\tO\tstretches\tO\nmy\tO\tmy\tO\nListViewItem\tB-Library_Class\tListViewItem\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nListView\tB-Library_Class\tListView\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nItem\tB-User_Interface_Element\tItem\tO\nis\tO\tis\tO\nbigger\tO\tbigger\tO\n,\tO\t,\tO\nit\tO\tit\tO\nincreases\tO\tincreases\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nListViewItem\tB-Library_Class\tListViewItem\tO\nlarger\tO\tlarger\tO\nthan\tO\tthan\tO\nListView\tB-Library_Class\tListView\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nheight\tB-Library_Variable\theight\tO\nof\tO\tof\tO\nListViewItem\tB-Library_Class\tListViewItem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2935\tI-Code_Block\tQ_2935\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFollowing\tO\tFollowing\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nItemTemplate\tB-Library_Class\tItemTemplate\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nselected\tO\tselected\tO\nthrough\tO\tthrough\tO\nItemTemplateSelector\tB-Library_Variable\tItemTemplateSelector\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2936\tI-Code_Block\tQ_2936\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nGrid\tB-User_Interface_Element\tGrid\tO\nat\tO\tat\tO\nRow\tO\tRow\tO\nNumber\tO\tNumber\tO\n1\tB-Value\t1\tO\n<Grid\tB-Code_Block\t<Grid\tB-Code_Block\nGrid.Row=\"1\"\tI-Code_Block\tGrid.Row=\"1\"\tI-Code_Block\n>\tI-Code_Block\t>\tI-Code_Block\n,\tO\t,\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nwhich\tO\twhich\tO\nmakes\tO\tmakes\tO\nthe\tO\tthe\tO\nheight\tB-Library_Variable\theight\tO\ngo\tO\tgo\tO\nlarger\tO\tlarger\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nListView\tB-Library_Class\tListView\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nthis\tO\tthis\tO\nGrid\tB-User_Interface_Element\tGrid\tO\nto\tO\tto\tO\nstretch\tO\tstretch\tO\nitself\tO\titself\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nits\tO\tits\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nnot\tO\tnot\tO\ncross\tO\tcross\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nits\tO\tits\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nother\tO\tother\tO\nword\tO\tword\tO\n,\tO\t,\tO\ni\tO\ti\tO\nsimply\tO\tsimply\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbind\tO\tbind\tO\nits\tO\tits\tO\nheight\tB-Library_Variable\theight\tO\nto\tO\tto\tO\nits\tO\tits\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\n,\tO\t,\tO\ni\tO\ti\tO\nam\tO\tam\tO\nstuck\tO\tstuck\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25737212\tO\t25737212\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25737212/\tO\thttps://stackoverflow.com/questions/25737212/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nproject\tO\tproject\tO\nby\tO\tby\tO\nbinding\tO\tbinding\tO\nthe\tO\tthe\tO\nHeight\tB-Library_Variable\tHeight\tB-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\nGrid\tB-Library_Class\tGrid\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nDataTemplate\tB-Library_Class\tDataTemplate\tB-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nActualHeight\tB-Library_Variable\tActualHeight\tB-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\nListView\tB-Library_Class\tListView\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nbinding\tO\tbinding\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nListView.ItemContainerStyle\tB-HTML_XML_Tag\tListView.ItemContainerStyle\tB-Code_Block\nstyle\tO\tstyle\tO\nas\tO\tas\tO\na\tO\ta\tO\nsetter\tO\tsetter\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3669\tI-Code_Block\tA_3669\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25737212\tO\t25737212\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25737212/\tO\thttps://stackoverflow.com/questions/25737212/\tO\n\t\n\t\nhave\tO\thave\tO\nyou\tO\tyou\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nRow\tB-Library_Class\tRow\tO\nDefinition\tI-Library_Class\tDefinition\tO\napplied\tO\tapplied\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nimage\tO\timage\tO\nto\tO\tto\tO\n'\tO\t'\tO\nAuto\tB-Value\tAuto\tO\n'\tO\t'\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3546\tI-Code_Block\tQ_3546\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36540603\tO\t36540603\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36540603/\tO\thttps://stackoverflow.com/questions/36540603/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4498\tI-Code_Block\tQ_4498\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36540603\tO\t36540603\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36540603/\tO\thttps://stackoverflow.com/questions/36540603/\tO\n\t\n\t\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5232\tI-Code_Block\tA_5232\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36540603\tO\t36540603\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36540603/\tO\thttps://stackoverflow.com/questions/36540603/\tO\n\t\n\t\nSince\tO\tSince\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nOrderAmount\tB-Variable_Name\tOrderAmount\tO\ntype\tO\ttype\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nassuming\tO\tassuming\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\nmaximum\tO\tmaximum\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\norders\tO\torders\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5233\tI-Code_Block\tA_5233\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12253248\tO\t12253248\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12253248/\tO\thttps://stackoverflow.com/questions/12253248/\tO\n\t\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\nsay\tO\tsay\tO\nyour\tO\tyour\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nproduct\tO\tproduct\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nrealise\tO\trealise\tO\nthat\tO\tthat\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\ngeneral\tO\tgeneral\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nextracted\tO\textracted\tO\nout\tO\tout\tO\nto\tO\tto\tO\na\tO\ta\tO\ngem\tB-File_Type\tgem\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\ngem\tO\tgem\tO\n,\tO\t,\tO\npublish\tO\tpublish\tO\nit\tO\tit\tO\nto\tO\tto\tO\nRubygems\tB-Website\tRubygems\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nreference\tO\treference\tO\nit\tO\tit\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nmain\tO\tmain\tO\nproject\tO\tproject\tO\n's\tO\t's\tO\nGemfile\tB-File_Type\tGemfile\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ndiscover\tO\tdiscover\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\ngem\tB-File_Type\tgem\tO\ninteracts\tO\tinteracts\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproduct\tO\tproduct\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\ntime\tO\ttime\tO\nyour\tO\tyour\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nfix\tO\tfix\tO\n,\tO\t,\tO\nbuilding\tO\tbuilding\tO\nand\tO\tand\tO\ninstalling\tO\tinstalling\tO\nthe\tO\tthe\tO\ngem\tB-File_Type\tgem\tO\nlocally\tO\tlocally\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nabout\tO\tabout\tO\n15\tO\t15\tO\nseconds\tO\tseconds\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nminimise\tO\tminimise\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nquick\tO\tquick\tO\ndevelop/test\tO\tdevelop/test\tO\ncycle\tO\tcycle\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nAlso\tO\tAlso\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nlocally\tO\tlocally\tO\nbuilt\tO\tbuilt\tO\ngem\tB-File_Type\tgem\tO\n's\tO\t's\tO\nversion\tO\tversion\tO\nnumber\tO\tnumber\tO\ncould\tO\tcould\tO\ncontradict\tO\tcontradict\tO\nwith\tO\twith\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\npushed\tO\tpushed\tO\nto\tO\tto\tO\nRubygems\tB-Website\tRubygems\tO\n,\tO\t,\tO\nleading\tO\tleading\tO\nto\tO\tto\tO\nconfusion\tO\tconfusion\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nAny\tO\tAny\tO\nbest\tO\tbest\tO\npractice\tO\tpractice\tO\nguides\tO\tguides\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nsubject\tO\tsubject\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12253248\tO\t12253248\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12253248/\tO\thttps://stackoverflow.com/questions/12253248/\tO\n\t\n\t\nbundler\tB-Application\tbundler\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\ngems\tB-File_Type\tgems\tO\nfrom\tO\tfrom\tO\nrubygems\tB-Website\trubygems\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\npoint\tO\tpoint\tO\nit\tO\tit\tO\nat\tO\tat\tO\na\tO\ta\tO\ngit\tB-Application\tgit\tO\nrepository\tO\trepository\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1591\tI-Code_Block\tA_1591\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\n,\tO\t,\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nconveniently\tO\tconveniently\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1592\tI-Code_Block\tA_1592\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\noption\tO\toption\tO\npoints\tO\tpoints\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfolder\tO\tfolder\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ngem\tB-File_Type\tgem\tO\n's\tO\t's\tO\nsource\tO\tsource\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39610091\tO\t39610091\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39610091/\tO\thttps://stackoverflow.com/questions/39610091/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nfiles\tO\tfiles\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\n\t\nheader.tpl\tB-File_Name\theader.tpl\tO\nand\tO\tand\tO\nproduct.tpl\tB-File_Name\tproduct.tpl\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nor\tO\tor\tO\nmodel\tO\tmodel\tO\nfiles\tO\tfiles\tO\n\t\nFor\tO\tFor\tO\nSEO\tO\tSEO\tO\npurposes\tO\tpurposes\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmodifiy\tO\tmodifiy\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmeta\tO\tmeta\tO\ndata\tO\tdata\tO\nwhile\tO\twhile\tO\non\tO\ton\tO\na\tO\ta\tO\nproduct\tO\tproduct\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4996\tI-Code_Block\tQ_4996\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCurrently\tO\tCurrently\tO\n$description\tB-Variable_Name\t$description\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nany\tO\tany\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nproduct.tpl\tB-File_Name\tproduct.tpl\tB-Code_Block\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n<?php\tB-Code_Block\t<?php\tB-Code_Block\necho\tI-Code_Block\techo\tI-Code_Block\n$heading_title\tI-Code_Block\t$heading_title\tI-Code_Block\n?>\tI-Code_Block\t?>\tI-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\nessentially\tO\tessentially\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nheader\tO\theader\tO\nmeta\tO\tmeta\tB-Code_Block\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\neven\tO\teven\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nwithout\tO\twithout\tO\naccessing\tO\taccessing\tO\nthe\tO\tthe\tO\nmodel/controller\tO\tmodel/controller\tO\nor\tO\tor\tO\nam\tO\tam\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwasting\tO\twasting\tO\nmy\tO\tmy\tO\ntime\tO\ttime\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39610091\tO\t39610091\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39610091/\tO\thttps://stackoverflow.com/questions/39610091/\tO\n\t\n\t\nAs\tO\tAs\tO\nnoted\tO\tnoted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\n:\tO\t:\tO\nOnce\tO\tOnce\tO\nsomething\tO\tsomething\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\n(\tO\t(\tO\nor\tO\tor\tO\nany\tO\tany\tO\nother\tO\tother\tO\noutput\tO\toutput\tO\n)\tO\t)\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nimpossible\tO\timpossible\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nserver-side\tB-Application\tserver-side\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nable\tO\table\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nheader\tO\theader\tO\nwith\tO\twith\tO\npreg_replace()\tB-Library_Function\tpreg_replace()\tB-Code_Block\netc\tO\tetc\tO\n,\tO\t,\tO\nis\tO\tis\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nbefore\tO\tbefore\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\nheader\tO\theader\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthat\tO\tthat\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5718\tI-Code_Block\tA_5718\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nmove\tO\tmove\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprocessing\tO\tprocessing\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nto\tO\tto\tO\noutput\tO\toutput\tO\nanything\tO\tanything\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ncompletely\tO\tcompletely\tO\neliminates\tO\teliminates\tO\nthe\tO\tthe\tO\nparadox\tO\tparadox\tO\nof\tO\tof\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nsomething\tO\tsomething\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nalready\tO\talready\tO\nsent\tO\tsent\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nshould\tO\tshould\tO\nleave\tO\tleave\tO\nyou\tO\tyou\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nlooking\tO\tlooking\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5719\tI-Code_Block\tA_5719\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nadded\tO\tadded\tO\nbenefit\tO\tbenefit\tO\nof\tO\tof\tO\nmaking\tO\tmaking\tO\nyour\tO\tyour\tO\nPHP\tB-Language\tPHP\tO\ncode\tO\tcode\tO\nmuch\tO\tmuch\tO\nsimpler\tO\tsimpler\tO\nto\tO\tto\tO\nread\tO\tread\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nmaintain\tO\tmaintain\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlong\tO\tlong\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nsmall\tO\tsmall\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\na\tO\ta\tO\nproper\tO\tproper\tO\nseperation\tO\tseperation\tO\nof\tO\tof\tO\nconcerns\tO\tconcerns\tO\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39610091\tO\t39610091\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39610091/\tO\thttps://stackoverflow.com/questions/39610091/\tO\n\t\n\t\nThe\tO\tThe\tO\nnot\tO\tnot\tO\nso\tO\tso\tO\npretty\tO\tpretty\tO\nbut\tO\tbut\tO\nfunctional\tO\tfunctional\tO\nsolution\tO\tsolution\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5717\tI-Code_Block\tA_5717\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9984224\tO\t9984224\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9984224/\tO\thttps://stackoverflow.com/questions/9984224/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\na\tO\ta\tO\n.html.erb\tB-File_Type\t.html.erb\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_872\tI-Code_Block\tQ_872\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\ncorrectly\tO\tcorrectly\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\n@consumer\tB-Variable_Name\t@consumer\tO\n.name\tI-Variable_Name\t.name\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nWhere\tO\tWhere\tO\nfacebook_consumer.js\tB-File_Name\tfacebook_consumer.js\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_873\tI-Code_Block\tQ_873\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\ndump\tO\tdump\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\nliked\tO\tliked\tO\n<%=\tB-Code_Block\t<%=\tB-Code_Block\n@consumer.name\tI-Code_Block\t@consumer.name\tI-Code_Block\n%>\tI-Code_Block\t%>\tI-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nsaving\tO\tsaving\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nas\tO\tas\tO\njs.erb\tB-File_Name\tjs.erb\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\n@consumer\tB-Variable_Name\t@consumer\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nthoughts\tO\tthoughts\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\napproach\tO\tapproach\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9984224\tO\t9984224\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9984224/\tO\thttps://stackoverflow.com/questions/9984224/\tO\n\t\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ninline\tO\tinline\tO\nRuby\tB-Language\tRuby\tO\ncode\tO\tcode\tO\ninto\tO\tinto\tO\n.js\tB-File_Type\t.js\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nRuby\tB-Language\tRuby\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\n.js.erb\tB-File_Type\t.js.erb\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrender\tO\trender\tO\na\tO\ta\tO\npartial\tO\tpartial\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1269\tI-Code_Block\tA_1269\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9984224\tO\t9984224\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9984224/\tO\thttps://stackoverflow.com/questions/9984224/\tO\n\t\n\t\nYour\tO\tYour\tO\nbest\tO\tbest\tO\nbet\tO\tbet\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\napp-wide\tO\tapp-wide\tO\nJS\tB-Language\tJS\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nvalues\tO\tvalues\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nelements\tO\telements\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\navailable\tO\tavailable\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nlinked\tO\tlinked\tO\nscripts\tO\tscripts\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1268\tI-Code_Block\tA_1268\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6101805\tO\t6101805\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6101805/\tO\thttps://stackoverflow.com/questions/6101805/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nmulti\tO\tmulti\tO\nthreaded\tO\tthreaded\tO\nscenario\tO\tscenario\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nhandles\tO\thandles\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nUI\tO\tUI\tO\nevents\tO\tevents\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\nup\tO\tup\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nbackground\tO\tbackground\tO\noperations\tO\toperations\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n\"\tO\t\"\tO\nbackground\tO\tbackground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\nloads\tO\tloads\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nfiles\tO\tfiles\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndata-table\tO\tdata-table\tO\nof\tO\tof\tO\na\tO\ta\tO\nstrongly-typed\tO\tstrongly-typed\tO\ndataset\tO\tdataset\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nDataGridView\tB-Library_Class\tDataGridView\tB-Code_Block\nis\tO\tis\tO\nbound\tO\tbound\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nDataTable\tB-Library_Class\tDataTable\tB-Code_Block\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nready\tO\tready\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nbackground\tO\tbackground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\ninvokes\tO\tinvokes\tO\nthe\tO\tthe\tO\nrefresh()\tB-Library_Function\trefresh()\tB-Code_Block\nfunction\tO\tfunction\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nDataGridView\tB-Library_Class\tDataGridView\tB-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nlines\tO\tlines\tO\nthen\tO\tthen\tO\nwhat\tO\twhat\tO\nfits\tO\tfits\tO\non\tO\ton\tO\none\tO\tone\tO\nscreen\tB-Device\tscreen\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nvertical\tB-User_Interface_Element\tvertical\tO\nscrollbar\tI-User_Interface_Element\tscrollbar\tO\nis\tO\tis\tO\nto\tO\tto\tO\nappear\tO\tappear\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\ngrid\tB-User_Interface_Element\tgrid\tO\ncrashes\tO\tcrashes\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\ndatalines\tB-User_Interface_Element\tdatalines\tO\nare\tO\tare\tO\nalways\tO\talways\tO\ndisplayed\tO\tdisplayed\tO\n.\tO\t.\tO\n\t\nError\tO\tError\tO\nonly\tO\tonly\tO\noccurs\tO\toccurs\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nenough\tO\tenough\tO\nlines\tO\tlines\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nscrollbar\tB-User_Interface_Element\tscrollbar\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nimage\tB-User_Interface_Element\timage\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\n.NET\tB-Library\t.NET\tO\n3.5\tB-Version\t3.5\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nWindows\tB-Operating_System\tWindows\tO\nXP\tB-Version\tXP\tO\nit\tO\tit\tO\ncrashes\tO\tcrashes\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nWin\tB-Operating_System\tWin\tO\n7\tB-Version\t7\tO\n(\tO\t(\tO\n64\tB-Version\t64\tO\nbit\tI-Version\tbit\tO\n)\tO\t)\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\ngrid\tB-User_Interface_Element\tgrid\tO\nbecomes\tO\tbecomes\tO\nunresponsive\tO\tunresponsive\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonce\tO\tonce\tO\nI\tO\tI\tO\nresize\tO\tresize\tO\nthe\tO\tthe\tO\nwindow\tB-User_Interface_Element\twindow\tO\nthe\tO\tthe\tO\nscrollbar\tB-User_Interface_Element\tscrollbar\tO\nappears\tO\tappears\tO\nand\tO\tand\tO\nall\tO\tall\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrelevant\tO\trelevant\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nare\tO\tare\tO\nattached\tO\tattached\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nGrid\tO\tGrid\tO\nrefresh\tB-Library_Function\trefresh\tO\noperation\tO\toperation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n's\tO\t's\tO\n.cs\tB-File_Type\t.cs\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_436\tI-Code_Block\tQ_436\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nupdate\tO\tupdate\tO\npart\tO\tpart\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nbackground\tO\tbackground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_437\tI-Code_Block\tQ_437\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nobjects\tO\tobjects\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nbackground\tO\tbackground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndirect\tO\tdirect\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nDataSet\tB-Library_Class\tDataSet\tB-Code_Block\n(\tO\t(\tO\nUiDataSource\tB-Library_Class\tUiDataSource\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nDataTable\tB-Library_Class\tDataTable\tB-Code_Block\n(\tO\t(\tO\nCurrentSamples\tB-Library_Class\tCurrentSamples\tB-Code_Block\n)\tO\t)\tO\nis\tO\tis\tO\nupdated\tO\tupdated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmanner\tO\tmanner\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_438\tI-Code_Block\tQ_438\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDataGridView\tB-Library_Class\tDataGridView\tB-Code_Block\noptions\tO\toptions\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_439\tI-Code_Block\tQ_439\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nmistake\tO\tmistake\tO\nsomewhere\tO\tsomewhere\tO\nplease\tO\tplease\tO\npoint\tO\tpoint\tO\nit\tO\tit\tO\nout\tO\tout\tO\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\n@ChrisF\tB-User_Name\t@ChrisF\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nremoving\tO\tremoving\tO\nthe\tO\tthe\tO\nrefresh()\tB-Library_Function\trefresh()\tB-Code_Block\nstatement\tO\tstatement\tO\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwhat\tO\twhat\tO\nu\tO\tu\tO\nsuggested\tO\tsuggested\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\ndifference\tO\tdifference\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndatabinding\tO\tdatabinding\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_440\tI-Code_Block\tQ_440\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ndataTable\tB-Library_Class\tdataTable\tB-Code_Block\nin\tO\tin\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nway\tO\tway\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ndata\tO\tdata\tO\nlines\tO\tlines\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nappear\tO\tappear\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\nresize\tO\tresize\tO\nthe\tO\tthe\tO\nwindow\tB-User_Interface_Element\twindow\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nraises\tO\traises\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nproperly\tO\tproperly\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ndataTable\tB-Library_Class\tdataTable\tB-Code_Block\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nthread\tO\tthread\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6101805\tO\t6101805\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6101805/\tO\thttps://stackoverflow.com/questions/6101805/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nguessing\tO\tguessing\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nhow\tO\thow\tO\nWinForms\tB-Library\tWinForms\tO\nworks\tO\tworks\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nSTA\tO\tSTA\tO\nmodel\tO\tmodel\tO\nfor\tO\tfor\tO\nthreading\tO\tthreading\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nDataTable\tB-Library_Class\tDataTable\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\naccessing\tO\taccessing\tO\nis\tO\tis\tO\nlocated\tO\tlocated\tO\nsomewhere\tO\tsomewhere\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nwe\tO\twe\tO\nsee\tO\tsee\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nDataTable\tB-Library_Class\tDataTable\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nthread\tO\tthread\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\nneeded\tO\tneeded\tO\nfor\tO\tfor\tO\nbinding\tO\tbinding\tO\n?\tO\t?\tO\n\t\nLikely\tO\tLikely\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nyou\tO\tyou\tO\nupdate\tO\tupdate\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n's\tO\t's\tO\nthread\tO\tthread\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\naware\tO\taware\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nbeing\tO\tbeing\tO\nmade\tO\tmade\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nsimply\tO\tsimply\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ninvoke\tO\tinvoke\tO\nany\tO\tany\tO\ncalls\tO\tcalls\tO\nto\tO\tto\tO\nDataTable\tB-Library_Class\tDataTable\tO\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nreceives\tO\treceives\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\nproperly\tO\tproperly\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_683\tI-Code_Block\tA_683\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nbackwards\tO\tbackwards\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nkeep\tO\tkeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nin\tO\tin\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\nenterprise\tO\tenterprise\tO\n\"\tO\t\"\tO\nsituation\tO\tsituation\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nprobably\tO\tprobably\tO\nbe\tO\tbe\tO\naccessing\tO\taccessing\tO\nthat\tO\tthat\tO\ndataset\tO\tdataset\tO\nby\tO\tby\tO\nmultiple\tO\tmultiple\tO\nadapters\tO\tadapters\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nupdate\tO\tupdate\tO\nthread\tO\tthread\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nadapter\tO\tadapter\tO\nto\tO\tto\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nGUI\tO\tGUI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nits\tO\tits\tO\nown\tO\town\tO\nalso\tO\talso\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nBindingList\tB-Library_Class\tBindingList\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nhas\tO\thas\tO\nthread\tO\tthread\tO\ncompatibility\tO\tcompatibility\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nsituation\tO\tsituation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nquote\tO\tquote\tO\nme\tO\tme\tO\non\tO\ton\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nextra\tO\textra\tO\ncredit\tO\tcredit\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\nexplain\tO\texplain\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nbefore\tO\tbefore\tO\nwith\tO\twith\tO\ncrashing\tO\tcrashing\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\naccessing\tO\taccessing\tO\nthe\tO\tthe\tO\nDataGridView\tB-Library_Class\tDataGridView\tB-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhad\tO\thad\tO\ncross-thread\tO\tcross-thread\tO\noperations\tO\toperations\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6101805\tO\t6101805\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6101805/\tO\thttps://stackoverflow.com/questions/6101805/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\ncall\tO\tcall\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_680\tI-Code_Block\tA_680\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThese\tO\tThese\tO\nwill\tO\twill\tO\ntake\tO\ttake\tO\nprogressively\tO\tprogressively\tO\nlonger\tO\tlonger\tO\nand\tO\tand\tO\nlonger\tO\tlonger\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nset\tO\tset\tO\ngets\tO\tgets\tO\nlarger\tO\tlarger\tO\nand\tO\tand\tO\nlarger\tO\tlarger\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nwritten\tO\twritten\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\na\tO\ta\tO\nDataGridView\tB-Library_Class\tDataGridView\tB-Code_Block\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nmp3\tB-File_Type\tmp3\tO\nfile\tO\tfile\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nDataSource\tB-Library_Class\tDataSource\tB-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\nDataGridView\tB-Library_Class\tDataGridView\tB-Code_Block\nto\tO\tto\tO\na\tO\ta\tO\nDataTable\tB-Library_Class\tDataTable\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_681\tI-Code_Block\tA_681\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthen\tO\tthen\tO\nsimply\tO\tsimply\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nDataTable\tB-Library_Class\tDataTable\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_682\tI-Code_Block\tA_682\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nautomatically\tO\tautomatically\tO\nupdates\tO\tupdates\tO\nthe\tO\tthe\tO\nDataGridView\tB-Library_Class\tDataGridView\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35389568\tO\t35389568\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35389568/\tO\thttps://stackoverflow.com/questions/35389568/\tO\n\t\n\t\nfind\tO\tfind\tO\n3rd\tO\t3rd\tO\ntd\tB-HTML_XML_Tag\ttd\tO\nin\tO\tin\tO\ntr\tB-HTML_XML_Tag\ttr\tO\nwhere\tO\twhere\tO\nclass\tO\tclass\tO\ncontains\tO\tcontains\tO\nzebra\tO\tzebra\tO\n\t\nThe\tO\tThe\tO\nphoto\tO\tphoto\tO\nshows\tO\tshows\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n4\tO\t4\tO\nanimals\tO\tanimals\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nassociated\tO\tassociated\tO\nquantity\tO\tquantity\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nthe\tO\tthe\tO\n3rd\tO\t3rd\tO\ntd\tB-HTML_XML_Tag\ttd\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntr\tB-HTML_XML_Tag\ttr\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nhtml\tB-Language\thtml\tO\nbelow\tO\tbelow\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nzebra\tB-Value\tzebra\tO\nhas\tO\thas\tO\nquantity\tO\tquantity\tO\n1\tB-Value\t1\tO\n,\tO\t,\tO\nand\tO\tand\tO\nlion\tB-Value\tlion\tO\nhas\tO\thas\tO\nquantity\tO\tquantity\tO\n1\tB-Value\t1\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nunsuccessful\tO\tunsuccessful\tO\nfinding\tO\tfinding\tO\nby\tO\tby\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhy\tO\twhy\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nspace\tO\tspace\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\n?\tO\t?\tO\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\nxpath\tB-Language\txpath\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ntr\tB-HTML_XML_Tag\ttr\tO\ntags\tO\ttags\tO\nchange\tO\tchange\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nuser\tO\tuser\tO\ninputs\tO\tinputs\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nprior\tO\tprior\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nby\tO\tby\tO\nxpath\tB-Language\txpath\tO\nwith\tO\twith\tO\ncontains\tO\tcontains\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nno\tO\tno\tO\navail\tO\tavail\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\nnot\tO\tnot\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35389568\tO\t35389568\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35389568/\tO\thttps://stackoverflow.com/questions/35389568/\tO\n\t\n\t\nYes\tO\tYes\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nuse\tO\tuse\tO\nclassName\tB-Library_Function\tclassName\tO\nlocator\tO\tlocator\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nspace\tO\tspace\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nName\tO\tName\tO\ninstead\tO\tinstead\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ncssselector\tB-Library_Function\tcssselector\tO\nor\tO\tor\tO\nxpath\tB-Library_Function\txpath\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5051\tI-Code_Block\tA_5051\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35389568\tO\t35389568\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35389568/\tO\thttps://stackoverflow.com/questions/35389568/\tO\n\t\n\t\nline_item\tB-Class_Name\tline_item\tB-Code_Block\nZebra\tI-Class_Name\tZebra\tI-Code_Block\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nclasses\tO\tclasses\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nWebElement\tB-Library_Class\tWebElement\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nby\tO\tby\tO\nclassName\tB-Library_Function\tclassName\tB-Code_Block\nonly\tO\tonly\tO\nwith\tO\twith\tO\none\tO\tone\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5052\tI-Code_Block\tA_5052\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nanimals\tO\tanimals\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nline_item\tB-Class_Name\tline_item\tB-Code_Block\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nanimals\tO\tanimals\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5053\tI-Code_Block\tA_5053\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nanimals\tB-Variable_Name\tanimals\tB-Code_Block\nnow\tO\tnow\tO\nholds\tO\tholds\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfour\tO\tfour\tO\nelements\tO\telements\tO\nwith\tO\twith\tO\nclass\tO\tclass\tO\nline_item\tB-Class_Name\tline_item\tB-Code_Block\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nthird\tO\tthird\tO\n<td>\tB-HTML_XML_Tag\t<td>\tB-Code_Block\nin\tO\tin\tO\neach\tO\teach\tO\none\tO\tone\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nWebElements\tB-Library_Class\tWebElements\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5054\tI-Code_Block\tA_5054\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5388915\tO\t5388915\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5388915/\tO\thttps://stackoverflow.com/questions/5388915/\tO\n\t\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nservice\tO\tservice\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nin\tO\tin\tO\ntwo\tO\ttwo\tO\nmodes\tO\tmodes\tO\n,\tO\t,\tO\nstarted\tO\tstarted\tO\nand\tO\tand\tO\nbound\tO\tbound\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nquite\tO\tquite\tO\nunderstand\tO\tunderstand\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndeveloper\tO\tdeveloper\tO\ndocs\tO\tdocs\tO\nor\tO\tor\tO\nother\tO\tother\tO\nquestions\tO\tquestions\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\n,\tO\t,\tO\nis\tO\tis\tO\nwhether\tO\twhether\tO\na\tO\ta\tO\nservice\tO\tservice\tO\nrunning\tO\trunning\tO\nas\tO\tas\tO\nboth\tO\tboth\tO\nstarted\tO\tstarted\tO\nand\tO\tand\tO\nbound\tO\tbound\tO\nwill\tO\twill\tO\nexit\tO\texit\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ncomponent\tO\tcomponent\tO\nunbinds\tO\tunbinds\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5388915\tO\t5388915\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5388915/\tO\thttps://stackoverflow.com/questions/5388915/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIf\tO\tIf\tO\nsomething\tO\tsomething\tO\ncalled\tO\tcalled\tO\nstartService()\tB-Library_Function\tstartService()\tB-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nService\tB-Library_Class\tService\tB-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nremain\tO\tremain\tO\nrunning\tO\trunning\tO\n,\tO\t,\tO\nregardless\tO\tregardless\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nbindService()\tB-Library_Function\tbindService()\tB-Code_Block\nand\tO\tand\tO\nunbindService()\tB-Library_Function\tunbindService()\tB-Code_Block\ncalls\tO\tcalls\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\ngone\tO\tgone\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nEventually\tO\tEventually\tO\n,\tO\t,\tO\nAndroid\tB-Operating_System\tAndroid\tO\nwill\tO\twill\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nwill\tO\twill\tO\nkill\tO\tkill\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nneither\tO\tneither\tO\nwill\tO\twill\tO\nhappen\tO\thappen\tO\nimmediately\tO\timmediately\tO\nupon\tO\tupon\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nunbindService()\tB-Library_Function\tunbindService()\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36970003\tO\t36970003\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36970003/\tO\thttps://stackoverflow.com/questions/36970003/\tO\n\t\n\t\nExample\tO\tExample\tO\nbuild.gradle\tB-File_Name\tbuild.gradle\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4571\tI-Code_Block\tQ_4571\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nplugin\tO\tplugin\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4572\tI-Code_Block\tQ_4572\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\ncustom\tO\tcustom\tO\ntask\tO\ttask\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4573\tI-Code_Block\tQ_4573\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\napplicationId\tB-Variable_Name\tapplicationId\tB-Code_Block\nbefore\tO\tbefore\tO\nbuild\tO\tbuild\tB-Code_Block\ntask\tO\ttask\tI-Code_Block\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nvia\tO\tvia\tO\nproperty\tO\tproperty\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmanage\tO\tmanage\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36970003\tO\t36970003\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36970003/\tO\thttps://stackoverflow.com/questions/36970003/\tO\n\t\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nbecause\tO\tbecause\tO\nconfig\tB-Variable_Name\tconfig\tO\nis\tO\tis\tO\nresolved\tO\tresolved\tO\nduring\tO\tduring\tO\nconfiguration\tO\tconfiguration\tO\nphase\tO\tphase\tO\nand\tO\tand\tO\ntask\tO\ttask\tO\nis\tO\tis\tO\nexecuted\tO\texecuted\tO\nduring\tO\tduring\tO\nexecution\tO\texecution\tO\nphase\tO\tphase\tO\n(\tO\t(\tO\nafter\tO\tafter\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nplugin\tO\tplugin\tO\napply\tB-Function_Name\tapply\tO\nmethod\tO\tmethod\tO\nas\tO\tas\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\nwork\tO\twork\tO\nin\tO\tin\tO\ntask\tO\ttask\tO\nconstructor\tO\tconstructor\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\n100%\tO\t100%\tO\nsure\tO\tsure\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26466407\tO\t26466407\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26466407/\tO\thttps://stackoverflow.com/questions/26466407/\tO\n\t\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ntask\tO\ttask\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nre-order\tO\tre-order\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\nfor\tO\tfor\tO\ntablets\tO\ttablets\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\n100%\tB-Value\t100%\tO\nwidth\tB-HTML_XML_Tag\twidth\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nfiddle\tB-Application\tfiddle\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nmean\tO\tmean\tO\n.\tO\t.\tO\n\t\nOriginal\tO\tOriginal\tO\nreference\tO\treference\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3022\tI-Code_Block\tQ_3022\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhttp://getbootstrap.com/css/#grid-column-ordering\tO\thttp://getbootstrap.com/css/#grid-column-ordering\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26466407\tO\t26466407\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26466407/\tO\thttps://stackoverflow.com/questions/26466407/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nhack\tO\thack\tO\naround\tO\taround\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nmobile\tB-Device\tmobile\tO\nfirst\tO\tfirst\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6254\tI-Code_Block\tA_6254\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26466407\tO\t26466407\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26466407/\tO\thttps://stackoverflow.com/questions/26466407/\tO\n\t\n\t\nIts\tO\tIts\tO\ndoable\tO\tdoable\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nmobile\tB-Device\tmobile\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nPlace\tO\tPlace\tO\nthe\tO\tthe\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nappear\tO\tappear\tO\nin\tO\tin\tO\nsmall\tO\tsmall\tO\nviewports\tO\tviewports\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nreorder\tO\treorder\tO\nthem\tO\tthem\tO\nfor\tO\tfor\tO\nlarger\tO\tlarger\tO\nviewports\tO\tviewports\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3650\tI-Code_Block\tA_3650\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43875692\tO\t43875692\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43875692/\tO\thttps://stackoverflow.com/questions/43875692/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nscript\tO\tscript\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\nLinux\tB-Operating_System\tLinux\tO\nUbuntu\tI-Operating_System\tUbuntu\tO\n\t\nWhen\tO\tWhen\tO\nit\tO\tit\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nWindows\tB-Operating_System\tWindows\tO\nI\tO\tI\tO\nfell\tO\tfell\tO\nshort\tO\tshort\tO\n.\tO\t.\tO\n\t\nmy\tO\tmy\tO\nscript\tO\tscript\tO\nuses\tO\tuses\tO\nimport\tB-Code_Block\timport\tB-Code_Block\nargparse\tI-Code_Block\targparse\tI-Code_Block\nso\tO\tso\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npass\tO\tpass\tO\narguments\tO\targuments\tO\nvia\tO\tvia\tO\ncmd\tB-Application\tcmd\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ngetting\tO\tgetting\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nwhile\tO\twhile\tO\ntyping\tO\ttyping\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nanyone\tO\tanyone\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nanswers\tO\tanswers\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nFor\tO\tFor\tO\nme\tO\tme\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nhad\tO\thad\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\ntoying\tO\ttoying\tO\nwith\tO\twith\tO\narchives\tO\tarchives\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5666\tI-Code_Block\tQ_5666\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\naction\tO\taction\tO\nwill\tO\twill\tO\ncompress\tO\tcompress\tO\ntest1.txt\tB-File_Name\ttest1.txt\tO\nin\tO\tin\tO\nArchive.zip\tB-File_Name\tArchive.zip\tO\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nstupid\tO\tstupid\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbig\tO\tbig\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\nin\tO\tin\tO\nWindows\tB-Operating_System\tWindows\tO\nand\tO\tand\tO\nLinux\tB-Operating_System\tLinux\tO\nwhen\tO\twhen\tO\nhandling\tO\thandling\tO\npython\tB-Language\tpython\tO\n.\tO\t.\tO\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhere\tO\twhere\tO\nyour\tO\tyour\tO\narguments\tO\targuments\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n*\tO\t*\tO\n\t\nI\tO\tI\tO\nChanged\tO\tChanged\tO\nthe\tO\tthe\tO\nplaces\tO\tplaces\tO\nbetween\tO\tbetween\tO\n-c\tB-Code_Block\t-c\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narchive\tO\tarchive\tO\nby\tO\tby\tO\nmistake\tO\tmistake\tO\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ntyping\tO\ttyping\tO\npython3\tB-Language\tpython3\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\npython\tB-Language\tpython\tB-Code_Block\nfor\tO\tfor\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\nidiot\tO\tidiot\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nbiggest\tO\tbiggest\tO\ndifference\tO\tdifference\tO\nis\tO\tis\tO\npython3\tB-Language\tpython3\tB-Code_Block\nfor\tO\tfor\tO\nLinux\tB-Operating_System\tLinux\tO\nand\tO\tand\tO\npython\tB-Language\tpython\tB-Code_Block\nfor\tO\tfor\tO\nWindows\tB-Operating_System\tWindows\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\ndifferent\tO\tdifferent\tO\nbetween\tO\tbetween\tO\nLinux\tB-Operating_System\tLinux\tO\nand\tO\tand\tO\nWindows\tB-Operating_System\tWindows\tO\nwhen\tO\twhen\tO\nhandling\tO\thandling\tO\npython\tB-Language\tpython\tO\nscripts\tO\tscripts\tO\n?\tO\t?\tO\n\t\nturned\tO\tturned\tO\nout\tO\tout\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://docs.python.org/3.3/using/windows.html\tO\thttps://docs.python.org/3.3/using/windows.html\tO\n\t\nand\tO\tand\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://docs.python.org/3.3/using/unix.html\tO\thttps://docs.python.org/3.3/using/unix.html\tO\n\t\nAnyone\tO\tAnyone\tO\ninterested\tO\tinterested\tO\ncheck\tO\tcheck\tO\nthose\tO\tthose\tO\nlinks\tO\tlinks\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nidea\tO\tidea\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\nno\tO\tno\tO\nneed\tO\tneed\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nafter\tO\tafter\tO\nall\tO\tall\tO\n:(\tO\t:(\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25059453\tO\t25059453\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25059453/\tO\thttps://stackoverflow.com/questions/25059453/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\ndisplaying\tO\tdisplaying\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nusing\tO\tusing\tO\nbeans\tB-Library_Class\tbeans\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\non\tO\ton\tO\na\tO\ta\tO\nlogin\tO\tlogin\tO\npage\tO\tpage\tO\n:\tO\t:\tO\n\t\nget\tO\tget\tO\nemail\tO\temail\tO\n,\tO\t,\tO\npassword\tO\tpassword\tO\nand\tO\tand\tO\nrole\tO\trole\tO\nof\tO\tof\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nbeans\tB-Library_Class\tbeans\tO\ncheck\tO\tcheck\tO\nit\tO\tit\tO\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nfor\tO\tfor\tO\nvalidation\tO\tvalidation\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nany\tO\tany\tO\nerrors\tO\terrors\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nbean\tB-Library_Class\tbean\tO\nand\tO\tand\tO\ndisplayed\tO\tdisplayed\tO\nto\tO\tto\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\ntesting\tO\ttesting\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nenters\tO\tenters\tO\nemail\tO\temail\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nis\tO\tis\tO\n:\tO\t:\tO\neverytime\tO\teverytime\tO\ni\tO\ti\tO\nturn\tO\tturn\tO\noff\tO\toff\tO\ntomcat\tB-Application\ttomcat\tO\nand\tO\tand\tO\nrerun\tO\trerun\tO\nit\tO\tit\tO\n,\tO\t,\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nenter\tO\tenter\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nfield\tO\tfield\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\ndisplayed\tO\tdisplayed\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\ni\tO\ti\tO\nonce\tO\tonce\tO\nentered\tO\tentered\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nwill\tO\twill\tO\nnever\tO\tnever\tO\nshow\tO\tshow\tO\nagain\tO\tagain\tO\n(\tO\t(\tO\nofcourse\tO\tofcourse\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nenter\tO\tenter\tO\nemail\tO\temail\tO\nin\tO\tin\tO\nemail\tO\temail\tO\nfield\tO\tfield\tO\n)\tO\t)\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\ndoLogin.jsp\tB-File_Name\tdoLogin.jsp\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2835\tI-Code_Block\tQ_2835\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nformError.java\tB-File_Name\tformError.java\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2836\tI-Code_Block\tQ_2836\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nvalidate\tB-Function_Name\tvalidate\tO\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2837\tI-Code_Block\tQ_2837\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nBeans\tB-Library_Class\tBeans\tO\nand\tO\tand\tO\ncurrently\tO\tcurrently\tO\nlearning\tO\tlearning\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nnames\tO\tnames\tO\nlike\tO\tlike\tO\naddGenError\tB-Function_Name\taddGenError\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nsetGenError\tB-Function_Name\tsetGenError\tB-Code_Block\nand\tO\tand\tO\nit\tO\tit\tO\nthe\tO\tthe\tO\nbehavior\tO\tbehavior\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25059453\tO\t25059453\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25059453/\tO\thttps://stackoverflow.com/questions/25059453/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n:\tO\t:\tO\n\t\nwhile\tO\twhile\tO\nsending\tO\tsending\tO\nform\tO\tform\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nbean\tB-Library_Class\tbean\tO\nid\tO\tid\tO\n:\tO\t:\tO\nloginFormData\tB-Variable_Name\tloginFormData\tB-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\nsession\tO\tsession\tO\nscope\tO\tscope\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nchanging\tO\tchanging\tO\nit\tO\tit\tO\nto\tO\tto\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\ni\tO\ti\tO\ngot\tO\tgot\tO\nmy\tO\tmy\tO\ndesired\tO\tdesired\tO\nfunctionality\tO\tfunctionality\tO\n.\tO\t.\tO\n\t\nChanged\tO\tChanged\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3435\tI-Code_Block\tA_3435\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47690491\tO\t47690491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47690491/\tO\thttps://stackoverflow.com/questions/47690491/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\na\tO\ta\tO\nfolder\tO\tfolder\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nif\tO\tif\tO\nit\tO\tit\tO\nexists\tO\texists\tO\ndelete\tO\tdelete\tO\nit\tO\tit\tO\nan\tO\tan\tO\nreplace\tO\treplace\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nupdated\tO\tupdated\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\nor\tO\tor\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndelete\tO\tdelete\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\npath\tO\tpath\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nindividuals\tO\tindividuals\tO\npersonal\tO\tpersonal\tO\ndrive\tO\tdrive\tO\n\t\nMy\tO\tMy\tO\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6321\tI-Code_Block\tQ_6321\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nHappens\tO\tHappens\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nexecutes\tO\texecutes\tO\nand\tO\tand\tO\ndeletes\tO\tdeletes\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\nfile\tO\tfile\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nappears\tO\tappears\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nfailing\tO\tfailing\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncopy\tO\tcopy\tO\nand\tO\tand\tO\npaste\tO\tpaste\tO\npart\tO\tpart\tO\n.\tO\t.\tO\n\t\nError\tO\tError\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\ndebug\tO\tdebug\tO\nthat\tO\tthat\tO\ncomes\tO\tcomes\tO\nup\tO\tup\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47690491\tO\t47690491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47690491/\tO\thttps://stackoverflow.com/questions/47690491/\tO\n\t\n\t\nBare\tO\tBare\tO\nbones\tO\tbones\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6963\tI-Code_Block\tA_6963\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47690491\tO\t47690491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47690491/\tO\thttps://stackoverflow.com/questions/47690491/\tO\n\t\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nsaid\tO\tsaid\tO\nwhich\tO\twhich\tO\nline\tO\tline\tO\nis\tO\tis\tO\nthrowing\tO\tthrowing\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ninstantiated\tO\tinstantiated\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nFileSystemObject\tB-Library_Class\tFileSystemObject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6961\tI-Code_Block\tA_6961\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfso\tB-Variable_Name\tfso\tO\nreference\tO\treference\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nyour\tO\tyour\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6962\tI-Code_Block\tA_6962\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nmethod\tO\tmethod\tO\nabove\tO\tabove\tO\nused\tO\tused\tO\n\"\tO\t\"\tO\nLate\tO\tLate\tO\nbinding\tO\tbinding\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\ninterrogate\tO\tinterrogate\tO\nthe\tO\tthe\tO\nregistry\tO\tregistry\tO\nfor\tO\tfor\tO\nScripting.FileSystemObject\tB-Library_Class\tScripting.FileSystemObject\tB-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nearly\tO\tearly\tO\nbinding\tO\tbinding\tO\nand\tO\tand\tO\nreference\tO\treference\tO\nthe\tO\tthe\tO\nMicrosoft\tB-Library\tMicrosoft\tO\nScripting\tI-Library\tScripting\tO\nRuntime\tI-Library\tRuntime\tO\ndirectly\tO\tdirectly\tO\nand\tO\tand\tO\navoid\tO\tavoid\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nCreateObject\tB-Library_Function\tCreateObject\tB-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ndetailed\tO\tdetailed\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nStack\tB-Website\tStack\tO\nOverflow\tI-Website\tOverflow\tO\nanswer\tO\tanswer\tO\n:\tO\t:\tO\n\t\nhttps://stackoverflow.com/a/3236348/491557\tO\thttps://stackoverflow.com/a/3236348/491557\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36564057\tO\t36564057\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36564057/\tO\thttps://stackoverflow.com/questions/36564057/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\nactions\tO\tactions\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nUITableViewCell\tB-Library_Class\tUITableViewCell\tO\noverlap\tO\toverlap\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell\tO\tcell\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nNational\tB-Organization\tNational\tO\nGeographic\tI-Organization\tGeographic\tO\napp\tO\tapp\tO\n:\tO\t:\tO\n\t\ntable\tB-Data_Structure\ttable\tO\nview\tO\tview\tO\n\t\ntable\tB-Data_Structure\ttable\tO\nview\tO\tview\tO\nwhen\tO\twhen\tO\nswiped\tO\tswiped\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nlistener\tO\tlistener\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncontentView\tB-Library_Class\tcontentView\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell\tO\tcell\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nthe\tO\tthe\tO\nframe\tO\tframe\tO\nand\tO\tand\tO\nkeep\tO\tkeep\tO\nit\tO\tit\tO\nconstant\tO\tconstant\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n(\tO\t(\tO\nalthough\tO\talthough\tO\nit\tO\tit\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nit\tO\tit\tO\nwould\tO\twould\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nkinda\tO\tkinda\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\niOS\tB-Operating_System\tiOS\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\nhas\tO\thas\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\nfor\tO\tfor\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\neffect\tO\teffect\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36564057\tO\t36564057\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36564057/\tO\thttps://stackoverflow.com/questions/36564057/\tO\n\t\n\t\nu\tO\tu\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ncustom\tO\tcustom\tO\ncell\tO\tcell\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ndelete\tO\tdelete\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nand\tO\tand\tO\nswipe\tO\tswipe\tO\ngestures\tO\tgestures\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nlike\tO\tlike\tO\nbutton\tB-User_Interface_Element\tbutton\tO\noverlap\tO\toverlap\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell\tO\tcell\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\nout\tO\tout\tO\nyourself\tO\tyourself\tO\n,\tO\t,\tO\nfirst\tO\tfirst\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nproject\tO\tproject\tO\nwith\tO\twith\tO\nsingle\tO\tsingle\tO\nview\tO\tview\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nand\tO\tand\tO\nproceed\tO\tproceed\tO\n\t\nsubclass\tO\tsubclass\tO\nthe\tO\tthe\tO\ntabview\tB-Variable_Name\ttabview\tO\ncell\tO\tcell\tO\nwith\tO\twith\tO\nxib\tB-Code_Block\txib\tO\noption\tO\toption\tO\nselected\tO\tselected\tO\nand\tO\tand\tO\nname\tO\tname\tO\nit\tO\tit\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nCustomCell\tB-Function_Name\tCustomCell\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nCustomCell.swift\tB-Library_Class\tCustomCell.swift\tB-Code_Block\nclass\tO\tclass\tO\npast\tO\tpast\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5234\tI-Code_Block\tA_5234\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\ntableview\tB-Variable_Name\ttableview\tO\ncell\tO\tcell\tO\nheight\tB-Variable_Name\theight\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nof\tO\tof\tO\n100pt\tB-Value\t100pt\tO\nand\tO\tand\tO\nin\tO\tin\tO\nview\tO\tview\tO\ncontroller\tO\tcontroller\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\ntableview\tB-Variable_Name\ttableview\tO\nin\tO\tin\tO\nstoryboard\tB-Application\tstoryboard\tO\nwith\tO\twith\tO\ndatasource\tO\tdatasource\tO\nand\tO\tand\tO\ndelegate\tO\tdelegate\tO\nand\tO\tand\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nrequired\tO\trequired\tO\ndelegate\tO\tdelegate\tO\nand\tO\tand\tO\ndatasource\tO\tdatasource\tO\nmethods\tO\tmethods\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5235\tI-Code_Block\tA_5235\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24856045\tO\t24856045\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24856045/\tO\thttps://stackoverflow.com/questions/24856045/\tO\n\t\n\t\nBear\tO\tBear\tO\nwith\tO\twith\tO\nme\tO\tme\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\ncoding\tO\tcoding\tO\nor\tO\tor\tO\nusing\tO\tusing\tO\nstackoverflow\tB-Website\tstackoverflow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nsearching\tO\tsearching\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nGoogle\tB-Organization\tGoogle\tO\ndocumentation\tO\tdocumentation\tO\nand\tO\tand\tO\nvarious\tO\tvarious\tO\nsearch\tB-Application\tsearch\tO\nengines\tI-Application\tengines\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\nand\tO\tand\tO\nsomeone\tO\tsomeone\tO\ntold\tO\ttold\tO\nme\tO\tme\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nshared\tO\tshared\tO\nspreadsheet\tB-User_Interface_Element\tspreadsheet\tO\nin\tO\tin\tO\nGoogle\tB-Application\tGoogle\tO\ndriver\tI-Application\tdriver\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\nprevents\tO\tprevents\tO\nany\tO\tany\tO\nother\tO\tother\tO\nuser\tO\tuser\tO\nbut\tO\tbut\tO\nmyself\tO\tmyself\tO\nfrom\tO\tfrom\tO\nadding\tO\tadding\tO\n,\tO\t,\tO\ndeleting\tO\tdeleting\tO\nor\tO\tor\tO\nupdating\tO\tupdating\tO\na\tO\ta\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2800\tI-Code_Block\tQ_2800\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nevent\tB-Library_Class\tevent\tO\ntype\tO\ttype\tO\nfor\tO\tfor\tO\nthose\tO\tthose\tO\nthree\tO\tthree\tO\ncases\tO\tcases\tO\n..\tO\t..\tO\n.\tO\t.\tO\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nevent\tB-Library_Class\tevent\tO\nfor\tO\tfor\tO\nadd\tO\tadd\tO\n,\tO\t,\tO\nupdate\tO\tupdate\tO\nor\tO\tor\tO\nmove\tO\tmove\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nfrom\tO\tfrom\tO\nactually\tO\tactually\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nSorry\tO\tSorry\tO\nagain\tO\tagain\tO\nfor\tO\tfor\tO\nbeing\tO\tbeing\tO\nso\tO\tso\tO\nlost\tO\tlost\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24856045\tO\t24856045\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24856045/\tO\thttps://stackoverflow.com/questions/24856045/\tO\n\t\n\t\nIn\tO\tIn\tO\na\tO\ta\tO\nshared\tO\tshared\tO\nspreadsheet\tB-User_Interface_Element\tspreadsheet\tO\nto\tO\tto\tO\nprevents\tO\tprevents\tO\nany\tO\tany\tO\nother\tO\tother\tO\nuser\tO\tuser\tO\nbut\tO\tbut\tO\nmyself\tO\tmyself\tO\nfrom\tO\tfrom\tO\nadding\tO\tadding\tO\n,\tO\t,\tO\ndeleting\tO\tdeleting\tO\nor\tO\tor\tO\nupdating\tO\tupdating\tO\na\tO\ta\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nsay\tO\tsay\tO\nprevent\tO\tprevent\tO\nthem\tO\tthem\tO\nupdating\tO\tupdating\tO\na\tO\ta\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nthat\tO\tthat\tO\nimplies\tO\timplies\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nwrite\tO\twrite\tO\naccess\tO\taccess\tO\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nto\tO\tto\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nor\tO\tor\tO\nto\tO\tto\tO\nany\tO\tany\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nprotection\tO\tprotection\tO\nto\tO\tto\tO\none\tO\tone\tO\nof\tO\tof\tO\nview\tO\tview\tO\nonly\tO\tonly\tO\n,\tO\t,\tO\ncomment\tO\tcomment\tO\nonly\tO\tonly\tO\nto\tO\tto\tO\n;\tO\t;\tO\n\t\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nspreadsheet\tB-User_Interface_Element\tspreadsheet\tO\n\t\nindividual\tO\tindividual\tO\nsheets\tB-User_Interface_Element\tsheets\tO\nor\tO\tor\tO\n\t\nareas\tO\tareas\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nsheet\tB-User_Interface_Element\tsheet\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nReading\tO\tReading\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\n;\tO\t;\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3482\tI-Code_Block\tA_3482\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nImplies\tO\tImplies\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nmodified\tO\tmodified\tO\nyour\tO\tyour\tO\nsheet\tB-User_Interface_Element\tsheet\tO\non\tO\ton\tO\na\tO\ta\tO\nrow\tB-User_Interface_Element\trow\tO\nbasis\tO\tbasis\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nprevent\tO\tprevent\tO\nthem\tO\tthem\tO\ninserting\tO\tinserting\tO\nor\tO\tor\tO\ndeleting\tO\tdeleting\tO\na\tO\ta\tO\nrow\tB-User_Interface_Element\trow\tO\n,\tO\t,\tO\n\t\ncreate\tO\tcreate\tO\na\tO\ta\tO\nblank\tO\tblank\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n\t\nprotect\tO\tprotect\tO\nthe\tO\tthe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nfrom\tO\tfrom\tO\nediting\tO\tediting\tO\n\t\nhide\tO\thide\tO\nthe\tO\tthe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n\t\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nor\tO\tor\tO\ndelete\tO\tdelete\tO\na\tO\ta\tO\nrow\tB-User_Interface_Element\trow\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nspan\tO\tspan\tO\nthe\tO\tthe\tO\nhidden\tO\thidden\tO\nprotected\tO\tprotected\tO\ncolumn\tO\tcolumn\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\ntelling\tO\ttelling\tO\nthem\tO\tthem\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nonEdit(e)\tB-Library_Class\tonEdit(e)\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\ndetect\tO\tdetect\tO\nwith\tO\twith\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nof\tO\tof\tO\na\tO\ta\tO\ncell\tB-User_Interface_Element\tcell\tO\nor\tO\tor\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\ncells\tB-User_Interface_Element\tcells\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nadding/deleting\tO\tadding/deleting\tO\nrows\tB-User_Interface_Element\trows\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\ntrigger\tO\ttrigger\tO\nonEdit()\tB-Library_Class\tonEdit()\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\ntrigger\tO\ttrigger\tO\nonChange()\tB-Library_Class\tonChange()\tO\n.\tO\t.\tO\n\t\nWithin\tO\tWithin\tO\nthis\tO\tthis\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nspecific\tO\tspecific\tO\nway\tO\tway\tO\nto\tO\tto\tO\ntell\tO\ttell\tO\nwhether\tO\twhether\tO\na\tO\ta\tO\nrow\tO\trow\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ndeleted\tO\tdeleted\tO\nor\tO\tor\tO\ninserted\tO\tinserted\tO\n.\tO\t.\tO\n\t\nonEdit(e)\tB-User_Interface_Element\tonEdit(e)\tO\nwill\tO\twill\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\naffected\tO\taffected\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncross\tO\tcross\tO\ncheck\tO\tcheck\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nspreadsheets\tB-User_Interface_Element\tspreadsheets\tO\nparameters\tO\tparameters\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3483\tI-Code_Block\tA_3483\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nclear\tO\tclear\tO\nto\tO\tto\tO\nme\tO\tme\tO\nform\tO\tform\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nand\tO\tand\tO\ncode\tO\tcode\tO\nwhat\tO\twhat\tO\nexactly\tO\texactly\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmisunderstood\tO\tmisunderstood\tO\nplease\tO\tplease\tO\nexplain\tO\texplain\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwill\tO\twill\tO\namend\tO\tamend\tO\nmy\tO\tmy\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAssuming\tO\tAssuming\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nof\tO\tof\tO\ninterest\tO\tinterest\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\ntoo\tO\ttoo\tO\nlate\tO\tlate\tO\na\tO\ta\tO\nreply\tO\treply\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6604073\tO\t6604073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6604073/\tO\thttps://stackoverflow.com/questions/6604073/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n:\tO\t:\tO\n\t\nhttp://d.pr/86DH+\tO\thttp://d.pr/86DH+\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndivide\tO\tdivide\tO\nall\tO\tall\tO\nnumbers\tO\tnumbers\tO\nin\tO\tin\tO\nprice\tO\tprice\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nwith\tO\twith\tO\n1.2\tB-Value\t1.2\tO\nat\tO\tat\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6604073\tO\t6604073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6604073/\tO\thttps://stackoverflow.com/questions/6604073/\tO\n\t\n\t\nUse\tO\tUse\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_750\tI-Code_Block\tA_750\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26120408\tO\t26120408\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26120408/\tO\thttps://stackoverflow.com/questions/26120408/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nAngular\tB-Library\tAngular\tO\ndirective\tO\tdirective\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\ntable\tB-User_Interface_Element\ttable\tO\nwith\tO\twith\tO\nbootstrap\tB-Library\tbootstrap\tO\ntable\tB-Library_Class\ttable\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ntable\tB-Library_Class\ttable\tO\nhas\tO\thas\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nformatter\tO\tformatter\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n,\tO\t,\tO\nto\tO\tto\tO\nrender\tO\trender\tO\nthe\tO\tthe\tO\nHTML\tB-Language\tHTML\tO\ndata\tO\tdata\tO\nof\tO\tof\tO\na\tO\ta\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n,\tO\t,\tO\nrow\tB-User_Interface_Element\trow\tO\nby\tO\tby\tO\nrow\tB-User_Interface_Element\trow\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nformatter\tO\tformatter\tO\nmust\tO\tmust\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nHTML\tB-Language\tHTML\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nHTML\tB-Language\tHTML\tO\nis\tO\tis\tO\nreturning\tO\treturning\tO\ncontaining\tO\tcontaining\tO\na\tO\ta\tO\nngClick\tB-HTML_XML_Tag\tngClick\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nngClick\tB-HTML_XML_Tag\tngClick\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nangular\tB-Library\tangular\tO\nhas\tO\thas\tO\nn't\tO\tn't\tO\ncompiled\tO\tcompiled\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nwatch/monitor\tO\twatch/monitor\tO\ntable\tB-User_Interface_Element\ttable\tO\nDOM\tO\tDOM\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nforce\tO\tforce\tO\nangular\tB-Library\tangular\tO\nto\tO\tto\tO\nprocesss/compile\tO\tprocesss/compile\tO\nit\tO\tit\tO\ndirectives\tO\tdirectives\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nsuccess\tO\tsuccess\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2986\tI-Code_Block\tQ_2986\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnother\tO\tAnother\tO\npossible\tO\tpossible\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\ncompile\tO\tcompile\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n1\tO\t1\tO\ntime\tO\ttime\tO\nan\tO\tan\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\na\tO\ta\tO\nng-click\tB-HTML_XML_Tag\tng-click\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20283105\tO\t20283105\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20283105/\tO\thttps://stackoverflow.com/questions/20283105/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nworking\tO\tworking\tO\ncode\tO\tcode\tO\nwith\tO\twith\tO\na\tO\ta\tO\nDatagrid\tB-Library_Class\tDatagrid\tB-Code_Block\nas\tO\tas\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\ncontrol\tO\tcontrol\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\na\tO\ta\tO\nDatagrid\tB-Library_Class\tDatagrid\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nbind\tO\tbind\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nrequires\tO\trequires\tO\nmoving\tO\tmoving\tO\ncells\tB-User_Interface_Element\tcells\tO\ninto\tO\tinto\tO\nother\tO\tother\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\nso\tO\tso\tO\nI\tO\tI\tO\nalways\tO\talways\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nwhich\tO\twhich\tO\ncell\tB-User_Interface_Element\tcell\tO\nI\tO\tI\tO\nam\tO\tam\tO\non\tO\ton\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nmouse\tB-Device\tmouse\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nreleased\tO\treleased\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncurrent\tO\tcurrent\tO\nimplementation\tO\timplementation\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nrow\tB-User_Interface_Element\trow\tO\nand\tO\tand\tO\ncell\tB-User_Interface_Element\tcell\tO\nis\tO\tis\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nVIEW\tB-Library_Class\tVIEW\tO\n's\tO\t's\tO\ncode-behind\tO\tcode-behind\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproject\tO\tproject\tO\nleader\tO\tleader\tO\nis\tO\tis\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\ndone\tO\tdone\tO\nthru\tO\tthru\tO\nbinding\tO\tbinding\tO\nas\tO\tas\tO\nhe\tO\the\tO\nwants\tO\twants\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nVIEW\tB-Library_Class\tVIEW\tO\n's\tO\t's\tO\ncode-behind\tO\tcode-behind\tO\nas\tO\tas\tO\nclean\tO\tclean\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nall\tO\tall\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nproperties\tO\tproperties\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\ncells\tB-User_Interface_Element\tcells\tO\ncolumn\tI-User_Interface_Element\tcolumn\tO\nand\tO\tand\tO\nrow\tB-User_Interface_Element\trow\tO\nindex\tO\tindex\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nOmitted\tO\tOmitted\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\nas\tO\tas\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nexceed\tO\texceed\tO\nthe\tO\tthe\tO\nlimit\tO\tlimit\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nthe\tO\tthe\tO\nXAML\tB-Language\tXAML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2153\tI-Code_Block\tQ_2153\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthe\tO\tthe\tO\ncode-behind\tO\tcode-behind\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2154\tI-Code_Block\tQ_2154\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n\t\nI\tO\tI\tO\nproceeded\tO\tproceeded\tO\nto\tO\tto\tO\nmultibind\tO\tmultibind\tO\nthe\tO\tthe\tO\ndatagridcell\tB-Library_Class\tdatagridcell\tB-Code_Block\n's\tO\t's\tO\ncolumn\tB-Library_Variable\tcolumn\tO\nand\tO\tand\tO\ndatacontext\tB-Library_Variable\tdatacontext\tO\nproperties\tO\tproperties\tO\nas\tO\tas\tO\nparameters\tO\tparameters\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\ncommand\tB-Library_Class\tcommand\tB-Code_Block\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\noption\tO\toption\tO\nI\tO\tI\tO\nstarted\tO\tstarted\tO\nbefore\tO\tbefore\tO\nbut\tO\tbut\tO\nset\tO\tset\tO\naside\tO\taside\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\ntime\tO\ttime\tO\nconstraints\tO\tconstraints\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndatagridrow\tB-Library_Class\tdatagridrow\tO\n's\tO\t's\tO\nindex\tO\tindex\tO\n,\tO\t,\tO\nI\tO\tI\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\ndatacontext\tB-Library_Variable\tdatacontext\tB-Code_Block\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nviewmodel\tB-Library_Class\tviewmodel\tB-Code_Block\n.\tO\t.\tO\n\t\nDid\tO\tDid\tO\nthe\tO\tthe\tO\ntrick\tO\ttrick\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20283105\tO\t20283105\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20283105/\tO\thttps://stackoverflow.com/questions/20283105/\tO\n\t\n\t\nAlternative\tO\tAlternative\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nproperties\tO\tproperties\tO\nDataGrid\tB-Library_Class\tDataGrid\tO\nalready\tO\talready\tO\nprovides\tO\tprovides\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\nand/or\tO\tand/or\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nfew\tO\tfew\tO\nother\tO\tother\tO\nattached\tO\tattached\tO\nproperties\tO\tproperties\tO\nsupporting\tO\tsupporting\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nproperties\tO\tproperties\tO\nlike\tO\tlike\tO\nSelectedItem\tB-Library_Variable\tSelectedItem\tO\n,\tO\t,\tO\nSelectedValue\tB-Library_Variable\tSelectedValue\tO\n,\tO\t,\tO\nCurrentItem\tB-Library_Variable\tCurrentItem\tO\n,\tO\t,\tO\nCurrentCell\tB-Library_Variable\tCurrentCell\tO\n.\tO\t.\tO\n\t\nFuthermore\tO\tFuthermore\tO\nif\tO\tif\tO\na\tO\ta\tO\nbehavior\tO\tbehavior\tO\ncouldnt\tO\tcouldnt\tO\nbe\tO\tbe\tO\nhandled\tO\thandled\tO\nwith\tO\twith\tO\nthose\tO\tthose\tO\nproperties\tO\tproperties\tO\nfrom\tO\tfrom\tO\nabove\tO\tabove\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nattached\tO\tattached\tO\nproperty\tO\tproperty\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nstyle\tO\tstyle\tO\nfor\tO\tfor\tO\ncells\tB-User_Interface_Element\tcells\tO\nwith\tO\twith\tO\ntriggers\tO\ttriggers\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nattached\tO\tattached\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nBinding\tO\tBinding\tO\nwill\tO\twill\tO\ntransmit\tO\ttransmit\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nattached\tO\tattached\tO\nproperty\tO\tproperty\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nViewModel\tB-Library_Class\tViewModel\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\njust\tO\tjust\tO\ncommunication\tO\tcommunication\tO\nbetween\tO\tbetween\tO\nViewModel\tB-Library_Class\tViewModel\tO\nand\tO\tand\tO\nView\tB-Library_Class\tView\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nfew\tO\tfew\tO\nlinks\tO\tlinks\tO\n:\tO\t:\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid%28v=vs.110%29.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid%28v=vs.110%29.aspx\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid.currentitem%28v=vs.110%29.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid.currentitem%28v=vs.110%29.aspx\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selectedvalue%28v=vs.110%29.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selectedvalue%28v=vs.110%29.aspx\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selecteditem%28v=vs.110%29.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selecteditem%28v=vs.110%29.aspx\tO\n\t\nThey\tO\tThey\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nall\tO\tall\tO\nbindable\tO\tbindable\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nLink\tO\tLink\tO\nto\tO\tto\tO\nMSDN\tB-Website\tMSDN\tO\nMultiBinding\tB-Library_Class\tMultiBinding\tO\nPage\tO\tPage\tO\n:\tO\t:\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/system.windows.data.multibinding%28v=vs.110%29.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.windows.data.multibinding%28v=vs.110%29.aspx\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20283105\tO\t20283105\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20283105/\tO\thttps://stackoverflow.com/questions/20283105/\tO\n\t\n\t\nThe\tO\tThe\tO\ngeneral\tO\tgeneral\tO\nway\tO\tway\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nyour\tO\tyour\tO\nrequirement\tO\trequirement\tO\nis\tO\tis\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nan\tO\tan\tO\nICommand\tB-Library_Class\tICommand\tB-Code_Block\ntype\tO\ttype\tO\nAttached\tO\tAttached\tB-Code_Block\nProperty\tO\tProperty\tI-Code_Block\nfor\tO\tfor\tO\neach\tO\teach\tO\nevent\tO\tevent\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbasic\tO\tbasic\tO\nidea\tO\tidea\tO\nis\tO\tis\tO\nthis.\tO\tthis.\tO\n.\tO\t.\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nICommand\tB-Library_Class\tICommand\tB-Code_Block\nAttached\tO\tAttached\tI-Code_Block\nProperty\tO\tProperty\tI-Code_Block\nwith\tO\twith\tO\na\tO\ta\tO\nPropertyChangedCallback\tB-Library_Class\tPropertyChangedCallback\tB-Code_Block\nhandler\tO\thandler\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nhandler\tO\thandler\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nwhen\tO\twhen\tO\nan\tO\tan\tO\nICommand\tB-Library_Class\tICommand\tB-Code_Block\nis\tO\tis\tO\ndata\tO\tdata\tO\nbound\tO\tbound\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nproperty\tO\tproperty\tO\n)\tO\t)\tO\n,\tO\t,\tO\nattach\tO\tattach\tO\na\tO\ta\tO\nhandler\tO\thandler\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nthat\tO\tthat\tO\nevent\tO\tevent\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\nICommand\tB-Library_Class\tICommand\tB-Code_Block\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nview\tO\tview\tO\nmodel\tO\tmodel\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nICommand\tB-Library_Class\tICommand\tB-Code_Block\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nPreviewKeyDown\tB-Library_Class\tPreviewKeyDown\tB-Code_Block\nevent\tO\tevent\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2705\tI-Code_Block\tA_2705\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29295312\tO\t29295312\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29295312/\tO\thttps://stackoverflow.com/questions/29295312/\tO\n\t\n\t\n@Value\tB-Function_Name\t@Value\tO\nhas\tO\thas\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nvalue\tO\tvalue\tO\nwhen\tO\twhen\tO\nused\tO\tused\tO\nin\tO\tin\tO\ninsert\tO\tinsert\tO\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\n@AID\tB-Variable_Name\t@AID\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\n@Value\tB-Variable_Name\t@Value\tO\n)\tO\t)\tO\nalways\tO\talways\tO\ngives\tO\tgives\tO\n0\tB-Value\t0\tO\nwhen\tO\twhen\tO\nthis\tO\tthis\tO\nstored\tO\tstored\tO\nprocedure\tO\tprocedure\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nusing\tO\tusing\tO\nphp\tB-Language\tphp\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3488\tI-Code_Block\tQ_3488\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nit\tO\tit\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\ncalling\tO\tcalling\tO\nstored\tO\tstored\tO\nprocedure\tO\tprocedure\tO\ninside\tO\tinside\tO\nanother\tO\tanother\tO\nstored\tO\tstored\tO\nprocedure\tO\tprocedure\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20582835\tO\t20582835\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20582835/\tO\thttps://stackoverflow.com/questions/20582835/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsubscribe\tO\tsubscribe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nabout\tO\tabout\tO\nus\tO\tus\tO\nsection\tO\tsection\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\npressing\tO\tpressing\tO\n,\tO\t,\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nwindow\tB-User_Interface_Element\twindow\tO\nappears\tO\tappears\tO\nasking\tO\tasking\tO\nfor\tO\tfor\tO\nemail\tO\temail\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nenters\tO\tenters\tO\nhis\tO\this\tO\nemail\tO\temail\tO\nwhere\tO\twhere\tO\ncould\tO\tcould\tO\nI\tO\tI\tO\nstore\tO\tstore\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nemails\tO\temails\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ndoes\tO\tdoes\tO\nemail\tO\temail\tO\nsubscription\tO\tsubscription\tO\nis\tO\tis\tO\nimplemented\tO\timplemented\tO\nin\tO\tin\tO\nAndroid\tB-Operating_System\tAndroid\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntotally\tO\ttotally\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nit\tO\tit\tO\n,\tO\t,\tO\nso\tO\tso\tO\nplease\tO\tplease\tO\nbe\tO\tbe\tO\ndetailed\tO\tdetailed\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20582835\tO\t20582835\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20582835/\tO\thttps://stackoverflow.com/questions/20582835/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nserver\tB-Application\tserver\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstore\tO\tstore\tO\nin\tO\tin\tO\na\tO\ta\tO\nDB\tO\tDB\tO\nthe\tO\tthe\tO\nemails\tO\temails\tO\nthe\tO\tthe\tO\nclients\tB-Application\tclients\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\napps\tO\tapps\tO\n)\tO\t)\tO\nsend\tO\tsend\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nthing\tO\tthing\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\n(\tO\t(\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\n)\tO\t)\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nget\tO\tget\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nan\tO\tan\tO\nemail\tO\temail\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nvoila\tO\tvoila\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\naddresses\tO\taddresses\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nTry\tO\tTry\tO\nparse\tO\tparse\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\ncloud\tO\tcloud\tO\nserver\tB-Application\tserver\tO\nfree\tO\tfree\tO\nand\tO\tand\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34507544\tO\t34507544\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34507544/\tO\thttps://stackoverflow.com/questions/34507544/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nexcel\tB-Application\texcel\tO\nsheet\tO\tsheet\tO\n\"\tO\t\"\tO\nTest.xlsx\tB-File_Name\tTest.xlsx\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\nvalues\tO\tvalues\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nreferenced\tO\treferenced\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nexcel\tB-Application\texcel\tO\nsheet\tO\tsheet\tO\nusing\tO\tusing\tO\nformula\tO\tformula\tO\n\"='C:[Sample.xlsx]Sheet1'!B14\"\tB-Code_Block\t\"='C:[Sample.xlsx]Sheet1'!B14\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nopen\tO\topen\tO\nSmaple.xlsx\tB-File_Name\tSmaple.xlsx\tO\n,\tO\t,\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\nB14\tB-Value\tB14\tO\nin\tO\tin\tO\nsheet\tB-User_Interface_Element\tsheet\tO\n1\tB-Value\t1\tO\n,\tO\t,\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\nand\tO\tand\tO\nclose\tO\tclose\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nTest.xlsx\tB-File_Name\tTest.xlsx\tO\nupdate\tO\tupdate\tO\nunless\tO\tunless\tO\nI\tO\tI\tO\ndouble\tO\tdouble\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nformula\tO\tformula\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nreferenced\tO\treferenced\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\nExcel\tB-Application\tExcel\tO\nOptions->\tO\tOptions->\tO\nAdvanced\tO\tAdvanced\tO\n->General\tO\t->General\tO\nand\tO\tand\tO\nun-checking\tO\tun-checking\tO\nAsk\tO\tAsk\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nautomatic\tO\tautomatic\tO\nlink\tO\tlink\tO\n\"\tO\t\"\tO\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16196054\tO\t16196054\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16196054/\tO\thttps://stackoverflow.com/questions/16196054/\tO\n\t\n\t\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nvaiable\tO\tvaiable\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain\tB-Class_Name\tmain\tO\nclass\tO\tclass\tO\nfrom\tO\tfrom\tO\nReveiveSMS.class\tB-Class_Name\tReveiveSMS.class\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nReceiveSMS.class\tB-Class_Name\tReceiveSMS.class\tO\nand\tO\tand\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmessageBody\tB-Variable_Name\tmessageBody\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain\tB-Class_Name\tmain\tO\n.\tO\t.\tO\n\t\nHelp\tO\tHelp\tO\nme\tO\tme\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1603\tI-Code_Block\tQ_1603\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16196054\tO\t16196054\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16196054/\tO\thttps://stackoverflow.com/questions/16196054/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nmessageBody\tB-Variable_Name\tmessageBody\tB-Code_Block\nin\tO\tin\tO\nSharedPreferences\tB-Library_Class\tSharedPreferences\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nReceiveSMS\tB-Class_Name\tReceiveSMS\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2087\tI-Code_Block\tA_2087\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\nmain\tB-Class_Name\tmain\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2088\tI-Code_Block\tA_2088\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21321132\tO\t21321132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21321132/\tO\thttps://stackoverflow.com/questions/21321132/\tO\n\t\n\t\nI\tO\tI\tO\nrecently\tO\trecently\tO\nswitched\tO\tswitched\tO\npython\tB-Language\tpython\tO\ndistributions\tO\tdistributions\tO\nto\tO\tto\tO\nAnaconda\tB-Application\tAnaconda\tO\nfrom\tO\tfrom\tO\nContinuum\tO\tContinuum\tO\nAnalytics\tO\tAnalytics\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\ninstalling\tO\tinstalling\tO\nPython\tB-Language\tPython\tO\n3.3\tB-Version\t3.3\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nbuild\tO\tbuild\tO\nsystem\tO\tsystem\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\nwith\tO\twith\tO\nSublime\tB-Application\tSublime\tO\n(\tO\t(\tO\n3)\tB-Version\t3)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2293\tI-Code_Block\tQ_2293\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nruns\tO\truns\tO\nscripts\tO\tscripts\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nprinted\tO\tprinted\tO\nupon\tO\tupon\tO\ncompletion\tO\tcompletion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nenable\tO\tenable\tO\nnormal\tO\tnormal\tO\n(\tO\t(\tO\nlive\tO\tlive\tO\n)\tO\t)\tO\nprinting\tO\tprinting\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21321132\tO\t21321132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21321132/\tO\thttps://stackoverflow.com/questions/21321132/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nin\tO\tin\tO\n\"\tO\t\"\tO\nunbuffered\tO\tunbuffered\tO\n\"\tO\t\"\tO\nmode\tO\tmode\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\n-u\tB-Code_Block\t-u\tB-Code_Block\nflag\tO\tflag\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThis\tO\tThis\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nspecific\tO\tspecific\tO\nto\tO\tto\tO\nAnaconda\tB-Application\tAnaconda\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmay\tO\tmay\tO\nstill\tO\tstill\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44314261\tO\t44314261\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44314261/\tO\thttps://stackoverflow.com/questions/44314261/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nmodified\tO\tmodified\tO\na\tO\ta\tO\nVBA\tB-Application\tVBA\tO\nmacro\tO\tmacro\tO\nof\tO\tof\tO\nMS\tB-Application\tMS\tO\nOutlook\tI-Application\tOutlook\tO\nthat\tO\tthat\tO\nsomeone\tO\tsomeone\tO\nin\tO\tin\tO\nour\tO\tour\tO\norganization\tO\torganization\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nsigned\tO\tsigned\tO\nwith\tO\twith\tO\nour\tO\tour\tO\norganization\tO\torganization\tO\n's\tO\t's\tO\ncertificate\tO\tcertificate\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\na\tO\ta\tO\nself-cert\tO\tself-cert\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nmy\tO\tmy\tO\npersonal\tO\tpersonal\tO\ncert\tO\tcert\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\ncert\tO\tcert\tO\nset\tO\tset\tO\nup\tO\tup\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\norganization\tO\torganization\tO\nfor\tO\tfor\tO\njust\tO\tjust\tO\nthis\tO\tthis\tO\npurpose\tO\tpurpose\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\n'll\tO\t'll\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\n\"\tO\t\"\tO\nMy_Org_VBA_Macro_Cert\tB-Variable_Name\tMy_Org_VBA_Macro_Cert\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nMy_Org_VBA_Macro_Cert\tB-Variable_Name\tMy_Org_VBA_Macro_Cert\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ninstalled\tO\tinstalled\tO\nin\tO\tin\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nMMC\tB-Application\tMMC\tO\ncertificate\tO\tcertificate\tO\nsnap-in\tO\tsnap-in\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlocation\tO\tlocation\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\npersonal\tO\tpersonal\tO\ndigital\tO\tdigital\tO\nsignature\tO\tsignature\tO\ncerts\tO\tcerts\tO\nare\tO\tare\tO\nlocated\tO\tlocated\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nrebooting\tO\trebooting\tO\n,\tO\t,\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nVBA\tB-Application\tVBA\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nTools->Digital\tO\tTools->Digital\tO\nSignature\tO\tSignature\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\npress\tO\tpress\tO\nthe\tO\tthe\tO\nChoose\tO\tChoose\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nmy\tO\tmy\tO\nown\tO\town\tO\ndigital\tO\tdigital\tO\nsignature\tO\tsignature\tO\ncerts\tO\tcerts\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nfrom\tO\tfrom\tO\n.\tO\t.\tO\n\t\nMy_Org_VBA_Macro_Cert\tB-Variable_Name\tMy_Org_VBA_Macro_Cert\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\ncertain\tO\tcertain\tO\nsettings\tO\tsettings\tO\nor\tO\tor\tO\nvalues\tO\tvalues\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nset\tO\tset\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nCert\tO\tCert\tO\nthat\tO\tthat\tO\ndetermine\tO\tdetermine\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ncerts\tO\tcerts\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nfrom\tO\tfrom\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nenough\tO\tenough\tO\nabout\tO\tabout\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\ncert\tO\tcert\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\non\tO\ton\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nMicrosoft\tB-Application\tMicrosoft\tO\nVBA\tI-Application\tVBA\tO\nversion\tO\tversion\tO\n7.1\tB-Version\t7.1\tO\n\t\nMicrosoft\tB-Application\tMicrosoft\tO\nOutlook\tI-Application\tOutlook\tO\n2013\tB-Version\t2013\tO\n\t\nAll\tO\tAll\tO\nthe\tO\tthe\tO\narticles\tO\tarticles\tO\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nself\tO\tself\tO\ncert\tO\tcert\tO\nor\tO\tor\tO\nonly\tO\tonly\tO\ncover\tO\tcover\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsigning\tO\tsigning\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncert\tO\tcert\tO\nthat\tO\tthat\tO\nshows\tO\tshows\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nall\tO\tall\tO\ngloss\tO\tgloss\tO\nover\tO\tover\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\ncert\tO\tcert\tO\nso\tO\tso\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nvalues\tO\tvalues\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29005973\tO\t29005973\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29005973/\tO\thttps://stackoverflow.com/questions/29005973/\tO\n\t\n\t\nI\tO\tI\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nall\tO\tall\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\ndata-item\tB-Class_Name\tdata-item\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\ndata-variable\tO\tdata-variable\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nitem\tO\titem\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\n\t\nIE\tO\tIE\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3440\tI-Code_Block\tQ_3440\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nShould\tO\tShould\tO\nbecome\tO\tbecome\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3441\tI-Code_Block\tQ_3441\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCode\tO\tCode\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3442\tI-Code_Block\tQ_3442\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhere\tO\twhere\tO\nel\tB-Variable_Name\tel\tO\nis\tO\tis\tO\na\tO\ta\tO\njquery\tB-Library\tjquery\tO\nobject\tO\tobject\tO\ncontaining\tO\tcontaining\tO\nthe\tO\tthe\tO\nhtml\tB-Language\thtml\tO\nI\tO\tI\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29005973\tO\t29005973\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29005973/\tO\thttps://stackoverflow.com/questions/29005973/\tO\n\t\n\t\nDEMO\tO\tDEMO\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4089\tI-Code_Block\tA_4089\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUPD\tO\tUPD\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nfunction\tO\tfunction\tO\nas\tO\tas\tO\nargument\tO\targument\tO\nto\tO\tto\tO\nreplaceWith\tB-Library_Function\treplaceWith\tB-Code_Block\n(\tO\t(\tO\nthx\tO\tthx\tO\n@Barmar\tB-User_Name\t@Barmar\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4090\tI-Code_Block\tA_4090\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29005973\tO\t29005973\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29005973/\tO\thttps://stackoverflow.com/questions/29005973/\tO\n\t\n\t\nThe\tO\tThe\tO\nargument\tO\targument\tO\nto\tO\tto\tO\nreplaceWith\tB-Library_Function\treplaceWith\tB-Code_Block\ncan\tO\tcan\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncalled\tO\tcalled\tO\n,\tO\t,\tO\nthis\tO\tthis\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nbeing\tO\tbeing\tO\nreplaced\tO\treplaced\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nreplacement\tO\treplacement\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4088\tI-Code_Block\tA_4088\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n49016133\tO\t49016133\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49016133/\tO\thttps://stackoverflow.com/questions/49016133/\tO\n\t\n\t\nI\tO\tI\tO\nkept\tO\tkept\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nafter\tO\tafter\tO\ninstalling\tO\tinstalling\tO\nthis\tO\tthis\tO\npackage\tO\tpackage\tO\nbelow\tO\tbelow\tO\n\t\nhttps://github.com/vinkla/instagram\tO\thttps://github.com/vinkla/instagram\tO\n\t\ninto\tO\tinto\tO\nmy\tO\tmy\tO\nLaravel\tB-Library\tLaravel\tO\n5.1\tB-Version\t5.1\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfollowed\tO\tfollowed\tO\neverything\tO\teverything\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninstruction\tO\tinstruction\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\non\tO\ton\tO\nMac\tB-Operating_System\tMac\tO\nOS\tI-Operating_System\tOS\tO\nX\tB-Version\tX\tO\n,\tO\t,\tO\nPHP\tB-Language\tPHP\tO\n7.1\tB-Version\t7.1\tO\n,\tO\t,\tO\nLaravel\tB-Library\tLaravel\tO\n5.1\tB-Version\t5.1\tO\n\t\nDid\tO\tDid\tO\nI\tO\tI\tO\nforget\tO\tforget\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\none\tO\tone\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nand\tO\tand\tO\ndebug\tO\tdebug\tO\nthis\tO\tthis\tO\nfurther\tO\tfurther\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nopen\tO\topen\tO\nto\tO\tto\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nmoment\tO\tmoment\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhints/suggestions\tO\thints/suggestions\tO\n/\tO\t/\tO\nhelps\tO\thelps\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n49016133\tO\t49016133\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49016133/\tO\thttps://stackoverflow.com/questions/49016133/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nchange\tO\tchange\tO\napp\tB-File_Name\tapp\tB-Code_Block\n\\Exceptions\\Handler.php\tI-File_Name\t\\Exceptions\\Handler.php\tI-Code_Block\nto\tO\tto\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\ndeclaration\tO\tdeclaration\tO\nException\tB-Library_Class\tException\tB-Code_Block\nand\tO\tand\tO\nhandle\tO\thandle\tO\nsome\tO\tsome\tO\nlogic\tO\tlogic\tO\nwithin\tO\twithin\tO\nit\tO\tit\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nError\tO\tError\tO\nto\tO\tto\tO\nan\tO\tan\tO\nException\tB-Library_Class\tException\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nknown\tO\tknown\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nlaravel\tB-Library\tlaravel\tO\n5.2\tB-Version\t5.2\tO\n<=\tO\t<=\tO\nwith\tO\twith\tO\nphp\tB-Language\tphp\tO\n7\tB-Version\t7\tO\n.\tO\t.\tO\nhttps://github.com/laravel/framework/issues/9650\tO\thttps://github.com/laravel/framework/issues/9650\tO\n\t\nfrom\tO\tfrom\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7191\tI-Code_Block\tA_7191\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7192\tI-Code_Block\tA_7192\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nHandler\tO\tHandler\tO\nrender\tB-Library_Function\trender\tB-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n49016133\tO\t49016133\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49016133/\tO\thttps://stackoverflow.com/questions/49016133/\tO\n\t\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nLaravel\tB-Library\tLaravel\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nrelease\tO\trelease\tO\nof\tO\tof\tO\nLaravel\tB-Library\tLaravel\tO\n5.1\tB-Version\t5.1\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nhelping\tO\thelping\tO\ndebug\tO\tdebug\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nvendor/Illuminate/Foundation/Bootstrap/HandleExceptions\tO\tvendor/Illuminate/Foundation/Bootstrap/HandleExceptions\tO\n@handleException\tO\t@handleException\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\n\t\ndd($e)\tB-Library_Function\tdd($e)\tB-Code_Block\nat\tO\tat\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nline\tO\tline\tO\nof\tO\tof\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nEx\tO\tEx\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7202\tI-Code_Block\tA_7202\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45569648\tO\t45569648\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45569648/\tO\thttps://stackoverflow.com/questions/45569648/\tO\n\t\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\ndeveloped\tO\tdeveloped\tO\nWord\tO\tWord\tO\nPuzzle\tO\tPuzzle\tO\nGame\tO\tGame\tO\nfor\tO\tfor\tO\nandroid\tB-Operating_System\tandroid\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsize\tO\tsize\tO\nis\tO\tis\tO\ngreater\tO\tgreater\tO\nthan\tO\tthan\tO\n20\tO\t20\tO\nMB\tO\tMB\tO\nbecause\tO\tbecause\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\ndeveloped\tO\tdeveloped\tO\ngame\tO\tgame\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nhelp\tO\thelp\tO\nof\tO\tof\tO\nUnity\tB-Application\tUnity\tO\ngame\tO\tgame\tO\nengine\tO\tengine\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nblank\tO\tblank\tO\nproject\tO\tproject\tO\nwill\tO\twill\tO\ntake\tO\ttake\tO\napprox\tO\tapprox\tO\n10\tO\t10\tO\nMB\tO\tMB\tO\nfor\tO\tfor\tO\nAPK\tB-File_Type\tAPK\tO\nin\tO\tin\tO\nUnity\tB-Application\tUnity\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nadvise\tO\tadvise\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45569648\tO\t45569648\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45569648/\tO\thttps://stackoverflow.com/questions/45569648/\tO\n\t\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\nchecked\tO\tchecked\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nhttps://docs.unity3d.com/Manual/ReducingFilesize.html\tO\thttps://docs.unity3d.com/Manual/ReducingFilesize.html\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nafraid\tO\tafraid\tO\nyou\tO\tyou\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nminimal\tO\tminimal\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\neven\tO\teven\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nembedding\tO\tembedding\tO\nmono\tB-Application\tmono\tO\n,\tO\t,\tO\nunity\tB-Application\tunity\tO\nengine\tO\tengine\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\ntotal\tO\ttotal\tO\ncontrol\tO\tcontrol\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nask\tO\task\tO\nyourself\tO\tyourself\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\n\"\tO\t\"\tO\nDo\tO\tDo\tO\nI\tO\tI\tO\nreally\tO\treally\tO\nneed\tO\tneed\tO\nUnity\tB-Application\tUnity\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nword\tO\tword\tO\npuzzle\tO\tpuzzle\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\nmade\tO\tmade\tO\nmostly\tO\tmostly\tO\nwith\tO\twith\tO\nscripts\tO\tscripts\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nmaybe\tO\tmaybe\tO\nconvert\tO\tconvert\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nnative\tO\tnative\tO\napp\tO\tapp\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45569648\tO\t45569648\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45569648/\tO\thttps://stackoverflow.com/questions/45569648/\tO\n\t\n\t\nTry\tO\tTry\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nManual\tO\tManual\tO\non\tO\ton\tO\nReducing\tO\tReducing\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nbuild\tO\tbuild\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nthis\tO\tthis\tO\nforum\tO\tforum\tO\npost\tO\tpost\tO\ncould\tO\tcould\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nGoogle\tB-Website\tGoogle\tO\nsearch\tO\tsearch\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nmany\tO\tmany\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8856692\tO\t8856692\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8856692/\tO\thttps://stackoverflow.com/questions/8856692/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nusers\tO\tusers\tO\ncontroller\tO\tcontroller\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nput\tO\tput\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nthe\tO\tthe\tO\nremember\tO\tremember\tO\nme\tO\tme\tO\nfunctionality\tO\tfunctionality\tO\non\tO\ton\tO\nlogin\tO\tlogin\tO\n.\tO\t.\tO\n\t\nIT\tO\tIT\tO\nseems\tO\tseems\tO\npretty\tO\tpretty\tO\nsimple\tO\tsimple\tO\nset\tO\tset\tO\na\tO\ta\tO\ncookie\tO\tcookie\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncookie\tO\tcookie\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nvisits\tO\tvisits\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\npage\tO\tpage\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\nexists\tO\texists\tO\nlog\tO\tlog\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nCake\tB-Library\tCake\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nsaving\tO\tsaving\tO\nthe\tO\tthe\tO\ncookie\tO\tcookie\tO\n,\tO\t,\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nnot\tO\tnot\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrevisit\tO\trevisit\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nauto\tO\tauto\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ntest\tO\ttest\tO\nthis\tO\tthis\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_741\tI-Code_Block\tQ_741\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nright\tO\tright\tO\nafter\tO\tafter\tO\nI\tO\tI\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\ncookie\tO\tcookie\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nplace\tO\tplace\tO\na\tO\ta\tO\n$this->cookie->read('Auth.User')\tB-Code_Block\t$this->cookie->read('Auth.User')\tO\n;\tI-Code_Block\t;\tO\nand\tO\tand\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\ncookie\tO\tcookie\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbrowsers\tO\tbrowsers\tO\n(\tO\t(\tO\nChrome\tB-Application\tChrome\tO\n,\tO\t,\tO\nFireFox\tB-Application\tFireFox\tO\n)\tO\t)\tO\ncookie\tO\tcookie\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nplain\tO\tplain\tO\nPHP\tB-Language\tPHP\tO\ncookies\tO\tcookies\tO\n,\tO\t,\tO\nvia\tO\tvia\tO\nsetcookie()\tB-Library_Function\tsetcookie()\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ncookie\tO\tcookie\tO\nbut\tO\tbut\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nthe\tO\tthe\tO\nCake\tB-Library\tCake\tO\nCookie\tO\tCookie\tO\nread\tO\tread\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthose\tO\tthose\tO\ncookies\tO\tcookies\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nto\tO\tto\tO\nresolve\tO\tresolve\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nwork\tO\twork\tO\naround\tO\taround\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nbypasses\tO\tbypasses\tO\nthe\tO\tthe\tO\nframework\tO\tframework\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nhow\tO\thow\tO\ncake\tB-Library\tcake\tO\nis\tO\tis\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\ncookies\tO\tcookies\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nthese\tO\tthese\tO\ncookies\tO\tcookies\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\ncakes\tB-Library\tcakes\tO\ncookie\tO\tcookie\tO\ncreation\tO\tcreation\tO\nalgorithm\tO\talgorithm\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nsetcookie()\tB-Library_Function\tsetcookie()\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsetting\tO\tsetting\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nfor\tO\tfor\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nwant\tO\twant\tO\nor\tO\tor\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nwork\tO\twork\tO\naround\tO\taround\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_742\tI-Code_Block\tQ_742\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ncakes\tB-Library\tcakes\tO\ncookie\tO\tcookie\tO\ncomponent\tO\tcomponent\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nread\tO\tread\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ncookie.php\tB-File_Name\tcookie.php\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nI\tO\tI\tO\nleft\tO\tleft\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nencryption\tO\tencryption\tO\nthat\tO\tthat\tO\ntoo\tO\ttoo\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncookie.php\tB-File_Name\tcookie.php\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\napps\tO\tapps\tO\nsettings\tO\tsettings\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\narray\tB-Data_Structure\tarray\tO\nvalues\tO\tvalues\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nam\tO\tam\tO\nonly\tO\tonly\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nID\tB-Variable_Name\tID\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nput\tO\tput\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nencryption\tO\tencryption\tO\nunlike\tO\tunlike\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nstill\tO\tstill\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\ncomponent\tO\tcomponent\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8856692\tO\t8856692\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8856692/\tO\thttps://stackoverflow.com/questions/8856692/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nlogin\tO\tlogin\tO\naction\tO\taction\tO\nworks\tO\tworks\tO\nwell\tO\twell\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1087\tI-Code_Block\tA_1087\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDoes\tO\tDoes\tO\nit\tO\tit\tO\nwork\tO\twork\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nside\tO\tside\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4436680\tO\t4436680\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4436680/\tO\thttps://stackoverflow.com/questions/4436680/\tO\n\t\n\t\nMy\tO\tMy\tO\nRails\tB-Library\tRails\tO\napp\tO\tapp\tO\nbegan\tO\tbegan\tO\nreturning\tO\treturning\tO\nfunky\tO\tfunky\tO\nvalidation\tO\tvalidation\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nform\tO\tform\tO\nupon\tO\tupon\tO\ncreate/save\tO\tcreate/save\tO\nof\tO\tof\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\n{\tB-Code_Block\t{\tO\n{\tB-Code_Block\t{\tO\ncount\tI-Code_Block\tcount\tO\n}\tI-Code_Block\t}\tO\n}\tB-Code_Block\t}\tO\nerrors\tO\terrors\tO\nprohibited\tO\tprohibited\tO\nthis\tO\tthis\tO\n{\tB-Code_Block\t{\tO\n{\tB-Code_Block\t{\tO\nmodel\tI-Code_Block\tmodel\tO\n}\tI-Code_Block\t}\tO\n}\tB-Code_Block\t}\tO\nfrom\tO\tfrom\tO\nbeing\tO\tbeing\tO\nsaved\tO\tsaved\tO\n\t\nThere\tO\tThere\tO\nwere\tO\twere\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nfields\tO\tfields\tO\n:\tO\t:\tO\n\t\n{\tB-Code_Block\t{\tO\n{\tB-Code_Block\t{\tO\nattribute\tI-Code_Block\tattribute\tO\n}\tI-Code_Block\t}\tO\n}\tB-Code_Block\t}\tO\n{\tB-Code_Block\t{\tO\n{\tB-Code_Block\t{\tO\nmessage\tI-Code_Block\tmessage\tO\n}\tI-Code_Block\t}\tO\n}\tB-Code_Block\t}\tO\n{\tB-Code_Block\t{\tO\n{\tB-Code_Block\t{\tO\nattribute\tI-Code_Block\tattribute\tO\n}\tI-Code_Block\t}\tO\n}\tB-Code_Block\t}\tO\n{\tB-Code_Block\t{\tO\n{\tB-Code_Block\t{\tO\nmessage\tI-Code_Block\tmessage\tO\n}\tI-Code_Block\t}\tO\n}\tB-Code_Block\t}\tO\n{\tB-Code_Block\t{\tO\n{\tB-Code_Block\t{\tO\nattribute\tI-Code_Block\tattribute\tO\n}\tI-Code_Block\t}\tO\n}\tB-Code_Block\t}\tO\n{\tB-Code_Block\t{\tO\n{\tB-Code_Block\t{\tO\nmessage\tI-Code_Block\tmessage\tO\n}\tI-Code_Block\t}\tO\n}\tB-Code_Block\t}\tO\n{\tB-Code_Block\t{\tO\n{\tB-Code_Block\t{\tO\nattribute\tI-Code_Block\tattribute\tO\n}\tI-Code_Block\t}\tO\n}\tB-Code_Block\t}\tO\n{\tB-Code_Block\t{\tO\n{\tB-Code_Block\t{\tO\nmessage\tI-Code_Block\tmessage\tO\n}\tI-Code_Block\t}\tO\n}\tB-Code_Block\t}\tO\n\t\nHas\tO\tHas\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\nexperienced\tO\texperienced\tO\nanything\tO\tanything\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4436680\tO\t4436680\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4436680/\tO\thttps://stackoverflow.com/questions/4436680/\tO\n\t\n\t\nYou\tO\tYou\tO\nprobably\tO\tprobably\tO\nupgraded\tO\tupgraded\tO\nRuby\tB-Language\tRuby\tO\nto\tO\tto\tO\na\tO\ta\tO\nversion\tO\tversion\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwell\tO\twell\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nRails\tB-Library\tRails\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nRuby\tB-Language\tRuby\tO\n1.9\tB-Version\t1.9\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nuse\tO\tuse\tO\nRails\tB-Library\tRails\tO\n2.3.9\tB-Version\t2.3.9\tO\nif\tO\tif\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nmistaken\tO\tmistaken\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nchangelog\tO\tchangelog\tO\nfor\tO\tfor\tO\nRails\tB-Library\tRails\tO\n2.3.9\tB-Version\t2.3.9\tO\n:\tO\t:\tO\nruby-on-rails-2-3-9-released\tB-Language\truby-on-rails-2-3-9-released\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1691100\tO\t1691100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1691100/\tO\thttps://stackoverflow.com/questions/1691100/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_92\tI-Code_Block\tQ_92\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nme\tO\tme\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nlooks\tO\tlooks\tO\nnormal\tO\tnormal\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nC++\tB-Language\tC++\tO\nso\tO\tso\tO\nI\tO\tI\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nmissing\tO\tmissing\tO\nsome\tO\tsome\tO\nnuance\tO\tnuance\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\ncompiler\tB-Application\tcompiler\tO\nerrors\tO\terrors\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nand\tO\tand\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWhat\tO\tWhat\tO\ngives\tO\tgives\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1691100\tO\t1691100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1691100/\tO\thttps://stackoverflow.com/questions/1691100/\tO\n\t\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nin\tO\tin\tO\nLudoCore/Singleton.h\tB-File_Name\tLudoCore/Singleton.h\tB-Code_Block\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\nincluded\tO\tincluded\tO\nearlier\tO\tearlier\tO\n.\tO\t.\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nyour\tO\tyour\tO\nclass\tO\tclass\tB-Code_Block\ndefinitions\tO\tdefinitions\tO\nhave\tO\thave\tO\n;\tB-Code_Block\t;\tB-Code_Block\nsemicolons\tO\tsemicolons\tO\nafter\tO\tafter\tO\nthem\tO\tthem\tO\nand\tO\tand\tO\nall\tO\tall\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nQuick\tO\tQuick\tO\ntest\tO\ttest\tO\n:\tO\t:\tO\ncomment\tO\tcomment\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\n#include\tB-Code_Block\t#include\tB-Code_Block\nand\tO\tand\tO\nstick\tO\tstick\tO\na\tO\ta\tO\ntemplate\tB-Code_Block\ttemplate\tB-Code_Block\n<class\tI-Code_Block\t<class\tI-Code_Block\nC>\tI-Code_Block\tC>\tI-Code_Block\nclass\tI-Code_Block\tclass\tI-Code_Block\nSingleton\tI-Code_Block\tSingleton\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\npredeclaration\tO\tpredeclaration\tO\nthere\tO\tthere\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\nnow\tO\tnow\tO\ncomplains\tO\tcomplains\tO\nabout\tO\tabout\tO\nincomplete\tO\tincomplete\tO\ntypes\tO\ttypes\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nright\tO\tright\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\npost\tO\tpost\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1691100\tO\t1691100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1691100/\tO\thttps://stackoverflow.com/questions/1691100/\tO\n\t\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nheader\tO\theader\tO\n(\tO\t(\tO\nLudoCore/Singleton.h\tB-File_Name\tLudoCore/Singleton.h\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nerror\tO\terror\tO\nimplies\tO\timplies\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tB-Code_Block\nLudoTimer\tB-Class_Name\tLudoTimer\tI-Code_Block\ndeclaration\tO\tdeclaration\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nSingleton.h\tB-File_Name\tSingleton.h\tO\ndefines\tO\tdefines\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nmissing\tO\tmissing\tO\n'\tB-Code_Block\t'\tO\n;\tI-Code_Block\t;\tO\n'\tI-Code_Block\t'\tO\nafter\tO\tafter\tO\nthat\tO\tthat\tO\nclass\tO\tclass\tO\ndefinition\tO\tdefinition\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35527315\tO\t35527315\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35527315/\tO\thttps://stackoverflow.com/questions/35527315/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nVRAM\tB-Device\tVRAM\tO\nmy\tO\tmy\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\nusing\tO\tusing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ndebug\tO\tdebug\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nVisual\tB-Application\tVisual\tB-Code_Block\nStudio\tI-Application\tStudio\tI-Code_Block\nGraphics\tI-Application\tGraphics\tI-Code_Block\nAnalyzer\tI-Application\tAnalyzer\tI-Code_Block\nI\tO\tI\tO\ngot\tO\tgot\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nVRAM\tB-Device\tVRAM\tO\nused\tO\tused\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ngraphic\tO\tgraphic\tO\nobjects\tO\tobjects\tO\nas\tO\tas\tO\nseen\tO\tseen\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nGraphics\tB-User_Interface_Element\tGraphics\tB-Code_Block\nObject\tI-User_Interface_Element\tObject\tI-Code_Block\nTable\tI-User_Interface_Element\tTable\tI-Code_Block\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthese\tO\tthese\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35527315\tO\t35527315\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35527315/\tO\thttps://stackoverflow.com/questions/35527315/\tO\n\t\n\t\nI\tO\tI\tO\nactually\tO\tactually\tO\nfound\tO\tfound\tO\nan\tO\tan\tO\neasier\tO\teasier\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5066\tI-Code_Block\tA_5066\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5067\tI-Code_Block\tA_5067\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nused\tO\tused\tO\nVRAM\tB-Device\tVRAM\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n(\tO\t(\tO\nID\tB-Library_Variable\tID\tO\n0\tB-Value\t0\tO\n)\tO\t)\tO\nadapter\tB-Device\tadapter\tO\nand\tO\tand\tO\nconverts\tO\tconverts\tO\nit\tO\tit\tO\nto\tO\tto\tO\nmegabytes\tO\tmegabytes\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nrequire\tO\trequire\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwindows\tB-Operating_System\twindows\tO\n10\tB-Version\t10\tO\nSDK\tB-Application\tSDK\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16056835\tO\t16056835\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16056835/\tO\thttps://stackoverflow.com/questions/16056835/\tO\n\t\n\t\ni\tO\ti\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nccavenue\tB-Website\tccavenue\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nprestashop\tB-Application\tprestashop\tB-Code_Block\nstore\tO\tstore\tI-Code_Block\nVersion\tO\tVersion\tI-Code_Block\n1.2.5.0\tB-Version\t1.2.5.0\tI-Code_Block\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nafter\tO\tafter\tO\nsuccessful\tO\tsuccessful\tO\ncredit\tO\tcredit\tO\ncard\tO\tcard\tO\ntransaction\tO\ttransaction\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ncoming\tO\tcoming\tO\nback\tO\tback\tO\nto\tO\tto\tO\nwebsite\tO\twebsite\tO\n,\tO\t,\tO\nshopping\tO\tshopping\tO\ncart\tO\tcart\tO\nitems\tO\titems\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nclearing\tO\tclearing\tO\nand\tO\tand\tO\nalso\tO\talso\tO\norders\tO\torders\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nupdating\tO\tupdating\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nCCavenue\tB-Application\tCCavenue\tO\nPayment\tI-Application\tPayment\tO\nGateway\tI-Application\tGateway\tO\ndeveloped\tO\tdeveloped\tO\nby\tO\tby\tO\nbluezeal.in\tB-Website\tbluezeal.in\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmerchant\tO\tmerchant\tO\naccount\tO\taccount\tO\nsettings\tO\tsettings\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ngiven\tO\tgiven\tO\nReturn\tO\tReturn\tO\nPage\tO\tPage\tO\nURL\tO\tURL\tO\nas\tO\tas\tO\nhttp://myshop\tB-Code_Block\thttp://myshop\tB-Code_Block\n/modules/ccavenue/validation.php\tI-Code_Block\t/modules/ccavenue/validation.php\tI-Code_Block\nwhere\tO\twhere\tO\nI\tO\tI\tO\nam\tO\tam\tO\nupdating\tO\tupdating\tO\nmy\tO\tmy\tO\norder\tO\torder\tO\ntable\tB-User_Interface_Element\ttable\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nin\tO\tin\tO\nccavenue.php\tB-File_Name\tccavenue.php\tO\npage\tO\tpage\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ngiven\tO\tgiven\tO\nmy\tO\tmy\tO\nreturn\tO\treturn\tO\nurl\tO\turl\tO\nas\tO\tas\tO\n$Url\tB-Code_Block\t$Url\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\nhttp://'.htmlspecialchars($_SERVER['HTTP_HOST'\tI-Code_Block\thttp://'.htmlspecialchars($_SERVER['HTTP_HOST'\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nENT_COMPAT\tI-Code_Block\tENT_COMPAT\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\nUTF-8\tI-Code_Block\tUTF-8\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n.__PS_BASE_URI__\tI-Code_Block\t.__PS_BASE_URI__\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\nmodules/ccavenue/validation.php\tI-Code_Block\tmodules/ccavenue/validation.php\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nsuccessful\tO\tsuccessful\tO\ntransaction\tO\ttransaction\tO\nccavenue\tO\tccavenue\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nreturning\tO\treturning\tO\nanything\tO\tanything\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nvalidation.php\tB-File_Name\tvalidation.php\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nIe\tO\tIe\tO\n,\tO\t,\tO\nAuthDesc\tB-Library_Variable\tAuthDesc\tB-Code_Block\n,\tO\t,\tO\nOrder_Id\tB-Variable_Name\tOrder_Id\tB-Code_Block\netc\tO\tetc\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16056835\tO\t16056835\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16056835/\tO\thttps://stackoverflow.com/questions/16056835/\tO\n\t\n\t\nThis\tO\tThis\tO\nproblem\tO\tproblem\tO\ngot\tO\tgot\tO\nsolved\tO\tsolved\tO\nafter\tO\tafter\tO\nregenerating\tO\tregenerating\tO\nkey\tO\tkey\tO\nin\tO\tin\tO\nmerchant\tO\tmerchant\tO\naccount\tO\taccount\tO\nsettings.\tO\tsettings.\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41325590\tO\t41325590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41325590/\tO\thttps://stackoverflow.com/questions/41325590/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nempty\tO\tempty\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nrm\tB-Code_Block\trm\tB-Code_Block\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncapture\tO\tcapture\tO\na\tO\ta\tO\npath\tO\tpath\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5242\tI-Code_Block\tQ_5242\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThere\tO\tThere\tO\ncertainly\tO\tcertainly\tO\nis\tO\tis\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\nmanually\tO\tmanually\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5243\tI-Code_Block\tQ_5243\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41325590\tO\t41325590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41325590/\tO\thttps://stackoverflow.com/questions/41325590/\tO\n\t\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nfancy\tO\tfancy\tO\nquotes\tO\tquotes\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nassignment\tO\tassignment\tO\nof\tO\tof\tO\nexport_folder_path\tB-Code_Block\texport_folder_path\tB-Code_Block\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nslanted\tO\tslanted\tO\nUnicode\tO\tUnicode\tO\nquotes\tO\tquotes\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nrecognized\tO\trecognized\tO\nas\tO\tas\tO\nquotes\tO\tquotes\tO\nby\tO\tby\tO\nbash\tB-Application\tbash\tO\n,\tO\t,\tO\nand\tO\tand\tO\nare\tO\tare\tO\ntherefore\tO\ttherefore\tO\ntreated\tO\ttreated\tO\nas\tO\tas\tO\nliterals\tO\tliterals\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nusually\tO\tusually\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\ncopypasting\tO\tcopypasting\tO\nfrom\tO\tfrom\tO\nblogs\tO\tblogs\tO\n,\tO\t,\tO\nor\tO\tor\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\neditor\tB-Application\teditor\tO\nor\tO\tor\tO\nOS\tO\tOS\tO\nnot\tO\tnot\tO\nintended\tO\tintended\tO\nfor\tO\tfor\tO\nprogrammers\tO\tprogrammers\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nWord\tB-Application\tWord\tO\nor\tO\tor\tO\nmacOS\tB-Operating_System\tmacOS\tO\n.\tO\t.\tO\n\t\nReplace\tO\tReplace\tO\nthem\tO\tthem\tO\nwith\tO\twith\tO\nregular\tO\tregular\tO\nASCII\tO\tASCII\tO\ndouble\tO\tdouble\tO\nquotes\tO\tquotes\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nscript\tO\tscript\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndisable\tO\tdisable\tO\n\"\tO\t\"\tO\nsmart\tO\tsmart\tO\nquotes\tO\tquotes\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\neditor\tB-Application\teditor\tO\nor\tO\tor\tO\nOS\tO\tOS\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41325590\tO\t41325590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41325590/\tO\thttps://stackoverflow.com/questions/41325590/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsure\tO\tsure\tO\nabout\tO\tabout\tO\nremoving\tO\tremoving\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\nits\tO\tits\tO\ncontents\tO\tcontents\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nadvise\tO\tadvise\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5920\tI-Code_Block\tA_5920\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ndouble\tO\tdouble\tO\nquotes\tO\tquotes\tO\nwill\tO\twill\tO\ntake\tO\ttake\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nany\tO\tany\tO\nspaces\tO\tspaces\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10116412\tO\t10116412\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10116412/\tO\thttps://stackoverflow.com/questions/10116412/\tO\n\t\n\t\nHad\tO\tHad\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nreal\tO\treal\tO\nlife\tO\tlife\tO\nmoment\tO\tmoment\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nare\tO\tare\tO\nwe\tO\twe\tO\nnaming\tO\tnaming\tO\nmutators\tO\tmutators\tO\nwith\tO\twith\tO\nget\tO\tget\tO\nand\tO\tand\tO\nset\tO\tset\tO\nprefixes\tO\tprefixes\tO\n:\tO\t:\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\njust\tO\tjust\tO\nas\tO\tas\tO\neasy\tO\teasy\tO\nand\tO\tand\tO\nunderstandable\tO\tunderstandable\tO\nto\tO\tto\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\n\t\nmyMember\tB-Library_Function\tmyMember\tO\n(\tO\t(\tO\nmyMember\tB-Class_Name\tmyMember\tO\nMember\tB-Variable_Name\tMember\tO\n)\tO\t)\tO\n\t\nas\tO\tas\tO\nsetMyMember\tB-Function_Name\tsetMyMember\tO\nand\tO\tand\tO\ngetMyMember\tB-Function_Name\tgetMyMember\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nhistorical\tO\thistorical\tO\nreason\tO\treason\tO\nwhy\tO\twhy\tO\nJava\tB-Language\tJava\tO\nhas\tO\thas\tO\nthis\tO\tthis\tO\nstyle\tO\tstyle\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10116412\tO\t10116412\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10116412/\tO\thttps://stackoverflow.com/questions/10116412/\tO\n\t\n\t\nThe\tO\tThe\tO\nget*\tO\tget*\tO\nand\tO\tand\tO\nset*\tO\tset*\tO\nstyle\tO\tstyle\tO\nof\tO\tof\tO\nnaming\tO\tnaming\tO\nis\tO\tis\tO\nspecified\tO\tspecified\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJavaBeans\tB-Library_Class\tJavaBeans\tO\nspecification\tO\tspecification\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nlibraries\tO\tlibraries\tO\nusing\tO\tusing\tO\nreflection\tO\treflection\tO\nexpect\tO\texpect\tO\nthis\tO\tthis\tO\nstyle\tO\tstyle\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nJackson\tB-Library_Class\tJackson\tO\nmapper\tI-Library_Class\tmapper\tO\ncan\tO\tcan\tO\nserialize\tO\tserialize\tO\na\tO\ta\tO\njava\tB-Language\tjava\tO\nobject\tO\tobject\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nget/setters\tO\tget/setters\tO\nto\tO\tto\tO\nJSON\tB-File_Type\tJSON\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nadditional\tO\tadditional\tO\nannotations\tO\tannotations\tO\n;\tO\t;\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nnaming\tO\tnaming\tO\nstyle\tO\tstyle\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntell\tO\ttell\tO\nit\tO\tit\tO\nwhere\tO\twhere\tO\nyour\tO\tyour\tO\nproperties\tO\tproperties\tO\nare\tO\tare\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nprogramming\tO\tprogramming\tO\nlanguages\tO\tlanguages\tO\nuse\tO\tuse\tO\ndifferent\tO\tdifferent\tO\nstyles\tO\tstyles\tO\n.\tO\t.\tO\n\t\nPerl\tB-Language\tPerl\tO\nlibraries\tO\tlibraries\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\noften\tO\toften\tO\nuse\tO\tuse\tO\na\tO\ta\tO\n->someProperty()\tB-Function_Name\t->someProperty()\tB-Code_Block\ngetter\tO\tgetter\tO\nand\tO\tand\tO\n->someProperty($newValue)\tB-Function_Name\t->someProperty($newValue)\tB-Code_Block\nsetter\tO\tsetter\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n49096137\tO\t49096137\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49096137/\tO\thttps://stackoverflow.com/questions/49096137/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nBasic\tO\tBasic\tO\nSingle-Row\tO\tSingle-Row\tO\nTile\tO\tTile\tO\nSource\tO\tSource\tO\nCollection\tO\tCollection\tO\nexample\tO\texample\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nconfigurations\tO\tconfigurations\tO\nand\tO\tand\tO\ntile\tO\ttile\tO\nsources\tO\tsources\tO\nas\tO\tas\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnow\tO\tnow\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\noverlays\tB-User_Interface_Element\toverlays\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nand\tO\tand\tO\nsecond\tO\tsecond\tO\nimage\tB-User_Interface_Element\timage\tO\nbut\tO\tbut\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\noverlay\tB-User_Interface_Element\toverlay\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\npositioned\tO\tpositioned\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nimage\tB-User_Interface_Element\timage\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\noverlay\tB-User_Interface_Element\toverlay\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nplaced\tO\tplaced\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nimage\tB-User_Interface_Element\timage\tO\nbut\tO\tbut\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nhappening\tO\thappening\tO\nthat\tO\tthat\tO\nway.\tO\tway.\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\noverlays\tB-User_Interface_Element\toverlays\tO\ncollection\tO\tcollection\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntileSources\tB-Library_Class\ttileSources\tO\ncollection\tO\tcollection\tO\n.\tO\t.\tO\n\t\nAre\tO\tAre\tO\nthe\tO\tthe\tO\noverlays\tB-User_Interface_Element\toverlays\tO\nnot\tO\tnot\tO\nindependent\tO\tindependent\tO\nfor\tO\tfor\tO\ndifferent\tO\tdifferent\tO\npages\tO\tpages\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nconsole\tB-Application\tconsole\tO\nafter\tO\tafter\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\noverlays\tO\toverlays\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nTiledImage.imageToViewportRectangle\tB-Library_Class\tTiledImage.imageToViewportRectangle\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\nbasic\tO\tbasic\tO\ninitialization\tO\tinitialization\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nplugin\tB-Application\tplugin\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\n.\tO\t.\tO\n\t\nCodepen\tB-Application\tCodepen\tO\nexample\tO\texample\tO\nURL\tO\tURL\tO\n:\tO\t:\tO\nhttps://codepen.io/hussainb/pen/QQPPvL\tO\thttps://codepen.io/hussainb/pen/QQPPvL\tO\n\t\nCodepen\tB-Application\tCodepen\tO\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nhtml\tB-Language\thtml\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6562\tI-Code_Block\tQ_6562\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ncss\tB-Language\tcss\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6563\tI-Code_Block\tQ_6563\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJavascript\tB-Language\tJavascript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6564\tI-Code_Block\tQ_6564\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n49096137\tO\t49096137\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49096137/\tO\thttps://stackoverflow.com/questions/49096137/\tO\n\t\n\t\nLooks\tO\tLooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nOpenSeadragon\tB-Library\tOpenSeadragon\tO\n!\tO\t!\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nticket\tO\tticket\tO\n:\tO\t:\tO\n\t\nhttps://github.com/openseadragon/openseadragon/issues/1412\tO\thttps://github.com/openseadragon/openseadragon/issues/1412\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nwork\tO\twork\tO\naround\tO\taround\tO\nit\tO\tit\tO\nby\tO\tby\tO\nstoring\tO\tstoring\tO\nyour\tO\tyour\tO\noverlays\tB-User_Interface_Element\toverlays\tO\nseparately\tO\tseparately\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\nthem\tO\tthem\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nimages\tB-User_Interface_Element\timages\tO\nhave\tO\thave\tO\nopened\tO\topened\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nalready\tO\talready\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nviewer\tB-Library_Class\tviewer\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7226\tI-Code_Block\tA_7226\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\naction\tO\taction\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttps://codepen.io/iangilman/pen/aqgzJZ\tO\thttps://codepen.io/iangilman/pen/aqgzJZ\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16178085\tO\t16178085\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16178085/\tO\thttps://stackoverflow.com/questions/16178085/\tO\n\t\n\t\nSome\tO\tSome\tO\ndata\tO\tdata\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nplot\tO\tplot\tO\nhave\tO\thave\tO\ncoordinates\tO\tcoordinates\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n(\tB-Value\t(\tO\n20\tI-Value\t20\tO\n,\tI-Value\t,\tO\n0\tI-Value\t0\tO\n)\tI-Value\t)\tO\n,\tO\t,\tO\n(\tB-Value\t(\tO\n10\tI-Value\t10\tO\n,\tI-Value\t,\tO\n0\tI-Value\t0\tO\n)\tI-Value\t)\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n..\tO\t..\tO\n.\tO\t.\tO\nBasically\tO\tBasically\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npoints\tO\tpoints\tO\nbelong\tO\tbelong\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nx-axis\tO\tx-axis\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nthese\tO\tthese\tO\npoints\tO\tpoints\tO\nare\tO\tare\tO\nhidden\tO\thidden\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\naxis\tO\taxis\tO\n;\tO\t;\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nmarkers\tO\tmarkers\tO\nare\tO\tare\tO\nbehind\tO\tbehind\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nand\tO\tand\tO\ntherefore\tO\ttherefore\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nseen\tO\tseen\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nfigure\tO\tfigure\tO\n:\tO\t:\tO\nhttp://i.stack.imgur.com/FNcob.png\tO\thttp://i.stack.imgur.com/FNcob.png\tO\n\t\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\nout\tO\tout\tO\nof\tO\tof\tO\nidea\tO\tidea\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nViktor\tB-User_Name\tViktor\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16178085\tO\t16178085\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16178085/\tO\thttps://stackoverflow.com/questions/16178085/\tO\n\t\n\t\nMatplotlib\tB-Library\tMatplotlib\tO\n\"\tO\t\"\tO\nsnaps\tO\tsnaps\tO\n\"\tO\t\"\tO\nplot\tO\tplot\tO\nlimits\tO\tlimits\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nwhole\tO\twhole\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nfactors\tO\tfactors\tO\nof\tO\tof\tO\n2\tB-Value\t2\tO\n,\tO\t,\tO\n5\tB-Value\t5\tO\n,\tO\t,\tO\n10\tB-Value\t10\tO\n,\tO\t,\tO\n100\tB-Value\t100\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n)\tO\t)\tO\nnumbers\tO\tnumbers\tO\n,\tO\t,\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\noften\tO\toften\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nmay\tO\tmay\tO\nwind\tO\twind\tO\nup\tO\tup\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nboundary\tO\tboundary\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\n.\tO\t.\tO\n\t\nax.margins\tB-Library_Function\tax.margins\tB-Code_Block\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\npadding\tO\tpadding\tO\nfactor\tO\tfactor\tO\nbefore\tO\tbefore\tO\nthis\tO\tthis\tO\nautoscaling\tO\tautoscaling\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\nis\tO\tis\tO\ncalculated\tO\tcalculated\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nway\tO\tway\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nof\tO\tof\tO\npoints\tO\tpoints\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\nboundary\tO\tboundary\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2085\tI-Code_Block\tA_2085\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nan\tO\tan\tO\neasy\tO\teasy\tO\nsolution\tO\tsolution\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2086\tI-Code_Block\tA_2086\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25877240\tO\t25877240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25877240/\tO\thttps://stackoverflow.com/questions/25877240/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable\tB-Data_Structure\ttable\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\ngoes\tO\tgoes\tO\nquite\tO\tquite\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nback\tO\tback\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nquery\tO\tquery\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\n13\tO\t13\tO\nweeks\tO\tweeks\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ndate\tO\tdate\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2958\tI-Code_Block\tQ_2958\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nof\tO\tof\tO\n13\tO\t13\tO\nweeks\tO\tweeks\tO\nback\tO\tback\tO\nas\tO\tas\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nquery\tO\tquery\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\nlinking\tO\tlinking\tO\nthat\tO\tthat\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nselect\tO\tselect\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nreturn\tO\treturn\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\n13\tO\t13\tO\nweeks\tO\tweeks\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nthat\tO\tthat\tO\nquery\tO\tquery\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nshould\tO\tshould\tO\nrefresh\tO\trefresh\tO\nevery\tO\tevery\tO\nday\tO\tday\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\n13\tO\t13\tO\nweeks\tO\tweeks\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ndate\tO\tdate\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25877240\tO\t25877240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25877240/\tO\thttps://stackoverflow.com/questions/25877240/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nconfused\tO\tconfused\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nyour\tO\tyour\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ndateadd()\tB-Library_Function\tdateadd()\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nwhere\tB-Code_Block\twhere\tO\nclause\tO\tclause\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3567\tI-Code_Block\tA_3567\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25877240\tO\t25877240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25877240/\tO\thttps://stackoverflow.com/questions/25877240/\tO\n\t\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3566\tI-Code_Block\tA_3566\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45819970\tO\t45819970\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45819970/\tO\thttps://stackoverflow.com/questions/45819970/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nnodejs\tB-Library\tnodejs\tO\nas\tO\tas\tO\na\tO\ta\tO\nstatic\tO\tstatic\tO\nlibrary\tO\tlibrary\tO\nwithout\tO\twithout\tO\nsome\tO\tsome\tO\ninternal\tO\tinternal\tO\nmodule\tO\tmodule\tO\nlike\tO\tlike\tO\nchild_process\tB-Library_Class\tchild_process\tB-Code_Block\ndns\tI-Library_Class\tdns\tI-Code_Block\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nconfigurable\tO\tconfigurable\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45819970\tO\t45819970\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45819970/\tO\thttps://stackoverflow.com/questions/45819970/\tO\n\t\n\t\nRemove\tO\tRemove\tO\nthe\tO\tthe\tO\nmodules\tO\tmodules\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nfrom\tO\tfrom\tO\nnode.gyp\tB-Library\tnode.gyp\tO\n,\tO\t,\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\n.js\tB-File_Type\t.js\tO\nfiles\tO\tfiles\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlib\tB-File_Name\tlib\tB-Code_Block\nfolder\tO\tfolder\tO\n,\tO\t,\tO\nremove\tO\tremove\tO\nthem\tO\tthem\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbuiltinLibs\tB-Library_Class\tbuiltinLibs\tB-Code_Block\narray\tB-Data_Structure\tarray\tO\nin\tO\tin\tO\nlib/internal/module.js\tB-File_Name\tlib/internal/module.js\tB-Code_Block\nthen\tO\tthen\tO\nbuild\tO\tbuild\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6658\tI-Code_Block\tA_6658\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBe\tO\tBe\tO\naware\tO\taware\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nmodules\tO\tmodules\tO\nare\tO\tare\tO\nused\tO\tused\tO\nin\tO\tin\tO\ntests\tO\ttests\tO\nand\tO\tand\tO\nbenchmarks\tO\tbenchmarks\tO\n,\tO\t,\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nwith\tO\twith\tO\nchild_proccess\tB-File_Name\tchild_proccess\tB-Code_Block\n,\tO\t,\tO\nin\tO\tin\tO\nlib/internal/v8_prof_polyfill.js\tB-File_Name\tlib/internal/v8_prof_polyfill.js\tB-Code_Block\nand\tO\tand\tO\nlib/internal/cluster/master.js\tB-File_Name\tlib/internal/cluster/master.js\tB-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36780536\tO\t36780536\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36780536/\tO\thttps://stackoverflow.com/questions/36780536/\tO\n\t\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\ncommence\tO\tcommence\tO\nby\tO\tby\tO\nstating\tO\tstating\tO\nmy\tO\tmy\tO\nobjective\tO\tobjective\tO\n:\tO\t:\tO\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\ntwo\tO\ttwo\tO\n13-bit\tO\t13-bit\tO\nintegers\tB-Data_Type\tintegers\tO\n:\tO\t:\tO\n>\tB-Code_Block\t>\tO\n,\tO\t,\tO\n<\tB-Code_Block\t<\tO\n,\tO\t,\tO\nand\tO\tand\tO\n=\tB-Code_Block\t=\tO\n;\tO\t;\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\ncalculation\tO\tcalculation\tO\ntrillions\tO\ttrillions\tO\nof\tO\tof\tO\ntimes\tO\ttimes\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nis\tO\tis\tO\nimperative\tO\timperative\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\noptimize\tO\toptimize\tO\nit\tO\tit\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nprogram\tO\tprogram\tO\ncurrently\tO\tcurrently\tO\nutilizes\tO\tutilizes\tO\nPython\tB-Language\tPython\tO\n2.7\tB-Version\t2.7\tO\nand\tO\tand\tO\npyopencl\tB-Library\tpyopencl\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\ncalculation\tO\tcalculation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\naveraging\tO\taveraging\tO\nabout\tO\tabout\tO\n800\tO\t800\tO\nGFlops\tO\tGFlops\tO\nout\tO\tout\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nATI\tB-Device\tATI\tO\nRadeon\tI-Device\tRadeon\tO\n6870\tI-Device\t6870\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\nfor\tO\tfor\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nIf\tO\tIf\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncaring\tO\tcaring\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\n<,\tB-Code_Block\t<,\tO\n>,\tI-Code_Block\t>,\tO\nand\tO\tand\tO\n=\tB-Code_Block\t=\tO\noperators\tO\toperators\tO\non\tO\ton\tO\n4\tO\t4\tO\nbyte\tO\tbyte\tO\nfloats\tB-Data_Type\tfloats\tO\n(as\tO\t(as\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nnow),\tO\tnow),\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\nbitwise\tO\tbitwise\tO\nfunctions\tO\tfunctions\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\n<,\tB-Code_Block\t<,\tO\n>\tI-Code_Block\t>\tO\n,\tO\t,\tO\nand\tO\tand\tO\n=\tB-Code_Block\t=\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\n2\tO\t2\tO\n-\tO\t-\tO\n13\tO\t13\tO\nbits\tO\tbits\tO\nobjects\tO\tobjects\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nwould\tO\twould\tO\nthis\tO\tthis\tO\nincrease\tO\tincrease\tO\nmy\tO\tmy\tO\nspeed\tO\tspeed\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\ndoes\tO\tdoes\tO\nC\tB-Language\tC\tO\nalready\tO\talready\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nof\tO\tof\tO\nfinding\tO\tfinding\tO\n<,\tB-Code_Block\t<,\tO\nand\tO\tand\tO\n>\tB-Code_Block\t>\tO\n,\tO\t,\tO\nand\tO\tand\tO\n=\tB-Code_Block\t=\tO\n(\tO\t(\tO\nobviously\tO\tobviously\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\nfloats\tB-Data_Type\tfloats\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28601689\tO\t28601689\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28601689/\tO\thttps://stackoverflow.com/questions/28601689/\tO\n\t\n\t\nI\tO\tI\tO\nHave\tO\tHave\tO\na\tO\ta\tO\nmodels\tO\tmodels\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3359\tI-Code_Block\tQ_3359\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthere\tO\tthere\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\norm\tO\torm\tO\nform\tO\tform\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3360\tI-Code_Block\tQ_3360\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nat\tO\tat\tO\nlast\tO\tlast\tO\ndo\tO\tdo\tO\nu\tO\tu\tO\nknow\tO\tknow\tO\nany\tO\tany\tO\ngood\tO\tgood\tO\nrefrence\tO\trefrence\tO\nfor\tO\tfor\tO\norm\tO\torm\tO\n\t\nthx\tO\tthx\tO\nfor\tO\tfor\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28601689\tO\t28601689\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28601689/\tO\thttps://stackoverflow.com/questions/28601689/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nthe\tO\tthe\tO\ngroup\tB-Library_Function\tgroup\tO\nby\tI-Library_Function\tby\tO\nis\tO\tis\tO\nfor\tO\tfor\tO\nordering\tO\tordering\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\ngroup_by\tB-Library_Function\tgroup_by\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\naggregates\tO\taggregates\tO\nand\tO\tand\tO\nannotate\tO\tannotate\tO\nin\tO\tin\tO\ndjango\tB-Library\tdjango\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n:\tO\t:\tO\nGet\tO\tGet\tO\nthe\tO\tthe\tO\nperson\tO\tperson\tO\nrecord\tO\trecord\tO\n-\tO\t-\tO\nselect\tB-Code_Block\tselect\tO\nperson_name\tI-Code_Block\tperson_name\tO\nfrom\tI-Code_Block\tfrom\tO\nPerson\tI-Code_Block\tPerson\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4004\tI-Code_Block\tA_4004\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n2\tO\t2\tO\n:\tO\t:\tO\nselect\tB-Code_Block\tselect\tO\n*\tI-Code_Block\t*\tO\nfrom\tI-Code_Block\tfrom\tO\nPerson\tI-Code_Block\tPerson\tO\n,\tI-Code_Block\t,\tO\nCar\tI-Code_Block\tCar\tO\nwhere\tI-Code_Block\twhere\tO\ncar_owner\tI-Code_Block\tcar_owner\tO\n=\tI-Code_Block\t=\tO\nperson_id\tI-Code_Block\tperson_id\tO\n\t\nGet\tO\tGet\tO\nthe\tO\tthe\tO\ncars\tB-Variable_Name\tcars\tO\nbelonging\tO\tbelonging\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nperson\tB-Variable_Name\tperson\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4005\tI-Code_Block\tA_4005\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n3\tO\t3\tB-Code_Block\n:\tO\t:\tI-Code_Block\nselect\tB-Code_Block\tselect\tI-Code_Block\n*\tI-Code_Block\t*\tO\nfrom\tI-Code_Block\tfrom\tO\nPerson\tI-Code_Block\tPerson\tO\n,\tI-Code_Block\t,\tO\nCar\tI-Code_Block\tCar\tO\ngroup_by(person_name)\tI-Code_Block\tgroup_by(person_name)\tO\n\t\nGet\tO\tGet\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\ncars\tB-Variable_Name\tcars\tO\nsorted\tO\tsorted\tO\nby\tO\tby\tO\nowner\tB-Variable_Name\towner\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tO\n:\tI-Code_Block\t:\tO\nA_4006\tI-Code_Block\tA_4006\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n4\tO\t4\tB-Code_Block\n:\tO\t:\tI-Code_Block\nselect\tB-Code_Block\tselect\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\nfrom\tI-Code_Block\tfrom\tO\nPerson\tI-Code_Block\tPerson\tO\n,\tI-Code_Block\t,\tO\nCar\tI-Code_Block\tCar\tO\nwhere\tI-Code_Block\twhere\tO\nname\tI-Code_Block\tname\tO\nlike\tI-Code_Block\tlike\tO\n%x%\tI-Code_Block\t%x%\tO\ngroup_by(person_name)\tI-Code_Block\tgroup_by(person_name)\tO\nhaving\tI-Code_Block\thaving\tO\ncar_id\tI-Code_Block\tcar_id\tO\n>=\tI-Code_Block\t>=\tO\n2\tI-Code_Block\t2\tO\n\t\nList\tB-Data_Structure\tList\tO\nof\tO\tof\tO\ncars\tB-Variable_Name\tcars\tO\nwith\tO\twith\tO\nsearch\tO\tsearch\tO\ncriteria\tO\tcriteria\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tO\n:\tI-Code_Block\t:\tO\nA_4007\tI-Code_Block\tA_4007\tO\n(\tI-Code_Block\t(\tO\ncode\tI-Code_Block\tcode\tO\nomitted\tI-Code_Block\tomitted\tB-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCars\tB-Variable_Name\tCars\tB-Code_Block\nand\tO\tand\tI-Code_Block\ntheir\tO\ttheir\tI-Code_Block\nOwners\tB-Variable_Name\tOwners\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tO\nA_4008\tI-Code_Block\tA_4008\tO\n(\tI-Code_Block\t(\tO\ncode\tI-Code_Block\tcode\tO\nomitted\tI-Code_Block\tomitted\tB-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46224181\tO\t46224181\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46224181/\tO\thttps://stackoverflow.com/questions/46224181/\tO\n\t\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nintend\tO\tintend\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nRequest\tO\tRequest\tO\nhttps://reqres.in/api/users/2\tO\thttps://reqres.in/api/users/2\tB-Code_Block\n\t\nWhich\tO\tWhich\tO\nsends\tO\tsends\tO\na\tO\ta\tO\nresponse\tO\tresponse\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6060\tI-Code_Block\tQ_6060\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwanna\tO\twanna\tO\ngrab\tO\tgrab\tO\nthe\tO\tthe\tO\navatar\tO\tavatar\tO\nurl\tO\turl\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nanother\tO\tanother\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nimage\tB-File_Type\timage\tO\nbinary\tI-File_Type\tbinary\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nas\tO\tas\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\nan\tO\tan\tO\nObservable\tB-Library_Class\tObservable\tO\nthat\tO\tthat\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nthis\tO\tthis\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6061\tI-Code_Block\tQ_6061\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nhow\tO\thow\tO\nI\tO\tI\tO\napproached\tO\tapproached\tO\nbut\tO\tbut\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfinish\tO\tfinish\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6062\tI-Code_Block\tQ_6062\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nstructure\tO\tstructure\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6063\tI-Code_Block\tQ_6063\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhich\tO\tWhich\tO\nthen\tO\tthen\tO\ngets\tO\tgets\tO\nresolved\tO\tresolved\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nfinal\tO\tfinal\tO\ndata\tO\tdata\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46224181\tO\t46224181\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46224181/\tO\thttps://stackoverflow.com/questions/46224181/\tO\n\t\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nswitchMap\tB-Library_Function\tswitchMap\tB-Code_Block\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nconcatMap\tB-Library_Function\tconcatMap\tB-Code_Block\nor\tO\tor\tO\nmergeMap\tB-Library_Function\tmergeMap\tB-Code_Block\ninstead\tO\tinstead\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6702\tI-Code_Block\tA_6702\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34622614\tO\t34622614\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34622614/\tO\thttps://stackoverflow.com/questions/34622614/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nmy\tO\tmy\tO\npage\tO\tpage\tO\nto\tO\tto\tO\npop-up\tO\tpop-up\tO\na\tO\ta\tO\nwindow\tB-User_Interface_Element\twindow\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nform\tB-User_Interface_Element\tform\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nform\tB-User_Interface_Element\tform\tO\nis\tO\tis\tO\nfilled\tO\tfilled\tO\nout\tO\tout\tO\nand\tO\tand\tO\nSubmit\tO\tSubmit\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\nto\tO\tto\tO\nremain\tO\tremain\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\nwith\tO\twith\tO\nnew\tO\tnew\tO\ndata\tO\tdata\tO\nloaded\tO\tloaded\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nWhenever\tO\tWhenever\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsubmit\tO\tsubmit\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\neither\tO\teither\tO\ncloses\tO\tcloses\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntarget\tB-Code_Block\ttarget\tO\n=\tI-Code_Block\t=\tO\n\"\tI-Code_Block\t\"\tO\n_self\tI-Code_Block\t_self\tO\n\"\tI-Code_Block\t\"\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\ncontains\tO\tcontains\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\ngo\tO\tgo\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ntab\tB-User_Interface_Element\ttab\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\nopens\tO\topens\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nyet\tO\tyet\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nthat\tO\tthat\tO\nallows\tO\tallows\tO\nthe\tO\tthe\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\nto\tO\tto\tO\nstay\tO\tstay\tO\nup\tO\tup\tO\nwhen\tO\twhen\tO\ncoming\tO\tcoming\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nAJAX\tB-Library\tAJAX\tO\npop-up\tB-Library_Function\tpop-up\tO\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nlisted\tO\tlisted\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nstandard\tO\tstandard\tO\nnon-AJAX\tB-Library\tnon-AJAX\tO\npopup\tB-Library_Function\tpopup\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nif\tO\tif\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\nthe\tO\tthe\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\ncame\tO\tcame\tO\nfrom\tO\tfrom\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\ngoes\tO\tgoes\tO\nunderneath\tO\tunderneath\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\npage\tB-User_Interface_Element\tpage\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nsomething\tO\tsomething\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\nwhere\tO\twhere\tO\nmy\tO\tmy\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4221\tI-Code_Block\tQ_4221\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4222\tI-Code_Block\tQ_4222\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ngraph\tB-Data_Structure\tgraph\tO\nand\tO\tand\tO\nform\tB-User_Interface_Element\tform\tO\npop-up\tI-User_Interface_Element\tpop-up\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nof\tO\tof\tO\na\tO\ta\tO\nJSP\tB-Application\tJSP\tO\nbacked\tO\tbacked\tO\nby\tO\tby\tO\na\tO\ta\tO\nservlet\tB-Library_Class\tservlet\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nheader\tB-User_Interface_Element\theader\tO\ngets\tO\tgets\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nzoomPlot.generatePlot()\tB-Library_Function\tzoomPlot.generatePlot()\tO\ncreates\tO\tcreates\tO\nthe\tO\tthe\tO\nplot\tB-User_Interface_Element\tplot\tO\nand\tO\tand\tO\nsaves\tO\tsaves\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\n.png\tB-File_Type\t.png\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbody\tO\tbody\tO\ndisplays\tO\tdisplays\tO\nthe\tO\tthe\tO\n.png\tB-File_Type\t.png\tO\ngraph\tB-Data_Structure\tgraph\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nalso\tO\talso\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nform\tB-User_Interface_Element\tform\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\none\tO\tone\tO\nsubmits\tO\tsubmits\tO\nthe\tO\tthe\tO\nform\tB-User_Interface_Element\tform\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nhappens\tO\thappens\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\nis\tO\tis\tO\ndisplayed\tO\tdisplayed\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nplot\tB-User_Interface_Element\tplot\tO\nuses\tO\tuses\tO\ndefault\tO\tdefault\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nan\tO\tan\tO\nAJAX\tB-Library_Function\tAJAX\tO\nrequest\tI-Library_Function\trequest\tO\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\nhas\tO\thas\tO\nany\tO\tany\tO\ngood\tO\tgood\tO\nideas\tO\tideas\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nrecycle\tO\trecycle\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4223\tI-Code_Block\tQ_4223\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34622614\tO\t34622614\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34622614/\tO\thttps://stackoverflow.com/questions/34622614/\tO\n\t\n\t\nUse\tO\tUse\tO\nAJAX\tB-Library\tAJAX\tO\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\nthe\tO\tthe\tO\nform\tB-HTML_XML_Tag\tform\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ninit\tO\tinit\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4934\tI-Code_Block\tA_4934\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nElsewhere\tO\tElsewhere\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4935\tI-Code_Block\tA_4935\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34622614\tO\t34622614\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34622614/\tO\thttps://stackoverflow.com/questions/34622614/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nways\tO\tways\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n:\tO\t:\tO\nA\tO\tA\tO\nform\tB-HTML_XML_Tag\tform\tO\nand\tO\tand\tO\nan\tO\tan\tO\nIframe\tB-HTML_XML_Tag\tIframe\tO\n\t\nTarget\tO\tTarget\tO\nthe\tO\tthe\tO\nform\tB-HTML_XML_Tag\tform\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\niframe\tB-HTML_XML_Tag\tiframe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4931\tI-Code_Block\tA_4931\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nVisually\tO\tVisually\tO\nhide\tO\thide\tO\nthe\tO\tthe\tO\niframe\tB-HTML_XML_Tag\tiframe\tO\nwith\tO\twith\tO\nCSS\tB-Language\tCSS\tO\non\tO\ton\tO\ninitial\tO\tinitial\tO\nload\tO\tload\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nvisibility\tB-Code_Block\tvisibility\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nhidden\tI-Code_Block\thidden\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ndisplay\tB-Code_Block\tdisplay\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nnone\tI-Code_Block\tnone\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nlatter\tO\tlatter\tO\ndestroys\tO\tdestroys\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nDOM\tB-Library\tDOM\tO\n.\tO\t.\tO\n\t\nPrevent\tO\tPrevent\tO\ndefault\tO\tdefault\tO\nsubmission\tO\tsubmission\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n.\tB-HTML_XML_Tag\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nform\tB-HTML_XML_Tag\tform\tO\nis\tO\tis\tO\nsubmitted\tO\tsubmitted\tO\n(\tO\t(\tO\nwith\tO\twith\tO\nAJAX\tB-Library\tAJAX\tO\n)\tO\t)\tO\n,\tO\t,\tO\nhide\tO\thide\tO\nthe\tO\tthe\tO\nform\tB-HTML_XML_Tag\tform\tO\nand\tO\tand\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\niframe\tB-HTML_XML_Tag\tiframe\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nwould\tO\twould\tO\nstill\tO\tstill\tO\nbe\tO\tbe\tO\nopen\tO\topen\tO\n.\tO\t.\tO\n\t\n2\tO\t2\tO\n:\tO\t:\tO\nA\tO\tA\tO\nform\tB-HTML_XML_Tag\tform\tO\nwith\tO\twith\tO\nAJAX\tB-Library\tAJAX\tO\n\t\nWrap\tO\tWrap\tO\nthe\tO\tthe\tO\nform\tB-HTML_XML_Tag\tform\tO\nin\tO\tin\tO\na\tO\ta\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4932\tI-Code_Block\tA_4932\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nuse\tO\tuse\tO\nAJAX\tB-Library\tAJAX\tO\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\nthe\tO\tthe\tO\nform\tB-HTML_XML_Tag\tform\tO\nand\tO\tand\tO\nshow\tO\tshow\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n#results\tB-HTML_XML_Tag\t#results\tO\n-container\tI-HTML_XML_Tag\t-container\tO\n\t\nNOTE\tO\tNOTE\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nexplain\tO\texplain\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nlogin\tB-User_Interface_Element\tlogin\tO\n.\tO\t.\tO\n\t\nDO\tO\tDO\tO\nNOT\tO\tNOT\tO\nFORGET\tO\tFORGET\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\ndefault\tO\tdefault\tO\nsubmission\tO\tsubmission\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tB-HTML_XML_Tag\tform\tO\nin\tO\tin\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexamples\tO\texamples\tO\n!\tO\t!\tO\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\njQuery\tB-Library\tjQuery\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4933\tI-Code_Block\tA_4933\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nYour\tO\tYour\tO\nsnippet\tO\tsnippet\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nfunctioning\tO\tfunctioning\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\n:::EDIT::\tO\t:::EDIT::\tO\n:\tO\t:\tO\n\t\nPrevent\tO\tPrevent\tO\ndefault\tO\tdefault\tO\nsubmission\tO\tsubmission\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tB-HTML_XML_Tag\tform\tO\n\t\nSend\tO\tSend\tO\na\tO\ta\tO\nPOST\tB-Library_Function\tPOST\tO\nrequest\tO\trequest\tO\non\tO\ton\tO\nsubmit\tO\tsubmit\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nserver\tB-Application\tserver\tO\n\t\nRespond\tO\tRespond\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ngraph\tB-User_Interface_Element\tgraph\tO\nimage\tI-User_Interface_Element\timage\tO\nurl\tO\turl\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n\t\nReplace\tO\tReplace\tO\nthe\tO\tthe\tO\nold\tO\told\tO\ngraph\tB-User_Interface_Element\tgraph\tO\nimage\tI-User_Interface_Element\timage\tO\nsrc\tB-HTML_XML_Tag\tsrc\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\none\tO\tone\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nmore\tO\tmore\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nout\tO\tout\tO\n?\tO\t?\tO\n\t\nEspecially\tO\tEspecially\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nJavaScript\tB-Language\tJavaScript\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44954634\tO\t44954634\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44954634/\tO\thttps://stackoverflow.com/questions/44954634/\tO\n\t\n\t\nThe\tO\tThe\tO\nassignment\tO\tassignment\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndevelop\tO\tdevelop\tO\na\tO\ta\tO\nmonitor\tO\tmonitor\tO\n,\tO\t,\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nmatchmaker\tB-Function_Name\tmatchmaker\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\na\tO\ta\tO\nroutine\tO\troutine\tO\n:\tO\t:\tO\nself()\tB-Library_Function\tself()\tO\n;\tO\t;\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\n's\tO\t's\tO\nid\tB-Variable_Name\tid\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmatchmaker\tB-Function_Name\tmatchmaker\tO\nmethod\tO\tmethod\tO\nmust\tO\tmust\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nThreads\tO\tThreads\tO\nthat\tO\tthat\tO\ncall\tO\tcall\tO\nthis\tO\tthis\tO\nroutine\tO\troutine\tO\n\"\tB-Value\t\"\tO\ntrade\tI-Value\ttrade\tO\n\"\tI-Value\t\"\tO\ntids\tB-Variable_Name\ttids\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\na\tO\ta\tO\nthread\tO\tthread\tO\nA\tO\tA\tO\ncalls\tO\tcalls\tO\nmake_match()\tB-Function_Name\tmake_match()\tO\nand\tO\tand\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nB\tB-Value\tB\tO\nis\tO\tis\tO\nreturned\tO\treturned\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthat\tO\tthat\tO\nthread\tO\tthread\tO\nID\tB-Variable_Name\tID\tO\nB\tB-Value\tB\tO\nalso\tO\talso\tO\ncalled\tO\tcalled\tO\nthe\tO\tthe\tO\nmake_match\tB-Function_Name\tmake_match\tO\nroutine\tO\troutine\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\na\tO\ta\tO\npair\tO\tpair\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nmake_match()\tB-Function_Name\tmake_match()\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\nsleep\tO\tsleep\tO\n,\tO\t,\tO\nat\tO\tat\tO\nwill\tO\twill\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nmutex\tO\tmutex\tO\nand\tO\tand\tO\ncondition\tO\tcondition\tO\nvariables\tO\tvariables\tO\npthread.h\tB-File_Name\tpthread.h\tO\nmustbe\tO\tmustbe\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\ncame\tO\tcame\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nbut\tO\tbut\tO\nbecause\tO\tbecause\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nwritten\tO\twritten\tO\nassignment\tO\tassignment\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nevaluate\tO\tevaluate\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncorrectness\tO\tcorrectness\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nsome\tO\tsome\tO\nfeedback\tO\tfeedback\tO\non\tO\ton\tO\nwether\tO\twether\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nwork\tO\twork\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5854\tI-Code_Block\tQ_5854\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45791902\tO\t45791902\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45791902/\tO\thttps://stackoverflow.com/questions/45791902/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nRg.Plugins.Popup\tB-Library_Class\tRg.Plugins.Popup\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nconfirmation\tO\tconfirmation\tO\npopup\tB-User_Interface_Element\tpopup\tO\nbefore\tO\tbefore\tO\ndeleting\tO\tdeleting\tO\nan\tO\tan\tO\nitem\tO\titem\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nlike\tO\tlike\tO\n\"\tB-Value\t\"\tO\nAre\tI-Value\tAre\tO\nyou\tI-Value\tyou\tO\nsure\tI-Value\tsure\tO\nyou\tI-Value\tyou\tO\nwant\tI-Value\twant\tO\nto\tI-Value\tto\tO\ndelete\tI-Value\tdelete\tO\nItem1\tI-Value\tItem1\tO\nfrom\tI-Value\tfrom\tO\nthe\tI-Value\tthe\tO\nlist\tI-Value\tlist\tO\n?\tI-Value\t?\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\npause\tO\tpause\tO\nthe\tO\tthe\tO\ndeleting\tB-Function_Name\tdeleting\tO\nmethod\tO\tmethod\tO\ntill\tO\ttill\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\nconfirmation\tO\tconfirmation\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npopup\tB-User_Interface_Element\tpopup\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5997\tI-Code_Block\tQ_5997\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45791902\tO\t45791902\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45791902/\tO\thttps://stackoverflow.com/questions/45791902/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nTaskCompletionSource\tB-Library_Class\tTaskCompletionSource\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ncreate\tO\tcreate\tO\nPopupAlert\tB-Class_Name\tPopupAlert\tB-Code_Block\npage\tO\tpage\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nasync\tB-Data_Type\tasync\tO\nShow\tB-Class_Name\tShow\tB-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6656\tI-Code_Block\tA_6656\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\n,\tO\t,\tO\nusage\tO\tusage\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6657\tI-Code_Block\tA_6657\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45791902\tO\t45791902\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45791902/\tO\thttps://stackoverflow.com/questions/45791902/\tO\n\t\n\t\nWhy\tO\tWhy\tO\nnot\tO\tnot\tO\nleverage\tO\tleverage\tO\nMessagingCenter\tB-Library_Class\tMessagingCenter\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nremove\tO\tremove\tO\nsaid\tO\tsaid\tO\nitem\tB-Variable_Name\titem\tO\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nsubscribe\tO\tsubscribe\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nwhen\tO\twhen\tO\ndisplaying\tO\tdisplaying\tO\nthe\tO\tthe\tO\npopup\tB-User_Interface_Element\tpopup\tO\nand\tO\tand\tO\nreceive\tO\treceive\tO\nit\tO\tit\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nconfirm\tO\tconfirm\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23042401\tO\t23042401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23042401/\tO\thttps://stackoverflow.com/questions/23042401/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nseveral\tO\tseveral\tO\nmat\tB-File_Type\tmat\tO\nfile\tO\tfile\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\nfirst.mat\tB-File_Name\tfirst.mat\tO\n,\tO\t,\tO\nsecond.mat\tB-File_Name\tsecond.mat\tO\n,\tO\t,\tO\nthird.mat\tB-File_Name\tthird.mat\tO\n,..\tO\t,..\tO\n.\tO\t.\tO\n\t\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nfiles\tO\tfiles\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncontent\tO\tcontent\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\nvariable1\tB-Variable_Name\tvariable1\tO\n<3400x1\tB-Value\t<3400x1\tO\ndouble>\tB-Data_Type\tdouble>\tO\n,\tO\t,\tO\nvariable2<1143x1\tB-Variable_Name\tvariable2<1143x1\tO\ndouble>\tB-Data_Type\tdouble>\tO\n,\tO\t,\tO\nvariable3<1141x1\tB-Variable_Name\tvariable3<1141x1\tO\ndouble>\tB-Data_Type\tdouble>\tO\n,\tO\t,\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nall\tO\tall\tO\nmat\tB-File_Type\tmat\tO\nfiles\tO\tfiles\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncontent\tO\tcontent\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\neach\tO\teach\tO\nvariable\tO\tvariable\tO\nin\tO\tin\tO\neach\tO\teach\tO\nmat\tB-File_Type\tmat\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconcatenate\tO\tconcatenate\tO\nall\tO\tall\tO\nsame\tO\tsame\tO\nvariables\tO\tvariables\tO\nin\tO\tin\tO\nall\tO\tall\tO\nmat\tB-File_Type\tmat\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nhave\tO\thave\tO\njust\tO\tjust\tO\none\tO\tone\tO\nmat\tB-File_Type\tmat\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\ncan\tO\tcan\tO\nsomebody\tO\tsomebody\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\nwhich\tO\twhich\tO\nfunction\tO\tfunction\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n?\tO\t?\tO\n\t\nMany\tO\tMany\tO\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23042401\tO\t23042401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23042401/\tO\thttps://stackoverflow.com/questions/23042401/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nmatlab\tB-Language\tmatlab\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nall\tO\tall\tO\nindividual\tO\tindividual\tO\nvectors\tB-Data_Structure\tvectors\tO\n,\tO\t,\tO\ncombine\tO\tcombine\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nthem\tO\tthem\tO\nback\tO\tback\tO\nto\tO\tto\tO\ndisk\tB-Device\tdisk\tO\n.\tO\t.\tO\n\t\nSomething\tO\tSomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nuntested\tO\tuntested\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3118\tI-Code_Block\tA_3118\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23042401\tO\t23042401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23042401/\tO\thttps://stackoverflow.com/questions/23042401/\tO\n\t\n\t\nThanks\tO\tThanks\tO\nall\tO\tall\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nanswers\tO\tanswers\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3119\tI-Code_Block\tA_3119\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9612174\tO\t9612174\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9612174/\tO\thttps://stackoverflow.com/questions/9612174/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nplaying\tO\tplaying\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ngoogle\tB-Website\tgoogle\tO\nexpansion\tO\texpansion\tO\npack\tO\tpack\tO\nstuff\tO\tstuff\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ngoogle\tO\tgoogle\tO\nlibrary\tO\tlibrary\tO\nproject\tO\tproject\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndownloader\tO\tdownloader\tO\nhas\tO\thas\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nvalues-v9/styles.xml\tB-File_Name\tvalues-v9/styles.xml\tO\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nnotification\tB-User_Interface_Element\tnotification\tO\ntext\tO\ttext\tO\nproperties\tO\tproperties\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncauses\tO\tcauses\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\nis\tO\tis\tO\npreAPI9\tB-Library\tpreAPI9\tO\n..\tO\t..\tO\n.\tO\t.\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nreferring\tO\treferring\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nstyle\tO\tstyle\tO\nstuff\tO\tstuff\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\nappeared\tO\tappeared\tO\nin\tO\tin\tO\napi9\tB-Library\tapi9\tO\n.\tB-Version\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nsetting\tO\tsetting\tO\n\t\n<uses-sdk\tB-Code_Block\t<uses-sdk\tO\nandroid:minSdkVersion=\"8\"\tI-Code_Block\tandroid:minSdkVersion=\"8\"\tO\nandroid:targetSdkVersion=\"9\"\tB-Code_Block\tandroid:targetSdkVersion=\"9\"\tO\n/>\tI-Code_Block\t/>\tO\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nAndroidManifest.xml\tB-File_Name\tAndroidManifest.xml\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\n(\tO\t(\tO\nnaively\tO\tnaively\tO\n)\tO\t)\tO\nhope\tO\thope\tO\neclipse\tB-Application\teclipse\tO\nwould\tO\twould\tO\njust\tO\tjust\tO\nignore\tO\tignore\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nif\tO\tif\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nbuilding\tO\tbuilding\tO\nfor\tO\tfor\tO\napi8\tB-Library\tapi8\tO\n,\tB-Version\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nwhen\tO\twhen\tO\ndeployed\tO\tdeployed\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmarket\tO\tmarket\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nvalues-9\tB-File_Name\tvalues-9\tO\nstuff\tO\tstuff\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nphone\tO\tphone\tO\nwere\tO\twere\tO\nat\tO\tat\tO\nor\tO\tor\tO\nabove\tO\tabove\tO\nthat\tO\tthat\tO\nlevel\tO\tlevel\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nthat\tO\tthat\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhoping\tO\thoping\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\ntrivial\tO\ttrivial\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nbtw\tO\tbtw\tO\n-\tO\t-\tO\nhere\tO\there\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nspecific\tO\tspecific\tO\nerrors\tO\terrors\tO\n\t\nDescription\tB-Output_Block\tDescription\tO\nResource\tI-Output_Block\tResource\tO\nPath\tI-Output_Block\tPath\tO\nLocation\tI-Output_Block\tLocation\tO\nType\tI-Output_Block\tType\tO\n\t\nerror\tB-Output_Block\terror\tO\n:\tI-Output_Block\t:\tO\nError\tI-Output_Block\tError\tO\nretrieving\tI-Output_Block\tretrieving\tO\nparent\tI-Output_Block\tparent\tO\nfor\tI-Output_Block\tfor\tO\nitem\tI-Output_Block\titem\tO\n:\tI-Output_Block\t:\tO\nNo\tI-Output_Block\tNo\tO\nresource\tI-Output_Block\tresource\tO\nfound\tI-Output_Block\tfound\tO\nthat\tI-Output_Block\tthat\tO\nmatches\tI-Output_Block\tmatches\tO\nthe\tI-Output_Block\tthe\tO\ngiven\tI-Output_Block\tgiven\tO\nname\tI-Output_Block\tname\tO\n'\tI-Output_Block\t'\tO\nandroid:TextAppearance.StatusBar.EventContent.Title\tI-Output_Block\tandroid:TextAppearance.StatusBar.EventContent.Title\tO\n'\tI-Output_Block\t'\tO\n.\tI-Output_Block\t.\tO\n\t\nstyles.xml\tB-Output_Block\tstyles.xml\tO\n/Google\tI-Output_Block\t/Google\tO\nPlay\tI-Output_Block\tPlay\tO\nDownloader\tI-Output_Block\tDownloader\tO\nLibrary/res/values\tI-Output_Block\tLibrary/res/values\tO\n-v9\tI-Output_Block\t-v9\tO\nline\tI-Output_Block\tline\tO\n4\tI-Output_Block\t4\tO\nAndroid\tI-Output_Block\tAndroid\tO\nAAPT\tI-Output_Block\tAAPT\tO\nProblem\tI-Output_Block\tProblem\tO\n\t\nDescription\tB-Output_Block\tDescription\tO\nResource\tI-Output_Block\tResource\tO\nPath\tI-Output_Block\tPath\tO\nLocation\tI-Output_Block\tLocation\tO\nType\tI-Output_Block\tType\tO\n\t\nerror\tB-Output_Block\terror\tO\n:\tI-Output_Block\t:\tO\nError\tI-Output_Block\tError\tO\nretrieving\tI-Output_Block\tretrieving\tO\nparent\tI-Output_Block\tparent\tO\nfor\tI-Output_Block\tfor\tO\nitem\tI-Output_Block\titem\tO\n:\tI-Output_Block\t:\tO\nNo\tI-Output_Block\tNo\tO\nresource\tI-Output_Block\tresource\tO\nfound\tI-Output_Block\tfound\tO\nthat\tI-Output_Block\tthat\tO\nmatches\tI-Output_Block\tmatches\tO\nthe\tI-Output_Block\tthe\tO\ngiven\tI-Output_Block\tgiven\tO\nname\tI-Output_Block\tname\tO\n'\tI-Output_Block\t'\tO\nandroid:TextAppearance.StatusBar.EventContent.Title\tI-Output_Block\tandroid:TextAppearance.StatusBar.EventContent.Title\tO\n'\tI-Output_Block\t'\tO\n.\tO\t.\tO\n\t\nstyles.xml\tB-Output_Block\tstyles.xml\tO\n/Google\tI-Output_Block\t/Google\tO\nPlay\tI-Output_Block\tPlay\tO\nDownloader\tI-Output_Block\tDownloader\tO\nLibrary/res/values\tI-Output_Block\tLibrary/res/values\tO\n-v9\tI-Output_Block\t-v9\tO\nline\tI-Output_Block\tline\tO\n4\tI-Output_Block\t4\tO\nAndroid\tI-Output_Block\tAndroid\tO\nAAPT\tI-Output_Block\tAAPT\tO\nProblem\tI-Output_Block\tProblem\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9612174\tO\t9612174\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9612174/\tO\thttps://stackoverflow.com/questions/9612174/\tO\n\t\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nalso\tO\talso\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nposted\tO\tposted\tO\na\tO\ta\tO\nrelated\tO\trelated\tO\nquestion\tO\tquestion\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nAndroid\tB-Operating_System\tAndroid\tO\napk\tB-File_Type\tapk\tO\nexpansion\tI-File_Type\texpansion\tO\nfile\tO\tfile\tO\nlibs\tO\tlibs\tO\nproblems\tO\tproblems\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstumped\tO\tstumped\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndeleted\tO\tdeleted\tO\nthe\tO\tthe\tO\nvalues-v9\tB-File_Name\tvalues-v9\tO\nfolder\tO\tfolder\tO\nand\tO\tand\tO\nrebuilt\tO\trebuilt\tO\neverything\tO\teverything\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nDownloadManager\tB-Application\tDownloadManager\tO\nis\tO\tis\tO\nnow\tO\tnow\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9612174\tO\t9612174\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9612174/\tO\thttps://stackoverflow.com/questions/9612174/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfixed\tO\tfixed\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nby\tO\tby\tO\nbuilding\tO\tbuilding\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncommands\tO\tcommands\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2730\tI-Code_Block\tA_2730\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\ncommand\tO\tcommand\tO\ntells\tO\ttells\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nAndroid\tB-Operating_System\tAndroid\tO\n2.3.3\tB-Version\t2.3.3\tO\ntoolchain\tO\ttoolchain\tO\nfor\tO\tfor\tO\nbuiding\tO\tbuiding\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nandroid:minSdkVersion\tB-Code_Block\tandroid:minSdkVersion\tO\n=\tI-Code_Block\t=\tO\n\"\tI-Code_Block\t\"\tO\n8\tI-Code_Block\t8\tO\n\"\tI-Code_Block\t\"\tO\nin\tO\tin\tO\nAndroidManifest.xml\tB-File_Name\tAndroidManifest.xml\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\nvalues-v9/\tB-File_Name\tvalues-v9/\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nRemoving\tO\tRemoving\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ncause\tO\tcause\tO\ndisplaying\tO\tdisplaying\tO\nnotification\tB-User_Interface_Element\tnotification\tO\nwith\tO\twith\tO\ndark\tB-User_Interface_Element\tdark\tO\nfont\tI-User_Interface_Element\tfont\tO\non\tO\ton\tO\ndark\tB-User_Interface_Element\tdark\tO\nbackground\tI-User_Interface_Element\tbackground\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35238771\tO\t35238771\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35238771/\tO\thttps://stackoverflow.com/questions/35238771/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ntoolbar\tB-User_Interface_Element\ttoolbar\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\naction\tB-User_Interface_Element\taction\tO\nbar\tI-User_Interface_Element\tbar\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\ngetting\tO\tgetting\tO\nanything\tO\tanything\tO\nbesides\tO\tbesides\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nToolbar\tB-User_Interface_Element\tToolbar\tO\nfrom\tO\tfrom\tO\nappcompat\tB-Library\tappcompat\tO\nand\tO\tand\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\nthe\tO\tthe\tO\nmenu\tB-File_Name\tmenu\tO\nxml\tI-File_Name\txml\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nnecessary\tO\tnecessary\tO\nstep\tO\tstep\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nlink\tO\tlink\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nactivity\tB-File_Name\tactivity\tO\nxml\tI-File_Name\txml\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4316\tI-Code_Block\tQ_4316\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\ntoolbar\tB-User_Interface_Element\ttoolbar\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlayout\tO\tlayout\tO\ncorrectly\tO\tcorrectly\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nits\tO\tits\tO\nsize\tO\tsize\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nreflected\tO\treflected\tO\ncorrectly\tO\tcorrectly\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nruns\tO\truns\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nxml\tB-Language\txml\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nmenu\tB-HTML_XML_Tag\tmenu\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4317\tI-Code_Block\tQ_4317\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nthing\tO\tthing\tO\nthat\tO\tthat\tO\nshows\tO\tshows\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\naction\tB-User_Interface_Element\taction\tO\nbar\tI-User_Interface_Element\tbar\tO\n:\tO\t:\tO\n\t\nJust\tO\tJust\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nclear\tO\tclear\tO\nI\tO\tI\tO\nam\tO\tam\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nfollowing\tO\tfollowing\tO\nthis\tO\tthis\tO\ntutorial\tO\ttutorial\tO\nexactly\tO\texactly\tO\n:\tO\t:\tO\n\t\nhttp://developer.android.com/training/appbar/index.html\tO\thttp://developer.android.com/training/appbar/index.html\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n,\tO\t,\tO\nthank\tO\tthank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35238771\tO\t35238771\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35238771/\tO\thttps://stackoverflow.com/questions/35238771/\tO\n\t\n\t\nadd\tO\tadd\tO\nbelow\tO\tbelow\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nyou\tO\tyou\tO\nactivity\tB-File_Name\tactivity\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5038\tI-Code_Block\tA_5038\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33803125\tO\t33803125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33803125/\tO\thttps://stackoverflow.com/questions/33803125/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nSLIDE\tO\tSLIDE\tO\nUP\tO\tUP\tO\nanimation\tB-Library_Class\tanimation\tO\non\tO\ton\tO\nview\tO\tview\tO\nand\tO\tand\tO\ni\tO\ti\tO\nam\tO\tam\tO\nrepeating\tO\trepeating\tO\nthis\tO\tthis\tO\nanimation\tB-Library_Class\tanimation\tO\nagain\tO\tagain\tO\nonAnimationEnd\tB-Function_Name\tonAnimationEnd\tO\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nonAnimationEnd\tB-Function_Name\tonAnimationEnd\tO\nfired\tO\tfired\tO\ntwice\tO\ttwice\tO\n,\tO\t,\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nchecked\tO\tchecked\tO\nit\tO\tit\tO\nwith\tO\twith\tO\ncounter\tB-Variable_Name\tcounter\tO\nat\tO\tat\tO\nonAnimationEnd\tB-Function_Name\tonAnimationEnd\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwill\tO\twill\tO\npost\tO\tpost\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncounter\tB-Variable_Name\tcounter\tO\nin\tO\tin\tO\nonAnimationEnd\tB-Function_Name\tonAnimationEnd\tO\nwill\tO\twill\tO\nincremented\tO\tincremented\tO\ntwice\tO\ttwice\tO\nat\tO\tat\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nstarting\tO\tstarting\tO\nthe\tO\tthe\tO\nanimation\tB-Library_Class\tanimation\tO\nagain\tO\tagain\tO\nin\tO\tin\tO\nonAnimationEnd\tB-Function_Name\tonAnimationEnd\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nguide\tO\tguide\tO\nme\tO\tme\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4121\tI-Code_Block\tQ_4121\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33803125\tO\t33803125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33803125/\tO\thttps://stackoverflow.com/questions/33803125/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nyour\tO\tyour\tO\nanimation\tB-Library_Class\tanimation\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\nonce\tO\tonce\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\ntickerView.startAnimation(animSlideUp)\tB-Code_Block\ttickerView.startAnimation(animSlideUp)\tO\n;\tI-Code_Block\t;\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nonAnimationEnd\tB-Function_Name\tonAnimationEnd\tO\nMethod\tO\tMethod\tO\n.\tO\t.\tO\n\t\nAvoid\tO\tAvoid\tO\nusing\tO\tusing\tO\nxml\tB-Language\txml\tO\nanimations\tB-Library_Class\tanimations\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nmuch\tO\tmuch\tO\neasier\tO\teasier\tO\nin\tO\tin\tO\njava\tB-Language\tjava\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nanimate\tO\tanimate\tO\ntwo\tO\ttwo\tO\nproperties\tO\tproperties\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4836\tI-Code_Block\tA_4836\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nonly\tO\tonly\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nscaleY\tB-Library_Variable\tscaleY\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\n1.0\tB-Value\t1.0\tO\nto\tO\tto\tO\n0\tB-Value\t0\tO\n,\tO\t,\tO\nso\tO\tso\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4837\tI-Code_Block\tA_4837\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLinearInterpolator\tB-Library_Class\tLinearInterpolator\tO\nis\tO\tis\tO\nused\tO\tused\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nRepeat\tO\tRepeat\tO\nafter\tO\tafter\tO\nevery\tO\tevery\tO\n5\tO\t5\tO\nsec\tO\tsec\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4838\tI-Code_Block\tA_4838\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33803125\tO\t33803125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33803125/\tO\thttps://stackoverflow.com/questions/33803125/\tO\n\t\n\t\nI\tO\tI\tO\nmay\tO\tmay\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\n:\tO\t:\tO\npost\tO\tpost\tO\nan\tO\tan\tO\nrunnable\tO\trunnable\tO\nto\tO\tto\tO\nrestart\tO\trestart\tO\nthe\tO\tthe\tO\nanimation\tB-Library_Class\tanimation\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nin\tO\tin\tO\nOnAnimationEnd()\tB-Function_Name\tOnAnimationEnd()\tB-Code_Block\nfunction\tO\tfunction\tO\n,\tO\t,\tO\ncode\tO\tcode\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5845\tI-Code_Block\tA_5845\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7222352\tO\t7222352\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7222352/\tO\thttps://stackoverflow.com/questions/7222352/\tO\n\t\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nin\tO\tin\tO\nFirebug\tB-Application\tFirebug\tO\nor\tO\tor\tO\nother\tO\tother\tO\nsoftware\tO\tsoftware\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\na\tO\ta\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nreplaced\tO\treplaced\tO\nwith\tO\twith\tO\najax\tB-Library\tajax\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7222352\tO\t7222352\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7222352/\tO\thttps://stackoverflow.com/questions/7222352/\tO\n\t\n\t\nyes\tO\tyes\tO\n\t\nfirebug\tB-Application\tfirebug\tO\nmarks\tO\tmarks\tO\nthe\tO\tthe\tO\nchanged\tO\tchanged\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nin\tO\tin\tO\nyellow\tB-Value\tyellow\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nhtml\tB-Language\thtml\tO\ndynamic\tO\tdynamic\tO\nupdates\tO\tupdates\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nhtml\tB-Language\thtml\tO\nview\tO\tview\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7222352\tO\t7222352\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7222352/\tO\thttps://stackoverflow.com/questions/7222352/\tO\n\t\n\t\nSure\tO\tSure\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ninspect\tO\tinspect\tO\nthe\tO\tthe\tO\nDOM\tB-Library\tDOM\tO\nwith\tO\twith\tO\nFireBug\tB-Application\tFireBug\tO\nwhich\tO\twhich\tO\nalways\tO\talways\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nDOM\tB-Library\tDOM\tO\nat\tO\tat\tO\nits\tO\tits\tO\nmost\tO\tmost\tO\nrecent\tO\trecent\tO\nstate\tO\tstate\tO\n(\tO\t(\tO\nand\tO\tand\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\naccounts\tO\taccounts\tO\nfor\tO\tfor\tO\nAJAX\tB-Library\tAJAX\tO\nupdates\tO\tupdates\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18830315\tO\t18830315\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18830315/\tO\thttps://stackoverflow.com/questions/18830315/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nOSX\tB-Operating_System\tOSX\tO\napp\tO\tapp\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\nsplit\tO\tsplit\tO\nview\tO\tview\tO\n(\tO\t(\tO\ntop\tO\ttop\tO\nto\tO\tto\tO\nbottom\tO\tbottom\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nview\tO\tview\tO\nof\tO\tof\tO\nsplit\tO\tsplit\tO\nview\tO\tview\tO\nis\tO\tis\tO\na\tO\ta\tO\nNSTabview\tB-Library_Class\tNSTabview\tO\nhaving\tO\thaving\tO\nthree\tO\tthree\tO\ntabs\tB-User_Interface_Element\ttabs\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nlooks\tO\tlooks\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\nNSTabview\tB-Library_Class\tNSTabview\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nshowing\tO\tshowing\tO\ntabs\tB-User_Interface_Element\ttabs\tO\nbars\tI-User_Interface_Element\tbars\tO\n(\tO\t(\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ntabless\tO\ttabless\tO\n)\tO\t)\tO\nhowever\tO\thowever\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\naround\tO\taround\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nand\tO\tand\tO\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nother\tO\tother\tO\ntabs\tB-User_Interface_Element\ttabs\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35329386\tO\t35329386\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35329386/\tO\thttps://stackoverflow.com/questions/35329386/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\neditor\tO\teditor\tO\non\tO\ton\tO\nQt\tB-Library\tQt\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\ndisplaying\tO\tdisplaying\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ngraphicsView\tB-Library_Class\tgraphicsView\tB-Code_Block\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nfitInView\tB-Library_Function\tfitInView\tB-Code_Block\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nfits\tO\tfits\tO\nnicely\tO\tnicely\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ngraphicsView\tB-Library_Class\tgraphicsView\tB-Code_Block\nand\tO\tand\tO\nhere\tO\there\tO\nlies\tO\tlies\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nmaximize\tO\tmaximize\tO\nthe\tO\tthe\tO\nwindow\tB-User_Interface_Element\twindow\tO\nthe\tO\tthe\tO\ngraphics\tO\tgraphics\tO\nview\tO\tview\tO\nsize\tO\tsize\tO\nchanges\tO\tchanges\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\na\tO\ta\tO\nhorizontal\tO\thorizontal\tO\nlayout\tO\tlayout\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nsome\tO\tsome\tO\nimages\tB-User_Interface_Element\timages\tO\nabout\tO\tabout\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntalking\tO\ttalking\tO\nabout\tO\tabout\tO\n:\tO\t:\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nwindow\tB-User_Interface_Element\twindow\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nmaximized\tO\tmaximized\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nall\tO\tall\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nfitInView\tB-Library_Function\tfitInView\tB-Code_Block\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nwindow\tB-User_Interface_Element\twindow\tO\nget\tO\tget\tO\nmaximized\tO\tmaximized\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35329386\tO\t35329386\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35329386/\tO\thttps://stackoverflow.com/questions/35329386/\tO\n\t\n\t\nQuite\tO\tQuite\tO\neasy\tO\teasy\tO\n,\tO\t,\tO\njust\tO\tjust\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\nresizeEvent\tB-Library_Class\tresizeEvent\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nworking\tO\tworking\tO\ncode\tO\tcode\tO\nrelies\tO\trelies\tO\non\tO\ton\tO\nQGraphicsView\tB-Library_Class\tQGraphicsView\tO\nand\tO\tand\tO\nQGraphicsScene\tB-Library_Class\tQGraphicsScene\tO\n,\tO\t,\tO\nzoom\tO\tzoom\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n;)\tO\t;)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5058\tI-Code_Block\tA_5058\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41641771\tO\t41641771\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41641771/\tO\thttps://stackoverflow.com/questions/41641771/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nshare\tO\tshare\tO\nimages\tB-User_Interface_Element\timages\tO\nto\tO\tto\tO\nInstagram\tB-Application\tInstagram\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nown\tO\town\tO\niOS\tB-Operating_System\tiOS\tO\napp\tO\tapp\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nKingfisher\tB-Library\tKingfisher\tO\nthroughout\tO\tthroughout\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nand\tO\tand\tO\ncache\tO\tcache\tO\nimages\tB-User_Interface_Element\timages\tO\nand\tO\tand\tO\nshow\tO\tshow\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nUIImageViews\tB-Library_Class\tUIImageViews\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nresponse\tO\tresponse\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nAPI\tO\tAPI\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nof\tO\tof\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\n\t\nDownload\tO\tDownload\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nquestions\tO\tquestions\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nobjective-C\tB-Language\tobjective-C\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5286\tI-Code_Block\tQ_5286\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nSwift\tB-Language\tSwift\tO\n.\tO\t.\tO\n\t\nRename\tO\tRename\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n.igo\tB-File_Type\t.igo\tO\nextension\tO\textension\tO\n(\tO\t(\tO\ninstagram\tB-Application\tinstagram\tO\nexclusive\tO\texclusive\tO\n)\tO\t)\tO\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nwould\tO\twould\tO\ndepend\tO\tdepend\tO\non\tO\ton\tO\nnumber\tO\tnumber\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nshare\tO\tshare\tO\nit\tO\tit\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5287\tI-Code_Block\tQ_5287\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ninstagram\tB-Application\tinstagram\tO\nhooks\tO\thooks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5288\tI-Code_Block\tQ_5288\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDocumentation\tO\tDocumentation\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nscarce\tO\tscarce\tO\nspecially\tO\tspecially\tO\nfor\tO\tfor\tO\nSwift\tB-Language\tSwift\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\na\tO\ta\tO\npush\tO\tpush\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ndirection\tO\tdirection\tO\nis\tO\tis\tO\nall\tO\tall\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41641771\tO\t41641771\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41641771/\tO\thttps://stackoverflow.com/questions/41641771/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nnavigation\tB-User_Interface_Element\tnavigation\tO\ncontroller\tI-User_Interface_Element\tcontroller\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nUIBarButtonItem\tB-Library_Class\tUIBarButtonItem\tO\nset\tO\tset\tO\nto\tO\tto\tO\nSystem\tO\tSystem\tO\nitem\tO\titem\tO\n\"\tB-Value\t\"\tO\nAction\tI-Value\tAction\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\ncreated\tO\tcreated\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nIBAction\tB-Library_Class\tIBAction\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5967\tI-Code_Block\tA_5967\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nexcludedActivityTypes\tB-Library_Function\texcludedActivityTypes\tO\nlist\tB-Data_Structure\tlist\tO\nis\tO\tis\tO\na\tO\ta\tO\ncomplete/exhaustive\tO\tcomplete/exhaustive\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\navailable\tO\tavailable\tO\nUIActivityTypes\tB-Library_Class\tUIActivityTypes\tO\ngleaned\tO\tgleaned\tO\nfrom\tO\tfrom\tO\ncode-complete\tO\tcode-complete\tO\nor\tO\tor\tO\ncommand-clicking\tO\tcommand-clicking\tO\non\tO\ton\tO\nUIActivity\tB-Library_Class\tUIActivity\tO\ntype\tO\ttype\tO\nand\tO\tand\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nstruct\tB-Data_Structure\tstruct\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuncomment\tO\tuncomment\tO\nthose\tO\tthose\tO\nI\tO\tI\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nexclude\tO\texclude\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nleave\tO\tleave\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nfor\tO\tfor\tO\nquick\tO\tquick\tO\nreference\tO\treference\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\npopup\tB-User_Interface_Element\tpopup\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41641771\tO\t41641771\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41641771/\tO\thttps://stackoverflow.com/questions/41641771/\tO\n\t\n\t\nIt\tO\tIt\tO\nsounds\tO\tsounds\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nalready\tO\talready\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nKingfisher\tB-Library\tKingfisher\tO\nand\tO\tand\tO\nretrieving\tO\tretrieving\tO\nthe\tO\tthe\tO\nUIImage\tB-Library_Class\tUIImage\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nabout\tO\tabout\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nis\tO\tis\tO\ninformation\tO\tinformation\tO\nfor\tO\tfor\tO\nsaving\tO\tsaving\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndocuments\tO\tdocuments\tO\ndirectory\tO\tdirectory\tO\nand\tO\tand\tO\nretrieving\tO\tretrieving\tO\nit\tO\tit\tO\nto\tO\tto\tO\nshare\tO\tshare\tO\n.\tO\t.\tO\n\t\nRetrieve\tO\tRetrieve\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ndirectory\tO\tdirectory\tO\nURL\tO\tURL\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5968\tI-Code_Block\tA_5968\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSaving\tO\tSaving\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ndirectory\tO\tdirectory\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5969\tI-Code_Block\tA_5969\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRetrieving\tO\tRetrieving\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5970\tI-Code_Block\tA_5970\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSharing\tO\tSharing\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5971\tI-Code_Block\tA_5971\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nUse\tO\tUse\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5972\tI-Code_Block\tA_5972\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nas\tO\tas\tO\nDFD\tB-User_Name\tDFD\tO\npointed\tO\tpointed\tO\nout\tO\tout\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nexclude\tO\texclude\tO\ncertain\tO\tcertain\tO\nitems\tO\titems\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nshare\tO\tshare\tO\nVC\tO\tVC\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nallow\tO\tallow\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22814259\tO\t22814259\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22814259/\tO\thttps://stackoverflow.com/questions/22814259/\tO\n\t\n\t\nIn\tO\tIn\tO\nour\tO\tour\tO\napplication\tO\tapplication\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nGDI+\tB-Library\tGDI+\tO\nobjects\tO\tobjects\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nused\tO\tused\tO\noften\tO\toften\tO\nin\tO\tin\tO\nmany\tO\tmany\tO\ndifferent\tO\tdifferent\tO\ncontexts\tO\tcontexts\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nincludes\tO\tincludes\tO\nsome\tO\tsome\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nFont\tB-Library_Class\tFont\tB-Code_Block\n,\tO\t,\tO\nSolidBrush\tB-Library_Class\tSolidBrush\tB-Code_Block\n(\tO\t(\tO\nWhite\tB-Value\tWhite\tO\n,\tO\t,\tO\nBlack.\tB-Value\tBlack.\tO\n.\tO\t.\tO\n)\tO\t)\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nPen.\tB-Library_Class\tPen.\tB-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthose\tO\tthose\tO\nobjects\tO\tobjects\tO\nour\tO\tour\tO\nstrategy\tO\tstrategy\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nto\tO\tto\tO\nhold\tO\thold\tO\nthem\tO\tthem\tO\nthrough\tO\tthrough\tO\nwidely\tO\twidely\tO\nvisible\tO\tvisible\tO\nstatic\tB-Data_Type\tstatic\tO\nread-only\tO\tread-only\tO\nfields\tO\tfields\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\navoids\tO\tavoids\tO\nto\tO\tto\tO\ncreate/dispose\tO\tcreate/dispose\tO\nthem\tO\tthem\tO\nmillions\tO\tmillions\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\ntook\tO\ttook\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nthread-safety\tO\tthread-safety\tO\naccesses\tO\taccesses\tO\non\tO\ton\tO\nthese\tO\tthese\tO\nobject\tO\tobject\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n(\tO\t(\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\njust\tO\tjust\tO\naccessed\tO\taccessed\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthread\tO\tthread\tO\nbasically\tO\tbasically\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\njust\tO\tjust\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nGDI+\tB-Library\tGDI+\tO\nobjects\tO\tobjects\tO\nhold\tO\thold\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlifetime\tO\tlifetime\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\nlike\tO\tlike\tO\n200\tO\t200\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nothers\tO\tothers\tO\nGDI+\tB-Library\tGDI+\tO\nobjects\tO\tobjects\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nones\tO\tones\tO\nwith\tO\twith\tO\nshort-life\tO\tshort-life\tO\n)\tO\t)\tO\nare\tO\tare\tO\nall\tO\tall\tO\ndisposed\tO\tdisposed\tO\nasap\tO\tasap\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwe\tO\twe\tO\nsometime\tO\tsometime\tO\nget\tO\tget\tO\nunexpected\tO\tunexpected\tO\nGDI+\tB-Library\tGDI+\tO\nresources\tO\tresources\tO\noutage\tO\toutage\tO\nexception\tB-Library_Class\texception\tO\n,\tO\t,\tO\nhopefully\tO\thopefully\tO\nrarely\tO\trarely\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nthese\tO\tthese\tO\nexceptions\tB-Library_Class\texceptions\tO\ncould\tO\tcould\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\nthese\tO\tthese\tO\nfew\tO\tfew\tO\nGDI+\tB-Library\tGDI+\tO\nobjects\tO\tobjects\tO\nhold\tO\thold\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nwiser\tO\twiser\tO\nstrategy\tO\tstrategy\tO\nto\tO\tto\tO\ncreate/dispose\tO\tcreate/dispose\tO\ntons\tO\ttons\tO\nof\tO\tof\tO\nshort-life\tO\tshort-life\tO\nGDI+\tB-Library\tGDI+\tO\nobjects\tO\tobjects\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nhave\tO\thave\tO\nreal-world\tO\treal-world\tO\nexperience\tO\texperience\tO\nand\tO\tand\tO\nrelevant\tO\trelevant\tO\nconclusions\tO\tconclusions\tO\nabout\tO\tabout\tO\ntheses\tO\ttheses\tO\ntwo\tO\ttwo\tO\nstrategies\tO\tstrategies\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22814259\tO\t22814259\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22814259/\tO\thttps://stackoverflow.com/questions/22814259/\tO\n\t\n\t\nCaching\tO\tCaching\tO\nSystem.Drawing\tB-Library_Class\tSystem.Drawing\tO\nobjects\tO\tobjects\tO\nis\tO\tis\tO\na\tO\ta\tO\nmistake\tO\tmistake\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\ncheap\tO\tcheap\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\n,\tO\t,\tO\nvery\tO\tvery\tO\nexpensive\tO\texpensive\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\naround\tO\taround\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nare\tO\tare\tO\nallocated\tO\tallocated\tO\non\tO\ton\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nheap\tB-Data_Structure\theap\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nprocesses\tO\tprocesses\tO\non\tO\ton\tO\na\tO\ta\tO\ndesktop\tB-Device\tdesktop\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nshare\tO\tshare\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nheap\tB-Data_Structure\theap\tO\nsize\tO\tsize\tO\nis\tO\tis\tO\nlimited\tO\tlimited\tO\nto\tO\tto\tO\n65535\tO\t65535\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nCreating\tO\tCreating\tO\nobjects\tO\tobjects\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nbrush\tB-Library_Class\tbrush\tO\nor\tO\tor\tO\na\tO\ta\tO\npen\tB-Library_Class\tpen\tO\ntakes\tO\ttakes\tO\nroughly\tO\troughly\tO\na\tO\ta\tO\nmicrosecond\tO\tmicrosecond\tO\n,\tO\t,\tO\nminiscule\tO\tminiscule\tO\ncompared\tO\tcompared\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncost\tO\tcost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noperation\tO\toperation\tO\nyou\tO\tyou\tO\nperform\tO\tperform\tO\nwith\tO\twith\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\ndrawing\tO\tdrawing\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nexpensive\tO\texpensive\tO\nis\tO\tis\tO\na\tO\ta\tO\nFont\tB-Library_Class\tFont\tO\n.\tO\t.\tO\n\t\nCreating\tO\tCreating\tO\none\tO\tone\tO\ninvolves\tO\tinvolves\tO\na\tO\ta\tO\nsizable\tO\tsizable\tO\nchunk\tO\tchunk\tO\nof\tO\tof\tO\noverhead\tO\toverhead\tO\ntaken\tO\ttaken\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nfont\tB-Library_Class\tfont\tO\nmapper\tO\tmapper\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nalready\tO\talready\tO\nsolved\tO\tsolved\tO\nby\tO\tby\tO\n.NET\tB-Library\t.NET\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncaches\tO\tcaches\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nthan\tO\tthan\tO\nhogging\tO\thogging\tO\nthe\tO\tthe\tO\nheap\tB-Data_Structure\theap\tO\nneedlessly\tO\tneedlessly\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nprogramming\tO\tprogramming\tO\nstyle\tO\tstyle\tO\nis\tO\tis\tO\ndangerous\tO\tdangerous\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nfar\tO\tfar\tO\ntoo\tO\ttoo\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nforget\tO\tforget\tO\nblindly\tO\tblindly\tO\napplying\tO\tapplying\tO\nthe\tO\tthe\tO\nusing\tO\tusing\tO\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncertainly\tO\tcertainly\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nyou\tO\tyou\tO\ninto\tO\tinto\tO\ntrouble\tO\ttrouble\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nrelying\tO\trelying\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfinalizer\tO\tfinalizer\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\nrelease\tO\trelease\tO\nthem\tO\tthem\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\ninvolves\tO\tinvolves\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nheavy\tO\theavy\tO\npainting\tO\tpainting\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nenough\tO\tenough\tO\nobject\tO\tobject\tO\nallocation\tO\tallocation\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\nGC\tO\tGC\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nexhaust\tO\texhaust\tO\nthe\tO\tthe\tO\nquota\tO\tquota\tO\nfor\tO\tfor\tO\nGDI\tB-Library\tGDI\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nis\tO\tis\tO\n10,000\tO\t10,000\tO\nobjects\tO\tobjects\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nprocess\tO\tprocess\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ncrash\tO\tcrash\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nSystem.Drawing\tB-Library_Class\tSystem.Drawing\tO\nclass\tO\tclass\tO\nwrappers\tO\twrappers\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nnearly\tO\tnearly\tO\nbig\tO\tbig\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\nGC\tO\tGC\tO\nby\tO\tby\tO\nthemselves\tO\tthemselves\tO\n,\tO\t,\tO\n10000\tO\t10000\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfinalizers\tO\tfinalizers\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nand\tO\tand\tO\nrelease\tO\trelease\tO\nthe\tO\tthe\tO\nhandles\tO\thandles\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\ndiagnose\tO\tdiagnose\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nTask\tB-Application\tTask\tO\nManager\tI-Application\tManager\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nView\tB-Value\tView\tO\n+\tO\t+\tO\nSelect\tB-Value\tSelect\tO\nColumns\tB-User_Interface_Element\tColumns\tO\nand\tO\tand\tO\ntick\tO\ttick\tO\n\"\tB-Value\t\"\tO\nGDI\tI-Value\tGDI\tO\nObjects\tI-Value\tObjects\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nMight\tO\tMight\tO\nas\tO\tas\tO\nwell\tO\twell\tO\ntick\tO\ttick\tO\n\"\tB-Value\t\"\tO\nUSER\tI-Value\tUSER\tO\nObjects\tI-Value\tObjects\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\nanother\tO\tanother\tO\none\tO\tone\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nvery\tO\tvery\tO\neasily\tO\teasily\tO\nleaked\tO\tleaked\tO\n.\tO\t.\tO\n\t\nKeep\tO\tKeep\tO\nan\tO\tan\tO\neye\tO\teye\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndisplayed\tO\tdisplayed\tO\ncounts\tO\tcounts\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\nwhile\tO\twhile\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nsteadily\tO\tsteadily\tO\nclimbing\tO\tclimbing\tO\nnumber\tO\tnumber\tO\nspells\tO\tspells\tO\ndoom\tO\tdoom\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29244745\tO\t29244745\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29244745/\tO\thttps://stackoverflow.com/questions/29244745/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nexperience\tO\texperience\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\npage\tB-Application\tpage\tO\neditor\tI-Application\teditor\tO\nin\tO\tin\tO\nSitecore\tB-Application\tSitecore\tO\nwhich\tO\twhich\tO\nreferences\tO\treferences\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nway\tO\tway\tO\nto\tO\tto\tO\nopen\tO\topen\tO\na\tO\ta\tO\nSPEAK\tB-Library\tSPEAK\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\ncontext\tO\tcontext\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nshould\tO\tshould\tO\nthe\tO\tthe\tO\nwidth/height\tB-Library_Variable\twidth/height\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncommand\tO\tcommand\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3471\tI-Code_Block\tQ_3471\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfinding\tO\tfinding\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nbears\tO\tbears\tO\nno\tO\tno\tO\nresemblance\tO\tresemblance\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nwidth\tB-Library_Variable\twidth\tB-Code_Block\nand\tO\tand\tO\nheight\tB-Library_Variable\theight\tB-Code_Block\nparameters\tO\tparameters\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nSheerResponse.ShowModalDialog\tB-Library_Function\tSheerResponse.ShowModalDialog\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\npassing\tO\tpassing\tO\nin\tO\tin\tO\nvalues\tO\tvalues\tO\nsuffixed\tO\tsuffixed\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\npx\tO\tpx\tO\n\"\tO\t\"\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29244745\tO\t29244745\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29244745/\tO\thttps://stackoverflow.com/questions/29244745/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbox\tO\tbox\tO\nability\tO\tability\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nwidth\tB-Library_Variable\twidth\tO\nand\tO\tand\tO\nheight\tB-Library_Variable\theight\tO\nfor\tO\tfor\tO\nSPEAK-based\tB-Library\tSPEAK-based\tO\ndialogs\tB-User_Interface_Element\tdialogs\tO\nin\tO\tin\tO\nSitecore\tB-Application\tSitecore\tO\n7.5\tB-Version\t7.5\tO\n(\tO\t(\tO\nit\tO\tit\tO\n's\tO\t's\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\n8.0\tB-Version\t8.0\tO\n)\tO\t)\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ncustomize\tO\tcustomize\tO\nthe\tO\tthe\tO\n\\sitecore\\shell\\Controls\\jQueryModalDialogs.html\tB-File_Name\t\\sitecore\\shell\\Controls\\jQueryModalDialogs.html\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nfind\tO\tfind\tO\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nif\tB-Code_Block\tif\tB-Code_Block\nstatement\tO\tstatement\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4162\tI-Code_Block\tA_4162\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nSitecore\tB-Application\tSitecore\tO\n8.0\tB-Version\t8.0\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nmethod\tO\tmethod\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nadded\tO\tadded\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4163\tI-Code_Block\tA_4163\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYour\tO\tYour\tO\nSheerResponse.ShowModalDialog\tB-Code_Block\tSheerResponse.ShowModalDialog\tB-Code_Block\n(\tB-Code_Block\t(\tB-Code_Block\nurl\tI-Code_Block\turl\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n100\tI-Code_Block\t100\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n200\tI-Code_Block\t200\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nstring.Empty\tI-Code_Block\tstring.Empty\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\ntrue\tI-Code_Block\ttrue\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n;\tB-Code_Block\t;\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4164\tI-Code_Block\tA_4164\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDescription\tO\tDescription\tO\nof\tO\tof\tO\nForceDialogSize\tB-Library_Variable\tForceDialogSize\tB-Code_Block\nproperty\tO\tproperty\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2130150\tO\t2130150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2130150/\tO\thttps://stackoverflow.com/questions/2130150/\tO\n\t\n\t\nWhen\tO\tWhen\tO\ndesigning\tO\tdesigning\tO\nmy\tO\tmy\tO\nsoftware\tO\tsoftware\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbegan\tO\tbegan\tO\nwith\tO\twith\tO\ninterfaces\tO\tinterfaces\tO\nsince\tO\tsince\tO\nthis\tO\tthis\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nstandard\tO\tstandard\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\nswitched\tO\tswitched\tO\nto\tO\tto\tO\nabstract\tO\tabstract\tO\nclasses\tO\tclasses\tO\nbecause\tO\tbecause\tO\nthey\tO\tthey\tO\nseem\tO\tseem\tO\nbetter\tO\tbetter\tO\nsuited\tO\tsuited\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nat\tO\tat\tO\nhand\tO\thand\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nI\tO\tI\tO\n've\tO\t've\tO\nmissed\tO\tmissed\tO\nout\tO\tout\tO\non\tO\ton\tO\nsome\tO\tsome\tO\nconsiderations\tO\tconsiderations\tO\nwhen\tO\twhen\tO\nmaking\tO\tmaking\tO\nthis\tO\tthis\tO\ndesign\tO\tdesign\tO\nchoice\tO\tchoice\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nthan\tO\tthan\tO\ndomain\tO\tdomain\tO\nspecific\tO\tspecific\tO\nissues\tO\tissues\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthought\tO\tthought\tO\nabout\tO\tabout\tO\nwhat\tO\twhat\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nmore\tO\tmore\tO\ngeneral\tO\tgeneral\tO\nfactors\tO\tfactors\tO\nto\tO\tto\tO\nconsider\tO\tconsider\tO\nwhen\tO\twhen\tO\nchoosing\tO\tchoosing\tO\nbetween\tO\tbetween\tO\ninterfaces\tO\tinterfaces\tO\nand\tO\tand\tO\nabstracts\tO\tabstracts\tO\nclasses\tO\tclasses\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2130150\tO\t2130150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2130150/\tO\thttps://stackoverflow.com/questions/2130150/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\ninterface\tO\tinterface\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\nreasonable\tO\treasonable\tO\ndefault\tO\tdefault\tO\nbehavior\tO\tbehavior\tO\nfor\tO\tfor\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfunctionality\tO\tfunctionality\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nabstract\tO\tabstract\tO\nclass\tO\tclass\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\ncommon\tO\tcommon\tO\nboilerplate\tO\tboilerplate\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nconcrete\tO\tconcrete\tO\nimplementations\tO\timplementations\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2130150\tO\t2130150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2130150/\tO\thttps://stackoverflow.com/questions/2130150/\tO\n\t\n\t\nI\tO\tI\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\noption\tO\toption\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nboth\tO\tboth\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nalways\tO\talways\tO\npossible\tO\tpossible\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nrelying\tO\trelying\tO\non\tO\ton\tO\nsomething\tO\tsomething\tO\nhappening\tO\thappening\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nProviding\tO\tProviding\tO\nboth\tO\tboth\tO\nan\tO\tan\tO\nabstract\tO\tabstract\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nan\tO\tan\tO\ninterface\tO\tinterface\tO\nallows\tO\tallows\tO\nthe\tO\tthe\tO\ngreatest\tO\tgreatest\tO\nlatitude\tO\tlatitude\tO\nby\tO\tby\tO\nimplementers\tO\timplementers\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nabstraction\tO\tabstraction\tO\n,\tO\t,\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nrequire\tO\trequire\tO\nsomething\tO\tsomething\tO\nhappens\tO\thappens\tO\nby\tO\tby\tO\nan\tO\tan\tO\nimplementer\tO\timplementer\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nrequire\tO\trequire\tO\nthat\tO\tthat\tO\nsomething\tO\tsomething\tO\nhappens\tO\thappens\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nan\tO\tan\tO\ninterface\tO\tinterface\tO\nat\tO\tat\tO\nall--and\tO\tall--and\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\nensures\tO\tensures\tO\nthis\tO\tthis\tO\nrequired\tO\trequired\tO\naction\tO\taction\tO\nto\tO\tto\tO\nALWAYS\tO\tALWAYS\tO\noccur\tO\toccur\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nNegative\tO\tNegative\tO\nto\tO\tto\tO\ndoing\tO\tdoing\tO\nboth\tO\tboth\tO\n:\tO\t:\tO\nmore\tO\tmore\tO\ngoo\tO\tgoo\tO\n.\tO\t.\tO\n\t\nexample\tO\texample\tO\npseudocode\tO\tpseudocode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_209\tI-Code_Block\tA_209\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nsomeone\tO\tsomeone\tO\ncould\tO\tcould\tO\nmake\tO\tmake\tO\ntheir\tO\ttheir\tO\nown\tO\town\tO\nclass\tO\tclass\tO\nthat\tO\tthat\tO\nimplements\tO\timplements\tO\nIVehicle\tB-Class_Name\tIVehicle\tB-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\npass\tO\tpass\tO\nit\tO\tit\tO\nto\tO\tto\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\nan\tO\tan\tO\nIVehicle\tB-Class_Name\tIVehicle\tB-Code_Block\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nobject\tO\tobject\tO\nwould\tO\twould\tO\nNOT\tO\tNOT\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nchild\tO\tchild\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nVehicle\tB-Class_Name\tVehicle\tB-Code_Block\nabstract\tO\tabstract\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\n,\tO\t,\tO\ntherefore\tO\ttherefore\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwere\tO\twere\tO\nto\tO\tto\tO\nexpect\tO\texpect\tO\nsomething\tO\tsomething\tO\nspecific\tO\tspecific\tO\nto\tO\tto\tO\nhappen\tO\thappen\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nPutCarInGear()\tB-Variable_Name\tPutCarInGear()\tB-Code_Block\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nquite\tO\tquite\tO\nlikely\tO\tlikely\tO\nthat\tO\tthat\tO\nthat\tO\tthat\tO\nnew\tO\tnew\tO\nclass\tO\tclass\tO\nwould\tO\twould\tO\nNOT\tO\tNOT\tO\nfulfill\tO\tfulfill\tO\nthat\tO\tthat\tO\nexpectation\tO\texpectation\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nit\tO\tit\tO\nnever\tO\tnever\tO\nmatters\tO\tmatters\tO\nwhat\tO\twhat\tO\nimplementations\tO\timplementations\tO\nof\tO\tof\tO\nIVehicle\tB-Class_Name\tIVehicle\tB-Code_Block\ndo\tO\tdo\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nflexible\tO\tflexible\tO\nabstraction\tO\tabstraction\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nboth\tO\tboth\tO\nan\tO\tan\tO\nabstract\tO\tabstract\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\nAND\tO\tAND\tO\nan\tO\tan\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46371445\tO\t46371445\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46371445/\tO\thttps://stackoverflow.com/questions/46371445/\tO\n\t\n\t\nI\tO\tI\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nencryption\tO\tencryption\tO\ncode\tO\tcode\tO\nusing\tO\tusing\tO\nCryptoJS\tB-Library\tCryptoJS\tO\naes256\tI-Library\taes256\tO\nfrom\tO\tfrom\tO\n.net\tB-Library\t.net\tO\nto\tO\tto\tO\njavascript\tB-Language\tjavascript\tO\n(\tO\t(\tO\nCordova\tB-Library\tCordova\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\n//.Net\tB-Library\t//.Net\tO\nCode\tO\tCode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6081\tI-Code_Block\tQ_6081\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n//\tO\t//\tO\nCordova\tB-Library\tCordova\tO\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsuccessfully\tO\tsuccessfully\tO\nencode\tO\tencode\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nBase64\tB-Data_Type\tBase64\tO\nstring\tI-Data_Type\tstring\tO\nand\tO\tand\tO\ndecode\tO\tdecode\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nencoding\tO\tencoding\tO\nmethod\tO\tmethod\tO\nwritten\tO\twritten\tO\nin\tO\tin\tO\nJavascript(Cordova)\tB-Language\tJavascript(Cordova)\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6082\tI-Code_Block\tQ_6082\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nBase64\tB-Data_Type\tBase64\tO\nstring\tI-Data_Type\tstring\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\none\tO\tone\tO\ngenerated\tO\tgenerated\tO\nby\tO\tby\tO\n.Net\tB-Library\t.Net\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32445202\tO\t32445202\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32445202/\tO\thttps://stackoverflow.com/questions/32445202/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\ndata.frame\tB-Library_Function\tdata.frame\tO\nsample\tO\tsample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3934\tI-Code_Block\tQ_3934\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstay\tO\tstay\tO\nonly\tO\tonly\tO\npairs\tO\tpairs\tO\nlogged_in\tB-Variable_Name\tlogged_in\tB-Code_Block\nand\tO\tand\tO\ndeauthorize\tB-Variable_Name\tdeauthorize\tB-Code_Block\n(\tO\t(\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\ncalculation\tO\tcalculation\tO\ntime\tO\ttime\tO\nbetween\tO\tbetween\tO\nlogs\tO\tlogs\tO\nlogged_in\tB-Variable_Name\tlogged_in\tB-Code_Block\nand\tO\tand\tO\ndeauthorize\tB-Variable_Name\tdeauthorize\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nsome\tO\tsome\tO\nlogs\tO\tlogs\tO\nwas\tO\twas\tO\nlost\tO\tlost\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nmy\tO\tmy\tO\ntable\tB-Data_Structure\ttable\tO\nafter\tO\tafter\tO\nsort\tO\tsort\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3935\tI-Code_Block\tQ_3935\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32445202\tO\t32445202\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32445202/\tO\thttps://stackoverflow.com/questions/32445202/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4635\tI-Code_Block\tA_4635\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nbase\tB-Application\tbase\tB-Code_Block\nR\tI-Application\tR\tI-Code_Block\nsolution\tO\tsolution\tO\nusing\tO\tusing\tO\nR\tB-Language\tR\tO\n's\tO\t's\tO\nfactor\tO\tfactor\tO\ncoercion\tO\tcoercion\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nlocate\tO\tlocate\tO\nthe\tO\tthe\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\n\"\tB-Variable_Name\t\"\tB-Code_Block\ndeauthorize\tI-Variable_Name\tdeauthorize\tI-Code_Block\n\"\tI-Variable_Name\t\"\tI-Code_Block\nby\tO\tby\tO\nusing\tO\tusing\tO\nfactors\tO\tfactors\tO\nto\tO\tto\tO\nour\tO\tour\tO\nadvantage\tO\tadvantage\tO\n.\tO\t.\tO\n\t\nUsually\tO\tUsually\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\na\tO\ta\tO\npain\tO\tpain\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nbeing\tO\tbeing\tO\nable\tO\table\tO\nto\tO\tto\tO\nquickly\tO\tquickly\tO\nturn\tO\tturn\tO\nthe\tO\tthe\tO\nEventName\tB-Variable_Name\tEventName\tB-Code_Block\ncolumn\tB-Data_Structure\tcolumn\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\n1\tB-Value\t1\tO\n's\tO\t's\tO\nand\tO\tand\tO\n2\tB-Value\t2\tO\n's\tO\t's\tO\nhelps\tO\thelps\tO\nquicken\tO\tquicken\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nas.numeric(df$EventName)\tB-Library_Function\tas.numeric(df$EventName)\tB-Code_Block\nfor\tO\tfor\tO\nreference\tO\treference\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthis\tO\tthis\tO\nindex\tO\tindex\tO\nwe\tO\twe\tO\nthen\tO\tthen\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\ncases\tO\tcases\tO\nof\tO\tof\tO\na\tO\ta\tO\n1\tB-Value\t1\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\na\tO\ta\tO\n2\tB-Value\t2\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nof\tO\tof\tO\neach\tO\teach\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\ndiff(as.numeric(df$EventName))\tB-Library_Function\tdiff(as.numeric(df$EventName))\tB-Code_Block\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nus\tO\tus\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nimagine\tO\timagine\tO\nwhich\tO\twhich\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nvector\tB-Data_Structure\tvector\tO\nwill\tO\twill\tO\ntarget\tO\ttarget\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n,\tO\t,\tO\n-1\tB-Value\t-1\tB-Code_Block\n.\tO\t.\tO\n\t\nData\tO\tData\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4636\tI-Code_Block\tA_4636\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48723037\tO\t48723037\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48723037/\tO\thttps://stackoverflow.com/questions/48723037/\tO\n\t\n\t\nPlease\tO\tPlease\tO\nHelp\tO\tHelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\na\tO\ta\tO\nface\tO\tface\tO\nrecognition\tO\trecognition\tO\ndetector\tO\tdetector\tO\npython\tB-Language\tpython\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nsqllite\tB-Application\tsqllite\tO\nstudio\tI-Application\tstudio\tO\ndatabase\tO\tdatabase\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6492\tI-Code_Block\tQ_6492\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthat\tO\tthat\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\n\t\nthe\tO\tthe\tO\nerror\tO\terror\tO\nwas\tO\twas\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6493\tI-Code_Block\tQ_6493\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnd\tO\tAnd\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\npython\tB-Language\tpython\tO\n3.4\tB-Version\t3.4\tO\nand\tO\tand\tO\nopencv\tB-Library\topencv\tO\n3.4\tB-Version\t3.4\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n??\tO\t??\tO\n?\tO\t?\tO\n\t\nim\tO\tim\tO\nnew\tO\tnew\tO\nin\tO\tin\tO\npython\tB-Language\tpython\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48723037\tO\t48723037\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48723037/\tO\thttps://stackoverflow.com/questions/48723037/\tO\n\t\n\t\nIndexing\tO\tIndexing\tO\nis\tO\tis\tO\nzero-based\tO\tzero-based\tO\nin\tO\tin\tO\nPython\tB-Language\tPython\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nmeans\tO\tmeans\tO\n,\tO\t,\tO\ncounting\tO\tcounting\tO\nstarts\tO\tstarts\tO\nfrom\tO\tfrom\tO\n0\tB-Value\t0\tB-Code_Block\nnot\tO\tnot\tO\n1\tB-Value\t1\tB-Code_Block\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nchanging\tO\tchanging\tO\nlines\tO\tlines\tO\n36\tO\t36\tO\nand\tO\tand\tO\n38\tO\t38\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7147\tI-Code_Block\tA_7147\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18870221\tO\t18870221\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18870221/\tO\thttps://stackoverflow.com/questions/18870221/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nauthorization\tO\tauthorization\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nemail\tO\temail\tO\nand\tO\tand\tO\npassword\tO\tpassword\tO\nwithout\tO\twithout\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nbox\tI-User_Interface_Element\tbox\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nextend\tO\textend\tO\naccess_token\tO\taccess_token\tO\n.\tO\t.\tO\n\t\nFunction\tO\tFunction\tO\ngetUser\tB-Library_Function\tgetUser\tO\nin\tO\tin\tO\nPHP\tB-Library\tPHP\tO\nSDK\tI-Library\tSDK\tO\nalways\tO\talways\tO\nreturn\tO\treturn\tO\n0\tB-Value\t0\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\ndo\tO\tdo\tO\npost\tO\tpost\tO\nfeed\tO\tfeed\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfan\tO\tfan\tO\ngroup\tO\tgroup\tO\n's\tO\t's\tO\nwall\tO\twall\tO\nwith\tO\twith\tO\ncronjob\tB-Application\tcronjob\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntry\tO\ttry\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1970\tI-Code_Block\tQ_1970\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithin\tO\twithin\tO\nan\tO\tan\tO\nhour\tO\thour\tO\nand\tO\tand\tO\nif\tO\tif\tO\nI\tO\tI\tO\nalready\tO\talready\tO\nlogged\tO\tlogged\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28026848\tO\t28026848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28026848/\tO\thttps://stackoverflow.com/questions/28026848/\tO\n\t\n\t\nAs\tO\tAs\tO\nsomeone\tO\tsomeone\tO\nwho\tO\twho\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nSwift\tB-Language\tSwift\tO\nand\tO\tand\tO\nCoreData\tB-Library\tCoreData\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nsure\tO\tsure\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngoing\tO\tgoing\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nway\tO\tway\tO\nand\tO\tand\tO\nam\tO\tam\tO\nhoping\tO\thoping\tO\nsomeone\tO\tsomeone\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nBackground\tO\tBackground\tO\n:\tO\t:\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndownloading\tO\tdownloading\tO\nJSON\tB-File_Type\tJSON\tO\nover\tO\tover\tO\nan\tO\tan\tO\nAPI\tB-Library\tAPI\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncaching\tO\tcaching\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nlocally\tO\tlocally\tO\non\tO\ton\tO\nan\tO\tan\tO\niPad\tB-Device\tiPad\tO\nin\tO\tin\tO\nCoreData\tB-Library\tCoreData\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nimage\tB-User_Interface_Element\timage\tO\nthumbnail\tI-User_Interface_Element\tthumbnail\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nstoring\tO\tstoring\tO\nin\tO\tin\tO\nCoreData\tB-Library\tCoreData\tO\n(\tO\t(\tO\nas\tO\tas\tO\na\tO\ta\tO\nTransformable\tB-Data_Type\tTransformable\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ndoing\tO\tdoing\tO\n:\tO\t:\tO\nMy\tO\tMy\tO\noriginal\tO\toriginal\tO\nimplementation\tO\timplementation\tO\ndownloaded\tO\tdownloaded\tO\nimages\tB-User_Interface_Element\timages\tO\nand\tO\tand\tO\nsaved\tO\tsaved\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nCoreData\tB-Library\tCoreData\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nalthough\tO\talthough\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\ntriggered\tO\ttriggered\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\n(\tO\t(\tO\na\tO\ta\tO\ncallback\tO\tcallback\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nAPI\tB-Library\tAPI\tO\ncall\tO\tcall\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\ndownloading\tO\tdownloading\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimages\tB-User_Interface_Element\timages\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\ncause\tO\tcause\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nhang\tO\thang\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3274\tI-Code_Block\tQ_3274\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnow\tO\tnow\tO\ndoing\tO\tdoing\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nsince\tO\tsince\tO\nupdated\tO\tupdated\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3275\tI-Code_Block\tQ_3275\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthus\tO\tthus\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3276\tI-Code_Block\tQ_3276\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDoing\tO\tDoing\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nany\tO\tany\tO\nblocks\tO\tblocks\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nnotice\tO\tnotice\tO\n.\tO\t.\tO\n\t\nInspecting\tO\tInspecting\tO\nthe\tO\tthe\tO\nsqlite\tB-Application\tsqlite\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nas\tO\tas\tO\nthough\tO\tthough\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\ngetting\tO\tgetting\tO\nset\tO\tset\tO\nproperly\tO\tproperly\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nimages\tB-User_Interface_Element\timages\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nshowing\tO\tshowing\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nmy\tO\tmy\tO\nmethod\tO\tmethod\tO\ncompletely\tO\tcompletely\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ninform\tO\tinform\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncore\tB-Library\tcore\tO\ndata\tI-Library\tdata\tO\nmodel\tO\tmodel\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nupdated\tO\tupdated\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\na\tO\ta\tO\nrefresh\tO\trefresh\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nfunction\tO\tfunction\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nrow/cell\tB-User_Interface_Element\trow/cell\tO\nof\tO\tof\tO\na\tO\ta\tO\ntable/uicollectionview\tB-User_Interface_Element\ttable/uicollectionview\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28026848\tO\t28026848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28026848/\tO\thttps://stackoverflow.com/questions/28026848/\tO\n\t\n\t\n\t\nYour\tO\tYour\tO\nNSURLConnection\tB-Library_Class\tNSURLConnection\tO\n's\tO\t's\tO\ncallbacks\tO\tcallbacks\tO\nare\tO\tare\tO\nhappening\tO\thappening\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nqueue\tB-Data_Structure\tqueue\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\none\tO\tone\tO\nreason\tO\treason\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nis\tO\tis\tO\nlocking\tO\tlocking\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nmanaged\tO\tmanaged\tO\nobject\tO\tobject\tO\ncontext\tO\tcontext\tO\n,\tO\t,\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nposted\tO\tposted\tO\n,\tO\t,\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nCore\tB-Library\tCore\tO\nData\tI-Library\tData\tO\nconcurrency\tO\tconcurrency\tO\nrules\tO\trules\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nchoice\tO\tchoice\tO\nbetween\tO\tbetween\tO\nthread\tO\tthread\tO\nconfinement\tO\tconfinement\tO\n(\tO\t(\tO\nunfortunately\tO\tunfortunately\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nobsolete\tO\tobsolete\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nqueue\tB-Data_Structure\tqueue\tO\nconfinement\tO\tconfinement\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthread\tO\tthread\tO\nconfinement\tO\tconfinement\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nmanaged\tO\tmanaged\tO\nobject\tO\tobject\tO\ncontext\tO\tcontext\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncreated\tO\tcreated\tO\nyour\tO\tyour\tO\nmanaged\tO\tmanaged\tO\nobject\tO\tobject\tO\ncontext\tO\tcontext\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\n(\tO\t(\tO\nor\tO\tor\tO\nqueue\tB-Data_Structure\tqueue\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\n-\tO\t-\tO\nso\tO\tso\tO\nany\tO\tany\tO\nCore\tB-Library\tCore\tO\nData\tI-Library\tData\tO\noperation\tO\toperation\tO\nyou\tO\tyou\tO\nperform\tO\tperform\tO\non\tO\ton\tO\nthat\tO\tthat\tO\ncontext\tO\tcontext\tO\nwill\tO\twill\tO\nblock\tO\tblock\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nturn\tO\tturn\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nqueue\tB-Data_Structure\tqueue\tO\nconfinement\tO\tconfinement\tO\n(\tO\t(\tO\nalmost\tO\talmost\tO\n)\tO\t)\tO\nany\tO\tany\tO\noperation\tO\toperation\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmanaged\tO\tmanaged\tO\nobject\tO\tobject\tO\ncontext\tO\tcontext\tO\nmust\tO\tmust\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\neither\tO\teither\tO\nthe\tO\tthe\tO\nperformBlock\tB-Library_Function\tperformBlock\tB-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\nor\tO\tor\tO\nperformBlockAndWait\tB-Library_Function\tperformBlockAndWait\tB-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nenqueued\tO\tenqueued\tO\nblock\tO\tblock\tO\nis\tO\tis\tO\nexecuted\tO\texecuted\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\n's\tO\t's\tO\nserial\tO\tserial\tO\nqueue\tB-Data_Structure\tqueue\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nfar\tO\tfar\tO\nless\tO\tless\tO\nfailure\tO\tfailure\tO\nprone\tO\tprone\tO\nthan\tO\tthan\tO\nthread\tO\tthread\tO\nconfinement\tO\tconfinement\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nthe\tO\tthe\tO\nrecommended\tO\trecommended\tO\npractice\tO\tpractice\tO\nfor\tO\tfor\tO\nconcurrency\tO\tconcurrency\tO\nsince\tO\tsince\tO\niOS\tB-Operating_System\tiOS\tO\n5\tB-Version\t5\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nTypically\tO\tTypically\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nNSFetchedResultsController\tB-Library_Class\tNSFetchedResultsController\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nobserves\tO\tobserves\tO\na\tO\ta\tO\nmanaged\tO\tmanaged\tO\nobject\tO\tobject\tO\ncontext\tO\tcontext\tO\nfor\tO\tfor\tO\nchanges\tO\tchanges\tO\nrelevant\tO\trelevant\tO\nto\tO\tto\tO\nit\tO\tit\tO\n's\tO\t's\tO\nfetch\tO\tfetch\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nfetch\tO\tfetch\tO\npopulates\tO\tpopulates\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nlisten\tO\tlisten\tO\nfor\tO\tfor\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\nthat\tO\tthat\tO\naffect\tO\taffect\tO\nthe\tO\tthe\tO\nobjects\tO\tobjects\tO\nspecified\tO\tspecified\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nfetch\tO\tfetch\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nrelevant\tO\trelevant\tO\nchanges\tO\tchanges\tO\noccur\tO\toccur\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\ninforms\tO\tinforms\tO\nit\tO\tit\tO\n's\tO\t's\tO\ndelegate\tO\tdelegate\tO\nthrough\tO\tthrough\tO\ncallbacks\tO\tcallbacks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38802000\tO\t38802000\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38802000/\tO\thttps://stackoverflow.com/questions/38802000/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\na\tO\ta\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nBufferedImage\tB-Library_Class\tBufferedImage\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncopying\tO\tcopying\tO\nform\tO\tform\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsquare\tO\tsquare\tO\nbut\tO\tbut\tO\nrather\tO\trather\tO\na\tO\ta\tO\nsquare\tO\tsquare\tO\nrotated\tO\trotated\tO\non\tO\ton\tO\nsome\tO\tsome\tO\nangle\tO\tangle\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\noutput\tO\toutput\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nBufferedImage\tB-Library_Class\tBufferedImage\tO\nwith\tO\twith\tO\nwidth\tO\twidth\tO\nand\tO\tand\tO\nheight\tO\theight\tO\nequals\tO\tequals\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncopying\tO\tcopying\tO\nsquare\tO\tsquare\tO\nsize\tO\tsize\tO\nand\tO\tand\tO\ncontents\tO\tcontents\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\ncopying\tO\tcopying\tO\nsquare\tO\tsquare\tO\nintersects\tO\tintersects\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38802000\tO\t38802000\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38802000/\tO\thttps://stackoverflow.com/questions/38802000/\tO\n\t\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\napproach\tO\tapproach\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nimage\tB-User_Interface_Element\timage\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\ntransform\tO\ttransform\tO\na\tO\ta\tO\nGraphics2D\tB-Library_Class\tGraphics2D\tB-Code_Block\nof\tO\tof\tO\nthis\tO\tthis\tO\nimage\tB-User_Interface_Element\timage\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\nsquare\tO\tsquare\tO\nregion\tO\tregion\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsimply\tO\tsimply\tO\npaint\tO\tpaint\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nimage\tB-User_Interface_Element\timage\tO\ninto\tO\tinto\tO\nthis\tO\tthis\tO\ngraphics\tB-User_Interface_Element\tgraphics\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5615\tI-Code_Block\tA_5615\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43232523\tO\t43232523\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43232523/\tO\thttps://stackoverflow.com/questions/43232523/\tO\n\t\n\t\nControl\tO\tControl\tO\n'\tO\t'\tO\nGridView1\tB-Library_Class\tGridView1\tO\n'\tO\t'\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\n'\tO\t'\tO\nGridView\tB-Library_Class\tGridView\tO\n'\tO\t'\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nplaced\tO\tplaced\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nform\tB-HTML_XML_Tag\tform\tO\ntag\tO\ttag\tO\nwith\tO\twith\tO\nrunat\tB-Code_Block\trunat\tO\n=\tI-Code_Block\t=\tO\nserver\tI-Code_Block\tserver\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nexport\tO\texport\tO\nthe\tO\tthe\tO\nGridview\tB-Library_Class\tGridview\tO\nto\tO\tto\tO\nExcel\tB-Application\tExcel\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nexample\tO\texample\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5528\tI-Code_Block\tQ_5528\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43232523\tO\t43232523\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43232523/\tO\thttps://stackoverflow.com/questions/43232523/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nbelow\tO\tbelow\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\n.aspx\tB-File_Type\t.aspx\tO\nfile\tO\tfile\tO\ncontens\tO\tcontens\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6255\tI-Code_Block\tA_6255\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n.aspx.vb\tB-File_Type\t.aspx.vb\tO\nfile\tO\tfile\tO\ncontents\tO\tcontents\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6256\tI-Code_Block\tA_6256\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17677132\tO\t17677132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17677132/\tO\thttps://stackoverflow.com/questions/17677132/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nviews\tB-Library_Variable\tviews\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nlaunching\tO\tlaunching\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nI\tO\tI\tO\nswitch\tO\tswitch\tO\nthe\tO\tthe\tO\nview\tB-Variable_Name\tview\tO\nwith\tO\twith\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1807\tI-Code_Block\tQ_1807\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nwhenever\tO\twhenever\tO\ni\tO\ti\tO\nswitch\tO\tswitch\tO\nthe\tO\tthe\tO\nview\tB-Library_Variable\tview\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nabove\tO\tabove\tO\ninitialize\tO\tinitialize\tO\nthe\tO\tthe\tO\nview\tB-Library_Variable\tview\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmaintain\tO\tmaintain\tO\nprevious\tO\tprevious\tO\nstatus\tO\tstatus\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nview\tB-Library_Variable\tview\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17677132\tO\t17677132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17677132/\tO\thttps://stackoverflow.com/questions/17677132/\tO\n\t\n\t\nOn\tO\tOn\tO\nan\tO\tan\tO\niPad\tB-Device\tiPad\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\npresent\tO\tpresent\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nview\tB-Library_Variable\tview\tO\nmodally\tO\tmodally\tO\n,\tO\t,\tO\nas\tO\tas\tO\ndictated\tO\tdictated\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nviews\tO\tviews\tO\nmodalTransitionStyle\tB-Library_Variable\tmodalTransitionStyle\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthere\tO\tthere\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nget\tO\tget\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nby\tO\tby\tO\ncalling\tO\tcalling\tO\ndismissViewControllerAnimated:completion\tB-Library_Function\tdismissViewControllerAnimated:completion\tB-Code_Block\n:\tO\t:\tI-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nViewController\tB-Library\tViewController\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\niPhone\tB-Device\tiPhone\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nUINavigationController\tB-Library_Class\tUINavigationController\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nstoryboard\tB-Application\tstoryboard\tO\nto\tO\tto\tO\npush\tO\tpush\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\npop\tO\tpop\tO\nthe\tO\tthe\tO\nsecondViewController\tB-Variable_Name\tsecondViewController\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nstoryboard\tO\tstoryboard\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\ntransition\tO\ttransition\tO\nthere\tO\tthere\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nperform\tO\tperform\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\n-\tO\t-\tO\nperformSegueWithIdentifier:sender\tB-Library_Function\tperformSegueWithIdentifier:sender\tB-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nmatter\tO\tmatter\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nconnect\tO\tconnect\tO\nthe\tO\tthe\tO\nsegue\tB-Library_Class\tsegue\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\ntransition\tO\ttransition\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nperformed\tO\tperformed\tO\nwithout\tO\twithout\tO\nadditional\tO\tadditional\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17677132\tO\t17677132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17677132/\tO\thttps://stackoverflow.com/questions/17677132/\tO\n\t\n\t\ninstantiateViewControllerWithIdentifier\tB-Library_Function\tinstantiateViewControllerWithIdentifier\tB-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\nalways\tO\talways\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nan\tO\tan\tO\nUIViewController\tB-Library_Class\tUIViewController\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\na\tO\ta\tO\nprevious\tO\tprevious\tO\none\tO\tone\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nit\tO\tit\tO\nover\tO\tover\tO\nand\tO\tand\tO\nover\tO\tover\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41557013\tO\t41557013\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41557013/\tO\thttps://stackoverflow.com/questions/41557013/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nAvplayer\tB-Library_Class\tAvplayer\tO\nresume\tO\tresume\tO\nfrom\tO\tfrom\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nstopped\tO\tstopped\tO\n,\tO\t,\tO\nby\tO\tby\tO\nmake\tO\tmake\tO\nglobal\tB-Data_Type\tglobal\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nCMtime\tB-Library_Class\tCMtime\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\ncurrenttime\tB-Library_Function\tcurrenttime\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nto\tO\tto\tO\nresume\tO\tresume\tO\nfrom\tO\tfrom\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nstopped\tO\tstopped\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5278\tI-Code_Block\tQ_5278\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nseek(to:)\tB-Library_Function\tseek(to:)\tO\n\t\nnothing\tO\tnothing\tO\nchanged\tO\tchanged\tO\nit\tO\tit\tO\nalso\tO\talso\tO\nstart\tO\tstart\tO\nfrom\tO\tfrom\tO\nbeginning\tO\tbeginning\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\ncurrenttime\tB-Variable_Name\tcurrenttime\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5279\tI-Code_Block\tQ_5279\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\nalways\tO\talways\tO\nstart\tO\tstart\tO\nfrom\tO\tfrom\tO\nbeginning\tO\tbeginning\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\nAVAudioPlayer\tB-Library_Class\tAVAudioPlayer\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nmuch\tO\tmuch\tO\neasier\tO\teasier\tO\nthan\tO\tthan\tO\nAVplayer\tB-Library_Class\tAVplayer\tO\n\t\nbut\tO\tbut\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nstream\tO\tstream\tO\nAudio\tO\tAudio\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nto\tO\tto\tO\nAVplayer\tB-Library_Class\tAVplayer\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41557013\tO\t41557013\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41557013/\tO\thttps://stackoverflow.com/questions/41557013/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\nseconds\tB-Variable_Name\tseconds\tO\nfrom\tO\tfrom\tO\nCMtime\tB-Library_Class\tCMtime\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\non\tO\ton\tO\nUnwind\tB-Library_Function\tUnwind\tO\nsegue\tI-Library_Function\tsegue\tO\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5959\tI-Code_Block\tQ_5959\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n2.in\tO\t2.in\tO\nviewdidload\tB-Function_Name\tviewdidload\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5960\tI-Code_Block\tA_5960\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nperfect\tO\tperfect\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\neverytime\tO\teverytime\tO\nit\tO\tit\tO\nre-download\tO\tre-download\tO\na\tO\ta\tO\naudio\tO\taudio\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nresume\tO\tresume\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nmean\tO\tmean\tO\nIf\tO\tIf\tO\nI\tO\tI\tO\nplay\tO\tplay\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nreturn\tO\treturn\tO\nto\tO\tto\tO\ntableview\tO\ttableview\tO\nthen\tO\tthen\tO\nreturn\tO\treturn\tO\nback\tO\tback\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\npurse\tO\tpurse\tO\nand\tO\tand\tO\nwait\tO\twait\tO\nsome\tO\tsome\tO\nsecond\tO\tsecond\tO\nthen\tO\tthen\tO\nplay\tO\tplay\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nstopped\tO\tstopped\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46659479\tO\t46659479\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46659479/\tO\thttps://stackoverflow.com/questions/46659479/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable\tB-User_Interface_Element\ttable\tO\ncell\tI-User_Interface_Element\tcell\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nxml\tB-HTML_XML_Tag\txml\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\ntwo\tO\ttwo\tO\nTextViews\tB-Library_Class\tTextViews\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\ncopies\tO\tcopies\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\ncell\tB-User_Interface_Element\tcell\tO\nand\tO\tand\tO\nassign\tO\tassign\tO\nvalues\tO\tvalues\tO\ninto\tO\tinto\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\njava\tB-Language\tjava\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nother\tO\tother\tO\ncells\tB-User_Interface_Element\tcells\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproperty\tO\tproperty\tO\nas\tO\tas\tO\nthat\tO\tthat\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\ncell\tB-User_Interface_Element\tcell\tO\nbackground\tO\tbackground\tO\ncolor\tO\tcolor\tO\n,\tO\t,\tO\nfont\tO\tfont\tO\ntype\tO\ttype\tO\n,\tO\t,\tO\nfont\tO\tfont\tO\nsize\tO\tsize\tO\netc\tO\tetc\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\ncell\tB-User_Interface_Element\tcell\tO\nwill\tO\twill\tO\nspan\tO\tspan\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nfirst\tO\tfirst\tO\nrow\tB-User_Interface_Element\trow\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nrow\tB-User_Interface_Element\trow\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nmultiple\tO\tmultiple\tO\nrows\tB-User_Interface_Element\trows\tO\nafter\tO\tafter\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nachieve\tO\tachieve\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nandroid\tB-Operating_System\tandroid\tO\nprogramming\tO\tprogramming\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nxml\tB-File_Type\txml\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6147\tI-Code_Block\tQ_6147\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26063673\tO\t26063673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26063673/\tO\thttps://stackoverflow.com/questions/26063673/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\n.gradlew\tB-Code_Block\t.gradlew\tO\ncreateCoverageReport\tI-Code_Block\tcreateCoverageReport\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2981\tI-Code_Block\tQ_2981\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\naccess\tO\taccess\tO\nthat\tO\tthat\tO\nindex.html\tB-File_Name\tindex.html\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nits\tO\tits\tO\ncrashing.\tO\tcrashing.\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\ngets\tO\tgets\tO\nto\tO\tto\tO\nabout\tO\tabout\tO\n98%\tO\t98%\tO\nbefore\tO\tbefore\tO\nthis\tO\tthis\tO\nfail\tO\tfail\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nnexus\tB-Device\tnexus\tO\n5\tB-Version\t5\tO\nconnected\tO\tconnected\tO\nrunning\tO\trunning\tO\n4.4.\tB-Version\t4.4.\tO\n.\tO\t.\tO\n\t\nmy\tO\tmy\tO\nbuild.gradle\tB-File_Name\tbuild.gradle\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2982\tI-Code_Block\tQ_2982\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26063673\tO\t26063673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26063673/\tO\thttps://stackoverflow.com/questions/26063673/\tO\n\t\n\t\nThe\tO\tThe\tO\napply\tO\tapply\tO\nplug-in\tO\tplug-in\tO\npart\tO\tpart\tO\ncauses\tO\tcauses\tO\nthe\tO\tthe\tO\ntests\tO\ttests\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nLike\tO\tLike\tO\nBill\tB-User_Name\tBill\tO\nsuggested\tO\tsuggested\tO\ngradle\tB-Application\tgradle\tO\n's\tO\t's\tO\nlatest\tO\tlatest\tO\nrelease\tO\trelease\tO\nhas\tO\thas\tO\njacoco\tB-Library\tjacoco\tO\npackaged\tO\tpackaged\tO\nwithin\tO\twithin\tO\nso\tO\tso\tO\nit\tO\tit\tO\nneed\tO\tneed\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\napplied\tO\tapplied\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ntests\tO\ttests\tO\nrecently\tO\trecently\tO\nbroke\tO\tbroke\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nRemoving\tO\tRemoving\tO\nthat\tO\tthat\tO\nline\tO\tline\tO\nfixed\tO\tfixed\tO\nmy\tO\tmy\tO\nissue\tO\tissue\tO\nand\tO\tand\tO\nI\tO\tI\tO\nget\tO\tget\tO\nmy\tO\tmy\tO\nreports\tO\treports\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26063673\tO\t26063673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26063673/\tO\thttps://stackoverflow.com/questions/26063673/\tO\n\t\n\t\nCouple\tO\tCouple\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nfix\tO\tfix\tO\nyour\tO\tyour\tO\nfirst\tO\tfirst\tO\nerror\tO\terror\tO\n\"\tO\t\"\tO\nInstrumentation\tO\tInstrumentation\tO\nrun\tO\trun\tO\nfailed\tO\tfailed\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\n'\tO\t'\tO\njava.lang.VerifyError\tB-Error_Name\tjava.lang.VerifyError\tO\n'\tO\t'\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nupgrade\tO\tupgrade\tO\nyour\tO\tyour\tO\nbuild\tB-Application\tbuild\tO\ntools\tI-Application\ttools\tO\nto\tO\tto\tO\n21+\tB-Version\t21+\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nandroid\tB-Application\tandroid\tO\nbuild\tI-Application\tbuild\tO\ntools\tI-Application\ttools\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nfixed\tO\tfixed\tO\n.\tO\t.\tO\n\t\nHooray\tO\tHooray\tO\n!\tO\t!\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\napply\tO\tapply\tO\nthe\tO\tthe\tO\njacoco\tB-Library\tjacoco\tO\nplugin\tO\tplugin\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nandroid\tB-Application\tandroid\tO\ngradle\tI-Application\tgradle\tO\nplugin\tO\tplugin\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\n'\tO\t'\tO\ntestCoverageEnabled\tB-Code_Block\ttestCoverageEnabled\tO\ntrue\tI-Code_Block\ttrue\tO\n'\tO\t'\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\n.ec\tB-File_Type\t.ec\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nApplying\tO\tApplying\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhurt\tO\thurt\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nhelpful\tO\thelpful\tO\nto\tO\tto\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nmind\tO\tmind\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\njacoco\tB-Library\tjacoco\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\nalready\tO\talready\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\noverride\tO\toverride\tO\nfor\tO\tfor\tO\n'\tO\t'\tO\nreportsDir\tB-Library_Variable\treportsDir\tO\n'\tO\t'\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nreport\tO\treport\tO\nin\tO\tin\tO\n'\tO\t'\tO\nbuild/outputs/reports/coverage/debug/index.html\tO\tbuild/outputs/reports/coverage/debug/index.html\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7845542\tO\t7845542\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7845542/\tO\thttps://stackoverflow.com/questions/7845542/\tO\n\t\n\t\nhow\tO\thow\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nclosest\tO\tclosest\tO\ncraigslist\tB-Website\tcraigslist\tO\nsite\tO\tsite\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\naddress(zip)\tO\taddress(zip)\tO\n?\tO\t?\tO\n\t\nor\tO\tor\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nthinking\tO\tthinking\tO\nof\tO\tof\tO\nmaking\tO\tmaking\tO\nthat\tO\tthat\tO\nmapping\tO\tmapping\tO\nmyself\tO\tmyself\tO\nby\tO\tby\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ncraigslist\tB-Website\tcraigslist\tO\nsites\tO\tsites\tO\ncity-wise/state\tO\tcity-wise/state\tO\n-wise\tO\t-wise\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7845542\tO\t7845542\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7845542/\tO\thttps://stackoverflow.com/questions/7845542/\tO\n\t\n\t\nIndeed\tO\tIndeed\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nCraigslist\tB-Website\tCraigslist\tO\nsites/cities\tO\tsites/cities\tO\n,\tO\t,\tO\nprebuild\tO\tprebuild\tO\na\tO\ta\tO\nmapping\tO\tmapping\tO\nof\tO\tof\tO\ncities\tO\tcities\tO\nto\tO\tto\tO\ncoordinates\tO\tcoordinates\tO\nusing\tO\tusing\tO\nsome\tO\tsome\tO\ngeocoding\tB-Library\tgeocoding\tO\nAPI\tO\tAPI\tO\n(\tO\t(\tO\nTiny\tB-Library\tTiny\tO\nGeocoder\tI-Library\tGeocoder\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nmind\tO\tmind\tO\nbut\tO\tbut\tO\nYahoo\tB-Website\tYahoo\tO\nand\tO\tand\tO\nBing\tB-Website\tBing\tO\noffer\tO\toffer\tO\ngood\tO\tgood\tO\nsolutions\tO\tsolutions\tO\ntoo\tO\ttoo\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nstoring\tO\tstoring\tO\nit\tO\tit\tO\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nmakes\tO\tmakes\tO\nsort-by-nearest\tO\tsort-by-nearest\tO\neasy\tO\teasy\tO\n(\tO\t(\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\nMySQL\tB-Application\tMySQL\tO\n's\tO\t's\tO\ngeospatial\tO\tgeospatial\tO\nextensions\tO\textensions\tO\nor\tO\tor\tO\nMongoDB's\tB-Application\tMongoDB's\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2135509\tO\t2135509\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2135509/\tO\thttps://stackoverflow.com/questions/2135509/\tO\n\t\n\t\nI\tO\tI\tO\ncame\tO\tcame\tO\nacross\tO\tacross\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nreproduced\tO\treproduced\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nbuilt\tO\tbuilt\tO\nwith\tO\twith\tO\noptimizations\tO\toptimizations\tO\nenabled\tO\tenabled\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nconsole\tB-Application\tconsole\tO\napp\tO\tapp\tO\nthat\tO\tthat\tO\nreplicates\tO\treplicates\tO\nthe\tO\tthe\tO\nlogic\tO\tlogic\tO\nfor\tO\tfor\tO\ntesting\tO\ttesting\tO\n(\tO\t(\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\noptimization\tO\toptimization\tO\nis\tO\tis\tO\nenabled\tO\tenabled\tO\n'\tO\t'\tO\nvalue\tB-Library_Variable\tvalue\tO\n'\tO\t'\tO\nbecomes\tO\tbecomes\tO\nnull\tB-Value\tnull\tO\nafter\tO\tafter\tO\nexecution\tO\texecution\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\ninvalid\tO\tinvalid\tO\nlogic\tO\tlogic\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_135\tI-Code_Block\tQ_135\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nfix\tO\tfix\tO\nis\tO\tis\tO\nstraight\tO\tstraight\tO\nforward\tO\tforward\tO\nand\tO\tand\tO\nis\tO\tis\tO\ncommented\tO\tcommented\tO\nout\tO\tout\tO\nbelow\tO\tbelow\tO\nthe\tO\tthe\tO\noffending\tO\toffending\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nmore\tO\tmore\tO\nconcerned\tO\tconcerned\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\ncome\tO\tcome\tO\nacross\tO\tacross\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nassembler\tB-Application\tassembler\tO\nor\tO\tor\tO\nperhaps\tO\tperhaps\tO\nsomeone\tO\tsomeone\tO\nelse\tO\telse\tO\nhas\tO\thas\tO\nan\tO\tan\tO\nexplanation\tO\texplanation\tO\nof\tO\tof\tO\nwhy\tO\twhy\tO\nvalue\tB-Variable_Name\tvalue\tO\ngets\tO\tgets\tO\nset\tO\tset\tO\nto\tO\tto\tO\nnull\tB-Value\tnull\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_136\tI-Code_Block\tQ_136\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nnormal\tO\tnormal\tO\noutput\tO\toutput\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_137\tI-Code_Block\tQ_137\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nbuggy\tO\tbuggy\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_138\tI-Code_Block\tQ_138\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nEnv\tO\tEnv\tO\nis\tO\tis\tO\na\tO\ta\tO\nVM\tB-Application\tVM\tO\nrunning\tO\trunning\tO\nWindows\tB-Operating_System\tWindows\tO\nServer\tI-Operating_System\tServer\tO\n2003\tB-Version\t2003\tO\nR2\tI-Version\tR2\tO\nwith\tO\twith\tO\n.NET\tB-Library\t.NET\tO\n3.5\tB-Version\t3.5\tO\nSP1\tI-Version\tSP1\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nVS2008\tB-Application\tVS2008\tO\nTeam\tO\tTeam\tO\nSystem\tO\tSystem\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\n\t\nBrian\tB-User_Name\tBrian\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2135509\tO\t2135509\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2135509/\tO\thttps://stackoverflow.com/questions/2135509/\tO\n\t\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nexpression\tO\texpression\tO\nfatally\tO\tfatally\tO\nconfuses\tO\tconfuses\tO\nthe\tO\tthe\tO\nJIT\tO\tJIT\tO\noptimizer\tO\toptimizer\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ngenerated\tO\tgenerated\tO\nmachine\tO\tmachine\tO\ncode\tO\tcode\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_211\tI-Code_Block\tA_211\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nbug\tO\tbug\tO\noccurs\tO\toccurs\tO\nat\tO\tat\tO\naddress\tB-Library_Variable\taddress\tO\n41\tB-Value\t41\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\noptimizer\tO\toptimizer\tO\nhas\tO\thas\tO\nconcluded\tO\tconcluded\tO\nthat\tO\tthat\tO\nvalue\tB-Variable_Name\tvalue\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\nnull\tB-Value\tnull\tO\nso\tO\tso\tO\nit\tO\tit\tO\ndirectly\tO\tdirectly\tO\npasses\tO\tpasses\tO\na\tO\ta\tO\nnull\tB-Value\tnull\tO\nto\tO\tto\tO\nString.Concat()\tB-Library_Function\tString.Concat()\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ncomparison\tO\tcomparison\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\ngenerated\tO\tgenerated\tO\nwhen\tO\twhen\tO\nJIT\tO\tJIT\tO\noptimization\tO\toptimization\tO\nis\tO\tis\tO\nturned\tO\tturned\tO\noff\tO\toff\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_212\tI-Code_Block\tA_212\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\ngot\tO\tgot\tO\nmoved\tO\tmoved\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nat\tO\tat\tO\naddress\tB-Library_Variable\taddress\tO\n5c\tB-Value\t5c\tO\nit\tO\tit\tO\nnow\tO\tnow\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\nvariable\tO\tvariable\tO\n(\tO\t(\tO\nvalue\tB-Variable_Name\tvalue\tO\n)\tO\t)\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nnull\tB-Value\tnull\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nreport\tO\treport\tO\nthis\tO\tthis\tO\nbug\tO\tbug\tO\nat\tO\tat\tO\nconnect.microsoft.com\tO\tconnect.microsoft.com\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nworkaround\tO\tworkaround\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_213\tI-Code_Block\tA_213\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2135509\tO\t2135509\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2135509/\tO\thttps://stackoverflow.com/questions/2135509/\tO\n\t\n\t\nThis\tO\tThis\tO\nbug\tO\tbug\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nfixed\tO\tfixed\tO\nin\tO\tin\tO\n.NET\tB-Library\t.NET\tO\n4\tB-Version\t4\tO\n(\tO\t(\tO\nbeta\tB-Version\tbeta\tO\n2)\tI-Version\t2)\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\noptimized\tO\toptimized\tO\nx86\tO\tx86\tO\ndisassembly\tO\tdisassembly\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbit\tO\tbit\tO\nnobugz\tO\tnobugz\tO\nhighlighted\tO\thighlighted\tO\n,\tO\t,\tO\nabove\tO\tabove\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_219\tI-Code_Block\tA_219\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nprogram\tO\tprogram\tO\nalso\tO\talso\tO\ndisplays\tO\tdisplays\tO\nthe\tO\tthe\tO\nexpected\tO\texpected\tO\noutput\tO\toutput\tO\nin\tO\tin\tO\nboth\tO\tboth\tO\noptimized\tO\toptimized\tO\nand\tO\tand\tO\nunoptimized\tO\tunoptimized\tO\nmodes\tO\tmodes\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48719257\tO\t48719257\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48719257/\tO\thttps://stackoverflow.com/questions/48719257/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\ndevelop\tO\tdevelop\tO\none\tO\tone\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\nForge\tB-Library\tForge\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nworking\tO\tworking\tO\nwell\tO\twell\tO\nand\tO\tand\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\ndesign\tO\tdesign\tO\nautomation\tO\tautomation\tO\nin\tO\tin\tO\nforge\tB-Application\tforge\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nable\tO\table\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nPackage\tO\tPackage\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\ndwg\tB-File_Type\tdwg\tO\nfile\tO\tfile\tO\nusing\tO\tusing\tO\nforge\tB-Library\tforge\tO\napi\tI-Library\tapi\tO\npreparing\tO\tpreparing\tO\nto\tO\tto\tO\nviewer\tO\tviewer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nable\tO\table\tO\nto\tO\tto\tO\nview\tO\tview\tO\ndwg\tB-File_Type\tdwg\tO\nin\tO\tin\tO\nbrowser\tB-Application\tbrowser\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nviewer\tO\tviewer\tO\nclick\tO\tclick\tO\nevent\tO\tevent\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nclick\tO\tclick\tO\npopulate\tO\tpopulate\tO\nthe\tO\tthe\tO\nelement\tB-Library_Variable\telement\tO\nid\tI-Library_Variable\tid\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\npackage\tO\tpackage\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nobject\tB-Library_Variable\tobject\tO\nid\tI-Library_Variable\tid\tO\n.\tO\t.\tO\n\t\nelement\tB-Library_Variable\telement\tO\nid\tI-Library_Variable\tid\tO\nand\tO\tand\tO\nobject\tB-Library_Variable\tobject\tO\nid\tI-Library_Variable\tid\tO\ntotally\tO\ttotally\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nconman\tB-Library_Variable\tconman\tO\nid\tI-Library_Variable\tid\tO\neach\tO\teach\tO\nobject\tO\tobject\tO\nclient\tO\tclient\tO\nand\tO\tand\tO\nserver\tO\tserver\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nSummary\tO\tSummary\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nviewer\tO\tviewer\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncapture\tO\tcapture\tO\nid\tO\tid\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\nmy\tO\tmy\tO\nlocal\tO\tlocal\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nusing\tO\tusing\tO\npackage\tO\tpackage\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nclicked\tO\tclicked\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\ndrawing\tO\tdrawing\tO\nnumber\tO\tnumber\tO\nin\tO\tin\tO\nviewer\tO\tviewer\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ndrawing\tO\tdrawing\tO\nnumber\tO\tnumber\tO\ndynamically\tO\tdynamically\tO\nusing\tO\tusing\tO\ncall\tO\tcall\tO\npackage\tO\tpackage\tO\nfrom\tO\tfrom\tO\nC#\tB-Language\tC#\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48719257\tO\t48719257\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48719257/\tO\thttps://stackoverflow.com/questions/48719257/\tO\n\t\n\t\nFor\tO\tFor\tO\nan\tO\tan\tO\nRVT\tB-File_Type\tRVT\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\none\tO\tone\tO\neasy\tO\teasy\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nto\tO\tto\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\nForge\tB-Application\tForge\tO\nexternalId\tB-Library_Variable\texternalId\tB-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nForge\tB-Application\tForge\tO\nobject\tO\tobject\tO\nproperties\tO\tproperties\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nRevit\tB-Library\tRevit\tO\nelement\tO\telement\tO\nUniqueId\tB-Library_Variable\tUniqueId\tB-Code_Block\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nRvtMetaProp\tB-Library_Function\tRvtMetaProp\tO\nRevit\tB-Library\tRevit\tO\nadd-in\tO\tadd-in\tO\nmakes\tO\tmakes\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nOh\tO\tOh\tO\n,\tO\t,\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\n,\tO\t,\tO\nmore\tO\tmore\tO\ncomplete\tO\tcomplete\tO\nand\tO\tand\tO\nsuccinct\tO\tsuccinct\tO\nexplanation\tO\texplanation\tO\nof\tO\tof\tO\nUnique\tO\tUnique\tO\nIDs\tO\tIDs\tO\nfor\tO\tfor\tO\nForge\tB-Application\tForge\tO\nViewer\tB-User_Interface_Element\tViewer\tO\nElements\tO\tElements\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nViewer\tB-User_Interface_Element\tViewer\tO\ngives\tO\tgives\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nthree\tO\tthree\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nIDs\tO\tIDs\tO\nwhen\tO\twhen\tO\ndealing\tO\tdealing\tO\nwith\tO\twith\tO\nRevit\tB-Library\tRevit\tO\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\t\ndbId\tB-Library_Variable\tdbId\tB-Code_Block\n:\tO\t:\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nviewer\tO\tviewer\tO\nspecific\tO\tspecific\tO\nand\tO\tand\tO\nused\tO\tused\tO\nto\tO\tto\tO\nmanipulate\tO\tmanipulate\tO\nelements\tO\telements\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nviewer\tO\tviewer\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n.getProperties()\tB-Library_Function\t.getProperties()\tB-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nRevit\tB-Library\tRevit\tO\nElementID\tB-Library_Variable\tElementID\tB-Code_Block\n:\tO\t:\tO\nexposed\tO\texposed\tO\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nName\tB-Variable_Name\tName\tB-Code_Block\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nviewer\tO\tviewer\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nselect\tO\tselect\tO\nsomething\tO\tsomething\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nProperty\tB-User_Interface_Element\tProperty\tO\npanel\tI-User_Interface_Element\tpanel\tO\ntitle\tO\ttitle\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nof\tO\tof\tO\n'\tB-Value\t'\tO\nName\tI-Value\tName\tO\n[\tB-Value\t[\tO\n12345\tI-Value\t12345\tO\n]\tI-Value\t]\tO\n'\tB-Value\t'\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nparse\tO\tparse\tO\nthis\tO\tthis\tO\nname\tO\tname\tO\nstring\tB-Data_Type\tstring\tO\nand\tO\tand\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\nelement\tB-Library_Variable\telement\tO\nid\tI-Library_Variable\tid\tO\n.\tO\t.\tO\n\t\nRevit\tB-Library\tRevit\tO\nUniqueID\tB-Library_Variable\tUniqueID\tB-Code_Block\n:\tO\t:\tO\nexposed\tO\texposed\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nexternalId\tB-Library_Variable\texternalId\tB-Code_Block\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n.getProperty()\tB-Library_Function\t.getProperty()\tB-Code_Block\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16282000\tO\t16282000\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16282000/\tO\thttps://stackoverflow.com/questions/16282000/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nsurprised\tO\tsurprised\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nstraightforward\tO\tstraightforward\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nNothing\tO\tNothing\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nor\tO\tor\tO\non\tO\ton\tO\nSO\tB-Website\tSO\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nhtml\tB-Language\thtml\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1621\tI-Code_Block\tQ_1621\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nevoke\tO\tevoke\tO\nsave\tO\tsave\tO\nas\tO\tas\tO\ndialog\tB-HTML_XML_Tag\tdialog\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nopening\tO\topening\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nin\tO\tin\tO\nnew\tO\tnew\tO\nwindow\tB-User_Interface_Element\twindow\tO\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nformat\tO\tformat\tO\nunderstood\tO\tunderstood\tO\nby\tO\tby\tO\nbrowser\tB-Application\tbrowser\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nsome\tO\tsome\tO\njavascript\tB-Language\tjavascript\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\n,\tO\t,\tO\nor\tO\tor\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16282000\tO\t16282000\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16282000/\tO\thttps://stackoverflow.com/questions/16282000/\tO\n\t\n\t\nYou\tO\tYou\tO\nabsolutely\tO\tabsolutely\tO\ncannot\tO\tcannot\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\non\tO\ton\tO\nclient\tB-Application\tclient\tO\nside\tO\tside\tO\n,\tO\t,\tO\nneither\tO\tneither\tO\nin\tO\tin\tO\nHTML\tB-Language\tHTML\tO\n,\tO\t,\tO\nnor\tO\tnor\tO\nJavascript\tB-Language\tJavascript\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nsending\tO\tsending\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nHTTP\tO\tHTTP\tO\nresponse\tO\tresponse\tO\nheaders\tO\theaders\tO\nfrom\tO\tfrom\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35909768\tO\t35909768\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35909768/\tO\thttps://stackoverflow.com/questions/35909768/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nwhen\tO\twhen\tO\nhitting\tO\thitting\tO\nFEB\tB-Library\tFEB\tO\nREST\tI-Library\tREST\tO\nAPI\tI-Library\tAPI\tO\nfor\tO\tfor\tO\ngetting\tO\tgetting\tO\nrecord\tO\trecord\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\npassing\tO\tpassing\tO\nAuthorization\tO\tAuthorization\tO\nheader\tO\theader\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nget\tO\tget\tO\nrequest\tO\trequest\tO\nusing\tO\tusing\tO\nfollowing\tO\tfollowing\tO\nURL\tO\tURL\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nJava\tB-Language\tJava\tO\nfor\tO\tfor\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\nREST\tB-Library\tREST\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhitting\tO\thitting\tO\nsame\tO\tsame\tO\nURL\tO\tURL\tO\nusing\tO\tusing\tO\npostman\tB-Application\tpostman\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nperfectly\tO\tperfectly\tO\n.\tO\t.\tO\n\t\nURL\tO\tURL\tO\n:\tO\t:\tO\nhttp://localhost/forms-basic/secure/org/data/f0720c16-d4b8-442f-8674-2d7fbdab8afc/F_Form1/8d4dfeed-aa11-45fc-a958-23d62d9328cc\tO\thttp://localhost/forms-basic/secure/org/data/f0720c16-d4b8-442f-8674-2d7fbdab8afc/F_Form1/8d4dfeed-aa11-45fc-a958-23d62d9328cc\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4396\tI-Code_Block\tQ_4396\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35909768\tO\t35909768\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35909768/\tO\thttps://stackoverflow.com/questions/35909768/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\npassed\tO\tpassed\tO\naccept\tO\taccept\tO\nheader\tO\theader\tO\nas\tO\tas\tO\napplication/atom\tB-Code_Block\tapplication/atom\tO\n+xml\tI-Code_Block\t+xml\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nheader\tO\theader\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nit\tO\tit\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nissues\tO\tissues\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30229264\tO\t30229264\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30229264/\tO\thttps://stackoverflow.com/questions/30229264/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nways\tO\tways\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\ndrop\tB-User_Interface_Element\tdrop\tO\ndown\tI-User_Interface_Element\tdown\tO\nlist\tI-User_Interface_Element\tlist\tO\nin\tO\tin\tO\nExcel\tB-Application\tExcel\tO\n:\tO\t:\tO\n\t\nData\tB-User_Interface_Element\tData\tO\nvalidation\tI-User_Interface_Element\tvalidation\tO\nlist\tI-User_Interface_Element\tlist\tO\n\t\nCombobox\tB-User_Interface_Element\tCombobox\tO\nform\tO\tform\tO\ncontrol\tO\tcontrol\tO\n\t\nNow\tO\tNow\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nData\tB-User_Interface_Element\tData\tO\nvalidation\tI-User_Interface_Element\tvalidation\tO\ndropdown\tI-User_Interface_Element\tdropdown\tO\nlists\tI-User_Interface_Element\tlists\tO\nwich\tO\twich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ntoo\tO\ttoo\tO\nlong\tO\tlong\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsearch\tO\tsearch\tO\nfunctionality\tO\tfunctionality\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfind\tO\tfind\tO\nsome\tO\tsome\tO\nsolutions\tO\tsolutions\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\ncombobox\tB-User_Interface_Element\tcombobox\tO\ncontrol\tO\tcontrol\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nnot\tO\tnot\tO\napplicable\tO\tapplicable\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nExcel\tB-Application\tExcel\tO\ndocument\tO\tdocument\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\ntheese\tO\ttheese\tO\ndropdown\tB-Data_Structure\tdropdown\tO\nlists\tI-Data_Structure\tlists\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nrepeated\tO\trepeated\tO\nin\tO\tin\tO\neach\tO\teach\tO\nrow\tB-Data_Structure\trow\tO\n:\tO\t:\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\npossible\tO\tpossible\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsearch\tO\tsearch\tO\nfunctionality\tO\tfunctionality\tO\nto\tO\tto\tO\ndatavalidation\tO\tdatavalidation\tO\ndropdown\tB-User_Interface_Element\tdropdown\tO\nlist\tI-User_Interface_Element\tlist\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2551073\tO\t2551073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2551073/\tO\thttps://stackoverflow.com/questions/2551073/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nobjects\tO\tobjects\tO\nretrieved\tO\tretrieved\tO\nby\tO\tby\tO\nNHibernate\tB-Library\tNHibernate\tO\nover\tO\tover\tO\nWCF\tB-Library\tWCF\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhenever\tO\twhenever\tO\na\tO\ta\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nof\tO\tof\tO\nICollection\tB-Library_Class\tICollection\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nNHibernate\tB-Library\tNHibernate\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nthis\tO\tthis\tO\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nintitialized\tO\tintitialized\tO\nwith\tO\twith\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nPersistentGenericSet\tB-Library_Class\tPersistentGenericSet\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nPersistentGenericSet\tB-Library_Class\tPersistentGenericSet\tO\nover\tO\tover\tO\nWCF\tB-Library\tWCF\tO\n?\tO\t?\tO\n\t\n-or\tO\t-or\tO\n-\tO\t-\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\nmaking\tO\tmaking\tO\nNHibernate\tB-Library\tNHibernate\tO\ninitialize\tO\tinitialize\tO\nthese\tO\tthese\tO\nproperties\tO\tproperties\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\ntype\tO\ttype\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2551073\tO\t2551073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2551073/\tO\thttps://stackoverflow.com/questions/2551073/\tO\n\t\n\t\nThe\tO\tThe\tO\nPersistentGenericSet\tB-Library_Class\tPersistentGenericSet\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nNHibernate\tB-Library\tNHibernate\tO\n(\tO\t(\tO\nused\tO\tused\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\ncollections\tO\tcollections\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nISet\tB-Library_Class\tISet\tO\ninterface\tO\tinterface\tO\nand\tO\tand\tO\nclasses\tO\tclasses\tO\nfrom\tO\tfrom\tO\nIesi.Collections\tB-Library\tIesi.Collections\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwas\tO\twas\tO\nused\tO\tused\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\na\tO\ta\tO\ngap\tO\tgap\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n.Net\tB-Library\t.Net\tO\nframework\tO\tframework\tO\nas\tO\tas\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\nSet\tB-Library_Class\tSet\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nthat\tO\tthat\tO\nWCF\tB-Library\tWCF\tO\nhas\tO\thas\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nserializing\tO\tserializing\tO\nthis\tO\tthis\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nquick\tO\tquick\tO\nfix\tO\tfix\tO\nis\tO\tis\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\nNHibernate\tB-Library\tNHibernate\tO\nmappings\tO\tmappings\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nBag\tB-Library_Class\tBag\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nSet\tB-Library_Class\tSet\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nnormal\tO\tnormal\tO\nIList\tB-Library_Class\tIList\tB-Code_Block\n<T>\tI-Library_Class\t<T>\tI-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nSet<T>\tB-Library_Class\tSet<T>\tB-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\nclasses\tO\tclasses\tO\nw\tO\tw\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nremote\tO\tremote\tO\nfacade\tO\tfacade\tO\nwhich\tO\twhich\tO\nsends\tO\tsends\tO\nDTOs\tO\tDTOs\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nWCF\tB-Library\tWCF\tO\nendpoints\tO\tendpoints\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ninternal\tO\tinternal\tO\ntypes\tO\ttypes\tO\nseparate\tO\tseparate\tO\nfrom\tO\tfrom\tO\nthose\tO\tthose\tO\nexposed\tO\texposed\tO\nas\tO\tas\tO\nremote\tO\tremote\tO\nservices\tO\tservices\tO\n.\tO\t.\tO\n\t\nJimmy\tB-User_Name\tJimmy\tO\nBogards\tI-User_Name\tBogards\tO\nAutomapper\tB-Library\tAutomapper\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\ntool\tO\ttool\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nmapping\tO\tmapping\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n\t\nAfter\tO\tAfter\tO\nre-reading\tO\tre-reading\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nhad\tO\thad\tO\na\tO\ta\tO\nlook\tO\tlook\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nand\tO\tand\tO\ncame\tO\tcame\tO\nacross\tO\tacross\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\nwhich\tO\twhich\tO\ndescribes\tO\tdescribes\tO\na\tO\ta\tO\nworkaround\tO\tworkaround\tO\nfor\tO\tfor\tO\nsending\tO\tsending\tO\nNHibernate\tB-Library\tNHibernate\tO\ncollections\tO\tcollections\tO\nover\tO\tover\tO\nWCF\tB-Library\tWCF\tO\n.\tO\t.\tO\n\t\nDavid\tB-User_Name\tDavid\tO\nBrion\tI-User_Name\tBrion\tO\nhas\tO\thas\tO\nwritten\tO\twritten\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nfollow\tO\tfollow\tO\nup\tO\tup\tO\narticle\tO\tarticle\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16434254\tO\t16434254\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16434254/\tO\thttps://stackoverflow.com/questions/16434254/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\ninstaller\tO\tinstaller\tO\ncreated\tO\tcreated\tO\nusing\tO\tusing\tO\nInstallshield\tB-Application\tInstallshield\tO\n2012\tB-Version\t2012\tO\nthat\tO\tthat\tO\ndepends\tO\tdepends\tO\ngreatly\tO\tgreatly\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\na\tO\ta\tO\nRegistry\tO\tRegistry\tO\nkey\tO\tkey\tO\nwritten\tO\twritten\tO\nby\tO\tby\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\napplication\tO\tapplication\tO\ndeveloped\tO\tdeveloped\tO\nin-house\tO\tin-house\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nRegDBGetKeyValueEx\tB-Library_Function\tRegDBGetKeyValueEx\tO\nInstallscript\tB-Library\tInstallscript\tO\nAPI\tI-Library\tAPI\tO\nto\tO\tto\tO\nfetch\tO\tfetch\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\npath\tO\tpath\tO\nguaranteed\tO\tguaranteed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntrailing\tO\ttrailing\tO\nbackslash\tO\tbackslash\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nvalue\tO\tvalue\tO\nserves\tO\tserves\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nTARGETDIR\tB-Variable_Name\tTARGETDIR\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\ninstaller\tO\tinstaller\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\noften\tO\toften\tO\nsee\tO\tsee\tO\na\tO\ta\tO\nforeign\tO\tforeign\tO\ncharacter\tB-Data_Type\tcharacter\tO\n(\tO\t(\tO\nChinese\tO\tChinese\tO\n,\tO\t,\tO\nJapanese\tO\tJapanese\tO\nor\tO\tor\tO\nKorean\tO\tKorean\tO\n)\tO\t)\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbackslash.This\tB-Value\tbackslash.This\tO\ncauses\tO\tcauses\tO\nmy\tO\tmy\tO\nTARGETDIR\tB-Variable_Name\tTARGETDIR\tO\nto\tO\tto\tO\ncontain\tO\tcontain\tO\nthe\tO\tthe\tO\nforeign\tO\tforeign\tO\ncharacter\tB-Data_Type\tcharacter\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npollutes\tO\tpollutes\tO\nmy\tO\tmy\tO\ninstallation\tO\tinstallation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nInstallscript\tB-Library\tInstallscript\tO\nAPI\tI-Library\tAPI\tO\nwhich\tO\twhich\tO\nwrongly\tO\twrongly\tO\ntranslates\tO\ttranslates\tO\nthe\tO\tthe\tO\nRegistry\tO\tRegistry\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nprovide\tO\tprovide\tO\nsome\tO\tsome\tO\ninputs\tO\tinputs\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nmay\tO\tmay\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nroot-cause\tO\troot-cause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n1\tO\t1\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\napplication\tO\tapplication\tO\nin\tO\tin\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\na\tO\ta\tO\npurely\tO\tpurely\tO\nANSI\tO\tANSI\tO\napplication\tO\tapplication\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nUnicode\tO\tUnicode\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\n#define\tB-Code_Block\t#define\tO\nUNICODE\tI-Code_Block\tUNICODE\tO\nspecified\tO\tspecified\tO\nanywhere\tO\tanywhere\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nchecked\tO\tchecked\tO\nthe\tO\tthe\tO\ncompiler\tO\tcompiler\tO\nparameters\tO\tparameters\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nnothing\tO\tnothing\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nUnicode\tO\tUnicode\tO\nspecified\tO\tspecified\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\napplication\tO\tapplication\tO\nreads\tO\treads\tO\none\tO\tone\tO\nRegistry\tO\tRegistry\tO\nkey\tO\tkey\tO\nand\tO\tand\tO\nappends\tO\tappends\tO\na\tO\ta\tO\nbackslash\tO\tbackslash\tO\nand\tO\tand\tO\nupdates\tO\tupdates\tO\nother\tO\tother\tO\nkeys\tO\tkeys\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthis\tO\tthis\tO\noperation\tO\toperation\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nmy\tO\tmy\tO\ninstaller\tO\tinstaller\tO\nfetches\tO\tfetches\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nwritten\tO\twritten\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1647\tI-Code_Block\tQ_1647\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nvalues\tO\tvalues\tO\nupdated\tO\tupdated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nare\tO\tare\tO\nthen\tO\tthen\tO\nwritten\tO\twritten\tO\nto\tO\tto\tO\nregistry\tB-Variable_Name\tregistry\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nInstallscript\tB-Library\tInstallscript\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nfetches\tO\tfetches\tO\nthese\tO\tthese\tO\nvalues\tO\tvalues\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1648\tI-Code_Block\tQ_1648\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n2\tO\t2\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nthe\tO\tthe\tO\nregistry\tB-Variable_Name\tregistry\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nset\tO\tset\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nwrong\tO\twrong\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1649\tI-Code_Block\tQ_1649\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ncode\tO\tcode\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1650\tI-Code_Block\tQ_1650\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16434254\tO\t16434254\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16434254/\tO\thttps://stackoverflow.com/questions/16434254/\tO\n\t\n\t\nIn\tO\tIn\tO\nsome\tO\tsome\tO\ncode\tO\tcode\tO\npages\tO\tpages\tO\nthe\tO\tthe\tO\ncurrency\tO\tcurrency\tO\nsymbol\tO\tsymbol\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbyte\tB-Data_Type\tbyte\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nASCII\tO\tASCII\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nbackslash\tB-Value\tbackslash\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nUnicode\tO\tUnicode\tO\nfunctions\tO\tfunctions\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nhttp://www.siao2.com/2005/09/17/469941.aspx\tO\thttp://www.siao2.com/2005/09/17/469941.aspx\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16434254\tO\t16434254\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16434254/\tO\thttps://stackoverflow.com/questions/16434254/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nassigning\tO\tassigning\tO\nthe\tO\tthe\tO\nRegistry\tO\tRegistry\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nm_reqPath\tB-Variable_Name\tm_reqPath\tB-Code_Block\nvariable\tO\tvariable\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntreating\tO\ttreating\tO\nit\tO\tit\tO\nas\tO\tas\tO\nnull-terminated\tB-Value\tnull-terminated\tO\ncharacter\tB-Data_Type\tcharacter\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nstring\tB-Data_Type\tstring\tO\ndata\tO\tdata\tO\nread\tO\tread\tO\nby\tO\tby\tO\nRegQueryValueEx()\tB-Library_Function\tRegQueryValueEx()\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nguaranteed\tO\tguaranteed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nnull-terminated\tB-Value\tnull-terminated\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nwriter\tO\twriter\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\ninclude\tO\tinclude\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nclearly\tO\tclearly\tO\nstated\tO\tstated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nChances\tO\tChances\tO\nare\tO\tare\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\ndata\tO\tdata\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nreading\tO\treading\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nRegistry\tO\tRegistry\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nnull-terminated\tB-Value\tnull-terminated\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nend\tO\tend\tO\nup\tO\tup\tO\ncopying\tO\tcopying\tO\nrandom\tO\trandom\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nbuffer\tB-Library_Class\tbuffer\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\naccount\tO\taccount\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\npossibility\tO\tpossibility\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nallocate\tO\tallocate\tO\nextra\tO\textra\tO\nspace\tO\tspace\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nbuffer\tB-Library_Class\tbuffer\tO\nand\tO\tand\tO\nput\tO\tput\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nnull\tB-Value\tnull\tO\nterminator\tO\tterminator\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nwhatever\tO\twhatever\tO\ndata\tO\tdata\tO\nyou\tO\tyou\tO\nactually\tO\tactually\tO\nread\tO\tread\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nproperly\tO\tproperly\tO\nnull\tB-Value\tnull\tO\nterminated\tO\tterminated\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyour\tO\tyour\tO\nterminator\tO\tterminator\tO\nwill\tO\twill\tO\nsimply\tO\tsimply\tO\nbe\tO\tbe\tO\nredundant\tO\tredundant\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nalso\tO\talso\tO\nleaking\tO\tleaking\tO\nthe\tO\tthe\tO\nopened\tO\topened\tO\nRegistry\tO\tRegistry\tO\nkey\tO\tkey\tO\nhandle\tO\thandle\tO\nif\tO\tif\tO\nRegOpenKeyEx()\tB-Library_Function\tRegOpenKeyEx()\tB-Code_Block\nsucceeds\tO\tsucceeds\tO\nbut\tO\tbut\tO\nRegQueryValueEx()\tB-Library_Function\tRegQueryValueEx()\tB-Code_Block\nfails\tO\tfails\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\ninstead\tO\tinstead\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2123\tI-Code_Block\tA_2123\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\navoid\tO\tavoid\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\naltogether\tO\taltogether\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nRegGetValue()\tB-Library_Function\tRegGetValue()\tB-Code_Block\ninstead\tO\tinstead\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndeals\tO\tdeals\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnull\tB-Value\tnull\tO\nterminator\tO\tterminator\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2124\tI-Code_Block\tA_2124\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2125\tI-Code_Block\tA_2125\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33223737\tO\t33223737\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33223737/\tO\thttps://stackoverflow.com/questions/33223737/\tO\n\t\n\t\nA\tO\tA\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\npositioning\tO\tpositioning\tO\nproblems\tO\tproblems\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\neasily\tO\teasily\tO\nsolvable\tO\tsolvable\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nCSS\tB-Language\tCSS\tO\ndisplay\tB-Code_Block\tdisplay\tO\n:\tI-Code_Block\t:\tO\ntable\tI-Code_Block\ttable\tO\nrule\tO\trule\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ngive\tO\tgive\tO\nit\tO\tit\tO\na\tO\ta\tO\ntry\tO\ttry\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfooter\tB-User_Interface_Element\tfooter\tO\ncompletely\tO\tcompletely\tO\ndisappears\tO\tdisappears\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\n.\tO\t.\tO\n\t\nhtml\tB-Language\thtml\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4027\tI-Code_Block\tQ_4027\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ncss\tB-Language\tcss\tO\nwith\tO\twith\tO\nsass\tB-Language\tsass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4028\tI-Code_Block\tQ_4028\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\ncodepen\tB-Application\tcodepen\tO\n:\tO\t:\tO\n\t\nhttp://codepen.io/colintoh/pen/tGmDp\tO\thttp://codepen.io/colintoh/pen/tGmDp\tO\n\t\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nfooter\tB-User_Interface_Element\tfooter\tO\njust\tO\tjust\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nshowing\tO\tshowing\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nfixing\tO\tfixing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nedit\tO\tedit\tO\n:\tO\t:\tO\n\t\nCSS\tB-Language\tCSS\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4029\tI-Code_Block\tQ_4029\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nFirefox\tB-Application\tFirefox\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33223737\tO\t33223737\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33223737/\tO\thttps://stackoverflow.com/questions/33223737/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4726\tI-Code_Block\tA_4726\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nyour\tO\tyour\tO\nfooter\tB-User_Interface_Element\tfooter\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\ntake\tO\ttake\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nspace\tO\tspace\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nfit\tO\tfit\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\ninside\tO\tinside\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nbrowsers\tB-Application\tbrowsers\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nallow\tO\tallow\tO\nfor\tO\tfor\tO\nempty\tO\tempty\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\n.\tO\t.\tO\n\t\nAdd\tO\tAdd\tO\nsome\tO\tsome\tO\ncontent\tO\tcontent\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nfooter\tB-User_Interface_Element\tfooter\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nbrowser\tB-Application\tbrowser\tO\n.\tO\t.\tO\n\t\nJSFiddle\tB-Application\tJSFiddle\tO\n:\tO\t:\tO\nhttps://jsfiddle.net/rq9nm772/1/\tO\thttps://jsfiddle.net/rq9nm772/1/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31276231\tO\t31276231\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31276231/\tO\thttps://stackoverflow.com/questions/31276231/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nstrange\tO\tstrange\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nresponse\tO\tresponse\tO\nwith\tO\twith\tO\nJSON\tB-File_Type\tJSON\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3757\tI-Code_Block\tQ_3757\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nparseResponse()\tB-Function_Name\tparseResponse()\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nwritten\tO\twritten\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3758\tI-Code_Block\tQ_3758\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsomehow\tO\tsomehow\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nappeared\tO\tappeared\tO\nin\tO\tin\tO\nRecyclerView\tB-Library_Class\tRecyclerView\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nbefore\tO\tbefore\tO\nonPostExecute\tB-Library_Function\tonPostExecute\tO\nis\tO\tis\tO\nshown\tO\tshown\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nin\tO\tin\tO\npost\tO\tpost\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\nprogressbar\tB-Library_Class\tprogressbar\tO\nshould\tO\tshould\tO\ngo\tO\tgo\tO\ninvisible\tO\tinvisible\tO\nand\tO\tand\tO\nnotifydatasetchange\tB-Library_Function\tnotifydatasetchange\tB-Code_Block\nshould\tO\tshould\tO\nalso\tO\talso\tO\nappear\tO\tappear\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ndata\tO\tdata\tO\nappears\tO\tappears\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nprogressbar\tB-Library_Class\tprogressbar\tO\ngoes\tO\tgoes\tO\ninvisible\tO\tinvisible\tO\nand\tO\tand\tO\nnotifyDataSetChange()\tB-Library_Function\tnotifyDataSetChange()\tB-Code_Block\nfired\tO\tfired\tO\n,\tO\t,\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nplease\tO\tplease\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31276231\tO\t31276231\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31276231/\tO\thttps://stackoverflow.com/questions/31276231/\tO\n\t\n\t\nAn\tO\tAn\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tB-Code_Block\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\nnothing\tO\tnothing\tO\nfrom\tO\tfrom\tO\ndoInBackground()\tB-Library_Function\tdoInBackground()\tB-Code_Block\n(\tO\t(\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ncommunicate\tO\tcommunicate\tO\nwith\tO\twith\tO\nonPostExecute()\tB-Library_Function\tonPostExecute()\tB-Code_Block\nvia\tO\tvia\tO\nprivate\tO\tprivate\tO\nmembers\tO\tmembers\tO\n)\tO\t)\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nsuspicious\tO\tsuspicious\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nside\tO\tside\tO\neffects\tO\teffects\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tB-Code_Block\nand\tO\tand\tO\nthat\tO\tthat\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nstuff\tO\tstuff\tO\nis\tO\tis\tO\nhard\tO\thard\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\ncityList\tB-Variable_Name\tcityList\tB-Code_Block\nand\tO\tand\tO\nactiveOrders\tB-Variable_Name\tactiveOrders\tB-Code_Block\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nshowing\tO\tshowing\tO\nwhat\tO\twhat\tO\nthat\tO\tthat\tO\nactually\tO\tactually\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nPresumably\tO\tPresumably\tO\nthose\tO\tthose\tO\nare\tO\tare\tO\nlists\tB-Data_Structure\tlists\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nAdapter\tB-Library_Class\tAdapter\tB-Code_Block\nand\tO\tand\tO\nadding\tO\tadding\tO\nto\tO\tto\tO\nthose\tO\tthose\tO\nmight\tO\tmight\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\nView\tB-Library_Class\tView\tB-Code_Block\nattached\tO\tattached\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAdapter\tB-Library_Class\tAdapter\tB-Code_Block\nto\tO\tto\tO\nbe\tO\tbe\tO\nre-drawn\tO\tre-drawn\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ntry\tO\ttry\tO\ncalling\tO\tcalling\tO\nsetNotifyOnChange(false)\tB-Library_Function\tsetNotifyOnChange(false)\tB-Code_Block\non\tO\ton\tO\nmAdapter\tB-Variable_Name\tmAdapter\tB-Code_Block\n(\tO\t(\tO\nto\tO\tto\tO\ndelay\tO\tdelay\tO\nupdates\tO\tupdates\tO\nuntil\tO\tuntil\tO\nyou\tO\tyou\tO\nmanually\tO\tmanually\tO\ncall\tO\tcall\tO\nnotifyDataSetChanged()\tB-Library_Function\tnotifyDataSetChanged()\tB-Code_Block\nlater\tO\tlater\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nhttp://developer.android.com/reference/android/widget/ArrayAdapter.html#setNotifyOnChange(boolean)\tO\thttp://developer.android.com/reference/android/widget/ArrayAdapter.html#setNotifyOnChange(boolean)\tO\n\t\nIn\tO\tIn\tO\ngeneral\tO\tgeneral\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tB-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nreturn\tO\treturn\tO\nanything\tO\tanything\tO\nor\tO\tor\tO\notherwise\tO\totherwise\tO\n\"\tO\t\"\tO\ncommunicate\tO\tcommunicate\tO\n\"\tO\t\"\tO\nwith\tO\twith\tO\nonPostExecute()\tB-Library_Function\tonPostExecute()\tB-Code_Block\nthere\tO\tthere\tO\nis\tO\tis\tO\nlittle\tO\tlittle\tO\npoint\tO\tpoint\tO\nin\tO\tin\tO\nhaving\tO\thaving\tO\nonPostExecute()\tB-Library_Function\tonPostExecute()\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nbetter\tO\tbetter\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nside\tO\tside\tO\neffect\tO\teffect\tO\nin\tO\tin\tO\ndoInBackground()\tB-Library_Function\tdoInBackground()\tB-Code_Block\nand\tO\tand\tO\ninstead\tO\tinstead\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nparsed\tO\tparsed\tO\ndata\tO\tdata\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nto\tO\tto\tO\ncityList\tB-Variable_Name\tcityList\tB-Code_Block\nand\tO\tand\tO\nactiveOrders\tB-Variable_Name\tactiveOrders\tB-Code_Block\nin\tO\tin\tO\nonPostExecute()\tB-Library_Function\tonPostExecute()\tB-Code_Block\n.\tO\t.\tO\n\t\nMulti-threading\tO\tMulti-threading\tO\nis\tO\tis\tO\ntricky\tO\ttricky\tO\nand\tO\tand\tO\nAsyncTasks\tB-Library_Class\tAsyncTasks\tB-Code_Block\nwhile\tO\twhile\tO\nappearing/attempting\tO\tappearing/attempting\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\neasier\tO\teasier\tO\n,\tO\t,\tO\nhave\tO\thave\tO\nmany\tO\tmany\tO\npitfalls\tO\tpitfalls\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nattempted\tO\tattempted\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\non\tO\ton\tO\nthread\tO\tthread\tO\nsafety\tO\tsafety\tO\nof\tO\tof\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tB-Code_Block\nhere\tO\there\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31276231\tO\t31276231\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31276231/\tO\thttps://stackoverflow.com/questions/31276231/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nprivilege\tO\tprivilege\tO\nto\tO\tto\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\npost\tO\tpost\tO\nit\tO\tit\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhappen\tO\thappen\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nlisteners\tB-Library_Class\tlisteners\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nordersDatabase\tB-Variable_Name\tordersDatabase\tB-Code_Block\n,\tO\t,\tO\ncityList\tB-Variable_Name\tcityList\tB-Code_Block\nor\tO\tor\tO\nactiveOrders\tB-Variable_Name\tactiveOrders\tB-Code_Block\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46801774\tO\t46801774\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46801774/\tO\thttps://stackoverflow.com/questions/46801774/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nRewriteRule\tB-Variable_Name\tRewriteRule\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\n.htaccess\tB-File_Type\t.htaccess\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nCondition\tO\tCondition\tO\nis\tO\tis\tO\nfollowing\tO\tfollowing\tO\n,\tO\t,\tO\nForce\tO\tForce\tO\nAll\tO\tAll\tO\nuser\tO\tuser\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\nto\tO\tto\tO\nHTTP\tO\tHTTP\tO\nwith\tO\twith\tO\nwww\tO\twww\tO\nand\tO\tand\tO\nforce\tO\tforce\tO\nsecure-email\tO\tsecure-email\tO\nfolder\tO\tfolder\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nhttps\tO\thttps\tO\nwith\tO\twith\tO\nwww\tO\twww\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthis\tO\tthis\tO\nRewriteRule\tB-Variable_Name\tRewriteRule\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46801774\tO\t46801774\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46801774/\tO\thttps://stackoverflow.com/questions/46801774/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nadapt\tO\tadapt\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nneed\tO\tneed\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6799\tI-Code_Block\tA_6799\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFYI\tO\tFYI\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nonly\tO\tonly\tO\nwith\tO\twith\tO\nApache\tB-Application\tApache\tO\nversion\tO\tversion\tO\n>=\tO\t>=\tO\n2.4\tB-Version\t2.4\tO\nor\tO\tor\tO\nelse\tO\telse\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmod_rewrite\tB-Library_Function\tmod_rewrite\tO\n\t\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nhere\tO\there\tO\nand\tO\tand\tO\nhere\tO\there\tO\nto\tO\tto\tO\nadapt\tO\tadapt\tO\nthe\tO\tthe\tO\nrules\tO\trules\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nhighly\tO\thighly\tO\nrecommend\tO\trecommend\tO\nsetting\tO\tsetting\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\nover\tO\tover\tO\nHTTPS\tO\tHTTPS\tO\n(\tO\t(\tO\nHTTPS\tO\tHTTPS\tO\nis\tO\tis\tO\na\tO\ta\tO\nrequirement\tO\trequirement\tO\nfor\tO\tfor\tO\nmany\tO\tmany\tO\nnew\tO\tnew\tO\nbrowser\tB-Application\tbrowser\tO\nfeatures\tO\tfeatures\tO\n,\tO\t,\tO\nparticularly\tO\tparticularly\tO\nthose\tO\tthose\tO\nrequired\tO\trequired\tO\nfor\tO\tfor\tO\nProgressive\tO\tProgressive\tO\nWeb\tO\tWeb\tO\nApps\tO\tApps\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43233599\tO\t43233599\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43233599/\tO\thttps://stackoverflow.com/questions/43233599/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndefined\tO\tdefined\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nsynonyms\tO\tsynonyms\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5529\tI-Code_Block\tQ_5529\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ndefined\tO\tdefined\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntype\tO\ttype\tO\nand\tO\tand\tO\ntype\tO\ttype\tO\nsynonym\tO\tsynonym\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5530\tI-Code_Block\tQ_5530\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nconstruct\tO\tconstruct\tO\na\tO\ta\tO\ngraph\tB-Data_Structure\tgraph\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5531\tI-Code_Block\tQ_5531\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ntuples\tB-Data_Structure\ttuples\tO\nis\tO\tis\tO\nprovided\tO\tprovided\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nelement\tO\telement\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntuple\tB-Data_Structure\ttuple\tO\nis\tO\tis\tO\nanother\tO\tanother\tO\ntuple\tB-Data_Structure\ttuple\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nas\tO\tas\tO\nper\tO\tper\tO\nthe\tO\tthe\tO\nfunctions\tO\tfunctions\tO\ntype\tO\ttype\tO\nsignature\tO\tsignature\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nHaskell\tB-Language\tHaskell\tO\nso\tO\tso\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\nsome\tO\tsome\tO\ndifficulty\tO\tdifficulty\tO\nin\tO\tin\tO\ndeciphering\tO\tdeciphering\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5532\tI-Code_Block\tQ_5532\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nconcluded\tO\tconcluded\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntype\tO\ttype\tO\nmismatches\tO\tmismatches\tO\nbut\tO\tbut\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nclear\tO\tclear\tO\nhow\tO\thow\tO\nso\tO\tso\tO\n,\tO\t,\tO\ngiven\tO\tgiven\tO\nthe\tO\tthe\tO\ntypes\tO\ttypes\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ndefined\tO\tdefined\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nfunctions\tO\tfunctions\tO\ntype\tO\ttype\tO\nsignature\tO\tsignature\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43233599\tO\t43233599\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43233599/\tO\thttps://stackoverflow.com/questions/43233599/\tO\n\t\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nuseful\tO\tuseful\tO\nexercise\tO\texercise\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nand\tO\tand\tO\nas\tO\tas\tO\na\tO\ta\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\nmaking\tO\tmaking\tO\nthis\tO\tthis\tO\nmistake\tO\tmistake\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nlearned\tO\tlearned\tO\nto\tO\tto\tO\nbetter\tO\tbetter\tO\nunderstand\tO\tunderstand\tO\noperator\tO\toperator\tO\nprecedence\tO\tprecedence\tO\nand\tO\tand\tO\nparsing\tO\tparsing\tO\nin\tO\tin\tO\nHaskell\tB-Language\tHaskell\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nmore\tO\tmore\tO\nexperience\tO\texperience\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nrealize\tO\trealize\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nhave\tO\thave\tO\navoided\tO\tavoided\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwound\tO\twound\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nsimpler\tO\tsimpler\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\na\tO\ta\tO\nresult\tO\tresult\tO\n,\tO\t,\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\npattern\tO\tpattern\tO\nmatching\tO\tmatching\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncomposing\tO\tcomposing\tO\ncalls\tO\tcalls\tO\nto\tO\tto\tO\nfst\tB-Library_Function\tfst\tB-Code_Block\nand\tO\tand\tO\nsnd\tB-Library_Function\tsnd\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6259\tI-Code_Block\tA_6259\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nshaped\tO\tshaped\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nit\tO\tit\tO\nconsumes\tO\tconsumes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\ndescriptive\tO\tdescriptive\tO\nnames\tO\tnames\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nyou\tO\tyou\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nimprovement\tO\timprovement\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nobserving\tO\tobserving\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nrecursive\tO\trecursive\tO\npattern\tO\tpattern\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\ncommon\tO\tcommon\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\neach\tO\teach\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nindependent\tO\tindependent\tO\nof\tO\tof\tO\neach\tO\teach\tO\nother\tO\tother\tO\n,\tO\t,\tO\nand\tO\tand\tO\nconstruct\tO\tconstruct\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\nmap\tB-Library_Function\tmap\tB-Code_Block\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\ndeals\tO\tdeals\tO\nwith\tO\twith\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nPGM\tB-Variable_Name\tPGM\tO\nitems\tO\titems\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nmap\tB-Library_Function\tmap\tB-Code_Block\nto\tO\tto\tO\nextend\tO\textend\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\non\tO\ton\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6260\tI-Code_Block\tA_6260\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43233599\tO\t43233599\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43233599/\tO\thttps://stackoverflow.com/questions/43233599/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nf\tB-Code_Block\tf\tB-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\ng\tI-Code_Block\tg\tI-Code_Block\nx\tI-Code_Block\tx\tI-Code_Block\nis\tO\tis\tO\nf\tB-Code_Block\tf\tB-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ng\tI-Code_Block\tg\tI-Code_Block\nx\tI-Code_Block\tx\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n.\tO\t.\tO\n\t\nTherefore\tO\tTherefore\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ntypes\tO\ttypes\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nmatch\tO\tmatch\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6257\tI-Code_Block\tA_6257\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\neither\tO\teither\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nparentheses\tO\tparentheses\tO\naround\tO\taround\tO\nfst\tB-Code_Block\tfst\tB-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\nfst\tI-Code_Block\tfst\tI-Code_Block\nor\tO\tor\tO\n$\tB-Code_Block\t$\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6258\tI-Code_Block\tA_6258\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\ncombine\tO\tcombine\tO\nboth\tO\tboth\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nfst\tB-Code_Block\tfst\tB-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\nfst\tI-Code_Block\tfst\tI-Code_Block\n$\tI-Code_Block\t$\tI-Code_Block\nx\tI-Code_Block\tx\tI-Code_Block\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nprecedence\tO\tprecedence\tO\nof\tO\tof\tO\n$\tB-Code_Block\t$\tB-Code_Block\nis\tO\tis\tO\nlow\tO\tlow\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48268937\tO\t48268937\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48268937/\tO\thttps://stackoverflow.com/questions/48268937/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\ndocument\tO\tdocument\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nused\tO\tused\tO\nin\tO\tin\tO\na\tO\ta\tO\nlecture\tO\tlecture\tO\neach\tO\teach\tO\nsemester\tO\tsemester\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncontents\tO\tcontents\tO\nbasically\tO\tbasically\tO\nstay\tO\tstay\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\na\tO\ta\tO\nsubset\tO\tsubset\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nis\tO\tis\tO\nused\tO\tused\tO\neach\tO\teach\tO\nsemester\tO\tsemester\tO\n.\tO\t.\tO\n\t\nDefines\tO\tDefines\tO\nare\tO\tare\tO\nused\tO\tused\tO\nto\tO\tto\tO\nset\tO\tset\tO\nwhich\tO\twhich\tO\nparts\tO\tparts\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ncompiled\tO\tcompiled\tO\nand\tO\tand\tO\nwhich\tO\twhich\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\none\tO\tone\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noptions\tO\toptions\tO\nis\tO\tis\tO\ncompiled\tO\tcompiled\tO\nin\tO\tin\tO\na\tO\ta\tO\ntabular\tO\ttabular\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nform\tO\tform\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6417\tI-Code_Block\tQ_6417\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nall\tO\tall\tO\noptions\tO\toptions\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nchosen\tO\tchosen\tO\nvia\tO\tvia\tO\ndefines\tO\tdefines\tO\nare\tO\tare\tO\nlisted\tO\tlisted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable\tB-User_Interface_Element\ttable\tO\nas\tO\tas\tO\na\tO\ta\tO\nrow\tB-User_Interface_Element\trow\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\noccurs\tO\toccurs\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\n&\tB-Value\t&\tB-Code_Block\ncharacter\tO\tcharacter\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\nthe\tO\tthe\tO\n\\ifdefined\tB-Code_Block\t\\ifdefined\tB-Code_Block\nand\tO\tand\tO\nis\tO\tis\tO\ntreated\tO\ttreated\tO\nas\tO\tas\tO\na\tO\ta\tO\n\\fi\tB-Code_Block\t\\fi\tB-Code_Block\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nIncomplete\tB-Error_Name\tIncomplete\tB-Code_Block\n\\ifdefined\tI-Error_Name\t\\ifdefined\tI-Code_Block\nerror\tO\terror\tO\nis\tO\tis\tO\nthrown\tO\tthrown\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nworked\tO\tworked\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\ndefining\tO\tdefining\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\nthat\tO\tthat\tO\njust\tO\tjust\tO\noutputs\tO\toutputs\tO\nthe\tO\tthe\tO\n&\tB-Value\t&\tB-Code_Block\nchar\tB-Data_Type\tchar\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthere\tO\tthere\tO\nsure\tO\tsure\tO\nis\tO\tis\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nsomeone\tO\tsomeone\tO\nelses\tO\telses\tO\ndocument\tO\tdocument\tO\nand\tO\tand\tO\ncannot\tO\tcannot\tO\njust\tO\tjust\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nstructure\tO\tstructure\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\ndefines\tO\tdefines\tO\nto\tO\tto\tO\nreach\tO\treach\tO\nthis\tO\tthis\tO\nspecific\tO\tspecific\tO\ngoal\tO\tgoal\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8748294\tO\t8748294\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8748294/\tO\thttps://stackoverflow.com/questions/8748294/\tO\n\t\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nit\tO\tit\tO\n's\tO\t's\tO\nreally\tO\treally\tO\nnice\tO\tnice\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nPlots\tB-User_Interface_Element\tPlots\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nits\tO\tits\tO\nabout\tO\tabout\tO\nmaking\tO\tmaking\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\na\tO\ta\tO\ntriangle\tB-User_Interface_Element\ttriangle\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nit\tO\tit\tO\nquite\tO\tquite\tO\ncomplicated\tO\tcomplicated\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndraw\tO\tdraw\tO\na\tO\ta\tO\ntriangle\tB-User_Interface_Element\ttriangle\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthat\tO\tthat\tO\nangle\tB-User_Interface_Element\tangle\tO\nmarks\tI-User_Interface_Element\tmarks\tO\n,\tO\t,\tO\nthose\tO\tthose\tO\ncurved\tB-User_Interface_Element\tcurved\tO\nlines\tI-User_Interface_Element\tlines\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nbeginner\tO\tbeginner\tO\ninto\tO\tinto\tO\nthis\tO\tthis\tO\njob\tO\tjob\tO\n,\tO\t,\tO\nof\tO\tof\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nbook\tO\tbook\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nrecommend\tO\trecommend\tO\nme\tO\tme\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\ngood\tO\tgood\tO\nlooking\tO\tlooking\tO\ngraphics\tO\tgraphics\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nas\tO\tas\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npicture\tB-User_Interface_Element\tpicture\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nprograms\tO\tprograms\tO\nare\tO\tare\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\nand\tO\tand\tO\nrecommendations\tO\trecommendations\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8748294\tO\t8748294\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8748294/\tO\thttps://stackoverflow.com/questions/8748294/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nsimple/basic\tO\tsimple/basic\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1068\tI-Code_Block\tA_1068\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwrapped\tO\twrapped\tO\nin\tO\tin\tO\nManipulate\tB-Library_Class\tManipulate\tB-Code_Block\nand\tO\tand\tO\nparameterized\tO\tparameterized\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nangle\tO\tangle\tO\nalpha\tB-Library_Variable\talpha\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1069\tI-Code_Block\tA_1069\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nslider\tB-User_Interface_Element\tslider\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\naccordingly\tO\taccordingly\tO\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8748294\tO\t8748294\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8748294/\tO\thttps://stackoverflow.com/questions/8748294/\tO\n\t\n\t\nEdit\tO\tEdit\tO\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\ninspiration\tO\tinspiration\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nDemonstrations\tO\tDemonstrations\tO\nproject\tO\tproject\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\ntriangle-related\tB-User_Interface_Element\ttriangle-related\tO\ndemonstrations\tO\tdemonstrations\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\ntaking\tO\ttaking\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nlook\tO\tlook\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ngeometry-related\tO\tgeometry-related\tO\ndemonstrations\tO\tdemonstrations\tO\nby\tO\tby\tO\nJay\tB-User_Name\tJay\tO\nWarendorff\tI-User_Name\tWarendorff\tO\n.\tO\t.\tO\n\t\nHe\tO\tHe\tO\nhas\tO\thas\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nstructured\tO\tstructured\tO\nset\tO\tset\tO\nof\tO\tof\tO\ngeometry-related\tO\tgeometry-related\tO\nfunctions\tO\tfunctions\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\ncan\tO\tcan\tO\nreuse\tO\treuse\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nangleArc\tB-Function_Name\tangleArc\tB-Code_Block\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nget\tO\tget\tO\nyou\tO\tyou\tO\nstarted\tO\tstarted\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nexample\tO\texample\tO\nof\tO\tof\tO\na\tO\ta\tO\nhelper\tO\thelper\tO\nfunction\tO\tfunction\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nroom\tO\troom\tO\nfor\tO\tfor\tO\nimprovement\tO\timprovement\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1066\tI-Code_Block\tA_1066\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1067\tI-Code_Block\tA_1067\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15566370\tO\t15566370\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15566370/\tO\thttps://stackoverflow.com/questions/15566370/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nhierarchial\tO\thierarchial\tO\narray\tB-Data_Structure\tarray\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsingle\tO\tsingle\tO\ndimensional\tO\tdimensional\tO\narray\tB-Data_Structure\tarray\tO\nobtained\tO\tobtained\tO\nfrom\tO\tfrom\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nLanguage\tO\tLanguage\tO\nis\tO\tis\tO\nPHP\tB-Language\tPHP\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nmentioned\tO\tmentioned\tO\nexample\tO\texample\tO\nkey\tO\tkey\tO\nid\tB-Library_Variable\tid\tO\n-3\tB-Value\t-3\tO\nindicates\tO\tindicates\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nnode\tO\tnode\tO\n.\tO\t.\tO\n\t\nInput\tO\tInput\tO\nData\tO\tData\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1525\tI-Code_Block\tQ_1525\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOutput\tO\tOutput\tO\nexpected\tO\texpected\tO\ndata\tO\tdata\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1526\tI-Code_Block\tQ_1526\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15566370\tO\t15566370\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15566370/\tO\thttps://stackoverflow.com/questions/15566370/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2014\tI-Code_Block\tA_2014\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ntrick\tO\ttrick\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n&$a\tO\t&$a\tO\nnotation\tO\tnotation\tO\nwhich\tO\twhich\tO\ngives\tO\tgives\tO\nus\tO\tus\tO\nreferences\tO\treferences\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nvariable\tO\tvariable\tO\ncopies\tO\tcopies\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\nnon-root\tO\tnon-root\tO\nnodes\tO\tnodes\tO\nare\tO\tare\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nparents\tO\tparents\tO\n,\tO\t,\tO\nand\tO\tand\tO\nroot\tO\troot\tO\nnodes\tO\tnodes\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nresult\tO\tresult\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29431129\tO\t29431129\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29431129/\tO\thttps://stackoverflow.com/questions/29431129/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nupdate\tO\tupdate\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nin\tO\tin\tO\ndesign\tO\tdesign\tO\nmode\tO\tmode\tO\nof\tO\tof\tO\nAccess\tB-Application\tAccess\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ninserted\tO\tinserted\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nVBA\tB-Language\tVBA\tO\nprocedure\tO\tprocedure\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nrecordset\tB-Data_Structure\trecordset\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nwindows\tO\twindows\tO\nID\tO\tID\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nby\tO\tby\tO\ndeclaring\tO\tdeclaring\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3502\tI-Code_Block\tQ_3502\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\ncommand\tB-User_Interface_Element\tcommand\tO\nbutton\tI-User_Interface_Element\tbutton\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nprocedure\tO\tprocedure\tO\na\tO\ta\tO\nmessage\tB-User_Interface_Element\tmessage\tO\nbox\tI-User_Interface_Element\tbox\tO\nappears\tO\tappears\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nWindows\tO\tWindows\tO\nID\tO\tID\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ntitle\tO\ttitle\tO\nand\tO\tand\tO\nit\tO\tit\tO\nasks\tO\tasks\tO\nto\tO\tto\tO\n'\tB-Output_Block\t'\tO\nEnter\tI-Output_Block\tEnter\tO\na\tI-Output_Block\ta\tO\nParameter\tI-Output_Block\tParameter\tO\nValue\tI-Output_Block\tValue\tO\n'\tB-Output_Block\t'\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ninserting\tO\tinserting\tO\nit\tO\tit\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthe\tO\tthe\tO\nSQL\tB-Language\tSQL\tO\nstatement\tO\tstatement\tO\nis\tO\tis\tO\nincorrect\tO\tincorrect\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nwindows\tO\twindows\tO\nID\tO\tID\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\npicked\tO\tpicked\tO\nup\tO\tup\tO\nas\tO\tas\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29431129\tO\t29431129\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29431129/\tO\thttps://stackoverflow.com/questions/29431129/\tO\n\t\n\t\nAdd\tO\tAdd\tO\nquotes\tO\tquotes\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nname\tO\tname\tO\nvalue\tO\tvalue\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\ndb\tB-Application\tdb\tO\nengine\tI-Application\tengine\tO\nwill\tO\twill\tO\ninterpret\tO\tinterpret\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nliteral\tO\tliteral\tO\ntext\tO\ttext\tO\nstring\tB-Data_Type\tstring\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nparameter\tO\tparameter\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nchange\tO\tchange\tO\nshould\tO\tshould\tO\nresolve\tO\tresolve\tO\nyour\tO\tyour\tO\nimmediate\tO\timmediate\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nBeyond\tO\tBeyond\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\ninclude\tO\tinclude\tO\nspaces\tO\tspaces\tO\nbefore\tO\tbefore\tO\nWHERE\tB-Code_Block\tWHERE\tB-Code_Block\nand\tO\tand\tO\nAND\tB-Code_Block\tAND\tB-Code_Block\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nwith\tO\twith\tO\nDAO\tB-Application\tDAO\tO\n's\tO\t's\tO\nExecute\tB-Library_Function\tExecute\tB-Code_Block\nmethod\tO\tmethod\tO\nand\tO\tand\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\ndbFailOnError\tB-Library_Variable\tdbFailOnError\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4165\tI-Code_Block\tA_4165\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31853974\tO\t31853974\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31853974/\tO\thttps://stackoverflow.com/questions/31853974/\tO\n\t\n\t\nImagine\tO\tImagine\tO\ncode\tO\tcode\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3851\tI-Code_Block\tQ_3851\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRegarding\tO\tRegarding\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nlogical\tO\tlogical\tO\nbranching\tO\tbranching\tO\nis\tO\tis\tO\nby\tO\tby\tO\nstandard\tO\tstandard\tO\nensured\tO\tensured\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nevaluated\tO\tevaluated\tO\nfrom\tO\tfrom\tO\nleft\tO\tleft\tO\nto\tO\tto\tO\nright\tO\tright\tO\nand\tO\tand\tO\nand\tO\tand\tO\nsays\tO\tsays\tO\nregarding\tO\tregarding\tO\nthe\tO\tthe\tO\nconditional\tO\tconditional\tO\n&\tB-Code_Block\t&\tB-Code_Block\nit\tO\tit\tO\nbreaks\tO\tbreaks\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\none\tO\tone\tO\ncondition\tO\tcondition\tO\nis\tO\tis\tO\nfalse\tB-Value\tfalse\tO\n,\tO\t,\tO\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nrule\tO\trule\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nsnippet\tO\tsnippet\tO\ninvalid\tO\tinvalid\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nefficent\tO\tefficent\tO\nand\tO\tand\tO\neven\tO\teven\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nretrace\tO\tretrace\tO\nways\tO\tways\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nspecially\tO\tspecially\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\n:\tO\t:\tO\n\t\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\ninterupt\tO\tinterupt\tO\ncondition\tO\tcondition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndo/while\tB-Code_Block\tdo/while\tB-Code_Block\nloop\tO\tloop\tO\nprevent\tO\tprevent\tO\nfrom\tO\tfrom\tO\ninvoking\tO\tinvoking\tO\nundefined\tO\tundefined\tO\nbehavior\tO\tbehavior\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nrule\tO\trule\tO\nabout\tO\tabout\tO\nusing\tO\tusing\tO\npointer\tB-Data_Type\tpointer\tO\narithmetic\tO\tarithmetic\tO\nthat\tO\tthat\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\na\tO\ta\tO\npointer\tB-Data_Type\tpointer\tO\nleaving\tO\tleaving\tO\nthe\tO\tthe\tO\nbounds\tO\tbounds\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nas\tO\tas\tO\n1\tO\t1\tO\npast\tO\tpast\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31853974\tO\t31853974\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31853974/\tO\thttps://stackoverflow.com/questions/31853974/\tO\n\t\n\t\nAfter\tO\tAfter\tO\nthis\tO\tthis\tO\nloop\tO\tloop\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4561\tI-Code_Block\tA_4561\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nActingPointer\tB-Variable_Name\tActingPointer\tB-Code_Block\nends\tO\tends\tO\nup\tO\tup\tO\nbeing\tO\tbeing\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nOriginPointer\tB-Variable_Name\tOriginPointer\tB-Code_Block\n+\tO\t+\tI-Code_Block\nSOME_GIVEN_AMOUNT\tB-Variable_Name\tSOME_GIVEN_AMOUNT\tI-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nok\tO\tok\tO\nas\tO\tas\tO\na\tO\ta\tO\npointer\tB-Data_Type\tpointer\tO\n(\tO\t(\tO\nas\tO\tas\tO\nit\tO\tit\tO\npoints\tO\tpoints\tO\nto\tO\tto\tO\none\tO\tone\tO\nelement\tO\telement\tO\npast\tO\tpast\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwriting\tO\twriting\tO\nto\tO\tto\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\niteration\tO\titeration\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndo\tB-Code_Block\tdo\tB-Code_Block\nloop\tO\tloop\tO\nis\tO\tis\tO\nundefined\tO\tundefined\tO\nbehaviour\tO\tbehaviour\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nActingPointer\tB-Variable_Name\tActingPointer\tB-Code_Block\nis\tO\tis\tO\ndecremented\tO\tdecremented\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\ndo\tB-Code_Block\tdo\tB-Code_Block\nloop\tO\tloop\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\nat\tO\tat\tO\n1\tB-Value\t1\tO\npast\tO\tpast\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nand\tO\tand\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndecremented\tO\tdecremented\tO\nbelow\tO\tbelow\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21153309\tO\t21153309\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21153309/\tO\thttps://stackoverflow.com/questions/21153309/\tO\n\t\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\na\tO\ta\tO\najax\tB-Library_Function\tajax\tO\ncall\tO\tcall\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\njsp\tB-Application\tjsp\tO\nto\tO\tto\tO\nservlet\tB-Application\tservlet\tO\n.\tO\t.\tO\n\t\nwhen\tO\twhen\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nstring\tB-Data_Type\tstring\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nresponse\tO\tresponse\tO\nas\tO\tas\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tO\narray\tB-Data_Structure\tarray\tO\nthen\tO\tthen\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\nstring\tB-Data_Type\tstring\tO\narray\tB-Data_Structure\tarray\tO\nfrom\tO\tfrom\tO\nservlet\tB-Application\tservlet\tO\nas\tO\tas\tO\na\tO\ta\tO\najax\tB-Library_Function\tajax\tO\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2257\tI-Code_Block\tQ_2257\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21153309\tO\t21153309\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21153309/\tO\thttps://stackoverflow.com/questions/21153309/\tO\n\t\n\t\nSend\tO\tSend\tO\nthe\tO\tthe\tO\najax\tB-Library_Function\tajax\tO\nresponse\tO\tresponse\tO\nin\tO\tin\tO\njson\tB-File_Type\tjson\tO\nformat\tO\tformat\tO\nby\tO\tby\tO\nencoding\tO\tencoding\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nin\tO\tin\tO\njson\tB-File_Type\tjson\tO\nand\tO\tand\tO\nreturn\tO\treturn\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nGson\tB-Library\tGson\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nencode\tO\tencode\tO\nyour\tO\tyour\tO\narray\tB-Data_Structure\tarray\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2835\tI-Code_Block\tA_2835\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nJavascript\tB-Language\tJavascript\tO\nend\tO\tend\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\njson\tB-File_Type\tjson\tO\nobject\tO\tobject\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2836\tI-Code_Block\tA_2836\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21153309\tO\t21153309\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21153309/\tO\thttps://stackoverflow.com/questions/21153309/\tO\n\t\n\t\nWrite\tO\tWrite\tO\nit\tO\tit\tO\nout\tO\tout\tO\nto\tO\tto\tO\nJSON\tB-File_Type\tJSON\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nJavascript\tB-Language\tJavascript\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\na\tO\ta\tO\nJava\tB-Language\tJava\tO\narray\tB-Data_Structure\tarray\tO\n's\tO\t's\tO\ntoString()\tB-Library_Function\ttoString()\tO\nmethod\tO\tmethod\tO\n(\tO\t(\tO\n[\tB-Code_Block\t[\tB-Code_Block\nLjava.lang.String\tI-Code_Block\tLjava.lang.String\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n@5527f4f9\tI-Code_Block\t@5527f4f9\tI-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nunderstand\tO\tunderstand\tO\nJSON\tB-File_Type\tJSON\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nonly\tO\tonly\tO\never\tO\tever\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\narray\tB-Data_Structure\tarray\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\nmore\tO\tmore\tO\nlibraries\tO\tlibraries\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2834\tI-Code_Block\tA_2834\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nJavascript\tB-Language\tJavascript\tO\nframework\tO\tframework\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nclient-side\tB-Application\tclient-side\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nJSON\tB-File_Type\tJSON\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\navailable\tO\tavailable\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nxmlHttpRequestObject.responseText\tB-Library_Variable\txmlHttpRequestObject.responseText\tB-Code_Block\n.\tO\t.\tO\n\t\nAngularJS\tB-Library\tAngularJS\tO\nstores\tO\tstores\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n$http.get().success\tB-Library_Function\t$http.get().success\tB-Code_Block\nmethod\tO\tmethod\tO\n's\tO\t's\tO\nfirst\tO\tfirst\tO\ndata\tB-Library_Variable\tdata\tB-Code_Block\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\njQuery\tB-Library\tjQuery\tO\nstores\tO\tstores\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n$.ajax({success})\tB-Library_Function\t$.ajax({success})\tB-Code_Block\nmethod\tO\tmethod\tO\n's\tO\t's\tO\nfirst\tO\tfirst\tO\ndata\tB-Library_Variable\tdata\tB-Code_Block\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\nAngular\tB-Library\tAngular\tO\nand\tO\tand\tO\njQuery\tB-Library\tjQuery\tO\nautomatically\tO\tautomatically\tO\nvalidate\tO\tvalidate\tO\nand\tO\tand\tO\neval\tB-Library_Function\teval\tB-Code_Block\nit\tO\tit\tO\nto\tO\tto\tO\nan\tO\tan\tO\n[\tB-Code_Block\t[\tB-Code_Block\nobject\tI-Code_Block\tobject\tI-Code_Block\nObject\tI-Code_Block\tObject\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nxmlHttpRequestObject.responseText\tB-Library_Variable\txmlHttpRequestObject.responseText\tB-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37988241\tO\t37988241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37988241/\tO\thttps://stackoverflow.com/questions/37988241/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\ntwo\tO\ttwo\tO\nvalues\tO\tvalues\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndual\tO\tdual\tO\ninput\tO\tinput\tO\nrange\tO\trange\tO\nslider\tB-User_Interface_Element\tslider\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nor\tO\tor\tO\ngreater\tO\tgreater\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nfalse\tB-Value\tfalse\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\noverlap\tO\toverlap\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nthumbs\tO\tthumbs\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nused\tO\tused\tO\n.change\tB-Library_Function\t.change\tB-Code_Block\nto\tO\tto\tO\nlisten\tO\tlisten\tO\nfor\tO\tfor\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nconsole.log\tB-Library_Function\tconsole.log\tB-Code_Block\n&\tO\t&\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nafter\tO\tafter\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbeen\tO\tbeen\tO\nupdated\tO\tupdated\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nincluded\tO\tincluded\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nhope\tO\thope\tO\nfor\tO\tfor\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nan\tO\tan\tO\nfull\tO\tfull\tO\nalmost\tO\talmost\tO\nworking\tO\tworking\tO\nversion\tO\tversion\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttps://fiddle.jshell.net/elliottjb7/fj9ot08v/\tO\thttps://fiddle.jshell.net/elliottjb7/fj9ot08v/\tO\n\t\nThanks\tO\tThanks\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4783\tI-Code_Block\tQ_4783\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37988241\tO\t37988241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37988241/\tO\thttps://stackoverflow.com/questions/37988241/\tO\n\t\n\t\nthis\tO\tthis\tO\nline\tO\tline\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5470\tI-Code_Block\tA_5470\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5471\tI-Code_Block\tA_5471\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37988241\tO\t37988241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37988241/\tO\thttps://stackoverflow.com/questions/37988241/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5473\tI-Code_Block\tA_5473\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ncheck\tO\tcheck\tO\nwhere\tO\twhere\tO\nbottom\tO\tbottom\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n2\tO\t2\tO\nfunctions\tO\tfunctions\tO\n(.change())\tB-Library_Function\t(.change())\tB-Code_Block\nare\tO\tare\tO\nquite\tO\tquite\tO\nredundant\tO\tredundant\tO\nfor\tO\tfor\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n've\tO\t've\tO\nincluded\tO\tincluded\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthem\tO\tthem\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45388593\tO\t45388593\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45388593/\tO\thttps://stackoverflow.com/questions/45388593/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n8-10\tO\t8-10\tO\nclasses\tO\tclasses\tO\nthat\tO\tthat\tO\nextends\tO\textends\tO\nJPanel\tB-Library_Class\tJPanel\tB-Code_Block\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nhave\tO\thave\tO\nunique\tO\tunique\tO\nlook\tO\tlook\tO\nand\tO\tand\tO\nall\tO\tall\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nlisteners\tO\tlisteners\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nGameWindow\tB-Library_Class\tGameWindow\tB-Code_Block\nclass\tO\tclass\tO\nthat\tO\tthat\tO\nextends\tO\textends\tO\nJFrame\tB-Library_Class\tJFrame\tB-Code_Block\nand\tO\tand\tO\nadd\tO\tadd\tO\nthose\tO\tthose\tO\npanels\tO\tpanels\tO\nto\tO\tto\tO\nGameWindow\tB-Class_Name\tGameWindow\tB-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nin\tO\tin\tO\nMainMenuPanel\tB-Class_Name\tMainMenuPanel\tB-Code_Block\n,\tO\t,\tO\nif\tO\tif\tO\nuser\tO\tuser\tO\nclick\tO\tclick\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nlabel\tO\tlabel\tO\nor\tO\tor\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nuser\tO\tuser\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndirected\tO\tdirected\tO\nanother\tO\tanother\tO\npanel\tB-User_Interface_Element\tpanel\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nframe\tO\tframe\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nbetween\tO\tbetween\tO\npanels\tB-User_Interface_Element\tpanels\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nits\tO\tits\tO\neffects\tO\teffects\tO\non\tO\ton\tO\nGameWindow\tB-Class_Name\tGameWindow\tB-Code_Block\nframe\tO\tframe\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45873518\tO\t45873518\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45873518/\tO\thttps://stackoverflow.com/questions/45873518/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ndeploy\tO\tdeploy\tO\nthe\tO\tthe\tO\nTomcat\tB-Application\tTomcat\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6013\tI-Code_Block\tQ_6013\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nspent\tO\tspent\tO\nseveral\tO\tseveral\tO\ndays\tO\tdays\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nit\tO\tit\tO\nand\tO\tand\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nhope\tO\thope\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nget\tO\tget\tO\nhelp\tO\thelp\tO\n,\tO\t,\tO\nthank\tO\tthank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n!\tO\t!\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nconfiguration\tO\tconfiguration\tO\nfile\tO\tfile\tO\nbeans.xml\tB-File_Name\tbeans.xml\tO\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45678629\tO\t45678629\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45678629/\tO\thttps://stackoverflow.com/questions/45678629/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nnoticed\tO\tnoticed\tO\na\tO\ta\tO\ncommon\tO\tcommon\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nbrowser\tB-Application\tbrowser\tO\nback\tB-User_Interface_Element\tback\tO\nbutton\tI-User_Interface_Element\tbutton\tO\nusage\tO\tusage\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\nwhere\tO\twhere\tO\nhitting\tO\thitting\tO\nthe\tO\tthe\tO\nback\tB-User_Interface_Element\tback\tO\nbutton\tI-User_Interface_Element\tbutton\tO\nafter\tO\tafter\tO\nlogout\tO\tlogout\tO\nloads\tO\tloads\tO\na\tO\ta\tO\ncached\tO\tcached\tO\npage\tB-User_Interface_Element\tpage\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nappears\tO\tappears\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\n(\tO\t(\tO\nthough\tO\tthough\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nactually\tO\tactually\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nhelpful\tO\thelpful\tO\nquestions\tO\tquestions\tO\nwith\tO\twith\tO\nhelpful\tO\thelpful\tO\nanswers\tO\tanswers\tO\nand\tO\tand\tO\nemployed\tO\temployed\tO\nthe\tO\tthe\tO\nfixes\tO\tfixes\tO\nfolks\tO\tfolks\tO\nsuggested\tO\tsuggested\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nevery\tO\tevery\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nsuggested\tO\tsuggested\tO\nCache-Control\tB-Library\tCache-Control\tO\noptions\tO\toptions\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nheader\tB-User_Interface_Element\theader\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5983\tI-Code_Block\tQ_5983\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nheader\tB-User_Interface_Element\theader\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nmost\tO\tmost\tO\nbrowsers\tB-Application\tbrowsers\tO\n,\tO\t,\tO\neven\tO\teven\tO\nwith\tO\twith\tO\njust\tO\tjust\tO\nno-cache\tB-Library_Function\tno-cache\tO\nand\tO\tand\tO\nno-store\tB-Library_Function\tno-store\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nheader\tB-User_Interface_Element\theader\tO\noptions\tO\toptions\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\non\tO\ton\tO\nSafari\tB-Application\tSafari\tO\n.\tO\t.\tO\n\t\nSure\tO\tSure\tO\nenough\tO\tenough\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nreliable\tO\treliable\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nto\tO\tto\tO\nresolve\tO\tresolve\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nSafari\tB-Application\tSafari\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\njavascript\tB-Language\tjavascript\tO\nas\tO\tas\tO\nsuch\tO\tsuch\tO\nwhich\tO\twhich\tO\nforces\tO\tforces\tO\na\tO\ta\tO\nreload\tO\treload\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5984\tI-Code_Block\tQ_5984\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\njavascript\tB-Language\tjavascript\tO\nblock\tO\tblock\tO\nabove\tO\tabove\tO\ndoes\tO\tdoes\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndisable\tO\tdisable\tO\njavascript\tB-Language\tjavascript\tO\nvia\tO\tvia\tO\nSafari\tB-Application\tSafari\tO\n->\tO\t->\tO\nPreferences\tO\tPreferences\tO\n->\tO\t->\tO\nSecurity\tO\tSecurity\tO\nand\tO\tand\tO\nsubsequently\tO\tsubsequently\tO\nhit\tO\thit\tO\nthe\tO\tthe\tO\nback\tB-User_Interface_Element\tback\tO\nbutton\tI-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nan\tO\tan\tO\nedge\tO\tedge\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nfascinated\tO\tfascinated\tO\nthat\tO\tthat\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\npopular\tO\tpopular\tO\nbrowser\tB-Application\tbrowser\tO\nmakes\tO\tmakes\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\ntrivial\tO\ttrivial\tO\nbug\tO\tbug\tO\nthis\tO\tthis\tO\ntricky\tO\ttricky\tO\n!\tO\t!\tO\n\t\nIf\tO\tIf\tO\nanybody\tO\tanybody\tO\nhas\tO\thas\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nSafari\tB-Application\tSafari\tO\nplay\tO\tplay\tO\nnice\tO\tnice\tO\nwithout\tO\twithout\tO\njavascript\tB-Language\tjavascript\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlove\tO\tlove\tO\nto\tO\tto\tO\nhear\tO\thear\tO\nhow\tO\thow\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nall\tO\tall\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30052561\tO\t30052561\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30052561/\tO\thttps://stackoverflow.com/questions/30052561/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnewbie\tO\tnewbie\tO\nto\tO\tto\tO\nember.js\tB-Library\tember.js\tO\nand\tO\tand\tO\nnode.I\tO\tnode.I\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nemail\tO\temail\tO\nusing\tO\tusing\tO\nmailgun\tB-Library\tmailgun\tO\nin\tO\tin\tO\nan\tO\tan\tO\nember.js\tB-Library\tember.js\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nFound\tO\tFound\tO\nmailgun-js\tB-Library\tmailgun-js\tO\npackage\tO\tpackage\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nthis\tO\tthis\tO\npackage\tO\tpackage\tO\nwith\tO\twith\tO\nember.js\tB-Library\tember.js\tO\nusing\tO\tusing\tO\nexpress\tO\texpress\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncould\tO\tcould\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nparse-cloud\tO\tparse-cloud\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nember\tB-Library\tember\tO\ncontroller\tO\tcontroller\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nmail\tO\tmail\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30052561\tO\t30052561\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30052561/\tO\thttps://stackoverflow.com/questions/30052561/\tO\n\t\n\t\nEmber\tB-Library\tEmber\tO\nruns\tO\truns\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\nwhile\tO\twhile\tO\nsending\tO\tsending\tO\nemail\tO\temail\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\n(\tO\t(\tO\nor\tO\tor\tO\n:\tO\t:\tO\nshould\tO\tshould\tO\nunder\tO\tunder\tO\nmost\tO\tmost\tO\ncircumstances\tO\tcircumstances\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\n)\tO\t)\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nexpress\tB-Code_Block\texpress\tB-Code_Block\nand\tO\tand\tO\nmailgun-js\tB-Library\tmailgun-js\tB-Code_Block\nhint\tO\thint\tO\nat\tO\tat\tO\nthat\tO\tthat\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n(\tO\t(\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nserver-side\tB-Application\tserver-side\tO\nnode\tO\tnode\tO\nmodules\tO\tmodules\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'd\tO\t'd\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nhook\tO\thook\tO\nthe\tO\tthe\tO\nmail-sending\tO\tmail-sending\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nREST\tB-Library\tREST\tO\nbackend\tO\tbackend\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nor\tO\tor\tO\nprovide\tO\tprovide\tO\nit\tO\tit\tO\nas\tO\tas\tO\nan\tO\tan\tO\nextra\tO\textra\tO\nservice\tO\tservice\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\naccess\tO\taccess\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\njQuery-Ajax-Call\tB-Library\tjQuery-Ajax-Call\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nember\tB-Library\tember\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43222356\tO\t43222356\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43222356/\tO\thttps://stackoverflow.com/questions/43222356/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nWPF\tB-Library\tWPF\tO\nDataGrid\tB-Library_Class\tDataGrid\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndefinition\tO\tdefinition\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5524\tI-Code_Block\tQ_5524\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nallows\tO\tallows\tO\nme\tO\tme\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nselected\tO\tselected\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nregion\tO\tregion\tO\n\"\tO\t\"\tO\nof\tO\tof\tO\ncells\tO\tcells\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nDataGrid\tB-Library_Class\tDataGrid\tO\nis\tO\tis\tO\nbound\tO\tbound\tO\nto\tO\tto\tO\nan\tO\tan\tO\nobservable\tO\tobservable\tO\ncollection\tO\tcollection\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nXAML\tB-Language\tXAML\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\ndefinitions\tO\tdefinitions\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\nhidden\tO\thidden\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nvisible\tO\tvisible\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5525\tI-Code_Block\tQ_5525\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\na\tO\ta\tO\nRight\tO\tRight\tO\nMouse\tB-Device\tMouse\tO\nButton\tI-Device\tButton\tO\ncontext\tB-User_Interface_Element\tcontext\tO\nmenu\tI-User_Interface_Element\tmenu\tO\ndefined\tO\tdefined\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nDataGrid\tB-Library_Class\tDataGrid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5526\tI-Code_Block\tQ_5526\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nClick\tO\tClick\tO\n,\tO\t,\tO\nDrag\tO\tDrag\tO\nand\tO\tand\tO\nDrop\tO\tDrop\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nselected\tO\tselected\tO\ncells\tB-User_Interface_Element\tcells\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nthinking\tO\tthinking\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\npressing\tO\tpressing\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nAlt\tB-Keyboard_IP\tAlt\tO\nKey\tO\tKey\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nLeft\tO\tLeft\tO\nMouse\tB-Device\tMouse\tO\nButton\tI-Device\tButton\tO\nclick\tO\tclick\tO\nto\tO\tto\tO\ninitiate\tO\tinitiate\tO\nthe\tO\tthe\tO\nDragDrop\tB-Library_Class\tDragDrop\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nconsider\tO\tconsider\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nirregular\tO\tirregular\tO\n\"\tO\t\"\tO\nselection\tO\tselection\tO\nof\tO\tof\tO\ncells\tB-User_Interface_Element\tcells\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nDataGrid\tB-Library_Class\tDataGrid\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nunclear\tO\tunclear\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nproceed\tO\tproceed\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nseveral\tO\tseveral\tO\nquestions\tO\tquestions\tO\nregarding\tO\tregarding\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\nWhat\tO\tWhat\tO\nevents\tO\tevents\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\noverride\tO\toverride\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\n/Left\tO\t/Left\tO\nMouse\tB-Device\tMouse\tO\nclick\tO\tclick\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\naffect\tO\taffect\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nselected\tO\tselected\tO\ncells\tB-User_Interface_Element\tcells\tO\n?\tO\t?\tO\n\t\n2)\tO\t2)\tO\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ndetermine\tO\tdetermine\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\nLeft\tO\tLeft\tO\nMouse\tB-Device\tMouse\tO\nButton\tI-Device\tButton\tO\nclick\tO\tclick\tO\nis\tO\tis\tO\noccurring\tO\toccurring\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nregion\tO\tregion\tO\nof\tO\tof\tO\nselected\tO\tselected\tO\ncells\tB-User_Interface_Element\tcells\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\npiece\tO\tpiece\tO\n?\tO\t?\tO\n\t\n3)\tO\t3)\tO\nOnce\tO\tOnce\tO\nI\tO\tI\tO\n've\tO\t've\tO\ndetermined\tO\tdetermined\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nstep\tO\tstep\tO\n?\tO\t?\tO\n\t\nDo\tO\tDo\tO\ncopy\tO\tcopy\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nclipboard\tB-Application\tclipboard\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nexternal\tO\texternal\tO\ndrop\tO\tdrop\tO\n?\tO\t?\tO\n\t\n4)\tO\t4)\tO\nWhat\tO\tWhat\tO\nevents\tO\tevents\tO\n(\tO\t(\tO\nif\tO\tif\tO\nany\tO\tany\tO\n)\tO\t)\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nDataGrid\tB-Library_Class\tDataGrid\tO\nin\tO\tin\tO\norder\tO\torder\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43222356\tO\t43222356\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43222356/\tO\thttps://stackoverflow.com/questions/43222356/\tO\n\t\n\t\nthe\tO\tthe\tO\nbasic\tO\tbasic\tO\nevents\tO\tevents\tO\nto\tO\tto\tO\ndrag\tO\tdrag\tO\nand\tO\tand\tO\ndrop\tO\tdrop\tO\nare\tO\tare\tO\n:\tO\t:\tO\nevents\tO\tevents\tO\nto\tO\tto\tO\ndrag\tO\tdrag\tO\nand\tO\tand\tO\ndrop\tO\tdrop\tO\n\t\nSpecially\tO\tSpecially\tO\nthe\tO\tthe\tO\nDragLeave\tB-Library_Function\tDragLeave\tO\nand\tO\tand\tO\nDrop\tB-Library_Function\tDrop\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\n(\tO\t(\tO\ndelete/add\tO\tdelete/add\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nGridData\tB-Library_Class\tGridData\tO\nproperty\tO\tproperty\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nVM\tB-Application\tVM\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\nand\tO\tand\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nstrongly\tO\tstrongly\tO\nrecommend\tO\trecommend\tO\n3rd\tO\t3rd\tO\nparty\tO\tparty\tO\nlike\tO\tlike\tO\nTelerik\tB-Application\tTelerik\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43222356\tO\t43222356\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43222356/\tO\thttps://stackoverflow.com/questions/43222356/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\ncomplete\tO\tcomplete\tO\nanswer\tO\tanswer\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6280\tI-Code_Block\tA_6280\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nshift\tB-Keyboard_IP\tshift\tO\nkey\tO\tkey\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nsignal\tO\tsignal\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\ndisambiguate\tO\tdisambiguate\tO\nthe\tO\tthe\tO\nclick\tO\tclick\tO\nand\tO\tand\tO\ndrag\tO\tdrag\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nDataGrid\tB-Library_Class\tDataGrid\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\ncells\tB-User_Interface_Element\tcells\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nmechanism\tO\tmechanism\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\ncontext\tO\tcontext\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nitem\tO\titem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclipboard\tB-Application\tclipboard\tO\nis\tO\tis\tO\nkey\tO\tkey\tO\nto\tO\tto\tO\nany\tO\tany\tO\ndrag\tO\tdrag\tO\nand\tO\tand\tO\ndrop\tO\tdrop\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndoing\tO\tdoing\tO\nis\tO\tis\tO\nputting\tO\tputting\tO\ndata\tO\tdata\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nclipboard\tB-Application\tclipboard\tO\nin\tO\tin\tO\nvarious\tO\tvarious\tO\nformats\tO\tformats\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntarget\tO\ttarget\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndrop\tO\tdrop\tO\nwill\tO\twill\tO\nrecognize\tO\trecognize\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nonly\tO\tonly\tO\nplain\tO\tplain\tO\ntext\tO\ttext\tO\nis\tO\tis\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nrich\tB-File_Type\trich\tO\ntext\tI-File_Type\ttext\tO\nor\tO\tor\tO\nHTML\tB-File_Type\tHTML\tO\nor\tO\tor\tO\nany\tO\tany\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nother\tO\tother\tO\nformats\tO\tformats\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nexternal\tO\texternal\tO\napplication\tO\tapplication\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndropping\tO\tdropping\tO\non\tO\ton\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nregistered\tO\tregistered\tO\nas\tO\tas\tO\na\tO\ta\tO\ndrop\tO\tdrop\tO\ntarget\tO\ttarget\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncannot\tO\tcannot\tO\nforce\tO\tforce\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nrespond\tO\trespond\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndrop\tO\tdrop\tO\n...\tO\t...\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nlistening\tO\tlistening\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nWord\tB-Application\tWord\tO\nand\tO\tand\tO\nExcel\tB-Application\tExcel\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nNotepad\tB-Application\tNotepad\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nall\tO\tall\tO\n4\tO\t4\tO\nitems\tO\titems\tO\nare\tO\tare\tO\nsatisfied\tO\tsatisfied\tO\n:\tO\t:\tO\n\t\nOverride\tO\tOverride\tO\nthe\tO\tthe\tO\npreview\tB-Library_Function\tpreview\tO\nmouse\tI-Library_Function\tmouse\tO\ndown\tI-Library_Function\tdown\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\noriginal\tO\toriginal\tO\nsource\tO\tsource\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmouse\tB-Device\tmouse\tO\nevent\tO\tevent\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndata\tB-Library_Class\tdata\tO\ngrid\tI-Library_Class\tgrid\tO\ncell\tB-User_Interface_Element\tcell\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\nis\tO\tis\tO\nselected\tO\tselected\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nblock\tO\tblock\tO\nof\tO\tof\tO\ncells\tB-User_Interface_Element\tcells\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nselected\tO\tselected\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\ncells\tB-User_Interface_Element\tcells\tO\n,\tO\t,\tO\ngather\tO\tgather\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbindings\tO\tbindings\tO\nand\tO\tand\tO\norganize\tO\torganize\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ngrid\tB-User_Interface_Element\tgrid\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nbaseline\tO\tbaseline\tO\nuse\tO\tuse\tO\nplain\tO\tplain\tO\ntext\tO\ttext\tO\nbut\tO\tbut\tO\noptionally\tO\toptionally\tO\nadd\tO\tadd\tO\nother\tO\tother\tO\nformats\tO\tformats\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nthe\tO\tthe\tO\nDragDrop\tB-Library_Class\tDragDrop\tO\nclass\tO\tclass\tO\nto\tO\tto\tO\nactually\tO\tactually\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\nand\tO\tand\tO\ndrop\tO\tdrop\tO\n.\tO\t.\tO\n\t\nOverride\tO\tOverride\tO\npreview\tB-Library_Function\tpreview\tO\nmouse\tI-Library_Function\tmouse\tO\ndown\tI-Library_Function\tdown\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48931998\tO\t48931998\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48931998/\tO\thttps://stackoverflow.com/questions/48931998/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nseen\tO\tseen\tO\nexamples\tO\texamples\tO\nusing\tO\tusing\tO\ncrc\tB-Library_Function\tcrc\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nexamples\tO\texamples\tO\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\nmy\tO\tmy\tO\nhead\tO\thead\tO\nround\tO\tround\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\ngenerating\tO\tgenerating\tO\na\tO\ta\tO\nchecksum\tO\tchecksum\tO\nfor\tO\tfor\tO\nentire\tO\tentire\tO\ntable\tB-Data_Structure\ttable\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\nwith\tO\twith\tO\nreplication\tO\treplication\tO\nand\tO\tand\tO\ndata\tO\tdata\tO\nvalidation\tO\tvalidation\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6530\tI-Code_Block\tQ_6530\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\na\tO\ta\tO\nchecksum\tO\tchecksum\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\neach\tO\teach\tO\nentry\tO\tentry\tO\nin\tO\tin\tO\na\tO\ta\tO\nMYSQL\tB-Application\tMYSQL\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nbased\tO\tbased\tO\non\tO\ton\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\nfield\tO\tfield\tO\nvalues\tO\tvalues\tO\n(\tO\t(\tO\nshown\tO\tshown\tO\nabove\tO\tabove\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nidea\tO\tidea\tO\nbeing\tO\tbeing\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nset\tO\tset\tO\nof\tO\tof\tO\nfields\tO\tfields\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nchecksum\tO\tchecksum\tO\ngenerated\tO\tgenerated\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nduplicate\tO\tduplicate\tO\nentries\tO\tentries\tO\nby\tO\tby\tO\nchecking\tO\tchecking\tO\nthe\tO\tthe\tO\nchecksum\tO\tchecksum\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nlengthy\tO\tlengthy\tO\nchecks\tO\tchecks\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfield\tO\tfield\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\ncontain\tO\tcontain\tO\nmatching\tO\tmatching\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nseen\tO\tseen\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nSQL\tB-Application\tSQL\tO\nSERVER\tI-Application\tSERVER\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nchecksum_binary\tO\tchecksum_binary\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nso\tO\tso\tO\nfast\tO\tfast\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\napply\tO\tapply\tO\na\tO\ta\tO\nchecksum\tO\tchecksum\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nindividual\tO\tindividual\tO\nfields\tO\tfields\tO\nfor\tO\tfor\tO\ncomparison\tO\tcomparison\tO\nor\tO\tor\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nstick\tO\tstick\tO\nwith\tO\twith\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48931998\tO\t48931998\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48931998/\tO\thttps://stackoverflow.com/questions/48931998/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nthis\tO\tthis\tO\ncomplicated\tO\tcomplicated\tO\n:\tO\t:\tO\n\t\nA\tO\tA\tO\nchecksum\tO\tchecksum\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nrows\tB-Data_Structure\trows\tO\nwith\tO\twith\tO\n3\tO\t3\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7178\tI-Code_Block\tA_7178\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\ninsert\tO\tinsert\tO\nthis\tO\tthis\tO\nnew\tO\tnew\tO\nchecksum\tO\tchecksum\tO\n:\tO\t:\tO\n\t\nAlter\tO\tAlter\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nthen\tO\tthen\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7179\tI-Code_Block\tA_7179\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nA\tO\tA\tO\nnote\tO\tnote\tO\nthe\tO\tthe\tO\nchecksum\tO\tchecksum\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\n100%\tO\t100%\tO\nsafe\tO\tsafe\tO\nas\tO\tas\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ncharacter\tB-Data_Type\tcharacter\tO\nof\tO\tof\tO\n1\tO\t1\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthere\tO\tthere\tO\nbut\tO\tbut\tO\nfind\tO\tfind\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nthe\tO\tthe\tO\nhash\tO\thash\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nseparator\tO\tseparator\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconcat\tB-Code_Block\tconcat\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7180\tI-Code_Block\tA_7180\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21192749\tO\t21192749\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21192749/\tO\thttps://stackoverflow.com/questions/21192749/\tO\n\t\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nstarted\tO\tstarted\tO\nmessing\tO\tmessing\tO\nwith\tO\twith\tO\nnode.js\tB-Library\tnode.js\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nalready\tO\talready\tO\nhaving\tO\thaving\tO\nproblems\tO\tproblems\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\neven\tO\teven\tO\nstart\tO\tstart\tO\ndebugging\tO\tdebugging\tO\nthis.\tO\tthis.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2273\tI-Code_Block\tQ_2273\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21192749\tO\t21192749\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21192749/\tO\thttps://stackoverflow.com/questions/21192749/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nnpm\tB-Application\tnpm\tO\njust\tO\tjust\tO\ninstall\tO\tinstall\tO\neach\tO\teach\tO\npackage\tO\tpackage\tO\nwith\tO\twith\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\ncommand\tO\tcommand\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2852\tI-Code_Block\tA_2852\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOn\tO\tOn\tO\nmy\tO\tmy\tO\ncomputer\tO\tcomputer\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nsuggestion\tO\tsuggestion\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\npackage.json\tB-File_Name\tpackage.json\tO\n\"\tO\t\"\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthat\tO\tthat\tO\nfile\tO\tfile\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nlibraries\tO\tlibraries\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nthe\tO\tthe\tO\ndependencies\tO\tdependencies\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2853\tI-Code_Block\tA_2853\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\njust\tO\tjust\tO\nexecute\tO\texecute\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2854\tI-Code_Block\tA_2854\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nnpm\tB-Application\tnpm\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nall\tO\tall\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nnode_modules\tB-File_Name\tnode_modules\tO\n\"\tO\t\"\tO\nwhere\tO\twhere\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\njs\tB-Language\tjs\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndirectory\tO\tdirectory\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nnode_modules\tB-File_Name\tnode_modules\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndependencies\tO\tdependencies\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nall\tO\tall\tO\navailable\tO\tavailable\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npackage.json\tB-File_Name\tpackage.json\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nnear\tO\tnear\tO\nevery\tO\tevery\tO\ndependency\tO\tdependency\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\n\"\tB-Value\t\"\tO\n*\tI-Value\t*\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nmeans\tO\tmeans\tO\n\"\tB-Value\t\"\tO\nall\tI-Value\tall\tO\nversions\tI-Value\tversions\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\na\tO\ta\tO\nuseful\tO\tuseful\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\nhttps://npmjs.org/doc/json.html\tO\thttps://npmjs.org/doc/json.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24892137\tO\t24892137\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24892137/\tO\thttps://stackoverflow.com/questions/24892137/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\na\tO\ta\tO\nplaceholder\tO\tplaceholder\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nhold\tO\thold\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\na\tO\ta\tO\ncalculation\tO\tcalculation\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode.\tO\tcode.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2806\tI-Code_Block\tQ_2806\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWould\tO\tWould\tO\nreally\tO\treally\tO\nappreciate\tO\tappreciate\tO\nit\tO\tit\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24892137\tO\t24892137\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24892137/\tO\thttps://stackoverflow.com/questions/24892137/\tO\n\t\n\t\nfinal\tB-Data_Type\tfinal\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nkeyword\tO\tkeyword\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nchanging\tO\tchanging\tO\nyour\tO\tyour\tO\nfloat\tB-Data_Type\tfloat\tB-Code_Block\nfinal\tB-Variable_Name\tfinal\tI-Code_Block\nto\tO\tto\tO\nanother\tO\tanother\tO\nname\tO\tname\tO\nlike\tO\tlike\tO\nfloat\tB-Data_Type\tfloat\tB-Code_Block\nfinalAnswer\tB-Variable_Name\tfinalAnswer\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24892137\tO\t24892137\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24892137/\tO\thttps://stackoverflow.com/questions/24892137/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nkeyword\tO\tkeyword\tO\nfinal\tB-Data_Type\tfinal\tO\n.\tO\t.\tO\n\t\nChange\tO\tChange\tO\nyour\tO\tyour\tO\nname\tO\tname\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3416\tI-Code_Block\tA_3416\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47190967\tO\t47190967\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47190967/\tO\thttps://stackoverflow.com/questions/47190967/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nclass\tO\tclass\tO\nA\tB-Class_Name\tA\tO\nis\tO\tis\tO\nexecuting\tO\texecuting\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nlog\tO\tlog\tO\nstatements\tO\tstatements\tO\nin\tO\tin\tO\nmethods\tO\tmethods\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nclass\tO\tclass\tO\nprinting\tB-Class_Name\tprinting\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nset\tO\tset\tO\nbreakpoints\tO\tbreakpoints\tO\non\tO\ton\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nis\tO\tis\tO\nexecuting\tO\texecuting\tO\noff\tO\toff\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nin\tO\tin\tO\nclass\tO\tclass\tO\nA\tB-Class_Name\tA\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndebug\tO\tdebug\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbreakpoints\tO\tbreakpoints\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\npause\tO\tpause\tO\nexecution\tO\texecution\tO\n.\tO\t.\tO\n\t\nBreakpoints\tO\tBreakpoints\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nin\tO\tin\tO\nonResume()\tB-Library_Function\tonResume()\tO\nof\tO\tof\tO\nan\tO\tan\tO\nActivity\tO\tActivity\tO\nclass\tO\tclass\tO\nB\tB-Class_Name\tB\tO\nare\tO\tare\tO\nexecuting\tO\texecuting\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nhow\tO\thow\tO\nAndroid\tB-Application\tAndroid\tO\nStudio\tI-Application\tStudio\tO\nis\tO\tis\tO\nchoosing\tO\tchoosing\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nbreakpoints\tO\tbreakpoints\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nissue\tO\tissue\tO\nseems\tO\tseems\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nAndroid\tB-Application\tAndroid\tO\nStudio\tI-Application\tStudio\tO\nbreakpoints\tO\tbreakpoints\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\ndoinbackground\tB-Function_Name\tdoinbackground\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nthat\tO\tthat\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nworkaround\tO\tworkaround\tO\nbut\tO\tbut\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nluck\tO\tluck\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47190967\tO\t47190967\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47190967/\tO\thttps://stackoverflow.com/questions/47190967/\tO\n\t\n\t\nI\tO\tI\tO\ndeleted\tO\tdeleted\tO\nmy\tO\tmy\tO\n.gradle\tB-File_Name\t.gradle\tO\n,\tO\t,\tO\nand\tO\tand\tO\n.AndroidStudioPreview\tB-File_Name\t.AndroidStudioPreview\tO\nfolders\tO\tfolders\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nrestarted\tO\trestarted\tO\nmy\tO\tmy\tO\ncomputer\tB-Device\tcomputer\tO\nand\tO\tand\tO\nrestarted\tO\trestarted\tO\nAndroid\tB-Application\tAndroid\tO\nStudio\tI-Application\tStudio\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nbreakpoints\tO\tbreakpoints\tO\nare\tO\tare\tO\nworking\tO\tworking\tO\nproperly\tO\tproperly\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nAndroid\tB-Application\tAndroid\tO\nStudio\tI-Application\tStudio\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nnuclear\tO\tnuclear\tO\noption\tO\toption\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30403467\tO\t30403467\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30403467/\tO\thttps://stackoverflow.com/questions/30403467/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\ndataframes\tB-Data_Structure\tdataframes\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nmain\tB-Variable_Name\tmain\tO\npool\tO\tpool\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nis\tO\tis\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nlist\tB-Data_Structure\tlist\tO\n\"\tO\t\"\tO\nof\tO\tof\tO\nnames\tO\tnames\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nfilter\tO\tfilter\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nmain\tO\tmain\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3647\tI-Code_Block\tQ_3647\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nlist1\tB-Variable_Name\tlist1\tO\n(\tO\t(\tO\ncurrently\tO\tcurrently\tO\nin\tO\tin\tO\na\tO\ta\tO\ndataframe\tB-Data_Structure\tdataframe\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3648\tI-Code_Block\tQ_3648\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ndplyr::filter\tB-Library_Function\tdplyr::filter\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\n%in%\tB-Code_Block\t%in%\tO\noperator\tO\toperator\tO\nto\tO\tto\tO\nsubset\tO\tsubset\tO\nthe\tO\tthe\tO\nmain\tB-Variable_Name\tmain\tO\npool\tO\tpool\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3649\tI-Code_Block\tQ_3649\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\n0\tB-Value\t0\tO\nrow\tB-Data_Structure\trow\tO\ndataframe\tI-Data_Structure\tdataframe\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30403467\tO\t30403467\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30403467/\tO\thttps://stackoverflow.com/questions/30403467/\tO\n\t\n\t\nRichard\tB-User_Name\tRichard\tO\n's\tO\t's\tO\nsuggestion\tO\tsuggestion\tO\nworked\tO\tworked\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4353\tI-Code_Block\tA_4353\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17631216\tO\t17631216\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17631216/\tO\thttps://stackoverflow.com/questions/17631216/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\nsingle-page\tO\tsingle-page\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\nusing\tO\tusing\tO\nBackbone\tB-Library\tBackbone\tO\nand\tO\tand\tO\nLaravel\tB-Library\tLaravel\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nset\tO\tset\tO\nmy\tO\tmy\tO\nrouter\tB-Device\trouter\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npushState\tB-Library_Function\tpushState\tO\nand\tO\tand\tO\nconfigured\tO\tconfigured\tO\nLaravel\tB-Library\tLaravel\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nall\tO\tall\tO\nother\tO\tother\tO\nrequests\tO\trequests\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nview\tO\tview\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbackbone\tB-Library\tbackbone\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nbackbone\tB-Library\tbackbone\tO\ntakes\tO\ttakes\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrouting\tO\trouting\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem/question\tO\tproblem/question\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nroute\tO\troute\tO\ncalled\tO\tcalled\tO\n'\tO\t'\tO\ndashboard\tB-Function_Name\tdashboard\tO\n'\tO\t'\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nroute\tO\troute\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\napplication\tO\tapplication\tO\nview\tO\tview\tO\nand\tO\tand\tO\nis\tO\tis\tO\nshown\tO\tshown\tO\nafter\tO\tafter\tO\nlogin\tO\tlogin\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nuses\tO\tuses\tO\na\tO\ta\tO\ncollection\tB-Library_Class\tcollection\tO\ncalled\tO\tcalled\tO\nClients\tB-Class_Name\tClients\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1788\tI-Code_Block\tQ_1788\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nDash.Views.Dashboard\tB-Library_Class\tDash.Views.Dashboard\tB-Code_Block\nview\tO\tview\tO\ntakes\tO\ttakes\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nviews\tO\tviews\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\nrenderDashboard()\tB-Library_Function\trenderDashboard()\tO\n;\tO\t;\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\nrendering\tO\trendering\tO\nall\tO\tall\tO\nclient\tB-Application\tclient\tO\nviews\tO\tviews\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\ninteresting\tO\tinteresting\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nrendering\tO\trendering\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nclient\tO\tclient\tO\nviews\tO\tviews\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1789\tI-Code_Block\tQ_1789\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwith\tO\twith\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nin\tO\tin\tO\nall\tO\tall\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nmean\tO\tmean\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\nfirst\tO\tfirst\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nroutes\tO\troutes\tO\nme\tO\tme\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndashboard\tB-User_Interface_Element\tdashboard\tO\nview\tO\tview\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nclients\tB-Application\tclients\tO\ngets\tO\tgets\tO\nrendered\tO\trendered\tO\nand\tO\tand\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nDOM\tO\tDOM\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nhappens\tO\thappens\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\naccess\tO\taccess\tO\n/dashboard\tB-User_Interface_Element\t/dashboard\tB-Code_Block\nimmediately\tO\timmediately\tO\n(\tO\t(\tO\nafther\tO\tafther\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nchecks\tO\tchecks\tO\nif\tO\tif\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nviews\tO\tviews\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nfirst\tO\tfirst\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nviews\tO\tviews\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\naccess\tO\taccess\tO\n/dashboard\tB-User_Interface_Element\t/dashboard\tB-Code_Block\ndirectly\tO\tdirectly\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1790\tI-Code_Block\tQ_1790\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\ntook\tO\ttook\tO\nme\tO\tme\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfix\tO\tfix\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nwas\tO\twas\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nthis\tB-Library_Variable\tthis\tB-Code_Block\n.\tI-Library_Variable\t.\tI-Code_Block\n$el\tI-Library_Variable\t$el\tI-Code_Block\nwith\tO\twith\tO\n$(this.el)\tB-Library_Variable\t$(this.el)\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nalway\tO\talway\tO\n's\tO\t's\tO\nthought\tO\tthought\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nmatter\tO\tmatter\tO\nbecause\tO\tbecause\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nessentially\tO\tessentially\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nor\tO\tor\tO\nam\tO\tam\tO\nI\tO\tI\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nassumption\tO\tassumption\tO\n?\tO\t?\tO\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nexplain\tO\texplain\tO\nto\tO\tto\tO\nme\tO\tme\tO\nthis\tO\tthis\tO\nweird\tO\tweird\tO\nbehaviour\tO\tbehaviour\tO\n?\tO\t?\tO\n\t\nAs\tO\tAs\tO\nrequested\tO\trequested\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nglobal\tB-Data_Type\tglobal\tO\nDashboard\tB-Class_Name\tDashboard\tO\nview\tO\tview\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1791\tI-Code_Block\tQ_1791\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17631216\tO\t17631216\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17631216/\tO\thttps://stackoverflow.com/questions/17631216/\tO\n\t\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nguess\tO\tguess\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nright\tO\tright\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2311\tI-Code_Block\tA_2311\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\n.dashboard\tB-Variable_Name\t.dashboard\tB-Code_Block\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ndirectly\tO\tdirectly\tO\nassign\tO\tassign\tO\nto\tO\tto\tO\nthis.el\tB-Library_Variable\tthis.el\tB-Code_Block\nand\tO\tand\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\na\tO\ta\tO\nmistake\tO\tmistake\tO\nas\tO\tas\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nupdate\tO\tupdate\tO\nthis\tB-Library_Variable\tthis\tB-Code_Block\n.\tI-Library_Variable\t.\tI-Code_Block\n$\tI-Library_Variable\t$\tI-Code_Block\nel\tI-Library_Variable\tel\tI-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthis.el\tB-Library_Variable\tthis.el\tB-Code_Block\nand\tO\tand\tO\nthis\tB-Library_Variable\tthis\tB-Code_Block\n.\tI-Library_Variable\t.\tI-Code_Block\n$el\tI-Library_Variable\t$el\tI-Code_Block\nreference\tO\treference\tO\ndifferent\tO\tdifferent\tO\nthings\tO\tthings\tO\nand\tO\tand\tO\nnothing\tO\tnothing\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\nsetElement\tB-Library_Function\tsetElement\tB-Code_Block\nto\tO\tto\tO\nchange\tO\tchange\tO\na\tO\ta\tO\nview\tO\tview\tO\n's\tO\t's\tO\nel\tB-Library_Variable\tel\tB-Code_Block\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsaying\tO\tsaying\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2312\tI-Code_Block\tA_2312\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11984095\tO\t11984095\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11984095/\tO\thttps://stackoverflow.com/questions/11984095/\tO\n\t\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1122\tI-Code_Block\tQ_1122\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11984095\tO\t11984095\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11984095/\tO\thttps://stackoverflow.com/questions/11984095/\tO\n\t\n\t\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nold\tO\told\tO\nparams\tO\tparams\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nmerge\tO\tmerge\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nthem\tO\tthem\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1548\tI-Code_Block\tA_1548\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11984095\tO\t11984095\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11984095/\tO\thttps://stackoverflow.com/questions/11984095/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\npassing\tO\tpassing\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nargument\tO\targument\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\n's\tO\t's\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n3rd\tO\t3rd\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nsecond\tO\tsecond\tO\nparameter\tO\tparameter\tO\nis\tO\tis\tO\ninterpreted\tO\tinterpreted\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nresponse_status\tB-Library_Variable\tresponse_status\tB-Code_Block\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nredirect\tO\tredirect\tO\nis\tO\tis\tO\nan\tO\tan\tO\ninternal\tO\tinternal\tO\none\tO\tone\tO\n(\tO\t(\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\napp\tO\tapp\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nscheme\tO\tscheme\tO\nand\tO\tand\tO\nhostname\tO\thostname\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nuse\tO\tuse\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1546\tI-Code_Block\tA_1546\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\n's\tO\t's\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\nURL\tO\tURL\tO\n,\tO\t,\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\ncomplete\tO\tcomplete\tO\nURL\tO\tURL\tO\nbefore\tO\tbefore\tO\nredirecting\tO\tredirecting\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1547\tI-Code_Block\tA_1547\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25973006\tO\t25973006\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25973006/\tO\thttps://stackoverflow.com/questions/25973006/\tO\n\t\n\t\nHi\tO\tHi\tO\ni\tO\ti\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\naltbeacon\tB-Library\taltbeacon\tO\nreference\tO\treference\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\ndidEnterRegion\tB-Library_Function\tdidEnterRegion\tO\nusing\tO\tusing\tO\nbootstrap\tB-Library_Class\tbootstrap\tO\nnotifier\tI-Library_Class\tnotifier\tO\nwhen\tO\twhen\tO\napp\tO\tapp\tO\nsees\tO\tsees\tO\nbeacon\tB-Device\tbeacon\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nscan\tO\tscan\tO\nbackground\tO\tbackground\tO\nevery\tO\tevery\tO\n5\tO\t5\tO\nminutes\tO\tminutes\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nreact\tO\treact\tO\nto\tO\tto\tO\nnew\tO\tnew\tO\nbeacon\tB-Device\tbeacon\tO\nimmediately\tO\timmediately\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nMy\tO\tMy\tO\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2976\tI-Code_Block\tQ_2976\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tB-Code_Block\t}\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25973006\tO\t25973006\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25973006/\tO\thttps://stackoverflow.com/questions/25973006/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nincrease\tO\tincrease\tO\nthe\tO\tthe\tO\nfrequency\tO\tfrequency\tO\nof\tO\tof\tO\nbackground\tO\tbackground\tO\nscans\tO\tscans\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3584\tI-Code_Block\tA_3584\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\ndetection\tO\tdetection\tO\ntimes\tO\ttimes\tO\nas\tO\tas\tO\nfast\tO\tfast\tO\nas\tO\tas\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nbe\tO\tbe\tO\nforewarned\tO\tforewarned\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nuse\tO\tuse\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nbattery\tO\tbattery\tO\npower\tO\tpower\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntweak\tO\ttweak\tO\nthe\tO\tthe\tO\nbetween\tO\tbetween\tO\nscan\tO\tscan\tO\nperiod\tO\tperiod\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ntolerance\tO\ttolerance\tO\nfor\tO\tfor\tO\nbattery\tO\tbattery\tO\ndrain\tO\tdrain\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\nnoted\tO\tnoted\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\n5\tO\t5\tO\nminutes\tO\tminutes\tO\n(\tO\t(\tO\n5*3600l\tO\t5*3600l\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAndroid\tB-Operating_System\tAndroid\tO\nL\tB-Version\tL\tO\nhas\tO\thas\tO\nnew\tO\tnew\tO\nscanning\tB-Library\tscanning\tO\nAPIs\tI-Library\tAPIs\tO\nwhich\tO\twhich\tO\npromise\tO\tpromise\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nimprove\tO\timprove\tO\nthis\tO\tthis\tO\ntradeoff\tO\ttradeoff\tO\nbetween\tO\tbetween\tO\ndetection\tO\tdetection\tO\ntimers\tO\ttimers\tO\nand\tO\tand\tO\nbattery\tO\tbattery\tO\nusage\tO\tusage\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nfor4.3\tB-Version\tfor4.3\tO\nand\tO\tand\tO\n4.4\tB-Version\t4.4\tO\napps\tO\tapps\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\njudgment\tO\tjudgment\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4139365\tO\t4139365\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4139365/\tO\thttps://stackoverflow.com/questions/4139365/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nJava\tB-Language\tJava\tO\n6\tB-Version\t6\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nreason\tO\treason\tO\nwhy\tO\twhy\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nconditional\tO\tconditional\tO\nexpressions\tO\texpressions\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_275\tI-Code_Block\tQ_275\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nnot\tO\tnot\tO\nloop\tO\tloop\tO\nexpressions\tO\texpressions\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_276\tI-Code_Block\tQ_276\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\nadds\tO\tadds\tO\nelements\tO\telements\tO\nfrom\tO\tfrom\tO\nschedule\tO\tschedule\tO\ninto\tO\tinto\tO\nweeklyPlan\tB-Variable_Name\tweeklyPlan\tO\nwhile\tO\twhile\tO\nhasNext()\tB-Library_Function\thasNext()\tB-Code_Block\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nlanguages\tO\tlanguages\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nfeature\tO\tfeature\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4139365\tO\t4139365\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4139365/\tO\thttps://stackoverflow.com/questions/4139365/\tO\n\t\n\t\nThese\tO\tThese\tO\n\"\tO\t\"\tO\nloop\tO\tloop\tO\nexpressions\tO\texpressions\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nin\tO\tin\tO\na\tO\ta\tO\nslightly\tO\tslightly\tO\ndifferent\tO\tdifferent\tO\nform\tO\tform\tO\n,\tO\t,\tO\nare\tO\tare\tO\ncalled\tO\tcalled\tO\nclosures\tO\tclosures\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ngroovy-code\tB-Language\tgroovy-code\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_420\tI-Code_Block\tA_420\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndefine\tO\tdefine\tO\nwhat\tO\twhat\tO\nhappens\tO\thappens\tO\nwith\tO\twith\tO\neach\tO\teach\tO\nobject\tO\tobject\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nschedule\tB-Variable_Name\tschedule\tB-Code_Block\ncollection\tO\tcollection\tO\n.\tO\t.\tO\n\t\nJava\tB-Language\tJava\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nyet\tO\tyet\tO\nsupport\tO\tsupport\tO\nclosures\tO\tclosures\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nit\tO\tit\tO\nis\tO\tis\tO\nimplemented\tO\timplemented\tO\nwith\tO\twith\tO\nanonymous\tO\tanonymous\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\nclosures\tO\tclosures\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\napplications\tO\tapplications\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4139365\tO\t4139365\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4139365/\tO\thttps://stackoverflow.com/questions/4139365/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbecause\tO\tbecause\tO\nconditional\tO\tconditional\tO\nexpressions\tO\texpressions\tO\nare\tO\tare\tO\nmuch\tO\tmuch\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nwithout\tO\twithout\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\npesky\tO\tpesky\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\nsaying\tO\tsaying\tO\nthat\tO\tthat\tO\nweeklyPlan.add\tB-Function_Name\tweeklyPlan.add\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nmultiple\tO\tmultiple\tO\ntimes\tO\ttimes\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nthat\tO\tthat\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\n=>\tB-Code_Block\t=>\tB-Code_Block\noperator\tO\toperator\tO\njust\tO\tjust\tO\njumped\tO\tjumped\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nparentheses\tO\tparentheses\tO\nthat\tO\tthat\tO\ncontain\tO\tcontain\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nC#\tB-Language\tC#\tO\nhas\tO\thas\tO\nfeatures\tO\tfeatures\tO\nin\tO\tin\tO\nLINQ\tB-Library\tLINQ\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nperform\tO\tperform\tO\nsimilar\tO\tsimilar\tO\nactions\tO\tactions\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndescribing\tO\tdescribing\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nimplements\tO\timplements\tO\nthese\tO\tthese\tO\nusing\tO\tusing\tO\nclosures\tO\tclosures\tO\nand\tO\tand\tO\nextension\tO\textension\tO\nmethods\tO\tmethods\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_421\tI-Code_Block\tA_421\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\ntricky\tO\ttricky\tO\nlanguage\tO\tlanguage\tO\nconstructs\tO\tconstructs\tO\nthan\tO\tthan\tO\nJava\tB-Language\tJava\tO\nstarted\tO\tstarted\tO\nout\tO\tout\tO\nwith\tO\twith\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\n.NET\tB-Library\t.NET\tO\nruntime\tO\truntime\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nrapidly\tO\trapidly\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nJava\tB-Language\tJava\tO\nplatform\tO\tplatform\tO\nhas\tO\thas\tO\n,\tO\t,\tO\nlargely\tO\tlargely\tO\nfor\tO\tfor\tO\npolitical\tO\tpolitical\tO\nreasons\tO\treasons\tO\n.\tO\t.\tO\n\t\nJava\tB-Language\tJava\tO\n7\tB-Version\t7\tO\nwas\tO\twas\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nfeature\tO\tfeature\tO\nclosures\tO\tclosures\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthey\tO\tthey\tO\ngot\tO\tgot\tO\npushed\tO\tpushed\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nnext\tO\tnext\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36982499\tO\t36982499\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36982499/\tO\thttps://stackoverflow.com/questions/36982499/\tO\n\t\n\t\nI\tO\tI\tO\nalways\tO\talways\tO\nread\tO\tread\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nat\tO\tat\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nprocessor\tB-Device\tprocessor\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nrun\tO\trun\tO\none\tO\tone\tO\nprocess\tO\tprocess\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\none\tO\tone\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nin\tO\tin\tO\nstate\tO\tstate\tO\nrunning\tO\trunning\tB-Code_Block\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nrunnable\tO\trunnable\tO\nprocesses\tO\tprocesses\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nare\tO\tare\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nprocesses\tO\tprocesses\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nscheduler\tO\tscheduler\tO\nto\tO\tto\tO\nschedule\tO\tschedule\tO\ntheir\tO\ttheir\tO\nexecution\tO\texecution\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nall\tO\tall\tO\nthese\tO\tthese\tO\nrunnable\tO\trunnable\tO\nprocesses\tO\tprocesses\tO\nexist\tO\texist\tO\nin\tO\tin\tO\nuser\tO\tuser\tO\naddress\tO\taddress\tO\nspace\tO\tspace\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nrunning\tO\trunning\tO\nprocess\tO\tprocess\tO\nin\tO\tin\tO\nuser\tO\tuser\tO\naddress\tO\taddress\tO\nspace\tO\tspace\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nonce\tO\tonce\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nscheduled\tO\tscheduled\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nbrought\tO\tbrought\tO\nback\tO\tback\tO\nto\tO\tto\tO\nRAM\tB-Device\tRAM\tO\nfrom\tO\tfrom\tO\ndisk\tB-Device\tdisk\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nwhich\tO\twhich\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nmean\tO\tmean\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nkernel\tB-Application\tkernel\tO\nkeeps\tO\tkeeps\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ntask\tO\ttask\tO\ndescriptor\tO\tdescriptor\tO\nin\tO\tin\tO\nits\tO\tits\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nall\tO\tall\tO\nrunnable\tO\trunnable\tO\nprocesses\tO\tprocesses\tO\neven\tO\teven\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nin\tO\tin\tO\ndisk\tB-Device\tdisk\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\nI\tO\tI\tO\nam\tO\tam\tO\nconfused\tO\tconfused\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36982499\tO\t36982499\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36982499/\tO\thttps://stackoverflow.com/questions/36982499/\tO\n\t\n\t\nIf\tO\tIf\tO\nCPU\tB-Device\tCPU\tO\nsupports\tO\tsupports\tO\nvirtual\tO\tvirtual\tO\nmemory\tO\tmemory\tO\naddressing\tO\taddressing\tO\n,\tO\t,\tO\neach\tO\teach\tO\nprocess\tO\tprocess\tO\nhas\tO\thas\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nview\tO\tview\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nTwo\tO\tTwo\tO\ndifferent\tO\tdifferent\tO\nprocesses\tO\tprocesses\tO\nthat\tO\tthat\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nmemory\tO\tmemory\tO\naddress\tO\taddress\tO\n,\tO\t,\tO\nwill\tO\twill\tO\nmap\tO\tmap\tO\nto\tO\tto\tO\ndifferent\tO\tdifferent\tO\nlocation\tO\tlocation\tO\nin\tO\tin\tO\nphysical\tO\tphysical\tO\nmemory\tO\tmemory\tO\n,\tO\t,\tO\nunless\tO\tunless\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nmaps\tO\tmaps\tO\ntells\tO\ttells\tO\notherwize\tO\totherwize\tO\n(\tO\t(\tO\nshared\tO\tshared\tO\nmemory\tO\tmemory\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nDLL\tB-File_Type\tDLL\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nmapped\tO\tmapped\tO\nread\tO\tread\tO\nonly\tO\tonly\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n)\tO\t)\tO\n\t\nIf\tO\tIf\tO\nCPU\tB-Device\tCPU\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\nvirtual\tO\tvirtual\tO\nmemory\tO\tmemory\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nmemory\tO\tmemory\tO\nprotection\tO\tprotection\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nprocesses\tO\tprocesses\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nprotected\tO\tprotected\tO\naway\tO\taway\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nrunning\tO\trunning\tO\nprocess\tO\tprocess\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\naccess\tO\taccess\tO\nits\tO\tits\tO\nown\tO\town\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25518174\tO\t25518174\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25518174/\tO\thttps://stackoverflow.com/questions/25518174/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nLogin\tO\tLogin\tO\npage\tB-User_Interface_Element\tpage\tO\nwithout\tO\twithout\tO\nLayout\tO\tLayout\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nlogin\tO\tlogin\tO\nusing\tO\tusing\tO\najax\tB-Library_Function\tajax\tO\npost\tI-Library_Function\tpost\tO\nmethod\tO\tmethod\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\nnot\tO\tnot\tO\nhit\tO\thit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmvc\tB-Algorithm\tmvc\tO\nController\tO\tController\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nIm\tO\tIm\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\nalert\tB-User_Interface_Element\talert\tO\nbox\tI-User_Interface_Element\tbox\tO\nin\tO\tin\tO\nsuccess\tO\tsuccess\tO\nsection\tO\tsection\tO\nis\tO\tis\tO\npopup\tO\tpopup\tO\nwith\tO\twith\tO\nblank\tO\tblank\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nhit\tO\thit\tO\nthat\tO\tthat\tO\nalert\tO\talert\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nrecord\tO\trecord\tO\n.\tO\t.\tO\n\t\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nAjax\tB-Library_Function\tAjax\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2899\tI-Code_Block\tQ_2899\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLogin\tO\tLogin\tO\nForm\tO\tForm\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2900\tI-Code_Block\tQ_2900\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nScripts\tO\tScripts\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2901\tI-Code_Block\tQ_2901\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25518174\tO\t25518174\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25518174/\tO\thttps://stackoverflow.com/questions/25518174/\tO\n\t\n\t\nThe\tO\tThe\tO\nProblem\tO\tProblem\tO\nis\tO\tis\tO\nwith\tO\twith\tO\ndatatype\tO\tdatatype\tB-Code_Block\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nspecified\tO\tspecified\tO\nin\tO\tin\tO\najax\tB-Library_Function\tajax\tO\nrequest\tO\trequest\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3516\tI-Code_Block\tA_3516\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25518174\tO\t25518174\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25518174/\tO\thttps://stackoverflow.com/questions/25518174/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nalert\tB-Library_Function\talert\tO\nis\tO\tis\tO\nempty\tO\tempty\tO\n(\tO\t(\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nundefined\tO\tundefined\tO\n)\tO\t)\tO\nyour\tO\tyour\tO\nserver\tB-Application\tserver\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nresponding\tO\tresponding\tO\nwith\tO\twith\tO\na\tO\ta\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nany\tO\tany\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nin\tO\tin\tO\ndata.Code\tB-Code_Block\tdata.Code\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nalert({}.Code)\tB-Code_Block\talert({}.Code)\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nshows\tO\tshows\tO\nan\tO\tan\tO\nalert\tB-Library_Function\talert\tO\nwith\tO\twith\tO\nundefined\tO\tundefined\tO\nwhereas\tO\twhereas\tO\ndata\tB-Code_Block\tdata\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n{Code:''};alert(data.Code)\tI-Code_Block\t{Code:''};alert(data.Code)\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nshows\tO\tshows\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\nalert\tB-Library_Function\talert\tO\nas\tO\tas\tO\ndescribed\tO\tdescribed\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nProbably\tO\tProbably\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nalerts\tB-Library_Function\talerts\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25036609\tO\t25036609\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25036609/\tO\thttps://stackoverflow.com/questions/25036609/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nAFNetworking\tB-Library\tAFNetworking\tB-Code_Block\n2.0\tB-Version\t2.0\tI-Code_Block\nto\tO\tto\tO\nsend\tO\tsend\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nAPI\tB-Library\tAPI\tO\n(\tO\t(\tO\njson\tB-File_Type\tjson\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nexcept\tO\texcept\tO\nof\tO\tof\tO\nsending\tO\tsending\tO\ndata\tO\tdata\tO\nwith\tO\twith\tO\ngerman\tO\tgerman\tO\nletters\tO\tletters\tO\nlike\tO\tlike\tO\nä\tB-Value\tä\tB-Code_Block\nü\tI-Value\tü\tI-Code_Block\nö\tI-Value\tö\tI-Code_Block\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nAPI\tB-Library\tAPI\tO\nbecause\tO\tbecause\tO\ni\tO\ti\tO\ndid\tO\tdid\tO\nit\tO\tit\tO\nin\tO\tin\tO\nAndroid\tB-Operating_System\tAndroid\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2829\tI-Code_Block\tQ_2829\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6588337\tO\t6588337\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6588337/\tO\thttps://stackoverflow.com/questions/6588337/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\ndevices\tO\tdevices\tO\nlocation\tO\tlocation\tO\nupdates\tO\tupdates\tO\nwith\tO\twith\tO\nstatements\tO\tstatements\tO\nbelow\tO\tbelow\tO\nincluded\tO\tincluded\tO\n:\tO\t:\tO\n\t\nJust\tO\tJust\tO\ncurious\tO\tcurious\tO\nas\tO\tas\tO\nto\tO\tto\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nSIGABRT\tB-Library_Function\tSIGABRT\tO\nsignal\tI-Library_Function\tsignal\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nPrevSpeedDic\tB-Variable_Name\tPrevSpeedDic\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_492\tI-Code_Block\tQ_492\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nmove\tO\tmove\tO\nthis\tO\tthis\tO\nabove\tO\tabove\tO\nthe\tO\tthe\tO\nstatement\tO\tstatement\tO\nabove\tO\tabove\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nas\tO\tas\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nvariables\tO\tvariables\tO\nare\tO\tare\tO\ndefined\tO\tdefined\tO\ncorrectly\tO\tcorrectly\tO\nor\tO\tor\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nany\tO\tany\tO\ncircumstance\tO\tcircumstance\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_493\tI-Code_Block\tQ_493\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6588337\tO\t6588337\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6588337/\tO\thttps://stackoverflow.com/questions/6588337/\tO\n\t\n\t\nLocal\tO\tLocal\tO\nvariables\tO\tvariables\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\ninitialized\tO\tinitialized\tO\nto\tO\tto\tO\n0\tB-Value\t0\tO\n(\tO\t(\tO\nnil\tB-Value\tnil\tO\n)\tO\t)\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nset\tO\tset\tO\nDriveInfoDic\tB-Variable_Name\tDriveInfoDic\tO\nbefore\tO\tbefore\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nbranch\tO\tbranch\tO\nand\tO\tand\tO\ncrash\tO\tcrash\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15588799\tO\t15588799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15588799/\tO\thttps://stackoverflow.com/questions/15588799/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nreading\tO\treading\tO\nthrough\tO\tthrough\tO\nsome\tO\tsome\tO\nsimilar\tO\tsimilar\tO\nquestions\tO\tquestions\tO\nbut\tO\tbut\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nimplement\tO\timplement\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nGoogle\tB-Library\tGoogle\tO\nApp\tI-Library\tApp\tO\nEngine\tI-Library\tEngine\tO\nand\tO\tand\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nCSV\tB-File_Type\tCSV\tO\nexport\tO\texport\tO\nusing\tO\tusing\tO\nunicodecsv\tB-Library\tunicodecsv\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nexport\tO\texport\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nrun\tO\trun\tO\ndaily\tO\tdaily\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nBlobstore\tB-Library_Class\tBlobstore\tO\nitem\tI-Library_Class\titem\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nretrieved\tO\tretrieved\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nURL\tO\tURL\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nintention\tO\tintention\tO\nof\tO\tof\tO\nBlobstore\tB-Library_Class\tBlobstore\tO\nitems\tI-Library_Class\titems\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nalso\tO\talso\tO\nread\tO\tread\tO\nsome\tO\tsome\tO\narticles\tO\tarticles\tO\nthat\tO\tthat\tO\ngot\tO\tgot\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nUnforuntately\tO\tUnforuntately\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsuch\tO\tsuch\tO\nan\tO\tan\tO\nexperienced\tO\texperienced\tO\nprogrammer\tO\tprogrammer\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\nof\tO\tof\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nsituation\tO\tsituation\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nbe\tO\tbe\tO\ngreat\tO\tgreat\tO\nif\tO\tif\tO\nsomeone\tO\tsomeone\tO\ncould\tO\tcould\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\ninput\tO\tinput\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nrealize\tO\trealize\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1529\tI-Code_Block\tQ_1529\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15588799\tO\t15588799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15588799/\tO\thttps://stackoverflow.com/questions/15588799/\tO\n\t\n\t\nAs\tO\tAs\tO\nTim\tB-User_Name\tTim\tO\npointed\tO\tpointed\tO\nout\tO\tout\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\noverwrite\tO\toverwrite\tO\nblobstore\tB-Library\tblobstore\tO\nentity\tO\tentity\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\none\tO\tone\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nand\tO\tand\tO\nremember\tO\tremember\tO\nthe\tO\tthe\tO\nkey\tB-Library_Class\tkey\tO\nto\tO\tto\tO\nserve\tO\tserve\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nentity\tO\tentity\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2015\tI-Code_Block\tA_2015\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthen\tO\tthen\tO\n,\tO\t,\tO\nin\tO\tin\tO\na\tO\ta\tO\ncron\tB-Library_Class\tcron\tO\nhandler\tI-Library_Class\thandler\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2016\tI-Code_Block\tA_2016\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\n,\tO\t,\tO\nfinally\tO\tfinally\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nserve\tO\tserve\tO\nyour\tO\tyour\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nin\tO\tin\tO\na\tO\ta\tO\nBlobstoreDownloadHandler\tB-Library_Class\tBlobstoreDownloadHandler\tB-Code_Block\n)\tO\t)\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\njust\tO\tjust\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2017\tI-Code_Block\tA_2017\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15588799\tO\t15588799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15588799/\tO\thttps://stackoverflow.com/questions/15588799/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\noverwrite\tO\toverwrite\tO\na\tO\ta\tO\nblob\tB-Library\tblob\tO\nstore\tI-Library\tstore\tO\nentity\tO\tentity\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\ndelete\tO\tdelete\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nno\tO\tno\tO\ncontrol\tO\tcontrol\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nblob\tB-Library_Class\tblob\tO\nstore\tI-Library_Class\tstore\tO\nkey\tI-Library_Class\tkey\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nkeep/manage\tO\tkeep/manage\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nin\tO\tin\tO\nyourapp\tO\tyourapp\tO\nwith\tO\twith\tO\na\tO\ta\tO\nredirect\tO\tredirect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nblob\tB-Library\tblob\tO\nstore\tI-Library\tstore\tO\nURL\tO\tURL\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nwriting\tO\twriting\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nblob\tB-Library\tblob\tO\nstore\tI-Library\tstore\tO\n,\tO\t,\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfile\tB-Library\tfile\tO\napi\tI-Library\tapi\tO\n\t\nhttps://developers.google.com/appengine/docs/python/blobstore/overview#Writing_Files_to_the_Blobstore\tO\thttps://developers.google.com/appengine/docs/python/blobstore/overview#Writing_Files_to_the_Blobstore\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25772079\tO\t25772079\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25772079/\tO\thttps://stackoverflow.com/questions/25772079/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\nXcode\tB-Application\tXcode\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nmy\tO\tmy\tO\nIPA\tB-File_Type\tIPA\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nsearching\tO\tsearching\tO\napple\tO\tapple\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\npossible\tO\tpossible\tO\nsystem\tO\tsystem\tO\ncapabilities\tO\tcapabilities\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nlazy\tO\tlazy\tO\n,\tO\t,\tO\nI\tO\tI\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\narchive\tO\tarchive\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nwith\tO\twith\tO\nthese\tO\tthese\tO\ncapabilities\tO\tcapabilities\tO\nturned\tO\tturned\tO\non\tO\ton\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsearched\tO\tsearched\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nIPA\tB-File_Type\tIPA\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\nwhere\tO\twhere\tO\nXcode6\tB-Application\tXcode6\tB-Code_Block\nis\tO\tis\tO\nhiding\tO\thiding\tO\nthese\tO\tthese\tO\nentitlements\tO\tentitlements\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nusers\tO\tusers\tO\nusing\tO\tusing\tO\nXcode6\tB-Application\tXcode6\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\ncapabilities\tO\tcapabilities\tO\nlisted\tO\tlisted\tO\nhere\tO\there\tO\n\t\nSince\tO\tSince\tO\nI\tO\tI\tO\ngenerate\tO\tgenerate\tO\nmy\tO\tmy\tO\nIPA\tB-File_Type\tIPA\tO\nmanually\tO\tmanually\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nthese\tO\tthese\tO\nkeys\tO\tkeys\tO\nare\tO\tare\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\ncapabilities\tO\tcapabilities\tO\nset\tO\tset\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nApp\tO\tApp\tO\nIdentifier\tO\tIdentifier\tO\n.\tO\t.\tO\n\t\nUPDATED\tO\tUPDATED\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nwere\tO\twere\tO\nactually\tO\tactually\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nproject.pbxproj\tB-File_Name\tproject.pbxproj\tB-Code_Block\nfile\tO\tfile\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nhelp\tO\thelp\tO\n@colinta\tB-User_Name\t@colinta\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2939\tI-Code_Block\tQ_2939\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25772079\tO\t25772079\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25772079/\tO\thttps://stackoverflow.com/questions/25772079/\tO\n\t\n\t\nYour\tO\tYour\tO\nscreenshot\tO\tscreenshot\tO\ngave\tO\tgave\tO\nme\tO\tme\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\n-\tO\t-\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\ndiff\tO\tdiff\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproject.pbxproj\tB-File_Name\tproject.pbxproj\tO\nfile\tO\tfile\tO\n!\tO\t!\tO\n\t\nCame\tO\tCame\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3553\tI-Code_Block\tA_3553\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHTH\tO\tHTH\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35585860\tO\t35585860\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35585860/\tO\thttps://stackoverflow.com/questions/35585860/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nworking\tO\tworking\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npagerank\tB-Algorithm\tpagerank\tO\nalgorithm\tO\talgorithm\tO\n:\tO\t:\tO\n\t\nwhere\tO\twhere\tO\nmxm\tB-Variable_Name\tmxm\tB-Code_Block\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4354\tI-Code_Block\tQ_4354\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nit\tO\tit\tO\nshould\tO\tshould\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\niterations\tO\titerations\tO\n:\tO\t:\tO\n\t\nIteration\tO\tIteration\tO\n0\tO\t0\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIteration\tO\tIteration\tO\n1\tO\t1\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIteration\tO\tIteration\tO\n2\tO\t2\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIteration\tO\tIteration\tO\n3\tO\t3\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\n.\tO\t.\tO\n\t\n.\tO\t.\tO\n\t\n.\tO\t.\tO\n\t\nIteration\tO\tIteration\tO\n9\tO\t9\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nhowever\tO\thowever\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nThe\tO\tThe\tO\nabove\tO\tabove\tO\nis\tO\tis\tO\na\tO\ta\tO\npart\tO\tpart\tO\n,\tO\t,\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nCan\tO\tCan\tO\nanybody\tO\tanybody\tO\nplease\tO\tplease\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35585860\tO\t35585860\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35585860/\tO\thttps://stackoverflow.com/questions/35585860/\tO\n\t\n\t\nLooking\tO\tLooking\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nsection\tO\tsection\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5076\tI-Code_Block\tA_5076\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nVariables\tO\tVariables\tO\np\tB-Variable_Name\tp\tB-Code_Block\nand\tO\tand\tO\nq\tB-Variable_Name\tq\tB-Code_Block\nare\tO\tare\tO\nset\tO\tset\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\nhost_rank[k]\tB-Code_Block\thost_rank[k]\tB-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nunless\tO\tunless\tO\ni\tB-Code_Block\ti\tB-Code_Block\n==\tI-Code_Block\t==\tI-Code_Block\nk\tI-Code_Block\tk\tI-Code_Block\n(\tO\t(\tO\nthus\tO\tthus\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nelement\tO\telement\tO\nbetween\tO\tbetween\tO\np\tB-Variable_Name\tp\tB-Code_Block\nand\tO\tand\tO\nq\tB-Variable_Name\tq\tB-Code_Block\nbeing\tO\tbeing\tO\nread\tO\tread\tO\n)\tO\t)\tO\n,\tO\t,\tO\nlol\tB-Variable_Name\tlol\tB-Code_Block\nwill\tO\twill\tO\nnot\tO\tnot\tO\nmove\tO\tmove\tO\nfrom\tO\tfrom\tO\n0\tB-Value\t0\tB-Code_Block\n,\tO\t,\tO\nso\tO\tso\tO\neucl\tB-Variable_Name\teucl\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\n0\tB-Value\t0\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ninfinite\tO\tinfinite\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nsuspect\tO\tsuspect\tO\nthat\tO\tthat\tO\nlol\tB-Code_Block\tlol\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ndo-while\tB-Code_Block\tdo-while\tB-Code_Block\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nunless\tO\tunless\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\ni\tB-Variable_Name\ti\tB-Code_Block\n,\tO\t,\tO\nd\tB-Variable_Name\td\tB-Code_Block\n,\tO\t,\tO\nn\tB-Variable_Name\tn\tB-Code_Block\nand\tO\tand\tO\nsumPR\tB-Variable_Name\tsumPR\tB-Code_Block\nare\tO\tare\tO\nshared\tO\tshared\tO\nand\tO\tand\tO\naltered\tO\taltered\tO\nby\tO\tby\tO\nanother\tO\tanother\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\nif\tO\tif\tO\nit\tO\tit\tO\nrepeats\tO\trepeats\tO\n,\tO\t,\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nrepeat\tO\trepeat\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31851180\tO\t31851180\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31851180/\tO\thttps://stackoverflow.com/questions/31851180/\tO\n\t\n\t\nSay\tO\tSay\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nHTML\tB-Language\tHTML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3850\tI-Code_Block\tQ_3850\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nreplace\tO\treplace\tO\nall\tO\tall\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nUS$\tB-Value\tUS$\tO\nXX.xx\tI-Value\tXX.xx\tO\nwith\tO\twith\tO\nGBP£\tB-Variable_Name\tGBP£\tO\nYY.yy\tI-Variable_Name\tYY.yy\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlive\tO\tlive\tO\npage\tO\tpage\tO\nusing\tO\tusing\tO\njquery\tB-Library\tjquery\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nGBP\tB-Variable_Name\tGBP\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ndetermined\tO\tdetermined\tO\nby\tO\tby\tO\nmy\tO\tmy\tO\nown\tO\town\tO\ncurrency\tO\tcurrency\tO\nconversion\tO\tconversion\tO\nratio\tO\tratio\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nfirst\tO\tfirst\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprices\tO\tprices\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nanything\tO\tanything\tO\nbeginning\tO\tbeginning\tO\nwith\tO\twith\tO\nUSD$\tB-Value\tUSD$\tO\nand\tO\tand\tO\nending\tO\tending\tO\nafter\tO\tafter\tO\n.xx\tB-Value\t.xx\tO\n?\tO\t?\tO\n\t\nPrices\tO\tPrices\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nhave\tO\thave\tO\ncents\tO\tcents\tO\ndisplayed\tO\tdisplayed\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nstuck\tO\tstuck\tO\nwhat\tO\twhat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\npart\tO\tpart\tO\n.\tO\t.\tO\n\t\nShould\tO\tShould\tO\nI\tO\tI\tO\nwrap\tO\twrap\tO\nthese\tO\tthese\tO\ninstances\tO\tinstances\tO\nin\tO\tin\tO\na\tO\ta\tO\nspan\tO\tspan\tO\ntag\tO\ttag\tO\nwith\tO\twith\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\njquery.each()\tB-Library_Function\tjquery.each()\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nloop\tO\tloop\tO\nthrough\tO\tthrough\tO\neach\tO\teach\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nwith\tO\twith\tO\na\tO\ta\tO\njquery(this).html(\"GBP£YY.yy\")\tB-Library_Function\tjquery(this).html(\"GBP£YY.yy\")\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nsetting\tO\tsetting\tO\nme\tO\tme\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\npath\tO\tpath\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nguys\tO\tguys\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31851180\tO\t31851180\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31851180/\tO\thttps://stackoverflow.com/questions/31851180/\tO\n\t\n\t\nbase\tO\tbase\tO\nmethod\tO\tmethod\tO\nfor\tO\tfor\tO\ntext\tO\ttext\tO\nreplacements\tO\treplacements\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4556\tI-Code_Block\tA_4556\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nstuff\tO\tstuff\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4557\tI-Code_Block\tA_4557\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfire\tO\tfire\tO\nthat\tO\tthat\tO\non\tO\ton\tO\nANY\tO\tANY\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\nwill\tO\twill\tO\neven\tO\teven\tO\nreplace\tO\treplace\tO\ntitles\tO\ttitles\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nso.\tO\tso.\tO\n.\tO\t.\tO\nto\tO\tto\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nbenefits\tO\tbenefits\tO\nof\tO\tof\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\njquery\tB-Library\tjquery\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\njquery\tB-Library\tjquery\tO\nwill\tO\twill\tO\nprocess\tO\tprocess\tO\nand\tO\tand\tO\nwrap\tO\twrap\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\nelement\tO\telement\tO\nin\tO\tin\tO\na\tO\ta\tO\nbrowser\tB-Application\tbrowser\tO\ncompatible\tO\tcompatible\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nusing\tO\tusing\tO\na\tO\ta\tO\nnative\tO\tnative\tO\njavascript\tB-Language\tjavascript\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nspeed\tO\tspeed\tO\nup\tO\tup\tO\nthis\tO\tthis\tO\nprocess\tO\tprocess\tO\nalot\tO\talot\tO\n.\tO\t.\tO\n\t\nusing\tO\tusing\tO\nnative\tO\tnative\tO\ntextnodes\tB-Library_Class\ttextnodes\tO\nalso\tO\talso\tO\nis\tO\tis\tO\nbenefitial\tO\tbenefitial\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbreak\tO\tbreak\tO\nevent\tB-Library_Class\tevent\tO\nhandlers\tO\thandlers\tO\nfor\tO\tfor\tO\nchild\tO\tchild\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\nconsider\tO\tconsider\tO\nusing\tO\tusing\tO\nfastdom\tB-Application\tfastdom\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatter\tO\tmatter\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\njquery\tB-Library\tjquery\tO\nor\tO\tor\tO\nnative\tO\tnative\tO\njs\tB-Language\tjs\tO\n.\tO\t.\tO\n\t\nafter\tO\tafter\tO\nwriting\tO\twriting\tO\nto\tO\tto\tO\nelements\tO\telements\tO\nthe\tO\tthe\tO\ndom\tO\tdom\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\ncertain\tO\tcertain\tO\ntasks\tO\ttasks\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nread\tO\tread\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nloose\tO\tloose\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nedited\tO\tedited\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nto\tO\tto\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\na\tO\ta\tO\nfastdom\tB-Application\tfastdom\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4558\tI-Code_Block\tA_4558\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\nwill\tO\twill\tO\nbasically\tO\tbasically\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\nin\tO\tin\tO\nan\tO\tan\tO\ninstant\tO\tinstant\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\neven\tO\teven\tO\nfurther\tO\tfurther\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\njquery\tB-Library\tjquery\tO\nas\tO\tas\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4559\tI-Code_Block\tA_4559\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4560\tI-Code_Block\tA_4560\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31851180\tO\t31851180\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31851180/\tO\thttps://stackoverflow.com/questions/31851180/\tO\n\t\n\t\nIf\tO\tIf\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\ndirectly\tO\tdirectly\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nspan\tB-HTML_XML_Tag\tspan\tO\n,\tO\t,\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ngive\tO\tgive\tO\nthem\tO\tthem\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nto\tO\tto\tO\niterate\tO\titerate\tO\nover\tO\tover\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n\t\nYou\tO\tYou\tO\nfirst\tO\tfirst\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nnumeric\tO\tnumeric\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nin\tO\tin\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n\t\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\ncurrency\tO\tcurrency\tO\nstore\tO\tstore\tO\nit\tO\tit\tO\nin\tO\tin\tO\nother\tO\tother\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nreplace\tO\treplace\tO\nUS$\tB-Value\tUS$\tO\nwith\tO\twith\tO\nGBP\tB-Value\tGBP\tO\n\t\nreplace\tO\treplace\tO\nnumeric\tO\tnumeric\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nwith\tO\twith\tO\nconverted\tO\tconverted\tO\nvalue\tO\tvalue\tO\n\t\njQuery\tB-Library\tjQuery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4555\tI-Code_Block\tA_4555\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46835501\tO\t46835501\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46835501/\tO\thttps://stackoverflow.com/questions/46835501/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nblade\tB-Library\tblade\tO\ntemplating\tI-Library\ttemplating\tO\n.\tO\t.\tO\n\t\nDue\tO\tDue\tO\nto\tO\tto\tO\nserver\tB-Device\tserver\tO\nlimitations\tO\tlimitations\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nhave\tO\thave\tO\nblade\tB-Library\tblade\tO\ngenerate\tO\tgenerate\tO\ncache\tB-File_Type\tcache\tO\nfiles\tO\tfiles\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfly\tO\tfly\tO\n-\tO\t-\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nblade\tB-Library\tblade\tO\nwith\tO\twith\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncache\tB-File_Type\tcache\tO\nfiles\tO\tfiles\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nOddly\tO\tOddly\tO\n,\tO\t,\tO\nblade\tB-Library\tblade\tO\nkeeps\tO\tkeeps\tO\nignoring\tO\tignoring\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncache\tB-File_Type\tcache\tO\nfiles\tO\tfiles\tO\nwe\tO\twe\tO\n're\tO\t're\tO\nproviding\tO\tproviding\tO\nand\tO\tand\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nreference\tO\treference\tO\ncache\tB-File_Type\tcache\tO\nfiles\tO\tfiles\tO\nthat\tO\tthat\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nidea\tO\tidea\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\n?\tO\t?\tO\n\t\nhow\tO\thow\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6172\tI-Code_Block\tQ_6172\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEssentially\tO\tEssentially\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\n100%\tO\t100%\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nand\tO\tand\tO\nftp\tB-File_Type\tftp\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncache\tB-File_Type\tcache\tO\nfiles\tO\tfiles\tO\nover\tO\tover\tO\n.\tO\t.\tO\n\t\nAlthough\tO\tAlthough\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nblade\tB-Library\tblade\tO\nattempts\tO\tattempts\tO\nreference\tO\treference\tO\nduring\tO\tduring\tO\nrender\tO\trender\tO\ntime\tO\ttime\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nexist\tO\texist\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nproviding\tO\tproviding\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\npicked\tO\tpicked\tO\nup\tO\tup\tO\nby\tO\tby\tO\nblade\tB-Library\tblade\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nappreciate\tO\tappreciate\tO\nthe\tO\tthe\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46835501\tO\t46835501\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46835501/\tO\thttps://stackoverflow.com/questions/46835501/\tO\n\t\n\t\nClear\tO\tClear\tO\nBlade\tB-Library\tBlade\tO\ncache\tO\tcache\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6801\tI-Code_Block\tA_6801\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7450608\tO\t7450608\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7450608/\tO\thttps://stackoverflow.com/questions/7450608/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\nusing\tO\tusing\tO\nJSP\tB-Library\tJSP\tO\nand\tO\tand\tO\nServlets\tB-Library_Class\tServlets\tO\nusing\tO\tusing\tO\nApache\tB-Application\tApache\tO\n-\tI-Application\t-\tO\ntomcat\tI-Application\ttomcat\tO\n5.5\tB-Version\t5.5\tO\nas\tO\tas\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napplication\tO\tapplication\tO\nruns\tO\truns\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhenever\tO\twhenever\tO\nI\tO\tI\tO\nleave\tO\tleave\tO\nany\tO\tany\tO\nwebpage\tO\twebpage\tO\nopen\tO\topen\tO\nand\tO\tand\tO\nreturn\tO\treturn\tO\nback\tO\tback\tO\nto\tO\tto\tO\nit\tO\tit\tO\nafter\tO\tafter\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nsay\tO\tsay\tO\n30minutes\tO\t30minutes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nany\tO\tany\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nor\tO\tor\tO\nicon\tB-User_Interface_Element\ticon\tO\n,\tO\t,\tO\nit\tO\tit\tO\nthrows\tO\tthrows\tO\nerror\tO\terror\tO\nsayin\tO\tsayin\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_589\tI-Code_Block\tQ_589\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7450608\tO\t7450608\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7450608/\tO\thttps://stackoverflow.com/questions/7450608/\tO\n\t\n\t\nSounds\tO\tSounds\tO\nlike\tO\tlike\tO\nyour\tO\tyour\tO\nsession\tO\tsession\tO\nis\tO\tis\tO\ntiming\tO\ttiming\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\neither\tO\teither\tO\nforce\tO\tforce\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nor\tO\tor\tO\nextend\tO\textend\tO\nyour\tO\tyour\tO\nsession\tO\tsession\tO\ntimeout\tO\ttimeout\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\ntimeout\tO\ttimeout\tO\nby\tO\tby\tO\nediting\tO\tediting\tO\nyour\tO\tyour\tO\nweb.xml\tB-File_Name\tweb.xml\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_859\tI-Code_Block\tA_859\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhich\tO\tWhich\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\na\tO\ta\tO\nsession\tO\tsession\tO\ntimeout\tO\ttimeout\tO\nof\tO\tof\tO\n60\tO\t60\tO\nminutes\tO\tminutes\tO\n.\tO\t.\tO\n\t\n-1\tB-Value\t-1\tO\nmeans\tO\tmeans\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ntimeout\tO\ttimeout\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7450608\tO\t7450608\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7450608/\tO\thttps://stackoverflow.com/questions/7450608/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThe\tO\tThe\tO\nsymptom\tO\tsymptom\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nonly\tO\tonly\tO\noccurs\tO\toccurs\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nlong\tO\tlong\tO\ntime\tO\ttime\tO\nindeed\tO\tindeed\tO\nindicates\tO\tindicates\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ntimed\tO\ttimed\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\ntimeout\tO\ttimeout\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nactually\tO\tactually\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nJSP\tB-Library\tJSP\tO\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nold\tO\told\tO\nfashioned\tO\tfashioned\tO\nJSP\tB-Library\tJSP\tO\nscriptlets\tB-File_Name\tscriptlets\tO\n<%\tB-Code_Block\t<%\tB-Code_Block\n%>\tI-Code_Block\t%>\tI-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nnormal\tO\tnormal\tO\nJava\tB-Language\tJava\tO\nclasses\tO\tclasses\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nservlets\tB-Library_Class\tservlets\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\nthe\tO\tthe\tO\nrequest/response\tO\trequest/response\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nbusiness\tO\tbusiness\tO\nstuff\tO\tstuff\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJSP\tB-Library\tJSP\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nharder\tO\tharder\tO\nto\tO\tto\tO\nnaildown\tO\tnaildown\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\ncause\tO\tcause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nNullPointerException\tB-Error_Name\tNullPointerException\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\ngenerated\tO\tgenerated\tO\nhomepage_jsp.java\tB-File_Name\thomepage_jsp.java\tB-Code_Block\nin\tO\tin\tO\nserver\tB-Application\tserver\tO\n's\tO\t's\tO\nwork\tO\twork\tO\ndirectory\tO\tdirectory\tO\nand\tO\tand\tO\nhead\tO\thead\tO\nto\tO\tto\tO\nline\tO\tline\tO\n107\tO\t107\tO\nand\tO\tand\tO\nfinally\tO\tfinally\tO\ntrackback\tO\ttrackback\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nhomepage.jsp\tB-File_Name\thomepage.jsp\tB-Code_Block\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfix\tO\tfix\tO\nthe\tO\tthe\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nrequest.getSession()\tB-Library_Function\trequest.getSession()\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nrequest.getSession(false)\tB-Library_Function\trequest.getSession(false)\tB-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\na\tO\ta\tO\nsession\tO\tsession\tO\nattribute\tO\tattribute\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nnull\tB-Value\tnull\tB-Code_Block\nbefore\tO\tbefore\tO\naccessing\tO\taccessing\tO\nit\tO\tit\tO\n,\tO\t,\tO\netcetera\tO\tetcetera\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41259620\tO\t41259620\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41259620/\tO\thttps://stackoverflow.com/questions/41259620/\tO\n\t\n\t\nPlease\tO\tPlease\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nconfigure\tO\tconfigure\tO\nthe\tO\tthe\tO\norientdb\tB-Application\torientdb\tO\nwith\tO\twith\tO\nspring\tB-Library\tspring\tO\nmvc\tB-Algorithm\tmvc\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5224\tI-Code_Block\tQ_5224\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\ninto\tO\tinto\tO\nmy\tO\tmy\tO\nmvc-dispacher-servlet.xml\tB-File_Name\tmvc-dispacher-servlet.xml\tO\nfile\tO\tfile\tO\n\t\nand\tO\tand\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\ndependencies\tO\tdependencies\tO\nalso\tO\talso\tO\nin\tO\tin\tO\nto\tO\tto\tO\npom.xml\tB-File_Name\tpom.xml\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5225\tI-Code_Block\tQ_5225\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nOrientDb\tB-Application\tOrientDb\tO\nserver\tI-Application\tserver\tO\nis\tO\tis\tO\n2.2.13\tB-Version\t2.2.13\tO\nversion\tO\tversion\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nlatest\tO\tlatest\tO\n.\tO\t.\tO\n\t\nhelp\tO\thelp\tO\nme\tO\tme\tO\nin\tO\tin\tO\nconfiguring\tO\tconfiguring\tO\nit.if\tO\tit.if\tO\npossible\tO\tpossible\tO\nsuggest\tO\tsuggest\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nproject\tO\tproject\tO\nURL\tO\tURL\tO\nalso\tO\talso\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nYou\tO\tYou\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1273116\tO\t1273116\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1273116/\tO\thttps://stackoverflow.com/questions/1273116/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\nappropriate\tO\tappropriate\tO\nway\tO\tway\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nan\tO\tan\tO\nExcel\tB-File_Type\tExcel\tO\nfile\tO\tfile\tO\non\tO\ton\tO\nan\tO\tan\tO\nNT\tB-Operating_System\tNT\tO\nserver\tI-Operating_System\tserver\tO\noperating\tO\toperating\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nnumerous\tO\tnumerous\tO\nproblems\tO\tproblems\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nExcel\tB-Application\tExcel\tO\nAPI\tI-Application\tAPI\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncame\tO\tcame\tO\nacross\tO\tacross\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nMicrosoft\tB-Organization\tMicrosoft\tO\non\tO\ton\tO\nOffice\tO\tOffice\tO\nAutomation\tO\tAutomation\tO\nwhich\tO\twhich\tO\nstates\tO\tstates\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nExcel\tB-Application\tExcel\tO\nAPI\tI-Application\tAPI\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nsuitable\tO\tsuitable\tO\nfor\tO\tfor\tO\nExcel\tB-Application\tExcel\tO\nautomation\tO\tautomation\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsorts\tO\tsorts\tO\nissues\tO\tissues\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nsaw\tO\tsaw\tO\nwere\tO\twere\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthose\tO\tthose\tO\ndescribed\tO\tdescribed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narticle\tO\tarticle\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nanother\tO\tanother\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nan\tO\tan\tO\nExcel\tB-File_Type\tExcel\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nxls\tB-File_Type\txls\tO\n,\tO\t,\tO\nxlsx\tB-File_Type\txlsx\tO\n,\tO\t,\tO\nxlsm\tB-File_Type\txlsm\tO\n)\tO\t)\tO\non\tO\ton\tO\na\tO\ta\tO\nserver\tB-Application\tserver\tO\n(\tO\t(\tO\nno\tO\tno\tO\nUI\tO\tUI\tO\n)\tO\t)\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nsuffer\tO\tsuffer\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nthreading/security/license\tO\tthreading/security/license\tO\nissues\tO\tissues\tO\nimposed\tO\timposed\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nExcel\tB-Application\tExcel\tO\nAPI\tI-Application\tAPI\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1273116\tO\t1273116\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1273116/\tO\thttps://stackoverflow.com/questions/1273116/\tO\n\t\n\t\nExcel\tB-Application\tExcel\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nof\tO\tof\tO\nyears\tO\tyears\tO\nof\tO\tof\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nstop\tO\tstop\tO\nfolks\tO\tfolks\tO\nfrom\tO\tfrom\tO\nusing\tO\tusing\tO\nExcel\tB-Application\tExcel\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\n've\tO\t've\tO\ngiven\tO\tgiven\tO\nup/embraced\tO\tup/embraced\tO\nthe\tO\tthe\tO\nmarket\tO\tmarket\tO\nneed\tO\tneed\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nstarted\tO\tstarted\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\n2007\tB-Version\t2007\tO\nhas\tO\thas\tO\nsome\tO\tsome\tO\nimpovement\tO\timpovement\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nand\tO\tand\tO\nExcel\tB-Application\tExcel\tO\n2010\tB-Version\t2010\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\neven\tO\teven\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1273116\tO\t1273116\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1273116/\tO\thttps://stackoverflow.com/questions/1273116/\tO\n\t\n\t\nThere\tO\tThere\tO\nwere\tO\twere\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nlibraries\tO\tlibraries\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\nhighlighted\tO\thighlighted\tO\nby\tO\tby\tO\ndifferent\tO\tdifferent\tO\nusers\tO\tusers\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nallow\tO\tallow\tO\nthe\tO\tthe\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nfunctionality\tO\tfunctionality\tO\nrequired\tO\trequired\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nlisted\tO\tlisted\tO\nthem\tO\tthem\tO\nhere\tO\there\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nwere\tO\twere\tO\nevaluated\tO\tevaluated\tO\nso\tO\tso\tO\nwhere\tO\twhere\tO\nappropriate\tO\tappropriate\tO\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nput\tO\tput\tO\ndown\tO\tdown\tO\ninteresting\tO\tinteresting\tO\ncomments\tO\tcomments\tO\nfor\tO\tfor\tO\ncomparing\tO\tcomparing\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndetails\tO\tdetails\tO\nI\tO\tI\tO\n've\tO\t've\tO\nincluded\tO\tincluded\tO\nare\tO\tare\tO\ncompletely\tO\tcompletely\tO\nopinion\tO\topinion\tO\nbased\tO\tbased\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nlibraries\tO\tlibraries\tO\nwould\tO\twould\tO\nprobably\tO\tprobably\tO\nachieve\tO\tachieve\tO\nthe\tO\tthe\tO\nrequired\tO\trequired\tO\ngoal\tO\tgoal\tO\n.\tO\t.\tO\n\t\nSpreadsheetGear.Net\tB-Library\tSpreadsheetGear.Net\tO\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nevaluate\tO\tevaluate\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nhigh\tO\thigh\tO\npurchase\tO\tpurchase\tO\ncost\tO\tcost\tO\n)\tO\t)\tO\n\t\nAspose.Cells\tB-Library\tAspose.Cells\tO\n\t\n(\tO\t(\tO\nEvaluated\tO\tEvaluated\tO\nby\tO\tby\tO\na\tO\ta\tO\ncollegue\tO\tcollegue\tO\n.\tO\t.\tO\n\t\nAppeared\tO\tAppeared\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nfairly\tO\tfairly\tO\nsimple\tO\tsimple\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\n,\tO\t,\tO\nperformance\tO\tperformance\tO\ncomparable\tO\tcomparable\tO\nto\tO\tto\tO\nExcel\tB-Application\tExcel\tO\nInterop\tO\tInterop\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nGemBox\tB-Library\tGemBox\tO\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nevaluate\tO\tevaluate\tO\n)\tO\t)\tO\n\t\nExcel\tB-Library\tExcel\tO\nServices\tI-Library\tServices\tO\n\t\n(\tO\t(\tO\nSeems\tO\tSeems\tO\nonly\tO\tonly\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nSharePoint\tB-Application\tSharePoint\tO\n2007\tB-Version\t2007\tO\n)\tO\t)\tO\n\t\nExcel\tB-Library\tExcel\tO\nMapper\tI-Library\tMapper\tO\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nevaluate\tO\tevaluate\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nrequires\tO\trequires\tO\nstrongly\tO\tstrongly\tO\ntyped\tO\ttyped\tO\nobjects\tO\tobjects\tO\nto\tO\tto\tO\nimport\tO\timport\tO\ninto\tO\tinto\tO\nwhich\tO\twhich\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nfit\tO\tfit\tO\nmy\tO\tmy\tO\nrequirement\tO\trequirement\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSmartXls\tB-Library\tSmartXls\tO\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nevaluate\tO\tevaluate\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nrequires\tO\trequires\tO\nstrongly\tO\tstrongly\tO\ntyped\tO\ttyped\tO\nobjects\tO\tobjects\tO\nto\tO\tto\tO\nimport\tO\timport\tO\ninto\tO\tinto\tO\nwhich\tO\twhich\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nfit\tO\tfit\tO\nmy\tO\tmy\tO\nrequirement\tO\trequirement\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nActiveXls\tB-Library\tActiveXls\tO\n\t\n(\tO\t(\tO\nFairly\tO\tFairly\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nlack\tO\tlack\tO\nof\tO\tof\tO\nProperties\tO\tProperties\tO\nraises\tO\traises\tO\nquestions\tO\tquestions\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\na\tO\ta\tO\npreference\tO\tpreference\tO\nof\tO\tof\tO\nMethods\tO\tMethods\tO\nfor\tO\tfor\tO\ntrivial\tO\ttrivial\tO\nactions\tO\tactions\tO\n.\tO\t.\tO\n\t\nDespite\tO\tDespite\tO\nit\tO\tit\tO\n's\tO\t's\tO\nclaim\tO\tclaim\tO\nof\tO\tof\tO\n1M\tO\t1M\tO\nrecords\tO\trecords\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\nwas\tO\twas\tO\nout\tO\tout\tO\nperformed\tO\tperformed\tO\nby\tO\tby\tO\ncheaper\tO\tcheaper\tO\nFlexCel\tB-Library\tFlexCel\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\ndecided\tO\tdecided\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nhelp/API\tO\thelp/API\tO\nmanual\tO\tmanual\tO\nis\tO\tis\tO\nalmost\tO\talmost\tO\nuseless\tO\tuseless\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nKoogra\tB-Library\tKoogra\tO\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nevaluate\tO\tevaluate\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nfinding\tO\tfinding\tO\nno\tO\tno\tO\ndocumentations/information\tO\tdocumentations/information\tO\n)\tO\t)\tO\n\t\nFileHelpers\tB-Library\tFileHelpers\tO\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nevaluate\tO\tevaluate\tO\n)\tO\t)\tO\n\t\nFlexcel\tB-Library\tFlexcel\tO\n\t\n(\tO\t(\tO\nLowest\tO\tLowest\tO\ncost\tO\tcost\tO\nsolution\tO\tsolution\tO\nfound\tO\tfound\tO\n,\tO\t,\tO\ngood\tO\tgood\tO\nperformance\tO\tperformance\tO\nand\tO\tand\tO\nwas\tO\twas\tO\nsimple\tO\tsimple\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nwith\tO\twith\tO\na\tO\ta\tO\nclose\tO\tclose\tO\nproximity\tO\tproximity\tO\nto\tO\tto\tO\nExcel\tB-Application\tExcel\tO\nInterop\tO\tInterop\tO\nstructure\tO\tstructure\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nreceived\tO\treceived\tO\nquick\tO\tquick\tO\nresponse\tO\tresponse\tO\nto\tO\tto\tO\ntechnical\tO\ttechnical\tO\nquestion\tO\tquestion\tO\nfrom\tO\tfrom\tO\nsupport\tO\tsupport\tO\n.\tO\t.\tO\n\t\nProbably\tO\tProbably\tO\nmy\tO\tmy\tO\npick\tO\tpick\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbunch\tO\tbunch\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nSyncFusion\tB-Library\tSyncFusion\tO\nBackOffice\tI-Library\tBackOffice\tO\n\t\n(\tO\t(\tO\nMedium\tO\tMedium\tO\ncost\tO\tcost\tO\nand\tO\tand\tO\nhad\tO\thad\tO\na\tO\ta\tO\nreasonable\tO\treasonable\tO\nstructure\tO\tstructure\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\nhad\tO\thad\tO\nmore\tO\tmore\tO\ndifficulty\tO\tdifficulty\tO\nimplementing\tO\timplementing\tO\nand\tO\tand\tO\ninconsistent\tO\tinconsistent\tO\nresults\tO\tresults\tO\nwhen\tO\twhen\tO\nrunning\tO\trunning\tO\nunit\tO\tunit\tO\ntests\tO\ttests\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nreceived\tO\treceived\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\n'\tB-Error_Name\t'\tO\nAttempted\tI-Error_Name\tAttempted\tO\nto\tI-Error_Name\tto\tO\nread\tI-Error_Name\tread\tO\nprotected\tI-Error_Name\tprotected\tO\nmemory\tI-Error_Name\tmemory\tO\n'\tB-Error_Name\t'\tO\nerrors\tI-Error_Name\terrors\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nencourage\tO\tencourage\tO\nme\tO\tme\tO\nwith\tO\twith\tO\npurely\tO\tpurely\tO\nmanaged\tO\tmanaged\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27493928\tO\t27493928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27493928/\tO\thttps://stackoverflow.com/questions/27493928/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nreally\tO\treally\tO\nbasic\tO\tbasic\tO\ncss\tB-Language\tcss\tO\nhovers\tB-Library_Function\thovers\tO\nwhich\tO\twhich\tO\nwork\tO\twork\tO\non\tO\ton\tO\nall\tO\tall\tO\nbrowsers\tB-Application\tbrowsers\tO\nexcept\tO\texcept\tO\nie10\tB-Application\tie10\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nnow\tO\tnow\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nonly\tO\tonly\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nanchor\tO\tanchor\tO\ntags\tO\ttags\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nwork-around\tO\twork-around\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nspecifying\tO\tspecifying\tO\na\tO\ta\tO\nbackground-color\tB-Library_Variable\tbackground-color\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\ndoesnt\tO\tdoesnt\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nread\tO\tread\tO\na\tO\ta\tO\nlot\tO\tlot\tO\non\tO\ton\tO\nstackoverflow\tB-Website\tstackoverflow\tO\nbut\tO\tbut\tO\nnon\tO\tnon\tO\nof\tO\tof\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3184\tI-Code_Block\tQ_3184\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27493928\tO\t27493928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27493928/\tO\thttps://stackoverflow.com/questions/27493928/\tO\n\t\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nanswers\tO\tanswers\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n(\tO\t(\tO\nIE10\tB-Application\tIE10\tO\n,\tO\t,\tO\nWin7\tB-Operating_System\tWin7\tO\non\tO\ton\tO\nVirtual\tB-Application\tVirtual\tO\nMachine\tI-Application\tMachine\tO\n)\tO\t)\tO\n\t\nAnother\tO\tAnother\tO\noption\tO\toption\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nJavascript\tB-Language\tJavascript\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3813\tI-Code_Block\tA_3813\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27493928\tO\t27493928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27493928/\tO\thttps://stackoverflow.com/questions/27493928/\tO\n\t\n\t\nI\tO\tI\tO\nfinally\tO\tfinally\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\nwas\tO\twas\tO\nwrong\tO\twrong\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nso\tO\tso\tO\nretarded\tO\tretarded\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nbelive\tO\tbelive\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\n.\tO\t.\tO\n\t\nSimply\tO\tSimply\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nbeginning\tO\tbeginning\tO\n(\tO\t(\tO\nbefore\tO\tbefore\tO\n<html>\tB-HTML_XML_Tag\t<html>\tB-Code_Block\ntag\tO\ttag\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4202\tI-Code_Block\tA_4202\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYep\tO\tYep\tO\n,\tO\t,\tO\nInternet\tB-Application\tInternet\tO\nExplorer.\tI-Application\tExplorer.\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nthe\tO\tthe\tO\n:hover\tB-Library_Function\t:hover\tB-Code_Block\nworks\tO\tworks\tO\nonly\tO\tonly\tO\non\tO\ton\tO\n<a>\tB-HTML_XML_Tag\t<a>\tB-Code_Block\nand\tO\tand\tO\n<button>\tB-HTML_XML_Tag\t<button>\tB-Code_Block\ntags\tO\ttags\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22503305\tO\t22503305\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22503305/\tO\thttps://stackoverflow.com/questions/22503305/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\none\tO\tone\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nrunning\tO\trunning\tO\nSSIS\tB-Application\tSSIS\tO\nPackage\tI-Application\tPackage\tO\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhile\tO\twhile\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nApplication\tO\tApplication\tO\ngot\tO\tgot\tO\ncrashed.I\tO\tcrashed.I\tO\nsaw\tO\tsaw\tO\neventviewer\tB-Application\teventviewer\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nbelow\tO\tbelow\tO\nexception\tB-Library_Class\texception\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2462\tI-Code_Block\tQ_2462\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis.\tO\tthis.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2463\tI-Code_Block\tQ_2463\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44290177\tO\t44290177\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44290177/\tO\thttps://stackoverflow.com/questions/44290177/\tO\n\t\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\n2\tO\t2\tO\npipelines\tB-Library_Class\tpipelines\tO\n,\tO\t,\tO\nboth\tO\tboth\tO\nare\tO\tare\tO\nordered\tO\tordered\tO\nas\tO\tas\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5737\tI-Code_Block\tQ_5737\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThey\tO\tThey\tO\nexecute\tO\texecute\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\npipeline\tB-Library_Class\tpipeline\tO\nis\tO\tis\tO\na\tO\ta\tO\nmutator\tO\tmutator\tO\n.\tO\t.\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nis\tO\tis\tO\nsubmits\tO\tsubmits\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\ncorrectly\tO\tcorrectly\tO\ngets\tO\tgets\tO\nsubmitted\tO\tsubmitted\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblems\tO\tproblems\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nsometimes\tO\tsometimes\tO\nwhen\tO\twhen\tO\ndata\tO\tdata\tO\nreaches\tO\treaches\tO\nmy\tO\tmy\tO\nmutator\tO\tmutator\tB-Code_Block\npipeline\tB-Library_Class\tpipeline\tI-Code_Block\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\n'\tO\t'\tO\nadditional\tO\tadditional\tO\n'\tO\t'\tO\nitems\tO\titems\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nsecond\tO\tsecond\tO\npipeline\tB-Library_Class\tpipeline\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n(\tO\t(\tO\nwithout\tO\twithout\tO\nmutations\tO\tmutations\tO\n)\tO\t)\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5738\tI-Code_Block\tQ_5738\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nreturn\tO\treturn\tB-Code_Block\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nadditional\tO\tadditional\tO\nitem\tO\titem\tO\nthat\tO\tthat\tO\nstarts\tO\tstarts\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\npipeline\tB-Library_Class\tpipeline\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nMany\tO\tMany\tO\nhelps\tO\thelps\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44290177\tO\t44290177\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44290177/\tO\thttps://stackoverflow.com/questions/44290177/\tO\n\t\n\t\nQuickly\tO\tQuickly\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ndocs\tO\tdocs\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nprobably\tO\tprobably\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsubclass\tO\tsubclass\tO\nof\tO\tof\tO\nscrapy.item.Item\tB-Class_Name\tscrapy.item.Item\tB-Code_Block\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nlinked\tB-Data_Structure\tlinked\tO\nlist\tI-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nhaving\tO\thaving\tO\ntouched\tO\ttouched\tO\nscrapy\tO\tscrapy\tO\nmuch\tO\tmuch\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmight\tO\tmight\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nmodifications\tO\tmodifications\tO\nbut\tO\tbut\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nget\tO\tget\tO\nyou\tO\tyou\tO\nstarted\tO\tstarted\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6381\tI-Code_Block\tA_6381\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\nitems\tO\titems\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nmultiple\tO\tmultiple\tO\nItems\tO\tItems\tO\nand\tO\tand\tO\nchain\tO\tchain\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6382\tI-Code_Block\tA_6382\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ndatabase\tO\tdatabase\tO\npipeline\tO\tpipeline\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nprocess\tO\tprocess\tO\neach\tO\teach\tO\nitem\tO\titem\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6383\tI-Code_Block\tA_6383\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36919534\tO\t36919534\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36919534/\tO\thttps://stackoverflow.com/questions/36919534/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nstructure\tO\tstructure\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4553\tI-Code_Block\tQ_4553\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4554\tI-Code_Block\tQ_4554\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nrestructure\tO\trestructure\tO\nthat\tO\tthat\tO\narray\tB-Data_Structure\tarray\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nchild-parent\tO\tchild-parent\tO\nrelations\tO\trelations\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4555\tI-Code_Block\tQ_4555\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\ngenerated\tO\tgenerated\tO\narray\tB-Data_Structure\tarray\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4556\tI-Code_Block\tQ_4556\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nnow\tO\tnow\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsort\tO\tsort\tO\nevery\tO\tevery\tO\ndimension\tO\tdimension\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nsort\tO\tsort\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\n(\tO\t(\tO\nmy\tO\tmy\tO\n\"\tO\t\"\tO\nreal\tO\treal\tO\narray\tB-Data_Structure\tarray\tO\n\"\tO\t\"\tO\nhas\tO\thas\tO\nmore\tO\tmore\tO\nsubarrays\tB-Data_Structure\tsubarrays\tO\nthen\tO\tthen\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\nplayed\tO\tplayed\tO\naround\tO\taround\tO\nwith\tO\twith\tO\nmultisort\tB-Algorithm\tmultisort\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\n\t\nany\tO\tany\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36919534\tO\t36919534\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36919534/\tO\thttps://stackoverflow.com/questions/36919534/\tO\n\t\n\t\nSort\tO\tSort\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\n1\tO\t1\tO\ndimension\tO\tdimension\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nmulti-dimensional\tO\tmulti-dimensional\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nbetter\tO\tbetter\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nsort\tO\tsort\tO\nit\tO\tit\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nSort\tO\tSort\tO\nby\tO\tby\tO\nparent\tO\tparent\tO\nthen\tO\tthen\tO\nsort\tO\tsort\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nbuild\tO\tbuild\tO\nyour\tO\tyour\tO\nmultidimensional\tO\tmultidimensional\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\neach\tO\teach\tO\nchild\tO\tchild\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nalready\tO\talready\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\norder\tO\torder\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\nend\tO\tend\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24633629\tO\t24633629\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24633629/\tO\thttps://stackoverflow.com/questions/24633629/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nlabels\tB-Library_Class\tlabels\tO\ndisplayed\tO\tdisplayed\tO\non\tO\ton\tO\nJFrame\tB-Library_Class\tJFrame\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nJFrame\tB-Library_Class\tJFrame\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\ncreated\tO\tcreated\tO\nlabels\tB-Library_Class\tlabels\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\njust\tO\tjust\tO\nappears\tO\tappears\tO\nblank\tO\tblank\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2758\tI-Code_Block\tQ_2758\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24633629\tO\t24633629\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24633629/\tO\thttps://stackoverflow.com/questions/24633629/\tO\n\t\n\t\n\t\nJFrame\tB-Library_Class\tJFrame\tO\nhas\tO\thas\tO\nBorderLayout\tB-Library_Class\tBorderLayout\tO\nimplemented\tO\timplemented\tO\nin\tO\tin\tO\nAPI\tB-Library\tAPI\tO\n,\tO\t,\tO\nin\tO\tin\tO\nBorderLayout\tB-Library_Class\tBorderLayout\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nJComponents\tB-Library_Class\tJComponents\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nplaced\tO\tplaced\tO\nto\tO\tto\tO\none\tO\tone\tO\nof\tO\tof\tO\n5th\tO\t5th\tO\nareas\tO\tareas\tO\n\t\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nposted\tO\tposted\tO\nhere\tO\there\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\ncompleted\tO\tcompleted\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nshows\tO\tshows\tO\nhow\tO\thow\tO\nis\tO\tis\tO\narrays\tB-Data_Structure\tarrays\tO\nof\tO\tof\tO\nJLabels\tB-Library_Class\tJLabels\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nJFrame\tB-Library_Class\tJFrame\tO\n\t\nto\tO\tto\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\nGridLayout\tB-Library_Class\tGridLayout\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nsuggest\tO\tsuggest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nJTable\tB-Library_Class\tJTable\tO\n(\tO\t(\tO\nin\tO\tin\tO\nJScrollPane\tB-Library_Class\tJScrollPane\tO\n)\tO\t)\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nJLabels\tB-Library_Class\tJLabels\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nJFrame\tB-Library_Class\tJFrame\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17925478\tO\t17925478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17925478/\tO\thttps://stackoverflow.com/questions/17925478/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrender\tO\trender\tO\na\tO\ta\tO\nrich:dataTable\tB-Data_Structure\trich:dataTable\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfails\tO\tfails\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nits\tO\tits\tO\nconditional\tO\tconditional\tO\nrendering.I\tO\trendering.I\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nrender\tO\trender\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbacking-bean\tO\tbacking-bean\tO\nfetches\tO\tfetches\tO\nfrom\tO\tfrom\tO\nDB\tO\tDB\tO\n,\tO\t,\tO\nis\tO\tis\tO\ngreater\tO\tgreater\tO\nthan\tO\tthan\tO\nzero\tB-Value\tzero\tO\n.\tO\t.\tO\n\t\nJSF-2.0\tB-Application\tJSF-2.0\tO\n,\tO\t,\tO\nRichFaces-4\tB-Library\tRichFaces-4\tO\nare\tO\tare\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17925478\tO\t17925478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17925478/\tO\thttps://stackoverflow.com/questions/17925478/\tO\n\t\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nrender\tO\trender\tO\n\"\tO\t\"\tO\nattribute\tO\tattribute\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndatatable\tO\tdatatable\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nit\tO\tit\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndefine\tO\tdefine\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ncomponent\tO\tcomponent\tO\nis\tO\tis\tO\nrendered\tO\trendered\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ncheck\tO\tcheck\tO\nby\tO\tby\tO\nEL\tO\tEL\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nis\tO\tis\tO\npopulated\tO\tpopulated\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2359\tI-Code_Block\tA_2359\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nall\tO\tall\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalways\tO\talways\tO\nimplement\tO\timplement\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\nquery\tB-Library_Function\tquery\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nnever\tO\tnever\tO\nreturn\tO\treturn\tO\nnull\tB-Value\tnull\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nquery\tB-Library_Function\tquery\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nresult\tO\tresult\tO\nI\tO\tI\tO\nreturn\tO\treturn\tO\nan\tO\tan\tO\nempty\tB-Value\tempty\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nI\tO\tI\tO\nnever\tO\tnever\tO\nget\tO\tget\tO\na\tO\ta\tO\nnullpointerexception\tO\tnullpointerexception\tO\nand\tO\tand\tO\nI\tO\tI\tO\nprefer\tO\tprefer\tO\nthen\tO\tthen\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nan\tO\tan\tO\nempty\tB-Value\tempty\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\neaser\tO\teaser\tO\nto\tO\tto\tO\nlayout\tO\tlayout\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\nalways\tO\talways\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthat\tO\tthat\tO\nhelps\tO\thelps\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17925478\tO\t17925478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17925478/\tO\thttps://stackoverflow.com/questions/17925478/\tO\n\t\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\nname\tO\tname\tO\non\tO\ton\tO\nthe\tO\tthe\tO\na4j:jsFunction\tB-Library_Function\ta4j:jsFunction\tO\nis\tO\tis\tO\nreRender\tB-Library_Variable\treRender\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\njust\tO\tjust\tO\nrender\tO\trender\tO\n.\tO\t.\tO\n\t\nShould\tO\tShould\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38972804\tO\t38972804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38972804/\tO\thttps://stackoverflow.com/questions/38972804/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\ngreat\tO\tgreat\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nhelping\tO\thelping\tO\nme\tO\tme\tO\nparse\tO\tparse\tO\nthrough\tO\tthrough\tO\nand\tO\tand\tO\ndisplay\tO\tdisplay\tO\nresults\tO\tresults\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nphp\tB-Language\tphp\tO\ngenerated\tO\tgenerated\tO\nhtml\tB-Language\thtml\tO\ntable\tB-Data_Structure\ttable\tO\non\tO\ton\tO\nanother\tO\tanother\tO\npage\tO\tpage\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nserver\tB-Device\tserver\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nPHP\tB-Language\tPHP\tO\n's\tO\t's\tO\nDOMDocument\tB-Library_Variable\tDOMDocument\tO\nand\tO\tand\tO\nDOMXpath\tB-Library_Variable\tDOMXpath\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4904\tI-Code_Block\tQ_4904\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nanother\tO\tanother\tO\nvariable\tO\tvariable\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nforeach\tB-Code_Block\tforeach\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4905\tI-Code_Block\tQ_4905\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n've\tO\t've\tO\ndone\tO\tdone\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nresearch\tO\tresearch\tO\nalso\tO\talso\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nlead\tO\tlead\tO\nme\tO\tme\tO\nto\tO\tto\tO\nbelieve\tO\tbelieve\tO\nthat\tO\tthat\tO\nincluding\tO\tincluding\tO\nmultiple\tO\tmultiple\tO\nvariables\tO\tvariables\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nforeach\tB-Code_Block\tforeach\tO\nloop\tO\tloop\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nverify\tO\tverify\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nso\tO\tso\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nanyone\tO\tanyone\tO\nhave\tO\thave\tO\nanother\tO\tanother\tO\nidea\tO\tidea\tO\nfor\tO\tfor\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nachieve\tO\tachieve\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nresult\tO\tresult\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27420059\tO\t27420059\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27420059/\tO\thttps://stackoverflow.com/questions/27420059/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\ntag\tO\ttag\tO\naction\tO\taction\tO\nto\tO\tto\tO\ninputbox\tB-User_Interface_Element\tinputbox\tO\nin\tO\tin\tO\nclick\tO\tclick\tO\nevent.In\tO\tevent.In\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\ntag\tO\ttag\tO\ncalender\tB-Application\tcalender\tO\nis\tO\tis\tO\ndisplayed\tO\tdisplayed\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3163\tI-Code_Block\tQ_3163\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27420059\tO\t27420059\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27420059/\tO\thttps://stackoverflow.com/questions/27420059/\tO\n\t\n\t\nJust\tO\tJust\tO\nshow\tO\tshow\tO\ndatepicker\tB-Library_Function\tdatepicker\tO\non\tO\ton\tO\na\tO\ta\tO\nclick\tO\tclick\tO\nevent\tO\tevent\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3805\tI-Code_Block\tA_3805\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45538053\tO\t45538053\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45538053/\tO\thttps://stackoverflow.com/questions/45538053/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nAWS\tB-Application\tAWS\tO\nAPI\tI-Application\tAPI\tO\nGateway\tI-Application\tGateway\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nAWS\tB-Application\tAWS\tO\nlambda\tI-Application\tlambda\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nintegration\tO\tintegration\tO\nworks\tO\tworks\tO\nflawlessly\tO\tflawlessly\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nLambda\tO\tLambda\tO\nProxy\tO\tProxy\tO\nintegration\tO\tintegration\tO\n'\tO\t'\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nIntegration\tO\tIntegration\tO\nRequest\tO\tRequest\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ncheck\tO\tcheck\tO\n'\tO\t'\tO\nUse\tO\tUse\tO\nLambda\tO\tLambda\tO\nProxy\tO\tProxy\tO\nintegration\tO\tintegration\tO\n'\tO\t'\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nintegration\tO\tintegration\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nI\tO\tI\tO\nstart\tO\tstart\tO\ngetting\tO\tgetting\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\ngoogled\tB-Website\tgoogled\tO\naround\tO\taround\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nand\tO\tand\tO\nrealized\tO\trealized\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nback\tO\tback\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\nin\tO\tin\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nformat\tO\tformat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5966\tI-Code_Block\tQ_5966\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\ndespite\tO\tdespite\tO\ndoing\tO\tdoing\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\ncontinue\tO\tcontinue\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nmy\tO\tmy\tO\nLambda\tB-Application\tLambda\tO\nfunction\tO\tfunction\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5967\tI-Code_Block\tQ_5967\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntest\tO\ttest\tO\nthe\tO\tthe\tO\nAPI\tO\tAPI\tO\nfrom\tO\tfrom\tO\nAPI\tB-Application\tAPI\tO\nGateway\tI-Application\tGateway\tO\nconsole\tO\tconsole\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\nI\tO\tI\tO\nget\tO\tget\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nun-check\tO\tun-check\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nUse\tO\tUse\tO\nLambda\tO\tLambda\tO\nProxy\tO\tProxy\tO\nintegration\tO\tintegration\tO\n'\tO\t'\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nokay\tO\tokay\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nmy\tO\tmy\tO\nresponse\tO\tresponse\tO\nis\tO\tis\tO\nmalformed\tO\tmalformed\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45538053\tO\t45538053\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45538053/\tO\thttps://stackoverflow.com/questions/45538053/\tO\n\t\n\t\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nit\tO\tit\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nsending\tO\tsending\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\nback\tO\tback\tO\nin\tO\tin\tO\nan\tO\tan\tO\nincorrect\tO\tincorrect\tO\nmanner\tO\tmanner\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nresponse\tO\tresponse\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsent\tO\tsent\tO\nback\tO\tback\tO\nas\tO\tas\tO\na\tO\ta\tO\nPOJO\tB-Data_Type\tPOJO\tO\nobject\tO\tobject\tO\ndirectly\tO\tdirectly\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nserializing\tO\tserializing\tO\nthe\tO\tthe\tO\nPOJO\tB-Data_Type\tPOJO\tO\nand\tO\tand\tO\nsending\tO\tsending\tO\nit\tO\tit\tO\nback\tO\tback\tO\nas\tO\tas\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6613\tI-Code_Block\tA_6613\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\nsomeone\tO\tsomeone\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31688119\tO\t31688119\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31688119/\tO\thttps://stackoverflow.com/questions/31688119/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nArdent\tB-Application\tArdent\tO\nwith\tO\twith\tO\nLaravel\tB-Library\tLaravel\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nare\tO\tare\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nsite\tO\tsite\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\nallows\tO\tallows\tO\nUS\tO\tUS\tO\ncustomers\tO\tcustomers\tO\nbut\tO\tbut\tO\nwe\tO\twe\tO\n're\tO\t're\tO\nextending\tO\textending\tO\nit\tO\tit\tO\nto\tO\tto\tO\nCanadian\tO\tCanadian\tO\ncustomers\tO\tcustomers\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nour\tO\tour\tO\nrequirements\tO\trequirements\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nzip\tO\tzip\tO\ncode\tO\tcode\tO\nbe\tO\tbe\tO\n5-9\tB-Value\t5-9\tO\ncharacters\tI-Value\tcharacters\tO\nlong\tO\tlong\tO\n,\tO\t,\tO\nall\tO\tall\tO\nnumbers\tO\tnumbers\tO\n(\tO\t(\tO\nwe\tO\twe\tO\nstrip\tO\tstrip\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\ndash\tO\tdash\tO\nand\tO\tand\tO\nother\tO\tother\tO\npunctuation\tO\tpunctuation\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nvalidation\tO\tvalidation\tO\nfor\tO\tfor\tO\npostal\tO\tpostal\tO\ncodes\tO\tcodes\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\npostal_codes\tB-Variable_Name\tpostal_codes\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nrequired\tO\trequired\tO\nif\tO\tif\tO\nzip_code\tB-Variable_Name\tzip_code\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\noffered\tO\toffered\tO\n(\tO\t(\tO\nand\tO\tand\tO\nvice\tO\tvice\tO\nversa\tO\tversa\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nTheoretically\tO\tTheoretically\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\njust\tO\tjust\tO\none\tO\tone\tO\nfield\tO\tfield\tO\nbut\tO\tbut\tO\nwe\tO\twe\tO\n'd\tO\t'd\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmore\tO\tmore\tO\ncomplex\tO\tcomplex\tO\nregex\tO\tregex\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31688119\tO\t31688119\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31688119/\tO\thttps://stackoverflow.com/questions/31688119/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nsite\tO\tsite\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncountry\tB-Variable_Name\tcountry\tO\nfield\tO\tfield\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4527\tI-Code_Block\tA_4527\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nrequired_without\tB-Value\trequired_without\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26353240\tO\t26353240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26353240/\tO\thttps://stackoverflow.com/questions/26353240/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nhow\tO\thow\tO\nlong\tO\tlong\tO\nmy\tO\tmy\tO\nbattery\tB-Device\tbattery\tO\nruns\tO\truns\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nraspberry\tB-Device\traspberry\tO\npi\tI-Device\tpi\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nrun\tO\trun\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nloop\tO\tloop\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nbattery\tB-Device\tbattery\tO\ndies\tO\tdies\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrecord\tO\trecord\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\nand\tO\tand\tO\nends\tO\tends\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ntxt\tB-File_Type\ttxt\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncurrent\tO\tcurrent\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3008\tI-Code_Block\tQ_3008\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\npython\tB-Language\tpython\tO\ni\tO\ti\tO\nwill\tO\twill\tO\nget\tO\tget\tO\na\tO\ta\tO\nresult\tO\tresult\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ncode\tO\tcode\tO\nmakes\tO\tmakes\tO\na\tO\ta\tO\nfile\tB-Library_Class\tfile\tO\ncalled\tO\tcalled\tO\n'\tO\t'\tO\nfile\tB-Variable_Name\tfile\tO\n'\tO\t'\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nnothing\tO\tnothing\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntxt\tB-File_Type\ttxt\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nand\tO\tand\tO\nall\tO\tall\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntime\tO\ttime\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26353240\tO\t26353240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26353240/\tO\thttps://stackoverflow.com/questions/26353240/\tO\n\t\n\t\nNo\tO\tNo\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrecord\tO\trecord\tO\nthese\tO\tthese\tO\ntimes\tO\ttimes\tO\nyourself\tO\tyourself\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nPi\tB-Device\tPi\tO\n(\tO\t(\tO\nand\tO\tand\tO\nalmost\tO\talmost\tO\nany\tO\tany\tO\nLinux\tB-Operating_System\tLinux\tO\ndistribution\tO\tdistribution\tO\n)\tO\t)\tO\nwrites\tO\twrites\tO\nthose\tO\tthose\tO\nevents\tO\tevents\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n/var/log/wtmp\tB-File_Name\t/var/log/wtmp\tB-Code_Block\nfile\tO\tfile\tO\n(\tO\t(\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nthat\tO\tthat\tO\nfile\tO\tfile\tO\nhere\tO\there\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlast\tB-Code_Block\tlast\tB-Code_Block\ncommand\tO\tcommand\tO\ncan\tO\tcan\tO\nretrieve\tO\tretrieve\tO\nthose\tO\tthose\tO\nevents\tO\tevents\tO\n(\tO\t(\tO\nalso\tO\talso\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nmanual\tO\tmanual\tO\nentry\tO\tentry\tO\nfor\tO\tfor\tO\nlast\tO\tlast\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3634\tI-Code_Block\tA_3634\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExplanation\tO\tExplanation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nflags\tO\tflags\tO\n:\tO\t:\tO\n\t\n-F\tB-Code_Block\t-F\tO\nprints\tO\tprints\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndate\tO\tdate\tO\nand\tO\tand\tO\ntimes\tO\ttimes\tO\n-\tO\t-\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nhandy\tO\thandy\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\n-R\tB-Code_Block\t-R\tO\nsuppresses\tO\tsuppresses\tO\nthe\tO\tthe\tO\nhostname\tO\thostname\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\n-x\tB-Code_Block\t-x\tO\nshows\tO\tshows\tO\nshutdown\tO\tshutdown\tO\nen\tO\ten\tO\nrunlevel\tO\trunlevel\tO\nchanges\tO\tchanges\tO\n-\tO\t-\tO\nnow\tO\tnow\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\nthe\tO\tthe\tO\ngrep\tB-Code_Block\tgrep\tB-Code_Block\nstatement\tO\tstatement\tO\nfilters\tO\tfilters\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nboot\tO\tboot\tO\nor\tO\tor\tO\nshutdown\tO\tshutdown\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26353240\tO\t26353240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26353240/\tO\thttps://stackoverflow.com/questions/26353240/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nrecomend\tO\trecomend\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3633\tI-Code_Block\tA_3633\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\ndifferences\tO\tdifferences\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nalways\tO\talways\tO\nopen\tB-Library_Function\topen\tO\nthe\tO\tthe\tO\nfile\tB-Library_Class\tfile\tO\nin\tO\tin\tO\nappend\tO\tappend\tB-Code_Block\nmode\tO\tmode\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfile\tB-Library_Class\tfile\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nflushed\tO\tflushed\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nNext\tO\tNext\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nfile\tB-Library_Class\tfile\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\namount\tO\tamount\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\nelapsed\tO\telapsed\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\neven\tO\teven\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nraspberry\tB-Device\traspberry\tO\npi\tI-Device\tpi\tO\nshuts\tO\tshuts\tO\ndown\tO\tdown\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nrecover\tO\trecover\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43267978\tO\t43267978\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43267978/\tO\thttps://stackoverflow.com/questions/43267978/\tO\n\t\n\t\nContext\tO\tContext\tO\n\t\nGNU\tB-Operating_System\tGNU\tO\nbash\tB-Application\tbash\tO\n4.4.12(1)-release\tB-Version\t4.4.12(1)-release\tB-Code_Block\n\t\nPowerline\tB-Application\tPowerline\tO\n2.5.2-1\tB-Version\t2.5.2-1\tB-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nPS1\tB-Variable_Name\tPS1\tO\nScript\tO\tScript\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5534\tI-Code_Block\tQ_5534\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPowerline\tB-Application\tPowerline\tO\nconfig\tO\tconfig\tO\n\t\nconfig.json\tB-File_Name\tconfig.json\tO\n\t\ncolors.json\tB-File_Name\tcolors.json\tO\n\t\ncolorschemes/shell/default.json\tB-File_Name\tcolorschemes/shell/default.json\tO\n\t\nthemes/shell/default.json\tB-File_Name\tthemes/shell/default.json\tO\n\t\nProblem\tO\tProblem\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\nas\tO\tas\tO\nhim\tO\thim\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nchars\tB-Data_Type\tchars\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nwraps\tO\twraps\tO\nand\tO\tand\tO\nI\tO\tI\tO\nstart\tO\tstart\tO\nwriting\tO\twriting\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nline\tO\tline\tO\n,\tO\t,\tO\noverwriting\tO\toverwriting\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nalready\tO\talready\tO\nwrote\tO\twrote\tO\n(\tO\t(\tO\nincluding\tO\tincluding\tO\nps\tB-Variable_Name\tps\tO\n1)\tI-Variable_Name\t1)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\naware\tO\taware\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nnon-printable\tO\tnon-printable\tO\ncharacter\tO\tcharacter\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nit\tO\tit\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\npowerline\tB-Application\tpowerline\tO\nbug\tO\tbug\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nother\tO\tother\tO\nproblems\tO\tproblems\tO\ncan\tO\tcan\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38778865\tO\t38778865\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38778865/\tO\thttps://stackoverflow.com/questions/38778865/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nqueue\tB-Data_Structure\tqueue\tO\nmultiple\tO\tmultiple\tO\nnotifications\tB-User_Interface_Element\tnotifications\tO\nto\tO\tto\tO\npop\tO\tpop\tO\nat\tO\tat\tO\ndifferent\tO\tdifferent\tO\ntimes\tO\ttimes\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nclicks\tO\tclicks\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n(\tO\t(\tO\nscheduleNotification\tB-Class_Name\tscheduleNotification\tO\noccurs\tO\toccurs\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\nafter\tO\tafter\tO\nits\tO\tits\tO\npressed\tO\tpressed\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nnotifications\tB-User_Interface_Element\tnotifications\tO\nall\tO\tall\tO\npop\tO\tpop\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nfinal\tO\tfinal\tO\npress\tO\tpress\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\npressing\tO\tpressing\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n4\tO\t4\tO\ntimes\tO\ttimes\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\nnotification\tB-User_Interface_Element\tnotification\tO\nwill\tO\twill\tO\npop\tO\tpop\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\n4th\tO\t4th\tO\nclick\tO\tclick\tO\n.\tO\t.\tO\n\t\nRelevant\tO\tRelevant\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4878\tI-Code_Block\tQ_4878\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nReceiver\tB-Class_Name\tReceiver\tO\nclass\tO\tclass\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4879\tI-Code_Block\tQ_4879\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47087661\tO\t47087661\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47087661/\tO\thttps://stackoverflow.com/questions/47087661/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nform\tO\tform\tO\nvalidation\tO\tvalidation\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nnotifies\tO\tnotifies\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nEmployeeNo\tB-Variable_Name\tEmployeeNo\tB-Code_Block\nand\tO\tand\tO\nEngagementID\tB-Variable_Name\tEngagementID\tB-Code_Block\nhave\tO\thave\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nEmployeeNo\tB-Variable_Name\tEmployeeNo\tB-Code_Block\nwith\tO\twith\tO\n0507\tB-Value\t0507\tB-Code_Block\nand\tO\tand\tO\nan\tO\tan\tO\nEngagementID\tB-Variable_Name\tEngagementID\tB-Code_Block\nwith\tO\twith\tO\n13\tB-Value\t13\tB-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nduplicate\tO\tduplicate\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n,\tO\t,\tO\nEngagement\tB-Output_Block\tEngagement\tO\nalready\tI-Output_Block\talready\tO\nexists\tI-Output_Block\texists\tO\non\tI-Output_Block\ton\tO\nthat\tI-Output_Block\tthat\tO\nusername\tI-Output_Block\tusername\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6235\tI-Code_Block\tQ_6235\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43098434\tO\t43098434\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43098434/\tO\thttps://stackoverflow.com/questions/43098434/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5509\tI-Code_Block\tQ_5509\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43098434\tO\t43098434\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43098434/\tO\thttps://stackoverflow.com/questions/43098434/\tO\n\t\n\t\nsimply\tO\tsimply\tO\nput\tO\tput\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndeclaring\tO\tdeclaring\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nnamed\tO\tnamed\tO\n\"\tO\t\"\tO\nDie\tB-Class_Name\tDie\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\ndefining\tO\tdefining\tO\n3\tO\t3\tO\nfunctions\tO\tfunctions\tO\nwhich\tO\twhich\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nshow\tB-Function_Name\tshow\tO\n:\tO\t:\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nface\tO\tface\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndie\tO\tdie\tO\nin\tO\tin\tO\nbrackets\tO\tbrackets\tO\n\t\ngetFaceValue\tB-Function_Name\tgetFaceValue\tO\n:\tO\t:\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nface\tO\tface\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndie\tO\tdie\tO\n\t\nroll\tB-Function_Name\troll\tO\n:\tO\t:\tO\ngets\tO\tgets\tO\na\tO\ta\tO\nrandom\tO\trandom\tO\nnumber\tO\tnumber\tO\nbetween\tO\tbetween\tO\n1\tB-Value\t1\tO\nand\tO\tand\tO\n6\tB-Value\t6\tO\n,\tO\t,\tO\nessentially\tO\tessentially\tO\nrolling\tO\trolling\tO\nthe\tO\tthe\tO\ndie\tO\tdie\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34928520\tO\t34928520\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34928520/\tO\thttps://stackoverflow.com/questions/34928520/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4272\tI-Code_Block\tQ_4272\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nB\tB-Variable_Name\tB\tO\nin\tO\tin\tO\nA\tB-Variable_Name\tA\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nfind\tO\tfind\tO\nfirst\tO\tfirst\tO\nrowA\tO\trowA\tO\nof\tO\tof\tO\nvalue\tO\tvalue\tO\n1\tO\t1\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nB\tB-Variable_Name\tB\tO\n)\tO\t)\tO\n\t\nfind\tO\tfind\tO\nfirst\tO\tfirst\tO\nrowA\tO\trowA\tO\nof\tO\tof\tO\nvalue\tO\tvalue\tO\n0\tO\t0\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nB\tB-Function_Name\tB\tO\n)\tO\t)\tO\n\t\nfind\tO\tfind\tO\nfirst\tO\tfirst\tO\nrowA\tO\trowA\tO\nof\tO\tof\tO\nvalue\tO\tvalue\tO\n5\tO\t5\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nB\tB-Variable_Name\tB\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nC\tB-Code_Block\tC\tB-Code_Block\n=[\tI-Code_Block\t=[\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4273\tI-Code_Block\tQ_4273\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34928520\tO\t34928520\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34928520/\tO\thttps://stackoverflow.com/questions/34928520/\tO\n\t\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nalmost\tO\talmost\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmust\tO\tmust\tO\ninitialize\tO\tinitialize\tO\nthe\tO\tthe\tO\nindex-variable\tB-Variable_Name\tindex-variable\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4976\tI-Code_Block\tA_4976\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46711949\tO\t46711949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46711949/\tO\thttps://stackoverflow.com/questions/46711949/\tO\n\t\n\t\nIn\tO\tIn\tO\nMySQL\tB-Application\tMySQL\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nin\tO\tin\tO\nfollowing\tO\tfollowing\tO\nexpressions\tO\texpressions\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nis\tO\tis\tO\nto\tO\tto\tO\nreduce\tO\treduce\tO\ncode\tO\tcode\tO\nduplicity\tO\tduplicity\tO\nand\tO\tand\tO\navoid\tO\tavoid\tO\npossible\tO\tpossible\tO\nproblems\tO\tproblems\tO\nwhen\tO\twhen\tO\nediting\tO\tediting\tO\nexisting\tO\texisting\tO\nscripts\tO\tscripts\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nmandatory\tO\tmandatory\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6153\tI-Code_Block\tQ_6153\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6148291\tO\t6148291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6148291/\tO\thttps://stackoverflow.com/questions/6148291/\tO\n\t\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\n1\tO\t1\tO\nperl\tB-Language\tperl\tO\nscript\tO\tscript\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nwe\tO\twe\tO\nwrite\tO\twrite\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nsubroutines\tO\tsubroutines\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_449\tI-Code_Block\tQ_449\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwrote\tO\twrote\tO\nanother\tO\tanother\tO\nscript\tO\tscript\tO\nTry_2.pl\tB-File_Name\tTry_2.pl\tB-Code_Block\n,\tO\t,\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\ncheck\tO\tcheck\tO\nsubroutine\tO\tsubroutine\tO\nof\tO\tof\tO\nperl\tB-Language\tperl\tO\nscript\tO\tscript\tO\nTry_1.pl\tB-File_Name\tTry_1.pl\tB-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6148291\tO\t6148291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6148291/\tO\thttps://stackoverflow.com/questions/6148291/\tO\n\t\n\t\nIt\tO\tIt\tO\nsounds\tO\tsounds\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nmodule\tO\tmodule\tO\n.\tO\t.\tO\n\t\nTry_1.pm\tB-File_Name\tTry_1.pm\tO\n(\tO\t(\tO\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nnote\tO\tnote\tO\nextension\tO\textension\tO\n)\tO\t)\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nform\tO\tform\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_693\tI-Code_Block\tA_693\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nTry_2.pl\tB-File_Name\tTry_2.pl\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_694\tI-Code_Block\tA_694\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6148291\tO\t6148291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6148291/\tO\thttps://stackoverflow.com/questions/6148291/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nmodules\tO\tmodules\tO\n(\tO\t(\tO\nextension\tO\textension\tO\n.pm\tB-File_Type\t.pm\tB-Code_Block\n)\tO\t)\tO\nbut\tO\tbut\tO\ninstead\tO\tinstead\tO\nuse\tO\tuse\tO\nlibraries\tO\tlibraries\tO\n(\tO\t(\tO\nextension\tO\textension\tO\n.pl\tB-File_Type\t.pl\tB-Code_Block\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_696\tI-Code_Block\tA_696\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nboth\tO\tboth\tO\nfiles\tO\tfiles\tO\nTry_1.pl\tB-File_Name\tTry_1.pl\tB-Code_Block\nand\tO\tand\tO\nTry_2.pl\tB-File_Name\tTry_2.pl\tB-Code_Block\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37757484\tO\t37757484\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37757484/\tO\thttps://stackoverflow.com/questions/37757484/\tO\n\t\n\t\nShould\tO\tShould\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nArrayList\tB-Library_Class\tArrayList\tO\n,\tO\t,\tO\nVectors\tB-Library_Class\tVectors\tO\n,\tO\t,\tO\nHashMp\tB-Library_Class\tHashMp\tO\nor\tO\tor\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nbank\tO\tbank\tO\nprogram\tO\tprogram\tO\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ninformation\tO\tinformation\tO\nin\tO\tin\tO\nan\tO\tan\tO\none\tO\tone\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37757484\tO\t37757484\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37757484/\tO\thttps://stackoverflow.com/questions/37757484/\tO\n\t\n\t\nTo\tO\tTo\tO\ndecide\tO\tdecide\tO\nbetween\tO\tbetween\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nArrayList/Vector\tB-Library_Class\tArrayList/Vector\tO\nor\tO\tor\tO\na\tO\ta\tO\nHashMap\tB-Library_Class\tHashMap\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nwhether\tO\twhether\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nkey-value\tO\tkey-value\tO\npairs\tO\tpairs\tO\nor\tO\tor\tO\nsimple\tO\tsimple\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nkey-value\tO\tkey-value\tO\npairs\tO\tpairs\tO\na\tO\ta\tO\nHashMap\tB-Library_Class\tHashMap\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ngo-to\tO\tgo-to\tO\noption\tO\toption\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\nname\tB-Variable_Name\tname\tO\n-\tO\t-\tO\nperson\tB-Variable_Name\tperson\tO\nobject\tO\tobject\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\nobjects\tB-Library_Class\tobjects\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nreal\tO\treal\tO\nkeys\tO\tkeys\tO\n(\tO\t(\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ntrees\tO\ttrees\tO\nin\tO\tin\tO\na\tO\ta\tO\nforest\tO\tforest\tO\n)\tO\t)\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nArrayList\tB-Library_Class\tArrayList\tO\nor\tO\tor\tO\nVector\tB-Library_Class\tVector\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nVector\tB-Library_Class\tVector\tO\nand\tO\tand\tO\nArrayList\tB-Library_Class\tArrayList\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nsubtle\tO\tsubtle\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\narticle\tO\tarticle\tO\nis\tO\tis\tO\nfrom\tO\tfrom\tO\n2001\tO\t2001\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\nnewest\tO\tnewest\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmost\tO\tmost\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nArrayList\tB-Library_Class\tArrayList\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbetter\tO\tbetter\tO\nchoice\tO\tchoice\tO\nand\tO\tand\tO\nVector\tB-Library_Class\tVector\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nconsidered\tO\tconsidered\tO\ndeprecated\tO\tdeprecated\tO\nnowadays\tO\tnowadays\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\nbiggest\tO\tbiggest\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nis\tO\tis\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nVector\tB-Library_Class\tVector\tO\nis\tO\tis\tO\nsynchronized\tO\tsynchronized\tO\nwhile\tO\twhile\tO\nArrayList\tB-Library_Class\tArrayList\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nin\tO\tin\tO\nmost\tO\tmost\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nmakes\tO\tmakes\tO\nthe\tO\tthe\tO\nVector\tB-Library_Class\tVector\tO\nslower\tO\tslower\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nArrayList\tB-Library_Class\tArrayList\tO\nas\tO\tas\tO\nit\tO\tit\tO\ncreates\tO\tcreates\tO\nunnecessary\tO\tunnecessary\tO\noverhead\tO\toverhead\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nJava\tB-Language\tJava\tO\nVector\tB-Library_Class\tVector\tO\nclass\tO\tclass\tO\nconsidered\tO\tconsidered\tO\nobsolete\tO\tobsolete\tO\nor\tO\tor\tO\ndeprecated\tO\tdeprecated\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22773304\tO\t22773304\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22773304/\tO\thttps://stackoverflow.com/questions/22773304/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncoding\tO\tcoding\tO\nin\tO\tin\tO\nQt\tB-Application\tQt\tO\nC++\tB-Language\tC++\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndeclaring\tO\tdeclaring\tO\na\tO\ta\tO\nliteral\tO\tliteral\tO\ndouble\tB-Data_Type\tdouble\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\nrountine\tO\trountine\tO\nof\tO\tof\tO\n0.1\tB-Value\t0.1\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\npass\tO\tpass\tO\nthis\tO\tthis\tO\nvariable\tO\tvariable\tO\nto\tO\tto\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\ntype\tO\ttype\tO\ndouble\tB-Data_Type\tdouble\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nhover\tO\thover\tO\nthe\tO\tthe\tO\nmouse\tO\tmouse\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nin\tO\tin\tO\ndebug\tO\tdebug\tO\nmode\tO\tmode\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\n0.100000000000001\tB-Value\t0.100000000000001\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncause\tO\tcause\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nchange\tO\tchange\tO\nand\tO\tand\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nstop\tO\tstop\tO\nit\tO\tit\tO\nplease\tO\tplease\tO\n?\tO\t?\tO\n\t\nMethod\tO\tMethod\tO\nDefinition\tO\tDefinition\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2490\tI-Code_Block\tQ_2490\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMethod\tO\tMethod\tO\nCall\tO\tCall\tO\nwith\tO\twith\tO\nliteral\tO\tliteral\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n0.1\tB-Value\t0.1\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2491\tI-Code_Block\tQ_2491\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nenvironment\tO\tenvironment\tO\nis\tO\tis\tO\nWindows\tB-Operating_System\tWindows\tO\n64\tB-Version\t64\tO\nbit\tO\tbit\tO\nOS\tO\tOS\tO\nusing\tO\tusing\tO\nQt\tB-Application\tQt\tO\n5.2.1\tB-Version\t5.2.1\tO\nand\tO\tand\tO\ncompiling\tO\tcompiling\tO\nusing\tO\tusing\tO\nMicrosoft\tB-Application\tMicrosoft\tO\n2010\tI-Application\t2010\tO\nVisual\tI-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\ncompiler\tI-Application\tcompiler\tO\nin\tO\tin\tO\n32\tO\t32\tO\nbit\tO\tbit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22773304\tO\t22773304\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22773304/\tO\thttps://stackoverflow.com/questions/22773304/\tO\n\t\n\t\nMany\tO\tMany\tO\ndecimal\tO\tdecimal\tO\nnumbers\tO\tnumbers\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nexactly\tO\texactly\tO\nrepresentable\tO\trepresentable\tO\nin\tO\tin\tO\nIEEE\tO\tIEEE\tO\nfloating\tO\tfloating\tO\npoint\tO\tpoint\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nbinary\tO\tbinary\tO\nrepresentation\tO\trepresentation\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\ndouble\tB-Data_Type\tdouble\tB-Code_Block\n)\tO\t)\tO\nand\tO\tand\tO\n0.1\tB-Value\t0.1\tO\nfalls\tO\tfalls\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncamp\tO\tcamp\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\ntype\tO\ttype\tO\n0.1\tB-Value\t0.1\tB-Code_Block\nthe\tO\tthe\tO\nC++\tB-Language\tC++\tO\ncompiler\tB-Application\tcompiler\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthat\tO\tthat\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndouble\tB-Data_Type\tdouble\tB-Code_Block\nto\tO\tto\tO\nbe\tO\tbe\tO\nrepresented\tO\trepresented\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nhardware\tO\thardware\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nso\tO\tso\tO\nby\tO\tby\tO\ncomputing\tO\tcomputing\tO\na\tO\ta\tO\nnear\tO\tnear\tO\napproximation\tO\tapproximation\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\na\tO\ta\tO\npower\tO\tpower\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\n:\tO\t:\tO\n0.5\tB-Value\t0.5\tB-Code_Block\n,\tO\t,\tO\n0.25\tB-Value\t0.25\tB-Code_Block\nthese\tO\tthese\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nexactly\tO\texactly\tO\nrepresented\tO\trepresented\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nin-depth\tO\tin-depth\tO\ndescription\tO\tdescription\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22773304\tO\t22773304\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22773304/\tO\thttps://stackoverflow.com/questions/22773304/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nnormal\tO\tnormal\tO\nbehaviour\tO\tbehaviour\tO\nin\tO\tin\tO\nany\tO\tany\tO\ncomputer\tB-Device\tcomputer\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ncaused\tO\tcaused\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\ndecimal\tB-Data_Type\tdecimal\tO\nnumbers\tI-Data_Type\tnumbers\tO\nare\tO\tare\tO\nbeing\tO\tbeing\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\nfixed-sized\tO\tfixed-sized\tO\nbinary\tO\tbinary\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nextra\tO\textra\tO\ndigits\tO\tdigits\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ninherent\tO\tinherent\tO\nerrors\tO\terrors\tO\ncaused\tO\tcaused\tO\nby\tO\tby\tO\nconverting\tO\tconverting\tO\nfrom\tO\tfrom\tO\nbinary\tO\tbinary\tO\nto\tO\tto\tO\ndecimal\tO\tdecimal\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nchoose\tO\tchoose\tO\na\tO\ta\tO\nprecision\tO\tprecision\tO\n(\tO\t(\tO\neither\tO\teither\tO\nfloat\tB-Data_Type\tfloat\tB-Code_Block\nor\tO\tor\tO\ndouble\tB-Data_Type\tdouble\tB-Code_Block\n)\tO\t)\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nbig\tO\tbig\tO\nenough\tO\tenough\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nextra\tO\textra\tO\nerror\tO\terror\tO\ndigits\tO\tdigits\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nmake\tO\tmake\tO\nany\tO\tany\tO\ndifference\tO\tdifference\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nchop\tO\tchop\tO\nthem\tO\tthem\tO\noff\tO\toff\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7421703\tO\t7421703\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7421703/\tO\thttps://stackoverflow.com/questions/7421703/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nmy\tO\tmy\tO\nview\tB-Library_Class\tview\tO\ncontroller\tI-Library_Class\tcontroller\tO\nis\tO\tis\tO\nfirst\tO\tfirst\tO\npresented\tO\tpresented\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\npotentially\tO\tpotentially\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\ncache\tO\tcache\tO\nthat\tO\tthat\tO\nprovides\tO\tprovides\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ntaps\tO\ttaps\tO\nthe\tO\tthe\tO\nback\tO\tback\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndeeper\tO\tdeeper\tO\nview\tB-Library_Class\tview\tO\ncontroller\tI-Library_Class\tcontroller\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nview\tB-Library_Class\tview\tO\ncontroller\tI-Library_Class\tcontroller\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ncache\tO\tcache\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nevent\tO\tevent\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\n?\tO\t?\tO\n\t\nin\tO\tin\tO\ninit\tB-Library_Function\tinit\tB-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nviewWillAppear\tB-Library_Function\tviewWillAppear\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfired\tO\tfired\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nwill\tO\twill\tO\nappear\tO\tappear\tO\n.\tO\t.\tO\n\t\nviewDidLoad\tB-Library_Function\tviewDidLoad\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfired\tO\tfired\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nloaded\tO\tloaded\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nnib\tB-File_Type\tnib\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\ncould\tO\tcould\tO\nhappen\tO\thappen\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\ntime\tO\ttime\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nmemory\tO\tmemory\tO\nwarning\tO\twarning\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nOr\tO\tOr\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nSince\tO\tSince\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nmemory\tO\tmemory\tO\nresident\tO\tresident\tO\ncache\tO\tcache\tO\n,\tO\t,\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nplace\tO\tplace\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nhaving\tO\thaving\tO\nthe\tO\tthe\tO\ncaller\tO\tcaller\tO\ncall\tO\tcall\tO\nsomething\tO\tsomething\tO\nextra\tO\textra\tO\nis\tO\tis\tO\ninelegant\tO\tinelegant\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nbuilt-in\tO\tbuilt-in\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nclarify\tO\tclarify\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nmemory\tO\tmemory\tO\nresident\tO\tresident\tO\ncache\tO\tcache\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nparsing\tO\tparsing\tO\nan\tO\tan\tO\nXML\tB-File_Type\tXML\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nbinary\tB-File_Type\tbinary\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbinary\tB-File_Type\tbinary\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\nand\tO\tand\tO\nunloaded\tO\tunloaded\tO\nin\tO\tin\tO\nviewDidLoad\tB-Library_Function\tviewDidLoad\tB-Code_Block\nand\tO\tand\tO\nviewDidUnload\tB-Library_Function\tviewDidUnload\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nprerequisite\tO\tprerequisite\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nstep\tO\tstep\tO\n,\tO\t,\tO\nmaking\tO\tmaking\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nbinary\tB-File_Type\tbinary\tO\nis\tO\tis\tO\nup-to-date\tO\tup-to-date\tO\nprior\tO\tprior\tO\nto\tO\tto\tO\nit\tO\tit\tO\nbeing\tO\tbeing\tO\nloaded\tO\tloaded\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7421703\tO\t7421703\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7421703/\tO\thttps://stackoverflow.com/questions/7421703/\tO\n\t\n\t\nload\tO\tload\tO\nthe\tO\tthe\tO\ncache\tO\tcache\tO\nin\tO\tin\tO\nviewDidLoad\tB-Library_Function\tviewDidLoad\tO\nand\tO\tand\tO\nrelease\tO\trelease\tO\nit\tO\tit\tO\nin\tO\tin\tO\nviewDidUnload\tB-Library_Function\tviewDidUnload\tO\nand\tO\tand\tO\ndealloc\tB-Library_Function\tdealloc\tO\n.\tO\t.\tO\n\t\nviewDidUnload\tB-Library_Function\tviewDidUnload\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nduring\tO\tduring\tO\nlow-memory\tO\tlow-memory\tO\nconditions\tO\tconditions\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nremain\tO\tremain\tO\nresponsive\tO\tresponsive\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nfree\tO\tfree\tO\nup\tO\tup\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\nmemory\tO\tmemory\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\n.\tO\t.\tO\n\t\nwell\tO\twell\tO\nexplained\tO\texplained\tO\nhere\tO\there\tO\n:\tO\t:\tO\nWhen\tO\tWhen\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nrelease\tO\trelease\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\n-(void)viewDidUnload\tB-Library_Function\t-(void)viewDidUnload\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nin\tO\tin\tO\n-dealloc\tB-Library_Function\t-dealloc\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7421703\tO\t7421703\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7421703/\tO\thttps://stackoverflow.com/questions/7421703/\tO\n\t\n\t\nUsing\tO\tUsing\tO\ninit\tB-Library_Function\tinit\tB-Code_Block\nmay\tO\tmay\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nrecommend\tO\trecommend\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsubclass\tO\tsubclass\tO\nof\tO\tof\tO\nUINavigationController\tB-Library_Class\tUINavigationController\tB-Code_Block\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nmethod\tO\tmethod\tO\ncalled\tO\tcalled\tO\nsetRootTableViewController\tB-Code_Block\tsetRootTableViewController\tB-Code_Block\n:(\tI-Code_Block\t:(\tI-Code_Block\nUITableViewController\tI-Code_Block\tUITableViewController\tI-Code_Block\n*)\tI-Code_Block\t*)\tI-Code_Block\ncontroller\tI-Code_Block\tcontroller\tI-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nimplementation\tO\timplementation\tO\ncall\tO\tcall\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_854\tI-Code_Block\tA_854\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nreloadData\tB-Variable_Name\treloadData\tB-Code_Block\nwill\tO\twill\tO\ncall\tO\tcall\tO\nall\tO\tall\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndelegate\tO\tdelegate\tO\nand\tO\tand\tO\ndata\tO\tdata\tO\nsource\tO\tsource\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ntable\tB-User_Interface_Element\ttable\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nmethod\tO\tmethod\tO\ncall\tO\tcall\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ntable\tB-Library_Class\ttable\tO\nview\tI-Library_Class\tview\tO\ncontroller\tI-Library_Class\tcontroller\tO\ninstead\tO\tinstead\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\ndeclaration\tO\tdeclaration\tO\nto\tO\tto\tO\nsetRootTableViewController\tB-Code_Block\tsetRootTableViewController\tB-Code_Block\n:(\tI-Code_Block\t:(\tI-Code_Block\nCustomTableViewController\tI-Code_Block\tCustomTableViewController\tI-Code_Block\n*)\tI-Code_Block\t*)\tI-Code_Block\ncontroller\tI-Code_Block\tcontroller\tI-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\nwhatever\tO\twhatever\tO\nyour\tO\tyour\tO\ncustom\tO\tcustom\tO\ntable\tO\ttable\tO\ncontroller\tO\tcontroller\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nreloadData\tB-Variable_Name\treloadData\tB-Code_Block\nline\tO\tline\tO\nwith\tO\twith\tO\none\tO\tone\tO\nthat\tO\tthat\tO\ncalls\tO\tcalls\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\ndelegate\tO\tdelegate\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nUINavigationController\tB-Library_Class\tUINavigationController\tB-Code_Block\nand\tO\tand\tO\nadding\tO\tadding\tO\nyour\tO\tyour\tO\ncustom\tO\tcustom\tO\nview\tB-Library_Class\tview\tO\ncontroller\tI-Library_Class\tcontroller\tO\n,\tO\t,\tO\ncreate\tO\tcreate\tO\none\tO\tone\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nnib\tB-File_Type\tnib\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nrootViewController\tB-Library_Class\trootViewController\tB-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\noverride\tO\toverride\tO\ninitWithRootViewController\tB-Code_Block\tinitWithRootViewController\tB-Code_Block\n:(\tI-Code_Block\t:(\tI-Code_Block\nUIViewController\tI-Code_Block\tUIViewController\tI-Code_Block\n*)\tI-Code_Block\t*)\tI-Code_Block\ncontroller\tI-Code_Block\tcontroller\tI-Code_Block\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\nimagine\tO\timagine\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nnib\tB-File_Type\tnib\tO\nwill\tO\twill\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nview\tO\tview\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstack\tO\tstack\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_855\tI-Code_Block\tA_855\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30631008\tO\t30631008\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30631008/\tO\thttps://stackoverflow.com/questions/30631008/\tO\n\t\n\t\nThis\tO\tThis\tO\nquery\tO\tquery\tO\nworks\tO\tworks\tO\nin\tO\tin\tO\ndata\tB-Application\tdata\tO\nstudio\tI-Application\tstudio\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfails\tO\tfails\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nalias\tO\talias\tO\nin\tO\tin\tO\nMS\tB-Application\tMS\tO\nQuery\tI-Application\tQuery\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\ndifferent\tO\tdifferent\tO\ntypes\tO\ttypes\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n\"\",'',[]\tB-Value\t\"\",'',[]\tO\nand\tO\tand\tO\neven\tO\teven\tO\nhttps://support.microsoft.com/en-us/kb/298955\tO\thttps://support.microsoft.com/en-us/kb/298955\tO\n\t\nSELECT\tB-Code_Block\tSELECT\tO\n'\tI-Code_Block\t'\tO\nTRANIN'AS\tI-Code_Block\tTRANIN'AS\tO\nNAME\tI-Code_Block\tNAME\tO\n,\tI-Code_Block\t,\tO\nSUM\tI-Code_Block\tSUM\tO\n(\tI-Code_Block\t(\tO\nCASE\tI-Code_Block\tCASE\tO\nWHEN\tI-Code_Block\tWHEN\tO\nALT3.TRANINDT\tI-Code_Block\tALT3.TRANINDT\tO\nBETWEEN\tI-Code_Block\tBETWEEN\tO\n20150603\tI-Code_Block\t20150603\tO\nAND\tI-Code_Block\tAND\tO\n20150601\tI-Code_Block\t20150601\tO\nTHEN\tI-Code_Block\tTHEN\tO\n1\tI-Code_Block\t1\tO\nelse\tI-Code_Block\telse\tO\n0\tI-Code_Block\t0\tO\nEND\tI-Code_Block\tEND\tO\n)\tI-Code_Block\t)\tO\nAS\tB-Code_Block\tAS\tO\nCurrentMonth\tI-Code_Block\tCurrentMonth\tO\n,\tI-Code_Block\t,\tO\nSUM\tI-Code_Block\tSUM\tO\n(\tI-Code_Block\t(\tO\nCASE\tI-Code_Block\tCASE\tO\nWHEN\tI-Code_Block\tWHEN\tO\nALT3.TRANINDT\tI-Code_Block\tALT3.TRANINDT\tO\nBETWEEN\tI-Code_Block\tBETWEEN\tO\n20150501\tI-Code_Block\t20150501\tO\nAND\tI-Code_Block\tAND\tO\n20150531\tI-Code_Block\t20150531\tO\nTHEN\tI-Code_Block\tTHEN\tO\n1\tI-Code_Block\t1\tO\nelse\tI-Code_Block\telse\tO\n0\tI-Code_Block\t0\tO\nEND\tI-Code_Block\tEND\tO\n)\tI-Code_Block\t)\tO\nAS\tB-Code_Block\tAS\tO\nLastMonth\tI-Code_Block\tLastMonth\tO\n\t\nFROM\tB-Code_Block\tFROM\tO\nALT3\tI-Code_Block\tALT3\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30631008\tO\t30631008\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30631008/\tO\thttps://stackoverflow.com/questions/30631008/\tO\n\t\n\t\nMS\tB-Organization\tMS\tO\nbroke\tO\tbroke\tO\nMS\tB-Application\tMS\tO\nquery\tI-Application\tquery\tO\na\tO\ta\tO\nlong\tO\tlong\tO\ntime\tO\ttime\tO\nago\tO\tago\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nright\tO\tright\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnothing\tO\tnothing\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\ngiven\tO\tgiven\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nNormally\tO\tNormally\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nrename\tO\trename\tO\nthe\tO\tthe\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nonce\tO\tonce\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nback\tO\tback\tO\nin\tO\tin\tO\nExcel\tB-Application\tExcel\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\nMS\tB-Application\tMS\tO\nquery\tI-Application\tquery\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4356\tI-Code_Block\tA_4356\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28491592\tO\t28491592\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28491592/\tO\thttps://stackoverflow.com/questions/28491592/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3341\tI-Code_Block\tQ_3341\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\npick\tO\tpick\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nperson__name\tB-Variable_Name\tperson__name\tO\nand\tO\tand\tO\nperson__email\tB-Variable_Name\tperson__email\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nstrange\tO\tstrange\tO\npart\tO\tpart\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\npick\tO\tpick\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\n..\tI-Application\t..\tO\n.\tO\t.\tO\nsomeone\tO\tsomeone\tO\nknows\tO\tknows\tO\nwhat\tO\twhat\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ncausing\tO\tcausing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nof\tO\tof\tO\nhtml\tB-Language\thtml\tO\nthe\tO\tthe\tO\n2\tO\t2\tO\ninputs\tB-User_Interface_Element\tinputs\tO\nfields\tI-User_Interface_Element\tfields\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nid\tO\tid\tO\nperson__name\tB-Variable_Name\tperson__name\tO\nand\tO\tand\tO\nperson__email\tB-Variable_Name\tperson__email\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nin\tO\tin\tO\na\tO\ta\tO\nexternal\tO\texternal\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nand\tO\tand\tO\ni\tO\ti\tO\nam\tO\tam\tO\ncalling\tO\tcalling\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nhtml\tB-Language\thtml\tO\n.\tO\t.\tO\n\t\nHTML\tB-Language\tHTML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3342\tI-Code_Block\tQ_3342\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ncant\tO\tcant\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nsubmit\tO\tsubmit\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nscripts\tO\tscripts\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3343\tI-Code_Block\tQ_3343\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nInside\tO\tInside\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3344\tI-Code_Block\tQ_3344\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28491592\tO\t28491592\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28491592/\tO\thttps://stackoverflow.com/questions/28491592/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nalert\tB-Library_Function\talert\tO\nthe\tO\tthe\tO\nname\tB-Variable_Name\tname\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nname\tB-Variable_Name\tname\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\njQuery\tB-Library\tjQuery\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3981\tI-Code_Block\tA_3981\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhttp://jsfiddle.net/376fLujs/3/\tO\thttp://jsfiddle.net/376fLujs/3/\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyour\tO\tyour\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\nincluded\tO\tincluded\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nInclude\tO\tInclude\tO\nthe\tO\tthe\tO\njQuery\tB-Library\tjQuery\tO\nbefore\tO\tbefore\tO\nyour\tO\tyour\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3982\tI-Code_Block\tA_3982\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nadd\tO\tadd\tO\n:\tO\t:\tO\nconsole.log(\"working\")\tB-Code_Block\tconsole.log(\"working\")\tO\n;\tI-Code_Block\t;\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nvery\tO\tvery\tO\nfirst\tO\tfirst\tO\nline\tO\tline\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nscript\tO\tscript\tO\n\t\nopen\tO\topen\tO\nthe\tO\tthe\tO\nchrome\tB-Application\tchrome\tO\nconsole\tI-Application\tconsole\tO\n/\tO\t/\tO\nFirebug\tB-Application\tFirebug\tO\nand\tO\tand\tO\nrefresh\tO\trefresh\tO\nyour\tO\tyour\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\n\"\tO\t\"\tO\nworking\tO\tworking\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\njavascript\tB-Language\tjavascript\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nincluded\tO\tincluded\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ncomments\tO\tcomments\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nforms\tO\tforms\tO\n,\tO\t,\tO\nre-using\tO\tre-using\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nID\tB-Variable_Name\tID\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAlways\tO\tAlways\tO\nkeep\tO\tkeep\tO\nIDs\tB-Variable_Name\tIDs\tO\nunique\tO\tunique\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nyour\tO\tyour\tO\nlink\tO\tlink\tO\nis\tO\tis\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tB-User_Interface_Element\tform\tO\nlike\tO\tlike\tO\nyour\tO\tyour\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3983\tI-Code_Block\tA_3983\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhttp://jsfiddle.net/376fLujs/4/\tO\thttp://jsfiddle.net/376fLujs/4/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28491592\tO\t28491592\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28491592/\tO\thttps://stackoverflow.com/questions/28491592/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nsay\tO\tsay\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nevent\tO\tevent\tO\nhandling\tO\thandling\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3984\tI-Code_Block\tA_3984\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nyet\tO\tyet\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nloads\tO\tloads\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\ntake\tO\ttake\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29344912\tO\t29344912\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29344912/\tO\thttps://stackoverflow.com/questions/29344912/\tO\n\t\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nbrief\tO\tbrief\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nGitLab\tB-Application\tGitLab\tO\nserver\tI-Application\tserver\tO\non\tO\ton\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nrepositories\tO\trepositories\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\ntheir\tO\ttheir\tO\nAPI\tB-Application\tAPI\tO\n,\tO\t,\tO\nspecifically\tO\tspecifically\tO\nGet\tO\tGet\tO\nfile\tO\tfile\tO\narchive\tO\tarchive\tO\nusing\tO\tusing\tO\ncURL\tB-Library\tcURL\tO\nand\tO\tand\tO\nPHP\tB-Language\tPHP\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nbellow\tO\tbellow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3495\tI-Code_Block\tQ_3495\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nfile\tO\tfile\tO\ndownloads\tO\tdownloads\tO\nproperly\tO\tproperly\tO\nand\tO\tand\tO\nis\tO\tis\tO\nsaved\tO\tsaved\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndisk\tO\tdisk\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nunzip\tO\tunzip\tO\nit\tO\tit\tO\nMAC\tB-Operating_System\tMAC\tO\nOS\tI-Operating_System\tOS\tO\nautomatically\tO\tautomatically\tO\nadds\tO\tadds\tO\na\tO\ta\tO\n.git\tB-File_Type\t.git\tO\nextension\tO\textension\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nmanually\tO\tmanually\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\n.git\tB-File_Type\t.git\tO\nextension\tO\textension\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nproperly\tO\tproperly\tO\nrecognized\tO\trecognized\tO\nas\tO\tas\tO\na\tO\ta\tO\nfolder\tO\tfolder\tO\nand\tO\tand\tO\neverything\tO\teverything\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\norder\tO\torder\tO\n(\tO\t(\tO\nno\tO\tno\tO\nmissing\tO\tmissing\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nno\tO\tno\tO\ncorrupted\tO\tcorrupted\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nnuisance\tO\tnuisance\tO\nto\tO\tto\tO\nsay\tO\tsay\tO\nthe\tO\tthe\tO\nleast\tO\tleast\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nparticularly\tO\tparticularly\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nGitLab\tB-Application\tGitLab\tO\n's\tO\t's\tO\nAPI\tI-Application\tAPI\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\nhow\tO\thow\tO\nMAC\tB-Operating_System\tMAC\tO\nOS\tI-Operating_System\tOS\tO\ntreats\tO\ttreats\tO\n.git\tB-File_Type\t.git\tO\nextension\tO\textension\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nperfectly\tO\tperfectly\tO\nhonest\tO\thonest\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nknow\tO\tknow\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nbegin\tO\tbegin\tO\ndebugging\tO\tdebugging\tO\n.\tO\t.\tO\n\t\nGoogle\tB-Website\tGoogle\tO\nand/or\tO\tand/or\tO\nSO\tB-Website\tSO\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nanything\tO\tanything\tO\nof\tO\tof\tO\nsignificance\tO\tsignificance\tO\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nOS\tB-Operating_System\tOS\tO\nX\tI-Operating_System\tX\tO\nVersion\tO\tVersion\tO\n10.8.4\tB-Version\t10.8.4\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nleave\tO\tleave\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\nwith\tO\twith\tO\ntheir\tO\ttheir\tO\nAPI\tB-Application\tAPI\tO\nlink\tO\tlink\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\napparently\tO\tapparently\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nlinks\tO\tlinks\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20941825\tO\t20941825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20941825/\tO\thttps://stackoverflow.com/questions/20941825/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnewer\tO\tnewer\tO\nto\tO\tto\tO\nAndroid\tB-Operating_System\tAndroid\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nand\tO\tand\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ngroup\tO\tgroup\tO\nchat\tO\tchat\tO\nfunctionality\tO\tfunctionality\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nGroupMe\tB-Application\tGroupMe\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nWithin\tO\tWithin\tO\nGroupMe\tB-Application\tGroupMe\tO\n,\tO\t,\tO\na\tO\ta\tO\nperson\tO\tperson\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\n,\tO\t,\tO\ninvite\tO\tinvite\tO\nfriends\tO\tfriends\tO\nand\tO\tand\tO\nall\tO\tall\tO\nthose\tO\tthose\tO\nfriends\tO\tfriends\tO\ncan\tO\tcan\tO\nshare\tO\tshare\tO\ncontent\tO\tcontent\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nupdates\tO\tupdates\tO\nof\tO\tof\tO\nother\tO\tother\tO\nmembers\tO\tmembers\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nresearched\tO\tresearched\tO\nScringo\tB-Application\tScringo\tO\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nfree\tO\tfree\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nperson\tO\tperson\tO\nto\tO\tto\tO\nperson\tO\tperson\tO\nchat\tO\tchat\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ndocs\tO\tdocs\tO\non\tO\ton\tO\nGroup\tO\tGroup\tO\nchat\tO\tchat\tO\nimply\tO\timply\tO\nonly\tO\tonly\tO\nusing\tO\tusing\tO\n'\tO\t'\tO\nchat\tO\tchat\tO\nrooms\tO\trooms\tO\n'\tO\t'\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\npersonal\tO\tpersonal\tO\nsmall\tO\tsmall\tO\ngroup\tO\tgroup\tO\nrelated\tO\trelated\tO\nchats\tO\tchats\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nin\tO\tin\tO\nGroupMe\tB-Application\tGroupMe\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\npossibility\tO\tpossibility\tO\nof\tO\tof\tO\ncustomizing\tO\tcustomizing\tO\nScringo\tB-Application\tScringo\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\none\tO\tone\tO\ncan\tO\tcan\tO\nenable\tO\tenable\tO\nsuch\tO\tsuch\tO\n'\tO\t'\tO\nprivate\tO\tprivate\tO\n'\tO\t'\tO\n,\tO\t,\tO\ninvitation\tO\tinvitation\tO\nonly\tO\tonly\tO\n,\tO\t,\tO\ngroup\tO\tgroup\tO\nfeatures\tO\tfeatures\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20941825\tO\t20941825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20941825/\tO\thttps://stackoverflow.com/questions/20941825/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nScringoCommentButton\tB-User_Interface_Element\tScringoCommentButton\tO\n(\tO\t(\tO\nhttp://www.scringo.com/docs/android-guides/popular/setup-chat-rooms-and-forums/#Adhoc\tO\thttp://www.scringo.com/docs/android-guides/popular/setup-chat-rooms-and-forums/#Adhoc\tO\n)\tO\t)\tO\nand\tO\tand\tO\nlet\tO\tlet\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\ninto\tO\tinto\tO\nthat\tO\tthat\tO\nroom\tO\troom\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nshow\tO\tshow\tO\nthis\tO\tthis\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nonly\tO\tonly\tO\nto\tO\tto\tO\nallowed\tO\tallowed\tO\nusers\tO\tusers\tO\n.\tO\t.\tO\n\t\nBTW\tO\tBTW\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\neven\tO\teven\tO\ncustomize\tO\tcustomize\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nXML\tB-Language\tXML\tO\n:\tO\t:\tO\nscringo_comment_button.xml\tB-File_Name\tscringo_comment_button.xml\tO\n,\tI-File_Name\t,\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nScringo\tB-Library\tScringo\tO\nAndroid\tI-Library\tAndroid\tO\nLibrary\tI-Library\tLibrary\tO\nproject\tO\tproject\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47872154\tO\t47872154\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47872154/\tO\thttps://stackoverflow.com/questions/47872154/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nVisual\tB-Application\tVisual\tO\nstudio\tI-Application\tstudio\tO\nweb\tO\tweb\tO\nperformance\tO\tperformance\tO\ntest\tO\ttest\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncsv\tB-File_Type\tcsv\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nin\tO\tin\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nbody\tO\tbody\tO\nof\tO\tof\tO\na\tO\ta\tO\nweb\tO\tweb\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nweb\tB-Application\tweb\tO\ntest\tI-Application\ttest\tO\nretrieve\tO\tretrieve\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\naccountID\tB-Variable_Name\taccountID\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nas\tO\tas\tO\nint\tO\tint\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\naccount\tO\taccount\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\n000005\tB-Value\t000005\tO\nor\tO\tor\tO\n000016\tB-Value\t000016\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nput\tO\tput\tO\na\tO\ta\tO\n5\tB-Value\t5\tO\nand\tO\tand\tO\na\tO\ta\tO\n15\tB-Value\t15\tO\nignoring\tO\tignoring\tO\nthe\tO\tthe\tO\nzeroes\tB-Value\tzeroes\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nan\tO\tan\tO\nerror\tO\terror\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\nservice\tO\tservice\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nforce\tO\tforce\tO\nthe\tO\tthe\tO\nweb\tB-Application\tweb\tO\ntest\tI-Application\ttest\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nas\tO\tas\tO\nstrings\tB-Data_Type\tstrings\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nBelow\tO\tBelow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncsv\tB-File_Type\tcsv\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nand\tO\tand\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\n2\tO\t2\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6357\tI-Code_Block\tQ_6357\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47872154\tO\t47872154\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47872154/\tO\thttps://stackoverflow.com/questions/47872154/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nend\tO\tend\tO\nup\tO\tup\tO\ndoing\tO\tdoing\tO\nis\tO\tis\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nWeb\tB-Application\tWeb\tO\nRequest\tI-Application\tRequest\tO\nplug\tI-Application\tplug\tO\nin\tI-Application\tin\tO\nthat\tO\tthat\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nsource\tO\tsource\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nwebtest\tB-Application\twebtest\tO\ncontext\tO\tcontext\tO\nand\tO\tand\tO\nediting\tO\tediting\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6989\tI-Code_Block\tA_6989\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tB-Code_Block\t}\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43935138\tO\t43935138\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43935138/\tO\thttps://stackoverflow.com/questions/43935138/\tO\n\t\n\t\nMKV\tB-File_Type\tMKV\tO\nis\tO\tis\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\npopular\tO\tpopular\tO\nvideo\tO\tvideo\tO\ncontainer\tO\tcontainer\tO\nformat\tO\tformat\tO\nwhich\tO\twhich\tO\nsupports\tO\tsupports\tO\nto\tO\tto\tO\ngroup\tO\tgroup\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nvideo\tO\tvideo\tO\n,\tO\t,\tO\naudio\tO\taudio\tO\nor\tO\tor\tO\nsubtitle\tO\tsubtitle\tO\nfiles\tO\tfiles\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ngrouped\tO\tgrouped\tO\ntogether\tO\ttogether\tO\nto\tO\tto\tO\none\tO\tone\tO\nfile\tO\tfile\tO\n;\tO\t;\tO\n\t\nNow\tO\tNow\tO\na\tO\ta\tO\ndays\tO\tdays\tO\nmajority\tO\tmajority\tO\nof\tO\tof\tO\n4K\tO\t4K\tO\nvideos\tO\tvideos\tO\navailable\tO\tavailable\tO\nonline\tO\tonline\tO\nare\tO\tare\tO\nin\tO\tin\tO\nmkv\tB-File_Type\tmkv\tO\nformat\tO\tformat\tO\n,\tO\t,\tO\nand\tO\tand\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nare\tO\tare\tO\nabove\tO\tabove\tO\n20GB\tO\t20GB\tO\nin\tO\tin\tO\nsize\tO\tsize\tO\n;\tO\t;\tO\n\t\nBut\tO\tBut\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nmajority\tO\tmajority\tO\nof\tO\tof\tO\nTV\tB-Device\tTV\tO\nor\tO\tor\tO\nmedia\tB-Device\tmedia\tO\nplayer\tI-Device\tplayer\tO\nonly\tO\tonly\tO\nsupport\tO\tsupport\tO\nFAT16/32\tO\tFAT16/32\tO\nnot\tO\tnot\tO\neven\tO\teven\tO\nexFAT\tO\texFAT\tO\n,\tO\t,\tO\nConsidering\tO\tConsidering\tO\nthe\tO\tthe\tO\nlimitation\tO\tlimitation\tO\nof\tO\tof\tO\n4GB\tO\t4GB\tO\nfile\tO\tfile\tO\nsize\tO\tsize\tO\nin\tO\tin\tO\nFAT32\tO\tFAT32\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nsplit\tO\tsplit\tO\nthe\tO\tthe\tO\n20\tO\t20\tO\ngb\tO\tgb\tO\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nmultiple\tO\tmultiple\tO\n2GB\tO\t2GB\tO\nor\tO\tor\tO\n3Gb\tO\t3Gb\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nhaving\tO\thaving\tO\nmetadata\tO\tmetadata\tO\nmkv\tB-File_Type\tmkv\tO\n(\tO\t(\tO\nmain.mkv\tB-File_Name\tmain.mkv\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nexample\tO\texample\tO\n)\tO\t)\tO\nfile\tO\tfile\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nable\tO\table\tO\nto\tO\tto\tO\npick\tO\tpick\tO\nthe\tO\tthe\tO\nrespective\tO\trespective\tO\ndata\tO\tdata\tO\n;\tO\t;\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nmovie\tO\tmovie\tO\nformat\tO\tformat\tO\nwhich\tO\twhich\tO\nsupports\tO\tsupports\tO\nthe\tO\tthe\tO\nsplit\tO\tsplit\tO\nfile\tO\tfile\tO\nmodel\tO\tmodel\tO\n\t\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nfolder/\tB-File_Name\tfolder/\tO\n\t\nmain.mkv\tB-File_Name\tmain.mkv\tO\n\t\npart1.dat\tB-File_Name\tpart1.dat\tO\n\t\npart2.dat\tB-File_Name\tpart2.dat\tO\n\t\npart3.dat\tB-File_Name\tpart3.dat\tO\n\t\npart4.dat\tB-File_Name\tpart4.dat\tO\n\t\n...\tO\t...\tO\n.\tO\t.\tO\netc\tO\tetc\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\ncontainer\tO\tcontainer\tO\nformat\tO\tformat\tO\nwhich\tO\twhich\tO\nsupport\tO\tsupport\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nto\tO\tto\tO\norganize\tO\torganize\tO\nfiles\tO\tfiles\tO\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nMKV\tB-File_Type\tMKV\tO\nsupports\tO\tsupports\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nconvert\tO\tconvert\tO\nsingle\tO\tsingle\tO\nmkv\tB-File_Type\tmkv\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1742075\tO\t1742075\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1742075/\tO\thttps://stackoverflow.com/questions/1742075/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nmy\tO\tmy\tO\nvirtual\tO\tvirtual\tO\n(\tO\t(\tO\nxen\tB-Application\txen\tO\n)\tO\t)\tO\nwin\tB-Operating_System\twin\tO\nxp\tB-Version\txp\tO\ninstances\tO\tinstances\tO\n,\tO\t,\tO\na\tO\ta\tO\ndedicated\tO\tdedicated\tO\nwindows\tB-Operating_System\twindows\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\ndedicated\tO\tdedicated\tO\nwindows\tB-Operating_System\twindows\tO\nxp\tB-Version\txp\tO\ndesktop\tB-Device\tdesktop\tO\npc\tI-Device\tpc\tO\nfor\tO\tfor\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\nUI\tO\tUI\tO\ntesting\tO\ttesting\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nselenium-rc\tB-Application\tselenium-rc\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nselenium\tB-Library\tselenium\tO\nPHP\tB-Language\tPHP\tO\nAPI\tB-Library\tAPI\tO\nfrom\tO\tfrom\tO\npear\tB-Application\tpear\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nphp\tB-Language\tphp\tO\nscript\tO\tscript\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\ntests\tO\ttests\tO\nsits\tO\tsits\tO\non\tO\ton\tO\nits\tO\tits\tO\napp\tO\tapp\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlocal\tO\tlocal\tO\nnetwork\tO\tnetwork\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nremote-controlled\tO\tremote-controlled\tO\nwindowses\tO\twindowses\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nhas\tO\thas\tO\nworked\tO\tworked\tO\nout\tO\tout\tO\ngreat\tO\tgreat\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\ni\tO\ti\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nscreenshot\tO\tscreenshot\tO\nfrom\tO\tfrom\tO\nselenium\tB-Application\tselenium\tO\nRC\tI-Application\tRC\tO\n-\tO\t-\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nall\tO\tall\tO\nblank\tO\tblank\tO\n(\tO\t(\tO\ngray\tO\tgray\tO\n)\tO\t)\tO\nafter\tO\tafter\tO\nbase64_decode()\tB-Library_Function\tbase64_decode()\tO\n;\tI-Library_Function\t;\tO\n(\tO\t(\tO\nwithout\tO\twithout\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\ndont\tO\tdont\tO\neven\tO\teven\tO\nopen\tO\topen\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nDespite\tO\tDespite\tO\nos\tB-Operating_System\tos\tO\nx\tI-Operating_System\tx\tO\npreview\tB-Application\tpreview\tO\ndisplays\tO\tdisplays\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\ngray\tO\tgray\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nactually\tO\tactually\tO\ntransparent\tO\ttransparent\tO\nor\tO\tor\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nother\tO\tother\tO\ncorruption\tO\tcorruption\tO\nbecause\tO\tbecause\tO\nPhotoshop\tB-Application\tPhotoshop\tO\nwont\tO\twont\tO\nopen\tO\topen\tO\nthem\tO\tthem\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nweigh\tO\tweigh\tO\n0.7k\tO\t0.7k\tO\n)\tO\t)\tO\nThe\tO\tThe\tO\nunix\tB-Operating_System\tunix\tO\n\"\tO\t\"\tO\nfile\tB-Code_Block\tfile\tO\n\"\tO\t\"\tO\ncommand\tO\tcommand\tO\nhowever\tO\thowever\tO\nrecognizes\tO\trecognizes\tO\nthem\tO\tthem\tO\ncorrectly\tO\tcorrectly\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\nPNG\tB-File_Type\tPNG\tO\nimage\tO\timage\tO\n,\tO\t,\tO\n1440\tO\t1440\tO\nx\tO\tx\tO\n900\tO\t900\tO\n,\tO\t,\tO\n8-bit/color\tO\t8-bit/color\tO\nRGB\tO\tRGB\tO\n,\tO\t,\tO\nnon-interlaced\tO\tnon-interlaced\tO\n\"\tO\t\"\tO\n-\tO\t-\tO\n1440\tO\t1440\tO\nx\tO\tx\tO\n900\tO\t900\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nresolution\tO\tresolution\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nMac\tB-Device\tMac\tO\n,\tO\t,\tO\nconnected\tO\tconnected\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nwindows\tB-Operating_System\twindows\tO\nsystems\tO\tsystems\tO\nthrough\tO\tthrough\tO\nremote\tB-Application\tremote\tO\ndesktop\tI-Application\tdesktop\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nselenium\tB-Application\tselenium\tO\nrc\tI-Application\trc\tO\ndirectly\tO\tdirectly\tO\n(\tO\t(\tO\nie\tO\tie\tO\njava\tB-Code_Block\tjava\tO\n-jar\tI-Code_Block\t-jar\tO\nselenium-server.jar\tI-Code_Block\tselenium-server.jar\tO\n)\tO\t)\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nas\tO\tas\tO\na\tO\ta\tO\nservice\tO\tservice\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsymptoms\tO\tsymptoms\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\naccross\tO\taccross\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nwindows\tB-Operating_System\twindows\tO\ntest\tO\ttest\tO\nsystems\tO\tsystems\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nSelenium\tB-Library\tSelenium\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\n1.0.1\tB-Version\t1.0.1\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nsnippet\tO\tsnippet\tO\nthat\tO\tthat\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nscreenshot\tO\tscreenshot\tO\n:\tO\t:\tO\n\t\n$this->selenium->windowMaximize()\tB-Code_Block\t$this->selenium->windowMaximize()\tO\n;\tI-Code_Block\t;\tO\n\t\n$screenshot\tB-Code_Block\t$screenshot\tO\n=\tI-Code_Block\t=\tO\n$this->selenium->captureScreenshotToString()\tI-Code_Block\t$this->selenium->captureScreenshotToString()\tO\n;\tI-Code_Block\t;\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nTesting_Selenium\tB-Library\tTesting_Selenium\tO\npear\tI-Library\tpear\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrealize\tO\trealize\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\nhere\tO\there\tO\ndealing\tO\tdealing\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nservice\tO\tservice\tO\nwrapper\tO\twrapper\tO\nnor\tO\tnor\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nafford\tO\tafford\tO\nto\tO\tto\tO\nintroduce\tO\tintroduce\tO\nthis\tO\tthis\tO\ncomplexity\tO\tcomplexity\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\na\tO\ta\tO\nmistake\tO\tmistake\tO\n)\tO\t)\tO\n\t\nthanks\tO\tthanks\tO\n&\tO\t&\tO\nregards\tO\tregards\tO\n,\tO\t,\tO\n\t\nAndras\tB-User_Name\tAndras\tO\n\t\nps\tO\tps\tO\n:\tO\t:\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\ncross\tO\tcross\tO\nposting\tO\tposting\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nseveral\tO\tseveral\tO\nforums\tO\tforums\tO\nin\tO\tin\tO\na\tO\ta\tO\ndesperate\tO\tdesperate\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\nget\tO\tget\tO\nsome\tO\tsome\tO\nimput\tO\timput\tO\n-\tO\t-\tO\napologies\tO\tapologies\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nupsets\tO\tupsets\tO\nyou\tO\tyou\tO\n:-)\tO\t:-)\tO\n\t\nedit\tO\tedit\tO\n:\tO\t:\tO\nselenium\tB-Application\tselenium\tO\nrc\tI-Application\trc\tO\nconsole\tI-Application\tconsole\tO\nsays\tO\tsays\tO\n\t\n16:38:24.562\tB-Output_Block\t16:38:24.562\tO\nINFO\tI-Output_Block\tINFO\tO\n-\tI-Output_Block\t-\tO\nGot\tI-Output_Block\tGot\tO\nresult\tI-Output_Block\tresult\tO\n:\tI-Output_Block\t:\tO\n[\tI-Output_Block\t[\tO\nbase64\tI-Output_Block\tbase64\tO\nencoded\tI-Output_Block\tencoded\tO\nPNG\tI-Output_Block\tPNG\tO\n]\tI-Output_Block\t]\tO\non\tB-Output_Block\ton\tO\nsession\tI-Output_Block\tsession\tO\na5304a287eb244028c8c843b294bf98f\tI-Output_Block\ta5304a287eb244028c8c843b294bf98f\tO\n\t\njava.net.SocketException\tB-Output_Block\tjava.net.SocketException\tO\n:\tI-Output_Block\t:\tO\nSoftware\tI-Output_Block\tSoftware\tO\ncaused\tI-Output_Block\tcaused\tO\nconnection\tI-Output_Block\tconnection\tO\nabort\tI-Output_Block\tabort\tO\n:\tI-Output_Block\t:\tO\nsocket\tI-Output_Block\tsocket\tO\nwrite\tI-Output_Block\twrite\tO\nerror\tI-Output_Block\terror\tO\n\t\nat\tB-Output_Block\tat\tO\njava.net.SocketOutputStream.socketWrite0(NativeMethod)\tI-Output_Block\tjava.net.SocketOutputStream.socketWrite0(NativeMethod)\tO\n\t\nat\tB-Output_Block\tat\tO\njava.net.SocketOutputStream.socketWrite(UnknownSource)\tI-Output_Block\tjava.net.SocketOutputStream.socketWrite(UnknownSource)\tO\n\t\nat\tB-Output_Block\tat\tO\njava.net.SocketOutputStream.write(UnknownSource)\tI-Output_Block\tjava.net.SocketOutputStream.write(UnknownSource)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.http.ChunkingOutputStream.bypassWrite(ChunkingOutputStream.java:151)\tI-Output_Block\torg.mortbay.http.ChunkingOutputStream.bypassWrite(ChunkingOutputStream.java:151)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.http.BufferedOutputStream.write(BufferedOutputStream.java:142)\tI-Output_Block\torg.mortbay.http.BufferedOutputStream.write(BufferedOutputStream.java:142)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:423)\tI-Output_Block\torg.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:423)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:414)\tI-Output_Block\torg.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:414)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.openqa.selenium.server.SeleniumDriverResourceHandler.handleCommandRequest(SeleniumDriverResourceHandler.java:370)\tI-Output_Block\torg.openqa.selenium.server.SeleniumDriverResourceHandler.handleCommandRequest(SeleniumDriverResourceHandler.java:370)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.openqa.selenium.server.SeleniumDriverResourceHandler.handle(SeleniumDriverResourceHandler.java:125)\tI-Output_Block\torg.openqa.selenium.server.SeleniumDriverResourceHandler.handle(SeleniumDriverResourceHandler.java:125)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.http.HttpContext.handle(HttpContext.java:1530)\tI-Output_Block\torg.mortbay.http.HttpContext.handle(HttpContext.java:1530)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.http.HttpContext.handle(HttpContext.java:1482)\tI-Output_Block\torg.mortbay.http.HttpContext.handle(HttpContext.java:1482)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.http.HttpServer.service(HttpServer.java:909)\tI-Output_Block\torg.mortbay.http.HttpServer.service(HttpServer.java:909)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.http.HttpConnection.service(HttpConnection.java:820)\tI-Output_Block\torg.mortbay.http.HttpConnection.service(HttpConnection.java:820)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.http.HttpConnection.handleNext(HttpConnection.java:986)\tI-Output_Block\torg.mortbay.http.HttpConnection.handleNext(HttpConnection.java:986)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.http.HttpConnection.handle(HttpConnection.java:837)\tI-Output_Block\torg.mortbay.http.HttpConnection.handle(HttpConnection.java:837)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.http.SocketListener.handleConnection(SocketListener.java:245)\tI-Output_Block\torg.mortbay.http.SocketListener.handleConnection(SocketListener.java:245)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)\tI-Output_Block\torg.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)\tO\n\t\nat\tB-Output_Block\tat\tO\norg.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)\tI-Output_Block\torg.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)\tO\n\t\nfor\tO\tfor\tO\nall\tO\tall\tO\nscreen\tO\tscreen\tO\ncaptures\tO\tcaptures\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1742075\tO\t1742075\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1742075/\tO\thttps://stackoverflow.com/questions/1742075/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nphysical\tO\tphysical\tO\ndesktop\tB-Device\tdesktop\tO\n(\tO\t(\tO\nor\tO\tor\tO\nremote\tB-Application\tremote\tO\ndesktop\tI-Application\tdesktop\tO\nsession\tO\tsession\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nJava\tB-Language\tJava\tO\nprocess\tO\tprocess\tO\nthat\tO\tthat\tO\nruns\tO\truns\tO\nSelenium\tB-Application\tSelenium\tO\nRC\tI-Application\tRC\tO\nwill\tO\twill\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\na\tO\ta\tO\nblack\tO\tblack\tO\nscreenshot\tO\tscreenshot\tO\n.\tO\t.\tO\n\t\nWithout\tO\tWithout\tO\nknowing\tO\tknowing\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\ncreator\tO\tcreator\tO\nof\tO\tof\tO\nSelenium\tB-Application\tSelenium\tO\nRC\tI-Application\tRC\tO\n,\tO\t,\tO\nI\tO\tI\tO\nactually\tO\tactually\tO\nrecommend\tO\trecommend\tO\nagainst\tO\tagainst\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nWindows\tB-Operating_System\tWindows\tO\nService\tO\tService\tO\nentirely\tO\tentirely\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nwhat\tO\twhat\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nat\tO\tat\tO\nBrowserMob\tB-Application\tBrowserMob\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nprovides\tO\tprovides\tO\nfree\tO\tfree\tO\nmonitoring\tO\tmonitoring\tO\nand\tO\tand\tO\nfree\tO\tfree\tO\nload\tO\tload\tO\ntesting\tO\ttesting\tO\nservices\tO\tservices\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\na\tO\ta\tO\nrecently\tO\trecently\tO\nlaunch\tO\tlaunch\tO\ninstant\tO\tinstant\tO\ntest\tO\ttest\tO\ntool\tO\ttool\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\nscreenshots\tO\tscreenshots\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nsite\tO\tsite\tO\nfrom\tO\tfrom\tO\nmultiple\tO\tmultiple\tO\nlocations\tO\tlocations\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nlaunch\tO\tlaunch\tO\neverything\tO\teverything\tO\nfrom\tO\tfrom\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\nof\tO\tof\tO\na\tO\ta\tO\nVNC\tB-Application\tVNC\tO\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nWindows\tB-Operating_System\tWindows\tO\n,\tO\t,\tO\nconfigure\tO\tconfigure\tO\nVNC\tB-Application\tVNC\tO\nto\tO\tto\tO\nlaunch\tO\tlaunch\tO\na\tO\ta\tO\nsession\tO\tsession\tO\nupon\tO\tupon\tO\nstartup\tO\tstartup\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nauto-logs\tO\tauto-logs\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nplace\tO\tplace\tO\na\tO\ta\tO\n.bat\tB-File_Type\t.bat\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nProgram\tB-File_Name\tProgram\tO\nFiles->Startup\tI-File_Name\tFiles->Startup\tO\nthat\tO\tthat\tO\nlaunches\tO\tlaunches\tO\nSelenium\tB-Application\tSelenium\tO\nRC\tI-Application\tRC\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\na\tO\ta\tO\npain\tO\tpain\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nreliable\tO\treliable\tO\nway\tO\tway\tO\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\nfor\tO\tfor\tO\nensuring\tO\tensuring\tO\nthat\tO\tthat\tO\nSelenium\tB-Application\tSelenium\tO\nRC\tI-Application\tRC\tO\nstarts\tO\tstarts\tO\nin\tO\tin\tO\nan\tO\tan\tO\nenvironment\tO\tenvironment\tO\nthat\tO\tthat\tO\nsupports\tO\tsupports\tO\nscreenshots\tO\tscreenshots\tO\n,\tO\t,\tO\nlaunching\tO\tlaunching\tO\nIE\tB-Application\tIE\tO\n,\tO\t,\tO\ninteracting\tO\tinteracting\tO\nwith\tO\twith\tO\nnative\tO\tnative\tO\nevents\tO\tevents\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1742075\tO\t1742075\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1742075/\tO\thttps://stackoverflow.com/questions/1742075/\tO\n\t\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\nseen\tO\tseen\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nquestion\tO\tquestion\tO\n?\tO\t?\tO\n\t\nMaybe\tO\tMaybe\tO\nthat\tO\tthat\tO\ncould\tO\tcould\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nsimilar\tO\tsimilar\tO\nadventures\tO\tadventures\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25656547\tO\t25656547\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25656547/\tO\thttps://stackoverflow.com/questions/25656547/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n4\tO\t4\tO\noutlined\tO\toutlined\tO\nstar\tO\tstar\tO\nimages\tB-User_Interface_Element\timages\tO\n.\tO\t.\tO\n\t\nWhenever\tO\tWhenever\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nstar\tO\tstar\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nits\tO\tits\tO\nimage\tB-User_Interface_Element\timage\tO\nto\tO\tto\tO\na\tO\ta\tO\nfilled\tO\tfilled\tO\nstar\tO\tstar\tO\nand\tO\tand\tO\nwhenever\tO\twhenever\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nagain\tO\tagain\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nstar\tO\tstar\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nto\tO\tto\tO\na\tO\ta\tO\nfilled\tO\tfilled\tO\nstar\tO\tstar\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nstarts\tO\tstarts\tO\nturn\tO\tturn\tO\ninto\tO\tinto\tO\nfilled\tO\tfilled\tO\nstars\tO\tstars\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nall\tO\tall\tO\nfilled\tO\tfilled\tO\nstars\tO\tstars\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\ninto\tO\tinto\tO\nblank\tO\tblank\tO\nstars\tO\tstars\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nclick\tO\tclick\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2922\tI-Code_Block\tQ_2922\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nim1\tB-Variable_Name\tim1\tO\nthrough\tO\tthrough\tO\nim4\tB-Variable_Name\tim4\tO\nto\tO\tto\tO\noutlined\tO\toutlined\tO\nstars\tO\tstars\tO\nand\tO\tand\tO\nR.drawable.star\tB-Library_Class\tR.drawable.star\tO\nis\tO\tis\tO\na\tO\ta\tO\nfilled\tO\tfilled\tO\nstar\tO\tstar\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25656547\tO\t25656547\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25656547/\tO\thttps://stackoverflow.com/questions/25656547/\tO\n\t\n\t\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3535\tI-Code_Block\tA_3535\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41798737\tO\t41798737\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41798737/\tO\thttps://stackoverflow.com/questions/41798737/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nrunning\tO\trunning\tO\nreact-native\tB-Code_Block\treact-native\tB-Code_Block\nlink\tI-Code_Block\tlink\tI-Code_Block\nit\tO\tit\tO\ngives\tO\tgives\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n,\tO\t,\tO\n\t\nIt\tO\tIt\tO\nsays\tO\tsays\tO\n,\tO\t,\tO\nrnpm-install\tB-Error_Name\trnpm-install\tB-Code_Block\nERR\tI-Error_Name\tERR\tI-Code_Block\n!\tO\t!\tI-Code_Block\n\t\nIt\tO\tIt\tB-Code_Block\nseems\tO\tseems\tI-Code_Block\nsomething\tO\tsomething\tI-Code_Block\nwent\tO\twent\tI-Code_Block\nwrong\tO\twrong\tI-Code_Block\nwhile\tO\twhile\tI-Code_Block\nlinking.\tO\tlinking.\tI-Code_Block\n.\tO\t.\tI-Code_Block\nError\tO\tError\tI-Code_Block\n:\tO\t:\tI-Code_Block\nCannot\tO\tCannot\tI-Code_Block\nread\tO\tread\tI-Code_Block\nproperty\tO\tproperty\tI-Code_Block\n'\tO\t'\tI-Code_Block\nUIAppFonts\tO\tUIAppFonts\tI-Code_Block\n'\tO\t'\tB-Code_Block\nof\tO\tof\tI-Code_Block\nnull\tB-Value\tnull\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41798737\tO\t41798737\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41798737/\tO\thttps://stackoverflow.com/questions/41798737/\tO\n\t\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nthis\tO\tthis\tO\nexact\tO\texact\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\naccidentally\tO\taccidentally\tO\ndeleted\tO\tdeleted\tO\nby\tO\tby\tO\nInfo.plist\tB-File_Name\tInfo.plist\tB-Code_Block\nfile\tO\tfile\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nios\tB-Operating_System\tios\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nRestoring\tO\tRestoring\tO\nit\tO\tit\tO\n,\tO\t,\tO\nfixed\tO\tfixed\tO\nmy\tO\tmy\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45251451\tO\t45251451\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45251451/\tO\thttps://stackoverflow.com/questions/45251451/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\njust\tO\tjust\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsoftware\tO\tsoftware\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nproject\tO\tproject\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntype\tO\ttype\tO\nout\tO\tout\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5912\tI-Code_Block\tQ_5912\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nall\tO\tall\tO\nsaved\tO\tsaved\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36901594\tO\t36901594\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36901594/\tO\thttps://stackoverflow.com/questions/36901594/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4546\tI-Code_Block\tQ_4546\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nnumber\tO\tnumber\tO\nmarking\tO\tmarking\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nasterix\tO\tasterix\tO\nmarking\tO\tmarking\tO\nthe\tO\tthe\tO\nfrequency\tO\tfrequency\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\nthat\tO\tthat\tO\nnumber\tO\tnumber\tO\nhas\tO\thas\tO\nappeared\tO\tappeared\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4547\tI-Code_Block\tQ_4547\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nprints\tO\tprints\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4548\tI-Code_Block\tQ_4548\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nas\tO\tas\tO\nfirst\tO\tfirst\tO\nshown\tO\tshown\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36901594\tO\t36901594\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36901594/\tO\thttps://stackoverflow.com/questions/36901594/\tO\n\t\n\t\nSurely\tO\tSurely\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nprint\tO\tprint\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nline\tO\tline\tO\n?\tO\t?\tO\n\t\nCan\tO\tCan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nusing\tO\tusing\tO\n/n\tB-Value\t/n\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5082507\tO\t5082507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5082507/\tO\thttps://stackoverflow.com/questions/5082507/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\none\tO\tone\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nwritten\tO\twritten\tO\nin\tO\tin\tO\nC#\tB-Language\tC#\tO\n-\tO\t-\tO\nWindows\tB-Library\tWindows\tO\nForms\tI-Library\tForms\tO\nto\tO\tto\tO\nC++\tB-Language\tC++\tO\n-\tO\t-\tO\nwxWidgets\tB-Library\twxWidgets\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nborderless\tO\tborderless\tO\nand\tO\tand\tO\nhas\tO\thas\tO\na\tO\ta\tO\nthin\tO\tthin\tO\n,\tO\t,\tO\ntransparent\tO\ttransparent\tO\npanel\tB-User_Interface_Element\tpanel\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tB-User_Interface_Element\tform\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nform\tB-User_Interface_Element\tform\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\ntechnique\tO\ttechnique\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nMake\tO\tMake\tO\na\tO\ta\tO\nborderless\tO\tborderless\tO\nform\tB-User_Interface_Element\tform\tO\nmovable\tO\tmovable\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbasically\tO\tbasically\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nin\tO\tin\tO\nwxWidgets\tB-Library\twxWidgets\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nsearched\tO\tsearched\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\na\tO\ta\tO\nmouse\tB-Device\tmouse\tO\ndown\tO\tdown\tO\nevent\tB-Library_Class\tevent\tO\nover\tO\tover\tO\na\tO\ta\tO\nwxPanel\tB-Library_Class\twxPanel\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nexamples\tO\texamples\tO\nbut\tO\tbut\tO\nboth\tO\tboth\tO\nused\tO\tused\tO\nwxPython\tB-Library_Class\twxPython\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\narticle/question\tO\tarticle/question\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nknowledge\tO\tknowledge\tO\nabout\tO\tabout\tO\nPython\tB-Language\tPython\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nin\tO\tin\tO\nC++\tB-Language\tC++\tO\n-\tO\t-\tO\nwxWidgets\tB-Library\twxWidgets\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5082507\tO\t5082507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5082507/\tO\thttps://stackoverflow.com/questions/5082507/\tO\n\t\n\t\n\"\tO\t\"\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfire\tO\tfire\tO\na\tO\ta\tO\nmouse\tB-Device\tmouse\tO\ndown\tO\tdown\tO\nevent\tO\tevent\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\n'\tO\t'\tO\nfiring\tO\tfiring\tO\n'\tO\t'\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\n-\tO\t-\tO\nthe\tO\tthe\tO\nOS\tO\tOS\tO\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nEVT_LEFT_DOWN\tB-Library_Class\tEVT_LEFT_DOWN\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nwxWidgets\tB-Library_Class\twxWidgets\tO\nevents\tI-Library_Class\tevents\tO\n?\tO\t?\tO\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nprograms\tO\tprograms\tO\n?\tO\t?\tO\n\t\nhttp://docs.wxwidgets.org/2.6/wx_samples.html\tO\thttp://docs.wxwidgets.org/2.6/wx_samples.html\tO\nThey\tO\tThey\tO\nare\tO\tare\tO\nall\tO\tall\tO\nin\tO\tin\tO\nC++\tB-Language\tC++\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ndescription\tO\tdescription\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nevents\tB-Library_Class\tevents\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://docs.wxwidgets.org/2.6/wx_eventhandlingoverview.html#eventhandlingoverview\tO\thttp://docs.wxwidgets.org/2.6/wx_eventhandlingoverview.html#eventhandlingoverview\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nabout\tO\tabout\tO\nsomething\tO\tsomething\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nof\tO\tof\tO\nhandling\tO\thandling\tO\nthe\tO\tthe\tO\nEVT_LEFT_DOWN\tB-Library_Class\tEVT_LEFT_DOWN\tO\nevent\tO\tevent\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nplease\tO\tplease\tO\npost\tO\tpost\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\ndescribe\tO\tdescribe\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43816324\tO\t43816324\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43816324/\tO\thttps://stackoverflow.com/questions/43816324/\tO\n\t\n\t\nI\tO\tI\tO\ncreating\tO\tcreating\tO\n5\tO\t5\tO\nthreads\tO\tthreads\tO\nand\tO\tand\tO\nall\tO\tall\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\ncritical\tO\tcritical\tO\nsection\tO\tsection\tO\nand\tO\tand\tO\nread\tO\tread\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nall\tO\tall\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nlock\tO\tlock\tO\nusing\tO\tusing\tO\nsemaphores\tO\tsemaphores\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nthread\tO\tthread\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\ncritical\tO\tcritical\tO\nsection\tO\tsection\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5647\tI-Code_Block\tQ_5647\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11224784\tO\t11224784\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11224784/\tO\thttps://stackoverflow.com/questions/11224784/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\njust\tO\tjust\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nMySQL\tB-Application\tMySQL\tO\nuser\tO\tuser\tO\nwith\tO\twith\tO\na\tO\ta\tO\npassword\tO\tpassword\tO\nand\tO\tand\tO\ngranted\tO\tgranted\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nprivileges\tO\tprivileges\tO\non\tO\ton\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npassword\tO\tpassword\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nset\tO\tset\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan't\tO\tcan't\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1039\tI-Code_Block\tQ_1039\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nMacOS\tB-Operating_System\tMacOS\tO\nLion\tB-Version\tLion\tO\nin\tO\tin\tO\na\tO\ta\tO\nbash\tB-Application\tbash\tO\nshell\tI-Application\tshell\tO\n,\tO\t,\tO\nversion\tO\tversion\tO\n10.6\tB-Version\t10.6\tO\nof\tO\tof\tO\nMySQL\tB-Application\tMySQL\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11224784\tO\t11224784\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11224784/\tO\thttps://stackoverflow.com/questions/11224784/\tO\n\t\n\t\nThe\tO\tThe\tO\nCREATE\tB-Code_Block\tCREATE\tO\nUSER\tI-Code_Block\tUSER\tO\nstatement\tO\tstatement\tO\nneeds\tO\tneeds\tO\na\tO\ta\tO\nhost-part\tO\thost-part\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ndefine\tO\tdefine\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n'\tB-Value\t'\tO\n%\tI-Value\t%\tO\n'\tB-Value\t'\tO\nand\tO\tand\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nGRANT\tB-Code_Block\tGRANT\tO\nstatement\tO\tstatement\tO\nincludes\tO\tincludes\tO\n@'localhost'\tB-Value\t@'localhost'\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nend\tO\tend\tO\nup\tO\tup\tO\nwith\tO\twith\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nwith\tO\twith\tO\na\tO\ta\tO\npassword\tO\tpassword\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nwithout\tO\twithout\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1436\tI-Code_Block\tA_1436\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nResults\tO\tResults\tO\nin\tO\tin\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1437\tI-Code_Block\tA_1437\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUse\tO\tUse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nto\tO\tto\tO\nget\tO\tget\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1438\tI-Code_Block\tA_1438\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbest\tO\tbest\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nconnect\tO\tconnect\tO\n,\tO\t,\tO\notherwise\tO\totherwise\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\ndatabase\tO\tdatabase\tO\nafter\tO\tafter\tO\nconnecting\tO\tconnecting\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1439\tI-Code_Block\tA_1439\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46329660\tO\t46329660\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46329660/\tO\thttps://stackoverflow.com/questions/46329660/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nTravis\tB-Application\tTravis\tO\nbuild\tO\tbuild\tO\nthat\tO\tthat\tO\nkeeps\tO\tkeeps\tO\nfailing\tO\tfailing\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n.env\tB-File_Type\t.env\tB-Code_Block\nfile\tO\tfile\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nenv-file\tB-File_Type\tenv-file\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nputting\tO\tputting\tO\nafter_failure\tB-Code_Block\tafter_failure\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\ncat\tI-Code_Block\tcat\tI-Code_Block\n/Users/travis/.opam/system/build/topkg.0.9.0/topkg\tI-Code_Block\t/Users/travis/.opam/system/build/topkg.0.9.0/topkg\tI-Code_Block\n-19768-81a3ce.env\tI-Code_Block\t-19768-81a3ce.env\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nyml\tB-File_Type\tyml\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nduring\tO\tduring\tO\na\tO\ta\tO\nbefore_install\tB-Code_Block\tbefore_install\tB-Code_Block\nstep\tO\tstep\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6080\tI-Code_Block\tQ_6080\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46329660\tO\t46329660\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46329660/\tO\thttps://stackoverflow.com/questions/46329660/\tO\n\t\n\t\nI\tO\tI\tO\nreached\tO\treached\tO\nout\tO\tout\tO\nto\tO\tto\tO\nTravis\tB-Application\tTravis\tO\nsupport\tO\tsupport\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\ntold\tO\ttold\tO\nme\tO\tme\tO\nthat\tO\tthat\tO\nany\tO\tany\tO\nerrors\tO\terrors\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nbefore_install\tB-Code_Block\tbefore_install\tB-Code_Block\nstep\tO\tstep\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\na\tO\ta\tO\nlog\tB-File_Type\tlog\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nTravis\tB-Application\tTravis\tO\nbuild\tO\tbuild\tO\nlog\tB-File_Type\tlog\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13592166\tO\t13592166\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13592166/\tO\thttps://stackoverflow.com/questions/13592166/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1297\tI-Code_Block\tQ_1297\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nabsolute\tO\tabsolute\tO\nfastest\tO\tfastest\tO\nway\tO\tway\tO\nof\tO\tof\tO\npulling\tO\tpulling\tO\nall\tO\tall\tO\nvalues\tO\tvalues\tO\nabove\tO\tabove\tO\nsay\tO\tsay\tO\n\"\tO\t\"\tO\n7\tB-Value\t7\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nplacing\tO\tplacing\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfor\tB-Code_Block\tfor\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\ntoo\tO\ttoo\tO\nlong\tO\tlong\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nhundreds\tO\thundreds\tO\nof\tO\tof\tO\nmillions\tO\tmillions\tO\nof\tO\tof\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nideally\tO\tideally\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1298\tI-Code_Block\tQ_1298\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\n!\tO\t!\tO\n\t\nProcessing\tO\tProcessing\tO\ntimes\tO\ttimes\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13592166\tO\t13592166\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13592166/\tO\thttps://stackoverflow.com/questions/13592166/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nworry\tO\tworry\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\nabout\tO\tabout\tO\nmaintaining\tO\tmaintaining\tO\na\tO\ta\tO\nsorted\tO\tsorted\tO\norder\tO\torder\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nnumpy\tB-Library\tnumpy\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1735\tI-Code_Block\tA_1735\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nitems\tO\titems\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nsorted\tO\tsorted\tO\nalready\tO\talready\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbisect\tB-Library\tbisect\tB-Code_Block\nmodule\tO\tmodule\tO\n(\tO\t(\tO\nor\tO\tor\tO\nnumpy\tB-Library\tnumpy\tB-Code_Block\nhas\tO\thas\tO\nits\tO\tits\tO\nown\tO\town\tO\nmethods\tO\tmethods\tO\nfor\tO\tfor\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nsorted\tO\tsorted\tO\ndata\tO\tdata\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1736\tI-Code_Block\tA_1736\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nsorted\tO\tsorted\tO\norder\tO\torder\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1737\tI-Code_Block\tA_1737\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13592166\tO\t13592166\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13592166/\tO\thttps://stackoverflow.com/questions/13592166/\tO\n\t\n\t\nAboveNumber\tB-Library_Class\tAboveNumber\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nno\tO\tno\tO\nmagic\tO\tmagic\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nis\tO\tis\tO\nunordered\tO\tunordered\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nrun\tO\trun\tO\nthrough\tO\tthrough\tO\nall\tO\tall\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\noptimize\tO\toptimize\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nmaintaining\tO\tmaintaining\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nin\tO\tin\tO\norder\tO\torder\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nby\tO\tby\tO\nmaking\tO\tmaking\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nordered\tO\tordered\tO\nafter\tO\tafter\tO\nan\tO\tan\tO\ninsert\tO\tinsert\tO\nor\tO\tor\tO\nerase\tO\terase\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nis\tO\tis\tO\nordered\tO\tordered\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nfind\tO\tfind\tO\nyour\tO\tyour\tO\n\"\tO\t\"\tO\nmean\tO\tmean\tO\n\"\tO\t\"\tO\nby\tO\tby\tO\na\tO\ta\tO\nbinary\tO\tbinary\tO\nsearch\tO\tsearch\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nfaster\tO\tfaster\tO\nthan\tO\tthan\tO\nrunning\tO\trunning\tO\nthrough\tO\tthrough\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncut\tO\tcut\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nat\tO\tat\tO\nthat\tO\tthat\tO\nposition\tO\tposition\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17918344\tO\t17918344\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17918344/\tO\thttps://stackoverflow.com/questions/17918344/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nSSO\tO\tSSO\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\n(\tO\t(\tO\nin\tO\tin\tO\nJava\tB-Language\tJava\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRecently\tO\tRecently\tO\nI\tO\tI\tO\ndiscovered\tO\tdiscovered\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\ndoing\tO\tdoing\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nWaffle\tB-Library\tWaffle\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1841\tI-Code_Block\tQ_1841\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nexample\tO\texample\tO\nis\tO\tis\tO\neasy\tO\teasy\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nand\tO\tand\tO\nit\tO\tit\tO\nseams\tO\tseams\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\n?\tO\t?\tO\n\t\nDoes\tO\tDoes\tO\nWaffle\tB-Library\tWaffle\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nKerberos\tO\tKerberos\tO\nticket\tO\tticket\tO\nfrom\tO\tfrom\tO\nWindows\tB-Operating_System\tWindows\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nvalidate\tO\tvalidate\tO\nthe\tO\tthe\tO\nticket\tO\tticket\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\n?\tO\t?\tO\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\nabsolutely\tO\tabsolutely\tO\ntrust\tO\ttrust\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ngroups\tO\tgroups\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nget\tO\tget\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\ndo-loop\tB-Code_Block\tdo-loop\tO\n\t\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\ncontext\tO\tcontext\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nThomas\tB-User_Name\tThomas\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17918344\tO\t17918344\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17918344/\tO\thttps://stackoverflow.com/questions/17918344/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWaffle\tB-Library\tWaffle\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nWindows\tB-Application\tWindows\tO\nSSPI\tI-Application\tSSPI\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nperforms\tO\tperforms\tO\nall\tO\tall\tO\noperations\tO\toperations\tO\ninvolving\tO\tinvolving\tO\nKerberos\tO\tKerberos\tO\ntickets\tO\ttickets\tO\non\tO\ton\tO\nclient\tB-Application\tclient\tO\n's\tO\t's\tO\nbehalf\tO\tbehalf\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclient\tB-Application\tclient\tO\nnever\tO\tnever\tO\nsees\tO\tsees\tO\nthe\tO\tthe\tO\nticket\tO\tticket\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nbasic\tO\tbasic\tO\nKerberos\tO\tKerberos\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntoken\tO\ttoken\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nis\tO\tis\tO\nencrypted\tO\tencrypted\tO\nby\tO\tby\tO\nserver\tB-Library_Variable\tserver\tO\n's\tO\t's\tO\nsecret\tI-Library_Variable\tsecret\tO\nkey\tI-Library_Variable\tkey\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nguarantees\tO\tguarantees\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntoken\tO\ttoken\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nTicket\tB-Application\tTicket\tO\nGranting\tI-Application\tGranting\tO\nService\tI-Application\tService\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nauthenticated\tO\tauthenticated\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nare\tO\tare\tO\nretrieved\tO\tretrieved\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsecurity\tB-Library_Variable\tsecurity\tO\ntoken\tI-Library_Variable\ttoken\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nWindows-specific\tB-Operating_System\tWindows-specific\tO\nextension\tO\textension\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nMIT\tB-Licence\tMIT\tO\nKerberos\tI-Licence\tKerberos\tO\nprotocol\tI-Licence\tprotocol\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45905348\tO\t45905348\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45905348/\tO\thttps://stackoverflow.com/questions/45905348/\tO\n\t\n\t\nI\tO\tI\tO\nwanted\tO\twanted\tO\nsome\tO\tsome\tO\ntext\tO\ttext\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nemails\tO\temails\tO\nor\tO\tor\tO\nletters\tO\tletters\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nwhile\tO\twhile\tO\nexperimenting\tO\texperimenting\tO\nthe\tO\tthe\tO\nAPI\tB-Library\tAPI\tO\nin\tO\tin\tO\nelasticsearch\tB-Application\telasticsearch\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\nsources\tO\tsources\tO\nwhere\tO\twhere\tO\none\tO\tone\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n&\tO\t&\tO\nRegards\tO\tRegards\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45905348\tO\t45905348\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45905348/\tO\thttps://stackoverflow.com/questions/45905348/\tO\n\t\n\t\nCheck\tO\tCheck\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nenron\tO\tenron\tO\ndataset\tO\tdataset\tO\nas\tO\tas\tO\na\tO\ta\tO\nnice\tO\tnice\tO\nstart\tO\tstart\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45905348\tO\t45905348\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45905348/\tO\thttps://stackoverflow.com/questions/45905348/\tO\n\t\n\t\nType\tO\tType\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nURL\tO\tURL\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\n:\tO\t:\tO\n\t\nlocalhost:9200/_search\tB-Value\tlocalhost:9200/_search\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\ndata\tO\tdata\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nelasticsearch\tB-Application\telasticsearch\tO\nis\tO\tis\tO\nin\tO\tin\tO\nserver\tB-Application\tserver\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nin\tO\tin\tO\nremote\tO\tremote\tO\ncomputer\tB-Device\tcomputer\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nlocalhist\tB-Value\tlocalhist\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nIP\tO\tIP\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41895004\tO\t41895004\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41895004/\tO\thttps://stackoverflow.com/questions/41895004/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nextract\tO\textract\tO\nall\tO\tall\tO\nurls\tO\turls\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\ncontain\tO\tcontain\tO\nparameters\tO\tparameters\tO\n:\tO\t:\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5328\tI-Code_Block\tQ_5328\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nsince\tO\tsince\tO\n?\tB-Value\t?\tO\nis\tO\tis\tO\nan\tO\tan\tO\nspecial\tO\tspecial\tO\nchar\tB-Data_Type\tchar\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41895004\tO\t41895004\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41895004/\tO\thttps://stackoverflow.com/questions/41895004/\tO\n\t\n\t\nThe\tO\tThe\tO\nHTML\tB-Language\tHTML\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\n?\tB-Value\t?\tB-Code_Block\nis\tO\tis\tO\n?\tB-Value\t?\tB-Code_Block\n\t\nYour\tO\tYour\tO\nquery\tO\tquery\tO\nwould\tO\twould\tO\nthen\tO\tthen\tO\nbe\tO\tbe\tO\nsite:example.com\tB-Code_Block\tsite:example.com\tB-Code_Block\nAND\tI-Code_Block\tAND\tI-Code_Block\ninurl\tI-Code_Block\tinurl\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n?\tI-Code_Block\t?\tI-Code_Block\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nto\tO\tto\tO\nconstrain\tO\tconstrain\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nfor\tO\tfor\tO\nCar\tB-Code_Block\tCar\tB-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nhttps://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\tO\thttps://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\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25230984\tO\t25230984\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25230984/\tO\thttps://stackoverflow.com/questions/25230984/\tO\n\t\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n\"\tO\t\"\tO\nUncaught\tB-Error_Name\tUncaught\tO\nTypeError\tI-Error_Name\tTypeError\tO\n:\tO\t:\tO\nundefined\tO\tundefined\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntaking\tO\ttaking\tO\nan\tO\tan\tO\nonline\tO\tonline\tO\ncourse\tO\tcourse\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nfinal\tO\tfinal\tO\nproject\tO\tproject\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nstuck\tO\tstuck\tO\nwithout\tO\twithout\tO\nget\tO\tget\tO\nany\tO\tany\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nexplain\tO\texplain\tO\nme\tO\tme\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nhappen\tO\thappen\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\nand\tO\tand\tO\nhere\tO\there\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2869\tI-Code_Block\tQ_2869\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25230984\tO\t25230984\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25230984/\tO\thttps://stackoverflow.com/questions/25230984/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nsaying\tO\tsaying\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3475\tI-Code_Block\tA_3475\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3476\tI-Code_Block\tA_3476\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36019847\tO\t36019847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36019847/\tO\thttps://stackoverflow.com/questions/36019847/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nSpark\tB-Library\tSpark\tO\n1.5.1\tB-Version\t1.5.1\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nforward\tO\tforward\tO\nfill\tO\tfill\tO\nnull\tB-Value\tnull\tO\nvalues\tO\tvalues\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nknown\tO\tknown\tO\nobservation\tO\tobservation\tO\nfor\tO\tfor\tO\none\tO\tone\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nDataFrame\tB-Library_Class\tDataFrame\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\na\tO\ta\tO\nnull\tB-Value\tnull\tO\nvalue\tO\tvalue\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nto\tO\tto\tO\nbackward\tO\tbackward\tO\nfill\tO\tfill\tO\nthis\tO\tthis\tO\nnull\tB-Value\tnull\tO\nvalue\tO\tvalue\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nknwn\tO\tknwn\tO\nobservation\tO\tobservation\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nIf\tO\tIf\tO\nthat\tO\tthat\tO\ntoo\tO\ttoo\tO\ncomplicates\tO\tcomplicates\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nskipped\tO\tskipped\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\npost\tO\tpost\tO\n,\tO\t,\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nin\tO\tin\tO\nScala\tB-Language\tScala\tO\nwas\tO\twas\tO\nprovided\tO\tprovided\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nsimilar\tO\tsimilar\tO\nproblem\tO\tproblem\tO\nby\tO\tby\tO\nzero323\tB-User_Name\tzero323\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nScala\tB-Language\tScala\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsucceed\tO\tsucceed\tO\nto\tO\tto\tO\n''\tO\t''\tO\ntranslate''\tO\ttranslate''\tO\nit\tO\tit\tO\nin\tO\tin\tO\nPyspark\tB-Library\tPyspark\tO\nAPI\tI-Library\tAPI\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nPyspark\tB-Library\tPyspark\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\n,\tO\t,\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexample\tO\texample\tO\nsample\tO\tsample\tO\ninput\tO\tinput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4413\tI-Code_Block\tQ_4413\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nexpected\tO\texpected\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4414\tI-Code_Block\tQ_4414\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36019847\tO\t36019847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36019847/\tO\thttps://stackoverflow.com/questions/36019847/\tO\n\t\n\t\nThe\tO\tThe\tO\npartitioned\tO\tpartitioned\tO\nexample\tO\texample\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nSpark\tB-Library\tSpark\tO\n/\tO\t/\tO\nScala\tB-Language\tScala\tO\n:\tO\t:\tO\nforward\tO\tforward\tO\nfill\tO\tfill\tO\nwith\tO\twith\tO\nlast\tO\tlast\tO\nobservation\tO\tobservation\tO\nin\tO\tin\tO\npyspark\tB-Library\tpyspark\tO\nis\tO\tis\tO\nshown\tO\tshown\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nonly\tO\tonly\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\npartitioned\tO\tpartitioned\tO\n.\tO\t.\tO\n\t\nLoad\tO\tLoad\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5767\tI-Code_Block\tA_5767\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nDataFrame\tB-Library_Class\tDataFrame\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5768\tI-Code_Block\tA_5768\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nColumn\tB-Data_Structure\tColumn\tO\nused\tO\tused\tO\nto\tO\tto\tO\nsort\tO\tsort\tO\nthe\tO\tthe\tO\npartitions\tO\tpartitions\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5769\tI-Code_Block\tA_5769\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nfill\tB-Function_Name\tfill\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\nin\tO\tin\tO\nmultiple\tO\tmultiple\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5770\tI-Code_Block\tA_5770\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nConvert\tO\tConvert\tO\nto\tO\tto\tO\nrdd\tB-Data_Structure\trdd\tO\n,\tO\t,\tO\npartition\tO\tpartition\tO\n,\tO\t,\tO\nsort\tO\tsort\tO\nand\tO\tand\tO\nfill\tO\tfill\tO\nthe\tO\tthe\tO\nmissing\tO\tmissing\tO\nvalues\tO\tvalues\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5771\tI-Code_Block\tA_5771\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nConvert\tO\tConvert\tO\nback\tO\tback\tO\nto\tO\tto\tO\nDataFrame\tB-Library_Class\tDataFrame\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5772\tI-Code_Block\tA_5772\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5773\tI-Code_Block\tA_5773\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36019847\tO\t36019847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36019847/\tO\thttps://stackoverflow.com/questions/36019847/\tO\n\t\n\t\nCloudera\tB-Organization\tCloudera\tO\nhas\tO\thas\tO\nreleased\tO\treleased\tO\na\tO\ta\tO\nlibrary\tO\tlibrary\tO\ncalled\tO\tcalled\tO\nspark-ts\tB-Library\tspark-ts\tO\nthat\tO\tthat\tO\noffers\tO\toffers\tO\na\tO\ta\tO\nsuite\tO\tsuite\tO\nof\tO\tof\tO\nuseful\tO\tuseful\tO\nmethods\tO\tmethods\tO\nfor\tO\tfor\tO\nprocessing\tO\tprocessing\tO\ntime\tO\ttime\tO\nseries\tO\tseries\tO\nand\tO\tand\tO\nsequential\tO\tsequential\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nSpark\tB-Library\tSpark\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nlibrary\tO\tlibrary\tO\nsupports\tO\tsupports\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ntime-windowed\tO\ttime-windowed\tO\nmethods\tO\tmethods\tO\nfor\tO\tfor\tO\nimputing\tO\timputing\tO\ndata\tO\tdata\tO\npoints\tO\tpoints\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nother\tO\tother\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsequence\tO\tsequence\tO\n.\tO\t.\tO\n\t\nhttp://blog.cloudera.com/blog/2015/12/spark-ts-a-new-library-for-analyzing-time-series-data-with-apache-spark/\tO\thttp://blog.cloudera.com/blog/2015/12/spark-ts-a-new-library-for-analyzing-time-series-data-with-apache-spark/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13742839\tO\t13742839\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13742839/\tO\thttps://stackoverflow.com/questions/13742839/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1306\tI-Code_Block\tQ_1306\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ninside\tO\tinside\tO\nresponse\tO\tresponse\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nbellow\tO\tbellow\tO\nhtml\tB-Language\thtml\tO\ncode\tO\tcode\tO\nwith\tO\twith\tO\nsimple\tO\tsimple\tO\nJavaScript\tB-Language\tJavaScript\tO\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1307\tI-Code_Block\tQ_1307\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhere\tO\there\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\npopup()function\tB-Function_Name\tpopup()function\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13742839\tO\t13742839\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13742839/\tO\thttps://stackoverflow.com/questions/13742839/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nyou\tO\tyou\tO\nexpect\tO\texpect\tO\nthat\tO\tthat\tO\nJavascript\tB-Language\tJavascript\tO\ncontained\tO\tcontained\tO\nwithin\tO\twithin\tO\nan\tO\tan\tO\najax\tB-Library_Function\tajax\tO\nresponse\tO\tresponse\tO\nis\tO\tis\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nexecute\tO\texecute\tO\nany\tO\tany\tO\nJavascript\tB-Language\tJavascript\tO\ncontained\tO\tcontained\tO\nwithin\tO\twithin\tO\najax\tB-Library_Function\tajax\tO\nresponses\tO\tresponses\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nJavascript\tB-Language\tJavascript\tO\nand\tO\tand\tO\nexecute\tO\texecute\tO\nit\tO\tit\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\neval()\tB-Library_Function\teval()\tB-Code_Block\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnasty\tO\tnasty\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\neval()\tB-Library_Function\teval()\tB-Code_Block\nyou\tO\tyou\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nconsider\tO\tconsider\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\naccept\tO\taccept\tO\nvalid\tO\tvalid\tO\nJavascript\tB-Language\tJavascript\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\npass\tO\tpass\tO\nyour\tO\tyour\tO\nresponse\tO\tresponse\tO\nto\tO\tto\tO\nit\tO\tit\tO\nbecause\tO\tbecause\tO\nthat\tO\tthat\tO\nincludes\tO\tincludes\tO\nsome\tO\tsome\tO\nHTML\tB-Language\tHTML\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\npossible\tO\tpossible\tO\nsolution\tO\tsolution\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\npopup()\tB-Function_Name\tpopup()\tB-Code_Block\nfunction\tO\tfunction\tO\nalready\tO\talready\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nor\tO\tor\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\nJavascript\tB-File_Type\tJavascript\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nand\tO\tand\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nthe\tO\tthe\tO\nclick\tO\tclick\tO\nhandler\tO\thandler\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nHTML\tB-Language\tHTML\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nDOM\tB-Library\tDOM\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1751\tI-Code_Block\tA_1751\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13742839\tO\t13742839\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13742839/\tO\thttps://stackoverflow.com/questions/13742839/\tO\n\t\n\t\nMake\tO\tMake\tO\nthat\tO\tthat\tO\nstring\tB-Data_Type\tstring\tO\nhidden\tO\thidden\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\npage\tO\tpage\tO\nand\tO\tand\tO\njust\tO\tjust\tO\ndisplay\tO\tdisplay\tO\nit\tO\tit\tO\non\tO\ton\tO\nsuccess\tO\tsuccess\tO\n.\tO\t.\tO\n\t\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1752\tI-Code_Block\tA_1752\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBetter\tO\tBetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nwith\tO\twith\tO\nDOM\tB-Library\tDOM\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40523285\tO\t40523285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40523285/\tO\thttps://stackoverflow.com/questions/40523285/\tO\n\t\n\t\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ntraverse\tO\ttraverse\tO\nsome\tO\tsome\tO\nexcel2007\tB-Application\texcel2007\tO\ndata\tO\tdata\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\npoi.jar\tB-File_Name\tpoi.jar\tO\nbased\tO\tbased\tO\non\tO\ton\tO\njdk1.6.But\tB-Application\tjdk1.6.But\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nstrange\tO\tstrange\tO\nphenomenon\tO\tphenomenon\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntraverse\tO\ttraverse\tO\nthe\tO\tthe\tO\nrow\tO\trow\tO\n(\tO\t(\tO\nstored\tO\tstored\tO\nby\tO\tby\tO\nHashMap())\tB-Library_Class\tHashMap())\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nrow\tO\trow\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\njava.util.ArrayList\tB-Library_Class\tjava.util.ArrayList\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nstarting\tO\tstarting\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\niterator\tO\titerator\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfirst\tO\tfirst\tO\nclear\tO\tclear\tO\nthe\tO\tthe\tO\nrow\tO\trow\tO\ndata\tO\tdata\tO\nby\tO\tby\tO\ninvoking\tO\tinvoking\tO\nMap.clear()\tB-Library_Function\tMap.clear()\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nagain\tO\tagain\tO\ninvoking\tO\tinvoking\tO\nthe\tO\tthe\tO\nArrayList.add()\tB-Library_Function\tArrayList.add()\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nrow\tO\trow\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\noverridden\tO\toverridden\tO\nthe\tO\tthe\tO\nolder\tO\tolder\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5115\tI-Code_Block\tQ_5115\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNext\tO\tNext\tO\nSnippets\tO\tSnippets\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\ndebug\tO\tdebug\tO\nlog\tO\tlog\tO\nfor\tO\tfor\tO\nrowForSheet(List)\tB-Variable_Name\trowForSheet(List)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5116\tI-Code_Block\tQ_5116\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthe\tO\tthe\tO\nlater\tO\tlater\tO\ndata\tO\tdata\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\nolder\tO\tolder\tO\ndata\tO\tdata\tO\n\t\nDid\tO\tDid\tO\nyou\tO\tyou\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40523285\tO\t40523285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40523285/\tO\thttps://stackoverflow.com/questions/40523285/\tO\n\t\n\t\nFirst\tO\tFirst\tO\noff\tO\toff\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ncreation\tO\tcreation\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nmap\tB-Library_Class\tmap\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nloops\tB-Code_Block\tloops\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nmap\tB-Library_Class\tmap\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5801\tI-Code_Block\tA_5801\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\neach\tO\teach\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nmap\tB-Library_Class\tmap\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ndata\tO\tdata\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nadded\tO\tadded\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18168003\tO\t18168003\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18168003/\tO\thttps://stackoverflow.com/questions/18168003/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nAmazon\tB-Application\tAmazon\tO\nRedshift\tI-Application\tRedshift\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\ndata\tO\tdata\tO\nanalysis\tO\tanalysis\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsometimes\tO\tsometimes\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n'\tO\t'\tO\nunload\tB-Library_Function\tunload\tO\n'\tO\t'\tO\nto\tO\tto\tO\nunload\tO\tunload\tO\na\tO\ta\tO\nRedShift\tB-Data_Structure\tRedShift\tO\ntable\tI-Data_Structure\ttable\tO\ninto\tO\tinto\tO\nS3\tB-File_Type\tS3\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\nanother\tO\tanother\tO\nRedshift\tB-Application\tRedshift\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\na\tO\ta\tO\nprefix\tO\tprefix\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfile\tO\tfile\tO\nwhen\tO\twhen\tO\ndoing\tO\tdoing\tO\n'\tO\t'\tO\nunload\tB-Library_Function\tunload\tO\n'\tO\t'\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\nmany\tO\tmany\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nS3\tB-File_Type\tS3\tO\nbucket\tO\tbucket\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ngraceful\tO\tgraceful\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncleanup\tO\tcleanup\tO\nall\tO\tall\tO\nthose\tO\tthose\tO\ndata\tO\tdata\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nenumerate\tO\tenumerate\tO\neach\tO\teach\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbucket\tO\tbucket\tO\nand\tO\tand\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nmatches\tO\tmatches\tO\nthe\tO\tthe\tO\nprefix\tO\tprefix\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18168003\tO\t18168003\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18168003/\tO\thttps://stackoverflow.com/questions/18168003/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nvery\tO\tvery\tO\neasy\tO\teasy\tO\nwith\tO\twith\tO\ns3cmd\tB-Application\ts3cmd\tO\nfrom\tO\tfrom\tO\ns3tools\tB-Website\ts3tools\tO\n(\tO\t(\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ncopy\tO\tcopy\tO\nfrom\tO\tfrom\tO\nhttp://s3tools.org/s3cmd\tO\thttp://s3tools.org/s3cmd\tO\n)\tO\t)\tO\n\t\nFirst\tO\tFirst\tO\nconfigure\tO\tconfigure\tO\nthis\tO\tthis\tO\nprogram\tO\tprogram\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2391\tI-Code_Block\tA_2391\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nis\tO\tis\tO\njust\tO\tjust\tO\none\tO\tone\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2392\tI-Code_Block\tA_2392\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32536875\tO\t32536875\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32536875/\tO\thttps://stackoverflow.com/questions/32536875/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\nweb\tB-HTML_XML_Tag\tweb\tO\nroles\tI-HTML_XML_Tag\troles\tO\nand\tO\tand\tO\none\tO\tone\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nruns\tO\truns\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nlayer\tO\tlayer\tO\nconsisting\tO\tconsisting\tO\nof\tO\tof\tO\n3\tO\t3\tO\nWCF\tB-Library\tWCF\tO\nservices\tO\tservices\tO\nconnected\tO\tconnected\tO\nwith\tO\twith\tO\nnet.tcp\tO\tnet.tcp\tO\n,\tO\t,\tO\neach\tO\teach\tO\ndeployed\tO\tdeployed\tO\nas\tO\tas\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\non\tO\ton\tO\nport\tB-Device\tport\tO\n808\tB-Value\t808\tO\n,\tO\t,\tO\n810\tB-Value\t810\tO\n,\tO\t,\tO\nand\tO\tand\tO\n811\tB-Value\t811\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nlayer\tO\tlayer\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\nopen\tO\topen\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nother\tO\tother\tO\nweb\tB-HTML_XML_Tag\tweb\tO\nrole\tI-HTML_XML_Tag\trole\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nservices\tO\tservices\tO\nendpoint\tO\tendpoint\tO\ninternal\tO\tinternal\tO\nand\tO\tand\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\naccess\tO\taccess\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nfront\tO\tfront\tO\nweb\tB-HTML_XML_Tag\tweb\tO\nrole\tI-HTML_XML_Tag\trole\tO\n.\tO\t.\tO\n\t\nLike\tO\tLike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3946\tI-Code_Block\tQ_3946\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nUserService\tB-File_Name\tUserService\tO\nis\tO\tis\tO\nattempted\tO\tattempted\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\ntime\tO\ttime\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nset\tO\tset\tO\n<AllowAllTraffic/>\tB-HTML_XML_Tag\t<AllowAllTraffic/>\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n<WhenSource\tB-HTML_XML_Tag\t<WhenSource\tB-Code_Block\n...>\tI-HTML_XML_Tag\t...>\tI-Code_Block\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nno\tO\tno\tO\neffect\tO\teffect\tO\n.\tO\t.\tO\n\t\nSecond\tO\tSecond\tO\nattempt\tO\tattempt\tO\n:\tO\t:\tO\n\t\nAfter\tO\tAfter\tO\nsome\tO\tsome\tO\nfeedback\tO\tfeedback\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nsome\tO\tsome\tO\nvariations\tO\tvariations\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nFixedPort\tB-HTML_XML_Tag\tFixedPort\tB-Code_Block\nand\tO\tand\tO\nPortRange\tB-HTML_XML_Tag\tPortRange\tB-Code_Block\nto\tO\tto\tO\n811\tB-Value\t811\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nrole\tO\trole\tO\nlistening\tO\tlistening\tO\nto\tO\tto\tO\nport\tB-Code_Block\tport\tB-Code_Block\n=\"*\"\tI-Code_Block\t=\"*\"\tI-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3947\tI-Code_Block\tQ_3947\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nkept\tO\tkept\tO\nthe\tO\tthe\tO\nNetworkTrafficRules\tB-HTML_XML_Tag\tNetworkTrafficRules\tO\nas\tO\tas\tO\nin\tO\tin\tO\nprevious\tO\tprevious\tO\nattempts\tO\tattempts\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlistener\tO\tlistener\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ndynamic\tO\tdynamic\tO\nport\tB-Device\tport\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nWebRole.cs\tB-File_Name\tWebRole.cs\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3948\tI-Code_Block\tQ_3948\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnother\tO\tAnother\tO\nnote\tO\tnote\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncalling\tO\tcalling\tO\nservice\tO\tservice\tO\nuses\tO\tuses\tO\nport\tB-Device\tport\tO\n811\tB-Value\t811\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nservice\tO\tservice\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nruns\tO\truns\tO\nthree\tO\tthree\tO\ndifferent\tO\tdifferent\tO\nWCF\tB-Library\tWCF\tO\nproject\tO\tproject\tO\nsites\tO\tsites\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ncalling\tO\tcalling\tO\nalso\tO\talso\tO\nuses\tO\tuses\tO\na\tO\ta\tO\nspecified\tO\tspecified\tO\nport\tB-Device\tport\tO\nnumber\tO\tnumber\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nif\tO\tif\tO\nit\tO\tit\tO\nall\tO\tall\tO\nof\tO\tof\tO\na\tO\ta\tO\nsudden\tO\tsudden\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndynamic\tO\tdynamic\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncalling\tO\tcalling\tO\nservice\tO\tservice\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3949\tI-Code_Block\tQ_3949\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nreceiving(Internal)\tO\treceiving(Internal)\tO\nWebRole\tB-HTML_XML_Tag\tWebRole\tO\nsites\tO\tsites\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nconfigurations\tO\tconfigurations\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3950\tI-Code_Block\tQ_3950\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nWCF\tB-Library\tWCF\tO\nsite\tO\tsite\tO\non\tO\ton\tO\nport\tB-Device\tport\tO\n811\tB-Value\t811\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3951\tI-Code_Block\tQ_3951\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32536875\tO\t32536875\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32536875/\tO\thttps://stackoverflow.com/questions/32536875/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ninternal\tO\tinternal\tO\nendpoint\tO\tendpoint\tO\nIP-addresses\tO\tIP-addresses\tO\nand\tO\tand\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexternal\tO\texternal\tO\naddress\tO\taddress\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4647\tI-Code_Block\tA_4647\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n49020250\tO\t49020250\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49020250/\tO\thttps://stackoverflow.com/questions/49020250/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6540\tI-Code_Block\tQ_6540\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nworks\tO\tworks\tO\nif\tO\tif\tO\nI\tO\tI\tO\ngive\tO\tgive\tO\nas\tO\tas\tO\ninput\tB-Code_Block\tinput\tO\n->\tI-Code_Block\t->\tO\nc:\\data\tI-Code_Block\tc:\\data\tO\n\t\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nif\tO\tif\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6541\tI-Code_Block\tQ_6541\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nexplain\tO\texplain\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nreason\tO\treason\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nbehaviour\tO\tbehaviour\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n49020250\tO\t49020250\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49020250/\tO\thttps://stackoverflow.com/questions/49020250/\tO\n\t\n\t\nBecause\tO\tBecause\tO\nin\tO\tin\tO\nliteral\tO\tliteral\tO\nstrings\tB-Data_Type\tstrings\tO\n,\tO\t,\tO\n\\\tB-Value\t\\\tB-Code_Block\nis\tO\tis\tO\nan\tO\tan\tO\nescape\tO\tescape\tO\ncharacter\tO\tcharacter\tO\n-\tO\t-\tO\nallow\tO\tallow\tO\nputting\tO\tputting\tO\nquotes/tabs/newlines\tB-Value\tquotes/tabs/newlines\tO\netc\tO\tetc\tO\n.\tO\t.\tO\nin\tO\tin\tO\nliteral\tO\tliteral\tO\nstrings\tB-Data_Type\tstrings\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\n'\tB-Value\t'\tB-Code_Block\nc:\\\\data\tI-Value\tc:\\\\data\tI-Code_Block\n'\tB-Value\t'\tB-Code_Block\nor\tO\tor\tO\n'\tB-Value\t'\tB-Code_Block\nc:/data\tI-Value\tc:/data\tI-Code_Block\n'\tI-Value\t'\tI-Code_Block\n(\tO\t(\tO\nforward\tO\tforward\tO\nslash\tO\tslash\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\nwindows\tB-Operating_System\twindows\tO\n)\tO\t)\tO\n\t\nAnother\tO\tAnother\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\nraw\tO\traw\tO\n\"\tO\t\"\tO\nstrings\tB-Data_Type\tstrings\tO\nr'c:\\data'\tB-Value\tr'c:\\data'\tB-Code_Block\nbut\tO\tbut\tO\nbe\tO\tbe\tO\ncareful\tO\tcareful\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\nescaped\tO\tescaped\tO\ncharacters\tO\tcharacters\tO\nanymore\tO\tanymore\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40686543\tO\t40686543\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40686543/\tO\thttps://stackoverflow.com/questions/40686543/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5140\tI-Code_Block\tQ_5140\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\njust\tO\tjust\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nmultiplication\tO\tmultiplication\tO\n\t\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n(\tB-Value\t(\tO\n3*\tI-Value\t3*\tO\n5)\tI-Value\t5)\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nthat\tO\tthat\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nbackslah\tB-Value\tbackslah\tO\nto\tO\tto\tO\nescape\tO\tescape\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5141\tI-Code_Block\tQ_5141\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\nunclosed\tB-Error_Name\tunclosed\tO\ncharacter\tI-Error_Name\tcharacter\tO\nliteral\tI-Error_Name\tliteral\tO\nand\tO\tand\tO\nillegal\tB-Error_Name\tillegal\tO\nstart\tI-Error_Name\tstart\tO\nof\tI-Error_Name\tof\tO\nexpression\tI-Error_Name\texpression\tO\nerrors\tO\terrors\tO\n\t\nwhat\tO\twhat\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40686543\tO\t40686543\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40686543/\tO\thttps://stackoverflow.com/questions/40686543/\tO\n\t\n\t\nRefer\tO\tRefer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nJavadoc\tO\tJavadoc\tO\nof\tO\tof\tO\nString.replaceFirst\tB-Library_Function\tString.replaceFirst\tB-Code_Block\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nparameter\tO\tparameter\tO\nis\tO\tis\tO\na\tO\ta\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\n(\tO\t(\tO\nmeaning\tO\tmeaning\tO\ncharacters\tO\tcharacters\tO\nlike\tO\tlike\tO\n*\tB-Value\t*\tB-Code_Block\nhave\tO\thave\tO\nspecial\tO\tspecial\tO\nmeaning\tO\tmeaning\tO\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nparameter\tO\tparameter\tO\nis\tO\tis\tO\na\tO\ta\tO\nregex\tO\tregex\tO\nreplacement\tO\treplacement\tO\n(\tO\t(\tO\nmeaning\tO\tmeaning\tO\ncertain\tO\tcertain\tO\ncharacter\tO\tcharacter\tO\nsequences\tO\tsequences\tO\nhave\tO\thave\tO\nspecial\tO\tspecial\tO\nmeaning\tO\tmeaning\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\\\tB-Value\t\\\tB-Code_Block\nand\tO\tand\tO\n$\tB-Value\t$\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nin\tO\tin\tO\nstrings\tB-Data_Type\tstrings\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nuntrusted\tO\tuntrusted\tO\nsource\tO\tsource\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nquote\tO\tquote\tO\nthem\tO\tthem\tO\nappropriately\tO\tappropriately\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5826\tI-Code_Block\tA_5826\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nString.replaceFirst\tB-Library_Function\tString.replaceFirst\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ntool\tO\ttool\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\njob\tO\tjob\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\ncorrectly\tO\tcorrectly\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nmatch\tO\tmatch\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nstring\tB-Data_Type\tstring\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nreally\tO\treally\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmost\tO\tmost\tO\nstraightforward\tO\tstraightforward\tO\nmodification\tO\tmodification\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nString.substring\tB-Library_Function\tString.substring\tB-Code_Block\n-\tO\t-\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nexactly\tO\texactly\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nthing\tO\tthing\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nis\tO\tis\tO\n,\tO\t,\tO\nso\tO\tso\tO\nmake\tO\tmake\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5827\tI-Code_Block\tA_5827\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nThis\tO\tThis\tO\nwould\tO\twould\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\n7\tO\t7\tO\nlines\tO\tlines\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n)\tO\t)\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nbetter\tO\tbetter\tO\nagain\tO\tagain\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nStringBuilder\tB-Library_Class\tStringBuilder\tB-Code_Block\n,\tO\t,\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\ncreating\tO\tcreating\tO\nunnecessary\tO\tunnecessary\tO\nstrings\tB-Data_Type\tstrings\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nstill\tO\tstill\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\nmulti-digit\tO\tmulti-digit\tO\nor\tO\tor\tO\nnegative\tO\tnegative\tO\nnumbers\tO\tnumbers\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43041539\tO\t43041539\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43041539/\tO\thttps://stackoverflow.com/questions/43041539/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\nregarding\tO\tregarding\tO\nJava\tB-Language\tJava\tO\ncode\tO\tcode\tO\nimplementation\tO\timplementation\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nscenario\tO\tscenario\tO\n,\tO\t,\tO\n\t\nGet\tO\tGet\tO\nUser\tO\tUser\tO\nInput\tO\tInput\tO\n[\tO\t[\tO\nString\tB-Data_Type\tString\tO\nfrom\tO\tfrom\tO\nScanner\tB-Library_Class\tScanner\tO\n]\tO\t]\tO\n\t\nConvert\tO\tConvert\tO\nthe\tO\tthe\tO\nString\tB-Data_Type\tString\tO\ninput\tO\tinput\tO\nto\tO\tto\tO\n1D\tO\t1D\tO\nArray\tB-Data_Structure\tArray\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\n1D\tO\t1D\tO\nchar\tB-Data_Type\tchar\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\npopulate\tO\tpopulate\tO\nit\tO\tit\tO\naccordingly\tO\taccordingly\tO\nto\tO\tto\tO\n2D\tO\t2D\tO\nchar\tB-Data_Type\tchar\tO\narray\tB-Data_Structure\tarray\tO\nbased\tO\tbased\tO\non\tO\ton\tO\npositions\tO\tpositions\tO\n,\tO\t,\tO\n[\tB-Value\t[\tO\n0\tI-Value\t0\tO\n]\tI-Value\t]\tO\n[\tB-Value\t[\tO\n0\tI-Value\t0\tO\n]\tI-Value\t]\tO\n,\tO\t,\tO\n[\tB-Value\t[\tO\n0\tI-Value\t0\tO\n]\tI-Value\t]\tO\n[\tB-Value\t[\tO\n1\tI-Value\t1\tO\n]\tI-Value\t]\tO\netc\tO\tetc\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n,\tO\t,\tO\n\t\ncharArray\tB-Variable_Name\tcharArray\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ncreated\tO\tcreated\tO\nas\tO\tas\tO\na\tO\ta\tO\n6\tO\t6\tO\nby\tO\tby\tO\n6\tO\t6\tO\narray.char[][]\tB-Data_Structure\tarray.char[][]\tB-Code_Block\ncharArray\tB-Code_Block\tcharArray\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nnew\tI-Code_Block\tnew\tI-Code_Block\nchar[6][6]\tI-Code_Block\tchar[6][6]\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5504\tI-Code_Block\tQ_5504\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nprinting\tO\tprinting\tO\nof\tO\tof\tO\nmessages\tO\tmessages\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\n's\tO\t's\tO\ni\tB-Variable_Name\ti\tO\nposition\tO\tposition\tO\nand\tO\tand\tO\nto\tO\tto\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncorresponding\tO\tcorresponding\tO\n2D\tO\t2D\tO\narray\tB-Data_Structure\tarray\tO\npositions\tO\tpositions\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\npopulate\tO\tpopulate\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nby\tO\tby\tO\nassigning\tO\tassigning\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nappreciate\tO\tappreciate\tO\nany\tO\tany\tO\ntips\tO\ttips\tO\nand\tO\tand\tO\nguidance\tO\tguidance\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43041539\tO\t43041539\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43041539/\tO\thttps://stackoverflow.com/questions/43041539/\tO\n\t\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nin\tO\tin\tO\n6*6\tO\t6*6\tO\ncharacter\tB-Data_Type\tcharacter\tO\narray\tB-Data_Structure\tarray\tO\nwithout\tO\twithout\tO\ngetting\tO\tgetting\tO\nexception\tB-Library_Class\texception\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6219\tI-Code_Block\tA_6219\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43041539\tO\t43041539\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43041539/\tO\thttps://stackoverflow.com/questions/43041539/\tO\n\t\n\t\nThe\tO\tThe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nhas\tO\thas\tO\nentered\tO\tentered\tO\n36\tO\t36\tO\ncharacters\tO\tcharacters\tO\nexactly\tO\texactly\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nchar\tB-Data_Type\tchar\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nLive\tO\tLive\tO\nDemo\tO\tDemo\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6220\tI-Code_Block\tA_6220\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\n1D\tO\t1D\tO\narray\tB-Data_Structure\tarray\tO\nas\tO\tas\tO\na\tO\ta\tO\nflat\tO\tflat\tO\n2D\tO\t2D\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nor\tO\tor\tO\nparse\tO\tparse\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\na\tO\ta\tO\n2D\tO\t2D\tO\narray\tB-Data_Structure\tarray\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6221\tI-Code_Block\tA_6221\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43678707\tO\t43678707\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43678707/\tO\thttps://stackoverflow.com/questions/43678707/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nlist\tB-Data_Structure\tlist\tO\nfrom\tO\tfrom\tO\none\tO\tone\tO\ntable\tB-Data_Structure\ttable\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\ncontain\tO\tcontain\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\ntables\tB-Data_Structure\ttables\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nkeyField\tB-Variable_Name\tkeyField\tO\nfrom\tO\tfrom\tO\nfirst\tO\tfirst\tO\nTable\tB-Data_Structure\tTable\tO\nbut\tO\tbut\tO\nvalueField\tB-Variable_Name\tvalueField\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nTable\tB-Data_Structure\tTable\tO\n+\tO\t+\tO\nkey\tB-Variable_Name\tkey\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntable\tB-Data_Structure\ttable\tO\nCustomerNumbers\tB-Variable_Name\tCustomerNumbers\tO\n(\tO\t(\tO\nkey\tO\tkey\tO\n=>\tO\t=>\tO\ncustomer_number\tO\tcustomer_number\tO\n)\tO\t)\tO\n->\tO\t->\tO\nUsers\tO\tUsers\tO\n->\tO\t->\tO\nGroups\tO\tGroups\tO\n(\tO\t(\tO\nvalue\tO\tvalue\tO\n=>\tO\t=>\tO\nname\tO\tname\tO\n)\tO\t)\tO\n\t\nNeed\tO\tNeed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nlist\tB-Data_Structure\tlist\tO\nwith\tO\twith\tO\nall\tO\tall\tO\nCustomerNumbers.customer_number\tB-Class_Name\tCustomerNumbers.customer_number\tO\nas\tO\tas\tO\nkey\tO\tkey\tO\nand\tO\tand\tO\nGroups.name\tB-Class_Name\tGroups.name\tO\nplus\tO\tplus\tO\nkey\tB-Variable_Name\tkey\tO\nas\tO\tas\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nquery\tO\tquery\tO\n(\tO\t(\tO\nalso\tO\talso\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nmake\tO\tmake\tO\nstandard\tO\tstandard\tO\nclassic\tO\tclassic\tO\nphp\tB-Language\tphp\tO\nforeach\tO\tforeach\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nlist\tB-Data_Structure\tlist\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5621\tI-Code_Block\tQ_5621\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nresult\tO\tresult\tO\nshoud\tO\tshoud\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5622\tI-Code_Block\tQ_5622\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nduplicated\tO\tduplicated\tO\nquestion\tO\tquestion\tO\n@drmonkeyninja\tB-User_Name\t@drmonkeyninja\tO\nbecause\tO\tbecause\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nexample\tO\texample\tO\n(\tO\t(\tO\nQuestion\tO\tQuestion\tO\n)\tO\t)\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nvirtual\tO\tvirtual\tO\nfield\tO\tfield\tO\noption\tO\toption\tO\nfrom\tO\tfrom\tO\nsingle\tO\tsingle\tO\nmodel\tO\tmodel\tO\n(\tO\t(\tO\nex\tO\tex\tO\n.\tO\t.\tO\n\t\nModel\tO\tModel\tO\nUsers\tO\tUsers\tO\nand\tO\tand\tO\ntake\tO\ttake\tO\nFirst\tO\tFirst\tO\nand\tO\tand\tO\nLast\tO\tLast\tO\nname\tO\tname\tO\nas\tO\tas\tO\none\tO\tone\tO\nfield\tO\tfield\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nvirtual\tO\tvirtual\tO\nfield\tO\tfield\tO\nfrom\tO\tfrom\tO\nmodel\tO\tmodel\tO\nCustomer\tO\tCustomer\tO\nNumbers\tO\tNumbers\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\nfield\tO\tfield\tO\nfrom\tO\tfrom\tO\nModel\tO\tModel\tO\nGroups\tO\tGroups\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nsolution\tO\tsolution\tO\nin\tO\tin\tO\npure\tO\tpure\tO\nphp\tB-Language\tphp\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhope\tO\thope\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nCakePhp\tB-Library\tCakePhp\tO\nsoultion\tO\tsoultion\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5623\tI-Code_Block\tQ_5623\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18562928\tO\t18562928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18562928/\tO\thttps://stackoverflow.com/questions/18562928/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nbeginner\tO\tbeginner\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nfinding\tO\tfinding\tO\nit\tO\tit\tO\nvery\tO\tvery\tO\ndifficult\tO\tdifficult\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\none\tO\tone\tO\nconcept\tO\tconcept\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\nconcept\tO\tconcept\tO\n.\tO\t.\tO\n\t\nSolution\tO\tSolution\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1918\tI-Code_Block\tQ_1918\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMyApp.Web\tB-Variable_Name\tMyApp.Web\tO\nreferences\tO\treferences\tO\nMyApp.Logic\tB-Variable_Name\tMyApp.Logic\tO\n,\tO\t,\tO\nand\tO\tand\tO\nMyApp.Logic\tB-Variable_Name\tMyApp.Logic\tO\nreferences\tO\treferences\tO\nMyApp.Data\tB-Variable_Name\tMyApp.Data\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nsimply\tO\tsimply\tO\nbind\tO\tbind\tO\na\tO\ta\tO\ngridview\tB-User_Interface_Element\tgridview\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ntablename\tB-Variable_Name\ttablename\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nchosen\tO\tchosen\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndropdownlist\tB-User_Interface_Element\tdropdownlist\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nhundreds\tO\thundreds\tO\nand\tO\tand\tO\nmore\tO\tmore\tO\ntables\tB-Data_Structure\ttables\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npurpose\tO\tpurpose\tO\nhere\tO\there\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n(\tO\t(\tO\nwith\tO\twith\tO\npaging\tO\tpaging\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n\"\tO\t\"\tO\nGet_Data\tB-Class_Name\tGet_Data\tO\n\"\tO\t\"\tO\non\tO\ton\tO\nproject\tO\tproject\tO\nMyApp.Data\tB-Variable_Name\tMyApp.Data\tO\nhas\tO\thas\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1919\tI-Code_Block\tQ_1919\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFrom\tO\tFrom\tO\nMyApp.Logic\tB-Variable_Name\tMyApp.Logic\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\njust\tO\tjust\tO\npassing\tO\tpassing\tO\nthe\tO\tthe\tO\ndatatable\tB-Data_Structure\tdatatable\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nMyApp.Data\tB-Variable_Name\tMyApp.Data\tO\ntier\tO\ttier\tO\nto\tO\tto\tO\nMyApp.Web\tB-Variable_Name\tMyApp.Web\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\ngridview\tB-User_Interface_Element\tgridview\tO\nis\tO\tis\tO\nbound\tO\tbound\tO\nand\tO\tand\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nreally\tO\treally\tO\nbad\tO\tbad\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ndatatable\tB-Data_Structure\tdatatable\tO\nin\tO\tin\tO\nUI\tO\tUI\tO\nlevel\tO\tlevel\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nit\tO\tit\tO\na\tO\ta\tO\nbad\tO\tbad\tO\ndesign\tO\tdesign\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18562928\tO\t18562928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18562928/\tO\thttps://stackoverflow.com/questions/18562928/\tO\n\t\n\t\nThe\tO\tThe\tO\nnotion\tO\tnotion\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbad\tO\tbad\tO\npractice\tO\tpractice\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nUI\tO\tUI\tO\nto\tO\tto\tO\ncreate/load/consume\tO\tcreate/load/consume\tO\na\tO\ta\tO\ndatatable\tB-Data_Structure\tdatatable\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\npreferable\tO\tpreferable\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\ninto\tO\tinto\tO\nlayers\tO\tlayers\tO\nthat\tO\tthat\tO\nspecialize\tO\tspecialize\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\ncommon\tO\tcommon\tO\nsplit\tO\tsplit\tO\nis\tO\tis\tO\nto\tO\tto\tO\nhave\tO\thave\tO\n3\tO\t3\tO\nlayers\tO\tlayers\tO\n:\tO\t:\tO\n\t\nLayer\tO\tLayer\tO\n1\tO\t1\tO\nis\tO\tis\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nlayer\tO\tlayer\tO\nresponsible\tO\tresponsible\tO\nfor\tO\tfor\tO\ncommunicating\tO\tcommunicating\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\npopulating\tO\tpopulating\tO\ndomain\tO\tdomain\tO\nobjects\tO\tobjects\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndomain\tO\tdomain\tO\nobjects\tO\tobjects\tO\nare\tO\tare\tO\ntypically\tO\ttypically\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nlayer\tO\tlayer\tO\n2\tO\t2\tO\nwhich\tO\twhich\tO\nalso\tO\talso\tO\nholds\tO\tholds\tO\nthe\tO\tthe\tO\nbusiness\tO\tbusiness\tO\nlogic\tO\tlogic\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nby\tO\tby\tO\ndomain\tO\tdomain\tO\nobjects\tO\tobjects\tO\ni\tO\ti\tO\nmean\tO\tmean\tO\nclasses\tO\tclasses\tO\nthat\tO\tthat\tO\nrepresent\tO\trepresent\tO\nreal\tO\treal\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\ncustomer\tO\tcustomer\tO\n,\tO\t,\tO\nbank\tO\tbank\tO\naccount\tO\taccount\tO\n,\tO\t,\tO\nhotel\tO\thotel\tO\nroom\tO\troom\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nby\tO\tby\tO\nbusiness\tO\tbusiness\tO\nlogic\tO\tlogic\tO\ni\tO\ti\tO\nmean\tO\tmean\tO\nthe\tO\tthe\tO\nrules\tO\trules\tO\nthat\tO\tthat\tO\napply\tO\tapply\tO\nto\tO\tto\tO\ndomain\tO\tdomain\tO\nobjects\tO\tobjects\tO\nduring\tO\tduring\tO\nevents\tO\tevents\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nhotel\tO\thotel\tO\nroom\tO\troom\tO\nis\tO\tis\tO\nbooked\tO\tbooked\tO\na\tO\ta\tO\nconfirmation\tO\tconfirmation\tO\nis\tO\tis\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncustomer\tO\tcustomer\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nthird\tO\tthird\tO\nlayer\tO\tlayer\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nlayer\tO\tlayer\tO\n,\tO\t,\tO\nto\tO\tto\tO\nsimplyfy\tO\tsimplyfy\tO\ncoding\tO\tcoding\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nonly\tO\tonly\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nwhats\tO\twhats\tO\nin\tO\tin\tO\nlayer\tO\tlayer\tO\n2\tO\t2\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nrecommendation\tO\trecommendation\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\ndatatables\tB-Data_Structure\tdatatables\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nUI\tO\tUI\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nmotivation\tO\tmotivation\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nreally\tO\treally\tO\nstart\tO\tstart\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nis\tO\tis\tO\nbig\tO\tbig\tO\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\ndevelopers\tO\tdevelopers\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nit\tO\tit\tO\n,\tO\t,\tO\nor\tO\tor\tO\nyour\tO\tyour\tO\nusing\tO\tusing\tO\nunit\tO\tunit\tO\ntesting\tO\ttesting\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nsituation\tO\tsituation\tO\nthen\tO\tthen\tO\ni\tO\ti\tO\n'd\tO\t'd\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nfriendly\tO\tfriendly\tO\nmember\tO\tmember\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nteam\tO\tteam\tO\nto\tO\tto\tO\nexplain\tO\texplain\tO\nthis\tO\tthis\tO\nbetter\tO\tbetter\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nyou\tO\tyou\tO\nwriting\tO\twriting\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nthen\tO\tthen\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nworry\tO\tworry\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\n,\tO\t,\tO\nwrite\tO\twrite\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nread\tO\tread\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nbooks\tO\tbooks\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nstuff\tO\tstuff\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nmore\tO\tmore\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nrecommend\tO\trecommend\tO\nthe\tO\tthe\tO\ncraig\tB-User_Name\tcraig\tO\nlarman\tI-User_Name\tlarman\tO\nbook\tO\tbook\tO\non\tO\ton\tO\numl\tB-Language\tuml\tO\nand\tO\tand\tO\npatterns\tO\tpatterns\tO\n.\tO\t.\tO\n\t\nhope\tO\thope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28833382\tO\t28833382\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28833382/\tO\thttps://stackoverflow.com/questions/28833382/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nasp.net\tB-Library\tasp.net\tO\nwith\tO\twith\tO\njavascript\tB-Language\tjavascript\tO\n.\tO\t.\tO\n\t\nJavascript\tB-Language\tJavascript\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\nwith\tO\twith\tO\nIE8\tB-Application\tIE8\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nIE11\tB-Application\tIE11\tO\n.\tO\t.\tO\n\t\nJavascript\tB-Language\tJavascript\tO\nis\tO\tis\tO\nable\tO\table\tO\nto\tO\tto\tO\nresponse\tO\tresponse\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nuser\tO\tuser\tO\nwho\tO\twho\tO\nuse\tO\tuse\tO\nIE11\tB-Application\tIE11\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nresponse\tO\tresponse\tO\nto\tO\tto\tO\nother\tO\tother\tO\nusers\tO\tusers\tO\nwho\tO\twho\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nIE11\tB-Application\tIE11\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nthey\tO\tthey\tO\nalready\tO\talready\tO\nhave\tO\thave\tO\nIE\tB-Application\tIE\tO\nsetting\tO\tsetting\tO\nscript\tO\tscript\tO\nenabled\tO\tenabled\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalready\tO\talready\tO\nupdate\tO\tupdate\tO\nto\tO\tto\tO\n4.5\tB-Version\t4.5\tO\n.NET\tB-Library\t.NET\tO\nFramework\tO\tFramework\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nstill\tO\tstill\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nusers\tO\tusers\tO\ntold\tO\ttold\tO\nme\tO\tme\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nused\tO\tused\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwell\tO\twell\tO\nbefore\tO\tbefore\tO\nwhile\tO\twhile\tO\nhe\tO\the\tO\nusing\tO\tusing\tO\nIE11\tB-Application\tIE11\tO\nand\tO\tand\tO\nhe\tO\the\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nanything\tO\tanything\tO\nsince\tO\tsince\tO\nuntil\tO\tuntil\tO\nweb\tO\tweb\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nhim\tO\thim\tO\n.\tO\t.\tO\n\t\nAnyone\tO\tAnyone\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\ncould\tO\tcould\tO\ncause\tO\tcause\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\none\tO\tone\tO\nof\tO\tof\tO\nuser\tO\tuser\tO\nwho\tO\twho\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nsource\tO\tsource\tO\nerror\tO\terror\tO\non\tO\ton\tO\njavascript\tB-File_Type\tjavascript\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28833382\tO\t28833382\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28833382/\tO\thttps://stackoverflow.com/questions/28833382/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nin\tO\tin\tO\nIE\tB-Application\tIE\tO\nsetting\tO\tsetting\tO\nunder\tO\tunder\tO\nSecurity\tO\tSecurity\tO\ntab\tB-User_Interface_Element\ttab\tO\nby\tO\tby\tO\nremoving\tO\tremoving\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nURL\tO\tURL\tO\nfrom\tO\tfrom\tO\ntrusted\tO\ttrusted\tO\nsites\tO\tsites\tO\nand\tO\tand\tO\nmove\tO\tmove\tO\nurl\tO\turl\tO\nto\tO\tto\tO\nlocal\tO\tlocal\tO\nintranet\tO\tintranet\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14668198\tO\t14668198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14668198/\tO\thttps://stackoverflow.com/questions/14668198/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nUICollectionViewController\tB-Library_Class\tUICollectionViewController\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\ndataset\tO\tdataset\tO\n(\tO\t(\tO\n>2000\tO\t>2000\tO\nitems\tO\titems\tO\n)\tO\t)\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nlayout\tO\tlayout\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nsections\tO\tsections\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nscrolling\tO\tscrolling\tO\nperformance\tO\tperformance\tO\nbecame\tO\tbecame\tO\nextremely\tO\textremely\tO\nchoppy\tO\tchoppy\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nInstruments\tO\tInstruments\tO\nand\tO\tand\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ntests\tO\ttests\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndetermined\tO\tdetermined\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nlookup\tO\tlookup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlayout\tO\tlayout\tO\n(\tO\t(\tO\nlayoutAttributesForElementsInRect\tB-Library_Function\tlayoutAttributesForElementsInRect\tB-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncache\tO\tcache\tO\nlayout\tO\tlayout\tO\nattributes\tO\tattributes\tO\nin\tO\tin\tO\nprepareLayout\tB-Library_Function\tprepareLayout\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nlook\tO\tlook\tO\nthem\tO\tthem\tO\nup\tO\tup\tO\nhere\tO\there\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfastest\tO\tfastest\tO\nway\tO\tway\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1401\tI-Code_Block\tQ_1401\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\n~\tO\t~\tO\n25%\tO\t25%\tO\nof\tO\tof\tO\ncpu\tB-Device\tcpu\tO\ntime\tO\ttime\tO\nwas\tO\twas\tO\nspent\tO\tspent\tO\nenumerating\tO\tenumerating\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nmostly\tO\tmostly\tO\non\tO\ton\tO\n[\tB-Code_Block\t[\tB-Code_Block\nNSIndexPath\tI-Code_Block\tNSIndexPath\tI-Code_Block\nisEqual\tI-Code_Block\tisEqual\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nfaster\tO\tfaster\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhash\tO\thash\tO\nthese\tO\tthese\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\na\tO\ta\tO\ncross\tO\tcross\tO\ntest\tO\ttest\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndata\tO\tdata\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsectioned\tO\tsectioned\tO\nUICollectionViewFlowLayout\tB-Library_Class\tUICollectionViewFlowLayout\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nsmooth\tO\tsmooth\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14668198\tO\t14668198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14668198/\tO\thttps://stackoverflow.com/questions/14668198/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nturns\tO\tturns\tO\nout\tO\tout\tO\nusing\tO\tusing\tO\narrays\tB-Data_Structure\tarrays\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ndictionaries\tB-Data_Structure\tdictionaries\tO\n,\tO\t,\tO\nand\tO\tand\tO\nfiltering\tO\tfiltering\tO\nby\tO\tby\tO\nan\tO\tan\tO\nNSPredicate\tB-Library_Class\tNSPredicate\tO\nwas\tO\twas\tO\nmuch\tO\tmuch\tO\nfaster\tO\tfaster\tO\nsince\tO\tsince\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\nindices\tO\tindices\tO\nwere\tO\twere\tO\nalready\tO\talready\tO\nknown\tO\tknown\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23708895\tO\t23708895\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23708895/\tO\thttps://stackoverflow.com/questions/23708895/\tO\n\t\n\t\nMy\tO\tMy\tO\nproject\tO\tproject\tO\nwas\tO\twas\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nDjango\tB-Library\tDjango\tO\n1.5.4\tB-Version\t1.5.4\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nupgrade\tO\tupgrade\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\npip\tB-Code_Block\tpip\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\n-U\tI-Code_Block\t-U\tI-Code_Block\n-I\tI-Code_Block\t-I\tI-Code_Block\ndjango\tI-Code_Block\tdjango\tI-Code_Block\nand\tO\tand\tO\nnow\tO\tnow\tO\npip\tB-Code_Block\tpip\tB-Code_Block\nfreeze\tI-Code_Block\tfreeze\tI-Code_Block\nshows\tO\tshows\tO\nDjango\tB-Library\tDjango\tO\n1.6.5\tB-Version\t1.6.5\tO\n(\tO\t(\tO\nclearly\tO\tclearly\tO\ndjango\tB-Library\tdjango\tO\nhas\tO\thas\tO\nupgraded\tO\tupgraded\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nin\tO\tin\tO\nvirtualen\tB-Code_Block\tvirtualen\tB-Code_Block\nv)\tI-Code_Block\tv)\tI-Code_Block\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nusing\tO\tusing\tO\nDjango\tB-Library\tDjango\tO\n1.5.4\tB-Version\t1.5.4\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nupgraded\tO\tupgraded\tO\nversion\tO\tversion\tO\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ncomments\tO\tcomments\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\neverything\tO\teverything\tO\nbut\tO\tbut\tO\nunfortunately\tO\tunfortunately\tO\nnothing\tO\tnothing\tO\nworked\tO\tworked\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nre-deploy\tO\tre-deploy\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nsomeone\tO\tsomeone\tO\nexplains\tO\texplains\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nhappened\tO\thappened\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23708895\tO\t23708895\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23708895/\tO\thttps://stackoverflow.com/questions/23708895/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n--upgrade\tB-Code_Block\t--upgrade\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\npip\tB-Code_Block\tpip\tB-Code_Block\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nupgrade\tO\tupgrade\tO\nPython\tB-Language\tPython\tO\npackages\tO\tpackages\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3240\tI-Code_Block\tA_3240\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23708895\tO\t23708895\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23708895/\tO\thttps://stackoverflow.com/questions/23708895/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\nexpert\tO\texpert\tO\non\tO\ton\tO\neither\tO\teither\tO\nPython\tB-Language\tPython\tO\nor\tO\tor\tO\nDjango\tB-Library\tDjango\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nis\tO\tis\tO\nfollowing\tO\tfollowing\tO\nalong\tO\talong\tO\nthis\tO\tthis\tO\nreally\tO\treally\tO\nvery\tO\tvery\tO\ngood\tO\tgood\tO\nbook\tO\tbook\tO\n:\tO\t:\tO\nTest\tO\tTest\tO\nDriven\tO\tDriven\tO\nWeb\tO\tWeb\tO\nDevelopment\tO\tDevelopment\tO\nWith\tO\tWith\tO\nPython\tB-Language\tPython\tO\n(\tO\t(\tO\n2nd\tO\t2nd\tO\nEd\tO\tEd\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nuses\tO\tuses\tO\nDjango\tB-Library\tDjango\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nalso\tO\talso\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nWindoze\tB-Operating_System\tWindoze\tO\nmachine\tO\tmachine\tO\n(\tO\t(\tO\nW10\tB-Operating_System\tW10\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nCygwin\tB-Application\tCygwin\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nI\tO\tI\tO\nmention\tO\tmention\tO\nall\tO\tall\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\n,\tO\t,\tO\nhaving\tO\thaving\tO\ninstalled\tO\tinstalled\tO\nPython\tB-Language\tPython\tO\n3.6\tB-Version\t3.6\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nCygwin\tB-Application\tCygwin\tO\nsetup\tO\tsetup\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npip3\tB-Code_Block\tpip3\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\npip\tB-Code_Block\tpip\tB-Code_Block\n,\tO\t,\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nDjango\tB-Library\tDjango\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ninstalled\tO\tinstalled\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nDjango\tB-Library\tDjango\tO\nwas\tO\twas\tO\n1.11.8\tB-Version\t1.11.8\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nofficial\tO\tofficial\tO\n\"\tO\t\"\tO\n(?)\tO\t(?)\tO\n\t\ntutorial\tO\ttutorial\tO\nhere\tO\there\tO\nthey\tO\tthey\tO\nwant\tO\twant\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nDjango\tB-Library\tDjango\tO\n2.0\tB-Version\t2.0\tO\ninstalled\tO\tinstalled\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuccessfully\tO\tsuccessfully\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7034\tI-Code_Block\tA_7034\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\nsomeone\tO\tsomeone\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nsomeone\tO\tsomeone\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nknowledgeable\tO\tknowledgeable\tO\nthan\tO\tthan\tO\nme\tO\tme\tO\ncan\tO\tcan\tO\ntalk\tO\ttalk\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nneed\tO\tneed\tO\nor\tO\tor\tO\notherwise\tO\totherwise\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npip3\tB-Code_Block\tpip3\tB-Code_Block\nfor\tO\tfor\tO\nall\tO\tall\tO\nPython\tB-Language\tPython\tO\n3.x\tB-Version\t3.x\tO\nactivity\tO\tactivity\tO\n??\tO\t??\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45605404\tO\t45605404\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45605404/\tO\thttps://stackoverflow.com/questions/45605404/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\njava\tB-Language\tjava\tO\nbased\tO\tbased\tO\nrate\tO\trate\tO\nstreaming\tO\tstreaming\tO\napplication\tO\tapplication\tO\ndeployed\tO\tdeployed\tO\nin\tO\tin\tO\nweblogic\tB-Application\tweblogic\tO\n,\tO\t,\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nnode\tB-Application\tnode\tO\njs\tI-Application\tjs\tO\nand\tO\tand\tO\nredis\tB-Application\tredis\tO\nfor\tO\tfor\tO\nreal-time\tO\treal-time\tO\nstreaming\tO\tstreaming\tO\nrates\tO\trates\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nnode\tB-Application\tnode\tO\njs\tI-Application\tjs\tO\nand\tO\tand\tO\nredis\tB-Application\tredis\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nexisting\tO\texisting\tO\njava\tB-Language\tjava\tO\nbased\tO\tbased\tO\napplication\tO\tapplication\tO\ndeployed\tO\tdeployed\tO\nin\tO\tin\tO\nweblogic\tB-Application\tweblogic\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19114353\tO\t19114353\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19114353/\tO\thttps://stackoverflow.com/questions/19114353/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nwriting\tO\twriting\tO\nsome\tO\tsome\tO\nsoftware\tO\tsoftware\tO\nthat\tO\tthat\tO\ntalks\tO\ttalks\tO\nto\tO\tto\tO\nexternal\tO\texternal\tO\nhardware\tO\thardware\tO\nvia\tO\tvia\tO\na\tO\ta\tO\ndll\tB-Library\tdll\tO\n(\tO\t(\tO\nmoving\tO\tmoving\tO\nsome\tO\tsome\tO\nmotors\tO\tmotors\tO\nand\tO\tand\tO\nreading\tO\treading\tO\nsome\tO\tsome\tO\nvalues\tO\tvalues\tO\nback\tO\tback\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncalls\tO\tcalls\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndll\tB-Library\tdll\tO\nare\tO\tare\tO\nblocking\tO\tblocking\tO\nand\tO\tand\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nreturn\tO\treturn\tO\nfor\tO\tfor\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsoftware\tO\tsoftware\tO\nperforms\tO\tperforms\tO\na\tO\ta\tO\nscan\tO\tscan\tO\nby\tO\tby\tO\nmoving\tO\tmoving\tO\nthe\tO\tthe\tO\nhardware\tO\thardware\tO\n,\tO\t,\tO\ntaking\tO\ttaking\tO\na\tO\ta\tO\nreading\tO\treading\tO\nand\tO\tand\tO\nrepeating\tO\trepeating\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\npoints\tO\tpoints\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nscan\tO\tscan\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\n30\tO\t30\tO\nminutes\tO\tminutes\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nthe\tO\tthe\tO\nscan\tO\tscan\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nobviously\tO\tobviously\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nGUI\tB-User_Interface_Element\tGUI\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nresponsive\tO\tresponsive\tO\nand\tO\tand\tO\na\tO\ta\tO\nlive\tO\tlive\tO\ngraph\tB-Data_Structure\tgraph\tO\n(\tO\t(\tO\nin\tO\tin\tO\nan\tO\tan\tO\nMDI\tB-Library_Class\tMDI\tO\nChild\tI-Library_Class\tChild\tO\n)\tO\t)\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nincoming\tO\tincoming\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nupdated\tO\tupdated\tO\nat\tO\tat\tO\neach\tO\teach\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nMultithreading\tO\tMultithreading\tO\nseems\tO\tseems\tO\nthe\tO\tthe\tO\nobvious\tO\tobvious\tO\nchoice\tO\tchoice\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nthread\tO\tthread\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\ntalk\tO\ttalk\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nVCL\tB-Library\tVCL\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ngraph\tB-Data_Structure\tgraph\tO\nduring\tO\tduring\tO\na\tO\ta\tO\nscan\tO\tscan\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nTThread\tB-Library_Class\tTThread\tO\ndescendant\tO\tdescendant\tO\nthat\tO\tthat\tO\nperforms\tO\tperforms\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nscan\tO\tscan\tO\nlogic\tO\tlogic\tO\n'\tO\t'\tO\nand\tO\tand\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\ndoubles\tB-Data_Type\tdoubles\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npublic\tO\tpublic\tO\nvar\tB-Data_Type\tvar\tO\nsection\tO\tsection\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nChildForm\tB-Library_Class\tChildForm\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\nout\tO\tout\tO\nthis\tO\tthis\tO\narray\tB-Data_Structure\tarray\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhether\tO\twhether\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nSynchronize\tB-Library_Function\tSynchronize\tO\nor\tO\tor\tO\nCriticalSection\tB-Library_Function\tCriticalSection\tO\nor\tO\tor\tO\nPostMessage\tB-Library_Function\tPostMessage\tO\nor\tO\tor\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\ntime\tO\ttime\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nadded\tO\tadded\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nVCL\tB-Library\tVCL\tO\nthread\tO\tthread\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ngraph\tB-Data_Structure\tgraph\tO\n.\tO\t.\tO\n\t\nShould\tO\tShould\tO\nI\tO\tI\tO\nreally\tO\treally\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nintermediary\tO\tintermediary\tO\nobject\tO\tobject\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\na\tO\ta\tO\nglobal\tB-Data_Type\tglobal\tO\nvar\tI-Data_Type\tvar\tO\nand\tO\tand\tO\naccess\tO\taccess\tO\nthis\tO\tthis\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nThread\tB-Library_Class\tThread\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nChildForm\tB-Library_Class\tChildForm\tO\nseparately\tO\tseparately\tO\nsomehow\tO\tsomehow\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19114353\tO\t19114353\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19114353/\tO\thttps://stackoverflow.com/questions/19114353/\tO\n\t\n\t\nI\tO\tI\tO\nfind\tO\tfind\tO\nthat\tO\tthat\tO\npopulating\tO\tpopulating\tO\na\tO\ta\tO\nTThreadList\tB-Library_Class\tTThreadList\tB-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nposting\tO\tposting\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nprocessing\tO\tprocessing\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\nand\tO\tand\tO\neasily\tO\teasily\tO\nmaintainable\tO\tmaintainable\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nstore\tO\tstore\tO\nas\tO\tas\tO\nmany\tO\tmany\tO\nreadings\tO\treadings\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nand\tO\tand\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nreceived\tO\treceived\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nsimply\tO\tsimply\tO\nprocess\tO\tprocess\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nat\tO\tat\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nDefine\tO\tDefine\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nreadings\tO\treadings\tO\n,\tO\t,\tO\ninstantiate\tO\tinstantiate\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\nfree\tO\tfree\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\npop\tO\tpop\tO\nthem\tO\tthem\tO\noff\tO\toff\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19114353\tO\t19114353\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19114353/\tO\thttps://stackoverflow.com/questions/19114353/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninvest\tO\tinvest\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nmore\tO\tmore\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nSynchronize\tB-Library_Function\tSynchronize\tO\ncall\tO\tcall\tO\nwhich\tO\twhich\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nblocks\tO\tblocks\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nFIFO\tO\tFIFO\tO\nqueue\tB-Data_Structure\tqueue\tO\nwith\tO\twith\tO\nmessaging\tO\tmessaging\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nflow\tO\tflow\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nthread\tO\tthread\tO\nputs\tO\tputs\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nqueue\tB-Data_Structure\tqueue\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nthread\tO\tthread\tO\npost\tO\tpost\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nwindow\tO\twindow\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\none\tO\tone\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ncare\tO\tcare\tO\n:)\tO\t:)\tO\n\t\nYou\tO\tYou\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nand\tO\tand\tO\nprocess\tO\tprocess\tO\nany\tO\tany\tO\nmessages\tO\tmessages\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nqueue\tB-Data_Structure\tqueue\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\nfit\tO\tfit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nthe\tO\tthe\tO\nqueue\tB-Data_Structure\tqueue\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2533\tI-Code_Block\tA_2533\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nput\tO\tput\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nqueue\tB-Data_Structure\tqueue\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2534\tI-Code_Block\tA_2534\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nprocessing\tO\tprocessing\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2535\tI-Code_Block\tA_2535\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwritten\tO\twritten\tO\nwithout\tO\twithout\tO\nDelphi\tB-Application\tDelphi\tO\nand\tO\tand\tO\nchecks\tO\tchecks\tO\nso\tO\tso\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ncontain\tO\tcontain\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshowed\tO\tshowed\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nusing\tO\tusing\tO\nmy\tO\tmy\tO\nfreely\tO\tfreely\tO\navailable\tO\tavailable\tO\nthread\tO\tthread\tO\nsafe\tO\tsafe\tO\nqueue\tB-Data_Structure\tqueue\tO\nand\tO\tand\tO\nTAnyValue\tB-Variable_Name\tTAnyValue\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nboth\tO\tboth\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttp://www.cromis.net/blog/downloads/\tO\thttp://www.cromis.net/blog/downloads/\tO\n\t\nAlso\tO\tAlso\tO\nplease\tO\tplease\tO\nnote\tO\tnote\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\ndo\tO\tdo\tO\nany\tO\tany\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nPostMessage\tB-Library_Function\tPostMessage\tO\nwas\tO\twas\tO\nactually\tO\tactually\tO\nsent\tO\tsent\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\ncheck\tO\tcheck\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nproduction\tO\tproduction\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45631939\tO\t45631939\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45631939/\tO\thttps://stackoverflow.com/questions/45631939/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\napp\tO\tapp\tO\nwhereby\tO\twhereby\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ninputs\tO\tinputs\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nform\tB-User_Interface_Element\tform\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nhits\tO\thits\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nopens\tO\topens\tO\nup\tO\tup\tO\na\tO\ta\tO\nemailing\tO\temailing\tO\napp\tO\tapp\tO\nand\tO\tand\tO\nsends\tO\tsends\tO\nit\tO\tit\tO\noff\tO\toff\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\naddress\tO\taddress\tO\nput\tO\tput\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n3\tO\t3\tO\ncheckboxes\tB-User_Interface_Element\tcheckboxes\tO\n,\tO\t,\tO\none\tO\tone\tO\nthat\tO\tthat\tO\nasks\tO\tasks\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nwants\tO\twants\tO\na\tO\ta\tO\ncall\tO\tcall\tO\nback\tO\tback\tO\n,\tO\t,\tO\none\tO\tone\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nwant\tO\twant\tO\nan\tO\tan\tO\nemail\tO\temail\tO\nback\tO\tback\tO\nand\tO\tand\tO\none\tO\tone\tO\nsaying\tO\tsaying\tO\nno\tO\tno\tO\nthanks\tO\tthanks\tO\nto\tO\tto\tO\nboth\tO\tboth\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncurrent\tO\tcurrent\tO\njava\tB-Language\tjava\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5979\tI-Code_Block\tQ_5979\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nwhich\tO\twhich\tO\ncalls\tO\tcalls\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5980\tI-Code_Block\tQ_5980\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nline\tO\tline\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncheckbox\tB-Library_Class\tcheckbox\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nback\tO\tback\tO\nbox\tB-User_Interface_Element\tbox\tO\nwas\tO\twas\tO\nticked\tO\tticked\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nsay\tO\tsay\tO\n\"\tO\t\"\tO\nThe\tO\tThe\tO\nuser\tO\tuser\tO\nrequests\tO\trequests\tO\na\tO\ta\tO\ncall\tO\tcall\tO\nback\tO\tback\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nboth\tO\tboth\tO\ncall\tO\tcall\tO\nand\tO\tand\tO\nemail\tO\temail\tO\nare\tO\tare\tO\nticked\tO\tticked\tO\nthen\tO\tthen\tO\n\"\tO\t\"\tO\nThe\tO\tThe\tO\nuser\tO\tuser\tO\nrequests\tO\trequests\tO\na\tO\ta\tO\ncall\tO\tcall\tO\nor\tO\tor\tO\nemail\tO\temail\tO\nback\tO\tback\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nno\tO\tno\tO\nthanks\tO\tthanks\tO\ncheckbox\tB-User_Interface_Element\tcheckbox\tO\nis\tO\tis\tO\nticked\tO\tticked\tO\nthen\tO\tthen\tO\n\"\tO\t\"\tO\nThe\tO\tThe\tO\nuser\tO\tuser\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nrequire\tO\trequire\tO\nan\tO\tan\tO\nupdate\tO\tupdate\tO\nwhen\tO\twhen\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nresolved\tO\tresolved\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45631939\tO\t45631939\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45631939/\tO\thttps://stackoverflow.com/questions/45631939/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29070171\tO\t29070171\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29070171/\tO\thttps://stackoverflow.com/questions/29070171/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ndataset\tO\tdataset\tO\npattern\tO\tpattern\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nrest\tB-Library\trest\tO\nservice\tO\tservice\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nangular\tB-Library\tangular\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3447\tI-Code_Block\tQ_3447\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRight\tO\tRight\tO\nnow\tO\tnow\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\npattern\tO\tpattern\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3448\tI-Code_Block\tQ_3448\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nProblem\tO\tProblem\tO\nis\tO\tis\tO\ndata\tO\tdata\tO\nfield\tO\tfield\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncreating\tO\tcreating\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\noutput\tO\toutput\tO\nwhich\tO\twhich\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\ngenerates\tO\tgenerates\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3449\tI-Code_Block\tQ_3449\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29070171\tO\t29070171\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29070171/\tO\thttps://stackoverflow.com/questions/29070171/\tO\n\t\n\t\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nYou\tO\tYou\tO\nnee\tO\tnee\tO\na\tO\ta\tO\nloop\tO\tloop\tO\nfor\tO\tfor\tO\ndataname\tB-Library_Variable\tdataname\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4100\tI-Code_Block\tA_4100\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29070171\tO\t29070171\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29070171/\tO\thttps://stackoverflow.com/questions/29070171/\tO\n\t\n\t\npush()\tB-Library_Function\tpush()\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\narray\tB-Data_Structure\tarray\tO\n's\tO\t's\tO\nlength\tO\tlength\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4098\tI-Code_Block\tA_4098\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nconcat()\tB-Library_Function\tconcat()\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4099\tI-Code_Block\tA_4099\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10252987\tO\t10252987\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10252987/\tO\thttps://stackoverflow.com/questions/10252987/\tO\n\t\n\t\nSOLUTION\tO\tSOLUTION\tO\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nget\tO\tget\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nbit\tO\tbit\tO\noldish\tO\toldish\tO\nSymfony2\tB-Application\tSymfony2\tO\nrelease\tO\trelease\tO\n(\tO\t(\tO\n2.0-RC6\tB-Version\t2.0-RC6\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\n__construct\tB-Library_Function\t__construct\tB-Code_Block\nof\tO\tof\tO\nRoleSecurityIdentity\tB-Library_Class\tRoleSecurityIdentity\tB-Code_Block\n(\tO\t(\tO\nreported\tO\treported\tO\nback\tO\tback\tO\nin\tO\tin\tO\nDecember\tO\tDecember\tO\n'\tO\t'\tO\n10\tO\t10\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\ninstance\tO\tinstance\tB-Code_Block\nof\tO\tof\tI-Code_Block\nRole\tB-Library_Class\tRole\tI-Code_Block\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ninstance\tO\tinstance\tB-Code_Block\nof\tO\tof\tI-Code_Block\nRoleInstance\tB-Library_Class\tRoleInstance\tI-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\nprobably\tO\tprobably\tO\nclose\tO\tclose\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\npretty\tO\tpretty\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nwhole\tO\twhole\tO\nACL\tB-Data_Structure\tACL\tB-Code_Block\nconcept\tO\tconcept\tO\nin\tO\tin\tO\nSymfony2\tB-Application\tSymfony2\tB-Code_Block\nbut\tO\tbut\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nbasics\tO\tbasics\tO\nbehind\tO\tbehind\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nLast\tO\tLast\tO\nnight\tO\tnight\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nnext\tO\tnext\tO\nscenario\tO\tscenario\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\nuser\tO\tuser\tO\nroles\tO\troles\tO\n(\tO\t(\tO\nROLE_GROUP1\tB-Variable_Name\tROLE_GROUP1\tB-Code_Block\n,\tO\t,\tO\nROLE_GROUP\tB-Variable_Name\tROLE_GROUP\tB-Code_Block\n2)\tI-Variable_Name\t2)\tI-Code_Block\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsetup\tO\tsetup\tO\nobject-level\tO\tobject-level\tO\nACL\tB-Library_Class\tACL\tB-Code_Block\nfor\tO\tfor\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ngroups\tO\tgroups\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nuser\tO\tuser\tO\nwith\tO\twith\tO\nROLE_GROUP1\tB-Variable_Name\tROLE_GROUP1\tB-Code_Block\nis\tO\tis\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nput\tO\tput\tO\nthis\tO\tthis\tO\nrole\tO\trole\tO\ninto\tO\tinto\tO\nACE\tB-Variable_Name\tACE\tB-Code_Block\n,\tO\t,\tO\notherwise\tO\totherwise\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nput\tO\tput\tO\nROLE_GROUP2\tB-Variable_Name\tROLE_GROUP2\tB-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nreally\tO\treally\tO\nalmost\tO\talmost\tO\nidentical\tO\tidentical\tO\nto\tO\tto\tO\nofficial\tO\tofficial\tO\ndocs\tO\tdocs\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_897\tI-Code_Block\tQ_897\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\ngrant\tO\tgrant\tO\nall\tO\tall\tO\npermissions\tO\tpermissions\tO\nto\tO\tto\tO\nusers\tO\tusers\tO\nwith\tO\twith\tO\nROLE_GROUP1\tB-Variable_Name\tROLE_GROUP1\tB-Code_Block\nrole\tO\trole\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nTo\tO\tTo\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\npermissions\tO\tpermissions\tO\nI\tO\tI\tO\nused\tO\tused\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nfrom\tO\tfrom\tO\nofficial\tO\tofficial\tO\ndocs\tO\tdocs\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_898\tI-Code_Block\tQ_898\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n..\tO\t..\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nalways\tO\talways\tO\nfails\tO\tfails\tO\n(\tO\t(\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nexception\tO\texception\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlooked\tO\tlooked\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nACL\tB-Data_Structure\tACL\tO\ntables\tI-Data_Structure\ttables\tO\nand\tO\tand\tO\neverything\tO\teverything\tO\nseemed\tO\tseemed\tO\nnormal\tO\tnormal\tO\n,\tO\t,\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nsee\tO\tsee\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nRoleSecurityIdentity\tB-Library_Class\tRoleSecurityIdentity\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\nscenario\tO\tscenario\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nEDIT\tO\tEDIT\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\ndrilled\tO\tdrilled\tO\ndown\tO\tdown\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nSymfony\tB-Application\tSymfony\tO\n's\tO\t's\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\npermission\tO\tpermission\tO\ngrant\tO\tgrant\tO\nfails\tO\tfails\tO\nin\tO\tin\tO\nequals\tB-Library_Function\tequals\tB-Code_Block\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nRoleSecurityIdentity\tB-Library_Class\tRoleSecurityIdentity\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_899\tI-Code_Block\tQ_899\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nturns\tO\tturns\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\n$sid->getRole()\tB-Code_Block\t$sid->getRole()\tB-Code_Block\nis\tO\tis\tO\nstring\tB-Data_Type\tstring\tB-Code_Block\n\"\tO\t\"\tO\nROLE_GROUP1\tB-Variable_Name\tROLE_GROUP1\tO\n\"\tO\t\"\tO\nwhile\tO\twhile\tO\n$\tB-Code_Block\t$\tB-Code_Block\nthis->role\tI-Code_Block\tthis->role\tI-Code_Block\nis\tO\tis\tO\nRole\tB-Library_Class\tRole\tB-Code_Block\nobject\tO\tobject\tO\nof\tO\tof\tO\nROLE_GROUP1\tB-Variable_Name\tROLE_GROUP1\tO\nrole\tO\trole\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10252987\tO\t10252987\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10252987/\tO\thttps://stackoverflow.com/questions/10252987/\tO\n\t\n\t\nJust\tO\tJust\tO\nto\tO\tto\tO\nmark\tO\tmark\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nas\tO\tas\tO\nresolved\tO\tresolved\tO\n.\tO\t.\tO\n\t\nSolution\tO\tSolution\tO\n:\tO\t:\tO\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nget\tO\tget\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nbit\tO\tbit\tO\noldish\tO\toldish\tO\nSymfony2\tB-Application\tSymfony2\tO\nrelease\tO\trelease\tO\n(\tO\t(\tO\n2.0-RC6\tB-Version\t2.0-RC6\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\n__construct\tB-Library_Function\t__construct\tO\nof\tO\tof\tO\nRoleSecurityIdentity\tB-Library_Class\tRoleSecurityIdentity\tO\n(\tO\t(\tO\nreported\tO\treported\tO\nback\tO\tback\tO\nin\tO\tin\tO\nDecember\tO\tDecember\tO\n'\tO\t'\tO\n10\tO\t10\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nRole\tB-Library_Class\tRole\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nRoleInstance\tB-Library_Class\tRoleInstance\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\nprobably\tO\tprobably\tO\nclose\tO\tclose\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48458649\tO\t48458649\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48458649/\tO\thttps://stackoverflow.com/questions/48458649/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\ntables\tO\ttables\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6448\tI-Code_Block\tQ_6448\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ntwo\tO\ttwo\tO\ntables\tB-Data_Structure\ttables\tO\nare\tO\tare\tO\nrelated\tO\trelated\tO\nthrough\tO\tthrough\tO\nForeign-key\tB-Variable_Name\tForeign-key\tO\n:\tI-Variable_Name\t:\tO\nFkOriginalTextId\tI-Variable_Name\tFkOriginalTextId\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nOriginalText\tB-Class_Name\tOriginalText\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nkey/value\tB-Variable_Name\tkey/value\tO\npairs\tO\tpairs\tO\nfor\tO\tfor\tO\ndifferent\tO\tdifferent\tO\nlanguages\tO\tlanguages\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\nclient\tB-Application\tclient\tO\nwants\tO\twants\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncustomized\tO\tcustomized\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\ngoes\tO\tgoes\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nCustomText\tB-Library_Class\tCustomText\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nOriginalText\tB-Class_Name\tOriginalText\tO\n:\tO\t:\tO\nEmployee\tB-Variable_Name\tEmployee\tO\n,\tO\t,\tO\nCustomText\tB-Class_Name\tCustomText\tO\n:\tO\t:\tO\nStaff-member\tB-Variable_Name\tStaff-member\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nkey\tB-Variable_Name\tkey\tO\n:\tO\t:\tO\nEmployee\tB-Variable_Name\tEmployee\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nLambda/Linq\tB-Library\tLambda/Linq\tO\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nof\tO\tof\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nlanguage\tO\tlanguage\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nOriginalText\tB-Class_Name\tOriginalText\tO\ntable\tB-Data_Structure\ttable\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nTextValue\tB-Variable_Name\tTextValue\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\noverriden\tO\toverriden\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nreplacement\tO\treplacement\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nkey\tB-Library_Variable\tkey\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nCustomText\tB-Class_Name\tCustomText\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\nmultiple\tO\tmultiple\tO\nSQL\tB-Language\tSQL\tO\nstatements\tO\tstatements\tO\nby\tO\tby\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nOriginalText\tB-Class_Name\tOriginalText\tO\nvalues\tO\tvalues\tO\nto\tO\tto\tO\na\tO\ta\tO\ntemp\tB-Variable_Name\ttemp\tO\ntable\tB-Data_Structure\ttable\tO\nand\tO\tand\tO\nlater\tO\tlater\tO\non\tO\ton\tO\nupdating\tO\tupdating\tO\nthem\tO\tthem\tO\nwith\tO\twith\tO\nCustomText\tB-Class_Name\tCustomText\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nPerhaps\tO\tPerhaps\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nCTE\tO\tCTE\tO\n?\tO\t?\tO\n\t\nP.S\tO\tP.S\tO\n.\tO\t.\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\nLINQ\tB-Library\tLINQ\tO\nor\tO\tor\tO\nLambda\tB-Library\tLambda\tO\nexpressions\tO\texpressions\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48458649\tO\t48458649\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48458649/\tO\thttps://stackoverflow.com/questions/48458649/\tO\n\t\n\t\nAs\tO\tAs\tO\ntwo\tO\ttwo\tO\ntables\tB-Data_Structure\ttables\tO\nhave\tO\thave\tO\nrelations\tO\trelations\tO\nso\tO\tso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\neach\tO\teach\tO\nOriginalText\tB-Class_Name\tOriginalText\tB-Code_Block\nitem\tO\titem\tO\nhas\tO\thas\tO\na\tO\ta\tO\nCustomText\tB-Class_Name\tCustomText\tB-Code_Block\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nget\tO\tget\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\nCustomText\tB-Class_Name\tCustomText\tB-Code_Block\nif\tO\tif\tO\nexists\tO\texists\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7097\tI-Code_Block\tA_7097\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3055469\tO\t3055469\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3055469/\tO\thttps://stackoverflow.com/questions/3055469/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\njust\tO\tjust\tO\nnormalized\tO\tnormalized\tO\nthe\tO\tthe\tO\nfont\tB-Library_Variable\tfont\tO\nsize\tI-Library_Variable\tsize\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_215\tI-Code_Block\tQ_215\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nresize\tO\tresize\tO\nthe\tO\tthe\tO\nheading\tB-User_Interface_Element\theading\tO\ntags\tO\ttags\tO\ngiving\tO\tgiving\tO\npercentages\tO\tpercentages\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n<h1>,\tB-HTML_XML_Tag\t<h1>,\tB-Code_Block\n<h2>\tI-HTML_XML_Tag\t<h2>\tI-Code_Block\n.\tO\t.\tO\n\t\nSomething\tO\tSomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_216\tI-Code_Block\tQ_216\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nI\tO\tI\tO\ngave\tO\tgave\tO\na\tO\ta\tO\npercentage\tO\tpercentage\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nh2\tB-HTML_XML_Tag\th2\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhat\tO\twhat\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\npercentages\tO\tpercentages\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3055469\tO\t3055469\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3055469/\tO\thttps://stackoverflow.com/questions/3055469/\tO\n\t\n\t\nThe\tO\tThe\tO\npercentages\tO\tpercentages\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nwhatever\tO\twhatever\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\nnothing\tO\tnothing\tO\nsaying\tO\tsaying\tO\nthat\tO\tthat\tO\nan\tO\tan\tO\nH1\tB-HTML_XML_Tag\tH1\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nbigger\tO\tbigger\tO\nthan\tO\tthan\tO\nan\tO\tan\tO\nH2\tB-HTML_XML_Tag\tH2\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3055469\tO\t3055469\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3055469/\tO\thttps://stackoverflow.com/questions/3055469/\tO\n\t\n\t\nView\tO\tView\tO\nthe\tO\tthe\tO\nfalowing\tO\tfalowing\tO\nlink\tO\tlink\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nsolve\tO\tsolve\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCSS\tB-Language\tCSS\tO\nFONT\tB-Library_Variable\tFONT\tO\nSIZE\tI-Library_Variable\tSIZE\tO\nem\tO\tem\tO\nvs\tO\tvs\tO\npx\tO\tpx\tO\nvs\tO\tvs\tO\npt\tO\tpt\tO\nvs\tO\tvs\tO\n%\tO\t%\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3055469\tO\t3055469\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3055469/\tO\thttps://stackoverflow.com/questions/3055469/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nwith\tO\twith\tO\na\tO\ta\tO\nconversion\tO\tconversion\tO\ntable\tB-User_Interface_Element\ttable\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12285437\tO\t12285437\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12285437/\tO\thttps://stackoverflow.com/questions/12285437/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nclick\tO\tclick\tO\nevent\tO\tevent\tO\nto\tO\tto\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nusing\tO\tusing\tO\nlive\tB-Library_Function\tlive\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\ntrigger\tO\ttrigger\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\nanyways\tO\tanyways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1159\tI-Code_Block\tQ_1159\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nis\tO\tis\tO\ncreated\tO\tcreated\tO\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12285437\tO\t12285437\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12285437/\tO\thttps://stackoverflow.com/questions/12285437/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\none()\tB-Library_Function\tone()\tB-Code_Block\nwith\tO\twith\tO\ndelegated\tO\tdelegated\tO\nhandlers\tO\thandlers\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n(\tO\t(\tO\nin\tO\tin\tO\njQuery\tB-Library\tjQuery\tO\n1.7\tB-Version\t1.7\tO\n+\tO\t+\tO\n)\tO\t)\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\ndeprecated\tO\tdeprecated\tO\nlive()\tB-Library_Function\tlive()\tB-Code_Block\nfunction\tO\tfunction\tO\nwith\tO\twith\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1600\tI-Code_Block\tA_1600\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nreplace\tO\treplace\tO\ndocument\tB-Variable_Name\tdocument\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nclosest\tO\tclosest\tO\nnon-dynamic\tO\tnon-dynamic\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12285437\tO\t12285437\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12285437/\tO\thttps://stackoverflow.com/questions/12285437/\tO\n\t\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\noption\tO\toption\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.one\tB-Library_Function\t.one\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nlive\tB-Library_Function\tlive\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nmakes\tO\tmakes\tO\nmore\tO\tmore\tO\nsense.\tO\tsense.\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nHiddenfield\tO\tHiddenfield\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\npage\tO\tpage\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nclick\tO\tclick\tO\nevent\tO\tevent\tO\nis\tO\tis\tO\ntriggered\tO\ttriggered\tO\nthen\tO\tthen\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nflag\tB-Library_Variable\tflag\tO\nvalue.\tO\tvalue.\tO\n.\tO\t.\tO\n\t\nNext\tO\tNext\tO\ntime\tO\ttime\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nbutton\tO\tbutton\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nflag\tB-Library_Variable\tflag\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nalready\tO\talready\tO\nexecuted\tO\texecuted\tO\nonce\tO\tonce\tO\nthen\tO\tthen\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ninside\tO\tinside\tO\nit.\tO\tit.\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nhttp://jsfiddle.net/sushanth009/Fakb5/\tO\thttp://jsfiddle.net/sushanth009/Fakb5/\tO\n\t\nAlso\tO\tAlso\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\n.live\tB-Library_Function\t.live\tO\nis\tO\tis\tO\ndeprecated\tO\tdeprecated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\njQuery\tB-Library\tjQuery\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\npreferred\tO\tpreferred\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.on()\tB-Library_Function\t.on()\tO\ninstead\tO\tinstead\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28312078\tO\t28312078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28312078/\tO\thttps://stackoverflow.com/questions/28312078/\tO\n\t\n\t\nWhy\tO\tWhy\tO\nam\tO\tam\tO\nI\tO\tI\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3298\tI-Code_Block\tQ_3298\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\npretty\tO\tpretty\tO\nbad\tO\tbad\tO\nmistakes\tO\tmistakes\tO\n.\tO\t.\tO\n\t\nsorry\tO\tsorry\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndumb\tO\tdumb\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3299\tI-Code_Block\tQ_3299\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\narrays\tB-Data_Structure\tarrays\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nlists\tB-Data_Structure\tlists\tO\nin\tO\tin\tO\npython\tB-Language\tpython\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\ncoding\tO\tcoding\tO\nand\tO\tand\tO\npython\tB-Language\tpython\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28312078\tO\t28312078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28312078/\tO\thttps://stackoverflow.com/questions/28312078/\tO\n\t\n\t\nHere\tO\tHere\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3914\tI-Code_Block\tA_3914\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nassign\tO\tassign\tO\nplayerHand\tB-Variable_Name\tplayerHand\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\nfrom\tO\tfrom\tO\nrandint\tB-Library_Function\trandint\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nan\tO\tan\tO\nint\tB-Data_Type\tint\tB-Code_Block\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3915\tI-Code_Block\tA_3915\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\nindex\tO\tindex\tO\ninto\tO\tinto\tO\nplayerHand\tB-Library_Variable\tplayerHand\tB-Code_Block\nlike\tO\tlike\tO\nit\tO\tit\tO\nis\tO\tis\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28312078\tO\t28312078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28312078/\tO\thttps://stackoverflow.com/questions/28312078/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nwrong\tO\twrong\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3932\tI-Code_Block\tA_3932\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncorrect\tO\tcorrect\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3933\tI-Code_Block\tA_3933\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33016848\tO\t33016848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33016848/\tO\thttps://stackoverflow.com/questions/33016848/\tO\n\t\n\t\nSo\tO\tSo\tO\nconfusingly\tO\tconfusingly\tO\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tB-Code_Block\nhas\tO\thas\tO\nnothing\tO\tnothing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\n@Profile\tB-Library_Class\t@Profile\tB-Code_Block\nor\tO\tor\tO\n@ActiveProfiles\tB-Library_Class\t@ActiveProfiles\tB-Code_Block\n.\tO\t.\tO\n\t\n@Profile\tB-Library_Class\t@Profile\tB-Code_Block\ntests\tO\ttests\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\na\tO\ta\tO\nprofile\tB-Library_Class\tprofile\tO\nis\tO\tis\tO\nactive\tB-Value\tactive\tO\n,\tO\t,\tO\n@ActiveProfiles\tB-Library_Class\t@ActiveProfiles\tB-Code_Block\nsets\tO\tsets\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\nactive\tB-Value\tactive\tO\n,\tO\t,\tO\nand\tO\tand\tO\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tB-Code_Block\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthings\tO\tthings\tO\nin\tO\tin\tO\nSpring\tB-Library\tSpring\tO\nEnvironment\tO\tEnvironment\tB-Code_Block\n.\tO\t.\tO\n\t\nWut\tO\tWut\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\ndeprecate\tO\tdeprecate\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\nones\tO\tones\tO\n@IfEnvironment\tB-Library_Class\t@IfEnvironment\tB-Code_Block\n,\tO\t,\tO\n@IfProfile\tB-Library_Class\t@IfProfile\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\n@ActivateProfiles\tB-Library_Class\t@ActivateProfiles\tB-Code_Block\n.\tO\t.\tO\n\t\nCommentary\tO\tCommentary\tO\naside\tO\taside\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tB-Code_Block\nto\tO\tto\tO\ndetect\tO\tdetect\tO\nwhether\tO\twhether\tO\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nprofile\tB-Library_Class\tprofile\tO\nactive\tB-Value\tactive\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nSpring\tB-Library\tSpring\tO\nBoot\tI-Library\tBoot\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nAnswers\tO\tAnswers\tO\nshould\tO\tshould\tO\nshow\tO\tshow\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwe\tO\twe\tO\nwill\tO\twill\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nprofile\tB-Library_Class\tprofile\tO\nis\tO\tis\tO\nactivated\tO\tactivated\tO\nas\tO\tas\tO\n@ActiveProfiles\tB-Library_Class\t@ActiveProfiles\tB-Code_Block\n(\tI-Library_Class\t(\tI-Code_Block\n\"\tI-Library_Class\t\"\tI-Code_Block\ntest\tI-Library_Class\ttest\tI-Code_Block\n\"\tI-Library_Class\t\"\tI-Code_Block\n)\tI-Library_Class\t)\tI-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\n@IfProfileValue\tB-Code_Block\t@IfProfileValue\tB-Code_Block\n(\tB-Code_Block\t(\tB-Code_Block\nname\tI-Code_Block\tname\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nactiveProfiles\tI-Code_Block\tactiveProfiles\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nvalue\tI-Code_Block\tvalue\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\ntest\tI-Code_Block\ttest\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nskipped\tO\tskipped\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmeans\tO\tmeans\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nmatching\tO\tmatching\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nspeculate\tO\tspeculate\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nActiveProfiles\tB-Library_Class\tActiveProfiles\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nCollection\tB-Library_Class\tCollection\tB-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33016848\tO\t33016848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33016848/\tO\thttps://stackoverflow.com/questions/33016848/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nexplained\tO\texplained\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\ndetail\tO\tdetail\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/a/23627479/388980\tO\thttps://stackoverflow.com/a/23627479/388980\tO\n\t\n..\tO\t..\tO\n.\tO\t.\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nseen\tO\tseen\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\ncommented\tO\tcommented\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nanswer\tO\tanswer\tO\nyesterday\tO\tyesterday\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nthat\tO\tthat\tO\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tB-Code_Block\nhas\tO\thas\tO\nnothing\tO\tnothing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\n@Profile\tB-Library_Class\t@Profile\tB-Code_Block\nor\tO\tor\tO\n@ActiveProfiles\tB-Library_Class\t@ActiveProfiles\tB-Code_Block\nis\tO\tis\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nevolution\tO\tevolution\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nframework\tO\tframework\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nbelow\tO\tbelow\tO\nfor\tO\tfor\tO\nfurther\tO\tfurther\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThese\tO\tThese\tO\nstatements\tO\tstatements\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nentirely\tO\tentirely\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\npart\tO\tpart\tO\n.\tO\t.\tO\n\t\n@Profile\tB-Library_Class\t@Profile\tB-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nselectively\tO\tselectively\tO\nenable\tO\tenable\tO\na\tO\ta\tO\ncomponent\tO\tcomponent\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\n@Service\tB-Library_Class\t@Service\tB-Code_Block\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n,\tO\t,\tO\n@Configuration\tB-Library_Class\t@Configuration\tB-Code_Block\nclass\tO\tclass\tO\n,\tO\t,\tO\nor\tO\tor\tO\n@Bean\tB-Library_Function\t@Bean\tB-Code_Block\nmethod\tO\tmethod\tO\nif\tO\tif\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnamed\tO\tnamed\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofiles\tB-Library_Variable\tprofiles\tO\nis\tO\tis\tO\nactive\tB-Value\tactive\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSpring\tB-Library_Class\tSpring\tO\nEnvironment\tI-Library_Class\tEnvironment\tB-Code_Block\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nApplicationContext\tB-Library_Class\tApplicationContext\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nannotation\tO\tannotation\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndirectly\tO\tdirectly\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\ntesting\tO\ttesting\tO\n:\tO\t:\tO\n@Profile\tB-Library_Class\t@Profile\tB-Code_Block\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\non\tO\ton\tO\na\tO\ta\tO\ntest\tO\ttest\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\n@ActiveProfiles\tB-Library_Class\t@ActiveProfiles\tB-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\ndesignate\tO\tdesignate\tO\nwhich\tO\twhich\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofiles\tO\tprofiles\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\nthose\tO\tthose\tO\ndeclared\tO\tdeclared\tO\nvia\tO\tvia\tO\n@Profile\tB-Library_Class\t@Profile\tB-Code_Block\n)\tO\t)\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nactive\tB-Value\tactive\tO\nwhen\tO\twhen\tO\nloading\tO\tloading\tO\nan\tO\tan\tO\nApplicationContext\tB-Library_Class\tApplicationContext\tB-Code_Block\nfor\tO\tfor\tO\nan\tO\tan\tO\nintegration\tO\tintegration\tO\ntest\tO\ttest\tO\n.\tO\t.\tO\n\t\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthings\tO\tthings\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSpring\tB-Library_Class\tSpring\tO\nEnvironment\tI-Library_Class\tEnvironment\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nassuming\tO\tassuming\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nnone\tO\tnone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSpring\tB-Library\tSpring\tO\nFramework\tI-Library\tFramework\tO\nstates\tO\tstates\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nI\tO\tI\tO\nstated\tO\tstated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\naforementioned\tO\taforementioned\tO\nthread\tO\tthread\tO\n:\tO\t:\tO\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tB-Code_Block\nwas\tO\twas\tO\nintroduced\tO\tintroduced\tO\nin\tO\tin\tO\nSpring\tB-Library\tSpring\tO\nFramework\tI-Library\tFramework\tO\n2.0\tB-Version\t2.0\tO\n,\tO\t,\tO\nlong\tO\tlong\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nnotion\tO\tnotion\tO\nof\tO\tof\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofiles\tO\tprofiles\tO\n,\tO\t,\tO\nand\tO\tand\tO\n@ActiveProfiles\tB-Library_Class\t@ActiveProfiles\tB-Code_Block\nwas\tO\twas\tO\nfirst\tO\tfirst\tO\nintroduced\tO\tintroduced\tO\nin\tO\tin\tO\nSpring\tB-Library\tSpring\tO\nFramework\tI-Library\tFramework\tO\n3.1\tB-Version\t3.1\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\naforementioned\tO\taforementioned\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nI\tO\tI\tO\nalso\tO\talso\tO\npointed\tO\tpointed\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nterm\tO\tterm\tO\n'\tO\t'\tO\nprofile\tB-Library_Variable\tprofile\tO\n'\tO\t'\tO\nis\tO\tis\tO\nperhaps\tO\tperhaps\tO\nmisleading\tO\tmisleading\tO\nwhen\tO\twhen\tO\nconsidering\tO\tconsidering\tO\nthe\tO\tthe\tO\nsemantics\tO\tsemantics\tO\nfor\tO\tfor\tO\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nkey\tO\tkey\tO\nis\tO\tis\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\n'\tO\t'\tO\ntest\tO\ttest\tO\ngroups\tO\tgroups\tO\n'\tO\t'\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nthose\tO\tthose\tO\nin\tO\tin\tO\nTestNG\tB-Library\tTestNG\tO\n)\tO\t)\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n'\tO\t'\tO\nprofiles\tB-Library_Variable\tprofiles\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nexamples\tO\texamples\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJavaDoc\tO\tJavaDoc\tO\nfor\tO\tfor\tO\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThat\tO\tThat\tO\ndepends\tO\tdepends\tO\n,\tO\t,\tO\nand\tO\tand\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofile\tB-Library_Variable\tprofile\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nsay\tO\tsay\tO\n\"\tO\t\"\tO\nprofile\tB-Library_Variable\tprofile\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\n@ActiveProfiles\tB-Library_Class\t@ActiveProfiles\tB-Code_Block\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofiles\tO\tprofiles\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntests\tO\ttests\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\ncurrently\tO\tcurrently\tO\nuse\tO\tuse\tO\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tB-Code_Block\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nif\tO\tif\tO\na\tO\ta\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofile\tB-Library_Class\tprofile\tO\nis\tO\tis\tO\nactive\tB-Value\tactive\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofiles\tB-Library_Variable\tprofiles\tO\nconfigured\tO\tconfigured\tO\nvia\tO\tvia\tO\n@ActiveProfiles\tB-Library_Class\t@ActiveProfiles\tB-Code_Block\nare\tO\tare\tO\nset\tO\tset\tO\ndirectly\tO\tdirectly\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\n's\tO\t's\tO\nApplicationContext\tB-Library_Class\tApplicationContext\tB-Code_Block\nand\tO\tand\tO\nnot\tO\tnot\tO\nas\tO\tas\tO\na\tO\ta\tO\nJava\tB-Language\tJava\tO\nsystem\tO\tsystem\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofiles\tO\tprofiles\tO\nonly\tO\tonly\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nspring.profiles.active\tB-Library_Variable\tspring.profiles.active\tB-Code_Block\nsystem\tO\tsystem\tO\nproperty\tO\tproperty\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tB-Code_Block\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nif\tO\tif\tO\na\tO\ta\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofile\tB-Library_Variable\tprofile\tO\nis\tO\tis\tO\nactive\tB-Value\tactive\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tB-Code_Block\nin\tO\tin\tO\nfact\tO\tfact\tO\nworks\tO\tworks\tO\nwith\tO\twith\tO\nsystem\tO\tsystem\tO\nproperties\tO\tproperties\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4699\tI-Code_Block\tA_4699\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThat\tO\tThat\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nsince\tO\tsince\tO\nactiveProfiles\tB-Value\tactiveProfiles\tB-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nincorrect\tO\tincorrect\tO\nproperty\tO\tproperty\tO\nname\tB-Library_Variable\tname\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncorrect\tO\tcorrect\tO\nsystem\tO\tsystem\tO\nproperty\tO\tproperty\tO\nname\tO\tname\tO\nis\tO\tis\tO\nspring.profiles.active\tB-Library_Variable\tspring.profiles.active\tB-Code_Block\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nAbstractEnvironment.ACTIVE_PROFILES_PROPERTY_NAME\tB-Library_Variable\tAbstractEnvironment.ACTIVE_PROFILES_PROPERTY_NAME\tB-Code_Block\nfor\tO\tfor\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nharmony\tO\tharmony\tO\nwith\tO\twith\tO\n@ActiveProfiles\tB-Library_Class\t@ActiveProfiles\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nknown\tO\tknown\tO\nissue\tO\tissue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nSpring\tB-Library\tSpring\tO\nteam\tO\tteam\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nconsult\tO\tconsult\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nJIRA\tB-Application\tJIRA\tO\nissues\tO\tissues\tO\nfor\tO\tfor\tO\nfurther\tO\tfurther\tO\ndetails\tO\tdetails\tO\nand\tO\tand\tO\nto\tO\tto\tO\njoin\tO\tjoin\tO\nin\tO\tin\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndiscussions\tO\tdiscussions\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nhttps://jira.spring.io/browse/SPR-7754\tO\thttps://jira.spring.io/browse/SPR-7754\tO\n\t\nhttps://jira.spring.io/browse/SPR-8982\tO\thttps://jira.spring.io/browse/SPR-8982\tO\n\t\nhttps://jira.spring.io/browse/SPR-11677\tO\thttps://jira.spring.io/browse/SPR-11677\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nclarifies\tO\tclarifies\tO\nthe\tO\tthe\tO\nsituation\tO\tsituation\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nSam\tB-User_Name\tSam\tO\n(\tO\t(\tO\nauthor\tO\tauthor\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nSpring\tO\tSpring\tO\nTestContext\tO\tTestContext\tO\nFramework\tO\tFramework\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33016848\tO\t33016848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33016848/\tO\thttps://stackoverflow.com/questions/33016848/\tO\n\t\n\t\nSam\tB-User_Name\tSam\tO\nnailed\tO\tnailed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nAs\tO\tAs\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\naccepted\tO\taccepted\tO\nand\tO\tand\tO\nanswered\tO\tanswered\tO\nyears\tO\tyears\tO\nback\tO\tback\tO\n)\tO\t)\tO\n\t\nOne\tO\tOne\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nSystem\tO\tSystem\tO\nProperties\tO\tProperties\tO\nthrough\tO\tthrough\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ntest\tO\ttest\tO\n,\tO\t,\tO\nhaving\tO\thaving\tO\nthem\tO\tthem\tO\npropagate\tO\tpropagate\tO\nthrough\tO\tthrough\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nJVM\tB-Application\tJVM\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nbuild\tO\tbuild\tO\ntool\tO\ttool\tO\nlike\tO\tlike\tO\ngradle\tB-Application\tgradle\tO\nmay\tO\tmay\tO\nrequire\tO\trequire\tO\nan\tO\tan\tO\nadditional\tO\tadditional\tO\nstep\tO\tstep\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6932\tI-Code_Block\tA_6932\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nbusiness\tO\tbusiness\tO\nas\tO\tas\tO\nusual\tO\tusual\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nintegration\tO\tintegration\tO\ntest\tO\ttest\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6933\tI-Code_Block\tA_6933\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFinally\tO\tFinally\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nexecute\tO\texecute\tO\nyour\tO\tyour\tO\ntests\tO\ttests\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nterminal\tB-Application\tterminal\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\nyou\tO\tyou\tO\nspecified\tO\tspecified\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6934\tI-Code_Block\tA_6934\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nthing\tO\tthing\tO\nI\tO\tI\tO\nlike\tO\tlike\tO\nmost\tO\tmost\tO\nabout\tO\tabout\tO\n@IfProfileValue\tB-Library_Class\t@IfProfileValue\tB-Code_Block\nover\tO\tover\tO\ngrabbing\tO\tgrabbing\tO\nthe\tO\tthe\tO\nSystem.property\tB-Library_Variable\tSystem.property\tO\nand\tO\tand\tO\nchecking\tO\tchecking\tO\nassumeTrue/False\tB-Value\tassumeTrue/False\tB-Code_Block\nmanually\tO\tmanually\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nno\tO\tno\tO\nSpring\tB-Library\tSpring\tO\nContext\tO\tContext\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\n(\tO\t(\tO\nor\tO\tor\tO\nflyway/other\tO\tflyway/other\tO\nmigrations\tO\tmigrations\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\n)\tO\t)\tO\nkeeping\tO\tkeeping\tO\nunit\tO\tunit\tO\ntests\tO\ttests\tO\nfast\tO\tfast\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37170941\tO\t37170941\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37170941/\tO\thttps://stackoverflow.com/questions/37170941/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nForm1\tB-Class_Name\tForm1\tB-Code_Block\nwithDataGridView`\tB-Library_Class\twithDataGridView`\tI-Code_Block\nwhich\tO\twhich\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n:\tO\t:\tO\n\t\nID\tB-Class_Name\tID\tO\n\t\nNAME\tB-Class_Name\tNAME\tO\n\t\nSHORT\tB-Class_Name\tSHORT\tO\nDESCRIPTION\tI-Class_Name\tDESCRIPTION\tO\n\t\nDESCRIPTION\tB-Class_Name\tDESCRIPTION\tO\n\t\nAlso\tO\tAlso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nthat\tO\tthat\tO\nopens\tO\topens\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nForm2\tB-Class_Name\tForm2\tB-Code_Block\nthat\tO\tthat\tO\nhas\tO\thas\tO\nseveral\tO\tseveral\tO\ntextboxes\tB-Class_Name\ttextboxes\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\npass\tO\tpass\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nform\tO\tform\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nform\tB-User_Interface_Element\tform\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\ntextBox1\tB-Class_Name\ttextBox1\tO\nof\tO\tof\tO\nForm2\tB-Class_Name\tForm2\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nID\tB-Class_Name\tID\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nDataGridView\tB-Library_Class\tDataGridView\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nworks\tO\tworks\tO\nsame\tO\tsame\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n(\tO\t(\tO\ntextbox2\tB-Class_Name\ttextbox2\tO\nto\tO\tto\tO\nNAME\tB-Class_Name\tNAME\tO\n..\tO\t..\tO\ntextbox4\tO\ttextbox4\tO\nto\tO\tto\tO\nDESCRIPTION\tB-Class_Name\tDESCRIPTION\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4627\tI-Code_Block\tQ_4627\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n//\tO\t//\tO\nForm2\tB-Class_Name\tForm2\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4628\tI-Code_Block\tQ_4628\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n\\Form1\tB-Class_Name\t\\Form1\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4629\tI-Code_Block\tQ_4629\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\ncorrect\tO\tcorrect\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37170941\tO\t37170941\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37170941/\tO\thttps://stackoverflow.com/questions/37170941/\tO\n\t\n\t\nYou\tO\tYou\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nForm1\tB-Class_Name\tForm1\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nMove\tO\tMove\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nor\tO\tor\tO\nevent\tO\tevent\tO\nhandler\tO\thandler\tO\n,\tO\t,\tO\nas\tO\tas\tO\nForm_Load\tB-Function_Name\tForm_Load\tB-Code_Block\nor\tO\tor\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nform\tB-Library_Class\tform\tO\nconstructor\tO\tconstructor\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5357\tI-Code_Block\tA_5357\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEdit\tO\tEdit\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nyour\tO\tyour\tO\nForm2\tB-Class_Name\tForm2\tB-Code_Block\nshould\tO\tshould\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nmc\tB-Variable_Name\tmc\tB-Code_Block\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nat\tO\tat\tO\nclass\tO\tclass\tO\nlevel\tO\tlevel\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nis\tO\tis\tO\naccessible\tO\taccessible\tO\nfrom\tO\tfrom\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5358\tI-Code_Block\tA_5358\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\nsave\tO\tsave\tO\nyour\tO\tyour\tO\nobject\tO\tobject\tO\non\tO\ton\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nclick\tO\tclick\tO\nand\tO\tand\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nmoment\tO\tmoment\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9973671\tO\t9973671\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9973671/\tO\thttps://stackoverflow.com/questions/9973671/\tO\n\t\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\njQuery\tB-Library\tjQuery\tO\ncombobox\tB-Library_Function\tcombobox\tO\n(\tO\t(\tO\nfiddle\tB-Application\tfiddle\tO\n)\tO\t)\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nMozilla\tB-Application\tMozilla\tO\nFirefox\tI-Application\tFirefox\tO\naddon\tO\taddon\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nAMO\tB-Application\tAMO\tO\neditors\tI-Application\teditors\tO\nrejected\tO\trejected\tO\nmy\tO\tmy\tO\nAddon\tB-Application\tAddon\tO\nafter\tO\tafter\tO\nreviewing\tO\treviewing\tO\nstating\tO\tstating\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\njavascript\tB-Language\tjavascript\tO\ndoes\tO\tdoes\tO\nunsafe\tO\tunsafe\tO\nHTML\tB-Language\tHTML\tO\ninsertion\tO\tinsertion\tO\nwith\tO\twith\tO\nunsanitized\tO\tunsanitized\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nParts\tO\tParts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nstated\tO\tstated\tO\nas\tO\tas\tO\nunsafe\tO\tunsafe\tO\nall\tO\tall\tO\nbelong\tO\tbelong\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nofficial\tO\tofficial\tO\njQuery\tB-Library\tjQuery\tO\nUi\tI-Library\tUi\tO\npage\tO\tpage\tO\nfor\tO\tfor\tO\ncombobox\tB-Library_Function\tcombobox\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nwriting\tO\twriting\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nRemoving\tO\tRemoving\tO\nthis\tO\tthis\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nthrows\tO\tthrows\tO\nerror\tO\terror\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncombobox\tB-Library_Function\tcombobox\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmakes\tO\tmakes\tO\nme\tO\tme\tO\nwonder\tO\twonder\tO\nwhy\tO\twhy\tO\ncombobox\tB-Library_Function\tcombobox\tB-Code_Block\nis\tO\tis\tO\nn't\tO\tn't\tO\nalready\tO\talready\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\njQuery\tB-Library\tjQuery\tO\nand\tO\tand\tO\nwhy\tO\twhy\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthis\tO\tthis\tO\nsnippet\tO\tsnippet\tO\ninside\tO\tinside\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nanything\tO\tanything\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\nofficial\tO\tofficial\tO\njquery\tB-Library\tjquery\tO\npage\tO\tpage\tO\nsafe\tO\tsafe\tO\nand\tO\tand\tO\nsanitized\tO\tsanitized\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_865\tI-Code_Block\tQ_865\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42315302\tO\t42315302\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42315302/\tO\thttps://stackoverflow.com/questions/42315302/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nsome\tO\tsome\tO\ncertain\tO\tcertain\tO\ninformation\tO\tinformation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirebase\tB-Application\tfirebase\tO\nrealtime\tI-Application\trealtime\tO\ndatabase\tI-Application\tdatabase\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ndatabase\tO\tdatabase\tO\nstructure\tO\tstructure\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5389\tI-Code_Block\tQ_5389\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\ncondition\tO\tcondition\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nSQL\tB-Language\tSQL\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5390\tI-Code_Block\tQ_5390\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nusing\tO\tusing\tO\nRuby\tB-Language\tRuby\tO\nor\tO\tor\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\ntheir\tO\ttheir\tO\nREST\tB-Library\tREST\tO\nAPI\tI-Library\tAPI\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42315302\tO\t42315302\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42315302/\tO\thttps://stackoverflow.com/questions/42315302/\tO\n\t\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndivided\tO\tdivided\tO\ninto\tO\tinto\tO\ntwo\tO\ttwo\tO\nsteps\tO\tsteps\tO\n.\tO\t.\tO\n\t\nStep\tO\tStep\tO\n1)\tO\t1)\tO\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nrules\tO\trules\tO\nin\tO\tin\tO\nfirebase\tB-Application\tfirebase\tO\nDatabase\tI-Application\tDatabase\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\nalready\tO\talready\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6081\tI-Code_Block\tA_6081\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nStep\tO\tStep\tO\n2)\tO\t2)\tO\nTo\tO\tTo\tO\nfetch\tO\tfetch\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nfirebase\tB-Application\tfirebase\tO\nDatabase\tI-Application\tDatabase\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrest\tB-Library\trest\tO\nAPI\tI-Library\tAPI\tO\nrequest\tO\trequest\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6082\tI-Code_Block\tA_6082\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15909728\tO\t15909728\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15909728/\tO\thttps://stackoverflow.com/questions/15909728/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nOracle\tB-Application\tOracle\tO\n11G\tB-Version\t11G\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nstring\tB-Data_Type\tstring\tO\n:\tO\t:\tO\nI\tB-Value\tI\tB-Code_Block\n-\tI-Value\t-\tI-Code_Block\nAm\tI-Value\tAm\tI-Code_Block\nin\tI-Value\tin\tI-Code_Block\n-\tI-Value\t-\tI-Code_Block\nNeed\tI-Value\tNeed\tI-Code_Block\nHelp\tI-Value\tHelp\tI-Code_Block\n-\tI-Value\t-\tI-Code_Block\nPlease\tI-Value\tPlease\tI-Code_Block\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n-\tB-Value\t-\tB-Code_Block\ncharacter\tB-Data_Type\tcharacter\tO\nthen\tO\tthen\tO\nselect\tO\tselect\tO\neverything\tO\teverything\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nplaying\tO\tplaying\tO\naround\tO\taround\tO\nwith\tO\twith\tO\nREGEXP_REPLACE\tB-Library_Function\tREGEXP_REPLACE\tB-Code_Block\nand\tO\tand\tO\nSUBSTR\tB-Library_Function\tSUBSTR\tB-Code_Block\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nobject\tO\tobject\tO\nbut\tO\tbut\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\neverything\tO\teverything\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\n*\tB-Value\t*\tO\nsomewhere\tO\tsomewhere\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nsyntax\tO\tsyntax\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1571\tI-Code_Block\tQ_1571\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\nquery\tO\tquery\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nobject\tO\tobject\tO\n'\tB-Value\t'\tO\nAm\tI-Value\tAm\tO\nin\tI-Value\tin\tO\n'\tB-Value\t'\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthis\tO\tthis\tO\nreturned\tO\treturned\tO\n'\tB-Value\t'\tO\nNeed\tI-Value\tNeed\tO\nof\tI-Value\tof\tO\nHelp\tI-Value\tHelp\tO\n-\tI-Value\t-\tO\nPlease\tI-Value\tPlease\tO\n'\tB-Value\t'\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nimportant\tO\timportant\tO\nto\tO\tto\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\n-\tB-Value\t-\tB-Code_Block\ncharacter\tB-Data_Type\tcharacter\tO\ndirectly\tO\tdirectly\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\neither\tO\teither\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nthird\tO\tthird\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15909728\tO\t15909728\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15909728/\tO\thttps://stackoverflow.com/questions/15909728/\tO\n\t\n\t\nSince\tO\tSince\tO\n[\tB-Value\t[\tB-Code_Block\n^-\tI-Value\t^-\tI-Code_Block\n]\tI-Value\t]\tI-Code_Block\nwill\tO\twill\tO\nonly\tO\tonly\tO\nmatch\tO\tmatch\tO\nnon-hyphen\tO\tnon-hyphen\tO\ncharacters\tB-Data_Type\tcharacters\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nmatch\tO\tmatch\tO\ngroup\tO\tgroup\tO\nwill\tO\twill\tO\nstart\tO\tstart\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nhyphen\tB-Value\thyphen\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nstop\tO\tstop\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ncapture\tO\tcapture\tO\neverything\tO\teverything\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nhyphen\tB-Value\thyphen\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2062\tI-Code_Block\tA_2062\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47377510\tO\t47377510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47377510/\tO\thttps://stackoverflow.com/questions/47377510/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nPHP\tB-Language\tPHP\tO\nCode\tO\tCode\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6285\tI-Code_Block\tQ_6285\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\njust\tO\tjust\tO\nget\tO\tget\tO\nvalues\tO\tvalues\tO\nspecific\tO\tspecific\tO\nrange\tO\trange\tO\nof\tO\tof\tO\nindex\tO\tindex\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nprevious\tO\tprevious\tO\narrays\tB-Data_Structure\tarrays\tO\nvalues\tO\tvalues\tO\nwith\tO\twith\tO\nthese\tO\tthese\tO\nnew\tO\tnew\tO\nvalues.Something\tO\tvalues.Something\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6286\tI-Code_Block\tQ_6286\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nresult\tO\tresult\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6287\tI-Code_Block\tQ_6287\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nseparate\tO\tseparate\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narray($my_arr)\tB-Data_Structure\tarray($my_arr)\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nspecified\tO\tspecified\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nindexes\tO\tindexes\tO\nand\tO\tand\tO\neverywhere\tO\teverywhere\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nall\tO\tall\tO\nprevious\tO\tprevious\tO\narray($my_arr)\tB-Data_Structure\tarray($my_arr)\tO\nvalues\tO\tvalues\tO\nwith\tO\twith\tO\nthese\tO\tthese\tO\nnew\tO\tnew\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\n**\tO\t**\tO\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nwere\tO\twere\tO\nnot\tO\tnot\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nindexes\tO\tindexes\tO\n,\tO\t,\tO\nOther\tO\tOther\tO\nindexes\tO\tindexes\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nspecified\tO\tspecified\tO\nrange\tO\trange\tO\nfor\tO\tfor\tO\nindex\tO\tindex\tO\nnumbers\tO\tnumbers\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nreplaced\tO\treplaced\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nreturn\tO\treturn\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nindexes\tO\tindexes\tO\nbetween\tO\tbetween\tO\n0\tB-Value\t0\tO\nand\tO\tand\tO\n4($my_arr[0]....$my_arr[4])\tB-Value\t4($my_arr[0]....$my_arr[4])\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nvalue\tO\tvalue\tO\nleave\tO\tleave\tO\nempty\tO\tempty\tO\nor\tO\tor\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nreturn\tO\treturn\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47377510\tO\t47377510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47377510/\tO\thttps://stackoverflow.com/questions/47377510/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsolution\tO\tsolution\tO\nafter\tO\tafter\tO\nseveral\tO\tseveral\tO\ntests\tO\ttests\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6913\tI-Code_Block\tA_6913\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47377510\tO\t47377510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47377510/\tO\thttps://stackoverflow.com/questions/47377510/\tO\n\t\n\t\narray_slice\tB-Function_Name\tarray_slice\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6907\tI-Code_Block\tA_6907\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSince\tO\tSince\tO\nyour\tO\tyour\tO\narray\tB-Data_Structure\tarray\tO\ncontains\tO\tcontains\tO\nmixed\tO\tmixed\tO\nkeys\tO\tkeys\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nfirst\tO\tfirst\tO\nsort\tO\tsort\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nnumeric\tO\tnumeric\tO\nkeys\tO\tkeys\tO\nwould\tO\twould\tO\nappear\tO\tappear\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6908\tI-Code_Block\tA_6908\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOutput\tO\tOutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6909\tI-Code_Block\tA_6909\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nManual\tO\tManual\tO\narray_slice\tB-Library_Function\tarray_slice\tO\n\t\nManual\tO\tManual\tO\nksort\tB-Library_Function\tksort\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24275945\tO\t24275945\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24275945/\tO\thttps://stackoverflow.com/questions/24275945/\tO\n\t\n\t\nassume\tO\tassume\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndataset\tB-Data_Structure\tdataset\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2700\tI-Code_Block\tQ_2700\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nsql\tB-Language\tsql\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndatasource\tO\tdatasource\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndateStart\tB-Variable_Name\tdateStart\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndateEnd\tB-Variable_Name\tdateEnd\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthe\tO\tthe\tO\nyear\tO\tyear\tO\nand\tO\tand\tO\nmonth\tO\tmonth\tO\ngrouping\tO\tgrouping\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2701\tI-Code_Block\tQ_2701\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nhard\tO\thard\tO\ntime\tO\ttime\tO\nwrapping\tO\twrapping\tO\nmy\tO\tmy\tO\nhead\tO\thead\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24275945\tO\t24275945\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24275945/\tO\thttps://stackoverflow.com/questions/24275945/\tO\n\t\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ntabled-valued\tO\ttabled-valued\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\nthe\tO\tthe\tO\n2\tO\t2\tO\ndates\tO\tdates\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nyear\tO\tyear\tO\nand\tO\tand\tO\nmonth\tO\tmonth\tO\nas\tO\tas\tO\na\tO\ta\tO\ntable\tB-Data_Structure\ttable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3318\tI-Code_Block\tA_3318\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3319\tI-Code_Block\tA_3319\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nreturns\tO\treturns\tO\n:\tO\t:\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\njoin\tO\tjoin\tO\nto\tO\tto\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nget\tO\tget\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3320\tI-Code_Block\tA_3320\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24275945\tO\t24275945\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24275945/\tO\thttps://stackoverflow.com/questions/24275945/\tO\n\t\n\t\nI\tO\tI\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\neasiest\tO\teasiest\tO\nto\tO\tto\tO\napproach\tO\tapproach\tO\nthese\tO\tthese\tO\nproblems\tO\tproblems\tO\nby\tO\tby\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nintegers\tB-Data_Type\tintegers\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nusing\tO\tusing\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nincrement\tO\tincrement\tO\nthe\tO\tthe\tO\ndates\tO\tdates\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3317\tI-Code_Block\tA_3317\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29857985\tO\t29857985\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29857985/\tO\thttps://stackoverflow.com/questions/29857985/\tO\n\t\n\t\nA\tO\tA\tO\nScalaTest\tB-Application\tScalaTest\tO\nsuite\tO\tsuite\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3575\tI-Code_Block\tQ_3575\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsbt\tB-Application\tsbt\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\nsetting\tO\tsetting\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3576\tI-Code_Block\tQ_3576\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3577\tI-Code_Block\tQ_3577\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFinally\tO\tFinally\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3578\tI-Code_Block\tQ_3578\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nusing\tO\tusing\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nattempts\tO\tattempts\tO\nthe\tO\tthe\tO\nSystem.getProperty\tB-Library_Function\tSystem.getProperty\tO\ncomes\tO\tcomes\tO\nup\tO\tup\tO\nblank\tO\tblank\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\napproach\tO\tapproach\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nwork\tO\twork\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nScalaTest\tB-Application\tScalaTest\tO\nfrom\tO\tfrom\tO\nwithin\tO\twithin\tO\nIntellij\tB-Application\tIntellij\tO\nand\tO\tand\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nJVM\tB-Application\tJVM\tO\nparameters\tO\tparameters\tO\nto\tO\tto\tO\n-Dmy.command-line.property\tB-Code_Block\t-Dmy.command-line.property\tO\n=\tI-Code_Block\t=\tO\nfoo\tI-Code_Block\tfoo\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nRun\tO\tRun\tO\nConfiguration\tO\tConfiguration\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29857985\tO\t29857985\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29857985/\tO\thttps://stackoverflow.com/questions/29857985/\tO\n\t\n\t\nThis\tO\tThis\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4904\tI-Code_Block\tA_4904\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4905\tI-Code_Block\tA_4905\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29857985\tO\t29857985\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29857985/\tO\thttps://stackoverflow.com/questions/29857985/\tO\n\t\n\t\nYour\tO\tYour\tO\nthird\tO\tthird\tO\nway\tO\tway\tO\nalmost\tO\talmost\tO\nworks\tO\tworks\tO\n(\tO\t(\tO\nif\tO\tif\tO\nfork\tB-Code_Block\tfork\tB-Code_Block\nin\tI-Code_Block\tin\tI-Code_Block\nTest\tI-Code_Block\tTest\tI-Code_Block\n:=\tI-Code_Block\t:=\tI-Code_Block\ntrue\tI-Code_Block\ttrue\tI-Code_Block\nis\tO\tis\tO\nset\tO\tset\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nfirst\tO\tfirst\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5831\tI-Code_Block\tA_5831\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27059843\tO\t27059843\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27059843/\tO\thttps://stackoverflow.com/questions/27059843/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nDynamic\tO\tDynamic\tO\nUrl\tO\tUrl\tO\nwith\tO\twith\tO\noptional\tO\toptional\tO\nparameter\tO\tparameter\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\nIf\tO\tIf\tO\nmy\tO\tmy\tO\nurl\tO\turl\tO\nis\tO\tis\tO\nas\tO\tas\tO\nwww.example.com/getTest/1/\tO\twww.example.com/getTest/1/\tO\n\t\nNow\tO\tNow\tO\nthis\tO\tthis\tO\n1\tO\t1\tB-Code_Block\nin\tO\tin\tO\nurl\tO\turl\tO\nis\tO\tis\tO\noptional\tO\toptional\tO\n,\tO\t,\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nviews\tO\tviews\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nNone\tB-Variable_Name\tNone\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3104\tI-Code_Block\tQ_3104\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThus\tO\tThus\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nid\tO\tid\tO\nin\tO\tin\tO\nURL\tO\tURL\tO\nthen\tO\tthen\tO\nstill\tO\tstill\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfacing\tO\tfacing\tO\nissue\tO\tissue\tO\nwhile\tO\twhile\tO\ntesting\tO\ttesting\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nunit\tO\tunit\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nurl\tO\turl\tO\nas\tO\tas\tO\nurl\tB-Code_Block\turl\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nreverse\tI-Code_Block\treverse\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n'yescourse:academypage_url'\tI-Code_Block\t'yescourse:academypage_url'\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nargs\tI-Code_Block\targs\tI-Code_Block\n=[\tI-Code_Block\t=[\tI-Code_Block\nNone]\tI-Code_Block\tNone]\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nit\tO\tit\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\t\nNoReverseMatch\tB-Error_Name\tNoReverseMatch\tB-Code_Block\n:\tO\t:\tI-Code_Block\nReverse\tB-Output_Block\tReverse\tI-Code_Block\nfor\tI-Output_Block\tfor\tI-Code_Block\n'\tI-Output_Block\t'\tI-Code_Block\nacademypage_url\tI-Output_Block\tacademypage_url\tI-Code_Block\n'\tB-Output_Block\t'\tB-Code_Block\nwith\tI-Output_Block\twith\tI-Code_Block\narguments\tI-Output_Block\targuments\tI-Code_Block\n'\tI-Output_Block\t'\tI-Code_Block\n(\tB-Output_Block\t(\tB-Code_Block\n'\tB-Output_Block\t'\tB-Code_Block\nnew\tI-Output_Block\tnew\tI-Code_Block\n'\tB-Output_Block\t'\tB-Code_Block\n,\tI-Output_Block\t,\tI-Code_Block\nNone\tI-Output_Block\tNone\tI-Code_Block\n)\tI-Output_Block\t)\tI-Code_Block\n'\tB-Output_Block\t'\tB-Code_Block\nand\tI-Output_Block\tand\tI-Code_Block\nkeyword\tI-Output_Block\tkeyword\tI-Code_Block\narguments\tI-Output_Block\targuments\tI-Code_Block\n'{}'\tI-Output_Block\t'{}'\tI-Code_Block\nnot\tI-Output_Block\tnot\tI-Code_Block\nfound\tI-Output_Block\tfound\tI-Code_Block\n.\tI-Output_Block\t.\tI-Code_Block\n\t\nSo\tO\tSo\tO\nPlease\tO\tPlease\tO\nTell\tO\tTell\tO\nme\tO\tme\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nhandle\tO\thandle\tO\nthese\tO\tthese\tO\noptional\tO\toptional\tO\nurl\tO\turl\tO\nin\tO\tin\tO\nTest\tO\tTest\tO\ncases\tO\tcases\tO\nor\tO\tor\tO\nin\tO\tin\tO\nReverse\tB-Library_Class\tReverse\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3105\tI-Code_Block\tQ_3105\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27059843\tO\t27059843\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27059843/\tO\thttps://stackoverflow.com/questions/27059843/\tO\n\t\n\t\nYou\tO\tYou\tO\nmade\tO\tmade\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nfunction\tO\tfunction\tO\n's\tO\t's\tO\nid\tB-Library_Variable\tid\tB-Code_Block\nparameter\tO\tparameter\tO\noptional\tO\toptional\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\noptional\tO\toptional\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\npattern\tO\tpattern\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nfirsty\tO\tfirsty\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrewrite\tO\trewrite\tO\nyour\tO\tyour\tO\npattern\tO\tpattern\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3738\tI-Code_Block\tA_3738\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n=>\tO\t=>\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\n'\tO\t'\tO\nid\tB-Library_Variable\tid\tO\n'\tO\t'\tO\nsub-pattern\tO\tsub-pattern\tO\nis\tO\tis\tO\noptional\tO\toptional\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nmatch\tO\tmatch\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nnumerics\tO\tnumerics\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\ndone\tO\tdone\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreverse\tO\treverse\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nby\tO\tby\tO\nnot\tO\tnot\tO\npassing\tO\tpassing\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nargs\tB-Library_Variable\targs\tB-Code_Block\nnor\tO\tnor\tO\nkwargs\tB-Library_Variable\tkwargs\tB-Code_Block\narguments\tO\targuments\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3739\tI-Code_Block\tA_3739\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\nby\tO\tby\tO\npassing\tO\tpassing\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\nlist\tB-Data_Structure\tlist\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3740\tI-Code_Block\tA_3740\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\nby\tO\tby\tO\npassing\tO\tpassing\tO\nNone\tB-Value\tNone\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3741\tI-Code_Block\tA_3741\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nby\tO\tby\tO\npassing\tO\tpassing\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\ncontaining\tO\tcontaining\tO\nNone\tB-Value\tNone\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41258578\tO\t41258578\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41258578/\tO\thttps://stackoverflow.com/questions/41258578/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncontroller\tO\tcontroller\tO\n\"\tO\t\"\tO\nfront\tO\tfront\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\ncontroller\tO\tcontroller\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nerror\tO\terror\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41258578\tO\t41258578\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41258578/\tO\thttps://stackoverflow.com/questions/41258578/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\ncatch\tO\tcatch\tO\nthe\tO\tthe\tO\nException\tB-Library_Class\tException\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5904\tI-Code_Block\tA_5904\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40469483\tO\t40469483\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40469483/\tO\thttps://stackoverflow.com/questions/40469483/\tO\n\t\n\t\nAll\tO\tAll\tO\nhttp\tO\thttp\tO\nsecurity\tO\tsecurity\tO\nis\tO\tis\tO\napplied\tO\tapplied\tO\nat\tO\tat\tO\nstartup\tO\tstartup\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5111\tI-Code_Block\tQ_5111\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDuring\tO\tDuring\tO\nruntime\tO\truntime\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nmore\tO\tmore\tO\nto\tO\tto\tO\nit\tO\tit\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5112\tI-Code_Block\tQ_5112\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nthat\tO\tthat\tO\nline\tO\tline\tO\nis\tO\tis\tO\nexecuted\tO\texecuted\tO\n,\tO\t,\tO\nit\tO\tit\tO\nadds\tO\tadds\tO\nit\tO\tit\tO\nto\tO\tto\tO\nhttp.authorizeRequests()'s\tB-Library_Function\thttp.authorizeRequests()'s\tO\nbut\tO\tbut\tO\n/bla\tO\t/bla\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\naccessible\tO\taccessible\tO\nby\tO\tby\tO\n\"\tO\t\"\tO\nnon\tO\tnon\tO\nadmins\tO\tadmins\tO\n\"\tO\t\"\tO\n\t\nWhen\tO\tWhen\tO\nserver\tB-Application\tserver\tO\nis\tO\tis\tO\nrestarted\tO\trestarted\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nchange\tO\tchange\tO\ntakes\tO\ttakes\tO\neffect\tO\teffect\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nloading\tO\tloading\tO\nbla\tO\tbla\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nsecurity\tO\tsecurity\tO\ntake\tO\ttake\tO\neffect\tO\teffect\tO\ninstantly\tO\tinstantly\tO\nwithout\tO\twithout\tO\nrestarting\tO\trestarting\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40469483\tO\t40469483\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40469483/\tO\thttps://stackoverflow.com/questions/40469483/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndynamicaly\tO\tdynamicaly\tO\nchange\tO\tchange\tO\na\tO\ta\tO\nspring\tB-Library\tspring\tO\nbean\tO\tbean\tO\nat\tO\tat\tO\nruntime\tO\truntime\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nhard\tO\thard\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\ntools\tO\ttools\tO\nlike\tO\tlike\tO\nspring-loaded\tB-Library\tspring-loaded\tO\nor\tO\tor\tO\nJRebel\tB-Library\tJRebel\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nSO\tB-Website\tSO\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nUpdate\tO\tUpdate\tO\nspring\tB-Library\tspring\tO\nbeans\tB-Library_Class\tbeans\tO\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\ndynamically\tO\tdynamically\tO\nchange\tO\tchange\tO\nspring\tB-Library\tspring\tO\nbeans\tB-Library_Class\tbeans\tO\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\nreplace\tO\treplace\tO\na\tO\ta\tO\nSpring\tB-Library\tSpring\tO\nbean\tB-Library_Class\tbean\tO\ndefinition\tO\tdefinition\tO\nat\tO\tat\tO\nruntime\tO\truntime\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\napproach\tO\tapproach\tO\n(\tO\t(\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nopinion\tO\topinion\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nspring\tB-Library\tspring\tO\nprofiles\tB-Library_Class\tprofiles\tO\n.\tO\t.\tO\n\t\nDefine\tO\tDefine\tO\na\tO\ta\tO\nbean\tB-Library_Class\tbean\tO\nwith\tO\twith\tO\nauthorisations\tO\tauthorisations\tO\nfor\tO\tfor\tO\n/bla\tO\t/bla\tO\nand\tO\tand\tO\nanother\tB-Library_Class\tanother\tO\nbean\tO\tbean\tO\nwithout\tO\twithout\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\nprofiles\tO\tprofiles\tO\n.\tO\t.\tO\n\t\nsee\tO\tsee\tO\ndynamically\tO\tdynamically\tO\ndeclare\tO\tdeclare\tO\nbeans\tB-Library_Class\tbeans\tO\nat\tO\tat\tO\nruntime\tO\truntime\tO\nin\tO\tin\tO\nSpring\tB-Library\tSpring\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4704802\tO\t4704802\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4704802/\tO\thttps://stackoverflow.com/questions/4704802/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nSphinx\tB-Application\tSphinx\tO\ncharset_table\tB-Data_Structure\tcharset_table\tB-Code_Block\nthat\tO\tthat\tO\nis\tO\tis\tO\nsuitable\tO\tsuitable\tO\nfor\tO\tfor\tO\nnatural\tO\tnatural\tO\nlanguage\tO\tlanguage\tO\n\"\tO\t\"\tO\nalmost\tO\talmost\tO\nall\tO\tall\tO\n\"\tO\t\"\tO\nlanguages\tO\tlanguages\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\n\"\tO\t\"\tO\nalmost\tO\talmost\tO\nall\tO\tall\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nvague\tO\tvague\tO\ndefinition\tO\tdefinition\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nrequirement\tO\trequirement\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nrestated\tO\trestated\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncharset_table\tB-Data_Structure\tcharset_table\tB-Code_Block\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nsuitable\tO\tsuitable\tO\nto\tO\tto\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nlanguage\tO\tlanguage\tO\ncodes\tO\tcodes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_325\tI-Code_Block\tQ_325\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGiven\tO\tGiven\tO\nthose\tO\tthose\tO\nrequirements\tO\trequirements\tO\nwhat\tO\twhat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsuitable\tO\tsuitable\tO\ncharset_table\tB-Data_Structure\tcharset_table\tB-Code_Block\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4704802\tO\t4704802\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4704802/\tO\thttps://stackoverflow.com/questions/4704802/\tO\n\t\n\t\nIf\tO\tIf\tO\none\tO\tone\tO\nof\tO\tof\tO\nMySQL\tB-Application\tMySQL\tO\n's\tO\t's\tO\ncollations\tO\tcollations\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nutf8_general_ci\tB-Value\tutf8_general_ci\tO\n,\tO\t,\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nsuitable\tO\tsuitable\tO\n(\tO\t(\tO\neven\tO\teven\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nMySQL\tB-Application\tMySQL\tO\n)\tO\t)\tO\nor\tO\tor\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ndecent\tO\tdecent\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadapt\tO\tadapt\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nfind\tO\tfind\tO\nthis\tO\tthis\tO\nuseful\tO\tuseful\tO\n:\tO\t:\tO\nhttp://thefsb.wordpress.com/2010/12/\tO\thttp://thefsb.wordpress.com/2010/12/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32917369\tO\t32917369\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32917369/\tO\thttps://stackoverflow.com/questions/32917369/\tO\n\t\n\t\nThe\tO\tThe\tO\ndocs\tO\tdocs\tO\nsays\tO\tsays\tO\nthat\tO\tthat\tO\nnew\tB-Code_Block\tnew\tB-Code_Block\n\"\tO\t\"\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nmutable\tB-Data_Type\tmutable\tO\nvector\tB-Data_Structure\tvector\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\nlength\tO\tlength\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nunsafeNew\tB-Code_Block\tunsafeNew\tB-Code_Block\n\"\tO\t\"\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nmutable\tB-Data_Type\tmutable\tO\nvector\tB-Data_Structure\tvector\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\nlength\tO\tlength\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlength\tO\tlength\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nchecked\tO\tchecked\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nHowever\tO\tHowever\tO\nthis\tO\tthis\tO\nresolved\tO\tresolved\tO\ngithub\tB-Website\tgithub\tO\nissue\tO\tissue\tO\nindicates\tO\tindicates\tO\nthat\tO\tthat\tO\nunsafeNew\tB-Code_Block\tunsafeNew\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nzero\tO\tzero\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nwhile\tO\twhile\tO\nnew\tB-Code_Block\tnew\tB-Code_Block\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\none\tO\tone\tO\nis\tO\tis\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32917369\tO\t32917369\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32917369/\tO\thttps://stackoverflow.com/questions/32917369/\tO\n\t\n\t\nNo\tO\tNo\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nclear\tO\tclear\tO\n:\tO\t:\tO\n\t\nhttps://hackage.haskell.org/package/vector-0.11.0.0/docs/src/Data-Vector-Generic-Mutable.html#new\tO\thttps://hackage.haskell.org/package/vector-0.11.0.0/docs/src/Data-Vector-Generic-Mutable.html#new\tO\n\t\nnew\tB-Code_Block\tnew\tB-Code_Block\nis\tO\tis\tO\nunsafeNew\tB-Code_Block\tunsafeNew\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\naddition\tO\taddition\tO\nof\tO\tof\tO\nbasicInitialize\tB-Code_Block\tbasicInitialize\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11102701\tO\t11102701\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11102701/\tO\thttps://stackoverflow.com/questions/11102701/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nJquery\tB-Library\tJquery\tO\nplugin\tO\tplugin\tO\nSupersized\tB-Application\tSupersized\tO\nand\tO\tand\tO\ni\tO\ti\tO\ncant\tO\tcant\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nMagento\tB-Application\tMagento\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nsustitute\tO\tsustitute\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\n$\tO\t$\tO\nby\tO\tby\tO\njQuery\tB-Library\tjQuery\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nsupersized\tB-Application\tsupersized\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\njQuery.noConflict()\tB-Library_Function\tjQuery.noConflict()\tO\n;\tI-Library_Function\t;\tO\njust\tO\tjust\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\ni\tO\ti\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nhtml\tB-Language\thtml\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\ndoesnt\tO\tdoesnt\tO\nwork\tO\twork\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1024\tI-Code_Block\tQ_1024\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11102701\tO\t11102701\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11102701/\tO\thttps://stackoverflow.com/questions/11102701/\tO\n\t\n\t\nTry\tO\tTry\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1420\tI-Code_Block\tA_1420\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNo\tO\tNo\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nboth\tO\tboth\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1421\tI-Code_Block\tA_1421\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthey\tO\tthey\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11102701\tO\t11102701\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11102701/\tO\thttps://stackoverflow.com/questions/11102701/\tO\n\t\n\t\nNote\tO\tNote\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nany\tO\tany\tO\nfunction\tO\tfunction\tO\nnamed\tO\tnamed\tO\nsupersized()\tB-Library_Function\tsupersized()\tB-Code_Block\nso\tO\tso\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nRead\tO\tRead\tO\nabout\tO\tabout\tO\njQuery\tB-Library\tjQuery\tO\nplugin\tO\tplugin\tO\nmaking\tO\tmaking\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nused\tO\tused\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1417\tI-Code_Block\tA_1417\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1418\tI-Code_Block\tA_1418\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nboth\tO\tboth\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\none\tO\tone\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nare\tO\tare\tO\nsame\tO\tsame\tO\nand\tO\tand\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nyou\tO\tyou\tO\nadded\tO\tadded\tO\njQuery\tB-Library\tjQuery\tO\nlibrary\tO\tlibrary\tO\nfirst\tO\tfirst\tO\n\t\nFull\tO\tFull\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1419\tI-Code_Block\tA_1419\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48688285\tO\t48688285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48688285/\tO\thttps://stackoverflow.com/questions/48688285/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\n‌\tB-Code_Block\t‌\tB-Code_Block\nwith\tI-Code_Block\twith\tI-Code_Block\ninnerHTML\tI-Code_Block\tinnerHTML\tI-Code_Block\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6486\tI-Code_Block\tQ_6486\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6487\tI-Code_Block\tQ_6487\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n‌\tB-Code_Block\t‌\tB-Code_Block\n?\tI-Code_Block\t?\tI-Code_Block\n\t\nalert(document.getElementsByTagName('div')[0].innerHTML)\tB-Library_Function\talert(document.getElementsByTagName('div')[0].innerHTML)\tB-Code_Block\n\t\n<div>This\tB-Code_Block\t<div>This\tB-Code_Block\ndiv\tI-Code_Block\tdiv\tI-Code_Block\ncontains\tI-Code_Block\tcontains\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nzero-width&zwnj;non-joiner,\tI-Code_Block\tzero-width&zwnj;non-joiner,\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nnon-breaking&nbsp;space\tI-Code_Block\tnon-breaking&nbsp;space\tI-Code_Block\n&amp;\tI-Code_Block\t&amp;\tI-Code_Block\nan\tI-Code_Block\tan\tI-Code_Block\nampersand</div>\tI-Code_Block\tampersand</div>\tI-Code_Block\n\t\nFiddle\tB-Application\tFiddle\tO\n:\tO\t:\tO\nhttps://jsfiddle.net/yst1Lanv/\tO\thttps://jsfiddle.net/yst1Lanv/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48688285\tO\t48688285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48688285/\tO\thttps://stackoverflow.com/questions/48688285/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nits\tO\tits\tO\nunicode\tO\tunicode\tO\n\\u200c\tB-Value\t\\u200c\tB-Code_Block\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nreplace\tO\treplace\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n‌\tB-Value\t‌\tB-Code_Block\nstring\tI-Value\tstring\tI-Code_Block\n.\tB-Data_Type\t.\tO\n\t\nalert\tB-Library_Function\talert\tB-Code_Block\n(\tI-Library_Function\t(\tI-Code_Block\ndocument.getElementsByTagName\tB-Library_Function\tdocument.getElementsByTagName\tB-Code_Block\n('div')[0]\tI-Library_Function\t('div')[0]\tI-Code_Block\n.innerHTML.replace\tI-Library_Function\t.innerHTML.replace\tI-Code_Block\n(\tI-Library_Function\t(\tI-Code_Block\n/\tI-Library_Function\t/\tI-Code_Block\n\\u200c/g\tI-Library_Function\t\\u200c/g\tI-Code_Block\n,\tI-Library_Function\t,\tI-Code_Block\n'\tI-Library_Function\t'\tI-Code_Block\n‌'\tI-Library_Function\t‌'\tI-Code_Block\n)\tI-Library_Function\t)\tI-Code_Block\n)\tB-Library_Function\t)\tB-Code_Block\n\t\n<div>This\tB-Code_Block\t<div>This\tB-Code_Block\ndiv\tI-Code_Block\tdiv\tI-Code_Block\ncontains\tI-Code_Block\tcontains\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nzero-width&zwnj;non-joiner,\tI-Code_Block\tzero-width&zwnj;non-joiner,\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nnon-breaking&nbsp;space\tI-Code_Block\tnon-breaking&nbsp;space\tI-Code_Block\n&amp;\tI-Code_Block\t&amp;\tI-Code_Block\nan\tI-Code_Block\tan\tI-Code_Block\nampersand</div>\tI-Code_Block\tampersand</div>\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48688285\tO\t48688285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48688285/\tO\thttps://stackoverflow.com/questions/48688285/\tO\n\t\n\t\nYour\tO\tYour\tO\ncharacter\tB-Data_Type\tcharacter\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nextracted\tO\textracted\tO\n(\tO\t(\tO\ninnerHTML\tB-Library_Variable\tinnerHTML\tB-Code_Block\n)\tO\t)\tO\ntext\tO\ttext\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nnot\tO\tnot\tO\nencoded\tO\tencoded\tO\nas\tO\tas\tO\nits\tO\tits\tO\nHTML\tB-Language\tHTML\tO\nentity\tO\tentity\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\ncharacter\tB-Data_Type\tcharacter\tO\nwith\tO\twith\tO\nits\tO\tits\tO\nentity\tO\tentity\tO\n:\tO\t:\tO\n\t\nalert\tB-Library_Function\talert\tB-Code_Block\n(\tI-Library_Function\t(\tI-Code_Block\ndocument.getElementsByTagName\tB-Library_Function\tdocument.getElementsByTagName\tB-Code_Block\n('div')[0]\tI-Library_Function\t('div')[0]\tI-Code_Block\n.innerHTML.replace\tI-Library_Function\t.innerHTML.replace\tI-Code_Block\n(/‌/\tI-Library_Function\t(/‌/\tI-Code_Block\ng\tI-Library_Function\tg\tI-Code_Block\n,\tI-Library_Function\t,\tI-Code_Block\n'\tI-Library_Function\t'\tI-Code_Block\n‌'\tI-Library_Function\t‌'\tI-Code_Block\n)\tI-Library_Function\t)\tI-Code_Block\n)\tB-Library_Function\t)\tB-Code_Block\n;\tB-Library_Function\t;\tB-Code_Block\n\t\n<div>This\tB-Code_Block\t<div>This\tB-Code_Block\ndiv\tI-Code_Block\tdiv\tI-Code_Block\ncontains\tI-Code_Block\tcontains\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nzero-width&zwnj;non-joiner,\tI-Code_Block\tzero-width&zwnj;non-joiner,\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\nnon-breaking&nbsp;space\tI-Code_Block\tnon-breaking&nbsp;space\tI-Code_Block\n&amp;\tI-Code_Block\t&amp;\tI-Code_Block\nan\tI-Code_Block\tan\tI-Code_Block\nampersand</div>\tI-Code_Block\tampersand</div>\tI-Code_Block\n\t\nYong\tB-User_Name\tYong\tO\nQuan\tI-User_Name\tQuan\tO\nposted\tO\tposted\tO\nsome\tO\tsome\tO\nnicer\tO\tnicer\tO\ncode\tO\tcode\tO\nthan\tO\tthan\tO\nme\tO\tme\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nmaintainable\tO\tmaintainable\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nunicode\tO\tunicode\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nregex\tO\tregex\tO\nabove\tO\tabove\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nconfusing\tO\tconfusing\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nread\tO\tread\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7141\tI-Code_Block\tA_7141\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43034930\tO\t43034930\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43034930/\tO\thttps://stackoverflow.com/questions/43034930/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncase\tO\tcase\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncollect\tO\tcollect\tO\nsales\tO\tsales\tO\nstatistics\tO\tstatistics\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ntable\tB-Data_Structure\ttable\tO\nwith\tO\twith\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\naggregated\tO\taggregated\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntable\tO\ttable\tO\nhas\tO\thas\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nmillion\tO\tmillion\tO\nentries\tO\tentries\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nitself\tO\titself\tO\nis\tO\tis\tO\naround\tO\taround\tO\n22Gb\tO\t22Gb\tO\n.\tO\t.\tO\n\t\nPlenty\tO\tPlenty\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\nwith\tO\twith\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nworking\tO\tworking\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nbetter\tO\tbetter\tO\n-\tO\t-\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nvery\tO\tvery\tO\nslow\tO\tslow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nPHP\tB-Language\tPHP\tO\nwith\tO\twith\tO\nsqlsrv\tB-Library\tsqlsrv\tO\nextension\tO\textension\tO\non\tO\ton\tO\nCentOS\tB-Application\tCentOS\tO\n7\tB-Version\t7\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\na\tO\ta\tO\nMSSQL\tB-Application\tMSSQL\tO\ndatabase\tO\tdatabase\tO\n(\tO\t(\tO\nERP\tO\tERP\tO\nsystem\tO\tsystem\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nphp\tB-Language\tphp\tO\nvariables\tO\tvariables\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nquery\tO\tquery\tO\nis\tO\tis\tO\nset\tO\tset\tO\nup\tO\tup\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5501\tI-Code_Block\tQ_5501\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nguessed\tO\tguessed\tO\nalready\tO\talready\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ncollecting\tO\tcollecting\tO\nsales\tO\tsales\tO\nstatistics\tO\tstatistics\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\ncustomer\tO\tcustomer\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nmonth\tO\tmonth\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nyear\tB-Variable_Name\tyear\tO\n2016\tB-Value\t2016\tO\nand\tO\tand\tO\n2015\tB-Value\t2015\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5502\tI-Code_Block\tQ_5502\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nworks\tO\tworks\tO\nwell\tO\twell\tO\n,\tO\t,\tO\ngiving\tO\tgiving\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\ni\tO\ti\tO\nexpect\tO\texpect\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\ntoo\tO\ttoo\tO\nslow\tO\tslow\tO\non\tO\ton\tO\ncustomers\tO\tcustomers\tO\nwith\tO\twith\tO\nmany\tO\tmany\tO\norders/transactions\tO\torders/transactions\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\npointers\tO\tpointers\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nspeed\tO\tspeed\tO\nthis\tO\tthis\tO\nup\tO\tup\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntime\tO\ttime\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43034930\tO\t43034930\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43034930/\tO\thttps://stackoverflow.com/questions/43034930/\tO\n\t\n\t\nYour\tO\tYour\tO\nquery\tO\tquery\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nconditional\tO\tconditional\tO\naggregation\tO\taggregation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6214\tI-Code_Block\tA_6214\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSubqueries\tO\tSubqueries\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28749425\tO\t28749425\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28749425/\tO\thttps://stackoverflow.com/questions/28749425/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nWebApi\tB-Library\tWebApi\tO\naction\tO\taction\tO\nthat\tO\tthat\tO\ndeletes\tO\tdeletes\tO\nan\tO\tan\tO\norder\tO\torder\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nback-end\tO\tback-end\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nusers\tB-Variable_Name\tusers\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAdmin\tB-Variable_Name\tAdmin\tB-Code_Block\nand\tO\tand\tO\nOrder\tB-Variable_Name\tOrder\tB-Code_Block\nroles\tO\troles\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tB-Variable_Name\tuser\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nReadonly\tB-Variable_Name\tReadonly\tB-Code_Block\nrole\tO\trole\tO\nthe\tO\tthe\tO\naction\tO\taction\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nHTTP\tB-Error_Name\tHTTP\tB-Code_Block\n403\tI-Error_Name\t403\tI-Code_Block\nForbidden\tI-Error_Name\tForbidden\tI-Code_Block\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3386\tI-Code_Block\tQ_3386\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nactions\tO\tactions\tO\nfrom\tO\tfrom\tO\nbeing\tO\tbeing\tO\nexecuted\tO\texecuted\tO\nif\tO\tif\tO\nusers\tO\tusers\tO\nare\tO\tare\tO\nin\tO\tin\tO\nspecific\tO\tspecific\tO\nroles\tO\troles\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nput\tO\tput\tO\nif(User.IsInRole(\"Readonly\"))\tB-Code_Block\tif(User.IsInRole(\"Readonly\"))\tB-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\nreturn\tI-Code_Block\treturn\tI-Code_Block\nForbidden()\tI-Code_Block\tForbidden()\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\nat\tO\tat\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nall\tO\tall\tO\ndatabase\tO\tdatabase\tO\nupdate-able\tO\tupdate-able\tO\naction\tO\taction\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3387\tI-Code_Block\tQ_3387\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nNotAuthorized\tB-Variable_Name\tNotAuthorized\tB-Code_Block\naction\tO\taction\tO\nfilter\tO\tfilter\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nHTTP\tB-Error_Name\tHTTP\tB-Code_Block\n403\tI-Error_Name\t403\tI-Code_Block\nForbidden\tI-Error_Name\tForbidden\tI-Code_Block\nresponse\tO\tresponse\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nReadonly\tB-Variable_Name\tReadonly\tB-Code_Block\nrole\tO\trole\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28749425\tO\t28749425\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28749425/\tO\thttps://stackoverflow.com/questions/28749425/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nreverse\tO\treverse\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n[\tB-Variable_Name\t[\tB-Code_Block\nAuthorize()\tI-Variable_Name\tAuthorize()\tI-Code_Block\n]\tI-Variable_Name\t]\tI-Code_Block\nattribute\tO\tattribute\tO\nand\tO\tand\tO\nforbid\tO\tforbid\tO\nusers\tO\tusers\tO\nfrom\tO\tfrom\tO\nexecuting\tO\texecuting\tO\nMVC\tB-Algorithm\tMVC\tO\nWebApi\tB-Library\tWebApi\tO\nactions\tO\tactions\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\na\tO\ta\tO\nmember\tO\tmember\tO\nof\tO\tof\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nroles\tO\troles\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4055\tI-Code_Block\tA_4055\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nfilter\tO\tfilter\tO\nattribute\tO\tattribute\tO\nsimply\tO\tsimply\tO\ndecorate\tO\tdecorate\tO\nany\tO\tany\tO\nactions\tO\tactions\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\na\tO\ta\tO\nmember\tO\tmember\tO\nof\tO\tof\tO\na\tO\ta\tO\nrestricted\tO\trestricted\tO\nrole\tO\trole\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\na\tO\ta\tO\nread-only\tO\tread-only\tO\nrole\tO\trole\tO\nthey\tO\tthey\tO\nnot\tO\tnot\tO\npermitted\tO\tpermitted\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4056\tI-Code_Block\tA_4056\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15748635\tO\t15748635\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15748635/\tO\thttps://stackoverflow.com/questions/15748635/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nsaving\tO\tsaving\tO\na\tO\ta\tO\none\tO\tone\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\nself-reference\tO\tself-reference\tO\nrelationship\tO\trelationship\tO\n,\tO\t,\tO\nboth\tO\tboth\tO\nparent\tO\tparent\tO\nand\tO\tand\tO\nchildren\tO\tchildren\tO\nare\tO\tare\tO\nsaved\tO\tsaved\tO\nproperly\tO\tproperly\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nIm\tO\tIm\tO\ngetting\tO\tgetting\tO\nparent_id\tB-Variable_Name\tparent_id\tO\nnull\tB-Value\tnull\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nchildren\tO\tchildren\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfolloed\tO\tfolloed\tO\nthe\tO\tthe\tO\ndoctrine\tB-Library\tdoctrine\tO\nexample\tO\texample\tO\n..\tO\t..\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1553\tI-Code_Block\tQ_1553\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tB-Code_Block\t}\tO\n\t\nand\tO\tand\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1554\tI-Code_Block\tQ_1554\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nreally\tO\treally\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nim\tO\tim\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15748635\tO\t15748635\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15748635/\tO\thttps://stackoverflow.com/questions/15748635/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npersist\tO\tpersist\tO\nALL\tO\tALL\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nentities\tO\tentities\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nafter\tO\tafter\tO\nrunning\tO\trunning\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\ndoctrine\tB-Library\tdoctrine\tO\n)\tO\t)\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYour\tO\tYour\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nnamed\tO\tnamed\tO\n\"\tO\t\"\tO\nCategory->addChildren\tB-Function_Name\tCategory->addChildren\tO\n\"\tO\t\"\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nchildren\tO\tchildren\tO\nto\tO\tto\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\ncategory\tO\tcategory\tO\nentity\tO\tentity\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2077\tI-Code_Block\tA_2077\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15748635\tO\t15748635\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15748635/\tO\thttps://stackoverflow.com/questions/15748635/\tO\n\t\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\ntried\tO\ttried\tO\nout\tO\tout\tO\nDoctrine\tB-Application\tDoctrine\tO\nExtensions\tI-Application\tExtensions\tO\n,\tO\t,\tO\nparticularly\tO\tparticularly\tO\nthe\tO\tthe\tO\ntree\tB-Data_Structure\ttree\tO\nextension\tO\textension\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nmakes\tO\tmakes\tO\nwork\tO\twork\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nextremely\tO\textremely\tO\neasy\tO\teasy\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32108657\tO\t32108657\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32108657/\tO\thttps://stackoverflow.com/questions/32108657/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nLWJGL\tB-Library\tLWJGL\tO\npractice\tO\tpractice\tO\nproject\tO\tproject\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nand\tO\tand\tO\njust\tO\tjust\tO\nrecently\tO\trecently\tO\nstumbled\tO\tstumbled\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwith\tO\twith\tO\nevery\tO\tevery\tO\nproject\tO\tproject\tO\ni\tO\ti\tO\ndue\tO\tdue\tO\ni\tO\ti\tO\nsave\tO\tsave\tO\nworking\tO\tworking\tO\nbackups\tO\tbackups\tO\nin\tO\tin\tO\nmultiple\tO\tmultiple\tO\nplaces\tO\tplaces\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nrunning\tO\trunning\tO\na\tO\ta\tO\nWindows\tB-Operating_System\tWindows\tO\n8.1\tB-Version\t8.1\tO\nOS\tO\tOS\tO\nand\tO\tand\tO\nrecently\tO\trecently\tO\nupgraded\tO\tupgraded\tO\nto\tO\tto\tO\nWindows\tB-Operating_System\tWindows\tO\n10\tB-Version\t10\tO\nand\tO\tand\tO\nsuddenly\tO\tsuddenly\tO\nall\tO\tall\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nbackups\tO\tbackups\tO\nand\tO\tand\tO\ncurrent\tO\tcurrent\tO\nprogram\tO\tprogram\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nrendering\tO\trendering\tO\nerror\tO\terror\tO\nas\tO\tas\tO\nseen\tO\tseen\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\non\tO\ton\tO\na\tO\ta\tO\nwindows\tB-Operating_System\twindows\tO\n8.1\tB-Version\t8.1\tO\nOS\tO\tOS\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nnew\tO\tnew\tO\nwindows\tB-Operating_System\twindows\tO\ndriver\tB-Application\tdriver\tO\nupdate\tO\tupdate\tO\nthat\tO\tthat\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ncausing\tO\tcausing\tO\nthis\tO\tthis\tO\nrendering\tO\trendering\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nincompatibility\tO\tincompatibility\tO\nwith\tO\twith\tO\nwindows\tB-Operating_System\twindows\tO\n10\tB-Version\t10\tO\nand\tO\tand\tO\nLWJGL\tB-Library\tLWJGL\tO\ni\tO\ti\tO\nhav\tO\thav\tO\nn't\tO\tn't\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nabout\tO\tabout\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32108657\tO\t32108657\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32108657/\tO\thttps://stackoverflow.com/questions/32108657/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nrender\tO\trender\tO\nany\tO\tany\tO\nobjects\tO\tobjects\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nworld\tO\tworld\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ninbuilt\tO\tinbuilt\tO\ndepth\tO\tdepth\tO\ntesting\tO\ttesting\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nGL11.glEnable(GL11.GL_DEPTH_TEST)\tB-Code_Block\tGL11.glEnable(GL11.GL_DEPTH_TEST)\tO\n;\tI-Code_Block\t;\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\nforgotten\tO\tforgotten\tO\nin\tO\tin\tO\nmost\tO\tmost\tO\ncases\tO\tcases\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\n!\tO\t!\tO\n\t\n-Kore\tB-User_Name\t-Kore\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nAlso\tO\tAlso\tO\ndont\tO\tdont\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\nclear\tO\tclear\tO\nthe\tO\tthe\tO\nbuffer\tB-Data_Structure\tbuffer\tO\naswell\tO\taswell\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nGL11\tB-Code_Block\tGL11\tO\n.\tI-Code_Block\t.\tO\nglClear(GL11\tI-Code_Block\tglClear(GL11\tO\n.\tI-Code_Block\t.\tO\nGL_COLOR_BUFFER_BIT|GL11\tI-Code_Block\tGL_COLOR_BUFFER_BIT|GL11\tO\n.\tI-Code_Block\t.\tO\nGL_DEPTH_BUFFER_BIT\tI-Code_Block\tGL_DEPTH_BUFFER_BIT\tO\n);\tI-Code_Block\t);\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5920152\tO\t5920152\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5920152/\tO\thttps://stackoverflow.com/questions/5920152/\tO\n\t\n\t\nFirstly\tO\tFirstly\tO\n,\tO\t,\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nLocationManager\tB-Library_Class\tLocationManager\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nin\tO\tin\tO\nan\tO\tan\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tO\nas\tO\tas\tO\nit\tO\tit\tO\n's\tO\t's\tO\nalready\tO\talready\tO\nnon\tO\tnon\tO\nUI\tO\tUI\tO\nblocking\tO\tblocking\tO\n:)\tO\t:)\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nactivity\tO\tactivity\tO\nwhich\tO\twhich\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\nGets\tO\tGets\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\ncurrent\tO\tcurrent\tO\nlocation\tO\tlocation\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\nCalls\tO\tCalls\tO\na\tO\ta\tO\nwebservice\tO\twebservice\tO\nto\tO\tto\tO\nretrieve\tO\tretrieve\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nspecific\tO\tspecific\tO\nPOIs\tO\tPOIs\tO\naround\tO\taround\tO\nthat\tO\tthat\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nchoose\tO\tchoose\tO\nto\tO\tto\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nas\tO\tas\tO\nmap\tB-Data_Structure\tmap\tO\nor\tO\tor\tO\nlist\tB-Data_Structure\tlist\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nTabActivity\tB-Library_Class\tTabActivity\tO\n.\tO\t.\tO\n\t\nBearing\tO\tBearing\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthe\tO\tthe\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tO\nto\tO\tto\tO\nget\tO\tget\tO\nusers\tO\tusers\tO\nlocation\tO\tlocation\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nwebservice\tO\twebservice\tO\nis\tO\tis\tO\nmanaged\tO\tmanaged\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nTabActivity\tB-Library_Class\tTabActivity\tO\nview\tO\tview\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\neither\tO\teither\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndocked\tO\tdocked\tO\nviews\tO\tviews\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nTabActivity\tB-Library_Class\tTabActivity\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nan\tO\tan\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tO\nwhich\tO\twhich\tO\nfirst\tO\tfirst\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nlocation\tO\tlocation\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncalls\tO\tcalls\tO\nthe\tO\tthe\tO\nwebservice\tO\twebservice\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nprogress\tO\tprogress\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nprevents\tO\tprevents\tO\nswitching\tO\tswitching\tO\nviews\tO\tviews\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ntabs\tB-Keyboard_IP\ttabs\tO\nduring\tO\tduring\tO\nthis\tO\tthis\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nall\tO\tall\tO\nworking\tO\tworking\tO\napart\tO\tapart\tO\nfrom\tO\tfrom\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nlocation\tO\tlocation\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nwebservice\tO\twebservice\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwritten\tO\twritten\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmapping\tO\tmapping\tO\nand\tO\tand\tO\noverlay\tO\toverlay\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwritten\tO\twritten\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\nprogress\tO\tprogress\tO\ndialog\tB-User_Interface_Element\tdialog\tO\ncopes\tO\tcopes\tO\nwith\tO\twith\tO\norientation\tO\torientation\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfocus\tO\tfocus\tO\non\tO\ton\tO\nlocation\tO\tlocation\tO\nis\tO\tis\tO\nspeed\tO\tspeed\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\naccuracy\tO\taccuracy\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nchooses\tO\tchooses\tO\nto\tO\tto\tO\nview\tO\tview\tO\nresults\tO\tresults\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmapview\tB-Library_Class\tmapview\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\n'\tO\t'\tO\nMy\tO\tMy\tO\nlocation\tO\tlocation\tO\n'\tO\t'\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nenable\tO\tenable\tO\na\tO\ta\tO\nmore\tO\tmore\tO\naccurate\tO\taccurate\tO\nlocation\tO\tlocation\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nobtained\tO\tobtained\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninitially\tO\tinitially\tO\nget\tO\tget\tO\na\tO\ta\tO\nrough\tO\trough\tO\nlocation\tO\tlocation\tO\nand\tO\tand\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nresults\tO\tresults\tO\nquickly\tO\tquickly\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngoing\tO\tgoing\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nmap\tB-Data_Structure\tmap\tO\nview\tO\tview\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nmap\tB-Data_Structure\tmap\tO\nactivity\tO\tactivity\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nlocation\tO\tlocation\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nwebservice\tO\twebservice\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nasync\tB-Library_Class\tasync\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nwhat\tO\twhat\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ntaps\tO\ttaps\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nview\tO\tview\tO\ntab\tO\ttab\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nlocation\tO\tlocation\tO\nphase\tO\tphase\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nalso\tO\talso\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\ntheir\tO\ttheir\tO\ndefault\tO\tdefault\tO\nview\tO\tview\tO\n-\tO\t-\tO\nsome\tO\tsome\tO\npeople\tO\tpeople\tO\nmay\tO\tmay\tO\nprefer\tO\tprefer\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nto\tO\tto\tO\na\tO\ta\tO\nmap\tO\tmap\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlistview\tO\tlistview\tO\nwhich\tO\twhich\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nretrieve\tO\tretrieve\tO\nthe\tO\tthe\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nadvice\tO\tadvice\tO\n\t\nMartin\tB-User_Name\tMartin\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5920152\tO\t5920152\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5920152/\tO\thttps://stackoverflow.com/questions/5920152/\tO\n\t\n\t\nI\tO\tI\tO\nsussed\tO\tsussed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nhaving\tO\thaving\tO\nwas\tO\twas\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nLocationListener\tB-Library_Function\tLocationListener\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\nthat\tO\tthat\tO\nalthough\tO\talthough\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ncreated\tO\tcreated\tO\nand\tO\tand\tO\nprepared\tO\tprepared\tO\na\tO\ta\tO\nlopper\tO\tlopper\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nn't\tO\tn't\tO\ncalled\tO\tcalled\tO\nLooper.Loop()\tB-Library_Function\tLooper.Loop()\tO\n\t\nI\tO\tI\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nrequestLocationUpdates\tB-Library_Class\trequestLocationUpdates\tO\n,\tO\t,\tO\nkick\tO\tkick\tO\noff\tO\toff\tO\na\tO\ta\tO\ntimer\tO\ttimer\tO\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nthe\tO\tthe\tO\nlocationmanager\tB-Library_Class\tlocationmanager\tO\nresponds\tO\tresponds\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlocation\tO\tlocation\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\ntimer\tO\ttimer\tO\nexpires\tO\texpires\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nlooper.quit()\tB-Library_Function\tlooper.quit()\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nthings\tO\tthings\tO\nreturn\tO\treturn\tO\nto\tO\tto\tO\nnormal\tO\tnormal\tO\n.\tO\t.\tO\n\t\nSeems\tO\tSeems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nremember\tO\tremember\tO\nto\tO\tto\tO\nrespond\tO\trespond\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nback\tO\tback\tO\nbutton\tB-User_Interface_Element\tbutton\tO\netc\tO\tetc\tO\n,\tO\t,\tO\ncancelling\tO\tcancelling\tO\nthe\tO\tthe\tO\ntimer\tO\ttimer\tO\nand\tO\tand\tO\nlooper\tO\tlooper\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tO\nis\tO\tis\tO\ncancelled\tO\tcancelled\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27025952\tO\t27025952\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27025952/\tO\thttps://stackoverflow.com/questions/27025952/\tO\n\t\n\t\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\nto\tO\tto\tO\nload\tO\tload\tO\nin\tO\tin\tO\na\tO\ta\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nprofile\tO\tprofile\tO\npicture\tO\tpicture\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\niOS\tB-Operating_System\tiOS\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nrewrite\tO\trewrite\tO\nby\tO\tby\tO\nme\tO\tme\tO\nto\tO\tto\tO\nload\tO\tload\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nurl\tO\turl\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3097\tI-Code_Block\tQ_3097\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nold\tO\told\tO\ncode\tO\tcode\tO\nhad\tO\thad\tO\nthis\tO\tthis\tO\nUIImageView\tB-Code_Block\tUIImageView\tB-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\nimageView\tI-Code_Block\timageView\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n[\tB-Code_Block\t[\tB-Code_Block\n[\tB-Code_Block\t[\tB-Code_Block\nUIImageView\tB-Code_Block\tUIImageView\tB-Code_Block\nalloc\tI-Code_Block\talloc\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\ninitWithFrame:CGRectMake(0,40,100,100)\tB-Code_Block\tinitWithFrame:CGRectMake(0,40,100,100)\tB-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nimage\tB-Variable_Name\timage\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\ntoo\tO\ttoo\tO\nlarge\tO\tlarge\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nincorporate\tO\tincorporate\tO\nthat\tO\tthat\tO\ninto\tO\tinto\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nchanging\tO\tchanging\tO\nhttp://placehold.it/250x250\tB-Code_Block\thttp://placehold.it/250x250\tB-Code_Block\nto\tO\tto\tO\nhttp://placehold.it/100x100\tB-Code_Block\thttp://placehold.it/100x100\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\noption\tO\toption\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nplaceholder\tO\tplaceholder\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27025952\tO\t27025952\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27025952/\tO\thttps://stackoverflow.com/questions/27025952/\tO\n\t\n\t\nUse\tO\tUse\tO\nUIImageView\tB-Code_Block\tUIImageView\tB-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\nimageView\tI-Code_Block\timageView\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n[\tB-Code_Block\t[\tB-Code_Block\n[\tB-Code_Block\t[\tB-Code_Block\nUIImageView\tB-Code_Block\tUIImageView\tB-Code_Block\nalloc\tI-Code_Block\talloc\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\ninitWithFrame:CGRectMake(0,40,100,100)\tB-Code_Block\tinitWithFrame:CGRectMake(0,40,100,100)\tB-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nimage\tB-Variable_Name\timage\tO\nlater\tO\tlater\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3735\tI-Code_Block\tA_3735\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nprobably\tO\tprobably\tO\ntake\tO\ttake\tO\nout\tO\tout\tO\n\t\nimageView.layer.rasterizationScale\tB-Variable_Name\timageView.layer.rasterizationScale\tB-Code_Block\nand\tO\tand\tO\nimageView.layer.shouldRasterize\tB-Variable_Name\timageView.layer.shouldRasterize\tB-Code_Block\n,\tO\t,\tO\n\t\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\non\tO\ton\tO\na\tO\ta\tO\nside\tO\tside\tO\nnote\tO\tnote\tO\n\t\n(\tO\t(\tO\n+\tB-Code_Block\t+\tB-Code_Block\n[\tI-Code_Block\t[\tI-Code_Block\nNSData\tI-Code_Block\tNSData\tI-Code_Block\ndataWithContentsOfURL\tI-Code_Block\tdataWithContentsOfURL\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nshould\tO\tshould\tO\nNEVER\tO\tNEVER\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\ncase.\tO\tcase.\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44457082\tO\t44457082\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44457082/\tO\thttps://stackoverflow.com/questions/44457082/\tO\n\t\n\t\nWhile\tO\tWhile\tO\nuploading\tO\tuploading\tO\ndoc\tB-File_Type\tdoc\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nexample\tB-File_Name\texample\tO\ntest.doc\tI-File_Name\ttest.doc\tO\n)\tO\t)\tO\nto\tO\tto\tO\nserver\tB-Application\tserver\tO\n(\tO\t(\tO\nunix\tB-Operating_System\tunix\tO\nmachine\tO\tmachine\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\napache\tB-Application\tapache\tB-Code_Block\ncommons\tI-Application\tcommons\tI-Code_Block\njar\tB-File_Type\tjar\tO\nwhich\tO\twhich\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nFormFile\tB-Library_Class\tFormFile\tB-Code_Block\ninstance\tO\tinstance\tO\nat\tO\tat\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nbyte\tB-Data_Type\tbyte\tO\narray\tB-Data_Structure\tarray\tO\nform\tO\tform\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbyte\tB-Data_Type\tbyte\tO\narray\tB-Data_Structure\tarray\tO\nto\tO\tto\tO\nresponse\tO\tresponse\tO\noutput\tO\toutput\tO\nstream\tO\tstream\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbrowser\tB-Application\tbrowser\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nweird\tO\tweird\tO\ncontent\tO\tcontent\tO\nis\tO\tis\tO\nshown\tO\tshown\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nget\tO\tget\tO\none\tO\tone\tO\npop\tB-User_Interface_Element\tpop\tO\nup\tI-User_Interface_Element\tup\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nencoding\tO\tencoding\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nand\tO\tand\tO\nweird\tO\tweird\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nshown\tO\tshown\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ndoc.The\tB-File_Type\tdoc.The\tO\ncontent\tO\tcontent\tO\ntype\tO\ttype\tO\nis\tO\tis\tO\nset\tO\tset\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5775\tI-Code_Block\tQ_5775\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nwhile\tO\twhile\tO\nwriting\tO\twriting\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\noutput\tO\toutput\tO\nstream\tO\tstream\tO\n,\tO\t,\tO\nmeta\tO\tmeta\tO\ndata\tO\tdata\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\ndoc\tB-File_Type\tdoc\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nwritten\tO\twritten\tO\nwhich\tO\twhich\tO\ncauses\tO\tcauses\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nanything\tO\tanything\tO\nspecific\tO\tspecific\tO\nfor\tO\tfor\tO\ndoc\tB-File_Type\tdoc\tO\nor\tO\tor\tO\ndocx\tB-File_Type\tdocx\tO\nfile\tO\tfile\tO\nformats\tO\tformats\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nso\tO\tso\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nin\tO\tin\tO\nproper\tO\tproper\tO\nformat\tO\tformat\tO\nand\tO\tand\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\ncorrect\tO\tcorrect\tO\ndata\tO\tdata\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\nuploaded\tO\tuploaded\tO\nor\tO\tor\tO\nI\tO\tI\tO\nam\tO\tam\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nAdvance\tO\tAdvance\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44457082\tO\t44457082\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44457082/\tO\thttps://stackoverflow.com/questions/44457082/\tO\n\t\n\t\nIt\tO\tIt\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nfix\tO\tfix\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\nany\tO\tany\tO\ntest\tO\ttest\tO\naround\tO\taround\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nmime\tO\tmime\tO\ntypes\tO\ttypes\tO\nplease\tO\tplease\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\n\t\nhttps://technet.microsoft.com/en-us/library/ee309278(office.12).aspx\tO\thttps://technet.microsoft.com/en-us/library/ee309278(office.12).aspx\tO\n\t\nUpdated\tO\tUpdated\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nresponse\tO\tresponse\tO\ntype\tO\ttype\tO\nas\tO\tas\tO\nArrayBuffer\tB-Library_Class\tArrayBuffer\tO\nand\tO\tand\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nas\tO\tas\tO\nBlob\tB-Library_Class\tBlob\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6477\tI-Code_Block\tA_6477\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nwork\tO\twork\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6478\tI-Code_Block\tQ_6478\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44457082\tO\t44457082\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44457082/\tO\thttps://stackoverflow.com/questions/44457082/\tO\n\t\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\na\tO\ta\tO\nknown\tO\tknown\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nMicrosoft\tB-Organization\tMicrosoft\tO\nwhich\tO\twhich\tO\nprovide\tO\tprovide\tO\nworkaround\tO\tworkaround\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n\t\nEncoding\tO\tEncoding\tO\nPop\tB-User_Interface_Element\tPop\tO\nUp\tI-User_Interface_Element\tUp\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4921376\tO\t4921376\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4921376/\tO\thttps://stackoverflow.com/questions/4921376/\tO\n\t\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\ndeclare\tO\tdeclare\tO\nan\tO\tan\tO\nIF\tB-Code_Block\tIF\tO\nstatement\tO\tstatement\tO\nwith\tO\twith\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\nOR\tB-Code_Block\tOR\tO\nclauses\tO\tclauses\tO\nwill\tO\twill\tO\nJavaScript\tB-Language\tJavaScript\tO\nread\tO\tread\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nORs\tB-Code_Block\tORs\tO\nor\tO\tor\tO\nstop\tO\tstop\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nsatisfied\tO\tsatisfied\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4921376\tO\t4921376\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4921376/\tO\thttps://stackoverflow.com/questions/4921376/\tO\n\t\n\t\nStops\tO\tStops\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ncalled\tO\tcalled\tO\nshort-circuiting\tO\tshort-circuiting\tO\n\t\nhttp://en.wikipedia.org/wiki/Short-circuit_evaluation\tO\thttp://en.wikipedia.org/wiki/Short-circuit_evaluation\tO\n\t\nhttps://developer.mozilla.org/en/JavaScript/Reference/Operators/Logical_Operators\tO\thttps://developer.mozilla.org/en/JavaScript/Reference/Operators/Logical_Operators\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4921376\tO\t4921376\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4921376/\tO\thttps://stackoverflow.com/questions/4921376/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_513\tI-Code_Block\tA_513\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41878995\tO\t41878995\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41878995/\tO\thttps://stackoverflow.com/questions/41878995/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nall\tO\tall\tO\nin\tO\tin\tO\none\tO\tone\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5320\tI-Code_Block\tQ_5320\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5321\tI-Code_Block\tQ_5321\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nformula\tO\tformula\tO\nwill\tO\twill\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5322\tI-Code_Block\tQ_5322\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWithout\tO\tWithout\tO\ntyping\tO\ttyping\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nthing\tO\tthing\tO\nout\tO\tout\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41878995\tO\t41878995\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41878995/\tO\thttps://stackoverflow.com/questions/41878995/\tO\n\t\n\t\nPut\tO\tPut\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nupper\tO\tupper\tO\nleft\tO\tleft\tO\ncell\tB-User_Interface_Element\tcell\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nregion\tO\tregion\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6002\tI-Code_Block\tA_6002\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\ncopy/drag\tO\tcopy/drag\tO\nover\tO\tover\tO\none\tO\tone\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nand\tO\tand\tO\ndown\tO\tdown\tO\nsufficient\tO\tsufficient\tO\nto\tO\tto\tO\nget\tO\tget\tO\n0s\tB-Value\t0s\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41878995\tO\t41878995\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41878995/\tO\thttps://stackoverflow.com/questions/41878995/\tO\n\t\n\t\nPick\tO\tPick\tO\nsome\tO\tsome\tO\ncell\tB-User_Interface_Element\tcell\tO\nand\tO\tand\tO\nenter\tO\tenter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6006\tI-Code_Block\tA_6006\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\ncopy\tO\tcopy\tO\nboth\tO\tboth\tO\nacross\tO\tacross\tO\nand\tO\tand\tO\ndown\tO\tdown\tO\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47874480\tO\t47874480\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47874480/\tO\thttps://stackoverflow.com/questions/47874480/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\nzipcodes\tO\tzipcodes\tO\nand\tO\tand\tO\na\tO\ta\tO\ndata\tO\tdata\tO\npoint\tO\tpoint\tO\ncorresponding\tO\tcorresponding\tO\nto\tO\tto\tO\neach\tO\teach\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nplot\tO\tplot\tO\na\tO\ta\tO\nchloropleth\tB-User_Interface_Element\tchloropleth\tO\nusing\tO\tusing\tO\nthese\tO\tthese\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nR\tB-Language\tR\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nggplot\tB-Library\tggplot\tO\nand\tO\tand\tO\nR\tB-Language\tR\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nway\tO\tway\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\nis\tO\tis\tO\nI\tO\tI\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nframe\tO\tframe\tO\n,\tO\t,\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nzipcodes\tO\tzipcodes\tO\nto\tO\tto\tO\nlat\tO\tlat\tO\nlong\tB-Data_Type\tlong\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nplot\tO\tplot\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nhavent\tO\thavent\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\ndirection\tO\tdirection\tO\n/\tO\t/\tO\ncode\tO\tcode\tO\nsamples\tO\tsamples\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31801069\tO\t31801069\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31801069/\tO\thttps://stackoverflow.com/questions/31801069/\tO\n\t\n\t\nWhile\tO\tWhile\tO\nwriting\tO\twriting\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncomputer\tO\tcomputer\tO\ndating\tO\tdating\tO\nassignment\tO\tassignment\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nwe\tO\twe\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ncompatibility\tO\tcompatibility\tO\nof\tO\tof\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nfour\tO\tfour\tO\nobjects\tO\tobjects\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nprinted\tO\tprinted\tO\nstrangely\tO\tstrangely\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nEclipse\tB-Application\tEclipse\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nan\tO\tan\tO\nerror/warning\tO\terror/warning\tO\nat\tO\tat\tO\nfirst\tO\tfirst\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3847\tI-Code_Block\tQ_3847\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nthings\tO\tthings\tO\nout\tO\tout\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nappeared\tO\tappeared\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\n:\tO\t:\tO\n90.0\tB-Value\t90.0\tO\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nFitzwilliam\tO\tFitzwilliam\tO\nDarcy\tO\tDarcy\tO\n:\tO\t:\tO\n90.55\tB-Value\t90.55\tO\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nRomeo\tO\tRomeo\tO\nMontague\tO\tMontague\tO\n:\tO\t:\tO\n90.3\tB-Value\t90.3\tO\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nJuliet\tO\tJuliet\tO\nCapulet\tO\tCapulet\tO\n:\tO\t:\tO\n90.0\tB-Value\t90.0\tO\n\t\nso\tO\tso\tO\n.......................................................\tO\t.......................................................\tO\non\tO\ton\tO\nso\tO\tso\tO\nforth\tO\tforth\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nwas\tO\twas\tO\na\tO\ta\tO\n\"\tB-Value\t\"\tO\n9\tI-Value\t9\tO\n\"\tI-Value\t\"\tO\nappearing\tO\tappearing\tO\nin\tO\tin\tO\nfront\tO\tfront\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nnumbers\tO\tnumbers\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nlater\tO\tlater\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhad\tO\thad\tO\ntwo\tO\ttwo\tO\nconcatenating\tO\tconcatenating\tO\noperators\tO\toperators\tO\n(\"+\")\tB-Code_Block\t(\"+\")\tO\nafter\tO\tafter\tO\nmy\tO\tmy\tO\n\"\tB-Value\t\"\tO\n\\n\tI-Value\t\\n\tO\n\"\tB-Value\t\"\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\ndeleting\tO\tdeleting\tO\nthe\tO\tthe\tO\nextraneous\tO\textraneous\tO\n\"\tB-Code_Block\t\"\tO\n+\tI-Code_Block\t+\tO\n\"\tI-Code_Block\t\"\tO\n.\tO\t.\tO\n\t\nNew\tO\tNew\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tO\n:\tI-Code_Block\t:\tO\nQ_3848\tI-Code_Block\tQ_3848\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNew\tO\tNew\tB-Code_Block\ncorrect\tO\tcorrect\tI-Code_Block\nrun\tO\trun\tI-Code_Block\n:\tO\t:\tO\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\n:\tO\t:\tO\n0.0\tB-Value\t0.0\tO\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nFitzwilliam\tO\tFitzwilliam\tO\nDarcy\tO\tDarcy\tO\n:\tO\t:\tO\n0.55\tB-Value\t0.55\tO\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nRomeo\tO\tRomeo\tO\nMontague\tO\tMontague\tO\n:\tO\t:\tO\n0.3\tB-Value\t0.3\tO\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nJuliet\tO\tJuliet\tO\nCapulet\tO\tCapulet\tO\n:\tO\t:\tO\n0.0\tB-Value\t0.0\tO\n\t\nso\tO\tso\tO\n..............................................\tO\t..............................................\tO\non\tO\ton\tO\nso\tO\tso\tO\nforth\tO\tforth\tO\n.\tO\t.\tO\n\t\nThough\tO\tThough\tO\nI\tO\tI\tO\n've\tO\t've\tO\nthankfully\tO\tthankfully\tO\nfound\tO\tfound\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nexactly\tO\texactly\tO\nis\tO\tis\tO\ncausing\tO\tcausing\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nhappen\tO\thappen\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\neclipse\tB-Application\teclipse\tO\nshorthand\tO\tshorthand\tO\nthat\tO\tthat\tO\nleads\tO\tleads\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n\"\tB-Value\t\"\tO\n9\tI-Value\t9\tO\n\"\tI-Value\t\"\tO\n'\tO\t'\tO\ns\tO\ts\tO\nappearance\tO\tappearance\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\neclipse\tB-Application\teclipse\tO\nbug\tO\tbug\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstill\tO\tstill\tO\na\tO\ta\tO\nbeginner\tO\tbeginner\tO\nat\tO\tat\tO\njava\tB-Language\tjava\tO\n,\tI-Language\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nsolid\tO\tsolid\tO\nconclusion\tO\tconclusion\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nmodifying\tO\tmodifying\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nslightly\tO\tslightly\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\nEclipse\tB-Application\tEclipse\tO\nwould\tO\twould\tO\nreact\tO\treact\tO\n(\tO\t(\tO\nI\tO\tI\tO\ndeleted\tO\tdeleted\tO\nthe\tO\tthe\tO\nspace\tO\tspace\tO\nbetween\tO\tbetween\tO\nmy\tO\tmy\tO\noriginal\tO\toriginal\tO\n\"\tB-Code_Block\t\"\tO\n+\tI-Code_Block\t+\tO\n+\tI-Code_Block\t+\tO\n\"\tI-Code_Block\t\"\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tO\n:\tI-Code_Block\t:\tO\nQ_3849\tI-Code_Block\tQ_3849\tO\n(\tI-Code_Block\t(\tO\ncode\tI-Code_Block\tcode\tO\nomitted\tI-Code_Block\tomitted\tO\nfor\tI-Code_Block\tfor\tO\nannotation\tI-Code_Block\tannotation\tB-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEclipse\tB-Application\tEclipse\tB-Code_Block\ngave\tO\tgave\tI-Code_Block\nme\tO\tme\tI-Code_Block\nthis\tO\tthis\tI-Code_Block\nwarning\tO\twarning\tI-Code_Block\n:\tO\t:\tI-Code_Block\n\t\nMultiple\tO\tMultiple\tB-Code_Block\nmarkers\tO\tmarkers\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n\t\nSyntax\tO\tSyntax\tO\nerror\tO\terror\tO\non\tO\ton\tO\ntoken\tO\ttoken\tO\n\"\tO\t\"\tO\n++\tB-Code_Block\t++\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n+\tB-Code_Block\t+\tO\n\t\nexpected\tO\texpected\tO\n\t\nInvalid\tO\tInvalid\tO\nargument\tO\targument\tO\nto\tO\tto\tO\noperation\tO\toperation\tO\n++\tB-Code_Block\t++\tO\n/\tO\t/\tO\n-\tB-Code_Block\t-\tO\n-\tI-Code_Block\t-\tO\n\t\nThis\tO\tThis\tO\nmakes\tO\tmakes\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\n++\tB-Code_Block\t++\tO\non\tO\ton\tO\nits\tO\tits\tO\nown\tO\town\tO\nis\tO\tis\tO\nan\tO\tan\tO\noperator\tO\toperator\tO\nof\tO\tof\tO\nsorts\tO\tsorts\tO\n.\tO\t.\tO\n\t\nInterestingly\tO\tInterestingly\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nput\tO\tput\tO\na\tO\ta\tO\nspace\tO\tspace\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\n++\tB-Code_Block\t++\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nwarning\tO\twarning\tO\ndisappears\tO\tdisappears\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\npaste\tO\tpaste\tO\nmy\tO\tmy\tO\nentire\tO\tentire\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsake\tO\tsake\tO\nof\tO\tof\tO\nreadability\tO\treadability\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nedit\tO\tedit\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nclarification\tO\tclarification\tO\nregarding\tO\tregarding\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31801069\tO\t31801069\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31801069/\tO\thttps://stackoverflow.com/questions/31801069/\tO\n\t\n\t\nNo\tO\tNo\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nunusual\tO\tunusual\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nsimplify\tO\tsimplify\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nmassively\tO\tmassively\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4546\tI-Code_Block\tA_4546\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nResult\tO\tResult\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4547\tI-Code_Block\tA_4547\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nadmittedly\tO\tadmittedly\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nstrings\tB-Data_Type\tstrings\tO\nfor\tO\tfor\tO\nboth\tO\tboth\tO\nstart\tB-Variable_Name\tstart\tB-Code_Block\nand\tO\tand\tO\nend\tB-Variable_Name\tend\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\n+\tB-Code_Block\t+\tB-Code_Block\nbeing\tO\tbeing\tO\nleft-associative\tO\tleft-associative\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\nany\tO\tany\tO\ndifference\tO\tdifference\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nIf\tO\tIf\tO\nstart\tB-Variable_Name\tstart\tB-Code_Block\nwere\tO\twere\tO\nan\tO\tan\tO\ninteger\tB-Data_Type\tinteger\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nbinary\tO\tbinary\tO\n+\tB-Code_Block\t+\tB-Code_Block\noperator\tO\toperator\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ninteger\tB-Data_Type\tinteger\tO\naddition\tO\taddition\tO\nin\tO\tin\tO\nboth\tO\tboth\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nextra\tO\textra\tO\n+\tB-Code_Block\t+\tB-Code_Block\nends\tO\tends\tO\nup\tO\tup\tO\nbeing\tO\tbeing\tO\na\tO\ta\tO\nunary\tB-Data_Type\tunary\tO\n+\tB-Code_Block\t+\tB-Code_Block\noperator\tO\toperator\tO\nwith\tO\twith\tO\n'\tB-Value\t'\tB-Code_Block\n\\t\tI-Value\t\\t\tI-Code_Block\n'\tB-Value\t'\tB-Code_Block\nas\tO\tas\tO\nthe\tO\tthe\tO\noperand\tO\toperand\tO\n.\tO\t.\tO\n\t\nUnary\tO\tUnary\tO\nnumeric\tO\tnumeric\tO\npromotion\tO\tpromotion\tO\nis\tO\tis\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nchar\tB-Data_Type\tchar\tB-Code_Block\n,\tO\t,\tO\ngiving\tO\tgiving\tO\nint\tB-Data_Type\tint\tB-Code_Block\nas\tO\tas\tO\na\tO\ta\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbecomes\tO\tbecomes\tO\neffectively\tO\teffectively\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4548\tI-Code_Block\tA_4548\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\nis\tO\tis\tO\neffectively\tO\teffectively\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4549\tI-Code_Block\tA_4549\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\nis\tO\tis\tO\neffectively\tO\teffectively\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4550\tI-Code_Block\tA_4550\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n..\tO\t..\tO\n.\tO\t.\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\npoint\tO\tpoint\tO\nit\tO\tit\tO\n's\tO\t's\tO\nhopefully\tO\thopefully\tO\nclear\tO\tclear\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\navoid\tO\tavoid\tO\naccidentally\tO\taccidentally\tO\nending\tO\tending\tO\nup\tO\tup\tO\ntreating\tO\ttreating\tO\na\tO\ta\tO\ncharacter\tB-Data_Type\tcharacter\tO\nas\tO\tas\tO\nan\tO\tan\tO\ninteger\tB-Data_Type\tinteger\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nprobably\tO\tprobably\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nstrings\tB-Data_Type\tstrings\tO\ninstead\tO\tinstead\tO\n-\tO\t-\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\npoint\tO\tpoint\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\ncompile\tO\tcompile\tO\nbecause\tO\tbecause\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nno\tO\tno\tO\nunary\tB-Data_Type\tunary\tO\n+\tB-Code_Block\t+\tB-Code_Block\noperator\tO\toperator\tO\nfor\tO\tfor\tO\nString\tB-Data_Type\tString\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4551\tI-Code_Block\tA_4551\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n.\tO\t.\tO\n.\tO\t.\tO\ngives\tO\tgives\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4552\tI-Code_Block\tA_4552\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31801069\tO\t31801069\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31801069/\tO\thttps://stackoverflow.com/questions/31801069/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n+\tB-Code_Block\t+\tB-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nalso\tO\talso\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nchar\tB-Data_Type\tchar\tO\n'\tB-Value\t'\tB-Code_Block\n\\t\tI-Value\t\\t\tI-Code_Block\n'\tB-Value\t'\tB-Code_Block\nand\tO\tand\tO\nnot\tO\tnot\tO\nString\tB-Data_Type\tString\tO\n\"\tB-Value\t\"\tB-Code_Block\n\\t\tI-Value\t\\t\tI-Code_Block\n\"\tB-Value\t\"\tB-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nSystem.out.println\tB-Code_Block\tSystem.out.println\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nHello\tI-Code_Block\tHello\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n\\t'\tI-Code_Block\t\\t'\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n;\tB-Code_Block\t;\tB-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\n\\t\tB-Value\t\\t\tB-Code_Block\nis\tO\tis\tO\ntaken\tO\ttaken\tO\nas\tO\tas\tO\na\tO\ta\tO\ncharacter\tO\tcharacter\tO\nliteral\tO\tliteral\tO\nand\tO\tand\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nas\tO\tas\tO\n\\t\tB-Value\t\\t\tB-Code_Block\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nSystem.out.println\tB-Code_Block\tSystem.out.println\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nHello\tI-Code_Block\tHello\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n\\t'\tI-Code_Block\t\\t'\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n;\tB-Code_Block\t;\tB-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nbecomes\tO\tbecomes\tO\neffectively\tO\teffectively\tO\nSystem.out.println\tB-Code_Block\tSystem.out.println\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nHello\tI-Code_Block\tHello\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\n(\tB-Code_Block\t(\tB-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n\\t'\tI-Code_Block\t\\t'\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n)\tB-Code_Block\t)\tB-Code_Block\n;\tB-Code_Block\t;\tB-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nit\tO\tit\tO\nis\tO\tis\tO\ntreated\tO\ttreated\tO\nas\tO\tas\tO\nan\tO\tan\tO\nint\tB-Data_Type\tint\tB-Code_Block\nby\tO\tby\tO\njava\tB-Language\tjava\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nonly\tO\tonly\tO\nassign\tO\tassign\tO\n+\tB-Code_Block\t+\tB-Code_Block\nand\tO\tand\tO\n-\tB-Code_Block\t-\tB-Code_Block\nsigns\tO\tsigns\tO\nto\tO\tto\tO\nints\tB-Data_Type\tints\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nchars\tB-Data_Type\tchars\tO\n.\tO\t.\tO\n\t\nRemember\tO\tRemember\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nint\tB-Code_Block\tint\tB-Code_Block\ni\tI-Code_Block\ti\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n+2\tI-Code_Block\t+2\tI-Code_Block\nor\tO\tor\tO\n-2\tB-Code_Block\t-2\tB-Code_Block\nor\tO\tor\tO\n+\tB-Code_Block\t+\tB-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nASCII\tO\tASCII\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n\\t\tB-Value\t\\t\tB-Code_Block\nis\tO\tis\tO\n9\tB-Value\t9\tB-Code_Block\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nand\tO\tand\tO\nget\tO\tget\tO\n's\tO\t's\tO\nprinted\tO\tprinted\tO\nas\tO\tas\tO\nHello9\tB-Value\tHello9\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20035155\tO\t20035155\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20035155/\tO\thttps://stackoverflow.com/questions/20035155/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\njQuery\tB-Library\tjQuery\tO\nplugin\tO\tplugin\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2121\tI-Code_Block\tQ_2121\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2122\tI-Code_Block\tQ_2122\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\nfor\tO\tfor\tO\nrotating\tO\trotating\tO\nit\tO\tit\tO\nvery\tO\tvery\tO\nnice\tO\tnice\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nanimate\tO\tanimate\tO\nthe\tO\tthe\tO\nrotation\tO\trotation\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nhappen\tO\thappen\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\nplugin\tB-Application\tplugin\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nfyi\tO\tfyi\tO\n:\tO\t:\tO\nchanging\tO\tchanging\tO\nanimate\tB-Code_Block\tanimate\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nfalse\tI-Code_Block\tfalse\tI-Code_Block\nto\tO\tto\tO\ntrue\tO\ttrue\tB-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nenable\tO\tenable\tO\nit\tO\tit\tO\n:)\tO\t:)\tO\n)\tO\t)\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33477223\tO\t33477223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33477223/\tO\thttps://stackoverflow.com/questions/33477223/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nMandrill\tB-Library\tMandrill\tO\n's\tO\t's\tO\napi\tI-Library\tapi\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nvia\tO\tvia\tO\ncomposer\tB-Application\tcomposer\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\ninstalled\tO\tinstalled\tO\nit\tO\tit\tO\nmanually\tO\tmanually\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nMandrill\tB-Library\tMandrill\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nnothing\tO\tnothing\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\ncausing\tO\tcausing\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nMandrill\tB-Library\tMandrill\tO\nmethods\tO\tmethods\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nshowing\tO\tshowing\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4085\tI-Code_Block\tQ_4085\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n..\tO\t..\tO\n.\tO\t.\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\nfollowing\tO\tfollowing\tO\nchoices\tO\tchoices\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4086\tI-Code_Block\tQ_4086\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\nare\tO\tare\tO\nsuppose\tO\tsuppose\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\nis\tO\tis\tO\nsuppose\tO\tsuppose\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\ncan\tO\tcan\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\ntrouble-shooting\tO\ttrouble-shooting\tO\nideas\tO\tideas\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nat\tO\tat\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\n6\tO\t6\tO\nhours\tO\thours\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\nnote\tO\tnote\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nforward\tO\tforward\tO\nslash\tO\tslash\tO\nin\tO\tin\tO\norder\tO\torder\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4087\tI-Code_Block\tQ_4087\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nonly\tO\tonly\tO\nbring\tO\tbring\tO\nthis\tO\tthis\tO\nup\tO\tup\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nbeing\tO\tbeing\tO\ndone\tO\tdone\tO\non\tO\ton\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\nexample\tO\texample\tO\nthat\tO\tthat\tO\nexist\tO\texist\tO\nout\tO\tout\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n,\tO\t,\tO\n\t\nChris\tB-User_Name\tChris\tO\nM\tI-User_Name\tM\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33477223\tO\t33477223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33477223/\tO\thttps://stackoverflow.com/questions/33477223/\tO\n\t\n\t\nCheck\tO\tCheck\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nhttps://mandrillapp.com/api/docs/messages.php.html\tO\thttps://mandrillapp.com/api/docs/messages.php.html\tO\n.\tO\t.\tO\n\t\nIts\tO\tIts\tO\nhas\tO\thas\tO\nPHP\tB-Language\tPHP\tO\nlibrary\tO\tlibrary\tO\nspecific\tO\tspecific\tO\nexamples\tO\texamples\tO\nof\tO\tof\tO\neach\tO\teach\tO\nAPI\tB-Library\tAPI\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4792\tI-Code_Block\tA_4792\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n,\tO\t,\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15196931\tO\t15196931\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15196931/\tO\thttps://stackoverflow.com/questions/15196931/\tO\n\t\n\t\nIve\tO\tIve\tO\nbeen\tO\tbeen\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\ntutorials\tO\ttutorials\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nphone\tO\tphone\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\na\tO\ta\tO\ncontact\tO\tcontact\tO\nin\tO\tin\tO\nAndroid\tB-Operating_System\tAndroid\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nI\tO\tI\tO\nface\tO\tface\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ncontact\tO\tcontact\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n3\tO\t3\tO\ncontacts\tO\tcontacts\tO\nsaved\tO\tsaved\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nnumbers\tO\tnumbers\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nIm\tO\tIm\tO\nposting\tO\tposting\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nif\tO\tif\tO\nit\tO\tit\tO\nhelps\tO\thelps\tO\nanyone\tO\tanyone\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1473\tI-Code_Block\tQ_1473\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nFor\tO\tFor\tO\nthose\tO\tthose\tO\ninterested\tO\tinterested\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1474\tI-Code_Block\tQ_1474\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15196931\tO\t15196931\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15196931/\tO\thttps://stackoverflow.com/questions/15196931/\tO\n\t\n\t\nHi\tO\tHi\tO\ntry\tO\ttry\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\ncontacts\tO\tcontacts\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1934\tI-Code_Block\tA_1934\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15196931\tO\t15196931\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15196931/\tO\thttps://stackoverflow.com/questions/15196931/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1933\tI-Code_Block\tA_1933\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42188872\tO\t42188872\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42188872/\tO\thttps://stackoverflow.com/questions/42188872/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndraw\tO\tdraw\tO\na\tO\ta\tO\nborder\tB-User_Interface_Element\tborder\tO\nthat\tO\tthat\tO\nlooks\tO\tlooks\tO\nexactly\tO\texactly\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\none\tO\tone\tO\na\tO\ta\tO\nListView\tB-Library_Class\tListView\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\n10\tB-Version\t10\tO\nhas\tO\thas\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nbecause\tO\tbecause\tO\n,\tO\t,\tO\nFixed3D\tB-Library_Variable\tFixed3D\tO\nlooks\tO\tlooks\tO\nsunken\tO\tsunken\tO\n,\tO\t,\tO\nand\tO\tand\tO\nFixedSingle\tB-Library_Variable\tFixedSingle\tO\nlooks\tO\tlooks\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\naforementioned\tO\taforementioned\tO\nborder\tB-User_Interface_Element\tborder\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nMagnifier\tB-Application\tMagnifier\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nWindows\tB-Operating_System\tWindows\tO\n10\tB-Version\t10\tO\nborder\tB-User_Interface_Element\tborder\tO\nis\tO\tis\tO\ntwo-pixel\tO\ttwo-pixel\tO\nwide\tO\twide\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nidea\tO\tidea\tO\nwas\tO\twas\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\npanel\tB-User_Interface_Element\tpanel\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nborders\tB-User_Interface_Element\tborders\tO\nbut\tO\tbut\tO\ndraws\tO\tdraws\tO\ntwo-pixel-wide\tB-Value\ttwo-pixel-wide\tO\nrectangles\tB-User_Interface_Element\trectangles\tO\non\tO\ton\tO\nits\tO\tits\tO\nclient\tO\tclient\tO\narea\tO\tarea\tO\n,\tO\t,\tO\nand\tO\tand\tO\nfit\tO\tfit\tO\na\tO\ta\tO\nchild\tB-Variable_Name\tchild\tO\n,\tO\t,\tO\nwhose\tO\twhose\tO\nborder\tB-User_Interface_Element\tborder\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\nnone\tO\tnone\tO\n,\tO\t,\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nrectangles\tB-User_Interface_Element\trectangles\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwell\tO\twell\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nDesigner\tB-Application\tDesigner\tO\n,\tO\t,\tO\nnor\tO\tnor\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nwork\tO\twork\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5358\tI-Code_Block\tQ_5358\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42188872\tO\t42188872\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42188872/\tO\thttps://stackoverflow.com/questions/42188872/\tO\n\t\n\t\nThe\tO\tThe\tO\ndescription\tO\tdescription\tO\nof\tO\tof\tO\nAffectedControl\tB-Library_Variable\tAffectedControl\tB-Code_Block\nis\tO\tis\tO\n\"\tO\t\"\tO\nGets\tO\tGets\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\ncontrol\tO\tcontrol\tO\naffected\tO\taffected\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nchange\tO\tchange\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nweirdly\tO\tweirdly\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nactually\tO\tactually\tO\nthe\tO\tthe\tO\npanel\tB-User_Interface_Element\tpanel\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6041\tI-Code_Block\tA_6041\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nflickering\tO\tflickering\tO\nwhen\tO\twhen\tO\nresizing\tO\tresizing\tO\nthe\tO\tthe\tO\npanel\tB-User_Interface_Element\tpanel\tO\n,\tO\t,\tO\nprobably\tO\tprobably\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\ntwo\tO\ttwo\tO\ncontrols\tO\tcontrols\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\none\tO\tone\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\nborder\tB-User_Interface_Element\tborder\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17209302\tO\t17209302\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17209302/\tO\thttps://stackoverflow.com/questions/17209302/\tO\n\t\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nload\tO\tload\tO\nspecific\tO\tspecific\tO\nentities\tO\tentities\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nJSP\tB-Application\tJSP\tO\nform\tO\tform\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\noccurs\tO\toccurs\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nload\tO\tload\tO\nentities\tO\tentities\tO\nwhich\tO\twhich\tO\ntypes\tO\ttypes\tO\nare\tO\tare\tO\n\"\tO\t\"\tO\nUSER\tO\tUSER\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nhere\tO\there\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1749\tI-Code_Block\tQ_1749\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nlies\tO\tlies\tO\nin\tO\tin\tO\nat\tB-Output_Block\tat\tB-Code_Block\ncom.mysite.bookingmeeting.dao.implementation.UserProfileDaoImpl.findAllUsers(UserProfileDaoImpl.java:47)\tI-Output_Block\tcom.mysite.bookingmeeting.dao.implementation.UserProfileDaoImpl.findAllUsers(UserProfileDaoImpl.java:47)\tI-Code_Block\nand\tO\tand\tO\nat\tB-Output_Block\tat\tB-Code_Block\norg.apache.jsp.admin.ManageUsers_jsp._jspService(ManageUsers_jsp.java:133)\tI-Output_Block\torg.apache.jsp.admin.ManageUsers_jsp._jspService(ManageUsers_jsp.java:133)\tI-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nchecked\tO\tchecked\tO\nthose\tO\tthose\tO\ncodes\tO\tcodes\tO\nin\tO\tin\tO\nthose\tO\tthose\tO\nspecific\tO\tspecific\tO\npages\tO\tpages\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nworked\tO\tworked\tO\nbefore\tO\tbefore\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreasons\tO\treasons\tO\nnow\tO\tnow\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nmethod\tO\tmethod\tO\nfindAllUsers()\tB-Function_Name\tfindAllUsers()\tO\nof\tO\tof\tO\nUserProfileDaoImpl()\tB-Class_Name\tUserProfileDaoImpl()\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1750\tI-Code_Block\tQ_1750\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nManageUsers.jsp\tB-File_Name\tManageUsers.jsp\tO\nis\tO\tis\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1751\tI-Code_Block\tQ_1751\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntested\tO\ttested\tO\nabove\tO\tabove\tO\nfile\tO\tfile\tO\nwithout\tO\twithout\tO\nDeleteUserForm.jspf\tB-File_Name\tDeleteUserForm.jspf\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nwell\tO\twell\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nproblems\tO\tproblems\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\ncause\tO\tcause\tO\nis\tO\tis\tO\nDeleteUserForm.jsp\tB-File_Name\tDeleteUserForm.jsp\tO\nand\tO\tand\tO\nhere\tO\there\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nform\tO\tform\tO\nis\tO\tis\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1752\tI-Code_Block\tQ_1752\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nalso\tO\talso\tO\nworked\tO\tworked\tO\nbefore\tO\tbefore\tO\nbut\tO\tbut\tO\nnow\tO\tnow\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17209302\tO\t17209302\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17209302/\tO\thttps://stackoverflow.com/questions/17209302/\tO\n\t\n\t\nI\tO\tI\tO\nsolved\tO\tsolved\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nand\tO\tand\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nset\tO\tset\tO\nString\tB-Data_Type\tString\tO\ntype\tO\ttype\tO\nvariable\tO\tvariable\tO\nto\tO\tto\tO\nUserProfile\tB-Class_Name\tUserProfile\tO\ntype\tO\ttype\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22112995\tO\t22112995\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22112995/\tO\thttps://stackoverflow.com/questions/22112995/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n(\tO\t(\tO\nSpotDetails\tB-Class_Name\tSpotDetails\tO\n)\tO\t)\tO\nwhich\tO\twhich\tO\nincludes\tO\tincludes\tO\na\tO\ta\tO\nfragment\tO\tfragment\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ndrawn\tO\tdrawn\tO\nprogramically\tO\tprogramically\tO\n.\tO\t.\tO\n\t\nUntill\tO\tUntill\tO\nnow\tO\tnow\tO\ni\tO\ti\tO\n've\tO\t've\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\nfragment\tO\tfragment\tO\ndrawing\tO\tdrawing\tO\nclass\tO\tclass\tO\n(\tO\t(\tO\nWindRose\tB-Class_Name\tWindRose\tO\n)\tO\t)\tO\nas\tO\tas\tO\na\tO\ta\tO\nchild\tO\tchild\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nWindRose\tB-Class_Name\tWindRose\tO\nclass\tO\tclass\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nAsynTask\tB-Library_Class\tAsynTask\tO\nfor\tO\tfor\tO\nbetter\tO\tbetter\tO\nUser\tO\tUser\tO\nExperience\tO\tExperience\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\nApplication\tO\tApplication\tO\nis\tO\tis\tO\nsuffering\tO\tsuffering\tO\nfrom\tO\tfrom\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\nwork\tO\twork\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nWindRose\tB-Class_Name\tWindRose\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2395\tI-Code_Block\tQ_2395\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWindRose\tB-Class_Name\tWindRose\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2396\tI-Code_Block\tQ_2396\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIm\tO\tIm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\ni\tO\ti\tO\nexplained\tO\texplained\tO\nthings\tO\tthings\tO\nright\tO\tright\tO\nso\tO\tso\tO\nplease\tO\tplease\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nif\tO\tif\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nunclear\tO\tunclear\tO\n:)\tO\t:)\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2397\tI-Code_Block\tQ_2397\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nhow\tO\thow\tO\nshould\tO\tshould\tO\ni\tO\ti\tO\nimplement\tO\timplement\tO\nthis\tO\tthis\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nSpotDetails\tB-Class_Name\tSpotDetails\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nwhat\tO\twhat\tO\nshould\tO\tshould\tO\ni\tO\ti\tO\nreturn\tO\treturn\tO\nfrom\tO\tfrom\tO\nDrawRose\tB-Function_Name\tDrawRose\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22112995\tO\t22112995\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22112995/\tO\thttps://stackoverflow.com/questions/22112995/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\ndraw\tB-Library_Function\tdraw\tO\nonly\tO\tonly\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ndraw\tB-Library_Function\tdraw\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbackground\tB-User_Interface_Element\tbackground\tO\nif\tO\tif\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nDraw\tB-Library_Function\tDraw\tO\ninheritance\tO\tinheritance\tO\nmethod\tO\tmethod\tO\nfrom\tO\tfrom\tO\nView\tB-Library_Class\tView\tO\n.\tO\t.\tO\n\t\nBetter\tO\tBetter\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nSurfaceView\tB-Library_Class\tSurfaceView\tO\nwith\tO\twith\tO\nlock\tO\tlock\tO\n/\tO\t/\tO\nunlock\tO\tunlock\tO\ncanvas\tB-Variable_Name\tcanvas\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\noptimized\tO\toptimized\tO\nalgorithm\tO\talgorithm\tO\nwhich\tO\twhich\tO\nallows\tO\tallows\tO\nfor\tO\tfor\tO\nbackground\tB-User_Interface_Element\tbackground\tO\ndrawing\tO\tdrawing\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3002\tI-Code_Block\tA_3002\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46272847\tO\t46272847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46272847/\tO\thttps://stackoverflow.com/questions/46272847/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nsharing\tO\tsharing\tO\ndata\tO\tdata\tO\nacross\tO\tacross\tO\ntwo\tO\ttwo\tO\nsibling\tO\tsibling\tO\ncomponents\tO\tcomponents\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\ninjectible\tB-Library_Class\tinjectible\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\ninjectible\tO\tinjectible\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nobservable\tB-Library_Class\tobservable\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6070\tI-Code_Block\tQ_6070\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nthen\tO\tthen\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nSubject\tB-Library_Class\tSubject\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nof\tO\tof\tO\nObservable\tB-Library_Class\tObservable\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nObservable\tB-Library_Class\tObservable\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nSubject\tB-Library_Class\tSubject\tO\n,\tO\t,\tO\nso\tO\tso\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nreactive\tO\treactive\tO\nprogramming\tO\tprogramming\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nconfused\tO\tconfused\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46272847\tO\t46272847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46272847/\tO\thttps://stackoverflow.com/questions/46272847/\tO\n\t\n\t\nuse\tO\tuse\tO\na\tO\ta\tO\nglobal\tB-Data_Type\tglobal\tO\nvariable\tO\tvariable\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ninjectible\tB-Library_Class\tinjectible\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nthem\tO\tthem\tO\nthrough\tO\tthrough\tO\nout\tO\tout\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\n1.create\tO\t1.create\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nDTO\tO\tDTO\tO\n.\tO\t.\tO\n\t\n2.import\tO\t2.import\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ncomponent\tO\tcomponent\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\n3.create\tO\t3.create\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\nconstructor\tO\tconstructor\tO\n's\tO\t's\tO\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\n4.access\tO\t4.access\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32402094\tO\t32402094\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32402094/\tO\thttps://stackoverflow.com/questions/32402094/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\nSpark\tB-Library\tSpark\tO\n1.4.1\tB-Version\t1.4.1\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nlocal\tO\tlocal\tO\nMac\tB-Device\tMac\tO\nlaptop\tI-Device\tlaptop\tO\nand\tO\tand\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npyspark\tB-Library\tpyspark\tB-Code_Block\ninteractively\tO\tinteractively\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nissues\tO\tissues\tO\n.\tO\t.\tO\n\t\nSpark\tB-Library\tSpark\tO\nwas\tO\twas\tO\ninstalled\tO\tinstalled\tO\nthrough\tO\tthrough\tO\nHomebrew\tB-Application\tHomebrew\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nAnaconda\tB-Application\tAnaconda\tO\nPython\tB-Language\tPython\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nspark-submit\tB-Code_Block\tspark-submit\tB-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3927\tI-Code_Block\tQ_3927\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3928\tI-Code_Block\tQ_3928\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nanywhere\tO\tanywhere\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n/usr/local/Cellar/apache-spark/1.4.1/\tB-File_Name\t/usr/local/Cellar/apache-spark/1.4.1/\tB-Code_Block\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nspark-submit\tB-Code_Block\tspark-submit\tB-Code_Block\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nset\tO\tset\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3929\tI-Code_Block\tQ_3929\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nsomething\tO\tsomething\tO\nis\tO\tis\tO\nset\tO\tset\tO\nincorrectly\tO\tincorrectly\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nenvironment\tO\tenvironment\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nit\tO\tit\tO\ndown\tO\tdown\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32402094\tO\t32402094\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32402094/\tO\thttps://stackoverflow.com/questions/32402094/\tO\n\t\n\t\nThe\tO\tThe\tO\npython\tB-File_Type\tpython\tO\nfiles\tO\tfiles\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nexecuted\tO\texecuted\tO\nby\tO\tby\tO\nspark-submit\tB-Code_Block\tspark-submit\tB-Code_Block\nshould\tO\tshould\tO\nbe\tO\tbe\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nPYTHONPATH\tB-Code_Block\tPYTHONPATH\tB-Code_Block\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\npath\tO\tpath\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\nby\tO\tby\tO\ndoing\tO\tdoing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7137\tI-Code_Block\tA_7137\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nadd\tO\tadd\tO\n'\tB-Value\t'\tB-Code_Block\n.\tI-Value\t.\tI-Code_Block\n'\tI-Value\t'\tI-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nPYTHONPATH\tB-Code_Block\tPYTHONPATH\tB-Code_Block\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nalready\tO\talready\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\npython\tB-Language\tpython\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7138\tI-Code_Block\tA_7138\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\nto\tO\tto\tO\n@Def_Os\tB-User_Name\t@Def_Os\tO\nfor\tO\tfor\tO\npointing\tO\tpointing\tO\nthat\tO\tthat\tO\nout\tO\tout\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7930740\tO\t7930740\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7930740/\tO\thttps://stackoverflow.com/questions/7930740/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nsome\tO\tsome\tO\ngeneric\tO\tgeneric\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nhandling\tO\thandling\tO\ndrops\tO\tdrops\tO\nin\tO\tin\tO\nWPF\tB-Library\tWPF\tO\ndrop\tO\tdrop\tO\ntargets\tO\ttargets\tO\n.\tO\t.\tO\n\t\nAllowDrop\tB-Library_Variable\tAllowDrop\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\ntrue\tO\ttrue\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n've\tO\t've\tO\nhooked\tO\thooked\tO\nonto\tO\tonto\tO\nDragEnter\tB-Library_Class\tDragEnter\tO\n,\tO\t,\tO\nDragOver\tB-Library_Class\tDragOver\tO\n,\tO\t,\tO\nDragLeave\tB-Library_Class\tDragLeave\tO\n,\tO\t,\tO\n&\tO\t&\tO\nDrop\tB-Library_Class\tDrop\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndrop\tO\tdrop\tO\ntarget\tO\ttarget\tO\nUIElement\tB-Library_Class\tUIElement\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nbubbling\tO\tbubbling\tO\nevents\tO\tevents\tO\nenables\tO\tenables\tO\nnesting\tO\tnesting\tO\nof\tO\tof\tO\ndrop\tO\tdrop\tO\ntargets\tO\ttargets\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\nsource\tO\tsource\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\ninter-application\tO\tinter-application\tO\ndrag\tO\tdrag\tO\n&\tO\t&\tO\ndrop\tO\tdrop\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nUI\tO\tUI\tO\ncleanup\tO\tcleanup\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\na\tO\ta\tO\npotential\tO\tpotential\tO\ndrop\tO\tdrop\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\npresses\tO\tpresses\tO\nEsc\tB-Keyboard_IP\tEsc\tO\nto\tO\tto\tO\ncancel\tO\tcancel\tO\nthe\tO\tthe\tO\ndrop\tO\tdrop\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndrop\tO\tdrop\tO\ntarget\tO\ttarget\tO\nnever\tO\tnever\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\ngets\tO\tgets\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nevent\tO\tevent\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndifferentiate\tO\tdifferentiate\tO\nfrom\tO\tfrom\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nothers\tO\tothers\tO\n.\tO\t.\tO\n\t\nDrop\tO\tDrop\tO\nis\tO\tis\tO\neasy\tO\teasy\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nwhat\tO\twhat\tO\nindicates\tO\tindicates\tO\na\tO\ta\tO\ncancel\tO\tcancel\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nDragLeave\tB-Library_Class\tDragLeave\tO\nis\tO\tis\tO\na\tO\ta\tO\nbubbling\tO\tbubbling\tO\nrouted\tO\trouted\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\ne.OriginalSource\tB-Library_Variable\te.OriginalSource\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nset\tO\tset\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nevent\tO\tevent\tO\n(\tO\t(\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nPreview\tO\tPreview\tO\n)\tO\t)\tO\nvia\tO\tvia\tO\nhittesting\tO\thittesting\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntarget\tO\ttarget\tO\nis\tO\tis\tO\nan\tO\tan\tO\nItemsControl\tB-Library_Class\tItemsControl\tO\n(\tO\t(\tO\nListbox\tB-Library_Class\tListbox\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n've\tO\t've\tO\ncurrently\tO\tcurrently\tO\nbeen\tO\tbeen\tO\ntesting\tO\ttesting\tO\nwith\tO\twith\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nI\tO\tI\tO\ndrag\tO\tdrag\tO\nover\tO\tover\tO\nmy\tO\tmy\tO\nintended\tO\tintended\tO\ndrop\tO\tdrop\tO\ntarget\tO\ttarget\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nloads\tO\tloads\tO\nof\tO\tof\tO\nDragLeave\tB-Library_Class\tDragLeave\tO\nevents\tO\tevents\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\nvisuals\tO\tvisuals\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ntarget\tO\ttarget\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nnever\tO\tnever\tO\nget\tO\tget\tO\nany\tO\tany\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ntarget\tO\ttarget\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nGrids\tB-User_Interface_Element\tGrids\tO\n,\tO\t,\tO\nrectangles\tB-User_Interface_Element\trectangles\tO\n,\tO\t,\tO\nborders\tB-User_Interface_Element\tborders\tO\n,\tO\t,\tO\ntextblocks\tB-User_Interface_Element\ttextblocks\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nall\tO\tall\tO\nhappily\tO\thappily\tO\nsend\tO\tsend\tO\nme\tO\tme\tO\nDragLeave\tB-Library_Class\tDragLeave\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnone\tO\tnone\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nItemsControl\tB-Library_Class\tItemsControl\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nconnected\tO\tconnected\tO\nup\tO\tup\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nhittesting\tO\thittesting\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n've\tO\t've\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nBackground\tB-Library_Variable\tBackground\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nItemsControl\tB-Library_Class\tItemsControl\tO\nto\tO\tto\tO\na\tO\ta\tO\ncolour\tO\tcolour\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nmakes\tO\tmakes\tO\nno\tO\tno\tO\ndifference\tO\tdifference\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\nam\tO\tam\tO\nI\tO\tI\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ndrop\tO\tdrop\tO\noperation\tO\toperation\tO\nhas\tO\thas\tO\ndefinitely\tO\tdefinitely\tO\nfinished\tO\tfinished\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nThe\tO\tThe\tO\nactual\tO\tactual\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nimplementing\tO\timplementing\tO\nsome\tO\tsome\tO\ncustom\tO\tcustom\tO\ndragging\tO\tdragging\tO\nbehaviour\tO\tbehaviour\tO\nin\tO\tin\tO\na\tO\ta\tO\nTreeView\tB-Library_Class\tTreeView\tO\nthat\tO\tthat\tO\nexpands\tO\texpands\tO\nfolders\tB-User_Interface_Element\tfolders\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nhover\tO\thover\tO\nover\tO\tover\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncancels\tO\tcancels\tO\ntimers\tO\ttimers\tO\n&\tO\t&\tO\nundoes\tO\tundoes\tO\nthe\tO\tthe\tO\nexpansion\tO\texpansion\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ndrop\tO\tdrop\tO\nis\tO\tis\tO\nfinished\tO\tfinished\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmore\tO\tmore\tO\nto\tO\tto\tO\ncome\tO\tcome\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\nto\tO\tto\tO\nfire\tO\tfire\tO\nsensibly\tO\tsensibly\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nListBox\tB-Library_Class\tListBox\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7930740\tO\t7930740\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7930740/\tO\thttps://stackoverflow.com/questions/7930740/\tO\n\t\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncomplex\tO\tcomplex\tO\nscenario\tO\tscenario\tO\nhere\tO\there\tO\nso\tO\tso\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nstart\tO\tstart\tO\nbasic\tO\tbasic\tO\nin\tO\tin\tO\nhopes\tO\thopes\tO\nof\tO\tof\tO\ngiving\tO\tgiving\tO\nyou\tO\tyou\tO\na\tO\ta\tO\ndirection\tO\tdirection\tO\nand\tO\tand\tO\nhopefully\tO\thopefully\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nframework\tO\tframework\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\ninform\tO\tinform\tO\nof\tO\tof\tO\na\tO\ta\tO\nDragEnter\tB-Library_Class\tDragEnter\tO\nevent\tO\tevent\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\nis\tO\tis\tO\nmarked\tO\tmarked\tO\nwith\tO\twith\tO\nAllowDrop\tB-Code_Block\tAllowDrop\tO\n=\tI-Code_Block\t=\tO\ntrue\tI-Code_Block\ttrue\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ndone\tO\tdone\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nsounds\tO\tsounds\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nDragLeave\tB-Library_Class\tDragLeave\tO\nevent\tO\tevent\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nto\tO\tto\tO\ngrab\tO\tgrab\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\ndata\tO\tdata\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nhook\tO\thook\tO\ninto\tO\tinto\tO\nDragLeave\tB-Library_Class\tDragLeave\tO\nbut\tO\tbut\tO\nto\tO\tto\tO\nhook\tO\thook\tO\ninto\tO\tinto\tO\nPreviewMouseMove\tB-Library_Class\tPreviewMouseMove\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\ndetermine\tO\tdetermine\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nmouse\tB-Device\tmouse\tO\nis\tO\tis\tO\npressed\tO\tpressed\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nfar\tO\tfar\tO\nof\tO\tof\tO\na\tO\ta\tO\ndistance\tO\tdistance\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nbefore\tO\tbefore\tO\nenacting\tO\tenacting\tO\na\tO\ta\tO\nDoDragDrop\tB-Library_Function\tDoDragDrop\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nevent\tO\tevent\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nand\tO\tand\tO\nanalyze\tO\tanalyze\tO\nDrag\tB-Variable_Name\tDrag\tO\nData\tI-Variable_Name\tData\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\nstarts\tO\tstarts\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nDataObject\tB-Variable_Name\tDataObject\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nDoDragDrop\tB-Library_Function\tDoDragDrop\tO\ncall\tO\tcall\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_931\tI-Code_Block\tA_931\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ndrag\tB-Variable_Name\tdrag\tO\ndata\tI-Variable_Name\tdata\tO\nis\tO\tis\tO\nnow\tO\tnow\tO\naccessible\tO\taccessible\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nDragEventArgs\tB-Library_Class\tDragEventArgs\tO\nobject\tO\tobject\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\n(\tO\t(\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nrename\tO\trename\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nparameter\tO\tparameter\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ne\tB-Variable_Name\te\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_932\tI-Code_Block\tA_932\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nsuggestion\tO\tsuggestion\tO\nis\tO\tis\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\nunique\tO\tunique\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\nevent\tO\tevent\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\ndifferentiate\tO\tdifferentiate\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nitem\tO\titem\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlistbox\tB-Library_Class\tlistbox\tO\nselection\tO\tselection\tO\n,\tO\t,\tO\nor\tO\tor\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nclass\tO\tclass\tO\nholding\tO\tholding\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nitem\tO\titem\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\nindicator\tO\tindicator\tO\nif\tO\tif\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7930740\tO\t7930740\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7930740/\tO\thttps://stackoverflow.com/questions/7930740/\tO\n\t\n\t\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\ne.Source\tB-Library_Variable\te.Source\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\ne.OriginalSource\tB-Library_Variable\te.OriginalSource\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nDropTarget\tB-Code_Block\tDropTarget\tO\n=\tI-Code_Block\t=\tO\n\"\tI-Code_Block\t\"\tO\nTrue\tI-Code_Block\tTrue\tO\n\"\tI-Code_Block\t\"\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nItemsControl\tB-Library_Class\tItemsControl\tO\n&\tO\t&\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nDropOver\tB-Library_Class\tDropOver\tO\nevent\tO\tevent\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nItemsControl\tB-Library_Class\tItemsControl\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nargument\tO\targument\tO\ne.Source\tB-Library_Variable\te.Source\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nItemsControl\tB-Library_Class\tItemsControl\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22806379\tO\t22806379\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22806379/\tO\thttps://stackoverflow.com/questions/22806379/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntesting\tO\ttesting\tO\nAngularJS\tB-Library\tAngularJS\tO\nwith\tO\twith\tO\nProtractor\tB-Library\tProtractor\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nrepeater\tB-Library_Function\trepeater\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsum\tO\tsum\tO\nall\tO\tall\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrows\tB-Variable_Name\trows\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncompare\tO\tcompare\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsummary\tO\tsummary\tO\nline\tO\tline\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\nHTML\tB-Language\tHTML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2496\tI-Code_Block\tQ_2496\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ne2e\tO\te2e\tO\ntest\tO\ttest\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2497\tI-Code_Block\tQ_2497\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nvarious\tO\tvarious\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nerrors\tO\terrors\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nsomeone\tO\tsomeone\tO\nadvice\tO\tadvice\tO\nwhat\tO\twhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nerror\tO\terror\tO\nI\tO\tI\tO\nget\tO\tget\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2498\tI-Code_Block\tQ_2498\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22806379\tO\t22806379\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22806379/\tO\thttps://stackoverflow.com/questions/22806379/\tO\n\t\n\t\nrows\tB-Variable_Name\trows\tO\nis\tO\tis\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nside\tO\tside\tO\neffect\tO\teffect\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\ngetText()\tB-Library_Function\tgetText()\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\narray\tB-Data_Structure\tarray\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\nelement\tO\telement\tO\n)\tO\t)\tO\n\t\nAlso\tO\tAlso\tO\ngetText()'s\tB-Library_Function\tgetText()'s\tO\nresponse\tO\tresponse\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nhandled\tO\thandled\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\ncallback\tO\tcallback\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3116\tI-Code_Block\tA_3116\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16184741\tO\t16184741\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16184741/\tO\thttps://stackoverflow.com/questions/16184741/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ninnodb\tB-Application\tinnodb\tO\ntable\tB-Data_Structure\ttable\tO\n,\tO\t,\tO\nand\tO\tand\tO\nset\tO\tset\tO\nmysql\tB-Application\tmysql\tO\ninnodb_file_per_table\tB-Code_Block\tinnodb_file_per_table\tO\n=\tI-Code_Block\t=\tO\n1\tI-Code_Block\t1\tO\non\tO\ton\tO\nHost\tB-Device\tHost\tO\nA\tI-Device\tA\tO\n\t\nthis\tO\tthis\tO\ntable\tB-Data_Structure\ttable\tO\n's\tO\t's\tO\nibd\tB-File_Type\tibd\tO\nfile\tO\tfile\tO\nallocate\tO\tallocate\tO\nabout\tO\tabout\tO\n3GB\tO\t3GB\tO\ndisk\tB-Device\tdisk\tO\n\t\nthen\tO\tthen\tO\n,\tO\t,\tO\ni\tO\ti\tO\ndump\tO\tdump\tO\nthis\tO\tthis\tO\ntable\tO\ttable\tO\nto\tO\tto\tO\nsql\tB-Language\tsql\tO\nfile(a.sql)\tB-File_Name\tfile(a.sql)\tO\n,\tO\t,\tO\na.sql\tB-File_Name\ta.sql\tO\nallocate\tO\tallocate\tO\nabout\tO\tabout\tO\n2.5Gb\tO\t2.5Gb\tO\ndisk\tB-Device\tdisk\tO\n\t\nnext\tO\tnext\tO\n,\tO\t,\tO\ni\tO\ti\tO\nimport\tO\timport\tO\na.sql\tB-File_Name\ta.sql\tO\nto\tO\tto\tO\nHost\tB-Device\tHost\tO\nB\tI-Device\tB\tO\n.\tO\t.\tO\n\t\nHost\tB-Device\tHost\tO\nA\tI-Device\tA\tO\nand\tO\tand\tO\nHost\tB-Device\tHost\tO\nB\tI-Device\tB\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nhardware\tO\thardware\tO\n,\tO\t,\tO\nsame\tO\tsame\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nsame\tO\tsame\tO\nmysql\tB-Application\tmysql\tO\nconfigure\tO\tconfigure\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ni\tO\ti\tO\nfound\tO\tfound\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ntable\tB-Data_Structure\ttable\tO\n's\tO\t's\tO\nibd\tB-File_Type\tibd\tO\nfile\tO\tfile\tO\non\tO\ton\tO\nHost\tB-Device\tHost\tO\nB\tI-Device\tB\tO\nallocate\tO\tallocate\tO\n30GB\tO\t30GB\tO\ndisk\tB-Device\tdisk\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ndump\tO\tdump\tO\nthis\tO\tthis\tO\ntable\tB-Data_Structure\ttable\tO\non\tO\ton\tO\nHost\tB-Device\tHost\tO\nB\tI-Device\tB\tO\nto\tO\tto\tO\nb.sql\tB-File_Name\tb.sql\tO\n\t\nb.sql\tB-File_Name\tb.sql\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\na.sql\tB-File_Name\ta.sql\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nsure\tO\tsure\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nimport\tO\timport\tO\na.sql\tB-File_Name\ta.sql\tO\nto\tO\tto\tO\nHost\tB-Device\tHost\tO\nB\tI-Device\tB\tO\n,\tO\t,\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nalert\tO\talert\tO\ntable\tB-Data_Structure\ttable\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nthe\tO\tthe\tO\nallocate\tO\tallocate\tO\ndisk\tO\tdisk\tO\nso\tO\tso\tO\nlarge\tO\tlarge\tO\n?\tO\t?\tO\n\t\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\ntable\tB-Data_Structure\ttable\tO\ndescription\tO\tdescription\tO\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16184741\tO\t16184741\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16184741/\tO\thttps://stackoverflow.com/questions/16184741/\tO\n\t\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nibdata1\tB-File_Name\tibdata1\tO\nthere\tO\tthere\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\noptimize\tO\toptimize\tO\ntable\tB-Data_Structure\ttable\tO\na\tO\ta\tO\non\tO\ton\tO\nHost\tB-Device\tHost\tO\nA\tI-Device\tA\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nbecause\tO\tbecause\tO\nin\tO\tin\tO\nhost\tB-Device\thost\tO\nA\tI-Device\tA\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nof\tO\tof\tO\ntable\tB-Variable_Name\ttable\tO\nA\tI-Variable_Name\tA\tO\nis\tO\tis\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nibdata1\tB-File_Name\tibdata1\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23729564\tO\t23729564\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23729564/\tO\thttps://stackoverflow.com/questions/23729564/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\ngame\tO\tgame\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nget\tO\tget\tO\nfrom\tO\tfrom\tO\none\tO\tone\tO\npoint\tO\tpoint\tO\n(\tO\t(\tO\ntask\tO\ttask\tO\n)\tO\t)\tO\non\tO\ton\tO\na\tO\ta\tO\nsite\tO\tsite\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\n(\tO\t(\tO\ndest\tO\tdest\tO\n)\tO\t)\tO\nin\tO\tin\tO\nan\tO\tan\tO\niframe\tB-HTML_XML_Tag\tiframe\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nstarting\tO\tstarting\tO\nand\tO\tand\tO\nend\tO\tend\tO\npoints\tO\tpoints\tO\nare\tO\tare\tO\nchosen\tO\tchosen\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nend\tO\tend\tO\npoint\tO\tpoint\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\na\tO\ta\tO\npopup\tB-User_Interface_Element\tpopup\tO\nbox\tI-User_Interface_Element\tbox\tO\nsaying\tO\tsaying\tO\nyou\tO\tyou\tO\nwon\tO\twon\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\none\tO\tone\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\nCoda\tB-Application\tCoda\tO\n2\tB-Version\t2\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nany\tO\tany\tO\nbrowser\tB-Application\tbrowser\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nvery\tO\tvery\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nJS\tB-Language\tJS\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nStack\tB-Website\tStack\tO\nOverflow\tI-Website\tOverflow\tO\nso\tO\tso\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nHow\tO\tHow\tO\nI\tO\tI\tO\nam\tO\tam\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nindex.html\tB-File_Name\tindex.html\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2628\tI-Code_Block\tQ_2628\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nactual\tO\tactual\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2629\tI-Code_Block\tQ_2629\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23729564\tO\t23729564\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23729564/\tO\thttps://stackoverflow.com/questions/23729564/\tO\n\t\n\t\nUse\tO\tUse\tO\nlocation.href\tB-Library_Variable\tlocation.href\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nurl.value\tB-Library_Variable\turl.value\tB-Code_Block\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nother\tO\tother\tO\nuseful\tO\tuseful\tO\nlocation\tO\tlocation\tO\nproperties\tO\tproperties\tO\nin\tO\tin\tO\nw3schools\tB-Website\tw3schools\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23463773\tO\t23463773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23463773/\tO\thttps://stackoverflow.com/questions/23463773/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nthis\tO\tthis\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\ndirectly\tO\tdirectly\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\npath\tO\tpath\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\nthrow\tO\tthrow\tO\nFirefox\tB-Application\tFirefox\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nredirected\tO\tredirected\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ninto\tO\tinto\tO\nsome\tO\tsome\tO\nManga\tB-Application\tManga\tO\n,\tO\t,\tO\ni\tO\ti\tO\ncould\tO\tcould\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nfrom\tO\tfrom\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthat\tO\tthat\tO\none\tO\tone\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nSomeone\tO\tSomeone\tO\nknows\tO\tknows\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\n's\tO\t's\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2585\tI-Code_Block\tQ_2585\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nURL\tO\tURL\tO\ndirectly\tO\tdirectly\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23463773\tO\t23463773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23463773/\tO\thttps://stackoverflow.com/questions/23463773/\tO\n\t\n\t\nMost\tO\tMost\tO\nlikely\tO\tlikely\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nchecking\tO\tchecking\tO\nthe\tO\tthe\tO\nHTTP\tB-Library_Variable\tHTTP\tO\nREFERRER\tI-Library_Variable\tREFERRER\tO\n(\tO\t(\tO\nwith\tO\twith\tO\nmod_rewrite\tB-Library_Function\tmod_rewrite\tO\nmaybe\tO\tmaybe\tO\n)\tO\t)\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmatch\tO\tmatch\tO\ntheir\tO\ttheir\tO\ndomain\tO\tdomain\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nredirect\tO\tredirect\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhomepage\tO\thomepage\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nsetting\tO\tsetting\tO\nHTTP-REFERRER\tB-Library_Variable\tHTTP-REFERRER\tO\nto\tO\tto\tO\nhttp://centraldemangas.com.br/\tO\thttp://centraldemangas.com.br/\tB-Code_Block\nand\tO\tand\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42842175\tO\t42842175\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42842175/\tO\thttps://stackoverflow.com/questions/42842175/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nfrom\tO\tfrom\tO\nAPI\tB-Application\tAPI\tO\nand\tO\tand\tO\nis\tO\tis\tO\nalways\tO\talways\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ncatch\tO\tcatch\tO\n.\tO\t.\tO\n\t\nEstou\tO\tEstou\tO\ntentando\tO\ttentando\tO\nsalvar\tO\tsalvar\tO\numa\tO\tuma\tO\nimagem\tO\timagem\tO\nque\tO\tque\tO\nvem\tO\tvem\tO\nda\tO\tda\tO\nAPI\tB-Application\tAPI\tO\nmas\tO\tmas\tO\nsempre\tO\tsempre\tO\ncai\tO\tcai\tO\nno\tO\tno\tO\ncatch\tO\tcatch\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5473\tI-Code_Block\tQ_5473\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4305676\tO\t4305676\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4305676/\tO\thttps://stackoverflow.com/questions/4305676/\tO\n\t\n\t\nAssume\tO\tAssume\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nor\tO\tor\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\nany\tO\tany\tO\nadjacent\tO\tadjacent\tO\ntechnology/language\tO\ttechnology/language\tO\n--what\tO\t--what\tO\n'\tO\t'\tO\ns\tO\ts\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nautomating\tO\tautomating\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nprocessing/summary\tO\tprocessing/summary\tO\nSQL\tB-Language\tSQL\tO\nscripts\tO\tscripts\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nscripts\tO\tscripts\tO\n,\tO\t,\tO\nclean-up\tO\tclean-up\tO\n(\tO\t(\tO\neg\tO\teg\tO\n,\tO\t,\tO\nupdate\tO\tupdate\tO\n,\tO\t,\tO\ndelete\tO\tdelete\tO\n)\tO\t)\tO\n,\tO\t,\tO\nprocessing\tO\tprocessing\tO\n(\tO\t(\tO\neg\tO\teg\tO\n,\tO\t,\tO\njoins\tO\tjoins\tO\n)\tO\t)\tO\nand\tO\tand\tO\nsummaries\tO\tsummaries\tO\npost-processing\tO\tpost-processing\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\nlast\tO\tlast\tO\nmonth\tO\tmonth\tO\nbut\tO\tbut\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nautomate\tO\tautomate\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\npreferred\tO\tpreferred\tO\nmethod(s)\tO\tmethod(s)\tO\nof\tO\tof\tO\nautomating\tO\tautomating\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nprocess\tO\tprocess\tO\nas\tO\tas\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\nsequential\tO\tsequential\tO\nscripts\tO\tscripts\tO\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nAll\tO\tAll\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nrun\tO\trun\tO\non\tO\ton\tO\nMySQL\tB-Application\tMySQL\tO\ndbs\tO\tdbs\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4305676\tO\t4305676\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4305676/\tO\thttps://stackoverflow.com/questions/4305676/\tO\n\t\n\t\nSimilar\tO\tSimilar\tO\nto\tO\tto\tO\nMAW\tB-User_Name\tMAW\tO\n's\tO\t's\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nWindows\tB-Application\tWindows\tO\nService\tI-Application\tService\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\napp\tI-Application\tapp\tO\n(\tO\t(\tO\nno\tO\tno\tO\nGUI\tO\tGUI\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsplit\tO\tsplit\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nindividual\tO\tindividual\tO\nDB\tO\tDB\tO\nscripts\tO\tscripts\tO\ninto\tO\tinto\tO\nseparate\tO\tseparate\tO\ntasks\tO\ttasks\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nService\tO\tService\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nat\tO\tat\tO\ndifferent\tO\tdifferent\tO\ntime\tO\ttime\tO\nintervals\tO\tintervals\tO\n,\tO\t,\tO\nlog\tO\tlog\tO\ntheir\tO\ttheir\tO\nresults\tO\tresults\tO\nseparately\tO\tseparately\tO\n,\tO\t,\tO\nand\tO\tand\tO\nbe\tO\tbe\tO\nindependently\tO\tindependently\tO\nconfigured\tO\tconfigured\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4305676\tO\t4305676\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4305676/\tO\thttps://stackoverflow.com/questions/4305676/\tO\n\t\n\t\nThis\tO\tThis\tO\ndepends\tO\tdepends\tO\ngreatly\tO\tgreatly\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nDBMS\tB-Application\tDBMS\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nSQL\tB-Application\tSQL\tO\nServer\tI-Application\tServer\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nscheduled\tO\tscheduled\tO\njobs\tO\tjobs\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nany\tO\tany\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nstored\tO\tstored\tO\nprocedures/commands\tO\tprocedures/commands\tO\non\tO\ton\tO\na\tO\ta\tO\nschedule\tO\tschedule\tO\n,\tO\t,\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nWindows\tB-Application\tWindows\tO\nscheduled\tI-Application\tscheduled\tO\ntasks\tI-Application\ttasks\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ntagged\tO\ttagged\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nwith\tO\twith\tO\nmysql\tB-Application\tmysql\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nassume\tO\tassume\tO\nthats\tO\tthats\tO\nwhat\tO\twhat\tO\nyour\tO\tyour\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\non\tO\ton\tO\nmysql\tB-Application\tmysql\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nhttp://dev.mysql.com/tech-resources/articles/event-feature.html\tO\thttp://dev.mysql.com/tech-resources/articles/event-feature.html\tO\n\t\nIf\tO\tIf\tO\nall\tO\tall\tO\nelse\tO\telse\tO\nfails\tO\tfails\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreference\tO\treference\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nscripts\tO\tscripts\tO\nin\tO\tin\tO\na\tO\ta\tO\nstored\tO\tstored\tO\nprocedure\tO\tprocedure\tO\n,\tO\t,\tO\nthan\tO\tthan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\nprogram\tO\tprogram\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ndb\tO\tdb\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\nthat\tO\tthat\tO\nprocedure\tO\tprocedure\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nschedule\tO\tschedule\tO\nthat\tO\tthat\tO\nprogram\tO\tprogram\tO\nwith\tO\twith\tO\nWindows\tB-Application\tWindows\tO\nTask\tI-Application\tTask\tO\nscheduler\tI-Application\tscheduler\tO\nor\tO\tor\tO\nsimilar\tO\tsimilar\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31410107\tO\t31410107\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31410107/\tO\thttps://stackoverflow.com/questions/31410107/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable\tB-HTML_XML_Tag\ttable\tO\nwith\tO\twith\tO\n3\tO\t3\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncolor\tO\tcolor\tO\nto\tO\tto\tO\ngreen\tO\tgreen\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nselect\tO\tselect\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nchecklist\tB-User_Interface_Element\tchecklist\tO\n(\tO\t(\tO\nform\tB-HTML_XML_Tag\tform\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nin\tO\tin\tO\nGREEN\tO\tGREEN\tO\nthe\tO\tthe\tO\ncolumn\tO\tcolumn\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncity\tO\tcity\tO\ni\tO\ti\tO\nchoose\tO\tchoose\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nif\tO\tif\tO\nI\tO\tI\tO\nchoose\tO\tchoose\tO\nNew\tB-Value\tNew\tO\nYork\tI-Value\tYork\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nNew\tB-Value\tNew\tO\nYork\tI-Value\tYork\tO\nbecome\tO\tbecome\tO\ngreen\tO\tgreen\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nHTML\tB-Language\tHTML\tO\n-\tO\t-\tO\nTable\tB-HTML_XML_Tag\tTable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3779\tI-Code_Block\tQ_3779\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHTML\tB-Language\tHTML\tO\n-\tO\t-\tO\nForm\tB-HTML_XML_Tag\tForm\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3780\tI-Code_Block\tQ_3780\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nScript\tO\tScript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3781\tI-Code_Block\tQ_3781\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31410107\tO\t31410107\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31410107/\tO\thttps://stackoverflow.com/questions/31410107/\tO\n\t\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nif\tB-Code_Block\tif\tB-Code_Block\nelse\tI-Code_Block\telse\tI-Code_Block\nadd\tO\tadd\tO\na\tO\ta\tO\ndata-city\tB-Variable_Name\tdata-city\tB-Code_Block\nattribute\tO\tattribute\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nwhich\tO\twhich\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\ndropdown\tB-User_Interface_Element\tdropdown\tO\ncorresponds\tO\tcorresponds\tO\nto\tO\tto\tO\nwhich\tO\twhich\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntable\tB-User_Interface_Element\ttable\tO\n.\tO\t.\tO\n\t\nAdd\tO\tAdd\tO\ndata-city\tB-Variable_Name\tdata-city\tB-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nth\tB-HTML_XML_Tag\tth\tB-Code_Block\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4473\tI-Code_Block\tA_4473\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBased\tO\tBased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndropdown\tB-User_Interface_Element\tdropdown\tO\nvalue\tO\tvalue\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nth\tB-HTML_XML_Tag\tth\tO\nand\tO\tand\tO\nget\tO\tget\tO\nits\tO\tits\tO\nindex\tB-Variable_Name\tindex\tO\n.\tO\t.\tO\n\t\nGet\tO\tGet\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n(\tO\t(\tO\ntds\tB-HTML_XML_Tag\ttds\tO\n)\tO\t)\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthat\tO\tthat\tO\nindex\tB-Variable_Name\tindex\tO\nand\tO\tand\tO\nchange\tB-Library_Function\tchange\tO\ncss\tB-Language\tcss\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4474\tI-Code_Block\tA_4474\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\ndemo\tO\tdemo\tO\nhttp://jsbin.com/leqinun/1/edit?html,js,output\tO\thttp://jsbin.com/leqinun/1/edit?html,js,output\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20807194\tO\t20807194\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20807194/\tO\thttps://stackoverflow.com/questions/20807194/\tO\n\t\n\t\nFor\tO\tFor\tO\none\tO\tone\tO\nweek\tO\tweek\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\ntype\tB-Error_Name\ttype\tO\nmissmatch\tI-Error_Name\tmissmatch\tO\nerror\tI-Error_Name\terror\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsearch\tO\tsearch\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\n,\tO\t,\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ngenerics\tO\tgenerics\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\ncould\tO\tcould\tO\nanyone\tO\tanyone\tO\nplease\tO\tplease\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2205\tI-Code_Block\tQ_2205\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2206\tI-Code_Block\tQ_2206\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nclasses\tO\tclasses\tO\nand\tO\tand\tO\ninterfaces\tO\tinterfaces\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2207\tI-Code_Block\tQ_2207\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20807194\tO\t20807194\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20807194/\tO\thttps://stackoverflow.com/questions/20807194/\tO\n\t\n\t\nA\tO\tA\tO\nlittle\tO\tlittle\tO\nimprovement\tO\timprovement\tO\nof\tO\tof\tO\nT\tB-User_Name\tT\tO\nMcKeown\tI-User_Name\tMcKeown\tO\n's\tO\t's\tO\nanswer\tO\tanswer\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2782\tI-Code_Block\tA_2782\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSince\tO\tSince\tO\nBaseRequest\tB-Class_Name\tBaseRequest\tO\nis\tO\tis\tO\nconstrained\tO\tconstrained\tO\nby\tO\tby\tO\nparameter\tO\tparameter\tO\nT\tB-Variable_Name\tT\tB-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nput\tO\tput\tO\nconstraint\tO\tconstraint\tO\non\tO\ton\tO\ngeneric\tO\tgeneric\tO\nmethod\tO\tmethod\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nomit\tO\tomit\tO\ncasting\tO\tcasting\tO\nfrom\tO\tfrom\tO\ncaller\tO\tcaller\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\ngeneric\tO\tgeneric\tO\nreturn\tO\treturn\tO\ntype\tO\ttype\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2783\tI-Code_Block\tA_2783\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20807194\tO\t20807194\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20807194/\tO\thttps://stackoverflow.com/questions/20807194/\tO\n\t\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nsending\tO\tsending\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nListAlertsRequest\tB-Class_Name\tListAlertsRequest\tB-Code_Block\nto\tO\tto\tO\nDoGetRequest\tB-Library_Function\tDoGetRequest\tB-Code_Block\nwhich\tO\twhich\tO\nneeds\tO\tneeds\tO\na\tO\ta\tO\nparameter\tO\tparameter\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nBaseRequest<BaseResponse>\tB-Class_Name\tBaseRequest<BaseResponse>\tB-Code_Block\n.\tO\t.\tO\n\t\nListAlertsRequest\tB-Class_Name\tListAlertsRequest\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nBaseRequest\tB-Class_Name\tBaseRequest\tB-Code_Block\n<BaseResponse>\tI-Class_Name\t<BaseResponse>\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32090809\tO\t32090809\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32090809/\tO\thttps://stackoverflow.com/questions/32090809/\tO\n\t\n\t\nHi\tO\tHi\tO\nguys\tO\tguys\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nconvert\tO\tconvert\tO\na\tO\ta\tO\nimage\tB-User_Interface_Element\timage\tO\nto\tO\tto\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3892\tI-Code_Block\tQ_3892\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nif\tO\tif\tO\ni\tO\ti\tO\nwa\tO\twa\tO\nn't\tO\tn't\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\nthis\tO\tthis\tO\nimage\tB-User_Interface_Element\timage\tO\nautomatically\tO\tautomatically\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nset\tO\tset\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3893\tI-Code_Block\tQ_3893\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3894\tI-Code_Block\tQ_3894\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\ninput\tO\tinput\tO\nfile\tO\tfile\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nmy\tO\tmy\tO\ndefault\tO\tdefault\tO\nimage\tO\timage\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nwith\tO\twith\tO\najax\tB-Library\tajax\tO\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nEDIT2\tO\tEDIT2\tO\n\t\nIf\tO\tIf\tO\nevent.target.files\tB-Variable_Name\tevent.target.files\tB-Code_Block\n;\tI-Variable_Name\t;\tI-Code_Block\nis\tO\tis\tO\nnull\tO\tnull\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nset\tO\tset\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nnew\tO\tnew\tO\nimage\tB-User_Interface_Element\timage\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3895\tI-Code_Block\tQ_3895\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32090809\tO\t32090809\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32090809/\tO\thttps://stackoverflow.com/questions/32090809/\tO\n\t\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4602\tI-Code_Block\tA_4602\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhere\tO\twhere\tO\ndefaultImg\tB-Variable_Name\tdefaultImg\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nwhich\tO\twhich\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\nimg\tB-User_Interface_Element\timg\tO\nwith\tO\twith\tO\nsrc\tO\tsrc\tO\n.\tO\t.\tO\n\t\nsomthing\tO\tsomthing\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4603\tI-Code_Block\tA_4603\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46376245\tO\t46376245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46376245/\tO\thttps://stackoverflow.com/questions/46376245/\tO\n\t\n\t\nI\tO\tI\tO\nwonder\tO\twonder\tO\nwhether\tO\twhether\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncalculate\tO\tcalculate\tO\nthe\tO\tthe\tO\n2nd-order\tO\t2nd-order\tO\nderivative\tO\tderivative\tO\non\tO\ton\tO\nCRF\tB-Algorithm\tCRF\tO\nloss\tO\tloss\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nTensorflow\tB-Library\tTensorflow\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\ntf.contrib.crf.crf_log_likelihood\tB-Code_Block\ttf.contrib.crf.crf_log_likelihood\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\ncalculate\tO\tcalculate\tO\nthe\tO\tthe\tO\nloss\tO\tloss\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nit\tO\tit\tO\ngives\tO\tgives\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\"\tB-Output_Block\t\"\tO\nSecond-order\tI-Output_Block\tSecond-order\tO\ngradient\tI-Output_Block\tgradient\tO\nfor\tI-Output_Block\tfor\tO\nwhile\tI-Output_Block\twhile\tO\nloops\tI-Output_Block\tloops\tO\nnot\tI-Output_Block\tnot\tO\nsupported\tI-Output_Block\tsupported\tO\n\"\tI-Output_Block\t\"\tO\n.\tO\t.\tO\n\t\nPreviously\tO\tPreviously\tO\n,\tO\t,\tO\nit\tO\tit\tO\nalso\tO\talso\tO\ngives\tO\tgives\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\nfor\tO\tfor\tO\nRNN\tB-Algorithm\tRNN\tO\nloss\tO\tloss\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nTensorflow\tB-Library\tTensorflow\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\n2nd-order\tO\t2nd-order\tO\nderivative\tO\tderivative\tO\nfor\tO\tfor\tO\nsequence\tO\tsequence\tO\nmodel\tO\tmodel\tO\nat\tO\tat\tO\nall\tO\tall\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19544673\tO\t19544673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19544673/\tO\thttps://stackoverflow.com/questions/19544673/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nsubmit\tO\tsubmit\tO\na\tO\ta\tO\nform\tO\tform\tO\nand\tO\tand\tO\nstarts\tO\tstarts\tO\nan\tO\tan\tO\nimageupload\tB-Function_Name\timageupload\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthe\tO\tthe\tO\nimageupload\tB-Function_Name\timageupload\tO\nis\tO\tis\tO\ncomplete\tO\tcomplete\tO\n,\tO\t,\tO\nanother\tO\tanother\tO\nfunction\tO\tfunction\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nstart\tO\tstart\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2058\tI-Code_Block\tQ_2058\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nstart\tO\tstart\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nupload\tO\tupload\tO\nis\tO\tis\tO\nfinished\tO\tfinished\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2059\tI-Code_Block\tQ_2059\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nmust\tO\tmust\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\ninsert\tO\tinsert\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nBest\tO\tBest\tO\nregards\tO\tregards\tO\n\t\nHendrik\tB-User_Name\tHendrik\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19544673\tO\t19544673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19544673/\tO\thttps://stackoverflow.com/questions/19544673/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2604\tI-Code_Block\tA_2604\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19544673\tO\t19544673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19544673/\tO\thttps://stackoverflow.com/questions/19544673/\tO\n\t\n\t\nUse\tO\tUse\tO\nsuccess\tB-Code_Block\tsuccess\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2605\tI-Code_Block\tA_2605\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRead\tO\tRead\tO\nhttp://malsup.com/jquery/form/#options-object\tO\thttp://malsup.com/jquery/form/#options-object\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31893984\tO\t31893984\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31893984/\tO\thttps://stackoverflow.com/questions/31893984/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\nonly\tO\tonly\tO\non\tO\ton\tO\nleft\tO\tleft\tO\nside\tO\tside\tO\nwhere\tO\twhere\tO\nis\tO\tis\tO\nletter\tO\tletter\tO\n\"\tB-Value\t\"\tO\nF\tI-Value\tF\tO\n\"\tI-Value\t\"\tO\nand\tO\tand\tO\nother\tO\tother\tO\nsection\tO\tsection\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nnot\tO\tnot\tO\nclickable\tO\tclickable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nwith\tO\twith\tO\ncss\tB-Language\tcss\tO\nclass\tO\tclass\tO\ndiver\tO\tdiver\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nHtml\tB-Language\tHtml\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3852\tI-Code_Block\tQ_3852\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCSS\tB-Language\tCSS\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3853\tI-Code_Block\tQ_3853\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCodePen\tB-Application\tCodePen\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31893984\tO\t31893984\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31893984/\tO\thttps://stackoverflow.com/questions/31893984/\tO\n\t\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nHTML\tB-Language\tHTML\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\n\"\tO\t\"\tO\nuniversal\tO\tuniversal\tO\nreset\tO\treset\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\n*\tB-Value\t*\tB-Code_Block\nsection\tO\tsection\tO\n)\tO\t)\tO\nhave\tO\thave\tO\nan\tO\tan\tO\neffect\tO\teffect\tO\non\tO\ton\tO\nelements\tO\telements\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nHeaders\tO\tHeaders\tO\n,\tO\t,\tO\nparagraphs\tO\tparagraphs\tO\nand\tO\tand\tO\nlists\tO\tlists\tO\nspring\tO\tspring\tO\nto\tO\tto\tO\nmind\tO\tmind\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4564\tI-Code_Block\tQ_4564\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4565\tI-Code_Block\tQ_4565\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27327659\tO\t27327659\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27327659/\tO\thttps://stackoverflow.com/questions/27327659/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nquery\tO\tquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3155\tI-Code_Block\tQ_3155\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhowever\tO\thowever\tO\nthis\tO\tthis\tO\nquery\tO\tquery\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nbasically\tO\tbasically\tO\nwanted\tO\twanted\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nordered\tO\tordered\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\npictures\tO\tpictures\tO\nin\tO\tin\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ndid\tO\tdid\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nit\tO\tit\tO\ngiving\tO\tgiving\tO\nme\tO\tme\tO\n1\tO\t1\tO\non\tO\ton\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstyles\tO\tstyles\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nmore\tO\tmore\tO\npictures\tO\tpictures\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nstyle\tO\tstyle\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27327659\tO\t27327659\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27327659/\tO\thttps://stackoverflow.com/questions/27327659/\tO\n\t\n\t\nORDER\tB-Code_Block\tORDER\tB-Code_Block\nBY\tI-Code_Block\tBY\tI-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nunderscores\tO\tunderscores\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nequally\tO\tequally\tO\nimportant\tO\timportant\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nDISTINCT\tB-Code_Block\tDISTINCT\tB-Code_Block\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\nmodifies\tO\tmodifies\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nSELECT\tB-Code_Block\tSELECT\tB-Code_Block\nand\tO\tand\tO\nit\tO\tit\tO\napplies\tO\tapplies\tO\nto\tO\tto\tO\nall\tO\tall\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\ngroup\tB-Code_Block\tgroup\tB-Code_Block\nby\tI-Code_Block\tby\tI-Code_Block\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndistinct\tO\tdistinct\tO\n.\tO\t.\tO\n\t\nSomething\tO\tSomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3793\tI-Code_Block\tA_3793\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nalmost\tO\talmost\tO\nnever\tO\tnever\tO\nneed\tO\tneed\tO\ndistinct\tB-Code_Block\tdistinct\tB-Code_Block\nwith\tO\twith\tO\ngroup\tB-Code_Block\tgroup\tB-Code_Block\nby\tI-Code_Block\tby\tI-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29686565\tO\t29686565\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29686565/\tO\thttps://stackoverflow.com/questions/29686565/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nread\tO\tread\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nquestions\tO\tquestions\tO\non\tO\ton\tO\nnon-Abstract\tO\tnon-Abstract\tO\nclasses\tO\tclasses\tO\nwith\tO\twith\tO\nabstract\tO\tabstract\tO\nmethods\tO\tmethods\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nunderstood\tO\tunderstood\tO\nany\tO\tany\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nheres\tO\theres\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nmetronome\tO\tmetronome\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nmetronome\tO\tmetronome\tO\nto\tO\tto\tO\n'\tO\t'\tO\nclick\tO\tclick\tO\n'\tO\t'\tO\nand\tO\tand\tO\nplay\tO\tplay\tO\nsound\tO\tsound\tO\nI\tO\tI\tO\ncopied\tO\tcopied\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nhttp://www.cs.cmu.edu/~illah/CLASSDOCS/javasound.pdf\tO\thttp://www.cs.cmu.edu/~illah/CLASSDOCS/javasound.pdf\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\na\tO\ta\tO\nsuper\tO\tsuper\tO\nbasic\tO\tbasic\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nJFrame\tB-Library_Class\tJFrame\tO\n,\tO\t,\tO\nJPanel\tB-Library_Class\tJPanel\tO\n,\tO\t,\tO\nand\tO\tand\tO\nJButtton\tB-Library_Class\tJButtton\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nButton\tB-User_Interface_Element\tButton\tO\n(\tO\t(\tO\nClickForSound\tB-Variable_Name\tClickForSound\tO\n)\tO\t)\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nplay\tO\tplay\tO\nthe\tO\tthe\tO\nsound\tO\tsound\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3536\tI-Code_Block\tQ_3536\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nI\tO\tI\tO\nget\tO\tget\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nClass\tO\tClass\tO\nPlsWork\tB-Class_Name\tPlsWork\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nabstract\tO\tabstract\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\noverride\tO\toverride\tO\nabstract\tO\tabstract\tO\nmethod\tO\tmethod\tO\nPlsWork\tB-Class_Name\tPlsWork\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3537\tI-Code_Block\tQ_3537\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\nPLEASE\tO\tPLEASE\tO\ntalk\tO\ttalk\tO\nto\tO\tto\tO\nme\tO\tme\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\nidiot\tO\tidiot\tO\nas\tO\tas\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nalmost\tO\talmost\tO\nno\tO\tno\tO\nunderstanding\tO\tunderstanding\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nabstract\tO\tabstract\tO\nmeans\tO\tmeans\tO\nor\tO\tor\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nabstract\tO\tabstract\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nanything\tO\tanything\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nabstract\tO\tabstract\tO\nor\tO\tor\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29686565\tO\t29686565\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29686565/\tO\thttps://stackoverflow.com/questions/29686565/\tO\n\t\n\t\nCheck\tO\tCheck\tO\nyour\tO\tyour\tO\nsyntax\tO\tsyntax\tO\n:\tO\t:\tO\nactionPerformed\tB-Code_Block\tactionPerformed\tB-Code_Block\n!=\tI-Code_Block\t!=\tI-Code_Block\nactionPreformed\tI-Code_Block\tactionPreformed\tI-Code_Block\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\nthe\tO\tthe\tO\n@Override\tB-Code_Block\t@Override\tB-Code_Block\nannotation\tO\tannotation\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\nin\tO\tin\tO\nother\tO\tother\tO\n,\tO\t,\tO\nnon-compile\tO\tnon-compile\tO\ntime\tO\ttime\tO\nerror\tO\terror\tO\nsituations\tO\tsituations\tO\n(\tO\t(\tO\neg\tO\teg\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\noverriding\tO\toverriding\tO\na\tO\ta\tO\nnon-abstract\tO\tnon-abstract\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\na\tO\ta\tO\nsubclass\tO\tsubclass\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4212\tI-Code_Block\tA_4212\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18893848\tO\t18893848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18893848/\tO\thttps://stackoverflow.com/questions/18893848/\tO\n\t\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ngit\tB-Application\tgit\tO\nhistory\tO\thistory\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1973\tI-Code_Block\tQ_1973\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nSHA\tO\tSHA\tO\nof\tO\tof\tO\ncommit\tO\tcommit\tO\ng\tB-Variable_Name\tg\tB-Code_Block\n.\tO\t.\tO\n\t\nNeither\tO\tNeither\tO\nfeature\tO\tfeature\tO\n,\tO\t,\tO\nnor\tO\tnor\tO\nrelease\tO\trelease\tO\nare\tO\tare\tO\navailable\tO\tavailable\tO\nany\tO\tany\tO\nlonger\tO\tlonger\tO\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\ncommit\tO\tcommit\tO\nq\tB-Variable_Name\tq\tB-Code_Block\n,\tO\t,\tO\nIE\tO\tIE\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nrelease\tO\trelease\tO\nbranch\tO\tbranch\tO\nwas\tO\twas\tO\nmerged\tO\tmerged\tO\ninto\tO\tinto\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nanswers\tO\tanswers\tO\nin\tO\tin\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nquestion\tO\tquestion\tO\n(\tO\t(\tO\nFind\tO\tFind\tO\nmerge\tO\tmerge\tO\ncommit\tO\tcommit\tO\nwhich\tO\twhich\tO\ninclude\tO\tinclude\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ncommit\tO\tcommit\tO\n)\tO\t)\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nfind\tO\tfind\tO\ncommit\tO\tcommit\tO\nk\tB-Variable_Name\tk\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nfeature\tO\tfeature\tO\nbranch\tO\tbranch\tO\nwas\tO\twas\tO\nmerged\tO\tmerged\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nrelease\tO\trelease\tO\nbranch\tO\tbranch\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18893848\tO\t18893848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18893848/\tO\thttps://stackoverflow.com/questions/18893848/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nsuggest\tO\tsuggest\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2505\tI-Code_Block\tA_2505\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n--merges\tB-Code_Block\t--merges\tB-Code_Block\nlogs\tO\tlogs\tO\nonly\tO\tonly\tO\nmerge\tO\tmerge\tO\ncommits\tO\tcommits\tO\n,\tO\t,\tO\nand\tO\tand\tO\n--ancestry-path\tB-Code_Block\t--ancestry-path\tB-Code_Block\nlimits\tO\tlimits\tO\nthe\tO\tthe\tO\ncommits\tO\tcommits\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nthose\tO\tthose\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\nbetween\tO\tbetween\tO\ng\tB-Variable_Name\tg\tO\nand\tO\tand\tO\nq\tB-Variable_Name\tq\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nshow\tO\tshow\tO\nyou\tO\tyou\tO\nboth\tO\tboth\tO\nk\tB-Variable_Name\tk\tO\nand\tO\tand\tO\nq\tB-Variable_Name\tq\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18893848\tO\t18893848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18893848/\tO\thttps://stackoverflow.com/questions/18893848/\tO\n\t\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nfeature\tO\tfeature\tO\nor\tO\tor\tO\nrelease\tO\trelease\tO\nbranches\tO\tbranches\tO\nhad\tO\thad\tO\nunique\tO\tunique\tO\nnames\tO\tnames\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nq\tB-Variable_Name\tq\tB-Code_Block\non\tO\ton\tO\nmaster\tB-Code_Block\tmaster\tB-Code_Block\nby\tO\tby\tO\nsearching\tO\tsearching\tO\nits\tO\tits\tO\nmerge\tO\tmerge\tO\ncommits\tO\tcommits\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nunique\tO\tunique\tO\nname\tO\tname\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\ngitk\tB-Code_Block\tgitk\tB-Code_Block\n--merges\tI-Code_Block\t--merges\tI-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\nentering\tO\tentering\tO\na\tO\ta\tO\nterm\tO\tterm\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFind\tB-Code_Block\tFind\tB-Code_Block\nfield\tO\tfield\tO\n)\tO\t)\tO\nbecause\tO\tbecause\tO\nGit\tB-Application\tGit\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nrecords\tO\trecords\tO\nthe\tO\tthe\tO\nmerged\tO\tmerged\tO\nbranch\tO\tbranch\tO\nnames\tO\tnames\tO\nin\tO\tin\tO\nmerge\tO\tmerge\tO\ncommit\tO\tcommit\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nmerge\tO\tmerge\tO\ncommit\tO\tcommit\tO\non\tO\ton\tO\nmasterthat\tB-Code_Block\tmasterthat\tB-Code_Block\nhas\tO\thas\tO\ng\tB-Variable_Name\tg\tB-Code_Block\nmerged\tO\tmerged\tO\nwith\tO\twith\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2504\tI-Code_Block\tA_2504\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8794169\tO\t8794169\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8794169/\tO\thttps://stackoverflow.com/questions/8794169/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nappend\tO\tappend\tO\nthe\tO\tthe\tO\ncount\tO\tcount\tO\nto\tO\tto\tO\nduplicate\tO\tduplicate\tO\nentries\tO\tentries\tO\nin\tO\tin\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nwhich\tO\twhich\tO\ncontains\tO\tcontains\tO\nduplicate\tO\tduplicate\tO\nentries\tO\tentries\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_735\tI-Code_Block\tQ_735\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\ndesired\tO\tdesired\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_736\tI-Code_Block\tQ_736\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8794169\tO\t8794169\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8794169/\tO\thttps://stackoverflow.com/questions/8794169/\tO\n\t\n\t\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1072\tI-Code_Block\tA_1072\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nnote\tO\tnote\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nvery\tO\tvery\tO\nsimple\tO\tsimple\tO\njavascript\tB-Language\tjavascript\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\neasily\tO\teasily\tO\nreadable\tO\treadable\tO\n,\tO\t,\tO\nunderstandable\tO\tunderstandable\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nvery\tO\tvery\tO\nlarge\tO\tlarge\tO\nlists\tB-Data_Structure\tlists\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nefficient\tO\tefficient\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\ntest\tO\ttest\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8794169\tO\t8794169\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8794169/\tO\thttps://stackoverflow.com/questions/8794169/\tO\n\t\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\ncount\tO\tcount\tO\nof\tO\tof\tO\nall\tO\tall\tO\nduplicates\tO\tduplicates\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1073\tI-Code_Block\tA_1073\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBest\tO\tBest\tO\nregards\tO\tregards\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39861601\tO\t39861601\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39861601/\tO\thttps://stackoverflow.com/questions/39861601/\tO\n\t\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nabout\tO\tabout\tO\n100\tO\t100\tO\nusers\tO\tusers\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\ndisabled\tO\tdisabled\tO\nin\tO\tin\tO\nAD\tO\tAD\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\nDeprovisioned\tO\tDeprovisioned\tO\nin\tO\tin\tO\nOkta\tB-Application\tOkta\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nreactivate\tO\treactivate\tO\nthese\tO\tthese\tO\nusers\tO\tusers\tO\nin\tO\tin\tO\nOkta\tB-Application\tOkta\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nwere\tO\twere\tO\nalready\tO\talready\tO\nenabled\tO\tenabled\tO\non\tO\ton\tO\nAD\tO\tAD\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nPowerShell\tB-Application\tPowerShell\tO\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\nOkta\tB-Application\tOkta\tO\nwritten\tO\twritten\tO\nby\tO\tby\tO\nMatt\tB-User_Name\tMatt\tO\nEgan\tI-User_Name\tEgan\tO\n(\tO\t(\tO\nhttps://github.com/mbegan/Okta-PSModule\tO\thttps://github.com/mbegan/Okta-PSModule\tO\n)\tO\t)\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\naccount\tO\taccount\tO\nfrom\tO\tfrom\tO\ndeprovisioned\tO\tdeprovisioned\tO\nto\tO\tto\tO\nProvisioned\tO\tProvisioned\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\naccount\tO\taccount\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nprofiled\tO\tprofiled\tO\nby\tO\tby\tO\nActive\tO\tActive\tO\nDirectory\tO\tDirectory\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nan\tO\tan\tO\nAPI\tB-Library\tAPI\tO\ncall\tO\tcall\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nallow\tO\tallow\tO\nme\tO\tme\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthat\tO\tthat\tO\nfinal\tO\tfinal\tO\nlink\tO\tlink\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5035\tI-Code_Block\tQ_5035\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39861601\tO\t39861601\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39861601/\tO\thttps://stackoverflow.com/questions/39861601/\tO\n\t\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nAD\tO\tAD\tO\nuser\tO\tuser\tO\ndeactivated\tO\tdeactivated\tO\nin\tO\tin\tO\nAD\tO\tAD\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nturn\tO\tturn\tO\ndeprovisioned\tO\tdeprovisioned\tO\nin\tO\tin\tO\nOkta\tB-Application\tOkta\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nreactivate\tO\treactivate\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nin\tO\tin\tO\nAD\tO\tAD\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nand\tO\tand\tO\nlater\tO\tlater\tO\nin\tO\tin\tO\nOkta\tB-Application\tOkta\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nmastered\tO\tmastered\tO\nby\tO\tby\tO\nAD\tO\tAD\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\nactivate\tO\tactivate\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nin\tO\tin\tO\nOkta\tB-Application\tOkta\tO\n(\tO\t(\tO\nvia\tO\tvia\tO\nAPI\tB-Library\tAPI\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nPOST\tO\tPOST\tO\n/api/v1/users/{{userId}}/lifecycle/activate?sendEmail=false\tO\t/api/v1/users/{{userId}}/lifecycle/activate?sendEmail=false\tO\n)\tO\t)\tO\nafter\tO\tafter\tO\nactivating\tO\tactivating\tO\nin\tO\tin\tO\nAD\tO\tAD\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nimport\tO\timport\tO\nfor\tO\tfor\tO\nAD\tO\tAD\tO\n.\tO\t.\tO\n\t\nImport\tO\tImport\tO\nwill\tO\twill\tO\nimport\tO\timport\tO\nreactivated\tO\treactivated\tO\nuser\tO\tuser\tO\nand\tO\tand\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\nconfirm\tO\tconfirm\tO\nthe\tO\tthe\tO\nassignment\tO\tassignment\tO\nuser\tO\tuser\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nAD\tO\tAD\tO\nmastered\tO\tmastered\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36199343\tO\t36199343\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36199343/\tO\thttps://stackoverflow.com/questions/36199343/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable\tB-Data_Structure\ttable\tO\nwith\tO\twith\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nas\tO\tas\tO\nvarbinary\tB-Data_Type\tvarbinary\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nactually\tO\tactually\tO\ncontains\tO\tcontains\tO\nbase64\tB-Data_Type\tbase64\tO\nencoded\tO\tencoded\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4449\tI-Code_Block\tQ_4449\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nits\tO\tits\tO\ncontents\tO\tcontents\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4450\tI-Code_Block\tQ_4450\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nto\tO\tto\tO\nXMl\tB-Language\tXMl\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ncast\tO\tcast\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrequired\tO\trequired\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nstore\tO\tstore\tO\nmuch\tO\tmuch\tO\nlonger\tO\tlonger\tO\nstrings\tB-Data_Type\tstrings\tO\nas\tO\tas\tO\nXML\tB-Language\tXML\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nentry\tO\tentry\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4451\tI-Code_Block\tQ_4451\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ntable\tB-Data_Structure\ttable\tO\nto\tO\tto\tO\nxml\tB-Language\txml\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36199343\tO\t36199343\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36199343/\tO\thttps://stackoverflow.com/questions/36199343/\tO\n\t\n\t\nHow\tO\tHow\tO\nabout\tO\tabout\tO\nusing\tO\tusing\tO\nfor\tO\tfor\tB-Code_Block\nxml\tB-Language\txml\tI-Code_Block\npath\tO\tpath\tI-Code_Block\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5168\tI-Code_Block\tA_5168\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nannotations\tO\tannotations\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndocumentation\tO\tdocumentation\tO\nis\tO\tis\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36199343\tO\t36199343\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36199343/\tO\thttps://stackoverflow.com/questions/36199343/\tO\n\t\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5169\tI-Code_Block\tA_5169\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15298378\tO\t15298378\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15298378/\tO\thttps://stackoverflow.com/questions/15298378/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntwo\tO\ttwo\tO\ndimensional\tO\tdimensional\tO\narray\tB-Data_Structure\tarray\tO\nand\tO\tand\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncount\tO\tcount\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\ndimension\tO\tdimension\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1485\tI-Code_Block\tQ_1485\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ncount\tO\tcount\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nelements\tO\telements\tO\nin\tO\tin\tO\n$multi_array[0][1]\tB-Code_Block\t$multi_array[0][1]\tB-Code_Block\nfor\tO\tfor\tO\nexample\tO\texample\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\n:\tO\t:\tO\n\t\ncount($ALPHABET[0][0])\tB-Code_Block\tcount($ALPHABET[0][0])\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nis\tO\tis\tO\n1\tB-Value\t1\tB-Code_Block\nwhere\tO\twhere\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n7\tB-Value\t7\tB-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15298378\tO\t15298378\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15298378/\tO\thttps://stackoverflow.com/questions/15298378/\tO\n\t\n\t\nTreat\tO\tTreat\tO\nevery\tO\tevery\tO\nelement\tO\telement\tO\nas\tO\tas\tO\narray\tB-Data_Structure\tarray\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1941\tI-Code_Block\tA_1941\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15298378\tO\t15298378\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15298378/\tO\thttps://stackoverflow.com/questions/15298378/\tO\n\t\n\t\n$multiarray[0][1]\tB-Code_Block\t$multiarray[0][1]\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\n,\tO\t,\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\ncount($multiarray[$index])\tB-Code_Block\tcount($multiarray[$index])\tB-Code_Block\nor\tO\tor\tO\nsum\tO\tsum\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nby\tO\tby\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1943\tI-Code_Block\tA_1943\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\nthe\tO\tthe\tO\nequivalent\tO\tequivalent\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1944\tI-Code_Block\tA_1944\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16748223\tO\t16748223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16748223/\tO\thttps://stackoverflow.com/questions/16748223/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nlooks\tO\tlooks\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\npresented\tO\tpresented\tO\nin\tO\tin\tO\ndoxygen\tB-Application\tdoxygen\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nmean\tO\tmean\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile(s)\tO\tfile(s)\tO\nthat\tO\tthat\tO\ngenerated\tO\tgenerated\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nfont\tO\tfont\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16748223\tO\t16748223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16748223/\tO\thttps://stackoverflow.com/questions/16748223/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ncustom\tO\tcustom\tO\nCSS\tB-Language\tCSS\tO\nto\tO\tto\tO\nstyle\tO\tstyle\tO\nDoxygen\tB-Application\tDoxygen\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13618291\tO\t13618291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13618291/\tO\thttps://stackoverflow.com/questions/13618291/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ntable\tB-Data_Structure\ttable\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nGuid\tB-Library_Variable\tGuid\tO\nids\tB-Variable_Name\tids\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nbigint\tB-Data_Type\tbigint\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndifferent\tO\tdifferent\tO\nname\tO\tname\tO\nthan\tO\tthan\tO\nid\tB-Library_Variable\tid\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nGuids\tB-Library_Variable\tGuids\tO\nand\tO\tand\tO\ndifferent\tO\tdifferent\tO\nid\tB-Variable_Name\tid\tO\nname\tO\tname\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nmodel\tO\tmodel\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45244961\tO\t45244961\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45244961/\tO\thttps://stackoverflow.com/questions/45244961/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n3\tO\t3\tO\ncommits\tO\tcommits\tO\nand\tO\tand\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nskip\tO\tskip\tO\na\tO\ta\tO\ncommit\tO\tcommit\tO\n-2\tB-Value\t-2\tO\nwhile\tO\twhile\tO\nrebasing\tO\trebasing\tO\ninto\tO\tinto\tO\n1\tB-Value\t1\tO\n\t\nsay\tO\tsay\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5909\tI-Code_Block\tQ_5909\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ni\tO\ti\tO\ndid\tO\tdid\tO\ngit\tB-Code_Block\tgit\tO\nrebase\tI-Code_Block\trebase\tO\n-i\tI-Code_Block\t-i\tO\nHEAD\tI-Code_Block\tHEAD\tO\n~\tI-Code_Block\t~\tO\n3\tI-Code_Block\t3\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5910\tI-Code_Block\tQ_5910\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ni\tO\ti\tO\ntried\tO\ttried\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nremoved\tO\tremoved\tO\nthe\tO\tthe\tO\npick\tO\tpick\tO\ncommit\tB-Code_Block\tcommit\tO\n-2\tI-Code_Block\t-2\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\ndeleted\tO\tdeleted\tO\nthe\tO\tthe\tO\ncommit\tB-Code_Block\tcommit\tO\n-2\tI-Code_Block\t-2\tO\nitself\tO\titself\tO\nfrom\tO\tfrom\tO\ngit\tB-Application\tgit\tO\nlog\tB-File_Type\tlog\tO\n:(\tO\t:(\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5911\tI-Code_Block\tQ_5911\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSomeone\tO\tSomeone\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nsquash\tO\tsquash\tO\ncommit\tO\tcommit\tO\n1\tO\t1\tO\nand\tO\tand\tO\ncommit\tO\tcommit\tO\n3\tO\t3\tO\nusing\tO\tusing\tO\ncommand\tO\tcommand\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45244961\tO\t45244961\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45244961/\tO\thttps://stackoverflow.com/questions/45244961/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ncare\tO\tcare\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nhistory\tO\thistory\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbranch\tO\tbranch\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncommits\tO\tcommits\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstart\tO\tstart\tO\na\tO\ta\tO\nbranch\tO\tbranch\tO\nfrom\tO\tfrom\tO\ncommit-4\tB-Code_Block\tcommit-4\tO\n;\tI-Code_Block\t;\tO\ncherry\tO\tcherry\tO\npick\tO\tpick\tO\n1\tB-Value\t1\tO\nand\tO\tand\tO\n3\tB-Value\t3\tO\n,\tO\t,\tO\nsquash\tO\tsquash\tO\nthem\tO\tthem\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncherry\tO\tcherry\tO\npick\tO\tpick\tO\ncommit-2\tB-Code_Block\tcommit-2\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\non\tO\ton\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nbranch\tO\tbranch\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nresult\tO\tresult\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nassumed\tO\tassumed\tO\nthe\tO\tthe\tO\ncommits\tO\tcommits\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nconflicts\tO\tconflicts\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6560\tI-Code_Block\tA_6560\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45244961\tO\t45244961\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45244961/\tO\thttps://stackoverflow.com/questions/45244961/\tO\n\t\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nunderstanding\tO\tunderstanding\tO\ncorrectly\tO\tcorrectly\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nreorder\tO\treorder\tO\nthe\tO\tthe\tO\ncommits\tO\tcommits\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6559\tI-Code_Block\tA_6559\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\nplace\tO\tplace\tO\ncommit\tB-Code_Block\tcommit\tB-Code_Block\n-2\tI-Code_Block\t-2\tI-Code_Block\nafter\tO\tafter\tO\n-1\tB-Value\t-1\tB-Code_Block\nand\tO\tand\tO\n-3\tB-Value\t-3\tB-Code_Block\n;\tO\t;\tO\nput\tO\tput\tO\n-2\tB-Value\t-2\tB-Code_Block\non\tO\ton\tO\ntop\tO\ttop\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\ncome\tO\tcome\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nCommits\tO\tCommits\tO\nare\tO\tare\tO\nevaluated\tO\tevaluated\tO\ntop\tO\ttop\tO\nto\tO\tto\tO\nbottom\tO\tbottom\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8946593\tO\t8946593\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8946593/\tO\thttps://stackoverflow.com/questions/8946593/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nEnterprise\tB-Application\tEnterprise\tO\nGuide\tI-Application\tGuide\tO\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\ntask\tO\ttask\tO\n,\tO\t,\tO\notherwise\tO\totherwise\tO\nI\tO\tI\tO\nwould\tO\twould\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nstep\tO\tstep\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nstep\tO\tstep\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_748\tI-Code_Block\tQ_748\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8946593\tO\t8946593\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8946593/\tO\thttps://stackoverflow.com/questions/8946593/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nrecords\tO\trecords\tO\npresent\tO\tpresent\tO\nin\tO\tin\tO\none\tO\tone\tO\ntable\tB-Data_Structure\ttable\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\n.\tO\t.\tO\n\t\nCreated\tO\tCreated\tO\ntable\tB-Data_Structure\ttable\tO\nnew\tO\tnew\tO\nwith\tO\twith\tO\nrecords\tO\trecords\tO\ncontaining\tO\tcontaining\tO\nsex\tO\tsex\tO\n=\tO\t=\tO\nM\tO\tM\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nrecords\tO\trecords\tO\nwith\tO\twith\tO\nsex\tO\tsex\tO\n=\tO\t=\tO\nF\tO\tF\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3208\tI-Code_Block\tA_3208\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWill\tO\tWill\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nactual\tO\tactual\tO\ndatasets\tO\tdatasets\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nof\tO\tof\tO\naround\tO\taround\tO\n100k\tO\t100k\tO\nobs\tO\tobs\tO\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nP.S\tO\tP.S\tO\n:\tO\t:\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nasked\tO\tasked\tO\nanswered\tO\tanswered\tO\nand\tO\tand\tO\nforgotten\tO\tforgotten\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nand\tO\tand\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\na\tO\ta\tO\ndirect\tO\tdirect\tO\nanswer\tO\tanswer\tO\nany\tO\tany\tO\nwhere\tO\twhere\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nadding\tO\tadding\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\ncome\tO\tcome\tO\nhandy\tO\thandy\tO\n.\tO\t.\tO\n\t\n:)\tO\t:)\tO\n\t\nMy\tO\tMy\tO\nfirst\tO\tfirst\tO\nanswer\tO\tanswer\tO\nalso\tO\talso\tO\n.\tO\t.\tO\n\t\n:)\tO\t:)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8946593\tO\t8946593\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8946593/\tO\thttps://stackoverflow.com/questions/8946593/\tO\n\t\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\none\tO\tone\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nsurely\tO\tsurely\tO\nmany\tO\tmany\tO\nothers\tO\tothers\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1090\tI-Code_Block\tA_1090\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5885124\tO\t5885124\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5885124/\tO\thttps://stackoverflow.com/questions/5885124/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nmodel\tO\tmodel\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_420\tI-Code_Block\tQ_420\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDoes\tO\tDoes\tO\nnHibernate\tB-Application\tnHibernate\tO\noffer\tO\toffer\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nrepresent\tO\trepresent\tO\nthis\tO\tthis\tO\nwhile\tO\twhile\tO\nmaintaining\tO\tmaintaining\tO\nthe\tO\tthe\tO\nsimple\tO\tsimple\tO\npublic\tO\tpublic\tO\nAPI\tO\tAPI\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5885124\tO\t5885124\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5885124/\tO\thttps://stackoverflow.com/questions/5885124/\tO\n\t\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nobservable\tO\tobservable\tO\ncollection\tO\tcollection\tO\n(\tO\t(\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nas\tO\tas\tO\nIList\tB-Library_Class\tIList\tO\nand\tO\tand\tO\nhandle\tO\thandle\tO\nthat\tO\tthat\tO\nbehind\tO\tbehind\tO\nthe\tO\tthe\tO\nscenes\tO\tscenes\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nmapping\tO\tmapping\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_655\tI-Code_Block\tA_655\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\ndrawback\tO\tdrawback\tO\nis\tO\tis\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nrequire\tO\trequire\tO\na\tO\ta\tO\nkeyed\tO\tkeyed\tO\ntable\tB-Data_Structure\ttable\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntag\tB-Variable_Name\ttag\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nworry\tO\tworry\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntag\tB-Variable_Name\ttag\tO\ncan\tO\tcan\tO\nappear\tO\tappear\tO\non\tO\ton\tO\nmultiple\tO\tmultiple\tO\nleads\tO\tleads\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\ntags\tB-Variable_Name\ttags\tO\nas\tO\tas\tO\na\tO\ta\tO\nmany\tO\tmany\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nintermediate\tO\tintermediate\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nrequiring\tO\trequiring\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntag\tB-Variable_Name\ttag\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_656\tI-Code_Block\tA_656\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47997882\tO\t47997882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47997882/\tO\thttps://stackoverflow.com/questions/47997882/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\noutput\tO\toutput\tO\nconcatenated\tO\tconcatenated\tO\nstring\tB-Data_Type\tstring\tO\nfrom\tO\tfrom\tO\nmultiple\tO\tmultiple\tO\nSQL\tB-Language\tSQL\tO\nCASE\tB-Code_Block\tCASE\tB-Code_Block\nexpressions\tO\texpressions\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nquery\tO\tquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6385\tI-Code_Block\tQ_6385\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nSo\tO\tSo\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\ncolumns\tO\tcolumns\tO\nB\tB-Variable_Name\tB\tO\nand\tO\tand\tO\nLK\tB-Variable_Name\tLK\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nintroduce\tO\tintroduce\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nAccess\tO\tAccess\tO\nLevel\tO\tLevel\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nB\tB-Variable_Name\tB\tO\nis\tO\tis\tO\nActive\tO\tActive\tO\nor\tO\tor\tO\nLK\tB-Variable_Name\tLK\tO\nis\tO\tis\tO\nactive\tO\tactive\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nB\tB-Variable_Name\tB\tO\nor\tO\tor\tO\nLK\tB-Variable_Name\tLK\tO\ndepending\tO\tdepending\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nB\tB-Variable_Name\tB\tO\nonly\tO\tonly\tO\nis\tO\tis\tO\nactive\tO\tactive\tO\n,\tO\t,\tO\noutput\tO\toutput\tO\nfor\tO\tfor\tO\n'\tO\t'\tO\nAccess\tO\tAccess\tO\nLevel\tO\tLevel\tO\n'\tO\t'\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nB\tB-Variable_Name\tB\tO\n,\tO\t,\tO\nif\tO\tif\tO\nboth\tO\tboth\tO\nprograms\tO\tprograms\tO\nare\tO\tare\tO\nactive\tO\tactive\tO\nthen\tO\tthen\tO\noutput\tO\toutput\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n'\tO\t'\tO\nB\tO\tB\tO\n,\tO\t,\tO\nLK\tO\tLK\tO\n'\tO\t'\tO\n,\tO\t,\tO\nif\tO\tif\tO\nLK\tB-Variable_Name\tLK\tO\nis\tO\tis\tO\nactive\tO\tactive\tO\nonly\tO\tonly\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nvakue\tO\tvakue\tO\nof\tO\tof\tO\nLK\tB-Variable_Name\tLK\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\noptions\tO\toptions\tO\nto\tO\tto\tO\nconcatenate\tO\tconcatenate\tO\na\tO\ta\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\nmultiple\tO\tmultiple\tO\ncase\tB-Code_Block\tcase\tO\nqueries\tO\tqueries\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\nLaziale\tB-User_Name\tLaziale\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47997882\tO\t47997882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47997882/\tO\thttps://stackoverflow.com/questions/47997882/\tO\n\t\n\t\nWrite\tO\tWrite\tO\na\tO\ta\tO\nthird\tO\tthird\tO\nCASE\tB-Code_Block\tCASE\tO\nexpression\tO\texpression\tO\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nthe\tO\tthe\tO\ncombinations\tO\tcombinations\tO\nyou\tO\tyou\tO\ndescribe\tO\tdescribe\tO\nand\tO\tand\tO\nassigns\tO\tassigns\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\npseudocode\tO\tpseudocode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7029\tI-Code_Block\tA_7029\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCASE\tB-Code_Block\tCASE\tO\nexpressions\tO\texpressions\tO\nare\tO\tare\tO\nevaluated\tO\tevaluated\tO\nin\tO\tin\tO\norder\tO\torder\tO\nfrom\tO\tfrom\tO\ntop\tO\ttop\tO\nto\tO\tto\tO\nbottom\tO\tbottom\tO\nand\tO\tand\tO\nresolve\tO\tresolve\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nWHEN\tO\tWHEN\tO\ncondition\tO\tcondition\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nmet\tO\tmet\tO\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\nboth\tO\tboth\tO\nB\tB-Variable_Name\tB\tO\nand\tO\tand\tO\nLK\tB-Variable_Name\tLK\tO\nare\tO\tare\tO\nactive\tO\tactive\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncondition\tO\tcondition\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nmet\tO\tmet\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nresult\tO\tresult\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nreturned\tO\treturned\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nmatter\tO\tmatter\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ntwo\tO\ttwo\tO\nconditions\tO\tconditions\tO\nare\tO\tare\tO\nalso\tO\talso\tO\nboth\tO\tboth\tO\ntrue\tB-Value\ttrue\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47997882\tO\t47997882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47997882/\tO\thttps://stackoverflow.com/questions/47997882/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7030\tI-Code_Block\tA_7030\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43687553\tO\t43687553\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43687553/\tO\thttps://stackoverflow.com/questions/43687553/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\naccept\tO\taccept\tO\neither\tO\teither\tO\ninput\tO\tinput\tO\nfrom\tO\tfrom\tO\nkeyboard\tB-Device\tkeyboard\tO\nor\tO\tor\tO\n2d\tB-Device\t2d\tO\nbarcode\tI-Device\tbarcode\tO\nscanner\tI-Device\tscanner\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ninput\tO\tinput\tO\nis\tO\tis\tO\nmixture\tO\tmixture\tO\nof\tO\tof\tO\nalpha\tO\talpha\tO\nnumeric\tO\tnumeric\tO\n,\tO\t,\tO\nalso\tO\talso\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nCtrl+v\tB-Keyboard_IP\tCtrl+v\tB-Keyboard_IP\nto\tO\tto\tO\npaste\tO\tpaste\tO\ntheir\tO\ttheir\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nCtrl+v\tB-Keyboard_IP\tCtrl+v\tB-Keyboard_IP\n,\tO\t,\tO\nonly\tO\tonly\tO\nv\tB-Keyboard_IP\tv\tB-Keyboard_IP\nkey\tO\tkey\tO\nis\tO\tis\tO\ndetected\tO\tdetected\tO\nand\tO\tand\tO\nshown\tO\tshown\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nmy\tO\tmy\tO\ncursor\tB-User_Interface_Element\tcursor\tO\nautofocus\tO\tautofocus\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nbelow\tO\tbelow\tO\nthe\tO\tthe\tO\njavascript\tB-Language\tjavascript\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5624\tI-Code_Block\tQ_5624\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nhtml\tB-Language\thtml\tO\npart\tO\tpart\tO\n.\tO\t.\tO\n\t\nFormatted\tO\tFormatted\tO\nHTML\tB-Language\tHTML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5625\tI-Code_Block\tQ_5625\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21076101\tO\t21076101\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21076101/\tO\thttps://stackoverflow.com/questions/21076101/\tO\n\t\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\ncould\tO\tcould\tO\nsound\tO\tsound\tO\nlike\tO\tlike\tO\nweird\tO\tweird\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nin\tO\tin\tO\na\tO\ta\tO\nCFML\tB-Language\tCFML\tO\nscript\tO\tscript\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nas\tO\tas\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nfile\tO\tfile\tO\nbut\tO\tbut\tO\na\tO\ta\tO\nstring/text/base64\tB-Data_Type\tstring/text/base64\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthat\tO\tthat\tO\npossible\tO\tpossible\tO\nor\tO\tor\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nway\tO\tway\tO\nin\tO\tin\tO\nCFML\tB-Language\tCFML\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nPHP\tB-Language\tPHP\tO\nwith\tO\twith\tO\nfiles\tO\tfiles\tO\nas\tO\tas\tO\nbase64\tB-Data_Type\tbase64\tO\ndata\tO\tdata\tO\neven\tO\teven\tO\nimages\tB-User_Interface_Element\timages\tO\nbase64\tB-Data_Type\tbase64\tO\nencoded\tO\tencoded\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nabout\tO\tabout\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2240\tI-Code_Block\tQ_2240\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhy\tO\tWhy\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nTo\tO\tTo\tO\novercome\tO\tovercome\tO\nerrors\tO\terrors\tO\nbetween\tO\tbetween\tO\ndifferent\tO\tdifferent\tO\nfunctions\tO\tfunctions\tO\nwith\tO\twith\tO\nsame\tO\tsame\tO\nname\tO\tname\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\nCF\tB-Application\tCF\tO\nversions\tO\tversions\tO\n(\tO\t(\tO\n6\tB-Version\t6\tO\n,\tO\t,\tO\n7\tB-Version\t7\tO\n,\tO\t,\tO\n8\tB-Version\t8\tO\n,\tO\t,\tO\n9\tB-Version\t9\tO\n,\tO\t,\tO\n20\tB-Version\t20\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nsame\tO\tsame\tO\nnames\tO\tnames\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nportability\tO\tportability\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21076101\tO\t21076101\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21076101/\tO\thttps://stackoverflow.com/questions/21076101/\tO\n\t\n\t\nFound\tO\tFound\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nbut\tO\tbut\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2826\tI-Code_Block\tA_2826\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8043363\tO\t8043363\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8043363/\tO\thttps://stackoverflow.com/questions/8043363/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncustom\tO\tcustom\tO\ncontrol\tO\tcontrol\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ninterface\tO\tinterface\tO\nthis\tO\tthis\tO\ncontrol\tO\tcontrol\tO\nexposes\tO\texposes\tO\nto\tO\tto\tO\nit\tO\tit\tO\n's\tO\t's\tO\nusers\tO\tusers\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_659\tI-Code_Block\tQ_659\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNeed\tO\tNeed\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_660\tI-Code_Block\tQ_660\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ntell\tO\ttell\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ngeneric\tO\tgeneric\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\ninterface\tO\tinterface\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8043363\tO\t8043363\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8043363/\tO\thttps://stackoverflow.com/questions/8043363/\tO\n\t\n\t\nThe\tO\tThe\tO\ntype\tO\ttype\tO\nparameter\tO\tparameter\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nbearing\tO\tbearing\tO\none\tO\tone\tO\nway\tO\tway\tO\nor\tO\tor\tO\nanother\tO\tanother\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nderived\tO\tderived\tO\nclass\tO\tclass\tO\nbeing\tO\tbeing\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_947\tI-Code_Block\tA_947\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBot\tO\tBot\tO\nA\tB-Class_Name\tA\tO\nand\tO\tand\tO\nB\tB-Class_Name\tB\tO\nare\tO\tare\tO\nimplementations\tO\timplementations\tO\nof\tO\tof\tO\nI\tB-Class_Name\tI\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8043363\tO\t8043363\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8043363/\tO\thttps://stackoverflow.com/questions/8043363/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nright-click\tO\tright-click\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\nand\tO\tand\tO\nchoose\tO\tchoose\tO\nimplement\tO\timplement\tO\ninterface\tO\tinterface\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\ndesigned\tO\tdesigned\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwont\tO\twont\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\n's\tO\t's\tO\ndefinition\tO\tdefinition\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nmake\tO\tmake\tO\nthem\tO\tthem\tO\nmatch\tO\tmatch\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n(\tO\t(\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\nimplementation\tO\timplementation\tO\nwill\tO\twill\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nsignature\tO\tsignature\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_948\tI-Code_Block\tA_948\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35816626\tO\t35816626\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35816626/\tO\thttps://stackoverflow.com/questions/35816626/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nstandard\tO\tstandard\tO\ntop-level\tO\ttop-level\tO\nGit\tB-Application\tGit\tO\nrepository\tO\trepository\tO\nwith\tO\twith\tO\nGit\tB-Application\tGit\tO\nsubmodules\tO\tsubmodules\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nknown\tO\tknown\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\ncommit\tO\tcommit\tO\nid\tO\tid\tO\nrecorded\tO\trecorded\tO\nby\tO\tby\tO\ntop-level\tO\ttop-level\tO\nrepository\tO\trepository\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatch\tO\tmatch\tO\nactual\tO\tactual\tO\nHEAD\tB-Code_Block\tHEAD\tB-Code_Block\nfor\tO\tfor\tO\nspecific\tO\tspecific\tO\nsubmodule\tO\tsubmodule\tO\n,\tO\t,\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\nstatus\tI-Code_Block\tstatus\tI-Code_Block\nfrom\tO\tfrom\tO\ntop-level\tO\ttop-level\tO\nrepository\tO\trepository\tO\nreports\tO\treports\tO\nit\tO\tit\tO\nby\tO\tby\tO\n(\tO\t(\tB-Code_Block\nnew\tO\tnew\tI-Code_Block\ncommits\tO\tcommits\tI-Code_Block\n)\tO\t)\tI-Code_Block\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4385\tI-Code_Block\tQ_4385\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nProblem\tO\tProblem\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\ncircumstances\tO\tcircumstances\tO\n,\tO\t,\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\nstatus\tI-Code_Block\tstatus\tI-Code_Block\nstops\tO\tstops\tO\nreporting\tO\treporting\tO\n(\tO\t(\tB-Code_Block\nnew\tO\tnew\tI-Code_Block\ncommits\tO\tcommits\tI-Code_Block\n)\tO\t)\tI-Code_Block\nfor\tO\tfor\tO\njust\tO\tjust\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsubmodules\tO\tsubmodules\tO\neven\tO\teven\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nclear\tO\tclear\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nnew\tO\tnew\tO\ncommits\tO\tcommits\tO\n-\tO\t-\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nincorrectly\tO\tincorrectly\tO\nstop\tO\tstop\tO\nreporting\tO\treporting\tO\n(\tO\t(\tB-Code_Block\nnew\tO\tnew\tI-Code_Block\ncommits\tO\tcommits\tI-Code_Block\n)\tO\t)\tI-Code_Block\nfor\tO\tfor\tO\nsubmodule-a.git\tB-Code_Block\tsubmodule-a.git\tB-Code_Block\nwhile\tO\twhile\tO\nstill\tO\tstill\tO\nshowing\tO\tshowing\tO\nproperly\tO\tproperly\tO\n(\tO\t(\tB-Code_Block\nnew\tO\tnew\tI-Code_Block\ncommits\tO\tcommits\tI-Code_Block\n)\tO\t)\tI-Code_Block\nfor\tO\tfor\tO\nsubmodule-b.git\tB-Code_Block\tsubmodule-b.git\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nverify\tO\tverify\tO\nthat\tO\tthat\tO\ncommit\tO\tcommit\tO\nids\tO\tids\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nmatch\tO\tmatch\tO\n:\tO\t:\tO\n\t\nWhat\tO\tWhat\tO\ntop-level\tO\ttop-level\tO\nrepository\tO\trepository\tO\n\"\tO\t\"\tO\nthinks\tO\tthinks\tO\n\"\tO\t\"\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4386\tI-Code_Block\tQ_4386\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nsubmodule\tO\tsubmodule\tO\nrepository\tO\trepository\tO\n\"\tO\t\"\tO\nthinks\tO\tthinks\tO\n\"\tO\t\"\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4387\tI-Code_Block\tQ_4387\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBy\tO\tBy\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\n,\tO\t,\tO\nboth\tO\tboth\tO\ntop-level\tO\ttop-level\tO\nand\tO\tand\tO\nsubmodule\tO\tsubmodule\tO\nrepositories\tO\trepositories\tO\nare\tO\tare\tO\notherwise\tO\totherwise\tO\nhave\tO\thave\tO\nclean\tO\tclean\tO\nstatus\tO\tstatus\tO\n:\tO\t:\tO\n\t\nTop-level\tO\tTop-level\tO\n(\tO\t(\tO\nnote\tO\tnote\tO\nmissing\tO\tmissing\tO\nentry\tO\tentry\tO\nfor\tO\tfor\tO\nsubmodule-a.git\tB-Code_Block\tsubmodule-a.git\tB-Code_Block\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4388\tI-Code_Block\tQ_4388\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSubmodule\tO\tSubmodule\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4389\tI-Code_Block\tQ_4389\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nalso\tO\talso\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\n(\tO\t(\tO\nas\tO\tas\tO\nin\tO\tin\tO\ngit\tB-Code_Block\tgit\tB-Code_Block\nadd\tI-Code_Block\tadd\tI-Code_Block\n--all\tI-Code_Block\t--all\tI-Code_Block\n&&\tI-Code_Block\t&&\tI-Code_Block\ngit\tI-Code_Block\tgit\tI-Code_Block\ncommit\tI-Code_Block\tcommit\tI-Code_Block\n)\tO\t)\tO\ncommit\tO\tcommit\tO\nids\tO\tids\tO\nfor\tO\tfor\tO\nsuch\tO\tsuch\tO\nsubmodules\tO\tsubmodules\tO\nrecorded\tO\trecorded\tO\nby\tO\tby\tO\ntop-level\tO\ttop-level\tO\nrepository\tO\trepository\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nsimply\tO\tsimply\tO\n\"\tO\t\"\tO\nthinks\tO\tthinks\tO\n\"\tO\t\"\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nnothing\tO\tnothing\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nPlatform/Version\tO\tPlatform/Version\tO\n:\tO\t:\tO\nGNU/Linux\tB-Operating_System\tGNU/Linux\tO\n4.2.6-200.fc22.x86_64\tB-Version\t4.2.6-200.fc22.x86_64\tO\n,\tO\t,\tO\ngit\tB-Application\tgit\tO\nversion\tO\tversion\tO\n2.4.3\tB-Version\t2.4.3\tO\n(\tO\t(\tO\nalso\tO\talso\tO\nconfirmed\tO\tconfirmed\tO\non\tO\ton\tO\n2.5.0\tB-Version\t2.5.0\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion\tO\tQuestion\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nor\tO\tor\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\noption\tO\toption\tO\nsomewhere\tO\tsomewhere\tO\nwhich\tO\twhich\tO\nmay\tO\tmay\tO\ndisable\tO\tdisable\tO\nsuch\tO\tsuch\tO\n(\tO\t(\tB-Code_Block\nnew\tO\tnew\tI-Code_Block\ncommits\tO\tcommits\tI-Code_Block\n)\tO\t)\tI-Code_Block\nreport\tO\treport\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35816626\tO\t35816626\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35816626/\tO\thttps://stackoverflow.com/questions/35816626/\tO\n\t\n\t\nI\tO\tI\tO\nre-confirmed\tO\tre-confirmed\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\n(\tO\t(\tO\nin-place\tO\tin-place\tO\n)\tO\t)\tO\nupgraded\tO\tupgraded\tO\nOS\tO\tOS\tO\nto\tO\tto\tO\nrecently\tO\trecently\tO\nreleased\tO\treleased\tO\nFedora\tB-Operating_System\tFedora\tO\n24\tB-Version\t24\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nGit\tB-Application\tGit\tO\n2.7.4\tB-Version\t2.7.4\tB-Code_Block\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n)\tO\t)\tO\n-\tO\t-\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfilesystem\tO\tfilesystem\tO\ncontent\tO\tcontent\tO\nwas\tO\twas\tO\npreserved\tO\tpreserved\tO\n(\tO\t(\tO\nrepositories\tO\trepositories\tO\nand\tO\tand\tO\nconfiguration\tO\tconfiguration\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\ndisappeared\tO\tdisappeared\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nprevious\tO\tprevious\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\ngit\tB-Application\tgit\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nretrospective\tO\tretrospective\tO\nobservation\tO\tobservation\tO\n-\tO\t-\tO\nI\tO\tI\tO\nnever\tO\tnever\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\nreproduce\tO\treproduce\tO\nthings\tO\tthings\tO\nmanually\tO\tmanually\tO\nusing\tO\tusing\tO\nshort\tO\tshort\tO\nbranch\tO\tbranch\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nappeared\tO\tappeared\tO\nin\tO\tin\tO\nCI\tO\tCI\tO\nwhen\tO\twhen\tO\nmany\tO\tmany\tO\nautomatic\tO\tautomatic\tO\nbranches\tO\tbranches\tO\nwere\tO\twere\tO\ncreated\tO\tcreated\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\n~\tO\t~\tO\n100\tO\t100\tO\n(\tO\t(\tO\none\tO\tone\tO\nper\tO\tper\tO\nbuild\tO\tbuild\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nlong\tO\tlong\tO\nnames\tO\tnames\tO\n~\tO\t~\tO\n120+\tO\t120+\tO\ncharacters\tO\tcharacters\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\ncondition\tO\tcondition\tO\nmight\tO\tmight\tO\nhit\tO\thit\tO\nsome\tO\tsome\tO\nunhandled\tO\tunhandled\tO\nedge\tO\tedge\tO\ncases\tO\tcases\tO\nin\tO\tin\tO\nGit\tB-Application\tGit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11604170\tO\t11604170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11604170/\tO\thttps://stackoverflow.com/questions/11604170/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nJava\tB-Application\tJava\tO\nEE\tB-Version\tEE\tO\nproject\tO\tproject\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nhtml\tB-Language\thtml\tO\n,\tO\t,\tO\njavascript\tB-Language\tjavascript\tO\n,\tO\t,\tO\njava\tB-Language\tjava\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nJQuery\tB-Library\tJQuery\tO\nto\tO\tto\tO\nload\tO\tload\tO\nup\tO\tup\tO\nan\tO\tan\tO\nhtml\tB-Language\thtml\tO\ntemplate\tO\ttemplate\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\ntag\tO\ttag\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nunsure\tO\tunsure\tO\nof\tO\tof\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nrelative\tO\trelative\tO\npath\tO\tpath\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nload\tB-Library_Function\tload\tO\nmethod\tO\tmethod\tO\nstarts\tO\tstarts\tO\nfrom\tO\tfrom\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nhtml\tB-File_Type\thtml\tO\nfile\tO\tfile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nload\tO\tload\tO\nis\tO\tis\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nback\tO\tback\tO\ndown\tO\tdown\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\nup\tO\tup\tO\nto\tO\tto\tO\nget\tO\tget\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\neasy\tO\teasy\tO\nway\tO\tway\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nby\tO\tby\tO\nsome\tO\tsome\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\ndebugging\tO\tdebugging\tO\nmethods\tO\tmethods\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\npath\tO\tpath\tO\nis\tO\tis\tO\n...\tO\t...\tO\n.\tO\t.\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nBONUS\tO\tBONUS\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\njavascript\tB-Language\tjavascript\tO\n(\tO\t(\tO\nJQuery\tB-Library\tJQuery\tO\n)\tO\t)\tO\nthat\tO\tthat\tO\nits\tO\tits\tO\nusing\tO\tusing\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\nin\tO\tin\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nin\tO\tin\tO\nanother\tO\tanother\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1082\tI-Code_Block\tQ_1082\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nI\tO\tI\tO\nexplained\tO\texplained\tO\nthis\tO\tthis\tO\nclearly\tO\tclearly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\nkeep\tO\tkeep\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\nbut\tO\tbut\tO\nget\tO\tget\tO\nnothing\tO\tnothing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntaking\tO\ttaking\tO\nstabs\tO\tstabs\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndark\tO\tdark\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11604170\tO\t11604170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11604170/\tO\thttps://stackoverflow.com/questions/11604170/\tO\n\t\n\t\nJavascript\tB-Language\tJavascript\tO\nruns\tO\truns\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\n,\tO\t,\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nknowledge\tO\tknowledge\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nJava\tB-Application\tJava\tO\nEE\tB-Version\tEE\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nopen\tO\topen\tO\nup\tO\tup\tO\nyour\tO\tyour\tO\nbrowsers\tB-Application\tbrowsers\tO\nconsole\tI-Application\tconsole\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nthis\tO\tthis\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1505\tI-Code_Block\tA_1505\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n's\tO\t's\tO\nurl\tO\turl\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\n\"\tB-Value\t\"\tB-Code_Block\n\\\tI-Value\t\\\tI-Code_Block\n\"\tB-Value\t\"\tB-Code_Block\nis\tO\tis\tO\nescape\tO\tescape\tO\ncharacter\tO\tcharacter\tO\nin\tO\tin\tO\njavascript\tB-Language\tjavascript\tO\nstrings\tB-Data_Type\tstrings\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nprobably\tO\tprobably\tO\nwanted\tO\twanted\tO\n\"\tB-Value\t\"\tB-Code_Block\n/\tI-Value\t/\tI-Code_Block\n\"\tI-Value\t\"\tI-Code_Block\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11604170\tO\t11604170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11604170/\tO\thttps://stackoverflow.com/questions/11604170/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nabsolute\tO\tabsolute\tO\nurl\tO\turl\tO\nby\tO\tby\tO\nstaring\tO\tstaring\tO\nit\tO\tit\tO\nwith\tO\twith\tO\na\tO\ta\tO\nslash\tB-Value\tslash\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1504\tI-Code_Block\tA_1504\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwill\tO\twill\tO\nreference\tO\treference\tO\nhttp://www.[yourwebsite].com/src/main/webapp/resources/js/template/Event/EventMainTemplate.html\tO\thttp://www.[yourwebsite].com/src/main/webapp/resources/js/template/Event/EventMainTemplate.html\tO\n\t\nThat\tO\tThat\tO\nhas\tO\thas\tO\ncaused\tO\tcaused\tO\nme\tO\tme\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ntrouble\tO\ttrouble\tO\nbefore\tO\tbefore\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44306899\tO\t44306899\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44306899/\tO\thttps://stackoverflow.com/questions/44306899/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nvarious\tO\tvarious\tO\nfailed\tO\tfailed\tO\nmethods\tO\tmethods\tO\nfor\tO\tfor\tO\nthese\tO\tthese\tO\nby\tO\tby\tO\nother\tO\tother\tO\nsimilar\tO\tsimilar\tO\nquestions\tO\tquestions\tO\n.\tO\t.\tO\n\t\nHopefully\tO\tHopefully\tO\n,\tO\t,\tO\ny'all\tO\ty'all\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npart\tO\tpart\tO\nwhere\tO\twhere\tO\nsocket\tB-Variable_Name\tsocket\tO\nreceives\tO\treceives\tO\nan\tO\tan\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ncomment\tO\tcomment\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nrequire\tO\trequire\tO\nany\tO\tany\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\nfrom\tO\tfrom\tO\nme\tO\tme\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5743\tI-Code_Block\tQ_5743\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44306899\tO\t44306899\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44306899/\tO\thttps://stackoverflow.com/questions/44306899/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nprovided\tO\tprovided\tO\n#messages\tB-Code_Block\t#messages\tB-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nscroll-able\tO\tscroll-able\tO\narea\tO\tarea\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nDOM\tB-Library\tDOM\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6385\tI-Code_Block\tA_6385\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44306899\tO\t44306899\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44306899/\tO\thttps://stackoverflow.com/questions/44306899/\tO\n\t\n\t\nwrap\tO\twrap\tO\nthe\tO\tthe\tO\nul.messages\tB-HTML_XML_Tag\tul.messages\tO\nin\tO\tin\tO\na\tO\ta\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nwith\tO\twith\tO\na\tO\ta\tO\nclass\tB-Code_Block\tclass\tO\n=\tI-Code_Block\t=\tO\n\"\tI-Code_Block\t\"\tO\nmsg-con\tI-Code_Block\tmsg-con\tO\n\"\tI-Code_Block\t\"\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6386\tI-Code_Block\tA_6386\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nnow\tO\tnow\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\njavascript\tB-Language\tjavascript\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6387\tI-Code_Block\tA_6387\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhope\tO\thope\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41443520\tO\t41443520\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41443520/\tO\thttps://stackoverflow.com/questions/41443520/\tO\n\t\n\t\nGiven\tO\tGiven\tO\nthree\tO\tthree\tO\nmajor\tO\tmajor\tO\ncompeting\tO\tcompeting\tO\napplications\tO\tapplications\tO\neach\tO\teach\tO\nimplementing\tO\timplementing\tO\na\tO\ta\tO\nslightly\tO\tslightly\tO\ndifferent\tO\tdifferent\tO\ndata\tO\tdata\tO\nschema\tO\tschema\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\ndomain\tO\tdomain\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfaced\tO\tfaced\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\nof\tO\tof\tO\nimplementing\tO\timplementing\tO\n:\tO\t:\tO\n\t\na\tO\ta\tO\n\"\tO\t\"\tO\ncanonical\tO\tcanonical\tO\n\"\tO\t\"\tO\ndata\tO\tdata\tO\nschema\tO\tschema\tO\nexpressive\tO\texpressive\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nrepresent\tO\trepresent\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nintersection\tO\tintersection\tO\nset\tO\tset\tO\nof\tO\tof\tO\nfeatures\tO\tfeatures\tO\nof\tO\tof\tO\nall\tO\tall\tO\n3\tO\t3\tO\napplications\tO\tapplications\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nadditional\tO\tadditional\tO\ndetails\tO\tdetails\tO\n(\tO\t(\tO\nmeta\tO\tmeta\tO\ndata\tO\tdata\tO\n)\tO\t)\tO\n\t\nconverters\tO\tconverters\tO\nfor\tO\tfor\tO\ndoing\tO\tdoing\tO\n(\tO\t(\tO\nbidirectional\tO\tbidirectional\tO\n)\tO\t)\tO\ndata\tO\tdata\tO\nexchange\tO\texchange\tO\nbetween\tO\tbetween\tO\nthose\tO\tthose\tO\n3\tO\t3\tO\napplications\tO\tapplications\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncanonical\tO\tcanonical\tO\nschema\tO\tschema\tO\n\t\nHow\tO\tHow\tO\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\napproach\tO\tapproach\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\n\t\nThe\tO\tThe\tO\ncanonical\tO\tcanonical\tO\nschema\tO\tschema\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nusing\tO\tusing\tO\nXSD\tO\tXSD\tO\nand\tO\tand\tO\nclosely\tO\tclosely\tO\nresembles\tO\tresembles\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nschema\tO\tschema\tO\nof\tO\tof\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n3\tO\t3\tO\napplications\tO\tapplications\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nA\tB-Variable_Name\tA\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nrenders\tO\trenders\tO\ndata\tO\tdata\tO\nexchange\tO\texchange\tO\nwith\tO\twith\tO\nA\tB-Variable_Name\tA\tO\ntrivial\tO\ttrivial\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nbidirectional\tO\tbidirectional\tO\ndata\tO\tdata\tO\nexchange\tO\texchange\tO\nwith\tO\twith\tO\napplications\tO\tapplications\tO\nB\tB-Variable_Name\tB\tO\nand\tO\tand\tO\nC\tB-Variable_Name\tC\tO\n(\tO\t(\tO\ncreate\tO\tcreate\tO\nsome\tO\tsome\tO\nstate\tO\tstate\tO\nin\tO\tin\tO\nA\tB-Variable_Name\tA\tO\n,\tO\t,\tO\nload\tO\tload\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nB\tB-Variable_Name\tB\tO\n,\tO\t,\tO\nalter\tO\talter\tO\nit\tO\tit\tO\nin\tO\tin\tO\nB\tB-Variable_Name\tB\tO\n,\tO\t,\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\naltered\tO\taltered\tO\nstate\tO\tstate\tO\ninto\tO\tinto\tO\nA\tO\tA\tO\n)\tB-Variable_Name\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nsimples\tO\tsimples\tO\nstates\tO\tstates\tO\nin\tO\tin\tO\nA\tB-Variable_Name\tA\tO\nonto\tO\tonto\tO\nmore\tO\tmore\tO\ncomplex\tO\tcomplex\tO\nstates\tO\tstates\tO\nin\tO\tin\tO\nB/C\tB-Variable_Name\tB/C\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nidentified\tO\tidentified\tO\nand\tO\tand\tO\ndeconstructed\tO\tdeconstructed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nreverse\tO\treverse\tO\nmapping\tO\tmapping\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWhy\tO\tWhy\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nmy\tO\tmy\tO\napproach\tO\tapproach\tO\n\t\nMost\tO\tMost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nschema\tO\tschema\tO\nmappings\tO\tmappings\tO\nare\tO\tare\tO\npretty\tO\tpretty\tO\ntrivial\tO\ttrivial\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nA\tB-Variable_Name\tA\tO\nsimply\tO\tsimply\tO\nmaps\tO\tmaps\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nB\tO\tB\tO\n)\tB-Variable_Name\t)\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ntrivial\tO\ttrivial\tO\ncode\tO\tcode\tO\nby\tO\tby\tO\nhand\tO\thand\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nimagine\tO\timagine\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ntrivial\tO\ttrivial\tO\ncode\tO\tcode\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ngenerated\tO\tgenerated\tO\ngiven\tO\tgiven\tO\na\tO\ta\tO\nformalized\tO\tformalized\tO\nmapping\tO\tmapping\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nschemes\tO\tschemes\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nnontrivial\tO\tnontrivial\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmapping\tO\tmapping\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\none\tO\tone\tO\ndesribed\tO\tdesribed\tO\nabove\tO\tabove\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nexpect\tO\texpect\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\nsimply\tO\tsimply\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nso\tO\tso\tO\narbitrary\tO\tarbitrary\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmany\tO\tmany\tO\ncases\tO\tcases\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nconvention\tO\tconvention\tO\nfor\tO\tfor\tO\nmapping\tO\tmapping\tO\nstates\tO\tstates\tO\nin\tO\tin\tO\nA\tB-Variable_Name\tA\tO\nonto\tO\tonto\tO\nmore\tO\tmore\tO\ncomplex\tO\tcomplex\tO\nstates\tO\tstates\tO\nin\tO\tin\tO\nB/C\tB-Variable_Name\tB/C\tO\nmight\tO\tmight\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndead\tO\tdead\tO\nend\tO\tend\tO\nat\tO\tat\tO\nsome\tO\tsome\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbecome\tO\tbecome\tO\nnecessary\tO\tnecessary\tO\nfor\tO\tfor\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nmirrored\tO\tmirrored\tO\nsubspace\tO\tsubspace\tO\n\"\tO\t\"\tO\nlabel\tO\tlabel\tO\nand\tO\tand\tO\ntherefore\tO\ttherefore\tO\nanother\tO\tanother\tO\napproach\tO\tapproach\tO\nfor\tO\tfor\tO\nidentifying\tO\tidentifying\tO\nconversion\tO\tconversion\tO\nartifacts\tO\tartifacts\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nimagine\tO\timagine\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nformalized\tO\tformalized\tO\nmapping\tO\tmapping\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ntool\tO\ttool\tO\nto\tO\tto\tO\ntransparently\tO\ttransparently\tO\nmanage\tO\tmanage\tO\nthose\tO\tthose\tO\nconventions\tO\tconventions\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\na\tO\ta\tO\nreasoner\tO\treasoner\tO\ncould\tO\tcould\tO\neven\tO\teven\tO\nautomatically\tO\tautomatically\tO\nspot\tO\tspot\tO\nincoherent\tO\tincoherent\tO\n,\tO\t,\tO\ninconsistent\tO\tinconsistent\tO\nmappings\tO\tmappings\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmight\tO\tmight\tO\nalso\tO\talso\tO\nallow\tO\tallow\tO\nme\tO\tme\tO\nto\tO\tto\tO\nmore\tO\tmore\tO\neasily\tO\teasily\tO\ndiscuss\tO\tdiscuss\tO\nthe\tO\tthe\tO\nmapping\tO\tmapping\tO\nwith\tO\twith\tO\ndomain\tO\tdomain\tO\nexperts\tO\texperts\tO\nand\tO\tand\tO\nusers\tO\tusers\tO\n.\tO\t.\tO\n\t\nQuestions\tO\tQuestions\tO\n\t\nFrom\tO\tFrom\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nread\tO\tread\tO\nabout\tO\tabout\tO\nontologies\tO\tontologies\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nimpression\tO\timpression\tO\nthat\tO\tthat\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nis\tO\tis\tO\nan\tO\tan\tO\nontology\tO\tontology\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\ncorrect\tO\tcorrect\tO\n?\tO\t?\tO\n\t\nAs\tO\tAs\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nit\tO\tit\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nontology\tO\tontology\tO\nto\tO\tto\tO\ndescribe\tO\tdescribe\tO\nthe\tO\tthe\tO\nmapping\tO\tmapping\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\nrequire\tO\trequire\tO\nme\tO\tme\tO\nto\tO\tto\tO\nexpress\tO\texpress\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nschemes\tO\tschemes\tO\nthemselves\tO\tthemselves\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nontology\tO\tontology\tO\n(\tO\t(\tO\nso\tO\tso\tO\na\tO\ta\tO\nrelation\tO\trelation\tO\n\"\tO\t\"\tO\nmaps\tO\tmaps\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\ncan\tO\tcan\tO\nreference\tO\treference\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nfrom\tO\tfrom\tO\nA\tB-Variable_Name\tA\tO\nand\tO\tand\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nfrom\tO\tfrom\tO\nB\tB-Variable_Name\tB\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nthose\tO\tthose\tO\nschemes\tO\tschemes\tO\nare\tO\tare\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\nlong-lived\tO\tlong-lived\tO\napplications\tO\tapplications\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nalways\tO\talways\tO\ncoherent\tO\tcoherent\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nfeature\tO\tfeature\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nmight\tO\tmight\tO\ncause\tO\tcause\tO\nsome\tO\tsome\tO\nstate\tO\tstate\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nsemantic\tO\tsemantic\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsemantics\tO\tsemantics\tO\nof\tO\tof\tO\nits\tO\tits\tO\nconstituents\tO\tconstituents\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nexisting\tO\texisting\tO\ntools\tO\ttools\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwith\tO\twith\tO\nmanaging\tO\tmanaging\tO\nthose\tO\tthose\tO\ncomplexities\tO\tcomplexities\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nexpect\tO\texpect\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nrequire\tO\trequire\tO\nsome\tO\tsome\tO\nadditional\tO\tadditional\tO\nmachinery\tO\tmachinery\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nontology\tO\tontology\tO\nto\tO\tto\tO\ndescribe\tO\tdescribe\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n-taken\tO\t-taken\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nabove\tO\tabove\tO\n-\tO\t-\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\na\tO\ta\tO\n\"\tO\t\"\tO\npermanent\tO\tpermanent\tO\nmirrored\tO\tmirrored\tO\nsubspace\tO\tsubspace\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\na\tO\ta\tO\n\"\tO\t\"\tO\ndissipating\tO\tdissipating\tO\nmirrored\tO\tmirrored\tO\nsubspace\tO\tsubspace\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\ntwo\tO\ttwo\tO\ntypes\tO\ttypes\tO\n+\tO\t+\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nrelation\tO\trelation\tO\nreconnecting\tO\treconnecting\tO\nthem\tO\tthem\tO\n?\tO\t?\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\neffort\tO\teffort\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nDo\tO\tDo\tO\navailable\tO\tavailable\tO\nontology\tO\tontology\tO\nlanguages\tO\tlanguages\tO\nprovide\tO\tprovide\tO\nsomething\tO\tsomething\tO\nout-of-the-box\tO\tout-of-the-box\tO\nto\tO\tto\tO\nexpress\tO\texpress\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\napplication\tO\tapplication\tO\nof\tO\tof\tO\nontologies\tO\tontologies\tO\na\tO\ta\tO\ncommon\tO\tcommon\tO\napplication\tO\tapplication\tO\nfor\tO\tfor\tO\nontologies\tO\tontologies\tO\nor\tO\tor\tO\nis\tO\tis\tO\nit\tO\tit\tO\na\tO\ta\tO\ncorner\tO\tcorner\tO\ncase\tO\tcase\tO\n?\tO\t?\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\ncompanies\tO\tcompanies\tO\nwho\tO\twho\tO\nprovide\tO\tprovide\tO\nservices\tO\tservices\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\napplication\tO\tapplication\tO\n?\tO\t?\tO\n\t\nWhich\tO\tWhich\tO\ntools\tO\ttools\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\nsuggest\tO\tsuggest\tO\nfor\tO\tfor\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\nontology\tO\tontology\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nassume\tO\tassume\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\noff-the-shelf\tO\toff-the-shelf\tO\ntools\tO\ttools\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ngeneration\tO\tgeneration\tO\nmentioned\tO\tmentioned\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\napproach\tO\tapproach\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ngeneration\tO\tgeneration\tO\ntask\tO\ttask\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41443520\tO\t41443520\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41443520/\tO\thttps://stackoverflow.com/questions/41443520/\tO\n\t\n\t\nAbstracting\tO\tAbstracting\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\ninterfaces\tO\tinterfaces\tO\n,\tO\t,\tO\nand\tO\tand\tO\nrules\tO\trules\tO\nfor\tO\tfor\tO\ntransformation\tO\ttransformation\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nas\tO\tas\tO\nsubset\tO\tsubset\tO\nof\tO\tof\tO\nontology\tO\tontology\tO\ncreation\tO\tcreation\tO\nknown\tO\tknown\tO\nas\tO\tas\tO\na\tO\ta\tO\nmeta-model\tO\tmeta-model\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nMeta\tO\tMeta\tO\nObject\tO\tObject\tO\nFacility\tO\tFacility\tO\n(\tO\t(\tO\nMOF\tO\tMOF\tO\n)\tO\t)\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nTopic\tO\tTopic\tO\nMaps\tO\tMaps\tO\nare\tO\tare\tO\nanother\tO\tanother\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nReferences\tO\tReferences\tO\n\t\nInfoGrid\tO\tInfoGrid\tO\nWeb\tO\tWeb\tO\nGraph\tO\tGraph\tO\nDatabase\tO\tDatabase\tO\n:\tO\t:\tO\nWhat\tO\tWhat\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\ndifferences\tO\tdifferences\tO\nbetween\tO\tbetween\tO\na\tO\ta\tO\nvocabulary\tO\tvocabulary\tO\n,\tO\t,\tO\na\tO\ta\tO\ntaxonomy\tO\ttaxonomy\tO\n,\tO\t,\tO\na\tO\ta\tO\nthesaurus\tO\tthesaurus\tO\n,\tO\t,\tO\nan\tO\tan\tO\nontology\tO\tontology\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nmeta-model\tO\tmeta-model\tO\n?\tO\t?\tO\n\t\nMeta\tO\tMeta\tO\nObject\tO\tObject\tO\nFacility\tO\tFacility\tO\n(\tO\t(\tO\nMOF\tO\tMOF\tO\n)\tO\t)\tO\n\t\nSpecification\tO\tSpecification\tO\n(\tO\t(\tO\npdf\tB-File_Type\tpdf\tO\n)\tO\t)\tO\n\t\nTopic\tO\tTopic\tO\nMaps\tO\tMaps\tO\nNow\tO\tNow\tO\n\t\nAn\tO\tAn\tO\nIntroduction\tO\tIntroduction\tO\nto\tO\tto\tO\nTopic\tO\tTopic\tO\nMaps\tO\tMaps\tO\n\t\nTM4J\tO\tTM4J\tO\n-\tO\t-\tO\nTopic\tO\tTopic\tO\nMaps\tO\tMaps\tO\nFor\tO\tFor\tO\nJava\tB-Language\tJava\tO\n\t\nCode\tO\tCode\tO\nGeneration\tO\tGeneration\tO\nwith\tO\twith\tO\nOpenDDS\tB-Language\tOpenDDS\tO\n,\tO\t,\tO\nPart\tO\tPart\tO\nI\tO\tI\tO\n:\tO\t:\tO\n:\tO\t:\tO\nOCI\tO\tOCI\tO\n\t\nPaws\tO\tPaws\tO\n-\tO\t-\tO\nA\tO\tA\tO\nPerl\tB-Library\tPerl\tO\nSDK\tI-Library\tSDK\tO\nfor\tO\tfor\tO\nAWS\tB-Library\tAWS\tO\n(\tI-Library\t(\tO\nAmazon\tI-Library\tAmazon\tO\nWeb\tI-Library\tWeb\tO\nServices\tI-Library\tServices\tO\n)\tI-Library\t)\tO\nAPIs\tB-Library\tAPIs\tO\n-\tO\t-\tO\nmetacpan.org\tO\tmetacpan.org\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40738894\tO\t40738894\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40738894/\tO\thttps://stackoverflow.com/questions/40738894/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsdk\tB-Application\tsdk\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nintegrated\tO\tintegrated\tO\nin\tO\tin\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nServer\tO\tServer\tO\nfor\tO\tfor\tO\nour\tO\tour\tO\nsdk\tB-Application\tsdk\tO\nwants\tO\twants\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsingle\tO\tsingle\tO\nGCM\tB-Application\tGCM\tO\nId\tO\tId\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\npush\tB-User_Interface_Element\tpush\tO\nnotification\tI-User_Interface_Element\tnotification\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\ntackle\tO\ttackle\tO\nthe\tO\tthe\tO\nscenario\tO\tscenario\tO\nwhere\tO\twhere\tO\nmy\tO\tmy\tO\nsdk\tB-Application\tsdk\tO\nis\tO\tis\tO\nintegrated\tO\tintegrated\tO\nin\tO\tin\tO\ntwo\tO\ttwo\tO\napplications\tO\tapplications\tO\nin\tO\tin\tO\nsame\tO\tsame\tO\nphone\tB-Device\tphone\tO\nand\tO\tand\tO\nas\tO\tas\tO\nsdk\tB-Application\tsdk\tO\nin\tO\tin\tO\none\tO\tone\tO\napplication\tO\tapplication\tO\nregisters\tO\tregisters\tO\nGCM\tB-Application\tGCM\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nGCM\tB-Application\tGCM\tO\nregistered\tO\tregistered\tO\nfrom\tO\tfrom\tO\nsdk\tB-Application\tsdk\tO\nin\tO\tin\tO\nother\tO\tother\tO\napplication\tO\tapplication\tO\nexpires\tO\texpires\tO\n?\tO\t?\tO\n\t\nFYI\tO\tFYI\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nreviewed\tO\treviewed\tO\nthis\tO\tthis\tO\nanswer\tO\tanswer\tO\nAndroid\tB-Application\tAndroid\tO\nGCM\tI-Application\tGCM\tO\n:\tO\t:\tO\nsame\tO\tsame\tO\nsender\tO\tsender\tO\nid\tO\tid\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\napplication\tO\tapplication\tO\nbut\tO\tbut\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nconsidering\tO\tconsidering\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nis\tO\tis\tO\ninstalled\tO\tinstalled\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40738894\tO\t40738894\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40738894/\tO\thttps://stackoverflow.com/questions/40738894/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYou\tO\tYou\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nmatters\tO\tmatters\tO\nis\tO\tis\tO\nregistration\tB-Code_Block\tregistration\tB-Code_Block\nId\tI-Code_Block\tId\tI-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\n(\tO\t(\tO\napp\tO\tapp\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ngot\tO\tgot\tO\nit\tO\tit\tO\ndifferent\tO\tdifferent\tO\nper\tO\tper\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatter\tO\tmatter\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nis\tO\tis\tO\ninstalled\tO\tinstalled\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\n(\tO\t(\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n)\tO\t)\tO\nsame\tO\tsame\tO\nsender\tO\tsender\tO\nid\tO\tid\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nirrelevant\tO\tirrelevant\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7561264\tO\t7561264\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7561264/\tO\thttps://stackoverflow.com/questions/7561264/\tO\n\t\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nGraph\tB-Library\tGraph\tO\nAPI\tI-Library\tAPI\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nalternate\tO\talternate\tO\nname\tO\tname\tO\nsomeone\tO\tsomeone\tO\nfills\tO\tfills\tO\nout\tO\tout\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\nAccount\tO\tAccount\tO\nSettings\tO\tSettings\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7561264\tO\t7561264\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7561264/\tO\thttps://stackoverflow.com/questions/7561264/\tO\n\t\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\n'\tO\t'\tO\nusername\tB-Library_Variable\tusername\tO\n'\tO\t'\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nfield\tO\tfield\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUser\tB-Library_Class\tUser\tO\nGraph\tI-Library_Class\tGraph\tO\nObject\tI-Library_Class\tObject\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n'\tB-Value\t'\tO\nbtaylor\tI-Value\tbtaylor\tO\n'\tB-Value\t'\tO\nreturned\tO\treturned\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nuser\tO\tuser\tO\n,\tO\t,\tO\nhttps://www.facebook.com/btaylor\tO\thttps://www.facebook.com/btaylor\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\ngrab\tO\tgrab\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nusername\tB-Library_Variable\tusername\tO\n'\tO\t'\tO\nfield\tO\tfield\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nUser\tB-Library_Class\tUser\tO\nGraph\tI-Library_Class\tGraph\tO\nObject\tI-Library_Class\tObject\tO\n,\tO\t,\tO\nas\tO\tas\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\n:\tO\t:\tO\nhttps://graph.facebook.com/btaylor\tO\thttps://graph.facebook.com/btaylor\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7561264\tO\t7561264\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7561264/\tO\thttps://stackoverflow.com/questions/7561264/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\ncurrently\tO\tcurrently\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthis\tO\tthis\tO\nfield\tO\tfield\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nAPI\tB-Application\tAPI\tO\nby\tO\tby\tO\nany\tO\tany\tO\nmeans\tO\tmeans\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\naware\tO\taware\tO\nof\tO\tof\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nfile\tO\tfile\tO\na\tO\ta\tO\nwishlist\tO\twishlist\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbug\tO\tbug\tO\ntracker\tO\ttracker\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nget\tO\tget\tO\npicked\tO\tpicked\tO\nup\tO\tup\tO\nand\tO\tand\tO\nimplemented\tO\timplemented\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16516578\tO\t16516578\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16516578/\tO\thttps://stackoverflow.com/questions/16516578/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nbootstrap\tB-Library\tbootstrap\tO\nwith\tO\twith\tO\nDjango\tB-Library\tDjango\tO\n.\tO\t.\tO\n\t\nThough\tO\tThough\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngood\tO\tgood\tO\nin\tO\tin\tO\nPython\tB-Language\tPython\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nstruggling\tO\tstruggling\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nsome\tO\tsome\tO\nbasic\tO\tbasic\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\nfile\tO\tfile\tO\nuploads/forms\tO\tuploads/forms\tO\nin\tO\tin\tO\nbootstrap\tB-Library\tbootstrap\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nparticular\tO\tparticular\tO\nreason\tO\treason\tO\nfor\tO\tfor\tO\nusing\tO\tusing\tO\nFileField\tB-Library_Class\tFileField\tO\nin\tO\tin\tO\nDjango\tB-Library\tDjango\tO\nmodels\tO\tmodels\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16516578\tO\t16516578\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16516578/\tO\thttps://stackoverflow.com/questions/16516578/\tO\n\t\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nFile\tO\tFile\tO\nUploads\tO\tUploads\tO\ndocumentation\tO\tdocumentation\tO\n\t\nDjango\tB-Library\tDjango\tO\nCripsy\tI-Library\tCripsy\tO\nforms\tI-Library\tforms\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nwith\tO\twith\tO\nBootstrap\tB-Library\tBootstrap\tO\nforms\tO\tforms\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nFileField\tB-Library_Class\tFileField\tB-Code_Block\n(\tO\t(\tO\ndocs\tO\tdocs\tO\n)\tO\t)\tO\nwill\tO\twill\tO\nautomatically\tO\tautomatically\tO\nupload\tO\tupload\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\ngiving\tO\tgiving\tO\nyou\tO\tyou\tO\nvarious\tO\tvarious\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nadditional\tO\tadditional\tO\nfunctionality\tO\tfunctionality\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\nto\tO\tto\tO\n,\tO\t,\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nabsolute\tO\tabsolute\tO\nurl\tO\turl\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nto\tO\tto\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33927327\tO\t33927327\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33927327/\tO\thttps://stackoverflow.com/questions/33927327/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\nwhich\tO\twhich\tO\nallows\tO\tallows\tO\nme\tO\tme\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\n.jar\tB-File_Type\t.jar\tB-Code_Block\nfile\tO\tfile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\nsure\tO\tsure\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmeaning\tO\tmeaning\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nmy\tO\tmy\tO\nprograms\tO\tprograms\tO\nfrom\tO\tfrom\tO\nEclipse\tB-Application\tEclipse\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nunderstanding\tO\tunderstanding\tO\nfully\tO\tfully\tO\nit\tO\tit\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ndifficult\tO\tdifficult\tO\nto\tO\tto\tO\ncustomise\tO\tcustomise\tO\nthe\tO\tthe\tO\nrun\tO\trun\tO\nconfigurations\tO\tconfigurations\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncommand\tO\tcommand\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4148\tI-Code_Block\tQ_4148\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nquestions\tO\tquestions\tO\n:\tO\t:\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nmeaning\tO\tmeaning\tO\nof\tO\tof\tO\n:\tB-Code_Block\t:\tB-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\nafter\tO\tafter\tO\nthe\tO\tthe\tO\n.jar\tB-File_Type\t.jar\tB-Code_Block\nlibrary\tO\tlibrary\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nclass\tO\tclass\tO\ntransport.FileSender\tB-Library_Class\ttransport.FileSender\tB-Code_Block\nbasically\tO\tbasically\tO\nallows\tO\tallows\tO\nme\tO\tme\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nby\tO\tby\tO\nclass\tO\tclass\tO\nMGBNSender\tB-Class_Name\tMGBNSender\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nmanage\tO\tmanage\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nEclipse\tB-Application\tEclipse\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nhow\tO\thow\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nimported\tO\timported\tO\nthe\tO\tthe\tO\n.jar\tB-File_Type\t.jar\tB-Code_Block\nfile.\tO\tfile.\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33927327\tO\t33927327\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33927327/\tO\thttps://stackoverflow.com/questions/33927327/\tO\n\t\n\t\nThe\tO\tThe\tO\n.\tB-Code_Block\t.\tB-Code_Block\nadds\tO\tadds\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ndirectory\tO\tdirectory\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclass-path\tO\tclass-path\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\ncompiled\tO\tcompiled\tO\nJava\tB-Language\tJava\tO\nsource\tO\tsource\tO\nfiles\tO\tfiles\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nclasses\tO\tclasses\tO\n)\tO\t)\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\ntree\tO\ttree\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ndeveloping\tO\tdeveloping\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nMain\tB-Class_Name\tMain\tO\n,\tO\t,\tO\nor\tO\tor\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\n,\tO\t,\tO\nclass\tO\tclass\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\ndirectory\tO\tdirectory\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39820928\tO\t39820928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39820928/\tO\thttps://stackoverflow.com/questions/39820928/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nrecently\tO\trecently\tO\npast\tO\tpast\tO\nday\tO\tday\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nweek\tO\tweek\tO\n,\tO\t,\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\nmoment\tO\tmoment\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n1\tO\t1\tO\n:\tO\t:\tO\nGiven\tO\tGiven\tO\nthis\tO\tthis\tO\nmoment\tO\tmoment\tO\n—\tO\t—\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nsay\tO\tsay\tO\nSun\tB-Value\tSun\tO\nOct\tI-Value\tOct\tO\n2\tI-Value\t2\tO\n2016\tI-Value\t2016\tO\n15:30:30\tI-Value\t15:30:30\tO\nEST\tI-Value\tEST\tO\n—\tO\t—\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ndetermine\tO\tdetermine\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nrecently\tO\trecently\tO\npast\tO\tpast\tO\nFriday\tB-Value\tFriday\tO\nat\tI-Value\tat\tO\n20:00:00\tI-Value\t20:00:00\tO\nMST\tI-Value\tMST\tO\n?\tO\t?\tO\n\t\nAnswer\tO\tAnswer\tO\n1\tO\t1\tO\n:\tO\t:\tO\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nFriday\tB-Value\tFriday\tO\n,\tI-Value\t,\tO\nSept\tI-Value\tSept\tO\n30\tI-Value\t30\tO\n,\tI-Value\t,\tO\n2016\tI-Value\t2016\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n2\tO\t2\tO\n:\tO\t:\tO\nWhat\tO\tWhat\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nrecently\tO\trecently\tO\npast\tO\tpast\tO\nSunday\tB-Value\tSunday\tO\nat\tI-Value\tat\tO\n21:00:00\tI-Value\t21:00:00\tO\nEST\tI-Value\tEST\tO\n?\tO\t?\tO\n\t\nAnswer\tO\tAnswer\tO\n2\tO\t2\tO\n:\tO\t:\tO\nThat\tO\tThat\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nSunday\tB-Value\tSunday\tO\n,\tI-Value\t,\tO\nSep\tI-Value\tSep\tO\n25\tI-Value\t25\tO\n,\tI-Value\t,\tO\n2016\tI-Value\t2016\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n3\tO\t3\tO\n:\tO\t:\tO\nWhat\tO\tWhat\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nrecently\tO\trecently\tO\npast\tO\tpast\tO\nSunday\tB-Value\tSunday\tO\nat\tI-Value\tat\tO\n14:30:30\tI-Value\t14:30:30\tO\nMST\tI-Value\tMST\tO\n?\tO\t?\tO\n\t\nAnswer\tO\tAnswer\tO\n3\tO\t3\tO\n:\tO\t:\tO\nThat\tO\tThat\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nSunday\tB-Value\tSunday\tO\n,\tI-Value\t,\tO\nSep\tI-Value\tSep\tO\n25\tI-Value\t25\tO\n,\tI-Value\t,\tO\n2016\tI-Value\t2016\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39820928\tO\t39820928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39820928/\tO\thttps://stackoverflow.com/questions/39820928/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nphp\tB-Language\tphp\tO\nDateTime\tB-Library_Class\tDateTime\tO\nAPI\tO\tAPI\tO\nextension\tO\textension\tO\ncalled\tO\tcalled\tO\nCarbon\tB-Library\tCarbon\tO\n.\tO\t.\tO\n\t\nhttps://packagist.org/packages/nesbot/carbon\tO\thttps://packagist.org/packages/nesbot/carbon\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\nvia\tO\tvia\tO\nComposer\tB-Application\tComposer\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nsimply\tO\tsimply\tO\nwrite\tO\twrite\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5728\tI-Code_Block\tA_5728\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\ntutorial\tO\ttutorial\tO\nseries\tO\tseries\tO\nby\tO\tby\tO\nAlex\tB-User_Name\tAlex\tO\nfrom\tO\tfrom\tO\nCodecourse\tB-Website\tCodecourse\tO\non\tO\ton\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCarbon\tB-Library\tCarbon\tO\nTutorial\tO\tTutorial\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20632394\tO\t20632394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20632394/\tO\thttps://stackoverflow.com/questions/20632394/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\non\tO\ton\tO\nstackexchange\tB-Website\tstackexchange\tO\n,\tO\t,\tO\nfacing\tO\tfacing\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nwith\tO\twith\tO\nnumerous\tO\tnumerous\tO\nhours\tO\thours\tO\nspent\tO\tspent\tO\non\tO\ton\tO\nGoogle\tB-Website\tGoogle\tO\n.\tO\t.\tO\n\t\nApologies\tO\tApologies\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlack\tO\tlack\tO\nof\tO\tof\tO\nmore\tO\tmore\tO\nimages\tB-User_Interface_Element\timages\tO\n,\tO\t,\tO\nstackexchange\tB-Website\tstackexchange\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nallow\tO\tallow\tO\nme\tO\tme\tO\nto\tO\tto\tO\nmore\tO\tmore\tO\nphotos\tB-User_Interface_Element\tphotos\tO\nuntil\tO\tuntil\tO\nmy\tO\tmy\tO\nreputation\tO\treputation\tO\nis\tO\tis\tO\nhigher\tO\thigher\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nresults\tO\tresults\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\n.do\tB-File_Type\t.do\tO\npage\tO\tpage\tO\n:\tO\t:\tO\n\t\nhttp://webapps2.rrc.state.tx.us/EWA/productionQueryAction.do\tO\thttp://webapps2.rrc.state.tx.us/EWA/productionQueryAction.do\tO\n\t\nThe\tO\tThe\tO\nurl\tO\turl\tO\nremains\tO\tremains\tO\nstatic\tO\tstatic\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\nquery\tO\tquery\tO\ne.g\tO\te.g\tO\nis\tO\tis\tO\nsubmitted\tO\tsubmitted\tO\n-\tO\t-\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nalter\tO\talter\tO\nmy\tO\tmy\tO\nquery\tO\tquery\tO\nby\tO\tby\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nsubmitted\tO\tsubmitted\tO\n,\tO\t,\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\na\tO\ta\tO\nlong\tO\tlong\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nload\tO\tload\tO\n,\tO\t,\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\nloading\tO\tloading\tO\n,\tO\t,\tO\na\tO\ta\tO\ntable\tB-User_Interface_Element\ttable\tO\nof\tO\tof\tO\nresults\tO\tresults\tO\nis\tO\tis\tO\npresented\tO\tpresented\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\nrequire\tO\trequire\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\non\tO\ton\tO\none\tO\tone\tO\npage\tO\tpage\tO\nso\tO\tso\tO\nI\tO\tI\tO\nselect\tO\tselect\tO\n'\tO\t'\tO\nView\tO\tView\tO\nAll\tO\tAll\tO\n'\tO\t'\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nsize\tO\tsize\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndrop\tB-User_Interface_Element\tdrop\tO\ndown\tI-User_Interface_Element\tdown\tO\nmenu\tI-User_Interface_Element\tmenu\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nleft\tO\tleft\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntable\tB-User_Interface_Element\ttable\tO\nto\tO\tto\tO\nobtain\tO\tobtain\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npage\tO\tpage\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nmany\tO\tmany\tO\nmore\tO\tmore\tO\nrows\tB-User_Interface_Element\trows\tO\nthan\tO\tthan\tO\ndisplayed\tO\tdisplayed\tO\nhere\tO\there\tO\n)\tO\t)\tO\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nto\tO\tto\tO\nthen\tO\tthen\tO\nimport\tO\timport\tO\nthis\tO\tthis\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nI\tO\tI\tO\nopen\tO\topen\tO\na\tO\ta\tO\nspreadsheet\tB-User_Interface_Element\tspreadsheet\tO\nand\tO\tand\tO\ncopy-paste\tO\tcopy-paste\tO\nit\tO\tit\tO\nall\tO\tall\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nfor\tO\tfor\tO\none\tO\tone\tO\ncounty/query/submission\tO\tcounty/query/submission\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nextremely\tO\textremely\tO\ntedious\tO\ttedious\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nmonthly\tO\tmonthly\tO\nfor\tO\tfor\tO\nabout\tO\tabout\tO\n20\tO\t20\tO\ncounties\tO\tcounties\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nfurther\tO\tfurther\tO\n10\tO\t10\tO\ndistricts\tO\tdistricts\tO\n.\tO\t.\tO\n\t\nDue\tO\tDue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlong\tO\tlong\tO\nload\tO\tload\tO\ntime\tO\ttime\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\nof\tO\tof\tO\neach\tO\teach\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\ntask\tO\ttask\tO\nthat\tO\tthat\tO\neasily\tO\teasily\tO\ntakes\tO\ttakes\tO\n2-3\tO\t2-3\tO\nhours\tO\thours\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nsuch\tO\tsuch\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhoping\tO\thoping\tO\nsomeone\tO\tsomeone\tO\nhere\tO\there\tO\nhas\tO\thas\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nautomate/ease\tO\tautomate/ease\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nor\tO\tor\tO\neven\tO\teven\tO\nsimply\tO\tsimply\tO\nadvice\tO\tadvice\tO\nas\tO\tas\tO\nto\tO\tto\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nmyself\tO\tmyself\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\ndirectly\tO\tdirectly\tO\nquery\tO\tquery\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nspreadsheet\tB-User_Interface_Element\tspreadsheet\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nsolved\tO\tsolved\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nload\tO\tload\tO\ntimes\tO\ttimes\tO\nare\tO\tare\tO\nirrelevant\tO\tirrelevant\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nprocess\tO\tprocess\tO\nof\tO\tof\tO\nquerying\tO\tquerying\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nautomated\tO\tautomated\tO\nas\tO\tas\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nrun\tO\trun\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nwithout\tO\twithout\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\napologise\tO\tapologise\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlong\tO\tlong\tO\nand\tO\tand\tO\nnon-specific\tO\tnon-specific\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nand\tO\tand\tO\nany\tO\tany\tO\nresponse\tO\tresponse\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20632394\tO\t20632394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20632394/\tO\thttps://stackoverflow.com/questions/20632394/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nactually\tO\tactually\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nnetwork\tO\tnetwork\tO\ncalls\tO\tcalls\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nexecuted\tO\texecuted\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nCSV\tB-File_Type\tCSV\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\ndid\tO\tdid\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nparameters\tO\tparameters\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nparameters\tO\tparameters\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nin\tO\tin\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2761\tI-Code_Block\tA_2761\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nprefixed\tO\tprefixed\tO\nwith\tO\twith\tO\nsearchArgs\tB-Library_Class\tsearchArgs\tB-Code_Block\nare\tO\tare\tO\nimportant\tO\timportant\tO\n(\tO\t(\tO\nthey\tO\tthey\tO\ncontain\tO\tcontain\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nmonth/year/.\tO\tmonth/year/.\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nactionManager\tB-Library_Class\tactionManager\tB-Code_Block\nprefixed\tO\tprefixed\tO\nparameters\tO\tparameters\tO\ncontain\tO\tcontain\tO\nsome\tO\tsome\tO\ncomplicated\tO\tcomplicated\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nthem\tO\tthem\tO\n(\tO\t(\tO\nelse\tO\telse\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\nactually\tO\tactually\tO\nused\tO\tused\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\njust\tO\tjust\tO\nleave\tO\tleave\tO\nthem\tO\tthem\tO\nempty\tO\tempty\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nexecuting\tO\texecuting\tO\nthis\tO\tthis\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nimediately\tO\timediately\tO\nreceive\tO\treceive\tO\nthe\tO\tthe\tO\nCSV\tB-File_Type\tCSV\tO\nfile\tO\tfile\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nprobably\tO\tprobably\tO\nparse\tO\tparse\tO\nusing\tO\tusing\tO\nany\tO\tany\tO\nlanguage\tO\tlanguage\tO\n(\tO\t(\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nCSV\tB-File_Type\tCSV\tO\nparsing\tO\tparsing\tO\nlibrary\tO\tlibrary\tO\n)\tO\t)\tO\nand\tO\tand\tO\ninsert\tO\tinsert\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\npossibility\tO\tpossibility\tO\nis\tO\tis\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nsource\tO\tsource\tO\n(\tO\t(\tO\nor\tO\tor\tO\na\tO\ta\tO\npublic\tO\tpublic\tO\nAPI\tB-Library\tAPI\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nreally\tO\treally\tO\ncrazy\tO\tcrazy\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nchange\tO\tchange\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\nusing\tO\tusing\tO\nPHP\tB-Language\tPHP\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nin\tO\tin\tO\nPHP\tB-Language\tPHP\tO\nretrieving\tO\tretrieving\tO\nthe\tO\tthe\tO\nCSV\tB-File_Type\tCSV\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\ncURL\tB-Library\tcURL\tO\n)\tO\t)\tO\nand\tO\tand\tO\nparsing\tO\tparsing\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2762\tI-Code_Block\tA_2762\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20632394\tO\t20632394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20632394/\tO\thttps://stackoverflow.com/questions/20632394/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndescribing\tO\tdescribing\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nsounds\tO\tsounds\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nDatabase\tO\tDatabase\tO\ntaking\tO\ttaking\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nany\tO\tany\tO\nindexes\tO\tindexes\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nbeing\tO\tbeing\tO\nqueried\tO\tqueried\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nquerying\tO\tquerying\tO\ndata\tO\tdata\tO\nacross\tO\tacross\tO\nmultiple\tO\tmultiple\tO\nlinked\tO\tlinked\tO\ntables\tB-User_Interface_Element\ttables\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\n&\tO\t&\tO\nsounds\tO\tsounds\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\n)\tO\t)\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nindexes\tO\tindexes\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nqueries\tO\tqueries\tO\nwill\tO\twill\tO\nrun\tO\trun\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ndog\tO\tdog\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwebsite\tO\twebsite\tO\noffers\tO\toffers\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nintroduction\tO\tintroduction\tO\nto\tO\tto\tO\nindexes\tO\tindexes\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nworth\tO\tworth\tO\ntaking\tO\ttaking\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nthan\tO\tthan\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nprevalent\tO\tprevalent\tO\nto\tO\tto\tO\nsetup\tO\tsetup\tO\na\tO\ta\tO\ncron\tB-Application\tcron\tO\nto\tO\tto\tO\nautomate\tO\tautomate\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\nAnusha\tB-User_Name\tAnusha\tO\nhas\tO\thas\tO\ndescribed\tO\tdescribed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nrecommend\tO\trecommend\tO\nlooking\tO\tlooking\tO\ninto\tO\tinto\tO\nindexes\tO\tindexes\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\ncron\tB-Application\tcron\tO\njobs\tO\tjobs\tO\n,\tO\t,\tO\nas\tO\tas\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\njust\tO\tjust\tO\ncut\tO\tcut\tO\ndown\tO\tdown\tO\nthe\tO\tthe\tO\namount\tO\tamount\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\neach\tO\teach\tO\nmonth\tO\tmonth\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nfully\tO\tfully\tO\nautomate\tO\tautomate\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nrunning\tO\trunning\tO\nin\tO\tin\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nminutes\tO\tminutes\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nhours\tO\thours\tO\neach\tO\teach\tO\nmonth\tO\tmonth\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4126518\tO\t4126518\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4126518/\tO\thttps://stackoverflow.com/questions/4126518/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nEF\tB-Library\tEF\tO\nmodel\tO\tmodel\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nlogically\tO\tlogically\tO\nhave\tO\thave\tO\na\tO\ta\tO\n\"\tO\t\"\tO\ntemplate\tB-Class_Name\ttemplate\tO\n\"\tO\t\"\tO\ntype\tO\ttype\tO\nand\tO\tand\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\ntype\tO\ttype\tO\n\"\tO\t\"\tO\n\t\nBasically\tO\tBasically\tO\nmy\tO\tmy\tO\ntemplates\tB-Class_Name\ttemplates\tO\nare\tO\tare\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nwork\tO\twork\tO\nflow\tO\tflow\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ninstances\tO\tinstances\tO\nare\tO\tare\tO\nthose\tO\tthose\tO\ntemplates\tB-Class_Name\ttemplates\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nassociation\tO\tassociation\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ntemplate\tB-Class_Name\ttemplate\tO\nhas\tO\thas\tO\nzero\tO\tzero\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\ninstances\tO\tinstances\tO\n,\tO\t,\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nbased\tO\tbased\tO\non\tO\ton\tO\na\tO\ta\tO\ntemplate\tB-Class_Name\ttemplate\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nthe\tO\tthe\tO\ntemplate\tB-Class_Name\ttemplate\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\n\"\tO\t\"\tO\nsend\tO\tsend\tO\nletter\tO\tletter\tO\n\"\tO\t\"\tO\nwhich\tO\twhich\tO\ngets\tO\tgets\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\na\tO\ta\tO\ncustomer\tO\tcustomer\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nletter\tO\tletter\tO\nsent\tO\tsent\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nincludes\tO\tincludes\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nsent\tO\tsent\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npdf\tB-File_Type\tpdf\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nletter\tO\tletter\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntemplates\tB-Class_Name\ttemplates\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nsubclasses/types\tO\tsubclasses/types\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nmatch\tO\tmatch\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nwhich\tO\twhich\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\na\tO\ta\tO\ncorresponding\tO\tcorresponding\tO\nsubclass\tO\tsubclass\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\n)\tO\t)\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\nis\tO\tis\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ninherited\tO\tinherited\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nis\tO\tis\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nTemplateType2\tB-Class_Name\tTemplateType2\tO\n(\tO\t(\tO\ninherits\tO\tinherits\tO\nfrom\tO\tfrom\tO\ntemplate\tB-Class_Name\ttemplate\tO\n)\tO\t)\tO\nand\tO\tand\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nto\tO\tto\tO\nloan1\tB-Variable_Name\tloan1\tO\n.\tO\t.\tO\n.\tO\t.\tO\nloan1.TemplateInstances.add(foo)\tB-Library_Function\tloan1.TemplateInstances.add(foo)\tO\n…\tO\t…\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nfoo\tB-Variable_Name\tfoo\tO\nis\tO\tis\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nInstanceType2\tB-Class_Name\tInstanceType2\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\nnow\tO\tnow\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nhack\tO\thack\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nstoring\tO\tstoring\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\nentity\tO\tentity\tO\nname\tO\tname\tO\nas\tO\tas\tO\na\tO\ta\tO\nscalar\tO\tscalar\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntemplate\tB-Class_Name\ttemplate\tO\nentity\tO\tentity\tO\n,\tO\t,\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nreflection\tO\treflection\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbasically\tO\tbasically\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nmapping\tO\tmapping\tO\n,\tO\t,\tO\nexposing\tO\texposing\tO\nthe\tO\tthe\tO\npossibility\tO\tpossibility\tO\nof\tO\tof\tO\nall\tO\tall\tO\nsorts\tO\tsorts\tO\nof\tO\tof\tO\nerrors\tO\terrors\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\nname\tO\tname\tO\n,\tO\t,\tO\nor\tO\tor\tO\nworse\tO\tworse\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nenter\tO\tenter\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nentity\tO\tentity\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nor\tO\tor\tO\nthoughts\tO\tthoughts\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ntackle\tO\ttackle\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4126518\tO\t4126518\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4126518/\tO\thttps://stackoverflow.com/questions/4126518/\tO\n\t\n\t\nI\tO\tI\tO\nended\tO\tended\tO\nup\tO\tup\tO\nsolving\tO\tsolving\tO\nthis\tO\tthis\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\na\tO\ta\tO\nhack\tO\thack\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nnaming\tO\tnaming\tO\nconventions\tO\tconventions\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nhandler\tO\thandler\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\nsavingchanges\tB-Library_Function\tsavingchanges\tO\nmethod\tO\tmethod\tO\n\t\nand\tO\tand\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nreflection\tO\treflection\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nsolution\tO\tsolution\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nmain\tO\tmain\tO\npart\tO\tpart\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_438\tI-Code_Block\tA_438\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2892716\tO\t2892716\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2892716/\tO\thttps://stackoverflow.com/questions/2892716/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nwith\tO\twith\tO\nparentheses\tO\tparentheses\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n((Question)(Left_Node)(right_node))\tB-Code_Block\t((Question)(Left_Node)(right_node))\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nquestion\tO\tquestion\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n\"\tO\t\"\tO\nif\tO\tif\tO\nsegment\tO\tsegment\tO\nsize\tO\tsize\tO\n<\tO\t<\tO\n1.5\tB-Value\t1.5\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nchoose\tO\tchoose\tO\nleft\tO\tleft\tO\nnode\tO\tnode\tO\n,\tO\t,\tO\nelse\tO\telse\tO\nright\tO\tright\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nquestion\tO\tquestion\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ndictionary\tB-Data_Structure\tdictionary\tO\nwith\tO\twith\tO\na\tO\ta\tO\nkey\tB-Library_Variable\tkey\tO\nand\tO\tand\tO\na\tO\ta\tO\nvalue\tB-Library_Variable\tvalue\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nleft\tO\tleft\tO\nand\tO\tand\tO\nright\tO\tright\tO\nnode\tB-Data_Structure\tnode\tO\nrepresent\tO\trepresent\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\nleft\tO\tleft\tO\nor\tO\tor\tO\nright\tO\tright\tO\nhalf\tO\thalf\tO\ntree\tB-Data_Structure\ttree\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ntraversed\tO\ttraversed\tO\nrecursively\tO\trecursively\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nleaf\tO\tleaf\tO\nnode\tB-Data_Structure\tnode\tO\nis\tO\tis\tO\nreached\tO\treached\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nmanner\tO\tmanner\tO\nwe\tO\twe\tO\nwill\tO\twill\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nbinary\tO\tbinary\tO\ndecision\tO\tdecision\tO\ntree\tB-Data_Structure\ttree\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2892716\tO\t2892716\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2892716/\tO\thttps://stackoverflow.com/questions/2892716/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndecide\tO\tdecide\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nformat\tO\tformat\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nraw\tO\traw\tO\npython\tB-Language\tpython\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstore\tO\tstore\tO\nyour\tO\tyour\tO\ntree\tB-Data_Structure\ttree\tO\nin\tO\tin\tO\na\tO\ta\tO\npython\tB-Language\tpython\tO\ndictionary\tB-Data_Structure\tdictionary\tO\nof\tO\tof\tO\nnodes\tB-Data_Structure\tnodes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_287\tI-Code_Block\tA_287\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nparse\tO\tparse\tO\nthis\tO\tthis\tO\ntree\tB-Data_Structure\ttree\tO\nsimply\tO\tsimply\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npython\tB-Language\tpython\tO\nparser\tO\tparser\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_288\tI-Code_Block\tA_288\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nformat\tO\tformat\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nspecified\tO\tspecified\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nwe\tO\twe\tO\ncannot\tO\tcannot\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nshare\tO\tshare\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2892716\tO\t2892716\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2892716/\tO\thttps://stackoverflow.com/questions/2892716/\tO\n\t\n\t\nThis\tO\tThis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nsyntax\tO\tsyntax\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nthe\tO\tthe\tO\ntarget\tO\ttarget\tO\nfor\tO\tfor\tO\npyparsing\tB-Library\tpyparsing\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbasic\tO\tbasic\tO\nformat\tO\tformat\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\nenough\tO\tenough\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\npyparsing\tB-Library\tpyparsing\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_558\tI-Code_Block\tA_558\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\narithmetic\tO\tarithmetic\tO\nexpressions\tO\texpressions\tO\n,\tO\t,\tO\nand\tO\tand\tO\nboolean\tO\tboolean\tO\noperations\tO\toperations\tO\nand\tO\tand\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\n'\tO\t'\tO\nand\tB-Code_Block\tand\tO\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\nor\tB-Code_Block\tor\tO\n'\tO\t'\tO\noperators\tO\toperators\tO\n,\tO\t,\tO\nthings\tO\tthings\tO\nget\tO\tget\tO\ncomplicated\tO\tcomplicated\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nrecursive\tO\trecursive\tO\ngrammar\tO\tgrammar\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nan\tO\tan\tO\naction\tO\taction\tO\ncan\tO\tcan\tO\nitself\tO\titself\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nnested\tO\tnested\tO\ndecision\tO\tdecision\tO\n.\tO\t.\tO\n\t\nPyparsing\tB-Library\tPyparsing\tO\nhas\tO\thas\tO\nbuilt-in\tO\tbuilt-in\tO\nsupport\tO\tsupport\tO\nthat\tO\tthat\tO\nsimplifies\tO\tsimplifies\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\narithmetic\tO\tarithmetic\tO\nand\tO\tand\tO\nboolean\tB-Data_Type\tboolean\tO\nexpressions\tO\texpressions\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nprecedence\tO\tprecedence\tO\nof\tO\tof\tO\noperations\tO\toperations\tO\nand\tO\tand\tO\ngruping\tO\tgruping\tO\nin\tO\tin\tO\nparentheses\tO\tparentheses\tO\n,\tO\t,\tO\nplus\tO\tplus\tO\nrecursive\tO\trecursive\tO\nexpressions\tO\texpressions\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npyparsing\tB-Library\tpyparsing\tO\ngrammar\tO\tgrammar\tO\nin\tO\tin\tO\nvarious\tO\tvarious\tO\npieces\tO\tpieces\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nhere\tO\there\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbasic\tO\tbasic\tO\nparsing\tO\tparsing\tO\nelements\tO\telements\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_559\tI-Code_Block\tA_559\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nparse\tO\tparse\tO\naction\tO\taction\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nexpression\tO\texpression\tO\nwill\tO\twill\tO\nautomatically\tO\tautomatically\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nparsed\tO\tparsed\tO\nnumber\tO\tnumber\tO\nto\tO\tto\tO\na\tO\ta\tO\nfloat\tB-Data_Type\tfloat\tO\nvalue\tO\tvalue\tO\nat\tO\tat\tO\nparse\tO\tparse\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nWord\tB-Library_Class\tWord\tO\nclass\tO\tclass\tO\ntakes\tO\ttakes\tO\ntwo\tO\ttwo\tO\nstrings\tB-Data_Type\tstrings\tO\n:\tO\t:\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\ncontaining\tO\tcontaining\tO\nall\tO\tall\tO\nvalid\tO\tvalid\tO\nleading\tO\tleading\tO\ncharacters\tO\tcharacters\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nof\tO\tof\tO\nall\tO\tall\tO\nvalid\tO\tvalid\tO\nbody\tO\tbody\tO\ncharacters\tO\tcharacters\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nvarname\tB-Variable_Name\tvarname\tO\ndefinition\tO\tdefinition\tO\nsupports\tO\tsupports\tO\nvariable\tO\tvariable\tO\nnames\tO\tnames\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nPython\tB-Language\tPython\tO\nidentifiers\tO\tidentifiers\tO\n.\tO\t.\tO\n\t\nPyparsing\tB-Library\tPyparsing\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\noperatorPrecedence\tB-Library_Function\toperatorPrecedence\tB-Code_Block\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\nan\tO\tan\tO\nexpression\tO\texpression\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbasic\tO\tbasic\tO\noperand\tO\toperand\tO\ndefinition\tO\tdefinition\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ntuples\tO\ttuples\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\neach\tO\teach\tO\nlevel\tO\tlevel\tO\nof\tO\tof\tO\noperators\tO\toperators\tO\n:\tO\t:\tO\nan\tO\tan\tO\nexpression\tO\texpression\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\noperators\tO\toperators\tO\n,\tO\t,\tO\nan\tO\tan\tO\ninteger\tB-Data_Type\tinteger\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\noperator\tO\toperator\tO\nis\tO\tis\tO\nunary\tO\tunary\tO\n,\tO\t,\tO\nbinary\tO\tbinary\tO\n,\tO\t,\tO\nor\tO\tor\tO\nternary\tO\tternary\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwhether\tO\twhether\tO\nleft\tO\tleft\tO\n-\tO\t-\tO\nor\tO\tor\tO\nright-associative\tO\tright-associative\tO\n.\tO\t.\tO\n\t\noperatorPrecedence\tO\toperatorPrecedence\tO\ntakes\tO\ttakes\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrecursive\tO\trecursive\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\narithmetic\tO\tarithmetic\tO\nexpressions\tO\texpressions\tO\nnested\tO\tnested\tO\nin\tO\tin\tO\nparentheses\tO\tparentheses\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nexpression\tO\texpression\tO\ndefines\tO\tdefines\tO\nbasic\tO\tbasic\tO\n4-function\tO\t4-function\tO\nmath\tO\tmath\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_560\tI-Code_Block\tA_560\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\na\tO\ta\tO\nboolean\tO\tboolean\tO\ncondition\tO\tcondition\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nwe\tO\twe\tO\n'll\tO\t'll\tO\neventually\tO\teventually\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nthe\tO\tthe\tO\ndecision\tO\tdecision\tO\nquestion\tO\tquestion\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_561\tI-Code_Block\tA_561\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYour\tO\tYour\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\nactions\tO\tactions\tO\nwas\tO\twas\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nsketchy\tO\tsketchy\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nup\tO\tup\tO\nsome\tO\tsome\tO\npossible\tO\tpossible\tO\nstatements\tO\tstatements\tO\n:\tO\t:\tO\nan\tO\tan\tO\nassignment\tO\tassignment\tO\nstatement\tO\tstatement\tO\n,\tO\t,\tO\na\tO\ta\tO\nprint\tO\tprint\tB-Code_Block\nstatement\tO\tstatement\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsince\tO\tsince\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nspeech\tO\tspeech\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\na\tO\ta\tO\nsay\tO\tsay\tB-Code_Block\nstatement\tO\tstatement\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nsimliar\tO\tsimliar\tO\nto\tO\tto\tO\nprint\tO\tprint\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_562\tI-Code_Block\tA_562\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\ndefinitions\tO\tdefinitions\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nnotice\tO\tnotice\tO\nthat\tO\tthat\tO\nsome\tO\tsome\tO\nexpressions\tO\texpressions\tO\nare\tO\tare\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\na\tO\ta\tO\nquoted\tO\tquoted\tO\nstring\tB-Data_Type\tstring\tO\n,\tO\t,\tO\nas\tO\tas\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\nis\tO\tis\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\n\"\tO\t\"\tO\ncall\tB-Library_Function\tcall\tO\n\"\tO\t\"\tO\nactually\tO\tactually\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmatched\tO\tmatched\tO\ntokens\tO\ttokens\tO\nare\tO\tare\tO\ntagged\tO\ttagged\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nresults\tO\tresults\tO\nnames\tO\tnames\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\nhelpful\tO\thelpful\tO\nat\tO\tat\tO\npost-parsing\tO\tpost-parsing\tO\ntime\tO\ttime\tO\nat\tO\tat\tO\npicking\tO\tpicking\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nindividual\tO\tindividual\tO\nmatching\tO\tmatching\tO\nelements\tO\telements\tO\n(\tO\t(\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nnamed\tO\tnamed\tO\ngroups\tO\tgroups\tO\nin\tO\tin\tO\nregular\tO\tregular\tO\nexpressions\tO\texpressions\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthese\tO\tthese\tO\npieces\tO\tpieces\tO\ntogether\tO\ttogether\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\ndecision\tO\tdecision\tO\nexpression\tO\texpression\tO\n,\tO\t,\tO\nhere\tO\there\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nand\tO\tand\tO\naction\tO\taction\tO\nexpressions\tO\texpressions\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_563\tI-Code_Block\tA_563\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\naction\tO\taction\tO\ndefinition\tO\tdefinition\tO\ncan\tO\tcan\tO\ninclude\tO\tinclude\tO\na\tO\ta\tO\ndecision\tO\tdecision\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\naction\tO\taction\tO\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\ndecision\tO\tdecision\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbreak\tO\tbreak\tO\nthis\tO\tthis\tO\nchicken-and-egg\tO\tchicken-and-egg\tO\ndependency\tO\tdependency\tO\n,\tO\t,\tO\nwe\tO\twe\tO\npreface\tO\tpreface\tO\nthis\tO\tthis\tO\nsection\tO\tsection\tO\nwith\tO\twith\tO\ndefining\tO\tdefining\tO\ndecision\tO\tdecision\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nwith\tO\twith\tO\na\tO\ta\tO\nplaceholder\tO\tplaceholder\tO\nexpression\tO\texpression\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\npyparsing\tB-Library\tpyparsing\tO\nForward\tB-Library_Class\tForward\tB-Code_Block\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_564\tI-Code_Block\tA_564\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nafter\tO\tafter\tO\nquestion\tB-Variable_Name\tquestion\tB-Code_Block\nand\tO\tand\tO\naction\tB-Variable_Name\taction\tB-Code_Block\nare\tO\tare\tO\ndefined\tO\tdefined\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\n<<\tB-Code_Block\t<<\tO\n'\tO\t'\tO\noperator\tO\toperator\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\ninsert\tO\tinsert\tO\n\"\tO\t\"\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nexpression\tO\texpression\tO\ndefinition\tO\tdefinition\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\ndecision\tB-Variable_Name\tdecision\tB-Code_Block\nvariable\tO\tvariable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_565\tI-Code_Block\tA_565\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAgain\tO\tAgain\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntook\tO\ttook\tO\nliberties\tO\tliberties\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\ndefined\tO\tdefined\tO\nformat\tO\tformat\tO\n,\tO\t,\tO\nthinking\tO\tthinking\tO\nthat\tO\tthat\tO\nan\tO\tan\tO\noptional\tB-Code_Block\toptional\tO\nelse-clause\tI-Code_Block\telse-clause\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\noptional\tO\toptional\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nOptional\tB-Code_Block\tOptional\tB-Code_Block\nwrapper\tO\twrapper\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nGroup(action)(\"elseAction\")\tB-Code_Block\tGroup(action)(\"elseAction\")\tB-Code_Block\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\ndefines\tO\tdefines\tO\nthe\tO\tthe\tO\ngrammar\tO\tgrammar\tO\n,\tO\t,\tO\nnow\tO\tnow\tO\nhere\tO\there\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\ntest\tO\ttest\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\ndump()\tB-Library_Function\tdump()\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nreturned\tO\treturned\tO\nby\tO\tby\tO\nparseString\tB-Library_Function\tparseString\tO\nis\tO\tis\tO\na\tO\ta\tO\nnice\tO\tnice\tO\nway\tO\tway\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\ntokens\tO\ttokens\tO\n,\tO\t,\tO\nand\tO\tand\tO\nany\tO\tany\tO\nnames\tO\tnames\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_566\tI-Code_Block\tA_566\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_567\tI-Code_Block\tA_567\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nparsing\tO\tparsing\tO\nprogram\tO\tprogram\tO\n-\tO\t-\tO\nhttp://pastebin.com/DnaNrx7j\tO\thttp://pastebin.com/DnaNrx7j\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nstage\tO\tstage\tO\n,\tO\t,\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnext\tO\tnext\tO\nstep\tO\tstep\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nevaluating\tO\tevaluating\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\nby\tO\tby\tO\nprocessing\tO\tprocessing\tO\nthe\tO\tthe\tO\nreturned\tO\treturned\tO\ntokens\tO\ttokens\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npyparsing\tB-Library\tpyparsing\tO\nwiki\tO\twiki\tO\nexample\tO\texample\tO\nSimpleBool.py\tB-File_Name\tSimpleBool.py\tO\n(\tO\t(\tO\nhttp://pyparsing.wikispaces.com/file/view/simpleBool.py\tO\thttp://pyparsing.wikispaces.com/file/view/simpleBool.py\tO\n)\tO\t)\tO\nincludes\tO\tincludes\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nattaching\tO\tattaching\tO\nparse\tO\tparse\tO\nactions\tO\tactions\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nparsed\tO\tparsed\tO\ntokens\tO\ttokens\tO\ninto\tO\tinto\tO\ncallable\tO\tcallable\tO\nclass\tO\tclass\tO\ninstances\tO\tinstances\tO\nthat\tO\tthat\tO\nsimplify\tO\tsimplify\tO\nevaluating\tO\tevaluating\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25289254\tO\t25289254\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25289254/\tO\thttps://stackoverflow.com/questions/25289254/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nnoticed\tO\tnoticed\tO\npeople\tO\tpeople\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nlocalize\tO\tlocalize\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2872\tI-Code_Block\tQ_2872\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCould\tO\tCould\tO\nanyone\tO\tanyone\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nCurrentUICulture\tB-Library_Variable\tCurrentUICulture\tB-Code_Block\nand\tO\tand\tO\nCurrentCulture\tB-Library_Variable\tCurrentCulture\tB-Code_Block\nare\tO\tare\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nboth\tO\tboth\tO\n\t\nWhat\tO\tWhat\tO\nwill\tO\twill\tO\nhappen\tO\thappen\tO\nif\tO\tif\tO\nI\tO\tI\tO\nassign\tO\tassign\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nCultureInfo(\"fr-FR\")\tB-Value\tCultureInfo(\"fr-FR\")\tB-Code_Block\n;\tO\t;\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nCurrentUICulture\tB-Library_Variable\tCurrentUICulture\tO\nor\tO\tor\tO\nCurrentCulture\tB-Library_Variable\tCurrentCulture\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nreally\tO\treally\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nin\tO\tin\tO\ndetail\tO\tdetail\tO\nwhat\tO\twhat\tO\nCurrentUICulture\tB-Library_Variable\tCurrentUICulture\tB-Code_Block\nand\tO\tand\tO\nCurrentCulture\tB-Library_Variable\tCurrentCulture\tB-Code_Block\ndoes\tO\tdoes\tO\n?\tO\t?\tO\n\t\nSuppose\tO\tSuppose\tO\nclient\tO\tclient\tO\npc\tB-Device\tpc\tO\nlanguage\tO\tlanguage\tO\nsetting\tO\tsetting\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nGerman\tB-Value\tGerman\tO\nor\tO\tor\tO\nFrench\tB-Value\tFrench\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndevelop\tO\tdevelop\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nwhatever\tO\twhatever\tO\nlanguage\tO\tlanguage\tO\nsetting\tO\tsetting\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\napps\tO\tapps\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\npc\tB-Device\tpc\tO\nwith\tO\twith\tO\ntheir\tO\ttheir\tO\nlanguage\tO\tlanguage\tO\nsetting\tO\tsetting\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmean\tO\tmean\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncontrols\tB-User_Interface_Element\tcontrols\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nin\tO\tin\tO\nGerman\tB-Value\tGerman\tO\nor\tO\tor\tO\nFrench\tB-Value\tFrench\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhard\tO\thard\tO\ncode\tO\tcode\tO\nthe\tO\tthe\tO\nculture\tO\tculture\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nCultureInfo(\"fr-FR\")\tB-Value\tCultureInfo(\"fr-FR\")\tB-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nrather\tO\trather\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nlanguage\tO\tlanguage\tO\nsetting\tO\tsetting\tO\ndictate\tO\tdictate\tO\nthe\tO\tthe\tO\nlanguage\tO\tlanguage\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncontrols\tB-User_Interface_Element\tcontrols\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25289254\tO\t25289254\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25289254/\tO\thttps://stackoverflow.com/questions/25289254/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npretty\tO\tpretty\tO\nsimple\tO\tsimple\tO\n.\tO\t.\tO\n\t\nCurrentCulture\tB-Library_Variable\tCurrentCulture\tB-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nculture\tO\tculture\tO\nassigned\tO\tassigned\tO\nfor\tO\tfor\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\nvarious\tO\tvarious\tO\nculture-specific\tO\tculture-specific\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nToString()\tB-Library_Function\tToString()\tB-Code_Block\none\tO\tone\tO\n.\tO\t.\tO\n\t\nCurrentUICulture\tB-Library_Variable\tCurrentUICulture\tB-Code_Block\nis\tO\tis\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nBy\tO\tBy\tO\nsetting\tO\tsetting\tO\nboth\tO\tboth\tO\nyou\tO\tyou\tO\nensure\tO\tensure\tO\nwhat\tO\twhat\tO\nall\tO\tall\tO\nToString()\tB-Library_Function\tToString()\tB-Code_Block\nworks\tO\tworks\tO\ncorrectly\tO\tcorrectly\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nform\tO\tform\tO\nresources\tO\tresources\tO\nare\tO\tare\tO\nloaded\tO\tloaded\tO\nfrom\tO\tfrom\tO\nappropriate\tO\tappropriate\tO\nsatellite\tO\tsatellite\tO\n.\tO\t.\tO\n\t\nRegarding\tO\tRegarding\tO\nusage\tO\tusage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nthink\tO\tthink\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nuser\tO\tuser\tO\nwith\tO\twith\tO\noption\tO\toption\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnative\tO\tnative\tO\nGerman\tB-Value\tGerman\tO\nwindows\tO\twindows\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nset\tO\tset\tO\nEnglish\tB-Value\tEnglish\tO\nculture\tO\tculture\tO\nin\tO\tin\tO\nit\tO\tit\tO\n(\tO\t(\tO\ndate\tO\tdate\tO\nformat\tO\tformat\tO\nand\tO\tand\tO\ndefault\tO\tdefault\tO\nculture\tO\tculture\tO\nfor\tO\tfor\tO\nconsole\tB-Application\tconsole\tO\napplications\tI-Application\tapplications\tO\n)\tO\t)\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\nspeak\tO\tspeak\tO\nRussian\tO\tRussian\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nlanguage\tO\tlanguage\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nchose\tO\tchose\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nyour\tO\tyour\tO\nsoftware\tO\tsoftware\tO\n?\tO\t?\tO\n\t\n=P\tO\t=P\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\neither\tO\teither\tO\ntake\tO\ttake\tO\nlanguage\tO\tlanguage\tO\nchosen\tO\tchosen\tO\nin\tO\tin\tO\ninstaller\tB-Application\tinstaller\tO\n(\tO\t(\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ninstaller\tB-Application\tinstaller\tO\nin\tO\tin\tO\nmultiple\tO\tmultiple\tO\nlanguages\tO\tlanguages\tO\nand\tO\tand\tO\noptions\tO\toptions\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nthere\tO\tthere\tO\n)\tO\t)\tO\nor\tO\tor\tO\ncurrent\tO\tcurrent\tO\nWindows\tB-Operating_System\tWindows\tO\nuser\tO\tuser\tO\nlanguage\tO\tlanguage\tO\npreferences\tO\tpreferences\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\npossible\tO\tpossible\tO\nscenario\tO\tscenario\tO\n:\tO\t:\tO\n\t\nPreconditions\tO\tPreconditions\tO\n:\tO\t:\tO\napplication\tO\tapplication\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nlocalized\tO\tlocalized\tO\n,\tO\t,\tO\nsatellites\tO\tsatellites\tO\nare\tO\tare\tO\nthere\tO\tthere\tO\n(\tO\t(\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nread\tO\tread\tO\nthis\tO\tthis\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nsatellites\tO\tsatellites\tO\nmyself\tO\tmyself\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\napplication\tO\tapplication\tO\nstarts\tO\tstarts\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\navailable\tO\tavailable\tO\nlanguages\tO\tlanguages\tO\n(\tO\t(\tO\neither\tO\teither\tO\nstatically\tO\tstatically\tO\nor\tO\tor\tO\nby\tO\tby\tO\nenumerating\tO\tenumerating\tO\nsatellites\tO\tsatellites\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3484\tI-Code_Block\tA_3484\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nif\tO\tif\tO\napplication\tO\tapplication\tO\nstart\tO\tstart\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\nto\tO\tto\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nstring\tB-Data_Type\tstring\tB-Code_Block\nlanguage\tO\tlanguage\tI-Code_Block\nsetting\tO\tsetting\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nnull\tB-Value\tnull\tB-Code_Block\nor\tO\tor\tO\n\"\"\tB-Value\t\"\"\tB-Code_Block\n,\tO\t,\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nflag\tO\tflag\tO\nwhat\tO\twhat\tO\nno\tO\tno\tO\nlanguage\tO\tlanguage\tO\nis\tO\tis\tO\nselected\tO\tselected\tO\nyet\tO\tyet\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndetect\tO\tdetect\tO\ndefault\tO\tdefault\tO\nos\tO\tos\tO\nlanguage\tO\tlanguage\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3485\tI-Code_Block\tA_3485\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nset\tO\tset\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3486\tI-Code_Block\tA_3486\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nlanguage\tO\tlanguage\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\ndefault\tO\tdefault\tO\n\"\tO\t\"\tO\nlanguage\tO\tlanguage\tO\n(\tO\t(\tO\nto\tO\tto\tO\nexample\tO\texample\tO\n,\tO\t,\tO\n\"\tB-Value\t\"\tO\nen\tI-Value\ten\tO\n\"\tI-Value\t\"\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nits\tO\tits\tO\ndone\tO\tdone\tO\nat\tO\tat\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nany\tO\tany\tO\nfurther\tO\tfurther\tO\nconstructed\tO\tconstructed\tO\nand\tO\tand\tO\nused\tO\tused\tO\nwindow\tO\twindow\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nproper\tO\tproper\tO\nresources\tO\tresources\tO\n.\tO\t.\tO\n\t\nUser\tO\tUser\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nGive\tO\tGive\tO\nhim\tO\thim\tO\npossibility\tO\tpossibility\tO\nto\tO\tto\tO\nchose\tO\tchose\tO\none\tO\tone\tO\nof\tO\tof\tO\navailable\tO\tavailable\tO\nLanguages\tO\tLanguages\tB-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nwinforms\tO\twinforms\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nreload\tO\treload\tO\nforms\tO\tforms\tO\nafter\tO\tafter\tO\nchange\tO\tchange\tO\nculture\tO\tculture\tO\n.\tO\t.\tO\n\t\nEasiest\tO\tEasiest\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\ntell\tO\ttell\tO\nuser\tO\tuser\tO\nwhat\tO\twhat\tO\n\"\tO\t\"\tO\nsoftware\tO\tsoftware\tO\nrestart\tO\trestart\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17357014\tO\t17357014\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17357014/\tO\thttps://stackoverflow.com/questions/17357014/\tO\n\t\n\t\nNewbie\tO\tNewbie\tO\nRails\tB-Library\tRails\tO\ncoder\tO\tcoder\tO\nhere\tO\there\tO\n...\tO\t...\tO\n.\tO\t.\tO\nspent\tO\tspent\tO\nway\tO\tway\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\ntime\tO\ttime\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nthis\tO\tthis\tO\none\tO\tone\tO\nout\tO\tout\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nscript\tO\tscript\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ndev\tO\tdev\tO\nmachine\tO\tmachine\tO\nbut\tO\tbut\tO\nfails\tO\tfails\tO\nin\tO\tin\tO\nproduction\tO\tproduction\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthis\tO\tthis\tO\nscript\tO\tscript\tO\nfails\tO\tfails\tO\n-\tO\t-\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncheck\tO\tcheck\tO\n/tmp\tB-File_Name\t/tmp\tO\nfolder\tO\tfolder\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nmini_magick20130627-17452-1k48fim.png\tB-File_Name\tmini_magick20130627-17452-1k48fim.png\tO\n\"\tO\t\"\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nImageMagick\tB-Application\tImageMagick\tO\nconvert\tO\tconvert\tO\nand\tO\tand\tO\nresize\tO\tresize\tO\nalso\tO\talso\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1760\tI-Code_Block\tQ_1760\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nErrno::ENOENT\tB-Error_Name\tErrno::ENOENT\tO\nin\tO\tin\tO\nSitesController\tO\tSitesController\tO\n#create\tO\t#create\tO\n\t\nNo\tO\tNo\tO\nsuch\tO\tsuch\tO\nfile\tO\tfile\tO\nor\tO\tor\tO\ndirectory\tO\tdirectory\tO\n-\tO\t-\tO\nidentify\tO\tidentify\tO\n-quiet\tO\t-quiet\tO\n-ping\tO\t-ping\tO\n/tmp/mini_magick20130627\tB-File_Name\t/tmp/mini_magick20130627\tO\n-17452-1k48fim.png\tI-File_Name\t-17452-1k48fim.png\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17357014\tO\t17357014\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17357014/\tO\thttps://stackoverflow.com/questions/17357014/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nanother\tO\tanother\tO\nanswer\tO\tanswer\tO\nwhich\tO\twhich\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\ndevelopment.rb\tB-File_Name\tdevelopment.rb\tO\n(\tO\t(\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nwith\tO\twith\tO\npassenger\tB-Application\tpassenger\tO\n)\tO\t)\tO\nand\tO\tand\tO\nproduction.rb\tB-File_Name\tproduction.rb\tO\n\t\nadd\tO\tadd\tO\nto\tO\tto\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2803\tI-Code_Block\tA_2803\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGot\tO\tGot\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nreference\tO\treference\tO\n:\tO\t:\tO\nPassenger\tB-Application\tPassenger\tO\n+\tO\t+\tO\nCarrierwave\tB-Application\tCarrierwave\tO\n+\tO\t+\tO\nRails\tB-Library\tRails\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17357014\tO\t17357014\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17357014/\tO\thttps://stackoverflow.com/questions/17357014/\tO\n\t\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nanswer\tO\tanswer\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nquestion\tO\tquestion\tO\nsince\tO\tsince\tO\nsomeone\tO\tsomeone\tO\nelse\tO\telse\tO\nmay\tO\tmay\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nissue\tO\tissue\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nPhusion\tB-Application\tPhusion\tO\nPassenger\tI-Application\tPassenger\tO\n(\tO\t(\tO\nunder\tO\tunder\tO\nApache\tB-Application\tApache\tO\n)\tO\t)\tO\nhandles\tO\thandles\tO\nenvironment\tO\tenvironment\tO\nvars\tO\tvars\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nApache\tB-Application\tApache\tO\n+\tO\t+\tO\nPhusion\tB-Application\tPhusion\tO\nPassenger\tI-Application\tPassenger\tO\nserver\tI-Application\tserver\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nresolved\tO\tresolved\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nby\tO\tby\tO\nplacing\tO\tplacing\tO\nthe\tO\tthe\tO\nImageMagick\tB-Application\tImageMagick\tO\npath\tO\tpath\tO\nvars\tO\tvars\tO\ninto\tO\tinto\tO\nmy\tO\tmy\tO\napache\tB-Application\tapache\tO\nhttpd-vhosts.conf\tB-File_Name\thttpd-vhosts.conf\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2282\tI-Code_Block\tA_2282\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMore\tO\tMore\tO\ninfo\tO\tinfo\tO\navailable\tO\tavailable\tO\nhere\tO\there\tO\n-\tO\t-\tO\n\t\nFrom\tO\tFrom\tO\n:\tO\t:\tO\nhttp://blog.phusion.nl/2008/12/16/passing-environment-variables-to-ruby-from-phusion-passenger/\tO\thttp://blog.phusion.nl/2008/12/16/passing-environment-variables-to-ruby-from-phusion-passenger/\tO\n\t\nBut\tO\tBut\tO\nwait\tO\twait\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nalready\tO\talready\tO\nset\tO\tset\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\n/etc/bashrc\tB-File_Name\t/etc/bashrc\tO\nor\tO\tor\tO\n/etc/profile\tB-File_Name\t/etc/profile\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthey\tO\tthey\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nset\tO\tset\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\n/etc/bashrc\tB-File_Name\t/etc/bashrc\tO\nor\tO\tor\tO\n/etc/profile\tB-File_Name\t/etc/profile\tO\n,\tI-File_Name\t,\tO\nthen\tO\tthen\tO\nthese\tO\tthese\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nare\tO\tare\tO\nmade\tO\tmade\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nshell\tB-Application\tshell\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\non\tO\ton\tO\nmost\tO\tmost\tO\noperating\tO\toperating\tO\nsystems\tO\tsystems\tO\n,\tO\t,\tO\nApache\tB-Application\tApache\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nstarted\tO\tstarted\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nshell\tB-Application\tshell\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nload\tO\tload\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nbashrc/profile\tB-File_Name\tbashrc/profile\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nsetting\tO\tsetting\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nin\tO\tin\tO\n/etc/bashrc\tB-File_Name\t/etc/bashrc\tO\nand\tO\tand\tO\n/etc/profile\tB-File_Name\t/etc/profile\tO\nusually\tO\tusually\tO\nhas\tO\thas\tO\nno\tO\tno\tO\neffect\tO\teffect\tO\non\tO\ton\tO\nApache\tB-Application\tApache\tO\n(\tO\t(\tO\nand\tO\tand\tO\nby\tO\tby\tO\ninduction\tO\tinduction\tO\n,\tO\t,\tO\non\tO\ton\tO\nPassenger\tB-Application\tPassenger\tO\nand\tO\tand\tO\nRails\tB-Library\tRails\tO\nprocesses\tO\tprocesses\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40373238\tO\t40373238\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40373238/\tO\thttps://stackoverflow.com/questions/40373238/\tO\n\t\n\t\nin\tO\tin\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nin\tO\tin\tO\nchrome\tB-Application\tchrome\tO\nit\tO\tit\tO\nis\tO\tis\tO\nshowing\tO\tshowing\tO\nwrong\tO\twrong\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nexplorer\tB-Application\texplorer\tO\nit\tO\tit\tO\nis\tO\tis\tO\nshowing\tO\tshowing\tO\ntrue\tO\ttrue\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ni\tO\ti\tO\nwrite\tO\twrite\tO\nthis\tO\tthis\tO\njs\tB-Language\tjs\tO\ncode\tO\tcode\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\ndoesnt\tO\tdoesnt\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\njs\tB-Language\tjs\tO\n;\tO\t;\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5100\tI-Code_Block\tQ_5100\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n;\tO\t;\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5101\tI-Code_Block\tQ_5101\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40373238\tO\t40373238\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40373238/\tO\thttps://stackoverflow.com/questions/40373238/\tO\n\t\n\t\nPass\tO\tPass\tO\nParameter\tO\tParameter\tO\nValue\tO\tValue\tO\nin\tO\tin\tO\nnot\tO\tnot\tO\nproper\tO\tproper\tO\nDate\tO\tDate\tO\nFormat\tO\tFormat\tO\n\t\nUse\tO\tUse\tO\nprocessDate.getFullYear()==>\tB-Code_Block\tprocessDate.getFullYear()==>\tB-Code_Block\nprocessDate.getFullYear().toDateString()\tI-Code_Block\tprocessDate.getFullYear().toDateString()\tI-Code_Block\ndate\tO\tdate\tO\ndata\tO\tdata\tO\nconvert\tO\tconvert\tO\ninto\tO\tinto\tO\nString\tB-Data_Type\tString\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40373238\tO\t40373238\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40373238/\tO\thttps://stackoverflow.com/questions/40373238/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5838\tI-Code_Block\tA_5838\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nplease\tO\tplease\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36664025\tO\t36664025\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36664025/\tO\thttps://stackoverflow.com/questions/36664025/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\nif\tO\tif\tO\nstatement\tO\tstatement\tO\nin\tO\tin\tO\nJS\tB-Language\tJS\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ndependent\tO\tdependent\tO\non\tO\ton\tO\ncharacter\tO\tcharacter\tO\ncount\tO\tcount\tO\nin\tO\tin\tO\nan\tO\tan\tO\nhtml\tB-Language\thtml\tO\ninput\tO\tinput\tO\nfield\tO\tfield\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\ngreater\tO\tgreater\tO\nthan\tO\tthan\tO\n0\tB-Value\t0\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfield\tO\tfield\tO\nthen\tO\tthen\tO\ncss\tB-Language\tcss\tO\nattributes\tO\tattributes\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nfield\tO\tfield\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36664025\tO\t36664025\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36664025/\tO\thttps://stackoverflow.com/questions/36664025/\tO\n\t\n\t\nAnd\tO\tAnd\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nanswers\tO\tanswers\tO\n,\tO\t,\tO\nnow\tO\tnow\tO\none\tO\tone\tO\nanswer\tO\tanswer\tO\nthat\tO\tthat\tO\nevaluates\tO\tevaluates\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nloses\tO\tloses\tO\nfocus\tO\tfocus\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5251\tI-Code_Block\tQ_5251\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n<input\tB-Code_Block\t<input\tB-Code_Block\nid=\"txt\"\tI-Code_Block\tid=\"txt\"\tI-Code_Block\nonchange=\"inputChange(this.value)\"\tI-Code_Block\tonchange=\"inputChange(this.value)\"\tI-Code_Block\n/>\tI-Code_Block\t/>\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36664025\tO\t36664025\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36664025/\tO\thttps://stackoverflow.com/questions/36664025/\tO\n\t\n\t\nDepending\tO\tDepending\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nhappen\tO\thappen\tO\non\tO\ton\tO\npage\tB-User_Interface_Element\tpage\tO\nload\tO\tload\tO\nor\tO\tor\tO\nchecking\tO\tchecking\tO\nwhile\tO\twhile\tO\nsomething\tO\tsomething\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\npage\tO\tpage\tO\nload\tO\tload\tO\ncheck\tO\tcheck\tO\n@gurvinder372\tB-User_Name\t@gurvinder372\tO\nanswer\tO\tanswer\tO\nelse\tO\telse\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nonkeyup\tB-Code_Block\tonkeyup\tB-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfield\tO\tfield\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5250\tI-Code_Block\tQ_5250\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n<input\tB-Code_Block\t<input\tB-Code_Block\ntype=\"text\"\tI-Code_Block\ttype=\"text\"\tI-Code_Block\nid=\"input\">\tI-Code_Block\tid=\"input\">\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39226277\tO\t39226277\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39226277/\tO\thttps://stackoverflow.com/questions/39226277/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncollapsible\tB-User_Interface_Element\tcollapsible\tO\nforce\tI-User_Interface_Element\tforce\tO\ndiagram\tI-User_Interface_Element\tdiagram\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncollapsed\tO\tcollapsed\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n(\tO\t(\tO\nstarting\tO\tstarting\tO\nout\tO\tout\tO\nwith\tO\twith\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nnode\tO\tnode\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nran\tO\tran\tO\nacross\tO\tacross\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nhttp://bl.ocks.org/david4096/6168323\tO\thttp://bl.ocks.org/david4096/6168323\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nblank\tO\tblank\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nMozilla\tB-Application\tMozilla\tO\nFirefox\tI-Application\tFirefox\tO\n43.0.4\tB-Version\t43.0.4\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\neven\tO\teven\tO\nput\tO\tput\tO\nit\tO\tit\tO\nto\tO\tto\tO\nplunker\tB-Application\tplunker\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nresult\tO\tresult\tO\n-\tO\t-\tO\nblank\tO\tblank\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nidentify\tO\tidentify\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\nwould\tO\twould\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nit\tO\tit\tO\npartially\tO\tpartially\tO\ncollpased\tO\tcollpased\tO\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nmeans\tO\tmeans\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nset\tO\tset\tO\nof\tO\tof\tO\nchildren\tO\tchildren\tO\nexpanded\tO\texpanded\tO\nbut\tO\tbut\tO\neverything\tO\teverything\tO\nelse\tO\telse\tO\ncollapsed\tO\tcollapsed\tO\n?\tO\t?\tO\n\t\nMy\tO\tMy\tO\nnon-working\tO\tnon-working\tO\nexample\tO\texample\tO\non\tO\ton\tO\nplunker\tB-Application\tplunker\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33226129\tO\t33226129\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33226129/\tO\thttps://stackoverflow.com/questions/33226129/\tO\n\t\n\t\nI\tO\tI\tO\nwrote\tO\twrote\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4030\tI-Code_Block\tQ_4030\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\ngetAllNetworkInfo()\tB-Library_Function\tgetAllNetworkInfo()\tO\nis\tO\tis\tO\ndeprecated\tO\tdeprecated\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33226129\tO\t33226129\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33226129/\tO\thttps://stackoverflow.com/questions/33226129/\tO\n\t\n\t\nas\tO\tas\tO\nthe\tO\tthe\tO\ndocs\tO\tdocs\tO\nsay\tO\tsay\tO\n:\tO\t:\tO\n\t\ngetAllNetworkInfo()\tB-Library_Function\tgetAllNetworkInfo()\tB-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ngetActiveNetworkInfo()\tB-Library_Function\tgetActiveNetworkInfo()\tB-Code_Block\n:\tO\t:\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4727\tI-Code_Block\tA_4727\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33226129\tO\t33226129\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33226129/\tO\thttps://stackoverflow.com/questions/33226129/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5521\tI-Code_Block\tA_5521\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\nfor\tO\tfor\tO\ndetecting\tO\tdetecting\tO\ninternet\tO\tinternet\tO\nconnection\tO\tconnection\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25744401\tO\t25744401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25744401/\tO\thttps://stackoverflow.com/questions/25744401/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nautomatically\tO\tautomatically\tO\ntitle\tO\ttitle\tO\nplots\tB-User_Interface_Element\tplots\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nplotted\tO\tplotted\tO\n\t\nso\tO\tso\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nintance\tO\tintance\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nplot\tO\tplot\tO\nsupermatrix(5:10,:,2:3)\tB-Library_Function\tsupermatrix(5:10,:,2:3)\tO\n\t\nthe\tO\tthe\tO\ntitle\tO\ttitle\tO\n(\tO\t(\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nlegend\tO\tlegend\tO\n.\tO\t.\tO\n.\tO\t.\tO\n)\tO\t)\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nplot\tB-User_Interface_Element\tplot\tO\nsays\tO\tsays\tO\n\"supermatrix(5:10,:,2:3)\"\tB-Value\t\"supermatrix(5:10,:,2:3)\"\tO\n\t\nthanks\tO\tthanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25744401\tO\t25744401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25744401/\tO\thttps://stackoverflow.com/questions/25744401/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nmodified\tO\tmodified\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\ndfig\tB-Function_Name\tdfig\tB-Code_Block\noriginally\tO\toriginally\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\nF.Moisy\tB-User_Name\tF.Moisy\tO\nfor\tO\tfor\tO\ncreating\tO\tcreating\tO\ndocked\tO\tdocked\tO\nfigures\tB-User_Interface_Element\tfigures\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nplotting\tO\tplotting\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfigure\tB-User_Interface_Element\tfigure\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nidea\tO\tidea\tO\nis\tO\tis\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ncommand\tO\tcommand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nhistory\tO\thistory\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nfigure\tB-User_Interface_Element\tfigure\tO\ntitle\tO\ttitle\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3562\tI-Code_Block\tA_3562\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25744401\tO\t25744401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25744401/\tO\thttps://stackoverflow.com/questions/25744401/\tO\n\t\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\ndebugging\tO\tdebugging\tO\npurposes\tO\tpurposes\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nyou\tO\tyou\tO\ntell\tO\ttell\tO\nus\tO\tus\tO\nyour\tO\tyour\tO\noverall\tO\toverall\tO\nmotivation\tO\tmotivation\tO\nbecause\tO\tbecause\tO\nsomeone\tO\tsomeone\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsuggest\tO\tsuggest\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nrobust\tO\trobust\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nmight\tO\tmight\tO\nget\tO\tget\tO\nyou\tO\tyou\tO\nstarted\tO\tstarted\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3547\tI-Code_Block\tA_3547\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlthough\tO\tAlthough\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nhonest\tO\thonest\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nimagine\tO\timagine\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\never\tO\tever\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42663484\tO\t42663484\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42663484/\tO\thttps://stackoverflow.com/questions/42663484/\tO\n\t\n\t\nI\tO\tI\tO\nfollowed\tO\tfollowed\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nPrint\tO\tPrint\tO\nin\tO\tin\tO\nandroid\tB-Operating_System\tandroid\tO\n(\tO\t(\tO\nThermal\tB-Device\tThermal\tO\nPrinter\tI-Device\tPrinter\tO\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nMy\tO\tMy\tO\nweb-view\tB-Application\tweb-view\tO\nOver\tO\tOver\tO\nthere\tO\tthere\tO\nOn-click\tB-Function_Name\tOn-click\tO\nIt\tO\tIt\tO\nwill\tO\twill\tO\nLoad\tO\tLoad\tO\nMy\tO\tMy\tO\nAndroid\tB-Operating_System\tAndroid\tO\nActivity\tB-Application\tActivity\tO\nWhich\tO\tWhich\tO\nis\tO\tis\tO\nOut\tO\tOut\tO\nof\tO\tof\tO\nview\tB-Application\tview\tO\n..\tI-Application\t..\tO\n.\tI-Application\t.\tO\n\t\nFor\tO\tFor\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nGiven\tO\tGiven\tO\nthis\tO\tthis\tO\n..\tO\t..\tO\n.\tO\t.\tO\nto\tO\tto\tO\nOpen\tO\tOpen\tO\nnew\tO\tnew\tO\nactivity\tB-Application\tactivity\tO\nfrom\tO\tfrom\tO\nweb-view.\tB-Application\tweb-view.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5436\tI-Code_Block\tQ_5436\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nMy\tO\tMy\tO\nprinter\tB-Device\tprinter\tO\nActivity\tB-Library_Class\tActivity\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nFine\tO\tFine\tO\nSo\tO\tSo\tO\nhere\tO\there\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\npass\tO\tpass\tO\na\tO\ta\tO\nValue\tO\tValue\tO\nOn\tB-Function_Name\tOn\tO\nclick\tI-Function_Name\tclick\tO\nButton\tB-User_Interface_Element\tButton\tO\nWhich\tO\tWhich\tO\nOpens\tO\tOpens\tO\nPrinter\tB-Application\tPrinter\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ncan\tO\tcan\tO\nAny\tO\tAny\tO\none\tO\tone\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nReceive\tO\tReceive\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nandroid\tB-Operating_System\tandroid\tO\nActivity\tB-Library_Class\tActivity\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nweb-view.\tB-Library_Class\tweb-view.\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nweb-view\tB-Application\tweb-view\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nButton\tB-User_Interface_Element\tButton\tO\nits\tO\tits\tO\nloading\tO\tloading\tO\nAndroid\tB-Operating_System\tAndroid\tO\nActivity\tB-Application\tActivity\tO\nAlong\tO\tAlong\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nPass\tO\tPass\tO\nA\tO\tA\tO\nstring\tB-Data_Type\tstring\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nnew\tO\tnew\tO\nActivity\tB-Library_Class\tActivity\tO\n\t\nWhy\tO\tWhy\tO\nShould\tO\tShould\tO\nI\tO\tI\tO\npass\tO\tpass\tO\nValue\tO\tValue\tO\nmeans\tO\tmeans\tO\nIn\tO\tIn\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nUrl\tO\tUrl\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nPrint\tO\tPrint\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nURL\tO\tURL\tO\n\t\nHere\tO\tHere\tO\nJS\tB-Language\tJS\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\ndifferent\tO\tdifferent\tO\nform\tO\tform\tO\ncurrent\tO\tcurrent\tO\nURL\tO\tURL\tO\n\t\nUpdate\tO\tUpdate\tO\n\t\nI\tO\tI\tO\nfollowed\tO\tfollowed\tO\nthis\tO\tthis\tO\nBut\tO\tBut\tO\nits\tO\tits\tO\nInside\tO\tInside\tO\nthe\tO\tthe\tO\nWeb-view\tB-Class_Name\tWeb-view\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nsame\tO\tsame\tO\nat\tO\tat\tO\nOutside\tO\tOutside\tO\nthe\tO\tthe\tO\nweb-view.\tB-Class_Name\tweb-view.\tO\n.\tO\t.\tO\n\t\nMeans\tO\tMeans\tO\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nweb-view\tB-Application\tweb-view\tO\nIts\tO\tIts\tO\nopening\tO\topening\tO\nandroid\tB-Operating_System\tandroid\tO\nactivity\tB-Application\tactivity\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nits\tO\tits\tO\nshould\tO\tshould\tO\npass\tO\tpass\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nactivity\tB-Library_Class\tactivity\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nweb-view\tB-Class_Name\tweb-view\tO\n\t\nUpdate\tO\tUpdate\tO\n1\tO\t1\tO\n\t\nI\tO\tI\tO\nfollowed\tO\tfollowed\tO\n@Sujal\tB-User_Name\t@Sujal\tO\nMandal\tI-User_Name\tMandal\tO\nanswer\tO\tanswer\tO\nBut\tO\tBut\tO\nI\tO\tI\tO\ndont\tO\tdont\tO\nKnow\tO\tKnow\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nValue\tO\tValue\tO\nIn\tO\tIn\tO\nnext\tO\tnext\tO\nactivity\tB-Library_Class\tactivity\tO\nCan\tO\tCan\tO\nany\tO\tany\tO\none\tO\tone\tO\nsuggest\tO\tsuggest\tO\nme.\tO\tme.\tO\n.\tO\t.\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nkind.\tO\tkind.\tO\n.\tO\t.\tO\nin\tO\tin\tO\nnext\tO\tnext\tO\nactivity\tO\tactivity\tO\nIt\tO\tIt\tO\nmay\tO\tmay\tO\nin\tO\tin\tO\nSystem.out.println\tB-Library_Function\tSystem.out.println\tB-Code_Block\nor\tO\tor\tO\ntext-view\tB-User_Interface_Element\ttext-view\tB-Code_Block\nor\tO\tor\tO\nany\tO\tany\tO\nother\tO\tother\tO\nstring\tB-Data_Type\tstring\tB-Code_Block\nSo\tO\tSo\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ncan\tO\tcan\tO\nAny\tO\tAny\tO\none\tO\tone\tO\nsuggest\tO\tsuggest\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nUse\tO\tUse\tO\nthe\tO\tthe\tO\nJavaScript\tB-Language\tJavaScript\tO\nValue\tO\tValue\tO\nin\tO\tin\tO\nother\tO\tother\tO\nactivity\tB-Library_Class\tactivity\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nweb-view\tB-Class_Name\tweb-view\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42663484\tO\t42663484\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42663484/\tO\thttps://stackoverflow.com/questions/42663484/\tO\n\t\n\t\nHTML\tB-Language\tHTML\tO\nJS\tI-Language\tJS\tO\nCODE\tO\tCODE\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6159\tI-Code_Block\tA_6159\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n&\tO\t&\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\nandroid\tB-Language\tandroid\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6160\tI-Code_Block\tA_6160\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nnext\tO\tnext\tO\nactivity\tO\tactivity\tO\nreceive\tO\treceive\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nJS\tB-Language\tJS\tO\nresponse\tO\tresponse\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\n\t\nString\tB-Code_Block\tString\tB-Code_Block\ndata\tI-Code_Block\tdata\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\ngetIntent().getStringExtra(\"STRING_DATA\")\tI-Code_Block\tgetIntent().getStringExtra(\"STRING_DATA\")\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nat\tO\tat\tO\noncreate\tB-Library_Function\toncreate\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39257708\tO\t39257708\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39257708/\tO\thttps://stackoverflow.com/questions/39257708/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nHTML\tB-File_Type\tHTML\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\n2\tO\t2\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\n,\tO\t,\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nare\tO\tare\tO\n15\tB-Value\t15\tO\nx\tI-Value\tx\tO\n15px\tI-Value\t15px\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nred\tB-Value\tred\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nothers\tO\tothers\tO\ngreen\tB-Value\tgreen\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\neliminate\tO\teliminate\tO\nthat\tO\tthat\tO\nwhite\tO\twhite\tO\nspace\tO\tspace\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\npadding\tB-Code_Block\tpadding\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n2px\tI-Code_Block\t2px\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nspace\tO\tspace\tO\nafter\tO\tafter\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ndivs\tO\tdivs\tO\nare\tO\tare\tO\ngetting\tO\tgetting\tO\nbigger\tO\tbigger\tO\nthan\tO\tthan\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nget\tO\tget\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nspace\tO\tspace\tO\n,\tO\t,\tO\nkeeping\tO\tkeeping\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n(\tO\t(\tO\n15\tB-Value\t15\tO\nx\tI-Value\tx\tO\n15px\tI-Value\t15px\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4948\tI-Code_Block\tQ_4948\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4949\tI-Code_Block\tQ_4949\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48447936\tO\t48447936\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48447936/\tO\thttps://stackoverflow.com/questions/48447936/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndeveloping\tO\tdeveloping\tO\nan\tO\tan\tO\nangular5\tB-Library\tangular5\tO\nfront\tO\tfront\tO\nend\tO\tend\tO\nand\tO\tand\tO\nasp.net\tB-Library\tasp.net\tO\ncore\tO\tcore\tO\n2.0\tB-Version\t2.0\tO\nweb\tO\tweb\tO\napi\tO\tapi\tO\napplication\tO\tapplication\tO\nusing\tO\tusing\tO\nVisual\tB-Application\tVisual\tO\nstudio\tI-Application\tstudio\tO\n2017\tB-Version\t2017\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\napplication\tO\tapplication\tO\nis\tO\tis\tO\nauthenticating\tO\tauthenticating\tO\nusers\tO\tusers\tO\nusing\tO\tusing\tO\nazure\tB-Application\tazure\tO\nAD\tO\tAD\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nAzure\tB-Application\tAzure\tO\nAD\tO\tAD\tO\nusers\tO\tusers\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nother\tO\tother\tO\nAzure\tB-Application\tAzure\tO\nAD\tO\tAD\tO\nusers\tO\tusers\tO\nhave\tO\thave\tO\nno\tO\tno\tO\naccess\tO\taccess\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwarn\tO\twarn\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nwith\tO\twith\tO\nno\tO\tno\tO\naccess\tO\taccess\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nlogin\tO\tlogin\tO\nin\tO\tin\tO\n(\tO\t(\tO\nIf\tO\tIf\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nno\tO\tno\tO\ngroups\tO\tgroups\tO\nor\tO\tor\tO\nroles\tO\troles\tO\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nat\tO\tat\tO\nazure\tB-Application\tazure\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nBasically\tO\tBasically\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\nuser\tO\tuser\tO\nbelong\tO\tbelong\tO\nto\tO\tto\tO\ncertain\tO\tcertain\tO\nAzure\tB-Application\tAzure\tO\nAD\tO\tAD\tO\ngroup\tO\tgroup\tO\nor\tO\tor\tO\nRoles\tO\tRoles\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35585021\tO\t35585021\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35585021/\tO\thttps://stackoverflow.com/questions/35585021/\tO\n\t\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nguide\tO\tguide\tO\nor\tO\tor\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nJSON\tB-File_Type\tJSON\tO\nresponse\tO\tresponse\tO\nand\tO\tand\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nserializeable\tO\tserializeable\tO\nclass\tO\tclass\tO\nor\tO\tor\tO\ncontract\tO\tcontract\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\nfiguring\tO\tfiguring\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\ncontract\tO\tcontract\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nmoderately\tO\tmoderately\tO\nsized\tO\tsized\tO\nJSON\tB-File_Type\tJSON\tO\ntype\tO\ttype\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\njson\tB-File_Type\tjson\tO\nresponse\tO\tresponse\tO\nhas\tO\thas\tO\nsub\tO\tsub\tO\ntypes\tO\ttypes\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4353\tI-Code_Block\tQ_4353\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35585021\tO\t35585021\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35585021/\tO\thttps://stackoverflow.com/questions/35585021/\tO\n\t\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nhttp://json2csharp.com/\tO\thttp://json2csharp.com/\tO\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nbefore\tO\tbefore\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nexample\tO\texample\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalways\tO\talways\tO\ndesign\tO\tdesign\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nthat\tO\tthat\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\njson\tB-File_Type\tjson\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nmuch\tO\tmuch\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nmodel\tO\tmodel\tO\ndesign\tO\tdesign\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nc#\tB-Language\tc#\tO\nmodel\tO\tmodel\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\njson\tB-File_Type\tjson\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nwebsite\tO\twebsite\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\n:\tO\t:\tO\nhttp://json2csharp.com\tO\thttp://json2csharp.com\tO\n\t\nA\tO\tA\tO\ncomplete\tO\tcomplete\tO\nexample\tO\texample\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nC#\tB-Language\tC#\tO\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5073\tI-Code_Block\tA_5073\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJSON\tB-File_Type\tJSON\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5074\tI-Code_Block\tA_5074\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nModel\tO\tModel\tO\nGenerated\tO\tGenerated\tO\nautomatically\tO\tautomatically\tO\nusing\tO\tusing\tO\nhttp://json2csharp.com/\tO\thttp://json2csharp.com/\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5075\tI-Code_Block\tA_5075\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthis\tO\tthis\tO\ncomplete\tO\tcomplete\tO\nexample\tO\texample\tO\nhelps\tO\thelps\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nday\tO\tday\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7156650\tO\t7156650\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7156650/\tO\thttps://stackoverflow.com/questions/7156650/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable\tB-User_Interface_Element\ttable\tO\nwith\tO\twith\tO\nplayers\tO\tplayers\tO\nand\tO\tand\tO\nscores\tO\tscores\tO\n(\tO\t(\tO\nName:Mike\tB-Value\tName:Mike\tO\nScore:10\tI-Value\tScore:10\tO\n,\tO\t,\tO\nName:Peter\tB-Value\tName:Peter\tO\nScore:5\tI-Value\tScore:5\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n)\tO\t)\tO\nand\tO\tand\tO\na\tO\ta\tO\nView\tO\tView\tO\nwith\tO\twith\tO\n3\tO\t3\tO\npictures\tB-User_Interface_Element\tpictures\tO\nof\tO\tof\tO\na\tO\ta\tO\nbronze\tB-Value\tbronze\tO\n,\tO\t,\tO\nsilver\tB-Value\tsilver\tO\nand\tO\tand\tO\ngold\tB-Value\tgold\tO\nmedal\tO\tmedal\tO\n.\tO\t.\tO\n\t\nUnderneath\tO\tUnderneath\tO\neach\tO\teach\tO\npicture\tB-User_Interface_Element\tpicture\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nplayername(s)\tO\tplayername(s)\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwinners\tO\twinners\tO\neach\tO\teach\tO\nweek\tO\tweek\tO\n/\tO\t/\tO\nround\tO\tround\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nwell\tO\twell\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmultiple\tO\tmultiple\tO\nbronze\tO\tbronze\tO\n,\tO\t,\tO\nsilver\tO\tsilver\tO\nor\tO\tor\tO\ngold\tO\tgold\tO\nscores\tO\tscores\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nTotalViewModel\tB-Class_Name\tTotalViewModel\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nObservableCollection\tB-Library_Class\tObservableCollection\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nTotal\tO\tTotal\tO\nScores\tO\tScores\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_550\tI-Code_Block\tQ_550\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nIEnumerable\tB-Library_Class\tIEnumerable\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmultiple\tO\tmultiple\tO\nnumbers\tO\tnumbers\tO\none\tO\tone\tO\n,\tO\t,\tO\ntwo\tO\ttwo\tO\n,\tO\t,\tO\nthree\tO\tthree\tO\nscore\tO\tscore\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_551\tI-Code_Block\tQ_551\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nDataContext\tB-Library_Class\tDataContext\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nView\tO\tView\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nstraightforward\tO\tstraightforward\tO\nbindings\tO\tbindings\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nset\tO\tset\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUserControl\tB-Library_Class\tUserControl\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_552\tI-Code_Block\tQ_552\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\ndisplayed\tO\tdisplayed\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nDataGrid\tB-Library_Class\tDataGrid\tO\n(\tO\t(\tO\nguess\tO\tguess\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nstupid\tO\tstupid\tO\nmistake\tO\tmistake\tO\nhere\tO\there\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_553\tI-Code_Block\tQ_553\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\nquestions\tO\tquestions\tO\n:\tO\t:\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nnumber\tO\tnumber\tO\n1/2/3\tO\t1/2/3\tO\nscores\tO\tscores\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nView\tO\tView\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7156650\tO\t7156650\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7156650/\tO\thttps://stackoverflow.com/questions/7156650/\tO\n\t\n\t\nWell\tO\tWell\tO\nI\tO\tI\tO\nwont\tO\twont\tO\nget\tO\tget\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nbinding\tO\tbinding\tO\nbit\tO\tbit\tO\nbut\tO\tbut\tO\na\tO\ta\tO\nlinq\tB-Library\tlinq\tO\nquery\tO\tquery\tO\nto\tO\tto\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nthree\tO\tthree\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_818\tI-Code_Block\tA_818\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7156650\tO\t7156650\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7156650/\tO\thttps://stackoverflow.com/questions/7156650/\tO\n\t\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nbinding\tO\tbinding\tO\nto\tO\tto\tO\nFirstOne\tB-Class_Name\tFirstOne\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\npropertychanged\tB-Library_Function\tpropertychanged\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_817\tI-Code_Block\tA_817\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39852545\tO\t39852545\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39852545/\tO\thttps://stackoverflow.com/questions/39852545/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nprogram\tO\tprogram\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5030\tI-Code_Block\tQ_5030\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nfails\tO\tfails\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\non\tO\ton\tO\nboth\tO\tboth\tO\ng++\tB-Application\tg++\tO\n5.4\tB-Version\t5.4\tO\nand\tO\tand\tO\nclang\tB-Application\tclang\tO\n3.8\tB-Version\t3.8\tO\n(\tO\t(\tO\nUbuntu\tB-Operating_System\tUbuntu\tO\n64-bit\tB-Version\t64-bit\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\ng++\tB-Application\tg++\tO\noutput\tO\toutput\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5031\tI-Code_Block\tQ_5031\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nclang\tB-Application\tclang\tO\noutput\tO\toutput\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5032\tI-Code_Block\tQ_5032\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ndiagnostics\tO\tdiagnostics\tO\nvary\tO\tvary\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nin\tO\tin\tO\nform\tO\tform\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nare\tO\tare\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nclash\tO\tclash\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nC\tB-Language\tC\tO\nfunction\tO\tfunction\tO\nclock\tB-Library_Function\tclock\tB-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nstruct\tB-Data_Structure\tstruct\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nname\tO\tname\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrelevant\tO\trelevant\tO\ndeclaration\tO\tdeclaration\tO\nfrom\tO\tfrom\tO\ntime.h\tB-File_Name\ttime.h\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5033\tI-Code_Block\tQ_5033\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nsuch\tO\tsuch\tO\nsymbols\tO\tsymbols\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstd\tB-Variable_Name\tstd\tB-Code_Block\nnamespace\tO\tnamespace\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nincludes\tO\tincludes\tO\n<ctime>\tB-Library\t<ctime>\tB-Code_Block\n?\tO\t?\tO\n\t\nInterestingly\tO\tInterestingly\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nvery\tO\tvery\tO\ndeclaration\tO\tdeclaration\tO\nsits\tO\tsits\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nlines\tO\tlines\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nmacro\tO\tmacro\tO\nwhich\tO\twhich\tO\nreads\tO\treads\tO\n__BEGIN_NAMESPACE_STD\tB-Code_Block\t__BEGIN_NAMESPACE_STD\tB-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\n,\tO\t,\tO\nin\tO\tin\tO\n<ctime>\tB-Library\t<ctime>\tB-Code_Block\n,\tO\t,\tO\none\tO\tone\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5034\tI-Code_Block\tQ_5034\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nbug\tO\tbug\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39852545\tO\t39852545\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39852545/\tO\thttps://stackoverflow.com/questions/39852545/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nC++\tB-Language\tC++\tO\nstandard\tO\tstandard\tO\nalso\tO\talso\tO\nallows\tO\tallows\tO\nimplementations\tO\timplementations\tO\nto\tO\tto\tO\nput\tO\tput\tO\nnames\tO\tnames\tO\nfrom\tO\tfrom\tO\nC-library\tB-Library\tC-library\tO\nderived\tO\tderived\tO\nheaders\tB-File_Type\theaders\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nglobal\tB-Data_Type\tglobal\tO\nnamespace\tO\tnamespace\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nstd::clock\tB-Library\tstd::clock\tB-Code_Block\nand\tO\tand\tO\n::clock\tB-Library\t::clock\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\napplies\tO\tapplies\tO\nto\tO\tto\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\n<c*>\tB-Library\t<c*>\tB-Code_Block\nC++\tB-Language\tC++\tO\nheaders\tB-File_Type\theaders\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncorresponding\tO\tcorresponding\tO\n<*.h>\tB-Library\t<*.h>\tB-Code_Block\nversion\tO\tversion\tO\nin\tO\tin\tO\nC\tB-Language\tC\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35337267\tO\t35337267\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35337267/\tO\thttps://stackoverflow.com/questions/35337267/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nopen\tO\topen\tO\na\tO\ta\tO\npdf\tB-File_Type\tpdf\tB-Code_Block\nfile\tO\tfile\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nhtml\tB-Language\thtml\tB-Code_Block\ndocument\tO\tdocument\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nopen\tO\topen\tO\n.\tO\t.\tO\n\t\nChrome\tB-Application\tChrome\tO\nsaid\tO\tsaid\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\npdf\tB-File_Type\tpdf\tB-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nhtml\tB-File_Type\thtml\tB-Code_Block\nare\tO\tare\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlocation\tO\tlocation\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlocalhost\tB-Code_Block\tlocalhost\tB-Code_Block\nof\tO\tof\tO\nmy\tO\tmy\tO\ncomputer\tB-Device\tcomputer\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4334\tI-Code_Block\tQ_4334\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35337267\tO\t35337267\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35337267/\tO\thttps://stackoverflow.com/questions/35337267/\tO\n\t\n\t\nAfter\tO\tAfter\tO\nStruggling\tO\tStruggling\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\ni\tO\ti\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nBy\tO\tBy\tO\nReferring\tO\tReferring\tO\nthis\tO\tthis\tO\nLink\tO\tLink\tO\nHere\tO\tHere\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelp\tO\thelp\tO\nsomeone\tO\tsomeone\tO\n.\tO\t.\tO\n\t\nJS\tB-Language\tJS\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6779\tI-Code_Block\tA_6779\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHTML\tB-Language\tHTML\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6780\tI-Code_Block\tA_6780\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35337267\tO\t35337267\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35337267/\tO\thttps://stackoverflow.com/questions/35337267/\tO\n\t\n\t\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nare\tO\tare\tO\nworking\tO\tworking\tO\nfor\tO\tfor\tO\nPDF\tB-File_Type\tPDF\tO\nin\tO\tin\tO\nchrome\tB-Application\tchrome\tO\nbrowser\tI-Application\tbrowser\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5046\tI-Code_Block\tA_5046\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22588703\tO\t22588703\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22588703/\tO\thttps://stackoverflow.com/questions/22588703/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nGridview\tB-Library_Class\tGridview\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncolumns\tB-HTML_XML_Tag\tcolumns\tO\ndefined\tO\tdefined\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2474\tI-Code_Block\tQ_2474\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nsolving\tO\tsolving\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22588703\tO\t22588703\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22588703/\tO\thttps://stackoverflow.com/questions/22588703/\tO\n\t\n\t\nNothing\tO\tNothing\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nmarkup\tO\tmarkup\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nthing\tO\tthing\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nrecommend\tO\trecommend\tO\nis\tO\tis\tO\nending\tO\tending\tO\nthe\tO\tthe\tO\nLabel\tB-HTML_XML_Tag\tLabel\tO\ncontrol\tO\tcontrol\tO\nimmediately\tO\timmediately\tO\nand\tO\tand\tO\ntrying\tO\ttrying\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3063\tI-Code_Block\tA_3063\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\npast\tO\tpast\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\nissues\tO\tissues\tO\nwhen\tO\twhen\tO\nTab\tB-Keyboard_IP\tTab\tO\n,\tO\t,\tO\nÂ\tB-Keyboard_IP\tÂ\tO\nor\tI-Keyboard_IP\tor\tO\nsome\tO\tsome\tO\nunintentional\tO\tunintentional\tO\ncharacters\tO\tcharacters\tO\ncome\tO\tcome\tO\nin\tO\tin\tO\nbetween\tO\tbetween\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntemplated\tO\ttemplated\tO\ncontrols\tO\tcontrols\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nsuch\tO\tsuch\tO\ncharacters\tO\tcharacters\tO\nby\tO\tby\tO\nredoing\tO\tredoing\tO\nevery\tO\tevery\tO\nline\tO\tline\tO\nfrom\tO\tfrom\tO\nscratch\tO\tscratch\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22588703\tO\t22588703\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22588703/\tO\thttps://stackoverflow.com/questions/22588703/\tO\n\t\n\t\nThis\tO\tThis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nold\tO\told\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nothers\tO\tothers\tO\nwho\tO\twho\tO\nencounter\tO\tencounter\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nproblem\tO\tproblem\tO\ncan\tO\tcan\tO\ncaused\tO\tcaused\tO\nby\tO\tby\tO\nnot\tO\tnot\tO\nputting\tO\tputting\tO\nwhite\tO\twhite\tO\nspace\tO\tspace\tO\nbetween\tO\tbetween\tO\nproperties\tO\tproperties\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4013\tI-Code_Block\tA_4013\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38334379\tO\t38334379\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38334379/\tO\thttps://stackoverflow.com/questions/38334379/\tO\n\t\n\t\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nparticular\tO\tparticular\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\n's\tO\t's\tO\ncontent\tO\tcontent\tO\nas\tO\tas\tO\nan\tO\tan\tO\ninput\tO\tinput\tO\nelement\tO\telement\tO\n's\tO\t's\tO\nvalue\tO\tvalue\tO\nautomatically\tO\tautomatically\tO\nwhen\tO\twhen\tO\npage\tB-User_Interface_Element\tpage\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38334379\tO\t38334379\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38334379/\tO\thttps://stackoverflow.com/questions/38334379/\tO\n\t\n\t\nbase\tO\tbase\tO\non\tO\ton\tO\nbrso05\tB-User_Name\tbrso05\tO\n's\tO\t's\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\n\t\ndocument.getElementById(\"myInput\").value\tB-Code_Block\tdocument.getElementById(\"myInput\").value\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\ndocument.getElementById(\"myDiv\").innerHTML\tI-Code_Block\tdocument.getElementById(\"myDiv\").innerHTML\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5530\tI-Code_Block\tQ_5530\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38334379\tO\t38334379\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38334379/\tO\thttps://stackoverflow.com/questions/38334379/\tO\n\t\n\t\nMaybe\tO\tMaybe\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5529\tI-Code_Block\tA_5529\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44569735\tO\t44569735\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44569735/\tO\thttps://stackoverflow.com/questions/44569735/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nrecords\tO\trecords\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsubject\tO\tsubject\tO\ntable\tB-User_Interface_Element\ttable\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\ngroup_concat\tO\tgroup_concat\tO\nof\tO\tof\tO\nyii2\tB-Library\tyii2\tO\nbind\tO\tbind\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5794\tI-Code_Block\tQ_5794\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nsingle\tO\tsingle\tO\nvalue\tO\tvalue\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\n\"\tB-Value\t\"\tO\nEnglish\tI-Value\tEnglish\tO\n,\tI-Value\t,\tO\nmaths\tI-Value\tmaths\tO\n\"\tI-Value\t\"\tO\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\n\"\tB-Value\t\"\tO\nEnglish\tI-Value\tEnglish\tO\n\"\tI-Value\t\"\tO\nonly\tO\tonly\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44569735\tO\t44569735\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44569735/\tO\thttps://stackoverflow.com/questions/44569735/\tO\n\t\n\t\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nassign\tO\tassign\tO\na\tO\ta\tO\nname\tO\tname\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nusing\tO\tusing\tO\nalias\tO\talias\tO\n.\tO\t.\tO\n.\tO\t.\tO\neg\tO\teg\tO\ng_sname\tB-Variable_Name\tg_sname\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6446\tI-Code_Block\tA_6446\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\ncolumn()\tB-Library_Function\tcolumn()\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6447\tI-Code_Block\tA_6447\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42022010\tO\t42022010\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42022010/\tO\thttps://stackoverflow.com/questions/42022010/\tO\n\t\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\nan\tO\tan\tO\nHTML\tB-Language\tHTML\tO\nwith\tO\twith\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nshow\tO\tshow\tO\ndetails\tO\tdetails\tO\nwhich\tO\twhich\tO\nopens\tO\topens\tO\nup\tO\tup\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthat\tO\tthat\tO\npage\tO\tpage\tO\ninto\tO\tinto\tO\npdf\tB-File_Type\tpdf\tO\n,\tO\t,\tO\ntherefore\tO\ttherefore\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nwkhtmltopdf\tB-Application\twkhtmltopdf\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nPDF\tB-File_Type\tPDF\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nhtml\tB-Language\thtml\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nautomatically\tO\tautomatically\tO\ngenerated\tO\tgenerated\tO\nby\tO\tby\tO\na\tO\ta\tO\ntool\tO\ttool\tO\ncalled\tO\tcalled\tO\nOpenSCAP\tB-Application\tOpenSCAP\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\ngot\tO\tgot\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nshow\tO\tshow\tO\nthis\tO\tthis\tO\ndetails\tO\tdetails\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npdf\tB-File_Type\tpdf\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nSLES\tB-Operating_System\tSLES\tO\n11\tB-Version\t11\tO\n.\tO\t.\tO\n\t\nmy\tO\tmy\tO\ncommand\tO\tcommand\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5339\tI-Code_Block\tQ_5339\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29542100\tO\t29542100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29542100/\tO\thttps://stackoverflow.com/questions/29542100/\tO\n\t\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\noff\tO\toff\tO\nW3C\tB-Website\tW3C\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://www.w3schools.com/php/php_ajax_database.asp\tO\thttp://www.w3schools.com/php/php_ajax_database.asp\tO\n\t\nmodified\tO\tmodified\tO\nit\tO\tit\tO\nto\tO\tto\tO\nfit\tO\tfit\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nfile\tO\tfile\tO\nnames\tO\tnames\tO\nand\tO\tand\tO\ndatabase\tO\tdatabase\tO\netc\tO\tetc\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nweird\tO\tweird\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nechoing\tO\techoing\tO\nmy\tO\tmy\tO\nresponses\tO\tresponses\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nevery\tO\tevery\tO\nproduct\tO\tproduct\tO\nthat\tO\tthat\tO\ncollects\tO\tcollects\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nproduct\tO\tproduct\tO\ndatabase\tO\tdatabase\tO\nit\tO\tit\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nit\tO\tit\tO\nin\tO\tin\tO\na\tO\ta\tO\nsection\tB-HTML_XML_Tag\tsection\tO\ntag\tO\ttag\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3521\tI-Code_Block\tQ_3521\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nworking\tO\tworking\tO\nanymore\tO\tanymore\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nclosest\tO\tclosest\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ngotten\tO\tgotten\tO\nis\tO\tis\tO\nit\tO\tit\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\ndisplay\tO\tdisplay\tO\none\tO\tone\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nbreaks\tO\tbreaks\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nPHP\tB-Language\tPHP\tO\necho\tB-Library_Function\techo\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nreturned\tO\treturned\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\ntag\tO\ttag\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3522\tI-Code_Block\tQ_3522\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nso\tO\tso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nchanging\tO\tchanging\tO\nmy\tO\tmy\tO\nCSS\tB-Language\tCSS\tO\nto\tO\tto\tO\nstuff\tO\tstuff\tO\nlike\tO\tlike\tO\narticle\tB-HTML_XML_Tag\tarticle\tO\n>\tO\t>\tO\n.txtHint\tB-Class_Name\t.txtHint\tO\n>\tO\t>\tO\n#sideWays\tO\t#sideWays\tO\nor\tO\tor\tO\neven\tO\teven\tO\njust\tO\tjust\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\n#sideWays\tO\t#sideWays\tO\ncss\tB-Language\tcss\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\n.txtHint\tB-Class_Name\t.txtHint\tO\nto\tO\tto\tO\nskip\tO\tskip\tO\nthe\tO\tthe\tO\n>\tO\t>\tO\n#sideWays\tO\t#sideWays\tO\nbut\tO\tbut\tO\nnothing\tO\tnothing\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nmy\tO\tmy\tO\nCSS\tB-Language\tCSS\tO\non\tO\ton\tO\nthe\tO\tthe\tO\necho\tB-Code_Block\techo\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29542100\tO\t29542100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29542100/\tO\thttps://stackoverflow.com/questions/29542100/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhy\tO\twhy\tO\nbut\tO\tbut\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nkeyword\tO\tkeyword\tO\necho\tB-Code_Block\techo\tO\nto\tO\tto\tO\nprint\tB-Code_Block\tprint\tO\nfixed\tO\tfixed\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nof\tO\tof\tO\nit\tO\tit\tO\nnot\tO\tnot\tO\nrecognising\tO\trecognising\tO\nmy\tO\tmy\tO\nhtml\tB-Language\thtml\tO\ntags\tO\ttags\tO\nand\tO\tand\tO\napplying\tO\tapplying\tO\nthe\tO\tthe\tO\nCSS\tB-Language\tCSS\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48927134\tO\t48927134\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48927134/\tO\thttps://stackoverflow.com/questions/48927134/\tO\n\t\n\t\nTrying\tO\tTrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nsmart\tB-Device\tsmart\tO\nwatch\tI-Device\twatch\tO\napplication\tO\tapplication\tO\nopening\tO\topening\tO\na\tO\ta\tO\nweb\tO\tweb\tO\nview\tO\tview\tO\nwhich\tO\twhich\tO\nruns\tO\truns\tO\nsome\tO\tsome\tO\njavascript\tB-Language\tjavascript\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\ncrazy\tO\tcrazy\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6525\tI-Code_Block\tQ_6525\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nMWE\tO\tMWE\tO\n.\tO\t.\tO\n\t\nMainActivity.java\tB-File_Name\tMainActivity.java\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6526\tI-Code_Block\tQ_6526\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nactivity_main.xml\tB-File_Name\tactivity_main.xml\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6527\tI-Code_Block\tQ_6527\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nerror\tO\terror\tO\nI\tO\tI\tO\nget\tO\tget\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6528\tI-Code_Block\tQ_6528\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nchecked\tO\tchecked\tO\nother\tO\tother\tO\nthreads\tO\tthreads\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nin\tO\tin\tO\nparticular\tO\tparticular\tO\nconfused\tO\tconfused\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n\"\tO\t\"\tO\nline\tO\tline\tO\n0\tO\t0\tO\n\"\tO\t\"\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nxml\tB-File_Type\txml\tO\nfile\tO\tfile\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48927134\tO\t48927134\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48927134/\tO\thttps://stackoverflow.com/questions/48927134/\tO\n\t\n\t\nAndroid\tB-Operating_System\tAndroid\tO\nWear\tI-Operating_System\tWear\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\nWebView\tB-Library_Class\tWebView\tB-Code_Block\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nconcretely\tO\tconcretely\tO\n,\tO\t,\tO\nexamine\tO\texamine\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nexception\tB-Library_Class\texception\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7177\tI-Code_Block\tA_7177\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSince\tO\tSince\tO\nAndroid\tB-Operating_System\tAndroid\tO\n4.4\tB-Version\t4.4\tO\nor\tO\tor\tO\nthereabouts\tO\tthereabouts\tO\n,\tO\t,\tO\nWebView\tB-Library_Class\tWebView\tB-Code_Block\nis\tO\tis\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nSystem\tB-Application\tSystem\tO\nWebView\tI-Application\tWebView\tO\n\"\tO\t\"\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmeans\tO\tmeans\tO\nAndroid\tB-Operating_System\tAndroid\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\ngyrations\tO\tgyrations\tO\nto\tO\tto\tO\nget\tO\tget\tO\nits\tO\tits\tO\nhand\tO\thand\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nguts\tO\tguts\tO\nof\tO\tof\tO\nWebView\tB-Library_Class\tWebView\tB-Code_Block\nimplementation\tO\timplementation\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nWebView\tB-Library_Class\tWebView\tB-Code_Block\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n,\tO\t,\tO\nNullWebViewFactoryProvider\tB-Error_Name\tNullWebViewFactoryProvider\tB-Code_Block\nmeans\tO\tmeans\tO\n\"\tO\t\"\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\na\tO\ta\tO\nSystem\tB-Application\tSystem\tO\nWebView\tI-Application\tWebView\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4549172\tO\t4549172\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4549172/\tO\thttps://stackoverflow.com/questions/4549172/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\ninput\tO\tinput\tO\nfield\tO\tfield\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\ninterval\tO\tinterval\tO\nin\tO\tin\tO\ndays\tO\tdays\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ncronjob\tB-Application\tcronjob\tO\ncommand\tO\tcommand\tO\n(\tO\t(\tO\nie\tO\tie\tO\n:\tO\t:\tO\n*\tB-Code_Block\t*\tB-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\n)\tO\t)\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nPHP\tB-Language\tPHP\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ndays\tO\tdays\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nor\tO\tor\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmanually\tO\tmanually\tO\nsetup\tO\tsetup\tO\n?\tO\t?\tO\n\t\nSomething\tO\tSomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_312\tI-Code_Block\tQ_312\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4549172\tO\t4549172\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4549172/\tO\thttps://stackoverflow.com/questions/4549172/\tO\n\t\n\t\nif\tO\tif\tO\ni\tO\ti\tO\nunderstand\tO\tunderstand\tO\nyou\tO\tyou\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\ngiven\tO\tgiven\tO\namount\tO\tamount\tO\nof\tO\tof\tO\ndays\tO\tdays\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\n?\tO\t?\tO\n\t\n*\tB-File_Name\t*\tO\n/5\tI-File_Name\t/5\tO\n*\tI-File_Name\t*\tO\n*\tI-File_Name\t*\tO\n*\tI-File_Name\t*\tO\n*\tI-File_Name\t*\tO\n/home/user/test.pl\tI-File_Name\t/home/user/test.pl\tO\n\t\n.---------------\tO\t.---------------\tO\n-\tO\t-\tO\nminute\tO\tminute\tO\n(\tO\t(\tO\n0\tO\t0\tO\n-\tO\t-\tO\n59\tO\t59\tO\n)\tO\t)\tO\n\t\n|\tO\t|\tO\n.------------\tO\t.------------\tO\n-\tO\t-\tO\nhour\tO\thour\tO\n(\tO\t(\tO\n0\tO\t0\tO\n-\tO\t-\tO\n2\tO\t2\tO\n3)\tB-Value\t3)\tO\n\t\n|\tO\t|\tO\n|\tO\t|\tO\n.---------\tO\t.---------\tO\n-\tO\t-\tO\nday\tO\tday\tO\nof\tO\tof\tO\nmonth\tB-Value\tmonth\tO\n(\tI-Value\t(\tO\n1\tI-Value\t1\tO\n-\tI-Value\t-\tO\n3\tI-Value\t3\tO\n1)\tI-Value\t1)\tO\n\t\n|\tO\t|\tO\n|\tO\t|\tO\n|\tO\t|\tO\n.------\tO\t.------\tO\n-\tO\t-\tO\nmonth\tO\tmonth\tO\n(\tB-Value\t(\tO\n1\tI-Value\t1\tO\n-\tI-Value\t-\tO\n1\tI-Value\t1\tO\n2)\tI-Value\t2)\tO\nOR\tI-Value\tOR\tO\njan\tI-Value\tjan\tO\n,\tO\t,\tO\nfeb\tB-Value\tfeb\tO\n,\tO\t,\tO\nmar\tB-Value\tmar\tO\n,\tO\t,\tO\napr\tB-Value\tapr\tO\n..\tI-Value\t..\tO\n.\tI-Value\t.\tO\n\t\n|\tO\t|\tO\n|\tO\t|\tO\n|\tO\t|\tO\n|\tO\t|\tO\n.----\tO\t.----\tO\n-\tO\t-\tO\nday\tB-Value\tday\tO\nof\tI-Value\tof\tO\nweek\tI-Value\tweek\tO\n(\tI-Value\t(\tO\n0\tI-Value\t0\tO\n-\tI-Value\t-\tO\n6\tI-Value\t6\tO\n)\tI-Value\t)\tO\n(\tO\t(\tO\nSunday\tB-Value\tSunday\tO\n=\tI-Value\t=\tO\n0\tI-Value\t0\tO\nor\tO\tor\tO\n7\tB-Value\t7\tO\n)\tO\t)\tO\nOR\tO\tOR\tO\nsun\tB-Value\tsun\tO\n,\tO\t,\tO\nmon\tB-Value\tmon\tO\n,\tO\t,\tO\ntue\tB-Value\ttue\tO\n,\tO\t,\tO\nwed\tB-Value\twed\tO\n,\tO\t,\tO\nthu\tB-Value\tthu\tO\n,\tO\t,\tO\nfri\tB-Value\tfri\tO\n,\tO\t,\tO\nsat\tB-Value\tsat\tO\n\t\n|\tO\t|\tO\n|\tO\t|\tO\n|\tO\t|\tO\n|\tO\t|\tO\n|\tO\t|\tO\n\t\n*\tO\t*\tO\n*\tO\t*\tO\n*\tO\t*\tO\n*\tO\t*\tO\n*\tO\t*\tO\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4549172\tO\t4549172\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4549172/\tO\thttps://stackoverflow.com/questions/4549172/\tO\n\t\n\t\nCronjobs\tB-Application\tCronjobs\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nminute\tO\tminute\tO\nthe\tO\tthe\tO\ncron\tB-Application\tcron\tO\ndeamon\tI-Application\tdeamon\tO\nlooks\tO\tlooks\tO\nfor\tO\tfor\tO\nwhich\tO\twhich\tO\njobs\tO\tjobs\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npattern\tO\tpattern\tO\n(\tO\t(\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nweekday\tO\tweekday\tO\n?\tO\t?\tO\n\t\nis\tO\tis\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nminute\tO\tminute\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\nscript\tO\tscript\tO\ncheck\tO\tcheck\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nis\tO\tis\tO\ncorrect\tO\tcorrect\tO\nbecause\tO\tbecause\tO\ncron\tB-Application\tcron\tO\ncannot\tO\tcannot\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nthat\tO\tthat\tO\ncheck\tO\tcheck\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmanual\tO\tmanual\tO\njob\tO\tjob\tO\nor\tO\tor\tO\nin\tO\tin\tO\nBash\tB-Application\tBash\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30643371\tO\t30643371\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30643371/\tO\thttps://stackoverflow.com/questions/30643371/\tO\n\t\n\t\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nListBox\tB-Library_Class\tListBox\tB-Code_Block\n(\tO\t(\tO\nwhich\tO\twhich\tO\ncontains\tO\tcontains\tO\nScrollViewer\tB-Library_Class\tScrollViewer\tB-Code_Block\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n)\tO\t)\tO\nand\tO\tand\tO\nListBoxItem\tB-Library_Class\tListBoxItem\tB-Code_Block\nwith\tO\twith\tO\nScrollViewer\tB-Library_Class\tScrollViewer\tB-Code_Block\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nnext\tO\tnext\tO\nview\tO\tview\tO\n:\tO\t:\tO\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nListBox\tB-Library_Class\tListBox\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\nsupport\tO\tsupport\tO\nvirtualization\tO\tvirtualization\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nenable\tO\tenable\tO\nit\tO\tit\tO\n,\tO\t,\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwondering\tO\twondering\tO\nwill\tO\twill\tO\nit\tO\tit\tO\nwork\tO\twork\tO\nif\tO\tif\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n2\tO\t2\tO\nscroll\tB-Library_Class\tscroll\tO\nviewers\tI-Library_Class\tviewers\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nUPDATED\tO\tUPDATED\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nListBox.ItemTemplate\tB-Library_Variable\tListBox.ItemTemplate\tB-Code_Block\n,\tO\t,\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nbinding\tO\tbinding\tO\nItemsSource\tB-Library_Variable\tItemsSource\tB-Code_Block\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\ntips\tO\ttips\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30643371\tO\t30643371\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30643371/\tO\thttps://stackoverflow.com/questions/30643371/\tO\n\t\n\t\nEasy\tO\tEasy\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\n've\tO\t've\tO\ngiven\tO\tgiven\tO\nyou\tO\tyou\tO\nthree\tO\tthree\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\none\tO\tone\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nright\tO\tright\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nThrough\tO\tThrough\tO\nXaml\tB-Language\tXaml\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4357\tI-Code_Block\tA_4357\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFrom\tO\tFrom\tO\nC#\tB-Language\tC#\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4358\tI-Code_Block\tA_4358\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n(\tO\t(\tO\nI\tO\tI\tO\n've\tO\t've\tO\nadded\tO\tadded\tO\na\tO\ta\tO\nshort\tO\tshort\tO\ncomment\tO\tcomment\tO\njust\tO\tjust\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nprobably\tO\tprobably\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nscroll\tB-User_Interface_Element\tscroll\tO\nbar\tI-User_Interface_Element\tbar\tO\ngo\tO\tgo\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nacross\tO\tacross\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nusing\tO\tusing\tO\nItem\tB-Library_Class\tItem\tO\nTemplate\tI-Library_Class\tTemplate\tO\n:\tO\t:\tO\n(\tO\t(\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnever\tO\tnever\tO\ndone\tO\tdone\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nso\tO\tso\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nshoot\tO\tshoot\tO\nme\tO\tme\tO\nif\tO\tif\tO\nits\tO\tits\tO\nwrong\tO\twrong\tO\n!\tO\t!\tO\n:)\tO\t:)\tO\n)\tO\t)\tO\n\t\nXAML\tB-Language\tXAML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4359\tI-Code_Block\tA_4359\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCode\tO\tCode\tO\nBehind\tO\tBehind\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4360\tI-Code_Block\tA_4360\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOutput\tO\tOutput\tO\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1126445\tO\t1126445\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1126445/\tO\thttps://stackoverflow.com/questions/1126445/\tO\n\t\n\t\nWhen\tO\tWhen\tO\ncompiling\tO\tcompiling\tO\na\tO\ta\tO\n64bit\tO\t64bit\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\ndoes\tO\tdoes\tO\nstrlen()\tB-Library_Function\tstrlen()\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\n64-bit\tO\t64-bit\tO\ninteger\tB-Data_Type\tinteger\tO\n?\tO\t?\tO\n\t\nAm\tO\tAm\tO\ni\tO\ti\tO\nmissing\tO\tmissing\tO\nsomthing\tO\tsomthing\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\nstrlen()\tB-Library_Function\tstrlen()\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nsize_t\tB-Data_Type\tsize_t\tO\ntype\tO\ttype\tO\n,\tO\t,\tO\nand\tO\tand\tO\nby\tO\tby\tO\ndefinition\tO\tdefinition\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\n..\tO\t..\tO\n.\tO\t.\tO\nWhy\tO\tWhy\tO\nwould\tO\twould\tO\nstrlen\tB-Library_Function\tstrlen\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\n64-bit\tO\t64-bit\tO\ninteger\tB-Data_Type\tinteger\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\ndesigned\tO\tdesigned\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nwith\tO\twith\tO\nstrings\tB-Data_Type\tstrings\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthat\tO\tthat\tO\nsaid\tO\tsaid\tO\n:\tO\t:\tO\n\t\nDo\tO\tDo\tO\nprogrammers\tO\tprogrammers\tO\ncommonly\tO\tcommonly\tO\ncreate\tO\tcreate\tO\nmulti-gigabyte\tO\tmulti-gigabyte\tO\nor\tO\tor\tO\nmulti-terabyte\tO\tmulti-terabyte\tO\nstrings\tB-Data_Type\tstrings\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\ndid\tO\tdid\tO\n,\tO\t,\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nthey\tO\tthey\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nlength\tO\tlength\tO\nthan\tO\tthan\tO\nsearching\tO\tsearching\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nNULL\tB-Value\tNULL\tO\ncharacter\tO\tcharacter\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nridiculous\tO\tridiculous\tO\n,\tO\t,\tO\nin\tO\tin\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nStrLenAsync()\tB-Function_Name\tStrLenAsync()\tO\nfunction\tO\tfunction\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncallback\tO\tcallback\tO\njust\tO\tjust\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nultra\tO\tultra\tO\nlong\tO\tlong\tO\nprocess\tO\tprocess\tO\nfor\tO\tfor\tO\nsearching\tO\tsearching\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nNULL\tB-Value\tNULL\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n40TB\tO\t40TB\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nSound\tO\tSound\tO\nstupid\tO\tstupid\tO\n?\tO\t?\tO\n\t\nYea\tO\tYea\tO\n,\tO\t,\tO\nwell\tO\twell\tO\nstrlen()\tB-Library_Function\tstrlen()\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\n64-bit\tO\t64-bit\tO\ninteger\tB-Data_Type\tinteger\tO\n!\tO\t!\tO\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nStrLenAsync()\tB-Function_Name\tStrLenAsync()\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\na\tO\ta\tO\njoke\tO\tjoke\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1126445\tO\t1126445\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1126445/\tO\thttps://stackoverflow.com/questions/1126445/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\n1)\tO\t1)\tO\nsize_t\tB-Data_Type\tsize_t\tO\nis\tO\tis\tO\na\tO\ta\tO\ntypedef\tO\ttypedef\tO\nand\tO\tand\tO\nvaries\tO\tvaries\tO\nwith\tO\twith\tO\narchitectures\tO\tarchitectures\tO\nand\tO\tand\tO\n2)\tO\t2)\tO\nWould\tO\tWould\tO\nn't\tO\tn't\tO\nit\tO\tit\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nlargest\tO\tlargest\tO\ninteger\tB-Data_Type\tinteger\tO\nas\tO\tas\tO\na\tO\ta\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\n32\tO\t32\tO\nbits\tO\tbits\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nnot\tO\tnot\tO\n16\tO\t16\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\n64\tO\t64\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nmachine\tO\tmachine\tO\nbecause\tO\tbecause\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nmax\tO\tmax\tO\nstring\tB-Data_Type\tstring\tO\nlength\tO\tlength\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1126445\tO\t1126445\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1126445/\tO\thttps://stackoverflow.com/questions/1126445/\tO\n\t\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ncompiling\tO\tcompiling\tO\nfor\tO\tfor\tO\na\tO\ta\tO\n64-bit\tO\t64-bit\tO\ntarget\tO\ttarget\tO\n,\tO\t,\tO\nsize_t\tB-Data_Type\tsize_t\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nas\tO\tas\tO\n64-bit\tO\t64-bit\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmakes\tO\tmakes\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nsize_t\tB-Data_Type\tsize_t\tO\nis\tO\tis\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nsizes\tO\tsizes\tO\nof\tO\tof\tO\nall\tO\tall\tO\nkinds\tO\tkinds\tO\nof\tO\tof\tO\nobjects\tO\tobjects\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\nstrings\tB-Data_Type\tstrings\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44281232\tO\t44281232\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44281232/\tO\thttps://stackoverflow.com/questions/44281232/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\npupil\tO\tpupil\tO\ndetection\tO\tdetection\tO\nfrom\tO\tfrom\tO\nimage\tB-User_Interface_Element\timage\tO\nusing\tO\tusing\tO\npythonwith\tB-Language\tpythonwith\tB-Code_Block\nopencvpackage\tB-Library\topencvpackage\tI-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\ntest\tO\ttest\tO\nimages\tB-User_Interface_Element\timages\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\ndetect\tO\tdetect\tO\npupil\tO\tpupil\tO\nin\tO\tin\tO\n(\tO\t(\tO\na\tO\ta\tO\n)\tO\t)\tO\npart\tO\tpart\tO\nbut\tO\tbut\tO\nwhenever\tO\twhenever\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\npresence\tO\tpresence\tO\nof\tO\tof\tO\nreflection/\tO\treflection/\tO\nglare\tO\tglare\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\ndetect\tO\tdetect\tO\nblob\tO\tblob\tB-Code_Block\nof\tO\tof\tO\npupil\tO\tpupil\tO\npixels\tO\tpixels\tO\naccurately\tO\taccurately\tO\nin\tO\tin\tO\n(\tO\t(\tO\nb\tO\tb\tO\n)\tO\t)\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanybody\tO\tanybody\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5734\tI-Code_Block\tQ_5734\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26684237\tO\t26684237\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26684237/\tO\thttps://stackoverflow.com/questions/26684237/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nwebsocket\tO\twebsocket\tO\nserver\tB-Application\tserver\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\nbasicly\tO\tbasicly\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nover\tO\tover\tO\nhttps\tO\thttps\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3055\tI-Code_Block\tQ_3055\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\nbrowser\tB-Application\tbrowser\tO\nsays\tO\tsays\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nWebSocket\tO\tWebSocket\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\n'\tO\t'\tO\nwss://192.168.1.8/ws\tO\twss://192.168.1.8/ws\tO\n'\tO\t'\tO\nfailed\tO\tfailed\tO\n:\tO\t:\tO\nWebSocket\tO\tWebSocket\tO\nopening\tO\topening\tO\nhandshake\tO\thandshake\tO\nwas\tO\twas\tO\ncanceled\tO\tcanceled\tO\n\"\tO\t\"\tO\n\t\nThe\tO\tThe\tO\nthings\tO\tthings\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwas\tO\twas\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\nAdd\tO\tAdd\tO\ncertificate\tO\tcertificate\tO\nto\tO\tto\tO\nsystem\tO\tsystem\tO\n(\tO\t(\tO\nwin\tB-Operating_System\twin\tO\n8.1\tB-Version\t8.1\tO\nPRO\tI-Version\tPRO\tO\nx6\tI-Version\tx6\tO\n4)\tI-Version\t4)\tO\nby\tO\tby\tO\ndouble\tO\tdouble\tO\nclicking\tO\tclicking\tO\non\tO\ton\tO\ncert\tB-File_Type\tcert\tO\nfile\tO\tfile\tO\n\t\n2)\tO\t2)\tO\nAdd\tO\tAdd\tO\ncertificate\tO\tcertificate\tO\nto\tO\tto\tO\ngoogle\tB-Application\tgoogle\tO\nchrome\tI-Application\tchrome\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nsystem\tO\tsystem\tO\n(\tO\t(\tO\nthrough\tO\tthrough\tO\nsettings\tO\tsettings\tO\nof\tO\tof\tO\nbrowser\tB-Application\tbrowser\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nserver\tB-Application\tserver\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nreimplement\tO\treimplement\tO\nit\tO\tit\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nhttp\tO\thttp\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nhttps\tO\thttps\tO\nso\tO\tso\tO\nphysical\tO\tphysical\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\nmachine\tO\tmachine\tO\nlooks\tO\tlooks\tO\nOK\tO\tOK\tO\n.\tO\t.\tO\n\t\nmy\tO\tmy\tO\ncertificate\tO\tcertificate\tO\nare\tO\tare\tO\nself-signed\tO\tself-signed\tO\n,\tO\t,\tO\ngenerated\tO\tgenerated\tO\nby\tO\tby\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3056\tI-Code_Block\tQ_3056\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nhow\tO\thow\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3057\tI-Code_Block\tQ_3057\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26684237\tO\t26684237\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26684237/\tO\thttps://stackoverflow.com/questions/26684237/\tO\n\t\n\t\nAs\tO\tAs\tO\n@BenDarnell\tB-User_Name\t@BenDarnell\tO\nposted\tO\tposted\tO\n,\tO\t,\tO\nWe\tO\tWe\tO\nhave\tO\thave\tO\nto\tO\tto\tO\naccept\tO\taccept\tO\nthis\tO\tthis\tO\ncertificate\tO\tcertificate\tO\nby\tO\tby\tO\nbrowse\tO\tbrowse\tO\nto\tO\tto\tO\npage\tO\tpage\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyour\tO\tyour\tO\nbrowser\tB-Application\tbrowser\tO\nwill\tO\twill\tO\ninform\tO\tinform\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\nis\tO\tis\tO\nuntrusted\tO\tuntrusted\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nyour\tO\tyour\tO\nbrowser\tB-Application\tbrowser\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nuntrusted\tO\tuntrusted\tO\ncertificate\tO\tcertificate\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\ncode\tO\tcode\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nplace\tO\tplace\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3695\tI-Code_Block\tA_3695\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8022156\tO\t8022156\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8022156/\tO\thttps://stackoverflow.com/questions/8022156/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nfor\tO\tfor\tO\nabout\tO\tabout\tO\na\tO\ta\tO\nweek\tO\tweek\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\na\tO\ta\tO\ndrop\tB-User_Interface_Element\tdrop\tO\ndown\tI-User_Interface_Element\tdown\tO\nmenu\tI-User_Interface_Element\tmenu\tO\nusing\tO\tusing\tO\nselenium\tB-Library\tselenium\tO\n2\tB-Version\t2\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nto\tO\tto\tO\nautomate\tO\tautomate\tO\na\tO\ta\tO\nflight\tO\tflight\tO\nsearch\tO\tsearch\tO\nusing\tO\tusing\tO\nITA\tB-Application\tITA\tO\nMatrix\tI-Application\tMatrix\tO\n2\tB-Version\t2\tO\n(\tO\t(\tO\nhttp://matrix.itasoftware.com/\tO\thttp://matrix.itasoftware.com/\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nworks\tO\tworks\tO\nOK\tO\tOK\tO\nexcept\tO\texcept\tO\nselecting\tO\tselecting\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\npassengers\tO\tpassengers\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndrop\tB-User_Interface_Element\tdrop\tO\ndown\tI-User_Interface_Element\tdown\tO\nmenu\tI-User_Interface_Element\tmenu\tO\n.\tO\t.\tO\n\t\nClicking\tO\tClicking\tO\non\tO\ton\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nattempts\tO\tattempts\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nkeys\tO\tkeys\tO\nor\tO\tor\tO\narrow\tO\tarrow\tO\ncommands\tO\tcommands\tO\nto\tO\tto\tO\nboth\tO\tboth\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nID\tO\tID\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncreated\tO\tcreated\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\npops\tO\tpops\tO\nup\tO\tup\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\nany\tO\tany\tO\nactions\tO\tactions\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nappreciate\tO\tappreciate\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\nam\tO\tam\tO\nvery\tO\tvery\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\npython\tB-Language\tpython\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nas\tO\tas\tO\na\tO\ta\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nself\tO\tself\tO\nteaching\tO\tteaching\tO\nexercise\tO\texercise\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_658\tI-Code_Block\tQ_658\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8022156\tO\t8022156\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8022156/\tO\thttps://stackoverflow.com/questions/8022156/\tO\n\t\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nit\tO\tit\tO\nfails\tO\tfails\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\npassenger\tO\tpassenger\tO\ndrop\tB-User_Interface_Element\tdrop\tO\ndown\tI-User_Interface_Element\tdown\tO\nmenu\tI-User_Interface_Element\tmenu\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nactually\tO\tactually\tO\na\tO\ta\tO\ndrop\tB-User_Interface_Element\tdrop\tO\ndown\tI-User_Interface_Element\tdown\tO\nmenu\tI-User_Interface_Element\tmenu\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsome\tO\tsome\tO\nclever\tO\tclever\tO\nhtml\tB-Language\thtml\tO\nand\tO\tand\tO\njavascript\tB-Language\tjavascript\tO\nso\tO\tso\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nrespond\tO\trespond\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nusual\tO\tusual\tO\nevents\tO\tevents\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nClick\tO\tClick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlist\tB-User_Interface_Element\tlist\tO\nat\tO\tat\tO\nID\tO\tID\tO\n:\tB-Variable_Name\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_987\tI-Code_Block\tA_987\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nitem\tO\titem\tO\nat\tO\tat\tO\nXPath\tB-Language\tXPath\tO\n(\tO\t(\tO\nreplace\tO\treplace\tO\n'\tB-Variable_Name\t'\tO\nNUMBER_OF_PASSENGERS\tI-Variable_Name\tNUMBER_OF_PASSENGERS\tO\n'\tB-Variable_Name\t'\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\npassengers\tO\tpassengers\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_988\tI-Code_Block\tA_988\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35597909\tO\t35597909\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35597909/\tO\thttps://stackoverflow.com/questions/35597909/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nunread\tO\tunread\tO\nmessages\tO\tmessages\tO\ncount\tO\tcount\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nXMPPUserCoreDataStorageObject\tB-Code_Block\tXMPPUserCoreDataStorageObject\tB-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\nuser\tI-Code_Block\tuser\tI-Code_Block\nis\tO\tis\tO\nalways\tO\talways\tO\nnil\tB-Value\tnil\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nchat\tO\tchat\tO\nfunction\tO\tfunction\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nunread\tO\tunread\tO\nmessages\tO\tmessages\tO\ncount\tO\tcount\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4355\tI-Code_Block\tQ_4355\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35597909\tO\t35597909\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35597909/\tO\thttps://stackoverflow.com/questions/35597909/\tO\n\t\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncleaned.So\tO\tcleaned.So\tO\ndeep\tO\tdeep\tO\nclean\tO\tclean\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nby\tO\tby\tO\npressing\tO\tpressing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nkeys\tO\tkeys\tO\n\t\nwindow+alt+shift+\tB-Keyboard_IP\twindow+alt+shift+\tO\nk\tI-Keyboard_IP\tk\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17072036\tO\t17072036\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17072036/\tO\thttps://stackoverflow.com/questions/17072036/\tO\n\t\n\t\nIn\tO\tIn\tO\nGNU\tB-Operating_System\tGNU\tO\nEMACS\tB-Application\tEMACS\tO\n24.3\tB-Version\t24.3\tO\n,\tO\t,\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nrecentf\tO\trecentf\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nrecently\tO\trecently\tO\nopened\tO\topened\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\ncertain\tO\tcertain\tO\nmakefiles\tB-File_Name\tmakefiles\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntype\tO\ttype\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\npath\tO\tpath\tO\nwhenever\tO\twhenever\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nprojects\tO\tprojects\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\ncertain\tO\tcertain\tO\nfiles\tO\tfiles\tO\nsticky\tO\tsticky\tO\nor\tO\tor\tO\npersistent\tO\tpersistent\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17072036\tO\t17072036\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17072036/\tO\thttps://stackoverflow.com/questions/17072036/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexactly\tO\texactly\tO\nanswering\tO\tanswering\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nserve\tO\tserve\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\npurpose\tO\tpurpose\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbookmark\tO\tbookmark\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nmost\tO\tmost\tO\noften\tO\toften\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://www.emacswiki.org/emacs/BookMarks\tO\thttp://www.emacswiki.org/emacs/BookMarks\tO\n\t\nbut\tO\tbut\tO\nin\tO\tin\tO\na\tO\ta\tO\nnutshell\tO\tnutshell\tO\n:\tO\t:\tO\nC-x\tB-Keyboard_IP\tC-x\tB-Keyboard_IP\nr\tI-Keyboard_IP\tr\tI-Keyboard_IP\nm\tI-Keyboard_IP\tm\tI-Keyboard_IP\nbookmarks\tO\tbookmarks\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nopen\tO\topen\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nworks\tO\tworks\tO\non\tO\ton\tO\ndired\tB-Application\tdired\tB-Code_Block\nbuffers\tB-Data_Structure\tbuffers\tO\ntoo\tO\ttoo\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nC-x\tB-Keyboard_IP\tC-x\tB-Keyboard_IP\nr\tI-Keyboard_IP\tr\tI-Keyboard_IP\nb\tI-Keyboard_IP\tb\tI-Keyboard_IP\nloads\tO\tloads\tO\nthe\tO\tthe\tO\nbookmarked\tO\tbookmarked\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\nword\tO\tword\tO\ncompletion\tO\tcompletion\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17072036\tO\t17072036\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17072036/\tO\thttps://stackoverflow.com/questions/17072036/\tO\n\t\n\t\nSet\tO\tSet\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrecent\tO\trecent\tO\nfiles\tO\tfiles\tO\nlist\tB-Data_Structure\tlist\tO\nto\tO\tto\tO\na\tO\ta\tO\nhigh\tO\thigh\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2236\tI-Code_Block\tA_2236\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nthe\tO\tthe\tO\nmakefiles\tB-File_Name\tmakefiles\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\ndrop\tO\tdrop\tO\nout\tO\tout\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nvisit\tO\tvisit\tO\nthem\tO\tthem\tO\nregularly\tO\tregularly\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nit\tO\tit\tO\nis\tO\tis\tO\nuseful\tO\tuseful\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\na\tO\ta\tO\nlong\tO\tlong\tO\nrecentf\tO\trecentf\tO\nlist\tB-Data_Structure\tlist\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\na\tO\ta\tO\npackage\tO\tpackage\tO\nwhich\tO\twhich\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nfiles\tO\tfiles\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\nwith\tO\twith\tO\ncompletion\tO\tcompletion\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nsome\tO\tsome\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\nhttp://www.emacswiki.org/emacs-es/RecentFiles\tO\thttp://www.emacswiki.org/emacs-es/RecentFiles\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38259499\tO\t38259499\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38259499/\tO\thttps://stackoverflow.com/questions/38259499/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\na\tO\ta\tO\nUbuntu\tB-Operating_System\tUbuntu\tO\n16.04\tB-Version\t16.04\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nComposer\tB-Application\tComposer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\noptions\tO\toptions\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n:\tO\t:\tO\n\t\nThrough\tO\tThrough\tO\nComposer.org\tB-Website\tComposer.org\tO\nsite\tO\tsite\tO\nrecommendations\tO\trecommendations\tO\ncommand\tO\tcommand\tO\nline->\tO\tline->\tO\nphp\tB-Code_Block\tphp\tB-Code_Block\n-r\tI-Code_Block\t-r\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\ncopy('https://getcomposer\tI-Code_Block\tcopy('https://getcomposer\tI-Code_Block\n.org/installer\tI-Code_Block\t.org/installer\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\ncomposer-setup.php\tI-Code_Block\tcomposer-setup.php\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n..\tI-Code_Block\t..\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n\t\nTrough\tO\tTrough\tO\napt\tB-Code_Block\tapt\tO\n->\tO\t->\tO\natp\tB-Code_Block\tatp\tB-Code_Block\ninstall\tI-Code_Block\tinstall\tI-Code_Block\ncomposer\tI-Code_Block\tcomposer\tI-Code_Block\n,\tO\t,\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nconstraint\tO\tconstraint\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\ntrough\tO\ttrough\tO\nprocess\tO\tprocess\tO\n2\tO\t2\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38259499\tO\t38259499\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38259499/\tO\thttps://stackoverflow.com/questions/38259499/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ninstall\tO\tinstall\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\npackage\tB-Application\tpackage\tO\nmanager\tI-Application\tmanager\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nget\tO\tget\tO\nan\tO\tan\tO\nolder\tO\tolder\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nWhether\tO\tWhether\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nthat\tO\tthat\tO\nmatters\tO\tmatters\tO\nis\tO\tis\tO\nup\tO\tup\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nbenefits\tO\tbenefits\tO\nto\tO\tto\tO\ninstalling\tO\tinstalling\tO\neverything\tO\teverything\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\npackage\tB-Application\tpackage\tO\nmanager\tI-Application\tmanager\tO\n;\tO\t;\tO\nnamely\tO\tnamely\tO\n,\tO\t,\tO\nit\tO\tit\tO\nbecomes\tO\tbecomes\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nyour\tO\tyour\tO\nentire\tO\tentire\tO\nsystem\tO\tsystem\tO\nup-to-date\tO\tup-to-date\tO\n(\tO\t(\tO\nby\tO\tby\tO\nUbuntu\tB-Operating_System\tUbuntu\tO\n's\tO\t's\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\nup-to-date\tO\tup-to-date\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nalso\tO\talso\tO\nobvious\tO\tobvious\tO\nbenefits\tO\tbenefits\tO\nto\tO\tto\tO\nfollowing\tO\tfollowing\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\nsoftware\tO\tsoftware\tO\n's\tO\t's\tO\ninstructions\tO\tinstructions\tO\n.\tO\t.\tO\n\t\nPersonally\tO\tPersonally\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nwere\tO\twere\tO\nsharing\tO\tsharing\tO\ncode\tO\tcode\tO\nwith\tO\twith\tO\nother\tO\tother\tO\ndevelopers\tO\tdevelopers\tO\nwho\tO\twho\tO\nuse\tO\tuse\tO\ncomposer\tB-Application\tcomposer\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ninstall\tO\tinstall\tO\ncomposer\tB-Application\tcomposer\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nrecommended\tO\trecommended\tO\n'\tO\t'\tO\nway\tO\tway\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nit\tO\tit\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\nby\tO\tby\tO\nchecking\tO\tchecking\tO\nperiodically\tO\tperiodically\tO\nfor\tO\tfor\tO\nnew\tO\tnew\tO\nversions\tO\tversions\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nway\tO\tway\tO\nwe\tO\twe\tO\n'd\tO\t'd\tO\nall\tO\tall\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32241130\tO\t32241130\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32241130/\tO\thttps://stackoverflow.com/questions/32241130/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nBasic\tB-Library_Class\tBasic\tO\nComboTree\tI-Library_Class\tComboTree\tO\nfrom\tO\tfrom\tO\njeasyui.com\tB-Website\tjeasyui.com\tO\n\t\nindex.js\tB-File_Name\tindex.js\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3905\tI-Code_Block\tQ_3905\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\ncshtml\tB-File_Type\tcshtml\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3906\tI-Code_Block\tQ_3906\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32241130\tO\t32241130\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32241130/\tO\thttps://stackoverflow.com/questions/32241130/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ndirective\tO\tdirective\tO\n[\tO\t[\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nas\tO\tas\tO\nattribute\tO\tattribute\tO\nfor\tO\tfor\tO\ninput\tO\tinput\tO\nelement\tO\telement\tO\n]\tO\t]\tO\nand\tO\tand\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nusing\tO\tusing\tO\nloadData\tB-Variable_Name\tloadData\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\npromise\tO\tpromise\tO\nis\tO\tis\tO\nresolved\tO\tresolved\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4608\tI-Code_Block\tA_4608\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32241130\tO\t32241130\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32241130/\tO\thttps://stackoverflow.com/questions/32241130/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nworking\tO\tworking\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nsolve\tO\tsolve\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\ncreate\tO\tcreate\tO\na\tO\ta\tO\nservice\tO\tservice\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nremote\tO\tremote\tO\ndata\tO\tdata\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4609\tI-Code_Block\tA_4609\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ntree_data1.json\tB-File_Name\ttree_data1.json\tO\ndata\tO\tdata\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4610\tI-Code_Block\tA_4610\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ncreate\tO\tcreate\tO\na\tO\ta\tO\ndirective\tO\tdirective\tO\nsay\tO\tsay\tO\n\"\tO\t\"\tO\ncomboTreeDirective\tB-Variable_Name\tcomboTreeDirective\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nas\tO\tas\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\nto\tO\tto\tO\ncomboe\tO\tcomboe\tO\ntree\tO\ttree\tO\nelement\tO\telement\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4611\tI-Code_Block\tA_4611\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nas\tO\tas\tO\nshown\tO\tshown\tO\nbelow\tO\tbelow\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4612\tI-Code_Block\tA_4612\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncomplete\tO\tcomplete\tO\nworking\tO\tworking\tO\nexample\tO\texample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4613\tI-Code_Block\tA_4613\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23629090\tO\t23629090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23629090/\tO\thttps://stackoverflow.com/questions/23629090/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\ncalls\tO\tcalls\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nserver\tB-Application\tserver\tO\nto\tO\tto\tO\na\tO\ta\tO\nREST\tB-Library\tREST\tO\nAPI\tI-Library\tAPI\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nexposed\tO\texposed\tO\nby\tO\tby\tO\nanother\tO\tanother\tO\nserver\tB-Application\tserver\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\ntaking\tO\ttaking\tO\ntoo\tO\ttoo\tO\nlong\tO\tlong\tO\nto\tO\tto\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\ntakes\tO\ttakes\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nRight\tO\tRight\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nC#\tB-Language\tC#\tO\nAsync/Await\tB-Code_Block\tAsync/Await\tB-Code_Block\nalong\tO\talong\tO\nwith\tO\twith\tO\nHTTPClient\tB-Library_Class\tHTTPClient\tB-Code_Block\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2608\tI-Code_Block\tQ_2608\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23629090\tO\t23629090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23629090/\tO\thttps://stackoverflow.com/questions/23629090/\tO\n\t\n\t\nAS\tO\tAS\tO\n@TheESJ\tB-User_Name\t@TheESJ\tO\nsaid\tO\tsaid\tO\nthe\tO\tthe\tO\nawaits\tB-Code_Block\tawaits\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nexecute\tO\texecute\tO\nin\tO\tin\tO\na\tO\ta\tO\nserial\tO\tserial\tO\nfashion\tO\tfashion\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nonce\tO\tonce\tO\nexecution\tO\texecution\tO\nreaches\tO\treaches\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nawait\tB-Code_Block\tawait\tB-Code_Block\n,\tO\t,\tO\nexecution\tO\texecution\tO\nis\tO\tis\tO\neffectively\tO\teffectively\tO\n\"\tO\t\"\tO\npaused\tO\tpaused\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nresume\tO\tresume\tO\nuntil\tO\tuntil\tO\nthat\tO\tthat\tO\nTask\tB-Library_Class\tTask\tB-Code_Block\nis\tO\tis\tO\ncomplete\tO\tcomplete\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\navoid\tO\tavoid\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nnot\tO\tnot\tO\nawaiting\tO\tawaiting\tO\nthe\tO\tthe\tO\nTask\tB-Library_Class\tTask\tB-Code_Block\n,\tO\t,\tO\njust\tO\tjust\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\ntasks\tB-Library_Class\ttasks\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\ntrack\tO\ttrack\tO\nof\tO\tof\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nfacilitate\tO\tfacilitate\tO\nthis\tO\tthis\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nintroduced\tO\tintroduced\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nhelper\tO\thelper\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\nbody\tO\tbody\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nloops\tO\tloops\tO\nand\tO\tand\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nTask\tB-Library_Class\tTask\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3234\tI-Code_Block\tA_3234\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nmain\tO\tmain\tO\nloop\tO\tloop\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\ntasks\tB-Library_Class\ttasks\tO\nto\tO\tto\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\nare\tO\tare\tO\nkicked\tO\tkicked\tO\noff\tO\toff\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nessentially\tO\tessentially\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\ntasks\tB-Library_Class\ttasks\tO\nin\tO\tin\tO\nparallel\tO\tparallel\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nincrease\tO\tincrease\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nconcurrent\tO\tconcurrent\tO\nconnections\tO\tconnections\tO\nyour\tO\tyour\tO\nserver\tB-Application\tserver\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nif\tO\tif\tO\nit\tO\tit\tO\ncauses\tO\tcauses\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nmain\tB-Function_Name\tmain\tO\nmethod\tO\tmethod\tO\nthen\tO\tthen\tO\nbecomes\tO\tbecomes\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3235\tI-Code_Block\tA_3235\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23629090\tO\t23629090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23629090/\tO\thttps://stackoverflow.com/questions/23629090/\tO\n\t\n\t\nThose\tO\tThose\tO\n'\tO\t'\tO\nawait\tB-Code_Block\tawait\tO\n's\tO\t's\tO\ninside\tO\tinside\tO\nyour\tO\tyour\tO\nloop\tO\tloop\tO\nwill\tO\twill\tO\nserialize\tO\tserialize\tO\nthe\tO\tthe\tO\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nConsider\tO\tConsider\tO\ninstead\tO\tinstead\tO\nusing\tO\tusing\tO\n.ContinueWith\tB-Library_Function\t.ContinueWith\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n,\tO\t,\tO\nkeep\tO\tkeep\tO\ntrack\tO\ttrack\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntasks\tO\ttasks\tO\nin\tO\tin\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\nTask.WhenAll\tB-Library_Function\tTask.WhenAll\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndone\tO\tdone\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nparallel\tO\tparallel\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42339121\tO\t42339121\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42339121/\tO\thttps://stackoverflow.com/questions/42339121/\tO\n\t\n\t\nDear\tO\tDear\tO\nExpert\tO\tExpert\tO\nneed\tO\tneed\tO\nHelp\tO\tHelp\tO\nfirst\tO\tfirst\tO\nsee\tO\tsee\tO\nmy\tO\tmy\tO\nview\tO\tview\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\ncodeigniter\tB-Library\tcodeigniter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5393\tI-Code_Block\tQ_5393\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthis\tO\tthis\tO\nmy\tO\tmy\tO\nmodel\tO\tmodel\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5394\tI-Code_Block\tQ_5394\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\nif\tO\tif\tO\ni\tO\ti\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nimportant\tO\timportant\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5395\tI-Code_Block\tQ_5395\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nif\tO\tif\tO\nsearching\tO\tsearching\tO\nbetween\tO\tbetween\tO\ntwo\tO\ttwo\tO\ndate\tO\tdate\tO\ntglawal\tB-Variable_Name\ttglawal\tO\nand\tO\tand\tO\ntglakhir\tB-Variable_Name\ttglakhir\tO\n\t\nim\tO\tim\tO\nusing\tO\tusing\tO\nbetween\tO\tbetween\tO\n2016-12-04\tB-Value\t2016-12-04\tO\nand\tO\tand\tO\n2016-12-04\tB-Value\t2016-12-04\tO\noutput\tO\toutput\tO\ndisplay\tO\tdisplay\tO\nwill\tO\twill\tO\nempty\tB-Value\tempty\tO\n\t\nbut\tO\tbut\tO\nif\tO\tif\tO\nusing\tO\tusing\tO\nbetween\tO\tbetween\tO\n2016-12-04\tB-Value\t2016-12-04\tO\nand\tO\tand\tO\n2016-12-06\tB-Value\t2016-12-06\tO\noutput\tO\toutput\tO\nsuccess\tB-Value\tsuccess\tO\nwhere\tO\twhere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nor\tO\tor\tO\nmaybe\tO\tmaybe\tO\nim\tO\tim\tO\nusing\tO\tusing\tO\nwhere\tO\twhere\tO\nor\tO\tor\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nlike\tO\tlike\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42339121\tO\t42339121\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42339121/\tO\thttps://stackoverflow.com/questions/42339121/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n>=\tB-Code_Block\t>=\tO\nand\tO\tand\tO\n<=\tB-Code_Block\t<=\tO\noperator\tO\toperator\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\nmodel\tO\tmodel\tO\ntry\tO\ttry\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6086\tI-Code_Block\tA_6086\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\nwill\tO\twill\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbetween\tO\tbetween\tO\ndates\tO\tdates\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\ndates\tO\tdates\tO\nselected\tO\tselected\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nthe\tO\tthe\tO\noperator\tO\toperator\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\nand\tO\tand\tO\nending\tO\tending\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21995689\tO\t21995689\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21995689/\tO\thttps://stackoverflow.com/questions/21995689/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nto_secs\tB-Function_Name\tto_secs\tB-Code_Block\nthat\tO\tthat\tO\nconverts\tO\tconverts\tO\nhours\tO\thours\tO\n,\tO\t,\tO\nminutes\tO\tminutes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nseconds\tO\tseconds\tO\nto\tO\tto\tO\na\tO\ta\tO\ntotal\tO\ttotal\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nseconds\tO\tseconds\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nbook\tO\tbook\tO\nit\tO\tit\tO\nsays\tO\tsays\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntest\tO\ttest\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2381\tI-Code_Block\tQ_2381\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21995689\tO\t21995689\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21995689/\tO\thttps://stackoverflow.com/questions/21995689/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\n3600\tO\t3600\tO\nseconds\tO\tseconds\tO\nin\tO\tin\tO\nan\tO\tan\tO\nhour\tO\thour\tO\n,\tO\t,\tO\n60\tO\t60\tO\nin\tO\tin\tO\na\tO\ta\tO\nminute\tO\tminute\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrest\tO\trest\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\narithmetic\tO\tarithmetic\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2984\tI-Code_Block\tA_2984\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDemo\tO\tDemo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2985\tI-Code_Block\tA_2985\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45753833\tO\t45753833\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45753833/\tO\thttps://stackoverflow.com/questions/45753833/\tO\n\t\n\t\nAs\tO\tAs\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nformat\tO\tformat\tO\nof\tO\tof\tO\nLiferays\tB-Library\tLiferays\tO\ninput-date\tB-Library_Variable\tinput-date\tO\nfield\tI-Library_Variable\tfield\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nsuccessfull\tO\tsuccessfull\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\ni\tO\ti\tO\nwas\tO\twas\tO\ntesting\tO\ttesting\tO\nit\tO\tit\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\nbrowsers\tB-Application\tbrowsers\tO\nand\tO\tand\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\nFirefox\tB-Application\tFirefox\tO\nmesses\tO\tmesses\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nfield\tB-Library_Variable\tfield\tO\n.\tO\t.\tO\n\t\nNo\tO\tNo\tO\nproblems\tO\tproblems\tO\nin\tO\tin\tO\nIE\tB-Application\tIE\tO\nor\tO\tor\tO\nChrome\tB-Application\tChrome\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ninitially\tO\tinitially\tO\ndisplays\tO\tdisplays\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ndate\tO\tdate\tO\nlike\tO\tlike\tO\n18.08.2017\tB-Value\t18.08.2017\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nfield\tB-Library_Variable\tfield\tO\n(\tO\t(\tO\nno\tO\tno\tO\nchange\tO\tchange\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nthat\tO\tthat\tO\nmoment\tO\tmoment\tO\n)\tO\t)\tO\nit\tO\tit\tO\ndisplays\tO\tdisplays\tO\nd.08.2017\tB-Value\td.08.2017\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nfirst\tO\tfirst\tO\ni\tO\ti\tO\nthought\tO\tthought\tO\ni\tO\ti\tO\nmessed\tO\tmessed\tO\nit\tO\tit\tO\nup\tO\tup\tO\ndue\tO\tdue\tO\nmy\tO\tmy\tO\nformat\tO\tformat\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nafter\tO\tafter\tO\nundoing\tO\tundoing\tO\nthese\tO\tthese\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nstill\tO\tstill\tO\nexists\tO\texists\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nvalue\tO\tvalue\tO\nitself\tO\titself\tO\nhowever\tO\thowever\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nnormal\tO\tnormal\tO\nand\tO\tand\tO\nmy\tO\tmy\tO\njava\tB-Language\tjava\tO\nmethod\tO\tmethod\tO\ndoesnt\tO\tdoesnt\tO\nget\tO\tget\tO\nany\tO\tany\tO\nerros\tO\terros\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npicker\tB-User_Interface_Element\tpicker\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nhidden\tO\thidden\tO\nfields\tO\tfields\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nthe\tO\tthe\tO\nvisible\tO\tvisible\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nis\tO\tis\tO\nmessed\tO\tmessed\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlooked\tO\tlooked\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nconsole\tO\tconsole\tO\nand\tO\tand\tO\nsaw\tO\tsaw\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nLiferay.Form\tB-File_Name\tLiferay.Form\tO\nis\tO\tis\tO\nundefined\tO\tundefined\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nrelevant\tO\trelevant\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nIE\tB-Application\tIE\tO\nand\tO\tand\tO\nChrome\tB-Application\tChrome\tO\nare\tO\tare\tO\ndisplaying\tO\tdisplaying\tO\nerrors\tO\terrors\tO\ntoo\tO\ttoo\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nare\tO\tare\tO\nalso\tO\talso\tO\ndisplaying\tO\tdisplaying\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nnormally\tO\tnormally\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5995\tI-Code_Block\tQ_5995\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nget\tO\tget\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndatepicker\tB-User_Interface_Element\tdatepicker\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5996\tI-Code_Block\tQ_5996\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\njs\tB-Language\tjs\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\ni\tO\ti\tO\n've\tO\t've\tO\nwritten\tO\twritten\tO\nnone\tO\tnone\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27283346\tO\t27283346\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27283346/\tO\thttps://stackoverflow.com/questions/27283346/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nMOBILE\tB-Device\tMOBILE\tO\nfirst\tO\tfirst\tO\napproach\tO\tapproach\tO\nto\tO\tto\tO\nresponsive\tO\tresponsive\tO\ndesign\tO\tdesign\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ndoing\tO\tdoing\tO\nso\tO\tso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nmy\tO\tmy\tO\nMAX\tB-Variable_Name\tMAX\tO\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\nto\tO\tto\tO\nMIN\tB-Variable_Name\tMIN\tO\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\n.\tO\t.\tO\n\t\nTherefore\tO\tTherefore\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\ngraceful\tO\tgraceful\tO\ndegradation\tO\tdegradation\tO\n,\tO\t,\tO\nI\tO\tI\tO\naim\tO\taim\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nprogressive\tO\tprogressive\tO\nenhancement\tO\tenhancement\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nexplain\tO\texplain\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nre-engineer\tO\tre-engineer\tO\nmy\tO\tmy\tO\nCSS\tB-Language\tCSS\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nMIN-width\tB-Library_Variable\tMIN-width\tO\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\nas\tO\tas\tO\nopposed\tO\topposed\tO\nto\tO\tto\tO\nMAX-width\tB-Library_Variable\tMAX-width\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nbelow\tO\tbelow\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntrimmed\tO\ttrimmed\tO\nout\tO\tout\tO\n95%\tO\t95%\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncss\tB-Language\tcss\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nleft\tO\tleft\tO\nthe\tO\tthe\tO\nbreakpoints\tO\tbreakpoints\tO\n\t\n//\tO\t//\tO\n------------------------------MAIN\tO\t------------------------------MAIN\tO\nCSS\tO\tCSS\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3146\tI-Code_Block\tQ_3146\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n//\tO\t//\tO\n--------------------------------MEDIA\tO\t--------------------------------MEDIA\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3147\tI-Code_Block\tQ_3147\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n//\tO\t//\tO\n--------------------------------MEDIA\tO\t--------------------------------MEDIA\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3148\tI-Code_Block\tQ_3148\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27283346\tO\t27283346\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27283346/\tO\thttps://stackoverflow.com/questions/27283346/\tO\n\t\n\t\n@media\tB-Code_Block\t@media\tO\nMIN-width\tI-Code_Block\tMIN-width\tO\n:\tI-Code_Block\t:\tO\n\t\nMin-width\tB-Library_Variable\tMin-width\tO\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\neasy\tO\teasy\tO\n,\tO\t,\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nand\tO\tand\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\ntoo\tO\ttoo\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nusing\tO\tusing\tO\nMAX\tB-Variable_Name\tMAX\tO\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nusing\tO\tusing\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3780\tI-Code_Block\tA_3780\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nimportant\tO\timportant\tO\nto\tO\tto\tO\nstill\tO\tstill\tO\nuse\tO\tuse\tO\nmax-width\tB-Library_Variable\tmax-width\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nlimits\tO\tlimits\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\nof\tO\tof\tO\nobjects\tO\tobjects\tO\non\tO\ton\tO\ncertain\tO\tcertain\tO\nscreens\tB-Device\tscreens\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nmin-width\tB-Library_Variable\tmin-width\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nespecially\tO\tespecially\tO\nuseful\tO\tuseful\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\ncertain\tO\tcertain\tO\nstyles\tO\tstyles\tO\nto\tO\tto\tO\napply\tO\tapply\tO\nto\tO\tto\tO\na\tO\ta\tO\nsmaller\tO\tsmaller\tO\nobject\tO\tobject\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nhave\tO\thave\tO\nthat\tO\tthat\tO\nsame\tO\tsame\tO\nstyle\tO\tstyle\tO\napply\tO\tapply\tO\nto\tO\tto\tO\na\tO\ta\tO\nlarger\tO\tlarger\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nstyles\tO\tstyles\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nminimum\tO\tminimum\tO\nsize\tO\tsize\tO\nbut\tO\tbut\tO\nalso\tO\talso\tO\nadd\tO\tadd\tO\non\tO\ton\tO\nextra\tO\textra\tO\nstyles\tO\tstyles\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlarger\tO\tlarger\tO\nobject\tO\tobject\tO\nwith\tO\twith\tO\nout\tO\tout\tO\neffecting\tO\teffecting\tO\nthe\tO\tthe\tO\nsmaller\tO\tsmaller\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3781\tI-Code_Block\tA_3781\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nstyles\tO\tstyles\tO\nfrom\tO\tfrom\tO\nscreens\tB-Device\tscreens\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nover\tO\tover\tO\n740px\tB-Value\t740px\tO\nwill\tO\twill\tO\nalready\tO\talready\tO\nbe\tO\tbe\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\nany\tO\tany\tO\nscreens\tB-Device\tscreens\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nover\tO\tover\tO\n900px\tB-Value\t900px\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthere\tO\tthere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadjust\tO\tadjust\tO\nyour\tO\tyour\tO\nstyles\tO\tstyles\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\nreducing\tO\treducing\tO\nthe\tO\tthe\tO\namount\tO\tamount\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nproduce\tO\tproduce\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nThings\tO\tThings\tO\n:\tO\t:\tO\n\t\n-When\tO\t-When\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nactual\tO\tactual\tO\nelements\tO\telements\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nscreen\tB-Device\tscreen\tO\n(\tO\t(\tO\nexcluding\tO\texcluding\tO\nmin/max\tO\tmin/max\tO\n-sizes\tO\t-sizes\tO\nwith\tO\twith\tO\n@media\tB-Code_Block\t@media\tO\n)\tO\t)\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npercentages\tO\tpercentages\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthat\tO\tthat\tO\nway\tO\tway\tO\nitems\tO\titems\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nauto\tO\tauto\tO\nre-sized\tO\tre-sized\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\n-Here\tO\t-Here\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\nwebsite\tO\twebsite\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nendeavours\tO\tendeavours\tO\nwith\tO\twith\tO\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\n:\tO\t:\tO\nhttp://css-tricks.com/snippets/css/media-queries-for-standard-devices/\tO\thttp://css-tricks.com/snippets/css/media-queries-for-standard-devices/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27283346\tO\t27283346\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27283346/\tO\thttps://stackoverflow.com/questions/27283346/\tO\n\t\n\t\nIt\tO\tIt\tO\ntotally\tO\ttotally\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nsites\tO\tsites\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndisplayed\tO\tdisplayed\tO\nwell\tO\twell\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nwidth\tB-Library_Variable\twidth\tO\nof\tO\tof\tO\n400px\tB-Value\t400px\tO\nwhile\tO\twhile\tO\nsome\tO\tsome\tO\nothers\tO\tothers\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nminumum\tO\tminumum\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\ntoo\tO\ttoo\tO\nsmall\tO\tsmall\tO\nto\tO\tto\tO\nrender\tO\trender\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\na\tO\ta\tO\nclean\tO\tclean\tO\nmanner\tO\tmanner\tO\n.\tO\t.\tO\n\t\nVery\tO\tVery\tO\noften\tO\toften\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\neven\tO\teven\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmin-width\tB-Library_Variable\tmin-width\tO\nor\tO\tor\tO\nmax-width\tB-Library_Variable\tmax-width\tO\nwhen\tO\twhen\tO\noptimizing\tO\toptimizing\tO\nfor\tO\tfor\tO\nmobile\tO\tmobile\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nfar\tO\tfar\tO\nmore\tO\tmore\tO\nbetter\tO\tbetter\tO\npractices\tO\tpractices\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n:\tO\t:\tO\n\t\nUse\tO\tUse\tO\nEm\tB-Value\tEm\tO\nover\tO\tover\tO\nPx\tB-Value\tPx\tO\n-\tO\t-\tO\nIt\tO\tIt\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nset\tO\tset\tO\nfont-size\tB-Library_Variable\tfont-size\tO\nand\tO\tand\tO\nother\tO\tother\tO\nsizes\tO\tsizes\tO\nin\tO\tin\tO\nunits\tO\tunits\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nem\tB-Value\tem\tO\n\"\tO\t\"\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nin\tO\tin\tO\n\"\tO\t\"\tO\npx\tB-Value\tpx\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\na\tO\ta\tO\npixel\tO\tpixel\tO\nis\tO\tis\tO\nextremely\tO\textremely\tO\nsmall\tO\tsmall\tO\non\tO\ton\tO\na\tO\ta\tO\ncell\tB-Device\tcell\tO\nphone\tI-Device\tphone\tO\n,\tO\t,\tO\nwhereas\tO\twhereas\tO\nem\tO\tem\tO\nunits\tO\tunits\tO\nproportionally\tO\tproportionally\tO\nadjusts\tO\tadjusts\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\na\tO\ta\tO\nsize\tO\tsize\tO\nthat\tO\tthat\tO\nfits\tO\tfits\tO\nthe\tO\tthe\tO\nscreen\tB-Device\tscreen\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nPercentages\tO\tPercentages\tO\n-\tO\t-\tO\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nfind\tO\tfind\tO\nthat\tO\tthat\tO\nusing\tO\tusing\tO\npercentages\tO\tpercentages\tO\nare\tO\tare\tO\nfar\tO\tfar\tO\nmore\tO\tmore\tO\nfriendly\tO\tfriendly\tO\nthan\tO\tthan\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nspecifying\tO\tspecifying\tO\nthe\tO\tthe\tO\nwidth\tB-Library_Variable\twidth\tO\nor\tO\tor\tO\nheight\tB-Library_Variable\theight\tO\nof\tO\tof\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nin\tO\tin\tO\npixels\tO\tpixels\tO\nor\tO\tor\tO\nem\tO\tem\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\npercentages\tO\tpercentages\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\ncontent\tO\tcontent\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nadjust\tO\tadjust\tO\nwell\tO\twell\tO\nin\tO\tin\tO\nfor\tO\tfor\tO\nskinny\tO\tskinny\tO\ndisplays\tO\tdisplays\tO\n.\tO\t.\tO\n\t\nAvoid\tO\tAvoid\tO\nAbsolutely\tO\tAbsolutely\tO\nPositioned\tO\tPositioned\tO\nElements\tO\tElements\tO\n-\tO\t-\tO\nHaving\tO\tHaving\tO\nelements\tO\telements\tO\npositioned\tO\tpositioned\tO\nabsolutely\tO\tabsolutely\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\ndifficuly\tO\tdifficuly\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\non\tO\ton\tO\nsmall\tO\tsmall\tO\ndisplays\tO\tdisplays\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nsimply\tO\tsimply\tO\ncan\tO\tcan\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nabsolute\tO\tabsolute\tO\nelements\tO\telements\tO\nmay\tO\tmay\tO\nget\tO\tget\tO\ntoo\tO\ttoo\tO\nnear\tO\tnear\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nrelatively\tO\trelatively\tO\npositioned\tO\tpositioned\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nrelative\tO\trelative\tO\npositioning\tO\tpositioning\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nclean\tO\tclean\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46536461\tO\t46536461\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46536461/\tO\thttps://stackoverflow.com/questions/46536461/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nlearning\tO\tlearning\tO\npython\tB-Language\tpython\tO\nunittest\tB-Library\tunittest\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nask\tO\task\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\ntest_code\tB-Variable_Name\ttest_code\tO\n'\tO\t'\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6121\tI-Code_Block\tQ_6121\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nthe\tO\tthe\tO\nargument\tO\targument\tO\nof\tO\tof\tO\n'\tO\t'\tO\n-m\tB-Code_Block\t-m\tO\n'\tO\t'\tO\noption\tO\toption\tO\nor\tO\tor\tO\none\tO\tone\tO\nof\tO\tof\tO\nunittest\tB-Library\tunittest\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\nunittest\tB-Library\tunittest\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46536461\tO\t46536461\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46536461/\tO\thttps://stackoverflow.com/questions/46536461/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nunittest\tB-Library\tunittest\tO\nmodule\tO\tmodule\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\ntests\tO\ttests\tO\nfrom\tO\tfrom\tO\nmodules\tO\tmodules\tO\nin\tO\tin\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\n-m\tB-Code_Block\t-m\tO\nis\tO\tis\tO\na\tO\ta\tO\nflag\tO\tflag\tO\nand\tO\tand\tO\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\npython\tB-Language\tpython\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\ntest\tO\ttest\tO\nmethods\tO\tmethods\tO\nof\tO\tof\tO\nunittest\tB-Library\tunittest\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4175017\tO\t4175017\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4175017/\tO\thttps://stackoverflow.com/questions/4175017/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nrepresented\tO\trepresented\tO\nin\tO\tin\tO\nPHP\tB-Language\tPHP\tO\nas\tO\tas\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_283\tI-Code_Block\tQ_283\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nrepresented\tO\trepresented\tO\nin\tO\tin\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nway\tO\tway\tO\n(\tO\t(\tO\nhere\tO\there\tO\nwithout\tO\twithout\tO\ninner\tO\tinner\tO\narrays\tB-Data_Structure\tarrays\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nmind\tO\tmind\tO\nadding\tO\tadding\tO\nthem\tO\tthem\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_284\tI-Code_Block\tQ_284\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncombination\tO\tcombination\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_285\tI-Code_Block\tQ_285\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfailed\tO\tfailed\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\noperation\tO\toperation\tO\nhas\tO\thas\tO\na\tO\ta\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nHas\tO\tHas\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nanyone\tO\tanyone\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nmyself\tO\tmyself\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4175017\tO\t4175017\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4175017/\tO\thttps://stackoverflow.com/questions/4175017/\tO\n\t\n\t\nJust\tO\tJust\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\ndoes\tO\tdoes\tO\nwant\tO\twant\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nwould\tO\twould\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncartesian\tO\tcartesian\tO\nproduct\tO\tproduct\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\narrays\tB-Data_Structure\tarrays\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_533\tI-Code_Block\tA_533\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nadditionally\tO\tadditionally\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nfrom\tO\tfrom\tO\n$array1\tB-Variable_Name\t$array1\tO\nand\tO\tand\tO\n$array2\tB-Variable_Name\t$array2\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmerge\tO\tmerge\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\narrays\tB-Data_Structure\tarrays\tO\ntogether\tO\ttogether\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nnested\tO\tnested\tO\nforeach\tO\tforeach\tO\nloops\tO\tloops\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_534\tI-Code_Block\tA_534\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4175017\tO\t4175017\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4175017/\tO\thttps://stackoverflow.com/questions/4175017/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nthe\tO\tthe\tO\ncartesian\tO\tcartesian\tO\nproduct\tO\tproduct\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nnative\tO\tnative\tO\nPHP\tB-Language\tPHP\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ncalculate\tO\tcalculate\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30869401\tO\t30869401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30869401/\tO\thttps://stackoverflow.com/questions/30869401/\tO\n\t\n\t\nMy\tO\tMy\tO\nangularjs\tB-Library\tangularjs\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nembedded\tO\tembedded\tO\ninto\tO\tinto\tO\nasp.net\tB-Library\tasp.net\tO\nmvc\tI-Library\tmvc\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nangularjs\tB-Library\tangularjs\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nsending\tO\tsending\tO\na\tO\ta\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\na\tO\ta\tO\ncross\tO\tcross\tO\ndomain\tO\tdomain\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3721\tI-Code_Block\tQ_3721\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nfix\tO\tfix\tO\non\tO\ton\tO\nasp.net\tB-Library\tasp.net\tO\nmvc\tI-Library\tmvc\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\ninside\tO\tinside\tO\nwhich\tO\twhich\tO\nthis\tO\tthis\tO\nangularjs\tB-Library\tangularjs\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\nor\tO\tor\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\ncheck\tO\tcheck\tO\non\tO\ton\tO\nmywebservice.com\tO\tmywebservice.com\tO\nside\tO\tside\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30869401\tO\t30869401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30869401/\tO\thttps://stackoverflow.com/questions/30869401/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\na\tO\ta\tO\nserver\tB-Application\tserver\tO\nof\tO\tof\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\norigin\tO\torigin\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nresolved\tO\tresolved\tO\non\tO\ton\tO\nmywebservice.com\tO\tmywebservice.com\tO\nby\tO\tby\tO\nallowing\tO\tallowing\tO\nyour\tO\tyour\tO\ndomain\tO\tdomain\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nrequests\tO\trequests\tO\nto\tO\tto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nserver\tB-Application\tserver\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsend\tO\tsend\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nAngular\tB-Library\tAngular\tO\nfront\tO\tfront\tO\nend\tO\tend\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22066032\tO\t22066032\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22066032/\tO\thttps://stackoverflow.com/questions/22066032/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nChoiceBox\tB-Library_Class\tChoiceBox\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\npress\tO\tpress\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nChoiceBox\tB-Library_Class\tChoiceBox\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2389\tI-Code_Block\tQ_2389\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22066032\tO\t22066032\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22066032/\tO\thttps://stackoverflow.com/questions/22066032/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ninitially\tO\tinitially\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nChoiceBox\tB-Library_Class\tChoiceBox\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\npane\tB-User_Interface_Element\tpane\tO\nand\tO\tand\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvisibility\tO\tvisibility\tO\nas\tO\tas\tO\nfalse\tB-Value\tfalse\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2991\tI-Code_Block\tA_2991\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLater\tO\tLater\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvisibility\tO\tvisibility\tO\nas\tO\tas\tO\ntrue\tB-Value\ttrue\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2992\tI-Code_Block\tA_2992\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nI\tO\tI\tO\njust\tO\tjust\tO\ntyped\tO\ttyped\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nso\tO\tso\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncompile\tO\tcompile\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n!\tO\t!\tO\n\t\nJust\tO\tJust\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47142335\tO\t47142335\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47142335/\tO\thttps://stackoverflow.com/questions/47142335/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nrandom\tO\trandom\tO\nnumber\tO\tnumber\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nrange\tO\trange\tO\nin\tO\tin\tO\nGroovy\tB-Language\tGroovy\tO\nScript\tO\tScript\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nbetween\tO\tbetween\tO\n10,000\tB-Value\t10,000\tO\nand\tO\tand\tO\n90,000\tB-Value\t90,000\tO\n\t\nBelow\tO\tBelow\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\nattempts\tO\tattempts\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6250\tI-Code_Block\tQ_6250\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6251\tI-Code_Block\tQ_6251\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBoth\tO\tBoth\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nrandom\tO\trandom\tO\nnumber\tO\tnumber\tO\nyes\tO\tyes\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nof\tO\tof\tO\n10\tB-Value\t10\tO\n,\tI-Value\t,\tO\n00-90\tI-Value\t00-90\tO\n,\tI-Value\t,\tO\n000\tI-Value\t000\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47142335\tO\t47142335\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47142335/\tO\thttps://stackoverflow.com/questions/47142335/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nmy\tO\tmy\tO\nerror\tO\terror\tO\n:\tO\t:\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nthe\tO\tthe\tO\n90000\tB-Value\t90000\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\n10000\tB-Value\t10000\tO\nfor\tO\tfor\tO\n1\tB-Value\t1\tO\n.\tO\t.\tO\n\t\nCorrect\tO\tCorrect\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6870\tI-Code_Block\tA_6870\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34700061\tO\t34700061\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34700061/\tO\thttps://stackoverflow.com/questions/34700061/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfixed\tO\tfixed\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmoves\tO\tmoves\tO\nwith\tO\twith\tO\nscrolling\tO\tscrolling\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ndynamically\tO\tdynamically\tO\nanother\tO\tanother\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nbefore\tO\tbefore\tO\nthis\tO\tthis\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\ndisappear\tO\tdisappear\tO\nonce\tO\tonce\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nstick\tO\tstick\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmoving\tO\tmoving\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nprepend\tO\tprepend\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbody\tO\tbody\tO\nwith\tO\twith\tO\nposition\tO\tposition\tO\nfixed\tO\tfixed\tO\n-\tO\t-\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nprepend\tO\tprepend\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nway\tO\tway\tO\nto\tO\tto\tO\napproach\tO\tapproach\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4229\tI-Code_Block\tQ_4229\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhttps://jsfiddle.net/rzpL34ef/3/\tO\thttps://jsfiddle.net/rzpL34ef/3/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34700061\tO\t34700061\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34700061/\tO\thttps://stackoverflow.com/questions/34700061/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4941\tI-Code_Block\tQ_4941\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4942\tI-Code_Block\tQ_4942\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4943\tI-Code_Block\tQ_4943\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33610138\tO\t33610138\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33610138/\tO\thttps://stackoverflow.com/questions/33610138/\tO\n\t\n\t\nConsider\tO\tConsider\tO\nfollowing\tO\tfollowing\tO\nJavascript\tB-Language\tJavascript\tO\ncode\tO\tcode\tO\nexample\tO\texample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4104\tI-Code_Block\tQ_4104\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nIDEA\tB-Application\tIDEA\tO\nsay\tO\tsay\tO\n{\tB-Code_Block\t{\tO\n}\tB-Code_Block\t}\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nhash\tB-Library_Class\thash\tO\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n\t\nJSDoc\tB-Language\tJSDoc\tO\nstyle\tO\tstyle\tO\nwas\tO\twas\tO\npicked\tO\tpicked\tO\nup\tO\tup\tO\nfrom\tO\tfrom\tO\nZimbra\tB-Application\tZimbra\tO\nfrontend\tO\tfrontend\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nDwtComposite\tB-Library_Variable\tDwtComposite\tO\nconstructor\tO\tconstructor\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nitself\tO\titself\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13016890\tO\t13016890\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13016890/\tO\thttps://stackoverflow.com/questions/13016890/\tO\n\t\n\t\nWhat\tO\tWhat\tO\ncode\tO\tcode\tO\nquality\tO\tquality\tO\n/\tO\t/\tO\ncode\tO\tcode\tO\ncoverage\tO\tcoverage\tO\ntools\tO\ttools\tO\nare\tO\tare\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nJasmine\tB-Library\tJasmine\tO\n?\tO\t?\tO\n\t\nWorking\tO\tWorking\tO\nin\tO\tin\tO\nRails\tB-Library\tRails\tO\n3.2.2\tB-Version\t3.2.2\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13016890\tO\t13016890\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13016890/\tO\thttps://stackoverflow.com/questions/13016890/\tO\n\t\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nJsTestDriver\tB-Library\tJsTestDriver\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nJasmine\tB-Library\tJasmine\tO\nadapter\tO\tadapter\tO\nto\tO\tto\tO\nget\tO\tget\tO\ncoverage\tO\tcoverage\tO\nmetrics\tO\tmetrics\tO\n.\tO\t.\tO\n\t\nJSCoverage\tB-Application\tJSCoverage\tO\nis\tO\tis\tO\na\tO\ta\tO\nC\tB-Language\tC\tO\nbased\tO\tbased\tO\ntool\tO\ttool\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\nout\tO\tout\tO\nof\tO\tof\tO\nband\tO\tband\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncommand\tB-Application\tcommand\tO\nline.\tI-Application\tline.\tO\n.\tO\t.\tO\n\t\nJesCov\tB-Application\tJesCov\tO\nis\tO\tis\tO\na\tO\ta\tO\nJava\tB-Library\tJava\tO\nsolution\tO\tsolution\tO\nthat\tO\tthat\tO\nsupports\tO\tsupports\tO\nJasmine\tB-Library\tJasmine\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nfairly\tO\tfairly\tO\nstraight\tO\tstraight\tO\nforward\tO\tforward\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nwith\tO\twith\tO\nRails\tB-Library\tRails\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nhas\tO\thas\tO\na\tO\ta\tO\nJRE\tB-Application\tJRE\tO\n:\tO\t:\tO\n\t\njava\tB-Code_Block\tjava\tB-Code_Block\n-jar\tI-Code_Block\t-jar\tI-Code_Block\njescov-0.0.1.jar\tI-Code_Block\tjescov-0.0.1.jar\tI-Code_Block\none.js\tI-Code_Block\tone.js\tI-Code_Block\ntwo.js\tI-Code_Block\ttwo.js\tI-Code_Block\nthree.js\tI-Code_Block\tthree.js\tI-Code_Block\n\t\nI\tO\tI\tO\nlooked\tO\tlooked\tO\ninto\tO\tinto\tO\nJesCov\tB-Application\tJesCov\tO\nseveral\tO\tseveral\tO\nmonths\tO\tmonths\tO\nago\tO\tago\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nGrails\tB-Library\tGrails\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnever\tO\tnever\tO\nactually\tO\tactually\tO\ntried\tO\ttried\tO\nit\tO\tit\tO\nout\tO\tout\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\nhearing\tO\thearing\tO\nyour\tO\tyour\tO\nexperience\tO\texperience\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44181149\tO\t44181149\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44181149/\tO\thttps://stackoverflow.com/questions/44181149/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\npass\tO\tpass\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nparameter\tO\tparameter\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nform\tB-Library_Class\tform\tO\nPanel\tI-Library_Class\tPanel\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nstring\tB-Data_Type\tstring\tO\nparameter\tO\tparameter\tO\ndata\tO\tdata\tO\non\tO\ton\tO\nGWT\tB-Library\tGWT\tO\nform\tB-Library_Class\tform\tO\npanel\tI-Library_Class\tpanel\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nservlet\tB-Library\tservlet\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nreceive\tO\treceive\tO\npassed\tO\tpassed\tO\nstring\tB-Data_Type\tstring\tO\nparameter\tO\tparameter\tO\nusing\tO\tusing\tO\npost\tO\tpost\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nlarge\tO\tlarge\tO\namounts\tO\tamounts\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nservlet\tB-Library\tservlet\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5721\tI-Code_Block\tQ_5721\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44181149\tO\t44181149\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44181149/\tO\thttps://stackoverflow.com/questions/44181149/\tO\n\t\n\t\nUse\tO\tUse\tO\nHidden\tB-Library_Class\tHidden\tO\nwidget\tB-User_Interface_Element\twidget\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncreates\tO\tcreates\tO\n<input\tB-Code_Block\t<input\tB-Code_Block\ntype='hidden'>\tI-Code_Block\ttype='hidden'>\tI-Code_Block\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38410109\tO\t38410109\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38410109/\tO\thttps://stackoverflow.com/questions/38410109/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nsystem\tO\tsystem\tO\nso\tO\tso\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nparams\tO\tparams\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n[\tO\t[\tO\ntitle\tB-HTML_XML_Tag\ttitle\tO\n]\tO\t]\tO\nand\tO\tand\tO\nit\tO\tit\tO\n'll\tO\t'll\tO\nshow\tO\tshow\tO\nmy\tO\tmy\tO\ntitle\tO\ttitle\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nincluded\tO\tincluded\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nalso\tO\talso\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nphp\tB-Language\tphp\tO\ncode\tO\tcode\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\nit\tO\tit\tO\nand\tO\tand\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\ndifficult\tO\tdifficult\tO\ngetting\tO\tgetting\tO\nthem\tO\tthem\tO\nboth\tO\tboth\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ninclude\tB-Library_Function\tinclude\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nfile_get_Contents\tB-Library_Function\tfile_get_Contents\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\ninclude\tB-Library_Function\tinclude\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nparams\tO\tparams\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nfile_get_contents\tB-Library_Function\tfile_get_contents\tO\nthe\tO\tthe\tO\nphp\tB-Language\tphp\tO\ndoesnt\tO\tdoesnt\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndoesnt\tO\tdoesnt\tO\nshow\tO\tshow\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4837\tI-Code_Block\tQ_4837\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHope\tO\tHope\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13102747\tO\t13102747\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13102747/\tO\thttps://stackoverflow.com/questions/13102747/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\ntagit\tB-Library_Function\ttagit\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\n(\tO\t(\tO\npart\tO\tpart\tO\nof\tO\tof\tO\n)\tO\t)\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1247\tI-Code_Block\tQ_1247\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nwise\tO\twise\tO\nmen\tO\tmen\tO\n,\tO\t,\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13102747\tO\t13102747\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13102747/\tO\thttps://stackoverflow.com/questions/13102747/\tO\n\t\n\t\nsince\tO\tsince\tO\nno\tO\tno\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\nloading\tO\tloading\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nthis.Also\tO\tthis.Also\tO\nwhich\tO\twhich\tO\nplugin\tO\tplugin\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\nusing\tO\tusing\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1685\tI-Code_Block\tA_1685\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16528731\tO\t16528731\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16528731/\tO\thttps://stackoverflow.com/questions/16528731/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nAndroid\tB-Operating_System\tAndroid\tO\nApplication\tO\tApplication\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nrecord\tO\trecord\tO\na\tO\ta\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nand\tO\tand\tO\n,\tO\t,\tO\nduring\tO\tduring\tO\nrecording\tO\trecording\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\ncapture\tO\tcapture\tO\nframes\tO\tframes\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nemulator\tB-Application\temulator\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\nEclipse\tB-Application\tEclipse\tO\nJuno\tB-Version\tJuno\tO\n,\tO\t,\tO\nOpenCV4Android\tB-Library\tOpenCV4Android\tO\nver\tO\tver\tO\n.\tO\t.\tO\n2.4.5\tB-Version\t2.4.5\tO\n,\tO\t,\tO\nand\tO\tand\tO\nandroid-ndk\tB-Application\tandroid-ndk\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nlogcat\tB-Application\tlogcat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1655\tI-Code_Block\tQ_1655\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\nMainActivity.java\tB-File_Name\tMainActivity.java\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1656\tI-Code_Block\tQ_1656\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n2)\tO\t2)\tO\njniVideoCapture.cpp\tB-File_Name\tjniVideoCapture.cpp\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1657\tI-Code_Block\tQ_1657\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n3)\tO\t3)\tO\nAndroid.mk\tB-File_Name\tAndroid.mk\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1658\tI-Code_Block\tQ_1658\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nmanually\tO\tmanually\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndir\tO\tdir\tO\nlibs\tB-File_Name\tlibs\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\nlibopencv_java.so\tB-File_Name\tlibopencv_java.so\tO\n,\tO\t,\tO\ntaking\tO\ttaking\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nopencv\tB-Library\topencv\tO\ntutorial\tO\ttutorial\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n've\tO\t've\tO\nloaded\tO\tloaded\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\njniVideoCapture\tB-Library_Class\tjniVideoCapture\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nMainActivity\tB-File_Name\tMainActivity\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nbetter\tO\tbetter\tO\nresults\tO\tresults\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\nis\tO\tis\tO\nautomatically\tO\tautomatically\tO\nremoved\tO\tremoved\tO\nfrom\tO\tfrom\tO\nlibs/\tB-File_Name\tlibs/\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16528731\tO\t16528731\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16528731/\tO\thttps://stackoverflow.com/questions/16528731/\tO\n\t\n\t\nJust\tO\tJust\tO\nadd\tO\tadd\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2137\tI-Code_Block\tA_2137\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nright\tO\tright\tO\nafter\tO\tafter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2138\tI-Code_Block\tA_2138\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\njust\tO\tjust\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nlink\tO\tlink\tO\n(\tO\t(\tO\nstatically\tO\tstatically\tO\n)\tO\t)\tO\nopencv\tB-Library\topencv\tO\nlibrary\tO\tlibrary\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nmistake\tO\tmistake\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21818346\tO\t21818346\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21818346/\tO\thttps://stackoverflow.com/questions/21818346/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\ntable\tB-Library_Class\ttable\tO\n(\tO\t(\tO\nabout\tO\tabout\tO\n40M\tO\t40M\tO\nRows\tB-Data_Structure\tRows\tO\n)\tO\t)\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nhad\tO\thad\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\n0\tB-Value\t0\tO\nwhich\tO\twhich\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nnull\tB-Value\tnull\tO\ninstead\tO\tinstead\tO\nso\tO\tso\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nbetter\tO\tbetter\tO\nkey\tO\tkey\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nwritten\tO\twritten\tO\nscripts\tO\tscripts\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nchop\tO\tchop\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\ninto\tO\tinto\tO\nchunks\tO\tchunks\tO\nof\tO\tof\tO\n10000\tO\t10000\tO\nrecords\tO\trecords\tO\n,\tO\t,\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\noccurance\tO\toccurance\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nwith\tO\twith\tO\nzero\tB-Value\tzero\tO\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nnull\tB-Value\tnull\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2352\tI-Code_Block\tQ_2352\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\ngreat\tO\tgreat\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nfor\tO\tfor\tO\never\tO\tever\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthinking\tO\tthinking\tO\nthe\tO\tthe\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\ntable\tB-Library_Class\ttable\tO\nand\tO\tand\tO\ninsert\tO\tinsert\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrename\tO\trename\tO\nit\tO\tit\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nold\tO\told\tO\ntable\tB-Library_Class\ttable\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nhaving\tO\thaving\tO\nzero\tB-Value\tzero\tO\n.\tO\t.\tO\n\t\nQuestion\tO\tQuestion\tO\nis\tO\tis\tO\n-\tO\t-\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\na\tO\ta\tO\ninsert\tO\tinsert\tO\ninto\tO\tinto\tO\ntable2\tB-Variable_Name\ttable2\tO\nselect\tO\tselect\tO\nfrom\tO\tfrom\tO\ntable1\tB-Variable_Name\ttable1\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ncleanse\tO\tcleanse\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\ntable1\tB-Variable_Name\ttable1\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\ngoes\tO\tgoes\tO\nin\tO\tin\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21818346\tO\t21818346\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21818346/\tO\thttps://stackoverflow.com/questions/21818346/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nusually\tO\tusually\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\n,\tO\t,\tO\nsanitised\tO\tsanitised\tO\n,\tO\t,\tO\ntable\tB-Library_Class\ttable\tO\n,\tO\t,\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nDB\tB-Application\tDB\tO\nserver\tI-Application\tserver\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nhard\tO\thard\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nother\tO\tother\tO\ntables\tB-Library_Class\ttables\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nforeign\tB-Library_Variable\tforeign\tO\nkeys\tI-Library_Variable\tkeys\tO\n,\tO\t,\tO\nindexes\tB-Library_Variable\tindexes\tO\n,\tO\t,\tO\netc\tO\tetc\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ntable\tB-Library_Class\ttable\tO\n.\tO\t.\tO\n\t\nWhether\tO\tWhether\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nsanitised\tO\tsanitised\tO\ntable\tB-Library_Class\ttable\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nquicker\tO\tquicker\tO\nthan\tO\tthan\tO\nupdating\tO\tupdating\tO\nyour\tO\tyour\tO\nexisting\tO\texisting\tO\ntable\tB-Library_Class\ttable\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\ntell\tO\ttell\tO\nby\tO\tby\tO\ntrying\tO\ttrying\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21818346\tO\t21818346\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21818346/\tO\thttps://stackoverflow.com/questions/21818346/\tO\n\t\n\t\nDump\tO\tDump\tO\nthe\tO\tthe\tO\npk/clustered\tB-Library_Variable\tpk/clustered\tO\nkey\tI-Library_Variable\tkey\tO\nof\tO\tof\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nrecords\tO\trecords\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ntemp\tO\ttemp\tO\ntable\tB-Library_Class\ttable\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\njoining\tO\tjoining\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntemp\tO\ttemp\tO\ntable\tB-Library_Class\ttable\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nwill\tO\twill\tO\nensure\tO\tensure\tO\nthe\tO\tthe\tO\nlowest\tO\tlowest\tO\nlocking\tO\tlocking\tO\nlevel\tO\tlevel\tO\nand\tO\tand\tO\nquickest\tO\tquickest\tO\naccess\tO\taccess\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nidentity\tO\tidentity\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntemp\tO\ttemp\tO\ntable\tB-Library_Class\ttable\tO\n,\tO\t,\tO\nthan\tO\tthan\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nloop\tO\tloop\tO\nthrough\tO\tthrough\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nupdates\tO\tupdates\tO\nin\tO\tin\tO\nbatches\tO\tbatches\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33080954\tO\t33080954\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33080954/\tO\thttps://stackoverflow.com/questions/33080954/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmysql\tB-Application\tmysql\tO\nresult\tO\tresult\tO\nset\tO\tset\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nseveral\tO\tseveral\tO\nrows\tB-Data_Structure\trows\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nto\tO\tto\tO\ncombine\tO\tcombine\tO\nthe\tO\tthe\tO\nrows\tB-Data_Structure\trows\tO\nto\tO\tto\tO\nform\tO\tform\tO\none\tO\tone\tO\nrow\tB-Data_Structure\trow\tO\nof\tO\tof\tO\nresults\tO\tresults\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nuniqueness\tO\tuniqueness\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrows\tB-Data_Structure\trows\tO\n.\tO\t.\tO\n\t\nSay\tO\tSay\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nTable\tB-Data_Structure\tTable\tO\nresult\tO\tresult\tO\n1\tO\t1\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4017\tI-Code_Block\tQ_4017\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nproduce\tO\tproduce\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4018\tI-Code_Block\tQ_4018\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nnormal\tO\tnormal\tO\n\"\tO\t\"\tO\nSELECT\tB-Code_Block\tSELECT\tO\n*\tI-Code_Block\t*\tO\nFROM\tI-Code_Block\tFROM\tO\ncomponent_summary\tI-Code_Block\tcomponent_summary\tB-Code_Block\nWHERE\tI-Code_Block\tWHERE\tO\nlabref='A'\tI-Code_Block\tlabref='A'\tB-Code_Block\n\"\tO\t\"\tO\nThen\tO\tThen\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nside\tO\tside\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nbut\tO\tbut\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nworking.\tO\tworking.\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nSuggestions\tO\tSuggestions\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nmysql\tB-Application\tmysql\tO\nfirst\tO\tfirst\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33080954\tO\t33080954\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33080954/\tO\thttps://stackoverflow.com/questions/33080954/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4704\tI-Code_Block\tA_4704\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14943795\tO\t14943795\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14943795/\tO\thttps://stackoverflow.com/questions/14943795/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nCakePHP\tB-Library\tCakePHP\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\npage\tO\tpage\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nforms\tB-User_Interface_Element\tforms\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nform\tB-Library_Class\tform\tO\nupdates\tO\tupdates\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nfield\tO\tfield\tO\non\tO\ton\tO\na\tO\ta\tO\nrecord\tO\trecord\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nforms\tB-Library_Class\tforms\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\n\"\tO\t\"\tO\nSubmit\tO\tSubmit\tO\nAll\tO\tAll\tO\n\"\tO\t\"\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nsolutions\tO\tsolutions\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nlest\tO\tlest\tO\nthan\tO\tthan\tO\nsuccessful\tO\tsuccessful\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nfirst\tO\tfirst\tO\nattempt\tO\tattempt\tO\nwas\tO\twas\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\naction\tO\taction\tO\ncalled\tO\tcalled\tO\neditAll\tB-Function_Name\teditAll\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nthat\tO\tthat\tO\ntook\tO\ttook\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nforms\tO\tforms\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\naction\tO\taction\tO\nwithout\tO\twithout\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nhidden\tO\thidden\tO\nform\tB-Library_Class\tform\tO\nthat\tO\tthat\tO\nsaves\tO\tsaves\tO\nall\tO\tall\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nidea\tO\tidea\tO\nwas\tO\twas\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nJavascript\tB-Language\tJavascript\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\niterated\tO\titerated\tO\nover\tO\tover\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nforms\tO\tforms\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\n's\tO\t's\tO\neditAll\tB-Function_Name\teditAll\tB-Code_Block\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nimplementation\tO\timplementation\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nreasonable\tO\treasonable\tO\nway\tO\tway\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nhoping\tO\thoping\tO\nsomeone\tO\tsomeone\tO\ncould\tO\tcould\tO\npoint\tO\tpoint\tO\nme\tO\tme\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndirection\tO\tdirection\tO\nto\tO\tto\tO\nsubmitting\tO\tsubmitting\tO\nmultiple\tO\tmultiple\tO\nforms\tB-Library_Class\tforms\tO\n(\tO\t(\tO\nor\tO\tor\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nmultiple\tO\tmultiple\tO\nforms\tB-Library_Class\tforms\tO\n)\tO\t)\tO\nat\tO\tat\tO\nonce\tO\tonce\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14943795\tO\t14943795\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14943795/\tO\thttps://stackoverflow.com/questions/14943795/\tO\n\t\n\t\nI\tO\tI\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nALWAYS\tO\tALWAYS\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\n-\tO\t-\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\njust\tO\tjust\tO\nmake\tO\tmake\tO\none\tO\tone\tO\nform\tB-Library_Class\tform\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nhoping\tO\thoping\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nindividually\tO\tindividually\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nalong\tO\talong\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nKeep\tO\tKeep\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfields\tO\tfields\tO\nin\tO\tin\tO\none\tO\tone\tO\nform\tB-Library_Class\tform\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\neach\tO\teach\tO\nfield\tO\tfield\tO\nhave\tO\thave\tO\na\tO\ta\tO\n'\tO\t'\tO\nsubmitted\tB-Variable_Name\tsubmitted\tO\n'\tO\t'\tO\nvalue\tO\tvalue\tO\n(\tO\t(\tO\n1\tB-Value\t1\tO\nor\tO\tor\tO\n0\tB-Value\t0\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nSubmit\tO\tSubmit\tO\nnext\tO\tnext\tO\nto\tO\tto\tO\nan\tO\tan\tO\nindividual\tO\tindividual\tO\nfield\tO\tfield\tO\n,\tO\t,\tO\nturn\tO\tturn\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsubmitted\tB-Variable_Name\tsubmitted\tO\nvalues\tO\tvalues\tO\nto\tO\tto\tO\n0\tB-Value\t0\tO\nexcept\tO\texcept\tO\nthat\tO\tthat\tO\none\tO\tone\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nsubmit\tO\tsubmit\tO\nthe\tO\tthe\tO\nform\tB-Library_Class\tform\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\nclick\tO\tclick\tO\nSubmit\tO\tSubmit\tO\nAll\tO\tAll\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nturn\tO\tturn\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nto\tO\tto\tO\n'\tB-Value\t'\tO\n1\tI-Value\t1\tO\n'\tB-Value\t'\tO\nand\tO\tand\tO\nsubmit\tO\tsubmit\tO\nthe\tO\tthe\tO\nform\tB-Library_Class\tform\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nstrip\tO\tstrip\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\n'\tO\t'\tO\nsubmitted\tB-Variable_Name\tsubmitted\tO\n'\tO\t'\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n1\tB-Value\t1\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\nstill\tO\tstill\tO\ntake\tO\ttake\tO\nsome\tO\tsome\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nsubmitting\tO\tsubmitting\tO\nmore\tO\tmore\tO\ndata\tO\tdata\tO\nthan\tO\tthan\tO\nis\tO\tis\tO\nnecessary\tO\tnecessary\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\n...\tO\t...\tO\n.\tO\t.\tO\nit\tO\tit\tO\n's\tO\t's\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33943539\tO\t33943539\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33943539/\tO\thttps://stackoverflow.com/questions/33943539/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\na\tO\ta\tO\ncolumn\tB-Data_Structure\tcolumn\tO\ncalled\tO\tcalled\tO\nchildren_ids\tB-Variable_Name\tchildren_ids\tB-Code_Block\ninside\tO\tinside\tO\na\tO\ta\tO\nsubquery\tO\tsubquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4149\tI-Code_Block\tQ_4149\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\ncount_children\tB-Variable_Name\tcount_children\tB-Code_Block\nis\tO\tis\tO\nalways\tO\talways\tO\nNULL\tB-Value\tNULL\tB-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nreplace\tO\treplace\tO\nchildren_ids\tB-Variable_Name\tchildren_ids\tB-Code_Block\nwith\tO\twith\tO\nsome\tO\tsome\tO\nreal\tO\treal\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4150\tI-Code_Block\tQ_4150\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nan\tO\tan\tO\nouter\tO\touter\tO\ncolumn\tB-Data_Structure\tcolumn\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nsubquery\tO\tsubquery\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33943539\tO\t33943539\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33943539/\tO\thttps://stackoverflow.com/questions/33943539/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nusing\tO\tusing\tO\nfind_in_set()\tB-Library_Function\tfind_in_set()\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4861\tI-Code_Block\tA_4861\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nfix\tO\tfix\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nstructure\tO\tstructure\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nproper\tO\tproper\tO\njunction\tB-Data_Structure\tjunction\tO\ntable\tI-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nStoring\tO\tStoring\tO\nlists\tB-Data_Structure\tlists\tO\nof\tO\tof\tO\nids\tO\tids\tO\nin\tO\tin\tO\na\tO\ta\tO\ncomma\tO\tcomma\tO\ndelimited\tO\tdelimited\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nway\tO\tway\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33943539\tO\t33943539\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33943539/\tO\thttps://stackoverflow.com/questions/33943539/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nreplace\tO\treplace\tO\nIn\tB-Code_Block\tIn\tO\n(\tI-Code_Block\t(\tO\nchildren_ids\tI-Code_Block\tchildren_ids\tO\n)\tI-Code_Block\t)\tO\nby\tO\tby\tO\nIn\tB-Code_Block\tIn\tO\n(\tI-Code_Block\t(\tO\nselect\tI-Code_Block\tselect\tO\nchildren_ids\tI-Code_Block\tchildren_ids\tO\nfrom\tI-Code_Block\tfrom\tO\nhotels\tI-Code_Block\thotels\tO\nhotls1\tI-Code_Block\thotls1\tO\nwhere\tI-Code_Block\twhere\tO\nhotels.id\tI-Code_Block\thotels.id\tO\n=\tI-Code_Block\t=\tO\nhotels1.I\tI-Code_Block\thotels1.I\tO\n'\tI-Code_Block\t'\tO\nd\tI-Code_Block\td\tO\n)\tI-Code_Block\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37338311\tO\t37338311\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37338311/\tO\thttps://stackoverflow.com/questions/37338311/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\neach\tO\teach\tO\nelements\tO\telements\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ntuple\tB-Data_Structure\ttuple\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlist\tB-Data_Structure\tlist\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4668\tI-Code_Block\tQ_4668\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4669\tI-Code_Block\tQ_4669\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37338311\tO\t37338311\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37338311/\tO\thttps://stackoverflow.com/questions/37338311/\tO\n\t\n\t\nUse\tO\tUse\tO\nsplit()\tB-Library_Function\tsplit()\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5370\tI-Code_Block\tA_5370\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37338311\tO\t37338311\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37338311/\tO\thttps://stackoverflow.com/questions/37338311/\tO\n\t\n\t\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5369\tI-Code_Block\tA_5369\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3016936\tO\t3016936\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3016936/\tO\thttps://stackoverflow.com/questions/3016936/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nobject\tO\tobject\tO\nADBannerView\tB-Library_Class\tADBannerView\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nCocos2d\tB-Library\tCocos2d\tO\ngame\tO\tgame\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nbanner\tB-User_Interface_Element\tbanner\tO\napears\tO\tapears\tO\nin\tO\tin\tO\nvertical\tO\tvertical\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\nwhen\tO\twhen\tO\nmy\tO\tmy\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\nin\tO\tin\tO\nlandscape\tO\tlandscape\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_213\tI-Code_Block\tQ_213\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nbanner\tB-User_Interface_Element\tbanner\tO\nto\tO\tto\tO\nappear\tO\tappear\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\nin\tO\tin\tO\nhorizontal\tO\thorizontal\tO\n(\tO\t(\tO\nlandscape\tO\tlandscape\tO\nmode\tO\tmode\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nsupport\tO\tsupport\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3016936\tO\t3016936\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3016936/\tO\thttps://stackoverflow.com/questions/3016936/\tO\n\t\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrotate\tO\trotate\tO\nthe\tO\tthe\tO\nframe\tO\tframe\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nmade\tO\tmade\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_334\tI-Code_Block\tA_334\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nM_PI\tB-Library_Variable\tM_PI\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nmath.h\tB-File_Name\tmath.h\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncocos2d\tB-Library\tcocos2d\tO\nlibrary\tO\tlibrary\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\njust\tO\tjust\tO\npi\tB-Library_Variable\tpi\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nit\tO\tit\tO\non\tO\ton\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nplay\tO\tplay\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n2\tO\t2\tO\nnumbers\tO\tnumbers\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrect\tO\trect\tO\nto\tO\tto\tO\nposition\tO\tposition\tO\nit\tO\tit\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3016936\tO\t3016936\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3016936/\tO\thttps://stackoverflow.com/questions/3016936/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nframe\tO\tframe\tO\nsize\tO\tsize\tO\n&\tO\t&\tO\norigin\tO\torigin\tO\nin\tO\tin\tO\nshouldAutorotateToInterfaceOrientation\tB-Library_Function\tshouldAutorotateToInterfaceOrientation\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11639253\tO\t11639253\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11639253/\tO\thttps://stackoverflow.com/questions/11639253/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nconstantly\tO\tconstantly\tO\nfinding\tO\tfinding\tO\nmyself\tO\tmyself\tO\nbuilding\tO\tbuilding\tO\nprograms\tO\tprograms\tO\nwhere\tO\twhere\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmultiple\tO\tmultiple\tO\nscreens\tB-User_Interface_Element\tscreens\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nconsider\tO\tconsider\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nlayout\tO\tlayout\tO\noffers\tO\toffers\tO\ntwo\tO\ttwo\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\n:\tO\t:\tO\ncreate\tO\tcreate\tO\nfile\tO\tfile\tO\nor\tO\tor\tO\nedit\tO\tedit\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nUpon\tO\tUpon\tO\nclicking\tO\tclicking\tO\none\tO\tone\tO\n,\tO\t,\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nsupporting\tO\tsupporting\tO\nwhatever\tO\twhatever\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nthey\tO\tthey\tO\npress\tO\tpress\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nthey\tO\tthey\tO\nclick\tO\tclick\tO\na\tO\ta\tO\nback\tO\tback\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nand\tO\tand\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nthem\tO\tthem\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwondering\tO\twondering\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nbest\tO\tbest\tO\ndo\tO\tdo\tO\nseparate\tO\tseparate\tO\nmenus\tB-User_Interface_Element\tmenus\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\nbest\tO\tbest\tO\njust\tO\tjust\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nseparate\tO\tseparate\tO\nmethods\tO\tmethods\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\neach\tO\teach\tO\nscreen\tB-User_Interface_Element\tscreen\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\none\tO\tone\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\n\"\tO\t\"\tO\nback\tO\tback\tO\n\"\tO\t\"\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n)\tO\t)\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nthinking\tO\tthinking\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nseeing\tO\tseeing\tO\nas\tO\tas\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nopinions\tO\topinions\tO\non\tO\ton\tO\na\tO\ta\tO\npossibly\tO\tpossibly\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nof\tO\tof\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nscreen\tB-User_Interface_Element\tscreen\tO\ndisplayed\tO\tdisplayed\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\nAJ\tB-User_Name\tAJ\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11639253\tO\t11639253\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11639253/\tO\thttps://stackoverflow.com/questions/11639253/\tO\n\t\n\t\nBased\tO\tBased\tO\non\tO\ton\tO\nyour\tO\tyour\tO\n2nd\tO\t2nd\tO\ncomment\tO\tcomment\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nusing\tO\tusing\tO\nPanels\tB-Library_Class\tPanels\tO\n.\tO\t.\tO\n\t\nLook\tO\tLook\tO\nat\tO\tat\tO\nusing\tO\tusing\tO\nmultiple\tO\tmultiple\tO\npanels\tB-Library_Class\tpanels\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nactivities\tO\tactivities\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1509\tI-Code_Block\tA_1509\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEnsure\tO\tEnsure\tO\nall\tO\tall\tO\npanels\tB-Library_Class\tpanels\tO\nare\tO\tare\tO\nhidden\tO\thidden\tO\nwhen\tO\twhen\tO\ninitialised\tO\tinitialised\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsimply\tO\tsimply\tO\nswap\tO\tswap\tO\na\tO\ta\tO\npanel\tB-Library_Class\tpanel\tO\nfor\tO\tfor\tO\nanother\tO\tanother\tO\none\tO\tone\tO\nupon\tO\tupon\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nclick\tO\tclick\tO\nevent\tB-Library_Class\tevent\tO\nusing\tO\tusing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1510\tI-Code_Block\tA_1510\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlayout\tB-Library_Class\tlayout\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nalso\tO\talso\tO\nother\tO\tother\tO\ntechniques\tO\ttechniques\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nremoving\tO\tremoving\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\n(\tO\t(\tO\nor\tO\tor\tO\nshowing\tO\tshowing\tO\nand\tO\tand\tO\nhiding\tO\thiding\tO\nmultiple\tO\tmultiple\tO\npanels\tB-Library_Class\tpanels\tO\n)\tO\t)\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nBorderLayout\tB-Library_Class\tBorderLayout\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsimple\tO\tsimple\tO\n\"\tO\t\"\tO\nreplace\tO\treplace\tO\n\"\tO\t\"\tO\na\tO\ta\tO\nBorderLayout\tB-Library_Class\tBorderLayout\tO\narea\tO\tarea\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\npanel\tB-Library_Class\tpanel\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrevalidate\tO\trevalidate\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1511\tI-Code_Block\tA_1511\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nalso\tO\talso\tO\nthat\tO\tthat\tO\ndifferent\tO\tdifferent\tO\nOperating\tO\tOperating\tO\nSystems\tO\tSystems\tO\n(\tO\t(\tO\nWindows\tB-Operating_System\tWindows\tO\n,\tO\t,\tO\nMac\tB-Operating_System\tMac\tO\netc\tO\tetc\tO\n)\tO\t)\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\ndifferent\tO\tdifferent\tO\nstyles\tO\tstyles\tO\nthey\tO\tthey\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nadhere\tO\tadhere\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nyou\tO\tyou\tO\nmentioned\tO\tmentioned\tO\na\tO\ta\tO\ntypical\tO\ttypical\tO\nWindows\tB-Operating_System\tWindows\tO\ninstaller\tB-Application\tinstaller\tO\n;\tO\t;\tO\npeople\tO\tpeople\tO\nhave\tO\thave\tO\ncome\tO\tcome\tO\nto\tO\tto\tO\nexpect\tO\texpect\tO\nan\tO\tan\tO\ninstaller\tB-Application\tinstaller\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nand\tO\tand\tO\nwork\tO\twork\tO\nin\tO\tin\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nway\tO\tway\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\non\tO\ton\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nOS\tO\tOS\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\na\tO\ta\tO\ncompletely\tO\tcompletely\tO\ndifferent\tO\tdifferent\tO\nset\tO\tset\tO\nof\tO\tof\tO\nexpectations\tO\texpectations\tO\nand\tO\tand\tO\nlooks\tO\tlooks\tO\n.\tO\t.\tO\n\t\nFurther\tO\tFurther\tO\nreading\tO\treading\tO\n:\tO\t:\tO\n\t\nTutorial\tO\tTutorial\tO\non\tO\ton\tO\nusing\tO\tusing\tO\npanels\tB-Library_Class\tpanels\tO\n\t\nJava\tB-Language\tJava\tO\nSE\tB-Version\tSE\tO\n7\tI-Version\t7\tO\n(\tO\t(\tO\nJPanel\tB-Library_Class\tJPanel\tO\nAPI\tO\tAPI\tO\n)\tO\t)\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThis\tO\tThis\tO\ncomes\tO\tcomes\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\npersonal\tO\tpersonal\tO\npreference\tO\tpreference\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninitalise\tO\tinitalise\tO\neverything\tO\teverything\tO\non\tO\ton\tO\nstartup\tO\tstartup\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nquicker\tO\tquicker\tO\nswaps\tO\tswaps\tO\nbetween\tO\tbetween\tO\npanels\tB-User_Interface_Element\tpanels\tO\n(\tO\t(\tO\nor\tO\tor\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ncalled\tO\tcalled\tO\nthem\tO\tthem\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nscreens\tB-User_Interface_Element\tscreens\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\n,\tO\t,\tO\nOR\tO\tOR\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\nquicker\tO\tquicker\tO\ninital\tO\tinital\tO\nstartup\tO\tstartup\tO\nand\tO\tand\tO\nessentially\tO\tessentially\tO\nhave\tO\thave\tO\n\"\tO\t\"\tO\nlazy\tB-Algorithm\tlazy\tO\nloading\tI-Algorithm\tloading\tO\n\"\tO\t\"\tO\nof\tO\tof\tO\neach\tO\teach\tO\ncomponent\tO\tcomponent\tO\nas\tO\tas\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPersonally\tO\tPersonally\tO\nI\tO\tI\tO\nopt\tO\topt\tO\nfor\tO\tfor\tO\neverything\tO\teverything\tO\nduring\tO\tduring\tO\ninitalisation\tO\tinitalisation\tO\n(\tO\t(\tO\nunless\tO\tunless\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nthings\tO\tthings\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nor\tO\tor\tO\nload\tO\tload\tO\nduring\tO\tduring\tO\nyour\tO\tyour\tO\napplications\tO\tapplications\tO\nstartup\tO\tstartup\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nreally\tO\treally\tO\ncomes\tO\tcomes\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\npersonal\tO\tpersonal\tO\npreference\tO\tpreference\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nedit\tO\tedit\tO\n:\tO\t:\tO\n\t\nSpeaking\tO\tSpeaking\tO\nabout\tO\tabout\tO\nlayouts\tB-Library_Class\tlayouts\tO\n,\tO\t,\tO\nperhaps\tO\tperhaps\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nlayout\tO\tlayout\tO\nstyle\tO\tstyle\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nout\tO\tout\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCardLayout\tB-Library_Class\tCardLayout\tO\ntutorial\tO\ttutorial\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\nout\tO\tout\tO\nsomewhat\tO\tsomewhat\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11639253\tO\t11639253\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11639253/\tO\thttps://stackoverflow.com/questions/11639253/\tO\n\t\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscreen\tB-User_Interface_Element\tscreen\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nscreen\tB-User_Interface_Element\tscreen\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nlike\tO\tlike\tO\nin\tO\tin\tO\na\tO\ta\tO\nwizard\tB-User_Interface_Element\twizard\tO\n)\tO\t)\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\ndescribed\tO\tdescribed\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39483192\tO\t39483192\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39483192/\tO\thttps://stackoverflow.com/questions/39483192/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nan\tO\tan\tO\nalert\tB-User_Interface_Element\talert\tO\nbox\tI-User_Interface_Element\tbox\tO\nshowing\tO\tshowing\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nwith\tO\twith\tO\nPHP\tB-Language\tPHP\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\nalert\tB-User_Interface_Element\talert\tO\nbox\tI-User_Interface_Element\tbox\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nanswer\tO\tanswer\tO\nsuch\tO\tsuch\tO\n\"\tO\t\"\tO\nupdate\tB-Code_Block\tupdate\tB-Code_Block\nsubject\tI-Code_Block\tsubject\tI-Code_Block\nset\tI-Code_Block\tset\tI-Code_Block\nsemester\tI-Code_Block\tsemester\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\nwhere\tI-Code_Block\twhere\tI-Code_Block\nid\tI-Code_Block\tid\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n171\tI-Code_Block\t171\tI-Code_Block\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nafter\tO\tafter\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\ninto\tO\tinto\tO\nalert\tB-User_Interface_Element\talert\tO\nbox\tI-User_Interface_Element\tbox\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\ni\tO\ti\tO\nget\tO\tget\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nalert\tB-User_Interface_Element\talert\tO\nbox\tI-User_Interface_Element\tbox\tO\nonly\tO\tonly\tO\n\"\tO\t\"\tO\nupdate\tB-Code_Block\tupdate\tB-Code_Block\nsubject\tI-Code_Block\tsubject\tI-Code_Block\nset\tI-Code_Block\tset\tI-Code_Block\n$f\tI-Code_Block\t$f\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n$data\tI-Code_Block\t$data\tI-Code_Block\nwhere\tI-Code_Block\twhere\tI-Code_Block\nid\tI-Code_Block\tid\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n$did\tI-Code_Block\t$did\tI-Code_Block\n\"\tO\t\"\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nupdate\tO\tupdate\tO\nin\tO\tin\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nPHP\tB-Language\tPHP\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4977\tI-Code_Block\tQ_4977\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39483192\tO\t39483192\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39483192/\tO\thttps://stackoverflow.com/questions/39483192/\tO\n\t\n\t\nChange\tO\tChange\tO\nthe\tO\tthe\tO\nquotations\tO\tquotations\tO\n.\tO\t.\tO\n\t\nLearn\tO\tLearn\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nsingle\tO\tsingle\tO\nand\tO\tand\tO\ndouble\tO\tdouble\tO\nquotes\tO\tquotes\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nupdate\tO\tupdate\tO\nusing\tO\tusing\tO\nthat\tO\tthat\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nan\tO\tan\tO\ninvalid\tO\tinvalid\tO\nquery\tB-Variable_Name\tquery\tO\nwith\tO\twith\tO\nJavascript\tB-Language\tJavascript\tO\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5702\tI-Code_Block\tA_5702\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nmysql_\tB-Library_Class\tmysql_\tO\nextensions\tI-Library_Class\textensions\tO\nare\tO\tare\tO\ndeprecated\tO\tdeprecated\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nmysqli\tB-Application\tmysqli\tO\nor\tO\tor\tO\nPDO\tB-Application\tPDO\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39483192\tO\t39483192\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39483192/\tO\thttps://stackoverflow.com/questions/39483192/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\npassing\tO\tpassing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndeprecated\tO\tdeprecated\tO\nmysql_query\tB-Library_Function\tmysql_query\tB-Code_Block\nfunction\tO\tfunction\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nvalid\tO\tvalid\tO\nsql\tB-Language\tsql\tO\nand\tO\tand\tO\nwould\tO\twould\tO\ncause\tO\tcause\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nyou\tO\tyou\tO\nwere\tO\twere\tO\ntrying\tO\ttrying\tO\nsomething\tO\tsomething\tO\nalong\tO\talong\tO\nthese\tO\tthese\tO\nlines\tO\tlines\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5703\tI-Code_Block\tA_5703\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29483046\tO\t29483046\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29483046/\tO\thttps://stackoverflow.com/questions/29483046/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nHttpClient\tB-Library_Class\tHttpClient\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nMicrosoft\tB-Application\tMicrosoft\tO\nAzure\tI-Application\tAzure\tO\nBlob\tI-Application\tBlob\tO\nStorage\tI-Application\tStorage\tO\nvia\tO\tvia\tO\ntheir\tO\ttheir\tO\nREST\tB-Library\tREST\tO\napi\tI-Library\tapi\tO\nin\tO\tin\tO\nXamarin.iOS\tB-Application\tXamarin.iOS\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nbeen\tO\tbeen\tO\ngoing\tO\tgoing\tO\nalright\tO\talright\tO\nuntil\tO\tuntil\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nEvery\tO\tEvery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nContent-Length\tB-Library_Variable\tContent-Length\tO\nheader\tO\theader\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclient\tB-Variable_Name\tclient\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3511\tI-Code_Block\tQ_3511\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\nHttpClient\tB-Library_Class\tHttpClient\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3512\tI-Code_Block\tQ_3512\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nTryAddWithoutValidation\tB-Library_Function\tTryAddWithoutValidation\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nAdd\tB-Library_Function\tAdd\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3513\tI-Code_Block\tQ_3513\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nthrown\tO\tthrown\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nheader\tO\theader\tO\nstill\tO\tstill\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nadded\tO\tadded\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29483046\tO\t29483046\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29483046/\tO\thttps://stackoverflow.com/questions/29483046/\tO\n\t\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ninner\tO\tinner\tO\nworkings\tO\tworkings\tO\nof\tO\tof\tO\nCheckName()\tB-Library_Function\tCheckName()\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthrowing\tO\tthrowing\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://github.com/mono/mono/blob/master/mcs/class/System.Net.Http/System.Net.Http.Headers/HttpHeaders.cs\tO\thttps://github.com/mono/mono/blob/master/mcs/class/System.Net.Http/System.Net.Http.Headers/HttpHeaders.cs\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4187\tI-Code_Block\tA_4187\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAfter\tO\tAfter\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nsource\tO\tsource\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nContent-Length\tB-Library_Variable\tContent-Length\tB-Code_Block\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nknown_headers\tB-Library_Variable\tknown_headers\tB-Code_Block\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\ninternal\tO\tinternal\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nContent-Length\tB-Library_Variable\tContent-Length\tB-Code_Block\nheader\tO\theader\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\na\tO\ta\tO\nlong\tB-Data_Type\tlong\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nAdd()\tB-Library_Function\tAdd()\tO\nmethod\tO\tmethod\tO\nonly\tO\tonly\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nget\tO\tget\tO\n's\tO\t's\tO\nparsed\tO\tparsed\tO\nto\tO\tto\tO\na\tO\ta\tO\nlong\tB-Data_Type\tlong\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nvalue\tO\tvalue\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\npassing\tO\tpassing\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nContent-Length\tB-Library_Variable\tContent-Length\tB-Code_Block\nvalue\tO\tvalue\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nlong\tB-Data_Type\tlong\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9358136\tO\t9358136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9358136/\tO\thttps://stackoverflow.com/questions/9358136/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\ncontent\tO\tcontent\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nif\tO\tif\tO\nI\tO\tI\tO\nput\tO\tput\tO\na\tO\ta\tO\ntable\tB-User_Interface_Element\ttable\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\na\tO\ta\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nand\tO\tand\tO\nset\tO\tset\tO\na\tO\ta\tO\nwidth\tB-Variable_Name\twidth\tO\n(\tO\t(\tB-Code_Block\nwidth:200px\tB-Code_Block\twidth:200px\tI-Code_Block\n!\tO\t!\tI-Code_Block\nimportant\tO\timportant\tI-Code_Block\n)\tO\t)\tI-Code_Block\nfor\tO\tfor\tO\nthat\tO\tthat\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nthe\tO\tthe\tO\ntable\tB-User_Interface_Element\ttable\tO\nit\tO\tit\tO\nwill\tO\twill\tO\noverwrite\tO\toverwrite\tO\nthat\tO\tthat\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nhow\tO\thow\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nall\tO\tall\tO\ncontent\tO\tcontent\tO\ninside\tO\tinside\tO\nthat\tO\tthat\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\n?\tO\t?\tO\n\t\nfiddle\tB-Application\tfiddle\tO\nexample\tO\texample\tO\n:\tO\t:\tO\nhttp://jsfiddle.net/ebG9N/45/\tO\thttp://jsfiddle.net/ebG9N/45/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9358136\tO\t9358136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9358136/\tO\thttps://stackoverflow.com/questions/9358136/\tO\n\t\n\t\nYou\tO\tYou\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nheader\tB-User_Interface_Element\theader\tO\nto\tO\tto\tO\nwhite-space\tB-Code_Block\twhite-space\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nnowrap\tI-Code_Block\tnowrap\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\ntherefore\tO\ttherefore\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\nis\tO\tis\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\nthe\tO\tthe\tO\nheaders\tB-User_Interface_Element\theaders\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nwidth\tB-Variable_Name\twidth\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntable\tB-User_Interface_Element\ttable\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nbigger\tO\tbigger\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\n,\tO\t,\tO\noverflow\tB-Code_Block\toverflow\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nhidden\tI-Code_Block\thidden\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nto\tO\tto\tO\ncut\tO\tcut\tO\nthe\tO\tthe\tO\noverflowing\tO\toverflowing\tO\nparts\tO\tparts\tO\n,\tO\t,\tO\nor\tO\tor\tO\noverflow\tB-Code_Block\toverflow\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nauto\tI-Code_Block\tauto\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nscrollbar\tB-User_Interface_Element\tscrollbar\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nthem\tO\tthem\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nrendering\tO\trendering\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9358136\tO\t9358136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9358136/\tO\thttps://stackoverflow.com/questions/9358136/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nsolutions\tO\tsolutions\tO\n.\tO\t.\tO\n\t\ni)\tO\ti)\tO\nIF\tO\tIF\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nSTRICTLY\tO\tSTRICTLY\tO\ncontain\tO\tcontain\tO\ntable\tB-User_Interface_Element\ttable\tO\nWITHIN\tO\tWITHIN\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nthen\tO\tthen\tO\noverflow:auto\tB-Code_Block\toverflow:auto\tO\n;\tI-Code_Block\t;\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nii)\tO\tii)\tO\nBUT\tO\tBUT\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\nmind\tO\tmind\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nWRAP\tO\tWRAP\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nwidth\tB-Variable_Name\twidth\tO\nof\tO\tof\tO\ntable\tB-User_Interface_Element\ttable\tO\nthen\tO\tthen\tO\n.\tO\t.\tO\n\t\ndisplay:table\tB-Code_Block\tdisplay:table\tO\n;\tI-Code_Block\t;\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nGenerally\tO\tGenerally\tO\nits\tO\tits\tO\nbad\tO\tbad\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\ncontain\tO\tcontain\tO\nwider\tO\twider\tO\nelement\tO\telement\tO\nwithin\tO\twithin\tO\nexplicitly\tO\texplicitly\tO\nknown\tO\tknown\tO\nless\tO\tless\tO\nwider\tO\twider\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23467913\tO\t23467913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23467913/\tO\thttps://stackoverflow.com/questions/23467913/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncome\tO\tcome\tO\nacross\tO\tacross\tO\na\tO\ta\tO\nsituation\tO\tsituation\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nam\tO\tam\tO\nreading\tO\treading\tO\na\tO\ta\tO\nsome\tO\tsome\tO\nlog\tB-File_Type\tlog\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncounting\tO\tcounting\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nlines\tO\tlines\tO\nI\tO\tI\tO\nencountered\tO\tencountered\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2586\tI-Code_Block\tQ_2586\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nread\tO\tread\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nCSV\tB-File_Type\tCSV\tO\n,\tO\t,\tO\nSyslog\tB-File_Type\tSyslog\tO\n,\tO\t,\tO\nor\tO\tor\tO\nany\tO\tany\tO\nother\tO\tother\tO\nwild\tO\twild\tO\nformat\tO\tformat\tO\n)\tO\t)\tO\n,\tO\t,\tO\nit\tO\tit\tO\nruns\tO\truns\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\nand\tO\tand\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\ngenerated\tO\tgenerated\tO\nvia\tO\tvia\tO\na\tO\ta\tO\nmac\tB-Device\tmac\tO\n,\tO\t,\tO\nit\tO\tit\tO\ngoes\tO\tgoes\tO\nhay-wire\tO\thay-wire\tO\nand\tO\tand\tO\nsimply\tO\tsimply\tO\nreports\tO\treports\tO\nback\tO\tback\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nline\tO\tline\tO\nwas\tO\twas\tO\nread\tO\tread\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nmy\tO\tmy\tO\nlog\tB-File_Type\tlog\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nlarge\tO\tlarge\tO\n,\tO\t,\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nthousand\tO\tthousand\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\nlogs\tO\tlogs\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nread\tO\tread\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nopened\tO\topened\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nSublime\tB-Application\tSublime\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nsee\tO\tsee\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nseparate\tO\tseparate\tO\nlines\tO\tlines\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nviewed\tO\tviewed\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nvia\tO\tvia\tO\nVIM\tB-Application\tVIM\tO\n,\tO\t,\tO\nIt\tO\tIt\tO\ndisplayed\tO\tdisplayed\tO\nonly\tO\tonly\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncharacter\tO\tcharacter\tO\n'\tB-Value\t'\tO\n^M\tI-Value\t^M\tO\n'\tB-Value\t'\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\neach\tO\teach\tO\nline\tO\tline\tO\n(\tO\t(\tO\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nit\tO\tit\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nterminator\tO\tterminator\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nsample\tO\tsample\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\nlines\tO\tlines\tO\nis\tO\tis\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nvim\tB-Application\tvim\tO\nis\tO\tis\tO\ndisplaying\tO\tdisplaying\tO\nthe\tO\tthe\tO\n^M\tB-Value\t^M\tO\ncharacter\tO\tcharacter\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nline\tO\tline\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAny\tO\tAny\tO\nsuggestion\tO\tsuggestion\tO\nas\tO\tas\tO\nto\tO\tto\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ntackle\tO\ttackle\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23467913\tO\t23467913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23467913/\tO\thttps://stackoverflow.com/questions/23467913/\tO\n\t\n\t\nBoth\tO\tBoth\tO\nline\tO\tline\tO\nfeed\tO\tfeed\tO\n(\tO\t(\tO\n^J\tB-Value\t^J\tB-Code_Block\n,\tO\t,\tO\n0x0a\tB-Value\t0x0a\tO\n)\tO\t)\tO\nand\tO\tand\tO\ncarriage\tO\tcarriage\tO\nreturn\tO\treturn\tO\n(\tO\t(\tO\n^M\tB-Value\t^M\tB-Code_Block\n,\tO\t,\tO\n0x0d\tB-Value\t0x0d\tO\n)\tO\t)\tO\nare\tO\tare\tO\nused\tO\tused\tO\nas\tO\tas\tO\nline\tO\tline\tO\nseparators\tO\tseparators\tO\n;\tO\t;\tO\nUnix\tB-Operating_System\tUnix\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n,\tO\t,\tO\n(\tO\t(\tO\nold\tO\told\tO\n)\tO\t)\tO\nMac\tB-Device\tMac\tO\nthe\tO\tthe\tO\nlatter\tO\tlatter\tO\n,\tO\t,\tO\nWindows\tB-Operating_System\tWindows\tO\nboth\tO\tboth\tO\nin\tO\tin\tO\ncombination\tO\tcombination\tO\n(\tO\t(\tO\nCR-LF\tB-Value\tCR-LF\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfile\tO\tfile\tO\ninput\tO\tinput\tO\nlibrary\tO\tlibrary\tO\nthat\tO\tthat\tO\nabstracts\tO\tabstracts\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nabsolutely\tO\tabsolutely\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nthe\tO\tthe\tO\nold\tO\told\tO\nMac\tB-Device\tMac\tO\nformat\tO\tformat\tO\n(\tO\t(\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nMacOS\tB-Operating_System\tMacOS\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nkernel\tB-Application\tkernel\tO\nis\tO\tis\tO\nUnix-based\tB-Operating_System\tUnix-based\tO\n,\tO\t,\tO\nalso\tO\talso\tO\nuses\tO\tuses\tO\nLF\tB-Value\tLF\tO\n)\tO\t)\tO\n)\tO\t)\tO\n,\tO\t,\tO\ntreat\tO\ttreat\tO\nboth\tO\tboth\tO\nLF\tB-Value\tLF\tO\nand\tO\tand\tO\nCR\tB-Value\tCR\tO\nas\tO\tas\tO\na\tO\ta\tO\nline\tO\tline\tO\nseparator\tO\tseparator\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ncount\tO\tcount\tO\nthe\tO\tthe\tO\nCR-LF\tB-Value\tCR-LF\tO\nused\tO\tused\tO\nby\tO\tby\tO\nWindows\tB-Operating_System\tWindows\tO\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nVim\tB-Application\tVim\tO\n\t\nWhat\tO\tWhat\tO\nVim\tB-Application\tVim\tO\ndetects\tO\tdetects\tO\nis\tO\tis\tO\ndetermined\tO\tdetermined\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\n'\tB-Library_Variable\t'\tB-Code_Block\nfileformats\tI-Library_Variable\tfileformats\tI-Code_Block\n'\tB-Library_Variable\t'\tB-Code_Block\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\ndetect\tO\tdetect\tO\nMac\tB-Device\tMac\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nvia\tO\tvia\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3200\tI-Code_Block\tA_3200\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23467913\tO\t23467913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23467913/\tO\thttps://stackoverflow.com/questions/23467913/\tO\n\t\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nproblem\tO\tproblem\tO\neven\tO\teven\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nto\tO\tto\tO\nline\tO\tline\tO\nbreaks\tO\tbreaks\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nreading\tO\treading\tO\nbytes\tB-Data_Type\tbytes\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ntreating\tO\ttreating\tO\nthose\tO\tthose\tO\nas\tO\tas\tO\ncharacters\tB-Data_Type\tcharacters\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\neffectively\tO\teffectively\tO\nassuming\tO\tassuming\tO\nan\tO\tan\tO\nencoding\tO\tencoding\tO\nof\tO\tof\tO\nISO-8859-1\tO\tISO-8859-1\tO\nwhich\tO\twhich\tO\nmay\tO\tmay\tO\nwell\tO\twell\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nInputStreamReader\tB-Library_Class\tInputStreamReader\tB-Code_Block\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nof\tO\tof\tO\noperating\tO\toperating\tO\nsystems\tO\tsystems\tO\nhaving\tO\thaving\tO\ndifferent\tO\tdifferent\tO\nline\tO\tline\tO\nbreaks.\tO\tbreaks.\tO\n.\tO\t.\tO\nuse\tO\tuse\tO\nBufferedReader.readLine()\tB-Library_Function\tBufferedReader.readLine()\tB-Code_Block\nto\tO\tto\tO\nread\tO\tread\tO\na\tO\ta\tO\nline\tO\tline\tO\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nhandles\tO\thandles\tO\nline\tO\tline\tO\nbreaks\tO\tbreaks\tO\nof\tO\tof\tO\n\\n\tB-Value\t\\n\tB-Code_Block\n,\tO\t,\tO\n\\r\tB-Value\t\\r\tB-Code_Block\nor\tO\tor\tO\n\\r\\n\tB-Value\t\\r\\n\tB-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nwould\tO\twould\tO\nbecome\tO\tbecome\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3199\tI-Code_Block\tA_3199\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44303105\tO\t44303105\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44303105/\tO\thttps://stackoverflow.com/questions/44303105/\tO\n\t\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nimplemented\tO\timplemented\tO\na\tO\ta\tO\nprotected\tO\tprotected\tO\narea\tO\tarea\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nWebsite\tO\tWebsite\tO\n(\tO\t(\tO\nwith\tO\twith\tO\numbraco\tB-Application\tumbraco\tO\n)\tO\t)\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\na\tO\ta\tO\nLogin\tO\tLogin\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\na\tO\ta\tO\npage\tB-User_Interface_Element\tpage\tO\nthat\tO\tthat\tO\nnormal\tO\tnormal\tO\nusers\tO\tusers\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nLogin\tB-Application\tLogin\tO\nSnippet\tI-Application\tSnippet\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nLogin\tB-Application\tLogin\tO\nStatus\tI-Application\tStatus\tO\nSnippet\tI-Application\tSnippet\tO\nMacro\tO\tMacro\tO\nthat\tO\tthat\tO\numbraco\tB-Application\tumbraco\tO\nprovides\tO\tprovides\tO\n.\tO\t.\tO\n\t\nLike\tO\tLike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5742\tI-Code_Block\tQ_5742\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nshowing\tO\tshowing\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfooter\tB-User_Interface_Element\tfooter\tO\nbut\tO\tbut\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\nit\tO\tit\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nvisible\tO\tvisible\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nvisible\tO\tvisible\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\non\tO\ton\tO\na\tO\ta\tO\npage\tB-User_Interface_Element\tpage\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nprotected\tO\tprotected\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44303105\tO\t44303105\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44303105/\tO\thttps://stackoverflow.com/questions/44303105/\tO\n\t\n\t\nI\tO\tI\tO\nsimply\tO\tsimply\tO\nverified\tO\tverified\tO\nif\tO\tif\tO\nhe\tO\the\tO\nis\tO\tis\tO\nLogged\tO\tLogged\tO\nin\tO\tin\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nUmbraco\tB-Application\tUmbraco\tO\nMacro\tI-Application\tMacro\tO\nSnippet\tI-Application\tSnippet\tO\nit\tO\tit\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6384\tI-Code_Block\tA_6384\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27982861\tO\t27982861\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27982861/\tO\thttps://stackoverflow.com/questions/27982861/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncase\tO\tcase\tO\nsuccessfully\tO\tsuccessfully\tO\non\tO\ton\tO\nan\tO\tan\tO\ninbound\tO\tinbound\tO\nemail\tO\temail\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\naccount\tO\taccount\tO\nby\tO\tby\tO\nenable\tO\tenable\tO\nEnable\tO\tEnable\tO\n\"\tO\t\"\tO\nCreate\tO\tCreate\tO\nCase\tO\tCase\tO\nfrom\tO\tfrom\tO\nEmail\tO\tEmail\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\nset\tO\tset\tO\nup\tO\tup\tO\n,\tO\t,\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nrecord\tO\trecord\tO\nin\tO\tin\tO\ncustom\tO\tcustom\tO\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nwhere\tO\twhere\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nwrite\tO\twrite\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nCE\tB-Application\tCE\tO\n6.5.17\tB-Version\t6.5.17\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27982861\tO\t27982861\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27982861/\tO\thttps://stackoverflow.com/questions/27982861/\tO\n\t\n\t\nThe\tO\tThe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nafter\tO\tafter\tO\nsave\tO\tsave\tO\nlogic\tB-Library\tlogic\tO\nhook\tI-Library\thook\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nEmail\tB-Class_Name\tEmail\tO\nmodule\tO\tmodule\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nrecord\tO\trecord\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nfor\tO\tfor\tO\n\"\tO\t\"\tO\nCreate\tO\tCreate\tO\nCase\tO\tCase\tO\nfrom\tO\tfrom\tO\nEmail\tO\tEmail\tO\n\"\tO\t\"\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nleft\tO\tleft\tO\nunchecked\tO\tunchecked\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1840505\tO\t1840505\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1840505/\tO\thttps://stackoverflow.com/questions/1840505/\tO\n\t\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nnested\tO\tnested\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nstructure\tO\tstructure\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nlevel\tO\tlevel\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nshould\tO\tshould\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\njQuery\tB-Library\tjQuery\tO\n.load\tO\t.load\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nworks\tO\tworks\tO\nonly\tO\tonly\tO\nwith\tO\twith\tO\nsimple\tO\tsimple\tO\ndivs(non-nested)..\tB-HTML_XML_Tag\tdivs(non-nested)..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_115\tI-Code_Block\tQ_115\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOk\tO\tOk\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nstuff\tO\tstuff\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_116\tI-Code_Block\tQ_116\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1840505\tO\t1840505\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1840505/\tO\thttps://stackoverflow.com/questions/1840505/\tO\n\t\n\t\nAssuming\tO\tAssuming\tO\nthe\tO\tthe\tO\n2nd\tO\t2nd\tO\nlevel\tO\tlevel\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nhas\tO\thas\tO\nand\tO\tand\tO\nid\tB-HTML_XML_Tag\tid\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_174\tI-Code_Block\tA_174\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nElse\tO\tElse\tO\nchange\tO\tchange\tO\nselector\tO\tselector\tO\naccordingly\tO\taccordingly\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nnormally\tO\tnormally\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nfirst\tO\tfirst\tO\nchild\tO\tchild\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nof\tO\tof\tO\n#div_1\tB-Code_Block\t#div_1\tB-Code_Block\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_175\tI-Code_Block\tA_175\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBTW\tO\tBTW\tO\n.\tO\t.\tO\n\t\n:\tO\t:\tO\nNote\tO\tNote\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nown\tO\town\tO\npage\tB-User_Interface_Element\tpage\tO\n(\tO\t(\tO\ncross-domain\tO\tcross-domain\tO\nrequests\tO\trequests\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nsupported\tO\tsupported\tO\nwith\tO\twith\tO\najax\tB-Library\tajax\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1840505\tO\t1840505\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1840505/\tO\thttps://stackoverflow.com/questions/1840505/\tO\n\t\n\t\nFirstly\tO\tFirstly\tO\n,\tO\t,\tO\nloading\tO\tloading\tO\ndata\tO\tdata\tO\nwith\tO\twith\tO\nAJAX\tB-Function_Name\tAJAX\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\nwork\tO\twork\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nis\tO\tis\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndomain\tO\tdomain\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nremote\tO\tremote\tO\nsite\tO\tsite\tO\n\"\tO\t\"\tO\nindicates\tO\tindicates\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nstuff\tO\tstuff\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\ndomain\tO\tdomain\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nto\tO\tto\tO\nget\tO\tget\tO\nround\tO\tround\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhave\tO\thave\tO\na\tO\ta\tO\nserver-side\tO\tserver-side\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\nfetches\tO\tfetches\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nPHP\tB-Language\tPHP\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncURL\tB-Library\tcURL\tO\nfunctions\tO\tfunctions\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nplenty\tO\tplenty\tO\nof\tO\tof\tO\nquestions\tO\tquestions\tO\nhere\tO\there\tO\nabout\tO\tabout\tO\nthat\tO\tthat\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nsearch\tO\tsearch\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nchosen\tO\tchosen\tO\nlanguage\tO\tlanguage\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_173\tI-Code_Block\tA_173\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26823055\tO\t26823055\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26823055/\tO\thttps://stackoverflow.com/questions/26823055/\tO\n\t\n\t\ni\tO\ti\tO\nseen\tO\tseen\tO\nsome\tO\tsome\tO\ntools\tO\ttools\tO\non\tO\ton\tO\ngithub\tB-Website\tgithub\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nvector\tB-Library_Class\tvector\tO\ndrawables\tI-Library_Class\tdrawables\tO\nin\tO\tin\tO\nLolipop\tB-Version\tLolipop\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nsvg\tB-File_Type\tsvg\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nmajor\tO\tmajor\tO\nadvantage\tO\tadvantage\tO\ni\tO\ti\tO\nfind\tO\tfind\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nsvg\tB-File_Type\tsvg\tO\nfiles\tO\tfiles\tO\nshould\tO\tshould\tO\nstretch\tO\tstretch\tO\nand\tO\tand\tO\nkeep\tO\tkeep\tO\nproper\tO\tproper\tO\nscaling\tO\tscaling\tO\nthus\tO\tthus\tO\nlooking\tO\tlooking\tO\nsharp\tO\tsharp\tO\nafter\tO\tafter\tO\nstretching\tO\tstretching\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwith\tO\twith\tO\nsvg\tB-File_Type\tsvg\tO\nfiles\tO\tfiles\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nkeep\tO\tkeep\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nimages\tB-User_Interface_Element\timages\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndrawable\tO\tdrawable\tO\nfolder\tO\tfolder\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nfiltering\tO\tfiltering\tO\nthem\tO\tthem\tO\nout\tO\tout\tO\nby\tO\tby\tO\ndensity\tO\tdensity\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmakes\tO\tmakes\tO\nthe\tO\tthe\tO\napk\tB-File_Type\tapk\tO\nfile\tO\tfile\tO\nsmaller\tO\tsmaller\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ndesirable\tO\tdesirable\tO\n.\tO\t.\tO\n\t\nQuestion\tO\tQuestion\tO\n:\tO\t:\tO\nWould\tO\tWould\tO\nthere\tO\tthere\tO\nbe\tO\tbe\tO\nany\tO\tany\tO\nreason\tO\treason\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\nPNG\tB-File_Type\tPNG\tO\nimages\tB-User_Interface_Element\timages\tO\nin\tO\tin\tO\nnative\tO\tnative\tO\nandroid\tB-Operating_System\tandroid\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nconvert\tO\tconvert\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nsvg\tB-File_Type\tsvg\tO\nfiles\tO\tfiles\tO\nwith\tO\twith\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nan\tO\tan\tO\nonline\tO\tonline\tO\nconverter\tO\tconverter\tO\ntool\tO\ttool\tO\nlike\tO\tlike\tO\nvector\tB-Application\tvector\tO\nmagic\tI-Application\tmagic\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26823055\tO\t26823055\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26823055/\tO\thttps://stackoverflow.com/questions/26823055/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nseveral\tO\tseveral\tO\nreasons\tO\treasons\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nvector\tB-Library_Class\tvector\tO\ndrawables\tI-Library_Class\tdrawables\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\nsupported\tO\tsupported\tO\non\tO\ton\tO\nAndroid\tB-Operating_System\tAndroid\tO\n5.0\tB-Version\t5.0\tO\n+\tO\t+\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\ntargeting\tO\ttargeting\tO\nLollipop\tB-Version\tLollipop\tO\nand\tO\tand\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nstill\tO\tstill\tO\nneed\tO\tneed\tO\nPNGs\tB-File_Type\tPNGs\tO\nfor\tO\tfor\tO\nolder\tO\tolder\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nAndroid\tB-Operating_System\tAndroid\tO\n.\tO\t.\tO\n\t\nSecond\tO\tSecond\tO\n,\tO\t,\tO\nconverting\tO\tconverting\tO\nraster\tO\traster\tO\nto\tO\tto\tO\nvector\tO\tvector\tO\nwill\tO\twill\tO\nin\tO\tin\tO\nmost\tO\tmost\tO\ncases\tO\tcases\tO\nyield\tO\tyield\tO\npoor\tO\tpoor\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nstart\tO\tstart\tO\nby\tO\tby\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nassets\tO\tassets\tO\nas\tO\tas\tO\nvector\tO\tvector\tO\nimages\tB-User_Interface_Element\timages\tO\nin\tO\tin\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nlike\tO\tlike\tO\nIllustrator\tB-Application\tIllustrator\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nexport\tO\texport\tO\nto\tO\tto\tO\nSVG\tB-File_Type\tSVG\tO\nfor\tO\tfor\tO\nconversion\tO\tconversion\tO\nto\tO\tto\tO\nVectorDrawable\tB-Library_Class\tVectorDrawable\tO\nformat\tO\tformat\tO\nand\tO\tand\tO\nexport\tO\texport\tO\nto\tO\tto\tO\nPNG\tB-File_Type\tPNG\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nDPI\tO\tDPI\tO\nbuckets\tO\tbuckets\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\non\tO\ton\tO\npre-5.0\tB-Version\tpre-5.0\tO\ndevices\tO\tdevices\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33091991\tO\t33091991\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33091991/\tO\thttps://stackoverflow.com/questions/33091991/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\ncomparison\tO\tcomparison\tO\noperators\tO\toperators\tO\non\tO\ton\tO\nmy\tO\tmy\tO\npostgresql\tB-Library\tpostgresql\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nrange\tO\trange\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nMockTable\tB-Variable_Name\tMockTable\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4019\tI-Code_Block\tQ_4019\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEach\tO\tEach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfields\tO\tfields\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nare\tO\tare\tO\nlabeled\tO\tlabeled\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSQL\tB-Language\tSQL\tO\nserver\tB-Application\tserver\tO\nas\tO\tas\tO\ntext\tO\ttext\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\npull\tO\tpull\tO\ninformation\tO\tinformation\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4020\tI-Code_Block\tQ_4020\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThus\tO\tThus\tO\nrecieving\tO\trecieving\tO\nthe\tO\tthe\tO\n1st\tO\t1st\tO\nand\tO\tand\tO\n3rd\tO\t3rd\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nback\tO\tback\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nInput\tO\tInput\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33091991\tO\t33091991\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33091991/\tO\thttps://stackoverflow.com/questions/33091991/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nnames\tO\tnames\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nall-lowercase\tO\tall-lowercase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\nspecify\tO\tspecify\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\ndouble\tO\tdouble\tO\nquotes\tO\tquotes\tO\nand\tO\tand\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nsame\tO\tsame\tO\ncapitalization\tO\tcapitalization\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\n:\tO\t:\tO\n\t\nSELECT\tB-Code_Block\tSELECT\tB-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\nFROM\tI-Code_Block\tFROM\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nMockTable\tI-Code_Block\tMockTable\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nWHERE\tI-Code_Block\tWHERE\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nHours\tI-Code_Block\tHours\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n>\tI-Code_Block\t>\tI-Code_Block\n25\tI-Code_Block\t25\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthis\tO\tthis\tO\nsays\tO\tsays\tO\n\"\tB-Code_Block\t\"\tB-Code_Block\nHours\tI-Code_Block\tHours\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n\"\tB-Code_Block\t\"\tB-Code_Block\nHOURS\tI-Code_Block\tHOURS\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\nreason\tO\treason\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nall-lowercase\tO\tall-lowercase\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nand\tO\tand\tO\ntable\tB-Data_Structure\ttable\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nlowercase\tO\tlowercase\tO\nyou\tO\tyou\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ndouble-quotes\tB-Value\tdouble-quotes\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nnames\tO\tnames\tO\nunless\tO\tunless\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\na\tO\ta\tO\nreserved\tO\treserved\tO\nword\tO\tword\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nmean\tO\tmean\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ncontext\tO\tcontext\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33091991\tO\t33091991\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33091991/\tO\thttps://stackoverflow.com/questions/33091991/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\ncompare\tO\tcompare\tO\nnumbers\tO\tnumbers\tO\nas\tO\tas\tO\nstrings\tB-Data_Type\tstrings\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\nalphabetical\tO\talphabetical\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmagnitude\tO\tmagnitude\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\nmeaningless\tO\tmeaningless\tO\n,\tO\t,\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nis\tO\tis\tO\nmerely\tO\tmerely\tO\na\tO\ta\tO\nword\tO\tword\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n\"\tB-Value\t\"\tO\n25\tI-Value\t25\tO\n\"\tI-Value\t\"\tO\nis\tO\tis\tO\ngreater\tO\tgreater\tO\nthan\tO\tthan\tO\n\"\tB-Value\t\"\tO\n100\tI-Value\t100\tO\n\"\tI-Value\t\"\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\n\"\tB-Value\t\"\tO\n2\tI-Value\t2\tO\n\"\tI-Value\t\"\tO\ncomes\tO\tcomes\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\n\"\tB-Value\t\"\tO\n1\tI-Value\t1\tO\n\"\tI-Value\t\"\tO\nin\tO\tin\tO\nan\tO\tan\tO\nalphabetical\tO\talphabetical\tO\nsense\tO\tsense\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\neither\tO\teither\tO\ncast\tO\tcast\tO\nyour\tO\tyour\tO\n\"\tO\t\"\tO\nHours\tB-Code_Block\tHours\tO\n\"\tO\t\"\tO\nfield\tO\tfield\tO\nas\tO\tas\tO\ninteger\tB-Data_Type\tinteger\tO\n(\tO\t(\tO\nor\tO\tor\tO\nfix\tO\tfix\tO\nthat\tO\tthat\tO\ndamned\tO\tdamned\tO\ntable\tB-Data_Structure\ttable\tO\nbecause\tO\tbecause\tO\nnumbers\tO\tnumbers\tO\nin\tO\tin\tO\nstring\tB-Data_Type\tstring\tO\nfields\tO\tfields\tO\nis\tO\tis\tO\nnasty\tO\tnasty\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4707\tI-Code_Block\tA_4707\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nObviously\tO\tObviously\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\nsome\tO\tsome\tO\ndifficult\tO\tdifficult\tO\nproblems\tO\tproblems\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nrecords\tO\trecords\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tB-Code_Block\nHours\tB-Code_Block\tHours\tI-Code_Block\n\"\tO\t\"\tI-Code_Block\nfield\tO\tfield\tO\ncontains\tO\tcontains\tO\nnon-numeric\tO\tnon-numeric\tO\ncharacters\tO\tcharacters\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\narises\tO\tarises\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31102878\tO\t31102878\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31102878/\tO\thttps://stackoverflow.com/questions/31102878/\tO\n\t\n\t\nin\tO\tin\tO\nmy\tO\tmy\tO\nrouting.yml\tB-File_Name\trouting.yml\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3745\tI-Code_Block\tQ_3745\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\npage\tB-Variable_Name\tpage\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ninteger\tB-Data_Type\tinteger\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nput\tO\tput\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3746\tI-Code_Block\tQ_3746\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nbig\tO\tbig\tO\nproblem\tO\tproblem\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nput\tO\tput\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3747\tI-Code_Block\tQ_3747\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nit\tO\tit\tO\nworks\tO\tworks\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\ngood\tO\tgood\tO\nthing\tO\tthing\tO\nfor\tO\tfor\tO\nsearch\tO\tsearch\tO\ncrawler\tO\tcrawler\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\n{\tO\t{\tO\npage\tB-Variable_Name\tpage\tO\n}\tO\t}\tO\nvalue\tO\tvalue\tO\nrestrict\tO\trestrict\tO\nto\tO\tto\tO\ninteger\tB-Data_Type\tinteger\tO\nor\tO\tor\tO\nnumbers\tO\tnumbers\tO\n?\tO\t?\tO\n\t\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31102878\tO\t31102878\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31102878/\tO\thttps://stackoverflow.com/questions/31102878/\tO\n\t\n\t\nDo\tO\tDo\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4425\tI-Code_Block\tA_4425\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20213956\tO\t20213956\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20213956/\tO\thttps://stackoverflow.com/questions/20213956/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntoy\tO\ttoy\tO\ngraph\tB-Data_Structure\tgraph\tO\nthat\tO\tthat\tO\nrepresents\tO\trepresents\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\na\tO\ta\tO\nforum\tO\tforum\tO\nthread\tO\tthread\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2146\tI-Code_Block\tQ_2146\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nno\tO\tno\tO\nlayout\tO\tlayout\tO\nthat\tO\tthat\tO\nplaces\tO\tplaces\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nvertex\tB-Data_Structure\tvertex\tO\n(\tO\t(\tO\nid\tB-Variable_Name\tid\tO\n0\tO\t0\tO\n,\tB-Value\t,\tO\nlabel\tB-Variable_Name\tlabel\tO\nA\tB-Value\tA\tO\n)\tO\t)\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nand\tO\tand\tO\ngrows\tO\tgrows\tO\ndownwards\tO\tdownwards\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20213956\tO\t20213956\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20213956/\tO\thttps://stackoverflow.com/questions/20213956/\tO\n\t\n\t\nOK\tO\tOK\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\njust\tO\tjust\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nReingold-Tilford\tO\tReingold-Tilford\tO\nlayout\tO\tlayout\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\nhttp://igraph.sourceforge.net/doc/python/igraph.Graph-class.html#layout_reingold_tilford\tO\thttp://igraph.sourceforge.net/doc/python/igraph.Graph-class.html#layout_reingold_tilford\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2697\tI-Code_Block\tA_2697\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43061034\tO\t43061034\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43061034/\tO\thttps://stackoverflow.com/questions/43061034/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nnative\tO\tnative\tO\nmodule\tO\tmodule\tO\n,\tO\t,\tO\nand\tO\tand\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\ncolor\tO\tcolor\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\n<Text\tB-Code_Block\t<Text\tB-Code_Block\nstyle={{color:\tI-Code_Block\tstyle={{color:\tI-Code_Block\n'blue'}}\tI-Code_Block\t'blue'}}\tI-Code_Block\n/>\tI-Code_Block\t/>\tI-Code_Block\nchild\tO\tchild\tO\ncomponent\tO\tcomponent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nsuccessfully\tO\tsuccessfully\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ngetHighlightColor\tB-Library_Function\tgetHighlightColor\tB-Code_Block\nthat\tO\tthat\tO\nmatch\tO\tmatch\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n<Text\tB-Code_Block\t<Text\tB-Code_Block\nselectionColor='red'></Text>,\tI-Code_Block\tselectionColor='red'></Text>,\tI-Code_Block\nbut\tO\tbut\tO\ni\tO\ti\tO\ndon't\tO\tdon't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\ncolor\tO\tcolor\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nstyle\tO\tstyle\tO\nprop\tO\tprop\tO\n<Text\tB-Code_Block\t<Text\tB-Code_Block\nstyle={{color:\tI-Code_Block\tstyle={{color:\tI-Code_Block\n'blue'}}></Text>\tI-Code_Block\t'blue'}}></Text>\tI-Code_Block\n,\tO\t,\tO\ni\tO\ti\tO\nbelieve\tO\tbelieve\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\non\tO\ton\tO\ngetCurrentTextColor\tB-Library_Function\tgetCurrentTextColor\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsetTextColor\tB-Library_Function\tsetTextColor\tB-Code_Block\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\nfixed\tO\tfixed\tO\nstyle\tO\tstyle\tO\ncolor\tO\tcolor\tO\nprop\tO\tprop\tO\non\tO\ton\tO\nreact\tO\treact\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\npost\tO\tpost\tO\nsome\tO\tsome\tO\nsnippets\tO\tsnippets\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nunderstand\tO\tunderstand\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nam\tO\tam\tO\ntalking\tO\ttalking\tO\nabout\tO\tabout\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5506\tI-Code_Block\tQ_5506\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSomeComponent.js\tB-File_Name\tSomeComponent.js\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5507\tI-Code_Block\tQ_5507\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthose\tO\tthose\tO\nstyles\tO\tstyles\tO\nproperties\tO\tproperties\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\nside\tO\tside\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\nexactly\tO\texactly\tO\nreact-native\tB-Library\treact-native\tO\ndeals\tO\tdeals\tO\nwith\tO\twith\tO\nTextView\tB-Library_Class\tTextView\tO\nand\tO\tand\tO\nStyleSheets\tB-Library_Class\tStyleSheets\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23841820\tO\t23841820\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23841820/\tO\thttps://stackoverflow.com/questions/23841820/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmade\tO\tmade\tO\na\tO\ta\tO\ndmg\tB-File_Type\tdmg\tO\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nuploader\tO\tuploader\tO\ndesktop\tB-Device\tdesktop\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndmg\tB-File_Type\tdmg\tO\nis\tO\tis\tO\nported\tO\tported\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\nfrom\tO\tfrom\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\ndownload\tO\tdownload\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nSafari\tB-Application\tSafari\tO\nBrowser\tI-Application\tBrowser\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndownloads\tB-File_Name\tdownloads\tO\nfolder\tO\tfolder\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nexecute\tO\texecute\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthrows\tO\tthrows\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nstating\tO\tstating\tO\nits\tO\tits\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nunidentified\tO\tunidentified\tO\ndeveloper\tO\tdeveloper\tO\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\n,\tO\t,\tO\nin\tO\tin\tO\nSecurity\tO\tSecurity\tO\n&\tO\t&\tO\nPrivacy\tO\tPrivacy\tO\nsettings\tO\tsettings\tO\n,\tO\t,\tO\ni\tO\ti\tO\nopted\tO\topted\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\ndownload\tO\tdownload\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nexpect\tO\texpect\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nsetting\tO\tsetting\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nmodifications\tO\tmodifications\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\ninorder\tO\tinorder\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ndmg\tB-File_Type\tdmg\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nsuch\tO\tsuch\tO\nerrors/warnings\tO\terrors/warnings\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nnovice\tO\tnovice\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nkindly\tO\tkindly\tO\nrequesting\tO\trequesting\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23841820\tO\t23841820\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23841820/\tO\thttps://stackoverflow.com/questions/23841820/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ninstall\tO\tinstall\tO\nan\tO\tan\tO\nunverified\tO\tunverified\tO\napp\tO\tapp\tO\non\tO\ton\tO\nmac\tB-Device\tmac\tO\nby\tO\tby\tO\nright-clicking\tO\tright-clicking\tO\nthe\tO\tthe\tO\nDMG\tB-File_Type\tDMG\tO\nand\tO\tand\tO\nselecting\tO\tselecting\tO\nopen\tO\topen\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\npop\tO\tpop\tO\nup\tO\tup\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nopposed\tO\topposed\tO\nto\tO\tto\tO\ndoubled\tO\tdoubled\tO\nclicking\tO\tclicking\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\noption\tO\toption\tO\nto\tO\tto\tO\ncontinue\tO\tcontinue\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\nfor\tO\tfor\tO\nscreenshots\tO\tscreenshots\tO\n-\tO\t-\tO\nhttp://osxdaily.com/2012/07/27/app-cant-be-opened-because-it-is-from-an-unidentified-developer/\tO\thttp://osxdaily.com/2012/07/27/app-cant-be-opened-because-it-is-from-an-unidentified-developer/\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nother\tO\tother\tO\noption\tO\toption\tO\nis\tO\tis\tO\nto\tO\tto\tO\npay\tO\tpay\tO\nApple\tB-Organization\tApple\tO\nto\tO\tto\tO\nbecome\tO\tbecome\tO\na\tO\ta\tO\nverified\tO\tverified\tO\ndeveloper\tO\tdeveloper\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nreviewed\tO\treviewed\tO\nand\tO\tand\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nMac\tB-Device\tMac\tO\napp\tO\tapp\tO\nstore\tO\tstore\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39642650\tO\t39642650\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39642650/\tO\thttps://stackoverflow.com/questions/39642650/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nGET\tO\tGET\tO\nrequest\tO\trequest\tO\nin\tO\tin\tO\nPOSTMAN\tB-Application\tPOSTMAN\tO\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nchild\tO\tchild\tO\nentity\tO\tentity\tO\n(\tO\t(\tO\nTown\tB-Class_Name\tTown\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\nentity\tO\tentity\tO\n(\tO\t(\tO\nProvince\tB-Class_Name\tProvince\tO\n)\tO\t)\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nshown\tO\tshown\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJSON\tB-Data_Type\tJSON\tO\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4999\tI-Code_Block\tQ_4999\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\nentities\tO\tentities\tO\n.\tO\t.\tO\n\t\nParent\tO\tParent\tO\nClass\tO\tClass\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5000\tI-Code_Block\tQ_5000\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nChild\tO\tChild\tO\nClass\tO\tClass\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5001\tI-Code_Block\tQ_5001\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nresponse\tO\tresponse\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5002\tI-Code_Block\tQ_5002\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nexpecting\tO\texpecting\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5003\tI-Code_Block\tQ_5003\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nObjects\tO\tObjects\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nused\tO\tused\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nSpring-data-jpa\tB-Library\tSpring-data-jpa\tO\nentities\tO\tentities\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nsimple\tO\tsimple\tO\nPOJOs\tB-Data_Type\tPOJOs\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nEntities\tO\tEntities\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39642650\tO\t39642650\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39642650/\tO\thttps://stackoverflow.com/questions/39642650/\tO\n\t\n\t\nSwap\tO\tSwap\tO\n@JsonBackReference\tB-Library_Class\t@JsonBackReference\tB-Code_Block\nand\tO\tand\tO\n@JsonManagedReference\tB-Library_Class\t@JsonManagedReference\tB-Code_Block\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5720\tI-Code_Block\tA_5720\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19525049\tO\t19525049\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19525049/\tO\thttps://stackoverflow.com/questions/19525049/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\n256\tO\t256\tO\nfunctions\tO\tfunctions\tO\nthat\tO\tthat\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n\t\nBasically\tO\tBasically\tO\nI\tO\tI\tO\nwant\tO\twant\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nable\tO\table\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\ncase-insensitively\tO\tcase-insensitively\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\nI\tO\tI\tO\nwant\tO\twant\tO\napplepie()\tB-Function_Name\tapplepie()\tB-Code_Block\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ncalled\tO\tcalled\tO\ncase-insensitively\tO\tcase-insensitively\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2051\tI-Code_Block\tQ_2051\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nmost\tO\tmost\tO\nstraightforward\tO\tstraightforward\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndeclare\tO\tdeclare\tO\nanother\tO\tanother\tO\n255\tO\t255\tO\nfunctions\tO\tfunctions\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nletter\tO\tletter\tO\nin\tO\tin\tO\ncaps\tO\tcaps\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2052\tI-Code_Block\tQ_2052\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2053\tI-Code_Block\tQ_2053\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nall\tO\tall\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2054\tI-Code_Block\tQ_2054\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nin\tO\tin\tO\ntotal\tO\ttotal\tO\n256\tO\t256\tO\n(\tO\t(\tO\n2\tO\t2\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npower\tO\tpower\tO\nof\tO\tof\tO\n8\tO\t8\tO\n)\tO\t)\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nquickly\tO\tquickly\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nmore\tO\tmore\tO\n\"\tO\t\"\tO\nbuilt-in\tO\tbuilt-in\tO\n\"\tO\t\"\tO\napproach\tO\tapproach\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2055\tI-Code_Block\tQ_2055\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2056\tI-Code_Block\tQ_2056\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthat\tO\tthat\tO\ncan\tO\tcan\tO\npasses\tO\tpasses\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nto\tO\tto\tO\napplepie\tB-Function_Name\tapplepie\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nfor\tB-Code_Block\tfor\tO\nloop\tO\tloop\tO\nfor\tB-Code_Block\tfor\tB-Code_Block\nB\tI-Code_Block\tB\tI-Code_Block\nin\tI-Code_Block\tin\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n$@\tI-Code_Block\t$@\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19525049\tO\t19525049\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19525049/\tO\thttps://stackoverflow.com/questions/19525049/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfake\tO\tfake\tO\na\tO\ta\tO\ncase-insensitive\tO\tcase-insensitive\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\nby\tO\tby\tO\ndefining\tO\tdefining\tO\nall-lowercase\tO\tall-lowercase\tO\nfunction\tO\tfunction\tO\nnames\tO\tnames\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nbash\tB-Language\tbash\tB-Code_Block\n's\tO\t's\tO\ntrap\tO\ttrap\tO\nfor\tO\tfor\tO\nmissing\tO\tmissing\tO\ncommand\tO\tcommand\tO\nnames\tO\tnames\tO\n(\tO\t(\tO\nrequires\tO\trequires\tO\nbash\tB-Language\tbash\tB-Code_Block\n4\tB-Version\t4\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nyourself\tO\tyourself\tO\non\tO\ton\tO\nOS\tB-Operating_System\tOS\tO\nX\tI-Operating_System\tX\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2593\tI-Code_Block\tA_2593\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\napple\tB-Function_Name\tapple\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nas\tO\tas\tO\nApPlE\tB-Code_Block\tApPlE\tB-Code_Block\n,\tO\t,\tO\ncommand_not_found_handle\tB-Library_Function\tcommand_not_found_handle\tB-Code_Block\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\narguments\tO\targuments\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nline\tO\tline\tO\ntakes\tO\ttakes\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nargument\tO\targument\tO\n(\tO\t(\tO\nApPlE\tB-Code_Block\tApPlE\tB-Code_Block\n)\tO\t)\tO\nand\tO\tand\tO\nlower-cases\tO\tlower-cases\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nit\tO\tit\tO\nattempts\tO\tattempts\tO\nto\tO\tto\tO\nrun\tO\trun\tO\napple\tB-Code_Block\tapple\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\narguments\tO\targuments\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19525049\tO\t19525049\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19525049/\tO\thttps://stackoverflow.com/questions/19525049/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\npretty\tO\tpretty\tO\nobtuse\tO\tobtuse\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndefinitely\tO\tdefinitely\tO\nnot\tO\tnot\tO\na\tO\ta\tO\none-liner\tO\tone-liner\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhere\tO\there\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nin\tO\tin\tO\nbash\tB-Language\tbash\tO\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nhelp\tO\thelp\tO\nfrom\tO\tfrom\tO\nbc\tB-Code_Block\tbc\tB-Code_Block\nand\tO\tand\tO\ntr\tB-Code_Block\ttr\tB-Code_Block\n(\tO\t(\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nosx\tB-Operating_System\tosx\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2597\tI-Code_Block\tA_2597\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n;\tO\t;\tO\n\t\ngets\tO\tgets\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\n\t\nfigures\tO\tfigures\tO\nout\tO\tout\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ncase\tO\tcase\tO\ncombinations\tO\tcombinations\tO\n(\tO\t(\tO\n2^n\tO\t2^n\tO\n)\tO\t)\tO\n\t\nloops\tO\tloops\tO\nover\tO\tover\tO\neach\tO\teach\tO\ncombination\tO\tcombination\tO\n\t\nturns\tO\tturns\tO\nthe\tO\tthe\tO\ncombination\tO\tcombination\tO\nnumber\tO\tnumber\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nof\tO\tof\tO\nbinary\tO\tbinary\tO\ndigits\tO\tdigits\tO\n\t\nFiddles\tO\tFiddles\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nof\tO\tof\tO\nbinary\tO\tbinary\tO\ndigits\tO\tdigits\tO\nso\tO\tso\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlength\tO\tlength\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\n\t\nindexes\tO\tindexes\tO\nthrough\tO\tthrough\tO\neach\tO\teach\tO\nchar\tB-Data_Type\tchar\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\nand\tO\tand\tO\nstring\tB-Data_Type\tstring\tO\nof\tO\tof\tO\nbinary\tO\tbinary\tO\ndigits\tO\tdigits\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\na\tO\ta\tO\ntoupper()\tB-Library_Function\ttoupper()\tO\ncase\tO\tcase\tO\nchange\tO\tchange\tO\nonly\tO\tonly\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nbinary\tO\tbinary\tO\ndigit\tO\tdigit\tO\nis\tO\tis\tO\n1\tB-Value\t1\tO\n\t\nreassembles\tO\treassembles\tO\nthe\tO\tthe\tO\nchars\tB-Data_Type\tchars\tO\nto\tO\tto\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\n\t\ndoes\tO\tdoes\tO\na\tO\ta\tO\nbash\tB-Language\tbash\tO\nalias\tO\talias\tO\nfrom\tO\tfrom\tO\neach\tO\teach\tO\ncombination\tO\tcombination\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\n\t\nAssumes\tO\tAssumes\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nan\tO\tan\tO\nall-lowercase\tO\tall-lowercase\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12085067\tO\t12085067\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12085067/\tO\thttps://stackoverflow.com/questions/12085067/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ninvoke\tO\tinvoke\tO\nthe\tO\tthe\tO\nRestful\tB-Library\tRestful\tO\nWeb\tI-Library\tWeb\tO\nservices\tO\tservices\tO\nusing\tO\tusing\tO\nSpring\tB-Library\tSpring\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsearched\tO\tsearched\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nand\tO\tand\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nrestful\tO\trestful\tO\nservice\tO\tservice\tO\nusing\tO\tusing\tO\ndifferent\tO\tdifferent\tO\nannotations\tO\tannotations\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1128\tI-Code_Block\tQ_1128\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\na\tO\ta\tO\nweb.xml\tB-File_Name\tweb.xml\tO\n+\tO\t+\tO\n(\tB-File_Name\t(\tO\nname\tI-File_Name\tname\tO\n)\tI-File_Name\t)\tO\n-servlet.xml\tB-File_Name\t-servlet.xml\tO\n\t\nAbove\tO\tAbove\tO\nexample\tO\texample\tO\nhas\tO\thas\tO\njust\tO\tjust\tO\none\tO\tone\tO\nmethod\tO\tmethod\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nmapped\tO\tmapped\tO\nto\tO\tto\tO\na\tO\ta\tO\nurl\tO\turl\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nannotations\tO\tannotations\tO\nat\tO\tat\tO\nall\tO\tall\tO\nin\tO\tin\tO\na\tO\ta\tO\njava\tB-Language\tjava\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nrest\tO\trest\tO\nservices\tO\tservices\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nannotations\tO\tannotations\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nconfigure\tO\tconfigure\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nannotations\tO\tannotations\tO\nin\tO\tin\tO\nan\tO\tan\tO\nXML\tB-File_Type\tXML\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\ntheir\tO\ttheir\tO\n(\tO\t(\tO\nall\tO\tall\tO\nmethods\tO\tmethods\tO\nin\tO\tin\tO\na\tO\ta\tO\njava\tB-Language\tjava\tO\nclass\tO\tclass\tO\n)\tO\t)\tO\ncorresponding\tO\tcorresponding\tO\nURL\tO\tURL\tO\n's\tO\t's\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20369529\tO\t20369529\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20369529/\tO\thttps://stackoverflow.com/questions/20369529/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nspring\tB-Library\tspring\tO\nmvc\tI-Library\tmvc\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\non\tO\ton\tO\nJSP\tB-Library\tJSP\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nimage\tB-User_Interface_Element\timage\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nlocated\tO\tlocated\tO\nat\tO\tat\tO\n\t\nMyApp/WebContent/images/logo.jpg\tB-File_Name\tMyApp/WebContent/images/logo.jpg\tO\n\t\nAnd\tO\tAnd\tO\nmy\tO\tmy\tO\nJSP\tB-Library\tJSP\tO\npages\tO\tpages\tO\nare\tO\tare\tO\nlocated\tO\tlocated\tO\nat\tO\tat\tO\n\t\nMyApp/WebContent/WEB-INF/view/home.jsp\tB-File_Name\tMyApp/WebContent/WEB-INF/view/home.jsp\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\t\n<'img\tB-Code_Block\t<'img\tO\nsrc=\"<%=request.getContextPath()%>\tI-Code_Block\tsrc=\"<%=request.getContextPath()%>\tO\n/images/logo.jpg\tI-Code_Block\t/images/logo.jpg\tO\n\"\tI-Code_Block\t\"\tO\n/\tI-Code_Block\t/\tO\n>and\tI-Code_Block\t>and\tO\n\t\n<'img\tB-Code_Block\t<'img\tO\nsrc=\"<'c:url\tI-Code_Block\tsrc=\"<'c:url\tO\nvalue='<%=request.getContextPath()%>/images/logo.jpg'>\tI-Code_Block\tvalue='<%=request.getContextPath()%>/images/logo.jpg'>\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nbecause\tO\tbecause\tO\nmy\tO\tmy\tO\nwebapp\tB-Application\twebapp\tO\nhierarchy\tO\thierarchy\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nlike\tO\tlike\tO\n\t\nMyApp\tB-File_Name\tMyApp\tO\n\\src\\main\\webapp\\images\\logo.jpg\tI-File_Name\t\\src\\main\\webapp\\images\\logo.jpg\tO\n\t\nMyApp\tB-File_Name\tMyApp\tO\n\\src\\main\\webapp\\web-inf\\views\\home.jsp\tI-File_Name\t\\src\\main\\webapp\\web-inf\\views\\home.jsp\tO\n??\tO\t??\tO\n?\tO\t?\tO\n\t\nReally\tO\tReally\tO\nappreciate\tO\tappreciate\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nhttp://www.tutorialspoint.com/spring/spring_static_pages_example.htm\tO\thttp://www.tutorialspoint.com/spring/spring_static_pages_example.htm\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nresource\tO\tresource\tO\nmapping\tO\tmapping\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nservlet.xml\tB-File_Name\tservlet.xml\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nreally\tO\treally\tO\nappreciate\tO\tappreciate\tO\nall\tO\tall\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nkind\tO\tkind\tO\nanswers\tO\tanswers\tO\n.\tO\t.\tO\n\t\n:)\tO\t:)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20369529\tO\t20369529\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20369529/\tO\thttps://stackoverflow.com/questions/20369529/\tO\n\t\n\t\ntry\tO\ttry\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2717\tI-Code_Block\tA_2717\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEven\tO\tEven\tO\nthough\tO\tthough\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nSpring\tB-Library\tSpring\tO\nMVC\tI-Library\tMVC\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nstill\tO\tstill\tO\ndeploy\tO\tdeploy\tO\nas\tO\tas\tO\na\tO\ta\tO\nnormal\tO\tnormal\tO\nwebapp\tB-Application\twebapp\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nyour\tO\tyour\tO\ndeployment\tO\tdeployment\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\n,\tO\t,\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nloading\tO\tloading\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20369529\tO\t20369529\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20369529/\tO\thttps://stackoverflow.com/questions/20369529/\tO\n\t\n\t\nAny\tO\tAny\tO\nstatic\tO\tstatic\tO\nresource\tO\tresource\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nURL\tO\tURL\tO\nMapping\tO\tMapping\tO\nin\tO\tin\tO\nspring\tB-Library\tspring\tO\nmvc\tI-Library\tmvc\tO\n,\tO\t,\tO\nso\tO\tso\tO\nstatic\tO\tstatic\tO\nresources\tO\tresources\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nspringmvc-servlet.xml\tB-File_Name\tspringmvc-servlet.xml\tB-Code_Block\n.\tO\t.\tO\n\t\nAdd\tO\tAdd\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nentry\tO\tentry\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nMVC\tB-Algorithm\tMVC\tO\nconfiguration\tO\tconfiguration\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nstatic\tO\tstatic\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nresources\tB-File_Name\tresources\tB-Code_Block\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2718\tI-Code_Block\tA_2718\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthen\tO\tthen\tO\nstatic\tO\tstatic\tO\nfiles\tO\tfiles\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccessible\tO\taccessible\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2719\tI-Code_Block\tA_2719\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8279090\tO\t8279090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8279090/\tO\thttps://stackoverflow.com/questions/8279090/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nfor\tO\tfor\tO\nstatement\tO\tstatement\tO\nto\tO\tto\tO\nenumerate\tO\tenumerate\tO\nall\tO\tall\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\neach\tO\teach\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nobject\tO\tobject\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nso\tO\tso\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\ndifferent\tO\tdifferent\tO\nones\tO\tones\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\n5\tO\t5\tO\nstring\tB-Data_Type\tstring\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfor\tO\tfor\tO\nstatement\tO\tstatement\tO\nto\tO\tto\tO\nenumerate\tO\tenumerate\tO\neach\tO\teach\tO\nobject\tO\tobject\tO\nand\tO\tand\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nnsmutablestring\tB-Library_Class\tnsmutablestring\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\n@\tO\t@\tO\n\"\tO\t\"\tO\nhello\tO\thello\tO\n\"\tO\t\"\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_704\tI-Code_Block\tQ_704\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nhere\tO\there\tO\nis\tO\tis\tO\nit\tO\tit\tO\nbriefly\tO\tbriefly\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n-\tO\t-\tO\n5\tO\t5\tO\nobjects\tO\tobjects\tO\n\t\nenumerate\tO\tenumerate\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nobject\tO\tobject\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nwith\tO\twith\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nname\tO\tname\tO\nso\tO\tso\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nit\tO\tit\tO\n:\tO\t:\tO\nobject1\tB-Variable_Name\tobject1\tO\nobject2\tI-Variable_Name\tobject2\tO\nobject3\tI-Variable_Name\tobject3\tO\nobject4\tI-Variable_Name\tobject4\tO\nobject5\tI-Variable_Name\tobject5\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\n\t\nBy\tO\tBy\tO\narray\tO\tarray\tO\ni\tO\ti\tO\nmean\tO\tmean\tO\nNSArray\tB-Library_Class\tNSArray\tO\n\t\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nadding\tO\tadding\tO\nuiimageview\tB-Library_Class\tuiimageview\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8279090\tO\t8279090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8279090/\tO\thttps://stackoverflow.com/questions/8279090/\tO\n\t\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfor\tB-Code_Block\tfor\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n..\tI-Code_Block\t..\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\nin\tI-Code_Block\tin\tI-Code_Block\n..\tI-Code_Block\t..\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n,\tO\t,\tO\nuse\tO\tuse\tO\njust\tO\tjust\tO\na\tO\ta\tO\nstandard\tO\tstandard\tO\nfor\tO\tfor\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_995\tI-Code_Block\tA_995\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nUpdated\tO\tUpdated\tO\nfor\tO\tfor\tO\ncomment\tO\tcomment\tO\nbelow\tO\tbelow\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8279090\tO\t8279090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8279090/\tO\thttps://stackoverflow.com/questions/8279090/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nto\tO\tto\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nArray\tB-Data_Structure\tArray\tO\nobjects\tO\tobjects\tO\nare\tO\tare\tO\nalready\tO\talready\tO\nuniquely\tO\tuniquely\tO\nidentified\tO\tidentified\tO\nby\tO\tby\tO\ntheir\tO\ttheir\tO\nindex\tO\tindex\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\ndifferent\tO\tdifferent\tO\nnames\tO\tnames\tO\n(\tO\t(\tO\nNSString\tB-Library_Class\tNSString\tO\n*\tB-Data_Type\t*\tO\npointers\tI-Data_Type\tpointers\tO\n)\tO\t)\tO\n??\tO\t??\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nrelevant\tO\trelevant\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nalready\tO\talready\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\nstrings\tB-Data_Type\tstrings\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nrepresent\tO\trepresent\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nstrings\tB-Data_Type\tstrings\tO\nrepresenting\tO\trepresenting\tO\nsome\tO\tsome\tO\nconfiguration\tO\tconfiguration\tO\nparameters\tO\tparameters\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nprogramm\tO\tprogramm\tO\n..\tO\t..\tO\n.\tO\t.\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\nthinks\tO\tthinks\tO\nof\tO\tof\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nexample\tO\texample\tO\n:)\tO\t:)\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nclear\tO\tclear\tO\nand\tO\tand\tO\ndistinct\tO\tdistinct\tO\nway\tO\tway\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\neach\tO\teach\tO\nmember\tO\tmember\tO\nof\tO\tof\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\ndifferent\tO\tdifferent\tO\npointer\tB-Data_Type\tpointer\tO\nnames\tO\tnames\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nint\tO\tint\tO\nconstants\tO\tconstants\tO\nfor\tO\tfor\tO\nindexes\tO\tindexes\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n-\tO\t-\tO\n(\tO\t(\tO\ndeclared\tO\tdeclared\tO\nin\tO\tin\tO\nC\tB-Language\tC\tO\nmacros\tO\tmacros\tO\n,\tO\t,\tO\nor\tO\tor\tO\nin\tO\tin\tO\nan\tO\tan\tO\nenum\tO\tenum\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40117462\tO\t40117462\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40117462/\tO\thttps://stackoverflow.com/questions/40117462/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nUICollectionView\tB-Library_Class\tUICollectionView\tO\ninside\tO\tinside\tO\nUITableView\tB-Library_Class\tUITableView\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\npresent\tO\tpresent\tO\nphotos\tB-User_Interface_Element\tphotos\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\non\tO\ton\tO\niOS\tB-Operating_System\tiOS\tO\n9\tB-Version\t9\tO\n\t\nBut\tO\tBut\tO\nin\tO\tin\tO\niOS\tB-Operating_System\tiOS\tO\n10\tB-Version\t10\tO\n,\tO\t,\tO\nphotos\tB-User_Interface_Element\tphotos\tO\nnot\tO\tnot\tO\nappearing\tO\tappearing\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\ntap\tO\ttap\tO\non\tO\ton\tO\ncell\tB-User_Interface_Element\tcell\tO\nthat\tO\tthat\tO\nholds\tO\tholds\tO\ncollection\tB-Library_Class\tcollection\tO\nview\tI-Library_Class\tview\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nsetPrefetchingEnabled\tB-Code_Block\tsetPrefetchingEnabled\tO\n=\tI-Code_Block\t=\tO\nNO\tI-Code_Block\tNO\tO\nbut\tO\tbut\tO\nstill\tO\tstill\tO\nnot\tO\tnot\tO\nappearing\tO\tappearing\tO\n\t\nany\tO\tany\tO\nsuggestion\tO\tsuggestion\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28741241\tO\t28741241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28741241/\tO\thttps://stackoverflow.com/questions/28741241/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\nlabels\tB-User_Interface_Element\tlabels\tO\nwith\tO\twith\tO\ntext\tB-User_Interface_Element\ttext\tO\nas\tO\tas\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3383\tI-Code_Block\tQ_3383\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nvertically\tO\tvertically\tO\nalign\tO\talign\tO\ntwo\tO\ttwo\tO\nUILabels\tB-Library_Class\tUILabels\tB-Code_Block\ntext\tO\ttext\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nlabels\tB-User_Interface_Element\tlabels\tO\ntext\tI-User_Interface_Element\ttext\tO\nalign\tO\talign\tO\nvertically\tO\tvertically\tO\nat\tO\tat\tO\ncolon\tB-Value\tcolon\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3384\tI-Code_Block\tQ_3384\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nwith\tO\twith\tO\n4\tO\t4\tO\ndifferent\tO\tdifferent\tO\nlabels\tB-User_Interface_Element\tlabels\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nLabel1\tB-Variable_Name\tLabel1\tO\n:\tO\t:\tO\namount\tO\tamount\tO\nlabel1\tB-Variable_Name\tlabel1\tO\n\t\nSecond\tO\tSecond\tO\nLabel2\tB-Variable_Name\tLabel2\tO\n:\tO\t:\tO\namount\tO\tamount\tO\nLabel2\tB-Variable_Name\tLabel2\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\n2\tO\t2\tO\nlabels\tB-User_Interface_Element\tlabels\tO\nonly\tO\tonly\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3385\tI-Code_Block\tQ_3385\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nalign\tO\talign\tO\nvertically\tO\tvertically\tO\nat\tO\tat\tO\ncolon\tB-Value\tcolon\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28741241\tO\t28741241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28741241/\tO\thttps://stackoverflow.com/questions/28741241/\tO\n\t\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccomplished\tO\taccomplished\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nAutoLayout\tB-Library_Class\tAutoLayout\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\n4\tO\t4\tO\nlabels\tB-Variable_Name\tlabels\tO\n:\tO\t:\tO\n\t\nTitle\tB-Variable_Name\tTitle\tO\nLabels\tI-Variable_Name\tLabels\tO\n\t\n'\tO\t'\tO\nFirst\tB-Output_Block\tFirst\tO\nValue\tI-Output_Block\tValue\tO\n'\tB-Output_Block\t'\tO\n(\tO\t(\tO\nRight\tO\tRight\tO\nAligned\tO\tAligned\tO\n)\tO\t)\tO\n\t\n'\tB-Output_Block\t'\tO\nSecond\tI-Output_Block\tSecond\tO\nValue\tI-Output_Block\tValue\tO\n'\tO\t'\tO\n(\tO\t(\tO\nRight\tO\tRight\tO\nAligned\tO\tAligned\tO\n)\tO\t)\tO\n\t\nValue\tB-Variable_Name\tValue\tO\nLabels\tI-Variable_Name\tLabels\tO\n\t\n'\tO\t'\tO\n:1\tB-Output_Block\t:1\tO\n,\tI-Output_Block\t,\tO\n000\tI-Output_Block\t000\tO\n'\tB-Output_Block\t'\tO\n(\tO\t(\tO\nLeft\tO\tLeft\tO\nAligned\tO\tAligned\tO\n)\tO\t)\tO\n\t\n'\tB-Output_Block\t'\tO\n:100\tI-Output_Block\t:100\tO\n'\tI-Output_Block\t'\tO\n(\tO\t(\tO\nLeft\tO\tLeft\tO\nAligned\tO\tAligned\tO\n)\tO\t)\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npin\tO\tpin\tO\nboth\tO\tboth\tO\ntitle\tO\ttitle\tO\nlabels\tB-User_Interface_Element\tlabels\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nequal\tO\tequal\tO\nwidths\tB-Variable_Name\twidths\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npin\tO\tpin\tO\nboth\tO\tboth\tO\nvalue\tB-Variable_Name\tvalue\tO\nlabels\tB-User_Interface_Element\tlabels\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nequal\tO\tequal\tO\nwidths\tB-Variable_Name\twidths\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nconstraints\tO\tconstraints\tO\nfor\tO\tfor\tO\nhorizontal\tO\thorizontal\tO\nspacing\tO\tspacing\tO\nbetween\tO\tbetween\tO\nboth\tO\tboth\tO\ntitle\tB-Variable_Name\ttitle\tO\nand\tO\tand\tO\nvalue\tB-Variable_Name\tvalue\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nspacing\tO\tspacing\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nequal\tO\tequal\tO\nbetween\tO\tbetween\tO\nrows\tB-User_Interface_Element\trows\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ncode\tO\tcode\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nlabel\tB-User_Interface_Element\tlabel\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncolon\tB-Value\tcolon\tO\nsymbol\tO\tsymbol\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvalue\tB-Variable_Name\tvalue\tO\n.\tO\t.\tO\n\t\nE.g\tO\tE.g\tO\n.\tO\t.\tO\n\t\n[\tB-Code_Block\t[\tB-Code_Block\nNSString\tI-Code_Block\tNSString\tI-Code_Block\nstringwithFormat\tI-Code_Block\tstringwithFormat\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n@\tI-Code_Block\t@\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n:%d\tI-Code_Block\t:%d\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nvalue\tI-Code_Block\tvalue\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n;\tB-Code_Block\t;\tB-Code_Block\n\t\nThis\tO\tThis\tO\nimage\tB-User_Interface_Element\timage\tO\nillustrates\tO\tillustrates\tO\nthe\tO\tthe\tO\nconstraints\tO\tconstraints\tO\nrequired\tO\trequired\tO\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28741241\tO\t28741241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28741241/\tO\thttps://stackoverflow.com/questions/28741241/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nAutolayout\tO\tAutolayout\tO\nplace\tO\tplace\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nlabels\tB-User_Interface_Element\tlabels\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUIView\tB-Library_Class\tUIView\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nalign\tO\talign\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nto\tO\tto\tO\nalign\tO\talign\tO\ncentre\tO\tcentre\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nhorizontal\tO\thorizontal\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nvertical\tO\tvertical\tO\nspacing\tO\tspacing\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nviews\tO\tviews\tO\n..\tO\t..\tO\n.\tO\t.\tO\nas\tO\tas\tO\n\t\nThe\tO\tThe\tO\ncorrect\tO\tcorrect\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncontainer\tB-User_Interface_Element\tcontainer\tO\nview\tO\tview\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nderives\tO\tderives\tO\nits\tO\tits\tO\nheight\tO\theight\tO\nfrom\tO\tfrom\tO\nits\tO\tits\tO\nsubviews\tO\tsubviews\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncontainer\tB-User_Interface_Element\tcontainer\tO\nview\tO\tview\tO\nis\tO\tis\tO\nthen\tO\tthen\tO\npinned\tO\tpinned\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncentre\tO\tcentre\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nconstraints\tO\tconstraints\tO\nlinking\tO\tlinking\tO\nthe\tO\tthe\tO\ncontainer\tB-User_Interface_Element\tcontainer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nand\tO\tand\tO\nbottom\tO\tbottom\tO\nedges\tO\tedges\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\n.\tO\t.\tO\n\t\nWithin\tO\tWithin\tO\nthe\tO\tthe\tO\ncontainer\tB-User_Interface_Element\tcontainer\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nvertical\tO\tvertical\tO\nconstraints\tO\tconstraints\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n|[label1]-[label2]|\tB-Variable_Name\t|[label1]-[label2]|\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ncontainer\tB-User_Interface_Element\tcontainer\tO\nthe\tO\tthe\tO\nheight\tO\theight\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nlabels\tB-User_Interface_Element\tlabels\tO\nplus\tO\tplus\tO\nthe\tO\tthe\tO\nspace\tO\tspace\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncentre\tO\tcentre\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontainer\tB-User_Interface_Element\tcontainer\tO\nview\tO\tview\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nlabels\tB-User_Interface_Element\tlabels\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42958086\tO\t42958086\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42958086/\tO\thttps://stackoverflow.com/questions/42958086/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nread\tO\tread\tO\n\"\tO\t\"\tO\ncrashlytics\tB-Application\tcrashlytics\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\na\tO\ta\tO\nlive\tO\tlive\tO\nXamarin\tB-Application\tXamarin\tO\niOS\tI-Application\tiOS\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nissue\tO\tissue\tO\naffects\tO\taffects\tO\nalmost\tO\talmost\tO\n80%\tO\t80%\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nstruggling\tO\tstruggling\tO\nto\tO\tto\tO\ndecipher\tO\tdecipher\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nlog\tB-File_Type\tlog\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ngist\tB-Website\tgist\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nuploaded\tO\tuploaded\tO\nthe\tO\tthe\tO\ndSYM\tB-File_Type\tdSYM\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nCrashlytics\tB-Application\tCrashlytics\tO\ndashboard\tB-User_Interface_Element\tdashboard\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nlog\tB-File_Type\tlog\tO\nremains\tO\tremains\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nnormal\tO\tnormal\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nXamarin\tB-Application\tXamarin\tO\nApp\tO\tApp\tO\nthis\tO\tthis\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nlog\tB-File_Type\tlog\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\neven\tO\teven\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nsource\tO\tsource\tO\nfile\tO\tfile\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\ncauses\tO\tcauses\tO\nthe\tO\tthe\tO\ncrash\tO\tcrash\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nAppDelegate.cs\tB-File_Name\tAppDelegate.cs\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5492\tI-Code_Block\tQ_5492\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmethods\tO\tmethods\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5493\tI-Code_Block\tQ_5493\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\non\tO\ton\tO\nFabric\tB-Application\tFabric\tO\nconfiguration\tO\tconfiguration\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46084048\tO\t46084048\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46084048/\tO\thttps://stackoverflow.com/questions/46084048/\tO\n\t\n\t\nPlease\tO\tPlease\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nhelp\tO\thelp\tO\n,\tO\t,\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nAmazon\tB-Application\tAmazon\tO\nS3\tI-Application\tS3\tO\nBucket\tO\tBucket\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nour\tO\tour\tO\nvideo\tO\tvideo\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nAmazon\tB-Application\tAmazon\tO\nCloudFront\tI-Application\tCloudFront\tO\nto\tO\tto\tO\nstream\tO\tstream\tO\nthe\tO\tthe\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nwant\tO\twant\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nschedule\tO\tschedule\tO\ndifferent\tO\tdifferent\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nspecific\tO\tspecific\tO\ntime\tO\ttime\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nday\tO\tday\tO\nand\tO\tand\tO\nend\tO\tend\tO\nat\tO\tat\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ntime\tO\ttime\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nday\tO\tday\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nschedule\tO\tschedule\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nplay\tO\tplay\tO\non\tO\ton\tO\ncloudfront\tB-Application\tcloudfront\tO\nstream\tO\tstream\tO\n,\tO\t,\tO\nand\tO\tand\tO\nplay\tO\tplay\tO\nmultiple\tO\tmultiple\tO\nand\tO\tand\tO\ndifferent\tO\tdifferent\tO\nvideos\tB-User_Interface_Element\tvideos\tO\nat\tO\tat\tO\ndifferent\tO\tdifferent\tO\ntime\tO\ttime\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nour\tO\tour\tO\ntime\tO\ttime\tO\nzone\tO\tzone\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nup\tO\tup\tO\nAmazon\tB-Application\tAmazon\tO\nS3\tI-Application\tS3\tO\nbucket\tO\tbucket\tO\n,\tO\t,\tO\nAmazon\tB-Application\tAmazon\tO\nEC2\tI-Application\tEC2\tO\ninstance\tO\tinstance\tO\nand\tO\tand\tO\nAmazon\tB-Application\tAmazon\tO\nCloudFront\tI-Application\tCloudFront\tO\nfor\tO\tfor\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nstreaming\tO\tstreaming\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nneed\tO\tneed\tO\nsolution\tO\tsolution\tO\non\tO\ton\tO\nhow\tO\thow\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nschedule\tO\tschedule\tO\nvideos\tB-User_Interface_Element\tvideos\tO\nthat\tO\tthat\tO\nplay\tO\tplay\tO\nthrough\tO\tthrough\tO\nCloudFront\tB-Application\tCloudFront\tO\nRTMP\tO\tRTMP\tO\nor\tO\tor\tO\nhttp\tO\thttp\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nAdvance\tO\tAdvance\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28392515\tO\t28392515\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28392515/\tO\thttps://stackoverflow.com/questions/28392515/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ndefined\tO\tdefined\tO\nsome\tO\tsome\tO\nproperties\tO\tproperties\tO\nin\tO\tin\tO\na\tO\ta\tO\ncontroller\tB-Library_Class\tcontroller\tO\nfor\tO\tfor\tO\na\tO\ta\tO\npagination\tO\tpagination\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3321\tI-Code_Block\tQ_3321\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nlimit\tB-Code_Block\tlimit\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nRoute\tB-Library_Class\tRoute\tO\n's\tO\t's\tO\nmodel-function\tB-Library_Function\tmodel-function\tB-Code_Block\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3322\tI-Code_Block\tQ_3322\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28392515\tO\t28392515\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28392515/\tO\thttps://stackoverflow.com/questions/28392515/\tO\n\t\n\t\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nqueryParams\tB-Library_Variable\tqueryParams\tO\noption\tO\toption\tO\n(\tO\t(\tO\nhttp://emberjs.com/guides/routing/query-params/\tO\thttp://emberjs.com/guides/routing/query-params/\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nquery\tB-Library_Variable\tquery\tO\nparams\tI-Library_Variable\tparams\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nlimit\tB-Code_Block\tlimit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nquery\tB-Library_Variable\tquery\tO\nparam\tI-Library_Variable\tparam\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nURL\tO\tURL\tO\nlike\tO\tlike\tO\nhttp://yourdomain.com/someroute?limit=15\tB-Code_Block\thttp://yourdomain.com/someroute?limit=15\tB-Code_Block\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\ncontroller\tB-Library_Class\tcontroller\tO\nwill\tO\twill\tO\nbecome\tO\tbecome\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3958\tI-Code_Block\tA_3958\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nroute\tB-Library_Class\troute\tO\nwill\tO\twill\tO\nbecome\tO\tbecome\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3959\tI-Code_Block\tA_3959\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlternative\tO\tAlternative\tO\n:\tO\t:\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nquery\tB-Library_Variable\tquery\tO\nparams\tI-Library_Variable\tparams\tO\n,\tO\t,\tO\nanother\tO\tanother\tO\nsolution\tO\tsolution\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nthe\tO\tthe\tO\nlimit\tO\tlimit\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\nroute\tB-Library_Class\troute\tO\n's\tO\t's\tO\ncontroller\tI-Library_Class\tcontroller\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\ndoing\tO\tdoing\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmodel\tB-Library_Function\tmodel\tO\nhook\tO\thook\tO\nby\tO\tby\tO\ndoing\tO\tdoing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3960\tI-Code_Block\tA_3960\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47051596\tO\t47051596\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47051596/\tO\thttps://stackoverflow.com/questions/47051596/\tO\n\t\n\t\nMy\tO\tMy\tO\nmain\tO\tmain\tO\nconcern\tO\tconcern\tO\nis\tO\tis\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\navailable\tO\tavailable\tO\nquantity\tO\tquantity\tO\nof\tO\tof\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\nproduct\tO\tproduct\tO\nfrom\tO\tfrom\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\ncompare\tO\tcompare\tO\nthat\tO\tthat\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nCart\tB-Library_Class\tCart\tO\nitem\tO\titem\tO\nwhich\tO\twhich\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\nsession\tO\tsession\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\n$id\tB-Variable_Name\t$id\tO\n\"\tO\t\"\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nDB\tO\tDB\tO\nproduct\tO\tproduct\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\nit\tO\tit\tO\nto\tO\tto\tO\nCart\tB-Library_Class\tCart\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\navailable\tO\tavailable\tO\nquantity\tO\tquantity\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\nthe\tO\tthe\tO\nincrease\tO\tincrease\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nqty\tB-Variable_Name\tqty\tO\n\"\tO\t\"\tO\nfrom\tO\tfrom\tO\nCart\tB-Library_Class\tCart\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nbut\tO\tbut\tO\nfailed\tO\tfailed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6232\tI-Code_Block\tQ_6232\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nrequested\tO\trequested\tO\n$id\tB-Variable_Name\t$id\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nCart\tB-Library_Class\tCart\tO\nitems\tO\titems\tO\n'\tO\t'\tO\nid\tB-Variable_Name\tid\tO\n'\tO\t'\tO\nnot\tO\tnot\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nrowId\tB-Variable_Name\trowId\tO\nfrom\tO\tfrom\tO\nCart\tB-Library\tCart\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47051596\tO\t47051596\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47051596/\tO\thttps://stackoverflow.com/questions/47051596/\tO\n\t\n\t\nTry\tO\tTry\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nCart::search()\tB-Function_Name\tCart::search()\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\nprovided\tO\tprovided\tO\nid\tB-Variable_Name\tid\tO\nand\tO\tand\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\n$cartItem\tB-Variable_Name\t$cartItem\tO\nwhich\tO\twhich\tO\nmatches\tO\tmatches\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nall\tO\tall\tO\nitems\tO\titems\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nid\tB-Variable_Name\tid\tO\nof\tO\tof\tO\n1\tB-Value\t1\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6853\tI-Code_Block\tA_6853\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCheck\tO\tCheck\tO\ndocumentation\tO\tdocumentation\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetail\tO\tdetail\tO\n:\tO\t:\tO\nhttps://github.com/Crinsane/LaravelShoppingcart\tO\thttps://github.com/Crinsane/LaravelShoppingcart\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18026461\tO\t18026461\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18026461/\tO\thttps://stackoverflow.com/questions/18026461/\tO\n\t\n\t\nA\tO\tA\tO\nCaseMilestone\tB-Library_Class\tCaseMilestone\tO\nrecord\tO\trecord\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\none\tO\tone\tO\nCase\tB-Library_Class\tCase\tO\nrecord\tO\trecord\tO\nand\tO\tand\tO\none\tO\tone\tO\nCase\tB-Library_Class\tCase\tO\nrecord\tO\trecord\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\nmany\tO\tmany\tO\nCaseMilestone\tB-Library_Class\tCaseMilestone\tO\nrecords\tO\trecords\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1857\tI-Code_Block\tQ_1857\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSimilarly\tO\tSimilarly\tO\n,\tO\t,\tO\na\tO\ta\tO\nCaseMilestone\tB-Library_Class\tCaseMilestone\tO\nrecord\tO\trecord\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\none\tO\tone\tO\nMilestoneType\tB-Library_Class\tMilestoneType\tO\nrecord\tO\trecord\tO\nand\tO\tand\tO\none\tO\tone\tO\nMilestoneType\tB-Library_Class\tMilestoneType\tO\nrecord\tO\trecord\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\nmany\tO\tmany\tO\nCaseMilestone\tB-Library_Class\tCaseMilestone\tO\nrecords\tO\trecords\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1858\tI-Code_Block\tQ_1858\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ncome\tO\tcome\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nnot\tO\tnot\tO\nall\tO\tall\tO\nCaseMilestones\tB-Library_Class\tCaseMilestones\tO\nare\tO\tare\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nassociated\tO\tassociated\tO\nMilestoneType\tB-Library_Class\tMilestoneType\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nquery\tO\tquery\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18026461\tO\t18026461\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18026461/\tO\thttps://stackoverflow.com/questions/18026461/\tO\n\t\n\t\nCheck\tO\tCheck\tO\n\"\tB-Value\t\"\tO\nChild\tI-Value\tChild\tO\nRelationship\tI-Value\tRelationship\tO\nName\tI-Value\tName\tO\n\"\tI-Value\t\"\tO\nin\tO\tin\tO\nLookup\tO\tLookup\tO\nfrom\tO\tfrom\tO\nCaseMilestones\tB-Library_Class\tCaseMilestones\tO\nto\tO\tto\tO\nMilestoneType\tB-Library_Class\tMilestoneType\tO\n\t\nand\tO\tand\tO\nchange\tO\tchange\tO\nto\tO\tto\tO\nSELECT\tB-Code_Block\tSELECT\tB-Code_Block\nId\tI-Code_Block\tId\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nSELECT\tI-Code_Block\tSELECT\tI-Code_Block\nId\tI-Code_Block\tId\tI-Code_Block\nFROM\tI-Code_Block\tFROM\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nChild\tI-Code_Block\tChild\tI-Code_Block\nRelationship\tI-Code_Block\tRelationship\tI-Code_Block\nName\tI-Code_Block\tName\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nFROM\tI-Code_Block\tFROM\tI-Code_Block\nMilestoneType\tI-Code_Block\tMilestoneType\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9506342\tO\t9506342\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9506342/\tO\thttps://stackoverflow.com/questions/9506342/\tO\n\t\n\t\nOk\tO\tOk\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\nuser\tO\tuser\tO\nentered\tO\tentered\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\ninvalid\tO\tinvalid\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nskip\tO\tskip\tO\nalmost\tO\talmost\tO\nall\tO\tall\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nget\tO\tget\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nwhile\tO\twhile\tO\nloop\tO\tloop\tO\nto\tO\tto\tO\nask\tO\task\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nproceed\tO\tproceed\tO\nwith\tO\twith\tO\ncalculating\tO\tcalculating\tO\nanother\tO\tanother\tO\nloan\tO\tloan\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nprofessor\tO\tprofessor\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nprovided\tO\tprovided\tO\nus\tO\tus\tO\nwith\tO\twith\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nive\tO\tive\tO\nfound\tO\tfound\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nspecific\tO\tspecific\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nvalidation\tO\tvalidation\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nskipped\tO\tskipped\tO\nwithout\tO\twithout\tO\nexiting\tO\texiting\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nask\tO\task\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncalculate\tO\tcalculate\tO\nanother\tO\tanother\tO\nloan\tO\tloan\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nthus\tO\tthus\tO\nfar\tO\tfar\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_815\tI-Code_Block\tQ_815\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9506342\tO\t9506342\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9506342/\tO\thttps://stackoverflow.com/questions/9506342/\tO\n\t\n\t\ncontinue\tB-Code_Block\tcontinue\tO\nis\tO\tis\tO\nmaybe\tO\tmaybe\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nworse\tO\tworse\tO\nfeature\tO\tfeature\tO\nof\tO\tof\tO\njava\tB-Language\tjava\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nbreak\tB-Code_Block\tbreak\tO\nkeyword\tO\tkeyword\tO\n(\tO\t(\tO\nexcept\tO\texcept\tO\nin\tO\tin\tO\nswitch\tB-Code_Block\tswitch\tO\nstatements\tO\tstatements\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nleads\tO\tleads\tO\nto\tO\tto\tO\njigsaw\tO\tjigsaw\tO\ncode\tO\tcode\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\njumps\tO\tjumps\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\ncontinue\tB-Code_Block\tcontinue\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\npractical\tO\tpractical\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nvery\tO\tvery\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nit\tO\tit\tO\nproduces\tO\tproduces\tO\n(\tO\t(\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\nadding\tO\tadding\tO\nan\tO\tan\tO\ninner\tO\tinner\tO\nloop.\tO\tloop.\tO\n.\tO\t.\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\n2\tO\t2\tO\ncontinues\tB-Code_Block\tcontinues\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nyou\tO\tyou\tO\ncrazy\tO\tcrazy\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalways\tO\talways\tO\navoid\tO\tavoid\tO\nusing\tO\tusing\tO\ncontinue\tB-Code_Block\tcontinue\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nanother\tO\tanother\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nSame\tO\tSame\tO\nfor\tO\tfor\tO\nbreak\tB-Code_Block\tbreak\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1183\tI-Code_Block\tA_1183\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\neasy\tO\teasy\tO\n,\tO\t,\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\nclear\tO\tclear\tO\nand\tO\tand\tO\neven\tO\teven\tO\nbetter\tO\tbetter\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\nprocessing\tO\tprocessing\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ntied\tO\ttied\tO\nto\tO\tto\tO\nrobustness\tO\trobustness\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\nprocess()\tB-Library_Function\tprocess()\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nentered\tO\tentered\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvalid\tO\tvalid\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmakes\tO\tmakes\tO\nit\tO\tit\tO\neven\tO\teven\tO\nmore\tO\tmore\tO\nclear\tO\tclear\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nnormal\tO\tnormal\tO\n\"\tO\t\"\tO\nprogram\tO\tprogram\tO\nbehavior\tO\tbehavior\tO\nand\tO\tand\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nstrange\tO\tstrange\tO\ncases\tO\tcases\tO\nyou\tO\tyou\tO\nhandle\tO\thandle\tO\nas\tO\tas\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1184\tI-Code_Block\tA_1184\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthen\tO\tthen\tO\nyour\tO\tyour\tO\nmain\tO\tmain\tO\nloop\tO\tloop\tO\nbecomes\tO\tbecomes\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1185\tI-Code_Block\tA_1185\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9506342\tO\t9506342\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9506342/\tO\thttps://stackoverflow.com/questions/9506342/\tO\n\t\n\t\nBreak\tB-Code_Block\tBreak\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nuseful\tO\tuseful\tO\nfor\tO\tfor\tO\nstopping\tO\tstopping\tO\nloops\tO\tloops\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nsaid\tO\tsaid\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\n.\tO\t.\tO\n\t\nEssentially\tO\tEssentially\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\neffect\tO\teffect\tO\nof\tO\tof\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nboolean\tB-Data_Type\tboolean\tO\nparameter\tO\tparameter\tO\nof\tO\tof\tO\na\tO\ta\tO\nfor\tB-Code_Block\tfor\tO\nloop\tO\tloop\tO\nto\tO\tto\tO\ntrue\tB-Value\ttrue\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nwhat\tO\twhat\tO\nin\tO\tin\tO\nCMD\tB-Application\tCMD\tO\nis\tO\tis\tO\nreferred\tO\treferred\tO\nto\tO\tto\tO\na\tO\ta\tO\nGOTO\tO\tGOTO\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1186\tI-Code_Block\tA_1186\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24648824\tO\t24648824\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24648824/\tO\thttps://stackoverflow.com/questions/24648824/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nread\tO\tread\tO\nsome\tO\tsome\tO\nXML\tB-File_Type\tXML\tO\nfiles\tO\tfiles\tO\nthat\tO\tthat\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\nONIX\tB-File_Type\tONIX\tO\nstandard\tO\tstandard\tO\n\t\nSee\tO\tSee\tO\n:\tO\t:\tO\nhttp://www.editeur.org/93/Release-3.0-Downloads/\tO\thttp://www.editeur.org/93/Release-3.0-Downloads/\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\ni\tO\ti\tO\ndownloaded\tO\tdownloaded\tO\nthe\tO\tthe\tO\nONIX\tB-File_Type\tONIX\tO\n3.0\tB-Version\t3.0\tO\nXSD\tB-File_Type\tXSD\tO\n:\tO\t:\tO\n\t\nhttp://www.editeur.org/files/ONIX%203/ONIX_BookProduct_XSD_schema+codes_Issue_25.zip\tO\thttp://www.editeur.org/files/ONIX%203/ONIX_BookProduct_XSD_schema+codes_Issue_25.zip\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\ndownloaded\tO\tdownloaded\tO\nXSD\tB-File_Type\tXSD\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\ncommand\tO\tcommand\tO\n\"\tO\t\"\tO\nxsd\tB-Code_Block\txsd\tO\nyour.xsd\tI-Code_Block\tyour.xsd\tO\n/classes\tI-Code_Block\t/classes\tO\n\"\tO\t\"\tO\ni\tO\ti\tO\ncreated\tO\tcreated\tO\nclasses\tO\tclasses\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nXml\tB-Library_Class\tXml\tO\nSerializer\tI-Library_Class\tSerializer\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2761\tI-Code_Block\tQ_2761\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nand\tO\tand\tO\nexception\tB-Library_Class\texception\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWhen\tO\tWhen\tO\ni\tO\ti\tO\ndrill\tO\tdrill\tO\ndown\tO\tdown\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ninner\tO\tinner\tO\nexceptions\tB-Library_Class\texceptions\tO\ni\tO\ti\tO\nend\tO\tend\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nmessage\tO\tmessage\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nXSD\tB-File_Type\tXSD\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nsuggestions\tO\tsuggestions\tO\n?\tO\t?\tO\n!\tO\t!\tO\n\t\nEdit\tO\tEdit\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2762\tI-Code_Block\tQ_2762\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25391383\tO\t25391383\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25391383/\tO\thttps://stackoverflow.com/questions/25391383/\tO\n\t\n\t\ni\tO\ti\tO\nam\tO\tam\tO\nbeginner\tO\tbeginner\tO\nin\tO\tin\tO\nQT\tB-Application\tQT\tO\n\t\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nbinary\tB-File_Type\tbinary\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\ndraw\tO\tdraw\tO\nit\tO\tit\tO\npixel\tO\tpixel\tO\nby\tO\tby\tO\npixel\tO\tpixel\tO\n\t\ni\tO\ti\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nwarning\tO\twarning\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nwas\tO\twas\tO\ndebugging\tO\tdebugging\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2886\tI-Code_Block\tQ_2886\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2887\tI-Code_Block\tQ_2887\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthanks\tO\tthanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n:)\tO\t:)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25391383\tO\t25391383\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25391383/\tO\thttps://stackoverflow.com/questions/25391383/\tO\n\t\n\t\nYou\tO\tYou\tO\nincorrectly\tO\tincorrectly\tO\ncalculate\tO\tcalculate\tO\nx\tB-Variable_Name\tx\tO\nand\tO\tand\tO\ny\tB-Variable_Name\ty\tO\ncoordinate\tO\tcoordinate\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3496\tI-Code_Block\tA_3496\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nx\tB-Variable_Name\tx\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ninstead\tO\tinstead\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3497\tI-Code_Block\tA_3497\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ny\tB-Variable_Name\ty\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3498\tI-Code_Block\tA_3498\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\nmaybe\tO\tmaybe\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nanother\tO\tanother\tO\nvariable\tO\tvariable\tO\nfor\tO\tfor\tO\nx\tB-Variable_Name\tx\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\ndivision\tO\tdivision\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3499\tI-Code_Block\tA_3499\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSuggestions\tO\tSuggestions\tO\n:\tO\t:\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nvariable\tO\tvariable\tO\nright\tO\tright\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\nis\tO\tis\tO\nused\tO\tused\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3500\tI-Code_Block\tA_3500\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\neven\tO\teven\tO\nbetter\tO\tbetter\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3501\tI-Code_Block\tA_3501\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23679510\tO\t23679510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23679510/\tO\thttps://stackoverflow.com/questions/23679510/\tO\n\t\n\t\nI\tO\tI\tO\nHave\tO\tHave\tO\nA\tO\tA\tO\ntable\tB-Data_Structure\ttable\tO\nthat\tO\tthat\tO\nshows\tO\tshows\tO\neach\tO\teach\tO\ncourse\tO\tcourse\tO\na\tO\ta\tO\nstudent\tO\tstudent\tO\nis\tO\tis\tO\nregisered\tO\tregisered\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2626\tI-Code_Block\tQ_2626\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\nwill\tO\twill\tO\nI\tO\tI\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ncourses\tO\tcourses\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nstudent\tO\tstudent\tO\ndoing\tO\tdoing\tO\nPSY1\tB-Variable_Name\tPSY1\tO\nalso\tO\talso\tO\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\nfufills\tO\tfufills\tO\nBOTH\tO\tBOTH\tO\nCond1\tB-Variable_Name\tCond1\tO\nand\tO\tand\tO\nCond\tB-Variable_Name\tCond\tO\n2\tI-Variable_Name\t2\tO\n?\tO\t?\tO\n\t\ni.e\tO\ti.e\tO\n1004\tB-Variable_Name\t1004\tO\ndoes\tO\tdoes\tO\n1\tO\t1\tO\ncourse\tO\tcourse\tO\nthat\tO\tthat\tO\npasses\tO\tpasses\tO\nboth\tO\tboth\tO\ncriteria\tO\tcriteria\tO\nand\tO\tand\tO\nalso\tO\talso\tO\ndoes\tO\tdoes\tO\npsy1\tB-Variable_Name\tpsy1\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2627\tI-Code_Block\tQ_2627\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDoesnt\tO\tDoesnt\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nED\tO\tED\tO\n:\tO\t:\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nall\tO\tall\tO\nstudents\tO\tstudents\tO\ndoing\tO\tdoing\tO\nPSY1\tB-Variable_Name\tPSY1\tO\n,\tO\t,\tO\nAlong\tO\tAlong\tO\nwith\tO\twith\tO\nteh\tO\tteh\tO\nammount\tO\tammount\tO\nof\tO\tof\tO\nOTHER\tO\tOTHER\tO\ncourses\tO\tcourses\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nwhich\tO\twhich\tO\nfufill\tO\tfufill\tO\nbot\tO\tbot\tO\ncond1\tB-Variable_Name\tcond1\tO\nand\tO\tand\tO\ncond2\tB-Variable_Name\tcond2\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23679510\tO\t23679510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23679510/\tO\thttps://stackoverflow.com/questions/23679510/\tO\n\t\n\t\nUntested\tO\tUntested\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nshould\tO\tshould\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\na\tO\ta\tO\nstarter\tO\tstarter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3237\tI-Code_Block\tA_3237\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23679510\tO\t23679510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23679510/\tO\thttps://stackoverflow.com/questions/23679510/\tO\n\t\n\t\nE.g\tO\tE.g\tO\n.\tO\t.\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3238\tI-Code_Block\tA_3238\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nstudents\tO\tstudents\tO\nwith\tO\twith\tO\na\tO\ta\tO\nscore\tO\tscore\tO\nof\tO\tof\tO\nzero\tB-Value\tzero\tO\n,\tO\t,\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\n[\tB-Library_Function\t[\tO\nINNER\tI-Library_Function\tINNER\tO\n]\tI-Library_Function\t]\tO\nJOIN\tB-Library_Function\tJOIN\tO\nto\tO\tto\tO\na\tO\ta\tO\nLEFT\tB-Library_Function\tLEFT\tO\nJOIN\tI-Library_Function\tJOIN\tO\nand\tO\tand\tO\nCOUNT\tB-Library_Function\tCOUNT\tO\n(\tO\t(\tO\nor\tO\tor\tO\nCOALESCE(COUNT))\tB-Library_Function\tCOALESCE(COUNT))\tO\nsomething\tO\tsomething\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28665982\tO\t28665982\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28665982/\tO\thttps://stackoverflow.com/questions/28665982/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nRails\tO\tRails\tO\nproject\tO\tproject\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3375\tI-Code_Block\tQ_3375\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nimages\tB-User_Interface_Element\timages\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nRoot/uploads/images\tB-File_Name\tRoot/uploads/images\tO\n\"\tO\t\"\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nlots\tO\tlots\tO\nby\tO\tby\tO\ngoogling\tO\tgoogling\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\ngot\tO\tgot\tO\nhelpfull\tO\thelpfull\tO\n,\tO\t,\tO\ni\tO\ti\tO\nam\tO\tam\tO\nstuch\tO\tstuch\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\nthankful\tO\tthankful\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28665982\tO\t28665982\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28665982/\tO\thttps://stackoverflow.com/questions/28665982/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\ntry\tO\ttry\tO\nsomething\tO\tsomething\tO\nalong\tO\talong\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4032\tI-Code_Block\tA_4032\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nroutes.rb\tB-File_Name\troutes.rb\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4033\tI-Code_Block\tA_4033\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nsecurity\tO\tsecurity\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\nconcern\tO\tconcern\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\npermission\tO\tpermission\tO\nchecks\tO\tchecks\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1411364\tO\t1411364\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1411364/\tO\thttps://stackoverflow.com/questions/1411364/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nWebView\tB-Library_Class\tWebView\tO\ninto\tO\tinto\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nloading\tO\tloading\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nHTML\tB-Language\tHTML\tO\npage\tO\tpage\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nembedded\tO\tembedded\tO\nimages\tB-User_Interface_Element\timages\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nzoom\tO\tzoom\tO\nin\tO\tin\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntext\tB-User_Interface_Element\ttext\tO\nand\tO\tand\tO\nimage\tB-User_Interface_Element\timage\tO\nin\tO\tin\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nfashion\tO\tfashion\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nwould\tO\twould\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nweb\tB-Application\tweb\tO\nbrowser\tI-Application\tbrowser\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nenable\tO\tenable\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1411364\tO\t1411364\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1411364/\tO\thttps://stackoverflow.com/questions/1411364/\tO\n\t\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nscalesPageToFit\tB-Library_Variable\tscalesPageToFit\tO\nto\tO\tto\tO\nYES\tO\tYES\tO\n...\tO\t...\tO\n.\tO\t.\tO\nit\tO\tit\tO\nallows\tO\tallows\tO\nit\tO\tit\tO\nto\tO\tto\tO\nzoom\tO\tzoom\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\n..\tO\t..\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ntrue\tO\ttrue\tO\nzoom\tO\tzoom\tO\nlike\tO\tlike\tO\nsafari\tB-Application\tsafari\tO\nhas\tO\thas\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1411364\tO\t1411364\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1411364/\tO\thttps://stackoverflow.com/questions/1411364/\tO\n\t\n\t\nFor\tO\tFor\tO\ncompleteness\tO\tcompleteness\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmust\tO\tmust\tO\nenable\tO\tenable\tO\nmultitouch\tB-Library_Variable\tmultitouch\tO\n,\tO\t,\tO\nscalesPagesToFit\tB-Library_Variable\tscalesPagesToFit\tO\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nconditions\tO\tconditions\tO\nif\tO\tif\tO\nits\tO\tits\tO\nwithin\tO\twithin\tO\ncertain\tO\tcertain\tO\nother\tO\tother\tO\nviews\tB-User_Interface_Element\tviews\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthen\tO\tthen\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nit\tO\tit\tO\nscaling\tO\tscaling\tO\nyour\tO\tyour\tO\nwebpage\tO\twebpage\tO\n(\tO\t(\tO\nespecially\tO\tespecially\tO\nif\tO\tif\tO\nusing\tO\tusing\tO\nlocal\tO\tlocal\tO\nfiles\tO\tfiles\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nsnippet\tO\tsnippet\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nHTML\tB-Language\tHTML\tO\n\t\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\nso\tO\tso\tO\n:\tO\t:\tO\nhttp://iphoneincubator.com/blog/windows-views/right-scale-for-a-uiwebview\tO\thttp://iphoneincubator.com/blog/windows-views/right-scale-for-a-uiwebview\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32991273\tO\t32991273\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32991273/\tO\thttps://stackoverflow.com/questions/32991273/\tO\n\t\n\t\nOn\tO\tOn\tO\nAndroid\tB-Operating_System\tAndroid\tO\n6.0\tB-Version\t6.0\tO\nMarshmallow\tI-Version\tMarshmallow\tO\nthe\tO\tthe\tO\npositioning\tO\tpositioning\tO\nof\tO\tof\tO\nan\tO\tan\tO\nEditText\tB-Library_Class\tEditText\tO\nin\tO\tin\tO\nrelation\tO\trelation\tO\nto\tO\tto\tO\nan\tO\tan\tO\nImageView\tB-Library_Class\tImageView\tO\nin\tO\tin\tO\na\tO\ta\tO\nRelativeLayout\tB-Library_Class\tRelativeLayout\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nattributes\tO\tattributes\tO\nbaseline\tB-Library_Variable\tbaseline\tO\nand\tO\tand\tO\nlayout_alignBaseline\tB-Library_Variable\tlayout_alignBaseline\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbehaviour\tO\tbehaviour\tO\ncan\tO\tcan\tO\neven\tO\teven\tO\nbe\tO\tbe\tO\nobserved\tO\tobserved\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlayout\tO\tlayout\tO\neditor\tO\teditor\tO\nin\tO\tin\tO\nAndroid\tB-Application\tAndroid\tO\nstudio\tI-Application\tstudio\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\na\tO\ta\tO\nreal\tO\treal\tO\nAndroid\tB-Operating_System\tAndroid\tO\nMarshmallow\tB-Version\tMarshmallow\tO\ndevice\tO\tdevice\tO\nor\tO\tor\tO\nemulatr\tB-Application\temulatr\tO\nthe\tO\tthe\tO\nEditText\tB-Library_Class\tEditText\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\nshift\tO\tshift\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nvisible\tO\tvisible\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nI\tO\tI\tO\nmiss\tO\tmiss\tO\nsome\tO\tsome\tO\nchanges\tO\tchanges\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4002\tI-Code_Block\tQ_4002\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\nscreenshots\tO\tscreenshots\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nLayout\tB-Application\tLayout\tO\nEditor\tI-Application\tEditor\tO\nof\tO\tof\tO\nAndroid\tB-Application\tAndroid\tO\nStudio\tI-Application\tStudio\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\nscreenshots\tO\tscreenshots\tO\nis\tO\tis\tO\nsolely\tO\tsolely\tO\nthe\tO\tthe\tO\nchange\tO\tchange\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nAPI\tB-Library\tAPI\tO\nlevel\tO\tlevel\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nproject\tO\tproject\tO\nhttps://github.com/mikegr/baseline\tO\thttps://github.com/mikegr/baseline\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32991273\tO\t32991273\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32991273/\tO\thttps://stackoverflow.com/questions/32991273/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbug\tO\tbug\tO\nreported\tO\treported\tO\non\tO\ton\tO\nhttps://code.google.com/p/android/issues/detail?id=73697&thanks=73697\tO\thttps://code.google.com/p/android/issues/detail?id=73697&thanks=73697\tO\n\t\nSince\tO\tSince\tO\nAPI11\tB-Library\tAPI11\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\nuse\tO\tuse\tO\nandroid:baselineAlignBottom\tB-Code_Block\tandroid:baselineAlignBottom\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\ntrue\tI-Code_Block\ttrue\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n\t\nBelow\tO\tBelow\tO\nAPI11\tB-Library\tAPI11\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\noverwrite\tO\toverwrite\tO\ngetBaseLine()\tB-Library_Function\tgetBaseLine()\tB-Code_Block\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\nto\tO\tto\tO\nAndroid\tB-Library\tAndroid\tO\nSupport\tI-Library\tSupport\tO\nLibrary\tI-Library\tLibrary\tO\n23.2.1\tB-Version\t23.2.1\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmay\tO\tmay\tO\nsolve\tO\tsolve\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35518401\tO\t35518401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35518401/\tO\thttps://stackoverflow.com/questions/35518401/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread\tO\tread\tO\na\tO\ta\tO\nhuge\tO\thuge\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\nfread\tB-Library_Function\tfread\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nguess\tO\tguess\tO\nsomething\tO\tsomething\tO\nis\tO\tis\tO\nmessed\tO\tmessed\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlayout\tO\tlayout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4342\tI-Code_Block\tQ_4342\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\non\tO\ton\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\ni\tO\ti\tO\njust\tO\tjust\tO\ntook\tO\ttook\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nand\tO\tand\tO\nfew\tO\tfew\tO\nbefore\tO\tbefore\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4343\tI-Code_Block\tQ_4343\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4344\tI-Code_Block\tQ_4344\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nsolve\tO\tsolve\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35518401\tO\t35518401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35518401/\tO\thttps://stackoverflow.com/questions/35518401/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\n100%\tO\t100%\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nhere\tO\there\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ntry\tO\ttry\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nwith\tO\twith\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5901\tI-Code_Block\tA_5901\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nfread\tB-Library_Function\tfread\tO\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nseemed\tO\tseemed\tO\nthat\tO\tthat\tO\nfread\tB-Library_Function\tfread\tO\nwas\tO\twas\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\nidentifying\tO\tidentifying\tO\nmy\tO\tmy\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nseparation\tO\tseparation\tO\n.\tO\t.\tO\n\t\nSetting\tO\tSetting\tO\nfill\tB-Library_Variable\tfill\tO\nto\tO\tto\tO\ntrue\tO\ttrue\tO\nallows\tO\tallows\tO\nfread\tB-Library_Function\tfread\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\nin\tO\tin\tO\nany\tO\tany\tO\nmissing\tO\tmissing\tO\ndata\tO\tdata\tO\n-\tO\t-\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\ndata\tO\tdata\tO\nframe\tO\tframe\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nweirdness\tO\tweirdness\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27321862\tO\t27321862\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27321862/\tO\thttps://stackoverflow.com/questions/27321862/\tO\n\t\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nrecently\tO\trecently\tO\nstarted\tO\tstarted\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\na\tO\ta\tO\nload\tO\tload\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\non\tO\ton\tO\na\tO\ta\tO\nHadoop\tB-Application\tHadoop\tO\n/\tO\t/\tO\nHBase\tB-Application\tHBase\tO\ncluster\tO\tcluster\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nfollowed\tO\tfollowed\tO\nthe\tO\tthe\tO\ntutorial\tO\ttutorial\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nApache\tB-Application\tApache\tO\n'\tO\t'\tO\nQuick\tO\tQuick\tO\nStart\tO\tStart\tO\n'\tO\t'\tO\nguide\tO\tguide\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhave\tO\thave\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nstandalone\tO\tstandalone\tO\nHBase\tB-Application\tHBase\tO\ninstance\tO\tinstance\tO\nrunning\tO\trunning\tO\nsuccessfully\tO\tsuccessfully\tO\non\tO\ton\tO\none\tO\tone\tO\nof\tO\tof\tO\nour\tO\tour\tO\nservers\tB-Application\tservers\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nHBase\tB-Application\tHBase\tO\nshell\tI-Application\tshell\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\ntables\tB-Data_Structure\ttables\tO\n,\tO\t,\tO\nput\tO\tput\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nget\tO\tget\tO\n,\tO\t,\tO\nscan\tO\tscan\tO\netc\tO\tetc\tO\n-\tO\t-\tO\nlooks\tO\tlooks\tO\ngood\tO\tgood\tO\n!\tO\t!\tO\n\t\nNow\tO\tNow\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\nour\tO\tour\tO\nservers\tB-Application\tservers\tO\nwhere\tO\twhere\tO\nHBase\tB-Application\tHBase\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ninstalled\tO\tinstalled\tO\nare\tO\tare\tO\nall\tO\tall\tO\nlinux\tB-Operating_System\tlinux\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ndevelopers\tO\tdevelopers\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncompany\tO\tcompany\tO\nuse\tO\tuse\tO\nWindows\tB-Operating_System\tWindows\tO\nmachines\tO\tmachines\tO\n-\tO\t-\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\nif\tO\tif\tO\nwe\tO\twe\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\neveryone\tO\teveryone\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncompany\tO\tcompany\tO\ninstall\tO\tinstall\tO\nCygwin\tB-Application\tCygwin\tO\njust\tO\tjust\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nJava\tB-Application\tJava\tO\nAPI\tI-Application\tAPI\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nrunning\tO\trunning\tO\nfrom\tO\tfrom\tO\ninside\tO\tinside\tO\nEclipse\tB-Application\tEclipse\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nJava\tB-Application\tJava\tO\nAPI\tI-Application\tAPI\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3150\tI-Code_Block\tQ_3150\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFollowed\tO\tFollowed\tO\neventually\tO\teventually\tO\nby\tO\tby\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3151\tI-Code_Block\tQ_3151\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nJava\tB-Library\tJava\tO\nAPI\tI-Library\tAPI\tO\nfor\tO\tfor\tO\nHBase\tB-Application\tHBase\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\n,\tO\t,\tO\nconnecting\tO\tconnecting\tO\nto\tO\tto\tO\na\tO\ta\tO\nserver\tB-Application\tserver\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nLinux\tB-Operating_System\tLinux\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\ninstalling\tO\tinstalling\tO\nCygwin\tB-Application\tCygwin\tO\n,\tO\t,\tO\nHadoop\tB-Application\tHadoop\tO\nand\tO\tand\tO\nHBase\tB-Application\tHBase\tO\non\tO\ton\tO\nevery\tO\tevery\tO\ndeveloper\tO\tdeveloper\tO\n's\tO\t's\tO\nmachine\tO\tmachine\tO\n?\tO\t?\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nwould\tO\twould\tO\nanother\tO\tanother\tO\npackage\tO\tpackage\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nKundera\tB-Application\tKundera\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nwithout\tO\twithout\tO\nCygwin\tB-Application\tCygwin\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nREST\tB-Library\tREST\tO\nAPI\tI-Library\tAPI\tO\ncompare\tO\tcompare\tO\nin\tO\tin\tO\nperformance\tO\tperformance\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\nJava\tB-Application\tJava\tO\nAPI\tI-Application\tAPI\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nalways\tO\talways\tO\nwrite\tO\twrite\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nwrapper\tO\twrapper\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nand\tO\tand\tO\ndistribute\tO\tdistribute\tO\nit\tO\tit\tO\nto\tO\tto\tO\nour\tO\tour\tO\ndevelopers\tO\tdevelopers\tO\n(\tO\t(\tO\nalthough\tO\talthough\tO\nno\tO\tno\tO\ndoubt\tO\tdoubt\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nalready\tO\talready\tO\nexist\tO\texist\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\nas\tO\tas\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\nfinding\tO\tfinding\tO\na\tO\ta\tO\ndefinitive\tO\tdefinitive\tO\nanswer\tO\tanswer\tO\non\tO\ton\tO\nGoogle\tB-Website\tGoogle\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20959651\tO\t20959651\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20959651/\tO\thttps://stackoverflow.com/questions/20959651/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nusing\tO\tusing\tO\nanalog\tO\tanalog\tB-Code_Block\npin\tB-Device\tpin\tI-Code_Block\n3\tB-Value\t3\tI-Code_Block\non\tO\ton\tO\nmy\tO\tmy\tO\nArduino\tB-Device\tArduino\tO\nUno\tI-Device\tUno\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nout\tO\tout\tO\nvoltage\tO\tvoltage\tO\nfrom\tO\tfrom\tO\n0\tB-Value\t0\tO\nto\tO\tto\tO\n5V\tB-Value\t5V\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthat\tO\tthat\tO\nvoltage\tO\tvoltage\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\nthe\tO\tthe\tO\nmotor\tB-Device\tmotor\tO\nand\tO\tand\tO\ncurrently\tO\tcurrently\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2230\tI-Code_Block\tQ_2230\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\n255\tB-Value\t255\tB-Code_Block\npwm\tI-Value\tpwm\tI-Code_Block\nfor\tO\tfor\tO\n5V\tB-Value\t5V\tO\nand\tO\tand\tO\n127\tB-Value\t127\tB-Code_Block\nfor\tI-Value\tfor\tO\n2.5V\tI-Value\t2.5V\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nPWM\tO\tPWM\tO\nis\tO\tis\tO\nsending\tO\tsending\tO\nfull\tO\tfull\tO\ncycle\tO\tcycle\tO\nat\tO\tat\tO\n255pwm(5V)\tB-Value\t255pwm(5V)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\non\tO\ton\tO\n127V\tB-Value\t127V\tO\nthe\tO\tthe\tO\ncycle\tO\tcycle\tO\nis\tO\tis\tO\nat\tO\tat\tO\n50%\tB-Value\t50%\tO\nwhich\tO\twhich\tO\ncauses\tO\tcauses\tO\nmy\tO\tmy\tO\nmotor\tB-Device\tmotor\tO\nto\tO\tto\tO\ntwitch\tO\ttwitch\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nsearching\tO\tsearching\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nfull\tO\tfull\tO\nPWM\tO\tPWM\tO\ncycle\tO\tcycle\tO\neven\tO\teven\tO\nat\tO\tat\tO\nlower\tO\tlower\tO\nvolts\tO\tvolts\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20959651\tO\t20959651\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20959651/\tO\thttps://stackoverflow.com/questions/20959651/\tO\n\t\n\t\nFirst\tO\tFirst\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nD3\tB-Value\tD3\tO\nnot\tO\tnot\tO\nA3\tB-Value\tA3\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nPWM\tO\tPWM\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nexist\tO\texist\tO\non\tO\ton\tO\nA3\tB-Value\tA3\tO\n.\tO\t.\tO\n\t\nAssuming\tO\tAssuming\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndriving\tO\tdriving\tO\na\tO\ta\tO\nDC\tB-Device\tDC\tO\nmotor\tI-Device\tmotor\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nservo\tB-Device\tservo\tO\nor\tO\tor\tO\nstepper\tB-Device\tstepper\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\n1st\tO\t1st\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nsmoothing\tO\tsmoothing\tO\ncapacitor\tO\tcapacitor\tO\n.\tO\t.\tO\n\t\nWhere\tO\tWhere\tO\nyour\tO\tyour\tO\nformula\tO\tformula\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nF\tB-Code_Block\tF\tO\n=\tI-Code_Block\t=\tO\nL*C\tI-Code_Block\tL*C\tO\nNoting\tO\tNoting\tO\nthat\tO\tthat\tO\nanalogWrite\tB-Library_Function\tanalogWrite\tO\nuses\tO\tuses\tO\na\tO\ta\tO\nF\tB-Code_Block\tF\tO\n=\tI-Code_Block\t=\tO\n490Hz\tI-Code_Block\t490Hz\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nconcept\tO\tconcept\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\nin\tO\tin\tO\nshort\tO\tshort\tO\nthe\tO\tthe\tO\ncap\tO\tcap\tO\naverage\tO\taverage\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nhigh\tO\thigh\tO\nand\tO\tand\tO\nlows\tO\tlows\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nPWM\tO\tPWM\tO\n,\tO\t,\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nduty\tO\tduty\tO\ncycle\tO\tcycle\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\ncapacitance\tO\tcapacitance\tO\nneeded\tO\tneeded\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfrequency\tO\tfrequency\tO\nand\tO\tand\tO\nimpedance\tO\timpedance\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nprovide\tO\tprovide\tO\nthe\tO\tthe\tO\nanalog\tO\tanalog\tO\nvoltage\tO\tvoltage\tO\n.\tO\t.\tO\n\t\n2nd\tO\t2nd\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nbigger\tO\tbigger\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nArduino\tB-Device\tArduino\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\nsupply\tO\tsupply\tO\nsufficient\tO\tsufficient\tO\ncurrent\tO\tcurrent\tO\nto\tO\tto\tO\ndrive\tO\tdrive\tO\nthe\tO\tthe\tO\nmotor\tB-Device\tmotor\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nmax\tO\tmax\tO\nout\tO\tout\tO\nat\tO\tat\tO\nabout\tO\tabout\tO\n20ma\tB-Value\t20ma\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmotor\tB-Device\tmotor\tO\nlikely\tO\tlikely\tO\nneeds\tO\tneeds\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nat\tO\tat\tO\nlow\tO\tlow\tO\nspeeds\tO\tspeeds\tO\nthe\tO\tthe\tO\npulses\tO\tpulses\tO\nwhich\tO\twhich\tO\nwere\tO\twere\tO\nweek\tO\tweek\tO\n,\tO\t,\tO\nstall\tO\tstall\tO\nout\tO\tout\tO\nduring\tO\tduring\tO\ntheir\tO\ttheir\tO\nlow\tO\tlow\tO\nperiods\tO\tperiods\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nPWM\tO\tPWM\tO\noutput\tO\toutput\tO\ndrive\tO\tdrive\tO\na\tO\ta\tO\ntransistor\tB-Device\ttransistor\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nin\tO\tin\tO\nturn\tO\tturn\tO\nwill\tO\twill\tO\nON-OFF\tO\tON-OFF\tO\nthe\tO\tthe\tO\nmotor\tB-Device\tmotor\tO\ndirectly\tO\tdirectly\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npower\tO\tpower\tO\nsupply\tO\tsupply\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nyour\tO\tyour\tO\nmotor\tO\tmotor\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nenough\tO\tenough\tO\ninertia\tO\tinertia\tO\nas\tO\tas\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\ncap\tO\tcap\tO\n.\tO\t.\tO\n\t\nsee\tO\tsee\tO\nadafruit-arduino-lesson-13-dc-motors/breadboard\tO\tadafruit-arduino-lesson-13-dc-motors/breadboard\tO\n-layout\tO\t-layout\tO\n\t\nand\tO\tand\tO\nhere\tO\there\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ndiscussion\tO\tdiscussion\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nsmoothing\tO\tsmoothing\tO\ncap\tO\tcap\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10063672\tO\t10063672\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10063672/\tO\thttps://stackoverflow.com/questions/10063672/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmenu-bar\tB-User_Interface_Element\tmenu-bar\tO\nbased\tO\tbased\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndisplays\tO\tdisplays\tO\na\tO\ta\tO\nwindow\tB-User_Interface_Element\twindow\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nicon\tB-User_Interface_Element\ticon\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nall\tO\tall\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\non\tO\ton\tO\nMac\tB-Operating_System\tMac\tO\nOS\tI-Operating_System\tOS\tO\nX\tI-Operating_System\tX\tO\nLion\tB-Version\tLion\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n,\tO\t,\tO\nan\tO\tan\tO\nerror\tO\terror\tO\noccurs\tO\toccurs\tO\non\tO\ton\tO\nSnow\tB-Version\tSnow\tO\nLeopard\tI-Version\tLeopard\tO\nan\tO\tan\tO\nsooner\tO\tsooner\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nMac\tB-Operating_System\tMac\tO\nOS\tI-Operating_System\tOS\tO\nX\tI-Operating_System\tX\tO\n.\tO\t.\tO\n\t\nAnytime\tO\tAnytime\tO\n[\tB-Code_Block\t[\tB-Code_Block\nTheWindowController\tI-Code_Block\tTheWindowController\tI-Code_Block\nwindow\tI-Code_Block\twindow\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nstops\tO\tstops\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nkeeps\tO\tkeeps\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nwindow\tO\twindow\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nnil\tO\tnil\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncorrupt\tO\tcorrupt\tO\n,\tO\t,\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nIdea\tO\tIdea\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\n,\tO\t,\tO\nand\tO\tand\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\nsaid\tO\tsaid\tO\n,\tO\t,\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nhappens\tO\thappens\tO\nin\tO\tin\tO\nMac\tB-Operating_System\tMac\tO\nOS\tI-Operating_System\tOS\tO\nX\tI-Operating_System\tX\tO\nSnow\tB-Version\tSnow\tO\nLeopard\tI-Version\tLeopard\tO\n.\tO\t.\tO\n\t\nBtw\tO\tBtw\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nARC\tO\tARC\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nmatters\tO\tmatters\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10063672\tO\t10063672\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10063672/\tO\thttps://stackoverflow.com/questions/10063672/\tO\n\t\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nloading\tO\tloading\tO\na\tO\ta\tO\nNIB\tB-File_Type\tNIB\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\na\tO\ta\tO\n10.7-specific\tB-Version\t10.7-specific\tO\nfeature\tO\tfeature\tO\n,\tO\t,\tO\nCocoa\tO\tCocoa\tO\nAutolayout\tO\tAutolayout\tO\n,\tO\t,\tO\non\tO\ton\tO\n10.6\tB-Version\t10.6\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\n10.6\tB-Version\t10.6\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nusing\tO\tusing\tO\nsuch\tO\tsuch\tO\nfeatures\tO\tfeatures\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ndeployment\tO\tdeployment\tO\ntarget\tO\ttarget\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nNIB\tB-File_Type\tNIB\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nthen\tO\tthen\tO\ncause\tO\tcause\tO\nwarnings\tO\twarnings\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nfor\tO\tfor\tO\nfeatures\tO\tfeatures\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nthat\tO\tthat\tO\ndeployment\tO\tdeployment\tO\ntarget\tO\ttarget\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nalready\tO\talready\tO\ndone\tO\tdone\tO\nso\tO\tso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntarget\tO\ttarget\tO\n's\tO\t's\tO\nbuild\tO\tbuild\tO\nsettings\tO\tsettings\tO\n.\tO\t.\tO\n\t\nSet\tO\tSet\tO\nthe\tO\tthe\tO\ndeployment\tO\tdeployment\tO\ntarget\tO\ttarget\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nnecessarily\tO\tnecessarily\tO\ncause\tO\tcause\tO\nwarnings\tO\twarnings\tO\nfor\tO\tfor\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nuses\tO\tuses\tO\nfeatures\tO\tfeatures\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\nintroduced\tO\tintroduced\tO\nin\tO\tin\tO\n10.7\tB-Version\t10.7\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nup\tO\tup\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\nbuild\tO\tbuild\tO\nconfiguration\tO\tconfiguration\tO\nwhich\tO\twhich\tO\nbuilds\tO\tbuilds\tO\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\n10.6\tB-Version\t10.6\tO\nSDK\tB-Library\tSDK\tO\nand\tO\tand\tO\ncompile\tO\tcompile\tO\nagainst\tO\tagainst\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\npost-10.6\tB-Version\tpost-10.6\tO\nfeatures\tO\tfeatures\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nApple\tB-Library\tApple\tO\n's\tO\t's\tO\nSDK\tI-Library\tSDK\tO\nCompatibility\tO\tCompatibility\tO\nGuide\tO\tGuide\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21621538\tO\t21621538\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21621538/\tO\thttps://stackoverflow.com/questions/21621538/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nreferring\tO\treferring\tO\nto\tO\tto\tO\nhow\tO\thow\tO\nangular\tB-Library\tangular\tO\njs\tI-Library\tjs\tO\nconnects\tO\tconnects\tO\nto\tO\tto\tO\nmongo\tB-Application\tmongo\tO\ndb\tI-Application\tdb\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhile\tO\twhile\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nurl\tB-Variable_Name\turl\tO\nand\tO\tand\tO\nport\tB-Variable_Name\tport\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\ndb\tB-Variable_Name\tdb\tO\n'\tO\t'\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\ncode\tO\tcode\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2332\tI-Code_Block\tQ_2332\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWill\tO\tWill\tO\nsomeone\tO\tsomeone\tO\nplease\tO\tplease\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\npath\tO\tpath\tO\nhere\tO\there\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nalso\tO\talso\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nMONGOHQ_URL\tB-Variable_Name\tMONGOHQ_URL\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nhttp://docs.mongohq.com/languages/nodejs.html\tO\thttp://docs.mongohq.com/languages/nodejs.html\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nmongo\tB-Application\tmongo\tO\nurl\tO\turl\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2333\tI-Code_Block\tQ_2333\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\n\t\nSabari\tB-User_Name\tSabari\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21621538\tO\t21621538\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21621538/\tO\thttps://stackoverflow.com/questions/21621538/\tO\n\t\n\t\nThe\tO\tThe\tO\nMONGOHQ_URL\tB-Variable_Name\tMONGOHQ_URL\tB-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nshell\tB-Application\tshell\tO\nenvironment\tO\tenvironment\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nin\tO\tin\tO\nbash\tB-Language\tbash\tB-Code_Block\nyou\tO\tyou\tO\nwould\tO\twould\tO\nadd\tO\tadd\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\n~\tB-File_Name\t~\tB-Code_Block\n/.bash_profile\tI-File_Name\t/.bash_profile\tI-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3064\tI-Code_Block\tA_3064\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n.\tO\t.\tO\n.\tO\t.\tO\nor\tO\tor\tO\ninclude\tO\tinclude\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\nwhen\tO\twhen\tO\nstarting\tO\tstarting\tO\nthe\tO\tthe\tO\nnode\tB-Application\tnode\tO\napp\tO\tapp\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3065\tI-Code_Block\tA_3065\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnother\tO\tAnother\tO\ncommon\tO\tcommon\tO\napproach\tO\tapproach\tO\nwith\tO\twith\tO\nNode.js\tB-Library\tNode.js\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\ndotenv\tB-Code_Block\tdotenv\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nload\tO\tload\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\n.env\tB-File_Type\t.env\tB-Code_Block\ndirectory\tO\tdirectory\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ndefault\tO\tdefault\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nthis\tO\tthis\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\na\tO\ta\tO\nMongoHQ\tB-Library\tMongoHQ\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8202136\tO\t8202136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8202136/\tO\thttps://stackoverflow.com/questions/8202136/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmootools\tB-Library\tmootools\tO\najax\tB-Library_Function\tajax\tO\nrequests\tO\trequests\tO\nto\tO\tto\tO\nrecord\tO\trecord\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\noutgoing\tO\toutgoing\tO\nlinks\tO\tlinks\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nhere\tO\there\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nlink\tO\tlink\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_698\tI-Code_Block\tQ_698\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\njavascript\tB-Language\tjavascript\tO\nfunction\tO\tfunction\tO\nclickRecord(id)\tB-Library_Function\tclickRecord(id)\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_699\tI-Code_Block\tQ_699\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nreturn\tO\treturn\tO\nfalse\tB-Value\tfalse\tO\n;\tO\t;\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nonclick\tB-Code_Block\tonclick\tO\n=\"\"\tI-Code_Block\t=\"\"\tO\ndeclaration\tO\tdeclaration\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nclick\tO\tclick\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nintended\tO\tintended\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\nfalse\tB-Value\tfalse\tO\n;\tO\t;\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\najax\tB-Library\tajax\tO\ncall\tO\tcall\tO\nis\tO\tis\tO\nnever\tO\tnever\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nthe\tO\tthe\tO\nonclick\tB-Library_Function\tonclick\tO\nevent\tO\tevent\tO\nshould\tO\tshould\tO\nexecute\tO\texecute\tO\nfirst\tO\tfirst\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\naction\tO\taction\tO\nshould\tO\tshould\tO\nexecute\tO\texecute\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nan\tO\tan\tO\neven\tO\teven\tO\nstranger\tO\tstranger\tO\nscenario\tO\tscenario\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nonmousedown\tB-Library_Function\tonmousedown\tO\nevent\tO\tevent\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\non\tO\ton\tO\nFirefox\tB-Application\tFirefox\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nonmousedown\tB-Library_Function\tonmousedown\tO\nevent\tO\tevent\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncant\tO\tcant\tO\nsimply\tO\tsimply\tO\nnavigate\tO\tnavigate\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nold\tO\told\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\nthe\tO\tthe\tO\nold\tO\told\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nElse\tO\tElse\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhappen\tO\thappen\tO\non\tO\ton\tO\nIE\tB-Application\tIE\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8202136\tO\t8202136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8202136/\tO\thttps://stackoverflow.com/questions/8202136/\tO\n\t\n\t\nOK\tO\tOK\tO\n.\tO\t.\tO\nFound\tO\tFound\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquestions\tO\tquestions\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\ninline\tO\tinline\tO\nmootools\tB-Library\tmootools\tO\nrequest\tO\trequest\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nexecute\tO\texecute\tO\nwhen\tO\twhen\tO\ndeclared\tO\tdeclared\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nonclick()\tB-Library_Function\tonclick()\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\ncaused\tO\tcaused\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\nsynchronous\tO\tsynchronous\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nprobably\tO\tprobably\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nwithout\tO\twithout\tO\nactually\tO\tactually\tO\nfully\tO\tfully\tO\ncommitting\tO\tcommitting\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\nthen\tO\tthen\tO\nmoves\tO\tmoves\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\npage\tO\tpage\tO\nbreaking\tO\tbreaking\tO\nthe\tO\tthe\tO\nexecution\tO\texecution\tO\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\na\tO\ta\tO\nsynchronous\tO\tsynchronous\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nfixes\tO\tfixes\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nmentioned\tO\tmentioned\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nonmousedownevent\tB-Library_Function\tonmousedownevent\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nfirefox\tB-Application\tfirefox\tO\nnot\tO\tnot\tO\nexecuting\tO\texecuting\tO\nthe\tO\tthe\tO\najax\tB-Library\tajax\tO\ncall\tO\tcall\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\nnavigates\tO\tnavigates\tO\nback\tO\tback\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nunsolved\tO\tunsolved\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\nam\tO\tam\tO\nleaving\tO\tleaving\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nas\tO\tas\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nquestion\tO\tquestion\tO\nraised\tO\traised\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8202136\tO\t8202136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8202136/\tO\thttps://stackoverflow.com/questions/8202136/\tO\n\t\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nonclick\tB-Library_Function\tonclick\tB-Code_Block\n-\tO\t-\tO\nvery\tO\tvery\tO\n1995\tO\t1995\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nattach\tO\tattach\tO\nan\tO\tan\tO\nevent\tO\tevent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nevent.stop()\tB-Library_Function\tevent.stop()\tB-Code_Block\n,\tO\t,\tO\nie\tO\tie\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_980\tI-Code_Block\tA_980\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJS\tB-Language\tJS\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_981\tI-Code_Block\tA_981\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBtw\tO\tBtw\tO\n.\tO\t.\tO\n\t\n<div\tB-Code_Block\t<div\tB-Code_Block\nid=\"1\">\tI-Code_Block\tid=\"1\">\tI-Code_Block\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvalid\tO\tvalid\tO\nin\tO\tin\tO\nHTML\tB-Language\tHTML\tO\n,\tO\t,\tO\nan\tO\tan\tO\nID\tB-Variable_Name\tID\tO\n'd\tO\t'd\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\na\tO\ta\tO\nletter\tO\tletter\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35568493\tO\t35568493\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35568493/\tO\thttps://stackoverflow.com/questions/35568493/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nstop\tO\tstop\tO\nMetaTrader\tB-Application\tMetaTrader\tB-Keyboard_IP\nTerminal\tI-Application\tTerminal\tI-Keyboard_IP\n4\tB-Version\t4\tI-Keyboard_IP\noffline\tO\toffline\tO\nchart\tO\tchart\tO\nfrom\tO\tfrom\tO\nupdating\tO\tupdating\tO\nthe\tO\tthe\tO\nprice\tO\tprice\tO\non\tO\ton\tO\nits\tO\tits\tO\nown\tO\town\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nprice\tO\tprice\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nin\tO\tin\tO\ntimezone\tO\ttimezone\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nbroker\tO\tbroker\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nchecked\tO\tchecked\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nproperties\tO\tproperties\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nMQL4\tB-Language\tMQL4\tB-Code_Block\nforum\tO\tforum\tO\n.\tO\t.\tO\n\t\nNo\tO\tNo\tO\nluck\tO\tluck\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35568493\tO\t35568493\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35568493/\tO\thttps://stackoverflow.com/questions/35568493/\tO\n\t\n\t\nFor\tO\tFor\tO\ntrully\tO\ttrully\tO\noffline-charts\tO\toffline-charts\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nway\tO\tway\tO\n\t\nWhile\tO\tWhile\tO\nregular\tO\tregular\tO\ncharts\tO\tcharts\tO\nprocess\tO\tprocess\tO\nan\tO\tan\tO\nindependent\tO\tindependent\tO\nevent-flow\tO\tevent-flow\tO\n,\tO\t,\tO\nreceived\tO\treceived\tO\nfrom\tO\tfrom\tO\nMT4-Server\tB-Application\tMT4-Server\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nchange\tO\tchange\tO\nfor\tO\tfor\tO\nretaining\tO\tretaining\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ncontrol\tO\tcontrol\tO\nover\tO\tover\tO\nTOHLCV-data\tB-Code_Block\tTOHLCV-data\tB-Code_Block\nrecords\tO\trecords\tO\n-\tO\t-\tO\n-\tO\t-\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\nTimeZone\tB-Code_Block\tTimeZone\tB-Code_Block\nshifts\tO\tshifts\tO\n,\tO\t,\tO\nsynthetic\tO\tsynthetic\tO\nBar(s)\tB-Code_Block\tBar(s)\tB-Code_Block\nadditions\tO\tadditions\tO\nand\tO\tand\tO\nother\tO\tother\tO\nadaptations\tO\tadaptations\tO\n,\tO\t,\tO\nas\tO\tas\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\nown\tO\town\tO\n,\tO\t,\tO\ntransformed\tO\ttransformed\tO\n,\tO\t,\tO\nTOHLCV-history\tB-Code_Block\tTOHLCV-history\tB-Code_Block\nand\tO\tand\tO\nimport\tO\timport\tB-Code_Block\nthese\tO\tthese\tO\nrecords\tO\trecords\tO\nvia\tO\tvia\tO\nF2\tB-Keyboard_IP\tF2\tB-Keyboard_IP\nfacility\tO\tfacility\tI-Keyboard_IP\n,\tO\t,\tI-Keyboard_IP\ncalled\tO\tcalled\tI-Keyboard_IP\nin\tO\tin\tI-Keyboard_IP\nMT4\tB-Application\tMT4\tI-Keyboard_IP\na\tO\ta\tI-Keyboard_IP\nHistory\tO\tHistory\tI-Keyboard_IP\nCentre\tO\tCentre\tI-Keyboard_IP\n.\tO\t.\tI-Keyboard_IP\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\na\tO\ta\tO\nlive-quote-stream\tO\tlive-quote-stream\tO\nupdates\tO\tupdates\tO\nin\tO\tin\tO\nMetaTrader\tB-Application\tMetaTrader\tB-Keyboard_IP\nTerminal\tI-Application\tTerminal\tI-Keyboard_IP\n4\tB-Version\t4\tI-Keyboard_IP\n\t\nThe\tO\tThe\tO\nsimplest\tO\tsimplest\tO\never\tO\tever\tO\nway\tO\tway\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\nto\tO\tto\tO\nany\tO\tany\tO\nTrading\tB-Application\tTrading\tO\nServer\tI-Application\tServer\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\navoid\tO\tavoid\tO\nunwanted\tO\tunwanted\tO\nupdates\tO\tupdates\tO\nfrom\tO\tfrom\tO\nreaching\tO\treaching\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\nanFxQuoteStreamPROCESSOR\tB-Code_Block\tanFxQuoteStreamPROCESSOR\tB-Code_Block\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nused\tO\tused\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nway\tO\tway\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ninject\tO\tinject\tO\nfake\tO\tfake\tO\nQuoteStreamDATA\tB-Code_Block\tQuoteStreamDATA\tB-Code_Block\ninto\tO\tinto\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nMT4\tB-Application\tMT4\tB-Code_Block\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthis\tO\tthis\tO\nenters\tO\tenters\tO\na\tO\ta\tO\ngray\tO\tgray\tO\n,\tO\t,\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\nblack\tO\tblack\tO\nzone\tO\tzone\tO\n,\tO\t,\tO\nas\tO\tas\tO\nMetaQuotes\tB-Organization\tMetaQuotes\tO\n,\tI-Organization\t,\tO\nInc\tI-Organization\tInc\tO\n.\tI-Organization\t.\tO\n,\tO\t,\tO\npostulated\tO\tpostulated\tO\nthe\tO\tthe\tO\nServer/Terminal\tB-Application\tServer/Terminal\tO\nprotocol\tO\tprotocol\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nprotected\tO\tprotected\tO\nIP\tO\tIP\tO\nand\tO\tand\tO\nany\tO\tany\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\nreverse-engineer\tO\treverse-engineer\tO\nthey\tO\tthey\tO\nconsider\tO\tconsider\tO\nan\tO\tan\tO\nunlawfull\tO\tunlawfull\tO\nviolation\tO\tviolation\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\nrights\tO\trights\tO\nand\tO\tand\tO\ncould\tO\tcould\tO\ncause\tO\tcause\tO\nlegal\tO\tlegal\tO\nconsequences\tO\tconsequences\tO\n,\tO\t,\tO\nso\tO\tso\tO\nbe\tO\tbe\tO\ncarefull\tO\tcarefull\tO\non\tO\ton\tO\nstepping\tO\tstepping\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAnyway\tO\tAnyway\tO\n,\tO\t,\tO\na\tO\ta\tO\ndoable\tO\tdoable\tO\napproach\tO\tapproach\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nexplicit\tO\texplicit\tO\nrisk\tO\trisk\tO\nwarning\tO\twarning\tO\nbeing\tO\tbeing\tO\npresented\tO\tpresented\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35568493\tO\t35568493\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35568493/\tO\thttps://stackoverflow.com/questions/35568493/\tO\n\t\n\t\nCa\tO\tCa\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nQuotes\tO\tQuotes\tO\nget\tO\tget\tO\nfed\tO\tfed\tO\nin\tO\tin\tO\nfrom\tO\tfrom\tO\nmt4\tB-Application\tmt4\tO\nand\tO\tand\tO\nget\tO\tget\tO\n\"\tO\t\"\tO\nevented\tO\tevented\tO\n\"\tO\t\"\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nmetatrader\tB-Application\tmetatrader\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15276020\tO\t15276020\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15276020/\tO\thttps://stackoverflow.com/questions/15276020/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ncompare\tO\tcompare\tO\ntool\tO\ttool\tO\nthat\tO\tthat\tO\nAnkhSVN\tB-Application\tAnkhSVN\tO\nuses\tO\tuses\tO\nin\tO\tin\tO\nVS2012\tB-Application\tVS2012\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nSubversion\tO\tSubversion\tO\nEnvironment\tO\tEnvironment\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nSubversion\tO\tSubversion\tO\nUser\tO\tUser\tO\nTools\tO\tTools\tO\n\"\tO\t\"\tO\nmenus\tO\tmenus\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nshowing\tO\tshowing\tO\nup\tO\tup\tO\nlike\tO\tlike\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nin\tO\tin\tO\nVS2010\tB-Application\tVS2010\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nseeing\tO\tseeing\tO\nin\tO\tin\tO\nVS2012\tB-Application\tVS2012\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwith\tO\twith\tO\nAnkhSVN\tB-Application\tAnkhSVN\tO\nv\tO\tv\tO\n2.4.11610.27\tB-Version\t2.4.11610.27\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nstable\tO\tstable\tO\nversion\tO\tversion\tO\nas\tO\tas\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nbeing\tO\tbeing\tO\ncreated\tO\tcreated\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nVS2012\tB-Application\tVS2012\tO\nUltimate\tO\tUltimate\tO\nbut\tO\tbut\tO\n,\tO\t,\tO\npresumably\tO\tpresumably\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\noccur\tO\toccur\tO\non\tO\ton\tO\nany\tO\tany\tO\nVS2012\tB-Application\tVS2012\tO\nversion\tO\tversion\tO\nwhich\tO\twhich\tO\nsupports\tO\tsupports\tO\nplugins\tO\tplugins\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nTortoiseSVN\tB-Library\tTortoiseSVN\tO\ninstalled\tO\tinstalled\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ncomputer\tO\tcomputer\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndoubt\tO\tdoubt\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nreinstalling\tO\treinstalling\tO\nthe\tO\tthe\tO\nAnkhSVN\tB-Application\tAnkhSVN\tO\nplugin\tO\tplugin\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nthan\tO\tthan\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nthe\tO\tthe\tO\nAnkhSVN\tB-Application\tAnkhSVN\tO\nplugin\tO\tplugin\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nmention\tO\tmention\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nCollabNet\tB-Application\tCollabNet\tO\nweb\tO\tweb\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthese\tO\tthese\tO\nmenu\tO\tmenu\tO\nitems\tO\titems\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15276020\tO\t15276020\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15276020/\tO\thttps://stackoverflow.com/questions/15276020/\tO\n\t\n\t\nThis\tO\tThis\tO\nhappened\tO\thappened\tO\nto\tO\tto\tO\nme\tO\tme\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nAnkhSVN\tB-Application\tAnkhSVN\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nmy\tO\tmy\tO\nactive\tO\tactive\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\ncontrol\tO\tcontrol\tO\nprovider\tO\tprovider\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\n\t\ntools->options->source\tO\ttools->options->source\tO\ncontrol\tO\tcontrol\tO\nand\tO\tand\tO\nchoose\tO\tchoose\tO\nAnkhSVN\tB-Application\tAnkhSVN\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15276020\tO\t15276020\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15276020/\tO\thttps://stackoverflow.com/questions/15276020/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\neveryone\tO\teveryone\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\nuninstall/reinstall\tO\tuninstall/reinstall\tO\nof\tO\tof\tO\nAnkhSVN\tB-Application\tAnkhSVN\tO\nsolved\tO\tsolved\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\ninto\tO\tinto\tO\nAdvanced\tO\tAdvanced\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\ninstallation\tO\tinstallation\tO\nand\tO\tand\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nVS2012\tB-Application\tVS2012\tO\nis\tO\tis\tO\nselected\tO\tselected\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\ntried\tO\ttried\tO\na\tO\ta\tO\nrepair\tO\trepair\tO\nbefore\tO\tbefore\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nuninstall/reinstall\tO\tuninstall/reinstall\tO\nwith\tO\twith\tO\nVS2012\tB-Application\tVS2012\tO\nselected\tO\tselected\tO\nin\tO\tin\tO\nAdvanced\tO\tAdvanced\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22070727\tO\t22070727\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22070727/\tO\thttps://stackoverflow.com/questions/22070727/\tO\n\t\n\t\nMy\tO\tMy\tO\nblank.ex\tB-File_Name\tblank.ex\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2390\tI-Code_Block\tQ_2390\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\niex\tB-Application\tiex\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2391\tI-Code_Block\tQ_2391\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nwondering\tO\twondering\tO\nwhat\tO\twhat\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nAny\tB-Code_Block\tAny\tB-Code_Block\nmeans\tO\tmeans\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncontext\tO\tcontext\tO\n?\tO\t?\tO\n\t\nand\tO\tand\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nsomething\tO\tsomething\tO\ninteresting\tO\tinteresting\tO\n,\tO\t,\tO\nweather\tO\tweather\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nimplemented\tO\timplemented\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2392\tI-Code_Block\tQ_2392\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\niex\tB-Application\tiex\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nthat\tO\tthat\tO\nmeans\tO\tmeans\tO\nthis\tO\tthis\tO\nimplemented\tO\timplemented\tO\ndoes\tO\tdoes\tO\nnothing\tO\tnothing\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmissed\tO\tmissed\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22070727\tO\t22070727\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22070727/\tO\thttps://stackoverflow.com/questions/22070727/\tO\n\t\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\nconfusing\tO\tconfusing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nget\tO\tget\tO\nstarted\tO\tstarted\tO\nwith\tO\twith\tO\nexample\tO\texample\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nFirstly\tO\tFirstly\tO\nmy\tO\tmy\tO\nblank.ex\tB-File_Name\tblank.ex\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2996\tI-Code_Block\tA_2996\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nafter\tO\tafter\tO\nI\tO\tI\tO\ncompile\tO\tcompile\tO\nit\tO\tit\tO\nelixirc\tB-Code_Block\telixirc\tB-Code_Block\nblank.ex\tI-Code_Block\tblank.ex\tI-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\nthese\tO\tthese\tO\nbeam\tB-File_Type\tbeam\tO\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2997\tI-Code_Block\tA_2997\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nsecondly\tO\tsecondly\tO\nmy\tO\tmy\tO\nblank.ex\tB-File_Name\tblank.ex\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2998\tI-Code_Block\tA_2998\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\ncompile\tO\tcompile\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthese\tO\tthese\tO\nbeam\tB-File_Type\tbeam\tO\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2999\tI-Code_Block\tA_2999\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\nElixir.Blank.Integer.beam\tB-File_Name\tElixir.Blank.Integer.beam\tB-Code_Block\nElixir.Blank.List.beam\tI-File_Name\tElixir.Blank.List.beam\tI-Code_Block\nfiles\tI-File_Name\tfiles\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nin\tO\tin\tO\niex\tB-Application\tiex\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3000\tI-Code_Block\tA_3000\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nbecause\tO\tbecause\tO\nmy\tO\tmy\tO\nmissing\tO\tmissing\tO\nof\tO\tof\tO\ndeleting\tO\tdeleting\tO\nthe\tO\tthe\tO\nolder\tO\tolder\tO\nbeam\tB-File_Type\tbeam\tO\nfiles\tO\tfiles\tO\nmanually\tO\tmanually\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22070727\tO\t22070727\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22070727/\tO\thttps://stackoverflow.com/questions/22070727/\tO\n\t\n\t\nAny\tB-Code_Block\tAny\tB-Code_Block\nclause\tO\tclause\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nif\tO\tif\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nprovided\tO\tprovided\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngetting\tO\tgetting\tO\nthese\tO\tthese\tO\nweird\tO\tweird\tO\nresults\tO\tresults\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nincorrect\tO\tincorrect\tO\ndefinitions\tO\tdefinitions\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nshell\tB-Application\tshell\tO\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2993\tI-Code_Block\tA_2993\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\ngot\tO\tgot\tO\nexpected\tO\texpected\tO\nresults\tO\tresults\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2994\tI-Code_Block\tA_2994\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nlast\tO\tlast\tO\nexample\tO\texample\tO\nis\tO\tis\tO\na\tO\ta\tO\nfallback\tO\tfallback\tO\nto\tO\tto\tO\nAny\tB-Code_Block\tAny\tB-Code_Block\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nprotocol\tO\tprotocol\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndefined\tO\tdefined\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ntuple\tO\ttuple\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nAny\tB-Code_Block\tAny\tB-Code_Block\nimplementation\tO\timplementation\tO\n,\tO\t,\tO\nand\tO\tand\tO\nrestart\tO\trestart\tO\nthe\tO\tthe\tO\nshell\tB-Application\tshell\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2995\tI-Code_Block\tA_2995\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45838700\tO\t45838700\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45838700/\tO\thttps://stackoverflow.com/questions/45838700/\tO\n\t\n\t\nMy\tO\tMy\tO\nOpenfire\tB-Application\tOpenfire\tO\nserver\tB-Device\tserver\tO\nstopped\tO\tstopped\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\nhappens\tO\thappens\tO\nevery\tO\tevery\tO\n2\tO\t2\tO\nor\tO\tor\tO\n3\tO\t3\tO\ndays\tO\tdays\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nrestart\tO\trestart\tO\nservice\tO\tservice\tO\nmanually\tO\tmanually\tO\nwhat\tO\twhat\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nit\tO\tit\tO\nreally\tO\treally\tO\na\tO\ta\tO\nbig\tO\tbig\tO\nissue\tO\tissue\tO\nand\tO\tand\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nare\tO\tare\tO\nlive.Please\tO\tlive.Please\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfixed\tO\tfixed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nError\tO\tError\tO\nlog\tB-File_Type\tlog\tO\n:\tO\t:\tO\n\t\n2017.08.23\tB-Output_Block\t2017.08.23\tO\n09:37:35\tI-Output_Block\t09:37:35\tO\norg.jivesoftware.openfire.plugin.rest.exceptions.RESTExceptionMapper\tI-Output_Block\torg.jivesoftware.openfire.plugin.rest.exceptions.RESTExceptionMapper\tO\n-\tI-Output_Block\t-\tO\nUserAlreadyExistsException\tI-Output_Block\tUserAlreadyExistsException\tO\n:\tI-Output_Block\t:\tO\nCould\tI-Output_Block\tCould\tO\nnot\tI-Output_Block\tnot\tO\ncreate\tI-Output_Block\tcreate\tO\nnew\tI-Output_Block\tnew\tO\nuser\tI-Output_Block\tuser\tO\nwith\tI-Output_Block\twith\tO\nressource\tI-Output_Block\tressource\tO\n3\tI-Output_Block\t3\tO\n\t\natg\tB-Output_Block\tatg\tO\n.\tI-Output_Block\t.\tO\njivesoftware\tI-Output_Block\tjivesoftware\tO\n.\tI-Output_Block\t.\tO\nopenfire\tI-Output_Block\topenfire\tO\n.\tI-Output_Block\t.\tO\ncontainer\tI-Output_Block\tcontainer\tO\n.\tI-Output_Block\t.\tO\nPluginManager\tI-Output_Block\tPluginManager\tO\n.\tI-Output_Block\t.\tO\nloadPlugin(PluginManager\tI-Output_Block\tloadPlugin(PluginManager\tO\n.\tI-Output_Block\t.\tO\njavaorg\tI-Output_Block\tjavaorg\tO\n.\tI-Output_Block\t.\tO\njivesoftware\tI-Output_Block\tjivesoftware\tO\n.\tI-Output_Block\t.\tO\nopenfire\tI-Output_Block\topenfire\tO\n.\tI-Output_Block\t.\tO\ncontainer\tI-Output_Block\tcontainer\tO\n.\tI-Output_Block\t.\tO\nPluginMonitor$MonitorTask$4\tI-Output_Block\tPluginMonitor$MonitorTask$4\tO\n.\tI-Output_Block\t.\tO\ncall(PluginMonitor\tI-Output_Block\tcall(PluginMonitor\tO\n.\tI-Output_Block\t.\tO\njavaorg\tI-Output_Block\tjavaorg\tO\n.\tI-Output_Block\t.\tO\njivesoftware\tI-Output_Block\tjivesoftware\tO\n.\tI-Output_Block\t.\tO\nopenfire\tI-Output_Block\topenfire\tO\n.\tI-Output_Block\t.\tO\ncontainer\tI-Output_Block\tcontainer\tO\n.\tI-Output_Block\t.\tO\nPluginMonitor$MonitorTask$4\tI-Output_Block\tPluginMonitor$MonitorTask$4\tO\n.\tI-Output_Block\t.\tO\ncall(PluginMonitor\tI-Output_Block\tcall(PluginMonitor\tO\n.\tI-Output_Block\t.\tO\njavaat\tI-Output_Block\tjavaat\tO\njava\tI-Output_Block\tjava\tO\n.\tI-Output_Block\t.\tO\nutil\tI-Output_Block\tutil\tO\n.\tI-Output_Block\t.\tO\nconcurrent\tI-Output_Block\tconcurrent\tO\n.\tI-Output_Block\t.\tO\nFutureTask\tI-Output_Block\tFutureTask\tO\n.\tI-Output_Block\t.\tO\nrun(FutureTask\tI-Output_Block\trun(FutureTask\tO\n.\tI-Output_Block\t.\tO\njava\tI-Output_Block\tjava\tO\n:\tI-Output_Block\t:\tO\n262\tI-Output_Block\t262\tO\n)\tI-Output_Block\t)\tO\n\t\njava\tB-Output_Block\tjava\tO\n.\tI-Output_Block\t.\tO\nutil\tI-Output_Block\tutil\tO\n.\tI-Output_Block\t.\tO\nconcurrent\tI-Output_Block\tconcurrent\tO\n.\tI-Output_Block\t.\tO\nThreadPoolExecutor\tI-Output_Block\tThreadPoolExecutor\tO\n.\tI-Output_Block\t.\tO\nrunWorker(ThreadPoolExecutor\tI-Output_Block\trunWorker(ThreadPoolExecutor\tO\n.\tI-Output_Block\t.\tO\njava\tI-Output_Block\tjava\tO\n:\tI-Output_Block\t:\tO\njava\tI-Output_Block\tjava\tO\n.\tI-Output_Block\t.\tO\nutil\tI-Output_Block\tutil\tO\n.\tI-Output_Block\t.\tO\nconcurrent\tI-Output_Block\tconcurrent\tO\n.\tI-Output_Block\t.\tO\nThreadPoolExecutor$Worker\tI-Output_Block\tThreadPoolExecutor$Worker\tO\n.\tI-Output_Block\t.\tO\nrun(ThreadPoolExecutor\tI-Output_Block\trun(ThreadPoolExecutor\tO\n.\tI-Output_Block\t.\tO\njava\tI-Output_Block\tjava\tO\nat\tI-Output_Block\tat\tO\njava\tI-Output_Block\tjava\tO\n.\tI-Output_Block\t.\tO\nlang\tI-Output_Block\tlang\tO\n.\tI-Output_Block\t.\tO\nThread\tI-Output_Block\tThread\tO\n.\tI-Output_Block\t.\tO\nrun\tI-Output_Block\trun\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30773944\tO\t30773944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30773944/\tO\thttps://stackoverflow.com/questions/30773944/\tO\n\t\n\t\nIn\tO\tIn\tO\ncontroller\tO\tcontroller\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nwritten\tO\twritten\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nconvert\tO\tconvert\tO\nrank\tB-Variable_Name\trank\tO\ninto\tO\tinto\tO\nFloat\tB-Data_Type\tFloat\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3704\tI-Code_Block\tQ_3704\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nhere\tO\there\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nerror\tO\terror\tO\nthat\tO\tthat\tO\nReferenceError\tB-Error_Name\tReferenceError\tO\n:\tO\t:\tO\ndetails\tO\tdetails\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndefined\tO\tdefined\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\njson\tB-File_Type\tjson\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3705\tI-Code_Block\tQ_3705\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nhtml\tB-File_Type\thtml\tO\nif\tO\tif\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\nheader\tB-User_Interface_Element\theader\tO\nof\tO\tof\tO\ntable\tB-User_Interface_Element\ttable\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nsort\tO\tsort\tO\nthe\tO\tthe\tO\ntable\tB-User_Interface_Element\ttable\tO\nboth\tO\tboth\tO\nascending\tO\tascending\tO\nand\tO\tand\tO\ndescending\tO\tdescending\tO\norder\tO\torder\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3706\tI-Code_Block\tQ_3706\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30773944\tO\t30773944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30773944/\tO\thttps://stackoverflow.com/questions/30773944/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ndynamic\tO\tdynamic\tO\nsorting\tO\tsorting\tO\nby\tO\tby\tO\nclicking\tO\tclicking\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nheader\tB-User_Interface_Element\theader\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\ndoing\tO\tdoing\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4386\tI-Code_Block\tA_4386\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncontroller\tO\tcontroller\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4387\tI-Code_Block\tA_4387\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDoing\tO\tDoing\tO\nso\tO\tso\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nrevert\tO\trevert\tO\nthe\tO\tthe\tO\nsort\tO\tsort\tO\nwhen\tO\twhen\tO\nre-clicking\tO\tre-clicking\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nheader\tB-User_Interface_Element\theader\tO\nof\tO\tof\tO\na\tO\ta\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n.\tO\t.\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\ndynamically\tO\tdynamically\tO\nname\tO\tname\tO\nyour\tO\tyour\tO\nIDs\tB-HTML_XML_Tag\tIDs\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nng-repeat\tB-Library_Function\tng-repeat\tO\ndirective\tO\tdirective\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nerrors\tO\terrors\tO\nand\tO\tand\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nHTML\tB-Language\tHTML\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n49127467\tO\t49127467\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49127467/\tO\thttps://stackoverflow.com/questions/49127467/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nRetrofit\tB-Library_Class\tRetrofit\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nI\tO\tI\tO\nbuild\tO\tbuild\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6569\tI-Code_Block\tQ_6569\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmodel\tO\tmodel\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6570\tI-Code_Block\tQ_6570\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\n@Expose\tB-Code_Block\t@Expose\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nserialize\tB-Library_Function\tserialize\tO\nteacherServiceId\tB-Variable_Name\tteacherServiceId\tO\nin\tO\tin\tO\none\tO\tone\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nother\tO\tother\tO\nones\tO\tones\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nwithout\tO\twithout\tO\ncreating\tO\tcreating\tO\nnew\tO\tnew\tO\nmodel\tO\tmodel\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nRetrofit\tB-Library_Class\tRetrofit\tO\ninstance\tO\tinstance\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29743699\tO\t29743699\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29743699/\tO\thttps://stackoverflow.com/questions/29743699/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nmade\tO\tmade\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nwith\tO\twith\tO\nC#\tB-Language\tC#\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\napplication\tO\tapplication\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nread\tO\tread\tO\nevery\tO\tevery\tO\n20\tO\t20\tO\nsecond\tO\tsecond\tO\n840\tO\t840\tO\nregisters\tB-Device\tregisters\tO\nof\tO\tof\tO\nPLC\tB-Device\tPLC\tO\nvia\tO\tvia\tO\nModbus\tB-Library_Class\tModbus\tO\nTCP\tI-Library_Class\tTCP\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nlibrary\tO\tlibrary\tO\nhttp://www.codeproject.com/Tips/16260/Modbus-TCP-class\tO\thttp://www.codeproject.com/Tips/16260/Modbus-TCP-class\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n\t\nMaster.ReadHoldingRegister(ushortid,byteunit,ushortstartAddress,ushortnumInputs)\tB-Library_Function\tMaster.ReadHoldingRegister(ushortid,byteunit,ushortstartAddress,ushortnumInputs)\tB-Code_Block\n\t\nIt\tO\tIt\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nbytes\tB-Data_Type\tbytes\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nlenght\tO\tlenght\tO\n144\tO\t144\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\n1680\tO\t1680\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nidea\tO\tidea\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29743699\tO\t29743699\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29743699/\tO\thttps://stackoverflow.com/questions/29743699/\tO\n\t\n\t\nModbus\tB-Library_Class\tModbus\tO\nallows\tO\tallows\tO\nup\tO\tup\tO\nto\tO\tto\tO\n125\tO\t125\tO\nholding\tO\tholding\tO\nregisters\tB-Device\tregisters\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nread\tO\tread\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nRead\tB-Library_Function\tRead\tO\nHolding\tI-Library_Function\tHolding\tO\nRegisters\tI-Library_Function\tRegisters\tO\nfunction\tO\tfunction\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nthrow\tO\tthrow\tO\nan\tO\tan\tO\nerror\tO\terror\tO\non\tO\ton\tO\na\tO\ta\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\n840\tO\t840\tO\nregisters\tB-Device\tregisters\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\ntaking\tO\ttaking\tO\nthis\tO\tthis\tO\nlimit\tO\tlimit\tO\ninto\tO\tinto\tO\naccount\tO\taccount\tO\nby\tO\tby\tO\nspliting\tO\tspliting\tO\nyour\tO\tyour\tO\ncall\tO\tcall\tO\nin\tO\tin\tO\nseveral\tO\tseveral\tO\nRead\tB-Library_Function\tRead\tO\nHolding\tI-Library_Function\tHolding\tO\nRegisters\tI-Library_Function\tRegisters\tO\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nstudy\tO\tstudy\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nreliably\tO\treliably\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29743699\tO\t29743699\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29743699/\tO\thttps://stackoverflow.com/questions/29743699/\tO\n\t\n\t\nAs\tO\tAs\tO\nsuggested\tO\tsuggested\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\ndelay\tO\tdelay\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ncalls\tO\tcalls\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46974708\tO\t46974708\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46974708/\tO\thttps://stackoverflow.com/questions/46974708/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nbuild.xml\tB-File_Name\tbuild.xml\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntriggering\tO\ttriggering\tO\nmvn\tB-Application\tmvn\tO\nbuild\tO\tbuild\tO\nfrom\tO\tfrom\tO\nant\tO\tant\tO\nscript\tO\tscript\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrenaming\tO\trenaming\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\ncopying\tO\tcopying\tO\nit\tO\tit\tO\nto\tO\tto\tO\nspecific\tO\tspecific\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nconcept\tO\tconcept\tO\nof\tO\tof\tO\nprofile\tO\tprofile\tO\nin\tO\tin\tO\nmaven\tB-Application\tmaven\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nmaven\tB-Application\tmaven\tO\nprofile\tO\tprofile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nsnapshot\tO\tsnapshot\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6216\tI-Code_Block\tQ_6216\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46974708\tO\t46974708\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46974708/\tO\thttps://stackoverflow.com/questions/46974708/\tO\n\t\n\t\nAnt\tO\tAnt\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\narguments\tO\targuments\tO\npassed\tO\tpassed\tO\nby\tO\tby\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nadd\tO\tadd\tO\nyour\tO\tyour\tO\nprofile\tO\tprofile\tO\nentry\tO\tentry\tO\nas\tO\tas\tO\nan\tO\tan\tO\nargument\tO\targument\tO\n.\tO\t.\tO\n\t\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6835\tI-Code_Block\tA_6835\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7861757\tO\t7861757\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7861757/\tO\thttps://stackoverflow.com/questions/7861757/\tO\n\t\n\t\nprivate\tB-Code_Block\tprivate\tO\nvoid\tI-Code_Block\tvoid\tO\nXButtonExit_Click\tI-Code_Block\tXButtonExit_Click\tO\n(\tI-Code_Block\t(\tO\nobject\tI-Code_Block\tobject\tO\nsender\tI-Code_Block\tsender\tO\n,\tI-Code_Block\t,\tO\nEventArgs\tI-Code_Block\tEventArgs\tO\ne\tI-Code_Block\te\tO\n)\tI-Code_Block\t)\tO\n{\tI-Code_Block\t{\tO\n//This\tI-Code_Block\t//This\tO\nwill\tI-Code_Block\twill\tO\nclose\tI-Code_Block\tclose\tO\nthe\tI-Code_Block\tthe\tO\nprogram\tI-Code_Block\tprogram\tO\nClose()\tI-Code_Block\tClose()\tO\n;}\tI-Code_Block\t;}\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_636\tI-Code_Block\tQ_636\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nwork\tO\twork\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nTextBoxes\tB-Library_Class\tTextBoxes\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ncurrency\tB-Data_Type\tcurrency\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nthe\tO\tthe\tO\nmath\tO\tmath\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbiggest\tO\tbiggest\tO\nproblem\tO\tproblem\tO\nIm\tO\tIm\tO\n'\tO\t'\tO\nhaving\tO\thaving\tO\nis\tO\tis\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsales\tB-Variable_Name\tsales\tO\ntax\tI-Variable_Name\ttax\tO\nwhen\tO\twhen\tO\nconverting\tO\tconverting\tO\nit\tO\tit\tO\nto\tO\tto\tO\ncurrency\tB-Data_Type\tcurrency\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nmath\tO\tmath\tO\nwork\tO\twork\tO\nif\tO\tif\tO\nsubtotal\tO\tsubtotal\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncurrency\tB-Data_Type\tcurrency\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nit\tO\tit\tO\nback\tO\tback\tO\nto\tO\tto\tO\ndecimal\tB-Data_Type\tdecimal\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nSubtotal\tB-Code_Block\tSubtotal\tO\n*\tI-Code_Block\t*\tO\n1.0\tI-Code_Block\t1.0\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\n:\tO\t:\tO\n\t\n//Take\tO\t//Take\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\nxTextBoxTotal\tB-Variable_Name\txTextBoxTotal\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\nit\tO\tit\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_637\tI-Code_Block\tQ_637\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nFormatException\tB-Error_Name\tFormatException\tO\nwas\tO\twas\tO\nunhandled\tO\tunhandled\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nConvert.toInt16(xtextboxTotal.text)\tB-Library_Function\tConvert.toInt16(xtextboxTotal.text)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7861757\tO\t7861757\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7861757/\tO\thttps://stackoverflow.com/questions/7861757/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nformating\tO\tformating\tO\na\tO\ta\tO\nnumeric\tO\tnumeric\tO\nstring\tB-Data_Type\tstring\tO\nas\tO\tas\tO\ncurrency\tB-Data_Type\tcurrency\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nit\tO\tit\tO\nback\tO\tback\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nre-convert\tO\tre-convert\tO\nit\tO\tit\tO\nback\tO\tback\tO\nto\tO\tto\tO\na\tO\ta\tO\nnumeric\tB-Data_Type\tnumeric\tO\nform\tO\tform\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncurency\tB-Data_Type\tcurency\tO\nformatting\tO\tformatting\tO\nrules\tO\trules\tO\nyou\tO\tyou\tO\nused\tO\tused\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\n:\tO\t:\tO\nhttp://msdn.microsoft.com/en-us/library/3s27fasw.aspx\tO\thttp://msdn.microsoft.com/en-us/library/3s27fasw.aspx\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_916\tI-Code_Block\tA_916\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26096867\tO\t26096867\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26096867/\tO\thttps://stackoverflow.com/questions/26096867/\tO\n\t\n\t\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nquestion\tO\tquestion\tO\nmay\tO\tmay\tO\nseem\tO\tseem\tO\nstupid\tO\tstupid\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nbeginner\tO\tbeginner\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSpring\tB-Library\tSpring\tO\nframework\tO\tframework\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nsearching\tO\tsearching\tO\nand\tO\tand\tO\ntesting\tO\ttesting\tO\nmany\tO\tmany\tO\nmethods\tO\tmethods\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nsuccess\tO\tsuccess\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nlogging\tO\tlogging\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nWeb\tO\tWeb\tO\nService\tO\tService\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nSpring\tB-Library\tSpring\tO\n.\tO\t.\tO\n\t\nMaven\tB-Library\tMaven\tO\nis\tO\tis\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\ndependencies\tO\tdependencies\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nspring-boot-starter-ws\tB-Library\tspring-boot-starter-ws\tB-Code_Block\ndependency\tO\tdependency\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nstarter-web\tO\tstarter-web\tO\nstarter\tO\tstarter\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nwith\tO\twith\tO\nlog4j\tB-Library\tlog4j\tO\n,\tO\t,\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\na\tO\ta\tO\ndependency\tO\tdependency\tO\nand\tO\tand\tO\nconfig\tB-File_Type\tconfig\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nproduce\tO\tproduce\tO\na\tO\ta\tO\nlog\tB-File_Type\tlog\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ninitialization\tO\tinitialization\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlogger\tB-Library_Class\tlogger\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nand\tO\tand\tO\nno\tO\tno\tO\nlogging\tO\tlogging\tO\nabout\tO\tabout\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nis\tO\tis\tO\nused\tO\tused\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nlog4j\tB-Library\tlog4j\tO\nis\tO\tis\tO\nin\tO\tin\tO\nTRACE\tO\tTRACE\tO\nlevel\tO\tlevel\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nwith\tO\twith\tO\nlogback\tB-Library\tlogback\tO\n,\tO\t,\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nlogback.xml\tB-File_Name\tlogback.xml\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nstarter-logging\tO\tstarter-logging\tO\ndependency\tO\tdependency\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nalso\tO\talso\tO\ncreates\tO\tcreates\tO\nempty\tO\tempty\tO\nlog\tB-File_Type\tlog\tO\nfiles\tO\tfiles\tO\nwith\tO\twith\tO\nnothing\tO\tnothing\tO\non\tO\ton\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nSpring\tB-Library\tSpring\tO\nboot\tI-Library\tboot\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\napplication.properties\tB-File_Name\tapplication.properties\tB-Code_Block\nfile\tO\tfile\tO\nis\tO\tis\tO\nmentioned\tO\tmentioned\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nWEB-INF\tO\tWEB-INF\tO\n,\tO\t,\tO\nand\tO\tand\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nlogging.level.org.springframework\tB-Library_Class\tlogging.level.org.springframework\tB-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nlogging.path\tB-Library_Variable\tlogging.path\tB-Code_Block\nentries\tO\tentries\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nstill\tO\tstill\tO\nno\tO\tno\tO\nlog\tB-File_Type\tlog\tO\nfile\tO\tfile\tO\ncreated\tO\tcreated\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlog\tO\tlog\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nmessages\tO\tmessages\tO\n,\tO\t,\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlog\tO\tlog\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\ngenerated\tO\tgenerated\tO\nby\tO\tby\tO\nSpring\tB-Library\tSpring\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nalso\tO\talso\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmain\tB-Function_Name\tmain\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nan\tO\tan\tO\nEndpoint\tB-Library_Class\tEndpoint\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nservice\tO\tservice\tO\n,\tO\t,\tO\nif\tO\tif\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nrelevant\tO\trelevant\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\npossible\tO\tpossible\tO\nlogging\tO\tlogging\tO\n,\tO\t,\tO\npossibly\tO\tpossibly\tO\nwithout\tO\twithout\tO\nadding\tO\tadding\tO\ntoo\tO\ttoo\tO\nmany\tO\tmany\tO\ndependencies\tO\tdependencies\tO\nor\tO\tor\tO\nso\tO\tso\tO\n,\tO\t,\tO\nand\tO\tand\tO\nretrieve\tO\tretrieve\tO\nthe\tO\tthe\tO\nSpring\tB-Library\tSpring\tO\nmessages\tO\tmessages\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nlog\tB-File_Type\tlog\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26096867\tO\t26096867\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26096867/\tO\thttps://stackoverflow.com/questions/26096867/\tO\n\t\n\t\nlogback\tB-Library\tlogback\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nlogging\tO\tlogging\tO\nimplementation\tO\timplementation\tO\nused\tO\tused\tO\nby\tO\tby\tO\nSpring\tB-Library\tSpring\tO\nBoot\tI-Library\tBoot\tO\n(\tO\t(\tO\nI\tO\tI\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nspring\tB-Library\tspring\tO\nboot\tI-Library\tboot\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\njar\tB-File_Type\tjar\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nthat\tO\tthat\tO\n!\tO\t!\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBasicly\tO\tBasicly\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nanything\tO\tanything\tO\nlogging\tO\tlogging\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nhandled\tO\thandled\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nstarter\tO\tstarter\tO\nyou\tO\tyou\tO\nincluded\tO\tincluded\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\nlogback.xml\tB-File_Name\tlogback.xml\tO\nshipped\tO\tshipped\tO\nwith\tO\twith\tO\nSpring\tB-Library\tSpring\tO\nwhich\tO\twhich\tO\nturns\tO\tturns\tO\non\tO\ton\tO\nlogging\tO\tlogging\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nspring\tB-Library\tspring\tO\nframework\tO\tframework\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\non\tO\ton\tO\nINFO\tO\tINFO\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nthis\tO\tthis\tO\nsimply\tO\tsimply\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nlogback.xml\tB-File_Name\tlogback.xml\tB-Code_Block\nfile\tO\tfile\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncontent\tO\tcontent\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\none\tO\tone\tO\nand\tO\tand\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nlogger\tB-Library_Class\tlogger\tO\nfor\tO\tfor\tO\nspring\tB-Library\tspring\tO\non\tO\ton\tO\nDEBUG\tO\tDEBUG\tO\nor\tO\tor\tO\nTRACE\tO\tTRACE\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nput\tO\tput\tO\neverything\tO\teverything\tO\non\tO\ton\tO\ntrace\tO\ttrace\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\nless\tO\tless\tO\nperformant\tO\tperformant\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nprobably\tO\tprobably\tO\ndoing\tO\tdoing\tO\nto\tO\tto\tO\nmuch\tO\tmuch\tO\nand\tO\tand\tO\nthinking\tO\tthinking\tO\nto\tO\tto\tO\ncomplex\tO\tcomplex\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26096867\tO\t26096867\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26096867/\tO\thttps://stackoverflow.com/questions/26096867/\tO\n\t\n\t\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nlogging.level.org.springframework\tB-Library_Class\tlogging.level.org.springframework\tB-Code_Block\nand\tO\tand\tI-Code_Block\nthe\tO\tthe\tI-Code_Block\nlogging.path\tB-Library_Variable\tlogging.path\tI-Code_Block\nworks\tO\tworks\tO\nwith\tO\twith\tO\nspring\tB-Library\tspring\tO\nboot\tI-Library\tboot\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nyour\tO\tyour\tO\nlogback.xml\tB-File_Name\tlogback.xml\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\napplication.properties\tB-File_Name\tapplication.properties\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nresources\tO\tresources\tB-Code_Block\ndir\tO\tdir\tO\n+\tO\t+\tO\npaste\tO\tpaste\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nlogback.xml\tB-File_Name\tlogback.xml\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3592\tI-Code_Block\tA_3592\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nlog\tO\tlog\tO\non\tO\ton\tO\nconsole\tB-Application\tconsole\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\n/tmp\tB-File_Name\t/tmp\tO\n(\tO\t(\tO\nif\tO\tif\tO\nlinux\tB-Operating_System\tlinux\tO\n)\tO\t)\tO\ndir\tO\tdir\tO\n.\tO\t.\tO\n\t\n//Update\tO\t//Update\tO\n:\tO\t:\tO\n\t\nto\tO\tto\tO\nmanually\tO\tmanually\tO\nset\tO\tset\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nlogs\tB-File_Type\tlogs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n(\tO\t(\tO\ni\tO\ti\tO\nbasically\tO\tbasically\tO\nreduced\tO\treduced\tO\nwhats\tO\twhats\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\nbase.xml\tB-File_Name\tbase.xml\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nimported\tO\timported\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3593\tI-Code_Block\tA_3593\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthen\tO\tthen\tO\nchange\tO\tchange\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3594\tI-Code_Block\tA_3594\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3595\tI-Code_Block\tA_3595\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42892071\tO\t42892071\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42892071/\tO\thttps://stackoverflow.com/questions/42892071/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrun\tO\trun\tO\n\"\tO\t\"\tO\nline\tO\tline\tO\nprogram\tO\tprogram\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\ngraphics\tO\tgraphics\tO\nusing\tO\tusing\tO\nC++\tB-Language\tC++\tO\nin\tO\tin\tO\nCode\tB-Application\tCode\tO\nBlocks\tI-Application\tBlocks\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nalready\tO\talready\tO\ndone\tO\tdone\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nenvironment\tO\tenvironment\tO\nin\tO\tin\tO\ncode\tB-Application\tcode\tO\nblocks\tI-Application\tblocks\tO\nfor\tO\tfor\tO\ngraphics\tO\tgraphics\tO\n.\tO\t.\tO\n\t\nStill\tO\tStill\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nprogram\tO\tprogram\tO\nshows\tO\tshows\tO\nno\tO\tno\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nit\tO\tit\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nany\tO\tany\tO\nline\tO\tline\tO\nin\tO\tin\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nOutput\tO\tOutput\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\nis\tO\tis\tO\nshowing\tO\tshowing\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5480\tI-Code_Block\tQ_5480\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20414245\tO\t20414245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20414245/\tO\thttps://stackoverflow.com/questions/20414245/\tO\n\t\n\t\non\tO\ton\tO\nthis\tO\tthis\tO\nwebpage\tO\twebpage\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nscroll\tO\tscroll\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ninline\tO\tinline\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbefore/after\tO\tbefore/after\tO\njavascript\tB-Language\tjavascript\tO\nslider\tB-User_Interface_Element\tslider\tO\nhappening\tO\thappening\tO\n.\tO\t.\tO\n\t\nhowever\tO\thowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nnormal\tO\tnormal\tO\ncentering\tO\tcentering\tO\noptions\tO\toptions\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nand\tO\tand\tO\nend\tO\tend\tO\nup\tO\tup\tO\nbreaking\tO\tbreaking\tO\nthe\tO\tthe\tO\nslider\tB-User_Interface_Element\tslider\tO\n.\tO\t.\tO\n\t\nany\tO\tany\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciate\tO\tappreciate\tO\n.\tO\t.\tO\n\t\nHTML\tB-Language\tHTML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2168\tI-Code_Block\tQ_2168\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCSS\tB-Language\tCSS\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2169\tI-Code_Block\tQ_2169\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20414245\tO\t20414245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20414245/\tO\thttps://stackoverflow.com/questions/20414245/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nLike\tO\tLike\tO\nthe\tO\tthe\tO\nouter\tO\touter\tO\ncontainers\tO\tcontainers\tO\nhave\tO\thave\tO\na\tO\ta\tO\nwidth\tO\twidth\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ninner\tO\tinner\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nfor\tO\tfor\tO\nnow\tO\tnow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2721\tI-Code_Block\tA_2721\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nsame\tO\tsame\tO\nas\tO\tas\tO\nyour\tO\tyour\tO\nimages\tB-User_Interface_Element\timages\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40851742\tO\t40851742\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40851742/\tO\thttps://stackoverflow.com/questions/40851742/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nwebpack\tB-Library\twebpack\tO\nand\tO\tand\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nwebpack\tB-Library\twebpack\tO\ndocumentation\tO\tdocumentation\tO\nhere\tO\there\tO\nhttps://webpack.js.org/loaders/\tO\thttps://webpack.js.org/loaders/\tO\n:\tO\t:\tO\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nhappened\tO\thappened\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\ntest\tB-Code_Block\ttest\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n/\tI-Code_Block\t/\tI-Code_Block\n\\.css$/\tI-Code_Block\t\\.css$/\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n\t\nJust\tO\tJust\tO\nwondering\tO\twondering\tO\nwhat\tO\twhat\tO\nare\tO\tare\tO\nthose\tO\tthose\tO\nfront/back\tB-Value\tfront/back\tO\nslashes\tI-Value\tslashes\tO\nand\tO\tand\tO\n$\tB-Value\t$\tO\nsymbol\tO\tsymbol\tO\nmeant\tO\tmeant\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43767033\tO\t43767033\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43767033/\tO\thttps://stackoverflow.com/questions/43767033/\tO\n\t\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ncomputer\tB-Device\tcomputer\tO\nopencv\tB-Library\topencv\tO\nwith\tO\twith\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nspecific\tO\tspecific\tO\nversion\tO\tversion\tO\n(\tO\t(\tO\n2.4.10\tB-Version\t2.4.10\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nthe\tO\tthe\tO\nbranch\tO\tbranch\tO\non\tO\ton\tO\ngithub\tB-Website\tgithub\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nopencv\tB-Library\topencv\tO\ncore\tO\tcore\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\ndownload\tO\tdownload\tO\nthis\tO\tthis\tO\nversion\tO\tversion\tO\non\tO\ton\tO\nofficials\tO\tofficials\tO\nrepositories\tO\trepositories\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43767033\tO\t43767033\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43767033/\tO\thttps://stackoverflow.com/questions/43767033/\tO\n\t\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nclone\tO\tclone\tO\nOpenCV\tB-Library\tOpenCV\tB-Code_Block\n2.4.10\tB-Version\t2.4.10\tI-Code_Block\nthrough\tO\tthrough\tO\nTortoiseGit\tB-Application\tTortoiseGit\tB-Code_Block\n2.4.0.3\tB-Version\t2.4.0.3\tI-Code_Block\n.\tO\t.\tO\n\t\nClone\tO\tClone\tO\nOpenCV\tB-Library\tOpenCV\tB-Code_Block\nHEAD\tB-Code_Block\tHEAD\tI-Code_Block\nfrom\tO\tfrom\tO\nhttps://github.com/opencv/opencv.git\tO\thttps://github.com/opencv/opencv.git\tB-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ncloned\tO\tcloned\tO\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nright\tO\tright\tO\nclick\tO\tclick\tO\nand\tO\tand\tO\nselect\tO\tselect\tO\nTortoiseGit\tB-Application\tTortoiseGit\tB-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npopup\tO\tpopup\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nsub\tO\tsub\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n,\tO\t,\tO\nselect\tO\tselect\tO\nSwitch/Checkout\tB-Code_Block\tSwitch/Checkout\tB-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nSwitch/Checkout\tB-Code_Block\tSwitch/Checkout\tB-Code_Block\nmenu\tB-User_Interface_Element\tmenu\tO\n,\tO\t,\tO\nselect\tO\tselect\tO\nOpenCV-2.4.10\tB-Library\tOpenCV-2.4.10\tB-Code_Block\nfrom\tO\tfrom\tO\nBranch\tB-Code_Block\tBranch\tB-Code_Block\nor\tO\tor\tO\n2.4.10\tB-Version\t2.4.10\tB-Code_Block\nfrom\tO\tfrom\tO\nTag\tB-Code_Block\tTag\tB-Code_Block\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nshow\tB-Code_Block\tshow\tB-Code_Block\nlog\tI-Code_Block\tlog\tI-Code_Block\nto\tO\tto\tO\nverify\tO\tverify\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\ncloned\tO\tcloned\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nimage\tB-User_Interface_Element\timage\tO\nbelow\tO\tbelow\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nsubfolder\tO\tsubfolder\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nopencv-2.4.10\tB-Library\topencv-2.4.10\tB-Code_Block\ncore\tO\tcore\tI-Code_Block\npackage\tO\tpackage\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nGitHub\tB-Website\tGitHub\tO\nclone\tO\tclone\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25024282\tO\t25024282\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25024282/\tO\thttps://stackoverflow.com/questions/25024282/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nstarting\tO\tstarting\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsome\tO\tsome\tO\nnot\tO\tnot\tO\nequality\tO\tequality\tO\nJoin\tO\tJoin\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nread\tO\tread\tO\nthat\tO\tthat\tO\nneither\tO\tneither\tO\nPig\tB-Application\tPig\tO\nnor\tO\tnor\tO\nHive\tB-Application\tHive\tO\nsupport\tO\tsupport\tO\ninequality\tO\tinequality\tO\nJoin\tO\tJoin\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\nread\tO\tread\tO\nthat\tO\tthat\tO\nPig\tB-Application\tPig\tO\ncan\tO\tcan\tO\nsupport\tO\tsupport\tO\nthat\tO\tthat\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nCROSS\tB-Code_Block\tCROSS\tO\nand\tO\tand\tO\nFILTER\tB-Code_Block\tFILTER\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nalso\tO\talso\tO\nin\tO\tin\tO\nHive\tB-Application\tHive\tO\nusing\tO\tusing\tO\nWHERE\tB-Code_Block\tWHERE\tO\nclause\tO\tclause\tO\n?\tO\t?\tO\nAre\tO\tAre\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\ncases\tO\tcases\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nsupposed\tO\tsupposed\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nboth\tO\tboth\tO\nin\tO\tin\tO\nPig\tB-Application\tPig\tO\nand\tO\tand\tO\nin\tO\tin\tO\nHive\tB-Application\tHive\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\nabout\tO\tabout\tO\nperformance\tO\tperformance\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25024282\tO\t25024282\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25024282/\tO\thttps://stackoverflow.com/questions/25024282/\tO\n\t\n\t\nI\tO\tI\tO\nremember\tO\tremember\tO\nHive\tB-Application\tHive\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\none\tO\tone\tO\nreducer\tO\treducer\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n\"\tO\t\"\tO\nCROSS\tB-Code_Block\tCROSS\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nPig\tB-Application\tPig\tO\nuses\tO\tuses\tO\na\tO\ta\tO\nsmart\tO\tsmart\tO\napproach\tO\tapproach\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\n\"\tO\t\"\tO\nCROSS\tB-Code_Block\tCROSS\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nin\tO\tin\tO\nparallel\tO\tparallel\tO\nand\tO\tand\tO\nit\tO\tit\tO\nusually\tO\tusually\tO\nhas\tO\thas\tO\nbetter\tO\tbetter\tO\nperformance\tO\tperformance\tO\nthan\tO\tthan\tO\nHive\tB-Application\tHive\tO\n.\tO\t.\tO\n\t\nBTW\tO\tBTW\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nupdated\tO\tupdated\tO\nmy\tO\tmy\tO\nknowledge\tO\tknowledge\tO\nabout\tO\tabout\tO\nHive\tB-Application\tHive\tO\nand\tO\tand\tO\nPig\tB-Application\tPig\tO\nfor\tO\tfor\tO\none\tO\tone\tO\nyear\tO\tyear\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nHive\tB-Application\tHive\tO\nimproved\tO\timproved\tO\n\"\tO\t\"\tO\nCROSS\tB-Code_Block\tCROSS\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npast\tO\tpast\tO\nyear\tO\tyear\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36835825\tO\t36835825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36835825/\tO\thttps://stackoverflow.com/questions/36835825/\tO\n\t\n\t\nProblem\tO\tProblem\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nsize\tO\tsize\tO\nscale\tO\tscale\tO\nfor\tO\tfor\tO\nedges\tB-User_Interface_Element\tedges\tO\nand\tO\tand\tO\nnodes\tB-User_Interface_Element\tnodes\tO\nin\tO\tin\tO\na\tO\ta\tO\nnetwork\tB-Library\tnetwork\tO\ncreated\tO\tcreated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nggnetwork\tB-Library\tggnetwork\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nbelow\tO\tbelow\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nalready\tO\talready\tO\ndid\tO\tdid\tO\nthat\tO\tthat\tO\nsince\tO\tsince\tO\nthey\tO\tthey\tO\nall\tO\tall\tO\nhave\tO\thave\tO\ndifferent\tO\tdifferent\tO\nsizes\tO\tsizes\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nfact\tO\tfact\tO\nedge\tB-User_Interface_Element\tedge\tO\nand\tO\tand\tO\nnode\tB-User_Interface_Element\tnode\tO\nsize\tO\tsize\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nscaled\tO\tscaled\tO\nindependently\tO\tindependently\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nplot\tB-User_Interface_Element\tplot\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nare\tO\tare\tO\nboth\tO\tboth\tO\nscaled\tO\tscaled\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nscale_size_area()\tB-Library_Function\tscale_size_area()\tB-Code_Block\nfunction\tO\tfunction\tO\ntowards\tO\ttowards\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nmaximum\tO\tmaximum\tO\n(\tO\t(\tO\n30\tB-Value\t30\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nget\tO\tget\tO\nlarger\tO\tlarger\tO\nnodes\tO\tnodes\tO\nmy\tO\tmy\tO\nedges\tO\tedges\tO\nwill\tO\twill\tO\nshrink\tO\tshrink\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nboils\tO\tboils\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nscaling\tO\tscaling\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\ndifferent\tO\tdifferent\tO\ngeoms\tO\tgeoms\tO\nwith\tO\twith\tO\ndifferent\tO\tdifferent\tO\nfunctions\tO\tfunctions\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nscale\tO\tscale\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnodes\tO\tnodes\tO\nwith\tO\twith\tO\nscale_size_area\tB-Code_Block\tscale_size_area\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nmax_size\tI-Code_Block\tmax_size\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n30\tI-Code_Block\t30\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nedges\tO\tedges\tO\nwith\tO\twith\tO\nscale_size_continuous\tB-Code_Block\tscale_size_continuous\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nrange\tI-Code_Block\trange\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nc(1,6))\tI-Code_Block\tc(1,6))\tI-Code_Block\n?\tO\t?\tO\n\t\nExample\tO\tExample\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4534\tI-Code_Block\tQ_4534\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExample\tO\tExample\tO\nplot\tB-User_Interface_Element\tplot\tO\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36835825\tO\t36835825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36835825/\tO\thttps://stackoverflow.com/questions/36835825/\tO\n\t\n\t\nAlmost\tO\tAlmost\tO\na\tO\ta\tO\nduplicate\tO\tduplicate\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nggplot2\tB-Library\tggplot2\tO\nexpert\tO\texpert\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\n,\tO\t,\tO\ndual-scaling\tO\tdual-scaling\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nhaving\tO\thaving\tO\ntwo\tO\ttwo\tO\ny-axes\tO\ty-axes\tO\nor\tO\tor\tO\ntwo\tO\ttwo\tO\ncolor\tO\tcolor\tO\nscales\tO\tscales\tO\n)\tO\t)\tO\ncontradicts\tO\tcontradicts\tO\nthe\tO\tthe\tO\ngrammar\tO\tgrammar\tO\nof\tO\tof\tO\ngraphics\tO\tgraphics\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\naforementioned\tO\taforementioned\tO\nquestion\tO\tquestion\tO\nmight\tO\tmight\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nhack\tO\thack\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44495847\tO\t44495847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44495847/\tO\thttps://stackoverflow.com/questions/44495847/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nSVG\tB-File_Type\tSVG\tO\nimages\tB-User_Interface_Element\timages\tO\nin\tO\tin\tO\nCKEDITOR\tB-Application\tCKEDITOR\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\naccomplish\tO\taccomplish\tO\nthis\tO\tthis\tO\nI\tO\tI\tO\nbase64_encode\tB-Library_Function\tbase64_encode\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nsource\tO\tsource\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nbecomes\tO\tbecomes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5779\tI-Code_Block\tQ_5779\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nalmost\tO\talmost\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\npreview\tB-Application\tpreview\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nI\tO\tI\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nimage\tO\timage\tO\nthe\tO\tthe\tO\n\"\tB-Value\t\"\tO\n+\tI-Value\t+\tO\n\"\tI-Value\t\"\tO\n-signs\tO\t-signs\tO\nbecome\tO\tbecome\tO\nreplaces\tO\treplaces\tO\nby\tO\tby\tO\nwhitespaces\tB-Value\twhitespaces\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nCKEditor\tB-Application\tCKEditor\tO\nsetting\tO\tsetting\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nvar_dumped\tB-Library_Function\tvar_dumped\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nit\tO\tit\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nspaces\tB-Value\tspaces\tO\nwhere\tO\twhere\tO\nalready\tO\talready\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nhave\tO\thave\tO\na\tO\ta\tO\nclue\tO\tclue\tO\nhow\tO\thow\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21587066\tO\t21587066\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21587066/\tO\thttps://stackoverflow.com/questions/21587066/\tO\n\t\n\t\nI\tO\tI\tO\ntesting\tO\ttesting\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsingleton\tB-Library_Class\tsingleton\tO\npattern\tO\tpattern\tO\nand\tO\tand\tO\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhy\tO\twhy\tO\nIntelliJ\tB-Application\tIntelliJ\tO\nis\tO\tis\tO\nthrowing\tO\tthrowing\tO\nme\tO\tme\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2321\tI-Code_Block\tQ_2321\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\nhow\tO\thow\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ncalling\tO\tcalling\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2322\tI-Code_Block\tQ_2322\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2323\tI-Code_Block\tQ_2323\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21587066\tO\t21587066\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21587066/\tO\thttps://stackoverflow.com/questions/21587066/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ncalling\tO\tcalling\tO\nstatic\tB-Data_Type\tstatic\tB-Code_Block\nmethod\tO\tmethod\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nClass\tO\tClass\tO\nso\tO\tso\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nnew\tB-Code_Block\tnew\tB-Code_Block\nkeyword\tO\tkeyword\tO\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2924\tI-Code_Block\tA_2924\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21587066\tO\t21587066\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21587066/\tO\thttps://stackoverflow.com/questions/21587066/\tO\n\t\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\nanswers\tO\tanswers\tO\nare\tO\tare\tO\ncorrect\tO\tcorrect\tO\n-\tO\t-\tO\nhowever\tO\thowever\tO\nthis\tO\tthis\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nSingleton\tB-Library_Class\tSingleton\tO\npattern\tO\tpattern\tO\nis\tO\tis\tO\nhorribly\tO\thorribly\tO\nflawed\tO\tflawed\tO\nand\tO\tand\tO\nwill\tO\twill\tO\nbreak\tO\tbreak\tO\nin\tO\tin\tO\nunexpected\tO\tunexpected\tO\nways\tO\tways\tO\nin\tO\tin\tO\na\tO\ta\tO\nmulti-threading\tO\tmulti-threading\tO\nenvironment\tO\tenvironment\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nlazy\tO\tlazy\tO\ninitialization\tO\tinitialization\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsingleton\tB-Library_Class\tsingleton\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nmust\tO\tmust\tO\nhave\tO\thave\tO\nlazy\tO\tlazy\tO\ninitialization\tO\tinitialization\tO\nthen\tO\tthen\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nstatic\tB-Data_Type\tstatic\tO\nholder\tO\tholder\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2926\tI-Code_Block\tA_2926\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nloader\tO\tloader\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nlazy\tO\tlazy\tO\ninitialization\tO\tinitialization\tO\n,\tO\t,\tO\nthread\tO\tthread\tO\nsafety\tO\tsafety\tO\n,\tO\t,\tO\netc\tO\tetc\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ncompletely\tO\tcompletely\tO\nthread\tO\tthread\tO\nsafe\tO\tsafe\tO\nand\tO\tand\tO\nfast\tO\tfast\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nsynchronization\tO\tsynchronization\tO\nor\tO\tor\tO\nnull\tB-Value\tnull\tO\nchecks\tO\tchecks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35324855\tO\t35324855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35324855/\tO\thttps://stackoverflow.com/questions/35324855/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nan\tO\tan\tO\nalgorithm\tO\talgorithm\tO\nfor\tO\tfor\tO\nprocess\tO\tprocess\tO\nhistograms\tO\thistograms\tO\nimages\tB-User_Interface_Element\timages\tO\nusing\tO\tusing\tO\nmultiple\tO\tmultiple\tO\nthreads\tO\tthreads\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\ncommon\tO\tcommon\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\nmultiple\tO\tmultiple\tO\nthread\tO\tthread\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncache\tO\tcache\tO\nbuffer\tB-Data_Structure\tbuffer\tO\non\tO\ton\tO\neach\tO\teach\tO\none\tO\tone\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nhistogram\tO\thistogram\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncache\tO\tcache\tO\nbuffer\tB-Data_Structure\tbuffer\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nlock\tO\tlock\tO\na\tO\ta\tO\nmutex\tO\tmutex\tO\naddition\tO\taddition\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nvector\tB-Data_Structure\tvector\tO\n,\tO\t,\tO\nand\tO\tand\tO\nunlock\tO\tunlock\tO\nthe\tO\tthe\tO\nbuffer\tB-Data_Structure\tbuffer\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nefficient\tO\tefficient\tO\nbut\tO\tbut\tO\ncan\tO\tcan\tO\nintroduce\tO\tintroduce\tO\na\tO\ta\tO\n'\tO\t'\tO\njam\tO\tjam\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmean\tO\tmean\tO\nthe\tO\tthe\tO\nadditions\tO\tadditions\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndatas\tO\tdatas\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nrealized\tO\trealized\tO\nconcurently\tO\tconcurently\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nshort\tO\tshort\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n0-255\tB-Value\t0-255\tO\n)\tO\t)\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nproceed\tO\tproceed\tO\nthe\tO\tthe\tO\naddition\tO\taddition\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nfast\tO\tfast\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nneglect\tO\tneglect\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nof\tO\tof\tO\ndatas\tO\tdatas\tO\nis\tO\tis\tO\nhigher\tO\thigher\tO\nlike\tO\tlike\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\non\tO\ton\tO\nthermal\tO\tthermal\tO\nimages\tB-User_Interface_Element\timages\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\ncan\tO\tcan\tO\nbecome\tO\tbecome\tO\nmore\tO\tmore\tO\nsignificant\tO\tsignificant\tO\n.\tO\t.\tO\n\t\nThermal\tO\tThermal\tO\nimages\tB-User_Interface_Element\timages\tO\nare\tO\tare\tO\noften\tO\toften\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nof\tO\tof\tO\nunsigned\tB-Data_Type\tunsigned\tO\nshort\tI-Data_Type\tshort\tO\n,\tO\t,\tO\neven\tO\teven\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nrange\tO\trange\tO\n(\tO\t(\tO\n0-65535\tB-Value\t0-65535\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\nmust\tO\tmust\tO\nprocess\tO\tprocess\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nspeed\tO\tspeed\tO\nup\tO\tup\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\nhte\tO\thte\tO\nprocessing\tO\tprocessing\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nto\tO\tto\tO\nlaunch\tO\tlaunch\tO\na\tO\ta\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\naddition\tO\taddition\tO\nwhile\tO\twhile\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nforeground\tO\tforeground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\nwould\tO\twould\tO\nonly\tO\tonly\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\ndatas\tO\tdatas\tO\ninto\tO\tinto\tO\na\tO\ta\tO\npreallocated\tO\tpreallocated\tO\nbuffer\tB-Data_Structure\tbuffer\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nbasically\tO\tbasically\tO\nthe\tO\tthe\tO\nwork\tO\twork\tO\nof\tO\tof\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nforeground\tO\tforeground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\nused\tO\tused\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nget\tO\tget\tO\na\tO\ta\tO\nbuffer\tO\tbuffer\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ncircular\tO\tcircular\tO\nbuffer\tO\tbuffer\tO\n.\tO\t.\tO\n\t\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\nhistogram\tO\thistogram\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nspecified\tO\tspecified\tO\nset\tO\tset\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nfrom\tO\tfrom\tO\nline\tO\tline\tO\nn\tB-Variable_Name\tn\tO\nto\tO\tto\tO\nline\tO\tline\tO\nm\tB-Variable_Name\tm\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\n-notify\tO\t-notify\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nbuffer\tB-Data_Structure\tbuffer\tO\nthe\tO\tthe\tO\noperations\tO\toperations\tO\nare\tO\tare\tO\nfinished\tO\tfinished\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nused\tO\tused\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nwait\tO\twait\tO\nuntil\tO\tuntil\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\narrive\tO\tarrive\tO\nand\tO\tand\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\navailable\tO\tavailable\tO\nbuffer\tB-Data_Structure\tbuffer\tO\nis\tO\tis\tO\nlower\tO\tlower\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nbuffers\tB-Data_Structure\tbuffers\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nconditions\tO\tconditions\tO\nare\tO\tare\tO\ntrue\tB-Value\ttrue\tO\nthen\tO\tthen\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbuffer\tB-Data_Structure\tbuffer\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nprocessed\tO\tprocessed\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbuffers\tB-Data_Structure\tbuffers\tO\navailable\tO\tavailable\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nthe\tO\tthe\tO\naddition\tO\taddition\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nbuffer\tO\tbuffer\tO\n.\tO\t.\tO\n\t\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nprocessed\tO\tprocessed\tO\nbuffer\tO\tbuffer\tO\nreusable\tO\treusable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nfamiliar\tO\tfamiliar\tO\nwith\tO\twith\tO\ncondition\tO\tcondition\tO\nvariables\tO\tvariables\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\ncommunication\tO\tcommunication\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nthreads\tO\tthreads\tO\nusing\tO\tusing\tO\nconditions\tO\tconditions\tO\nvariable\tO\tvariable\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntoy\tB-Class_Name\ttoy\tO\nsample\tO\tsample\tO\n:\tO\t:\tO\n\t\ntoy.h\tB-File_Name\ttoy.h\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4329\tI-Code_Block\tQ_4329\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nmain\tB-File_Name\tmain\tO\n.cpp\tI-File_Name\t.cpp\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4330\tI-Code_Block\tQ_4330\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\nis\tO\tis\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwithout\tO\twithout\tO\ndifficulties\tO\tdifficulties\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nunwanted\tO\tunwanted\tO\naspect\tO\taspect\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwritten\tO\twritten\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nbackground\tO\tbackground\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4331\tI-Code_Block\tQ_4331\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nmust\tO\tmust\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\n\"\tO\t\"\tO\nit\tB-Variable_Name\tit\tO\n\"\tO\t\"\tO\notherwise\tO\totherwise\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nposition\tO\tposition\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbuffer\tO\tbuffer\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nwas\tO\twas\tO\n:\tO\t:\tO\n\t\n-\tO\t-\tO\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\nthread\tO\tthread\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\nis\tO\tis\tO\nsend\tO\tsend\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\n-\tO\t-\tO\nThen\tO\tThen\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\nbuffers\tB-Data_Structure\tbuffers\tO\n(\tO\t(\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nbuffers\tB-Data_Structure\tbuffers\tO\ndepending\tO\tdepending\tO\nhow\tO\thow\tO\nfast\tO\tfast\tO\nthe\tO\tthe\tO\nthreads\tO\tthreads\tO\nare\tO\tare\tO\nending\tO\tending\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\n-\tO\t-\tO\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nnotify\tO\tnotify\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nforeground\tO\tforeground\tO\nthread\tO\tthread\tO\n(\tO\t(\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nget_buffer())\tB-Library_Function\tget_buffer())\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nfinish\tO\tfinish\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\nbuffer\tB-Data_Structure\tbuffer\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nmade\tO\tmade\tO\nit\tO\tit\tO\nreusable\tO\treusable\tO\n.\tO\t.\tO\n\t\nFollowing\tO\tFollowing\tO\nthese\tO\tthese\tO\nstatement\tO\tstatement\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nis\tO\tis\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nthread\tO\tthread\tO\nit\tO\tit\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\nbetween\tO\tbetween\tO\nBuf_start\tB-Variable_Name\tBuf_start\tO\nand\tO\tand\tO\n_Buf_end\tB-Variable_Name\t_Buf_end\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nseeking\tO\tseeking\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbuffer\tO\tbuffer\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nbackground\tO\tbackground\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4332\tI-Code_Block\tQ_4332\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAfter\tO\tAfter\tO\nseveral\tO\tseveral\tO\nhours\tO\thours\tO\nof\tO\tof\tO\ntests\tO\ttests\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\ninterested\tO\tinterested\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nalgorithm\tO\talgorithm\tO\nreally\tO\treally\tO\nwork\tO\twork\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\n,\tO\t,\tO\nless\tO\tless\tO\nprocessing\tO\tprocessing\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncommunicate\tO\tcommunicate\tO\nbetween\tO\tbetween\tO\nthreads\tO\tthreads\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35324855\tO\t35324855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35324855/\tO\thttps://stackoverflow.com/questions/35324855/\tO\n\t\n\t\nI\tO\tI\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n!\tO\t!\tO\n\t\n:)\tO\t:)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nidentify\tO\tidentify\tO\nseveral\tO\tseveral\tO\nissues\tO\tissues\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n\"\tO\t\"\tO\ntoy\tB-Class_Name\ttoy\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\noverload\tO\toverload\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noperator\tO\toperator\tB-Code_Block\n()\tB-Code_Block\t()\tI-Code_Block\nI\tO\tI\tO\ncopy\tO\tcopy\tO\npast\tO\tpast\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nget\tB-Library_Function\tget\tB-Code_Block\nbuffer()\tI-Library_Function\tbuffer()\tI-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\na\tO\ta\tO\nblock\tO\tblock\tO\nfunction\tO\tfunction\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nwait\tO\twait\tO\ncondition\tO\tcondition\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsequential\tO\tsequential\tO\nover\tO\tover\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nunique_lock\tB-Code_Block\tunique_lock\tB-Code_Block\nneeded\tO\tneeded\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncondition\tO\tcondition\tO\nvariable\tO\tvariable\tO\nexist\tO\texist\tO\nonly\tO\tonly\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nbrackets\tO\tbrackets\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nblock\tO\tblock\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nwait\tO\twait\tO\ncondition\tO\tcondition\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nevaluated\tO\tevaluated\tO\nthe\tO\tthe\tO\nmutex\tO\tmutex\tO\n_mtx_foreground\tB-Code_Block\t_mtx_foreground\tB-Code_Block\nis\tO\tis\tO\nunlock\tO\tunlock\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nan\tO\tan\tO\noutbound\tO\toutbound\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\navailable\tO\tavailable\tO\nbuffer\tO\tbuffer\tO\nthe\tO\tthe\tO\nwhile\tO\twhile\tB-Code_Block\nloop\tO\tloop\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nreplaced\tO\treplaced\tO\nby\tO\tby\tO\na\tO\ta\tO\nfor\tB-Code_Block\tfor\tB-Code_Block\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nwas\tO\twas\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncondition\tO\tcondition\tO\nto\tO\tto\tO\nsatisfy\tO\tsatisfy\tO\nfor\tO\tfor\tO\nincrement\tO\tincrement\tO\nthe\tO\tthe\tO\npointer\tB-Data_Type\tpointer\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nbackground\tO\tbackground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nidea\tO\tidea\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nmust\tO\tmust\tO\nrun\tO\trun\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nis\tO\tis\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\n\t\nfrom\tO\tfrom\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nLook\tO\tLook\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nbuffer\tB-Data_Structure\tbuffer\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\n\t\nprocess\tO\tprocess\tO\nit\tO\tit\tO\n,\tO\t,\tO\nremake\tO\tremake\tO\nit\tO\tit\tO\navailable\tO\tavailable\tO\nand\tO\tand\tO\nnotify\tO\tnotify\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nredo\tO\tredo\tO\nuntil\tO\tuntil\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nbuffers\tB-Data_Structure\tbuffers\tO\nare\tO\tare\tO\nprocessed\tO\tprocessed\tO\nthen\tO\tthen\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\nto\tO\tto\tO\n2)\tO\t2)\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nsome\tO\tsome\tO\npart\tO\tpart\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\n\"\tO\t\"\tO\ndeeply\tO\tdeeply\tO\n\"\tO\t\"\tO\nmodified\tO\tmodified\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tB-Code_Block\ntoy\tB-Class_Name\ttoy\tI-Code_Block\ncalled\tO\tcalled\tO\ntoy2\tB-Class_Name\ttoy2\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5049\tI-Code_Block\tA_5049\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47411756\tO\t47411756\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47411756/\tO\thttps://stackoverflow.com/questions/47411756/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nentities\tO\tentities\tO\n:\tO\t:\tO\n\t\nA\tO\tA\tO\nUser\tB-Variable_Name\tUser\tB-Code_Block\ncan\tO\tcan\tO\nhave\tO\thave\tO\nJobs\tB-Variable_Name\tJobs\tB-Code_Block\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nJob\tB-Variable_Name\tJob\tB-Code_Block\ncan\tO\tcan\tO\ncontain\tO\tcontain\tO\nTasks\tB-Variable_Name\tTasks\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nusers\tB-Variable_Name\tusers\tO\neasily\tO\teasily\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6289\tI-Code_Block\tQ_6289\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFor\tO\tFor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nJob\tB-Variable_Name\tJob\tB-Code_Block\nwas\tO\twas\tO\nn't\tO\tn't\tO\ngiven\tO\tgiven\tO\na\tO\ta\tO\nUser\tB-Variable_Name\tUser\tB-Code_Block\nrecord\tO\trecord\tO\n,\tO\t,\tO\njust\tO\tjust\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\nID\tB-Variable_Name\tID\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nlink\tO\tlink\tO\nthem\tO\tthem\tO\ntogether\tO\ttogether\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nimportant\tO\timportant\tO\ninformation\tO\tinformation\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6290\tI-Code_Block\tQ_6290\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\ncount\tB-Variable_Name\tcount\tO\nof\tO\tof\tO\ntasks\tO\ttasks\tO\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nuser\tB-Variable_Name\tuser\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nessentially\tO\tessentially\tO\nlike\tO\tlike\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6291\tI-Code_Block\tQ_6291\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nthing\tO\tthing\tO\nwould\tO\twould\tO\nallow\tO\tallow\tO\nme\tO\tme\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\ntasksCount\tB-Variable_Name\ttasksCount\tB-Code_Block\nas\tO\tas\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nuser\tB-Variable_Name\tuser\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6292\tI-Code_Block\tQ_6292\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSomething\tO\tSomething\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nwas\tO\twas\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nscores\tB-Variable_Name\tscores\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nbreaks\tO\tbreaks\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nand\tO\tand\tO\nmeans\tO\tmeans\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nhave\tO\thave\tO\nto\tO\tto\tO\npull\tO\tpull\tO\nsome\tO\tsome\tO\nclever\tO\tclever\tO\ntricks\tO\ttricks\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntwig\tB-File_Type\ttwig\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6293\tI-Code_Block\tQ_6293\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nresults\tO\tresults\tO\nare\tO\tare\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntwig\tB-File_Type\ttwig\tO\nfile\tO\tfile\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nparameter\tO\tparameter\tO\nusers\tB-Variable_Name\tusers\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nabove\tO\tabove\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nuser\tB-Variable_Name\tuser\tO\n,\tO\t,\tO\ncount\tB-Variable_Name\tcount\tO\n,\tO\t,\tO\nuser\tB-Variable_Name\tuser\tO\n,\tO\t,\tO\ncount\tB-Variable_Name\tcount\tO\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\ncount\tB-Variable_Name\tcount\tO\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nuser\tB-Variable_Name\tuser\tO\nas\tO\tas\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthat\tO\tthat\tO\nlogic\tO\tlogic\tO\naway\tO\taway\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ntwig\tB-File_Type\ttwig\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nalso\tO\talso\tO\nprefer\tO\tprefer\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nhydrate\tO\thydrate\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nas\tO\tas\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nUser\tB-Variable_Name\tUser\tB-Code_Block\nentity\tO\tentity\tO\nthat\tO\tthat\tO\ngenerates\tO\tgenerates\tO\na\tO\ta\tO\nGravatar\tB-Application\tGravatar\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6294\tI-Code_Block\tQ_6294\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nallows\tO\tallows\tO\nme\tO\tme\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nGravatar\tB-Application\tGravatar\tO\nimage\tO\timage\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntwig\tB-File_Type\ttwig\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6295\tI-Code_Block\tQ_6295\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44833318\tO\t44833318\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44833318/\tO\thttps://stackoverflow.com/questions/44833318/\tO\n\t\n\t\ni\tO\ti\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nclass\tO\tclass\tO\nRSAPKCS1Signatureformatter\tB-Library_Class\tRSAPKCS1Signatureformatter\tO\nand\tO\tand\tO\nRSACryptoServiceProvider\tB-Library_Class\tRSACryptoServiceProvider\tO\n\t\nas\tO\tas\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nsign\tO\tsign\tO\ndata\tO\tdata\tO\nusing\tO\tusing\tO\nRSAPKCS1Signatureformatter\tB-Library_Class\tRSAPKCS1Signatureformatter\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\ndifferent\tO\tdifferent\tO\nsignature\tO\tsignature\tO\nvalue\tO\tvalue\tO\nthan\tO\tthan\tO\nsigning\tO\tsigning\tO\nusing\tO\tusing\tO\nRSACryptoServiceProvider\tB-Library_Class\tRSACryptoServiceProvider\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44833318\tO\t44833318\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44833318/\tO\thttps://stackoverflow.com/questions/44833318/\tO\n\t\n\t\nRSAPKCS1SignatureFormatter\tB-Library_Class\tRSAPKCS1SignatureFormatter\tB-Code_Block\njust\tO\tjust\tO\ncalls\tO\tcalls\tO\nRSACryptoServiceProvider.SignHash\tB-Library_Function\tRSACryptoServiceProvider.SignHash\tB-Code_Block\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nsay\tO\tsay\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nPsychic\tO\tPsychic\tO\ndebugging\tO\tdebugging\tO\nsays\tO\tsays\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ncalling\tO\tcalling\tO\nSignData\tB-Library_Function\tSignData\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nRSA\tB-Library_Class\tRSA\tO\nobject\tO\tobject\tO\ndirectly\tO\tdirectly\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nit\tO\tit\tO\ngetting\tO\tgetting\tO\nhashed\tO\thashed\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nis\tO\tis\tO\nSignHash\tB-Library_Function\tSignHash\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\npre-digested\tO\tpre-digested\tO\nvalues\tO\tvalues\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24521320\tO\t24521320\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24521320/\tO\thttps://stackoverflow.com/questions/24521320/\tO\n\t\n\t\nTrying\tO\tTrying\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nAngular\tB-Library\tAngular\tO\n's\tO\t's\tO\ntoolset\tO\ttoolset\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napplication\tO\tapplication\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\npage\tO\tpage\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\none\tO\tone\tO\nroute\tB-Library_Class\troute\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nother\tO\tother\tO\n\"\tO\t\"\tO\nstate\tO\tstate\tO\n\"\tO\t\"\tO\nas\tO\tas\tO\nin\tO\tin\tO\nURL\tO\tURL\tO\nstate\tO\tstate\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\ncontrollers\tO\tcontrollers\tO\nand\tO\tand\tO\nviews\tO\tviews\tO\nin\tO\tin\tO\na\tO\ta\tO\n1:1\tO\t1:1\tO\nrelationship\tO\trelationship\tO\nwith\tO\twith\tO\na\tO\ta\tO\nroute\tB-Library_Class\troute\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nis\tO\tis\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nController+View\tO\tController+View\tO\ncombinations\tO\tcombinations\tO\nfor\tO\tfor\tO\ncomponents\tO\tcomponents\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nA\tO\tA\tO\ncomponent\tO\tcomponent\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nwidget\tB-User_Interface_Element\twidget\tO\n,\tO\t,\tO\nmodal\tB-User_Interface_Element\tmodal\tO\nwindow\tI-User_Interface_Element\twindow\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nleverage\tO\tleverage\tO\nAngular\tB-Library\tAngular\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nsituation\tO\tsituation\tO\n?\tO\t?\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\nhttps://github.com/angular-ui/ui-router\tO\thttps://github.com/angular-ui/ui-router\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nstill\tO\tstill\tO\nrelies\tO\trelies\tO\nheavily\tO\theavily\tO\non\tO\ton\tO\ncreating\tO\tcreating\tO\n\"\tO\t\"\tO\nstates\tO\tstates\tO\n\"\tO\t\"\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\ntying\tO\ttying\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nURL\tO\tURL\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24521320\tO\t24521320\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24521320/\tO\thttps://stackoverflow.com/questions/24521320/\tO\n\t\n\t\nTo\tO\tTo\tO\ninclude\tO\tinclude\tO\nHTML\tB-Language\tHTML\tO\npartials\tO\tpartials\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nng-include\tB-HTML_XML_Tag\tng-include\tB-Code_Block\ndirective\tO\tdirective\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncoupled\tO\tcoupled\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nng-controller\tB-HTML_XML_Tag\tng-controller\tB-Code_Block\ndirective\tO\tdirective\tO\nin\tO\tin\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ndifferent\tO\tdifferent\tO\nways\tO\tways\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nnest\tO\tnest\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nwith\tO\twith\tO\nng-include\tB-HTML_XML_Tag\tng-include\tB-Code_Block\ninside\tO\tinside\tO\nan\tO\tan\tO\nng-controller\tB-HTML_XML_Tag\tng-controller\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3355\tI-Code_Block\tA_3355\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ninclude\tO\tinclude\tO\nan\tO\tan\tO\nng-controller\tB-HTML_XML_Tag\tng-controller\tB-Code_Block\ndirective\tO\tdirective\tO\ninside\tO\tinside\tO\nan\tO\tan\tO\nincluded\tO\tincluded\tO\npartial\tO\tpartial\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3356\tI-Code_Block\tA_3356\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\ncombine\tO\tcombine\tO\nng-include\tB-HTML_XML_Tag\tng-include\tB-Code_Block\nand\tO\tand\tO\nng-controller\tB-HTML_XML_Tag\tng-controller\tB-Code_Block\ndirectives\tO\tdirectives\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nelement\tO\telement\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3357\tI-Code_Block\tA_3357\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexamples\tO\texamples\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nliteral\tO\tliteral\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nng-include\tB-HTML_XML_Tag\tng-include\tB-Code_Block\ndirective\tO\tdirective\tO\nis\tO\tis\tO\nwrapped\tO\twrapped\tO\nin\tO\tin\tO\nsingle\tO\tsingle\tO\nquotes\tO\tquotes\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nexpects\tO\texpects\tO\nan\tO\tan\tO\nexpression\tO\texpression\tO\n.\tO\t.\tO\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nutilize\tO\tutilize\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ntechniques\tO\ttechniques\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nexpect\tO\texpect\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nheavily\tO\theavily\tO\nwith\tO\twith\tO\ndirectives\tO\tdirectives\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nUI\tB-Library_Class\tUI\tO\nBootstrap\tI-Library_Class\tBootstrap\tO\nmodal\tI-Library_Class\tmodal\tO\n)\tO\t)\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\ntheir\tO\ttheir\tO\nown\tO\town\tO\ncontroller\tO\tcontroller\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\nPlunker\tB-Application\tPlunker\tO\nhere\tO\there\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nworking\tO\tworking\tO\nexamples\tO\texamples\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nng-include\tB-HTML_XML_Tag\tng-include\tB-Code_Block\noptions\tO\toptions\tO\nlisted\tO\tlisted\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nswapping\tO\tswapping\tO\nthe\tO\tthe\tO\nincluded\tO\tincluded\tO\ntemplate\tO\ttemplate\tO\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nspeak\tO\tspeak\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfeasibility\tO\tfeasibility\tO\nof\tO\tof\tO\nactually\tO\tactually\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\nproduction\tO\tproduction\tO\napplication\tO\tapplication\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nappears\tO\tappears\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\non\tO\ton\tO\nfirst\tO\tfirst\tO\nglance\tO\tglance\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38213599\tO\t38213599\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38213599/\tO\thttps://stackoverflow.com/questions/38213599/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nbasically\tO\tbasically\tO\nasking\tO\tasking\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\ncostly\tO\tcostly\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nCPU\tB-Device\tCPU\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsituation\tO\tsituation\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nabout\tO\tabout\tO\n40-400\tO\t40-400\tO\nparticles\tB-Library_Class\tparticles\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nat\tO\tat\tO\nany\tO\tany\tO\none\tO\tone\tO\ngiven\tO\tgiven\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nparticle\tB-Library_Class\tparticle\tO\nhas\tO\thas\tO\na\tO\ta\tO\nList\tB-Data_Structure\tList\tO\nof\tO\tof\tO\nParticleAI\tB-Library_Class\tParticleAI\tO\nwhich\tO\twhich\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nUpdate()\tB-Library_Function\tUpdate()\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nList\tB-Data_Structure\tList\tO\nof\tO\tof\tO\nnewly\tO\tnewly\tO\ncreated\tO\tcreated\tO\nParticle\tB-Library_Class\tParticle\tO\nobjects\tO\tobjects\tO\n,\tO\t,\tO\nif\tO\tif\tO\nany\tO\tany\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthis\tO\tthis\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nmade\tO\tmade\tO\nfor\tO\tfor\tO\nmobile\tB-Device\tmobile\tO\n,\tO\t,\tO\nefficiency\tO\tefficiency\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nprocessor\tB-Device\tprocessor\tO\nis\tO\tis\tO\nkey\tO\tkey\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\ncostly\tO\tcostly\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nsomething\tO\tsomething\tO\nbetween\tO\tbetween\tO\n100-2000\tB-Value\t100-2000\tO\nLists\tB-Data_Structure\tLists\tO\nevery\tO\tevery\tO\nframe\tO\tframe\tO\n(\tO\t(\tO\nat\tO\tat\tO\n60FPS\tO\t60FPS\tO\n)\tO\t)\tO\nwhich\tO\twhich\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nempty\tO\tempty\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nor\tO\tor\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nnulls\tB-Value\tnulls\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nnull\tB-Value\tnull\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nAI\tB-Library_Class\tAI\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nbrain\tO\tbrain\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nconstructing\tO\tconstructing\tO\na\tO\ta\tO\nList\tB-Data_Structure\tList\tO\nobject\tO\tobject\tO\nwould\tO\twould\tO\ntake\tO\ttake\tO\nmore\tO\tmore\tO\nprocessor\tB-Device\tprocessor\tO\ntime\tO\ttime\tO\nthan\tO\tthan\tO\nsimply\tO\tsimply\tO\nreturning\tO\treturning\tO\na\tO\ta\tO\nnull\tO\tnull\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nboolean\tB-Data_Type\tboolean\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nassumption\tO\tassumption\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nother\tO\tother\tO\nsimilar\tO\tsimilar\tO\nquestions\tO\tquestions\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nbest\tO\tbest\tO\npractice\tO\tpractice\tO\nis\tO\tis\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nempty\tO\tempty\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nmaking\tO\tmaking\tO\nthis\tO\tthis\tO\ngame\tO\tgame\tO\nfor\tO\tfor\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nso\tO\tso\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nnull\tB-Value\tnull\tO\nwill\tO\twill\tO\nnever\tO\tnever\tO\nbe\tO\tbe\tO\nreceived\tO\treceived\tO\nunexpectedly\tO\tunexpectedly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nin\tO\tin\tO\npure\tO\tpure\tO\nprocessing\tO\tprocessing\tO\nterms\tO\tterms\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\n,\tO\t,\tO\nsimply\tO\tsimply\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsheer\tO\tsheer\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nparticle\tB-Library_Class\tparticle\tO\nobjects\tO\tobjects\tO\nbeing\tO\tbeing\tO\ncreated\tO\tcreated\tO\nat\tO\tat\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nJust\tO\tJust\tO\nrealized\tO\trealized\tO\nsomething\tO\tsomething\tO\nwhich\tO\twhich\tO\nmay\tO\tmay\tO\nwork\tO\twork\tO\nbetter\tO\tbetter\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\n(\tO\t(\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nlist\tB-Data_Structure\tlist\tO\nand\tO\tand\tO\nreturning\tO\treturning\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nparticleAI\tB-Library_Class\tparticleAI\tO\nevery\tO\tevery\tO\nframe\tO\tframe\tO\n)\tO\t)\tO\ncreate\tO\tcreate\tO\neach\tO\teach\tO\nparticleAI\tB-Library_Class\tparticleAI\tO\n's\tO\t's\tO\nreturn\tO\treturn\tO\nlist\tB-Data_Structure\tlist\tO\nat\tO\tat\tO\nconstruction\tO\tconstruction\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nclear\tO\tclear\tO\nit\tO\tit\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\nof\tO\tof\tO\neach\tO\teach\tO\nUpdate()\tB-Library_Function\tUpdate()\tO\nphase\tO\tphase\tO\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nalmost\tO\talmost\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38213599\tO\t38213599\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38213599/\tO\thttps://stackoverflow.com/questions/38213599/\tO\n\t\n\t\nAs\tO\tAs\tO\nobjects\tO\tobjects\tO\nare\tO\tare\tO\nshared\tO\tshared\tO\n,\tO\t,\tO\nreusing\tO\treusing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlist\tB-Data_Structure\tlist\tO\nobject\tO\tobject\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\ninvolve\tO\tinvolve\tO\ncopying\tO\tcopying\tO\n.\tO\t.\tO\n\t\nNull\tB-Value\tNull\tO\nor\tO\tor\tO\nempty\tO\tempty\tO\nlist\tB-Data_Structure\tlist\tO\n?\tO\t?\tO\n\t\nAssuming\tO\tAssuming\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nnull\tB-Value\tnull\tO\nseems\tO\tseems\tO\nugly\tO\tugly\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\njava\tB-Language\tjava\tO\na\tO\ta\tO\nLinkedList\tB-Library_Class\tLinkedList\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nlighter\tO\tlighter\tO\nthat\tO\tthat\tO\nan\tO\tan\tO\nArrayList\tB-Library_Class\tArrayList\tO\n,\tO\t,\tO\nso\tO\tso\tO\npick\tO\tpick\tO\na\tO\ta\tO\nlinked\tB-Library_Class\tlinked\tO\nlist\tI-Library_Class\tlist\tO\n.\tO\t.\tO\n\t\nNull\tB-Value\tNull\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nfaster\tO\tfaster\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nread-only\tO\tread-only\tO\n,\tO\t,\tO\nto-be-replaced\tO\tto-be-replaced\tO\nCollections.emptyList()\tB-Library_Function\tCollections.emptyList()\tB-Code_Block\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nsafer\tO\tsafer\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nstructure\tO\tstructure\tO\nof\tO\tof\tO\none\tO\tone\tO\naspect\tO\taspect\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nworthwile\tO\tworthwile\tO\nconsidering\tO\tconsidering\tO\nthe\tO\tthe\tO\nalgorithmic\tO\talgorithmic\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nSpending\tO\tSpending\tO\ntime\tO\ttime\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nrelevant\tO\trelevant\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nQueues\tB-Data_Structure\tQueues\tO\n.\tO\t.\tO\n\t\nPriorities\tO\tPriorities\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40979310\tO\t40979310\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40979310/\tO\thttps://stackoverflow.com/questions/40979310/\tO\n\t\n\t\nI\tO\tI\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nexpress\tO\texpress\tO\nmyself\tO\tmyself\tO\nvery\tO\tvery\tO\nwell\tO\twell\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\ndoubt\tO\tdoubt\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nwill\tO\twill\tO\ntry\tO\ttry\tO\nbest\tO\tbest\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napp\tO\tapp\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nvarious\tO\tvarious\tO\nquests\tO\tquests\tO\n(\tO\t(\tO\nhosted\tO\thosted\tO\non\tO\ton\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n)\tO\t)\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nmust\tO\tmust\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nquest\tO\tquest\tO\nwith\tO\twith\tO\na\tO\ta\tO\nrandom\tO\trandom\tO\nquest\tO\tquest\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\ndisplay\tO\tdisplay\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nduring\tO\tduring\tO\n24\tO\t24\tO\nhours\tO\thours\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nafter\tO\tafter\tO\nthat\tO\tthat\tO\n24\tO\t24\tO\nhours\tO\thours\tO\ndisplay\tO\tdisplay\tO\nanother\tO\tanother\tO\none\tO\tone\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n,\tO\t,\tO\ni\tO\ti\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nunderstood\tO\tunderstood\tO\nit\tO\tit\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nachieve\tO\tachieve\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nsearched\tO\tsearched\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nand\tO\tand\tO\ni\tO\ti\tO\ncant\tO\tcant\tO\nfind\tO\tfind\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\nsuits\tO\tsuits\tO\nmy\tO\tmy\tO\nneeds\tO\tneeds\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40979310\tO\t40979310\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40979310/\tO\thttps://stackoverflow.com/questions/40979310/\tO\n\t\n\t\nYou\tO\tYou\tO\nstore\tO\tstore\tO\na\tO\ta\tO\ntimestamp\tB-Library_Class\ttimestamp\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nphone\tO\tphone\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nhe\tO\the\tO\nlogs\tO\tlogs\tO\nin\tO\tin\tO\nyou\tO\tyou\tO\ncompare\tO\tcompare\tO\nthe\tO\tthe\tO\ntimestamp\tB-Library_Class\ttimestamp\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\n24\tO\t24\tO\nhours\tO\thours\tO\npassed\tO\tpassed\tO\nyou\tO\tyou\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nquest\tO\tquest\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nstored\tO\tstored\tO\ntimestamp\tB-Library_Class\ttimestamp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40979310\tO\t40979310\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40979310/\tO\thttps://stackoverflow.com/questions/40979310/\tO\n\t\n\t\nuse\tO\tuse\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5861\tI-Code_Block\tA_5861\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41417370\tO\t41417370\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41417370/\tO\thttps://stackoverflow.com/questions/41417370/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nnotepad++\tB-Application\tnotepad++\tO\nregex\tO\tregex\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\ninto\tO\tinto\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThere\tO\tThere\tO\nmay\tO\tmay\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\nthree\tO\tthree\tO\nor\tO\tor\tO\nfor\tO\tfor\tO\nBrackets\tO\tBrackets\tO\nin\tO\tin\tO\neach\tO\teach\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nShould\tO\tShould\tO\nbecome\tO\tbecome\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5255\tI-Code_Block\tQ_5255\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41417370\tO\t41417370\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41417370/\tO\thttps://stackoverflow.com/questions/41417370/\tO\n\t\n\t\nDo\tO\tDo\tO\na\tO\ta\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\nfind/replace\tO\tfind/replace\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nOpen\tO\tOpen\tO\nReplace\tO\tReplace\tO\nDialog\tB-User_Interface_Element\tDialog\tO\n\t\nFind\tO\tFind\tO\nWhat\tO\tWhat\tO\n:\tO\t:\tO\n[\tB-Value\t[\tB-Code_Block\n^\tI-Value\t^\tI-Code_Block\n\\[\\]]*\\[([^\\]]+)\\]\tI-Value\t\\[\\]]*\\[([^\\]]+)\\]\tI-Code_Block\n\t\nReplace\tO\tReplace\tO\nWith\tO\tWith\tO\n:\tO\t:\tO\n\\1\\n\tB-Value\t\\1\\n\tB-Code_Block\n\t\nCheck\tO\tCheck\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\n\t\nClick\tO\tClick\tO\nReplace\tO\tReplace\tO\nor\tO\tor\tO\nReplace\tO\tReplace\tO\nAll\tO\tAll\tO\n\t\nExplanation\tO\tExplanation\tO\n\t\none\tO\tone\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nbrackets\tO\tbrackets\tO\nare\tO\tare\tO\nRE\tO\tRE\tO\nmetacharacters\tO\tmetacharacters\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nmeans\tO\tmeans\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nescape\tO\tescape\tO\neach\tO\teach\tO\nbracket\tO\tbracket\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nliteral\tO\tliteral\tO\nbracket\tO\tbracket\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\na\tO\ta\tO\nliteral\tO\tliteral\tO\nbracket\tO\tbracket\tO\nbecomes\tO\tbecomes\tO\n\\\tB-Value\t\\\tB-Code_Block\n[\tI-Value\t[\tI-Code_Block\nor\tO\tor\tO\n\\\tB-Value\t\\\tB-Code_Block\n]\tI-Value\t]\tI-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nRE\tO\tRE\tO\n\t\nhere\tO\there\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nRE\tO\tRE\tO\nwe\tO\twe\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\noptional\tO\toptional\tO\npart\tO\tpart\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nconsist\tO\tconsist\tO\nof\tO\tof\tO\neverything\tO\teverything\tO\nnot\tO\tnot\tO\nbrackets\tO\tbrackets\tO\n(\tO\t(\tO\n[\tB-Value\t[\tB-Code_Block\n\\\tI-Value\t\\\tI-Code_Block\n[\tI-Value\t[\tI-Code_Block\n\\\tI-Value\t\\\tI-Code_Block\n]\tI-Value\t]\tI-Code_Block\n]\tB-Value\t]\tB-Code_Block\n*)\tI-Value\t*)\tI-Code_Block\n\t\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nan\tO\tan\tO\nopening\tO\topening\tO\nbracket\tO\tbracket\tO\n,\tO\t,\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nsomthing\tO\tsomthing\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nclosing\tO\tclosing\tO\nbracket\tO\tbracket\tO\n((\tB-Value\t((\tB-Code_Block\n[\tI-Value\t[\tI-Code_Block\n^\\\tI-Value\t^\\\tI-Code_Block\n]\tI-Value\t]\tI-Code_Block\n]\tB-Value\t]\tB-Code_Block\n+))\tI-Value\t+))\tI-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\nalso\tO\talso\tO\ncaptured\tO\tcaptured\tO\ninto\tO\tinto\tO\n\\1\tB-Value\t\\1\tB-Code_Block\ndue\tO\tdue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nparentheses\tO\tparentheses\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nreuse\tO\treuse\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsubstitution\tO\tsubstitution\tO\n\t\nwhatever\tO\twhatever\tO\nis\tO\tis\tO\nmatched\tO\tmatched\tO\nabove\tO\tabove\tO\nis\tO\tis\tO\ncompletely\tO\tcompletely\tO\nreplaced\tO\treplaced\tO\nby\tO\tby\tO\nwhatever\tO\twhatever\tO\nwas\tO\twas\tO\ncaptured\tO\tcaptured\tO\ninto\tO\tinto\tO\n\\1\tB-Value\t\\1\tB-Code_Block\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\na\tO\ta\tO\nnewline\tO\tnewline\tO\n(\tO\t(\tO\n\\n\tB-Value\t\\n\tB-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nwindows-style\tO\twindows-style\tO\nlineendings\tO\tlineendings\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\\r\\n\tB-Value\t\\r\\n\tB-Code_Block\ninstead\tO\tinstead\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47030828\tO\t47030828\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47030828/\tO\thttps://stackoverflow.com/questions/47030828/\tO\n\t\n\t\nI\tO\tI\tO\nrecently\tO\trecently\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nLayoutManager\tB-Library_Function\tLayoutManager\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nin\tO\tin\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nRecyclerView\tB-Library_Class\tRecyclerView\tO\n,\tO\t,\tO\none\tO\tone\tO\nfrom\tO\tfrom\tO\nnative\tO\tnative\tO\nAndroid\tB-Operating_System\tAndroid\tO\nand\tO\tand\tO\none\tO\tone\tO\nfrom\tO\tfrom\tO\nLeanback\tB-Library\tLeanback\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nfrom\tO\tfrom\tO\nleanback\tB-Library\tleanback\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nmaintain\tO\tmaintain\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfocused\tO\tfocused\tO\nelement\tO\telement\tO\nfixed\tO\tfixed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmiddle\tO\tmiddle\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscreen\tB-Device\tscreen\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\nlayout\tO\tlayout\tO\nto\tO\tto\tO\nstack\tO\tstack\tO\nfrom\tO\tfrom\tO\nend\tO\tend\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\ndirection\tO\tdirection\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nscroll\tO\tscroll\tO\nto\tO\tto\tO\nleft\tO\tleft\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nright\tO\tright\tO\nscrolling\tO\tscrolling\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\nlibrary\tO\tlibrary\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nmethods\tO\tmethods\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nsetStackFromEnd(true)\tB-Library_Function\tsetStackFromEnd(true)\tO\nor\tO\tor\tO\nsetReverseLayout(true)\tB-Library_Function\tsetReverseLayout(true)\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\nfrom\tO\tfrom\tO\nLeanback\tB-Library\tLeanback\tO\nLayoutManager\tB-Library_Function\tLayoutManager\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nYou\tO\tYou\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4390141\tO\t4390141\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4390141/\tO\thttps://stackoverflow.com/questions/4390141/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nreading\tO\treading\tO\nan\tO\tan\tO\narticle\tO\tarticle\tO\nlinked\tO\tlinked\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nslashdot\tB-Website\tslashdot\tO\nstory\tO\tstory\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncame\tO\tcame\tO\nacross\tO\tacross\tO\nthis\tO\tthis\tO\nlittle\tO\tlittle\tO\ntidbit\tO\ttidbit\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nscoured\tO\tscoured\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\n(\tO\t(\tO\nokay\tO\tokay\tO\n,\tO\t,\tO\nI\tO\tI\tO\nspent\tO\tspent\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n15\tO\t15\tO\nminutes\tO\tminutes\tO\ngoogling\tO\tgoogling\tO\nvariations\tO\tvariations\tO\non\tO\ton\tO\n\"\tO\t\"\tO\njava\tB-Language\tjava\tO\nquestion\tO\tquestion\tO\nmark\tO\tmark\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\nand\tO\tand\tO\ngot\tO\tgot\tO\nnothing\tO\tnothing\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nofficial\tO\tofficial\tO\ndocumentation\tO\tdocumentation\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nC#\tB-Language\tC#\tO\nhas\tO\thas\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\noperator\tO\toperator\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\n?\tB-Code_Block\t?\tO\n?\tI-Code_Block\t?\tO\n\"\tO\t\"\tO\noperator\tO\toperator\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlanguage\tO\tlanguage\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nternary\tO\tternary\tO\noperator\tO\toperator\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnever\tO\tnever\tO\nseen\tO\tseen\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nLink\tO\tLink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\narticle\tO\tarticle\tO\n:\tO\t:\tO\nhttp://infoworld.com/d/developer-world/12-programming-mistakes-avoid-292\tO\thttp://infoworld.com/d/developer-world/12-programming-mistakes-avoid-292\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4390141\tO\t4390141\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4390141/\tO\thttps://stackoverflow.com/questions/4390141/\tO\n\t\n\t\nThe\tO\tThe\tO\noriginal\tO\toriginal\tO\nidea\tO\tidea\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\ngroovy\tB-Language\tgroovy\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwas\tO\twas\tO\nproposed\tO\tproposed\tO\nfor\tO\tfor\tO\nJava\tB-Language\tJava\tO\n7\tB-Version\t7\tO\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nProject\tO\tProject\tO\nCoin\tO\tCoin\tO\n:\tO\t:\tO\nhttps://wiki.openjdk.java.net/display/Coin/2009+Proposals+TOC\tO\thttps://wiki.openjdk.java.net/display/Coin/2009+Proposals+TOC\tO\n(\tO\t(\tO\nElvis\tO\tElvis\tO\nand\tO\tand\tO\nOther\tO\tOther\tO\nNull-Safe\tO\tNull-Safe\tO\nOperators\tO\tOperators\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhas\tO\thas\tO\nn't\tO\tn't\tO\nbeen\tO\tbeen\tO\naccepted\tO\taccepted\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrelated\tO\trelated\tO\nElvis\tO\tElvis\tO\noperator\tO\toperator\tO\n?\tB-Code_Block\t?\tO\n:\tI-Code_Block\t:\tO\nwas\tO\twas\tO\nproposed\tO\tproposed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nx\tB-Code_Block\tx\tO\n?\tI-Code_Block\t?\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ny\tI-Code_Block\ty\tI-Code_Block\nshorthand\tO\tshorthand\tO\nfor\tO\tfor\tO\nx\tB-Code_Block\tx\tO\n!=\tI-Code_Block\t!=\tB-Code_Block\nnull\tI-Code_Block\tnull\tI-Code_Block\n?\tI-Code_Block\t?\tI-Code_Block\nx\tI-Code_Block\tx\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ny\tI-Code_Block\ty\tI-Code_Block\n,\tO\t,\tI-Code_Block\nespecially\tO\tespecially\tO\nuseful\tO\tuseful\tO\nwhen\tO\twhen\tO\nx\tB-Variable_Name\tx\tO\nis\tO\tis\tO\na\tO\ta\tO\ncomplex\tO\tcomplex\tO\nexpression\tO\texpression\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4390141\tO\t4390141\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4390141/\tO\thttps://stackoverflow.com/questions/4390141/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\neven\tO\teven\tO\nwork\tO\twork\tO\n;\tO\t;\tO\nif\tO\tif\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nperson\tO\tperson\tO\nreference\tO\treference\tO\nwas\tO\twas\tO\nnull\tB-Value\tnull\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nwould\tO\twould\tO\nthe\tO\tthe\tO\nruntime\tO\truntime\tO\nreplace\tO\treplace\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n?\tO\t?\tO\n\t\nA\tO\tA\tO\nnew\tO\tnew\tO\nPerson\tB-Class_Name\tPerson\tO\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nwould\tO\twould\tO\nrequire\tO\trequire\tO\nthe\tO\tthe\tO\nPerson\tB-Class_Name\tPerson\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\ndefault\tO\tdefault\tO\ninitialization\tO\tinitialization\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nexpect\tO\texpect\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\navoid\tO\tavoid\tO\nnull\tB-Error_Name\tnull\tO\nreference\tI-Error_Name\treference\tO\nexceptions\tI-Error_Name\texceptions\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nstill\tO\tstill\tO\nget\tO\tget\tO\nunpredictable\tO\tunpredictable\tO\nbehavior\tO\tbehavior\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nplan\tO\tplan\tO\nfor\tO\tfor\tO\nthese\tO\tthese\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nsetups\tO\tsetups\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n?\tB-Code_Block\t?\tO\n?\tI-Code_Block\t?\tO\n\t\noperator\tO\toperator\tO\nin\tO\tin\tO\nC#\tB-Language\tC#\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nbest\tO\tbest\tO\ntermed\tO\ttermed\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\ncoalesce\tO\tcoalesce\tO\n\"\tO\t\"\tO\noperator\tO\toperator\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchain\tO\tchain\tO\nseveral\tO\tseveral\tO\nexpressions\tO\texpressions\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nnull\tB-Value\tnull\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nJava\tB-Language\tJava\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nternary\tO\tternary\tO\noperator\tO\toperator\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nnull\tB-Value\tnull\tO\nchecks\tO\tchecks\tO\nand\tO\tand\tO\nevaluate\tO\tevaluate\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nexpression\tO\texpression\tO\nif\tO\tif\tO\nany\tO\tany\tO\nmember\tO\tmember\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nchain\tO\tchain\tO\nis\tO\tis\tO\nnull\tB-Value\tnull\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_460\tI-Code_Block\tA_460\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\ntry-catch\tB-Code_Block\ttry-catch\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_461\tI-Code_Block\tA_461\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32510600\tO\t32510600\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32510600/\tO\thttps://stackoverflow.com/questions/32510600/\tO\n\t\n\t\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\nmade\tO\tmade\tO\non\tO\ton\tO\nlocalhost\tO\tlocalhost\tO\nrails4-application\tO\trails4-application\tO\nand\tO\tand\tO\npush\tO\tpush\tO\nhim\tO\thim\tO\non\tO\ton\tO\ngithub\tB-Website\tgithub\tO\n.\tO\t.\tO\n\t\nafter\tO\tafter\tO\ni\tO\ti\tO\ncreate\tO\tcreate\tO\naccount\tO\taccount\tO\non\tO\ton\tO\nheroku\tB-Application\theroku\tO\nand\tO\tand\tO\nconnected\tO\tconnected\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ngithub-repository\tO\tgithub-repository\tO\nand\tO\tand\tO\nstarting\tO\tstarting\tO\nmanual\tO\tmanual\tO\ndeploy\tO\tdeploy\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nresult\tO\tresult\tO\ni\tO\ti\tO\nget\tO\tget\tO\nfollow\tO\tfollow\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3943\tI-Code_Block\tQ_3943\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nsolutions\tO\tsolutions\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\ntopic\tO\ttopic\tO\n:\tO\t:\tO\nheroku\tB-Application\theroku\tO\npush\tO\tpush\tO\nrejected\tO\trejected\tO\n,\tO\t,\tO\nfailed\tO\tfailed\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nRuby/rails\tB-Language\tRuby/rails\tO\napp\tO\tapp\tO\n\t\nbut\tO\tbut\tO\nthey\tO\tthey\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32510600\tO\t32510600\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32510600/\tO\thttps://stackoverflow.com/questions/32510600/\tO\n\t\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\ndebugger\tB-Application\tdebugger\tO\ngem\tB-File_Type\tgem\tO\non\tO\ton\tO\nHeroku\tB-Application\tHeroku\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nPut\tO\tPut\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndevelopment\tB-Value\tdevelopment\tB-Code_Block\ngroup\tO\tgroup\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ngem\tB-File_Type\tgem\tO\nfile\tO\tfile\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\ndevelopment\tO\tdevelopment\tO\nenvironment\tO\tenvironment\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\ndeployed\tO\tdeployed\tO\nin\tO\tin\tO\nproduction\tO\tproduction\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4644\tI-Code_Block\tA_4644\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSee\tO\tSee\tO\nhttps://devcenter.heroku.com/articles/ruby-support#debugger-gems-fail-to-install\tO\thttps://devcenter.heroku.com/articles/ruby-support#debugger-gems-fail-to-install\tO\nfor\tO\tfor\tO\nfurther\tO\tfurther\tO\nexplanation\tO\texplanation\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38980946\tO\t38980946\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38980946/\tO\thttps://stackoverflow.com/questions/38980946/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nCodeIgniter\tB-Library\tCodeIgniter\tO\nand\tO\tand\tO\nsqlserver\tB-Application\tsqlserver\tO\n2008\tB-Version\t2008\tO\nI\tO\tI\tO\nupdated\tO\tupdated\tO\nmy\tO\tmy\tO\npc\tB-Device\tpc\tO\nto\tO\tto\tO\nwindows\tB-Operating_System\twindows\tO\n10\tB-Version\t10\tO\nthen\tO\tthen\tO\nstopped\tO\tstopped\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsqlserver\tB-Application\tsqlserver\tO\ndriver\tI-Application\tdriver\tO\nfor\tO\tfor\tO\nphp\tB-Language\tphp\tO\nis\tO\tis\tO\nconfigured\tO\tconfigured\tO\nand\tO\tand\tO\nmy\tO\tmy\tO\nphp\tB-Language\tphp\tO\nini\tB-File_Type\tini\tO\nshows\tO\tshows\tO\nit\tO\tit\tO\n,\tO\t,\tO\nalso\tO\talso\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nconnects\tO\tconnects\tO\nto\tO\tto\tO\nsql\tB-Application\tsql\tO\nserver\tI-Application\tserver\tO\nbut\tO\tbut\tO\nnow\tO\tnow\tO\nwhen\tO\twhen\tO\nim\tO\tim\tO\ntriying\tO\ttriying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nit\tO\tit\tO\ngivme\tO\tgivme\tO\nfalse\tO\tfalse\tO\n\t\nso\tO\tso\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4906\tI-Code_Block\tQ_4906\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlways\tO\tAlways\tO\nits\tO\tits\tO\nlike\tO\tlike\tO\nsqlserver\tB-Application\tsqlserver\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nanymore\tO\tanymore\tO\nbut\tO\tbut\tO\ncannot\tO\tcannot\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPhp\tB-Language\tPhp\tO\ninfo\tO\tinfo\tO\nshows\tO\tshows\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4907\tI-Code_Block\tQ_4907\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nits\tO\tits\tO\nmy\tO\tmy\tO\nmistake\tO\tmistake\tO\ncannot\tO\tcannot\tO\nconect\tO\tconect\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4908\tI-Code_Block\tQ_4908\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nconfig\tB-File_Type\tconfig\tO\nits\tO\tits\tO\nokay\tO\tokay\tO\n:S\tO\t:S\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38980946\tO\t38980946\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38980946/\tO\thttps://stackoverflow.com/questions/38980946/\tO\n\t\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nwasnt\tO\twasnt\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nconfig\tB-File_Type\tconfig\tO\n,\tO\t,\tO\nwas\tO\twas\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npassword\tO\tpassword\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nexpired\tO\texpired\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncode\tB-Library\tcode\tO\nigniter\tI-Library\tigniter\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nshowing\tO\tshowing\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nbecouse\tO\tbecouse\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nactive\tO\tactive\tO\nthis\tO\tthis\tO\nconfig\tB-File_Type\tconfig\tO\n:\tO\t:\tO\n\t\ndatabase.php\tB-File_Name\tdatabase.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5643\tI-Code_Block\tA_5643\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSolved\tO\tSolved\tO\n;)\tO\t;)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35695507\tO\t35695507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35695507/\tO\thttps://stackoverflow.com/questions/35695507/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\ngit\tB-Application\tgit\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ntutorial\tO\ttutorial\tO\n(\tO\t(\tO\nhttps://www.atlassian.com/git/tutorials/setting-up-a-repository/git-clone\tO\thttps://www.atlassian.com/git/tutorials/setting-up-a-repository/git-clone\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\ngit\tB-Code_Block\tgit\tO\nconfig\tI-Code_Block\tconfig\tO\n--global\tI-Code_Block\t--global\tO\nalias\tI-Code_Block\talias\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\ntutorial\tO\ttutorial\tO\ni\tO\ti\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nshortcut\tO\tshortcut\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nGit\tB-Application\tGit\tO\ncommand\tO\tcommand\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nsyntax\tO\tsyntax\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nprovide\tO\tprovide\tO\nme\tO\tme\tO\na\tO\ta\tO\nworking\tO\tworking\tO\nexample\tO\texample\tO\nfor\tO\tfor\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nshortcut\tO\tshortcut\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngit\tB-Application\tgit\tO\ncommand\tO\tcommand\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nequal\tO\tequal\tO\nsynatax\tO\tsynatax\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nsyntax\tO\tsyntax\tO\ndidnt\tO\tdidnt\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35695507\tO\t35695507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35695507/\tO\thttps://stackoverflow.com/questions/35695507/\tO\n\t\n\t\nThe\tO\tThe\tO\naliases\tO\taliases\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narticle\tO\tarticle\tO\nare\tO\tare\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5095\tI-Code_Block\tA_5095\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThey\tO\tThey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5096\tI-Code_Block\tA_5096\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35695507\tO\t35695507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35695507/\tO\thttps://stackoverflow.com/questions/35695507/\tO\n\t\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nreading\tO\treading\tO\nit\tO\tit\tO\ntoo\tO\ttoo\tO\nliterally\tO\tliterally\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nyour\tO\tyour\tO\nfault\tO\tfault\tO\n;\tO\t;\tO\nthe\tO\tthe\tO\ninstructions\tO\tinstructions\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nexplain\tO\texplain\tO\nits\tO\tits\tO\nown\tO\town\tO\nsyntax\tO\tsyntax\tO\nvery\tO\tvery\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5098\tI-Code_Block\tA_5098\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNotice\tO\tNotice\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\nwrite\tO\twrite\tO\n\"\tO\t\"\tO\nalias.<alias>\tB-Code_Block\talias.<alias>\tB-Code_Block\n\"\tO\t\"\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nwhole\tO\twhole\tO\npurpose\tO\tpurpose\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nconfig\tB-Code_Block\tconfig\tO\ncommand\tO\tcommand\tO\nis\tO\tis\tO\nto\tO\tto\tO\nactually\tO\tactually\tO\nconfigure\tO\tconfigure\tO\nhow\tO\thow\tO\ngit\tB-Application\tgit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npoint\tO\tpoint\tO\nof\tO\tof\tO\nalias\tO\talias\tO\nis\tO\tis\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nall\tO\tall\tO\nyour\tO\tyour\tO\ncommands\tO\tcommands\tO\nlike\tO\tlike\tO\nconfig\tB-Code_Block\tconfig\tO\n,\tO\t,\tO\nhelp\tB-Code_Block\thelp\tO\n,\tO\t,\tO\ninit\tB-Code_Block\tinit\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\nnew\tO\tnew\tO\nways\tO\tways\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nupon\tO\tupon\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntyped\tO\ttyped\tO\nright\tO\tright\tO\nnext\tO\tnext\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nalias\tB-Code_Block\talias\tB-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n\"\tO\t\"\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nthe\tO\tthe\tO\nNEW\tO\tNEW\tO\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nspace\tO\tspace\tO\naway\tO\taway\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nsays\tO\tsays\tO\n\"\tO\t\"\tO\nhelp\tB-Code_Block\thelp\tB-Code_Block\n\"\tO\t\"\tO\nI\tO\tI\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\nalias\tO\talias\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nbasically\tO\tbasically\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nhelp\tB-Code_Block\thelp\tB-Code_Block\n\"\tO\t\"\tO\ncommand\tO\tcommand\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nby\tO\tby\tO\ntyping\tO\ttyping\tO\n\"\tO\t\"\tO\nhp\tB-Code_Block\thp\tB-Code_Block\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nliterally\tO\tliterally\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\ncode\tO\tcode\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5099\tI-Code_Block\tA_5099\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nwrite\tO\twrite\tO\nIMABigBaboon\tO\tIMABigBaboon\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ninit\tB-Code_Block\tinit\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nit\tO\tit\tO\n!\tO\t!\tO\n\t\nJust\tO\tJust\tO\nbe\tO\tbe\tO\ncareful\tO\tcareful\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nname\tO\tname\tO\ntwo\tO\ttwo\tO\ncommands\tO\tcommands\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nyou\tO\tyou\tO\nwind\tO\twind\tO\nup\tO\tup\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nalias\tO\talias\tO\n.\tO\t.\tO\n\t\nRemember\tO\tRemember\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\none\tO\tone\tO\nalias\tO\talias\tO\nfor\tO\tfor\tO\none\tO\tone\tO\ncommand\tO\tcommand\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41944911\tO\t41944911\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41944911/\tO\thttps://stackoverflow.com/questions/41944911/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\nWhich\tO\tWhich\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nbetween\tO\tbetween\tO\nusing\tO\tusing\tO\nNotificationCenter\tB-Library_Class\tNotificationCenter\tB-Code_Block\nand\tO\tand\tO\nusing\tO\tusing\tO\nClosures\tO\tClosures\tB-Code_Block\nto\tO\tto\tO\ncommunicate\tO\tcommunicate\tO\nbetween\tO\tbetween\tO\ntwo\tO\ttwo\tO\ninstances\tO\tinstances\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nsimilar\tO\tsimilar\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n?\tO\t?\tO\n\t\nHopefully\tO\tHopefully\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nhelps\tO\thelps\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nbetter\tO\tbetter\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\ntake\tO\ttake\tO\nURLSession\tB-Library_Class\tURLSession\tB-Code_Block\nclass\tO\tclass\tO\nas\tO\tas\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nits\tO\tits\tO\nmethods\tO\tmethods\tO\nhave\tO\thave\tO\na\tO\ta\tO\nclosure\tO\tclosure\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nthey\tO\tthey\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\nwith\tO\twith\tO\nData\tB-Library_Class\tData\tB-Code_Block\n,\tO\t,\tI-Code_Block\nResponse\tB-Library_Class\tResponse\tI-Code_Block\n,\tO\t,\tI-Code_Block\nand\tO\tand\tI-Code_Block\nError\tB-Library_Class\tError\tI-Code_Block\ninside\tO\tinside\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nI\tO\tI\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nin\tO\tin\tO\nwhat\tO\twhat\tO\nsituations\tO\tsituations\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\neach\tO\teach\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41944911\tO\t41944911\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41944911/\tO\thttps://stackoverflow.com/questions/41944911/\tO\n\t\n\t\nIn\tO\tIn\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\nthe\tO\tthe\tO\npatterns\tO\tpatterns\tO\nare\tO\tare\tO\ninterchangeable\tO\tinterchangeable\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n:\tO\t:\tO\n\t\nUsing\tO\tUsing\tO\na\tO\ta\tO\nclosure\tO\tclosure\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nsimple\tO\tsimple\tO\ncases\tO\tcases\tO\n\t\nUsing\tO\tUsing\tO\na\tO\ta\tO\ndelegate\tO\tdelegate\tO\nis\tO\tis\tO\ncommon\tO\tcommon\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\ncomplex\tO\tcomplex\tO\ncommunication\tO\tcommunication\tO\nbetween\tO\tbetween\tO\ntwo\tO\ttwo\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\ndelegate\tO\tdelegate\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\nthan\tO\tthan\tO\nmany\tO\tmany\tO\nclosures\tO\tclosures\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nnotifications\tO\tnotifications\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nobservers\tO\tobservers\tO\nor\tO\tor\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nobjects\tO\tobjects\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nobserving\tO\tobserving\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nasking\tO\tasking\tO\nyourself\tO\tyourself\tO\nwhy\tO\twhy\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nclosures\tO\tclosures\tO\nfor\tO\tfor\tO\nsimple\tO\tsimple\tO\ncases\tO\tcases\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\ndelegates\tO\tdelegates\tO\nor\tO\tor\tO\nnotifications\tO\tnotifications\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nclosures\tO\tclosures\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nlightweight\tO\tlightweight\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nare\tO\tare\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\npositively\tO\tpositively\tO\naffect\tO\taffect\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nquality\tO\tquality\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\nconsider\tO\tconsider\tO\na\tO\ta\tO\ncompletion\tO\tcompletion\tO\ncallback\tO\tcallback\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndecide\tO\tdecide\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nanother\tO\tanother\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nhandle\tO\thandle\tO\nthat\tO\tthat\tO\nnotification\tO\tnotification\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsame\tO\tsame\tO\nis\tO\tis\tO\nvalid\tO\tvalid\tO\nfor\tO\tfor\tO\ndelegates\tO\tdelegates\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\ncontext\tO\tcontext\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nthat\tO\tthat\tO\ntriggered\tO\ttriggered\tO\nthe\tO\tthe\tO\nactions\tO\tactions\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nhand\tO\thand\tO\n,\tO\t,\tO\na\tO\ta\tO\nclosure\tO\tclosure\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\ninline\tO\tinline\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\ntriggers\tO\ttriggers\tO\nthe\tO\tthe\tO\naction\tO\taction\tO\nand\tO\tand\tO\nhandles\tO\thandles\tO\nits\tO\tits\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nat\tO\tat\tO\none\tO\tone\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nreally\tO\treally\tO\nsimplifies\tO\tsimplifies\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nclosure\tO\tclosure\tO\nneeds\tO\tneeds\tO\nsome\tO\tsome\tO\ncontext\tO\tcontext\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ncapture\tO\tcapture\tO\nit\tO\tit\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nadditional\tO\tadditional\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48920728\tO\t48920728\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48920728/\tO\thttps://stackoverflow.com/questions/48920728/\tO\n\t\n\t\nHere\tO\tHere\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nwhich\tO\twhich\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nin\tO\tin\tO\ndata\tB-Variable_Name\tdata\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nso\tO\tso\tO\nI\tO\tI\tO\ngave\tO\tgave\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6522\tI-Code_Block\tQ_6522\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\ncontroller\tO\tcontroller\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6523\tI-Code_Block\tQ_6523\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\npass\tO\tpass\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nerror\tO\terror\tO\nlike\tO\tlike\tO\nundefined\tB-Error_Name\tundefined\tB-Code_Block\nindex\tI-Error_Name\tindex\tI-Code_Block\ndata\tI-Error_Name\tdata\tI-Code_Block\nin\tO\tin\tO\nconsole\tB-Application\tconsole\tO\n\t\nMy\tO\tMy\tO\ntoPost\tB-Variable_Name\ttoPost\tB-Code_Block\nvariable\tO\tvariable\tO\ncontains\tO\tcontains\tO\nvalue\tO\tvalue\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6524\tI-Code_Block\tQ_6524\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48920728\tO\t48920728\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48920728/\tO\thttps://stackoverflow.com/questions/48920728/\tO\n\t\n\t\nIf\tO\tIf\tO\nsubmit_data\tB-Variable_Name\tsubmit_data\tO\nreferred\tO\treferred\tO\nhere\tO\there\tO\nis\tO\tis\tO\na\tO\ta\tO\nform\tO\tform\tO\nfield\tO\tfield\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7169\tI-Code_Block\tA_7169\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\nget\tO\tget\tO\ndata\tB-Variable_Name\tdata\tO\nby\tO\tby\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7170\tI-Code_Block\tA_7170\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48920728\tO\t48920728\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48920728/\tO\thttps://stackoverflow.com/questions/48920728/\tO\n\t\n\t\nSerialization\tO\tSerialization\tO\nbasically\tO\tbasically\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7171\tI-Code_Block\tA_7171\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nfield_name_1\tB-Code_Block\tfield_name_1\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nfield_value_1&field_name_2\tI-Code_Block\tfield_value_1&field_name_2\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nfield_value_2\tI-Code_Block\tfield_value_2\tI-Code_Block\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nmanually\tO\tmanually\tO\nbuild\tO\tbuild\tO\nthat\tO\tthat\tO\n^\tB-Code_Block\t^\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nvariables\tO\tvariables\tO\nthat\tO\tthat\tO\nexist\tO\texist\tO\nvia\tO\tvia\tO\npost\tO\tpost\tO\nbecome\tO\tbecome\tO\n$_POST['field_name_1']\tB-Code_Block\t$_POST['field_name_1']\tB-Code_Block\nand\tO\tand\tO\n$_POST['field_name_2']\tB-Code_Block\t$_POST['field_name_2']\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nconfirm\tO\tconfirm\tO\nvia\tO\tvia\tO\nprint_r($_POST)\tB-Code_Block\tprint_r($_POST)\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\npost\tO\tpost\tO\nkeys\tO\tkeys\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nrow_selected\tB-Variable_Name\trow_selected\tB-Code_Block\ninto\tO\tinto\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nturn\tO\tturn\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nin\tO\tin\tO\nphp\tB-Language\tphp\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7172\tI-Code_Block\tA_7172\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nController\tO\tController\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7173\tI-Code_Block\tA_7173\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35352590\tO\t35352590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35352590/\tO\thttps://stackoverflow.com/questions/35352590/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nof\tO\tof\tO\nsome\tO\tsome\tO\ndirectory\tO\tdirectory\tO\npaths\tO\tpaths\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4336\tI-Code_Block\tQ_4336\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nall\tO\tall\tO\n.svn\tB-File_Type\t.svn\tB-Code_Block\nfolders\tO\tfolders\tO\nfrom\tO\tfrom\tO\nall\tO\tall\tO\nthis\tO\tthis\tO\ndirectories\tO\tdirectories\tO\nat\tO\tat\tO\nonce\tO\tonce\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nroot\tO\troot\tO\ndirectory\tO\tdirectory\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\ndeas\tO\tdeas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35352590\tO\t35352590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35352590/\tO\thttps://stackoverflow.com/questions/35352590/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5048\tI-Code_Block\tA_5048\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35352590\tO\t35352590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35352590/\tO\thttps://stackoverflow.com/questions/35352590/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\n(\tO\t(\tO\nadded\tO\tadded\tO\n-type\tB-Code_Block\t-type\tB-Code_Block\nd\tI-Code_Block\td\tI-Code_Block\nto\tO\tto\tO\nyour\tO\tyour\tO\nfind\tO\tfind\tO\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nget\tO\tget\tO\nfolders\tO\tfolders\tO\nonly\tO\tonly\tO\n)\tO\t)\tO\n\t\nrm\tB-Code_Block\trm\tB-Code_Block\n-rf\tI-Code_Block\t-rf\tI-Code_Block\n`find\tI-Code_Block\t`find\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n-type\tI-Code_Block\t-type\tI-Code_Block\nd\tI-Code_Block\td\tI-Code_Block\n-name\tI-Code_Block\t-name\tI-Code_Block\n.svn\tI-Code_Block\t.svn\tI-Code_Block\n`\tI-Code_Block\t`\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32720706\tO\t32720706\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32720706/\tO\thttps://stackoverflow.com/questions/32720706/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nDjango\tB-Library\tDjango\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\nPostgreSQL\tB-Application\tPostgreSQL\tO\n)\tO\t)\tO\nthat\tO\tthat\tO\nneeds\tO\tneeds\tO\na\tO\ta\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nnumeric(15,6)\tO\tnumeric(15,6)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nfinding\tO\tfinding\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32720706\tO\t32720706\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32720706/\tO\thttps://stackoverflow.com/questions/32720706/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nPostgreSQL\tB-Application\tPostgreSQL\tO\ndocs\tO\tdocs\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nDjango\tB-Library\tDjango\tO\n's\tO\t's\tO\nDecimalField\tB-Library_Class\tDecimalField\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4662\tI-Code_Block\tA_4662\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSome\tO\tSome\tO\ndocs\tO\tdocs\tO\n:\tO\t:\tO\n\t\nhttp://www.postgresql.org/docs/current/interactive/datatype-numeric.html#DATATYPE-NUMERIC-DECIMAL\tO\thttp://www.postgresql.org/docs/current/interactive/datatype-numeric.html#DATATYPE-NUMERIC-DECIMAL\tO\n\t\nhttps://docs.djangoproject.com/en/1.8/ref/forms/fields/#decimalfield\tO\thttps://docs.djangoproject.com/en/1.8/ref/forms/fields/#decimalfield\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34595415\tO\t34595415\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34595415/\tO\thttps://stackoverflow.com/questions/34595415/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nsimilar\tO\tsimilar\tO\nproblems\tO\tproblems\tO\nbut\tO\tbut\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nsolutions.MY\tO\tsolutions.MY\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\nsignup\tO\tsignup\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\nsaved\tO\tsaved\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nvisible\tO\tvisible\tO\nin\tO\tin\tO\ndjango\tB-Library\tdjango\tO\nadministration.But\tO\tadministration.But\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nhit\tO\thit\tO\nthe\tO\tthe\tO\nsignup\tO\tsignup\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nredirected\tO\tredirected\tO\nurl\tO\turl\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nforms.py\tB-File_Name\tforms.py\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4217\tI-Code_Block\tQ_4217\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nmy\tO\tmy\tO\nviews.py\tB-File_Name\tviews.py\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4218\tI-Code_Block\tQ_4218\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nmodels.py\tB-File_Name\tmodels.py\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4219\tI-Code_Block\tQ_4219\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\ni\tO\ti\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nat\tO\tat\tO\n\"mail_base,provider=email.split(\"@\")\"\tB-Code_Block\t\"mail_base,provider=email.split(\"@\")\"\tO\nin\tO\tin\tO\nforms.py.Please\tB-File_Name\tforms.py.Please\tO\nhelp\tO\thelp\tO\nme.\tO\tme.\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34595415\tO\t34595415\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34595415/\tO\thttps://stackoverflow.com/questions/34595415/\tO\n\t\n\t\nIf\tO\tIf\tO\nsomeone\tO\tsomeone\tO\nleaves\tO\tleaves\tO\nemail\tB-Library_Class\temail\tB-Code_Block\nfield\tI-Library_Class\tfield\tO\nblank\tO\tblank\tO\n(\tO\t(\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nallowed\tO\tallowed\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nSignUp\tO\tSignUp\tO\nmodel\tO\tmodel\tO\nemail\tB-Code_Block\temail\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nEmailField(blank=True))\tI-Code_Block\tEmailField(blank=True))\tI-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\nself.cleaned_data.get('email')\tB-Code_Block\tself.cleaned_data.get('email')\tB-Code_Block\nwill\tO\twill\tO\nreturn\tO\treturn\tO\n''\tB-Value\t''\tB-Code_Block\n(\tO\t(\tO\nempty\tO\tempty\tO\nstring\tB-Data_Type\tstring\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nmail_base\tB-Code_Block\tmail_base\tB-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nprovider\tI-Code_Block\tprovider\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nemail.split('@')\tI-Code_Block\temail.split('@')\tI-Code_Block\nwill\tO\twill\tO\nraise\tO\traise\tO\nthat\tO\tthat\tO\nexception\tB-Library_Class\texception\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34595415\tO\t34595415\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34595415/\tO\thttps://stackoverflow.com/questions/34595415/\tO\n\t\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nhappen\tO\thappen\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nemail\tB-Variable_Name\temail\tB-Code_Block\nstring\tB-Data_Type\tstring\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n,\tO\t,\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nan\tO\tan\tO\n'\tB-Value\t'\tO\n@\tI-Value\t@\tO\n'\tB-Value\t'\tO\nsymbol\tO\tsymbol\tO\nin\tO\tin\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nleads\tO\tleads\tO\nemail.split(\"@\")\tB-Code_Block\temail.split(\"@\")\tB-Code_Block\nto\tO\tto\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nlength\tO\tlength\tO\n1\tO\t1\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nlength\tO\tlength\tO\n2\tO\t2\tO\n,\tO\t,\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nwere\tO\twere\tO\nexpecting\tO\texpecting\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nblank\tO\tblank\tO\nemail\tB-Variable_Name\temail\tO\nsomewhere\tO\tsomewhere\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nany\tO\tany\tO\nemail\tB-Library_Class\temail\tB-Code_Block\nfield\tI-Library_Class\tfield\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nan\tO\tan\tO\n'\tB-Value\t'\tO\n@\tI-Value\t@\tO\n'\tB-Value\t'\tO\nsymbol\tO\tsymbol\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\nthis\tO\tthis\tO\nexception\tB-Library_Class\texception\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nraised\tO\traised\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2726352\tO\t2726352\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2726352/\tO\thttps://stackoverflow.com/questions/2726352/\tO\n\t\n\t\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nmultiple\tO\tmultiple\tO\njoins\tO\tjoins\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_175\tI-Code_Block\tQ_175\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nabove\tO\tabove\tO\nall\tO\tall\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\nuntil\tO\tuntil\tO\ni\tO\ti\tO\npress\tO\tpress\tO\n\"\tB-Value\t\"\tO\n.\tI-Value\t.\tO\n\"\tI-Value\t\"\tO\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n3rd\tO\t3rd\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nthere\tO\tthere\tO\ni\tO\ti\tO\nexpect\tO\texpect\tO\nto\tO\tto\tO\nget\tO\tget\tO\nintellisense\tO\tintellisense\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nu.Id\tB-Code_Block\tu.Id\tB-Code_Block\n==\tI-Code_Block\t==\tI-Code_Block\nug.UserId\tI-Code_Block\tug.UserId\tI-Code_Block\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nappear\tO\tappear\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ncompile\tO\tcompile\tO\nafter\tO\tafter\tO\n.\tO\t.\tO\n\t\nwhat\tO\twhat\tO\ndid\tO\tdid\tO\ni\tO\ti\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nANSWER\tO\tANSWER\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\naliases\tO\taliases\tO\nis\tO\tis\tO\nimportant\tO\timportant\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\ni\tO\ti\tO\n've\tO\t've\tO\nused\tO\tused\tO\nug.UserId\tB-Code_Block\tug.UserId\tB-Code_Block\nequals\tI-Code_Block\tequals\tI-Code_Block\nu.Id\tI-Code_Block\tu.Id\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2726352\tO\t2726352\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2726352/\tO\thttps://stackoverflow.com/questions/2726352/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nin\tO\tin\tO\nLINQ\tB-Library\tLINQ\tO\nto\tO\tto\tO\nSQL\tB-Language\tSQL\tO\n(\tO\t(\tO\nNorthwind\tB-Application\tNorthwind\tO\ndatabase\tI-Application\tdatabase\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_263\tI-Code_Block\tA_263\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25197614\tO\t25197614\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25197614/\tO\thttps://stackoverflow.com/questions/25197614/\tO\n\t\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\na\tO\ta\tO\nquery\tO\tquery\tO\non\tO\ton\tO\na\tO\ta\tO\n.sql\tB-File_Type\t.sql\tO\ndump\tO\tdump\tO\nfile\tO\tfile\tO\nwithout\tO\twithout\tO\nimporting\tO\timporting\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n?\tO\t?\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\nstuff.sql\tB-File_Name\tstuff.sql\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2859\tI-Code_Block\tQ_2859\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nexecute\tO\texecute\tO\nsome\tO\tsome\tO\nSELECT\tB-Code_Block\tSELECT\tB-Code_Block\nStatement\tO\tStatement\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\noptions\tO\toptions\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nSure\tO\tSure\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\ndump\tO\tdump\tO\nin\tO\tin\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nDB\tO\tDB\tO\n,\tO\t,\tO\nexecute\tO\texecute\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n,\tO\t,\tO\ndump\tO\tdump\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\nand\tO\tand\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\nDB\tO\tDB\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nwith\tO\twith\tO\nless\tO\tless\tO\noverhead\tO\toverhead\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25197614\tO\t25197614\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25197614/\tO\thttps://stackoverflow.com/questions/25197614/\tO\n\t\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3468\tI-Code_Block\tA_3468\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25197614\tO\t25197614\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25197614/\tO\thttps://stackoverflow.com/questions/25197614/\tO\n\t\n\t\nNot\tO\tNot\tO\nwithout\tO\twithout\tO\nimporting\tO\timporting\tO\nat\tO\tat\tO\nall\tO\tall\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndont\tO\tdont\tO\nthink\tO\tthink\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nother\tO\tother\tO\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nimport\tO\timport\tO\nyour\tO\tyour\tO\nSQL\tB-File_Type\tSQL\tO\ndump\tO\tdump\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ntemporary\tO\ttemporary\tO\nmemory-only\tO\tmemory-only\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nSQLite\tB-Library\tSQLite\tO\n:MEMORY\tB-Code_Block\t:MEMORY\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ndatabase\tO\tdatabase\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nsql\tB-Language\tsql\tO\nis\tO\tis\tO\ncompatible\tO\tcompatible\tO\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nEngine\tB-Code_Block\tEngine\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nMEMORY\tI-Code_Block\tMEMORY\tI-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\nEngine\tB-Code_Block\tEngine\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nHEAP\tI-Code_Block\tHEAP\tI-Code_Block\nfor\tO\tfor\tO\nolder\tO\tolder\tO\nversions\tO\tversions\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nMySQL\tB-Application\tMySQL\tO\n\"\tO\t\"\tO\ncreate\tB-Code_Block\tcreate\tB-Code_Block\ntable\tI-Code_Block\ttable\tI-Code_Block\n\"\tO\t\"\tO\nDDL\tO\tDDL\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nmemory\tO\tmemory\tO\ntable\tB-Data_Structure\ttable\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\ndb\tO\tdb\tO\n(\tO\t(\tO\nYou\tO\tYou\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nEngine\tB-Code_Block\tEngine\tO\n=\tI-Code_Block\t=\tO\nINNODB\tI-Code_Block\tINNODB\tO\nor\tO\tor\tO\nEngine\tB-Code_Block\tEngine\tO\n=\tI-Code_Block\t=\tO\nMyISAM\tI-Code_Block\tMyISAM\tO\nwith\tO\twith\tO\nMEMORY\tB-Code_Block\tMEMORY\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ndump\tO\tdump\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nimport\tO\timport\tO\nit\tO\tit\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSame\tO\tSame\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nObviously\tO\tObviously\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\na\tO\ta\tO\n1TB\tO\t1TB\tO\nDatabase\tO\tDatabase\tO\nwould\tO\twould\tO\nprobably\tO\tprobably\tO\nprove\tO\tprove\tO\nimpractical\tO\timpractical\tO\nto\tO\tto\tO\nimport\tO\timport\tO\ninto\tO\tinto\tO\nRAM\tB-Device\tRAM\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26004396\tO\t26004396\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26004396/\tO\thttps://stackoverflow.com/questions/26004396/\tO\n\t\n\t\nEdit\tO\tEdit\tO\n(\tO\t(\tO\nsolution\tO\tsolution\tO\n?\tO\t?\tO\n\t\n)\tO\t)\tO\n:\tO\t:\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nconverting\tO\tconverting\tO\nmy\tO\tmy\tO\narrays\tB-Data_Structure\tarrays\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nand\tO\tand\tO\nparsing\tO\tparsing\tO\nthrough\tO\tthrough\tO\nand\tO\tand\tO\nrecreating\tO\trecreating\tO\nthem\tO\tthem\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nend\tO\tend\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\nhas\tO\thas\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nappreciate\tO\tappreciate\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nOriginal\tO\tOriginal\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nthat\tO\tthat\tO\nextends\tO\textends\tO\nMPxCommand\tB-Library_Class\tMPxCommand\tB-Code_Block\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nplug-in\tB-Application\tplug-in\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nthe\tO\tthe\tO\nMArgList\tB-Library_Class\tMArgList\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ndoIt()\tB-Library_Function\tdoIt()\tB-Code_Block\nfunction\tO\tfunction\tO\nto\tO\tto\tO\npull\tO\tpull\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nlists\tB-Data_Structure\tlists\tO\nfrom\tO\tfrom\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nargs\tB-Variable_Name\targs\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\npull\tO\tpull\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nstrings\tB-Data_Type\tstrings\tO\nand\tO\tand\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nints\tB-Data_Type\tints\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nan\tO\tan\tO\ninconsistent\tO\tinconsistent\tO\nlength\tO\tlength\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\n(\tO\t(\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\n)\tO\t)\tO\nfill\tO\tfill\tO\nthe\tO\tthe\tO\nflag\tO\tflag\tO\nmultiple\tO\tmultiple\tO\ntimes\tO\ttimes\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nhad\tO\thad\tO\nsuccess\tO\tsuccess\tO\npulling\tO\tpulling\tO\nindividual\tO\tindividual\tO\nvariables\tO\tvariables\tO\nwith\tO\twith\tO\nMArgParser\tB-Library_Function\tMArgParser\tB-Code_Block\nbut\tO\tbut\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\npull\tO\tpull\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nMArgList\tB-Library_Class\tMArgList\tB-Code_Block\nappears\tO\tappears\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nasStringArray(index)\tB-Library_Function\tasStringArray(index)\tB-Code_Block\nand\tO\tand\tO\nasIntArray(index)\tB-Library_Function\tasIntArray(index)\tB-Code_Block\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\nthem\tO\tthem\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2977\tI-Code_Block\tQ_2977\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2978\tI-Code_Block\tQ_2978\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nput\tO\tput\tO\n\"\tB-Value\t\"\tO\nhello\tI-Value\thello\tO\n\"\tI-Value\t\"\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nargs\tB-Variable_Name\targs\tB-Code_Block\ninto\tO\tinto\tO\nself.myStr\tB-Variable_Name\tself.myStr\tB-Code_Block\nif\tO\tif\tO\nI\tO\tI\tO\nrun\tO\trun\tO\ncmds.myCommand\tB-Code_Block\tcmds.myCommand\tB-Code_Block\n(\tB-Code_Block\t(\tB-Code_Block\ns\tI-Code_Block\ts\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nhello\tI-Code_Block\thello\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nrun\tO\trun\tO\ncmds.myCommand\tB-Code_Block\tcmds.myCommand\tB-Code_Block\n(\tB-Code_Block\t(\tB-Code_Block\ns\tI-Code_Block\ts\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n[\tI-Code_Block\t[\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nhello\tI-Code_Block\thello\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nworld\tI-Code_Block\tworld\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nand\tO\tand\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\narray\tO\tarray\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nargs\tB-Variable_Name\targs\tB-Code_Block\nvariable\tO\tvariable\tO\nand\tO\tand\tO\nput\tO\tput\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nself.myStr\tB-Variable_Name\tself.myStr\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthat\tO\tthat\tO\nclears\tO\tclears\tO\nup\tO\tup\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26004396\tO\t26004396\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26004396/\tO\thttps://stackoverflow.com/questions/26004396/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndeclaration\tO\tdeclaration\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4445\tI-Code_Block\tA_4445\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nint\tB-Data_Type\tint\tB-Code_Block\n&\tI-Data_Type\t&\tI-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nan\tO\tan\tO\nint\tB-Data_Type\tint\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nan\tO\tan\tO\nint\tB-Data_Type\tint\tO\nyou\tO\tyou\tO\ngive\tO\tgive\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nvariable\tO\tvariable\tO\nwill\tO\twill\tO\nreflect\tO\treflect\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmaybe\tO\tmaybe\tO\nyou\tO\tyou\tO\nalready\tO\talready\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\n:\tO\t:\tO\npassing\tO\tpassing\tO\na\tO\ta\tO\nconstant\tO\tconstant\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\ninto\tO\tinto\tO\npython\tB-Language\tpython\tO\nat\tO\tat\tO\nall\tO\tall\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nsufficient\tO\tsufficient\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\ndeclare\tO\tdeclare\tO\nan\tO\tan\tO\nint\tB-Data_Type\tint\tO\n,\tO\t,\tO\ninitialize\tO\tinitialize\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\npass\tO\tpass\tO\nit\tO\tit\tO\nas\tO\tas\tO\nargument\tO\targument\tO\n2\tO\t2\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4130263\tO\t4130263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4130263/\tO\thttps://stackoverflow.com/questions/4130263/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nimplemented\tO\timplemented\tO\nan\tO\tan\tO\nOpenID\tO\tOpenID\tO\nIdP\tO\tIdP\tO\nand\tO\tand\tO\nan\tO\tan\tO\nRP\tO\tRP\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking-\tO\tworking-\tO\n-\tO\t-\tO\nthe\tO\tthe\tO\nRP\tO\tRP\tO\nis\tO\tis\tO\ncontacting\tO\tcontacting\tO\nthe\tO\tthe\tO\nIdP\tO\tIdP\tO\nand\tO\tand\tO\nis\tO\tis\tO\nredirecting\tO\tredirecting\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nIdP\tO\tIdP\tO\nfor\tO\tfor\tO\nauthentication\tO\tauthentication\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nam\tO\tam\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nauthenticate/authorize\tO\tauthenticate/authorize\tO\npage\tB-User_Interface_Element\tpage\tO\nit\tO\tit\tO\nsays\tO\tsays\tO\n\"\tB-Output_Block\t\"\tO\nThis\tI-Output_Block\tThis\tO\nsite\tI-Output_Block\tsite\tO\nfailed\tI-Output_Block\tfailed\tO\nverification\tI-Output_Block\tverification\tO\n.\tI-Output_Block\t.\tO\n\"\tI-Output_Block\t\"\tO\n\t\nI\tO\tI\tO\ndug\tO\tdug\tO\naround\tO\taround\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nand\tO\tand\tO\nsaw\tO\tsaw\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nthings\tO\tthings\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nwas\tO\twas\tO\ndoing\tO\tdoing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nhunch\tO\thunch\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nYadis\tB-Library\tYadis\tO\ndocument\tO\tdocument\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\nfound\tO\tfound\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nsite\tO\tsite\tO\n's\tO\t's\tO\nrealm\tO\trealm\tO\nshoots\tO\tshoots\tO\noff\tO\toff\tO\na\tO\ta\tO\n302\tB-Error_Name\t302\tO\nFound\tO\tFound\tO\nstatus\tO\tstatus\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nthis\tO\tthis\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nand\tO\tand\tO\nset\tO\tset\tO\nit\tO\tit\tO\nup\tO\tup\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\nAccept\tO\tAccept\tO\n\"\tO\t\"\tO\nrequest\tO\trequest\tO\nheader\tO\theader\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfed\tO\tfed\tO\nthe\tO\tthe\tO\nYadis\tB-Library\tYadis\tO\ndocument\tO\tdocument\tO\ntype\tO\ttype\tO\n(\tO\t(\tO\n\"\tB-Value\t\"\tO\napplication/xrds\tI-Value\tapplication/xrds\tO\n+xml\tI-Value\t+xml\tO\n\"\tI-Value\t\"\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nissuing\tO\tissuing\tO\nthe\tO\tthe\tO\n302\tB-Library_Function\t302\tO\nFound\tI-Library_Function\tFound\tO\nredirect\tO\tredirect\tO\n,\tO\t,\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nplacing\tO\tplacing\tO\nthe\tO\tthe\tO\nX-XRDS-Location\tO\tX-XRDS-Location\tO\nheader\tO\theader\tO\n..\tO\t..\tO\n.\tO\t.\tO\nno\tO\tno\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nother\tO\tother\tO\nsuggestions\tO\tsuggestions\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4130263\tO\t4130263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4130263/\tO\thttps://stackoverflow.com/questions/4130263/\tO\n\t\n\t\nIt\tO\tIt\tO\ntook\tO\ttook\tO\na\tO\ta\tO\nnice\tO\tnice\tO\nrework\tO\trework\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonce\tO\tonce\tO\nI\tO\tI\tO\nfixed\tO\tfixed\tO\nthe\tO\tthe\tO\n302\tB-Error_Name\t302\tO\nFound\tI-Error_Name\tFound\tO\nto\tO\tto\tO\na\tO\ta\tO\n200\tB-Error_Name\t200\tO\nOK\tI-Error_Name\tOK\tO\nresponse\tO\tresponse\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ngolden\tO\tgolden\tO\n.\tO\t.\tO\n\t\nhttp://blog.nerdbank.net/2008/06/why-yahoo-says-your-openid-site.html\tO\thttp://blog.nerdbank.net/2008/06/why-yahoo-says-your-openid-site.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25192105\tO\t25192105\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25192105/\tO\thttps://stackoverflow.com/questions/25192105/\tO\n\t\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nstuck\tO\tstuck\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nweek\tO\tweek\tO\nor\tO\tor\tO\nso\tO\tso\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\ndoes\tO\tdoes\tO\none\tO\tone\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nspecific\tO\tspecific\tO\nrow\tB-Data_Structure\trow\tO\nselected\tO\tselected\tO\non\tO\ton\tO\na\tO\ta\tO\nUIPickerView\tB-Library_Class\tUIPickerView\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsecondviewcontroller\tB-Variable_Name\tsecondviewcontroller\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\nif\tO\tif\tO\nstatements\tO\tstatements\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirstviewcontroller\tB-Variable_Name\tfirstviewcontroller\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nam\tO\tam\tO\nthinking\tO\tthinking\tO\nsegues\tB-Library\tsegues\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n?\tO\t?\tO\n\t\nSorry\tO\tSorry\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nseems\tO\tseems\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nrudimentary\tO\trudimentary\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nbrand\tO\tbrand\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nXcode\tB-Application\tXcode\tO\nand\tO\tand\tO\nobjective\tO\tobjective\tO\nc\tB-Language\tc\tO\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11680985\tO\t11680985\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11680985/\tO\thttps://stackoverflow.com/questions/11680985/\tO\n\t\n\t\nis\tO\tis\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nUnlock\tO\tUnlock\tO\nScreen\tB-User_Interface_Element\tScreen\tO\nby\tO\tby\tO\nclicking\tO\tclicking\tO\nhome\tB-User_Interface_Element\thome\tO\nbutton\tI-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\ndid\tO\tdid\tO\nlock\tO\tlock\tO\nscreen\tB-User_Interface_Element\tscreen\tO\ndynamically\tO\tdynamically\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nDeviceAdminReceiver\tB-Library\tDeviceAdminReceiver\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nas\tO\tas\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nunlock\tO\tunlock\tO\nthe\tO\tthe\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nby\tO\tby\tO\nclicking\tO\tclicking\tO\nthe\tO\tthe\tO\nhome\tB-User_Interface_Element\thome\tO\nbutton\tI-User_Interface_Element\tbutton\tO\nor\tO\tor\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nkeys\tB-User_Interface_Element\tkeys\tO\n.\tO\t.\tO\n\t\nkindly\tO\tkindly\tO\nsome\tO\tsome\tO\none\tO\tone\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\nideas\tO\tideas\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nplease\tO\tplease\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11189300\tO\t11189300\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11189300/\tO\thttps://stackoverflow.com/questions/11189300/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\nbasic\tO\tbasic\tO\nCSS3\tB-Language\tCSS3\tO\nanimation\tO\tanimation\tO\ntest\tO\ttest\tO\nwhich\tO\twhich\tO\nincreases\tO\tincreases\tO\nand\tO\tand\tO\ndecreases\tO\tdecreases\tO\nthe\tO\tthe\tO\nbackground-size\tO\tbackground-size\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nelements\tO\telements\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nactive\tO\tactive\tO\nis\tO\tis\tO\ntoggled\tO\ttoggled\tO\nand\tO\tand\tO\na\tO\ta\tO\ntransition\tO\ttransition\tO\noccurs\tO\toccurs\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthough\tO\tthough\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\n.active\tB-Library_Class\t.active\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\nremoved\tO\tremoved\tO\nthe\tO\tthe\tO\nanimation\tO\tanimation\tO\ndoesnt\tO\tdoesnt\tO\noccur\tO\toccur\tO\nanymore\tO\tanymore\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nreset\tO\treset\tO\nanimation\tO\tanimation\tO\nto\tO\tto\tO\nnone\tO\tnone\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nadvise\tO\tadvise\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nCSS\tB-Language\tCSS\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1033\tI-Code_Block\tQ_1033\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJS\tB-Language\tJS\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1034\tI-Code_Block\tQ_1034\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFiddle\tB-Application\tFiddle\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://jsfiddle.net/VQaGh/22/\tO\thttp://jsfiddle.net/VQaGh/22/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11189300\tO\t11189300\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11189300/\tO\thttps://stackoverflow.com/questions/11189300/\tO\n\t\n\t\nas\tO\tas\tO\nmy\tO\tmy\tO\nunderstanding\tO\tunderstanding\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\neffects\tO\teffects\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\ntry\tO\ttry\tO\nthis\tO\tthis\tO\none\tO\tone\tO\nhttp://jsfiddle.net/Sk2sX/\tO\thttp://jsfiddle.net/Sk2sX/\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmodify\tO\tmodify\tO\nboth\tO\tboth\tO\ncss\tB-Language\tcss\tO\nand\tO\tand\tO\njs\tB-Language\tjs\tO\nhope\tO\thope\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n\t\nfor\tO\tfor\tO\nany\tO\tany\tO\nquery\tO\tquery\tO\nregarding\tO\tregarding\tO\ncode\tO\tcode\tO\npost\tO\tpost\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41559764\tO\t41559764\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41559764/\tO\thttps://stackoverflow.com/questions/41559764/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIm\tO\tIm\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoesnt\tO\tdoesnt\tO\ndisplay\tO\tdisplay\tO\nanything\tO\tanything\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5280\tI-Code_Block\tQ_5280\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16741679\tO\t16741679\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16741679/\tO\thttps://stackoverflow.com/questions/16741679/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nsorry\tO\tsorry\tO\nbecause\tO\tbecause\tO\nthis\tO\tthis\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ndoubled\tO\tdoubled\tO\npost\tO\tpost\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nsaw\tO\tsaw\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nother\tO\tother\tO\nthreads\tO\tthreads\tO\nand\tO\tand\tO\ni\tO\ti\tO\ncant\tO\tcant\tO\nunderstand\tO\tunderstand\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\nhas_and_belongs_to_many\tB-Library_Function\thas_and_belongs_to_many\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nam\tO\tam\tO\nstuck\tO\tstuck\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ninformation\tO\tinformation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\n:\tO\t:\tO\n\t\nOrb\tB-Class_Name\tOrb\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1679\tI-Code_Block\tQ_1679\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBook\tB-Class_Name\tBook\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1680\tI-Code_Block\tQ_1680\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nA\tB-Class_Name\tA\tO\n_form\tI-Class_Name\t_form\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1681\tI-Code_Block\tQ_1681\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1682\tI-Code_Block\tQ_1682\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWith\tO\tWith\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nhas\tO\thas\tO\na\tO\ta\tO\ncheckbox\tB-User_Interface_Element\tcheckbox\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwont\tO\twont\tO\nbe\tO\tbe\tO\nsave\tO\tsave\tO\nanywere\tO\tanywere\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nsome\tO\tsome\tO\none\tO\tone\tO\nme\tO\tme\tO\nexplain\tO\texplain\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16741679\tO\t16741679\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16741679/\tO\thttps://stackoverflow.com/questions/16741679/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\na\tO\ta\tO\njoin\tO\tjoin\tO\ntable\tB-Data_Structure\ttable\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nhas_and_belongs_to_many\tB-Library_Function\thas_and_belongs_to_many\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2187\tI-Code_Block\tA_2187\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nsee\tO\tsee\tO\nhere\tO\there\tO\nmy\tO\tmy\tO\nworking\tO\tworking\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\nhttps://github.com/senayar/books\tO\thttps://github.com/senayar/books\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6343991\tO\t6343991\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6343991/\tO\thttps://stackoverflow.com/questions/6343991/\tO\n\t\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nform\tO\tform\tO\nwhich\tO\twhich\tO\nfills\tO\tfills\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\neither\tO\teither\tO\n'\tO\t'\tO\nresolved\tO\tresolved\tO\n'\tO\t'\tO\nor\tO\tor\tO\n'\tO\t'\tO\nnotresolved\tO\tnotresolved\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ncounter\tO\tcounter\tO\nwhich\tO\twhich\tO\nstarts\tO\tstarts\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nis\tO\tis\tO\nsubmitted\tO\tsubmitted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nstatus\tO\tstatus\tO\nis\tO\tis\tO\n'\tO\t'\tO\nnotresolved\tO\tnotresolved\tO\n'\tO\t'\tO\nyet\tO\tyet\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nresolve\tO\tresolve\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\ntaken\tO\ttaken\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nimplement\tO\timplement\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_472\tI-Code_Block\tQ_472\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6343991\tO\t6343991\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6343991/\tO\thttps://stackoverflow.com/questions/6343991/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nTIMESTAMP\tB-Data_Type\tTIMESTAMP\tB-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\ndatabase\tO\tdatabase\tO\ntable\tB-Data_Structure\ttable\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nits\tO\tits\tO\ndefault\tO\tdefault\tO\nvalue\tO\tvalue\tO\nset\tO\tset\tO\nas\tO\tas\tO\nCURRENT_TIMESTAMP\tB-Library_Variable\tCURRENT_TIMESTAMP\tB-Code_Block\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nthread\tO\tthread\tO\non\tO\ton\tO\nStackoverflow\tB-Website\tStackoverflow\tO\n:\tO\t:\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nset\tO\tset\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nMySQL\tB-Application\tMySQL\tO\nDatetime\tB-Data_Type\tDatetime\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nTimestamp\tO\tTimestamp\tO\nproperties\tO\tproperties\tO\nin\tO\tin\tO\nMySQL\tB-Application\tMySQL\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6343991\tO\t6343991\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6343991/\tO\thttps://stackoverflow.com/questions/6343991/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nthinking\tO\tthinking\tO\nfast\tO\tfast\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nmind\tO\tmind\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_715\tI-Code_Block\tA_715\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nthat\tO\tthat\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nhttp://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_datediff\tO\thttp://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_datediff\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nMySQL\tB-Application\tMySQL\tO\ndates\tO\tdates\tO\n,\tO\t,\tO\nfollowing\tO\tfollowing\tO\nRufinus\tB-User_Name\tRufinus\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31096939\tO\t31096939\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31096939/\tO\thttps://stackoverflow.com/questions/31096939/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nduplicate\tO\tduplicate\tO\nelements\tO\telements\tO\nin\tO\tin\tO\na\tO\ta\tO\narray\tB-Data_Structure\tarray\tO\n'\tO\t'\tO\ndata\tB-Variable_Name\tdata\tO\n'\tO\t'\tO\ninto\tO\tinto\tO\n0\tB-Value\t0\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nrow-wise\tB-User_Interface_Element\trow-wise\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3743\tI-Code_Block\tQ_3743\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nanswer\tO\tanswer\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3744\tI-Code_Block\tQ_3744\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31096939\tO\t31096939\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31096939/\tO\thttps://stackoverflow.com/questions/31096939/\tO\n\t\n\t\nApproach\tO\tApproach\tO\n#1\tO\t#1\tO\n\t\nOne\tO\tOne\tO\napproach\tO\tapproach\tO\nwith\tO\twith\tO\nnp.unique\tB-Library_Function\tnp.unique\tB-Code_Block\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4417\tI-Code_Block\tA_4417\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSample\tO\tSample\tO\nrun\tO\trun\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4418\tI-Code_Block\tA_4418\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nApproach\tO\tApproach\tO\n#2\tO\t#2\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nsorting\tO\tsorting\tB-Code_Block\nand\tO\tand\tO\ndifferentiation\tO\tdifferentiation\tB-Code_Block\nas\tO\tas\tO\na\tO\ta\tO\nfaster\tO\tfaster\tO\napproach\tO\tapproach\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4419\tI-Code_Block\tA_4419\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nRuntime\tO\tRuntime\tO\ntests\tO\ttests\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4420\tI-Code_Block\tA_4420\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExtending\tO\tExtending\tO\nto\tO\tto\tO\na\tO\ta\tO\n2D\tO\t2D\tO\ncase\tO\tcase\tO\n:\tO\t:\tO\n\t\nApproach\tO\tApproach\tO\n#2\tO\t#2\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nextended\tO\textended\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\na\tO\ta\tO\n2D\tO\t2D\tO\narray\tB-Data_Structure\tarray\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\navoiding\tO\tavoiding\tO\nany\tO\tany\tO\nloop\tO\tloop\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4421\tI-Code_Block\tA_4421\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSample\tO\tSample\tO\nrun\tO\trun\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4422\tI-Code_Block\tA_4422\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31096939\tO\t31096939\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31096939/\tO\thttps://stackoverflow.com/questions/31096939/\tO\n\t\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\npure-Python\tB-Language\tpure-Python\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4423\tI-Code_Block\tA_4423\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36967459\tO\t36967459\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36967459/\tO\thttps://stackoverflow.com/questions/36967459/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nimplemented\tO\timplemented\tO\nan\tO\tan\tO\ninvitation\tO\tinvitation\tO\nsystem\tO\tsystem\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\ngenerates\tO\tgenerates\tO\nan\tO\tan\tO\nical\tB-File_Type\tical\tO\nattachment\tO\tattachment\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nusers\tO\tusers\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nbody\tO\tbody\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\ntrigger\tO\ttrigger\tO\nthe\tO\tthe\tO\nprocessing\tO\tprocessing\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninvitation\tO\tinvitation\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nin\tO\tin\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nextra\tO\textra\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nsome\tO\tsome\tO\nemail\tB-Application\temail\tO\nclients\tI-Application\tclients\tO\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\nquestion\tO\tquestion\tO\nmentions\tO\tmentions\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nemail\tO\temail\tO\nattachments\tO\tattachments\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ngeneral\tO\tgeneral\tO\ncase\tO\tcase\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nstill\tO\tstill\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nfor\tO\tfor\tO\nicalendar\tB-Application\ticalendar\tO\nattachments\tO\tattachments\tO\n?\tO\t?\tO\n\t\nOther\tO\tOther\tO\nquestions\tO\tquestions\tO\nsuggest\tO\tsuggest\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nservice\tO\tservice\tO\nlike\tO\tlike\tO\nhttps://www.addevent.com/\tO\thttps://www.addevent.com/\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\noriented\tO\toriented\tO\ntoward\tO\ttoward\tO\n\"\tO\t\"\tO\npublic\tO\tpublic\tO\nevents\tO\tevents\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nwhereas\tO\twhereas\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nsomething\tO\tsomething\tO\nquite\tO\tquite\tO\nprivate\tO\tprivate\tO\n(\tO\t(\tO\nonly\tO\tonly\tO\ninvitations\tO\tinvitations\tO\nbetween\tO\tbetween\tO\n2\tO\t2\tO\npeople\tO\tpeople\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nexpected\tO\texpected\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ngenerates\tO\tgenerates\tO\nquite\tO\tquite\tO\noften\tO\toften\tO\n(\tO\t(\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nscale\tO\tscale\tO\nup\tO\tup\tO\nto\tO\tto\tO\n100/day\tB-Value\t100/day\tO\nwithout\tO\twithout\tO\nproblem\tO\tproblem\tO\n)\tO\t)\tO\n,\tO\t,\tO\nor\tO\tor\tO\nit\tO\tit\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nme\tO\tme\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nbad\tO\tbad\tO\nimpression\tO\timpression\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36967459\tO\t36967459\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36967459/\tO\thttps://stackoverflow.com/questions/36967459/\tO\n\t\n\t\nDealt\tO\tDealt\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nseveral\tO\tseveral\tO\nyears\tO\tyears\tO\nago\tO\tago\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\nno\tO\tno\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nforce\tO\tforce\tO\nmost\tO\tmost\tO\nemail\tB-Application\temail\tO\nclient\tI-Application\tclient\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nprocess\tO\tprocess\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\ntrigger\tO\ttrigger\tO\n\"\tO\t\"\tO\nAdd\tO\tAdd\tO\nto\tO\tto\tO\ncalendar\tO\tcalendar\tO\n\"\tO\t\"\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nmake\tO\tmake\tO\nsome\tO\tsome\tO\nelement\tO\telement\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nemail\tO\temail\tO\ntrigger\tO\ttrigger\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nsimply\tO\tsimply\tO\nlinking\tO\tlinking\tO\nthat\tO\tthat\tO\nelement\tO\telement\tO\nto\tO\tto\tO\n.ical\tB-File_Type\t.ical\tB-Code_Block\nfile\tO\tfile\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nserver\tB-Device\tserver\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nadvantage\tO\tadvantage\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nattache\tO\tattache\tO\nsome\tO\tsome\tO\nparameters\tO\tparameters\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nlink\tO\tlink\tO\nand\tO\tand\tO\ngenerate\tO\tgenerate\tO\nthat\tO\tthat\tO\nevent\tO\tevent\tO\nfile\tO\tfile\tO\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nit\tO\tit\tO\nscales\tO\tscales\tO\npretty\tO\tpretty\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2290073\tO\t2290073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2290073/\tO\thttps://stackoverflow.com/questions/2290073/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nstandard\tO\tstandard\tO\nGWT\tB-Application\tGWT\tO\n(\tO\t(\tO\n2.0.1\tB-Version\t2.0.1\tO\n)\tO\t)\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\ninternet\tO\tinternet\tO\napp\tO\tapp\tO\nand\tO\tand\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nwierd\tO\twierd\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nhuge\tB-Value\thuge\tO\nfonts\tO\tfonts\tO\n(\tO\t(\tO\nedit\tO\tedit\tO\n:\tO\t:\tO\nwell\tO\twell\tO\n,\tO\t,\tO\nlarger\tO\tlarger\tO\nthan\tO\tthan\tO\nnormal\tO\tnormal\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nstyle\tO\tstyle\tO\nin\tO\tin\tO\nIE\tB-Application\tIE\tO\n7\tB-Version\t7\tO\n&\tO\t&\tO\n8\tB-Version\t8\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nFF\tB-Application\tFF\tO\n,\tO\t,\tO\nChrome\tB-Application\tChrome\tO\nand\tO\tand\tO\nSafari\tB-Application\tSafari\tO\nare\tO\tare\tO\ndisplaying\tO\tdisplaying\tO\nfonts\tO\tfonts\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nfirst\tO\tfirst\tO\ni\tO\ti\tO\nthought\tO\tthought\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\non\tO\ton\tO\nerror\tO\terror\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nside\tO\tside\tO\n(\tO\t(\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nUiBinder\tB-Class_Name\tUiBinder\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\ncustom\tO\tcustom\tO\ncss\tB-Language\tcss\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nGWT\tB-Application\tGWT\tO\nshowcases\tO\tshowcases\tO\nsite\tO\tsite\tO\nthe\tO\tthe\tO\nvarious\tO\tvarious\tO\nwidget\tB-User_Interface_Element\twidget\tO\nfonts\tO\tfonts\tO\nare\tO\tare\tO\nalso\tO\talso\tO\ntoo\tO\ttoo\tO\nbig\tO\tbig\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2290073\tO\t2290073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2290073/\tO\thttps://stackoverflow.com/questions/2290073/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nIE\tB-Application\tIE\tO\ndefault\tO\tdefault\tO\nfont\tO\tfont\tO\nsize\tO\tsize\tO\nrendering\tO\trendering\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nnothing\tO\tnothing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nGWT\tB-Application\tGWT\tO\nbut\tO\tbut\tO\nrather\tO\trather\tO\nwith\tO\twith\tO\nCSS\tB-Language\tCSS\tO\nstyling\tO\tstyling\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nfonts\tO\tfonts\tO\nare\tO\tare\tO\nconsistent\tO\tconsistent\tO\nover\tO\tover\tO\nmultiple\tO\tmultiple\tO\nbrowser\tB-Application\tbrowser\tO\nwith\tO\twith\tO\na\tO\ta\tO\nCSS\tB-Language\tCSS\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_235\tI-Code_Block\tA_235\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nTo\tO\tTo\tO\nensure\tO\tensure\tO\nall\tO\tall\tO\nwidgets\tB-User_Interface_Element\twidgets\tO\n\"\tO\t\"\tO\nget\tO\tget\tO\n\"\tO\t\"\tO\nthis\tO\tthis\tO\nnew\tO\tnew\tO\nstyle\tO\tstyle\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nput\tO\tput\tO\nyour\tO\tyour\tO\nCSS\tB-File_Type\tCSS\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n*\tO\t*\tO\n.gwt.xml\tB-File_Type\t.gwt.xml\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nway\tO\tway\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\nlines\tO\tlines\tO\nis\tO\tis\tO\nimportant\tO\timportant\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_236\tI-Code_Block\tA_236\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nput\tO\tput\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nHTML\tB-Language\tHTML\tO\npage\tO\tpage\tO\n!\tO\t!\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nstyle\tO\tstyle\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\nwidget\tB-User_Interface_Element\twidget\tO\nstyles\tO\tstyles\tO\n.\tO\t.\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\nmight\tO\tmight\tO\noverride\tO\toverride\tO\nsome\tO\tsome\tO\nwidget\tB-User_Interface_Element\twidget\tO\nstyles\tO\tstyles\tO\nby\tO\tby\tO\nhand\tO\thand\tO\n(\tO\t(\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nGwtOverride.css\tB-File_Name\tGwtOverride.css\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\npurpose\tO\tpurpose\tO\n)\tO\t)\tO\n..\tO\t..\tO\n.\tO\t.\tO\nsee\tO\tsee\tO\nsnippet\tO\tsnippet\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_237\tI-Code_Block\tA_237\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2290073\tO\t2290073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2290073/\tO\thttps://stackoverflow.com/questions/2290073/\tO\n\t\n\t\nA\tO\tA\tO\nquick\tO\tquick\tO\ncomparison\tO\tcomparison\tO\nbetween\tO\tbetween\tO\nOpera\tB-Application\tOpera\tO\n10.10\tB-Version\t10.10\tO\n,\tO\t,\tO\nIE\tB-Application\tIE\tO\n6\tB-Version\t6\tO\nand\tO\tand\tO\nFF\tB-Application\tFF\tO\n3.6\tB-Version\t3.6\tO\n(\tO\t(\tO\nall\tO\tall\tO\non\tO\ton\tO\nWinXP\tB-Operating_System\tWinXP\tO\nSP\tB-Version\tSP\tO\n3)\tI-Version\t3)\tO\n-\tO\t-\tO\nOpera\tB-Application\tOpera\tO\nand\tO\tand\tO\nIE\tB-Application\tIE\tO\nshow\tO\tshow\tO\nslightly\tO\tslightly\tO\nlarger\tO\tlarger\tO\nfonts\tO\tfonts\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nGWT\tB-Application\tGWT\tO\n's\tO\t's\tO\nfault\tO\tfault\tO\n-\tO\t-\tO\nevery\tO\tevery\tO\nbrowser\tB-Application\tbrowser\tO\nhas\tO\thas\tO\nsome\tO\tsome\tO\ncore\tO\tcore\tO\nCSS\tB-Language\tCSS\tO\nrules\tO\trules\tO\ndefining\tO\tdefining\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nlook\tO\tlook\tO\n,\tO\t,\tO\nif\tO\tif\tO\nno\tO\tno\tO\nadditional\tO\tadditional\tO\nCSS\tB-Language\tCSS\tO\nstyles\tO\tstyles\tO\nare\tO\tare\tO\napplied\tO\tapplied\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\nannoying\tO\tannoying\tO\nblue\tO\tblue\tO\nborder\tB-User_Interface_Element\tborder\tO\non\tO\ton\tO\nall\tO\tall\tO\nimages\tB-User_Interface_Element\timages\tO\nin\tO\tin\tO\nFF\tB-Application\tFF\tO\n)\tO\t)\tO\n,\tO\t,\tO\nso\tO\tso\tO\njust\tO\tjust\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nset\tO\tset\tO\nexplicitly\tO\texplicitly\tO\nyour\tO\tyour\tO\nfont\tO\tfont\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\netc\tO\tetc\tO\nto\tO\tto\tO\nnullify\tO\tnullify\tO\nthese\tO\tthese\tO\ndifferences\tO\tdifferences\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\n,\tO\t,\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nseeing\tO\tseeing\tO\nfonts\tO\tfonts\tO\nway\tO\tway\tO\nlarger\tO\tlarger\tO\nthan\tO\tthan\tO\nthey\tO\tthey\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n-\tO\t-\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\nunder\tO\tunder\tO\nLinux\tB-Operating_System\tLinux\tO\n(\tO\t(\tO\nGentoo\tB-Version\tGentoo\tO\namd6\tI-Version\tamd6\tO\n4)\tI-Version\t4)\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n-\tO\t-\tO\nOpera\tB-Application\tOpera\tO\nreneders\tO\treneders\tO\nslightly\tO\tslightly\tO\nlarger\tO\tlarger\tO\nfonts\tO\tfonts\tO\nthan\tO\tthan\tO\nFirefox\tB-Application\tFirefox\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnothing\tO\tnothing\tO\nthat\tO\tthat\tO\nlooks\tO\tlooks\tO\nodd\tO\todd\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46419176\tO\t46419176\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46419176/\tO\thttps://stackoverflow.com/questions/46419176/\tO\n\t\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\ndialog\tB-Library_Class\tdialog\tO\nthat\tO\tthat\tO\ncalls\tO\tcalls\tO\nmodeless\tO\tmodeless\tO\ndialogs\tB-Library_Class\tdialogs\tO\nthrough\tO\tthrough\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nlegacy\tO\tlegacy\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6088\tI-Code_Block\tQ_6088\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nProblem\tO\tProblem\tO\n:\tO\t:\tO\nall\tO\tall\tO\nsub\tO\tsub\tO\ndialogs\tB-User_Interface_Element\tdialogs\tO\nstay\tO\tstay\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\ndialog\tB-User_Interface_Element\tdialog\tO\n.\tO\t.\tO\n\t\nDesired\tO\tDesired\tO\nbehavior\tO\tbehavior\tO\n:\tO\t:\tO\nwhichever\tO\twhichever\tO\n's\tO\t's\tO\nfocused\tO\tfocused\tO\n(\tO\t(\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nall\tO\tall\tO\nmodeless\tO\tmodeless\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbe\tO\tbe\tO\nit\tO\tit\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\ndialog\tB-User_Interface_Element\tdialog\tO\n,\tO\t,\tO\nor\tO\tor\tO\nsub\tO\tsub\tO\ndialogs\tB-User_Interface_Element\tdialogs\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\ntopmost\tO\ttopmost\tO\ndialog\tB-User_Interface_Element\tdialog\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nI\tO\tI\tO\nalready\tO\talready\tO\ntried\tO\ttried\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\ndialog\tB-Library_Class\tdialog\tO\n's\tO\t's\tO\nOnInitDialog()\tB-Library_Function\tOnInitDialog()\tB-Code_Block\nthese\tO\tthese\tO\nbut\tO\tbut\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\nSetWindowPos(&this->wndTop,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE)\tB-Code_Block\tSetWindowPos(&this->wndTop,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE)\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\n2\tO\t2\tO\n.\tO\t.\tO\nSetWindowPos(&this->wndTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE)\tB-Code_Block\tSetWindowPos(&this->wndTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE)\tB-Code_Block\n;\tO\t;\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nsub\tO\tsub\tO\ndialogs\tB-Library_Class\tdialogs\tO\nare\tO\tare\tO\ncreated\tO\tcreated\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nm_subDlg1->Create\tB-Code_Block\tm_subDlg1->Create\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nSubDlg1::IDD\tI-Code_Block\tSubDlg1::IDD\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nthis\tI-Code_Block\tthis\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46419176\tO\t46419176\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46419176/\tO\thttps://stackoverflow.com/questions/46419176/\tO\n\t\n\t\nAs\tO\tAs\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nowner\tO\towner\tO\nrelation\tO\trelation\tO\nbetween\tO\tbetween\tO\ntwo\tO\ttwo\tO\nwindows\tB-User_Interface_Element\twindows\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nowner\tO\towner\tO\nof\tO\tof\tO\na\tO\ta\tO\nwindow\tB-User_Interface_Element\twindow\tO\ncan\tO\tcan\tO\nnever\tO\tnever\tO\nbe\tO\tbe\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nowned\tO\towned\tO\nwindow\tB-User_Interface_Element\twindow\tO\n.\tO\t.\tO\n\t\nWindows\tB-User_Interface_Element\tWindows\tO\nin\tO\tin\tO\nan\tO\tan\tO\nowner\tO\towner\tO\n,\tO\t,\tO\nparent\tO\tparent\tO\n,\tO\t,\tO\nchild\tO\tchild\tO\nrelation\tO\trelation\tO\nalways\tO\talways\tO\nbehave\tO\tbehave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nowned/child\tO\towned/child\tO\nwindow\tB-User_Interface_Element\twindow\tO\nis\tO\tis\tO\nalways\tO\talways\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nparent/owner\tO\tparent/owner\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\nthe\tO\tthe\tO\nowner/child\tO\towner/child\tO\nrelation\tO\trelation\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nall\tO\tall\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nwindows\tI-User_Interface_Element\twindows\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nowner\tO\towner\tO\n..\tO\t..\tO\n.\tO\t.\tO\nthan\tO\tthan\tO\nthey\tO\tthey\tO\nmay\tO\tmay\tO\nfloat\tO\tfloat\tO\nfreely\tO\tfreely\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n:\tO\t:\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nexpect\tO\texpect\tO\nthe\tO\tthe\tO\nyou\tO\tyou\tO\nprogram\tO\tprogram\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nbehave\tO\tbehave\tO\nbetter\tO\tbetter\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nworse\tO\tworse\tO\n.\tO\t.\tO\n\t\nUser\tO\tUser\tO\nmight\tO\tmight\tO\nsearch\tO\tsearch\tO\nwindows\tB-User_Interface_Element\twindows\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ndeep\tO\tdeep\tO\nbelow\tO\tbelow\tO\ncovered\tO\tcovered\tO\nunder\tO\tunder\tO\nother\tO\tother\tO\nwindows\tB-User_Interface_Element\twindows\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\nnever\tO\tnever\tO\nget\tO\tget\tO\nin\tO\tin\tO\nfront\tO\tfront\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\ngets\tO\tgets\tO\nactive\tO\tactive\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\ndescription\tO\tdescription\tO\nabout\tO\tabout\tO\nparent/child/owned\tO\tparent/child/owned\tO\nwindows\tB-User_Interface_Element\twindows\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\ninternally\tO\tinternally\tO\nthe\tO\tthe\tO\nMFC\tB-Library\tMFC\tO\nsets\tO\tsets\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nwindow\tB-User_Interface_Element\twindow\tO\nas\tO\tas\tO\nan\tO\tan\tO\nowner\tO\towner\tO\nif\tO\tif\tO\nno\tO\tno\tO\nparent\tO\tparent\tO\nis\tO\tis\tO\ngiven\tO\tgiven\tO\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nBOOL\tB-Code_Block\tBOOL\tB-Code_Block\nWnd\tI-Code_Block\tWnd\tI-Code_Block\n::\tI-Code_Block\t::\tI-Code_Block\nCreateDlgIndirect(LPCDLGTEMPLATE\tI-Code_Block\tCreateDlgIndirect(LPCDLGTEMPLATE\tI-Code_Block\nlpDialogTemplate\tI-Code_Block\tlpDialogTemplate\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nCWnd\tI-Code_Block\tCWnd\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\npParentWnd\tI-Code_Block\tpParentWnd\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nHINSTANCE\tI-Code_Block\tHINSTANCE\tI-Code_Block\nhInst\tI-Code_Block\thInst\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nallows\tO\tallows\tO\nto\tO\tto\tO\nleave\tO\tleave\tO\npParentWnd\tB-Variable_Name\tpParentWnd\tO\nNULL\tB-Value\tNULL\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nwindow\tB-User_Interface_Element\twindow\tO\nas\tO\tas\tO\nnormal\tO\tnormal\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nuse\tO\tuse\tO\nSetParent(NULL)\tB-Library_Function\tSetParent(NULL)\tO\nafter\tO\tafter\tO\nit\tO\tit\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nAgain\tO\tAgain\tO\nthe\tO\tthe\tO\nMFC\tB-Library\tMFC\tO\nASSERTs\tO\tASSERTs\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nSO\tO\tSO\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nAPI\tB-Library\tAPI\tO\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nhandle\tO\thandle\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndialog\tB-Library_Class\tdialog\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7514788\tO\t7514788\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7514788/\tO\thttps://stackoverflow.com/questions/7514788/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nCheckBoxes\tB-Library_Class\tCheckBoxes\tO\nwich\tO\twich\tO\nare\tO\tare\tO\nmade\tO\tmade\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\ntable\tB-Data_Structure\ttable\tO\nnames\tO\tnames\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_594\tI-Code_Block\tQ_594\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nnow\tO\tnow\tO\nlets\tO\tlets\tO\nsay\tO\tsay\tO\ni\tO\ti\tO\nget\tO\tget\tO\n10\tO\t10\tO\ncheckboxes\tB-Library_Class\tcheckboxes\tO\n(\tO\t(\tO\nwith\tO\twith\tO\ndifferent\tO\tdifferent\tO\nnames\tO\tnames\tO\nofc\tO\tofc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nhow\tO\thow\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\nknow\tO\tknow\tO\nwich\tO\twich\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nwas\tO\twas\tO\nchecked\tO\tchecked\tO\n?\tO\t?\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\nI\tO\tI\tO\ncheck\tO\tcheck\tO\nbox\tO\tbox\tO\nnr\tO\tnr\tO\n1.5.7\tB-Value\t1.5.7\tO\nand\tO\tand\tO\nclick\tO\tclick\tO\non\tO\ton\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n\"\tB-Value\t\"\tO\nPrint\tI-Value\tPrint\tO\n\"\tI-Value\t\"\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\nprint\tO\tprint\tO\nthem\tO\tthem\tO\nout\tO\tout\tO\n?\tO\t?\tO\n\t\nSystem.out.println\tB-Code_Block\tSystem.out.println\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nChecked\tI-Code_Block\tChecked\tI-Code_Block\nitems\tI-Code_Block\titems\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n+check\tI-Code_Block\t+check\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n;\tB-Code_Block\t;\tB-Code_Block\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7514788\tO\t7514788\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7514788/\tO\thttps://stackoverflow.com/questions/7514788/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nstructure\tO\tstructure\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nMap\tB-Library_Class\tMap\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nbetween\tO\tbetween\tO\nyour\tO\tyour\tO\ncheckboxes\tB-Library_Class\tcheckboxes\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ntables\tB-Data_Structure\ttables\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nusually\tO\tusually\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nSWT\tB-Application\tSWT\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmap\tO\tmap\tO\nin\tO\tin\tO\neach\tO\teach\tO\nGUI\tO\tGUI\tO\ncomponent\tO\tcomponent\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nwhatever\tO\twhatever\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nawt\tB-Application\tawt\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nmanually\tO\tmanually\tO\n..\tO\t..\tO\n.\tO\t.\tO\n(\tO\t(\tO\nI\tO\tI\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nawt\tB-Application\tawt\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nCheckBox\tB-Library_Class\tCheckBox\tO\nclass\tO\tclass\tO\nin\tO\tin\tO\nawt\tB-Application\tawt\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nCheckbox\tB-Library_Class\tCheckbox\tO\nnot\tO\tnot\tO\nCheckBox\tB-Library_Class\tCheckBox\tO\n!!\tO\t!!\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nBottom\tO\tBottom\tO\nline\tO\tline\tO\nis\tO\tis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbind\tO\tbind\tO\nsome\tO\tsome\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nGUI\tO\tGUI\tO\ncomponents\tO\tcomponents\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nrecognize\tO\trecognize\tO\nthem\tO\tthem\tO\nlater\tO\tlater\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nmap\tB-Library_Class\tmap\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_870\tI-Code_Block\tA_870\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nbuild\tO\tbuild\tO\nthem\tO\tthem\tO\nup\tO\tup\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nchecks\tO\tchecks\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7514788\tO\t7514788\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7514788/\tO\thttps://stackoverflow.com/questions/7514788/\tO\n\t\n\t\nUse\tO\tUse\tO\nCheckboxGroup\tB-Library_Class\tCheckboxGroup\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_867\tI-Code_Block\tA_867\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nadd\tO\tadd\tO\na\tO\ta\tO\nCheckboxGroup\tB-Library_Class\tCheckboxGroup\tB-Code_Block\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_868\tI-Code_Block\tA_868\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_869\tI-Code_Block\tA_869\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5122776\tO\t5122776\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5122776/\tO\thttps://stackoverflow.com/questions/5122776/\tO\n\t\n\t\nFor\tO\tFor\tO\nmy\tO\tmy\tO\nexperiment\tO\texperiment\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nspecific\tO\tspecific\tO\nsimilarity\tO\tsimilarity\tO\nmetrics\tO\tmetrics\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nfield\tO\tfield\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncollection\tO\tcollection\tO\ndocuments\tO\tdocuments\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmeasure\tO\tmeasure\tO\nthe\tO\tthe\tO\nDescription\tB-Library_Variable\tDescription\tO\nfield\tO\tfield\tO\nsimilarity\tO\tsimilarity\tO\nwith\tO\twith\tO\ntf.idf\tB-Algorithm\ttf.idf\tO\n,\tO\t,\tO\nand\tO\tand\tO\nGeolocation\tB-Library_Variable\tGeolocation\tO\nfields\tO\tfields\tO\nwith\tO\twith\tO\nHarvesine\tB-Algorithm\tHarvesine\tO\ndistance.\tI-Algorithm\tdistance.\tO\n.\tO\t.\tO\netc\tO\tetc\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnow\tO\tnow\tO\nstudying\tO\tstudying\tO\nthe\tO\tthe\tO\nSimilarity\tB-Library_Class\tSimilarity\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\ngood\tO\tgood\tO\ntutorial\tO\ttutorial\tO\nor\tO\tor\tO\nexample\tO\texample\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nprocede\tO\tprocede\tO\nfaster\tO\tfaster\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5122776\tO\t5122776\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5122776/\tO\thttps://stackoverflow.com/questions/5122776/\tO\n\t\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nIIUC\tO\tIIUC\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsimilarity\tO\tsimilarity\tO\nformula\tO\tformula\tO\nper\tO\tper\tO\nfield\tO\tfield\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nper\tO\tper\tO\ndocument\tO\tdocument\tO\n,\tO\t,\tO\nrunning\tO\trunning\tO\nagainst\tO\tagainst\tO\nall\tO\tall\tO\nother\tO\tother\tO\ndocuments\tO\tdocuments\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nseveral\tO\tseveral\tO\noptions\tO\toptions\tO\n,\tO\t,\tO\nall\tO\tall\tO\nat\tO\tat\tO\nindexing\tO\tindexing\tO\ntime\tO\ttime\tO\n:\tO\t:\tO\n\t\nExtend\tO\tExtend\tO\nthe\tO\tthe\tO\nDefaultSimilarity\tB-Library_Class\tDefaultSimilarity\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nExtend\tO\tExtend\tO\nthe\tO\tthe\tO\nSimilarityDelegator\tB-Library_Class\tSimilarityDelegator\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nboth\tO\tboth\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nmake\tO\tmake\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\npayloads\tO\tpayloads\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nterm-specific\tO\tterm-specific\tO\ninformation\tO\tinformation\tO\n(\tO\t(\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlat-long\tO\tlat-long\tO\ndata\tO\tdata\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nimplementing\tO\timplementing\tO\na\tO\ta\tO\nSimilarity\tB-Library_Class\tSimilarity\tO\nclass\tO\tclass\tO\nusing\tO\tusing\tO\none\tO\tone\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nSimilarity.setDefault(mySimilarity)\tB-Library_Function\tSimilarity.setDefault(mySimilarity)\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nSimilarity\tB-Library_Class\tSimilarity\tO\ninstance\tO\tinstance\tO\nfor\tO\tfor\tO\nindexing\tO\tindexing\tO\nand\tO\tand\tO\nsearching\tO\tsearching\tO\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nthen\tO\tthen\tO\nindex\tO\tindex\tO\nyour\tO\tyour\tO\ntext\tO\ttext\tO\ncorpus\tO\tcorpus\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsearch\tO\tsearch\tO\nlater\tO\tlater\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nprobably\tO\tprobably\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nextend\tO\textend\tO\nthe\tO\tthe\tO\nSearcher\tB-Library_Class\tSearcher\tO\nclass\tO\tclass\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nraw\tO\traw\tO\nsimilarity\tO\tsimilarity\tO\n.\tO\t.\tO\n\t\nHaving\tO\tHaving\tO\nsaid\tO\tsaid\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nthis\tO\tthis\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\n-\tO\t-\tO\nLucene\tB-Library\tLucene\tO\nis\tO\tis\tO\noptimized\tO\toptimized\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nsimilar\tO\tsimilar\tO\ndocuments\tO\tdocuments\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nscore\tO\tscore\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\none\tO\tone\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\npredict\tO\tpredict\tO\nthe\tO\tthe\tO\nruntime\tO\truntime\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nprohibitive\tO\tprohibitive\tO\n-\tO\t-\tO\nHope\tO\tHope\tO\nI\tO\tI\tO\nam\tO\tam\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnevertheless\tO\tnevertheless\tO\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nyou\tO\tyou\tO\nread\tO\tread\tO\nMining\tO\tMining\tO\nof\tO\tof\tO\nMassive\tO\tMassive\tO\nDatasets\tO\tDatasets\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\napproach\tO\tapproach\tO\n-\tO\t-\tO\nmin\tB-Algorithm\tmin\tO\nhashes\tI-Algorithm\thashes\tO\nand\tO\tand\tO\nshingling\tB-Algorithm\tshingling\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\n.\tO\t.\tO\n\t\nPatrick\tB-User_Name\tPatrick\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nfirst\tO\tfirst\tO\nquote\tO\tquote\tO\nGrant\tB-User_Name\tGrant\tO\nIngersoll\tI-User_Name\tIngersoll\tO\nabout\tO\tabout\tO\nmodifying\tO\tmodifying\tO\nthe\tO\tthe\tO\nSimilarity\tB-Library_Class\tSimilarity\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nHere\tO\tHere\tO\nbe\tO\tbe\tO\nDragons\tO\tDragons\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nCustomizing\tO\tCustomizing\tO\nLucene\tB-Library_Class\tLucene\tO\n's\tO\t's\tO\nSimilarity\tI-Library_Class\tSimilarity\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\nhard\tO\thard\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nfun\tO\tfun\tO\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nabsolutely\tO\tabsolutely\tO\nhave\tO\thave\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nfirst\tO\tfirst\tO\nread\tO\tread\tO\nGrant\tB-User_Name\tGrant\tO\n's\tO\t's\tO\nspatial\tO\tspatial\tO\nsearch\tO\tsearch\tO\npaper\tO\tpaper\tO\n,\tO\t,\tO\nhis\tO\this\tO\nfindability\tO\tfindability\tO\npaper\tO\tpaper\tO\nand\tO\tand\tO\nhis\tO\this\tO\n'\tO\t'\tO\ndebugging\tO\tdebugging\tO\nrelevance\tO\trelevance\tO\n'\tO\t'\tO\npaper\tO\tpaper\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nshow\tO\tshow\tO\nother\tO\tother\tO\nways\tO\tways\tO\nto\tO\tto\tO\nget\tO\tget\tO\nhits\tO\thits\tO\nas\tO\tas\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47382219\tO\t47382219\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47382219/\tO\thttps://stackoverflow.com/questions/47382219/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n.svc\tB-File_Type\t.svc\tB-Code_Block\nwebservice\tO\twebservice\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nWebservice\tO\tWebservice\tO\ncertficiate\tO\tcertficiate\tO\nand\tO\tand\tO\nto\tO\tto\tO\nbrowse\tO\tbrowse\tO\nwith\tO\twith\tO\nHTTPS\tO\tHTTPS\tO\ninstead\tO\tinstead\tO\nHTTP\tO\tHTTP\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\ncertificate\tO\tcertificate\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnd\tO\tAnd\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nWS\tO\tWS\tO\nwithout\tO\twithout\tO\nHTTPS\tO\tHTTPS\tO\nits\tO\tits\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nhttp://localhost/myws.svc/\tO\thttp://localhost/myws.svc/\tO\n-\tO\t-\tO\nWorks\tO\tWorks\tO\n\t\nhttps://localhost/myws.svc/\tO\thttps://localhost/myws.svc/\tO\n-\tO\t-\tO\nError\tO\tError\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nsolve\tO\tsolve\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9748514\tO\t9748514\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9748514/\tO\thttps://stackoverflow.com/questions/9748514/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nadd-in\tO\tadd-in\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\narticle\tO\tarticle\tO\nbelow\tO\tbelow\tO\n\t\nhttp://blogs.microsoft.co.il/blogs/shair/archive/2008/07/28/how-to-create-sql-server-management-studio-addin.aspx\tO\thttp://blogs.microsoft.co.il/blogs/shair/archive/2008/07/28/how-to-create-sql-server-management-studio-addin.aspx\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\nis\tO\tis\tO\na\tO\ta\tO\nbit\tO\tbit\tO\noutdated\tO\toutdated\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\nget\tO\tget\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\nagain\tO\tagain\tO\n\t\nhttp://jcooney.net/post/2007/11/26/The-Black-Art-of-Writing-a-SQL-Server-Management-Studio-2005-Add-In.aspx\tO\thttp://jcooney.net/post/2007/11/26/The-Black-Art-of-Writing-a-SQL-Server-Management-Studio-2005-Add-In.aspx\tO\n\t\nhere\tO\there\tO\nonce\tO\tonce\tO\ni\tO\ti\tO\nreached\tO\treached\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\npart\tO\tpart\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nexternal\tO\texternal\tO\nprogram\tO\tprogram\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nupon\tO\tupon\tO\ndebug\tO\tdebug\tO\ni\tO\ti\tO\nwas\tO\twas\tO\nmet\tO\tmet\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nnasty\tO\tnasty\tO\nerror\tO\terror\tO\n\t\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\ngood\tO\tgood\tO\narticle\tO\tarticle\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nadd-in\tO\tadd-in\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nVS2010\tB-Application\tVS2010\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nSMSS2008r2\tB-Application\tSMSS2008r2\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9748514\tO\t9748514\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9748514/\tO\thttps://stackoverflow.com/questions/9748514/\tO\n\t\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nstarting\tO\tstarting\tO\nthe\tO\tthe\tO\ndebug\tO\tdebug\tO\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nSSMS\tB-Application\tSSMS\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nparameters\tO\tparameters\tO\n-\tO\t-\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n\"\tO\t\"\tO\nbad\tO\tbad\tO\nnews\tO\tnews\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\ndeveloped\tO\tdeveloped\tO\nan\tO\tan\tO\nadd-in\tO\tadd-in\tO\nand\tO\tand\tO\nduring\tO\tduring\tO\ndevelopment\tO\tdevelopment\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nfaced\tO\tfaced\tO\nwas\tO\twas\tO\n:\tO\t:\tO\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndebug\tO\tdebug\tO\nSSMS2008\tB-Application\tSSMS2008\tO\nAdd-In\tO\tAdd-In\tO\nonly\tO\tonly\tO\nfrom\tO\tfrom\tO\nVS2008\tB-Application\tVS2008\tO\n(\tO\t(\tO\nfull\tO\tfull\tO\nor\tO\tor\tO\nexpress\tO\texpress\tO\n)\tO\t)\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndefbug\tO\tdefbug\tO\nSSMS2012\tB-Application\tSSMS2012\tO\nadd-in\tO\tadd-in\tO\nonly\tO\tonly\tO\nfrom\tO\tfrom\tO\nVS2010\tB-Application\tVS2010\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n\"\tO\t\"\tO\ncross\tO\tcross\tO\n\"\tO\t\"\tO\nversions\tO\tversions\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nput\tO\tput\tO\na\tO\ta\tO\nmessage\tB-User_Interface_Element\tmessage\tO\nbox\tI-User_Interface_Element\tbox\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nadd-in\tO\tadd-in\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nattach\tO\tattach\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nmy\tO\tmy\tO\nadd-in\tO\tadd-in\tO\n-\tO\t-\tO\nssmsboost\tB-Application\tssmsboost\tO\n-\tO\t-\tO\nmaybe\tO\tmaybe\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\nown\tO\town\tO\n:)\tO\t:)\tO\nNew\tO\tNew\tO\nfeature\tO\tfeature\tO\nrequests\tO\trequests\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\ncheck\tO\tcheck\tO\nssms\tB-Application\tssms\tO\ntools\tO\ttools\tO\npack\tO\tpack\tO\n-\tO\t-\tO\nit\tO\tit\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nvery\tO\tvery\tO\npopular\tO\tpopular\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14076772\tO\t14076772\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14076772/\tO\thttps://stackoverflow.com/questions/14076772/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nsome\tO\tsome\tO\nresearch\tO\tresearch\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nMemento\tB-Algorithm\tMemento\tO\nPattern\tI-Algorithm\tPattern\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngenerally\tO\tgenerally\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nbehavioural\tO\tbehavioural\tO\npatterns\tO\tpatterns\tO\nand\tO\tand\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nresearch\tO\tresearch\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ngetting\tO\tgetting\tO\npretty\tO\tpretty\tO\nconfused\tO\tconfused\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthings\tO\tthings\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ngetting\tO\tgetting\tO\nconfused\tO\tconfused\tO\non\tO\ton\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndifferences\tO\tdifferences\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nMemento\tB-Algorithm\tMemento\tO\nPattern\tI-Algorithm\tPattern\tO\nand\tO\tand\tO\nSerialization\tO\tSerialization\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ngather\tO\tgather\tO\nboth\tO\tboth\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nobjects\tO\tobjects\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nthem\tO\tthem\tO\nbrought\tO\tbrought\tO\nback\tO\tback\tO\nat\tO\tat\tO\na\tO\ta\tO\nlater\tO\tlater\tO\ndate\tO\tdate\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nclear\tO\tclear\tO\ncut\tO\tcut\tO\nanswer\tO\tanswer\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\ndifferences\tO\tdifferences\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\nare\tO\tare\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmissed\tO\tmissed\tO\nsomething\tO\tsomething\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nresearch\tO\tresearch\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\ncould\tO\tcould\tO\nshed\tO\tshed\tO\nsome\tO\tsome\tO\nlight\tO\tlight\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\ndifferences\tO\tdifferences\tO\nare\tO\tare\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14076772\tO\t14076772\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14076772/\tO\thttps://stackoverflow.com/questions/14076772/\tO\n\t\n\t\nTypically\tO\tTypically\tO\nthe\tO\tthe\tO\nMemento\tB-Algorithm\tMemento\tO\npattern\tI-Algorithm\tpattern\tO\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nroll-back/save\tO\troll-back/save\tO\npoint\tO\tpoint\tO\nsupport\tO\tsupport\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nI\tO\tI\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmark\tO\tmark\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nof\tO\tof\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nat\tO\tat\tO\na\tO\ta\tO\npoint\tO\tpoint\tO\nin\tO\tin\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nwork\tO\twork\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ndecide\tO\tdecide\tO\nto\tO\tto\tO\nrevert\tO\trevert\tO\nthat\tO\tthat\tO\nobject\tO\tobject\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npoint\tO\tpoint\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwas\tO\twas\tO\nmarked\tO\tmarked\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\na\tO\ta\tO\nMemento\tB-Algorithm\tMemento\tO\npattern\tI-Algorithm\tpattern\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nserialisation\tO\tserialisation\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\ninvolve\tO\tinvolve\tO\nsaving\tO\tsaving\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nbyte[]\tB-Data_Structure\tbyte[]\tO\nand\tO\tand\tO\nkeeping\tO\tkeeping\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\nor\tO\tor\tO\nwriting\tO\twriting\tO\nto\tO\tto\tO\ndisk\tB-Device\tdisk\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nreverting\tO\treverting\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nrebuilt\tO\trebuilt\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserialised\tO\tserialised\tO\ncopy\tO\tcopy\tO\n.\tO\t.\tO\n\t\nConversely\tO\tConversely\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nMemento\tB-Algorithm\tMemento\tO\npattern\tI-Algorithm\tpattern\tO\nby\tO\tby\tO\ncloning\tO\tcloning\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\nand\tO\tand\tO\nkeeping\tO\tkeeping\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncopy\tO\tcopy\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncopying\tO\tcopying\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nback\tO\tback\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nneeds\tO\tneeds\tO\nreverting\tO\treverting\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmethod\tO\tmethod\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nserialisation\tO\tserialisation\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14076772\tO\t14076772\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14076772/\tO\thttps://stackoverflow.com/questions/14076772/\tO\n\t\n\t\nThe\tO\tThe\tO\nMemento\tB-Algorithm\tMemento\tO\npattern\tI-Algorithm\tpattern\tO\nis\tO\tis\tO\nan\tO\tan\tO\nOO\tB-Algorithm\tOO\tO\ndesign\tI-Algorithm\tdesign\tO\npattern\tI-Algorithm\tpattern\tO\nused\tO\tused\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nprevious\tO\tprevious\tO\nstates\tO\tstates\tO\nof\tO\tof\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nuseful\tO\tuseful\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\nUndo\tO\tUndo\tO\n\"\tO\t\"\tO\noperation\tO\toperation\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nSerialization\tO\tSerialization\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nof\tO\tof\tO\ntransforming\tO\ttransforming\tO\na\tO\ta\tO\ngraph\tB-Data_Structure\tgraph\tO\nof\tO\tof\tO\nobjects\tO\tobjects\tO\nto\tO\tto\tO\na\tO\ta\tO\nbyte\tB-Data_Structure\tbyte\tO\narray\tI-Data_Structure\tarray\tO\n,\tO\t,\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\non\tO\ton\tO\ndisk\tB-Device\tdisk\tO\n,\tO\t,\tO\nor\tO\tor\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nJVM\tB-Application\tJVM\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nnetwork\tO\tnetwork\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nmuch\tO\tmuch\tO\nin\tO\tin\tO\ncommon\tO\tcommon\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36603056\tO\t36603056\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36603056/\tO\thttps://stackoverflow.com/questions/36603056/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndifferent\tO\tdifferent\tO\n<select>\tB-HTML_XML_Tag\t<select>\tB-Code_Block\nin\tO\tin\tO\na\tO\ta\tO\nng-repeat\tB-HTML_XML_Tag\tng-repeat\tO\ndiv\tI-HTML_XML_Tag\tdiv\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nis\tO\tis\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nusers\tO\tusers\tO\nselect\tO\tselect\tO\nseveral\tO\tseveral\tO\ntimes\tO\ttimes\tO\na\tO\ta\tO\nsame\tO\tsame\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\nfilter\tO\tfilter\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4503\tI-Code_Block\tQ_4503\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nfilter\tO\tfilter\tO\nworks\tO\tworks\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n(\tO\t(\tO\nI\tO\tI\tO\ntested\tO\ttested\tO\nit\tO\tit\tO\nseparately\tO\tseparately\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nfilter\tO\tfilter\tO\nis\tO\tis\tO\nactive\tO\tactive\tO\n,\tO\t,\tO\noptions\tO\toptions\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\nselect\tO\tselect\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nonly\tO\tonly\tO\n\"\tO\t\"\tO\nfree\tO\tfree\tO\n\"\tO\t\"\tO\nattributes\tO\tattributes\tO\n(\tO\t(\tO\nit\tO\tit\tO\nmeans\tO\tmeans\tO\n,\tO\t,\tO\nattributes\tO\tattributes\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nyet\tO\tyet\tO\nselected\tO\tselected\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nDemo\tO\tDemo\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nexplicit\tO\texplicit\tO\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16350473\tO\t16350473\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16350473/\tO\thttps://stackoverflow.com/questions/16350473/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nstd::condition_variable\tB-Library_Class\tstd::condition_variable\tB-Code_Block\nis\tO\tis\tO\nvery\tO\tvery\tO\ndifficult\tO\tdifficult\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nspurious\tO\tspurious\tO\nwakeups\tO\twakeups\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nsometimes\tO\tsometimes\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nflags\tO\tflags\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1633\tI-Code_Block\tQ_1633\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nset\tO\tset\tO\nis_ready\tB-Variable_Name\tis_ready\tB-Code_Block\nto\tO\tto\tO\ntrue\tO\ttrue\tB-Code_Block\nbefore\tO\tbefore\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nnotify\tB-Library_Function\tnotify\tO\n(\tO\t(\tO\nnotify_one()\tB-Library_Function\tnotify_one()\tB-Code_Block\nor\tO\tor\tO\nnotify_all())\tB-Library_Function\tnotify_all())\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nwait\tO\twait\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1634\tI-Code_Block\tQ_1634\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nreason\tO\treason\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n(\tO\t(\tO\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nOk\tO\tOk\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nreally\tO\treally\tO\na\tO\ta\tO\nbad\tO\tbad\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1635\tI-Code_Block\tQ_1635\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nif\tO\tif\tO\ncondition_variable\tB-Library_Class\tcondition_variable\tB-Code_Block\nhad\tO\thad\tO\nchosen\tO\tchosen\tO\na\tO\ta\tO\nwaiting\tO\twaiting\tO\nduration\tO\tduration\tO\n(\tO\t(\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhether\tO\twhether\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\ntrue\tO\ttrue\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nprefer\tO\tprefer\tO\nchoose\tO\tchoose\tO\nit\tO\tit\tO\nmyself\tO\tmyself\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16350473\tO\t16350473\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16350473/\tO\thttps://stackoverflow.com/questions/16350473/\tO\n\t\n\t\nThe\tO\tThe\tO\npurpose\tO\tpurpose\tO\nof\tO\tof\tO\nstd::condition_variable\tB-Library_Class\tstd::condition_variable\tB-Code_Block\nis\tO\tis\tO\nto\tO\tto\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\ncondition\tO\tcondition\tO\nto\tO\tto\tO\nbecome\tO\tbecome\tO\ntrue\tB-Value\ttrue\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndesigned\tO\tdesigned\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\njust\tO\tjust\tO\na\tO\ta\tO\nreceiver\tO\treceiver\tO\nof\tO\tof\tO\na\tO\ta\tO\nnotify\tB-Library_Function\tnotify\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nconsumer\tO\tconsumer\tO\nthread\tO\tthread\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nqueue\tB-Data_Structure\tqueue\tO\nto\tO\tto\tO\nbecome\tO\tbecome\tO\nnon-empty\tO\tnon-empty\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2114\tI-Code_Block\tA_2114\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nconsumer\tO\tconsumer\tO\n(\tO\t(\tO\nget_from_queue\tB-Function_Name\tget_from_queue\tB-Code_Block\n)\tO\t)\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncondition\tB-Library_Class\tcondition\tO\nvariable\tI-Library_Class\tvariable\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncondition\tO\tcondition\tO\nthe_queue.empty()\tB-Library_Function\tthe_queue.empty()\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncondition\tB-Library_Class\tcondition\tO\nvariable\tI-Library_Class\tvariable\tO\ngives\tO\tgives\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nsleep\tO\tsleep\tO\nwhile\tO\twhile\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nwaiting\tO\twaiting\tO\n,\tO\t,\tO\nsimultaneously\tO\tsimultaneously\tO\nreleasing\tO\treleasing\tO\nthe\tO\tthe\tO\nmutex\tB-Library_Class\tmutex\tO\nand\tO\tand\tO\ndoing\tO\tdoing\tO\nso\tO\tso\tO\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\navoids\tO\tavoids\tO\nrace\tO\trace\tO\nconditions\tO\tconditions\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nmiss\tO\tmiss\tO\nwake\tO\twake\tO\nups\tO\tups\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncondition\tO\tcondition\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nwaiting\tO\twaiting\tO\non\tO\ton\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nprotected\tO\tprotected\tO\nby\tO\tby\tO\na\tO\ta\tO\nmutex\tB-Library_Class\tmutex\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nyou\tO\tyou\tO\nrelease\tO\trelease\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nwait\tO\twait\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncondition\tB-Library_Class\tcondition\tO\nvariable\tI-Library_Class\tvariable\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncondition\tO\tcondition\tO\nrarely\tO\trarely\tO\n(\tO\t(\tO\nif\tO\tif\tO\never\tO\tever\tO\n)\tO\t)\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\natomic\tB-Data_Type\tatomic\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nalways\tO\talways\tO\naccessing\tO\taccessing\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nmutex\tB-Library_Class\tmutex\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16350473\tO\t16350473\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16350473/\tO\thttps://stackoverflow.com/questions/16350473/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncode\tO\tcode\tO\nthis\tO\tthis\tO\neither\tO\teither\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nUsing\tO\tUsing\tO\natomics\tB-Data_Type\tatomics\tO\nand\tO\tand\tO\na\tO\ta\tO\npolling\tO\tpolling\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\na\tO\ta\tO\ncondition_variable\tB-Library_Class\tcondition_variable\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncoded\tO\tcoded\tO\nit\tO\tit\tO\nboth\tO\tboth\tO\nways\tO\tways\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nmy\tO\tmy\tO\nsystem\tO\tsystem\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nmonitor\tO\tmonitor\tO\nin\tO\tin\tO\nreal\tO\treal\tO\ntime\tO\ttime\tO\nhow\tO\thow\tO\nmuch\tO\tmuch\tO\ncpu\tB-Device\tcpu\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npolling\tO\tpolling\tO\nloop\tO\tloop\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2115\tI-Code_Block\tA_2115\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFor\tO\tFor\tO\nme\tO\tme\tO\nthis\tO\tthis\tO\ntakes\tO\ttakes\tO\n30\tO\t30\tO\nseconds\tO\tseconds\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nexecuting\tO\texecuting\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ntakes\tO\ttakes\tO\nabout\tO\tabout\tO\n99.6\tO\t99.6\tO\n%\tO\t%\tO\nof\tO\tof\tO\na\tO\ta\tO\ncpu\tB-Device\tcpu\tO\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncondition_variable\tB-Library_Class\tcondition_variable\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2116\tI-Code_Block\tA_2116\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nsame\tO\tsame\tO\nbehavior\tO\tbehavior\tO\nexcept\tO\texcept\tO\nthat\tO\tthat\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\n30\tO\t30\tO\nsecond\tO\tsecond\tO\nexecution\tO\texecution\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\ntaking\tO\ttaking\tO\n0.0\tO\t0.0\tO\n%\tO\t%\tO\ncpu\tB-Device\tcpu\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nwriting\tO\twriting\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nexecute\tO\texecute\tO\non\tO\ton\tO\na\tO\ta\tO\nbattery\tB-Device\tbattery\tO\npowered\tO\tpowered\tO\ndevice\tO\tdevice\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlatter\tO\tlatter\tO\nis\tO\tis\tO\nnearly\tO\tnearly\tO\ninfinitely\tO\tinfinitely\tO\neasier\tO\teasier\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbattery\tB-Device\tbattery\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nadmittedly\tO\tadmittedly\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhad\tO\thad\tO\na\tO\ta\tO\nvery\tO\tvery\tO\npoor\tO\tpoor\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nstd::condition_variable\tB-Library_Class\tstd::condition_variable\tB-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ninefficiency\tO\tinefficiency\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\npolling\tO\tpolling\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nin\tO\tin\tO\npractice\tO\tpractice\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nvendor\tO\tvendor\tO\nought\tO\tought\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nout\tO\tout\tO\nof\tO\tof\tO\nbusiness\tO\tbusiness\tO\nfairly\tO\tfairly\tO\nquickly\tO\tquickly\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n\t\nFor\tO\tFor\tO\ngrins\tO\tgrins\tO\nI\tO\tI\tO\naugmented\tO\taugmented\tO\nmy\tO\tmy\tO\ncondition_variable\tB-Library_Class\tcondition_variable\tO\nwait\tO\twait\tO\nloop\tO\tloop\tO\nwith\tO\twith\tO\na\tO\ta\tO\nspurious\tO\tspurious\tO\nwakeup\tO\twakeup\tO\ndetector\tO\tdetector\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nran\tO\tran\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\none\tO\tone\tO\nspurious\tO\tspurious\tO\nwakeup\tO\twakeup\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nnot\tO\tnot\tO\nguaranteed\tO\tguaranteed\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\ndemonstrate\tO\tdemonstrate\tO\nwhat\tO\twhat\tO\na\tO\ta\tO\nquality\tO\tquality\tO\nimplementation\tO\timplementation\tO\ncan\tO\tcan\tO\nachieve\tO\tachieve\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32816393\tO\t32816393\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32816393/\tO\thttps://stackoverflow.com/questions/32816393/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n5000\tO\t5000\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nDB\tO\tDB\tO\ntable\tB-Data_Structure\ttable\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\napply\tO\tapply\tO\njQuery\tB-Library\tjQuery\tO\nAutosuggestion\tO\tAutosuggestion\tO\nFilter\tO\tFilter\tO\non\tO\ton\tO\nfrontend\tO\tfrontend\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nrequirement\tO\trequirement\tO\nimplemented\tO\timplemented\tO\njs\tB-Language\tjs\tO\n&\tO\t&\tO\nCSS\tB-Language\tCSS\tO\n\t\nselect2.css\tB-File_Name\tselect2.css\tO\nand\tO\tand\tO\nselect2.js\tB-File_Name\tselect2.js\tO\nwith\tO\twith\tO\njquery-2.1.1.js\tB-File_Name\tjquery-2.1.1.js\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nunfortunately\tO\tunfortunately\tO\nafter\tO\tafter\tO\nimplementing\tO\timplementing\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nAutosuggestion\tB-User_Interface_Element\tAutosuggestion\tO\nFilter\tI-User_Interface_Element\tFilter\tO\nfrom\tO\tfrom\tO\nfront-end\tO\tfront-end\tO\n,\tO\t,\tO\nhere\tO\there\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\ndelay\tO\tdelay\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nso\tO\tso\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nload\tO\tload\tO\nvery\tO\tvery\tO\nfast\tO\tfast\tO\nand\tO\tand\tO\nno\tO\tno\tO\ndelay\tO\tdelay\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32816393\tO\t32816393\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32816393/\tO\thttps://stackoverflow.com/questions/32816393/\tO\n\t\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nlimiting\tO\tlimiting\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nrecords\tO\trecords\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfront-end\tO\tfront-end\tO\n?\tO\t?\tO\n\t\nQuery\tO\tQuery\tO\nyour\tO\tyour\tO\ndatabase\tO\tdatabase\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\n10\tO\t10\tO\nrecords\tO\trecords\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nonly\tO\tonly\tO\nthese\tO\tthese\tO\nrecords\tO\trecords\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nFront-End\tO\tFront-End\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32816393\tO\t32816393\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32816393/\tO\thttps://stackoverflow.com/questions/32816393/\tO\n\t\n\t\nBreak\tO\tBreak\tO\ndown\tO\tdown\tO\nyour\tO\tyour\tO\nresult\tO\tresult\tO\nfrom\tO\tfrom\tO\nDB\tO\tDB\tO\nin\tO\tin\tO\nto\tO\tto\tO\nseparate\tO\tseparate\tO\nlists\tB-Data_Structure\tlists\tO\nlike\tO\tlike\tO\ni\tO\ti\tO\nwill\tO\twill\tO\nsay\tO\tsay\tO\nin\tO\tin\tO\nalphabetical\tO\talphabetical\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\n5000\tO\t5000\tO\nrecord\tO\trecord\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\ncorresponding\tO\tcorresponding\tO\nrequest\tO\trequest\tO\nthen\tO\tthen\tO\ncache\tO\tcache\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nnow\tO\tnow\tO\nchallenge\tO\tchallenge\tO\nis\tO\tis\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nstring\tB-Data_Type\tstring\tO\nand\tO\tand\tO\nfetch\tO\tfetch\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6493198\tO\t6493198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6493198/\tO\thttps://stackoverflow.com/questions/6493198/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nreally\tO\treally\tO\nbad\tO\tbad\tO\nwith\tO\twith\tO\nhtml/css\tB-Language\thtml/css\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nfiddle\tB-Application\tfiddle\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\ntable\tB-User_Interface_Element\ttable\tO\nfiddle\tB-Application\tfiddle\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntd\tB-HTML_XML_Tag\ttd\tO\nrows\tB-User_Interface_Element\trows\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwidth\tB-Variable_Name\twidth\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\n200\tB-Value\t200\tO\npx\tI-Value\tpx\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\n50\tB-Value\t50\tO\npx\tI-Value\tpx\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nrows\tB-User_Interface_Element\trows\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_482\tI-Code_Block\tQ_482\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCSS\tB-Language\tCSS\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_483\tI-Code_Block\tQ_483\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6493198\tO\t6493198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6493198/\tO\thttps://stackoverflow.com/questions/6493198/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nwriting\tO\twriting\tO\nan\tO\tan\tO\ninline\tO\tinline\tO\nstyle\tB-HTML_XML_Tag\tstyle\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nHTML\tB-Language\tHTML\tO\nmarkup\tO\tmarkup\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_728\tI-Code_Block\tA_728\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6493198\tO\t6493198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6493198/\tO\thttps://stackoverflow.com/questions/6493198/\tO\n\t\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\non\tO\ton\tO\nevery\tO\tevery\tO\n<td>,\tB-HTML_XML_Tag\t<td>,\tB-Code_Block\njust\tO\tjust\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n<th>\tB-HTML_XML_Tag\t<th>\tB-Code_Block\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nanswers\tO\tanswers\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nclass\tO\tclass\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n<th>\tB-HTML_XML_Tag\t<th>\tB-Code_Block\nand\tO\tand\tO\napply\tO\tapply\tO\nthe\tO\tthe\tO\nwidth\tB-Library_Variable\twidth\tO\nstyles\tO\tstyles\tO\nthat\tO\tthat\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_729\tI-Code_Block\tA_729\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nCSS\tB-Language\tCSS\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_730\tI-Code_Block\tA_730\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJust\tO\tJust\tO\nmy\tO\tmy\tO\nstyle\tO\tstyle\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nfan\tO\tfan\tO\nof\tO\tof\tO\ninline\tO\tinline\tO\nstyles\tO\tstyles\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsimple\tO\tsimple\tO\nfact\tO\tfact\tO\nyou\tO\tyou\tO\nMAY\tO\tMAY\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstyle\tO\tstyle\tO\nthe\tO\tthe\tO\nheaders\tO\theaders\tO\ndifferently\tO\tdifferently\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\ninline\tO\tinline\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37291839\tO\t37291839\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37291839/\tO\thttps://stackoverflow.com/questions/37291839/\tO\n\t\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\nlaravel\tB-Library\tlaravel\tO\nsession\tO\tsession\tO\nvariable\tO\tvariable\tO\nsent\tO\tsent\tO\nby\tO\tby\tO\ncontroller\tO\tcontroller\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4666\tI-Code_Block\tQ_4666\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nshowing\tO\tshowing\tO\nthis\tO\tthis\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nview\tO\tview\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4667\tI-Code_Block\tQ_4667\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\nthis\tO\tthis\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\ntables\tB-User_Interface_Element\ttables\tO\n)\tO\t)\tO\nevery\tO\tevery\tO\n2\tO\t2\tO\nseconds\tO\tseconds\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39087401\tO\t39087401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39087401/\tO\thttps://stackoverflow.com/questions/39087401/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nwritten\tO\twritten\tO\na\tO\ta\tO\nC#\tB-Language\tC#\tO\npowershell\tB-Application\tpowershell\tO\ncmdlet\tO\tcmdlet\tO\nthat\tO\tthat\tO\nfills\tO\tfills\tO\nup\tO\tup\tO\ncustom\tO\tcustom\tO\nobjects\tO\tobjects\tO\nfrom\tO\tfrom\tO\njson\tB-File_Type\tjson\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\nother\tO\tother\tO\nC#\tB-Language\tC#\tO\ncmdlets\tO\tcmdlets\tO\nthat\tO\tthat\tO\nfollow\tO\tfollow\tO\n\t\nThanks\tO\tThanks\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6465189\tO\t6465189\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6465189/\tO\thttps://stackoverflow.com/questions/6465189/\tO\n\t\n\t\nCan\tO\tCan\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\nblocked\tO\tblocked\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nadblock\tO\tadblock\tO\nlike\tO\tlike\tO\nAdblock\tB-Application\tAdblock\tO\nPlus\tI-Application\tPlus\tO\nor\tO\tor\tO\nothers\tO\tothers\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6465189\tO\t6465189\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6465189/\tO\thttps://stackoverflow.com/questions/6465189/\tO\n\t\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nblocked\tO\tblocked\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\nas\tO\tas\tO\na\tO\ta\tO\nbanner\tO\tbanner\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nURL\tO\tURL\tO\nmatches\tO\tmatches\tO\nthe\tO\tthe\tO\nblack\tO\tblack\tO\nlist\tO\tlist\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nhttp://domain.com/ads/\tB-Code_Block\thttp://domain.com/ads/\tB-Code_Block\n...\tI-Code_Block\t...\tI-Code_Block\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nAdBlock\tB-Application\tAdBlock\tO\nallows\tO\tallows\tO\nto\tO\tto\tO\nblock\tO\tblock\tO\nFlash\tB-Application\tFlash\tO\nembeds\tO\tembeds\tO\nfrom\tO\tfrom\tO\nroll-over\tO\troll-over\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nbrowsers\tB-Application\tbrowsers\tO\n,\tO\t,\tO\nexpecially\tO\texpecially\tO\nmobile\tB-Device\tmobile\tO\nones\tO\tones\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\ndisable\tO\tdisable\tO\nall\tO\tall\tO\nFlash\tB-Application\tFlash\tO\nembeds\tO\tembeds\tO\nuntil\tO\tuntil\tO\nuser\tO\tuser\tO\nmanually\tO\tmanually\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\nparticular\tO\tparticular\tO\nembed\tO\tembed\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nand\tO\tand\tO\nstart\tO\tstart\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25436038\tO\t25436038\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25436038/\tO\thttps://stackoverflow.com/questions/25436038/\tO\n\t\n\t\nMicrosoft\tB-Organization\tMicrosoft\tO\nannounced\tO\tannounced\tO\nthe\tO\tthe\tO\navailability\tO\tavailability\tO\nof\tO\tof\tO\nAzure\tB-Application\tAzure\tO\nDocumentDB\tI-Application\tDocumentDB\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2889\tI-Code_Block\tQ_2889\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nreally\tO\treally\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\ntransactional\tO\ttransactional\tO\nexecution\tO\texecution\tO\nof\tO\tof\tO\nJavaScript\tB-Language\tJavaScript\tO\nlogic\tO\tlogic\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nSounds\tO\tSounds\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\napproach\tO\tapproach\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nof\tO\tof\tO\nPostgreSQL\tB-Application\tPostgreSQL\tO\nNoSQL\tI-Application\tNoSQL\tO\n.\tO\t.\tO\n\t\nAnyone\tO\tAnyone\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ntechnological\tO\ttechnological\tO\nbasis\tO\tbasis\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nAzure\tB-Application\tAzure\tO\nDocumentDB\tI-Application\tDocumentDB\tO\nservice\tO\tservice\tO\n?\tO\t?\tO\n\t\nSQL\tB-Language\tSQL\tO\nServer\tB-Application\tServer\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25436038\tO\t25436038\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25436038/\tO\thttps://stackoverflow.com/questions/25436038/\tO\n\t\n\t\nDocumentDB\tB-Application\tDocumentDB\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nbuilt\tO\tbuilt\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nground\tO\tground\tO\nup\tO\tup\tO\nas\tO\tas\tO\nan\tO\tan\tO\nentirely\tO\tentirely\tO\nnew\tO\tnew\tO\ndatabase\tO\tdatabase\tO\nspecifically\tO\tspecifically\tO\ndesigned\tO\tdesigned\tO\nfor\tO\tfor\tO\nJSON\tB-File_Type\tJSON\tO\nand\tO\tand\tO\none\tO\tone\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\ndeep\tO\tdeep\tO\nintegration\tO\tintegration\tO\nwith\tO\twith\tO\nJavaScript\tB-Language\tJavaScript\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nshare\tO\tshare\tO\nanything\tO\tanything\tO\nwith\tO\twith\tO\nSQL\tB-Language\tSQL\tO\nServer\tB-Application\tServer\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36272581\tO\t36272581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36272581/\tO\thttps://stackoverflow.com/questions/36272581/\tO\n\t\n\t\nUsing\tO\tUsing\tO\na\tO\ta\tO\nKnockBack\tB-Library_Class\tKnockBack\tO\nViewModel\tI-Library_Class\tViewModel\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncomputed\tO\tcomputed\tO\nobservable\tO\tobservable\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nunderlying\tO\tunderlying\tO\nBackbone\tB-Library\tBackbone\tO\nmodel\tO\tmodel\tO\n's\tO\t's\tO\nmethods\tO\tmethods\tO\n?\tO\t?\tO\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nin\tO\tin\tO\njavascript\tB-Language\tjavascript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4461\tI-Code_Block\tQ_4461\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nKnockout\tB-Library\tKnockout\tO\nmarkup\tO\tmarkup\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4462\tI-Code_Block\tQ_4462\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4463\tI-Code_Block\tQ_4463\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nor\tO\tor\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nobservable\tO\tobservable\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nViewModel\tB-Library_Class\tViewModel\tO\nmanually\tO\tmanually\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4464\tI-Code_Block\tQ_4464\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\njsfiddles\tB-Application\tjsfiddles\tO\n:\tO\t:\tO\nwithout\tO\twithout\tO\nobservable\tO\tobservable\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nobservable\tO\tobservable\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36272581\tO\t36272581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36272581/\tO\thttps://stackoverflow.com/questions/36272581/\tO\n\t\n\t\nA\tO\tA\tO\nlittle\tO\tlittle\tO\npreamble\tO\tpreamble\tO\n:\tO\t:\tO\nKnockback\tB-Library\tKnockback\tO\nputs\tO\tputs\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nin\tO\tin\tO\nMVVM\tB-Algorithm\tMVVM\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nKnockout\tB-Library\tKnockout\tO\nis\tO\tis\tO\nreally\tO\treally\tO\njust\tO\tjust\tO\nVVM\tB-Algorithm\tVVM\tO\n.\tO\t.\tO\n\t\nKnockback\tB-Library\tKnockback\tO\nalso\tO\talso\tO\ngives\tO\tgives\tO\nyou\tO\tyou\tO\nsome\tO\tsome\tO\nautomatic\tO\tautomatic\tO\nsynchronization\tO\tsynchronization\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnice\tO\tnice\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nyou\tO\tyou\tO\nstill\tO\tstill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nviewmodel\tB-Library_Class\tviewmodel\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\npieces\tO\tpieces\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nviewmodel\tB-Library_Class\tviewmodel\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\na\tO\ta\tO\nKnockout\tB-Library\tKnockout\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nBootstrap\tB-Library\tBootstrap\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nput\tO\tput\tO\nviewmodel\tB-Library_Class\tviewmodel\tO\npieces\tO\tpieces\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\nwhether\tO\twhether\tO\nvalidation\tO\tvalidation\tO\nis\tO\tis\tO\na\tO\ta\tO\nviewmodel\tB-Library_Class\tviewmodel\tO\nbehavior\tO\tbehavior\tO\nor\tO\tor\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsay\tO\tsay\tO\nviewmodel\tB-Library_Class\tviewmodel\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nremove\tO\tremove\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nand\tO\tand\tO\ndefine\tO\tdefine\tO\na\tO\ta\tO\ncomputed\tO\tcomputed\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nevent\tO\tevent\tO\nhandler\tO\thandler\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\non\tO\ton\tO\nchange\tO\tchange\tO\n.\tO\t.\tO\n\t\nKnockback\tB-Library\tKnockback\tO\nwill\tO\twill\tO\ndutifully\tO\tdutifully\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nviewmodel\tB-Library_Class\tviewmodel\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5182\tI-Code_Block\tQ_5182\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5183\tI-Code_Block\tQ_5183\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5184\tI-Code_Block\tQ_5184\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44939317\tO\t44939317\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44939317/\tO\thttps://stackoverflow.com/questions/44939317/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nTCP\tO\tTCP\tO\nKeep\tO\tKeep\tO\nAlive\tO\tAlive\tO\nconnection\tO\tconnection\tO\noptions\tO\toptions\tO\non\tO\ton\tO\npsql.exe\tB-File_Name\tpsql.exe\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\nconnecting\tO\tconnecting\tO\nto\tO\tto\tO\nAWS\tB-Application\tAWS\tO\nRedshift\tI-Application\tRedshift\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nset\tB-Code_Block\tset\tO\nPGOPTIONS='-c\tI-Code_Block\tPGOPTIONS='-c\tO\ntcp_keepalives_idle\tI-Code_Block\ttcp_keepalives_idle\tO\n=\tI-Code_Block\t=\tO\n30\tI-Code_Block\t30\tO\n-c\tI-Code_Block\t-c\tO\ntcp_keepalives_interval\tI-Code_Block\ttcp_keepalives_interval\tO\n=\tI-Code_Block\t=\tO\n1\tI-Code_Block\t1\tO\n-c\tI-Code_Block\t-c\tO\ntcp_keepalives_count=10\tI-Code_Block\ttcp_keepalives_count=10\tO\n'\tB-Code_Block\t'\tO\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nerrors\tO\terrors\tO\nfrom\tO\tfrom\tO\nRedshift\tB-Application\tRedshift\tO\n-\tO\t-\tO\nunknown\tB-Error_Name\tunknown\tO\nparameters\tI-Error_Name\tparameters\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nWindows\tB-Application\tWindows\tO\nRegistry\tI-Application\tRegistry\tO\nEditor\tI-Application\tEditor\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nTCP\tO\tTCP\tO\nKeep\tO\tKeep\tO\nAlive\tO\tAlive\tO\nparameters\tO\tparameters\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nreboot\tO\treboot\tO\n,\tO\t,\tO\nno\tO\tno\tO\neffect\tO\teffect\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nvia\tO\tvia\tO\npsql\tB-Library\tpsql\tO\nany\tO\tany\tO\nmoderately\tO\tmoderately\tO\nlong\tO\tlong\tO\nSQL\tB-Language\tSQL\tO\nstatement\tO\tstatement\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nVacuum\tB-Library_Function\tVacuum\tO\n,\tO\t,\tO\nCopy\tB-Library_Function\tCopy\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nvia\tO\tvia\tO\nJDBC\tB-Library\tJDBC\tO\n,\tO\t,\tO\nODBC\tB-Library\tODBC\tO\nand\tO\tand\tO\nNpgSQL\tB-Library\tNpgSQL\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nprefer\tO\tprefer\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nRedshift\tB-Application\tRedshift\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\npsql.exe\tB-File_Name\tpsql.exe\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\noption\tO\toption\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nshort\tO\tshort\tO\nqueries\tO\tqueries\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38051757\tO\t38051757\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38051757/\tO\thttps://stackoverflow.com/questions/38051757/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\non\tO\ton\tO\nDraft-JS\tB-Library\tDraft-JS\tO\nand\tO\tand\tO\nable\tO\table\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ndecent\tO\tdecent\tO\nenough\tO\tenough\tO\ntext\tB-Application\ttext\tO\neditor\tI-Application\teditor\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nconsumption\tO\tconsumption\tO\n,\tO\t,\tO\nBut\tO\tBut\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nUL\tB-HTML_XML_Tag\tUL\tO\nlist\tB-Data_Structure\tlist\tO\nwith\tO\twith\tO\nLI\tB-HTML_XML_Tag\tLI\tO\nitems\tO\titems\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nTextarea\tB-HTML_XML_Tag\tTextarea\tO\nby\tO\tby\tO\ncoding\tO\tcoding\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nImport\tO\tImport\tO\nHTML\tB-Language\tHTML\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nadding\tO\tadding\tO\nmy\tO\tmy\tO\nHTML\tB-Language\tHTML\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nExporting\tO\tExporting\tO\nit\tO\tit\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\neditor\tB-Variable_Name\teditor\tO\nstate\tI-Variable_Name\tstate\tO\n,\tO\t,\tO\nBut\tO\tBut\tO\nUndo\tO\tUndo\tO\nand\tO\tand\tO\nRedo\tO\tRedo\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmay\tO\tmay\tO\nsound\tO\tsound\tO\nstrange\tO\tstrange\tO\nbut\tO\tbut\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nhighly\tO\thighly\tO\nappreciated\tO\tappreciated\tO\nas\tO\tas\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\ngood\tO\tgood\tO\nresources\tO\tresources\tO\nof\tO\tof\tO\nDraft-JS\tB-Library\tDraft-JS\tO\n\t\nMy\tO\tMy\tO\nCode\tO\tCode\tO\nfor\tO\tfor\tO\nadding\tO\tadding\tO\nhtml\tB-Language\thtml\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nusing\tO\tusing\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4793\tI-Code_Block\tQ_4793\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntaking\tO\ttaking\tO\nhtml\tB-Language\thtml\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\neditor\tB-Variable_Name\teditor\tO\nstate\tI-Variable_Name\tstate\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nappend\tO\tappend\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\nhtml\tB-Language\thtml\tO\nstring\tB-Data_Type\tstring\tO\nand\tO\tand\tO\nregenerate\tO\tregenerate\tO\nthe\tO\tthe\tO\ncontent\tB-Variable_Name\tcontent\tO\nstate\tI-Variable_Name\tstate\tO\nfrom\tO\tfrom\tO\nhtml\tB-Language\thtml\tO\nand\tO\tand\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\neditor\tB-Variable_Name\teditor\tO\nstate\tI-Variable_Name\tstate\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nYou.\tO\tYou.\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44970574\tO\t44970574\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44970574/\tO\thttps://stackoverflow.com/questions/44970574/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbelow\tO\tbelow\tO\nquery\tO\tquery\tO\nin\tO\tin\tO\nmysql\tB-Application\tmysql\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nbranch\tB-Variable_Name\tbranch\tO\nid\tI-Variable_Name\tid\tO\nand\tO\tand\tO\nyear\tB-Variable_Name\tyear\tO\nof\tO\tof\tO\nfinance\tB-Variable_Name\tfinance\tO\ntype\tI-Variable_Name\ttype\tO\nfrom\tO\tfrom\tO\nbranch_master\tB-Variable_Name\tbranch_master\tO\nare\tO\tare\tO\nequal\tO\tequal\tO\nwith\tO\twith\tO\nbranch\tB-Variable_Name\tbranch\tO\nid\tI-Variable_Name\tid\tO\nand\tO\tand\tO\nyear\tB-Variable_Name\tyear\tO\nof\tO\tof\tO\nmanager\tB-Variable_Name\tmanager\tO\nthen\tO\tthen\tO\nupdate\tO\tupdate\tO\nstatus\tB-Variable_Name\tstatus\tO\nin\tO\tin\tO\nmanager\tB-Variable_Name\tmanager\tO\ntable\tB-Data_Structure\ttable\tO\nagainst\tO\tagainst\tO\nbranch\tB-Variable_Name\tbranch\tO\nid\tI-Variable_Name\tid\tO\nin\tO\tin\tO\nmanager\tB-Variable_Name\tmanager\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5857\tI-Code_Block\tQ_5857\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\ngetting\tO\tgetting\tO\nerror\tO\terror\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44970574\tO\t44970574\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44970574/\tO\thttps://stackoverflow.com/questions/44970574/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\ntypical\tO\ttypical\tO\nMySQL\tB-Application\tMySQL\tO\nthing\tO\tthing\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nusually\tO\tusually\tO\nbe\tO\tbe\tO\ncircumvented\tO\tcircumvented\tO\nby\tO\tby\tO\nselecting\tO\tselecting\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\nderived\tO\tderived\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6525\tI-Code_Block\tA_6525\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nuse\tO\tuse\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6526\tI-Code_Block\tA_6526\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncomplete\tO\tcomplete\tO\nstatement\tO\tstatement\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6527\tI-Code_Block\tA_6527\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44970574\tO\t44970574\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44970574/\tO\thttps://stackoverflow.com/questions/44970574/\tO\n\t\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nEXISTS\tB-Code_Block\tEXISTS\tB-Code_Block\noperator\tO\toperator\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6524\tI-Code_Block\tA_6524\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nquery\tO\tquery\tO\nuses\tO\tuses\tO\nan\tO\tan\tO\nadditional\tO\tadditional\tO\nnesting\tO\tnesting\tO\nlevel\tO\tlevel\tO\n,\tO\t,\tO\nas\tO\tas\tO\nproposed\tO\tproposed\tO\nby\tO\tby\tO\n@Thorsten\tB-User_Name\t@Thorsten\tO\n,\tO\t,\tO\nas\tO\tas\tO\na\tO\ta\tO\nmeans\tO\tmeans\tO\nto\tO\tto\tO\ncircumvent\tO\tcircumvent\tO\nthe\tO\tthe\tO\nTable\tB-Data_Structure\tTable\tO\nis\tO\tis\tO\nspecified\tO\tspecified\tO\ntwice\tO\ttwice\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nDemo\tO\tDemo\tO\nhere\tO\there\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6928871\tO\t6928871\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6928871/\tO\thttps://stackoverflow.com/questions/6928871/\tO\n\t\n\t\nOverview\tO\tOverview\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nwritten\tO\twritten\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nthat\tO\tthat\tO\nallows\tO\tallows\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\na\tO\ta\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nsubmit\tO\tsubmit\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nserver\tB-Device\tserver\tO\nand\tO\tand\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsoftware\tO\tsoftware\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\non\tO\ton\tO\nDB2\tB-Application\tDB2\tO\nor\tO\tor\tO\nMySQL\tB-Application\tMySQL\tO\n.\tO\t.\tO\n\t\nProblem\tO\tProblem\tO\n:\tO\t:\tO\n\t\nWe\tO\tWe\tO\n've\tO\t've\tO\nhad\tO\thad\tO\nissues\tO\tissues\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nDB2\tB-Application\tDB2\tO\nversion\tO\tversion\tO\nwhere\tO\twhere\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nhas\tO\thas\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nfailed\tO\tfailed\tO\nbecause\tO\tbecause\tO\ntheir\tO\ttheir\tO\nuser\tO\tuser\tO\nprofile\tO\tprofile\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ndisabled\tO\tdisabled\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nquery\tO\tquery\tO\non\tO\ton\tO\nDB2\tB-Application\tDB2\tO\n(\tO\t(\tO\non\tO\ton\tO\nan\tO\tan\tO\nIBM\tB-Operating_System\tIBM\tO\ni)\tI-Operating_System\ti)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nprofile\tO\tprofile\tO\nname\tO\tname\tO\nand\tO\tand\tO\npassword\tO\tpassword\tO\nare\tO\tare\tO\nprovided\tO\tprovided\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconnection\tO\tconnection\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nSecurity\tO\tSecurity\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\ncan\tO\tcan\tO\nspecify\tO\tspecify\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nprofile\tO\tprofile\tO\nis\tO\tis\tO\ndisabled\tO\tdisabled\tO\nafter\tO\tafter\tO\ntwo\tO\ttwo\tO\nor\tO\tor\tO\nthree\tO\tthree\tO\nincorrect\tO\tincorrect\tO\nlogins\tO\tlogins\tO\n.\tO\t.\tO\n\t\nQuestion\tO\tQuestion\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ndebugged\tO\tdebugged\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nbeing\tO\tbeing\tO\nsubmitted\tO\tsubmitted\tO\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\npassword\tO\tpassword\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\nthe\tO\tthe\tO\nknock-on\tO\tknock-on\tO\neffect\tO\teffect\tO\nof\tO\tof\tO\ndisabling\tO\tdisabling\tO\ntheir\tO\ttheir\tO\nprofile\tO\tprofile\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nfurther\tO\tfurther\tO\ninspection\tO\tinspection\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\n've\tO\t've\tO\ninspected\tO\tinspected\tO\nthe\tO\tthe\tO\nlogs\tB-File_Type\tlogs\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Device\tserver\tO\n(\tO\t(\tO\nwhile\tO\twhile\tO\ndebugging\tO\tdebugging\tO\nline\tO\tline\tO\nby\tO\tby\tO\nline\tO\tline\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nis\tO\tis\tO\nsubmitted\tO\tsubmitted\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nTADOQuery.sql.add()\tB-Library_Function\tTADOQuery.sql.add()\tO\n,\tO\t,\tO\nand\tO\tand\tO\nagain\tO\tagain\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nTADOQuery\tB-Library_Class\tTADOQuery\tO\n's\tO\t's\tO\nactive\tB-Library_Variable\tactive\tO\npropery\tO\tpropery\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\ntrue\tB-Value\ttrue\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npoint\tO\tpoint\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsubmitted\tO\tsubmitted\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Device\tserver\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_525\tI-Code_Block\tQ_525\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\ntherefore\tO\ttherefore\tO\nquite\tO\tquite\tO\nsimple\tO\tsimple\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nTADOQuery.sql.add()\tB-Library_Function\tTADOQuery.sql.add()\tO\nmethod\tO\tmethod\tO\nsubmit\tO\tsubmit\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\n(\tO\t(\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nsql\tB-Language\tsql\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nTADOQuery\tB-Library_Class\tTADOQuery\tO\n's\tO\t's\tO\nsql\tB-Library_Variable\tsql\tO\nproperty\tO\tproperty\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\nWhat\tO\tWhat\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nthe\tO\tthe\tO\nsql\tB-Language\tsql\tO\nbeing\tO\tbeing\tO\nsubmitted\tO\tsubmitted\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nadd()\tB-Library_Function\tadd()\tO\nmethod\tO\tmethod\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nthose\tO\tthose\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nextra\tO\textra\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nlogs\tB-File_Type\tlogs\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nexit\tO\texit\tO\npoint\tO\tpoint\tO\nlogs\tO\tlogs\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nIBM\tB-Operating_System\tIBM\tO\ni\tI-Operating_System\ti\tO\nshow\tO\tshow\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nadoqry.sql.add\tB-Library_Function\tadoqry.sql.add\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nis\tO\tis\tO\nrun\tO\trun\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nDatabase\tO\tDatabase\tO\nServer-SQL\tO\tServer-SQL\tO\nRequests\tO\tRequests\tO\n\"\tO\t\"\tO\nexit\tO\texit\tO\npoint\tO\tpoint\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nvia\tO\tvia\tO\nfunction\tO\tfunction\tO\n\"\tO\t\"\tO\nPrepare\tO\tPrepare\tO\nand\tO\tand\tO\nDescribe\tO\tDescribe\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nadoqry.active\tB-Code_Block\tadoqry.active\tO\n:=\tI-Code_Block\t:=\tO\ntrue\tI-Code_Block\ttrue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nquery\tO\tquery\tO\ngoes\tO\tgoes\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nexit\tO\texit\tO\npoint\tO\tpoint\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nOpen/Describe\tO\tOpen/Describe\tO\n\"\tO\t\"\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nfamiliar\tO\tfamiliar\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nIBM\tB-Operating_System\tIBM\tO\ni\tI-Operating_System\ti\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\n-\tO\t-\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\nincluding\tO\tincluding\tO\nthat\tO\tthat\tO\ninformation\tO\tinformation\tO\nas\tO\tas\tO\nproof\tO\tproof\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntraced\tO\ttraced\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nbeing\tO\tbeing\tO\nsubmitted\tO\tsubmitted\tO\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreal\tO\treal\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nTADOQuery\tB-Library\tTADOQuery\tO\n's\tO\t's\tO\nsql.add()\tB-Library_Function\tsql.add()\tO\nprocessing\tO\tprocessing\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6928871\tO\t6928871\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6928871/\tO\thttps://stackoverflow.com/questions/6928871/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nyour\tO\tyour\tO\ndescription\tO\tdescription\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nI\tO\tI\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nConnectionString\tB-Library_Variable\tConnectionString\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nADOQuery\tB-Library_Class\tADOQuery\tO\n.\tO\t.\tO\n\t\nDoing\tO\tDoing\tO\nthis\tO\tthis\tO\ncombines\tO\tcombines\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nlogin\tO\tlogin\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nrunning\tO\trunning\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nhas\tO\thas\tO\nundesirable\tO\tundesirable\tO\nside\tO\tside\tO\neffects\tO\teffects\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\ncredentials\tO\tcredentials\tO\nare\tO\tare\tO\ninvalid\tO\tinvalid\tO\n.\tO\t.\tO\n\t\nSeparate\tO\tSeparate\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nlogin\tO\tlogin\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nADOConnection\tB-Library_Class\tADOConnection\tO\n.\tO\t.\tO\n\t\nSpecify\tO\tSpecify\tO\nthe\tO\tthe\tO\nConnectionString\tB-Library_Variable\tConnectionString\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nADOConnection\tB-Library_Class\tADOConnection\tO\nand\tO\tand\tO\nassign\tO\tassign\tO\nthe\tO\tthe\tO\nADOConnection\tB-Library_Class\tADOConnection\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nADOQuery.Connection\tB-Library_Variable\tADOQuery.Connection\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncontrol\tO\tcontrol\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nlogin\tO\tlogin\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\ncatch\tO\tcatch\tO\nlogins\tO\tlogins\tO\nwith\tO\twith\tO\nbad\tO\tbad\tO\ncredentials\tO\tcredentials\tO\n.\tO\t.\tO\n\t\nAdditionally\tO\tAdditionally\tO\nthe\tO\tthe\tO\nADOConnection.Open\tB-Library_Function\tADOConnection.Open\tO\nmethod\tO\tmethod\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nusername\tO\tusername\tO\nand\tO\tand\tO\npassword\tO\tpassword\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nConnectionString\tB-Library_Variable\tConnectionString\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nanswer\tO\tanswer\tO\nyou\tO\tyou\tO\nspecific\tO\tspecific\tO\nquestions\tO\tquestions\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\napproach\tO\tapproach\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nprofile\tO\tprofile\tO\nbeing\tO\tbeing\tO\ndisabled\tO\tdisabled\tO\nby\tO\tby\tO\nseparating\tO\tseparating\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nrunning\tO\trunning\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41015516\tO\t41015516\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41015516/\tO\thttps://stackoverflow.com/questions/41015516/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndeployed\tO\tdeployed\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\non\tO\ton\tO\nTomcat\tB-Application\tTomcat\tO\nserver\tI-Application\tserver\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\non\tO\ton\tO\ncloud\tO\tcloud\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ntwo\tO\ttwo\tO\ndays\tO\tdays\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nToday\tO\tToday\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nsolve\tO\tsolve\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31409444\tO\t31409444\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31409444/\tO\thttps://stackoverflow.com/questions/31409444/\tO\n\t\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n87\tO\t87\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nGame\tB-Device\tGame\tO\nBoy\tI-Device\tBoy\tO\nCPU\tI-Device\tCPU\tO\nManual\tO\tManual\tO\nit\tO\tit\tO\nis\tO\tis\tO\nclaimed\tO\tclaimed\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nCP\tB-Code_Block\tCP\tB-Code_Block\nn\tI-Code_Block\tn\tI-Code_Block\ninstruction\tO\tinstruction\tO\nsets\tO\tsets\tO\nthe\tO\tthe\tO\ncarry\tB-Variable_Name\tcarry\tO\nflag\tO\tflag\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\nno\tO\tno\tO\nborrow\tO\tborrow\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nA\tB-Code_Block\tA\tB-Code_Block\n<\tI-Code_Block\t<\tI-Code_Block\nn\tI-Code_Block\tn\tI-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nconflict\tO\tconflict\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ncarry\tB-Variable_Name\tcarry\tO\nflag\tO\tflag\tO\nis\tO\tis\tO\nset\tO\tset\tO\nwhen\tO\twhen\tO\nA\tB-Code_Block\tA\tB-Code_Block\n>\tI-Code_Block\t>\tI-Code_Block\nn\tI-Code_Block\tn\tI-Code_Block\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\n:\tO\t:\tO\nIf\tO\tIf\tO\nA\tB-Code_Block\tA\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\nand\tO\tand\tO\nB\tB-Code_Block\tB\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\n,\tO\t,\tO\nCP\tB-Code_Block\tCP\tB-Code_Block\nB\tI-Code_Block\tB\tI-Code_Block\nsets\tO\tsets\tO\nthe\tO\tthe\tO\nflags\tO\tflags\tO\nlike\tO\tlike\tO\nSUB\tB-Code_Block\tSUB\tB-Code_Block\nA\tI-Code_Block\tA\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nB\tI-Code_Block\tB\tI-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\n0\tB-Value\t0\tO\n-\tI-Value\t-\tO\n1\tI-Value\t1\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nbecomes\tO\tbecomes\tO\n0\tB-Value\t0\tO\n+\tI-Value\t+\tO\n255\tI-Value\t255\tO\n=\tI-Value\t=\tO\n255\tI-Value\t255\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncarry\tO\tcarry\tO\nflag\tO\tflag\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nset\tO\tset\tO\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nA\tB-Code_Block\tA\tB-Code_Block\n<\tI-Code_Block\t<\tI-Code_Block\nB\tI-Code_Block\tB\tI-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncame\tO\tcame\tO\nacross\tO\tacross\tO\nthis\tO\tthis\tO\nsame\tO\tsame\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nother\tO\tother\tO\nZ80\tB-Device\tZ80\tO\ndocuments\tO\tdocuments\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nbelieve\tO\tbelieve\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\ntypo\tO\ttypo\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nmisunderstanding\tO\tmisunderstanding\tO\nhow\tO\thow\tO\nborrow\tO\tborrow\tO\nand\tO\tand\tO\nSUB\tB-Code_Block\tSUB\tB-Code_Block\nwork\tO\twork\tO\nor\tO\tor\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nSUB\tB-Code_Block\tSUB\tB-Code_Block\nnot\tO\tnot\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nADD\tB-Code_Block\tADD\tB-Code_Block\nwith\tO\twith\tO\ntwo\tO\ttwo\tO\n's\tO\t's\tO\ncomplement\tO\tcomplement\tO\nin\tO\tin\tO\nterms\tO\tterms\tO\nof\tO\tof\tO\nflags\tO\tflags\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31409444\tO\t31409444\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31409444/\tO\thttps://stackoverflow.com/questions/31409444/\tO\n\t\n\t\nThe\tO\tThe\tO\nGameBoy\tB-Device\tGameBoy\tO\nCPU\tI-Device\tCPU\tO\nmanual\tO\tmanual\tO\nhas\tO\thas\tO\nit\tO\tit\tO\nbackwards\tO\tbackwards\tO\n.\tO\t.\tO\n\t\nSUB\tB-Code_Block\tSUB\tB-Code_Block\n,\tO\t,\tO\nSBC\tB-Code_Block\tSBC\tB-Code_Block\nand\tO\tand\tO\nCP\tB-Code_Block\tCP\tB-Code_Block\nall\tO\tall\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ncarry\tO\tcarry\tO\nflag\tO\tflag\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nborrow\tO\tborrow\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nSUB/SBC/CP\tB-Code_Block\tSUB/SBC/CP\tB-Code_Block\nA\tI-Code_Block\tA\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nn\tI-Code_Block\tn\tI-Code_Block\nis\tO\tis\tO\nexecuted\tO\texecuted\tO\nthen\tO\tthen\tO\ncarry\tO\tcarry\tO\nis\tO\tis\tO\nset\tO\tset\tO\nif\tO\tif\tO\nn\tB-Code_Block\tn\tB-Code_Block\n>\tI-Code_Block\t>\tI-Code_Block\nA\tI-Code_Block\tA\tI-Code_Block\notherwise\tO\totherwise\tO\nit\tO\tit\tO\nis\tO\tis\tO\nclear\tO\tclear\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nconsistent\tO\tconsistent\tO\nwith\tO\twith\tO\nZ-80\tB-Device\tZ-80\tO\n(\tO\t(\tO\nand\tO\tand\tO\n8080\tB-Device\t8080\tO\n)\tO\t)\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nwell\tO\twell\tO\nMAME\tB-Application\tMAME\tO\nand\tO\tand\tO\nMESS\tB-Application\tMESS\tO\nimplement\tO\timplement\tO\ncarry\tB-Variable_Name\tcarry\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19332981\tO\t19332981\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19332981/\tO\thttps://stackoverflow.com/questions/19332981/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndeveloping\tO\tdeveloping\tO\necommerece\tO\tecommerece\tO\nsite\tO\tsite\tO\nusing\tO\tusing\tO\nmagento\tB-Application\tmagento\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\n\t\nShow\tO\tShow\tO\nall\tO\tall\tO\ncountries\tO\tcountries\tO\ndropdown\tB-User_Interface_Element\tdropdown\tO\nbox\tI-User_Interface_Element\tbox\tO\nin\tO\tin\tO\nuser\tO\tuser\tO\nregister\tO\tregister\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nshow\tO\tshow\tO\nonly\tO\tonly\tO\nindia\tO\tindia\tO\n,\tO\t,\tO\nsingapore\tO\tsingapore\tO\n,\tO\t,\tO\nusa\tO\tusa\tO\nin\tO\tin\tO\ndropdown\tB-User_Interface_Element\tdropdown\tO\nbox\tI-User_Interface_Element\tbox\tO\nin\tO\tin\tO\nproduct\tO\tproduct\tO\nshipping\tO\tshipping\tO\naddress\tO\taddress\tO\nfor\tO\tfor\tO\nregisterd\tO\tregisterd\tO\nuser\tO\tuser\tO\nand\tO\tand\tO\nguest\tO\tguest\tO\n.\tO\t.\tO\n\t\nAnybody\tO\tAnybody\tO\nhelp\tO\thelp\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nThanx\tO\tThanx\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19332981\tO\t19332981\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19332981/\tO\thttps://stackoverflow.com/questions/19332981/\tO\n\t\n\t\nShipping\tO\tShipping\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nallowed\tO\tallowed\tO\nonly\tO\tonly\tO\nto\tO\tto\tO\ndefined\tO\tdefined\tO\ncountries\tO\tcountries\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\nin\tO\tin\tO\nshipping\tO\tshipping\tO\nmethod\tO\tmethod\tO\nsettings\tO\tsettings\tO\n(\tO\t(\tO\nsystem->configuration->shipping\tO\tsystem->configuration->shipping\tO\nmethods->your\tO\tmethods->your\tO\nshipping\tO\tshipping\tO\nmethod->Ship\tO\tmethod->Ship\tO\nto\tO\tto\tO\nApplicable\tO\tApplicable\tO\nCountries\tO\tCountries\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nvalues\tO\tvalues\tO\n:\tO\t:\tO\n\"\tB-Value\t\"\tO\nShip\tI-Value\tShip\tO\nto\tI-Value\tto\tO\nApplicable\tI-Value\tApplicable\tO\nCountries\tI-Value\tCountries\tO\n\"\tI-Value\t\"\tO\nand\tO\tand\tO\n\"\tB-Value\t\"\tO\nSpecific\tI-Value\tSpecific\tO\nCountries\tI-Value\tCountries\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nset\tO\tset\tO\nup\tO\tup\tO\nsecond\tO\tsecond\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nshipping\tO\tshipping\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\naviable\tO\taviable\tO\nonly\tO\tonly\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ncountries\tO\tcountries\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nselect\tO\tselect\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfeald\tO\tfeald\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36920142\tO\t36920142\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36920142/\tO\thttps://stackoverflow.com/questions/36920142/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\na\tO\ta\tO\nJsonResult\tB-Library_Class\tJsonResult\tB-Code_Block\nobject\tO\tobject\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nMVC\tB-Algorithm\tMVC\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\none\tO\tone\tO\nelement\tO\telement\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\nbefore\tO\tbefore\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwithout\tO\twithout\tO\nmapping\tO\tmapping\tO\nit\tO\tit\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nis\tO\tis\tO\nhuge\tO\thuge\tO\nand\tO\tand\tO\nvery\tO\tvery\tO\ncomplex\tO\tcomplex\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\neg\tO\teg\tO\n.\tO\t.\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4557\tI-Code_Block\tQ_4557\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4558\tI-Code_Block\tQ_4558\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthen\tO\tthen\tO\nREMOVE\tB-Library_Function\tREMOVE\tO\nPropertyToNOTExpose\tB-Variable_Name\tPropertyToNOTExpose\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\nfrom\tO\tfrom\tO\nreal\tO\treal\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4559\tI-Code_Block\tQ_4559\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36920142\tO\t36920142\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36920142/\tO\thttps://stackoverflow.com/questions/36920142/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nexcluding\tO\texcluding\tO\nthe\tO\tthe\tO\nproperties\tO\tproperties\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nsent\tO\tsent\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5285\tI-Code_Block\tA_5285\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnother\tO\tAnother\tO\noptions\tO\toptions\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\na\tO\ta\tO\nNewtonsoft.Json.Linq.JObject\tB-Library_Class\tNewtonsoft.Json.Linq.JObject\tO\nand\tO\tand\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\nusing\tO\tusing\tO\nJObject.Remove\tB-Library_Function\tJObject.Remove\tO\nMethod\tO\tMethod\tO\n(\tO\t(\tO\nString\tB-Data_Type\tString\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5286\tI-Code_Block\tA_5286\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36920142\tO\t36920142\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36920142/\tO\thttps://stackoverflow.com/questions/36920142/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n[\tB-Code_Block\t[\tB-Code_Block\nScriptIgnore\tI-Code_Block\tScriptIgnore\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nattribute\tO\tattribute\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\nthe\tO\tthe\tO\nJavaScriptSerializer\tB-Library_Class\tJavaScriptSerializer\tB-Code_Block\nto\tO\tto\tO\nignore\tO\tignore\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nignored\tO\tignored\tO\non\tO\ton\tO\ndeserialization\tO\tdeserialization\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhether\tO\twhether\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nsituation\tO\tsituation\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5287\tI-Code_Block\tA_5287\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28949270\tO\t28949270\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28949270/\tO\thttps://stackoverflow.com/questions/28949270/\tO\n\t\n\t\nGiven\tO\tGiven\tO\nHTML\tB-Language\tHTML\tO\nthat\tO\tthat\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3430\tI-Code_Block\tQ_3430\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nonly\tO\tonly\tO\nCSS\tB-Language\tCSS\tO\n(\tO\t(\tO\nwithout\tO\twithout\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\na\tO\ta\tO\n<span>\tB-HTML_XML_Tag\t<span>\tB-Code_Block\nelement\tO\telement\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nHTML\tB-Language\tHTML\tO\n)\tO\t)\tO\n,\tO\t,\tO\nto\tO\tto\tO\nformat\tO\tformat\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ntwo\tO\ttwo\tO\ndigits\tO\tdigits\tO\n(\tO\t(\tO\nor\tO\tor\tO\n,\tO\t,\tO\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\n,\tO\t,\tO\ncharacters\tO\tcharacters\tO\n)\tO\t)\tO\ndiminished\tO\tdiminished\tO\nin\tO\tin\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ngoal\tO\tgoal\tO\nis\tO\tis\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nCSS\tB-Language\tCSS\tO\nstylesheet\tO\tstylesheet\tO\nrule\tO\trule\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nunadorned\tO\tunadorned\tO\nHTML\tB-Language\tHTML\tO\nabove\tO\tabove\tO\nthat\tO\tthat\tO\nbehaves\tO\tbehaves\tO\nas\tO\tas\tO\nif\tO\tif\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3431\tI-Code_Block\tQ_3431\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28949270\tO\t28949270\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28949270/\tO\thttps://stackoverflow.com/questions/28949270/\tO\n\t\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\nwith\tO\twith\tO\npure\tO\tpure\tO\nCSS\tB-Language\tCSS\tO\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nhtml\tB-Language\thtml\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\npointed\tO\tpointed\tO\nout\tO\tout\tO\nor\tO\tor\tO\nJavascript\tB-Language\tJavascript\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22583138\tO\t22583138\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22583138/\tO\thttps://stackoverflow.com/questions/22583138/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nandroid\tB-Operating_System\tandroid\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\none\tO\tone\tO\nactivity\tB-Library_Class\tactivity\tO\nand\tO\tand\tO\none\tO\tone\tO\nservice\tB-Library_Class\tservice\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nservice\tB-Library_Class\tservice\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\none\tO\tone\tO\nbroadcast\tB-Library_Class\tbroadcast\tO\nreceiver\tI-Library_Class\treceiver\tO\nand\tO\tand\tO\nactivity\tB-Library_Class\tactivity\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\nbroadcast\tB-Library_Class\tbroadcast\tO\nsender\tI-Library_Class\tsender\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nin\tO\tin\tO\nPeriodSender\tB-Function_Name\tPeriodSender\tO\nmethod\tO\tmethod\tO\n.Dynamically\tO\t.Dynamically\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nam\tO\tam\tO\nregistering\tO\tregistering\tO\nthe\tO\tthe\tO\nreceiver\tB-Library_Class\treceiver\tO\nthen\tO\tthen\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nservice\tB-Library_Class\tservice\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ninvoking\tO\tinvoking\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\ni\tO\ti\tO\nsend\tO\tsend\tO\nsome\tO\tsome\tO\nthing\tO\tthing\tO\nafter\tO\tafter\tO\nfew\tO\tfew\tO\nmoment\tO\tmoment\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\ninvokes\tO\tinvokes\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nregister\tO\tregister\tO\nit\tO\tit\tO\nin\tO\tin\tO\nManifest\tB-File_Name\tManifest\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nincluded\tO\tincluded\tO\nthe\tO\tthe\tO\nreceiver\tO\treceiver\tO\ndetails\tO\tdetails\tO\nin\tO\tin\tO\nManifest\tB-File_Name\tManifest\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nreceiver\tB-Library_Class\treceiver\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ninvoking\tO\tinvoking\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nreceiver\tB-Library_Class\treceiver\tO\nclass\tO\tclass\tO\nname\tO\tname\tO\nis\tO\tis\tO\nMyReceiver21\tB-Class_Name\tMyReceiver21\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nintent\tB-Library_Class\tintent\tO\naction\tO\taction\tO\nis\tO\tis\tO\nMY_ACTION1\tB-Variable_Name\tMY_ACTION1\tO\n.\tO\t.\tO\n\t\nactually\tO\tactually\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nmy\tO\tmy\tO\nbroadcast\tB-Library_Class\tbroadcast\tO\nreceiver\tI-Library_Class\treceiver\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nregistered\tO\tregistered\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nstarting\tO\tstarting\tO\nit\tO\tit\tO\nself\tO\tself\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2473\tI-Code_Block\tQ_2473\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22583138\tO\t22583138\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22583138/\tO\thttps://stackoverflow.com/questions/22583138/\tO\n\t\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nintent\tB-HTML_XML_Tag\tintent\tO\nfilter\tI-HTML_XML_Tag\tfilter\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nbroadcasts\tB-Library_Class\tbroadcasts\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nregister\tO\tregister\tO\nthe\tO\tthe\tO\nservice\tB-Library_Class\tservice\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nbroadcasts\tB-Library_Class\tbroadcasts\tO\nwith\tO\twith\tO\nregisterReceiver()\tB-Library_Function\tregisterReceiver()\tB-Code_Block\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nservice\tB-Library_Class\tservice\tO\nis\tO\tis\tO\nstarted\tO\tstarted\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nservice\tB-Library_Class\tservice\tO\nmanually\tO\tmanually\tO\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\nApp\tO\tApp\tO\nstarts\tO\tstarts\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nMainActivity.onCreate()\tB-Library_Function\tMainActivity.onCreate()\tB-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3072\tI-Code_Block\tA_3072\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nMainActivity\tB-Class_Name\tMainActivity\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ncreated\tO\tcreated\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nservice\tB-Library_Class\tservice\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nitself\tO\titself\tO\nregisters\tO\tregisters\tO\nfor\tO\tfor\tO\nBroadcastIntents\tB-Library_Class\tBroadcastIntents\tO\nand\tO\tand\tO\nstarts\tO\tstarts\tO\nlistening\tO\tlistening\tO\nfor\tO\tfor\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22498881\tO\t22498881\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22498881/\tO\thttps://stackoverflow.com/questions/22498881/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\ngame\tO\tgame\tO\nwith\tO\twith\tO\nKivy\tB-Library\tKivy\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmove\tO\tmove\tO\na\tO\ta\tO\ncharacter\tB-User_Interface_Element\tcharacter\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nscreen\tB-User_Interface_Element\tscreen\tO\n.\tO\t.\tO\n\t\nEarlier\tO\tEarlier\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\nwhere\tO\twhere\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\ncharacter\tB-User_Interface_Element\tcharacter\tO\nright\tO\tright\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nimage\tB-User_Interface_Element\timage\tO\nwould\tO\twould\tO\nscroll\tO\tscroll\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsame\tO\tsame\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nRecently\tO\tRecently\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwas\tO\twas\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nimage\tB-User_Interface_Element\timage\tO\nto\tO\tto\tO\na\tO\ta\tO\nwidget\tB-Library_Class\twidget\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\nimage\tO\timage\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nintention\tO\tintention\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncould\tO\tcould\tO\ncontrol\tO\tcontrol\tO\nmultiple\tO\tmultiple\tO\nimage\tB-User_Interface_Element\timage\tO\nlocations\tO\tlocations\tO\nwith\tO\twith\tO\n'\tO\t'\tO\nwidget.pos\tB-Variable_Name\twidget.pos\tO\n'\tO\t'\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nonly\tO\tonly\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nimage\tB-User_Interface_Element\timage\tO\n(\tO\t(\tO\nhero\tB-Variable_Name\thero\tO\n2)\tI-Variable_Name\t2)\tO\nnot\tO\tnot\tO\nscroll\tO\tscroll\tO\nright\tO\tright\tO\nor\tO\tor\tO\nleft\tO\tleft\tO\nbut\tO\tbut\tO\nneither\tO\tneither\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwondering\tO\twondering\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2460\tI-Code_Block\tQ_2460\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22498881\tO\t22498881\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22498881/\tO\thttps://stackoverflow.com/questions/22498881/\tO\n\t\n\t\nLooks\tO\tLooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nFLoatLayout\tB-Library_Class\tFLoatLayout\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\na\tO\ta\tO\nnormal\tO\tnormal\tO\nlayout\tO\tlayout\tO\n(\tO\t(\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\na\tO\ta\tO\nFloatLayout\tB-Library_Class\tFloatLayout\tO\n)\tO\t)\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nautomatically\tO\tautomatically\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nchildren\tO\tchildren\tO\n's\tO\t's\tO\nco-ordinates\tO\tco-ordinates\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthat\tO\tthat\tO\nbehavior\tO\tbehavior\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nRelativeLayout\tB-Library_Class\tRelativeLayout\tO\n.\tO\t.\tO\n\t\nhttp://kivy.org/docs/api-kivy.uix.relativelayout.html\tO\thttp://kivy.org/docs/api-kivy.uix.relativelayout.html\tO\n\t\nPeace\tO\tPeace\tO\nout\tO\tout\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7148916\tO\t7148916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7148916/\tO\thttps://stackoverflow.com/questions/7148916/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable\tB-Data_Structure\ttable\tO\nwith\tO\twith\tO\n8.2\tO\t8.2\tO\nmillion\tO\tmillion\tO\nentries\tO\tentries\tO\nin\tO\tin\tO\na\tO\ta\tO\nSQL\tB-Application\tSQL\tO\nServer\tI-Application\tServer\tO\n2005\tB-Version\t2005\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ntable\tB-Data_Structure\ttable\tO\nstores\tO\tstores\tO\nbasic\tO\tbasic\tO\npast\tO\tpast\tO\ncustomer\tO\tcustomer\tO\ndetails\tO\tdetails\tO\n(\tO\t(\tO\nreferrer\tO\treferrer\tO\n,\tO\t,\tO\nip\tO\tip\tO\n,\tO\t,\tO\nwhether\tO\twhether\tO\nthey\tO\tthey\tO\nentered\tO\tentered\tO\nvia\tO\tvia\tO\nan\tO\tan\tO\nadvertisement\tO\tadvertisement\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\ncustomer\tO\tcustomer\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nhad\tO\thad\tO\ncome\tO\tcome\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nwhoever\tO\twhoever\tO\ndesigned\tO\tdesigned\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\n(\tO\t(\tO\nway\tO\tway\tO\nbefore\tO\tbefore\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nhere\tO\there\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\na\tO\ta\tO\nlowly\tO\tlowly\tO\nintern\tO\tintern\tO\n)\tO\t)\tO\nused\tO\tused\tO\na\tO\ta\tO\nvarchar(50)\tB-Data_Type\tvarchar(50)\tB-Code_Block\nfield\tO\tfield\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nip\tO\tip\tO\naddress\tO\taddress\tO\nfield\tO\tfield\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ntasked\tO\ttasked\tO\nwith\tO\twith\tO\nfinding\tO\tfinding\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nentry\tO\tentry\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nip\tO\tip\tO\naddress\tO\taddress\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\n've\tO\t've\tO\nhad\tO\thad\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nset\tB-Data_Structure\tset\tO\nthis\tO\tthis\tO\nlarge\tO\tlarge\tO\nand\tO\tand\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nspeed\tO\tspeed\tO\nmuch\tO\tmuch\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nquery\tO\tquery\tO\nfrom\tO\tfrom\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nrunning\tO\trunning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_548\tI-Code_Block\tQ_548\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nquery\tO\tquery\tO\nran\tO\tran\tO\nfor\tO\tfor\tO\nover\tO\tover\tO\n2\tO\t2\tO\nmin\tO\tmin\tO\nand\tO\tand\tO\n31\tO\t31\tO\nseconds\tO\tseconds\tO\nbefore\tO\tbefore\tO\nI\tO\tI\tO\ncancelled\tO\tcancelled\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\nthe\tO\tthe\tO\nspeed\tO\tspeed\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nlook\tO\tlook\tO\nup\tO\tup\tO\nor\tO\tor\tO\nwould\tO\twould\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nadvisable\tO\tadvisable\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nindex\tB-Variable_Name\tindex\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\nthat\tO\tthat\tO\nstores\tO\tstores\tO\nthe\tO\tthe\tO\nINET_ATON\tB-Library_Function\tINET_ATON\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\nlook\tO\tlook\tO\nup\tO\tup\tO\non\tO\ton\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7148916\tO\t7148916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7148916/\tO\thttps://stackoverflow.com/questions/7148916/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\noften\tO\toften\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\n\"\tO\t\"\tO\ndo\tO\tdo\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nIP\tO\tIP\tO\naddress\tO\taddress\tO\n\"\tO\t\"\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ndefinitely\tO\tdefinitely\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nindex\tB-Variable_Name\tindex\tO\non\tO\ton\tO\nIP\tO\tIP\tO\naddress\tO\taddress\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\none-off\tO\tone-off\tO\nexercise\tO\texercise\tO\nthen\tO\tthen\tO\nno\tO\tno\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7148916\tO\t7148916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7148916/\tO\thttps://stackoverflow.com/questions/7148916/\tO\n\t\n\t\nTry\tO\tTry\tO\ncreating\tO\tcreating\tO\nan\tO\tan\tO\nindex\tO\tindex\tO\non\tO\ton\tO\nIPAddress\tB-Variable_Name\tIPAddress\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nthings\tO\tthings\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nare\tO\tare\tO\nID\tB-Variable_Name\tID\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nIPAddress\tB-Variable_Name\tIPAddress\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nfrequent\tO\tfrequent\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nsearch\tO\tsearch\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nindex\tB-Variable_Name\tindex\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_814\tI-Code_Block\tA_814\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20613241\tO\t20613241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20613241/\tO\thttps://stackoverflow.com/questions/20613241/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\ncamera\tO\tcamera\tO\napp\tO\tapp\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nto\tO\tto\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvideos\tO\tvideos\tO\nusers\tO\tusers\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\non\tO\ton\tO\ntheir\tO\ttheir\tO\niPhone\tB-Device\tiPhone\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\nvideos\tO\tvideos\tO\nfrom\tO\tfrom\tO\nuser\tO\tuser\tO\nCamera\tB-Application\tCamera\tO\nRoll\tI-Application\tRoll\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nmy\tO\tmy\tO\nusers\tO\tusers\tO\nhave\tO\thave\tO\ncomplained\tO\tcomplained\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\ncustom\tO\tcustom\tO\nfolders\tO\tfolders\tO\ncreated\tO\tcreated\tO\nunder\tO\tunder\tO\ntheir\tO\ttheir\tO\nPhoto\tB-Application\tPhoto\tO\nAlbum\tI-Application\tAlbum\tO\napp\tO\tapp\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nstore\tO\tstore\tO\nsome\tO\tsome\tO\nvideos\tO\tvideos\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nonly\tO\tonly\tO\nlooks\tO\tlooks\tO\nat\tO\tat\tO\nCamera\tB-Application\tCamera\tO\nRoll\tI-Application\tRoll\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\npickup\tO\tpickup\tO\nthe\tO\tthe\tO\nmovies\tO\tmovies\tO\nfrom\tO\tfrom\tO\ntheir\tO\ttheir\tO\nother\tO\tother\tO\nfolders\tO\tfolders\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\nother\tO\tother\tO\nfolders\tO\tfolders\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2188\tI-Code_Block\tQ_2188\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20613241\tO\t20613241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20613241/\tO\thttps://stackoverflow.com/questions/20613241/\tO\n\t\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nmedia\tO\tmedia\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nsynced\tO\tsynced\tO\nfrom\tO\tfrom\tO\niTunes\tB-Application\tiTunes\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nALAssetsGroupLibrary\tB-Library\tALAssetsGroupLibrary\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nall\tO\tall\tO\npossible\tO\tpossible\tO\nvariants\tO\tvariants\tO\nfor\tO\tfor\tO\nALAssetsGroupType\tB-Library_Variable\tALAssetsGroupType\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\njust\tO\tjust\tO\nchange\tO\tchange\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2752\tI-Code_Block\tA_2752\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2753\tI-Code_Block\tA_2753\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20613241\tO\t20613241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20613241/\tO\thttps://stackoverflow.com/questions/20613241/\tO\n\t\n\t\nYou\tO\tYou\tO\ngot\tO\tgot\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfilter\tO\tfilter\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nassets\tO\tassets\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2903\tI-Code_Block\tA_2903\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOptions\tO\tOptions\tO\nfor\tO\tfor\tO\nfilters\tO\tfilters\tO\nare\tO\tare\tO\n:\tO\t:\tO\n\t\n-\tO\t-\tO\nallAssets\tB-Variable_Name\tallAssets\tO\n\t\n-\tO\t-\tO\nallVideos\tB-Variable_Name\tallVideos\tO\n\t\n-\tO\t-\tO\nallPhotos\tB-Variable_Name\tallPhotos\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26018107\tO\t26018107\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26018107/\tO\thttps://stackoverflow.com/questions/26018107/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nrack\tO\track\tO\naap\tO\taap\tO\nthat\tO\tthat\tO\nimplements\tO\timplements\tO\na\tO\ta\tO\nwebsocket\tB-Library_Class\twebsocket\tO\nand\tO\tand\tO\na\tO\ta\tO\nplain\tO\tplain\tO\nhttp\tB-Library\thttp\tO\napi\tI-Library\tapi\tO\nendpoint\tO\tendpoint\tO\n,\tO\t,\tO\nclients\tB-Application\tclients\tO\ncan\tO\tcan\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nit\tO\tit\tO\nand\tO\tand\tO\nat\tO\tat\tO\na\tO\ta\tO\nlater\tO\tlater\tO\npoint\tO\tpoint\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nhttp\tO\thttp\tO\npost\tO\tpost\tO\nwith\tO\twith\tO\na\tO\ta\tO\ntoken\tB-Application\ttoken\tO\nand\tO\tand\tO\na\tO\ta\tO\nclient\tB-Application\tclient\tO\nconnected\tO\tconnected\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nwebsocket\tB-Library_Class\twebsocket\tO\nwill\tO\twill\tO\nno\tO\tno\tO\nnotified\tO\tnotified\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nif\tO\tif\tO\npuma\tB-Application\tpuma\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\nin\tO\tin\tO\ncluster\tO\tcluster\tO\nmode\tO\tmode\tO\nwith\tO\twith\tO\n4\tO\t4\tO\nworkers\tO\tworkers\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nthat\tO\tthat\tO\none\tO\tone\tO\nworker\tO\tworker\tO\nholds\tO\tholds\tO\nthe\tO\tthe\tO\nwebsocket\tB-Library_Class\twebsocket\tO\nconnection\tO\tconnection\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\nis\tO\tis\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\nhttp\tO\thttp\tO\nrequest\tO\trequest\tO\n?\tO\t?\tO\n\t\nRegards\tO\tRegards\tO\n,\tO\t,\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26018107\tO\t26018107\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26018107/\tO\thttps://stackoverflow.com/questions/26018107/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nended\tO\tended\tO\nup\tO\tup\tO\nimplementing\tO\timplementing\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nredis\tB-Data_Structure\tredis\tO\nfrom\tO\tfrom\tO\nhttps://devcenter.heroku.com/articles/ruby-websockets\tO\thttps://devcenter.heroku.com/articles/ruby-websockets\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42891691\tO\t42891691\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42891691/\tO\thttps://stackoverflow.com/questions/42891691/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nto\tO\tto\tO\nget\tO\tget\tO\nhelp\tO\thelp\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nenvironment\tO\tenvironment\tO\nin\tO\tin\tO\nSublimeREPl\tB-Library\tSublimeREPl\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nContinuum\tB-Organization\tContinuum\tO\nAnalytics\tI-Organization\tAnalytics\tO\nAnaconda\tB-Application\tAnaconda\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nsuccessfully\tO\tsuccessfully\tO\nadded\tO\tadded\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nenvironment\tO\tenvironment\tO\n's\tO\t's\tO\npython\tB-Language\tpython\tO\nas\tO\tas\tO\na\tO\ta\tO\nbuild\tO\tbuild\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nto\tO\tto\tO\nSublimeREPL\tB-Library\tSublimeREPL\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\ninteractive\tO\tinteractive\tO\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21646240\tO\t21646240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21646240/\tO\thttps://stackoverflow.com/questions/21646240/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nnewbie\tO\tnewbie\tO\nto\tO\tto\tO\nObjective-C\tB-Language\tObjective-C\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nhandle\tO\thandle\tO\nin\tO\tin\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\narrays\tB-Data_Structure\tarrays\tO\n.\tO\t.\tO\n\t\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nApples\tB-Organization\tApples\tO\nown\tO\town\tO\ndocumentation\tO\tdocumentation\tO\nNSMutableArray\tB-Library_Class\tNSMutableArray\tB-Code_Block\ninherits\tO\tinherits\tO\nfrom\tO\tfrom\tO\nNSArray\tB-Library_Class\tNSArray\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nseeking\tO\tseeking\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nobjectAtIndex:i\tB-Library_Function\tobjectAtIndex:i\tB-Code_Block\nwithin\tO\twithin\tO\na\tO\ta\tO\nfor\tB-Code_Block\tfor\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nYet\tO\tYet\tO\nXcode\tB-Application\tXcode\tO\nis\tO\tis\tO\nclaiming\tO\tclaiming\tO\nthat\tO\tthat\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWithin\tO\tWithin\tO\na\tO\ta\tO\nfor\tB-Code_Block\tfor\tO\nloop\tO\tloop\tO\nI\tO\tI\tO\nam\tO\tam\tO\nperforming\tO\tperforming\tO\n(\tO\t(\tO\nor\tO\tor\tO\nseeking\tO\tseeking\tO\nto\tO\tto\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntest\tO\ttest\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncertain\tO\tcertain\tO\nI\tO\tI\tO\nnot\tO\tnot\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfrustrating\tO\tfrustrating\tO\nlearning\tO\tlearning\tO\nthe\tO\tthe\tO\nidiosyncrasies\tO\tidiosyncrasies\tO\nof\tO\tof\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nprogramming\tO\tprogramming\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nme\tO\tme\tO\nObjective\tB-Language\tObjective\tO\nC\tI-Language\tC\tO\nhas\tO\thas\tO\n,\tO\t,\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nborne\tO\tborne\tO\nlittle\tO\tlittle\tO\nresemblance\tO\tresemblance\tO\nto\tO\tto\tO\nC++\tB-Language\tC++\tO\nor\tO\tor\tO\nC\tB-Language\tC\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\npointer\tO\tpointer\tO\nor\tO\tor\tO\nassistance\tO\tassistance\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nWalt\tB-User_Name\tWalt\tO\nWilliams\tI-User_Name\tWilliams\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21646240\tO\t21646240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21646240/\tO\thttps://stackoverflow.com/questions/21646240/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nyour\tO\tyour\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nand\tO\tand\tO\nparameter\tO\tparameter\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nPossibly\tO\tPossibly\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndot\tO\tdot\tO\nnotation\tO\tnotation\tO\n?\tO\t?\tO\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2938\tI-Code_Block\tA_2938\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nindex\tB-Variable_Name\tindex\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nloop\tO\tloop\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nobject\tB-Variable_Name\tobject\tB-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21646240\tO\t21646240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21646240/\tO\thttps://stackoverflow.com/questions/21646240/\tO\n\t\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nWain\tB-User_Name\tWain\tO\n's\tO\t's\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsake\tO\tsake\tO\nof\tO\tof\tO\ncompleteness\tO\tcompleteness\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nand\tO\tand\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nEx\tO\tEx\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2939\tI-Code_Block\tA_2939\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncause\tO\tcause\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\ncomplaining\tO\tcomplaining\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nnamed\tO\tnamed\tO\n\"\tO\t\"\tO\nobjectAtIndex\tB-Library_Function\tobjectAtIndex\tB-Code_Block\n\"\tO\t\"\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmean\tO\tmean\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2940\tI-Code_Block\tA_2940\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nObjective-C\tB-Language\tObjective-C\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n\"\tO\t\"\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsending\tO\tsending\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\n(\tO\t(\tO\nobjectAtIndex:i\tB-Library_Function\tobjectAtIndex:i\tB-Code_Block\n)\tO\t)\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13776721\tO\t13776721\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13776721/\tO\thttps://stackoverflow.com/questions/13776721/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nflash\tB-Application\tflash\tO\nxml\tB-Language\txml\tO\ntemplate\tO\ttemplate\tO\ni\tO\ti\tO\nbuy\tO\tbuy\tO\nfrom\tO\tfrom\tO\nactiveden\tB-Website\tactiveden\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\ncant\tO\tcant\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\narabic\tO\tarabic\tO\ntext\tO\ttext\tO\nfrom\tO\tfrom\tO\nright\tO\tright\tO\nto\tO\tto\tO\nleft\tO\tleft\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nresearch\tO\tresearch\tO\ni\tO\ti\tO\nfind\tO\tfind\tO\nthat\tO\tthat\tO\ntextfield\tB-Library_Class\ttextfield\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\nrtl\tO\trtl\tO\ncorrectly\tO\tcorrectly\tO\nand\tO\tand\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nto\tO\tto\tO\nTLFTextfield\tB-Library_Class\tTLFTextfield\tO\n,\tO\t,\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nhere\tO\there\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nclassic\tO\tclassic\tO\ntextfield\tO\ttextfield\tO\ninto\tO\tinto\tO\nTLFTextField\tB-Library_Class\tTLFTextField\tO\nin\tO\tin\tO\nas3\tB-Language\tas3\tO\n?\tO\t?\tO\n\t\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13776721\tO\t13776721\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13776721/\tO\thttps://stackoverflow.com/questions/13776721/\tO\n\t\n\t\nBuild\tO\tBuild\tO\nthe\tO\tthe\tO\ntextfield\tO\ttextfield\tO\nas\tO\tas\tO\nTLFTextField\tB-Library_Class\tTLFTextField\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nNOT\tO\tNOT\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nTLF\tB-Library\tTLF\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nNOT\tO\tNOT\tO\nincluded\tO\tincluded\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43330507\tO\t43330507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43330507/\tO\thttps://stackoverflow.com/questions/43330507/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nhard\tO\thard\tO\ntime\tO\ttime\tO\napplying\tO\tapplying\tO\na\tO\ta\tO\nfilter\tO\tfilter\tO\nto\tO\tto\tO\nan\tO\tan\tO\ninline\tO\tinline\tO\nSVG\tB-HTML_XML_Tag\tSVG\tO\nsymbol\tO\tsymbol\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\na\tO\ta\tO\nnormal\tO\tnormal\tO\nexternal\tO\texternal\tO\nSVG\tB-File_Type\tSVG\tO\nfile\tO\tfile\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\ninline\tO\tinline\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nHTML\tB-File_Type\tHTML\tO\ndocument\tO\tdocument\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfiltered\tO\tfiltered\tO\nobjects\tO\tobjects\tO\ndisappear\tO\tdisappear\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nanything\tO\tanything\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nmissing\tO\tmissing\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfilter\tB-HTML_XML_Tag\tfilter\tB-Code_Block\nattribute\tO\tattribute\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nfails\tO\tfails\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nin\tO\tin\tO\nan\tO\tan\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\nChrome\tB-Application\tChrome\tO\n57\tB-Version\t57\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5541\tI-Code_Block\tQ_5541\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43330507\tO\t43330507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43330507/\tO\thttps://stackoverflow.com/questions/43330507/\tO\n\t\n\t\nSetting\tO\tSetting\tO\nyour\tO\tyour\tO\nSVG\tB-HTML_XML_Tag\tSVG\tO\nto\tO\tto\tO\ndisplay:none\tB-Code_Block\tdisplay:none\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nnon-functional\tO\tnon-functional\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\ndisables\tO\tdisables\tO\nall\tO\tall\tO\nCSS\tB-Language\tCSS\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6271\tI-Code_Block\tQ_6271\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42195389\tO\t42195389\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42195389/\tO\thttps://stackoverflow.com/questions/42195389/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nC++\tB-Language\tC++\tO\nfunction\tO\tfunction\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nbeen\tO\tbeen\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n6\tB-Version\t6\tO\n(\tO\t(\tO\n1998\tO\t1998\tO\nyear\tO\tyear\tO\n)\tO\t)\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\nstatic\tB-Data_Type\tstatic\tB-Code_Block\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5362\tI-Code_Block\tQ_5362\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42195389\tO\t42195389\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42195389/\tO\thttps://stackoverflow.com/questions/42195389/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ndangerously\tO\tdangerously\tO\nunsafe\tO\tunsafe\tO\n(\tO\t(\tO\nundefined\tO\tundefined\tO\nbehavior\tO\tbehavior\tO\n)\tO\t)\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\npointer\tB-Data_Type\tpointer\tO\nto\tO\tto\tO\na\tO\ta\tO\nstack\tB-Data_Structure\tstack\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nincludes\tO\tincludes\tO\narrays\tB-Data_Structure\tarrays\tO\nallocated\tO\tallocated\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nstack\tB-Data_Structure\tstack\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmemory\tO\tmemory\tO\noccupied\tO\toccupied\tO\nby\tO\tby\tO\na\tO\ta\tO\nstack\tB-Data_Structure\tstack\tO\nvariable\tO\tvariable\tO\nis\tO\tis\tO\nessentially\tO\tessentially\tO\ndeallocated\tO\tdeallocated\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nreturns\tO\treturns\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6049\tI-Code_Block\tA_6049\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBy\tO\tBy\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nallocation\tO\tallocation\tO\nstatic\tB-Data_Type\tstatic\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nallocation\tO\tallocation\tO\nwill\tO\twill\tO\npersist\tO\tpersist\tO\nand\tO\tand\tO\nis\tO\tis\tO\nsafer\tO\tsafer\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6050\tI-Code_Block\tA_6050\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nany\tO\tany\tO\ncode\tO\tcode\tO\npath\tO\tpath\tO\ncaches\tO\tcaches\tO\nthe\tO\tthe\tO\npointer\tB-Data_Type\tpointer\tO\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\n\"\tO\t\"\tO\ntest\tO\ttest\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nanother\tO\tanother\tO\ncode\tO\tcode\tO\npath\tO\tpath\tO\nthat\tO\tthat\tO\ncalls\tO\tcalls\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\ncould\tO\tcould\tO\ninvalidate\tO\tinvalidate\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nyour\tO\tyour\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nduplicate\tO\tduplicate\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nbefore\tO\tbefore\tO\nreturning\tO\treturning\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nexpectation\tO\texpectation\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncaller\tO\tcaller\tO\nwill\tO\twill\tO\n\"\tO\t\"\tO\nfree\tB-Library_Function\tfree\tO\n\"\tO\t\"\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nlater\tO\tlater\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6051\tI-Code_Block\tA_6051\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47108775\tO\t47108775\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47108775/\tO\thttps://stackoverflow.com/questions/47108775/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\niterate\tO\titerate\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\njava\tB-Language\tjava\tO\narraylist\tB-Library_Class\tarraylist\tO\npassed\tO\tpassed\tO\nas\tO\tas\tO\nmessage\tO\tmessage\tO\nheader\tO\theader\tO\nto\tO\tto\tO\na\tO\ta\tO\ncamel\tB-Library\tcamel\tO\nroute\tB-HTML_XML_Tag\troute\tO\nvia\tO\tvia\tO\nbean\tB-Library_Class\tbean\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\nstring\tB-Data_Type\tstring\tO\nitem\tO\titem\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nbasically\tO\tbasically\tO\nan\tO\tan\tO\nurl\tO\turl\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\npassed\tO\tpassed\tO\nas\tO\tas\tO\nuri\tO\turi\tO\nargument\tO\targument\tO\ninside\tO\tinside\tO\ntag\tO\ttag\tO\nin\tO\tin\tO\ncamel\tB-Library\tcamel\tO\nroute\tB-HTML_XML_Tag\troute\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\npassing\tO\tpassing\tO\nan\tO\tan\tO\narray\tB-Library_Class\tarray\tO\nlist\tI-Library_Class\tlist\tO\nas\tO\tas\tO\nmessage\tO\tmessage\tO\nheader\tO\theader\tO\nto\tO\tto\tO\ncamel\tB-Library_Class\tcamel\tO\nroute\tI-Library_Class\troute\tO\nthrough\tO\tthrough\tO\njava\tB-Language\tjava\tO\nbean\tB-Library_Class\tbean\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6236\tI-Code_Block\tQ_6236\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\n,\tO\t,\tO\ninside\tO\tinside\tO\ncamel\tB-Library_Class\tcamel\tO\nroute\tI-Library_Class\troute\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\niterate\tO\titerate\tO\nthrough\tO\tthrough\tO\nthis\tO\tthis\tO\nlist\tB-Variable_Name\tlist\tO\nand\tO\tand\tO\nretrieve\tO\tretrieve\tO\neach\tO\teach\tO\nlist\tB-Variable_Name\tlist\tO\nitem\tO\titem\tO\none\tO\tone\tO\nby\tO\tby\tO\none\tO\tone\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\npass\tO\tpass\tO\nthese\tO\tthese\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nuri\tO\turi\tO\n.\tO\t.\tO\n\t\nhere\tO\there\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\ncamel\tB-Library\tcamel\tO\nroute\tB-HTML_XML_Tag\troute\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6237\tI-Code_Block\tQ_6237\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\ni\tO\ti\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\niterate\tO\titerate\tO\nthrough\tO\tthrough\tO\neach\tO\teach\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nlist\tB-Variable_Name\tlist\tO\nrecieved\tO\trecieved\tO\nas\tO\tas\tO\nheader.endpoints\tB-Variable_Name\theader.endpoints\tO\ninside\tO\tinside\tO\ncamel\tB-Library\tcamel\tO\nroute\tB-HTML_XML_Tag\troute\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47108775\tO\t47108775\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47108775/\tO\thttps://stackoverflow.com/questions/47108775/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nrecipient\tB-HTML_XML_Tag\trecipient\tO\nlist\tI-HTML_XML_Tag\tlist\tO\nEIP\tO\tEIP\tO\npattern\tO\tpattern\tO\nthan\tO\tthan\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\nmessages\tO\tmessages\tO\nto\tO\tto\tO\nN+\tB-Variable_Name\tN+\tO\ndestinations\tO\tdestinations\tO\n:\tO\t:\tO\nhttp://camel.apache.org/recipient-list.html\tO\thttp://camel.apache.org/recipient-list.html\tO\n\t\nThe\tO\tThe\tO\nrecipient\tB-HTML_XML_Tag\trecipient\tO\nlist\tI-HTML_XML_Tag\tlist\tO\nEIP\tO\tEIP\tO\nis\tO\tis\tO\nbasically\tO\tbasically\tO\na\tO\ta\tO\ntoD\tB-HTML_XML_Tag\ttoD\tB-Code_Block\nbut\tO\tbut\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\n1.N\tB-Value\t1.N\tO\nendpoints\tO\tendpoints\tO\n.\tO\t.\tO\n\t\nWhere\tO\tWhere\tO\nas\tO\tas\tO\ntoD\tB-HTML_XML_Tag\ttoD\tB-Code_Block\ncan\tO\tcan\tO\nonly\tO\tonly\tO\ndo\tO\tdo\tO\n1\tB-Value\t1\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nyour\tO\tyour\tO\nmessage\tO\tmessage\tO\nheader\tB-User_Interface_Element\theader\tO\nas-is\tO\tas-is\tO\n,\tO\t,\tO\neg\tO\teg\tO\na\tO\ta\tO\nList\tB-Data_Structure\tList\tB-Code_Block\nor\tO\tor\tO\nCollection\tB-Library\tCollection\tB-Code_Block\nand\tO\tand\tO\nsend\tO\tsend\tO\nto\tO\tto\tO\neach\tO\teach\tO\ndestination\tO\tdestination\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ndo\tO\tdo\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6856\tI-Code_Block\tA_6856\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12111325\tO\t12111325\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12111325/\tO\thttps://stackoverflow.com/questions/12111325/\tO\n\t\n\t\nSorry\tO\tSorry\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nrewrite\tO\trewrite\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nhoping\tO\thoping\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nclear\tO\tclear\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\n.cpp\tB-File_Type\t.cpp\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nquads\tB-Class_Name\tquads\tO\n,\tO\t,\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nhave\tO\thave\tO\na\tO\ta\tO\nflag\tB-Variable_Name\tflag\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npixel\tO\tpixel\tO\nshader\tO\tshader\tO\nI\tO\tI\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nflag\tB-Variable_Name\tflag\tO\nis\tO\tis\tO\nset\tO\tset\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nflag\tB-Variable_Name\tflag\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nset\tO\tset\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nquad\tB-Class_Name\tquad\tO\ngets\tO\tgets\tO\ncolored\tO\tcolored\tO\nin\tO\tin\tO\nred\tB-Value\tred\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nflag\tB-Variable_Name\tflag\tO\nis\tO\tis\tO\nset\tO\tset\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\nthe\tO\tthe\tO\ncolor\tB-Variable_Name\tcolor\tO\nof\tO\tof\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\npixel\tO\tpixel\tO\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncolour\tO\tcolour\tO\nhalf\tO\thalf\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nflagged\tO\tflagged\tO\nquad\tB-Class_Name\tquad\tO\nin\tO\tin\tO\nred\tB-Value\tred\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nhalf\tO\thalf\tO\nin\tO\tin\tO\nblue\tB-Value\tblue\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1133\tI-Code_Block\tQ_1133\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nhalf\tO\thalf\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquad\tB-Class_Name\tquad\tO\ncolored\tO\tcolored\tO\nin\tO\tin\tO\nblue\tB-Value\tblue\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\nhalf\tO\thalf\tO\ncolored\tO\tcolored\tO\nin\tO\tin\tO\nred\tB-Value\tred\tO\n,\tO\t,\tO\nor\tO\tor\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndecide\tO\tdecide\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nred\tB-Value\tred\tO\ncolor\tO\tcolor\tO\nor\tO\tor\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nblue\tB-Value\tblue\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nImagine\tO\tImagine\tO\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nquad\tB-Class_Name\tquad\tO\n50x50\tO\t50x50\tO\npixels\tO\tpixels\tO\n\t\n[\tO\t[\tO\nfrag\tO\tfrag\tO\n]\tO\t]\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1134\tI-Code_Block\tQ_1134\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nquad\tB-Class_Name\tquad\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nflag\tO\tflag\tO\nset\tO\tset\tO\nwill\tO\twill\tO\nget\tO\tget\tO\ntwo\tO\ttwo\tO\ncolors\tO\tcolors\tO\nper\tO\tper\tO\nface\tO\tface\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsomething\tO\tsomething\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\ntexture\tB-Library_Class\ttexture\tO\n.\tO\t.\tO\n\t\nOk\tO\tOk\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nnow\tO\tnow\tO\n:\tO\t:\tO\n\t\nEvery\tO\tEvery\tO\nquad\tB-Class_Name\tquad\tO\nhas\tO\thas\tO\n4\tO\t4\tO\ntextures\tB-Library_Class\ttextures\tO\ncoordinated\tO\tcoordinated\tO\n(\tB-Value\t(\tO\n0\tI-Value\t0\tO\n,\tI-Value\t,\tO\n0\tI-Value\t0\tO\n)\tI-Value\t)\tO\n,\tO\t,\tO\n(\tB-Value\t(\tO\n0\tI-Value\t0\tO\n,\tI-Value\t,\tO\n1)\tI-Value\t1)\tO\n,\tO\t,\tO\n(\tB-Value\t(\tO\n1\tI-Value\t1\tO\n,\tI-Value\t,\tO\n1)\tI-Value\t1)\tO\n,\tO\t,\tO\n(\tB-Value\t(\tO\n1\tI-Value\t1\tO\n,\tI-Value\t,\tO\n0\tI-Value\t0\tO\n)\tI-Value\t)\tO\n;\tO\t;\tO\n\t\nI\tO\tI\tO\nenable\tO\tenable\tO\nthe\tO\tthe\tO\ntexture\tB-Library_Class\ttexture\tO\ncoordinates\tO\tcoordinates\tO\nusing\tO\tusing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1135\tI-Code_Block\tQ_1135\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n[\tO\t[\tO\nvert\tO\tvert\tO\n]\tO\t]\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1136\tI-Code_Block\tQ_1136\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n[\tO\t[\tO\nfrag\tO\tfrag\tO\n]\tO\t]\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1137\tI-Code_Block\tQ_1137\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nalways\tO\talways\tO\nthe\tO\tthe\tO\nyellow\tB-Value\tyellow\tO\ncolor\tO\tcolor\tO\nso\tO\tso\tO\nx1\tB-Code_Block\tx1\tO\n=\tI-Code_Block\t=\tO\n1\tI-Code_Block\t1\tO\nand\tO\tand\tO\nx2\tB-Code_Block\tx2\tO\n=\tI-Code_Block\t=\tO\n1\tI-Code_Block\t1\tO\nalmost\tO\talmost\tO\nalways\tO\talways\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nquad\tO\tquad\tO\nis\tO\tis\tO\nyellow/green\tB-Value\tyellow/green\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntexture\tB-Library_Class\ttexture\tO\ncoordinates\tO\tcoordinates\tO\nchange\tO\tchange\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfragment\tO\tfragment\tO\nshader\tO\tshader\tO\nand\tO\tand\tO\nso\tO\tso\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nget\tO\tget\tO\na\tO\ta\tO\ngradient\tO\tgradient\tO\n,\tO\t,\tO\nam\tO\tam\tO\nI\tO\tI\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12111325\tO\t12111325\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12111325/\tO\thttps://stackoverflow.com/questions/12111325/\tO\n\t\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nChris\tB-User_Name\tChris\tO\nDodd\tI-User_Name\tDodd\tO\n's\tO\t's\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nscreen-space\tO\tscreen-space\tO\ncoordinate\tO\tcoordinate\tO\n(\tO\t(\tO\nin\tO\tin\tO\npixels\tO\tpixels\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\nactually\tO\tactually\tO\npixel\tO\tpixel\tO\ncenters\tO\tcenters\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\n?\tB-Value\t?\tB-Code_Block\n.\tI-Value\t.\tI-Code_Block\n5)\tI-Value\t5)\tI-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nprocessed\tO\tprocessed\tO\nfragment\tO\tfragment\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nspecial\tO\tspecial\tO\nfragment\tO\tfragment\tO\nshader\tO\tshader\tO\nvariable\tO\tvariable\tO\ngl_FragCoord\tB-Variable_Name\tgl_FragCoord\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1555\tI-Code_Block\tA_1555\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\ngives\tO\tgives\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfragment\tO\tfragment\tO\nin\tO\tin\tO\nscreen-space\tO\tscreen-space\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\nrelative\tO\trelative\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlower\tO\tlower\tO\nleft\tO\tleft\tO\ncorner\tO\tcorner\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\nviewport\tB-User_Interface_Element\tviewport\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nactually\tO\tactually\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nindividual\tO\tindividual\tO\nquad\tO\tquad\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nmakes\tO\tmakes\tO\nmore\tO\tmore\tO\nsense\tO\tsense\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nactually\tO\tactually\tO\ncolor\tO\tcolor\tO\neach\tO\teach\tO\nquad\tO\tquad\tO\nhalf-by-half\tO\thalf-by-half\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nhalf-cut\tO\thalf-cut\tO\n\"\tO\t\"\tO\nwould\tO\twould\tO\notherwise\tO\totherwise\tO\nvary\tO\tvary\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nquad\tO\tquad\tO\n's\tO\t's\tO\nposition\tO\tposition\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nChris\tB-User_Name\tChris\tO\nDodd\tI-User_Name\tDodd\tO\n's\tO\t's\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12111325\tO\t12111325\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12111325/\tO\thttps://stackoverflow.com/questions/12111325/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\ncoordinate\tO\tcoordinate\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nquad\tB-Class_Name\tquad\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncalculate\tO\tcalculate\tO\nit\tO\tit\tO\nyourself\tO\tyourself\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ninterpolant\tO\tinterpolant\tO\n(\tO\t(\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nvec2\tB-Code_Block\tvec2\tB-Code_Block\nquadCoord\tI-Code_Block\tquadCoord\tI-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nset\tO\tset\tO\nit\tO\tit\tO\nappropriately\tO\tappropriately\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nvertex\tO\tvertex\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmeans\tO\tmeans\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nlikely\tO\tlikely\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nas\tO\tas\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\nand\tO\tand\tO\npass\tO\tpass\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\nyour\tO\tyour\tO\nvertex\tO\tvertex\tO\nshader\tO\tshader\tO\n.\tO\t.\tO\n\t\neg\tO\teg\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1554\tI-Code_Block\tA_1554\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfeed\tO\tfeed\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nattribute\tO\tattribute\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ndrawing\tO\tdrawing\tO\ncode\tO\tcode\tO\nwhen\tO\twhen\tO\ndrawing\tO\tdrawing\tO\nyour\tO\tyour\tO\nquads\tB-Class_Name\tquads\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\neach\tO\teach\tO\nquad\tB-Class_Name\tquad\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nvertexes\tO\tvertexes\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nlikely\tO\tlikely\tO\nhave\tO\thave\tO\nquadCoordIn\tB-Variable_Name\tquadCoordIn\tB-Code_Block\nvalues\tO\tvalues\tO\nof\tO\tof\tO\n(\tB-Value\t(\tO\n0\tI-Value\t0\tO\n,\tI-Value\t,\tO\n0\tI-Value\t0\tO\n)\tI-Value\t)\tO\n,\tO\t,\tO\n(\tB-Value\t(\tO\n0\tI-Value\t0\tO\n,\tI-Value\t,\tO\n1)\tI-Value\t1)\tO\n,\tO\t,\tO\n(\tB-Value\t(\tO\n1\tI-Value\t1\tO\n,\tI-Value\t,\tO\n1)\tI-Value\t1)\tO\nand\tO\tand\tO\n(\tB-Value\t(\tO\n1\tI-Value\t1\tO\n,\tI-Value\t,\tO\n0\tI-Value\t0\tO\n)\tI-Value\t)\tO\n-\tO\t-\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\ncoordinate\tO\tcoordinate\tO\nsystem\tO\tsystem\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nprefer\tO\tprefer\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nfragment\tO\tfragment\tO\nprogram\tO\tprogram\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nquadCoord.xy\tB-Variable_Name\tquadCoord.xy\tB-Code_Block\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nwhere\tO\twhere\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nquad\tB-Class_Name\tquad\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23025618\tO\t23025618\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23025618/\tO\thttps://stackoverflow.com/questions/23025618/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncsv\tB-File_Type\tcsv\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\ncomments\tO\tcomments\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nwhich\tO\twhich\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsplit\tO\tsplit\tO\nbetween\tO\tbetween\tO\ntwo\tO\ttwo\tO\nArrayLists\tB-Library_Class\tArrayLists\tO\n.\tO\t.\tO\n\t\neg\tO\teg\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2521\tI-Code_Block\tQ_2521\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nof\tO\tof\tO\nachieving\tO\tachieving\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nshould\tO\tshould\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncounter\tB-Data_Structure\tcounter\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nincremented\tO\tincremented\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nchanges\tO\tchanges\tO\nfrom\tO\tfrom\tO\n%\tB-Code_Block\t%\tO\nto\tO\tto\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nor\tO\tor\tO\nvice\tO\tvice\tO\nversa\tO\tversa\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nif\tB-Code_Block\tif\tO\ncounter\tI-Code_Block\tcounter\tO\n%\tI-Code_Block\t%\tO\n2\tI-Code_Block\t2\tO\n=\tI-Code_Block\t=\tO\n0\tI-Code_Block\t0\tO\nthen\tO\tthen\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nArrayList\tB-Library_Class\tArrayList\tO\nand\tO\tand\tO\nstart\tO\tstart\tO\nwriting\tO\twriting\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nthats\tO\tthats\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nway\tO\tway\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nthink\tO\tthink\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\nclumsy\tO\tclumsy\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nidea\tO\tidea\tO\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nwritten\tO\twritten\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nactually\tO\tactually\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\ncsv\tB-File_Type\tcsv\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nwondering\tO\twondering\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\ninto\tO\tinto\tO\ntwo\tO\ttwo\tO\nlists.\tB-Library_Class\tlists.\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23025618\tO\t23025618\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23025618/\tO\thttps://stackoverflow.com/questions/23025618/\tO\n\t\n\t\nYour\tO\tYour\tO\nsuggestion\tO\tsuggestion\tO\nsounds\tO\tsounds\tO\ngood\tO\tgood\tO\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nformat\tO\tformat\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nso\tO\tso\tO\npredictable\tO\tpredictable\tO\n,\tO\t,\tO\nany\tO\tany\tO\nmore\tO\tmore\tO\nsophisticated\tO\tsophisticated\tO\napproaches\tO\tapproaches\tO\nmight\tO\tmight\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\noverkill\tO\toverkill\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nopinion\tO\topinion\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\napproach\tO\tapproach\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nidea\tO\tidea\tO\n:\tO\t:\tO\nEvery\tO\tEvery\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\nan\tO\tan\tO\n%\tB-Code_Block\t%\tB-Code_Block\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nwe\tO\twe\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nto\tO\tto\tO\nan\tO\tan\tO\nArrayList\tB-Library_Class\tArrayList\tB-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nwhenever\tO\twhenever\tO\nyou\tO\tyou\tO\ncome\tO\tcome\tO\nacross\tO\tacross\tO\na\tO\ta\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nlines\tO\tlines\tO\nto\tO\tto\tO\nan\tO\tan\tO\nArrayList\tB-Library_Class\tArrayList\tB-Code_Block\nuntil\tO\tuntil\tO\nyou\tO\tyou\tO\neither\tO\teither\tO\nhit\tO\thit\tO\nanother\tO\tanother\tO\ncomment\tO\tcomment\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\noptions\tO\toptions\tO\nmark\tO\tmark\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npart\tO\tpart\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nin\tO\tin\tO\none\tO\tone\tO\nsingle\tO\tsingle\tO\nArrayList\tB-Library_Class\tArrayList\tB-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3117\tI-Code_Block\tA_3117\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhere\tO\twhere\tO\nlineIsComment\tB-Code_Block\tlineIsComment\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nString\tI-Code_Block\tString\tI-Code_Block\nline\tI-Code_Block\tline\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nreturns\tO\treturns\tO\na\tO\ta\tO\nboolean\tB-Data_Type\tboolean\tO\nthat\tO\tthat\tO\nindicates\tO\tindicates\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\nline\tO\tline\tO\nis\tO\tis\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nand\tO\tand\tO\naddToList\tB-Code_Block\taddToList\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nString\tI-Code_Block\tString\tI-Code_Block\nline\tI-Code_Block\tline\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nArrayList\tI-Code_Block\tArrayList\tI-Code_Block\n<Integer>\tI-Code_Block\t<Integer>\tI-Code_Block\nlist\tI-Code_Block\tlist\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nuses\tO\tuses\tO\nyour\tO\tyour\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\na\tO\ta\tO\nline\tO\tline\tO\nof\tO\tof\tO\nnumbers\tO\tnumbers\tO\nand\tO\tand\tO\nstores\tO\tstores\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprovided\tO\tprovided\tO\nlist\tO\tlist\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8656150\tO\t8656150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8656150/\tO\thttps://stackoverflow.com/questions/8656150/\tO\n\t\n\t\nMy\tO\tMy\tO\nMVC\tB-Application\tMVC\tO\n3\tB-Version\t3\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nbuilding\tO\tbuilding\tO\nsuccessfully\tO\tsuccessfully\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ndevelopment\tO\tdevelopment\tO\nmachine\tO\tmachine\tO\nwith\tO\twith\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2010\tB-Version\t2010\tO\n+\tO\t+\tO\nMVC\tB-Application\tMVC\tO\n3\tB-Version\t3\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\nVS2010\tB-Application\tVS2010\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nused\tO\tused\tO\nand\tO\tand\tO\nI\tO\tI\tO\n've\tO\t've\tO\ninstalled\tO\tinstalled\tO\n'\tO\t'\tO\nASP.NET\tB-Application\tASP.NET\tO\nMVC\tI-Application\tMVC\tO\n3\tI-Application\t3\tO\nTools\tI-Application\tTools\tO\nUpdate\tI-Application\tUpdate\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nalso\tO\talso\tO\ndownloaded\tO\tdownloaded\tO\nNAnt\tB-Application\tNAnt\tO\nand\tO\tand\tO\nused\tO\tused\tO\nTortoiseSVN\tB-Application\tTortoiseSVN\tO\nto\tO\tto\tO\ncheckout\tO\tcheckout\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nexcept\tO\texcept\tO\nbin\tB-File_Name\tbin\tO\ndirectories\tO\tdirectories\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhile\tO\twhile\tO\nbuilding\tO\tbuilding\tO\nusing\tO\tusing\tO\nNant\tB-Code_Block\tNant\tB-Code_Block\ndefault.build\tI-Code_Block\tdefault.build\tI-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nbuild\tB-Error_Name\tbuild\tO\nerror\tI-Error_Name\terror\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\n(\tO\t(\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\nmissing\tO\tmissing\tO\nan\tO\tan\tO\nassembly\tO\tassembly\tO\nreference\tO\treference\tO\n?\tO\t?\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSame\tO\tSame\tO\nwith\tO\twith\tO\n'\tO\t'\tO\nController\tB-Application\tController\tO\n'\tO\t'\tO\n,\tO\t,\tO\n'\tO\t'\tO\nActionResult\tB-Application\tActionResult\tO\n'\tO\t'\tO\n,\tO\t,\tO\n'\tO\t'\tO\nGlobalFilterCollection\tB-Application\tGlobalFilterCollection\tO\n'\tO\t'\tO\netc\tO\tetc\tO\n(\tO\t(\tO\ntype\tB-Error_Name\ttype\tO\nor\tI-Error_Name\tor\tO\nnamespace\tI-Error_Name\tnamespace\tO\ncould\tI-Error_Name\tcould\tO\nnot\tI-Error_Name\tnot\tO\nbe\tI-Error_Name\tbe\tO\nfound\tI-Error_Name\tfound\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nSystem.Web.Mvc.dll\tB-File_Name\tSystem.Web.Mvc.dll\tB-Code_Block\nin\tO\tin\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nNAnt\tB-Application\tNAnt\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nno\tO\tno\tO\nother\tO\tother\tO\nway\tO\tway\tO\nthan\tO\tthan\tO\ncopying\tO\tcopying\tO\nthe\tO\tthe\tO\nassembly\tB-File_Type\tassembly\tO\nfiles\tO\tfiles\tO\ninto\tO\tinto\tO\nlocal\tO\tlocal\tO\nbin\tB-File_Name\tbin\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8656150\tO\t8656150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8656150/\tO\thttps://stackoverflow.com/questions/8656150/\tO\n\t\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nissue\tO\tissue\tO\nand\tO\tand\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nable\tO\table\tO\nto\tO\tto\tO\nlocate\tO\tlocate\tO\nthe\tO\tthe\tO\nSystem.Web.MVC\tB-Library_Class\tSystem.Web.MVC\tO\nreference\tO\treference\tO\nassembly\tO\tassembly\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nlocated\tO\tlocated\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nVS\tB-Application\tVS\tO\nwas\tO\twas\tO\ninstalled\tO\tinstalled\tO\nin\tO\tin\tO\nC\tB-File_Name\tC\tO\n:\tI-File_Name\t:\tO\n(\tO\t(\tO\nSometimes\tO\tSometimes\tO\nthe\tO\tthe\tO\nMVC\tB-Application\tMVC\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndefaul\tO\tdefaul\tO\nlocation\tO\tlocation\tO\nwhich\tO\twhich\tO\neverybody\tO\teverybody\tO\ntalk\tO\ttalk\tO\nabout\tO\tabout\tO\n,\tO\t,\tO\ni\tO\ti\tO\nmean\tO\tmean\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nReference\tB-File_Name\tReference\tO\nAssemblies\tI-File_Name\tAssemblies\tO\n\"\tO\t\"\tO\nfolder\tO\tfolder\tO\nlocated\tO\tlocated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nC\tB-File_Name\tC\tO\n:\tI-File_Name\t:\tO\ndrive\tO\tdrive\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\ndefinitely\tO\tdefinitely\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nProgram\tB-File_Name\tProgram\tO\nfiles(x86)\tI-File_Name\tfiles(x86)\tO\n-->\tI-File_Name\t-->\tO\nMicrosoft\tI-File_Name\tMicrosoft\tO\nASP.NET\tI-File_Name\tASP.NET\tO\n-->\tI-File_Name\t-->\tO\nASP.NET\tI-File_Name\tASP.NET\tO\nMVC\tI-File_Name\tMVC\tO\n2\tI-File_Name\t2\tO\n-->\tI-File_Name\t-->\tO\nAssemblies\tI-File_Name\tAssemblies\tO\nSystem.Web.Mvc.dll\tI-File_Name\tSystem.Web.Mvc.dll\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\none\tO\tone\tO\nis\tO\tis\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8656150\tO\t8656150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8656150/\tO\thttps://stackoverflow.com/questions/8656150/\tO\n\t\n\t\nWhich\tO\tWhich\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nmsbuild\tB-Application\tmsbuild\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\nusing\tO\tusing\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nproject\tO\tproject\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nproject\tO\tproject\tO\nreferencing\tO\treferencing\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nor\tO\tor\tO\nfile\tO\tfile\tO\npath\tO\tpath\tO\nto\tO\tto\tO\nSystem.Web.Mvc.dll\tB-File_Name\tSystem.Web.Mvc.dll\tO\n?\tO\t?\tO\n\t\nDownload\tO\tDownload\tO\nand\tO\tand\tO\ninstall\tO\tinstall\tO\nASP.NET\tB-Application\tASP.NET\tO\nMVC\tI-Application\tMVC\tO\n3\tO\t3\tO\n:\tB-Version\t:\tO\n\t\nhttp://www.microsoft.com/download/en/details.aspx?displaylang=en&id=4211\tO\thttp://www.microsoft.com/download/en/details.aspx?displaylang=en&id=4211\tO\n\t\nAccording\tO\tAccording\tO\nto\tO\tto\tO\n:\tO\t:\tO\nhttp://weblogs.asp.net/scottgu/archive/2011/05/03/asp-net-mvc-3-tools-update.aspx\tO\thttp://weblogs.asp.net/scottgu/archive/2011/05/03/asp-net-mvc-3-tools-update.aspx\tO\n\t\n\"\tO\t\"\tO\nThe\tO\tThe\tO\nASP.NET\tB-Application\tASP.NET\tO\nMVC\tI-Application\tMVC\tO\n3\tI-Application\t3\tO\nTools\tI-Application\tTools\tO\nupdate\tO\tupdate\tO\nonly\tO\tonly\tO\nincludes\tO\tincludes\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\ntooling\tO\ttooling\tO\nimprovements\tO\timprovements\tO\nand\tO\tand\tO\ndefault\tO\tdefault\tO\nproject\tO\tproject\tO\ntemplate\tO\ttemplate\tO\nchanges\tO\tchanges\tO\n–\tO\t–\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ninclude\tO\tinclude\tO\nany\tO\tany\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nASP.NET\tB-Application\tASP.NET\tO\nMVC\tI-Application\tMVC\tO\n3\tB-Version\t3\tO\nruntime\tO\truntime\tO\nbinaries\tO\tbinaries\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10908029\tO\t10908029\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10908029/\tO\thttps://stackoverflow.com/questions/10908029/\tO\n\t\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nresearch\tO\tresearch\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nspecific\tO\tspecific\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nallot\tO\tallot\tO\nof\tO\tof\tO\npeople\tO\tpeople\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nplagued\tO\tplagued\tO\nwith\tO\twith\tO\nsimilar\tO\tsimilar\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nGoogle\tB-Application\tGoogle\tO\nApp\tI-Application\tApp\tO\nEngine\tI-Application\tEngine\tO\nand\tO\tand\tO\njust\tO\tjust\tO\ncreated\tO\tcreated\tO\nan\tO\tan\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndownloaded\tO\tdownloaded\tO\nthe\tO\tthe\tO\nSDK\tB-Library\tSDK\tO\nfor\tO\tfor\tO\nPython\tB-Language\tPython\tO\n2.7\tB-Version\t2.7\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndeployed\tO\tdeployed\tO\nthe\tO\tthe\tO\nHello\tB-Value\tHello\tO\n,\tI-Value\t,\tO\nWorld\tI-Value\tWorld\tO\n!\tI-Value\t!\tO\n\t\nto\tO\tto\tO\nthe\tO\tthe\tO\nsupplied\tO\tsupplied\tO\nappspot.com\tO\tappspot.com\tO\naddress\tO\taddress\tO\nand\tO\tand\tO\nit\tO\tit\tO\nprints\tO\tprints\tO\nhello\tB-Value\thello\tO\nworld\tI-Value\tworld\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nlocalhost\tO\tlocalhost\tO\nit\tO\tit\tO\ngives\tO\tgives\tO\na\tO\ta\tO\n500\tB-Error_Name\t500\tO\nserver\tO\tserver\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ndifferent\tO\tdifferent\tO\napplications\tO\tapplications\tO\nand\tO\tand\tO\nmessing\tO\tmessing\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nport\tO\tport\tO\nsettings\tO\tsettings\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\napp.yaml\tB-File_Name\tapp.yaml\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmain.py\tB-File_Name\tmain.py\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nStill\tO\tStill\tO\ncant\tO\tcant\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nIm\tO\tIm\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nan\tO\tan\tO\nMac\tB-Device\tMac\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\ndownload\tO\tdownload\tO\nand\tO\tand\tO\ninstall\tO\tinstall\tO\nPython\tB-Language\tPython\tO\n2.7\tB-Version\t2.7\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nIm\tO\tIm\tO\nalso\tO\talso\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nPython\tB-Language\tPython\tO\nand\tO\tand\tO\nApp\tB-Application\tApp\tO\nEngine\tI-Application\tEngine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nworld\tO\tworld\tO\nof\tO\tof\tO\nPHP\tB-Language\tPHP\tO\nand\tO\tand\tO\nXAMPP\tB-Application\tXAMPP\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10908029\tO\t10908029\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10908029/\tO\thttps://stackoverflow.com/questions/10908029/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\ntry\tO\ttry\tO\nPython\tB-Language\tPython\tO\n2.7.4\tB-Version\t2.7.4\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nGoogle\tB-Website\tGoogle\tO\nlinks\tO\tlinks\tO\nto\tO\tto\tO\nand\tO\tand\tO\nrun\tO\trun\tO\na\tO\ta\tO\nPHP\tB-Language\tPHP\tO\nversion\tO\tversion\tO\ncompiled\tO\tcompiled\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nmodules\tO\tmodules\tO\nand\tO\tand\tO\noption\tO\toption\tO\nthat\tO\tthat\tO\nGAE\tB-Library\tGAE\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nvideo\tB-File_Type\tvideo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\n\t\nhttp://www.youtube.com/watch?v=IFuNNddWQIo\tO\thttp://www.youtube.com/watch?v=IFuNNddWQIo\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24879353\tO\t24879353\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24879353/\tO\thttps://stackoverflow.com/questions/24879353/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nXML\tB-Language\tXML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2801\tI-Code_Block\tQ_2801\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\ntag\tO\ttag\tO\n\"\tO\t\"\tO\nstatus\tB-HTML_XML_Tag\tstatus\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\n\"\tB-Value\t\"\tO\nNEW\tI-Value\tNEW\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\njava\tB-Language\tjava\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2802\tI-Code_Block\tQ_2802\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nstatus\tB-HTML_XML_Tag\tstatus\tO\ntag\tO\ttag\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nchanged\tO\tchanged\tO\nin\tO\tin\tO\nXML\tB-Language\tXML\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24879353\tO\t24879353\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24879353/\tO\thttps://stackoverflow.com/questions/24879353/\tO\n\t\n\t\nThe\tO\tThe\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nwritten\tO\twritten\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nMay\tO\tMay\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nchecking\tO\tchecking\tO\nweather\tO\tweather\tO\nits\tO\tits\tO\nworking\tO\tworking\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ngone\tO\tgone\tO\nthrough\tO\tthrough\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nchecking\tO\tchecking\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nXML\tB-Language\tXML\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nany\tO\tany\tO\ndoubts\tO\tdoubts\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\npost\tO\tpost\tO\nimages\tB-User_Interface_Element\timages\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nreputation\tO\treputation\tO\nscore\tO\tscore\tO\notherwise\tO\totherwise\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nshown\tO\tshown\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nfrom\tO\tfrom\tO\neclipse\tB-Application\teclipse\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24879353\tO\t24879353\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24879353/\tO\thttps://stackoverflow.com/questions/24879353/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nif(\"status\".equalsIgnoreCase((nNode.getNodeName())))\tB-Code_Block\tif(\"status\".equalsIgnoreCase((nNode.getNodeName())))\tB-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\nnNode.setTextContent(\"2000000\")\tI-Code_Block\tnNode.setTextContent(\"2000000\")\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45040320\tO\t45040320\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45040320/\tO\thttps://stackoverflow.com/questions/45040320/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npreppend\tO\tpreppend\tO\n<span>word</span>\tB-Code_Block\t<span>word</span>\tB-Code_Block\ntags\tO\ttags\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\ntree\tB-Data_Structure\ttree\tO\nleaf\tO\tleaf\tO\nnodes\tB-Library_Class\tnodes\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntree\tB-Data_Structure\ttree\tO\nnode\tB-Library_Class\tnode\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\nasynchronously\tO\tasynchronously\tO\nand\tO\tand\tO\nit\tO\tit\tO\nbecomes\tO\tbecomes\tO\nimpossible\tO\timpossible\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\non\tO\ton\tO\nload\tB-Library_Class\tload\tO\nevent\tI-Library_Class\tevent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nnode.rendered\tB-Library_Function\tnode.rendered\tB-Code_Block\nand\tO\tand\tO\nnode.childrenrendered\tB-Library_Function\tnode.childrenrendered\tB-Code_Block\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nelements\tO\telements\tO\nare\tO\tare\tO\nloaded\tO\tloaded\tO\nat\tO\tat\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nkeeping\tO\tkeeping\tO\nan\tO\tan\tO\napprox\tO\tapprox\tO\ntimeout\tO\ttimeout\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5869\tI-Code_Block\tQ_5869\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEven\tO\tEven\tO\nthough\tO\tthough\tO\nthis\tO\tthis\tO\nsolution\tO\tsolution\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsatisfied\tO\tsatisfied\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\ntheir\tO\ttheir\tO\nis\tO\tis\tO\nan\tO\tan\tO\nevent\tB-Library_Class\tevent\tB-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\nfired\tO\tfired\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nnode\tO\tnode\tO\nis\tO\tis\tO\nrendered\tO\trendered\tO\nin\tO\tin\tO\nUI\tO\tUI\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nload\tB-Library_Class\tload\tB-Code_Block\nevent\tI-Library_Class\tevent\tO\nfor\tO\tfor\tO\nloading\tO\tloading\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nload\tB-Library_Class\tload\tO\nevent\tI-Library_Class\tevent\tO\nalready\tO\talready\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nPretty\tO\tPretty\tO\nmuch\tO\tmuch\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\nload\tO\tload\tO\nhappens\tO\thappens\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nnode\tO\tnode\tO\nis\tO\tis\tO\nrendered\tO\trendered\tO\nin\tO\tin\tO\nUI\tO\tUI\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\nor\tO\tor\tO\nsuggestions\tO\tsuggestions\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45188070\tO\t45188070\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45188070/\tO\thttps://stackoverflow.com/questions/45188070/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nQuery\tB-Library_Class\tQuery\tO\nthat\tO\tthat\tO\nexcludes\tO\texcludes\tO\nresults\tO\tresults\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nArray\tB-Data_Structure\tArray\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\nString\tB-Data_Type\tString\tO\nsent\tO\tsent\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nQuery\tB-Library_Class\tQuery\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\nArrays\tB-Data_Structure\tArrays\tO\n\t\nArray\tB-Variable_Name\tArray\tO\n1\tI-Variable_Name\t1\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5886\tI-Code_Block\tQ_5886\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nArray\tB-Variable_Name\tArray\tO\n2\tI-Variable_Name\t2\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5887\tI-Code_Block\tQ_5887\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nexclude\tO\texclude\tO\nJUST\tO\tJUST\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\none\tO\tone\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5888\tI-Code_Block\tQ_5888\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\neither\tO\teither\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5889\tI-Code_Block\tQ_5889\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntime\tO\ttime\tO\n!\tO\t!\tO\n\t\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45188070\tO\t45188070\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45188070/\tO\thttps://stackoverflow.com/questions/45188070/\tO\n\t\n\t\nOk\tO\tOk\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsolved\tO\tsolved\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6547\tI-Code_Block\tA_6547\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15845547\tO\t15845547\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15845547/\tO\thttps://stackoverflow.com/questions/15845547/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\na\tO\ta\tO\nexplosion\tB-User_Interface_Element\texplosion\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nobject\tO\tobject\tO\nhits\tO\thits\tO\nanother\tO\tanother\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nhitTestObject\tB-Variable_Name\thitTestObject\tO\nis\tO\tis\tO\ntrue\tO\ttrue\tO\n,\tO\t,\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1564\tI-Code_Block\tQ_1564\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExplosion\tB-Class_Name\tExplosion\tO\nclass\tO\tclass\tO\nonly\tO\tonly\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nto\tO\tto\tO\nit\tO\tit\tO\n's\tO\t's\tO\nx\tB-Variable_Name\tx\tO\nand\tO\tand\tO\ny\tB-Variable_Name\ty\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nin\tO\tin\tO\nexplosion\tB-Variable_Name\texplosion\tO\nmovieclip\tO\tmovieclip\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nframes\tO\tframes\tO\nof\tO\tof\tO\na\tO\ta\tO\nanimation\tO\tanimation\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nends\tO\tends\tO\nin\tO\tin\tO\na\tO\ta\tO\nkeyframe\tO\tkeyframe\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n,\tO\t,\tO\nas\tO\tas\tO\nan\tO\tan\tO\naction\tO\taction\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nframe\tO\tframe\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1565\tI-Code_Block\tQ_1565\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nreally\tO\treally\tO\ngone\tO\tgone\tO\nnow\tO\tnow\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nstop()\tB-Library_Function\tstop()\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\nerror\tO\terror\tO\n1009\tB-Error_Name\t1009\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nmakes\tO\tmakes\tO\nme\tO\tme\tO\nsuspect\tO\tsuspect\tO\nsome\tO\tsome\tO\nevent\tO\tevent\tO\ntimer\tO\ttimer\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nrunning\tO\trunning\tO\naround\tO\taround\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15845547\tO\t15845547\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15845547/\tO\thttps://stackoverflow.com/questions/15845547/\tO\n\t\n\t\nRemoving\tO\tRemoving\tO\na\tO\ta\tO\ndisplay\tO\tdisplay\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndisplay\tO\tdisplay\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\nanimation\tO\tanimation\tO\nor\tO\tor\tO\nremove\tO\tremove\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\njust\tO\tjust\tO\nremoves\tO\tremoves\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndisplay\tO\tdisplay\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\nanimation\tO\tanimation\tO\nand\tO\tand\tO\nremove\tO\tremove\tO\nany\tO\tany\tO\nevent\tB-Library_Class\tevent\tO\nlisteners\tO\tlisteners\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nactive\tO\tactive\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\ndisplay\tO\tdisplay\tO\nobject\tO\tobject\tO\nis\tO\tis\tO\nnever\tO\tnever\tO\ntruly\tO\ttruly\tO\ngone\tO\tgone\tO\nuntil\tO\tuntil\tO\nit\tO\tit\tO\nis\tO\tis\tO\ngarbage\tO\tgarbage\tO\ncollected\tO\tcollected\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nhappen\tO\thappen\tO\nuntil\tO\tuntil\tO\nno\tO\tno\tO\nreferences\tO\treferences\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nobject\tO\tobject\tO\nremain\tO\tremain\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\ncalled\tO\tcalled\tO\nexplosion\tB-Variable_Name\texplosion\tO\nthat\tO\tthat\tO\nreferences\tO\treferences\tO\nyour\tO\tyour\tO\ndisplay\tO\tdisplay\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nit\tO\tit\tO\nto\tO\tto\tO\nnull\tB-Value\tnull\tO\nafter\tO\tafter\tO\nremoving\tO\tremoving\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndisplay\tO\tdisplay\tO\nlist\tB-Data_Structure\tlist\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2053\tI-Code_Block\tA_2053\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nimmediately\tO\timmediately\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nmemory\tO\tmemory\tO\n,\tO\t,\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nmakes\tO\tmakes\tO\nit\tO\tit\tO\nfair\tO\tfair\tO\ngame\tO\tgame\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ngarbage\tO\tgarbage\tO\ncollector\tO\tcollector\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ngoogle\tO\tgoogle\tO\n\"\tO\t\"\tO\nAS3\tB-Language\tAS3\tO\nGarbage\tO\tGarbage\tO\nCollection\tO\tCollection\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\nget\tO\tget\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nthat\tO\tthat\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48586510\tO\t48586510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48586510/\tO\thttps://stackoverflow.com/questions/48586510/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nchange\tO\tchange\tO\nionic\tB-User_Interface_Element\tionic\tO\ntabs\tI-User_Interface_Element\ttabs\tO\nroot\tI-User_Interface_Element\troot\tO\npage\tI-User_Interface_Element\tpage\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\ndash\tB-User_Interface_Element\tdash\tO\nboard\tI-User_Interface_Element\tboard\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nmy\tO\tmy\tO\nTabs.ts\tB-File_Name\tTabs.ts\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6468\tI-Code_Block\tQ_6468\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ntabs.html\tB-File_Name\ttabs.html\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6469\tI-Code_Block\tQ_6469\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nmy\tO\tmy\tO\nhome.ts\tB-File_Name\thome.ts\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6470\tI-Code_Block\tQ_6470\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nhome.html\tB-File_Name\thome.html\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6471\tI-Code_Block\tQ_6471\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\ntab\tB-User_Interface_Element\ttab\tO\nroot\tO\troot\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\ndashboard\tB-User_Interface_Element\tdashboard\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nhome.html\tB-File_Name\thome.html\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntab\tB-User_Interface_Element\ttab\tO\nroot\tO\troot\tO\nto\tO\tto\tO\ndashboard\tB-User_Interface_Element\tdashboard\tO\npage\tI-User_Interface_Element\tpage\tO\nand\tO\tand\tO\nselect\tO\tselect\tO\ndashboard\tB-User_Interface_Element\tdashboard\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\npress\tO\tpress\tO\npress\tO\tpress\tO\ntraining\tO\ttraining\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\nto\tO\tto\tO\ntraining\tO\ttraining\tO\npage\tB-User_Interface_Element\tpage\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntab\tB-User_Interface_Element\ttab\tO\nroot\tO\troot\tO\nto\tO\tto\tO\ntrainning\tO\ttrainning\tO\npage\tB-User_Interface_Element\tpage\tO\nans\tO\tans\tO\nselect\tO\tselect\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48586510\tO\t48586510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48586510/\tO\thttps://stackoverflow.com/questions/48586510/\tO\n\t\n\t\nyea\tO\tyea\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ninside\tO\tinside\tO\nyour\tO\tyour\tO\ntabs.html\tB-File_Name\ttabs.html\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7106\tI-Code_Block\tA_7106\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ninside\tO\tinside\tO\nyour\tO\tyour\tO\ntabs.ts\tB-File_Name\ttabs.ts\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7107\tI-Code_Block\tA_7107\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\nother\tO\tother\tO\nway\tO\tway\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\nthis.navCtrl.push(TrainingPage,this.token)\tB-Library_Function\tthis.navCtrl.push(TrainingPage,this.token)\tB-Code_Block\n;\tI-Library_Function\t;\tI-Code_Block\nuse\tO\tuse\tO\nthis.navCtrl.select\tB-Library_Function\tthis.navCtrl.select\tB-Code_Block\n(\tI-Library_Function\t(\tI-Code_Block\n\"\tI-Library_Function\t\"\tI-Code_Block\n1\tI-Library_Function\t1\tI-Code_Block\n\"\tI-Library_Function\t\"\tI-Code_Block\n,\tI-Library_Function\t,\tI-Code_Block\nthis.token\tI-Library_Function\tthis.token\tI-Code_Block\n)\tI-Library_Function\t)\tI-Code_Block\n;\tI-Library_Function\t;\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48586510\tO\t48586510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48586510/\tO\thttps://stackoverflow.com/questions/48586510/\tO\n\t\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nsee\tO\tsee\tO\none\tO\tone\tO\nway\tO\tway\tO\nto\tO\tto\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\n&\tO\t&\tO\nit\tO\tit\tO\n's\tO\t's\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7108\tI-Code_Block\tA_7108\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21302564\tO\t21302564\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21302564/\tO\thttps://stackoverflow.com/questions/21302564/\tO\n\t\n\t\nWe\tO\tWe\tO\ndevelop\tO\tdevelop\tO\nwith\tO\twith\tO\nXamarin.iOS\tB-Application\tXamarin.iOS\tO\nand\tO\tand\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsearch/highlight\tO\tsearch/highlight\tO\nin\tO\tin\tO\na\tO\ta\tO\nPDF\tB-File_Type\tPDF\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nan\tO\tan\tO\niOS\tB-Operating_System\tiOS\tO\nclass\tO\tclass\tO\nfor\tO\tfor\tO\nsearching\tO\tsearching\tO\n,\tO\t,\tO\nCGPDFScanner\tB-Library_Class\tCGPDFScanner\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nunfortunately\tO\tunfortunately\tO\nno\tO\tno\tO\nbindings\tO\tbindings\tO\nare\tO\tare\tO\noffered\tO\toffered\tO\nby\tO\tby\tO\nXamarin\tB-Application\tXamarin\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nor\tO\tor\tO\nwe\tO\twe\tO\nshould\tO\tshould\tO\nforget\tO\tforget\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nWe\tO\tWe\tO\nbelieve\tO\tbelieve\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nbindings\tO\tbindings\tO\nfor\tO\tfor\tO\nexisting\tO\texisting\tO\niOS\tB-Operating_System\tiOS\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\nprobably\tO\tprobably\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nPDFKitten\tB-Library\tPDFKitten\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nXamarin\tB-Application\tXamarin\tO\nbindings\tO\tbindings\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhints\tO\thints\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21302564\tO\t21302564\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21302564/\tO\thttps://stackoverflow.com/questions/21302564/\tO\n\t\n\t\nXamarin\tB-Application\tXamarin\tO\noffers\tO\toffers\tO\nway\tO\tway\tO\nfor\tO\tfor\tO\ncreating\tO\tcreating\tO\nbinding\tO\tbinding\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nworking\tO\tworking\tO\nand\tO\tand\tO\ntested\tO\ttested\tO\nsolution\tO\tsolution\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nObjective\tB-Language\tObjective\tO\nC\tI-Language\tC\tO\n,\tO\t,\tO\ncreate\tO\tcreate\tO\nBinding\tO\tBinding\tO\nlibrary\tO\tlibrary\tO\nin\tO\tin\tO\ntamarin\tB-Application\ttamarin\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\ndetailed\tO\tdetailed\tO\ndocument\tO\tdocument\tO\nof\tO\tof\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nhere\tO\there\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\nbinding\tO\tbinding\tO\nlibrary\tO\tlibrary\tO\nfor\tO\tfor\tO\none\tO\tone\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nthird\tO\tthird\tO\nparty\tO\tparty\tO\nsdk\tB-Application\tsdk\tO\nwhich\tO\twhich\tO\nwas\tO\twas\tO\nonly\tO\tonly\tO\nin\tO\tin\tO\nobjective\tB-Language\tobjective\tO\nC\tI-Language\tC\tO\n.\tO\t.\tO\nI\tO\tI\tO\nfollowed\tO\tfollowed\tO\nstep\tO\tstep\tO\ngiven\tO\tgiven\tO\nhere\tO\there\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48274414\tO\t48274414\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48274414/\tO\thttps://stackoverflow.com/questions/48274414/\tO\n\t\n\t\nIn\tO\tIn\tO\nCakePHP\tB-Library\tCakePHP\tO\n2.x\tB-Version\t2.x\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\noutput\tO\toutput\tO\npagination\tO\tpagination\tO\nin\tO\tin\tO\nBootstrap\tB-Library\tBootstrap\tO\n3\tB-Version\t3\tO\nperfectly\tO\tperfectly\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6423\tI-Code_Block\tQ_6423\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6424\tI-Code_Block\tQ_6424\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\nBootstrap\tB-Library\tBootstrap\tO\n4\tB-Version\t4\tO\nBeta\tO\tBeta\tO\nis\tO\tis\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nwith\tO\twith\tO\nclass\tO\tclass\tO\ninside\tO\tinside\tO\neach\tO\teach\tO\nelement\tO\telement\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6425\tI-Code_Block\tQ_6425\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\nto\tO\tto\tO\nset\tO\tset\tO\noptions\tO\toptions\tO\nof\tO\tof\tO\nPaginator\tB-Library\tPaginator\tO\nin\tO\tin\tO\nCakePHP\tB-Library\tCakePHP\tO\n2.x\tB-Version\t2.x\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18652926\tO\t18652926\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18652926/\tO\thttps://stackoverflow.com/questions/18652926/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nfacing\tO\tfacing\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nasp.net\tB-Library\tasp.net\tO\napplication\tO\tapplication\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nupdate\tB-Library_Class\tupdate\tO\npanel\tI-Library_Class\tpanel\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nonly\tO\tonly\tO\nwith\tO\twith\tO\nIE9\tB-Application\tIE9\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nother\tO\tother\tO\nbrowser\tB-Application\tbrowser\tO\napplication\tO\tapplication\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ndebuging\tO\tdebuging\tO\npurpose\tO\tpurpose\tO\nand\tO\tand\tO\nto\tO\tto\tO\nconclude\tO\tconclude\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nonly\tO\tonly\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nupdate\tB-Library_Class\tupdate\tO\npanel\tI-Library_Class\tpanel\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nasp.net\tB-Library\tasp.net\tO\nweb\tO\tweb\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nASPX\tB-File_Type\tASPX\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1934\tI-Code_Block\tQ_1934\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbutton\tO\tbutton\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nJS\tB-Language\tJS\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nJS\tB-Language\tJS\tO\nerror\tO\terror\tO\nis\tO\tis\tO\n\t\nFrom\tO\tFrom\tO\nIE\tB-Application\tIE\tO\n's\tO\t's\tO\nF12\tB-Application\tF12\tO\ndeveloper\tI-Application\tdeveloper\tO\ntool\tI-Application\ttool\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1935\tI-Code_Block\tQ_1935\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFrom\tO\tFrom\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2012\tB-Version\t2012\tO\n,\tO\t,\tO\n\t\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nupdate\tB-Library_Class\tupdate\tO\npanel\tI-Library_Class\tpanel\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nJS\tB-Language\tJS\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18652926\tO\t18652926\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18652926/\tO\thttps://stackoverflow.com/questions/18652926/\tO\n\t\n\t\nAdd\tO\tAdd\tO\nfollowing\tO\tfollowing\tO\nline\tO\tline\tO\nin\tO\tin\tO\n<head>\tB-HTML_XML_Tag\t<head>\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2447\tI-Code_Block\tA_2447\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOR\tO\tOR\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2448\tI-Code_Block\tA_2448\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOR\tO\tOR\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2449\tI-Code_Block\tA_2449\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46973946\tO\t46973946\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46973946/\tO\thttps://stackoverflow.com/questions/46973946/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\n20\tO\t20\tO\nimages\tB-User_Interface_Element\timages\tO\nfrom\tO\tfrom\tO\nremote\tO\tremote\tO\nserver\tB-Application\tserver\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\nin\tO\tin\tO\nAndroid\tB-File_Name\tAndroid\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nInterface\tO\tInterface\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6214\tI-Code_Block\tQ_6214\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nfragment\tO\tfragment\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6215\tI-Code_Block\tQ_6215\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nI\tO\tI\tO\niterate\tO\titerate\tO\nloop\tO\tloop\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\ncall.enqueue()\tB-Library_Function\tcall.enqueue()\tB-Code_Block\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\ngood\tO\tgood\tO\nsolution\tO\tsolution\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nperform\tO\tperform\tO\nmy\tO\tmy\tO\nandroid\tB-Operating_System\tandroid\tO\napp\tO\tapp\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46973946\tO\t46973946\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46973946/\tO\thttps://stackoverflow.com/questions/46973946/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ndependencies\tO\tdependencies\tO\nlike\tO\tlike\tO\nGlide\tB-Library_Class\tGlide\tO\n,\tO\t,\tO\nPissaco\tB-Library_Class\tPissaco\tO\netc\tO\tetc\tO\nfor\tO\tfor\tO\ndownloading\tO\tdownloading\tO\nimages\tB-User_Interface_Element\timages\tO\nfrom\tO\tfrom\tO\nremote\tO\tremote\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nthese\tO\tthese\tO\nprovide\tO\tprovide\tO\nbetter\tO\tbetter\tO\ncaching\tO\tcaching\tO\nand\tO\tand\tO\nerror\tO\terror\tO\nhandling\tO\thandling\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nPissaco\tB-Library_Class\tPissaco\tO\nto\tO\tto\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n\t\nFirst\tO\tFirst\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nPissaco\tB-Library_Class\tPissaco\tO\ndependency\tO\tdependency\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nbuild.gradle\tB-Library_Function\tbuild.gradle\tB-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6834\tI-Code_Block\tA_6834\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38534653\tO\t38534653\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38534653/\tO\thttps://stackoverflow.com/questions/38534653/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nquestuion\tO\tquestuion\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\narticle\tB-Class_Name\tarticle\tO\nwith\tO\twith\tO\nrepeatable\tO\trepeatable\tO\nproperty\tO\tproperty\tO\ntags\tB-Variable_Name\ttags\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ni\tO\ti\tO\nediting\tO\tediting\tO\nexist\tO\texist\tO\narticle\tB-Class_Name\tarticle\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\ntags\tB-Variable_Name\ttags\tO\nall\tO\tall\tO\nis\tO\tis\tO\nok\tO\tok\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\na\tO\ta\tO\nremove\tO\tremove\tO\ntag\tB-Variable_Name\ttag\tO\nfrom\tO\tfrom\tO\nform\tB-Variable_Name\tform\tO\nin\tO\tin\tO\narticle\tB-Class_Name\tarticle\tO\nthis\tO\tthis\tO\ntag\tB-Variable_Name\ttag\tO\nstill\tO\tstill\tO\nexists\tO\texists\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\ni\tO\ti\tO\nunderstand\tO\tunderstand\tO\npost\tO\tpost\tO\ndata\tO\tdata\tO\nbinding\tO\tbinding\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nform\tB-Variable_Name\tform\tO\nand\tO\tand\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nentity\tO\tentity\tO\n.\tO\t.\tO\n\t\nThats\tO\tThats\tO\nway\tO\tway\tO\nnew\tO\tnew\tO\ntags\tB-Variable_Name\ttags\tO\nappear\tO\tappear\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmaterial\tO\tmaterial\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhy\tO\twhy\tO\ndid\tO\tdid\tO\nthey\tO\tthey\tO\nnot\tO\tnot\tO\ndisappear\tO\tdisappear\tO\nafter\tO\tafter\tO\nbinding\tO\tbinding\tO\nnew\tO\tnew\tO\npost\tO\tpost\tO\ndata\tO\tdata\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4855\tI-Code_Block\tQ_4855\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUPDATE\tO\tUPDATE\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nArticle\tB-Class_Name\tArticle\tO\nentity\tO\tentity\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4856\tI-Code_Block\tQ_4856\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nArticleType\tB-Class_Name\tArticleType\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4857\tI-Code_Block\tQ_4857\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38534653\tO\t38534653\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38534653/\tO\thttps://stackoverflow.com/questions/38534653/\tO\n\t\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nadd\tB-Function_Name\tadd\tO\ntag\tI-Function_Name\ttag\tO\nand\tO\tand\tO\nremove\tB-Function_Name\tremove\tO\ntag\tI-Function_Name\ttag\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nArticle\tB-Class_Name\tArticle\tO\nentity\tO\tentity\tO\nto\tO\tto\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5570\tI-Code_Block\tA_5570\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44606362\tO\t44606362\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44606362/\tO\thttps://stackoverflow.com/questions/44606362/\tO\n\t\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ntry\tB-Code_Block\ttry\tO\ncatch\tI-Code_Block\tcatch\tO\nblock\tO\tblock\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5798\tI-Code_Block\tQ_5798\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nwhich\tO\twhich\tO\nexception\tB-Library_Class\texception\tO\ntype\tO\ttype\tO\nit\tO\tit\tO\nis\tO\tis\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nmay\tO\tmay\tO\nthrow\tO\tthrow\tO\nmultiple\tO\tmultiple\tO\nexception\tB-Library_Class\texception\tO\ntypes\tO\ttypes\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2435111\tO\t2435111\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2435111/\tO\thttps://stackoverflow.com/questions/2435111/\tO\n\t\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nlighter\tO\tlighter\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nan\tO\tan\tO\nEntity\tO\tEntity\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\njust\tO\tjust\tO\nfor\tO\tfor\tO\nperformance\tO\tperformance\tO\nreason\tO\treason\tO\npointing\tO\tpointing\tO\nto\tO\tto\tO\nsame\tO\tsame\tO\ntable\tB-Data_Structure\ttable\tO\nbut\tO\tbut\tO\nwith\tO\twith\tO\nfewer\tO\tfewer\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nmapped\tO\tmapped\tO\n.\tO\t.\tO\n\t\nE.g\tO\tE.g\tO\nIf\tO\tIf\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nContact\tO\tContact\tO\nTable\tB-Data_Structure\tTable\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\n50\tO\t50\tO\nColumns\tB-Data_Structure\tColumns\tO\nand\tO\tand\tO\nin\tO\tin\tO\nfew\tO\tfew\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrelated\tO\trelated\tO\nentities\tO\tentities\tO\nI\tO\tI\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\nFirstName\tB-Variable_Name\tFirstName\tO\nand\tO\tand\tO\nLastName\tB-Variable_Name\tLastName\tO\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nit\tO\tit\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nlightweight\tO\tlightweight\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nContact\tO\tContact\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nE.g\tO\tE.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_163\tI-Code_Block\tQ_163\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nmultiple\tO\tmultiple\tO\nclasses\tO\tclasses\tO\nto\tO\tto\tO\nsame\tO\tsame\tO\ntable\tB-Data_Structure\ttable\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2435111\tO\t2435111\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2435111/\tO\thttps://stackoverflow.com/questions/2435111/\tO\n\t\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nmap\tO\tmap\tO\nmultiple\tO\tmultiple\tO\nclasses\tO\tclasses\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\nonce\tO\tonce\tO\nand\tO\tand\tO\nthough\tO\tthough\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ndoing\tO\tdoing\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nbitten\tO\tbitten\tO\nme\tO\tme\tO\nlater\tO\tlater\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nprojections\tO\tprojections\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nlight\tO\tlight\tO\n\"\tO\t\"\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2435111\tO\t2435111\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2435111/\tO\thttps://stackoverflow.com/questions/2435111/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\nalways\tO\talways\tO\nmap\tO\tmap\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\nsmaller\tO\tsmaller\tO\nones\tO\tones\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nproject\tO\tproject\tO\non\tO\ton\tO\nusing\tO\tusing\tO\nTransformers.AliasToBean\tB-Library_Function\tTransformers.AliasToBean\tB-Code_Block\nor\tO\tor\tO\nLINQ\tB-Language\tLINQ\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlatter\tO\tlatter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_241\tI-Code_Block\tA_241\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\nselect\tO\tselect\tO\nthose\tO\tthose\tO\nthree\tO\tthree\tO\nfields\tO\tfields\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nDB\tO\tDB\tO\n,\tO\t,\tO\neven\tO\teven\tO\nwhen\tO\twhen\tO\nfiltering\tO\tfiltering\tO\nby\tO\tby\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nworth\tO\tworth\tO\nnoting\tO\tnoting\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nLINQ\tB-Language\tLINQ\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nanonymous\tO\tanonymous\tO\ntype\tO\ttype\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nany\tO\tany\tO\nprojection\tO\tprojection\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nwithout\tO\twithout\tO\ncreating\tO\tcreating\tO\nadditional\tO\tadditional\tO\ntypes\tO\ttypes\tO\nor\tO\tor\tO\nmappings\tO\tmappings\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37080078\tO\t37080078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37080078/\tO\thttps://stackoverflow.com/questions/37080078/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nGoogle\tB-Language\tGoogle\tO\nScript\tI-Language\tScript\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nuser\tO\tuser\tO\ninformation\tO\tinformation\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nHTML\tB-File_Type\tHTML\tO\nform\tO\tform\tO\nto\tO\tto\tO\nGoogle\tB-Application\tGoogle\tO\nDrive\tI-Application\tDrive\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\na\tO\ta\tO\nversion\tO\tversion\tO\nthat\tO\tthat\tO\nworked\tO\tworked\tO\nwell\tO\twell\tO\nenough\tO\tenough\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nonclick\tO\tonclick\tO\nevent\tO\tevent\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nfunctionality\tO\tfunctionality\tO\nthat\tO\tthat\tO\nensured\tO\tensured\tO\nall\tO\tall\tO\nrequired\tO\trequired\tO\nfields\tO\tfields\tO\nwere\tO\twere\tO\nfilled\tO\tfilled\tO\nin\tO\tin\tO\nbefore\tO\tbefore\tO\nsubmission\tO\tsubmission\tO\n.\tO\t.\tO\n\t\nResearch\tO\tResearch\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\nsuggested\tO\tsuggested\tO\nonsubmit\tO\tonsubmit\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\ntag\tO\ttag\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nmodified\tO\tmodified\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nonsubmit\tO\tonsubmit\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nthat\tO\tthat\tO\nappears\tO\tappears\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nhappens\tO\thappens\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\non\tO\ton\tO\nsubmission\tO\tsubmission\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\ncompletely\tO\tcompletely\tO\ndisappears\tO\tdisappears\tO\nand\tO\tand\tO\nno\tO\tno\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nDrive\tB-Application\tDrive\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\nonsubmit\tO\tonsubmit\tO\nrefreshes\tO\trefreshes\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n...\tO\t...\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\nto\tO\tto\tO\nalso\tO\talso\tO\nrecreate\tO\trecreate\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\npage\tO\tpage\tO\nminus\tO\tminus\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n,\tO\t,\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\nmessage\tO\tmessage\tO\nabout\tO\tabout\tO\nsuccessful\tO\tsuccessful\tO\nupload\tO\tupload\tO\n.\tO\t.\tO\n\t\nFile\tO\tFile\tO\nsubmission\tO\tsubmission\tO\nalso\tO\talso\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nappreciate\tO\tappreciate\tO\nany\tO\tany\tO\nthoughts\tO\tthoughts\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nposts\tO\tposts\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nvery\tO\tvery\tO\nsimilar\tO\tsimilar\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nluck\tO\tluck\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4612\tI-Code_Block\tQ_4612\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nJavaScript\tB-Language\tJavaScript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4613\tI-Code_Block\tQ_4613\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37080078\tO\t37080078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37080078/\tO\thttps://stackoverflow.com/questions/37080078/\tO\n\t\n\t\nAnother\tO\tAnother\tO\nnote\tO\tnote\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ninputs\tO\tinputs\tO\nshare\tO\tshare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nID\tB-Variable_Name\tID\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nID\tB-Variable_Name\tID\tO\nand\tO\tand\tO\nname\tO\tname\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nmake\tO\tmake\tO\nthem\tO\tthem\tO\nmatch\tO\tmatch\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\ngive\tO\tgive\tO\nthe\tO\tthe\tO\nsubmit\tO\tsubmit\tO\nbutton\tO\tbutton\tO\nan\tO\tan\tO\nID\tO\tID\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nalso\tO\talso\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nHTML5\tB-Language\tHTML5\tO\nform\tO\tform\tO\ninput\tO\tinput\tO\nvalidation\tO\tvalidation\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nmostly\tO\tmostly\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nbrowsers\tB-Application\tbrowsers\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nultimately\tO\tultimately\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\njavascript\tB-Language\tjavascript\tO\n(\tO\t(\tO\nclient-side\tB-Application\tclient-side\tO\n)\tO\t)\tO\nand\tO\tand\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\nyour\tO\tyour\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5321\tI-Code_Block\tA_5321\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30308968\tO\t30308968\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30308968/\tO\thttps://stackoverflow.com/questions/30308968/\tO\n\t\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nscript\tO\tscript\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsplit\tO\tsplit\tO\ntext\tO\ttext\tO\ninto\tO\tinto\tO\nsentences\tO\tsentences\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\nimages\tB-User_Interface_Element\timages\tO\ndynamically\tO\tdynamically\tO\nfrom\tO\tfrom\tO\neach\tO\teach\tO\nsentence\tO\tsentence\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nfor\tO\tfor\tO\nloop\tO\tloop\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexecuting\tO\texecuting\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nimage\tB-User_Interface_Element\timage\tO\ncreation\tO\tcreation\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\nonly\tO\tonly\tO\nonce\tO\tonce\tO\n,\tO\t,\tO\ncreating\tO\tcreating\tO\njust\tO\tjust\tO\none\tO\tone\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\ndespite\tO\tdespite\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\ncontains\tO\tcontains\tO\n4\tO\t4\tO\ndistinct\tO\tdistinct\tO\nsentences\tO\tsentences\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npurpose\tO\tpurpose\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\ncreating\tO\tcreating\tO\nfour\tO\tfour\tO\nimages\tB-User_Interface_Element\timages\tO\nand\tO\tand\tO\nsaving\tO\tsaving\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nhard\tB-Device\thard\tO\ndrive\tI-Device\tdrive\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nyour\tO\tyour\tO\nsuggestions\tO\tsuggestions\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3639\tI-Code_Block\tQ_3639\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30308968\tO\t30308968\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30308968/\tO\thttps://stackoverflow.com/questions/30308968/\tO\n\t\n\t\nAll\tO\tAll\tO\nthe\tO\tthe\tO\nimages\tB-User_Interface_Element\timages\tO\nare\tO\tare\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfilename\tO\tfilename\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nruns\tO\truns\tO\nfast\tO\tfast\tO\nenough\tO\tenough\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntime()\tB-Library_Function\ttime()\tB-Code_Block\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nin\tO\tin\tO\nseconds\tO\tseconds\tO\n)\tO\t)\tO\nis\tO\tis\tO\ngiving\tO\tgiving\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\n4\tO\t4\tO\ntimes\tO\ttimes\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\noverwriting\tO\toverwriting\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfile\tO\tfile\tO\n4\tO\t4\tO\ntimes\tO\ttimes\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4307\tI-Code_Block\tA_4307\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nworkaround\tO\tworkaround\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nappend\tO\tappend\tO\na\tO\ta\tO\nrandom\tO\trandom\tO\nnumber\tO\tnumber\tO\nfor\tO\tfor\tO\nuniqueness\tO\tuniqueness\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nrand()\tB-Library_Function\trand()\tB-Code_Block\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4308\tI-Code_Block\tA_4308\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBetter\tO\tBetter\tO\nyet\tO\tyet\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nphp\tB-Language\tphp\tO\n's\tO\t's\tO\nbuilt-in\tO\tbuilt-in\tO\ntempnam()\tB-Library_Function\ttempnam()\tB-Code_Block\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nfilename\tO\tfilename\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24511126\tO\t24511126\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24511126/\tO\thttps://stackoverflow.com/questions/24511126/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\njQuery\tB-Library\tjQuery\tO\nvalidation\tO\tvalidation\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nsort\tO\tsort\tO\nbanners\tB-User_Interface_Element\tbanners\tO\non\tO\ton\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthree\tO\tthree\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nbanners\tB-User_Interface_Element\tbanners\tO\n:\tO\t:\tO\n\t\nDefault\tB-Variable_Name\tDefault\tO\nBanner\tI-Variable_Name\tBanner\tO\n(\tO\t(\tO\nset\tO\tset\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncompany\tO\tcompany\tO\n,\tO\t,\tO\nexisting\tO\texisting\tO\nrule\tO\trule\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nremoved\tO\tremoved\tO\nbut\tO\tbut\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsorted\tO\tsorted\tO\n)\tO\t)\tO\n\t\nSelectable\tB-Variable_Name\tSelectable\tO\nBanner\tI-Variable_Name\tBanner\tO\n(\tO\t(\tO\nselectable\tB-User_Interface_Element\tselectable\tO\nbanner\tI-User_Interface_Element\tbanner\tO\nform\tO\tform\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nmany\tO\tmany\tO\n)\tO\t)\tO\n\t\nSpecial\tB-Variable_Name\tSpecial\tO\nBanner\tI-Variable_Name\tBanner\tO\n(\tO\t(\tO\nspecial\tB-User_Interface_Element\tspecial\tO\nbanner\tI-User_Interface_Element\tbanner\tO\n,\tO\t,\tO\nset\tO\tset\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncompany\tO\tcompany\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nremoved\tO\tremoved\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncarousel\tO\tcarousel\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nbanners\tO\tbanners\tO\ncarousel\tO\tcarousel\tO\nhas\tO\thas\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nrules\tO\trules\tO\nno\tO\tno\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n7\tO\t7\tO\nbanners\tB-User_Interface_Element\tbanners\tO\nare\tO\tare\tO\nallowed\tO\tallowed\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ncarousel\tO\tcarousel\tO\nand\tO\tand\tO\nfour\tO\tfour\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncustom\tO\tcustom\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfour\tO\tfour\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nbeing\tO\tbeing\tO\nselectablebanners\tB-Variable_Name\tselectablebanners\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nlogic\tO\tlogic\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2731\tI-Code_Block\tQ_2731\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnother\tO\tAnother\tO\nrule\tO\trule\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ndefault\tB-Variable_Name\tdefault\tO\nbanner\tI-Variable_Name\tbanner\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nremoved\tO\tremoved\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsorted\tO\tsorted\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nimplemented\tO\timplemented\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2732\tI-Code_Block\tQ_2732\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tB-Code_Block\t}\tO\n)\tI-Code_Block\t)\tO\n;\tB-Code_Block\t;\tO\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\namend\tO\tamend\tO\nthis\tO\tthis\tO\nslightly\tO\tslightly\tO\nbut\tO\tbut\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nbegin\tO\tbegin\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nlogic\tO\tlogic\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\nslightly\tO\tslightly\tO\nmore\tO\tmore\tO\nadvanced\tO\tadvanced\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrule\tO\trule\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\n2\tO\t2\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\n\"\tO\t\"\tO\nselectedbanners\tB-Variable_Name\tselectedbanners\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nul\tO\tul\tO\n#sortable1\tB-Class_Name\t#sortable1\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nbanners\tO\tbanners\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nremoved\tO\tremoved\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nif\tO\tif\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ndefaultbanner\tB-Variable_Name\tdefaultbanner\tO\nand\tO\tand\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nselectablebanner\tB-Class_Name\tselectablebanner\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nmy\tO\tmy\tO\nprevious\tO\tprevious\tO\nvalidation\tO\tvalidation\tO\nto\tO\tto\tO\napply\tO\tapply\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ndefault\tB-Variable_Name\tdefault\tO\nbanner\tI-Variable_Name\tbanner\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nremoved\tO\tremoved\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\njsFiddle\tB-Application\tjsFiddle\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nmy\tO\tmy\tO\nfull\tO\tfull\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24511126\tO\t24511126\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24511126/\tO\thttps://stackoverflow.com/questions/24511126/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\ncompletely\tO\tcompletely\tO\nclear\tO\tclear\tO\nto\tO\tto\tO\nme\tO\tme\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nbest\tO\tbest\tO\nguess\tO\tguess\tO\nas\tO\tas\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3354\tI-Code_Block\tA_3354\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFiddle\tB-Application\tFiddle\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2967994\tO\t2967994\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2967994/\tO\thttps://stackoverflow.com/questions/2967994/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ncurrently\tO\tcurrently\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\nwin32\tB-Operating_System\twin32\tO\nconsole\tB-Application\tconsole\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nvisual\tB-Application\tvisual\tO\nstudio\tI-Application\tstudio\tO\nopen\tO\topen\tO\nit\tO\tit\tO\nin\tO\tin\tO\npowershell\tB-Application\tpowershell\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncmd.exe\tB-File_Name\tcmd.exe\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndebugging\tO\tdebugging\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nI\tO\tI\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nis\tO\tis\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nshell\tB-Application\tshell\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ncopy/paste\tO\tcopy/paste\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nwithout\tO\twithout\tO\nclicking\tO\tclicking\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2967994\tO\t2967994\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2967994/\tO\thttps://stackoverflow.com/questions/2967994/\tO\n\t\n\t\nIn\tO\tIn\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\ngoto\tO\tgoto\tO\nTools\tO\tTools\tO\n>\tO\t>\tO\nExternal\tO\tExternal\tO\nTools\tO\tTools\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nwindow\tB-User_Interface_Element\twindow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nTitle\tO\tTitle\tO\nto\tO\tto\tO\nPowershell\tB-Application\tPowershell\tO\n.\tO\t.\tO\n\t\nSet\tO\tSet\tO\nthe\tO\tthe\tO\nPowershell\tB-Application\tPowershell\tO\nStartup\tO\tStartup\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nwindow\tB-User_Interface_Element\twindow\tO\nbox\tI-User_Interface_Element\tbox\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ndump\tO\tdump\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\ntypically\tO\ttypically\tO\ngoto\tO\tgoto\tO\ncmd\tB-Application\tcmd\tO\ninto\tO\tinto\tO\nPowershell\tB-Application\tPowershell\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nlink\tO\tlink\tO\nwill\tO\twill\tO\nexplain\tO\texplain\tO\nit\tO\tit\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\nmore\tO\tmore\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2967994\tO\t2967994\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2967994/\tO\thttps://stackoverflow.com/questions/2967994/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nmixing\tO\tmixing\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nNT\tB-Library\tNT\tO\nconsole\tI-Library\tconsole\tO\nsubsystem\tI-Library\tsubsystem\tO\n(\tO\t(\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nframework\tO\tframework\tO\nofferring\tO\tofferring\tO\ncommon\tO\tcommon\tO\nservices\tO\tservices\tO\n)\tO\t)\tO\nwith\tO\twith\tO\ncmd.exe\tB-File_Name\tcmd.exe\tO\n(\tO\t(\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nconsuming\tO\tconsuming\tO\nthose\tO\tthose\tO\nservices\tO\tservices\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nWhen\tO\tWhen\tO\nvisuals\tB-Application\tvisuals\tO\nstudio\tI-Application\tstudio\tO\nruns\tO\truns\tO\na\tO\ta\tO\nconsole\tO\tconsole\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nactually\tO\tactually\tO\nrunning\tO\trunning\tO\nCMD\tB-Application\tCMD\tO\n.\tO\t.\tO\n\t\nCMD\tB-Application\tCMD\tO\nis\tO\tis\tO\na\tO\ta\tO\nconsole\tB-Application\tconsole\tO\napplication\tO\tapplication\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nno\tO\tno\tO\ndifferent\tO\tdifferent\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\n,\tO\t,\tO\ntherefore\tO\ttherefore\tO\nrunning\tO\trunning\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\npowershell\tB-Application\tpowershell\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nequally\tO\tequally\tO\nas\tO\tas\tO\nmistaken\tO\tmistaken\tO\na\tO\ta\tO\nconcept\tO\tconcept\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nin\tO\tin\tO\nPowerShell\tB-Application\tPowerShell\tO\nISE\tI-Application\tISE\tO\n,\tI-Application\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nimpossible\tO\timpossible\tO\n.\tO\t.\tO\n\t\nISE\tB-Application\tISE\tO\nis\tO\tis\tO\na\tO\ta\tO\nWindows\tB-Operating_System\tWindows\tO\nApplication\tO\tApplication\tO\n(\tO\t(\tO\nNT\tB-Library\tNT\tO\nGUI\tI-Library\tGUI\tO\nsubsystem\tI-Library\tsubsystem\tO\n)\tO\t)\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nan\tO\tan\tO\nentirely\tO\tentirely\tO\ndifferent\tO\tdifferent\tO\nsubsystem\tO\tsubsystem\tO\nthan\tO\tthan\tO\nthat\tO\tthat\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\n.\tO\t.\tO\n\t\n-Oisin\tB-User_Name\t-Oisin\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48180837\tO\t48180837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48180837/\tO\thttps://stackoverflow.com/questions/48180837/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n3\tO\t3\tO\ncassandra\tB-Application\tcassandra\tO\nnodes\tO\tnodes\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nexecute\tO\texecute\tO\na\tO\ta\tO\nquery\tO\tquery\tB-Code_Block\n,\tO\t,\tO\n2\tO\t2\tO\nnodes\tB-Data_Structure\tnodes\tO\nare\tO\tare\tO\ngiving\tO\tgiving\tO\nsame\tO\tsame\tO\nresponse\tO\tresponse\tO\nbut\tO\tbut\tO\n1\tO\t1\tO\nnode\tB-Data_Structure\tnode\tO\nis\tO\tis\tO\ngiving\tO\tgiving\tO\ndifferent\tO\tdifferent\tO\nresponse\tO\tresponse\tO\n\t\nSuppose\tO\tSuppose\tO\nI\tO\tI\tO\nexecuted\tO\texecuted\tO\nfollowing\tO\tfollowing\tO\nquery\tO\tquery\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6406\tI-Code_Block\tQ_6406\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNode1\tB-Variable_Name\tNode1\tO\nand\tO\tand\tO\nNode2\tB-Variable_Name\tNode2\tO\nare\tO\tare\tO\ngiving\tO\tgiving\tO\n2\tO\t2\tB-Code_Block\nrows\tB-Data_Structure\trows\tI-Code_Block\nbut\tO\tbut\tO\nNode3\tB-Variable_Name\tNode3\tO\nis\tO\tis\tO\ngiving\tO\tgiving\tO\n0\tO\t0\tB-Code_Block\nrows\tB-Data_Structure\trows\tI-Code_Block\n(\tO\t(\tI-Code_Block\nempty\tO\tempty\tI-Code_Block\nresponse\tO\tresponse\tI-Code_Block\n)\tO\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48180837\tO\t48180837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48180837/\tO\thttps://stackoverflow.com/questions/48180837/\tO\n\t\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nsteps\tO\tsteps\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nproblem\tO\tproblem\tO\nwas\tO\twas\tO\nsolved\tO\tsolved\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nin\tO\tin\tO\nsync\tO\tsync\tO\nin\tO\tin\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\n3\tO\t3\tO\nnodes\tB-Data_Structure\tnodes\tO\n\t\nrun\tO\trun\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nnodetool\tB-Library_Function\tnodetool\tB-Code_Block\nrebuild\tI-Library_Function\trebuild\tI-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\ninstances\tO\tinstances\tO\nand\tO\tand\tO\nalso\tO\talso\tO\n\t\nupdate\tO\tupdate\tO\n'\tB-Code_Block\t'\tB-Code_Block\nreplication_factor\tI-Code_Block\treplication_factor\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\nto\tO\tto\tO\n'\tB-Code_Block\t'\tB-Code_Block\nreplication_factor\tI-Code_Block\treplication_factor\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n3\tI-Code_Block\t3\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48180837\tO\t48180837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48180837/\tO\thttps://stackoverflow.com/questions/48180837/\tO\n\t\n\t\n1.You\tO\t1.You\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nNetwork\tO\tNetwork\tO\ntopology\tO\ttopology\tO\n.\tO\t.\tO\n\t\n2.Your\tO\t2.Your\tO\nreplication\tB-Library_Variable\treplication\tO\nfactor\tI-Library_Variable\tfactor\tO\nis\tO\tis\tO\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nSimple\tO\tSimple\tO\nstrategy\tO\tstrategy\tO\n:\tO\t:\tO\nUse\tO\tUse\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ndatacenter\tO\tdatacenter\tO\nand\tO\tand\tO\none\tO\tone\tO\nrack\tO\track\tO\n.\tO\t.\tO\n\t\nSimpleStrategy\tO\tSimpleStrategy\tO\nplaces\tO\tplaces\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nreplica\tO\treplica\tO\non\tO\ton\tO\na\tO\ta\tO\nnode\tB-Data_Structure\tnode\tO\ndetermined\tO\tdetermined\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\npartitioner\tO\tpartitioner\tO\n.\tO\t.\tO\n\t\nAdditional\tO\tAdditional\tO\nreplicas\tO\treplicas\tO\nare\tO\tare\tO\nplaced\tO\tplaced\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nnodes\tB-Data_Structure\tnodes\tO\nclockwise\tO\tclockwise\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nring\tO\tring\tO\nwithout\tO\twithout\tO\nconsidering\tO\tconsidering\tO\ntopology\tO\ttopology\tO\n(\tO\t(\tO\nrack\tO\track\tO\nor\tO\tor\tO\ndatacenter\tO\tdatacenter\tO\nlocation\tO\tlocation\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nGo\tO\tGo\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\n\t\nhttps://docs.datastax.com/en/cassandra/3.0/cassandra/architecture/archDataDistributeReplication.html\tO\thttps://docs.datastax.com/en/cassandra/3.0/cassandra/architecture/archDataDistributeReplication.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33400904\tO\t33400904\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33400904/\tO\thttps://stackoverflow.com/questions/33400904/\tO\n\t\n\t\nThis\tO\tThis\tO\nfunction\tO\tfunction\tO\nretrieves\tO\tretrieves\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nitem\tO\titem\tO\nrepresentation\tO\trepresentation\tO\nfrom\tO\tfrom\tO\ndisk\tO\tdisk\tO\n,\tO\t,\tO\nconverts\tO\tconverts\tO\nit\tO\tit\tO\nto\tO\tto\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nTodoItem\tB-Variable_Name\tTodoItem\tO\ninstances\tO\tinstances\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nunnamed\tO\tunnamed\tO\nclosure\tO\tclosure\tO\nwe\tO\twe\tO\npass\tO\tpass\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsorts\tO\tsorts\tO\nthat\tO\tthat\tO\narray\tB-Data_Structure\tarray\tO\nchronologically\tO\tchronologically\tO\n.\tO\t.\tO\n\t\nSorted\tO\tSorted\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nanymore\tO\tanymore\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nsort\tB-Library_Function\tsort\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nWhatever\tO\tWhatever\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nvarious\tO\tvarious\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4077\tI-Code_Block\tQ_4077\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33400904\tO\t33400904\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33400904/\tO\thttps://stackoverflow.com/questions/33400904/\tO\n\t\n\t\nJust\tO\tJust\tO\nreplace\tO\treplace\tO\nsorted\tB-Library_Function\tsorted\tB-Code_Block\nby\tO\tby\tO\nsort\tB-Library_Function\tsort\tB-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nalready\tO\talready\tO\ndone\tO\tdone\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntranslation\tO\ttranslation\tO\n(\tO\t(\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ncheck\tO\tcheck\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nknowing\tO\tknowing\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nbefore\tO\tbefore\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4780\tI-Code_Block\tA_4780\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nReminder\tO\tReminder\tO\n:\tO\t:\tO\nsorted\tB-Library_Function\tsorted\tB-Code_Block\nhas\tO\thas\tO\nbecome\tO\tbecome\tO\nsort\tB-Library_Function\tsort\tB-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nold\tO\told\tO\nsort\tB-Library_Function\tsort\tB-Code_Block\nis\tO\tis\tO\nnow\tO\tnow\tO\nsortInPlace\tB-Library_Function\tsortInPlace\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2004326\tO\t2004326\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2004326/\tO\thttps://stackoverflow.com/questions/2004326/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\nc#\tB-Language\tc#\tO\n.net\tB-Library\t.net\tO\napp\tO\tapp\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsubtract\tO\tsubtract\tO\ntwo\tO\ttwo\tO\ntime\tO\ttime\tO\nperiods\tO\tperiods\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntaken\tO\ttaken\tO\ntwo\tO\ttwo\tO\ndate\tB-Library_Class\tdate\tO\nobjects\tO\tobjects\tO\nand\tO\tand\tO\nsubtracted\tO\tsubtracted\tO\nthem\tO\tthem\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2004326\tO\t2004326\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2004326/\tO\thttps://stackoverflow.com/questions/2004326/\tO\n\t\n\t\nSubtracting\tO\tSubtracting\tO\none\tO\tone\tO\nDateTime\tB-Library_Class\tDateTime\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nTimespan\tB-Library_Class\tTimespan\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nwhich\tO\twhich\tO\nbasically\tO\tbasically\tO\ntells\tO\ttells\tO\nyou\tO\tyou\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\ndays/hours/mins/secs/milliseconds/ticks\tO\tdays/hours/mins/secs/milliseconds/ticks\tO\nthat\tO\tthat\tO\noccured\tO\toccured\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\n2\tO\t2\tO\nDateTimes\tB-Library_Class\tDateTimes\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2004326\tO\t2004326\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2004326/\tO\thttps://stackoverflow.com/questions/2004326/\tO\n\t\n\t\nCheck\tO\tCheck\tO\nthe\tO\tthe\tO\nTimeSpan\tB-Library_Class\tTimeSpan\tO\nstruct\tB-Data_Structure\tstruct\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nDateTime\tB-Library_Class\tDateTime\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nhandy\tO\thandy\tO\nprocedures\tO\tprocedures\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nAddDays\tB-Library_Function\tAddDays\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_200\tI-Code_Block\tA_200\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSimilarlly\tO\tSimilarlly\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nAddHours\tB-Library_Function\tAddHours\tB-Code_Block\n,\tO\t,\tO\nAddMonths\tB-Library_Function\tAddMonths\tB-Code_Block\nand\tO\tand\tO\neven\tO\teven\tO\nAddMilliseconds\tB-Library_Function\tAddMilliseconds\tB-Code_Block\n:\tO\t:\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/system.datetime_members.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.datetime_members.aspx\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14639108\tO\t14639108\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14639108/\tO\thttps://stackoverflow.com/questions/14639108/\tO\n\t\n\t\nImagine\tO\tImagine\tO\na\tO\ta\tO\nplane\tO\tplane\tO\nwith\tO\twith\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\npoints\tO\tpoints\tO\nat\tO\tat\tO\nknown\tO\tknown\tO\nlocations\tO\tlocations\tO\n.\tO\t.\tO\n\t\nMost\tO\tMost\tO\nare\tO\tare\tO\nclustered\tO\tclustered\tO\nclose\tO\tclose\tO\ntogether\tO\ttogether\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsome\tO\tsome\tO\nare\tO\tare\tO\noutliers\tO\toutliers\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nlarge\tO\tlarge\tO\nareas\tO\tareas\tO\nwhere\tO\twhere\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\npoints\tO\tpoints\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nclients\tO\tclients\tO\nwho\tO\twho\tO\ncan\tO\tcan\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\nplane\tO\tplane\tO\nthrough\tO\tthrough\tO\nrectangular\tO\trectangular\tO\nviewports\tO\tviewports\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nclient\tO\tclient\tO\n's\tO\t's\tO\nviewport\tO\tviewport\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nof\tO\tof\tO\ndifferent\tO\tdifferent\tO\ndimensions\tO\tdimensions\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmoved\tO\tmoved\tO\ninstantly\tO\tinstantly\tO\nto\tO\tto\tO\nany\tO\tany\tO\nlocation\tO\tlocation\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nplane\tO\tplane\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclients\tO\tclients\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nlocations\tO\tlocations\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npoints\tO\tpoints\tO\n;\tO\t;\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\na\tO\ta\tO\nclient\tO\tclient\tO\nconnects\tO\tconnects\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncommunicate\tO\tcommunicate\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nits\tO\tits\tO\nviewport\tO\tviewport\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\nshould\tO\tshould\tO\nrespond\tO\trespond\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlocation\tO\tlocation\tO\nwhere\tO\twhere\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\npoints\tO\tpoints\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nvisible\tO\tvisible\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nclient\tO\tclient\tO\n's\tO\t's\tO\nviewport\tO\tviewport\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclient\tO\tclient\tO\nvisits\tO\tvisits\tO\nthat\tO\tthat\tO\nlocation\tO\tlocation\tO\n,\tO\t,\tO\ncollects\tO\tcollects\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nvisiting\tO\tvisiting\tO\nthose\tO\tthose\tO\npoints\tO\tpoints\tO\n,\tO\t,\tO\nsends\tO\tsends\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nrequests\tO\trequests\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nlocation\tO\tlocation\tO\nto\tO\tto\tO\nvisit\tO\tvisit\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncontinues\tO\tcontinues\tO\nuntil\tO\tuntil\tO\nall\tO\tall\tO\npoints\tO\tpoints\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nvisited\tO\tvisited\tO\nby\tO\tby\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\none\tO\tone\tO\nclient\tO\tclient\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nan\tO\tan\tO\nefficient\tO\tefficient\tO\nalgorithm\tO\talgorithm\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nchoose\tO\tchoose\tO\nthe\tO\tthe\tO\nlocations\tO\tlocations\tO\nto\tO\tto\tO\nvisit\tO\tvisit\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nideal\tO\tideal\tO\nsolution\tO\tsolution\tO\nwill\tO\twill\tO\nminimize\tO\tminimize\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nlocations\tO\tlocations\tO\nthat\tO\tthat\tO\nclients\tO\tclients\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nvisit\tO\tvisit\tO\nby\tO\tby\tO\nincluding\tO\tincluding\tO\nas\tO\tas\tO\nmany\tO\tmany\tO\nunvisited\tO\tunvisited\tO\npoints\tO\tpoints\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nviewport\tO\tviewport\tO\nlocation\tO\tlocation\tO\n,\tO\t,\tO\nminimizing\tO\tminimizing\tO\nduplicate\tO\tduplicate\tO\nvisits\tO\tvisits\tO\non\tO\ton\tO\npoints\tO\tpoints\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nvisiting\tO\tvisiting\tO\nlocations\tO\tlocations\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nunvisited\tO\tunvisited\tO\npoints\tO\tpoints\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nrecommend\tO\trecommend\tO\nan\tO\tan\tO\nalgorithm\tO\talgorithm\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14639108\tO\t14639108\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14639108/\tO\thttps://stackoverflow.com/questions/14639108/\tO\n\t\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1855\tI-Code_Block\tA_1855\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27406632\tO\t27406632\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27406632/\tO\thttps://stackoverflow.com/questions/27406632/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\nFileHandlers\tB-Library_Class\tFileHandlers\tO\nthat\tO\tthat\tO\nwrite\tO\twrite\tO\nout\tO\tout\tO\nto\tO\tto\tO\ntwo\tO\ttwo\tO\nseparate\tO\tseparate\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nI/O\tO\tI/O\tO\noccurring\tO\toccurring\tO\nis\tO\tis\tO\nslowing\tO\tslowing\tO\ndown\tO\tdown\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nbit\tO\tbit\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nFileHandlers\tB-Library_Class\tFileHandlers\tO\nrun\tO\trun\tO\non\tO\ton\tO\nseparate\tO\tseparate\tO\nthreads\tO\tthreads\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\non\tO\ton\tO\nseparate\tO\tseparate\tO\nthreads\tO\tthreads\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneeded\tO\tneeded\tO\na\tO\ta\tO\nconcept\tO\tconcept\tO\nof\tO\tof\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nqueue\tB-Data_Structure\tqueue\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nseparate\tO\tseparate\tO\nthreads\tO\tthreads\tO\ncan\tO\tcan\tO\npoll\tO\tpoll\tO\nthis\tO\tthis\tO\nqueue\tO\tqueue\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nany\tO\tany\tO\nincoming\tO\tincoming\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\npreformatted\tO\tpreformatted\tO\nmessages\tO\tmessages\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nany\tO\tany\tO\narguments\tO\targuments\tO\nused\tO\tused\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\nbefore\tO\tbefore\tO\nthey\tO\tthey\tO\nactually\tO\tactually\tO\nreach\tO\treach\tO\nthe\tO\tthe\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFileHandler\tB-Library_Class\tFileHandler\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\n've\tO\t've\tO\nrealised\tO\trealised\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nlog\tB-File_Type\tlog\tO\n\"\tO\t\"\tO\nmethods\tO\tmethods\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nlogger\tO\tlogger\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthat\tO\tthat\tO\nattempts\tO\tattempts\tO\nto\tO\tto\tO\ninvoke\tO\tinvoke\tO\nmethods\tO\tmethods\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\nformat\tO\tformat\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nsimply\tO\tsimply\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nadds\tO\tadds\tO\nmy\tO\tmy\tO\ntrace\tO\ttrace\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nqueue\tO\tqueue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nrun()\tB-Library_Function\trun()\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nFileHandlers\tB-Library_Class\tFileHandlers\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\nusing\tO\tusing\tO\npublish()\tB-Library_Function\tpublish()\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nnow\tO\tnow\tO\nrealise\tO\trealise\tO\npublish()\tB-Library_Function\tpublish()\tO\nonly\tO\tonly\tO\ntakes\tO\ttakes\tO\nin\tO\tin\tO\na\tO\ta\tO\nLogRecord\tB-Library_Class\tLogRecord\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nlevel\tO\tlevel\tO\n+\tO\t+\tO\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ntraces\tO\ttraces\tO\nhave\tO\thave\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nsimply\tO\tsimply\tO\nbe\tO\tbe\tO\nplaced\tO\tplaced\tO\nin\tO\tin\tO\nan\tO\tan\tO\noverall\tO\toverall\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nFormatter\tB-Library_Class\tFormatter\tO\n\"\tO\t\"\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n've\tO\t've\tO\nset\tO\tset\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nFileHandler\tB-Library_Class\tFileHandler\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlogger\tO\tlogger\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFileHandler\tB-Library_Class\tFileHandler\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nlog\tO\tlog\tO\nmethod\tO\tmethod\tO\nand\tO\tand\tO\nformat\tO\tformat\tO\nthe\tO\tthe\tO\nstring\tO\tstring\tO\nas\tO\tas\tO\ndesigned\tO\tdesigned\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFormatter\tB-Library_Class\tFormatter\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nkinda\tO\tkinda\tO\n.\tO\t.\tO\n\t\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nsilly\tO\tsilly\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\nworth\tO\tworth\tO\ncontinuing\tO\tcontinuing\tO\non\tO\ton\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nworking\tO\tworking\tO\nAROUND\tO\tAROUND\tO\nthe\tO\tthe\tO\njava.util.Logger\tB-Library_Class\tjava.util.Logger\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nuseful\tO\tuseful\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\njava.util.Logger\tB-Value\tjava.util.Logger\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nlogger\tO\tlogger\tO\ninstance\tO\tinstance\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nbeing\tO\tbeing\tO\nable\tO\table\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nmore\tO\tmore\tO\ncontrol\tO\tcontrol\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nsuggestions\tO\tsuggestions\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nlong\tO\tlong\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\neasily\tO\teasily\tO\nunderstood\tO\tunderstood\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndescription\tO\tdescription\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nupload\tO\tupload\tO\nsomewhere\tO\tsomewhere\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27406632\tO\t27406632\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27406632/\tO\thttps://stackoverflow.com/questions/27406632/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nlog4j\tB-Application\tlog4j\tO\n2\tB-Version\t2\tO\nJDK\tO\tJDK\tO\nLogging\tO\tLogging\tO\nAdapter\tO\tAdapter\tO\nto\tO\tto\tO\nenable\tO\tenable\tO\nlogging\tO\tlogging\tO\nwith\tO\twith\tO\nlog4j\tB-Application\tlog4j\tO\n,\tO\t,\tO\nAnd\tO\tAnd\tO\nlog4j\tB-Application\tlog4j\tO\n2\tB-Version\t2\tO\nprovide\tO\tprovide\tO\nremarkable\tO\tremarkable\tO\nasynchronous\tO\tasynchronous\tO\nLogging\tO\tLogging\tO\nmechanism\tO\tmechanism\tO\nwith\tO\twith\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nconfiguration\tO\tconfiguration\tO\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nNecessary\tO\tNecessary\tO\nVM\tO\tVM\tO\narguments\tO\targuments\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5332\tI-Code_Block\tA_5332\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nlog4j\tB-Application\tlog4j\tO\n2\tB-Version\t2\tO\nasync\tO\tasync\tO\nlogging\tO\tlogging\tO\nhere\tO\there\tO\nand\tO\tand\tO\ntomcat\tB-Application\ttomcat\tO\nconfiguration\tO\tconfiguration\tO\ndetails\tO\tdetails\tO\nhere\tO\there\tO\n\t\nsample\tO\tsample\tO\nLog4j2.xml\tB-File_Name\tLog4j2.xml\tO\nfor\tO\tfor\tO\nasync\tO\tasync\tO\nloggign\tO\tloggign\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5333\tI-Code_Block\tA_5333\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27406632\tO\t27406632\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27406632/\tO\thttps://stackoverflow.com/questions/27406632/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nreally\tO\treally\tO\nconsider\tO\tconsider\tO\nusing\tO\tusing\tO\nSLF4J\tB-Library\tSLF4J\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nissues\tO\tissues\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndescribing\tO\tdescribing\tO\ncome\tO\tcome\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\nrolling\tO\trolling\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nlogger\tB-Application\tlogger\tO\n.\tO\t.\tO\n\t\nSLF4J\tB-Library\tSLF4J\tO\nis\tO\tis\tO\nreally\tO\treally\tO\ncommonly\tO\tcommonly\tO\nused\tO\tused\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nintrusive\tO\tintrusive\tO\n,\tO\t,\tO\nshould\tO\tshould\tO\nyou\tO\tyou\tO\ndecide\tO\tdecide\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nsomething\tO\tsomething\tO\ndifferent\tO\tdifferent\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nswap\tO\tswap\tO\nit\tO\tit\tO\nout\tO\tout\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nframework\tO\tframework\tO\n.\tO\t.\tO\n\t\nhttp://saltnlight5.blogspot.ca/2013/08/how-to-configure-slf4j-with-different.html\tO\thttp://saltnlight5.blogspot.ca/2013/08/how-to-configure-slf4j-with-different.html\tO\n\t\nhttp://www.slf4j.org/manual.html\tO\thttp://www.slf4j.org/manual.html\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\ndecide\tO\tdecide\tO\nto\tO\tto\tO\nstick\tO\tstick\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nlogger\tB-Application\tlogger\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nsay\tO\tsay\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nstart\tO\tstart\tO\nby\tO\tby\tO\nmaking\tO\tmaking\tO\nit\tO\tit\tO\na\tO\ta\tO\nsingleton\tO\tsingleton\tO\nwith\tO\twith\tO\nseveral\tO\tseveral\tO\nlogwriters\tO\tlogwriters\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nlog\tO\tlog\tO\nlevels\tO\tlevels\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nthen\tO\tthen\tO\nsetup\tO\tsetup\tO\na\tO\ta\tO\nnon-blocking\tO\tnon-blocking\tO\nqueue\tB-Data_Structure\tqueue\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nlogger\tB-Application\tlogger\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntons\tO\ttons\tO\nof\tO\tof\tO\nexamples\tO\texamples\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\nthere\tO\tthere\tO\n)\tO\t)\tO\nand\tO\tand\tO\nsimply\tO\tsimply\tO\ncall\tO\tcall\tO\nlog(logLevel,\tB-Function_Name\tlog(logLevel,\tO\nlogOrigin,\tI-Function_Name\tlogOrigin,\tO\nlogMessage)\tI-Function_Name\tlogMessage)\tO\nand\tO\tand\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nhood\tO\thood\tO\nsend\tO\tsend\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\neach\tO\teach\tO\nlogwriter\tB-Class_Name\tlogwriter\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nnon-blocking\tO\tnon-blocking\tO\nqueue\tB-Data_Structure\tqueue\tO\nthat\tO\tthat\tO\nruns\tO\truns\tO\non\tO\ton\tO\na\tO\ta\tO\nthread\tO\tthread\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nlogwriter\tB-Class_Name\tlogwriter\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nlogwriter\tB-Class_Name\tlogwriter\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nit\tO\tit\tO\n's\tO\t's\tO\nown\tO\town\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\neach\tO\teach\tO\nlog\tB-File_Type\tlog\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\none\tO\tone\tO\nlogger\tB-Application\tlogger\tO\nas\tO\tas\tO\nall\tO\tall\tO\nit\tO\tit\tO\nis\tO\tis\tO\nis\tO\tis\tO\na\tO\ta\tO\nshort\tO\tshort\tO\nhand\tO\thand\tO\nto\tO\tto\tO\nplace\tO\tplace\tO\nthings\tO\tthings\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nlogwriter\tB-Class_Name\tlogwriter\tO\n's\tO\t's\tO\nqueues\tB-Data_Structure\tqueues\tO\nfrom\tO\tfrom\tO\nanywhere\tO\tanywhere\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15729742\tO\t15729742\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15729742/\tO\thttps://stackoverflow.com/questions/15729742/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nAVAssetReaderOutput\tB-Library_Class\tAVAssetReaderOutput\tB-Code_Block\nto\tO\tto\tO\nread\tO\tread\tO\nsamples\tO\tsamples\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nAVAsset\tB-Library_Class\tAVAsset\tB-Code_Block\n,\tO\t,\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nprocessing\tO\tprocessing\tO\non\tO\ton\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nand\tO\tand\tO\nplay\tO\tplay\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nRemoteIO\tB-Device\tRemoteIO\tO\nAU\tI-Device\tAU\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nafter\tO\tafter\tO\ncalling\tO\tcalling\tO\nAudioOutputUnitStop\tB-Library_Function\tAudioOutputUnitStop\tB-Code_Block\nto\tO\tto\tO\npause\tO\tpause\tO\nthe\tO\tthe\tO\nplayback\tO\tplayback\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nafter\tO\tafter\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nand\tO\tand\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nstart\tO\tstart\tO\nagain\tO\tagain\tO\nafter\tO\tafter\tO\ncalling\tO\tcalling\tO\nAudioOutputUnitStart\tB-Library_Function\tAudioOutputUnitStart\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncopyNextSampleBuffer\tB-Library_Function\tcopyNextSampleBuffer\tB-Code_Block\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nAVAssetReaderOutput\tB-Library_Class\tAVAssetReaderOutput\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrendering\tO\trendering\tO\npipeline\tO\tpipeline\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nstatus\tB-Library_Variable\tstatus\tB-Code_Block\nproperty\tO\tproperty\tO\nof\tO\tof\tO\nAVAssetReader\tB-Library_Class\tAVAssetReader\tB-Code_Block\nafter\tO\tafter\tO\ncalling\tO\tcalling\tO\ncopyNextSampleBuffer\tB-Library_Function\tcopyNextSampleBuffer\tB-Code_Block\nis\tO\tis\tO\nAVAssetReaderStatusFailed\tB-Error_Name\tAVAssetReaderStatusFailed\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nits\tO\tits\tO\nerror\tB-Library_Variable\terror\tB-Code_Block\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nError\tB-Output_Block\tError\tO\nDomain\tI-Output_Block\tDomain\tO\n=\tI-Output_Block\t=\tO\nAVFoundationErrorDomain\tI-Output_Block\tAVFoundationErrorDomain\tO\nCode\tI-Output_Block\tCode\tO\n=\tI-Output_Block\t=\tO\n-11847\tI-Output_Block\t-11847\tO\n\"\tI-Output_Block\t\"\tO\nOperation\tI-Output_Block\tOperation\tO\nInterrupted\tI-Output_Block\tInterrupted\tO\n\"\tI-Output_Block\t\"\tO\nUserInfo\tI-Output_Block\tUserInfo\tO\n=\tI-Output_Block\t=\tO\n0x1d8b6100\tI-Output_Block\t0x1d8b6100\tO\n{\tI-Output_Block\t{\tO\nNSLocalizedRecoverySuggestion\tI-Output_Block\tNSLocalizedRecoverySuggestion\tO\n=\tI-Output_Block\t=\tO\nStop\tI-Output_Block\tStop\tO\nother\tI-Output_Block\tother\tO\noperations\tI-Output_Block\toperations\tO\nand\tI-Output_Block\tand\tO\ntry\tI-Output_Block\ttry\tO\nagain\tI-Output_Block\tagain\tO\n.\tI-Output_Block\t.\tO\n,\tI-Output_Block\t,\tO\nNSLocalizedDescription\tI-Output_Block\tNSLocalizedDescription\tO\n=\tI-Output_Block\t=\tO\nOperation\tI-Output_Block\tOperation\tO\nInterrupted}\tI-Output_Block\tInterrupted}\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nwhich\tO\twhich\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nforce\tO\tforce\tO\nme\tO\tme\tO\nto\tO\tto\tO\nreinitialize\tO\treinitialize\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\npipeline\tO\tpipeline\tO\nafter\tO\tafter\tO\ncoming\tO\tcoming\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\n-\tO\t-\tO\nHoping\tO\tHoping\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nAVAssetReaders\tB-Library_Class\tAVAssetReaders\tB-Code_Block\ncan\tO\tcan\tO\nsurvive\tO\tsurvive\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbackground\tO\tbackground\tO\nand\tO\tand\tO\nback.\tO\tback.\tO\n.\tO\t.\tO\n\t\nNotes\tO\tNotes\tO\n\t\nThe\tO\tThe\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nentitled\tO\tentitled\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\naudio\tO\taudio\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhandling\tO\thandling\tO\naudio\tO\taudio\tO\ninterruptions\tO\tinterruptions\tO\n-\tO\t-\tO\nSetting\tO\tSetting\tO\nmy\tO\tmy\tO\nAVAudioSession\tB-Library_Class\tAVAudioSession\tB-Code_Block\nas\tO\tas\tO\nthe\tO\tthe\tO\nactive\tO\tactive\tO\none\tO\tone\tO\nboth\tO\tboth\tO\non\tO\ton\tO\nAVAudioSessionDelegates\tB-Library_Variable\tAVAudioSessionDelegates\tB-Code_Block\nendInterruptionWithFlags\tB-Library_Function\tendInterruptionWithFlags\tI-Code_Block\n:\tI-Library_Function\t:\tI-Code_Block\nevent\tO\tevent\tO\nand\tO\tand\tO\nwhenever\tO\twhenever\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nbecomes\tO\tbecomes\tO\nactive\tO\tactive\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ndifference\tO\tdifference\tO\nwhether\tO\twhether\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nAudioPlayer\tB-Class_Name\tAudioPlayer\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1548\tI-Code_Block\tQ_1548\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAudioReader\tB-Class_Name\tAudioReader\tO\nSetup\tO\tSetup\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1549\tI-Code_Block\tQ_1549\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAudioReader\tB-Class_Name\tAudioReader\tO\nRender\tB-Function_Name\tRender\tO\nMethod\tO\tMethod\tO\n,\tO\t,\tO\ncalled\tO\tcalled\tO\neventually\tO\teventually\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nRenderCallback\tB-Function_Name\tRenderCallback\tO\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1550\tI-Code_Block\tQ_1550\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15729742\tO\t15729742\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15729742/\tO\thttps://stackoverflow.com/questions/15729742/\tO\n\t\n\t\nThe\tO\tThe\tO\ngraph\tB-User_Interface_Element\tgraph\tO\nand\tO\tand\tO\nAVReader\tB-Library_Class\tAVReader\tO\nunderpinnings\tO\tunderpinnings\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nconnected/linked\tO\tconnected/linked\tO\nwhatsoever\tO\twhatsoever\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nconfusion\tO\tconfusion\tO\nperhaps\tO\tperhaps\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nthat\tO\tthat\tO\niOS\tB-Operating_System\tiOS\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\n\"\tO\t\"\tO\nbackground\tO\tbackground\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nhibernate\tO\thibernate\tO\n)\tO\t)\tO\na\tO\ta\tO\nprocess\tO\tprocess\tO\nif\tO\tif\tO\nit\tO\tit\tO\nsees\tO\tsees\tO\nthe\tO\tthe\tO\naudio\tB-User_Interface_Element\taudio\tO\ngraph\tI-User_Interface_Element\tgraph\tO\nrunning\tO\trunning\tO\n(\tO\t(\tO\nbecause\tO\tbecause\tO\nthen\tO\tthen\tO\naudio\tO\taudio\tO\ndata\tO\tdata\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ngenerated\tO\tgenerated\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nwhy\tO\twhy\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\naudio\tB-User_Interface_Element\taudio\tO\ngraph\tI-User_Interface_Element\tgraph\tO\n,\tO\t,\tO\n2-3\tO\t2-3\tO\nminutes\tO\tminutes\tO\nlater\tO\tlater\tO\n,\tO\t,\tO\niOS\tB-Operating_System\tiOS\tO\nwill\tO\twill\tO\nbackground\tO\tbackground\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\n(\tO\t(\tO\nas\tO\tas\tO\nof\tO\tof\tO\niOS\tB-Operating_System\tiOS\tO\n9\tB-Version\t9\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPresumably\tO\tPresumably\tO\n,\tO\t,\tO\niOS\tB-Operating_System\tiOS\tO\nlooks\tO\tlooks\tO\nat\tO\tat\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\nand\tO\tand\tO\ndecides\tO\tdecides\tO\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nforced\tO\tforced\tO\nto\tO\tto\tO\nbackground\tO\tbackground\tO\n(\tO\t(\tO\nvia\tO\tvia\tO\nbeginBackgroundTaskWithName:expirationHandler\tB-Code_Block\tbeginBackgroundTaskWithName:expirationHandler\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nApple\tB-Organization\tApple\tO\ndevs\tO\tdevs\tO\ndecided\tO\tdecided\tO\nfor\tO\tfor\tO\nwhatever\tO\twhatever\tO\nreason\tO\treason\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nAVReader\tB-Library_Class\tAVReader\tO\nstop\tO\tstop\tO\nwhen\tO\twhen\tO\nput\tO\tput\tO\ninto\tO\tinto\tO\nbackground\tO\tbackground\tO\nmode\tO\tmode\tO\n(\tO\t(\tO\nmy\tO\tmy\tO\nbest\tO\tbest\tO\nguess\tO\tguess\tO\nis\tO\tis\tO\nQA\tO\tQA\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ngood\tO\tgood\tO\nnews\tO\tnews\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndetect\tO\tdetect\tO\nit\tO\tit\tO\nand\tO\tand\tO\nrecover\tO\trecover\tO\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\nexits\tO\texits\tO\nbackground\tO\tbackground\tO\nmode\tO\tmode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nWILL\tO\tWILL\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrestart\tO\trestart\tO\nyour\tO\tyour\tO\nreader\tB-Variable_Name\treader\tO\nand\tO\tand\tO\nreaderOutput\tB-Variable_Name\treaderOutput\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nAVAssetReaderOutput\tB-Library_Class\tAVAssetReaderOutput\tO\n's\tO\t's\tO\ncopyNextSampleBuffer\tB-Library_Function\tcopyNextSampleBuffer\tB-Code_Block\nreturns\tO\treturns\tO\nNULL\tB-Value\tNULL\tO\n,\tO\t,\tO\ncheck\tO\tcheck\tO\nAVAssetReader.error.code\tB-Library_Variable\tAVAssetReader.error.code\tB-Code_Block\nfor\tO\tfor\tO\nAVErrorOperationInterrupted\tB-Library_Variable\tAVErrorOperationInterrupted\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nwe\tO\twe\tO\npull\tO\tpull\tO\noff\tO\toff\tO\na\tO\ta\tO\ngapless\tO\tgapless\tO\nrecovery\tO\trecovery\tO\nhere\tO\there\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nwe\tO\twe\tO\nget\tO\tget\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\npoint\tO\tpoint\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nfirst\tO\tfirst\tO\ncalculate\tO\tcalculate\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\ntime\tO\ttime\tO\nwe\tO\twe\tO\nleft\tO\tleft\tO\noff\tO\toff\tO\nat\tO\tat\tO\n(\tO\t(\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n-\tO\t-\tO\n-\tO\t-\tO\njust\tO\tjust\tO\nmaintain\tO\tmaintain\tO\na\tO\ta\tO\ncounter\tO\tcounter\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\nsamples\tO\tsamples\tO\nalready\tO\talready\tO\noutput\tO\toutput\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nWILL\tO\tWILL\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrestart\tO\trestart\tO\nyour\tO\tyour\tO\nAVAssetReader\tB-Library_Class\tAVAssetReader\tB-Code_Block\nand\tO\tand\tO\nAVAssetReaderOutput\tB-Library_Class\tAVAssetReaderOutput\tB-Code_Block\nflow\tO\tflow\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nno\tO\tno\tO\nproblem\tO\tproblem\tO\nsince\tO\tsince\tO\nyour\tO\tyour\tO\ngood\tO\tgood\tO\ndevelopment\tO\tdevelopment\tO\npractices\tO\tpractices\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nencapsulated\tO\tencapsulated\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\nseek\tO\tseek\tO\ntime\tO\ttime\tO\nas\tO\tas\tO\nan\tO\tan\tO\nargument\tO\targument\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthat\tO\tthat\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nAVAssetReader.timeRange\tB-Library_Variable\tAVAssetReader.timeRange\tB-Code_Block\nto\tO\tto\tO\nseek\tO\tseek\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ntime\tO\ttime\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nresume\tO\tresume\tO\nat\tO\tat\tO\nand\tO\tand\tO\npresto\tO\tpresto\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15729742\tO\t15729742\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15729742/\tO\thttps://stackoverflow.com/questions/15729742/\tO\n\t\n\t\nThere\tO\tThere\tO\nfirst\tO\tfirst\tO\nthing\tO\tthing\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ntry\tO\ttry\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nNot\tO\tNot\tO\ncalling\tO\tcalling\tO\nAudioOutputUnitStop\tB-Library_Function\tAudioOutputUnitStop\tB-Code_Block\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nyou\tO\tyou\tO\nleave\tO\tleave\tO\nthe\tO\tthe\tO\ngraph\tB-User_Interface_Element\tgraph\tO\nrunning\tO\trunning\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\nis\tO\tis\tO\npaused\tO\tpaused\tO\nsimply\tO\tsimply\tO\nnot\tO\tnot\tO\ncall\tO\tcall\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2061\tI-Code_Block\tA_2061\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nInstead\tO\tInstead\tO\njust\tO\tjust\tO\nfill\tO\tfill\tO\nthe\tO\tthe\tO\nbuffer\tB-Data_Structure\tbuffer\tO\nwith\tO\twith\tO\n0\tB-Value\t0\tO\n's\tO\t's\tO\nand/or\tO\tand/or\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nrender\tO\trender\tO\naction\tO\taction\tO\nof\tO\tof\tO\nkAudioUnitRenderAction_OutputIsSilence\tB-Library_Variable\tkAudioUnitRenderAction_OutputIsSilence\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbuffers\tB-Data_Structure\tbuffers\tO\n.\tO\t.\tO\n\t\nStarting\tO\tStarting\tO\nand\tO\tand\tO\nstopping\tO\tstopping\tO\nthe\tO\tthe\tO\ngraph\tB-User_Interface_Element\tgraph\tO\ntakes\tO\ttakes\tO\ntime\tO\ttime\tO\nand\tO\tand\tO\nleads\tO\tleads\tO\nto\tO\tto\tO\nan\tO\tan\tO\nunresponsive\tO\tunresponsive\tO\ngraph\tB-User_Interface_Element\tgraph\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nnever\tO\tnever\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\ngraph\tB-User_Interface_Element\tgraph\tO\nwhile\tO\twhile\tO\nmy\tO\tmy\tO\napps\tO\tapps\tO\nare\tO\tare\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nUnless\tO\tUnless\tO\nsome\tO\tsome\tO\nserious\tO\tserious\tO\ninterruption\tO\tinterruption\tO\nhappens\tO\thappens\tO\n)\tO\t)\tO\nThis\tO\tThis\tO\nmay\tO\tmay\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nasset\tO\tasset\tO\nreader\tO\treader\tO\naround\tO\taround\tO\nand\tO\tand\tO\nhappy\tO\thappy\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nhunch\tO\thunch\tO\nthat\tO\tthat\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nAVAssetReader\tB-Library_Class\tAVAssetReader\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\ndirectly\tO\tdirectly\tO\nconnected\tO\tconnected\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\naudio\tB-User_Interface_Element\taudio\tO\ngraph\tI-User_Interface_Element\tgraph\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nhappen\tO\thappen\tO\nto\tO\tto\tO\nrequest\tO\trequest\tO\nsamples\tO\tsamples\tO\nand\tO\tand\tO\nplace\tO\tplace\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbuffer\tB-Data_Structure\tbuffer\tO\nsupplied\tO\tsupplied\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nrender\tO\trender\tO\ncallback\tO\tcallback\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nlie\tO\tlie\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\naudio\tB-User_Interface_Element\taudio\tO\ngraph\tI-User_Interface_Element\tgraph\tO\nbeing\tO\tbeing\tO\nstopped\tO\tstopped\tO\nand\tO\tand\tO\nrestarted\tO\trestarted\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nline\tO\tline\tO\nof\tO\tof\tO\nattack\tO\tattack\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ntry\tO\ttry\tO\nis\tO\tis\tO\nto\tO\tto\tO\nrequest\tO\trequest\tO\nsamples\tO\tsamples\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nAVAsset\tB-Library_Class\tAVAsset\tO\n,\tO\t,\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nand\tO\tand\tO\nbring\tO\tbring\tO\nit\tO\tit\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nAUGraph\tB-Library_Variable\tAUGraph\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ndetermine\tO\tdetermine\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAUGraph\tB-Library_Variable\tAUGraph\tB-Code_Block\nor\tO\tor\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nentering\tO\tentering\tO\na\tO\ta\tO\nbackground\tO\tbackground\tO\nstate\tO\tstate\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nsomething\tO\tsomething\tO\nhappens\tO\thappens\tO\nthat\tO\tthat\tO\nforces\tO\tforces\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ntear\tO\ttear\tO\ndown\tO\tdown\tO\nyour\tO\tyour\tO\nAVAssetReader\tB-Library_Class\tAVAssetReader\tB-Code_Block\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nreconnect\tO\treconnect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nasset\tO\tasset\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nanother\tO\tanother\tO\nthe\tO\tthe\tO\noption\tO\toption\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nReconnect\tO\tReconnect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAVAssetReader\tB-Library_Class\tAVAssetReader\tB-Code_Block\n,\tO\t,\tO\nseek\tO\tseek\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nyou\tO\tyou\tO\nleft\tO\tleft\tO\noff\tO\toff\tO\nat\tO\tat\tO\nand\tO\tand\tO\nkeep\tO\tkeep\tO\ngoing\tO\tgoing\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47280695\tO\t47280695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47280695/\tO\thttps://stackoverflow.com/questions/47280695/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nstruggling\tO\tstruggling\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nsuccessfully\tO\tsuccessfully\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nkeeps\tO\tkeeps\tO\non\tO\ton\tO\nechoing\tO\techoing\tO\nthe\tO\tthe\tO\n\"\tB-Output_Block\t\"\tO\nUsername\tI-Output_Block\tUsername\tO\nor\tI-Output_Block\tor\tO\nPassword\tI-Output_Block\tPassword\tO\nincorrect.\tI-Output_Block\tincorrect.\tO\n.\tI-Output_Block\t.\tO\n\"\tI-Output_Block\t\"\tO\nsection\tO\tsection\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nusername\tB-Variable_Name\tusername\tO\nand\tO\tand\tO\npassword\tB-Variable_Name\tpassword\tO\nin\tO\tin\tO\nentered\tO\tentered\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\nsomewhere\tO\tsomewhere\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6274\tI-Code_Block\tQ_6274\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47280695\tO\t47280695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47280695/\tO\thttps://stackoverflow.com/questions/47280695/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nworked\tO\tworked\tO\nin\tO\tin\tO\ntest\tO\ttest\tO\n(\tO\t(\tO\nup\tO\tup\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npassword_verify\tB-Function_Name\tpassword_verify\tB-Code_Block\nwhere\tO\twhere\tO\nI\tO\tI\tO\nused\tO\tused\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\ntest\tO\ttest\tO\nas\tO\tas\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nPHP\tB-Language\tPHP\tO\n5.3.2\tB-Version\t5.3.2\tO\nand\tO\tand\tO\nhence\tO\thence\tO\nno\tO\tno\tO\npassword_verify\tB-Function_Name\tpassword_verify\tO\n)\tO\t)\tO\n~\tO\t~\tO\nhopefully\tO\thopefully\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nprove\tO\tprove\tO\nof\tO\tof\tO\nbenefit\tO\tbenefit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6893\tI-Code_Block\tA_6893\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47280695\tO\t47280695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47280695/\tO\thttps://stackoverflow.com/questions/47280695/\tO\n\t\n\t\n/\tO\t/\tO\n**\tO\t**\tO\n\t\n*\tO\t*\tO\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\na\tO\ta\tO\nhashed\tO\thashed\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npassword\tB-Variable_Name\tpassword\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\npoint\tO\tpoint\tO\nof\tO\tof\tO\n\t\n*\tO\t*\tO\nuser\tO\tuser\tO\ncreation\tO\tcreation\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\npassword_verify\tB-Function_Name\tpassword_verify\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\npassword\tB-Variable_Name\tpassword\tO\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\nhashed\tO\thashed\tO\n\t\n*\tO\t*\tO\ncopy\tO\tcopy\tO\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nDB\tO\tDB\tO\n.\tO\t.\tO\n\t\n*\tO\t*\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n*\tO\t*\tO\n$hashed\tB-Code_Block\t$hashed\tO\n=\tI-Code_Block\t=\tO\npassword_hash\tI-Code_Block\tpassword_hash\tO\n(\tI-Code_Block\t(\tO\n$password\tI-Code_Block\t$password\tO\n,\tI-Code_Block\t,\tO\nPASSWORD_BCRYPT\tI-Code_Block\tPASSWORD_BCRYPT\tO\n)\tI-Code_Block\t)\tO\n;\tB-Code_Block\t;\tO\n\t\n*\tO\t*\tO\nNOTE\tO\tNOTE\tO\n:\tO\t:\tO\nI\tO\tI\tO\n've\tO\t've\tO\nchanged\tO\tchanged\tO\nyou\tO\tyou\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nan\tO\tan\tO\nextent\tO\textent\tO\n,\tO\t,\tO\npls\tO\tpls\tO\nadapt\tO\tadapt\tO\n.\tO\t.\tO\n\t\n*\tO\t*\tO\n/\tO\t/\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6892\tI-Code_Block\tA_6892\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12329588\tO\t12329588\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12329588/\tO\thttps://stackoverflow.com/questions/12329588/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstudying\tO\tstudying\tO\nthe\tO\tthe\tO\nClojure\tB-Language\tClojure\tO\nKoans\tO\tKoans\tO\n:\tO\t:\tO\n\t\nhttps://github.com/functional-koans/clojure-koans/blob/master/src/koans/10_lazy_sequences.clj\tO\thttps://github.com/functional-koans/clojure-koans/blob/master/src/koans/10_lazy_sequences.clj\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nstuck\tO\tstuck\tO\non\tO\ton\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1162\tI-Code_Block\tQ_1162\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nbuiltin\tO\tbuiltin\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n_\tB-Value\t_\tO\nblanks\tO\tblanks\tO\nwith\tO\twith\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nwriting\tO\twriting\tO\nmy\tO\tmy\tO\nown\tO\town\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwrote\tO\twrote\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nfunction\tO\tfunction\tO\nas\tO\tas\tO\na\tO\ta\tO\ntest\tO\ttest\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nintend\tO\tintend\tO\nthis\tO\tthis\tO\none\tO\tone\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\nif\tO\tif\tO\nx\tB-Variable_Name\tx\tO\nis\tO\tis\tO\na\tO\ta\tO\nseq\tB-Data_Structure\tseq\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\njust\tO\tjust\tO\nrepeat\tO\trepeat\tO\nits\tO\tits\tO\nfirst\tO\tfirst\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\na\tO\ta\tO\nseq\tB-Data_Structure\tseq\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1163\tI-Code_Block\tQ_1163\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nexplicitly\tO\texplicitly\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nfine\tO\tfine\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1164\tI-Code_Block\tQ_1164\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nusing\tO\tusing\tO\niterate\tB-Code_Block\titerate\tB-Code_Block\nadds\tO\tadds\tO\nan\tO\tan\tO\nextra\tO\textra\tO\nparenthesis\tB-Value\tparenthesis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1165\tI-Code_Block\tQ_1165\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12329588\tO\t12329588\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12329588/\tO\thttps://stackoverflow.com/questions/12329588/\tO\n\t\n\t\nRe-read\tO\tRe-read\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nfor\tO\tfor\tO\niterate\tB-Code_Block\titerate\tB-Code_Block\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nUse\tO\tUse\tO\nnth\tB-Code_Block\tnth\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ntake\tB-Code_Block\ttake\tB-Code_Block\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\niteration\tO\titeration\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tO\n:\tI-Code_Block\t:\tO\n(\tI-Code_Block\t(\tO\ncode\tI-Code_Block\tcode\tO\nomitted\tI-Code_Block\tomitted\tO\nfor\tI-Code_Block\tfor\tO\nannotation\tI-Code_Block\tannotation\tO\n)\tI-Code_Block\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12329588\tO\t12329588\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12329588/\tO\thttps://stackoverflow.com/questions/12329588/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2696\tI-Code_Block\tA_2696\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nsolves\tO\tsolves\tO\nthis\tO\tthis\tO\nparticular\tO\tparticular\tO\nkoan\tO\tkoan\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2206220\tO\t2206220\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2206220/\tO\thttps://stackoverflow.com/questions/2206220/\tO\n\t\n\t\n(\tO\t(\tO\nAsking\tO\tAsking\tO\non\tO\ton\tO\nbehalf\tO\tbehalf\tO\nof\tO\tof\tO\na\tO\ta\tO\nfriend\tO\tfriend\tO\nemployed\tO\temployed\tO\nin\tO\tin\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nbank\tO\tbank\tO\n)\tO\t)\tO\n\t\nSince\tO\tSince\tO\nhe\tO\the\tO\n's\tO\t's\tO\nno\tO\tno\tO\nprogramming\tO\tprogramming\tO\nexperience\tO\texperience\tO\n(\tO\t(\tO\nneither\tO\tneither\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nwith\tO\twith\tO\nSQL\tB-Application\tSQL\tO\nServer\tI-Application\tServer\tO\n)\tO\t)\tO\n,\tO\t,\tO\nhe\tO\the\tO\n's\tO\t's\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ntool\tO\ttool\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nshow\tO\tshow\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\njpg\tB-File_Type\tjpg\tO\nimages\tB-User_Interface_Element\timages\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\na\tO\ta\tO\nwindows\tO\twindows\tO\nSQL\tB-Application\tSQL\tO\nServer\tI-Application\tServer\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nGoogle\tB-Website\tGoogle\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\ngive\tO\tgive\tO\nany\tO\tany\tO\nsatisfactory\tO\tsatisfactory\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2206220\tO\t2206220\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2206220/\tO\thttps://stackoverflow.com/questions/2206220/\tO\n\t\n\t\nSQL\tB-Application\tSQL\tO\nImage\tI-Application\tImage\tO\nViewer\tI-Application\tViewer\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11087271\tO\t11087271\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11087271/\tO\thttps://stackoverflow.com/questions/11087271/\tO\n\t\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nhave\tO\thave\tO\nany\tO\tany\tO\ntips\tO\ttips\tO\nfor\tO\tfor\tO\ncalculating\tO\tcalculating\tO\npercentages\tO\tpercentages\tO\nin\tO\tin\tO\nLinq\tB-Language\tLinq\tO\nto\tO\tto\tO\nEntities\tO\tEntities\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nguessing\tO\tguessing\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nthan\tO\tthan\tO\nreturning\tO\treturning\tO\n2\tO\t2\tO\nresults\tO\tresults\tO\nand\tO\tand\tO\ncalculating\tO\tcalculating\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nan\tO\tan\tO\ninventive\tO\tinventive\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nlet\tO\tlet\tO\nor\tO\tor\tO\ninto\tO\tinto\tO\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n\t\nThanks\tO\tThanks\tO\nMark\tB-User_Name\tMark\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\n2\tO\t2\tO\ndatabase\tO\tdatabase\tO\nhits\tO\thits\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1022\tI-Code_Block\tQ_1022\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11087271\tO\t11087271\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11087271/\tO\thttps://stackoverflow.com/questions/11087271/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nLINQ\tB-Library\tLINQ\tO\nto\tO\tto\tO\nEntities\tO\tEntities\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nsomething\tO\tsomething\tO\nalong\tO\talong\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\nselect\tB-Code_Block\tselect\tB-Code_Block\nx\tI-Code_Block\tx\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\n100.0\tI-Code_Block\t100.0\tI-Code_Block\n/\tI-Code_Block\t/\tI-Code_Block\ny\tI-Code_Block\ty\tI-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\nquery\tO\tquery\tO\nthen\tO\tthen\tO\nthis\tO\tthis\tO\nexpression\tO\texpression\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nconverted\tO\tconverted\tO\nto\tO\tto\tO\nSQL\tB-Language\tSQL\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nefficient\tO\tefficient\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23299993\tO\t23299993\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23299993/\tO\thttps://stackoverflow.com/questions/23299993/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nJava\tB-Language\tJava\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\ndrawing\tO\tdrawing\tO\nan\tO\tan\tO\noval\tB-User_Interface_Element\toval\tO\nusing\tO\tusing\tO\npaintComponent\tB-Library_Function\tpaintComponent\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nmany\tO\tmany\tO\nsimilar\tO\tsimilar\tO\nthreads\tO\tthreads\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnone\tO\tnone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsoultions\tO\tsoultions\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nRacerMain.java\tB-File_Name\tRacerMain.java\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2567\tI-Code_Block\tQ_2567\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDot.java\tB-File_Name\tDot.java\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2568\tI-Code_Block\tQ_2568\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhy\tO\tWhy\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nworking\tO\tworking\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23299993\tO\t23299993\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23299993/\tO\thttps://stackoverflow.com/questions/23299993/\tO\n\t\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tB-Library_Function\tset\tO\npreferred\tI-Library_Function\tpreferred\tO\nsize\tI-Library_Function\tsize\tO\nin\tO\tin\tO\nconstructor\tO\tconstructor\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3174\tI-Code_Block\tA_3174\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23299993\tO\t23299993\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23299993/\tO\thttps://stackoverflow.com/questions/23299993/\tO\n\t\n\t\nJPanel\tB-Library_Class\tJPanel\tB-Code_Block\nuses\tO\tuses\tO\nFlowLayout\tB-Library_Class\tFlowLayout\tB-Code_Block\nwhich\tO\twhich\tO\nrespects\tO\trespects\tO\npreferred\tO\tpreferred\tO\nsizes\tO\tsizes\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nDot\tB-Class_Name\tDot\tB-Code_Block\ncomponent\tO\tcomponent\tO\nis\tO\tis\tO\ntoo\tO\ttoo\tO\nsmall\tO\tsmall\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nseen\tO\tseen\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nlayout\tO\tlayout\tO\nmanager\tO\tmanager\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nmaximum\tO\tmaximum\tO\narea\tO\tarea\tO\navailable\tO\tavailable\tO\nor\tO\tor\tO\noverride\tO\toverride\tO\ngetPreferredSize\tB-Library_Function\tgetPreferredSize\tB-Code_Block\n.\tO\t.\tO\n\t\nRemember\tO\tRemember\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\npack\tB-Library_Function\tpack\tB-Code_Block\nbefore\tO\tbefore\tO\ncalling\tO\tcalling\tO\nJFrame\tB-Library_Function\tJFrame\tB-Code_Block\n#setVisible\tI-Library_Function\t#setVisible\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3173\tI-Code_Block\tA_3173\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27759560\tO\t27759560\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27759560/\tO\thttps://stackoverflow.com/questions/27759560/\tO\n\t\n\t\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nsave\tO\tsave\tO\nmy\tO\tmy\tO\nbash\tB-File_Name\tbash\tO\nprofile\tI-File_Name\tprofile\tO\n/\tO\t/\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nclean\tO\tclean\tO\ninstall\tO\tinstall\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nmac\tB-Device\tmac\tO\n/\tO\t/\tO\nthen\tO\tthen\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\nbash\tB-File_Name\tbash\tO\nprofile\tI-File_Name\tprofile\tO\n?\tO\t?\tO\n\t\nTYIA\tO\tTYIA\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27759560\tO\t27759560\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27759560/\tO\thttps://stackoverflow.com/questions/27759560/\tO\n\t\n\t\nBefore\tO\tBefore\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nclean\tO\tclean\tO\ninstall\tO\tinstall\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nback\tO\tback\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nrestore\tO\trestore\tO\nyour\tO\tyour\tO\nbash\tB-File_Name\tbash\tO\nprofile\tI-File_Name\tprofile\tO\n(\tI-File_Name\t(\tO\nor\tO\tor\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n)\tO\t)\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbackup\tO\tbackup\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\n\"\tO\t\"\tO\nbash\tB-File_Name\tbash\tO\nprofile\tI-File_Name\tprofile\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nof\tO\tof\tO\n~\tB-File_Name\t~\tB-Code_Block\n/bash_login\tI-File_Name\t/bash_login\tI-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\n~\tB-File_Name\t~\tB-Code_Block\n/.bash_profile\tI-File_Name\t/.bash_profile\tI-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\n~\tB-File_Name\t~\tB-Code_Block\n/.profile\tI-File_Name\t/.profile\tI-Code_Block\nthat\tO\tthat\tO\nexists\tO\texists\tO\n,\tO\t,\tO\nplus\tO\tplus\tO\n~\tB-File_Name\t~\tB-Code_Block\n/.bashrc\tI-File_Name\t/.bashrc\tI-Code_Block\nif\tO\tif\tO\nit\tO\tit\tO\nexists\tO\texists\tO\n,\tO\t,\tO\nplus\tO\tplus\tO\nany\tO\tany\tO\nfiles\tO\tfiles\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nfiles\tO\tfiles\tO\nimport\tO\timport\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nplain\tO\tplain\tO\ntext\tO\ttext\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncopied\tO\tcopied\tO\nwith\tO\twith\tO\n/bin/cat\tB-File_Name\t/bin/cat\tB-Code_Block\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nTerminal\tB-Application\tTerminal\tO\npreferences\tO\tpreferences\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nproperly-speaking\tO\tproperly-speaking\tO\nanything\tO\tanything\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nbash\tB-Language\tbash\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nconsider\tO\tconsider\tO\nthem\tO\tthem\tO\npart\tO\tpart\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nyour\tO\tyour\tO\nprofile\tO\tprofile\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nwith\tO\twith\tO\ndefaults\tB-Code_Block\tdefaults\tB-Code_Block\nexport\tI-Code_Block\texport\tI-Code_Block\ncom.apple.Terminal\tI-Code_Block\tcom.apple.Terminal\tI-Code_Block\npath/to/saved.plist\tI-Code_Block\tpath/to/saved.plist\tI-Code_Block\nand\tO\tand\tO\nrestore\tO\trestore\tO\nit\tO\tit\tO\nlater\tO\tlater\tO\nwith\tO\twith\tO\ndefaults\tB-Code_Block\tdefaults\tB-Code_Block\nimport\tI-Code_Block\timport\tI-Code_Block\ncom.apple.Terminal\tI-Code_Block\tcom.apple.Terminal\tI-Code_Block\npath/to/saved.plist\tI-Code_Block\tpath/to/saved.plist\tI-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14336289\tO\t14336289\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14336289/\tO\thttps://stackoverflow.com/questions/14336289/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nphp\tB-Language\tphp\tO\nscript\tO\tscript\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\nruby\tB-Language\truby\tO\nfile\tO\tfile\tO\nbut\tO\tbut\tO\nto\tO\tto\tO\nno\tO\tno\tO\nsuccess\tO\tsuccess\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\nphp\tB-Language\tphp\tO\nscript\tO\tscript\tO\nin\tO\tin\tO\nits\tO\tits\tO\nphp\tB-Language\tphp\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1367\tI-Code_Block\tQ_1367\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nruby\tB-Language\truby\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\noutside\tO\toutside\tO\nphp\tB-Language\tphp\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nExpected\tO\tExpected\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\ninformation\tO\tinformation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nterminal\tB-Application\tterminal\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43133612\tO\t43133612\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43133612/\tO\thttps://stackoverflow.com/questions/43133612/\tO\n\t\n\t\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nSharePoint\tB-Application\tSharePoint\tO\nlogin\tO\tlogin\tO\nuser\tO\tuser\tO\nroleDefinitionBindings\tB-Class_Name\troleDefinitionBindings\tO\nusing\tO\tusing\tO\njavascript\tB-Language\tjavascript\tO\n.\tO\t.\tO\n\t\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\ncall\tO\tcall\tO\nrest\tB-Library\trest\tO\napi\tI-Library\tapi\tO\ncall\tO\tcall\tO\nfor\tO\tfor\tO\nroleDefinitionBindings\tB-Class_Name\troleDefinitionBindings\tO\ni\tO\ti\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nin\tO\tin\tO\nresponse\tO\tresponse\tO\n:\tO\t:\tO\n\t\n{\tB-Output_Block\t{\tO\n\"\tI-Output_Block\t\"\tO\nerror\tI-Output_Block\terror\tO\n\"\tI-Output_Block\t\"\tO\n:{\tI-Output_Block\t:{\tO\n\"\tI-Output_Block\t\"\tO\ncode\tI-Output_Block\tcode\tO\n\"\tI-Output_Block\t\"\tO\n:\tI-Output_Block\t:\tO\n\"\tI-Output_Block\t\"\tO\n-2147024891\tI-Output_Block\t-2147024891\tO\n,\tI-Output_Block\t,\tO\nSystem.UnauthorizedAccessException\tI-Output_Block\tSystem.UnauthorizedAccessException\tO\n\"\tI-Output_Block\t\"\tO\n,\tI-Output_Block\t,\tO\n\t\n\"\tB-Output_Block\t\"\tO\nmessage\tI-Output_Block\tmessage\tO\n\"\tI-Output_Block\t\"\tO\n:{\tI-Output_Block\t:{\tO\n\"\tI-Output_Block\t\"\tO\nlang\tI-Output_Block\tlang\tO\n\"\tI-Output_Block\t\"\tO\n:\tI-Output_Block\t:\tO\n\"\tI-Output_Block\t\"\tO\nen-US\tI-Output_Block\ten-US\tO\n\"\tI-Output_Block\t\"\tO\n,\tI-Output_Block\t,\tO\n\"\tI-Output_Block\t\"\tO\nvalue\tI-Output_Block\tvalue\tO\n\"\tI-Output_Block\t\"\tO\n:\tI-Output_Block\t:\tO\n\"\tI-Output_Block\t\"\tO\nAccess\tI-Output_Block\tAccess\tO\ndenied\tI-Output_Block\tdenied\tO\n.\tI-Output_Block\t.\tO\n\t\nYou\tB-Output_Block\tYou\tO\ndo\tI-Output_Block\tdo\tO\nnot\tI-Output_Block\tnot\tO\nhave\tI-Output_Block\thave\tO\npermission\tI-Output_Block\tpermission\tO\nto\tI-Output_Block\tto\tO\nperform\tI-Output_Block\tperform\tO\nthis\tI-Output_Block\tthis\tO\naction\tI-Output_Block\taction\tO\nor\tI-Output_Block\tor\tO\naccess\tI-Output_Block\taccess\tO\nthis\tI-Output_Block\tthis\tO\nresource\tI-Output_Block\tresource\tO\n.\tI-Output_Block\t.\tO\n\"\tI-Output_Block\t\"\tO\n}}}\tI-Output_Block\t}}}\tO\n\t\nMy\tO\tMy\tO\nrest\tB-Library\trest\tO\napi\tI-Library\tapi\tO\ncall\tO\tcall\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\n[\tB-Code_Block\t[\tO\nfunction\tI-Code_Block\tfunction\tO\ngetUserRole(appWeburl,\tI-Code_Block\tgetUserRole(appWeburl,\tO\nprincipalid,success,failed)\tI-Code_Block\tprincipalid,success,failed)\tO\n{\tI-Code_Block\t{\tO\n\t\n$\tB-Code_Block\t$\tO\n.ajax\tI-Code_Block\t.ajax\tO\n(\tB-Code_Block\t(\tO\n{\tI-Code_Block\t{\tO\n\t\nurl\tB-Code_Block\turl\tO\n:\tI-Code_Block\t:\tO\nappWeburl+\tI-Code_Block\tappWeburl+\tO\n\"\tI-Code_Block\t\"\tO\n/_api/web/RoleAssignments\tI-Code_Block\t/_api/web/RoleAssignments\tO\n('\tI-Code_Block\t('\tO\n\"\tB-Code_Block\t\"\tO\n+\tI-Code_Block\t+\tO\nprincipalid\tI-Code_Block\tprincipalid\tO\n+\tI-Code_Block\t+\tO\n\"\tI-Code_Block\t\"\tO\n'\tB-Code_Block\t'\tO\n)\tI-Code_Block\t)\tO\n/roleDefinitionBindings\tI-Code_Block\t/roleDefinitionBindings\tO\n\"\tI-Code_Block\t\"\tO\n,\tI-Code_Block\t,\tO\n\t\nmethod\tB-Code_Block\tmethod\tO\n:\tI-Code_Block\t:\tO\n\"\tI-Code_Block\t\"\tO\nGET\tI-Code_Block\tGET\tO\n\"\tI-Code_Block\t\"\tO\n,\tI-Code_Block\t,\tO\n\t\nheaders\tB-Code_Block\theaders\tO\n:\tI-Code_Block\t:\tO\n{\tI-Code_Block\t{\tO\n\"\tI-Code_Block\t\"\tO\nAccept\tI-Code_Block\tAccept\tO\n\"\tI-Code_Block\t\"\tO\n:\tI-Code_Block\t:\tO\n\"\tI-Code_Block\t\"\tO\napplication/json\tI-Code_Block\tapplication/json\tO\n;\tI-Code_Block\t;\tO\nodata\tI-Code_Block\todata\tO\n=\tI-Code_Block\t=\tO\nverbose\tI-Code_Block\tverbose\tO\n\"\tI-Code_Block\t\"\tO\n}\tI-Code_Block\t}\tO\n,\tO\t,\tO\n\t\nsuccess\tB-Code_Block\tsuccess\tO\n:\tI-Code_Block\t:\tO\nfunction(data)\tI-Code_Block\tfunction(data)\tO\n{\tI-Code_Block\t{\tO\nconsole.log\tI-Code_Block\tconsole.log\tO\n(\tI-Code_Block\t(\tO\n\"\tI-Code_Block\t\"\tO\nSuccess\tI-Code_Block\tSuccess\tO\nLoad\tI-Code_Block\tLoad\tO\n\"\tI-Code_Block\t\"\tO\n)\tI-Code_Block\t)\tO\n;\tI-Code_Block\t;\tO\nsuccess\tI-Code_Block\tsuccess\tO\n(\tI-Code_Block\t(\tO\ndata.d.results\tB-Code_Block\tdata.d.results\tO\n)\tI-Code_Block\t)\tO\n;}\tI-Code_Block\t;}\tO\n,\tO\t,\tO\n\t\nerror\tB-Code_Block\terror\tO\n:\tI-Code_Block\t:\tO\nfunction\tI-Code_Block\tfunction\tO\n(\tI-Code_Block\t(\tO\ndata\tI-Code_Block\tdata\tO\n)\tI-Code_Block\t)\tO\n{\tB-Code_Block\t{\tO\nconsole.log\tI-Code_Block\tconsole.log\tO\n(\tI-Code_Block\t(\tO\n\"\tI-Code_Block\t\"\tO\nFailed\tI-Code_Block\tFailed\tO\nto\tI-Code_Block\tto\tO\nLoad\tI-Code_Block\tLoad\tO\n\"\tI-Code_Block\t\"\tO\n)\tI-Code_Block\t)\tO\n;\tI-Code_Block\t;\tO\nfailed()\tI-Code_Block\tfailed()\tO\n;\tI-Code_Block\t;\tO\n}\tI-Code_Block\t}\tO\n}\tI-Code_Block\t}\tO\n)\tI-Code_Block\t)\tO\n;\tB-Code_Block\t;\tO\n\t\n}\tB-Code_Block\t}\tO\n]\tI-Code_Block\t]\tO\n1\tB-Code_Block\t1\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48680943\tO\t48680943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48680943/\tO\thttps://stackoverflow.com/questions/48680943/\tO\n\t\n\t\nInstall\tO\tInstall\tO\nInfo\tO\tInfo\tO\nis\tO\tis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nsonarqube-6.7.1\tB-Application\tsonarqube-6.7.1\tO\n|\tO\t|\tO\nsonar-scanner-3.0.3.778\tB-Application\tsonar-scanner-3.0.3.778\tO\n|\tO\t|\tO\nsonar-scanner-msbuild-4.0.2.892\tB-Application\tsonar-scanner-msbuild-4.0.2.892\tO\n|\tO\t|\tO\nmsbuild\tB-Application\tmsbuild\tO\n14\tB-Version\t14\tO\n|\tO\t|\tO\nJava\tB-Application\tJava\tO\nSE\tI-Application\tSE\tO\nDevelopment\tI-Application\tDevelopment\tO\nKit\tI-Application\tKit\tO\n8\tB-Version\t8\tO\n|\tO\t|\tO\n.NET\tB-Library\t.NET\tO\nFramework\tI-Library\tFramework\tO\n4.6.2\tB-Version\t4.6.2\tO\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nwindows\tO\twindows\tO\nbatch\tB-File_Type\tbatch\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\nscan(sonar)\tO\tscan(sonar)\tO\n.\tO\t.\tO\n\t\nbut\tO\tbut\tO\nsome\tO\tsome\tO\nprojects\tO\tprojects\tO\nare\tO\tare\tO\nok\tO\tok\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nsome\tO\tsome\tO\nprojects\tO\tprojects\tO\nare\tO\tare\tO\nfailed\tO\tfailed\tO\n.\tO\t.\tO\n\t\nbatch\tB-File_Type\tbatch\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nOur\tO\tOur\tO\nBuild.bat\tB-File_Name\tBuild.bat\tO\nis\tO\tis\tO\ncustomized\tO\tcustomized\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\nBuild.bat\tB-File_Name\tBuild.bat\tO\nnot\tO\tnot\tO\ninclude\tO\tinclude\tO\nSonarQube\tB-Application\tSonarQube\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nis\tO\tis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nC:\\Program\tB-Output_Block\tC:\\Program\tO\nFiles\tI-Output_Block\tFiles\tO\n(\tI-Output_Block\t(\tO\nx86\tI-Output_Block\tx86\tO\n)\tI-Output_Block\t)\tO\n\\Jenkins\\workspace\\CSS_SQ>exit\tB-Output_Block\t\\Jenkins\\workspace\\CSS_SQ>exit\tO\n0\tI-Output_Block\t0\tO\n\t\n[\tB-Output_Block\t[\tO\nCSS_SQ\tI-Output_Block\tCSS_SQ\tO\n]\tI-Output_Block\t]\tO\n$\tB-Output_Block\t$\tO\n\"\tI-Output_Block\t\"\tO\nC:\\Program\tI-Output_Block\tC:\\Program\tO\nFiles(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\MSBuild.SonarQube.Runner.exe\"\tI-Output_Block\tFiles(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\MSBuild.SonarQube.Runner.exe\"\tO\nend\tI-Output_Block\tend\tO\n/d:sonar.login\tI-Output_Block\t/d:sonar.login\tO\n=\tI-Output_Block\t=\tO\n******\tI-Output_Block\t******\tO\n********\tI-Output_Block\t********\tO\n\t\nSonarQube\tB-Output_Block\tSonarQube\tO\nScanner\tI-Output_Block\tScanner\tO\nfor\tI-Output_Block\tfor\tO\nMSBuild\tI-Output_Block\tMSBuild\tO\n4.0.2\tI-Output_Block\t4.0.2\tO\n\t\nDefault\tB-Output_Block\tDefault\tO\nproperties\tI-Output_Block\tproperties\tO\nfile\tI-Output_Block\tfile\tO\nwas\tI-Output_Block\twas\tO\nfound\tI-Output_Block\tfound\tO\nat\tI-Output_Block\tat\tO\nC:\\Program\tI-Output_Block\tC:\\Program\tO\nFiles(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml\tI-Output_Block\tFiles(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml\tO\n\t\nLoading\tB-Output_Block\tLoading\tO\nanalysis\tI-Output_Block\tanalysis\tO\nproperties\tI-Output_Block\tproperties\tO\nfrom\tI-Output_Block\tfrom\tO\nC:\\Program\tI-Output_Block\tC:\\Program\tO\nFiles\tI-Output_Block\tFiles\tO\n(\tI-Output_Block\t(\tO\nx86\tI-Output_Block\tx86\tO\n)\tI-Output_Block\t)\tO\n\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml\tB-Output_Block\t\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml\tO\n\t\nPost-processing\tO\tPost-processing\tO\nstarted\tO\tstarted\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nGeneration\tB-Output_Block\tGeneration\tO\nof\tI-Output_Block\tof\tO\nthe\tI-Output_Block\tthe\tO\nsonar-properties\tI-Output_Block\tsonar-properties\tO\nfile\tI-Output_Block\tfile\tO\nfailed\tI-Output_Block\tfailed\tO\n.\tI-Output_Block\t.\tO\n\t\nUnable\tB-Output_Block\tUnable\tO\nto\tI-Output_Block\tto\tO\ncomplete\tI-Output_Block\tcomplete\tO\nSonarQube\tI-Output_Block\tSonarQube\tO\nanalysis\tI-Output_Block\tanalysis\tO\n.\tO\t.\tO\n\t\n14:36:16.988\tB-Value\t14:36:16.988\tO\nCreating\tO\tCreating\tO\na\tO\ta\tO\nsummary\tO\tsummary\tO\nmarkdown\tB-File_Type\tmarkdown\tO\nfile\tO\tfile\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\n14:36:16.989\tB-Output_Block\t14:36:16.989\tO\nPost-processing\tI-Output_Block\tPost-processing\tO\nfailed\tI-Output_Block\tfailed\tO\n.\tI-Output_Block\t.\tO\n\t\nExit\tB-Output_Block\tExit\tO\ncode\tI-Output_Block\tcode\tO\n:\tI-Output_Block\t:\tO\n1\tI-Output_Block\t1\tO\n\t\nERROR\tB-Output_Block\tERROR\tO\n:\tI-Output_Block\t:\tO\nExecution\tI-Output_Block\tExecution\tO\nof\tI-Output_Block\tof\tO\nSonarQube\tI-Output_Block\tSonarQube\tO\nScanner\tI-Output_Block\tScanner\tO\nfor\tI-Output_Block\tfor\tO\nMSBuild\tI-Output_Block\tMSBuild\tO\nfailed\tI-Output_Block\tfailed\tO\n(\tI-Output_Block\t(\tO\nexit\tI-Output_Block\texit\tO\ncode\tI-Output_Block\tcode\tO\n1)\tI-Output_Block\t1)\tO\n\t\nFinished\tB-Output_Block\tFinished\tO\n:\tI-Output_Block\t:\tO\nFAILURE\tI-Output_Block\tFAILURE\tO\n\t\nAbout\tO\tAbout\tO\nthe\tO\tthe\tO\nPossible\tO\tPossible\tO\ncauses\tO\tcauses\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nchecked\tO\tchecked\tO\n1\tO\t1\tO\nand\tO\tand\tO\n2\tO\t2\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nfor\tO\tfor\tO\n3\tO\t3\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nguessing\tO\tguessing\tO\nthe\tO\tthe\tO\n.sonarqube\tB-File_Type\t.sonarqube\tO\nfile\tO\tfile\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfolder\tO\tfolder\tO\nwith\tO\twith\tO\n.sln\tB-File_Type\t.sln\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nbatch\tB-File_Type\tbatch\tO\nfiles\tO\tfiles\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\npath\tB-Variable_Name\tpath\tO\nin\tO\tin\tO\nAdditional\tO\tAdditional\tO\narguments\tO\targuments\tO\ncolumn\tO\tcolumn\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nclue\tO\tclue\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthat\tO\tthat\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nmakes\tO\tmakes\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n?\tO\t?\tO\n\t\nand\tO\tand\tO\nHow\tO\tHow\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48680943\tO\t48680943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48680943/\tO\thttps://stackoverflow.com/questions/48680943/\tO\n\t\n\t\nThe\tO\tThe\tO\nthird\tO\tthird\tO\noption\tO\toption\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nbegin\tO\tbegin\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nend\tO\tend\tO\n\"\tO\t\"\tO\ncommands\tO\tcommands\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nrun\tO\trun\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfolder\tO\tfolder\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nfolder\tO\tfolder\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwhen\tO\twhen\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\ncommands\tO\tcommands\tO\n(\tO\t(\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nexecute\tO\texecute\tO\ncd\tB-Code_Block\tcd\tB-Code_Block\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nscanner\tO\tscanner\tO\ncommands\tO\tcommands\tO\nthe\tO\tthe\tO\nprinted\tO\tprinted\tO\npaths\tO\tpaths\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nparticular\tO\tparticular\tO\nproblem\tO\tproblem\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncaused\tO\tcaused\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\nis\tO\tis\tO\nexecuting\tO\texecuting\tO\nolder\tO\tolder\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nMSBuild\tB-Application\tMSBuild\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\nMSBuild\tB-Application\tMSBuild\tO\n14\tB-Version\t14\tO\nor\tO\tor\tO\n15\tB-Version\t15\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nanalysis\tO\tanalysis\tO\nbuilds\tO\tbuilds\tO\n.\tO\t.\tO\n\t\nOlder\tO\tOlder\tO\nsuggestion\tO\tsuggestion\tO\n(\tO\t(\tO\nstill\tO\tstill\tO\ngenerally\tO\tgenerally\tO\nvalid\tO\tvalid\tO\n)\tO\t)\tO\n\t\nWe\tO\tWe\tO\njust\tO\tjust\tO\ninvestigated\tO\tinvestigated\tO\nsimilar\tO\tsimilar\tO\nproblem\tO\tproblem\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncaused\tO\tcaused\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nthe\tO\tthe\tO\nSlave\tB-Application\tSlave\tO\nAgent\tI-Application\tAgent\tO\nservice\tO\tservice\tO\nis\tO\tis\tO\nauthenticated\tO\tauthenticated\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nyours\tO\tyours\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nbegin\tB-Code_Block\tbegin\tB-Code_Block\nstep\tO\tstep\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscanner\tO\tscanner\tO\nwith\tO\twith\tO\n/d:sonar.verbose\tB-Code_Block\t/d:sonar.verbose\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\ntrue\tI-Code_Block\ttrue\tI-Code_Block\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nsee\tO\tsee\tO\nlines\tO\tlines\tO\nlike\tO\tlike\tO\nthese\tO\tthese\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7140\tI-Code_Block\tA_7140\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\npaths\tO\tpaths\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nare\tO\tare\tO\nsubfolders\tO\tsubfolders\tO\nof\tO\tof\tO\nC:\\Windows\tB-File_Name\tC:\\Windows\tB-Code_Block\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nJenkins\tB-Application\tJenkins\tO\nslave\tI-Application\tslave\tO\nagent\tI-Application\tagent\tO\n's\tO\t's\tO\nWindows\tB-Application\tWindows\tO\nService\tI-Application\tService\tO\nuser\tO\tuser\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndomain\tO\tdomain\tO\nuser\tO\tuser\tO\n(\tO\t(\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nLocal\tO\tLocal\tO\nSystem\tO\tSystem\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26514544\tO\t26514544\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26514544/\tO\thttps://stackoverflow.com/questions/26514544/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nbeginner\tO\tbeginner\tO\nin\tO\tin\tO\nJava\tB-Language\tJava\tO\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nDFS\tB-Algorithm\tDFS\tO\nof\tO\tof\tO\na\tO\ta\tO\ngraph\tB-Data_Structure\tgraph\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\n's\tO\t's\tO\narraylists\tB-Library_Class\tarraylists\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nadjacency\tB-Data_Structure\tadjacency\tO\nlist\tI-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerrors\tO\terrors\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3025\tI-Code_Block\tQ_3025\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3026\tI-Code_Block\tQ_3026\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nGraph.txt\tB-File_Name\tGraph.txt\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3027\tI-Code_Block\tQ_3027\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26514544\tO\t26514544\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26514544/\tO\thttps://stackoverflow.com/questions/26514544/\tO\n\t\n\t\nviz\tB-Variable_Name\tviz\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nStack\tB-Library_Class\tStack\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nnotation\tO\tnotation\tO\n-\tO\t-\tO\nviz[node]\tB-Variable_Name\tviz[node]\tB-Code_Block\n-\tO\t-\tO\non\tO\ton\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3659\tI-Code_Block\tA_3659\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nyour\tO\tyour\tO\nStack\tB-Library_Class\tStack\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\ngeneric\tO\tgeneric\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\ncast\tO\tcast\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\npop()\tB-Library_Function\tpop()\tB-Code_Block\nto\tO\tto\tO\nInteger\tB-Data_Type\tInteger\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3660\tI-Code_Block\tA_3660\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAn\tO\tAn\tO\nalternative\tO\talternative\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nstack\tB-Library_Class\tstack\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3661\tI-Code_Block\tA_3661\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26514544\tO\t26514544\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26514544/\tO\thttps://stackoverflow.com/questions/26514544/\tO\n\t\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\narray\tB-Data_Structure\tarray\tO\nsyntax\tO\tsyntax\tO\n(array\tB-Code_Block\t(array\tB-Code_Block\n[\tI-Code_Block\t[\tI-Code_Block\nindex\tI-Code_Block\tindex\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n)\tO\t)\tO\nfor\tO\tfor\tO\nstacks\tB-Library_Class\tstacks\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npush()\tB-Library_Function\tpush()\tB-Code_Block\n,\tO\t,\tO\npop()\tB-Library_Function\tpop()\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\npeek()\tB-Library_Function\tpeek()\tB-Code_Block\n\t\nStacks\tB-Library_Class\tStacks\tO\nwork\tO\twork\tO\non\tO\ton\tO\na\tO\ta\tO\nfirst-in\tO\tfirst-in\tO\n,\tO\t,\tO\nlast-out\tO\tlast-out\tO\nbasis\tO\tbasis\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nelement\tO\telement\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstack\tB-Library_Class\tstack\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\naccessible\tO\taccessible\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\npop()\tB-Library_Function\tpop()\tB-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nitem\tO\titem\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccessed\tO\taccessed\tO\n.\tO\t.\tO\n\t\npush()\tB-Library_Function\tpush()\tB-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nput\tO\tput\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nand\tO\tand\tO\npeek()\tB-Library_Function\tpeek()\tB-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nitem\tO\titem\tO\nwithout\tO\twithout\tO\npopping\tO\tpopping\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nstack\tB-Library_Class\tstack\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3656\tI-Code_Block\tA_3656\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsing\tO\tUsing\tO\npop()\tB-Library_Function\tpop()\tB-Code_Block\n,\tO\t,\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\n\"\tB-Value\t\"\tO\nSam\tI-Value\tSam\tO\n\"\tI-Value\t\"\tO\nand\tO\tand\tO\nremove\tO\tremove\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nstack\tB-Data_Structure\tstack\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3657\tI-Code_Block\tA_3657\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPushing\tO\tPushing\tO\n\"\tB-Value\t\"\tO\nCharlie\tI-Value\tCharlie\tO\n\"\tI-Value\t\"\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nstack\tO\tstack\tO\nlook\tO\tlook\tO\nthis\tO\tthis\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3658\tI-Code_Block\tA_3658\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nto\tO\tto\tO\npop\tB-Library_Function\tpop\tO\ntwice\tO\ttwice\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\n\"\tB-Value\t\"\tO\nAdam\tI-Value\tAdam\tO\n\"\tI-Value\t\"\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47807126\tO\t47807126\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47807126/\tO\thttps://stackoverflow.com/questions/47807126/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nsqlite3\tB-Library\tsqlite3\tO\nin\tO\tin\tO\nIntel-PIN\tB-Application\tIntel-PIN\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfailed\tO\tfailed\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nsearched\tO\tsearched\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nPinCRT\tB-Application\tPinCRT\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsocket\tO\tsocket\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nother\tO\tother\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nI\tO\tI\tO\nseems\tO\tseems\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthese\tO\tthese\tO\ncodes\tO\tcodes\tO\nand\tO\tand\tO\na\tO\ta\tO\nserver\tB-Application\tserver\tO\ncannot\tO\tcannot\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nPin\tB-Application\tPin\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nServer\tB-Application\tServer\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6347\tI-Code_Block\tQ_6347\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPin\tB-Application\tPin\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6348\tI-Code_Block\tQ_6348\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nwhile\tO\twhile\tO\nusing\tO\tusing\tO\nPinCRT\tB-Application\tPinCRT\tO\nAPIs\tI-Application\tAPIs\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nway\tO\tway\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\na\tO\ta\tO\n_OS_RETURN_CODE\tB-Library_Class\t_OS_RETURN_CODE\tO\n.\tO\t.\tO\n\t\n_OS_RETURN_CODE\tB-Library_Class\t_OS_RETURN_CODE\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\n==\tB-Code_Block\t==\tO\nor\tO\tor\tO\n!=\tB-Code_Block\t!=\tO\noperators\tO\toperators\tO\nand\tO\tand\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncast\tO\tcast\tO\na\tO\ta\tO\n_OS_RETURN_CODE\tB-Library_Class\t_OS_RETURN_CODE\tO\ntype\tO\ttype\tO\nto\tO\tto\tO\nint\tB-Data_Type\tint\tO\nbut\tO\tbut\tO\nfailed\tO\tfailed\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nsomebody\tO\tsomebody\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1287747\tO\t1287747\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1287747/\tO\thttps://stackoverflow.com/questions/1287747/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\ntens\tO\ttens\tO\nof\tO\tof\tO\nGigabytes\tO\tGigabytes\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\none\tO\tone\tO\nbinary\tB-File_Type\tbinary\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nrecord\tO\trecord\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nvariable\tO\tvariable\tO\nlength\tO\tlength\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_73\tI-Code_Block\tQ_73\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\ncontains\tO\tcontains\tO\ninteger\tB-Data_Type\tinteger\tO\n,\tO\t,\tO\npointer\tB-Data_Type\tpointer\tO\n,\tO\t,\tO\ndouble\tB-Data_Type\tdouble\tO\nvalue\tO\tvalue\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\npython\tB-Language\tpython\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\neven\tO\teven\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nsituation\tO\tsituation\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nproblem\tO\tproblem\tO\nif\tO\tif\tO\nI\tO\tI\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nfast\tO\tfast\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthe\tO\tthe\tO\nstruct\tB-Library\tstruct\tB-Code_Block\npackage\tO\tpackage\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngood\tO\tgood\tO\nat\tO\tat\tO\nperformance\tO\tperformance\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nalmost\tO\talmost\tO\nstuck\tO\tstuck\tO\non\tO\ton\tO\nunpack\tO\tunpack\tO\nthe\tO\tthe\tO\nbytes\tO\tbytes\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1287747\tO\t1287747\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1287747/\tO\thttps://stackoverflow.com/questions/1287747/\tO\n\t\n\t\nstruct\tB-Library\tstruct\tB-Code_Block\nand\tO\tand\tO\narray\tB-Library\tarray\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nother\tO\tother\tO\nanswers\tO\tanswers\tO\nrecommend\tO\trecommend\tO\n,\tO\t,\tO\nare\tO\tare\tO\nfine\tO\tfine\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimplementation\tO\timplementation\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nneeds\tO\tneeds\tO\nare\tO\tare\tO\nalways\tO\talways\tO\nto\tO\tto\tO\nsequentially\tO\tsequentially\tO\nread\tO\tread\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nor\tO\tor\tO\na\tO\ta\tO\nprefix\tO\tprefix\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\noptions\tO\toptions\tO\ninclude\tO\tinclude\tO\nbuffer\tB-Library\tbuffer\tO\n,\tO\t,\tO\nmmap\tB-Library\tmmap\tO\n,\tO\t,\tO\neven\tO\teven\tO\nctypes\tB-Library\tctypes\tO\n,\tO\t,\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nmany\tO\tmany\tO\ndetails\tO\tdetails\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nmention\tO\tmention\tO\nregarding\tO\tregarding\tO\nyour\tO\tyour\tO\nexact\tO\texact\tO\nneeds\tO\tneeds\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nspecialized\tO\tspecialized\tO\nCython-coded\tB-Language\tCython-coded\tO\nhelper\tO\thelper\tO\ncan\tO\tcan\tO\noffer\tO\toffer\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nextra\tO\textra\tO\nperformance\tO\tperformance\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n,\tO\t,\tO\nif\tO\tif\tO\nno\tO\tno\tO\nsuitable\tO\tsuitable\tO\nand\tO\tand\tO\naccessible\tO\taccessible\tO\nlibrary\tO\tlibrary\tO\n(\tO\t(\tO\nin\tO\tin\tO\nC\tB-Language\tC\tO\n,\tO\t,\tO\nC++\tB-Language\tC++\tO\n,\tO\t,\tO\nFortran\tB-Language\tFortran\tO\n,\tO\t,\tO\n..\tO\t..\tO\n.\tO\t.\tO\n)\tO\t)\tO\nalready\tO\talready\tO\nexists\tO\texists\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ninterfaced\tO\tinterfaced\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\npurpose\tO\tpurpose\tO\nof\tO\tof\tO\nhandling\tO\thandling\tO\nthis\tO\tthis\tO\nhumongous\tO\thumongous\tO\nfile\tO\tfile\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nclearly\tO\tclearly\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\npeculiar\tO\tpeculiar\tO\nissues\tO\tissues\tO\nhere\tO\there\tO\n-\tO\t-\tO\n-\tO\t-\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nfile\tO\tfile\tO\ncontain\tO\tcontain\tO\npointers\tB-Data_Type\tpointers\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nintrinsically\tO\tintrinsically\tO\na\tO\ta\tO\nconcept\tO\tconcept\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\naddressing\tO\taddressing\tO\nmemory\tO\tmemory\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nthey\tO\tthey\tO\nmaybe\tO\tmaybe\tO\n\"\tO\t\"\tO\noffsets\tO\toffsets\tO\n\"\tO\t\"\tO\ninstead\tO\tinstead\tO\n,\tO\t,\tO\nand\tO\tand\tO\n,\tO\t,\tO\nif\tO\tif\tO\nso\tO\tso\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nexactly\tO\texactly\tO\nare\tO\tare\tO\nthey\tO\tthey\tO\nbased\tO\tbased\tO\nand\tO\tand\tO\ncoded\tO\tcoded\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nyour\tO\tyour\tO\nneeds\tO\tneeds\tO\nat\tO\tat\tO\nall\tO\tall\tO\nmore\tO\tmore\tO\nadvanced\tO\tadvanced\tO\nthan\tO\tthan\tO\nsimply\tO\tsimply\tO\nsequential\tO\tsequential\tO\nreading\tO\treading\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\nrandom\tO\trandom\tO\naccess\tO\taccess\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nso\tO\tso\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nfirst\tO\tfirst\tO\n\"\tO\t\"\tO\nindexing\tO\tindexing\tO\n\"\tO\t\"\tO\npass\tO\tpass\tO\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\noffsets\tO\toffsets\tO\nfrom\tO\tfrom\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nrecord\tO\trecord\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nusable\tO\tusable\tO\n,\tO\t,\tO\ncompact\tO\tcompact\tO\n,\tO\t,\tO\nhandily-formatted\tO\thandily-formatted\tO\nauxiliary\tB-File_Type\tauxiliary\tO\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nThat\tO\tThat\tO\nbinary\tB-File_Type\tbinary\tO\nfile\tO\tfile\tO\nof\tO\tof\tO\noffsets\tO\toffsets\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nnatural\tO\tnatural\tO\nfor\tO\tfor\tO\narray\tB-Library\tarray\tB-Code_Block\n-\tO\t-\tO\n-\tO\t-\tO\nunless\tO\tunless\tO\nthe\tO\tthe\tO\noffsets\tO\toffsets\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nlonger\tO\tlonger\tO\nthan\tO\tthan\tO\narray\tB-Library\tarray\tB-Code_Block\nsupports\tO\tsupports\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nmachine\tO\tmachine\tO\n!\tO\t!\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndistribution\tO\tdistribution\tO\nof\tO\tof\tO\nrecord\tO\trecord\tO\nlengths\tO\tlengths\tO\nand\tO\tand\tO\ncompositions\tO\tcompositions\tO\nand\tO\tand\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nrecords\tO\trecords\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\ntens\tO\ttens\tO\nof\tO\tof\tO\ngigabytes\tO\tgigabytes\tO\n\"\tO\t\"\tO\n?\tO\t?\tO\n\t\nEtc\tO\tEtc\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nlarge\tO\tlarge\tO\nscale\tO\tscale\tO\nproblem\tO\tproblem\tO\n(\tO\t(\tO\nand\tO\tand\tO\nno\tO\tno\tO\ndoubt\tO\tdoubt\tO\nvery\tO\tvery\tO\nlarge\tO\tlarge\tO\nscale\tO\tscale\tO\nhardware\tO\thardware\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nit\tO\tit\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\nmention\tO\tmention\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\nread\tO\tread\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nmemory\tO\tmemory\tO\nthat\tO\tthat\tO\nmeans\tO\tmeans\tO\na\tO\ta\tO\n64bit\tO\t64bit\tO\nbox\tO\tbox\tO\nwith\tO\twith\tO\nmany\tO\tmany\tO\ntens\tO\ttens\tO\nof\tO\tof\tO\nGB\tO\tGB\tO\nof\tO\tof\tO\nRAM\tB-Device\tRAM\tO\n-\tO\t-\tO\n-\tO\t-\tO\nwow\tO\twow\tO\n!\tO\t!\tO\n\t\n)\tO\t)\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\n's\tO\t's\tO\nwell\tO\twell\tO\nworth\tO\tworth\tO\nthe\tO\tthe\tO\ndetailed\tO\tdetailed\tO\ncare\tO\tcare\tO\nto\tO\tto\tO\noptimize\tO\toptimize\tO\nthe\tO\tthe\tO\nhandling\tO\thandling\tO\nthereof\tO\tthereof\tO\n-\tO\t-\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nwe\tO\twe\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nhelp\tO\thelp\tO\nmuch\tO\tmuch\tO\nwith\tO\twith\tO\nsuch\tO\tsuch\tO\ndetailed\tO\tdetailed\tO\ncare\tO\tcare\tO\nunless\tO\tunless\tO\nwe\tO\twe\tO\nknow\tO\tknow\tO\nenough\tO\tenough\tO\ndetail\tO\tdetail\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n!\tO\t!\tO\n-\tO\t-\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1287747\tO\t1287747\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1287747/\tO\thttps://stackoverflow.com/questions/1287747/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\ndump\tO\tdump\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nsqlite3\tB-Library\tsqlite3\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_129\tI-Code_Block\tA_129\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nsql\tB-Language\tsql\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nBesides\tO\tBesides\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\ngenerators\tO\tgenerators\tO\n(\tO\t(\tO\nor\tO\tor\tO\nhere\tO\there\tO\n)\tO\t)\tO\nand\tO\tand\tO\niterators\tO\titerators\tO\n(\tO\t(\tO\nor\tO\tor\tO\nhere\tO\there\tO\nand\tO\tand\tO\nhere\tO\there\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47545108\tO\t47545108\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47545108/\tO\thttps://stackoverflow.com/questions/47545108/\tO\n\t\n\t\nWhat\tO\tWhat\tO\ncommand\tO\tcommand\tO\ncould\tO\tcould\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\nin\tO\tin\tO\none\tO\tone\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nturn\tO\tturn\tO\nthis\tO\tthis\tO\ntext\tO\ttext\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6316\tI-Code_Block\tQ_6316\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ninto\tO\tinto\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6317\tI-Code_Block\tQ_6317\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47545108\tO\t47545108\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47545108/\tO\thttps://stackoverflow.com/questions/47545108/\tO\n\t\n\t\nlet\tO\tlet\tO\nyour\tO\tyour\tO\nsource\tO\tsource\tO\nfile\tO\tfile\tO\nbe\tO\tbe\tO\ninput.txt\tB-File_Name\tinput.txt\tO\n\t\nwe\tO\twe\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ntab\tO\ttab\tO\nat\tO\tat\tO\nstarting\tO\tstarting\tO\nof\tO\tof\tO\neach\tO\teach\tO\nline\tO\tline\tO\nwhich\tO\twhich\tO\ncontain\tO\tcontain\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nberry\tB-Value\tberry\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6937\tI-Code_Block\tA_6937\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\noptionally\tO\toptionally\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\n-i\tB-Code_Block\t-i\tO\noption\tO\toption\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nfile\tO\tfile\tO\nitself\tO\titself\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6938\tI-Code_Block\tA_6938\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nheading\tO\theading\tO\nberries\tB-Value\tberries\tO\n:\tO\t:\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nbelow\tO\tbelow\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6939\tI-Code_Block\tA_6939\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nassuming\tO\tassuming\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nsorted\tO\tsorted\tO\nso\tO\tso\tO\nall\tO\tall\tO\nberries\tB-Value\tberries\tO\nare\tO\tare\tO\nin\tO\tin\tO\nadjacent\tO\tadjacent\tO\nlines\tO\tlines\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47545108\tO\t47545108\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47545108/\tO\thttps://stackoverflow.com/questions/47545108/\tO\n\t\n\t\nAt\tO\tAt\tO\na\tO\ta\tO\nsimplistic\tO\tsimplistic\tO\nlevel\tO\tlevel\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nmore\tO\tmore\tO\nor\tO\tor\tO\nless\tO\tless\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nask\tO\task\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6935\tI-Code_Block\tA_6935\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSample\tO\tSample\tO\nOutput\tO\tOutput\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6936\tI-Code_Block\tA_6936\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\nsays.\tO\tsays.\tO\n.\tO\t.\tO\nfind\tO\tfind\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\nNOT\tO\tNOT\tO\ncontaining\tO\tcontaining\tO\n\"\tB-Value\t\"\tO\nberry\tI-Value\tberry\tO\n\"\tI-Value\t\"\tO\nin\tO\tin\tO\noriginal.txt\tB-File_Name\toriginal.txt\tB-Code_Block\nbecause\tO\tbecause\tO\ngrep\tB-Code_Block\tgrep\tB-Code_Block\n-v\tI-Code_Block\t-v\tI-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nnegative\tO\tnegative\tO\nsearch\tO\tsearch\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nit\tO\tit\tO\nprints\tO\tprints\tO\nthe\tO\tthe\tO\ntitle\tO\ttitle\tO\n\"\tB-Value\t\"\tO\nberries\tI-Value\tberries\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nsed\tB-Code_Block\tsed\tB-Code_Block\nwith\tO\twith\tO\n-n\tB-Code_Block\t-n\tB-Code_Block\nso\tO\tso\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nit\tO\tit\tO\nprints\tO\tprints\tO\nnothing\tO\tnothing\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nlines\tO\tlines\tO\nmatching\tO\tmatching\tO\n\"\tB-Value\t\"\tO\nberry\tI-Value\tberry\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\nit\tO\tit\tO\nreplaces\tO\treplaces\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nline\tO\tline\tO\nwith\tO\twith\tO\n3\tO\t3\tO\nspaces\tO\tspaces\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nprints\tO\tprints\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nwith\tO\twith\tO\np\tB-Code_Block\tp\tB-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nfind\tO\tfind\tO\n\"\tB-Value\t\"\tO\nloganberry\tI-Value\tloganberry\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\nif\tO\tif\tO\n\"\tB-Value\t\"\tO\nstrawberries\tI-Value\tstrawberries\tO\n\"\tI-Value\t\"\tO\nappears\tO\tappears\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\n\"\tB-Value\t\"\tO\nberries\tI-Value\tberries\tO\n:\tI-Value\t:\tO\n\"\tI-Value\t\"\tO\ntitle\tO\ttitle\tO\neven\tO\teven\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nberries\tB-Value\tberries\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42343986\tO\t42343986\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42343986/\tO\thttps://stackoverflow.com/questions/42343986/\tO\n\t\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nSlider\tB-Library\tSlider\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndrag\tO\tdrag\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nChrome\tB-Application\tChrome\tO\ndeveloper\tI-Application\tdeveloper\tO\nenvironment\tO\tenvironment\tO\nwith\tO\twith\tO\ndevice\tO\tdevice\tO\nemulation\tO\temulation\tO\nturned\tO\tturned\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntool-tips\tO\ttool-tips\tO\nshowing\tO\tshowing\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nvalue\tO\tvalue\tO\nare\tO\tare\tO\nvisible\tO\tvisible\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\ndrag\tO\tdrag\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nvery\tO\tvery\tO\nsame\tO\tsame\tO\nproject\tO\tproject\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nIPhone\tB-Device\tIPhone\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndrag\tO\tdrag\tO\nit\tO\tit\tO\nperfectly\tO\tperfectly\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ntool-tips\tB-User_Interface_Element\ttool-tips\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42343986\tO\t42343986\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42343986/\tO\thttps://stackoverflow.com/questions/42343986/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\ntrick\tO\ttrick\tO\nand\tO\tand\tO\nit\tO\tit\tO\nactually\tO\tactually\tO\nworks\tO\tworks\tO\non\tO\ton\tO\ntouch\tO\ttouch\tO\ndevices\tO\tdevices\tO\nlike\tO\tlike\tO\nmy\tO\tmy\tO\nIPhone\tB-Device\tIPhone\tO\n6s\tB-Version\t6s\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nremarable\tO\tremarable\tO\nbecause\tO\tbecause\tO\ntooltips\tB-User_Interface_Element\ttooltips\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\non\tO\ton\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nusing\tO\tusing\tO\ngwtbootstrap3\tB-Library\tgwtbootstrap3\tO\n.\tO\t.\tO\n\t\nActually\tO\tActually\tO\nthey\tO\tthey\tO\nwork\tO\twork\tO\nbut\tO\tbut\tO\nthey\tO\tthey\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntip\tO\ttip\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ntip\tO\ttip\tO\ntwice\tO\ttwice\tO\non\tO\ton\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25614976\tO\t25614976\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25614976/\tO\thttps://stackoverflow.com/questions/25614976/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthread\tO\tthread\tO\nlibrary.For\tO\tlibrary.For\tO\nthis\tO\tthis\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nqueue\tB-Data_Structure\tqueue\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\npending\tO\tpending\tO\nthreads\tO\tthreads\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2913\tI-Code_Block\tQ_2913\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nI\tO\tI\tO\nmentioned\tO\tmentioned\tO\nthe\tO\tthe\tO\nqueue\tB-Data_Structure\tqueue\tO\nbecause\tO\tbecause\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nexperimenting\tO\texperimenting\tO\nby\tO\tby\tO\nremoving\tO\tremoving\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\n'\tO\t'\tO\nMyThreadYield\tB-Function_Name\tMyThreadYield\tO\n'\tO\t'\tO\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworkes\tO\tworkes\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\ndoesnt\tO\tdoesnt\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nintended\tO\tintended\tO\nfunctionality\tO\tfunctionality\tO\n.\tO\t.\tO\n\t\ngetcontext(&(save.context))\tB-Function_Name\tgetcontext(&(save.context))\tO\n;\tI-Function_Name\t;\tO\n\t\naddToQueue(save)\tB-Function_Name\taddToQueue(save)\tO\n;\tI-Function_Name\t;\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25614976\tO\t25614976\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25614976/\tO\thttps://stackoverflow.com/questions/25614976/\tO\n\t\n\t\nFor\tO\tFor\tO\none\tO\tone\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nqueue\tB-Data_Structure\tqueue\tO\nimplementation\tO\timplementation\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthread-safe\tO\tthread-safe\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nquestion\tO\tquestion\tO\nstrongly\tO\tstrongly\tO\nsuggests\tO\tsuggests\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\na\tO\ta\tO\nmulti-threaded\tO\tmulti-threaded\tO\nenvironment\tO\tenvironment\tO\n.\tO\t.\tO\n\t\nHaving\tO\tHaving\tO\na\tO\ta\tO\nnon\tO\tnon\tO\nthread-safe\tO\tthread-safe\tO\nqueue\tB-Data_Structure\tqueue\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nwrong\tO\twrong\tO\nresults\tO\tresults\tO\n,\tO\t,\tO\nand\tO\tand\tO\nweird\tO\tweird\tO\nthings\tO\tthings\tO\ncan\tO\tcan\tO\nhappen\tO\thappen\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nremoveFromQueue()\tB-Function_Name\tremoveFromQueue()\tB-Code_Block\nreturning\tO\treturning\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\nthreads\tO\tthreads\tO\n,\tO\t,\tO\nor\tO\tor\tO\naddToQueue()\tB-Function_Name\taddToQueue()\tB-Code_Block\ninserting\tO\tinserting\tO\ntwo\tO\ttwo\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nposition\tO\tposition\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAside\tO\tAside\tO\nfrom\tO\tfrom\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nqueue\tB-Data_Structure\tqueue\tO\nimplementation\tO\timplementation\tO\nwould\tO\twould\tO\nnever\tO\tnever\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nfront\tB-Variable_Name\tfront\tB-Code_Block\nand\tO\tand\tO\nrear\tB-Variable_Name\trear\tB-Code_Block\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nLook\tO\tLook\tO\ncarefully\tO\tcarefully\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ninsert\tO\tinsert\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3531\tI-Code_Block\tA_3531\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nrear\tB-Variable_Name\trear\tB-Code_Block\nis\tO\tis\tO\nMAX\tB-Variable_Name\tMAX\tB-Code_Block\n,\tO\t,\tO\nyet\tO\tyet\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwrite\tO\twrite\tO\ninto\tO\tinto\tO\nqueue[front]\tB-Variable_Name\tqueue[front]\tB-Code_Block\nand\tO\tand\tO\nincrement\tO\tincrement\tO\nfront\tB-Variable_Name\tfront\tB-Code_Block\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nif\tO\tif\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nkeep\tO\tkeep\tO\nadding\tO\tadding\tO\nitems\tO\titems\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nqueue\tO\tqueue\tO\n,\tO\t,\tO\neventually\tO\teventually\tO\nreaching\tO\treaching\tO\nthe\tO\tthe\tO\nbuffer\tO\tbuffer\tO\n's\tO\t's\tO\nlimit\tO\tlimit\tO\n?\tO\t?\tO\n\t\nrear\tB-Variable_Name\trear\tB-Code_Block\nwill\tO\twill\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\n0\tB-Value\t0\tO\n,\tO\t,\tO\nfront\tB-Variable_Name\tfront\tB-Code_Block\nwill\tO\twill\tO\ngrow\tO\tgrow\tO\nindefinitely\tO\tindefinitely\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nfunction\tO\tfunction\tO\nwill\tO\twill\tO\nwrite\tO\twrite\tO\nbeyond\tO\tbeyond\tO\nthe\tO\tthe\tO\nlimits\tO\tlimits\tO\nof\tO\tof\tO\nqueue\tB-Data_Structure\tqueue\tB-Code_Block\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nprobably\tO\tprobably\tO\nthe\tO\tthe\tO\ncause\tO\tcause\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nsegmentation\tB-Error_Name\tsegmentation\tO\nfault\tI-Error_Name\tfault\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nfront\tB-Variable_Name\tfront\tB-Code_Block\ninstead\tO\tinstead\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3532\tI-Code_Block\tA_3532\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nremoveFromQueue()\tB-Library_Function\tremoveFromQueue()\tB-Code_Block\nlooks\tO\tlooks\tO\nsuperficially\tO\tsuperficially\tO\nok\tO\tok\tO\n,\tO\t,\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nqueue\tB-Data_Structure\tqueue\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nglobal\tB-Data_Type\tglobal\tO\narray\tB-Data_Structure\tarray\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nreturning\tO\treturning\tO\na\tO\ta\tO\npointer\tB-Data_Type\tpointer\tO\n,\tO\t,\tO\nand\tO\tand\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nreturn\tO\treturn\tO\npointers\tB-Data_Type\tpointers\tO\nto\tO\tto\tO\nlocal\tO\tlocal\tO\nvariables\tO\tvariables\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsingle\tO\tsingle\tO\n,\tO\t,\tO\nmost\tO\tmost\tO\nimportant\tO\timportant\tO\nfact\tO\tfact\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nqueue\tB-Data_Structure\tqueue\tO\nimplementation\tO\timplementation\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nscale\tO\tscale\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlong-term\tO\tlong-term\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\narray-based\tO\tarray-based\tO\nqueue\tB-Data_Structure\tqueue\tO\nis\tO\tis\tO\na\tO\ta\tO\nterrible\tO\tterrible\tO\nchoice\tO\tchoice\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\nout\tO\tout\tO\nof\tO\tof\tO\nspace\tO\tspace\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nif\tO\tif\tO\nI\tO\tI\tO\ninsert\tO\tinsert\tO\nMAX\tB-Variable_Name\tMAX\tB-Code_Block\nelements\tO\telements\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nremove\tO\tremove\tO\n2\tB-Value\t2\tO\nor\tO\tor\tO\n3\tB-Value\t3\tO\n,\tO\t,\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ninsert\tO\tinsert\tO\nmore\tO\tmore\tO\n?\tO\t?\tO\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nsay\tO\tsay\tO\nthe\tO\tthe\tO\nqueue\tB-Data_Structure\tqueue\tO\nis\tO\tis\tO\nfull\tO\tfull\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\never\tO\tever\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ninsert\tO\tinsert\tO\nMAX\tB-Variable_Name\tMAX\tB-Code_Block\nelements\tO\telements\tO\nin\tO\tin\tO\ntotal\tO\ttotal\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nshift\tO\tshift\tO\nevery\tO\tevery\tO\nelement\tO\telement\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nqueue\tB-Data_Structure\tqueue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nwhen\tO\twhen\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nis\tO\tis\tO\nremoved\tO\tremoved\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\ncrazy\tO\tcrazy\tO\n,\tO\t,\tO\nand\tO\tand\tO\nextremely\tO\textremely\tO\ninefficient\tO\tinefficient\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nincrement\tO\tincrement\tO\nfront\tB-Variable_Name\tfront\tB-Code_Block\nmodulo\tO\tmodulo\tO\nMAX\tB-Variable_Name\tMAX\tB-Code_Block\n,\tO\t,\tO\nallowing\tO\tallowing\tO\nrear\tB-Variable_Name\trear\tB-Code_Block\nto\tO\tto\tO\nbe\tO\tbe\tO\nahead\tO\tahead\tO\nof\tO\tof\tO\nfront\tB-Variable_Name\tfront\tB-Code_Block\n,\tO\t,\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nno\tO\tno\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nMAX\tB-Variable_Name\tMAX\tB-Code_Block\nelements\tO\telements\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ninserted\tO\tinserted\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbreak\tO\tbreak\tO\nthe\tO\tthe\tO\nlogic\tO\tlogic\tO\nin\tO\tin\tO\nremoveFromQueue()\tB-Function_Name\tremoveFromQueue()\tB-Code_Block\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\npointers\tB-Data_Type\tpointers\tO\nreturned\tO\treturned\tO\nearlier\tO\tearlier\tO\nwill\tO\twill\tO\npossibly\tO\tpossibly\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nthread\tO\tthread\tO\nstruct\tB-Data_Structure\tstruct\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nmanipulate\tO\tmanipulate\tO\nthe\tO\tthe\tO\nqueue\tB-Data_Structure\tqueue\tO\n-\tO\t-\tO\ntotal\tO\ttotal\tO\ndisaster\tO\tdisaster\tO\n.\tO\t.\tO\n\t\nDefinitely\tO\tDefinitely\tO\nnot\tO\tnot\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nmuch\tO\tmuch\tO\n,\tO\t,\tO\nmuch\tO\tmuch\tO\nbetter\tO\tbetter\tO\napproach\tO\tapproach\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlinked\tB-Data_Structure\tlinked\tO\nlist\tI-Data_Structure\tlist\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nkeep\tO\tkeep\tO\na\tO\ta\tO\npointer\tB-Data_Type\tpointer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhead\tO\thead\tO\nand\tO\tand\tO\na\tO\ta\tO\npointer\tB-Data_Type\tpointer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntail\tO\ttail\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nhttp://en.wikipedia.org/wiki/Queue_(abstract_data_type)#Queue_implementation\tO\thttp://en.wikipedia.org/wiki/Queue_(abstract_data_type)#Queue_implementation\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48520021\tO\t48520021\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48520021/\tO\thttps://stackoverflow.com/questions/48520021/\tO\n\t\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6459\tI-Code_Block\tQ_6459\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48520021\tO\t48520021\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48520021/\tO\thttps://stackoverflow.com/questions/48520021/\tO\n\t\n\t\nTry\tO\tTry\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7104\tI-Code_Block\tA_7104\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11619118\tO\t11619118\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11619118/\tO\thttps://stackoverflow.com/questions/11619118/\tO\n\t\n\t\nI\tO\tI\tO\ndestroyed\tO\tdestroyed\tO\nmy\tO\tmy\tO\nsubversion\tB-Application\tsubversion\tO\ntree\tB-Data_Structure\ttree\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\ncould\tO\tcould\tO\nhave\tO\thave\tO\ncaused\tO\tcaused\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nsvn\tB-Code_Block\tsvn\tB-Code_Block\nignore\tI-Code_Block\tignore\tI-Code_Block\non\tO\ton\tO\nsome\tO\tsome\tO\nfiles\tO\tfiles\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nago\tO\tago\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nrevisited\tO\trevisited\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\nretract\tO\tretract\tO\nthe\tO\tthe\tO\nsvn\tB-Code_Block\tsvn\tB-Code_Block\nignore\tI-Code_Block\tignore\tI-Code_Block\nby\tO\tby\tO\nusing\tO\tusing\tO\nsvn\tB-Code_Block\tsvn\tB-Code_Block\npropdel\tI-Code_Block\tpropdel\tI-Code_Block\nsvn:ignore\tI-Code_Block\tsvn:ignore\tI-Code_Block\n-R\tI-Code_Block\t-R\tI-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nremoves\tO\tremoves\tO\nall\tO\tall\tO\ningnores\tO\tingnores\tO\nI\tO\tI\tO\n've\tO\t've\tO\nmade\tO\tmade\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nnow\tO\tnow\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmessage\tO\tmessage\tO\n:\tO\t:\tO\n\t\nConflict\tB-Output_Block\tConflict\tB-Code_Block\nfor\tI-Output_Block\tfor\tI-Code_Block\nproperty\tI-Output_Block\tproperty\tI-Code_Block\n'\tI-Output_Block\t'\tI-Code_Block\nsvn:ignore\tI-Output_Block\tsvn:ignore\tI-Code_Block\n'\tI-Output_Block\t'\tI-Code_Block\ndiscovered\tI-Output_Block\tdiscovered\tI-Code_Block\non\tI-Output_Block\ton\tI-Code_Block\n''\tI-Output_Block\t''\tI-Code_Block\n.\tI-Output_Block\t.\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nempty\tO\tempty\tO\nsingle\tO\tsingle\tO\nquotes\tO\tquotes\tO\nmean\tO\tmean\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nsubversion\tB-Application\tsubversion\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ntrouble\tO\ttrouble\tO\nfinding\tO\tfinding\tO\nmy\tO\tmy\tO\nworking\tO\tworking\tO\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\n!\tB-Value\t!\tB-Code_Block\nM\tI-Value\tM\tI-Code_Block\n.\tO\t.\tI-Code_Block\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nsvn\tB-Application\tsvn\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\nto\tO\tto\tO\nme\tO\tme\tO\nis\tO\tis\tO\nhow\tO\thow\tO\ndoes\tO\tdoes\tO\nsvn\tB-Application\tsvn\tO\naccurately\tO\taccurately\tO\ndisplay\tO\tdisplay\tO\nwhat\tO\twhat\tO\nfiles\tO\tfiles\tO\nI\tO\tI\tO\n've\tO\t've\tO\nmodified\tO\tmodified\tO\nif\tO\tif\tO\nit\tO\tit\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nmy\tO\tmy\tO\ndirectory\tO\tdirectory\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nMaybe\tO\tMaybe\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nmisinterpreting\tO\tmisinterpreting\tO\nthe\tO\tthe\tO\n!\tB-Value\t!\tB-Code_Block\nM\tI-Value\tM\tI-Code_Block\nmessage\tO\tmessage\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nthat\tO\tthat\tO\nmean\tO\tmean\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\nis\tO\tis\tO\nmissing\tO\tmissing\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n478788\tO\t478788\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/478788/\tO\thttps://stackoverflow.com/questions/478788/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nEclipse\tB-Library_Class\tEclipse\tO\nJDT\tI-Library_Class\tJDT\tO\nAST\tI-Library_Class\tAST\tO\nparsing\tO\tparsing\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nJAR\tB-File_Type\tJAR\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsorting\tO\tsorting\tO\nout\tO\tout\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nmore\tO\tmore\tO\ndependencies\tO\tdependencies\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nwith\tO\twith\tO\n7+\tO\t7+\tO\nJARs\tB-File_Type\tJARs\tO\nand\tO\tand\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nhaving\tO\thaving\tO\nNoClassDefFoundError\tB-Error_Name\tNoClassDefFoundError\tO\nexceptions\tB-Library_Class\texceptions\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nsituation\tO\tsituation\tO\narises\tO\tarises\tO\nwhenever\tO\twhenever\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nlibraries\tO\tlibraries\tO\nwith\tO\twith\tO\nlittle\tO\tlittle\tO\nor\tO\tor\tO\nno\tO\tno\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nTrial\tO\tTrial\tO\nand\tO\tand\tO\nerror\tO\terror\tO\nseems\tO\tseems\tO\na\tO\ta\tO\nvery\tO\tvery\tO\ndumb\tO\tdumb\tO\n(\tO\t(\tO\nand\tO\tand\tO\nannoying\tO\tannoying\tO\n)\tO\t)\tO\napproach\tO\tapproach\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nautomatically\tO\tautomatically\tO\nsort\tO\tsort\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\nusing\tO\tusing\tO\nEclipse\tB-Application\tEclipse\tO\n?\tO\t?\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\nLater\tO\tLater\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nadding\tO\tadding\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nJARs\tB-File_Type\tJARs\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\n,\tO\t,\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nCtrl-T\tB-Keyboard_IP\tCtrl-T\tO\n(\tO\t(\tO\nto\tO\tto\tO\nview/locate\tO\tview/locate\tO\ntypes\tO\ttypes\tO\n)\tO\t)\tO\n,\tO\t,\tO\nlets\tO\tlets\tO\nyou\tO\tyou\tO\nmanually\tO\tmanually\tO\nlocate\tO\tlocate\tO\nthe\tO\tthe\tO\nJAR\tB-File_Type\tJAR\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nthat\tO\tthat\tO\nGoogle\tB-Website\tGoogle\tO\nprovided\tO\tprovided\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n478788\tO\t478788\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/478788/\tO\thttps://stackoverflow.com/questions/478788/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndependency\tO\tdependency\tO\nanalyzer\tO\tanalyzer\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nJarAnalyzer\tB-Application\tJarAnalyzer\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nparse\tO\tparse\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\nfull\tO\tfull\tO\nof\tO\tof\tO\nJars\tB-File_Type\tJars\tO\nand\tO\tand\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nan\tO\tan\tO\nXML\tB-Language\tXML\tO\noutput\tO\toutput\tO\ndependency\tO\tdependency\tO\nmap\tO\tmap\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nwhich\tO\twhich\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nseveral\tO\tseveral\tO\ntools\tO\ttools\tO\nfor\tO\tfor\tO\ndisplaying\tO\tdisplaying\tO\nin\tO\tin\tO\neither\tO\teither\tO\ngraphical\tO\tgraphical\tO\nor\tO\tor\tO\ntext\tO\ttext\tO\nform\tO\tform\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n478788\tO\t478788\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/478788/\tO\thttps://stackoverflow.com/questions/478788/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nSO\tB-Website\tSO\tO\nquestion\tO\tquestion\tO\nFinding\tO\tFinding\tO\nunused\tO\tunused\tO\njars\tB-File_Type\tjars\tO\nused\tO\tused\tO\nin\tO\tin\tO\nan\tO\tan\tO\neclipse\tB-Application\teclipse\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nClassPathHelper\tB-Application\tClassPathHelper\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nquickly\tO\tquickly\tO\nfocus\tO\tfocus\tO\non\tO\ton\tO\nunresolved\tO\tunresolved\tO\nclasses\tO\tclasses\tO\n:\tO\t:\tO\n\t\nIt\tO\tIt\tO\nautomatically\tO\tautomatically\tO\nidentifies\tO\tidentifies\tO\norphan\tO\torphan\tO\njars\tB-File_Type\tjars\tO\n,\tO\t,\tO\nblocked\tO\tblocked\tO\n(\tO\t(\tO\nobscured\tO\tobscured\tO\n)\tO\t)\tO\nclasses\tO\tclasses\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nlimit\tO\tlimit\tO\nis\tO\tis\tO\ndependencies\tO\tdependencies\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nclasses\tO\tclasses\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nin\tO\tin\tO\ndependency\tO\tdependency\tO\ninjection\tO\tinjection\tO\nframework\tO\tframework\tO\nconfiguration\tO\tconfiguration\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33254882\tO\t33254882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33254882/\tO\thttps://stackoverflow.com/questions/33254882/\tO\n\t\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwhen\tO\twhen\tO\npositioning\tO\tpositioning\tO\nthree\tO\tthree\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\nside\tO\tside\tO\nby\tO\tby\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nThose\tO\tThose\tO\nthree\tO\tthree\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\ncontain\tO\tcontain\tO\nnormal\tO\tnormal\tO\ntext\tO\ttext\tO\nbut\tO\tbut\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4040\tI-Code_Block\tQ_4040\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nresponsive\tO\tresponsive\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nare\tO\tare\tO\ninline-block\tB-Code_Block\tinline-block\tB-Code_Block\nwith\tO\twith\tO\na\tO\ta\tO\nwidth\tB-Library_Variable\twidth\tO\nof\tO\tof\tO\n32%\tB-Value\t32%\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4041\tI-Code_Block\tQ_4041\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nwindow\tB-User_Interface_Element\twindow\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nheight\tO\theight\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nlinks\tO\tlinks\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nposition\tO\tposition\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nBut\tO\tBut\tO\nactual\tO\tactual\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nJavaScript\tB-Language\tJavaScript\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthose\tO\tthose\tO\nitems\tO\titems\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nheight\tO\theight\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nget\tO\tget\tO\ntheese\tO\ttheese\tO\nlinks\tO\tlinks\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nposition\tO\tposition\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nitem\tO\titem\tO\nto\tO\tto\tO\nposition\tB-Code_Block\tposition\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nrelative\tI-Code_Block\trelative\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\na\tO\ta\tO\nto\tO\tto\tO\nposition\tB-Code_Block\tposition\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nabsolute\tI-Code_Block\tabsolute\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nbottom\tI-Code_Block\tbottom\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nbut\tO\tbut\tO\nthen\tO\tthen\tO\ntext-align\tB-Code_Block\ttext-align\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ncenter\tI-Code_Block\tcenter\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nJSFiddle\tB-Application\tJSFiddle\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33254882\tO\t33254882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33254882/\tO\thttps://stackoverflow.com/questions/33254882/\tO\n\t\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\nasked\tO\tasked\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nwithout\tO\twithout\tO\nposition\tB-Code_Block\tposition\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nabsolute\tI-Code_Block\tabsolute\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nbottom\tI-Code_Block\tbottom\tI-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nI\tO\tI\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwrap\tO\twrap\tO\nup\tO\tup\tO\nyour\tO\tyour\tO\ncontent\tO\tcontent\tO\ncontainers\tO\tcontainers\tO\ninto\tO\tinto\tO\nanother\tO\tanother\tO\ndiv-container\tB-HTML_XML_Tag\tdiv-container\tO\nand\tO\tand\tO\ninsert\tO\tinsert\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nafter\tO\tafter\tO\nyour\tO\tyour\tO\ncontent\tO\tcontent\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwould\tO\twould\tO\nget\tO\tget\tO\na\tO\ta\tO\npseudo\tO\tpseudo\tO\nstructure\tO\tstructure\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4738\tI-Code_Block\tA_4738\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFor\tO\tFor\tO\nevery\tO\tevery\tO\nthree\tO\tthree\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ncontent\tO\tcontent\tO\ncontainers\tO\tcontainers\tO\n.\tO\t.\tO\n\t\nWorking\tO\tWorking\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\njavascript\tB-Language\tjavascript\tO\nresizeFunction\tB-Library_Function\tresizeFunction\tO\nthe\tO\tthe\tO\nlinks\tO\tlinks\tO\nare\tO\tare\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nheight\tO\theight\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\ndiv.content-wrapper\tB-Code_Block\tdiv.content-wrapper\tB-Code_Block\nis\tO\tis\tO\ndisplay:inline-block\tB-Code_Block\tdisplay:inline-block\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nnow\tO\tnow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyour\tO\tyour\tO\ndiv.content\tB-Code_Block\tdiv.content\tB-Code_Block\nare\tO\tare\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nGreetz\tO\tGreetz\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33254882\tO\t33254882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33254882/\tO\thttps://stackoverflow.com/questions/33254882/\tO\n\t\n\t\nFlex\tB-Library_Class\tFlex\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nvery\tO\tvery\tO\neasily\tO\teasily\tO\nbut\tO\tbut\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nwhat\tO\twhat\tO\nless\tO\tless\tO\nbrowser\tB-Application\tbrowser\tO\nsupport\tO\tsupport\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nway\tO\tway\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\ndisplay\tB-Code_Block\tdisplay\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ntable\tI-Code_Block\ttable\tI-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nhave\tO\thave\tO\nvery\tO\tvery\tO\ngood\tO\tgood\tO\nsupport\tO\tsupport\tO\n(\tO\t(\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nIE8\tB-Application\tIE8\tO\n)\tO\t)\tO\n,\tO\t,\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nyou\tO\tyou\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nusing\tO\tusing\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nmore\tO\tmore\tO\nway\tO\tway\tO\n,\tO\t,\tO\nthinking\tO\tthinking\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nrows\tB-User_Interface_Element\trows\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nabsolute\tO\tabsolute\tO\nposition\tO\tposition\tO\n,\tO\t,\tO\nno\tO\tno\tO\nscript\tO\tscript\tO\nand\tO\tand\tO\nkeep\tO\tkeep\tO\nyour\tO\tyour\tO\nlinks\tO\tlinks\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\n,\tO\t,\tO\nall\tO\tall\tO\ncentered\tO\tcentered\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n\t\nAs\tO\tAs\tO\nrequested\tO\trequested\tO\n,\tO\t,\tO\nand\tO\tand\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nmore\tO\tmore\tO\nresponsive\tO\tresponsive\tO\n,\tO\t,\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\na\tO\ta\tO\nmedia\tB-Class_Name\tmedia\tO\nquery\tI-Class_Name\tquery\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nthe\tO\tthe\tO\nsnippet\tB-Application\tsnippet\tO\nin\tO\tin\tO\nfull\tO\tfull\tO\npage\tO\tpage\tO\nand\tO\tand\tO\nresize\tO\tresize\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\nin\tO\tin\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nnoted\tO\tnoted\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nflex\tB-Library_Class\tflex\tO\n\"\tO\t\"\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n2\tO\t2\tO\n\t\nAdded\tO\tAdded\tO\na\tO\ta\tO\ndisplay\tB-Code_Block\tdisplay\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\ntable\tI-Code_Block\ttable\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4739\tI-Code_Block\tQ_4739\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4740\tI-Code_Block\tQ_4740\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ntable\tB-User_Interface_Element\ttable\tO\nversion\tO\tversion\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4741\tI-Code_Block\tQ_4741\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4742\tI-Code_Block\tQ_4742\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19105373\tO\t19105373\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19105373/\tO\thttps://stackoverflow.com/questions/19105373/\tO\n\t\n\t\nSomebody\tO\tSomebody\tO\nknows\tO\tknows\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nsintaxys\tO\tsintaxys\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2003\tI-Code_Block\tQ_2003\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nexperience\tO\texperience\tO\nwith\tO\twith\tO\nSQL\tB-Application\tSQL\tO\nServer\tI-Application\tServer\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nMySQL\tB-Application\tMySQL\tO\nis\tO\tis\tO\na\tO\ta\tO\nHeadache\tO\tHeadache\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nMySQL\tB-Application\tMySQL\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nMySQL\tB-Application\tMySQL\tO\nDatabase\tI-Application\tDatabase\tO\nVersion\tO\tVersion\tO\n5.0.51b\tB-Version\t5.0.51b\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nand\tO\tand\tO\nregards\tO\tregards\tO\n\t\nSorry\tO\tSorry\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nreally\tO\treally\tO\nsorry\tO\tsorry\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nmistake\tO\tmistake\tO\n,\tO\t,\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nthe\tO\tthe\tO\nchange\tO\tchange\tO\nInfinity\tO\tInfinity\tO\nsuggested\tO\tsuggested\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nError\tO\tError\tO\nSQL\tB-Language\tSQL\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2004\tI-Code_Block\tQ_2004\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2005\tI-Code_Block\tQ_2005\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\nSiride\tB-User_Name\tSiride\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2006\tI-Code_Block\tQ_2006\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nwas\tO\twas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2007\tI-Code_Block\tQ_2007\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2008\tI-Code_Block\tQ_2008\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19105373\tO\t19105373\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19105373/\tO\thttps://stackoverflow.com/questions/19105373/\tO\n\t\n\t\nYou\tO\tYou\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npretty\tO\tpretty\tO\nfine\tO\tfine\tO\nwith\tO\twith\tO\nMySQL\tB-Application\tMySQL\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nTRIGGUER\tB-Variable_Name\tTRIGGUER\tB-Code_Block\nkeyboard\tB-Device\tkeyboard\tO\nwith\tO\twith\tO\nTRIGGER\tB-Variable_Name\tTRIGGER\tB-Code_Block\n:-)\tO\t:-)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19105373\tO\t19105373\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19105373/\tO\thttps://stackoverflow.com/questions/19105373/\tO\n\t\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nTRIGGUER\tB-Variable_Name\tTRIGGUER\tB-Code_Block\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nleft\tO\tleft\tO\noff\tO\toff\tO\nthe\tO\tthe\tO\nsemi-colon\tO\tsemi-colon\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nUPDATE\tB-Code_Block\tUPDATE\tB-Code_Block\nstatement\tO\tstatement\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nIF\tB-Code_Block\tIF\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12133711\tO\t12133711\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12133711/\tO\thttps://stackoverflow.com/questions/12133711/\tO\n\t\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nbugging\tO\tbugging\tO\nme\tO\tme\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\na\tO\ta\tO\nbeginner\tO\tbeginner\tO\nand\tO\tand\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1141\tI-Code_Block\tQ_1141\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBasically\tO\tBasically\tO\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nwordToDisplay\tB-Variable_Name\twordToDisplay\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ntextView\tB-Library_Class\ttextView\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1142\tI-Code_Block\tQ_1142\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nsorry\tO\tsorry\tO\nfor\tO\tfor\tO\nasking\tO\tasking\tO\nso\tO\tso\tO\nmany\tO\tmany\tO\nquestions\tO\tquestions\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12133711\tO\t12133711\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12133711/\tO\thttps://stackoverflow.com/questions/12133711/\tO\n\t\n\t\nTo\tO\tTo\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\ntest\tO\ttest\tO\nappear\tO\tappear\tO\nin\tO\tin\tO\nTextView\tB-Library_Class\tTextView\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nset\tO\tset\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nsetText();\tB-Library_Function\tsetText();\tB-Code_Block\n,\tO\t,\tO\nso\tO\tso\tO\nbasically\tO\tbasically\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nyour\tO\tyour\tO\ntextview\tB-Library_Class\ttextview\tO\nid\tO\tid\tO\nor\tO\tor\tO\ntag\tO\ttag\tO\n(\tO\t(\tO\nadd\tO\tadd\tO\nandroid:id\tB-Code_Block\tandroid:id\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n@+\tI-Code_Block\t@+\tI-Code_Block\nid/mytextview\tI-Code_Block\tid/mytextview\tI-Code_Block\n)\tO\t)\tO\nthen\tO\tthen\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nobject\tO\tobject\tO\nTextView\tB-Code_Block\tTextView\tB-Code_Block\ntv\tI-Code_Block\ttv\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n(TextView)findViewById(R.id.mytextview)\tI-Code_Block\t(TextView)findViewById(R.id.mytextview)\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\ntv.setText(\"foo\")\tI-Code_Block\ttv.setText(\"foo\")\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nI\tO\tI\tO\n'd\tO\t'd\tO\nalso\tO\talso\tO\nrecommend\tO\trecommend\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nsome\tO\tsome\tO\ntutorials\tO\ttutorials\tO\non\tO\ton\tO\nandroid\tB-Operating_System\tandroid\tO\nbasics\tO\tbasics\tO\n-\tO\t-\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12133711\tO\t12133711\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12133711/\tO\thttps://stackoverflow.com/questions/12133711/\tO\n\t\n\t\nFor\tO\tFor\tO\nefficiency\tO\tefficiency\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1571\tI-Code_Block\tA_1571\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\none\tO\tone\tO\nrandom\tO\trandom\tO\nnumber\tO\tnumber\tO\nobject\tO\tobject\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nrandom\tO\trandom\tO\nInteger\tB-Data_Type\tInteger\tO\nor\tO\tor\tO\ncorresponding\tO\tcorresponding\tO\nString\tB-Data_Type\tString\tO\nin\tO\tin\tO\nlocal\tO\tlocal\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nit\tO\tit\tO\nis\tO\tis\tO\nokay\tO\tokay\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nlocal\tO\tlocal\tO\nvariables\tO\tvariables\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\nreadability\tO\treadability\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24919047\tO\t24919047\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24919047/\tO\thttps://stackoverflow.com/questions/24919047/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nSOAP\tO\tSOAP\tO\nweb\tO\tweb\tO\nservice\tO\tservice\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nwindows\tB-Operating_System\twindows\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nsecured\tO\tsecured\tO\nwith\tO\twith\tO\nNTLM\tO\tNTLM\tO\nauthentication\tO\tauthentication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nchange\tO\tchange\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nan\tO\tan\tO\nURL\tO\tURL\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nservice\tO\tservice\tO\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\npassword\tO\tpassword\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nauthenticate\tO\tauthenticate\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nWSDL\tB-Language\tWSDL\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nit\tO\tit\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nMaven\tB-Application\tMaven\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nJava\tB-Language\tJava\tO\nclasses\tO\tclasses\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nWSDL\tB-Language\tWSDL\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nmaven-jaxb2-plugin\tB-Application\tmaven-jaxb2-plugin\tB-Code_Block\nfor\tO\tfor\tO\nMaven\tB-Application\tMaven\tO\nand\tO\tand\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsuitable\tO\tsuitable\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\ntask\tO\ttask\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nnow\tO\tnow\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\non\tO\ton\tO\nLinux\tB-Operating_System\tLinux\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nthis\tO\tthis\tO\nplugin\tB-Application\tplugin\tO\nor\tO\tor\tO\nmaven\tB-Application\tmaven\tO\nthe\tO\tthe\tO\nnecessary\tO\tnecessary\tO\ncredentials\tO\tcredentials\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nservice\tO\tservice\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nplugin\tO\tplugin\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\npass\tO\tpass\tO\nit\tO\tit\tO\nthe\tO\tthe\tO\nNTLM\tO\tNTLM\tO\ncredentials\tO\tcredentials\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nconfiguration\tO\tconfiguration\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2813\tI-Code_Block\tQ_2813\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ngoal\tO\tgoal\tO\nmvn\tB-Code_Block\tmvn\tB-Code_Block\njaxb2:generate\tI-Code_Block\tjaxb2:generate\tI-Code_Block\non\tO\ton\tO\nwindows\tB-Operating_System\twindows\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\ngeneration\tO\tgeneration\tO\nworks\tO\tworks\tO\nautomatically\tO\tautomatically\tO\nwithout\tO\twithout\tO\npassword\tO\tpassword\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nwindows\tB-Operating_System\twindows\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nregenerate\tO\tregenerate\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nwsdl\tB-Language\twsdl\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44926975\tO\t44926975\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44926975/\tO\thttps://stackoverflow.com/questions/44926975/\tO\n\t\n\t\nwhile\tO\twhile\tO\nreading\tO\treading\tO\nRoute53\tB-Application\tRoute53\tO\ni\tO\ti\tO\ngot\tO\tgot\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nreusable\tO\treusable\tO\ndelegation\tO\tdelegation\tO\nsets.But\tO\tsets.But\tO\ni\tO\ti\tO\nam\tO\tam\tO\nreally\tO\treally\tO\nconfused\tO\tconfused\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\ntopic\tO\ttopic\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\na\tO\ta\tO\ngood\tO\tgood\tO\npractice\tO\tpractice\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nsame\tO\tsame\tO\nname\tO\tname\tO\nservers\tB-Device\tservers\tO\nfor\tO\tfor\tO\nmultiple\tO\tmultiple\tO\ndomains\tO\tdomains\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nexplain\tO\texplain\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nreusable\tO\treusable\tO\ndelegation\tO\tdelegation\tO\nsets\tO\tsets\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nproblems\tO\tproblems\tO\nit\tO\tit\tO\ngonna\tO\tgonna\tO\nsolve\tO\tsolve\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26554879\tO\t26554879\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26554879/\tO\thttps://stackoverflow.com/questions/26554879/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nusing\tO\tusing\tO\nQt\tB-Application\tQt\tO\ncreator\tI-Application\tcreator\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n3\tO\t3\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nscreen\tB-User_Interface_Element\tscreen\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\n4\tO\t4\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nwhen\tO\twhen\tO\nclicked\tO\tclicked\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nwirte\tO\twirte\tO\n0\tO\t0\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nchar\tB-Data_Type\tchar\tO\n)\tO\t)\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\nto\tO\tto\tO\n3\tO\t3\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ni\tO\ti\tO\nreach\tO\treach\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nscreen\tB-User_Interface_Element\tscreen\tO\n(\tO\t(\tO\n4\tO\t4\tO\n.\tO\t.\tO\nscreen\tB-User_Interface_Element\tscreen\tO\n)\tO\t)\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nwill\tO\twill\tO\nread\tB-Library_Function\tread\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nit\tO\tit\tO\ndoenst\tO\tdoenst\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\n3\tO\t3\tO\nchars\tB-Data_Type\tchars\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3030\tI-Code_Block\tQ_3030\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nopen\tO\topen\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\nwith\tO\twith\tO\nnew\tO\tnew\tO\ninputs\tO\tinputs\tO\nfrom\tO\tfrom\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\ninput\tO\tinput\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nscreen\tB-User_Interface_Element\tscreen\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nsuggestion\tO\tsuggestion\tO\nor\tO\tor\tO\nhelp\tO\thelp\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26554879\tO\t26554879\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26554879/\tO\thttps://stackoverflow.com/questions/26554879/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmultiple\tO\tmultiple\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nfunction\tO\tfunction\tO\nnames\tO\tnames\tO\nare\tO\tare\tO\nweird\tO\tweird\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nchecking\tO\tchecking\tO\nagainst\tO\tagainst\tO\nerrors\tO\terrors\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nwrite\tB-Library_Function\twrite\tO\nsystem\tO\tsystem\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nchecking\tO\tchecking\tO\nagainst\tO\tagainst\tO\nerrors\tO\terrors\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nlseek\tB-Library_Function\tlseek\tO\nsystem\tO\tsystem\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nchecking\tO\tchecking\tO\nagainst\tO\tagainst\tO\nerrors\tO\terrors\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nclose\tB-Library_Function\tclose\tO\nsystem\tO\tsystem\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ninconsistently\tO\tinconsistently\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n:\tB-Code_Block\t:\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nprefix\tO\tprefix\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nclose\tB-Library_Function\tclose\tO\nsystem\tO\tsystem\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nclose\tB-Library_Function\tclose\tO\neven\tO\teven\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nopen\tB-Library_Function\topen\tO\nwas\tO\twas\tO\nunsuccessful\tO\tunsuccessful\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nwrite\tB-Library_Function\twrite\tO\n2\tO\t2\tO\ncharacters\tB-Data_Type\tcharacters\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread\tB-Library_Function\tread\tO\n4\tO\t4\tO\ncharacters\tB-Data_Type\tcharacters\tO\nback\tO\tback\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nleft-over\tO\tleft-over\tO\nsyncfs\tB-Library_Function\tsyncfs\tO\nbehind\tO\tbehind\tO\ncomment\tO\tcomment\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhard-coded\tO\thard-coded\tO\nthe\tO\tthe\tO\nhome\tO\thome\tO\npath\tO\tpath\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\nsome\tO\tsome\tO\nhome\tO\thome\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsuperfluous\tO\tsuperfluous\tO\ntemporary\tO\ttemporary\tO\nvariable\tO\tvariable\tO\n\"\tO\t\"\tO\nstr\tB-Variable_Name\tstr\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nread\tB-Library_Function\tread\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nclose\tB-Library_Function\tclose\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nplatform\tO\tplatform\tO\nspecific\tO\tspecific\tO\n,\tO\t,\tO\nwhereas\tO\twhereas\tO\nyou\tO\tyou\tO\nalready\tO\talready\tO\ndepend\tO\tdepend\tO\non\tO\ton\tO\nQt\tB-Library\tQt\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\npersonally\tO\tpersonally\tO\nthrow\tO\tthrow\tO\nout\tO\tout\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\none\tO\tone\tO\ninstead\tO\tinstead\tO\n:\tO\t:\tO\n\t\nmain.cpp\tB-File_Name\tmain.cpp\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3670\tI-Code_Block\tA_3670\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nmain.pro\tB-File_Name\tmain.pro\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3671\tI-Code_Block\tA_3671\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBuild\tO\tBuild\tO\nand\tO\tand\tO\nRun\tO\tRun\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3672\tI-Code_Block\tA_3672\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7251621\tO\t7251621\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7251621/\tO\thttps://stackoverflow.com/questions/7251621/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\none\tO\tone\tO\nPlayer\tO\tPlayer\tO\nObject\tO\tObject\tO\nArray\tB-Data_Structure\tArray\tO\nwith\tO\twith\tO\nplayer\tO\tplayer\tO\nName\tB-Variable_Name\tName\tO\nand\tO\tand\tO\nplayer\tO\tplayer\tO\nScore\tB-Variable_Name\tScore\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nrow+\tO\trow+\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nPlayer1\tO\tPlayer1\tO\n____playerScore1\tO\t____playerScore1\tO\n\t\nrow+\tO\trow+\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nPlayer2\tO\tPlayer2\tO\n____playerScore2\tO\t____playerScore2\tO\n\t\nrow+\tO\trow+\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nPlayer3\tO\tPlayer3\tO\n____playerScore3\tO\t____playerScore3\tO\n\t\n......\tO\t......\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n,\tO\t,\tO\n\t\nHarry\tB-User_Name\tHarry\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7251621\tO\t7251621\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7251621/\tO\thttps://stackoverflow.com/questions/7251621/\tO\n\t\n\t\nAssuming\tO\tAssuming\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntalking\tO\ttalking\tO\nabout\tO\tabout\tO\na\tO\ta\tO\nUITable\tB-Library_Class\tUITable\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\napproach\tO\tapproach\tO\nin\tO\tin\tO\na\tO\ta\tO\ncurrent\tO\tcurrent\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nCreating\tO\tCreating\tO\na\tO\ta\tO\ngrid\tO\tgrid\tO\nview\tO\tview\tO\nin\tO\tin\tO\niOS\tB-Operating_System\tiOS\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nvery\tO\tvery\tO\nstraightforward\tO\tstraightforward\tO\n,\tO\t,\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nyour\tO\tyour\tO\nway\tO\tway\tO\naround\tO\taround\tO\ntable\tO\ttable\tO\ncontrollers\tO\tcontrollers\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nblog\tO\tblog\tO\npost\tO\tpost\tO\nexplains\tO\texplains\tO\nhow\tO\thow\tO\nit\tO\tit\tO\n's\tO\t's\tO\nput\tO\tput\tO\ntogether\tO\ttogether\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\neach\tO\teach\tO\nrow\tB-User_Interface_Element\trow\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nsimply\tO\tsimply\tO\nsetup\tO\tsetup\tO\nthe\tO\tthe\tO\ncells\tB-User_Interface_Element\tcells\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_835\tI-Code_Block\tA_835\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7251621\tO\t7251621\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7251621/\tO\thttps://stackoverflow.com/questions/7251621/\tO\n\t\n\t\nCheckout\tO\tCheckout\tO\nUITableView\tB-Library_Class\tUITableView\tO\n:\tO\t:\tO\n\t\nhttp://www.littlecomputers.net/2009/?page_id=549\tO\thttp://www.littlecomputers.net/2009/?page_id=549\tO\n\t\nhttp://www.icodeblog.com/2008/08/08/iphone-programming-tutorial-populating-uitableview-with-an-nsarray/\tO\thttp://www.icodeblog.com/2008/08/08/iphone-programming-tutorial-populating-uitableview-with-an-nsarray/\tO\n\t\nAnd\tO\tAnd\tO\nalso\tO\talso\tO\ncustomizing\tO\tcustomizing\tO\nthe\tO\tthe\tO\ntable\tB-Library_Class\ttable\tO\nview\tI-Library_Class\tview\tO\ncells\tB-User_Interface_Element\tcells\tO\n:\tO\t:\tO\n\t\nhttp://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html\tO\thttp://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html\tO\n\t\nHope\tO\tHope\tO\nthose\tO\tthose\tO\nhelps\tO\thelps\tO\n\t\nedit\tO\tedit\tO\n:\tO\t:\tO\nI\tO\tI\tO\npasted\tO\tpasted\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nlink\tO\tlink\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ninitial\tO\tinitial\tO\npost\tO\tpost\tO\n(\tO\t(\tO\none\tO\tone\tO\nfor\tO\tfor\tO\nmono\tB-Application\tmono\tO\ntouch\tI-Application\ttouch\tO\n-\tO\t-\tO\nmeant\tO\tmeant\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\non\tO\ton\tO\nfor\tO\tfor\tO\nUITableView\tB-Library_Class\tUITableView\tO\nover\tO\tover\tO\narray\tB-Data_Structure\tarray\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3823913\tO\t3823913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3823913/\tO\thttps://stackoverflow.com/questions/3823913/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\nC#\tB-Language\tC#\tO\nand\tO\tand\tO\nC++\tB-Language\tC++\tO\ncode\tO\tcode\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nnaming\tO\tnaming\tO\nconvention\tO\tconvention\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nask\tO\task\tO\nprogrammers\tO\tprogrammers\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nvariable\tO\tvariable\tO\nnames\tO\tnames\tO\nusing\tO\tusing\tO\nunderscore\tO\tunderscore\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\ne.gr\tO\te.gr\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_267\tI-Code_Block\tQ_267\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nrationale\tO\trationale\tO\nsupporting\tO\tsupporting\tO\nthat\tO\tthat\tO\nconvention\tO\tconvention\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3823913\tO\t3823913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3823913/\tO\thttps://stackoverflow.com/questions/3823913/\tO\n\t\n\t\nThe\tO\tThe\tO\nMicrosoft\tB-Organization\tMicrosoft\tO\nGuidelines\tO\tGuidelines\tO\nfor\tO\tfor\tO\nmember\tO\tmember\tO\nnaming\tO\tnaming\tO\nspecifies\tO\tspecifies\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\nprefixes\tO\tprefixes\tO\nfor\tO\tfor\tO\nfields\tO\tfields\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nMicrosoft\tB-Organization\tMicrosoft\tO\n's\tO\t's\tO\nguidelines\tO\tguidelines\tO\nfor\tO\tfor\tO\nnames\tO\tnames\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\njust\tO\tjust\tO\napplies\tO\tapplies\tO\nto\tO\tto\tO\nC#\tB-Language\tC#\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3823913\tO\t3823913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3823913/\tO\thttps://stackoverflow.com/questions/3823913/\tO\n\t\n\t\nIn\tO\tIn\tO\nC#\tB-Language\tC#\tO\nI\tO\tI\tO\nusually\tO\tusually\tO\nprefix\tO\tprefix\tO\nwith\tO\twith\tO\n_\tB-Value\t_\tB-Code_Block\nprivate\tO\tprivate\tO\nfields\tO\tfields\tO\nbut\tO\tbut\tO\nnever\tO\tnever\tO\nlocal\tO\tlocal\tO\nvariables\tO\tvariables\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrationale\tO\trationale\tO\nbehind\tO\tbehind\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nprivate\tO\tprivate\tO\nvariable\tO\tvariable\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\n_\tB-Value\t_\tB-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nIntellisense\tB-Application\tIntellisense\tO\nfilters\tO\tfilters\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nable\tO\table\tO\nto\tO\tto\tO\ndistinguish\tO\tdistinguish\tO\nbetween\tO\tbetween\tO\nprivate\tO\tprivate\tO\nfrom\tO\tfrom\tO\nlocal\tO\tlocal\tO\nvariables\tO\tvariables\tO\nand\tO\tand\tO\nI\tO\tI\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ntype\tO\ttype\tO\nthis.variablename\tB-Variable_Name\tthis.variablename\tB-Code_Block\nfor\tO\tfor\tO\nclass\tO\tclass\tO\nfields\tO\tfields\tO\nbut\tO\tbut\tO\nsimply\tO\tsimply\tO\n_variablename\tB-Variable_Name\t_variablename\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37895444\tO\t37895444\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37895444/\tO\thttps://stackoverflow.com/questions/37895444/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\na\tO\ta\tO\nnote/label\tB-User_Interface_Element\tnote/label\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ntableview\tB-Library_Class\ttableview\tO\nbackground\tB-User_Interface_Element\tbackground\tO\nwhen/if\tO\twhen/if\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nload\tO\tload\tO\n,\tO\t,\tO\nor\tO\tor\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nfetched\tO\tfetched\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nXcode\tB-Application\tXcode\tO\nis\tO\tis\tO\nshowing\tO\tshowing\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\n\"\tB-Output_Block\t\"\tO\nWill\tI-Output_Block\tWill\tO\nnever\tI-Output_Block\tnever\tO\nbe\tI-Output_Block\tbe\tO\nexecuted\tI-Output_Block\texecuted\tO\n\"\tI-Output_Block\t\"\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\nif\tB-Code_Block\tif\tB-Code_Block\nmostUpTodateNewsItemsFromRealm\tI-Code_Block\tmostUpTodateNewsItemsFromRealm\tI-Code_Block\n?\tI-Code_Block\t?\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\ncount\tI-Code_Block\tcount\tI-Code_Block\n<\tI-Code_Block\t<\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4767\tI-Code_Block\tQ_4767\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37895444\tO\t37895444\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37895444/\tO\thttps://stackoverflow.com/questions/37895444/\tO\n\t\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nfirst\tO\tfirst\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nconstant\tO\tconstant\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5450\tI-Code_Block\tA_5450\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncheck\tO\tcheck\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\nis\tO\tis\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n1\tB-Value\t1\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5451\tI-Code_Block\tA_5451\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSince\tO\tSince\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nconstant\tO\tconstant\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnever\tO\tnever\tO\nchange\tO\tchange\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nif\tO\tif\tO\nclause\tO\tclause\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nThus\tO\tThus\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nelse\tB-Code_Block\telse\tB-Code_Block\nclause\tO\tclause\tO\nwill\tO\twill\tO\nnever\tO\tnever\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfirst\tO\tfirst\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nconstant\tO\tconstant\tO\nvariable\tO\tvariable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5452\tI-Code_Block\tA_5452\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\njust\tO\tjust\tO\nchange\tO\tchange\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5453\tI-Code_Block\tA_5453\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5454\tI-Code_Block\tA_5454\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\n,\tO\t,\tO\nnumberOFChannelSubscribedToIs\tB-Variable_Name\tnumberOFChannelSubscribedToIs\tB-Code_Block\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\nnumber\tO\tnumber\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\n0\tB-Value\t0\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nelse\tO\telse\tO\nclause\tO\tclause\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nvar\tB-Data_Type\tvar\tB-Code_Block\nand\tO\tand\tO\nlet\tB-Data_Type\tlet\tB-Code_Block\nare\tO\tare\tO\nvery\tO\tvery\tO\ndifferent\tO\tdifferent\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16842944\tO\t16842944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16842944/\tO\thttps://stackoverflow.com/questions/16842944/\tO\n\t\n\t\nAny\tO\tAny\tO\nsuggestion\tO\tsuggestion\tO\nplease\tO\tplease\tO\n.......\tO\t.......\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncompletely\tO\tcompletely\tO\nstucked\tO\tstucked\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\n.\tO\t.\tO\n\t\nCause\tO\tCause\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\nin\tO\tin\tO\nsql\tB-Language\tsql\tO\n?\tO\t?\tO\n\t\nSomebody\tO\tSomebody\tO\nsuggested\tO\tsuggested\tO\nme\tO\tme\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npivot\tB-Library_Class\tpivot\tO\n(\tO\t(\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconcept\tO\tconcept\tO\n...\tO\t...\tO\ncouldn\tO\tcouldn\tO\n'\tO\t'\tO\nt\tO\tt\tO\nfigure\tO\tfigure\tO\nit\tO\tit\tO\nout\tO\tout\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\n4\tO\t4\tO\nsteps\tO\tsteps\tO\nof\tO\tof\tO\nCol5\tB-Variable_Name\tCol5\tO\nmakes\tO\tmakes\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\ncycle\tO\tcycle\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nsteps\tO\tsteps\tO\nprocessed\tO\tprocessed\tO\nand\tO\tand\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\ntiming\tO\ttiming\tO\nof\tO\tof\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\ncycle\tO\tcycle\tO\n.\tO\t.\tO\n\t\n1\tO\t1\tO\nstep\tO\tstep\tO\nof\tO\tof\tO\na\tO\ta\tO\ncycle\tO\tcycle\tO\nmay\tO\tmay\tO\nbegin\tO\tbegin\tO\nbefore\tO\tbefore\tO\ncompletion\tO\tcompletion\tO\nof\tO\tof\tO\nother\tO\tother\tO\n.\tO\t.\tO\n\t\nTable\tB-Variable_Name\tTable\tO\nA\tI-Variable_Name\tA\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1696\tI-Code_Block\tQ_1696\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExpected\tO\tExpected\tO\nOutPut\tO\tOutPut\tO\nTable\tO\tTable\tO\n(\tO\t(\tO\nResult\tO\tResult\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1697\tI-Code_Block\tQ_1697\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16842944\tO\t16842944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16842944/\tO\thttps://stackoverflow.com/questions/16842944/\tO\n\t\n\t\nTo\tO\tTo\tO\nme\tO\tme\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\ncycles\tO\tcycles\tO\nare\tO\tare\tO\ndetermined\tO\tdetermined\tO\nby\tO\tby\tO\ncombinations\tO\tcombinations\tO\nof\tO\tof\tO\nfour\tO\tfour\tO\n\"\tO\t\"\tO\nsteps\tO\tsteps\tO\n\"\tO\t\"\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntag\tO\ttag\tO\nin\tO\tin\tO\ncol6\tB-Variable_Name\tcol6\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nonly\tO\tonly\tO\nhas\tO\thas\tO\none\tO\tone\tO\ncycle\tO\tcycle\tO\nper\tO\tper\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\nsuggest\tO\tsuggest\tO\nthere\tO\tthere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nwe\tO\twe\tO\nidentify\tO\tidentify\tO\nwhich\tO\twhich\tO\ncycle\tO\tcycle\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\ncode\tO\tcode\tO\na\tO\ta\tO\nrecord\tO\trecord\tO\nbelongs\tO\tbelongs\tO\nto\tO\tto\tO\n?\tO\t?\tO\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\none\tO\tone\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncycles\tO\tcycles\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nare\tO\tare\tO\ncomplete\tO\tcomplete\tO\nand\tO\tand\tO\njust\tO\tjust\tO\nenumerate\tO\tenumerate\tO\nthe\tO\tthe\tO\nrecords\tO\trecords\tO\nby\tO\tby\tO\ncol6\tB-Variable_Name\tcol6\tB-Code_Block\n,\tO\t,\tI-Code_Block\ncol5\tB-Variable_Name\tcol5\tI-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nadditional\tO\tadditional\tO\ncycle\tO\tcycle\tO\nsequence\tO\tsequence\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\nthen\tO\tthen\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\naggregation\tO\taggregation\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nenumerating\tO\tenumerating\tO\nthe\tO\tthe\tO\nsequences\tO\tsequences\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfurther\tO\tfurther\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndates\tO\tdates\tO\nare\tO\tare\tO\nincreasing\tO\tincreasing\tO\nover\tO\tover\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nAlthough\tO\tAlthough\tO\na\tO\ta\tO\npivot\tB-Library_Class\tpivot\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\naggregation\tO\taggregation\tO\nmethod\tO\tmethod\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nclearer\tO\tclearer\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2197\tI-Code_Block\tA_2197\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16842944\tO\t16842944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16842944/\tO\thttps://stackoverflow.com/questions/16842944/\tO\n\t\n\t\nThe\tO\tThe\tO\nQuery\tO\tQuery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2198\tI-Code_Block\tA_2198\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nOutput\tO\tOutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2199\tI-Code_Block\tA_2199\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nchoose\tO\tchoose\tO\nwhich\tO\twhich\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nyou\tO\tyou\tO\nrequire\tO\trequire\tO\nand\tO\tand\tO\nwhich\tO\twhich\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nfinal\tO\tfinal\tO\nselect\tO\tselect\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nregarding\tO\tregarding\tO\ncol3\tB-Variable_Name\tcol3\tO\n,\tO\t,\tO\nCol4\tB-Variable_Name\tCol4\tO\n,\tO\t,\tO\nCol4\tB-Variable_Name\tCol4\tO\n1)\tI-Variable_Name\t1)\tO\n\t\n****\tO\t****\tO\nBased\tO\tBased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlogic\tO\tlogic\tO\nexplained\tO\texplained\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments*******\tO\tcomments*******\tO\n\t\n/\tO\t/\tO\n*\tO\t*\tO\nProvided\tO\tProvided\tO\nsample\tO\tsample\tO\nData\tO\tData\tO\n*\tO\t*\tO\n/\tO\t/\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2200\tI-Code_Block\tA_2200\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n/\tO\t/\tO\n*Query\tO\t*Query\tO\nassuming\tO\tassuming\tO\neach\tO\teach\tO\nCycle\tO\tCycle\tO\nhappens\tO\thappens\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nminute\tO\tminute\tO\n*\tO\t*\tO\n/\tO\t/\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2201\tI-Code_Block\tA_2201\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOUTPUT\tO\tOUTPUT\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2202\tI-Code_Block\tA_2202\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25894423\tO\t25894423\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25894423/\tO\thttps://stackoverflow.com/questions/25894423/\tO\n\t\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\nbuild\tO\tbuild\tO\nnested\tO\tnested\tO\nconditions\tO\tconditions\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nSelectQuery\tB-Library_Class\tSelectQuery\tB-Code_Block\nobject\tO\tobject\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2968\tI-Code_Block\tQ_2968\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25894423\tO\t25894423\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25894423/\tO\thttps://stackoverflow.com/questions/25894423/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ninline\tO\tinline\tO\nall\tO\tall\tO\nconditions\tO\tconditions\tO\n/\tO\t/\tO\npredicates.\tO\tpredicates.\tO\n.\tO\t.\tO\n\t\n.\tO\t.\tO\n.\tO\t.\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsupply\tO\tsupply\tO\nthem\tO\tthem\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nSelectQuery\tB-Library_Class\tSelectQuery\tB-Code_Block\nobject\tO\tobject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3569\tI-Code_Block\tA_3569\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nadded\tO\tadded\tO\nsome\tO\tsome\tO\nwhitespace\tO\twhitespace\tO\nfor\tO\tfor\tO\nimproved\tO\timproved\tO\nreadability\tO\treadability\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\ndynamic\tO\tdynamic\tO\nquery\tO\tquery\tO\nbuilding.\tO\tbuilding.\tO\n.\tO\t.\tO\n\t\n.\tO\t.\tO\n.\tO\t.\tO\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\npredicate\tO\tpredicate\tO\nin\tO\tin\tO\nvarious\tO\tvarious\tO\nsteps\tO\tsteps\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3570\tI-Code_Block\tA_3570\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBoth\tO\tBoth\tO\napproaches\tO\tapproaches\tO\nare\tO\tare\tO\ncompletely\tO\tcompletely\tO\nequivalent\tO\tequivalent\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25894423\tO\t25894423\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25894423/\tO\thttps://stackoverflow.com/questions/25894423/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nnow\tO\tnow\tO\nand\tO\tand\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\naddConditions\tB-Library_Class\taddConditions\tO\nmethods\tO\tmethods\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nOR\tB-Code_Block\tOR\tO\noperator\tO\toperator\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nyour\tO\tyour\tO\nnested\tO\tnested\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\n4\tO\t4\tO\ndifferent\tO\tdifferent\tO\noverloaded\tO\toverloaded\tO\nmethods\tO\tmethods\tO\nwith\tO\twith\tO\naddConditions\tB-Library_Function\taddConditions\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ntwo\tO\ttwo\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nsupply\tO\tsupply\tO\nan\tO\tan\tO\noperator\tO\toperator\tO\n(\tO\t(\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\nOR\tB-Code_Block\tOR\tO\n)\tO\t)\tO\nand\tO\tand\tO\none\tO\tone\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nstring\tB-Data_Type\tstring\tO\ntogether\tO\ttogether\tO\nmultiple\tO\tmultiple\tO\nconditions\tO\tconditions\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nsupplied\tO\tsupplied\tO\noperator\tO\toperator\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nbreak\tO\tbreak\tO\napart\tO\tapart\tO\nyour\tO\tyour\tO\nnested\tO\tnested\tO\nstatements\tO\tstatements\tO\ninto\tO\tinto\tO\nseparate\tO\tseparate\tO\nconditions\tO\tconditions\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nlink\tO\tlink\tO\nthem\tO\tthem\tO\ntogether\tO\ttogether\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\naddConditions\tB-Code_Block\taddConditions\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n[Collection\tI-Code_Block\t[Collection\tI-Code_Block\nof\tI-Code_Block\tof\tI-Code_Block\nConditions\tI-Code_Block\tConditions\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n,\tB-Code_Block\t,\tB-Code_Block\nOR\tI-Code_Block\tOR\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30751075\tO\t30751075\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30751075/\tO\thttps://stackoverflow.com/questions/30751075/\tO\n\t\n\t\nHere\tO\tHere\tO\ni\tO\ti\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nto\tO\tto\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nwith\tO\twith\tO\nid\tB-Code_Block\tid\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nmylist\tI-Code_Block\tmylist\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n.i\tO\t.i\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nand\tO\tand\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\nprintList()\tB-Library_Function\tprintList()\tB-Code_Block\nfunction\tO\tfunction\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nand\tO\tand\tO\ni\tO\ti\tO\nam\tO\tam\tO\nprinting\tO\tprinting\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nprintList()\tB-Library_Function\tprintList()\tB-Code_Block\nbut\tO\tbut\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nworking.how\tO\tworking.how\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3693\tI-Code_Block\tQ_3693\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJavascript\tB-Language\tJavascript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3694\tI-Code_Block\tQ_3694\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nalso\tO\talso\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ndelay\tO\tdelay\tO\nfor\tO\tfor\tO\nprinting\tO\tprinting\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30751075\tO\t30751075\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30751075/\tO\thttps://stackoverflow.com/questions/30751075/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4372\tI-Code_Block\tA_4372\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nappend\tO\tappend\tO\nother\tO\tother\tO\nDOM\tO\tDOM\tO\nNode\tO\tNode\tO\n(\tO\t(\tO\nas\tO\tas\tO\nchild\tO\tchild\tO\n)\tO\t)\tO\nto\tO\tto\tO\nDOM\tO\tDOM\tO\nNodes\tO\tNodes\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\ndocument.createTextNode()\tB-Library_Function\tdocument.createTextNode()\tB-Code_Block\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nnode\tO\tnode\tO\nand\tO\tand\tO\ndocument.appendChild()\tB-Library_Function\tdocument.appendChild()\tB-Code_Block\nto\tO\tto\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nchild\tO\tchild\tO\nto\tO\tto\tO\nexisting\tO\texisting\tO\nnode\tO\tnode\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30751075\tO\t30751075\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30751075/\tO\thttps://stackoverflow.com/questions/30751075/\tO\n\t\n\t\nProblem\tO\tProblem\tO\nis\tO\tis\tO\ndocument.write\tB-Library_Function\tdocument.write\tB-Code_Block\nreturns\tO\treturns\tO\nnothing\tO\tnothing\tO\n,\tO\t,\tO\nalso\tO\talso\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrecommended\tO\trecommended\tO\n.\tO\t.\tO\n\t\nSecondly\tO\tSecondly\tO\ndom\tO\tdom\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nfunction\tO\tfunction\tO\nappend\tO\tappend\tB-Code_Block\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nit\tO\tit\tO\nis\tO\tis\tO\nappendChild\tB-Library_Function\tappendChild\tB-Code_Block\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\ndocument.createTextNode\tB-Library_Function\tdocument.createTextNode\tB-Code_Block\nand\tO\tand\tO\nappendChild\tB-Library_Function\tappendChild\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4368\tI-Code_Block\tQ_4368\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4369\tI-Code_Block\tQ_4369\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nalso\tO\talso\tO\ntry\tO\ttry\tO\ninnerHTML\tB-Library_Function\tinnerHTML\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4370\tI-Code_Block\tQ_4370\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4371\tI-Code_Block\tQ_4371\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29769215\tO\t29769215\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29769215/\tO\thttps://stackoverflow.com/questions/29769215/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nas\tO\tas\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3557\tI-Code_Block\tQ_3557\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\nepisode\tO\tepisode\tO\nnumber\tO\tnumber\tO\n(\tO\t(\tO\n1\tB-Value\t1\tB-Code_Block\n5)\tI-Value\t5)\tI-Code_Block\nfrom\tO\tfrom\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nruby\tB-Language\truby\tO\nregex\tO\tregex\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29769215\tO\t29769215\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29769215/\tO\thttps://stackoverflow.com/questions/29769215/\tO\n\t\n\t\nJust\tO\tJust\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4226\tI-Code_Block\tA_4226\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29769215\tO\t29769215\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29769215/\tO\thttps://stackoverflow.com/questions/29769215/\tO\n\t\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4227\tI-Code_Block\tA_4227\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22398340\tO\t22398340\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22398340/\tO\thttps://stackoverflow.com/questions/22398340/\tO\n\t\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nI\tO\tI\tO\nasked\tO\tasked\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ngenerate\tO\tgenerate\tO\nshades\tO\tshades\tO\nof\tO\tof\tO\none\tO\tone\tO\ncolor\tO\tcolor\tO\nresponsive\tO\tresponsive\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\n's\tO\t's\tO\n.\tO\t.\tO\n\t\n@DonJuwe\tB-User_Name\t@DonJuwe\tO\ncame\tO\tcame\tO\nup\tO\tup\tO\nwith\tO\twith\tO\na\tO\ta\tO\nperfectly\tO\tperfectly\tO\nworking\tO\tworking\tO\nsolution\tO\tsolution\tO\nand\tO\tand\tO\ndemo\tO\tdemo\tO\n:\tO\t:\tO\nhttp://jsbin.com/xakifequ/1/edit\tO\thttp://jsbin.com/xakifequ/1/edit\tO\n\t\nHowever\tO\tHowever\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\njsfiddle\tB-Application\tjsfiddle\tO\nor\tO\tor\tO\nJSBin\tB-Application\tJSBin\tO\nit\tO\tit\tO\njust\tO\tjust\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ndownloaded\tO\tdownloaded\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nJSBin\tB-Application\tJSBin\tO\n,\tO\t,\tO\nopened\tO\topened\tO\nthe\tO\tthe\tO\n.html-file\tB-File_Type\t.html-file\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nwas\tO\twas\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nplease\tO\tplease\tO\nexplain\tO\texplain\tO\nme\tO\tme\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22398340\tO\t22398340\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22398340/\tO\thttps://stackoverflow.com/questions/22398340/\tO\n\t\n\t\nAs\tO\tAs\tO\nper\tO\tper\tO\nsnapshot\tO\tsnapshot\tO\n,\tO\t,\tO\nYou\tO\tYou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3045\tI-Code_Block\tA_3045\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nReplace\tO\tReplace\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3046\tI-Code_Block\tA_3046\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nprotocol\tO\tprotocol\tO\nless\tO\tless\tO\nUrls\tO\tUrls\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n//code.jquery.com/jquery\tO\t//code.jquery.com/jquery\tB-Code_Block\n-1.9.1.js\tO\t-1.9.1.js\tI-Code_Block\n,\tO\t,\tO\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nopen\tO\topen\tO\na\tO\ta\tO\nyour\tO\tyour\tO\nhtml\tB-File_Type\thtml\tO\nfile\tO\tfile\tO\nlike\tO\tlike\tO\nfile://\tO\tfile://\tB-Code_Block\nthen\tO\tthen\tO\njQuery\tB-Library\tjQuery\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nloaded\tO\tloaded\tO\nthus\tO\tthus\tO\ndesired\tO\tdesired\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nachieved\tO\tachieved\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ntest\tO\ttest\tO\nyour\tO\tyour\tO\nhtml\tB-File_Type\thtml\tO\nfile\tO\tfile\tO\nlike\tO\tlike\tO\nhttp://localhost/yourfile.html\tO\thttp://localhost/yourfile.html\tB-Code_Block\nyou\tO\tyou\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nUse\tO\tUse\tO\n//\tO\t//\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nhttp://\tO\thttp://\tB-Code_Block\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninherit\tO\tinherit\tO\nthe\tO\tthe\tO\nprotocol\tO\tprotocol\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22398340\tO\t22398340\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22398340/\tO\thttps://stackoverflow.com/questions/22398340/\tO\n\t\n\t\nyou\tO\tyou\tO\nmissed\tO\tmissed\tO\nhttp\tB-Value\thttp\tB-Code_Block\n:\tI-Value\t:\tI-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\njQuery\tB-Library\tjQuery\tO\nsource\tO\tsource\tO\nlink\tO\tlink\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nusing\tO\tusing\tO\nonline\tO\tonline\tB-Code_Block\nresource\tO\tresource\tI-Code_Block\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\nurl\tO\turl\tB-Code_Block\n's\tO\t's\tI-Code_Block\nprotocol\tO\tprotocol\tI-Code_Block\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nwise\tO\twise\tO\nbrowser\tB-Application\tbrowser\tO\nwill\tO\twill\tO\nsearch\tO\tsearch\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nlocal\tO\tlocal\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nconfused\tO\tconfused\tO\nyour\tO\tyour\tO\nbrowser\tB-Application\tbrowser\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nonly\tO\tonly\tO\nit\tO\tit\tO\nhappens\tO\thappens\tO\n..\tO\t..\tO\n.\tO\t.\tO\n:D\tO\t:D\tO\n\t\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3047\tI-Code_Block\tA_3047\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3048\tI-Code_Block\tA_3048\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7985704\tO\t7985704\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7985704/\tO\thttps://stackoverflow.com/questions/7985704/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nVB.Net\tB-Language\tVB.Net\tO\nprojects\tO\tprojects\tO\nwhich\tO\twhich\tO\ncalls\tO\tcalls\tO\nsome\tO\tsome\tO\nC#\tB-Language\tC#\tO\ndll\tB-File_Type\tdll\tO\n's\tO\t's\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndebug\tO\tdebug\tO\nthe\tO\tthe\tO\nC#\tB-Language\tC#\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nwhen\tO\twhen\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\noccurs\tO\toccurs\tO\n,\tO\t,\tO\nVB.Net\tB-Language\tVB.Net\tO\nopens\tO\topens\tO\nthe\tO\tthe\tO\nC#\tB-Language\tC#\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\na\tO\ta\tO\ntext-editor\tB-Application\ttext-editor\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nsyntax-coloring\tO\tsyntax-coloring\tO\n,\tO\t,\tO\nset\tO\tset\tO\nbreakpoints\tO\tbreakpoints\tO\nin\tO\tin\tO\nother\tO\tother\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nobvious\tO\tobvious\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nit\tO\tit\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7985704\tO\t7985704\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7985704/\tO\thttps://stackoverflow.com/questions/7985704/\tO\n\t\n\t\nStart\tO\tStart\tO\nyour\tO\tyour\tO\ndebugging\tO\tdebugging\tO\nsession\tO\tsession\tO\nnormally\tO\tnormally\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nonce\tO\tonce\tO\nit\tO\tit\tO\nis\tO\tis\tO\nstarted\tO\tstarted\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n,\tO\t,\tO\nFile/Open\tO\tFile/Open\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\n.cs\tB-File_Type\t.cs\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncorresponding\tO\tcorresponding\tO\n.pdb\tB-File_Type\t.pdb\tO\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndll\tB-File_Type\tdll\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nincluded\tO\tincluded\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nset\tO\tset\tO\nbreakpoints\tO\tbreakpoints\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nhit\tO\thit\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ndebugging\tO\tdebugging\tO\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\npdb\tB-File_Type\tpdb\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmeans\tO\tmeans\tO\nyour\tO\tyour\tO\ndll\tB-File_Type\tdll\tO\nwas\tO\twas\tO\ncompiled\tO\tcompiled\tO\nin\tO\tin\tO\nRelease\tO\tRelease\tO\nconfiguration\tO\tconfiguration\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\ndebug\tO\tdebug\tO\nconfiguration\tO\tconfiguration\tO\n.\tO\t.\tO\n\t\nDuring\tO\tDuring\tO\nthis\tO\tthis\tO\nsession\tO\tsession\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nother\tO\tother\tO\n.cs\tB-File_Type\t.cs\tO\nfiles\tO\tfiles\tO\nmanually\tO\tmanually\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nstep\tO\tstep\tO\ninto\tO\tinto\tO\nstatements\tO\tstatements\tO\n.\tO\t.\tO\n\t\nOpen\tO\tOpen\tO\nthe\tO\tthe\tO\nneeded\tO\tneeded\tO\nfiles\tO\tfiles\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nstep\tO\tstep\tO\ninto\tO\tinto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7985704\tO\t7985704\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7985704/\tO\thttps://stackoverflow.com/questions/7985704/\tO\n\t\n\t\nPrior\tO\tPrior\tO\nto\tO\tto\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nprojects\tO\tprojects\tO\n(\tO\t(\tO\nF\tB-Keyboard_IP\tF\tO\n5)\tI-Keyboard_IP\t5)\tO\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nC#\tB-Language\tC#\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nPDB\tB-File_Type\tPDB\tO\n)\tO\t)\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nopen\tO\topen\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\n.cs\tB-File_Type\t.cs\tO\nfile\tO\tfile\tO\nusing\tO\tusing\tO\nFile->Open\tO\tFile->Open\tO\nand\tO\tand\tO\nset\tO\tset\tO\nbreakpoints\tO\tbreakpoints\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\n.cs\tB-File_Type\t.cs\tO\nthen\tO\tthen\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nreflector\tO\treflector\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\n.cs\tB-File_Type\t.cs\tO\nfiles\tO\tfiles\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nbreakpoints\tO\tbreakpoints\tO\nwith\tO\twith\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nPDB\tB-File_Type\tPDB\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n've\tO\t've\tO\nonly\tO\tonly\tO\nhad\tO\thad\tO\nsuccess\tO\tsuccess\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nI\tO\tI\tO\n've\tO\t've\tO\nalready\tO\talready\tO\ninterrupted\tO\tinterrupted\tO\na\tO\ta\tO\nrunning\tO\trunning\tO\ndebug\tO\tdebug\tO\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28656556\tO\t28656556\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28656556/\tO\thttps://stackoverflow.com/questions/28656556/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nstatic_assert\tB-Library_Function\tstatic_assert\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3371\tI-Code_Block\tQ_3371\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\non\tO\ton\tO\ncompilation\tO\tcompilation\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nexpression\tO\texpression\tO\nso\tO\tso\tO\nwhats\tO\twhats\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28656556\tO\t28656556\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28656556/\tO\thttps://stackoverflow.com/questions/28656556/\tO\n\t\n\t\nFor\tO\tFor\tO\na\tO\ta\tO\ncompiler\tB-Application\tcompiler\tO\nwithout\tO\twithout\tO\nconstexpr\tB-Code_Block\tconstexpr\tB-Code_Block\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nC\tB-Language\tC\tO\nlibrary\tO\tlibrary\tO\nMAX\tB-Library_Variable\tMAX\tB-Code_Block\nnames\tO\tnames\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nSIZE_MAX\tB-Library_Variable\tSIZE_MAX\tB-Code_Block\nfrom\tO\tfrom\tO\n<stdint.h>\tB-Library\t<stdint.h>\tB-Code_Block\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nunsigned\tO\tunsigned\tO\ntype\tO\ttype\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nsize_t\tB-Data_Type\tsize_t\tB-Code_Block\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nsize_t(-1)\tB-Data_Type\tsize_t(-1)\tB-Code_Block\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\n(\tO\t(\tO\nhttp://en.cppreference.com/w/cpp/types/climits\tO\thttp://en.cppreference.com/w/cpp/types/climits\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nlist\tO\tlist\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37378562\tO\t37378562\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37378562/\tO\thttps://stackoverflow.com/questions/37378562/\tO\n\t\n\t\nTrying\tO\tTrying\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nSurveys\tB-Library\tSurveys\tO\nAPI\tI-Library\tAPI\tO\nsample\tO\tsample\tO\nPython\tB-Language\tPython\tO\nscript\tO\tscript\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nList\tB-Code_Block\tList\tO\nSurveys\tI-Code_Block\tSurveys\tO\n\"\tO\t\"\tO\ncommand\tO\tcommand\tO\nreturns\tO\treturns\tO\nonly\tO\tonly\tO\na\tO\ta\tO\nrequest_id\tB-Variable_Name\trequest_id\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nresources\tO\tresources\tO\n\"\tO\t\"\tO\nobject\tO\tobject\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nsurveys\tO\tsurveys\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n\t\nExecuting\tO\tExecuting\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nscript\tO\tscript\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nResults\tO\tResults\tO\nof\tO\tof\tO\n\"\tB-Code_Block\t\"\tO\nlist\tI-Code_Block\tlist\tO\n\"\tI-Code_Block\t\"\tO\ncommand\tO\tcommand\tO\nto_json\tB-Library_Function\tto_json\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4673\tI-Code_Block\tQ_4673\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nResponse\tO\tResponse\tO\nfrom\tO\tfrom\tO\nexecuting\tO\texecuting\tO\nthe\tO\tthe\tO\nlist\tB-Code_Block\tlist\tO\ncommand\tO\tcommand\tO\n-\tO\t-\tO\nno\tB-Output_Block\tno\tO\n\"\tI-Output_Block\t\"\tO\nresources\tI-Output_Block\tresources\tO\n\"\tI-Output_Block\t\"\tO\nobject\tI-Output_Block\tobject\tO\nas\tI-Output_Block\tas\tO\nadvertised\tI-Output_Block\tadvertised\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4674\tI-Code_Block\tQ_4674\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\n150\tO\t150\tO\nsurveys\tO\tsurveys\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncommand\tO\tcommand\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAPI\tB-Application\tAPI\tO\nexplorer\tI-Application\texplorer\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nchain\tO\tchain\tO\nof\tO\tof\tO\nnext\tO\tnext\tO\npage\tO\tpage\tO\ntokens\tO\ttokens\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nplease\tO\tplease\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37378562\tO\t37378562\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37378562/\tO\thttps://stackoverflow.com/questions/37378562/\tO\n\t\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nlist\tB-Data_Structure\tlist\tO\nsurveys\tO\tsurveys\tO\nowned\tO\towned\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\naccount\tO\taccount\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nservice\tO\tservice\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nyou''ll\tO\tyou''ll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\naccount\tO\taccount\tO\nas\tO\tas\tO\nan\tO\tan\tO\nowner\tO\towner\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nresources\tO\tresources\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\naccount\tO\taccount\tO\nowns\tO\towns\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nprocess\tO\tprocess\tO\nfound\tO\tfound\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nallow\tO\tallow\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nget\tO\tget\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nsurvey\tO\tsurvey\tO\nresults\tO\tresults\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nGoogle\tB-Library\tGoogle\tO\nConsumer\tI-Library\tConsumer\tO\nSurveys\tI-Library\tSurveys\tO\nAPI\tI-Library\tAPI\tO\n?\tO\t?\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\n3\tO\t3\tO\nlegged\tO\tlegged\tO\nOAuth\tB-Library\tOAuth\tO\nclient\tB-Library_Variable\tclient\tO\nsecret\tI-Library_Variable\tsecret\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nprompt\tO\tprompt\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\nas\tO\tas\tO\nyour\tO\tyour\tO\nregular\tO\tregular\tO\nnon-service\tO\tnon-service\tO\naccount\tO\taccount\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthose\tO\tthose\tO\ncredentials\tO\tcredentials\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nhttps://developers.google.com/identity/protocols/OAuth2WebServer\tO\thttps://developers.google.com/identity/protocols/OAuth2WebServer\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nclient\tO\tclient\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ncredential\tO\tcredential\tO\n.\tO\t.\tO\n\t\n./example_client.py\tB-Code_Block\t./example_client.py\tO\nlist\tI-Code_Block\tlist\tO\n--client_secrets_file\tI-Code_Block\t--client_secrets_file\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nthe\tO\tthe\tO\ncredentials\tO\tcredentials\tO\nto\tO\tto\tO\nredirect\tO\tredirect\tO\nto\tO\tto\tO\nlocalhost:8080\tB-Value\tlocalhost:8080\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28887577\tO\t28887577\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28887577/\tO\thttps://stackoverflow.com/questions/28887577/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntime\tO\ttime\tO\nformat\tO\tformat\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\na\tO\ta\tO\nfactor\tO\tfactor\tO\n\t\n2004-03-01-22.58.00.912933\tB-Value\t2004-03-01-22.58.00.912933\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nR\tB-Language\tR\tO\nand\tO\tand\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nan\tO\tan\tO\nactual\tO\tactual\tO\ntime\tO\ttime\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nOthers\tO\tOthers\tO\nhave\tO\thave\tO\nposted\tO\tposted\tO\nsimilar\tO\tsimilar\tO\nquestions\tO\tquestions\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\none\tO\tone\tO\nhas\tO\thas\tO\ndealt\tO\tdealt\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\nformat\tO\tformat\tO\nspecifically\tO\tspecifically\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28887577\tO\t28887577\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28887577/\tO\thttps://stackoverflow.com/questions/28887577/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nfactor\tO\tfactor\tO\nis\tO\tis\tO\nf1\tB-Code_Block\tf1\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4064\tI-Code_Block\tA_4064\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nfractions\tO\tfractions\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ndisplay\tO\tdisplay\tO\n,\tO\t,\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\noption\tO\toption\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4065\tI-Code_Block\tA_4065\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20319347\tO\t20319347\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20319347/\tO\thttps://stackoverflow.com/questions/20319347/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nmusic\tO\tmusic\tO\ngame\tO\tgame\tO\nwebsite\tO\twebsite\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nSpotify\tB-Application\tSpotify\tO\nplay\tB-User_Interface_Element\tplay\tO\nbutton\tI-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ntakes\tO\ttakes\tO\nspotify\tB-Application\tspotify\tO\ntrack\tO\ttrack\tO\nnumbers/urls\tO\tnumbers/urls\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nhuge\tO\thuge\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nwith\tO\twith\tO\nwhich\tO\twhich\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nfind\tO\tfind\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nlist\tB-Data_Structure\tlist\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nscrape\tO\tscrape\tO\nthem\tO\tthem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20319347\tO\t20319347\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20319347/\tO\thttps://stackoverflow.com/questions/20319347/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nmillions\tO\tmillions\tO\nof\tO\tof\tO\ntracks\tO\ttracks\tO\nin\tO\tin\tO\nSpotify\tB-Application\tSpotify\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\na\tO\ta\tO\npretty\tO\tpretty\tO\nunmanageable\tO\tunmanageable\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nimportantly\tO\timportantly\tO\n,\tO\t,\tO\nscraping\tO\tscraping\tO\nthe\tO\tthe\tO\nSpotify\tB-Application\tSpotify\tO\ncatalog\tO\tcatalog\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nagainst\tO\tagainst\tO\nSpotify\tB-Organization\tSpotify\tO\n's\tO\t's\tO\nAPI\tO\tAPI\tO\nTerms\tO\tTerms\tO\nof\tO\tof\tO\nService\tO\tService\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nfind\tO\tfind\tO\nyourself\tO\tyourself\tO\nrate\tO\trate\tO\nlimited\tO\tlimited\tO\npretty\tO\tpretty\tO\nfast\tO\tfast\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\nconsider\tO\tconsider\tO\nasking\tO\tasking\tO\nusers\tO\tusers\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\ngame\tO\tgame\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nsomething\tO\tsomething\tO\n-\tO\t-\tO\nsearching\tO\tsearching\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nuser-supplied\tO\tuser-supplied\tO\nstring\tO\tstring\tO\nand\tO\tand\tO\ncaching\tO\tcaching\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nbreak\tO\tbreak\tO\nthe\tO\tthe\tO\nTerms\tO\tTerms\tO\nof\tO\tof\tO\nService\tO\tService\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33375136\tO\t33375136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33375136/\tO\thttps://stackoverflow.com/questions/33375136/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4075\tI-Code_Block\tQ_4075\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33375136\tO\t33375136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33375136/\tO\thttps://stackoverflow.com/questions/33375136/\tO\n\t\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nassignment\tO\tassignment\tO\noperator\tO\toperator\tO\nbut\tO\tbut\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nin\tO\tin\tO\nwrong\tO\twrong\tO\nway\tO\tway\tO\nor\tO\tor\tO\nin\tO\tin\tO\nwrong\tO\twrong\tO\nplace\tO\tplace\tO\n,\tO\t,\tO\n\t\nthen\tO\tthen\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nerrors\tO\terrors\tO\n!\tO\t!\tO\n\t\nsuppose\tO\tsuppose\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ntype\tO\ttype\tO\n:\tO\t:\tO\n\t\np+1\tB-Code_Block\tp+1\tO\n=p\tI-Code_Block\t=p\tO\n;\tI-Code_Block\t;\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nyou\tO\tyou\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nif\tB-Code_Block\tif\tO\n(\tI-Code_Block\t(\tO\nch>='a'\tI-Code_Block\tch>='a'\tO\n&&\tI-Code_Block\t&&\tO\nch='z'\tI-Code_Block\tch='z'\tO\n)\tI-Code_Block\t)\tO\n\t\nas\tO\tas\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nin\tO\tin\tO\nif()\tB-Code_Block\tif()\tO\nstatement\tO\tstatement\tO\n!!\tO\t!!\tO\n!\tO\t!\tO\n\t\nhow\tO\thow\tO\nsilly\tO\tsilly\tO\nI\tO\tI\tO\nam\tO\tam\tO\n!!\tO\t!!\tO\n!\tO\t!\tO\n\t\nright\tO\tright\tO\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nha\tO\tha\tO\nha\tO\tha\tO\n\t\nactually\tO\tactually\tO\ni\tO\ti\tO\nforgot\tO\tforgot\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nless\tO\tless\tO\nthen(<)\tB-Code_Block\tthen(<)\tO\nsign\tO\tsign\tO\n\t\nif\tB-Code_Block\tif\tO\n(\tI-Code_Block\t(\tO\nch>='a'\tI-Code_Block\tch>='a'\tO\n&&\tI-Code_Block\t&&\tO\nch<='z'\tI-Code_Block\tch<='z'\tO\n)\tI-Code_Block\t)\tO\n\t\nand\tO\tand\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33375136\tO\t33375136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33375136/\tO\thttps://stackoverflow.com/questions/33375136/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nassignment\tO\tassignment\tO\noperator\tO\toperator\tO\nin\tO\tin\tO\na\tO\ta\tO\nstatement\tO\tstatement\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nLHS\tO\tLHS\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noperator\tO\toperator\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nsomething\tO\tsomething\tO\nthe\tO\tthe\tO\nlanguage\tO\tlanguage\tO\ncalls\tO\tcalls\tO\nan\tO\tan\tO\nlvalue\tO\tlvalue\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nLHS\tO\tLHS\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noperator\tO\toperator\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nevaluate\tO\tevaluate\tO\nto\tO\tto\tO\nan\tO\tan\tO\nlvalue\tO\tlvalue\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nRHS\tO\tRHS\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nLHS\tO\tLHS\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncannot\tO\tcannot\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4774\tI-Code_Block\tA_4774\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nsince\tO\tsince\tO\n10\tB-Value\t10\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nevaluate\tO\tevaluate\tO\nto\tO\tto\tO\nan\tO\tan\tO\nlvalue\tO\tlvalue\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4775\tI-Code_Block\tA_4775\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nsince\tO\tsince\tO\ni\tB-Variable_Name\ti\tB-Code_Block\ndoes\tO\tdoes\tO\nevaluate\tO\tevaluate\tO\nto\tO\tto\tO\nan\tO\tan\tO\nlvalue\tO\tlvalue\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncannot\tO\tcannot\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4776\tI-Code_Block\tA_4776\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nsince\tO\tsince\tO\ni\tB-Code_Block\ti\tB-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nevaluate\tO\tevaluate\tO\nto\tO\tto\tO\nan\tO\tan\tO\nlvalue\tO\tlvalue\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\np\tB-Code_Block\tp\tB-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nevaluate\tO\tevaluate\tO\nto\tO\tto\tO\nan\tO\tan\tO\nlavalue\tO\tlavalue\tO\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nuse\tO\tuse\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4777\tI-Code_Block\tA_4777\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22931291\tO\t22931291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22931291/\tO\thttps://stackoverflow.com/questions/22931291/\tO\n\t\n\t\nadvise\tO\tadvise\tO\nappreciated\tO\tappreciated\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndrop-down\tB-User_Interface_Element\tdrop-down\tO\nlist\tI-User_Interface_Element\tlist\tO\nwith\tO\twith\tO\n\"\tB-Value\t\"\tO\nselect\tI-Value\tselect\tO\n..\tI-Value\t..\tO\n.\tI-Value\t.\tO\n\"\tI-Value\t\"\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nlist\tB-User_Interface_Element\tlist\tO\nof\tO\tof\tO\nlinks\tO\tlinks\tO\nwhich\tO\twhich\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\neach\tO\teach\tO\nopens\tO\topens\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nURL\tO\tURL\tO\nin\tO\tin\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nwindow\tB-User_Interface_Element\twindow\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nuser\tO\tuser\tO\nselection\tO\tselection\tO\n(\tO\t(\tO\n\"\tO\t\"\tO\nclick\tO\tclick\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\nI\tO\tI\tO\nhowever\tO\thowever\tO\nneed\tO\tneed\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndrop-down\tB-User_Interface_Element\tdrop-down\tO\nalways\tO\talways\tO\nkeeps\tO\tkeeps\tO\nshowing\tO\tshowing\tO\n\"\tB-Value\t\"\tO\nselect\tI-Value\tselect\tO\n..\tI-Value\t..\tO\n.\tI-Value\t.\tO\n\"\tI-Value\t\"\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\nNOT\tO\tNOT\tO\nshow\tO\tshow\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\npreviously\tO\tpreviously\tO\nselected/clicked\tO\tselected/clicked\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nit\tO\tit\tO\nstill\tO\tstill\tO\nshows\tO\tshows\tO\nwhatever\tO\twhatever\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nselected/clicked\tO\tselected/clicked\tO\non\tO\ton\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ndrop-down\tB-User_Interface_Element\tdrop-down\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nalways\tO\talways\tO\nshowing\tO\tshowing\tO\n\"\tB-Value\t\"\tO\nselect\tI-Value\tselect\tO\n..\tI-Value\t..\tO\n.\tI-Value\t.\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nsuggestion\tO\tsuggestion\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nTHANKS\tO\tTHANKS\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2507\tI-Code_Block\tQ_2507\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22931291\tO\t22931291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22931291/\tO\thttps://stackoverflow.com/questions/22931291/\tO\n\t\n\t\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3109\tI-Code_Block\tA_3109\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3110\tI-Code_Block\tA_3110\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9910837\tO\t9910837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9910837/\tO\thttps://stackoverflow.com/questions/9910837/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nappend\tO\tappend\tO\none\tO\tone\tO\nstring\tB-Data_Type\tstring\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndeclare\tO\tdeclare\tO\ntwo\tO\ttwo\tO\nglobal\tB-Data_Type\tglobal\tO\nstring\tI-Data_Type\tstring\tO\nvariables\tO\tvariables\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_850\tI-Code_Block\tQ_850\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nfor\tO\tfor\tO\ngetting\tO\tgetting\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\narguments\tO\targuments\tO\n.\tO\t.\tO\n\t\nWhenever\tO\tWhenever\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nenters\tO\tenters\tO\na\tO\ta\tO\nfilename\tO\tfilename\tO\nin\tO\tin\tO\na\tO\ta\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\nargument\tO\targument\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\nrest\tB-Variable_Name\trest\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrest\tB-Variable_Name\trest\tO\nis\tO\tis\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\ngrid_filename\tB-Variable_Name\tgrid_filename\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_851\tI-Code_Block\tQ_851\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nwhenever\tO\twhenever\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nvalgrind\tB-Application\tvalgrind\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_852\tI-Code_Block\tQ_852\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\naddresses\tO\taddresses\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstrings\tB-Data_Type\tstrings\tO\nand\tO\tand\tO\nneither\tO\tneither\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nvalgrind\tB-Application\tvalgrind\tO\nis\tO\tis\tO\nsaying\tO\tsaying\tO\nis\tO\tis\tO\n0\tO\t0\tO\nbytes\tO\tbytes\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nthis\tO\tthis\tO\nleads\tO\tleads\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nsecond\tO\tsecond\tO\nerror\tO\terror\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\npass\tO\tpass\tO\ngrid_filename\tB-Library_Variable\tgrid_filename\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nsends\tO\tsends\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nover\tO\tover\tO\na\tO\ta\tO\ntcp\tO\ttcp\tO\nconnection\tO\tconnection\tO\n.\tO\t.\tO\n\t\nValgrind\tB-Application\tValgrind\tO\ntells\tO\ttells\tO\nme\tO\tme\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_853\tI-Code_Block\tQ_853\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nexplain\tO\texplain\tO\nto\tO\tto\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsupply\tO\tsupply\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nif\tO\tif\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9910837\tO\t9910837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9910837/\tO\thttps://stackoverflow.com/questions/9910837/\tO\n\t\n\t\nAbout\tO\tAbout\tO\nyour\tO\tyour\tO\nfirst\tO\tfirst\tO\nerror\tO\terror\tO\n:\tO\t:\tO\nwe\tO\twe\tO\nhad\tO\thad\tO\nfalse\tO\tfalse\tO\npositives\tO\tpositives\tO\nin\tO\tin\tO\nvalgrind\tB-Application\tvalgrind\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nto\tO\tto\tO\nsuppress\tO\tsuppress\tO\nthese\tO\tthese\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\npointing\tO\tpointing\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nchecked\tO\tchecked\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nactually\tO\tactually\tO\ncause\tO\tcause\tO\nproblems\tO\tproblems\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9910837\tO\t9910837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9910837/\tO\thttps://stackoverflow.com/questions/9910837/\tO\n\t\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nresponse\tO\tresponse\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nreview\tO\treview\tO\nsite\tO\tsite\tO\n..\tO\t..\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nreally\tO\treally\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nstare\tO\tstare\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nwalk\tO\twalk\tO\naway\tO\taway\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nfunctions\tO\tfunctions\tO\nthat\tO\tthat\tO\nreally\tO\treally\tO\nhelp\tO\thelp\tO\nin\tO\tin\tO\na\tO\ta\tO\ntoolbox\tB-User_Interface_Element\ttoolbox\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1243\tI-Code_Block\tA_1243\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nrewrite\tO\trewrite\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nquite\tO\tquite\tO\nefficiently\tO\tefficiently\tO\n(\tO\t(\tO\nno\tO\tno\tO\nextra\tO\textra\tO\nmemory\tO\tmemory\tO\nallocation\tO\tallocation\tO\n)\tO\t)\tO\nand\tO\tand\tO\nwith\tO\twith\tO\nmore\tO\tmore\tO\nreadability\tO\treadability\tO\ntoo\tO\ttoo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1244\tI-Code_Block\tA_1244\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhich\tO\tWhich\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nhelp\tO\thelp\tO\nmuch\tO\tmuch\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nquestion\tO\tquestion\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nshowing\tO\tshowing\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nproducing\tO\tproducing\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39208837\tO\t39208837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39208837/\tO\thttps://stackoverflow.com/questions/39208837/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\nwith\tO\twith\tO\n.cgi\tB-File_Type\t.cgi\tB-Code_Block\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nso\tO\tso\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\nindex.cgi\tB-File_Name\tindex.cgi\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4936\tI-Code_Block\tQ_4936\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nevrything\tO\tevrything\tO\nis\tO\tis\tO\ndisplaying\tO\tdisplaying\tO\ncorectly\tO\tcorectly\tO\netc\tO\tetc\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nanything\tO\tanything\tO\nabout\tO\tabout\tO\nlogin\tO\tlogin\tO\nform\tO\tform\tO\n:/\tO\t:/\tO\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nlogin\tO\tlogin\tO\nform\tO\tform\tO\ninput\tO\tinput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4937\tI-Code_Block\tQ_4937\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nmy\tO\tmy\tO\nJS\tB-Language\tJS\tO\nlogin\tO\tlogin\tO\nscript\tO\tscript\tO\n(\tO\t(\tO\nhe\tO\the\tO\nis\tO\tis\tO\ninclude\tO\tinclude\tO\nin\tO\tin\tO\nheader\tO\theader\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4938\tI-Code_Block\tQ_4938\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nmake\tO\tmake\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\nverify\tO\tverify\tO\nif\tO\tif\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nlogged\tO\tlogged\tO\non\tO\ton\tO\nevery\tO\tevery\tO\npage\tO\tpage\tO\n?\tO\t?\tO\n\t\nand\tO\tand\tO\nchange\tO\tchange\tO\nfew\tO\tfew\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\ndisplay\tO\tdisplay\tO\ndisconnect\tO\tdisconnect\tO\nbutton\tB-User_Interface_Element\tbutton\tO\netc\tO\tetc\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nsomeone\tO\tsomeone\tO\nnice\tO\tnice\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n<3\tO\t<3\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nsince\tO\tsince\tO\n1\tO\t1\tO\nweek\tO\tweek\tO\nago\tO\tago\tO\n:')\tO\t:')\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39208837\tO\t39208837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39208837/\tO\thttps://stackoverflow.com/questions/39208837/\tO\n\t\n\t\nFirst\tO\tFirst\tO\nyour\tO\tyour\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\ninsecure\tO\tinsecure\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nput\tO\tput\tO\nyou\tO\tyou\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ntrack\tO\ttrack\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nuse\tB-Code_Block\tuse\tB-Code_Block\nHTML::Template\tI-Code_Block\tHTML::Template\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nlogin\tO\tlogin\tO\nand\tO\tand\tO\nlogout\tO\tlogout\tO\nof\tO\tof\tO\nsessions\tO\tsessions\tO\nin\tO\tin\tO\n2\tO\t2\tO\ncgi\tB-File_Type\tcgi\tO\nscripts\tO\tscripts\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15425905\tO\t15425905\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15425905/\tO\thttps://stackoverflow.com/questions/15425905/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\ngiven\tO\tgiven\tO\nstep\tO\tstep\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\n<\tB-HTML_XML_Tag\t<\tB-Code_Block\nheading\tI-HTML_XML_Tag\theading\tI-Code_Block\ntag\tO\ttag\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\noccurring\tO\toccurring\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\noccurrence\tO\toccurrence\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nshell\tB-Application\tshell\tO\nscript\tO\tscript\tO\nin\tO\tin\tO\nWindows\tB-Operating_System\tWindows\tO\nusing\tO\tusing\tO\ncygwin\tB-Application\tcygwin\tO\ntool\tO\ttool\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1504\tI-Code_Block\tQ_1504\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nan\tO\tan\tO\noutput\tO\toutput\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n17\tB-Value\t17\tB-Code_Block\n24\tI-Value\t24\tI-Code_Block\n46\tI-Value\t46\tI-Code_Block\n\t\nFrom\tO\tFrom\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nretrieve\tO\tretrieve\tO\n17\tB-Value\t17\tB-Code_Block\nonly\tO\tonly\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15425905\tO\t15425905\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15425905/\tO\thttps://stackoverflow.com/questions/15425905/\tO\n\t\n\t\nOne\tO\tOne\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\npipe\tO\tpipe\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\nhead\tB-Code_Block\thead\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1983\tI-Code_Block\tA_1983\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4823760\tO\t4823760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4823760/\tO\thttps://stackoverflow.com/questions/4823760/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\nbut\tO\tbut\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\nwithin\tO\twithin\tO\nmy\tO\tmy\tO\nsample\tO\tsample\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nseparator\tO\tseparator\tO\nbetween\tO\tbetween\tO\nContext\tB-User_Interface_Element\tContext\tO\nmenu\tI-User_Interface_Element\tmenu\tO\nitem\tO\titem\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ngenerated\tO\tgenerated\tO\nfrom\tO\tfrom\tO\ncode\tO\tcode\tO\nbehind\tO\tbehind\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nsuch\tO\tsuch\tO\ncode\tO\tcode\tO\nlines\tO\tlines\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nsuccess\tO\tsuccess\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_333\tI-Code_Block\tQ_333\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nContext\tB-HTML_XML_Tag\tContext\tO\nMenu\tI-HTML_XML_Tag\tMenu\tO\nXAML\tB-Language\tXAML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_334\tI-Code_Block\tQ_334\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nC#\tB-Language\tC#\tO\nthat\tO\tthat\tO\nadded\tO\tadded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_335\tI-Code_Block\tQ_335\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4823760\tO\t4823760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4823760/\tO\thttps://stackoverflow.com/questions/4823760/\tO\n\t\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nthis\tO\tthis\tO\nonce\tO\tonce\tO\nand\tO\tand\tO\nused\tO\tused\tO\na\tO\ta\tO\nnull\tB-Value\tnull\tB-Code_Block\nas\tO\tas\tO\nmy\tO\tmy\tO\nseparator\tB-HTML_XML_Tag\tseparator\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nXAML\tB-Language\tXAML\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthen\tO\tthen\tO\nstyled\tO\tstyled\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nseparator\tB-HTML_XML_Tag\tseparator\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ndatacontext\tB-Variable_Name\tdatacontext\tO\nwas\tO\twas\tO\nnull\tB-Value\tnull\tO\n\t\nCode\tO\tCode\tO\nbehind\tO\tbehind\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_489\tI-Code_Block\tA_489\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nXAML\tB-Language\tXAML\tO\nwas\tO\twas\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_490\tI-Code_Block\tA_490\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHope\tO\tHope\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nsyntax\tO\tsyntax\tO\nright\tO\tright\tO\n-\tO\t-\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nIDE\tB-Application\tIDE\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nmachine\tO\tmachine\tO\nto\tO\tto\tO\nverify\tO\tverify\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n\t\nEDIT\tO\tEDIT\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\ntemplate\tO\ttemplate\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncontext\tB-User_Interface_Element\tcontext\tO\nmenu\tI-User_Interface_Element\tmenu\tO\nseparator\tI-User_Interface_Element\tseparator\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nputting\tO\tputting\tO\nit\tO\tit\tO\nin\tO\tin\tO\nContextMenu.Resources\tB-HTML_XML_Tag\tContextMenu.Resources\tB-Code_Block\n,\tO\t,\tO\nalthough\tO\talthough\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nput\tO\tput\tO\nthis\tO\tthis\tO\nanywhere\tO\tanywhere\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nContextMenu\tB-HTML_XML_Tag\tContextMenu\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_491\tI-Code_Block\tA_491\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4823760\tO\t4823760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4823760/\tO\thttps://stackoverflow.com/questions/4823760/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmodified\tO\tmodified\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nRachel\tB-User_Name\tRachel\tO\nabove\tO\tabove\tO\nto\tO\tto\tO\ncorrect\tO\tcorrect\tO\nthe\tO\tthe\tO\nSeparator\tB-HTML_XML_Tag\tSeparator\tO\nstyle\tO\tstyle\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrealize\tO\trealize\tO\nthis\tO\tthis\tO\npost\tO\tpost\tO\nis\tO\tis\tO\nold\tO\told\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nstill\tO\tstill\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nresults\tO\tresults\tO\non\tO\ton\tO\nGoogle\tB-Website\tGoogle\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nsituation\tO\tsituation\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nMenu\tB-HTML_XML_Tag\tMenu\tO\nvs\tO\tvs\tO\na\tO\ta\tO\nContextMenu\tB-HTML_XML_Tag\tContextMenu\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nXAML\tB-Language\tXAML\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7007\tI-Code_Block\tA_7007\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWithout\tO\tWithout\tO\nSeparator\tB-HTML_XML_Tag\tSeparator\tO\nStyle\tO\tStyle\tO\nChange\tO\tChange\tO\n\t\nWith\tO\tWith\tO\nSeparator\tB-HTML_XML_Tag\tSeparator\tO\nStyle\tO\tStyle\tO\nChange\tO\tChange\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7684289\tO\t7684289\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7684289/\tO\thttps://stackoverflow.com/questions/7684289/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nXML\tB-Language\tXML\tO\nfrom\tO\tfrom\tO\nthird-party\tO\tthird-party\tO\nservice\tO\tservice\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_605\tI-Code_Block\tQ_605\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nlike\tO\tlike\tO\nsingle\tO\tsingle\tO\ncollection\tO\tcollection\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nfields\tO\tfields\tO\nof\tO\tof\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nname\tO\tname\tO\nof\tO\tof\tO\npart\tO\tpart\tO\nis\tO\tis\tO\ndiffer\tO\tdiffer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nserialization\tO\tserialization\tO\nfirst\tO\tfirst\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_606\tI-Code_Block\tQ_606\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nresponse\tO\tresponse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_607\tI-Code_Block\tQ_607\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nLooks\tO\tLooks\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nvery\tO\tvery\tO\nclose\tO\tclose\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\ncollection\tO\tcollection\tO\nobjects\tO\tobjects\tO\n?\tO\t?\tO\n\t\nUPD\tO\tUPD\tO\n:\tO\t:\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nafter\tO\tafter\tO\nserialization\tO\tserialization\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_608\tI-Code_Block\tQ_608\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16720329\tO\t16720329\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16720329/\tO\thttps://stackoverflow.com/questions/16720329/\tO\n\t\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nparses\tO\tparses\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\nstrings\tB-Data_Type\tstrings\tO\noperands\tO\toperands\tO\ninto\tO\tinto\tO\ndouble\tB-Data_Type\tdouble\tO\nand\tO\tand\tO\nadds\tO\tadds\tO\nthem\tO\tthem\tO\ntogether\tO\ttogether\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmodify\tO\tmodify\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nany\tO\tany\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nstrings\tB-Data_Type\tstrings\tO\noperands\tO\toperands\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1678\tI-Code_Block\tQ_1678\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16720329\tO\t16720329\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16720329/\tO\thttps://stackoverflow.com/questions/16720329/\tO\n\t\n\t\nAll\tO\tAll\tO\nthe\tO\tthe\tO\nanswers\tO\tanswers\tO\nsays\tO\tsays\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ninfo\tO\tinfo\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nvariable\tO\tvariable\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\narguement\tO\targuement\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\naccorind\tO\taccorind\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncomment\tO\tcomment\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nparameter\tO\tparameter\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nstring\tB-Data_Type\tstring\tO\nlike\tO\tlike\tO\n1+5+\tB-Value\t1+5+\tO\n10\tI-Value\t10\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nvarargs\tB-Data_Type\tvarargs\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nmust\tO\tmust\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsingle\tO\tsingle\tO\nstring\tB-Data_Type\tstring\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nStringTokenizer\tB-Library_Function\tStringTokenizer\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nExample\tO\tExample\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2167\tI-Code_Block\tA_2167\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16720329\tO\t16720329\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16720329/\tO\thttps://stackoverflow.com/questions/16720329/\tO\n\t\n\t\nChange\tO\tChange\tO\nthe\tO\tthe\tO\nsignature\tO\tsignature\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nvarargs\tB-Data_Type\tvarargs\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2163\tI-Code_Block\tA_2163\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nhandled\tO\thandled\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n's\tO\t's\tO\nbody\tO\tbody\tO\nas\tO\tas\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17604481\tO\t17604481\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17604481/\tO\thttps://stackoverflow.com/questions/17604481/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nOpenTok\tB-Library\tOpenTok\tO\ndemo\tO\tdemo\tO\nWebRTC\tB-Application\tWebRTC\tO\napp\tO\tapp\tO\non\tO\ton\tO\nChrome\tB-Application\tChrome\tO\n-\tO\t-\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nI\tO\tI\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nin\tO\tin\tO\nIE\tB-Application\tIE\tO\n,\tO\t,\tO\nit\tO\tit\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n(\tO\t(\tO\nabout\tO\tabout\tO\npage\tO\tpage\tO\ncompatibility\tO\tcompatibility\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPretty\tO\tPretty\tO\nobvious\tO\tobvious\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nold\tO\told\tO\n(\tO\t(\tO\nFlash-based\tB-Application\tFlash-based\tO\n)\tO\t)\tO\nOpenTok\tB-Library\tOpenTok\tO\nlibrary\tO\tlibrary\tO\non\tO\ton\tO\nIE\tB-Application\tIE\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n\"\tO\t\"\tO\nmanually\tO\tmanually\tO\n\"\tO\t\"\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\nautomatic\tO\tautomatic\tO\nswitching\tO\tswitching\tO\n\"\tO\t\"\tO\nlibrary\tO\tlibrary\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nload\tO\tload\tO\nWebRTC\tB-Application\tWebRTC\tO\n(\tO\t(\tO\n2.0\tB-Version\t2.0\tO\n)\tO\t)\tO\nTB.min.js\tB-File_Name\tTB.min.js\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\nfails\tO\tfails\tO\nfall\tO\tfall\tO\nback\tO\tback\tO\nto\tO\tto\tO\nFlash\tB-Application\tFlash\tO\n(\tO\t(\tO\n0.9\tB-Version\t0.9\tO\n)\tO\t)\tO\nversion\tO\tversion\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\na\tO\ta\tO\nrelated\tO\trelated\tO\nquestion\tO\tquestion\tO\n-\tO\t-\tO\nwill\tO\twill\tO\nall\tO\tall\tO\nthese\tO\tthese\tO\nversions\tO\tversions\tO\ninteroperate\tO\tinteroperate\tO\n?\tO\t?\tO\n\t\nI.e\tO\tI.e\tO\n.\tO\t.\tO\n\t\ncan\tO\tcan\tO\nChromes\tB-Application\tChromes\tO\n(\tO\t(\tO\nrunning\tO\trunning\tO\n2.0/WebRTC\tB-Version\t2.0/WebRTC\tO\n)\tO\t)\tO\ntalk\tO\ttalk\tO\nto\tO\tto\tO\nIE\tB-Application\tIE\tO\n(\tO\t(\tO\nrunning\tO\trunning\tO\n0.9/Flash\tB-Version\t0.9/Flash\tO\n)\tO\t)\tO\nand\tO\tand\tO\ntalk\tO\ttalk\tO\nto\tO\tto\tO\niOS\tB-Operating_System\tiOS\tO\n(\tO\t(\tO\nrunning\tO\trunning\tO\nnative\tO\tnative\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17604481\tO\t17604481\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17604481/\tO\thttps://stackoverflow.com/questions/17604481/\tO\n\t\n\t\nTo\tO\tTo\tO\nhave\tO\thave\tO\nWebRTC\tB-Application\tWebRTC\tO\ncapabilities\tO\tcapabilities\tO\non\tO\ton\tO\nIE\tB-Application\tIE\tO\n,\tO\t,\tO\nusers\tO\tusers\tO\ncould\tO\tcould\tO\ninstall\tO\tinstall\tO\nChrome\tB-Application\tChrome\tO\nFrame\tO\tFrame\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nIE6+\tB-Application\tIE6+\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\noption\tO\toption\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nbeing\tO\tbeing\tO\nactively\tO\tactively\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nGoogle\tB-Website\tGoogle\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nautomatic\tO\tautomatic\tO\nswitching\tO\tswitching\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nserver\tO\tserver\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nHTTP\tO\tHTTP\tO\nrequests\tO\trequests\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\n's\tO\t's\tO\nbrowser\tI-Application\tbrowser\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndynamically\tO\tdynamically\tO\nload\tO\tload\tO\neither\tO\teither\tO\nthe\tO\tthe\tO\nWebRTC\tB-Application\tWebRTC\tO\nor\tO\tor\tO\nFlash\tB-Application\tFlash\tO\nlibrary\tO\tlibrary\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\n's\tO\t's\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nWebRTC\tB-Application\tWebRTC\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nOpenTok\tB-Library\tOpenTok\tO\nWebRTC\tB-Application\tWebRTC\tO\nlibrary\tO\tlibrary\tO\nsupports\tO\tsupports\tO\n:\tO\t:\tO\n\t\nChrome\tB-Application\tChrome\tO\n23+\tB-Version\t23+\tO\n\t\nFirefox\tB-Application\tFirefox\tO\n22+\tB-Version\t22+\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nOpenTok\tB-Library\tOpenTok\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ninteroperate\tO\tinteroperate\tO\nbetween\tO\tbetween\tO\nFlash\tB-Application\tFlash\tO\nand\tO\tand\tO\nWebRTC\tB-Application\tWebRTC\tO\nclients\tI-Application\tclients\tO\n.\tO\t.\tO\n\t\nWebRTC\tB-Application\tWebRTC\tO\nclients\tO\tclients\tO\ncan\tO\tcan\tO\noperate\tO\toperate\tO\nwith\tO\twith\tO\nother\tO\tother\tO\nWebRTC\tB-Application\tWebRTC\tO\nclients\tO\tclients\tO\n(\tO\t(\tO\nmobile\tO\tmobile\tO\n,\tO\t,\tO\nweb\tO\tweb\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nFlash\tB-Application\tFlash\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\noperate\tO\toperate\tO\nwith\tO\twith\tO\nother\tO\tother\tO\nFlash\tB-Application\tFlash\tO\nclients\tO\tclients\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nan\tO\tan\tO\niOS\tB-Operating_System\tiOS\tO\nclient\tO\tclient\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nWebRTC\tB-Application\tWebRTC\tO\nSDK\tI-Application\tSDK\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nChrome/Firefox\tB-Application\tChrome/Firefox\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nWebRTC\tB-Application\tWebRTC\tO\nJavascript\tB-Language\tJavascript\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21092905\tO\t21092905\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21092905/\tO\thttps://stackoverflow.com/questions/21092905/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmigrate\tO\tmigrate\tO\na\tO\ta\tO\nmedium-sized\tO\tmedium-sized\tO\nsite\tO\tsite\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nPHP\tB-Website\tPHP\tO\nNuke\tI-Website\tNuke\tO\n(\tO\t(\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n2000\tO\t2000\tO\nposts\tO\tposts\tO\n)\tO\t)\tO\nto\tO\tto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nWordPress\tB-Application\tWordPress\tO\ninstallation\tO\tinstallation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nproblems\tO\tproblems\tO\nwriting\tO\twriting\tO\nthe\tO\tthe\tO\nredirection\tO\tredirection\tO\nrules\tO\trules\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2247\tI-Code_Block\tQ_2247\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2248\tI-Code_Block\tQ_2248\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nshould\tO\tshould\tO\nbecome\tO\tbecome\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2249\tI-Code_Block\tQ_2249\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\n.htaccess\tB-File_Type\t.htaccess\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nnuke\tB-Variable_Name\tnuke\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nmodules\tB-Variable_Name\tmodules\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nNews\tB-Variable_Name\tNews\tO\n\"\tO\t\"\tO\nfolder\tO\tfolder\tO\nwith\tO\twith\tO\nnot\tO\tnot\tO\nluck\tO\tluck\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nworking\tO\tworking\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2250\tI-Code_Block\tQ_2250\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21092905\tO\t21092905\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21092905/\tO\thttps://stackoverflow.com/questions/21092905/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nplace\tO\tplace\tO\nthe\tO\tthe\tO\nhtaccess\tB-File_Type\thtaccess\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nnuke\tB-Variable_Name\tnuke\tO\n\"\tO\t\"\tO\nfolder\tO\tfolder\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nomit\tO\tomit\tO\nthe\tO\tthe\tO\nnuke\tB-Variable_Name\tnuke\tB-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npattern\tO\tpattern\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2829\tI-Code_Block\tA_2829\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nturned\tO\tturned\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nrewrite\tO\trewrite\tO\nengine\tO\tengine\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2830\tI-Code_Block\tA_2830\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30061936\tO\t30061936\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30061936/\tO\thttps://stackoverflow.com/questions/30061936/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nwhich\tO\twhich\tO\nreads\tO\treads\tO\nvalues\tO\tvalues\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nCSV\tB-File_Type\tCSV\tO\nthrough\tO\tthrough\tO\npandas\tB-Library\tpandas\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nDataFrame\tB-Library_Class\tDataFrame\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\n'\tB-Value\t'\tO\nA\tI-Value\tA\tO\n'\tB-Value\t'\tO\nand\tO\tand\tO\n'\tB-Value\t'\tO\nB\tI-Value\tB\tO\n'\tB-Value\t'\tO\n,\tO\t,\tO\nare\tO\tare\tO\ninputs\tO\tinputs\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nequation\tO\tequation\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nequation\tO\tequation\tO\nis\tO\tis\tO\nobtained\tO\tobtained\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nXML\tB-File_Type\tXML\tO\noutput\tO\toutput\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nequation\tO\tequation\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\nresult\tO\tresult\tO\nfor\tO\tfor\tO\n'\tB-Value\t'\tO\nA\tI-Value\tA\tO\n'\tB-Value\t'\tO\nand\tO\tand\tO\n'\tB-Value\t'\tO\nB\tI-Value\tB\tO\n'\tB-Value\t'\tO\nrow-by-row\tB-User_Interface_Element\trow-by-row\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nDataFrame\tB-Library_Class\tDataFrame\tO\nand\tO\tand\tO\nplaces\tO\tplaces\tO\nthose\tO\tthose\tO\nresults\tO\tresults\tO\nback\tO\tback\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nDataFrame\tB-Library_Class\tDataFrame\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\ndefinition\tO\tdefinition\tO\n,\tO\t,\tO\nexplicitly\tO\texplicitly\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nequation\tO\tequation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndefinition\tO\tdefinition\tO\n,\tO\t,\tO\nand\tO\tand\tO\nreturn\tO\treturn\tO\nthat\tO\tthat\tO\nthat\tO\tthat\tO\nequation\tO\tequation\tO\n,\tO\t,\tO\nthings\tO\tthings\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3607\tI-Code_Block\tQ_3607\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\nbuild\tO\tbuild\tO\n\"\tO\t\"\tO\nthat\tO\tthat\tO\nsame\tO\tsame\tO\nequation\tO\tequation\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nXML\tB-File_Type\tXML\tO\nfile\tO\tfile\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nentering\tO\tentering\tO\nit\tO\tit\tO\nin\tO\tin\tO\nexplicitly\tO\texplicitly\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbasically\tO\tbasically\tO\npull\tO\tpull\tO\n'\tO\t'\tO\nterms\tO\tterms\tO\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\ncoefficients\tO\tcoefficients\tO\n'\tO\t'\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nxml\tB-File_Type\txml\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nform\tO\tform\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nequation\tO\tequation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nto\tO\tto\tO\nan\tO\tan\tO\nexecutable\tO\texecutable\tO\nfunction\tO\tfunction\tO\nusing\tO\tusing\tO\nsympy.sympify()\tB-Library_Function\tsympy.sympify()\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3608\tI-Code_Block\tQ_3608\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nthis\tO\tthis\tO\nequation\tO\tequation\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\ndataFrame\tB-Variable_Name\tdataFrame\tO\nthe\tO\tthe\tO\nliteral\tO\tliteral\tO\nequation\tO\tequation\tO\nis\tO\tis\tO\ncopied\tO\tcopied\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\noutPut\tO\toutPut\tO\n\"\tO\t\"\tO\nDF\tB-Library_Class\tDF\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nrow\tB-User_Interface_Element\trow\tO\nby\tO\tby\tO\nrow\tB-User_Interface_Element\trow\tO\nresult\tO\tresult\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\n'\tB-Value\t'\tO\nA\tI-Value\tA\tO\n'\tB-Value\t'\tO\nand\tO\tand\tO\n'\tB-Value\t'\tO\nB\tI-Value\tB\tO\n'\tB-Value\t'\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nPython\tB-Language\tPython\tO\nsees\tO\tsees\tO\nthese\tO\tthese\tO\ncode\tO\tcode\tO\nexamples\tO\texamples\tO\ndifferently\tO\tdifferently\tO\n,\tO\t,\tO\nnor\tO\tnor\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\nthe\tO\tthe\tO\nsympify()\tB-Library_Class\tsympify()\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexecutable\tO\texecutable\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsame\tO\tsame\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\noccur\tO\toccur\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\neval()\tB-Library_Class\teval()\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30061936\tO\t30061936\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30061936/\tO\thttps://stackoverflow.com/questions/30061936/\tO\n\t\n\t\nElaborating\tO\tElaborating\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nlambdify\tB-Library_Function\tlambdify\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4274\tI-Code_Block\tA_4274\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nexpressions\tO\texpressions\tO\nencountered\tO\tencountered\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nxml\tB-File_Type\txml\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nsympy\tB-Library\tsympy\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\noverkill\tO\toverkill\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\neval\tB-Library_Function\teval\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4275\tI-Code_Block\tA_4275\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34574024\tO\t34574024\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34574024/\tO\thttps://stackoverflow.com/questions/34574024/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nin\tO\tin\tO\nRails\tB-Library\tRails\tO\n4\tB-Version\t4\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nsimple\tB-HTML_XML_Tag\tsimple\tO\nform\tI-HTML_XML_Tag\tform\tO\nfor\tO\tfor\tO\nforms\tO\tforms\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nindustry\tB-Class_Name\tindustry\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nindustry.rb\tB-File_Name\tindustry.rb\tO\nhas\tO\thas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4210\tI-Code_Block\tQ_4210\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nindustry\tB-Class_Name\tindustry\tO\ncontroller\tO\tcontroller\tO\nhas\tO\thas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4211\tI-Code_Block\tQ_4211\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nindustry\tB-Class_Name\tindustry\tO\nform\tO\tform\tO\nhas\tO\thas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4212\tI-Code_Block\tQ_4212\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nmy\tO\tmy\tO\nform\tO\tform\tO\ninput\tO\tinput\tO\nfor\tO\tfor\tO\n:sector\tB-Class_Name\t:sector\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nindustries\tB-Class_Name\tindustries\tO\n(\tO\t(\tO\nby\tO\tby\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\nscope\tB-Library_Function\tscope\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4213\tI-Code_Block\tQ_4213\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34574024\tO\t34574024\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34574024/\tO\thttps://stackoverflow.com/questions/34574024/\tO\n\t\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nalphabetically\tB-Function_Name\talphabetically\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nalphabetical\tB-Code_Block\talphabetical\tB-Code_Block\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noptions_from_collection_for_select\tB-Library_Function\toptions_from_collection_for_select\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n3\tO\t3\tO\narguments\tO\targuments\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noptions_from_collection_for_select\tB-Library_Function\toptions_from_collection_for_select\tB-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\ncollection\tB-Library_Variable\tcollection\tB-Code_Block\n,\tO\t,\tO\nvalue_method\tB-Library_Variable\tvalue_method\tB-Code_Block\nand\tO\tand\tO\ntext_method\tB-Library_Variable\ttext_method\tB-Code_Block\n.\tO\t.\tO\n\t\nChange\tO\tChange\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4919\tI-Code_Block\tA_4919\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33886034\tO\t33886034\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33886034/\tO\thttps://stackoverflow.com/questions/33886034/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nvideo\tO\tvideo\tO\ngame\tO\tgame\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nuniversity\tO\tuniversity\tO\ncourse\tO\tcourse\tO\nusing\tO\tusing\tO\naltera\tB-Device\taltera\tO\nDE0\tI-Device\tDE0\tO\nor\tO\tor\tO\nDE2\tB-Device\tDE2\tO\nor\tO\tor\tO\nDE1-SoC\tB-Device\tDE1-SoC\tO\nboards\tO\tboards\tO\n,\tO\t,\tO\ni\tO\ti\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nisa\tO\tisa\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nnios\tB-Device\tnios\tO\nII\tI-Device\tII\tO\ncpu\tI-Device\tcpu\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\natomic\tO\tatomic\tO\ntest-and-set\tO\ttest-and-set\tO\ninstruction\tO\tinstruction\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nISA\tO\tISA\tO\n.\tO\t.\tO\n\t\nhow\tO\thow\tO\nwould\tO\twould\tO\ni\tO\ti\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nlock\tO\tlock\tO\nhere\tO\there\tO\n,\tO\t,\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\nenforces\tO\tenforces\tO\nmutual\tO\tmutual\tO\nexclusion\tO\texclusion\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ntiny\tO\ttiny\tO\nperiod\tO\tperiod\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nwe\tO\twe\tO\nare\tO\tare\tO\ngonna\tO\tgonna\tO\nhave\tO\thave\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ngonna\tO\tgonna\tO\nrun\tO\trun\tO\nfrom\tO\tfrom\tO\nmain()\tB-Function_Name\tmain()\tB-Code_Block\nand\tO\tand\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nrun\tO\trun\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nInterrupt\tO\tInterrupt\tO\nService\tO\tService\tO\nRoutine\tO\tRoutine\tO\n,\tO\t,\tO\nand\tO\tand\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nput\tO\tput\tO\nlocks\tO\tlocks\tO\non\tO\ton\tO\nsome\tO\tsome\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33886034\tO\t33886034\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33886034/\tO\thttps://stackoverflow.com/questions/33886034/\tO\n\t\n\t\nIt\tO\tIt\tO\nappears\tO\tappears\tO\nthe\tO\tthe\tO\nNios\tB-Device\tNios\tO\nII\tI-Device\tII\tO\narchitecture\tO\tarchitecture\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\natomic\tO\tatomic\tO\ntest-and-set\tO\ttest-and-set\tO\ninstructions\tO\tinstructions\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nfor\tO\tfor\tO\nsynchronization\tO\tsynchronization\tO\nof\tO\tof\tO\nshared\tO\tshared\tO\nresources\tO\tresources\tO\nbetween\tO\tbetween\tO\nmultiple\tO\tmultiple\tO\nNios\tB-Device\tNios\tO\nII\tI-Device\tII\tO\nprocessors\tO\tprocessors\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\narchitecture\tO\tarchitecture\tO\nuses\tO\tuses\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\nHardware\tO\tHardware\tO\nMutex\tO\tMutex\tO\nCore\tO\tCore\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\na\tO\ta\tO\nshared\tO\tshared\tO\nperipheral\tO\tperipheral\tO\nthat\tO\tthat\tO\nprovides\tO\tprovides\tO\nan\tO\tan\tO\natomic\tO\tatomic\tO\ntest-and-test\tO\ttest-and-test\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nin\tO\tin\tO\nAltera\tB-Organization\tAltera\tO\n's\tO\t's\tO\nCreating\tO\tCreating\tO\nMultiprocessor\tO\tMultiprocessor\tO\nNios\tB-Device\tNios\tO\nII\tI-Device\tII\tO\nSystems\tO\tSystems\tO\nTutorial\tO\tTutorial\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nan\tO\tan\tO\natomic\tO\tatomic\tO\ntest-and-set\tO\ttest-and-set\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nany\tO\tany\tO\nsequence\tO\tsequence\tO\nof\tO\tof\tO\ninstructions\tO\tinstructions\tO\natomic\tO\tatomic\tO\nwith\tO\twith\tO\nrespect\tO\trespect\tO\nto\tO\tto\tO\ninterrupts\tO\tinterrupts\tO\non\tO\ton\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ncore\tO\tcore\tO\nsystem\tO\tsystem\tO\nsimply\tO\tsimply\tO\nby\tO\tby\tO\ndisabling\tO\tdisabling\tO\ninterrupts\tO\tinterrupts\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37025943\tO\t37025943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37025943/\tO\thttps://stackoverflow.com/questions/37025943/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4589\tI-Code_Block\tQ_4589\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\njava\tB-Library\tjava\tO\nsdk\tI-Library\tsdk\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\npom.xml\tB-File_Name\tpom.xml\tB-Code_Block\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4590\tI-Code_Block\tQ_4590\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nbuild\tO\tbuild\tO\nmy\tO\tmy\tO\njava\tB-Language\tjava\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nand\tO\tand\tO\nproduces\tO\tproduces\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4591\tI-Code_Block\tQ_4591\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nClientConfigurationFactory\tB-Library_Class\tClientConfigurationFactory\tB-Code_Block\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJava\tB-Library\tJava\tO\nSDK\tI-Library\tSDK\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nappreciate\tO\tappreciate\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nguys\tO\tguys\tO\ncan\tO\tcan\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37025943\tO\t37025943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37025943/\tO\thttps://stackoverflow.com/questions/37025943/\tO\n\t\n\t\ncom.amazonaws.ClientConfigurationFactory\tB-Library_Class\tcom.amazonaws.ClientConfigurationFactory\tO\nis\tO\tis\tO\ninside\tO\tinside\tO\naws-java-sdk-core\tB-Library\taws-java-sdk-core\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ndependencies\tO\tdependencies\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\npom.xml\tB-File_Name\tpom.xml\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23293642\tO\t23293642\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23293642/\tO\thttps://stackoverflow.com/questions/23293642/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthose\tO\tthose\tO\njava\tB-Language\tjava\tO\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\t\n//i2cjni.java\tB-File_Name\t//i2cjni.java\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2560\tI-Code_Block\tQ_2560\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2561\tI-Code_Block\tQ_2561\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n//i2c.java\tB-File_Name\t//i2c.java\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2562\tI-Code_Block\tQ_2562\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tO\t}\tO\n\t\n//I2CBoard.java\tB-File_Name\t//I2CBoard.java\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2563\tI-Code_Block\tQ_2563\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tB-Code_Block\t}\tB-Code_Block\n\t\n-I\tO\t-I\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\nlibrary\tO\tlibrary\tO\npath\tO\tpath\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2564\tI-Code_Block\tQ_2564\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n-I\tO\t-I\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nthis\tO\tthis\tO\nfolder\tO\tfolder\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2565\tI-Code_Block\tQ_2565\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n-when\tO\t-when\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nU2C_GetDeviceCount()\tB-Library_Function\tU2C_GetDeviceCount()\tO\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2566\tI-Code_Block\tQ_2566\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23293642\tO\t23293642\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23293642/\tO\thttps://stackoverflow.com/questions/23293642/\tO\n\t\n\t\nthat\tO\tthat\tO\nlike\tO\tlike\tO\nis\tO\tis\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nyour\tO\tyour\tO\n.c\tB-File_Type\t.c\tO\nfile\tO\tfile\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nright\tO\tright\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\npost\tO\tpost\tO\nyour\tO\tyour\tO\n.c\tB-File_Type\t.c\tO\n\t\nfile\tO\tfile\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32308401\tO\t32308401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32308401/\tO\thttps://stackoverflow.com/questions/32308401/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nCoffeScript\tB-Language\tCoffeScript\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nangular\tB-Library\tangular\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nstrange\tO\tstrange\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nwebService.coffe\tB-File_Name\twebService.coffe\tO\n(\tO\t(\tO\nsimplificated\tO\tsimplificated\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3913\tI-Code_Block\tQ_3913\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nsimplificated\tO\tsimplificated\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n_Class.logout\tB-Output_Block\t_Class.logout\tB-Code_Block\nis\tI-Output_Block\tis\tI-Code_Block\nnot\tI-Output_Block\tnot\tI-Code_Block\na\tI-Output_Block\ta\tI-Code_Block\nfunction\tI-Output_Block\tfunction\tI-Code_Block\nwhen\tO\twhen\tO\nhandleResult\tB-Function_Name\thandleResult\tB-Code_Block\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n102\tB-Error_Name\t102\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n=>\tB-Code_Block\t=>\tB-Code_Block\noperator\tO\toperator\tO\nshould\tO\tshould\tO\nresolve\tO\tresolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nJavascript\tB-Language\tJavascript\tO\ncompiled\tO\tcompiled\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nwebService.coffee\tB-File_Name\twebService.coffee\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3914\tI-Code_Block\tQ_3914\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22525711\tO\t22525711\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22525711/\tO\thttps://stackoverflow.com/questions/22525711/\tO\n\t\n\t\nhi\tO\thi\tO\ni\tO\ti\tO\nam\tO\tam\tO\nretrieving\tO\tretrieving\tO\ncontacts\tO\tcontacts\tO\nfrom\tO\tfrom\tO\naddress\tO\taddress\tO\nbook\tO\tbook\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nduplicates\tO\tduplicates\tO\ntoo\tO\ttoo\tO\nfor\tO\tfor\tO\neg\tO\teg\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nare\tO\tare\tO\npresent\tO\tpresent\tO\nin\tO\tin\tO\naddress\tO\taddress\tO\nbook\tO\tbook\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nboth\tO\tboth\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nproperty\tO\tproperty\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\ndifferent\tO\tdifferent\tO\nfor\tO\tfor\tO\nsame\tO\tsame\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2465\tI-Code_Block\tQ_2465\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthe\tO\tthe\tO\narrayContactsFromAddressbook\tB-Variable_Name\tarrayContactsFromAddressbook\tB-Code_Block\ncontains\tO\tcontains\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncontacts\tO\tcontacts\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\naddress\tO\taddress\tO\nbook\tO\tbook\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\nremove\tO\tremove\tO\nduplicates\tO\tduplicates\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nphone\tO\tphone\tO\nnumber\tO\tnumber\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32202478\tO\t32202478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32202478/\tO\thttps://stackoverflow.com/questions/32202478/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nstrange\tO\tstrange\tO\neffect\tO\teffect\tO\nwhen\tO\twhen\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nschemaLocation\tB-Library_Variable\tschemaLocation\tB-Code_Block\nto\tO\tto\tO\nmy\tO\tmy\tO\nxml-file\tB-File_Type\txml-file\tO\n.\tO\t.\tO\n\t\nProblem\tO\tProblem\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nstill\tO\tstill\tO\nget\tO\tget\tO\ndisplayed\tO\tdisplayed\tO\nand\tO\tand\tO\ntransformed\tO\ttransformed\tO\ncorrectly\tO\tcorrectly\tO\nafter\tO\tafter\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nxsd-File\tB-File_Type\txsd-File\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nschemaLocation\tB-Library_Variable\tschemaLocation\tO\n?\tO\t?\tO\n\t\nInfo\tO\tInfo\tO\n:\tO\t:\tO\nAll\tO\tAll\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfolder\tO\tfolder\tO\n\t\nXML\tB-File_Type\tXML\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3899\tI-Code_Block\tQ_3899\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nXSD\tB-File_Type\tXSD\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3900\tI-Code_Block\tQ_3900\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nXSLT\tB-File_Type\tXSLT\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3901\tI-Code_Block\tQ_3901\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nfiles\tO\tfiles\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32202478\tO\t32202478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32202478/\tO\thttps://stackoverflow.com/questions/32202478/\tO\n\t\n\t\nThe\tO\tThe\tO\nschemaLocation\tB-Library_Variable\tschemaLocation\tB-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatter\tO\tmatter\tO\nbut\tO\tbut\tO\nyour\tO\tyour\tO\ninput\tO\tinput\tO\nsample\tO\tsample\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nnamespace\tO\tnamespace\tO\ndeclaration\tO\tdeclaration\tO\nxmlns\tB-Code_Block\txmlns\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nhttp://www.w3schools.com\tI-Code_Block\thttp://www.w3schools.com\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nelement\tO\telement\tO\nwhich\tO\twhich\tO\nputs\tO\tputs\tO\nall\tO\tall\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nnamespace\tO\tnamespace\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nXSLT\tB-Language\tXSLT\tO\nhowever\tO\thowever\tO\nuses\tO\tuses\tO\npaths\tO\tpaths\tO\nlike\tO\tlike\tO\nschool/personen/person\tB-File_Name\tschool/personen/person\tB-Code_Block\nwhich\tO\twhich\tO\n(\tO\t(\tO\nin\tO\tin\tO\nXSLT/XPath\tB-Language\tXSLT/XPath\tO\n1.0\tB-Version\t1.0\tO\n)\tO\t)\tO\nselect\tO\tselect\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nno\tO\tno\tO\nnamespace\tO\tnamespace\tO\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nmove\tO\tmove\tO\nto\tO\tto\tO\nan\tO\tan\tO\nXSLT\tB-Language\tXSLT\tO\n2.0\tB-Version\t2.0\tO\nprocessor\tO\tprocessor\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\ndefine\tO\tdefine\tO\nxpath-default-namespace\tB-Code_Block\txpath-default-namespace\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nhttp://www.w3schools.com\tI-Code_Block\thttp://www.w3schools.com\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\non\tO\ton\tO\nyour\tO\tyour\tO\nstylesheet\tO\tstylesheet\tO\nor\tO\tor\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nXSLT\tB-Language\tXSLT\tO\n1.0\tB-Version\t1.0\tO\n,\tO\t,\tO\ndeclare\tO\tdeclare\tO\nxmlns:df\tB-Code_Block\txmlns:df\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nhttp://www.w3schools.com\tI-Code_Block\thttp://www.w3schools.com\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\nstylesheet\tO\tstylesheet\tO\nand\tO\tand\tO\nadapt\tO\tadapt\tO\nyour\tO\tyour\tO\npaths\tO\tpaths\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nprefix\tO\tprefix\tO\nas\tO\tas\tO\nin\tO\tin\tO\ndf:school/df:personen/df:person\tB-Code_Block\tdf:school/df:personen/df:person\tB-Code_Block\nand\tO\tand\tO\ndf:name\tB-Code_Block\tdf:name\tB-Code_Block\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14091079\tO\t14091079\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14091079/\tO\thttps://stackoverflow.com/questions/14091079/\tO\n\t\n\t\nWhere\tO\tWhere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nheader\tO\theader\tO\nand\tO\tand\tO\nbody\tO\tbody\tO\nin\tO\tin\tO\na\tO\ta\tO\nstream\tO\tstream\tO\ndefinition\tO\tdefinition\tO\nis\tO\tis\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\na\tO\ta\tO\nWSO2\tB-Application\tWSO2\tO\nBAM\tI-Application\tBAM\tO\nmediator\tI-Application\tmediator\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nPayload\tO\tPayload\tO\nData\tO\tData\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\ncan\tO\tcan\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\nchanged\tO\tchanged\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14091079\tO\t14091079\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14091079/\tO\thttps://stackoverflow.com/questions/14091079/\tO\n\t\n\t\nIn\tO\tIn\tO\nBAM\tB-Application\tBAM\tO\nmediator\tI-Application\tmediator\tO\n,\tO\t,\tO\nmessage\tO\tmessage\tO\nbody\tO\tbody\tO\nor\tO\tor\tO\nheader\tO\theader\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\ndeclared\tO\tdeclared\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nPayload\tO\tPayload\tO\nData\tO\tData\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41137032\tO\t41137032\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41137032/\tO\thttps://stackoverflow.com/questions/41137032/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nsetting\tO\tsetting\tO\nheader\tB-User_Interface_Element\theader\tO\nfor\tO\tfor\tO\nAngular\tB-Library\tAngular\tO\n2\tB-Version\t2\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5214\tI-Code_Block\tQ_5214\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nit\tO\tit\tO\ngives\tO\tgives\tO\nerror\tO\terror\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41137032\tO\t41137032\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41137032/\tO\thttps://stackoverflow.com/questions/41137032/\tO\n\t\n\t\nWithout\tO\tWithout\tO\nyou\tO\tyou\tO\nposting\tO\tposting\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\njust\tO\tjust\tO\nguess\tO\tguess\tO\nwork\tO\twork\tO\nas\tO\tas\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\ngoing\tO\tgoing\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nprobably\tO\tprobably\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nsuper()\tB-Library_Function\tsuper()\tB-Code_Block\ncall\tO\tcall\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nconstructor\tO\tconstructor\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\npoint\tO\tpoint\tO\nof\tO\tof\tO\ninterest\tO\tinterest\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nalmost\tO\talmost\tO\nsame\tO\tsame\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nbesides\tO\tbesides\tO\nthe\tO\tthe\tO\ncapital\tO\tcapital\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ncommon\tO\tcommon\tO\npractice\tO\tpractice\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nclass\tO\tclass\tO\nname\tO\tname\tO\nin\tO\tin\tO\nPascalCase\tO\tPascalCase\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5890\tI-Code_Block\tA_5890\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAfter\tO\tAfter\tO\nyou\tO\tyou\tO\nposted\tO\tposted\tO\nyour\tO\tyour\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nobvious\tO\tobvious\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nBefore\tO\tBefore\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nheaders\tO\theaders\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nopen\tB-Library_Function\topen\tB-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5891\tI-Code_Block\tA_5891\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAfter\tO\tAfter\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nset\tO\tset\tO\nyour\tO\tyour\tO\nrequest\tO\trequest\tO\nheaders\tO\theaders\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33830551\tO\t33830551\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33830551/\tO\thttps://stackoverflow.com/questions/33830551/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nprogramming\tO\tprogramming\tO\nand\tO\tand\tO\ntoday\tO\ttoday\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhere\tO\there\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexercise\tO\texercise\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nexercise\tO\texercise\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\nvarious\tO\tvarious\tO\nsmall\tO\tsmall\tO\nparts\tO\tparts\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\nDefine\tO\tDefine\tO\na\tO\ta\tO\nstruct\tB-Data_Structure\tstruct\tO\ncalled\tO\tcalled\tO\nPoint\tB-Class_Name\tPoint\tO\nwith\tO\twith\tO\ntwo\tO\ttwo\tO\nx\tB-Variable_Name\tx\tO\nand\tO\tand\tO\ny\tB-Variable_Name\ty\tO\ncoordinates\tO\tcoordinates\tO\n(\tO\t(\tO\ndouble\tB-Data_Type\tdouble\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\n2)\tO\t2)\tO\nPrompt\tO\tPrompt\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nenter\tO\tenter\tO\n7\tO\t7\tO\n(\tO\t(\tO\nx\tO\tx\tO\n,\tO\t,\tO\ny\tO\ty\tO\n)\tO\t)\tO\npairs\tO\tpairs\tO\n.\tO\t.\tO\n\t\n3)\tO\t3)\tO\nAs\tO\tAs\tO\nwe\tO\twe\tO\nread\tO\tread\tO\nthose\tO\tthose\tO\npairs\tO\tpairs\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\na\tO\ta\tO\nvector\tB-Data_Type\tvector\tO\nof\tO\tof\tO\nPoints\tB-Class_Name\tPoints\tO\ncalled\tO\tcalled\tO\noriginal_points\tB-Variable_Name\toriginal_points\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nattempt\tO\tattempt\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4129\tI-Code_Block\tQ_4129\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nformat\tO\tformat\tO\nerror\tO\terror\tO\noccurs\tO\toccurs\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrecover\tO\trecover\tO\nby\tO\tby\tO\nskipping\tO\tskipping\tO\nevery\tO\tevery\tO\ncharacter\tO\tcharacter\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nreaches\tO\treaches\tO\na\tO\ta\tO\n'\tO\t'\tO\n(\tO\t(\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nenter\tO\tenter\tO\na\tO\ta\tO\nwrong\tO\twrong\tO\ninput\tO\tinput\tO\nformat\tO\tformat\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n:\tO\t:\tO\n9\tB-Value\t9\tO\n,\tI-Value\t,\tO\n99\tI-Value\t99\tO\n)\tI-Value\t)\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\npush_back()\tB-Library_Function\tpush_back()\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncorrect\tO\tcorrect\tO\nreading\tO\treading\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\noccurred\tO\toccurred\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ninput\tO\tinput\tO\nsuch\tO\tsuch\tO\ndata\tO\tdata\tO\n:\tO\t:\tO\n\t\n(\tB-Value\t(\tO\n1\tI-Value\t1\tO\n,\tI-Value\t,\tO\n2)\tI-Value\t2)\tO\n\t\n9\tB-Value\t9\tO\n,\tI-Value\t,\tO\n99\tI-Value\t99\tO\n)\tI-Value\t)\tO\n\t\n(\tB-Value\t(\tO\n5\tI-Value\t5\tO\n,\tI-Value\t,\tO\n6\tI-Value\t6\tO\n)\tI-Value\t)\tO\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nthree\tO\tthree\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nvector\tO\tvector\tO\n:\tO\t:\tO\n(\tB-Value\t(\tO\n1\tI-Value\t1\tO\n,\tI-Value\t,\tO\n2)\tI-Value\t2)\tO\n,\tO\t,\tO\n(\tB-Value\t(\tO\n1\tI-Value\t1\tO\n,\tI-Value\t,\tO\n2)\tI-Value\t2)\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nand\tO\tand\tO\n(\tB-Value\t(\tO\n5\tI-Value\t5\tO\n,\tI-Value\t,\tO\n6\tI-Value\t6\tO\n)\tI-Value\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nget\tO\tget\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nafter\tO\tafter\tO\nevery\tO\tevery\tO\ncondition\tO\tcondition\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nP\tB-Variable_Name\tP\tO\nremains\tO\tremains\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nPoint\tB-Class_Name\tPoint\tO\nobject\tO\tobject\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\niteration\tO\titeration\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nplease\tO\tplease\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\noccurring\tO\toccurring\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33830551\tO\t33830551\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33830551/\tO\thttps://stackoverflow.com/questions/33830551/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmultiple\tO\tmultiple\tO\nthings\tO\tthings\tO\nhere\tO\there\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nok\tO\tok\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ninitialize\tO\tinitialize\tO\nthe\tO\tthe\tO\nPoint\tB-Class_Name\tPoint\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nsome\tO\tsome\tO\nrandom\tO\trandom\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrandom\tO\trandom\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nso\tO\tso\tO\nrandom\tO\trandom\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nallocation\tO\tallocation\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\noperator>>(...)\tB-Code_Block\toperator>>(...)\tO\nhere\tO\there\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nreturn\tO\treturn\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nchar\tB-Data_Type\tchar\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\n'\tB-Value\t'\tO\n(\tB-Value\t(\tO\n'\tB-Value\t'\tO\n\t\nso\tO\tso\tO\nyou\tO\tyou\tO\njump\tO\tjump\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthere\tO\tthere\tO\nwithout\tO\twithout\tO\nsetting\tO\tsetting\tO\np.x\tB-Variable_Name\tp.x\tO\nand\tO\tand\tO\np.y\tB-Variable_Name\tp.y\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfunction\tO\tfunction\tO\nskip_to_character(...)\tB-Function_Name\tskip_to_character(...)\tO\nis\tO\tis\tO\nanother\tO\tanother\tO\nthing\tO\tthing\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nok\tO\tok\tO\n,\tO\t,\tO\nbesides\tO\tbesides\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nread\tO\tread\tO\nand\tO\tand\tO\na\tO\ta\tO\nreally\tO\treally\tO\nbad\tO\tbad\tO\nway\tO\tway\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfor\tB-Code_Block\tfor\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\na\tO\ta\tO\n'\tB-Value\t'\tO\nC\tI-Value\tC\tO\n'\tB-Value\t'\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nenter\tO\tenter\tO\n\"\tB-Value\t\"\tO\n9\tI-Value\t9\tO\n,\tI-Value\t,\tO\n99\tI-Value\t99\tO\n)\tI-Value\t)\tO\n\"\tB-Value\t\"\tO\nso\tO\tso\tO\ni\tO\ti\tO\nguess\tO\tguess\tO\nhere\tO\there\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n\"\tB-Value\t\"\tO\nNo\tI-Value\tNo\tO\ninput\tI-Value\tinput\tO\n\"\tI-Value\t\"\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nnow\tO\tnow\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfor\tB-Code_Block\tfor\tO\nloop\tO\tloop\tO\nin\tO\tin\tO\nyou\tO\tyou\tO\nmain\tO\tmain\tO\n:\tO\t:\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nhappens\tO\thappens\tO\n:\tO\t:\tO\n\t\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nPoint\tB-Class_Name\tPoint\tO\np\tB-Variable_Name\tp\tO\nwithout\tO\twithout\tO\ninitializing\tO\tinitializing\tO\nit\tO\tit\tO\n\t\nyour\tO\tyour\tO\nread\tO\tread\tO\ngarbage\tO\tgarbage\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nand\tO\tand\tO\np\tB-Variable_Name\tp\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\n\t\nyou\tO\tyou\tO\nskip\tO\tskip\tO\ngarbage\tO\tgarbage\tO\n\t\nyou\tO\tyou\tO\npush\tO\tpush\tO\nyour\tO\tyour\tO\nuninitialized\tO\tuninitialized\tO\nPoint\tB-Class_Name\tPoint\tO\np\tB-Variable_Name\tp\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nvector\tB-Data_Type\tvector\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nbelieve\tO\tbelieve\tO\nme\tO\tme\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\np\tB-Variable_Name\tp\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\ninitialize\tO\tinitialize\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n0\tB-Value\t0\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\nand\tO\tand\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4839\tI-Code_Block\tA_4839\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7410733\tO\t7410733\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7410733/\tO\thttps://stackoverflow.com/questions/7410733/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nprocess\tO\tprocess\tO\nthat\tO\tthat\tO\nloads\tO\tloads\tO\na\tO\ta\tO\ndynamic\tO\tdynamic\tO\nlibrary\tO\tlibrary\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\n(\tO\t(\tO\ndlopen/dlsym\tB-Library_Function\tdlopen/dlsym\tO\netc\tO\tetc\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\n\t\nsend\tO\tsend\tO\nsome\tO\tsome\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nit\tO\tit\tO\nwhile\tO\twhile\tO\nit\tO\tit\tO\n's\tO\t's\tO\nrunning\tO\trunning\tO\nto\tO\tto\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nunload\tO\tunload\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\n.so(dlclose)\tB-File_Type\t.so(dlclose)\tO\nand\tO\tand\tO\nload\tO\tload\tO\n\t\na\tO\ta\tO\nnew\tO\tnew\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nbecomes\tO\tbecomes\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntransfer\tO\ttransfer\tO\na\tO\ta\tO\nnew\tO\tnew\tO\n.so\tB-File_Type\t.so\tO\nusing\tO\tusing\tO\nnc\tB-Code_Block\tnc\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_581\tI-Code_Block\tQ_581\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ngive\tO\tgive\tO\nnc\tB-Code_Block\tnc\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfilename\tO\tfilename\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nloaded\tO\tloaded\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ngot\tO\tgot\tO\nsegv\tB-Error_Name\tsegv\tO\n\t\nimmediately\tO\timmediately\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncommand\tO\tcommand\tO\nbeing\tO\tbeing\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\ncase\tO\tcase\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\nprocess\tO\tprocess\tO\ncrash\tO\tcrash\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\npackage\tO\tpackage\tO\nthe\tO\tthe\tO\n.so\tB-File_Type\t.so\tO\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nrpm\tB-Application\trpm\tO\npackage\tO\tpackage\tO\nand\tO\tand\tO\n\t\nthe\tO\tthe\tO\n.so\tB-File_Type\t.so\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrpm\tB-Application\trpm\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyum\tB-Application\tyum\tO\nupdate\tO\tupdate\tO\nXXX\tB-Value\tXXX\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ncrash\tO\tcrash\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ntold\tO\ttold\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\n.so\tB-File_Type\t.so\tO\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nmemory\tO\tmemory\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfailed\tO\tfailed\tO\n\t\nto\tO\tto\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nresource\tO\tresource\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nthoughts\tO\tthoughts\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nthankful\tO\tthankful\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37045331\tO\t37045331\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37045331/\tO\thttps://stackoverflow.com/questions/37045331/\tO\n\t\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nimport\tO\timport\tO\na\tO\ta\tO\nfile\tO\tfile\tO\noutside\tO\toutside\tO\nwebpack\tB-Application\twebpack\tO\nroot\tB-File_Name\troot\tO\ndirectory\tO\tdirectory\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4597\tI-Code_Block\tQ_4597\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4598\tI-Code_Block\tQ_4598\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\nmain.js\tB-File_Name\tmain.js\tB-Code_Block\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimport\tB-Code_Block\timport\tB-Code_Block\nShared\tI-Code_Block\tShared\tI-Code_Block\nfrom\tI-Code_Block\tfrom\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n../shared/index\tI-Code_Block\t../shared/index\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthis\tO\tthis\tO\nshared\tO\tshared\tO\ndirectory\tO\tdirectory\tO\nin\tO\tin\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nloaders\tO\tloaders\tO\nbut\tO\tbut\tO\nstill\tO\tstill\tO\nno\tO\tno\tO\nluck\tO\tluck\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4599\tI-Code_Block\tQ_4599\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37045331\tO\t37045331\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37045331/\tO\thttps://stackoverflow.com/questions/37045331/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\n\"\tO\t\"\tO\ntransform-runtime\tB-Application\ttransform-runtime\tO\n\"\tO\t\"\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5494\tI-Code_Block\tA_5494\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27025944\tO\t27025944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27025944/\tO\thttps://stackoverflow.com/questions/27025944/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n14\tO\t14\tO\ndays\tO\tdays\tO\naverage\tO\taverage\tO\nCol\tB-Variable_Name\tCol\tO\n1\tI-Variable_Name\t1\tO\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nCol\tB-Variable_Name\tCol\tO\n2\tI-Variable_Name\t2\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nCol\tB-Variable_Name\tCol\tO\n2\tI-Variable_Name\t2\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\n18.2\tB-Value\t18.2\tO\n%\tI-Value\t%\tO\naverage\tO\taverage\tO\npercentage\tO\tpercentage\tO\nwith\tO\twith\tO\nCol\tB-Variable_Name\tCol\tO\n1\tI-Variable_Name\t1\tO\ndata\tO\tdata\tO\nbetween\tO\tbetween\tO\n10/29\tB-Value\t10/29\tO\nand\tO\tand\tO\n11/15\tB-Value\t11/15\tO\ndate\tO\tdate\tO\nrange\tO\trange\tO\non\tO\ton\tO\ncolumn\tB-Data_Structure\tcolumn\tO\ntoday\tB-Value\ttoday\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nso\tO\tso\tO\nconfused\tO\tconfused\tO\nas\tO\tas\tO\nto\tO\tto\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ngroup\tO\tgroup\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nan\tO\tan\tO\nupdate\tB-Code_Block\tupdate\tO\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nAnyone\tO\tAnyone\tO\nhas\tO\thas\tO\na\tO\ta\tO\nclue\tO\tclue\tO\n?\tO\t?\tO\n\t\nTABLE\tB-Variable_Name\tTABLE\tO\n1\tI-Variable_Name\t1\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3096\tI-Code_Block\tQ_3096\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27025944\tO\t27025944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27025944/\tO\thttps://stackoverflow.com/questions/27025944/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nrecommended\tO\trecommended\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\naverage\tO\taverage\tO\nvalue\tO\tvalue\tO\nas\tO\tas\tO\ndecimal\tB-Data_Type\tdecimal\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nvarchar\tB-Data_Type\tvarchar\tO\n,\tO\t,\tO\nas\tO\tas\tO\n%\tB-Code_Block\t%\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nadded\tO\tadded\tO\nin\tO\tin\tO\npresentation\tO\tpresentation\tO\nlayer\tO\tlayer\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\ncalculation\tO\tcalculation\tO\n,\tO\t,\tO\nsubstring\tO\tsubstring\tO\nand\tO\tand\tO\ncast\tO\tcast\tO\nwas\tO\twas\tO\nneeded\tO\tneeded\tO\nas\tO\tas\tO\naverage\tO\taverage\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nis\tO\tis\tO\nvarchar\tB-Data_Type\tvarchar\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nremoved\tO\tremoved\tO\nsubstring\tO\tsubstring\tO\nlogic\tO\tlogic\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nfloat\tB-Data_Type\tfloat\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n,\tO\t,\tO\nas\tO\tas\tO\nper\tO\tper\tO\nOP\tO\tOP\tO\ncomments\tO\tcomments\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3736\tI-Code_Block\tA_3736\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nAs\tO\tAs\tO\nthis\tO\tthis\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\ndate\tB-Data_Type\tdate\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nusing\tO\tusing\tO\ncursor\tB-Code_Block\tcursor\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3737\tI-Code_Block\tA_3737\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32387357\tO\t32387357\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32387357/\tO\thttps://stackoverflow.com/questions/32387357/\tO\n\t\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nmade\tO\tmade\tO\nSwipe\tO\tSwipe\tO\naction\tO\taction\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nbrowsed\tO\tbrowsed\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ndays\tO\tdays\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nmany\tO\tmany\tO\nsimilar\tO\tsimilar\tO\nquestions\tO\tquestions\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nworking\tO\tworking\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nTouchAction\tB-Library_Class\tTouchAction\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nAppium\tB-Application\tAppium\tO\nVersion\tB-Version\tVersion\tO\n1.4.13\tI-Version\t1.4.13\tO\n(\tO\t(\tO\nDraco\tO\tDraco\tO\n)\tO\t)\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nJava\tB-Language\tJava\tO\n,\tO\t,\tO\nTestNG\tB-Library\tTestNG\tO\nframework\tO\tframework\tO\n.\tO\t.\tO\n\t\nbtw\tO\tbtw\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nscrolling\tO\tscrolling\tO\nwork\tO\twork\tO\nusing\tO\tusing\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlogic\tO\tlogic\tO\nas\tO\tas\tO\na\tO\ta\tO\npull\tO\tpull\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\n)\tO\t)\tO\nhere\tO\there\tO\nis\tO\tis\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3924\tI-Code_Block\tQ_3924\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32387357\tO\t32387357\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32387357/\tO\thttps://stackoverflow.com/questions/32387357/\tO\n\t\n\t\n//Method\tO\t//Method\tO\nnames\tO\tnames\tO\nexplain\tO\texplain\tO\nthemselves\tO\tthemselves\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4632\tI-Code_Block\tA_4632\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32387357\tO\t32387357\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32387357/\tO\thttps://stackoverflow.com/questions/32387357/\tO\n\t\n\t\ndriver.swipe(startingXCoordinate,StartingYCoordinate,EndXCoordinate,EndYCoordinate,timeForSwipe)\tB-Library_Function\tdriver.swipe(startingXCoordinate,StartingYCoordinate,EndXCoordinate,EndYCoordinate,timeForSwipe)\tO\n;\tI-Library_Function\t;\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4782\tI-Code_Block\tA_4782\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhere\tO\there\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nswipe\tO\tswipe\tO\nfrom\tO\tfrom\tO\n100th\tO\t100th\tO\nX\tB-Variable_Name\tX\tO\ncoordinate\tO\tcoordinate\tO\nto\tO\tto\tO\n450th\tO\t450th\tO\nX\tB-Variable_Name\tX\tO\ncoordinate.that\tO\tcoordinate.that\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nY\tB-Variable_Name\tY\tO\ncoordinates\tO\tcoordinates\tO\nare\tO\tare\tO\nsame\tO\tsame\tO\nfor\tO\tfor\tO\nstarting\tO\tstarting\tO\nand\tO\tand\tO\nending\tO\tending\tO\npoints\tO\tpoints\tO\n(\tO\t(\tO\n200\tO\t200\tO\nand\tO\tand\tO\n200\tO\t200\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlast\tO\tlast\tO\nparameter\tO\tparameter\tO\n2\tO\t2\tO\nindicates\tO\tindicates\tO\n,\tO\t,\tO\nswipe\tO\tswipe\tO\naction\tO\taction\tO\nwill\tO\twill\tO\nperforms\tO\tperforms\tO\n2\tO\t2\tO\nseconds\tO\tseconds\tO\n.\tO\t.\tO\n\t\nActually\tO\tActually\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmention\tO\tmention\tO\n2000\tO\t2000\tO\nmilliseconds\tO\tmilliseconds\tO\nfor\tO\tfor\tO\n2\tO\t2\tO\nseconds\tO\tseconds\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12498963\tO\t12498963\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12498963/\tO\thttps://stackoverflow.com/questions/12498963/\tO\n\t\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nhttp://imgur.com/qBGvP\tO\thttp://imgur.com/qBGvP\tO\n\t\nIt\tO\tIt\tO\nalways\tO\talways\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nthe\tO\tthe\tO\nnumbers\tO\tnumbers\tO\nmight\tO\tmight\tO\ndiffer\tO\tdiffer\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\ngif\tB-File_Type\tgif\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbackground\tB-User_Interface_Element\tbackground\tO\nis\tO\tis\tO\ntransparent\tO\ttransparent\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nnumbers\tO\tnumbers\tO\nwhite\tO\twhite\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nit\tO\tit\tO\nto\tO\tto\tO\nnumbers\tO\tnumbers\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\na\tO\ta\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12498963\tO\t12498963\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12498963/\tO\thttps://stackoverflow.com/questions/12498963/\tO\n\t\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nfont\tO\tfont\tO\nis\tO\tis\tO\nmonospace\tO\tmonospace\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nis\tO\tis\tO\nconstant\tO\tconstant\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ntrivial\tO\ttrivial\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\ndown\tO\tdown\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\ninto\tO\tinto\tO\nindividual\tO\tindividual\tO\ndigits\tO\tdigits\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\noutput\tO\toutput\tO\neach\tO\teach\tO\nimage\tB-User_Interface_Element\timage\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nformat\tO\tformat\tO\n(\tO\t(\tO\nPNG\tB-File_Type\tPNG\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nbest\tO\tbest\tO\n)\tO\t)\tO\nand\tO\tand\tO\ncompare\tO\tcompare\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nbest\tO\tbest\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nscript\tO\tscript\tO\nsave\tO\tsave\tO\nknown\tO\tknown\tO\ndigits\tO\tdigits\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncompare\tO\tcompare\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\ncase\tO\tcase\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\npixel-for-pixel\tO\tpixel-for-pixel\tO\ncomparison\tO\tcomparison\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nthat\tO\tthat\tO\nbig\tO\tbig\tO\nof\tO\tof\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\non\tO\ton\tO\nsuch\tO\tsuch\tO\nsmall\tO\tsmall\tO\nimages\tB-User_Interface_Element\timages\tO\n.\tO\t.\tO\n\t\nEssentially\tO\tEssentially\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nmaking\tO\tmaking\tO\nan\tO\tan\tO\nextremely\tO\textremely\tO\nprimitive\tO\tprimitive\tO\nOCR\tO\tOCR\tO\nby\tO\tby\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nalong\tO\talong\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\ndigits\tO\tdigits\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwhat\tO\twhat\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17018962\tO\t17018962\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17018962/\tO\thttps://stackoverflow.com/questions/17018962/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsituation\tO\tsituation\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\ntables\tB-Data_Structure\ttables\tO\n'\tO\t'\tO\nusers\tB-Variable_Name\tusers\tO\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\nroles\tB-Variable_Name\troles\tO\n'\tO\t'\tO\ntable\tB-Data_Structure\ttable\tO\nwhere\tO\twhere\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\neach\tO\teach\tO\nother\tO\tother\tO\nby\tO\tby\tO\nmany\tO\tmany\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\nrelationship\tO\trelationship\tO\n,\tO\t,\tO\nmany\tO\tmany\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\nrelationship\tO\trelationship\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n3rd\tO\t3rd\tO\ntable\tB-Data_Structure\ttable\tO\ncalled\tO\tcalled\tO\n'\tO\t'\tO\nUserRoles\tB-Variable_Name\tUserRoles\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\ndistinct\tO\tdistinct\tO\nusers\tO\tusers\tO\nbut\tO\tbut\tO\nshow\tO\tshow\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nroles\tO\troles\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\nuser\tO\tuser\tO\nin\tO\tin\tO\none\tO\tone\tO\nsingle\tO\tsingle\tO\nrow\tB-Data_Structure\trow\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n3\tO\t3\tO\ntables\tB-Data_Structure\ttables\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1731\tI-Code_Block\tQ_1731\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nso\tO\tso\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\ndisplays\tO\tdisplays\tO\na\tO\ta\tO\nrow\tB-Data_Structure\trow\tO\nas\tO\tas\tO\nbelow\tO\tbelow\tO\nwith\tO\twith\tO\nroles\tO\troles\tO\nseparated\tO\tseparated\tO\nwith\tO\twith\tO\nsemicolons\tO\tsemicolons\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nusers\tO\tusers\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1732\tI-Code_Block\tQ_1732\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17018962\tO\t17018962\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17018962/\tO\thttps://stackoverflow.com/questions/17018962/\tO\n\t\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nto\tO\tto\tO\nbelieve\tO\tbelieve\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nexactly\tO\texactly\tO\nand\tO\tand\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nMySQL\tB-Application\tMySQL\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2229\tI-Code_Block\tA_2229\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18395882\tO\t18395882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18395882/\tO\thttps://stackoverflow.com/questions/18395882/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\nasp.net\tB-Library\tasp.net\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nwell\tO\twell\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\npublish\tO\tpublish\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\ncomputer\tB-Device\tcomputer\tO\nto\tO\tto\tO\nlocalhost\tO\tlocalhost\tO\nit\tO\tit\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1894\tI-Code_Block\tQ_1894\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nalso\tO\talso\tO\nUncaught\tB-Output_Block\tUncaught\tB-Code_Block\nReferenceError\tI-Output_Block\tReferenceError\tI-Code_Block\n:\tI-Output_Block\t:\tI-Code_Block\nWebForm_FireDefaultButton\tI-Output_Block\tWebForm_FireDefaultButton\tI-Code_Block\nis\tI-Output_Block\tis\tI-Code_Block\nnot\tI-Output_Block\tnot\tI-Code_Block\ndefined\tI-Output_Block\tdefined\tI-Code_Block\n\t\nin\tO\tin\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nbehind\tO\tbehind\tO\ni\tO\ti\tO\nhave\tO\thave\tO\ntextbox1.Focus()\tB-Library_Function\ttextbox1.Focus()\tB-Code_Block\n\t\nso\tO\tso\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18395882\tO\t18395882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18395882/\tO\thttps://stackoverflow.com/questions/18395882/\tO\n\t\n\t\nThis\tO\tThis\tO\nhappens\tO\thappens\tO\nalso\tO\talso\tO\nwhen\tO\twhen\tO\nwebresource.axd\tB-File_Name\twebresource.axd\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\ninaccessible\tO\tinaccessible\tO\n.\tO\t.\tO\n\t\nSometimes\tO\tSometimes\tO\nFirewall\tB-Application\tFirewall\tO\npolicy\tO\tpolicy\tO\nof\tO\tof\tO\nWeb\tB-Application\tWeb\tO\nServer\tI-Application\tServer\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nensure\tO\tensure\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\naccessible\tO\taccessible\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\naccessible\tO\taccessible\tO\nthen\tO\tthen\tO\nlook\tO\tlook\tO\nsolutions\tO\tsolutions\tO\nprovided\tO\tprovided\tO\nin\tO\tin\tO\nother\tO\tother\tO\nanswers\tO\tanswers\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18395882\tO\t18395882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18395882/\tO\thttps://stackoverflow.com/questions/18395882/\tO\n\t\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\noff\tO\toff\tO\nthe\tO\tthe\tO\nISAPI\tB-File_Name\tISAPI\tO\nfilters\tI-File_Name\tfilters\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11567285\tO\t11567285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11567285/\tO\thttps://stackoverflow.com/questions/11567285/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\ntwo\tO\ttwo\tO\nbranches\tO\tbranches\tO\ntest\tB-Code_Block\ttest\tO\nand\tO\tand\tO\nmain\tB-Code_Block\tmain\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nbeing\tO\tbeing\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tB-Code_Block\tmain\tO\nbranch\tO\tbranch\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1075\tI-Code_Block\tQ_1075\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\neverything\tO\teverything\tO\nwent\tO\twent\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nwere\tO\twere\tO\nmerged\tO\tmerged\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nto\tO\tto\tO\npush\tB-Code_Block\tpush\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nremote\tO\tremote\tO\nmain\tB-Code_Block\tmain\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1076\tI-Code_Block\tQ_1076\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\ndid\tO\tdid\tO\nnothing\tO\tnothing\tO\n,\tO\t,\tO\nit\tO\tit\tO\nsaid\tO\tsaid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1077\tI-Code_Block\tQ_1077\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nshowing\tO\tshowing\tO\nzero\tO\tzero\tO\nabove\tO\tabove\tO\nas\tO\tas\tO\nTotal\tO\tTotal\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\npush\tB-Code_Block\tpush\tO\ndid\tO\tdid\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\npush\tO\tpush\tO\nmy\tO\tmy\tO\nmain\tB-Code_Block\tmain\tO\nbranch\tO\tbranch\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11567285\tO\t11567285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11567285/\tO\thttps://stackoverflow.com/questions/11567285/\tO\n\t\n\t\nThat\tO\tThat\tO\njust\tO\tjust\tO\nmeans\tO\tmeans\tO\ngit\tB-Application\tgit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwrite\tO\twrite\tO\nany\tO\tany\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nhappens\tO\thappens\tO\nwhen\tO\twhen\tO\nall\tO\tall\tO\nobjects\tO\tobjects\tO\nare\tO\tare\tO\nalready\tO\talready\tO\non\tO\ton\tO\nremote\tO\tremote\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nmerge\tO\tmerge\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nmove\tO\tmove\tO\nlabel\tO\tlabel\tO\n'\tO\t'\tO\nmain\tB-Code_Block\tmain\tO\n'\tO\t'\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\ncommit\tB-Code_Block\tcommit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nquick\tO\tquick\tO\ntest\tO\ttest\tO\nto\tO\tto\tO\nprove\tO\tprove\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1498\tI-Code_Block\tA_1498\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20985289\tO\t20985289\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20985289/\tO\thttps://stackoverflow.com/questions/20985289/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nimplemented\tO\timplemented\tO\nthe\tO\tthe\tO\njQuery\tB-Library\tjQuery\tO\nUI\tB-Library_Class\tUI\tO\nMenu\tI-Library_Class\tMenu\tO\non\tO\ton\tO\nthis\tO\tthis\tO\npage\tO\tpage\tO\n:\tO\t:\tO\nhttp://dormfair.com/about.php\tO\thttp://dormfair.com/about.php\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nborder\tB-User_Interface_Element\tborder\tO\ncolor\tO\tcolor\tO\neverywhere\tO\teverywhere\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\nis\tO\tis\tO\nlight\tO\tlight\tO\nblue\tO\tblue\tO\n(\tO\t(\tO\n#B7DDF2\tO\t#B7DDF2\tO\n)\tO\t)\tO\n\t\nBUT\tO\tBUT\tO\nthe\tO\tthe\tO\nborder\tB-User_Interface_Element\tborder\tO\ncolor\tO\tcolor\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\njQuery\tB-Library\tjQuery\tO\nUI\tB-Library_Class\tUI\tO\nmenu\tI-Library_Class\tmenu\tO\nis\tO\tis\tO\ngrey\tB-Value\tgrey\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthat\tO\tthat\tO\ngrey\tO\tgrey\tO\nto\tO\tto\tO\ncolor\tO\tcolor\tO\nto\tO\tto\tO\n#B7DDF2\tO\t#B7DDF2\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nlong\tO\tlong\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nno\tO\tno\tO\navail\tO\tavail\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nsearched\tO\tsearched\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nand\tO\tand\tO\nStackOverflow\tB-Website\tStackOverflow\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2233\tI-Code_Block\tQ_2233\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20985289\tO\t20985289\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20985289/\tO\thttps://stackoverflow.com/questions/20985289/\tO\n\t\n\t\nYour\tO\tYour\tO\nmenu\tB-User_Interface_Element\tmenu\tO\n's\tO\t's\tO\nborder\tB-User_Interface_Element\tborder\tO\ncolor\tO\tcolor\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\n.ui-widget-content\tB-Library_Class\t.ui-widget-content\tO\nclass\tO\tclass\tO\non\tO\ton\tO\nline\tO\tline\tO\n800\tO\t800\tO\nin\tO\tin\tO\njquery-ui.css\tB-File_Name\tjquery-ui.css\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmodify\tO\tmodify\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20985289\tO\t20985289\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20985289/\tO\thttps://stackoverflow.com/questions/20985289/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nborder\tB-Code_Block\tborder\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\n1px\tI-Code_Block\t1px\tI-Code_Block\nsolid\tI-Code_Block\tsolid\tI-Code_Block\n#B7DDF2\tI-Code_Block\t#B7DDF2\tI-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nCSS\tB-Language\tCSS\tO\nof\tO\tof\tO\nnav\tB-Code_Block\tnav\tB-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\n.ui-menu\tB-Code_Block\t.ui-menu\tO\nui-widget\tI-Code_Block\tui-widget\tO\nui-widget-content\tI-Code_Block\tui-widget-content\tO\nui-corner-all\tI-Code_Block\tui-corner-all\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\n(\tO\t(\tO\nCSS\tB-Language\tCSS\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2811\tI-Code_Block\tA_2811\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2812\tI-Code_Block\tA_2812\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13659160\tO\t13659160\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13659160/\tO\thttps://stackoverflow.com/questions/13659160/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndate\tO\tdate\tO\ninput\tO\tinput\tO\nbox\tB-User_Interface_Element\tbox\tO\nwith\tO\twith\tO\na\tO\ta\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\ncalendar\tI-User_Interface_Element\tcalendar\tO\ndate\tI-User_Interface_Element\tdate\tO\nselector\tI-User_Interface_Element\tselector\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nbox\tB-User_Interface_Element\tbox\tO\nthe\tO\tthe\tO\npopup\tB-User_Interface_Element\tpopup\tO\ncalendar\tI-User_Interface_Element\tcalendar\tO\nappears\tO\tappears\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\neither\tO\teither\tO\n\t\nSelect\tO\tSelect\tO\na\tO\ta\tO\ndate\tO\tdate\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndate\tO\tdate\tO\nappears\tO\tappears\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nbox\tB-User_Interface_Element\tbox\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncalendar\tB-User_Interface_Element\tcalendar\tO\nappears\tO\tappears\tO\n\t\nClick\tO\tClick\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\ncalendar\tB-User_Interface_Element\tcalendar\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncalendar\tB-User_Interface_Element\tcalendar\tO\ndisappears\tO\tdisappears\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nvia\tO\tvia\tO\na\tO\ta\tO\nmouseup\tB-Library_Class\tmouseup\tO\nevent\tI-Library_Class\tevent\tO\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nwhat\tO\twhat\tO\nwas\tO\twas\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nType\tO\tType\tO\na\tO\ta\tO\ndate\tO\tdate\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nbox\tB-User_Interface_Element\tbox\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n:\tO\t:\tO\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\na\tO\ta\tO\ndate\tO\tdate\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nbox\tB-User_Interface_Element\tbox\tO\nand\tO\tand\tO\ntab\tB-User_Interface_Element\ttab\tO\naway\tO\taway\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ncalendar\tB-User_Interface_Element\tcalendar\tO\nto\tO\tto\tO\ndisappear\tO\tdisappear\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nan\tO\tan\tO\nonBlur\tB-Library_Class\tonBlur\tO\nevent\tI-Library_Class\tevent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nbox\tB-User_Interface_Element\tbox\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nevent\tB-Library_Class\tevent\tO\nmade\tO\tmade\tO\nthe\tO\tthe\tO\ncalendar\tB-User_Interface_Element\tcalendar\tO\ngo\tO\tgo\tO\naway\tO\taway\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncalendar\tB-User_Interface_Element\tcalendar\tO\ndisappears\tO\tdisappears\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\ncalendar\tB-User_Interface_Element\tcalendar\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ndate\tO\tdate\tO\nbox\tB-User_Interface_Element\tbox\tO\nonBlur\tB-Library_Class\tonBlur\tO\nevent\tI-Library_Class\tevent\tO\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\ncalendar\tB-User_Interface_Element\tcalendar\tO\nwas\tO\twas\tO\nclicked/has\tO\tclicked/has\tO\nfocus\tO\tfocus\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\naltogether\tO\taltogether\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\ncalendar\tB-User_Interface_Element\tcalendar\tO\nhas\tO\thas\tO\nfocus\tO\tfocus\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\njquery\tB-Library\tjquery\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1304\tI-Code_Block\tQ_1304\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ndid\tO\tdid\tO\nnothing\tO\tnothing\tO\nuseful\tO\tuseful\tO\n.\tO\t.\tO\n\t\nNormally\tO\tNormally\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nonCLick\tB-Library_Class\tonCLick\tO\nevent\tI-Library_Class\tevent\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nwas\tO\twas\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nneed\tO\tneed\tO\nan\tO\tan\tO\nOnClick\tB-Library_Class\tOnClick\tO\nand\tO\tand\tO\nan\tO\tan\tO\nOnBlur\tB-Library_Class\tOnBlur\tO\nevent\tI-Library_Class\tevent\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nOnBlur\tB-Library_Class\tOnBlur\tO\nevent\tI-Library_Class\tevent\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nonClick\tB-Library_Class\tonClick\tO\nevent\tI-Library_Class\tevent\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\nwhat\tO\twhat\tO\ngets\tO\tgets\tO\ncalled\tO\tcalled\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nChrome\tB-Application\tChrome\tO\nand\tO\tand\tO\nIE\tB-Application\tIE\tO\nJS\tB-Language\tJS\tO\ndebuggers\tO\tdebuggers\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nadding\tO\tadding\tO\nbreakpoints\tO\tbreakpoints\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nwhat\tO\twhat\tO\nfunctions\tO\tfunctions\tO\nare\tO\tare\tO\ncalled\tO\tcalled\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmakes\tO\tmakes\tO\nno\tO\tno\tO\nsense\tO\tsense\tO\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\na\tO\ta\tO\nbreakpoint\tO\tbreakpoint\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nonBlur\tB-Library_Class\tonBlur\tO\nevent\tI-Library_Class\tevent\tO\n:\tO\t:\tO\nit\tO\tit\tO\nstops\tO\tstops\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\na\tO\ta\tO\nbreakpoint\tO\tbreakpoint\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmouseUp\tB-Library_Class\tmouseUp\tO\nevent\tI-Library_Class\tevent\tO\n:\tO\t:\tO\nit\tO\tit\tO\nstops\tO\tstops\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\na\tO\ta\tO\nbreakpoint\tO\tbreakpoint\tO\nin\tO\tin\tO\nboth\tO\tboth\tO\nevents\tB-Library_Class\tevents\tO\n:\tO\t:\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nstops\tO\tstops\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nonBlur\tB-Library_Class\tonBlur\tO\nevent\tI-Library_Class\tevent\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\ncontinue\tO\tcontinue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\nthe\tO\tthe\tO\nmouseUp\tB-Library_Class\tmouseUp\tO\nevent\tI-Library_Class\tevent\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13659160\tO\t13659160\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13659160/\tO\thttps://stackoverflow.com/questions/13659160/\tO\n\t\n\t\nhttp://jsfiddle.net/alaa13212/Gs5Y2/\tO\thttp://jsfiddle.net/alaa13212/Gs5Y2/\tO\n\t\nto\tO\tto\tO\nuse\tO\tuse\tO\nblur\tO\tblur\tB-Code_Block\nfocusout\tB-Library_Function\tfocusout\tO\nin\tO\tin\tO\njQuery\tB-Library\tjQuery\tO\n.\tO\t.\tO\n\t\nmust\tO\tmust\tO\nfocus\tO\tfocus\tO\non\tO\ton\tO\nelement\tO\telement\tO\n(\tO\t(\tO\nuse\tO\tuse\tO\ntabindex\tB-Library_Variable\ttabindex\tB-Code_Block\nattribute\tO\tattribute\tO\nfor\tO\tfor\tO\nfocusable\tO\tfocusable\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15545847\tO\t15545847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15545847/\tO\thttps://stackoverflow.com/questions/15545847/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nHTML\tB-Language\tHTML\tO\none\tO\tone\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\nembedded\tO\tembedded\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nfrom\tO\tfrom\tO\nyoutube\tB-Website\tyoutube\tO\nand\tO\tand\tO\nother\tO\tother\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\ncontact-us\tO\tcontact-us\tO\ninput\tO\tinput\tO\nform\tB-User_Interface_Element\tform\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nalso\tO\talso\tO\na\tO\ta\tO\nlink\tO\tlink\tO\n\"\tO\t\"\tO\nContact\tO\tContact\tO\nUs\tO\tUs\tO\n\"\tO\t\"\tO\nabove\tO\tabove\tO\nthe\tO\tthe\tO\nvideo\tB-User_Interface_Element\tvideo\tO\n.\tO\t.\tO\n\t\nInitially\tO\tInitially\tO\nwhen\tO\twhen\tO\npage\tO\tpage\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nis\tO\tis\tO\ndisplayed\tO\tdisplayed\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nContact\tO\tContact\tO\nUs\tO\tUs\tO\n\"\tO\t\"\tO\nlink\tB-User_Interface_Element\tlink\tO\nthe\tO\tthe\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nshould\tO\tshould\tO\nget\tO\tget\tO\nhidden\tO\thidden\tO\nand\tO\tand\tO\ncontact-us\tO\tcontact-us\tO\ninput\tO\tinput\tO\nform\tB-User_Interface_Element\tform\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndisplayed\tO\tdisplayed\tO\nin\tO\tin\tO\nits\tO\tits\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\njQuery\tB-Library\tjQuery\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15545847\tO\t15545847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15545847/\tO\thttps://stackoverflow.com/questions/15545847/\tO\n\t\n\t\nUse\tO\tUse\tO\njQuery\tB-Library\tjQuery\tO\n's\tO\t's\tO\ntoggle()\tB-Library_Function\ttoggle()\tB-Code_Block\nor\tO\tor\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nand\tO\tand\tO\nhide\tO\thide\tO\nyour\tO\tyour\tO\n<\tB-HTML_XML_Tag\t<\tB-Code_Block\ndiv>s\tI-HTML_XML_Tag\tdiv>s\tI-Code_Block\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexample\tO\texample\tO\n(\tO\t(\tO\nhttp://jsfiddle.net/8wbXV/\tO\thttp://jsfiddle.net/8wbXV/\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2001\tI-Code_Block\tA_2001\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nselector\tO\tselector\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\n$('a')\tB-Code_Block\t$('a')\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nnormally\tO\tnormally\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nhere\tO\there\tO\njust\tO\tjust\tO\nfor\tO\tfor\tO\nillustration\tO\tillustration\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\njQuery\tB-Library\tjQuery\tO\nAPI\tI-Library\tAPI\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11149773\tO\t11149773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11149773/\tO\thttps://stackoverflow.com/questions/11149773/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\njQuery\tB-Library\tjQuery\tO\nrich\tB-Application\trich\tO\ntext\tI-Application\ttext\tO\neditor\tI-Application\teditor\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nUeditor\tB-Application\tUeditor\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nexactly\tO\texactly\tO\nas\tO\tas\tO\nshown\tO\tshown\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndemo\tO\tdemo\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nProblem\tO\tProblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\ntype\tO\ttype\tO\nmultiple\tO\tmultiple\tO\nparagraphs\tO\tparagraphs\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nflip\tO\tflip\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n\t\nI\tO\tI\tO\ntype\tO\ttype\tO\n-->\tO\t-->\tO\n\t\nLine\tO\tLine\tO\n1\tO\t1\tO\n\t\nLine\tO\tLine\tO\n2\tO\t2\tO\n\t\nOn\tO\tOn\tO\nsubmit\tO\tsubmit\tO\n-->\tO\t-->\tO\n\t\nLine\tO\tLine\tO\n2\tO\t2\tO\n\t\nLine\tO\tLine\tO\n1\tO\t1\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\nis\tO\tis\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanybody\tO\tanybody\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\njQuery\tB-Library\tjQuery\tO\ntext\tB-Application\ttext\tO\neditor\tI-Application\teditor\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\npeople\tO\tpeople\tO\nthat\tO\tthat\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nwith\tO\twith\tO\njWysiwyg\tB-Application\tjWysiwyg\tO\nText\tI-Application\tText\tO\neditor\tI-Application\teditor\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nplayed\tO\tplayed\tO\naround\tO\taround\tO\nwith\tO\twith\tO\nprobably\tO\tprobably\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\none\tO\tone\tO\nby\tO\tby\tO\nnow\tO\tnow\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nopinion\tO\topinion\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\none\tO\tone\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nrich\tB-Application\trich\tO\ntext\tI-Application\ttext\tO\neditors\tI-Application\teditors\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbox\tO\tbox\tO\ninside\tO\tinside\tO\np\tB-HTML_XML_Tag\tp\tO\ntags\tO\ttags\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nproperly\tO\tproperly\tO\nin\tO\tin\tO\nChrome\tB-Application\tChrome\tO\nand\tO\tand\tO\nsafari\tB-Application\tsafari\tO\n.\tO\t.\tO\n\t\nWeird\tO\tWeird\tO\nwish\tO\twish\tO\nI\tO\tI\tO\nknew\tO\tknew\tO\nwhy\tO\twhy\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tB-Data_Type\tQuestion_ID\tO\n:\tO\t:\tO\n4504827\tO\t4504827\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4504827/\tO\thttps://stackoverflow.com/questions/4504827/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\njust\tO\tjust\tO\ngetting\tO\tgetting\tO\nto\tO\tto\tO\ngrips\tO\tgrips\tO\nwith\tO\twith\tO\nAutofac\tB-Library\tAutofac\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nquestions\tO\tquestions\tO\n:\tO\t:\tO\n\t\nGuice\tB-Library\tGuice\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nhas\tO\thas\tO\nits\tO\tits\tO\nown\tO\town\tO\nannotations/ways\tO\tannotations/ways\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\npass\tO\tpass\tO\nparameters\tO\tparameters\tO\ninto\tO\tinto\tO\nconstructors\tO\tconstructors\tO\n(\tO\t(\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nhandled\tO\thandled\tO\nby\tO\tby\tO\nGuice\tB-Library\tGuice\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nautofac\tB-Library\tautofac\tO\ndo\tO\tdo\tO\nanything\tO\tanything\tO\nsimilar\tO\tsimilar\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nin\tO\tin\tO\nth\tO\tth\tO\nclass\tO\tclass\tO\ndefinition\tO\tdefinition\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ninstantiate\tO\tinstantiate\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nclasses\tO\tclasses\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nother\tO\tother\tO\ntypes\tO\ttypes\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nsetup\tO\tsetup\tO\nthe\tO\tthe\tO\ncontainer\tB-Variable_Name\tcontainer\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\nI\tO\tI\tO\nam\tO\tam\tO\nassuming\tO\tassuming\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nstatic\tB-Data_Type\tstatic\tO\nmember\tO\tmember\tO\n?\tO\t?\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4362235\tO\t4362235\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4362235/\tO\thttps://stackoverflow.com/questions/4362235/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\ndeveloping\tO\tdeveloping\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nin\tO\tin\tO\nC#\tB-Language\tC#\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ndisplay\tO\tdisplay\tO\na\tO\ta\tO\nMessageBox\tB-Library_Class\tMessageBox\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nautomatically\tO\tautomatically\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\nmessage\tB-User_Interface_Element\tmessage\tO\nbox\tI-User_Interface_Element\tbox\tO\nafter\tO\tafter\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nseconds\tO\tseconds\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4362235\tO\t4362235\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4362235/\tO\thttps://stackoverflow.com/questions/4362235/\tO\n\t\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nWindow\tB-User_Interface_Element\tWindow\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncode-behind\tO\tcode-behind\tO\ncontaining\tO\tcontaining\tO\na\tO\ta\tO\nloaded\tO\tloaded\tO\nhandler\tO\thandler\tO\nand\tO\tand\tO\na\tO\ta\tO\ntimer\tB-Library_Class\ttimer\tO\nhandler\tO\thandler\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_458\tI-Code_Block\tA_458\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\ncustom\tO\tcustom\tO\nmessage\tB-User_Interface_Element\tmessage\tO\nbox\tI-User_Interface_Element\tbox\tO\nappear\tO\tappear\tO\nby\tO\tby\tO\ncalling\tO\tcalling\tO\nShowDialog()\tB-Library_Function\tShowDialog()\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_459\tI-Code_Block\tA_459\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4362235\tO\t4362235\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4362235/\tO\thttps://stackoverflow.com/questions/4362235/\tO\n\t\n\t\nThe\tO\tThe\tO\nSystem.Windows.MessageBox.Show()\tB-Library_Function\tSystem.Windows.MessageBox.Show()\tO\nmethod\tO\tmethod\tO\nhas\tO\thas\tO\nan\tO\tan\tO\noverload\tO\toverload\tO\nwhich\tO\twhich\tO\ntakes\tO\ttakes\tO\nan\tO\tan\tO\nowner\tO\towner\tO\nWindow\tB-User_Interface_Element\tWindow\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\ninvisible\tO\tinvisible\tO\nowner\tO\towner\tO\nWindow\tB-User_Interface_Element\tWindow\tO\nwhich\tO\twhich\tO\nwe\tO\twe\tO\nthen\tO\tthen\tO\nclose\tO\tclose\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nspecified\tO\tspecified\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nchild\tO\tchild\tO\nmessage\tB-User_Interface_Element\tmessage\tO\nbox\tI-User_Interface_Element\tbox\tO\nwould\tO\twould\tO\nclose\tO\tclose\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncomplete\tO\tcomplete\tO\nanswer\tO\tanswer\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/a/20098381/2190520\tO\thttps://stackoverflow.com/a/20098381/2190520\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26960012\tO\t26960012\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26960012/\tO\thttps://stackoverflow.com/questions/26960012/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nusing\tO\tusing\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nalready\tO\talready\tO\nand\tO\tand\tO\nit\tO\tit\tO\nnever\tO\tnever\tO\nstopped\tO\tstopped\tO\nworking\tO\tworking\tO\nafter\tO\tafter\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nlike\tO\tlike\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nexecute\tO\texecute\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tO\nmany\tO\tmany\tO\ntimes\tO\ttimes\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nafter\tO\tafter\tO\nI\tO\tI\tO\nclose\tO\tclose\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nand\tO\tand\tO\nput\tO\tput\tO\ndevice\tO\tdevice\tO\nto\tO\tto\tO\nstand\tO\tstand\tO\nstill\tO\tstill\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nminutes\tO\tminutes\tO\n,\tO\t,\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tO\nbecomes\tO\tbecomes\tO\nimpossible\tO\timpossible\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\n.\tO\t.\tO\n\t\nUsually\tO\tUsually\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nfor\tO\tfor\tO\n1-2\tO\t1-2\tO\nseconds\tO\tseconds\tO\nto\tO\tto\tO\nload\tO\tload\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nminutes\tO\tminutes\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nAsyncTask\tB-Library_Class\tAsyncTask\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3086\tI-Code_Block\tQ_3086\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOne\tO\tOne\tO\nmore\tO\tmore\tO\nthing\tO\tthing\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnoticed\tO\tnoticed\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\npress\tO\tpress\tO\nback\tB-Keyboard_IP\tback\tB-Code_Block\nor\tO\tor\tO\nhome\tB-Keyboard_IP\thome\tB-Code_Block\nbuttons\tB-User_Interface_Element\tbuttons\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ndevice\tO\tdevice\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\non\tO\ton\tO\nhome\tO\thome\tO\nscreen\tO\tscreen\tO\n,\tO\t,\tO\nin\tO\tin\tO\nLogCat\tB-Application\tLogCat\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nwarning\tO\twarning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3087\tI-Code_Block\tQ_3087\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nwarning\tO\twarning\tO\nonly\tO\tonly\tO\nappears\tO\tappears\tO\nif\tO\tif\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nclose\tO\tclose\tO\nmy\tO\tmy\tO\nconnection\tO\tconnection\tO\nbut\tO\tbut\tO\nconnection.disconnect()\tB-Library_Function\tconnection.disconnect()\tB-Code_Block\n;\tI-Library_Function\t;\tI-Code_Block\nis\tO\tis\tO\nalways\tO\talways\tO\ncalled\tO\tcalled\tO\ninside\tO\tinside\tO\nfinally\tO\tfinally\tO\nblock\tO\tblock\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncould\tO\tcould\tO\nmaybe\tO\tmaybe\tO\nbe\tO\tbe\tO\na\tO\ta\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nUPDATE1\tO\tUPDATE1\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\nafter\tO\tafter\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nminutes\tO\tminutes\tO\nI\tO\tI\tO\nreceive\tO\treceive\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nexception\tB-Library_Class\texception\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3088\tI-Code_Block\tQ_3088\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10351494\tO\t10351494\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10351494/\tO\thttps://stackoverflow.com/questions/10351494/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\non\tO\ton\tO\na\tO\ta\tO\nclick\tO\tclick\tO\nevent\tO\tevent\tO\nit\tO\tit\tO\ncalls\tO\tcalls\tO\na\tO\ta\tO\nphp\tB-Language\tphp\tO\nfunction\tO\tfunction\tO\nthrough\tO\tthrough\tO\n$.post{}\tB-Library_Function\t$.post{}\tB-Code_Block\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nalert(data)\tB-Library_Function\talert(data)\tB-Code_Block\nto\tO\tto\tO\nrecognized\tO\trecognized\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nunfortunately\tO\tunfortunately\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nallerting\tO\tallerting\tO\nanything\tO\tanything\tO\nexcept\tO\texcept\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\nan\tO\tan\tO\nerror\tO\terror\tO\non\tO\ton\tO\nfirebug\tB-Application\tfirebug\tO\nconsole\tI-Application\tconsole\tO\nwith\tO\twith\tO\nrelevant\tO\trelevant\tO\nurl\tO\turl\tO\n\"\tB-Error_Name\t\"\tB-Code_Block\nInternal\tI-Error_Name\tInternal\tI-Code_Block\nserver\tI-Error_Name\tserver\tI-Code_Block\nerror\tI-Error_Name\terror\tI-Code_Block\n500\tI-Error_Name\t500\tI-Code_Block\n\"\tI-Error_Name\t\"\tI-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthrough\tO\tthrough\tO\nbrowser\tB-Application\tbrowser\tO\npasting\tO\tpasting\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nurl\tO\turl\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nput\tO\tput\tO\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_916\tI-Code_Block\tQ_916\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n,\tO\t,\tO\nbut\tO\tbut\tO\nshows\tO\tshows\tO\na\tO\ta\tO\nblank\tO\tblank\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlost\tO\tlost\tO\nhere\tO\there\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nerrors\tO\terrors\tO\ndisplaying.\tO\tdisplaying.\tO\n.\tO\t.\tO\nHelp\tO\tHelp\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\np.s\tO\tp.s\tO\nin\tO\tin\tO\nphp\tB-Language\tphp\tO\ninfo\tO\tinfo\tO\nerror\tO\terror\tO\nreporting\tO\treporting\tO\nis\tO\tis\tO\noff\tO\toff\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\ntried\tO\ttried\tO\nhtaccess\tB-File_Type\thtaccess\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nsubfolder\tO\tsubfolder\tO\nwithout\tO\twithout\tO\nno\tO\tno\tO\nluck\tO\tluck\tO\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10351494\tO\t10351494\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10351494/\tO\thttps://stackoverflow.com/questions/10351494/\tO\n\t\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nerror_reporting(E_ALL)\tB-Library_Function\terror_reporting(E_ALL)\tB-Code_Block\nis\tO\tis\tO\nright\tO\tright\tO\nafter\tO\tafter\tO\n<\tB-HTML_XML_Tag\t<\tB-Code_Block\n?\tI-HTML_XML_Tag\t?\tI-Code_Block\nphp\tI-HTML_XML_Tag\tphp\tI-Code_Block\ntag\tO\ttag\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nindeed\tO\tindeed\tO\na\tO\ta\tO\nPHP\tB-Language\tPHP\tO\nerror\tO\terror\tO\n-\tO\t-\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ndeliberately\tO\tdeliberately\tO\nmake\tO\tmake\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nelsewhere\tO\telsewhere\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nyour\tO\tyour\tO\nPHP\tB-Language\tPHP\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\n.htaccess\tB-File_Type\t.htaccess\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngetting\tO\tgetting\tO\n500\tB-Error_Name\t500\tO\n)\tO\t)\tO\n,\tO\t,\tO\nor\tO\tor\tO\nmaybe\tO\tmaybe\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nlogical\tO\tlogical\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15143633\tO\t15143633\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15143633/\tO\thttps://stackoverflow.com/questions/15143633/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nupcoming\tO\tupcoming\tO\nbirthdays\tO\tbirthdays\tO\nin\tO\tin\tO\na\tO\ta\tO\nweek\tO\tweek\tO\non\tO\ton\tO\niOS\tB-Operating_System\tiOS\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\npulled\tO\tpulled\tO\nthe\tO\tthe\tO\nbirthday\tO\tbirthday\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nFacebook\tB-Website\tFacebook\tO\nand\tO\tand\tO\ntrimmed\tO\ttrimmed\tO\nthe\tO\tthe\tO\nyear\tO\tyear\tO\npart\tO\tpart\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nusers\tO\tusers\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nprivacy\tO\tprivacy\tO\nsettings\tO\tsettings\tO\n)\tO\t)\tO\nhence\tO\thence\tO\nthe\tO\tthe\tO\nbirthday\tO\tbirthday\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nan\tO\tan\tO\nNSString\tB-Library_Class\tNSString\tB-Code_Block\nwith\tO\twith\tO\ndate\tO\tdate\tO\nformat\tO\tformat\tO\n@\tB-Code_Block\t@\tB-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nMM/dd\tI-Code_Block\tMM/dd\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1461\tI-Code_Block\tQ_1461\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhere\tO\twhere\tO\ndateFormatterWithFormat\tB-Class_Name\tdateFormatterWithFormat\tB-Code_Block\n:\tI-Class_Name\t:\tI-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\ncategory\tO\tcategory\tO\non\tO\ton\tO\nNSDateFormatter\tB-Library_Class\tNSDateFormatter\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1462\tI-Code_Block\tQ_1462\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n2\tO\t2\tO\nquestions\tO\tquestions\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n-\tO\t-\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\na\tO\ta\tO\nweek\tO\tweek\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nyear\tO\tyear\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nbirthdays\tB-Variable_Name\tbirthdays\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nyear\tO\tyear\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nyear\tO\tyear\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbirthday\tB-Variable_Name\tbirthday\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nyear\tO\tyear\tO\nand\tO\tand\tO\ndifference.day\tB-Variable_Name\tdifference.day\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nway\tO\tway\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n0\tB-Value\t0\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbirthdays\tB-Variable_Name\tbirthdays\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nyear\tO\tyear\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nfixing\tO\tfixing\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\n2\tO\t2\tO\n-\tO\t-\tO\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nsnippet\tO\tsnippet\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ndancing\tO\tdancing\tO\n:\tO\t:\tO\nfirst\tO\tfirst\tO\nI\tO\tI\tO\nget\tO\tget\tO\ntoday\tO\ttoday\tO\n's\tO\t's\tO\ndate\tO\tdate\tO\nand\tO\tand\tO\ntime\tO\ttime\tO\nwith\tO\twith\tO\n[\tB-Library_Class\t[\tB-Code_Block\nNSDate\tI-Library_Class\tNSDate\tI-Code_Block\ndate\tI-Library_Class\tdate\tI-Code_Block\n]\tI-Library_Class\t]\tI-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nrip\tO\trip\tO\nit\tO\tit\tO\nto\tO\tto\tO\nits\tO\tits\tO\ncomponents\tO\tcomponents\tO\nand\tO\tand\tO\nassemble\tO\tassemble\tO\nit\tO\tit\tO\nback\tO\tback\tO\nto\tO\tto\tO\nan\tO\tan\tO\nNSDate\tB-Library_Class\tNSDate\tB-Code_Block\nwith\tO\twith\tO\na\tO\ta\tO\ntime\tO\ttime\tO\nat\tO\tat\tO\nnoon\tO\tnoon\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\n[\tB-Library_Class\t[\tB-Code_Block\nNSDate\tI-Library_Class\tNSDate\tI-Code_Block\ndate\tI-Library_Class\tdate\tI-Code_Block\n]\tI-Library_Class\t]\tI-Code_Block\nreturns\tO\treturns\tO\na\tO\ta\tO\ndate\tO\tdate\tO\nwhose\tO\twhose\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\nsay\tO\tsay\tO\n23:00:00\tB-Value\t23:00:00\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nbirthday\tO\tbirthday\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\n00:00:00\tB-Value\t00:00:00\tO\n(\tO\t(\tO\n1\tO\t1\tO\nhour\tO\thour\tO\nlater\tO\tlater\tO\n,\tO\t,\tO\nmeaning\tO\tmeaning\tO\nthe\tO\tthe\tO\nbirthday\tO\tbirthday\tO\nis\tO\tis\tO\ntomorrow\tO\ttomorrow\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ndifference.day\tB-Class_Name\tdifference.day\tB-Code_Block\nequals\tO\tequals\tO\n0\tB-Value\t0\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\n1\tB-Value\t1\tB-Code_Block\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nsnippet\tO\tsnippet\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\ndoing\tO\tdoing\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nsomething\tO\tsomething\tO\nseemingly\tO\tseemingly\tO\nso\tO\tso\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\narrangement\tO\tarrangement\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nslice\tO\tslice\tO\ntoday\tB-Variable_Name\ttoday\tB-Code_Block\nand\tO\tand\tO\nbirthday\tB-Variable_Name\tbirthday\tB-Code_Block\ninto\tO\tinto\tO\ncomponents\tO\tcomponents\tO\nand\tO\tand\tO\nput\tO\tput\tO\nthem\tO\tthem\tO\nback\tO\tback\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nNSDate\tB-Class_Name\tNSDate\tB-Code_Block\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15143633\tO\t15143633\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15143633/\tO\thttps://stackoverflow.com/questions/15143633/\tO\n\t\n\t\nSet\tO\tSet\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nyear\tO\tyear\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nbirthdayComponents\tB-Variable_Name\tbirthdayComponents\tO\nobject\tO\tobject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1926\tI-Code_Block\tA_1926\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42616468\tO\t42616468\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42616468/\tO\thttps://stackoverflow.com/questions/42616468/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nrefactor\tO\trefactor\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nexpression\tO\texpression\tO\nwith\tO\twith\tO\nES5\tB-Language\tES5\tO\nprototype\tO\tprototype\tO\nsyntax\tO\tsyntax\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nextend\tO\textend\tO\na\tO\ta\tO\nnative\tO\tnative\tO\nclass\tO\tclass\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nexpression\tO\texpression\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\nextending\tO\textending\tO\nnative\tO\tnative\tO\nclasses\tO\tclasses\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nbabel\tO\tbabel\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ntranspile\tO\ttranspile\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nES5\tB-Language\tES5\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ncode\tO\tcode\tO\ntaken\tO\ttaken\tO\noff\tO\toff\tO\nof\tO\tof\tO\ngoogle\tB-Website\tgoogle\tO\n's\tO\t's\tO\ncustom\tO\tcustom\tO\nelements\tO\telements\tO\nprimer\tO\tprimer\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5429\tI-Code_Block\tQ_5429\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\n:\tO\t:\tO\n\t\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nrefactor\tO\trefactor\tO\nan\tO\tan\tO\nES2015\tB-Language\tES2015\tO\nclass\tO\tclass\tO\nexpression\tO\texpression\tO\nwith\tO\twith\tO\nsomething\tO\tsomething\tO\nES5\tB-Language\tES5\tO\ncompatible\tO\tcompatible\tO\n(\tO\t(\tO\nor\tO\tor\tO\njust\tO\tjust\tO\nbabel\tB-Library\tbabel\tO\ncompatible\tO\tcompatible\tO\nreally\tO\treally\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nbabel\tB-Library\tbabel\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nbriefly\tO\tbriefly\tO\nexplain\tO\texplain\tO\nor\tO\tor\tO\npoint\tO\tpoint\tO\nme\tO\tme\tO\nto\tO\tto\tO\nreference\tO\treference\tO\nthat\tO\tthat\tO\nexplains\tO\texplains\tO\nhow\tO\thow\tO\nES6\tB-Language\tES6\tO\nclasses\tO\tclasses\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nprototypes\tO\tprototypes\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n414976\tO\t414976\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/414976/\tO\thttps://stackoverflow.com/questions/414976/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n4\tO\t4\tO\nimages\tB-User_Interface_Element\timages\tO\non\tO\ton\tO\na\tO\ta\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\nJS\tB-Library_Class\tJS\tO\nevent\tI-Library_Class\tevent\tO\nonce\tO\tonce\tO\nall\tO\tall\tO\n4\tO\t4\tO\nimages\tB-User_Interface_Element\timages\tO\nare\tO\tare\tO\nloaded\tO\tloaded\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\nwhich\tO\twhich\tO\norder\tO\torder\tO\nthe\tO\tthe\tO\nimages\tB-User_Interface_Element\timages\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nloaded\tO\tloaded\tO\nin\tO\tin\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ntrigger\tO\ttrigger\tO\nthe\tO\tthe\tO\nevent\tB-Library_Class\tevent\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nthought\tO\tthought\tO\nwas\tO\twas\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncounter\tB-Variable_Name\tcounter\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nwhen\tO\twhen\tO\nthat\tO\tthat\tO\ncounter\tB-Variable_Name\tcounter\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\n4\tB-Value\t4\tO\nas\tO\tas\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\nof\tO\tof\tO\na\tO\ta\tO\nsetTimeout()\tB-Library_Function\tsetTimeout()\tO\nchecking\tO\tchecking\tO\nevery\tO\tevery\tO\n200ms\tO\t200ms\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nother\tO\tother\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\njQuery\tB-Library\tjQuery\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nthinking\tO\tthinking\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nimage\tO\timage\tO\nHTML\tB-Language\tHTML\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_22\tI-Code_Block\tQ_22\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n414976\tO\t414976\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/414976/\tO\thttps://stackoverflow.com/questions/414976/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_51\tI-Code_Block\tA_51\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n414976\tO\t414976\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/414976/\tO\thttps://stackoverflow.com/questions/414976/\tO\n\t\n\t\nAs\tO\tAs\tO\nregards\tO\tregards\tO\nSalty\tB-User_Name\tSalty\tO\n's\tO\t's\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nclosure\tO\tclosure\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nglobal\tB-Data_Type\tglobal\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nsuch\tO\tsuch\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_52\tI-Code_Block\tA_52\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n[\tO\t[\tO\nEdit\tO\tEdit\tO\n]\tO\t]\tO\n\t\nAs\tO\tAs\tO\nper\tO\tper\tO\njeroen\tB-User_Name\tjeroen\tO\n's\tO\t's\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nI\tO\tI\tO\nreplaced\tO\treplaced\tO\nthe\tO\tthe\tO\nhardcoded\tO\thardcoded\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n4\tB-Library_Variable\t4\tO\n(\tO\t(\tO\ncount\tB-Code_Block\tcount\tB-Code_Block\n==\tI-Code_Block\t==\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n4)\tI-Code_Block\t4)\tI-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\njQuery\tB-Library\tjQuery\tO\nsize\tB-Library_Function\tsize\tB-Code_Block\nfunction\tO\tfunction\tO\nas\tO\tas\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\nflexibility\tO\tflexibility\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2444647\tO\t2444647\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2444647/\tO\thttps://stackoverflow.com/questions/2444647/\tO\n\t\n\t\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\na\tO\ta\tO\nwysiwyg\tO\twysiwyg\tO\niframe\tB-HTML_XML_Tag\tiframe\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nsubmit\tO\tsubmit\tO\ninput\tO\tinput\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\narea\tO\tarea\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\niframe\tB-HTML_XML_Tag\tiframe\tO\ninput\tO\tinput\tO\nis\tO\tis\tO\nsubmitted\tO\tsubmitted\tO\n,\tO\t,\tO\nI\tO\tI\tO\nset\tO\tset\tO\nit\tO\tit\tO\nto\tO\tto\tO\nclear\tO\tclear\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nalso\tO\talso\tO\nautomatically\tO\tautomatically\tO\nfocus\tO\tfocus\tO\nback\tO\tback\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\niframe\tB-HTML_XML_Tag\tiframe\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_164\tI-Code_Block\tQ_164\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2444647\tO\t2444647\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2444647/\tO\thttps://stackoverflow.com/questions/2444647/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\npostContentClr\tB-Variable_Name\tpostContentClr\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\njQuery\tB-Library\tjQuery\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nso\tO\tso\tO\ncalling\tO\tcalling\tO\nhtml()\tB-Library_Function\thtml()\tB-Code_Block\nrequires\tO\trequires\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\naccess\tO\taccess\tO\nit\tO\tit\tO\nvia\tO\tvia\tO\njQuery\tB-Library\tjQuery\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_242\tI-Code_Block\tA_242\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2444647\tO\t2444647\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2444647/\tO\thttps://stackoverflow.com/questions/2444647/\tO\n\t\n\t\nFigured\tO\tFigured\tO\nit\tO\tit\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\nfocus\tO\tfocus\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nJitter\tB-User_Name\tJitter\tO\nis\tO\tis\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nalready\tO\talready\tO\ndeclared\tO\tdeclared\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\njQuery\tB-Library\tjQuery\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nit\tO\tit\tO\nneed\tO\tneed\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nwrapped\tO\twrapped\tO\n.\tO\t.\tO\n\t\nWorking\tO\tWorking\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_243\tI-Code_Block\tA_243\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46614845\tO\t46614845\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46614845/\tO\thttps://stackoverflow.com/questions/46614845/\tO\n\t\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\npreloading\tO\tpreloading\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\npurpose\tO\tpurpose\tO\nof\tO\tof\tO\ncache\tB-Variable_Name\tcache\tO\nand\tO\tand\tO\nhash\tB-Variable_Name\thash\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nsnippet\tO\tsnippet\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nsimple\tO\tsimple\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\noverlooking\tO\toverlooking\tO\nit\tO\tit\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nsome\tO\tsome\tO\ndirection\tO\tdirection\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6140\tI-Code_Block\tQ_6140\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46614845\tO\t46614845\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46614845/\tO\thttps://stackoverflow.com/questions/46614845/\tO\n\t\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ncache\tB-Variable_Name\tcache\tB-Code_Block\nis\tO\tis\tO\nactually\tO\tactually\tO\nuseless\tO\tuseless\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nonly\tO\tonly\tO\nwrite\tO\twrite\tO\nto\tO\tto\tO\nit\tO\tit\tO\nand\tO\tand\tO\nnever\tO\tnever\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nhash\tB-Variable_Name\thash\tB-Code_Block\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nused\tO\tused\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\ncache\tO\tcache\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nan\tO\tan\tO\nimage\tB-User_Interface_Element\timage\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nURL\tO\tURL\tO\nalready\tO\talready\tO\nexists\tO\texists\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nhash\tB-Variable_Name\thash\tB-Code_Block\nobject\tO\tobject\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\ncreated\tO\tcreated\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47229969\tO\t47229969\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47229969/\tO\thttps://stackoverflow.com/questions/47229969/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\ndatabase\tO\tdatabase\tO\nsystems\tO\tsystems\tO\ncurrently\tO\tcurrently\tO\nin\tO\tin\tO\nuse\tO\tuse\tO\nin\tO\tin\tO\nproduction\tO\tproduction\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nPostgreSQL\tB-Application\tPostgreSQL\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\ndatabase\tO\tdatabase\tO\n(\tO\t(\tO\nMemSQL\tB-Application\tMemSQL\tO\n)\tO\t)\tO\nused\tO\tused\tO\nprimarily\tO\tprimarily\tO\nfor\tO\tfor\tO\nanalytical\tO\tanalytical\tO\npurposes\tO\tpurposes\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsetup\tO\tsetup\tO\nstreaming\tO\tstreaming\tO\nreplication\tO\treplication\tO\nof\tO\tof\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntables\tO\ttables\tO\nin\tO\tin\tO\nPostgreSQL\tB-Application\tPostgreSQL\tO\nto\tO\tto\tO\nMemSQL\tB-Application\tMemSQL\tO\n(\tO\t(\tO\na\tO\ta\tO\nMySQL-compatible\tB-Application\tMySQL-compatible\tO\ndatabase\tO\tdatabase\tO\n)\tO\t)\tO\nrowstores\tO\trowstores\tO\n,\tO\t,\tO\nassuming\tO\tassuming\tO\nthe\tO\tthe\tO\ntables\tB-Data_Structure\ttables\tO\non\tO\ton\tO\nboth\tO\tboth\tO\ndatabases\tO\tdatabases\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nschema\tO\tschema\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47229969\tO\t47229969\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47229969/\tO\thttps://stackoverflow.com/questions/47229969/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ntool\tO\ttool\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n(\tO\t(\tO\nyet\tO\tyet\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\none\tO\tone\tO\nfor\tO\tfor\tO\nlimited\tO\tlimited\tO\nMySQL\tB-Application\tMySQL\tO\nto\tO\tto\tO\nPostgres\tB-Application\tPostgres\tO\nreplication\tO\treplication\tO\n:\tO\t:\tO\n\t\nhttps://github.com/the4thdoctor/pg_chameleon\tO\thttps://github.com/the4thdoctor/pg_chameleon\tO\n\t\nMaybe\tO\tMaybe\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nadapted\tO\tadapted\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nalways\tO\talways\tO\nbuild\tO\tbuild\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nlittle\tO\tlittle\tO\ndata\tO\tdata\tO\nshovel\tO\tshovel\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nNOTIFY/LISTEN\tO\tNOTIFY/LISTEN\tO\nfeature\tO\tfeature\tO\nof\tO\tof\tO\nPostgres\tB-Application\tPostgres\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nonly\tO\tonly\tO\nan\tO\tan\tO\noption\tO\toption\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nsimple\tO\tsimple\tO\nset\tO\tset\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28769127\tO\t28769127\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28769127/\tO\thttps://stackoverflow.com/questions/28769127/\tO\n\t\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncome\tO\tcome\tO\nacross\tO\tacross\tO\nWinSCP\tB-Application\tWinSCP\tO\n(\tO\t(\tO\nhttp://winscp.net/eng/index.php\tO\thttp://winscp.net/eng/index.php\tO\n)\tO\t)\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nis\tO\tis\tO\na\tO\ta\tO\nfantastic\tO\tfantastic\tO\nclient\tB-Application\tclient\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nEC2\tB-Application\tEC2\tO\nubuntu\tB-Operating_System\tubuntu\tO\ninstance\tO\tinstance\tO\nas\tO\tas\tO\na\tO\ta\tO\ngraphical\tO\tgraphical\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\nputty\tB-Application\tputty\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nproblem\tO\tproblem\tO\nthough\tO\tthough\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nor\tO\tor\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndrop\tO\tdrop\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nshell\tB-Application\tshell\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nsudo\tB-Code_Block\tsudo\tO\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\nwith\tO\twith\tO\nwinscp\tB-Application\twinscp\tO\nas\tO\tas\tO\na\tO\ta\tO\nsuperuser\tO\tsuperuser\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5403062\tO\t5403062\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5403062/\tO\thttps://stackoverflow.com/questions/5403062/\tO\n\t\n\t\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\napk\tB-File_Type\tapk\tO\nfile\tO\tfile\tO\nsome\tO\tsome\tO\nXML\tB-File_Type\tXML\tO\nfile\tO\tfile\tO\nstoring\tO\tstoring\tO\nprogram\tO\tprogram\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\nupdate\tO\tupdate\tO\npath\tO\tpath\tO\nand\tO\tand\tO\nother\tO\tother\tO\nuseful\tO\tuseful\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\nnote\tO\tnote\tO\n:\tO\t:\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nmean\tO\tmean\tO\nAndroid\tB-Operating_System\tAndroid\tO\nXML\tB-File_Type\tXML\tO\nfile\tO\tfile\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nunpacked\tO\tunpacked\tO\nsomewhere\tO\tsomewhere\tO\nto\tO\tto\tO\nlocal\tO\tlocal\tO\ndata\tO\tdata\tO\nfolder\tO\tfolder\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\ncomparing\tO\tcomparing\tO\nversion\tO\tversion\tO\ninfo\tO\tinfo\tO\ninstalled\tO\tinstalled\tO\nlocally\tO\tlocally\tO\nand\tO\tand\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\nupdates\tO\tupdates\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nasking\tO\tasking\tO\n-\tO\t-\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\napk\tB-File_Type\tapk\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5403062\tO\t5403062\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5403062/\tO\thttps://stackoverflow.com/questions/5403062/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\ninfo\tO\tinfo\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nthen\tO\tthen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nmuch\tO\tmuch\tO\neasier\tO\teasier\tO\nway\tO\tway\tO\nto\tO\tto\tO\nidentify\tO\tidentify\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n\t\ngetPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionCode\tB-Code_Block\tgetPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionCode\tB-Code_Block\n\t\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\n\t\ngetPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionName\tB-Code_Block\tgetPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionName\tB-Code_Block\n\t\nto\tO\tto\tO\nget\tO\tget\tO\napp\tO\tapp\tO\n's\tO\t's\tO\nversion\tO\tversion\tO\nname\tO\tname\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5403062\tO\t5403062\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5403062/\tO\thttps://stackoverflow.com/questions/5403062/\tO\n\t\n\t\nThe\tO\tThe\tO\nassets/\tB-File_Name\tassets/\tB-Code_Block\nfolder\tO\tfolder\tO\nin\tO\tin\tO\napk\tB-File_Type\tapk\tO\nis\tO\tis\tO\nintended\tO\tintended\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nany\tO\tany\tO\nextra\tO\textra\tO\nuser\tO\tuser\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nany\tO\tany\tO\nformats\tO\tformats\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\nto\tO\tto\tO\napk\tB-File_Type\tapk\tO\nautomatically\tO\tautomatically\tO\non\tO\ton\tO\ncompilation\tO\tcompilation\tO\nstage\tO\tstage\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccessed\tO\taccessed\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\ngetAssets()\tB-Library_Function\tgetAssets()\tB-Code_Block\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_585\tI-Code_Block\tA_585\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\neven\tO\teven\tO\nunnecessary\tO\tunnecessary\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nlocal\tO\tlocal\tO\nfolder\tO\tfolder\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43365372\tO\t43365372\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43365372/\tO\thttps://stackoverflow.com/questions/43365372/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nunity\tB-Application\tunity\tO\ngame\tO\tgame\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nnavigate\tO\tnavigate\tO\nfrom\tO\tfrom\tO\none\tO\tone\tO\n360\tO\t360\tO\ndegrees\tO\tdegrees\tO\npanorama\tO\tpanorama\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\npictures\tB-User_Interface_Element\tpictures\tO\nand\tO\tand\tO\nmade\tO\tmade\tO\nthe\tO\tthe\tO\ntexture\tB-User_Interface_Element\ttexture\tO\nsize\tO\tsize\tO\nas\tO\tas\tO\na\tO\ta\tO\ncube\tB-User_Interface_Element\tcube\tO\nand\tO\tand\tO\nmapped\tO\tmapped\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlatitude-longitude\tO\tlatitude-longitude\tO\nlayout\tO\tlayout\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmade\tO\tmade\tO\nskybox\tB-User_Interface_Element\tskybox\tO\nmaterial\tO\tmaterial\tO\nand\tO\tand\tO\nloaded\tO\tloaded\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfacing\tO\tfacing\tO\nhere\tO\there\tO\nis\tO\tis\tO\n-\tO\t-\tO\n\t\nWhenever\tO\tWhenever\tO\nI\tO\tI\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nskyboxes\tB-User_Interface_Element\tskyboxes\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\ndirection\tO\tdirection\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\norientation\tO\torientation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\nby\tO\tby\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nskybox\tB-User_Interface_Element\tskybox\tO\nrotation\tO\trotation\tO\nto\tO\tto\tO\n100\tB-Value\t100\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nplanned\tO\tplanned\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\naround\tO\taround\tO\n100\tO\t100\tO\npictures\tB-User_Interface_Element\tpictures\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\neach\tO\teach\tO\non\tO\ton\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nmanually\tO\tmanually\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npictures\tO\tpictures\tO\nwere\tO\twere\tO\ndownloaded\tO\tdownloaded\tO\nfrom\tO\tfrom\tO\ngoogle\tB-Website\tgoogle\tO\nstreetview\tI-Website\tstreetview\tO\n.\tO\t.\tO\n\t\nDesperately\tO\tDesperately\tO\nin\tO\tin\tO\nneed\tO\tneed\tO\nof\tO\tof\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13095695\tO\t13095695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13095695/\tO\thttps://stackoverflow.com/questions/13095695/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nashamed\tO\tashamed\tO\nto\tO\tto\tO\nsay\tO\tsay\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nspent\tO\tspent\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\ntoday\tO\ttoday\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nform\tB-User_Interface_Element\tform\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nan\tO\tan\tO\ndata\tB-Library_Class\tdata\tO\nstore\tI-Library_Class\tstore\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nExt.js\tB-Library\tExt.js\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nMVC\tB-Algorithm\tMVC\tO\narchitecture\tO\tarchitecture\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1246\tI-Code_Block\tQ_1246\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\n(\tO\t(\tO\nI\tO\tI\tO\n've\tO\t've\tO\nhad\tO\thad\tO\nmany\tO\tmany\tO\nthroughout\tO\tthroughout\tO\nthe\tO\tthe\tO\nday\tO\tday\tO\n)\tO\t)\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\nmy.items.push\tB-Output_Block\tmy.items.push\tO\nis\tI-Output_Block\tis\tO\nnot\tI-Output_Block\tnot\tO\na\tI-Output_Block\ta\tO\nfunction\tI-Output_Block\tfunction\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\noffer\tO\toffer\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13095695\tO\t13095695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13095695/\tO\thttps://stackoverflow.com/questions/13095695/\tO\n\t\n\t\nitems\tB-Variable_Name\titems\tB-Code_Block\nis\tO\tis\tO\nexpected\tO\texpected\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nnot\tO\tnot\tO\nMixedCollection\tB-Library_Class\tMixedCollection\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nchanged\tO\tchanged\tO\nto\tO\tto\tO\nMixedCollection\tB-Library_Class\tMixedCollection\tO\nlater\tO\tlater\tO\non\tO\ton\tO\nif\tO\tif\tO\nI\tO\tI\tO\nremember\tO\tremember\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nyour\tO\tyour\tO\nissue\tO\tissue\tO\nchange\tO\tchange\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1690\tI-Code_Block\tA_1690\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1691\tI-Code_Block\tA_1691\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nConsider\tO\tConsider\tO\nas\tO\tas\tO\nwell\tO\twell\tO\ndefining\tO\tdefining\tO\nitems\tB-Variable_Name\titems\tB-Code_Block\nof\tO\tof\tO\nform\tO\tform\tO\nas\tO\tas\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\narray\tB-Data_Structure\tarray\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nin\tO\tin\tO\ninitComponent\tB-Variable_Name\tinitComponent\tB-Code_Block\nmake\tO\tmake\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nExt.apply\tB-Library_Function\tExt.apply\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1692\tI-Code_Block\tA_1692\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37793870\tO\t37793870\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37793870/\tO\thttps://stackoverflow.com/questions/37793870/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\ndates\tO\tdates\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nformat\tO\tformat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4749\tI-Code_Block\tQ_4749\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4750\tI-Code_Block\tQ_4750\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nput\tO\tput\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nSQL\tB-Language\tSQL\tO\nServer\tB-Application\tServer\tO\ntable\tB-Data_Structure\ttable\tO\nas\tO\tas\tO\nnvarchar(MAX)\tB-Data_Type\tnvarchar(MAX)\tB-Code_Block\nbut\tO\tbut\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\ndatetime\tB-Data_Type\tdatetime\tB-Code_Block\nin\tO\tin\tO\na\tO\ta\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npieces\tO\tpieces\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nbut\tO\tbut\tO\nneither\tO\tneither\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4751\tI-Code_Block\tQ_4751\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37793870\tO\t37793870\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37793870/\tO\thttps://stackoverflow.com/questions/37793870/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5441\tI-Code_Block\tA_5441\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nReturn\tO\tReturn\tO\n2016-04-15\tB-Value\t2016-04-15\tO\n13:30:00.000\tI-Value\t13:30:00.000\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7234291\tO\t7234291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7234291/\tO\thttps://stackoverflow.com/questions/7234291/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nsome\tO\tsome\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nXML\tB-Language\tXML\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nExcel\tB-Application\tExcel\tO\nspreadsheet\tO\tspreadsheet\tO\n>>\tO\t>>\tO\nHERE\tO\tHERE\tO\n<<\tO\t<<\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nroutine\tO\troutine\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\n4\tO\t4\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n15\tO\t15\tO\nsheets\tB-User_Interface_Element\tsheets\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nworkbook\tB-User_Interface_Element\tworkbook\tO\n,\tO\t,\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\nour\tO\tour\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nAnyway\tO\tAnyway\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nthrowing\tO\tthrowing\tO\nan\tO\tan\tO\nInvalidOperationException\tB-Library_Class\tInvalidOperationException\tB-Code_Block\nexception\tI-Library_Class\texception\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\nquery\tO\tquery\tO\nmy\tO\tmy\tO\nExcel\tB-Application\tExcel\tO\nspreadsheet\tO\tspreadsheet\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_563\tI-Code_Block\tQ_563\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nspecific\tO\tspecific\tO\nerror\tO\terror\tO\nis\tO\tis\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nSequence\tB-Error_Name\tSequence\tO\ncontains\tI-Error_Name\tcontains\tO\nno\tI-Error_Name\tno\tO\nelements\tI-Error_Name\telements\tO\n\"\tO\t\"\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nreally\tO\treally\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\ndebugging\tO\tdebugging\tO\nit\tO\tit\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nsomeone\tO\tsomeone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwrite\tO\twrite\tO\nit\tO\tit\tO\nin\tO\tin\tO\nStandard\tO\tStandard\tO\n\"\tO\t\"\tO\nC#\tB-Language\tC#\tO\nbefore\tO\tbefore\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nfancy\tO\tfancy\tO\nLINQ\tB-Library\tLINQ\tO\nexpression\tO\texpression\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nLINQ\tB-Library\tLINQ\tO\n,\tO\t,\tO\nright\tO\tright\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\n[\tO\t[\tO\nSolved\tO\tSolved\tO\n]\tO\t]\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nsnippet\tO\tsnippet\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nJeffN825\tB-User_Name\tJeffN825\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_564\tI-Code_Block\tQ_564\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nturns\tO\tturns\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nmy\tO\tmy\tO\nsheet\tO\tsheet\tO\nnames\tO\tnames\tO\nin\tO\tin\tO\nExcel\tB-Application\tExcel\tO\nare\tO\tare\tO\n\"\tO\t\"\tO\nHV\tB-Variable_Name\tHV\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nM2\tB-Variable_Name\tM2\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nCB\tB-Variable_Name\tCB\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nCC\tB-Variable_Name\tCC\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\nsheet2\tB-Variable_Name\tsheet2\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nsheet3\tB-Variable_Name\tsheet3\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nsheet4\tB-Variable_Name\tsheet4\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nsheet5\tB-Variable_Name\tsheet5\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nstep\tO\tstep\tO\nthrough\tO\tthrough\tO\n161\tO\t161\tO\nPackagePart\tB-Library_Class\tPackagePart\tB-Code_Block\nobjects\tO\tobjects\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nLINQ\tB-Library\tLINQ\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nso\tO\tso\tO\ndamn\tO\tdamn\tO\nefficient\tO\tefficient\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nhard\tO\thard\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7234291\tO\t7234291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7234291/\tO\thttps://stackoverflow.com/questions/7234291/\tO\n\t\n\t\nThe\tO\tThe\tO\n.Single()\tB-Library_Function\t.Single()\tB-Code_Block\nis\tO\tis\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nthrowing\tO\tthrowing\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nyour\tO\tyour\tO\nquery\tO\tquery\tO\nis\tO\tis\tO\nreturning\tO\treturning\tO\nno\tO\tno\tO\nitems\tO\titems\tO\nor\tO\tor\tO\nit\tO\tit\tO\n's\tO\t's\tO\nreturning\tO\treturning\tO\n>\tO\t>\tO\n1\tO\t1\tO\nitem\tO\titem\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nitems\tO\titems\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nexpecting\tO\texpecting\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nFirstOrDefault()\tB-Library_Function\tFirstOrDefault()\tB-Code_Block\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nmatch\tO\tmatch\tO\nor\tO\tor\tO\nnull\tB-Value\tnull\tO\nif\tO\tif\tO\nno\tO\tno\tO\nmatches\tO\tmatches\tO\nare\tO\tare\tO\nfound\tO\tfound\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnon-LINQ\tB-Library\tnon-LINQ\tO\nequivalent\tO\tequivalent\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_832\tI-Code_Block\tA_832\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7234291\tO\t7234291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7234291/\tO\thttps://stackoverflow.com/questions/7234291/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nbasically\tO\tbasically\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_830\tI-Code_Block\tA_830\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nreplacing\tO\treplacing\tO\n.Single()\tB-Library_Function\t.Single()\tO\nwith\tO\twith\tO\n.FirstOrDefault()\tB-Library_Function\t.FirstOrDefault()\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nfailing\tO\tfailing\tO\nbecause\tO\tbecause\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nmatch\tO\tmatch\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45904168\tO\t45904168\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45904168/\tO\thttps://stackoverflow.com/questions/45904168/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\ntwo\tO\ttwo\tO\nhttp/2\tO\thttp/2\tO\nservers\tB-Application\tservers\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nubuntu\tB-Operating_System\tubuntu\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nreachable\tO\treachable\tO\nover\tO\tover\tO\nport\tB-Device\tport\tO\n443\tB-Value\t443\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\non\tO\ton\tO\nUbuntu\tB-Operating_System\tUbuntu\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45904168\tO\t45904168\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45904168/\tO\thttps://stackoverflow.com/questions/45904168/\tO\n\t\n\t\nYes\tO\tYes\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nwebserver\tB-Application\twebserver\tO\nor\tO\tor\tO\nloadbalancer\tB-Application\tloadbalancer\tO\nlistening\tO\tlistening\tO\nto\tO\tto\tO\nport\tB-Device\tport\tO\n443\tB-Value\t443\tO\nand\tO\tand\tO\nforwarding\tO\tforwarding\tO\nrequests\tO\trequests\tO\nappropriately\tO\tappropriately\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nApache\tB-Application\tApache\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nhandled\tO\thandled\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6665\tI-Code_Block\tA_6665\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nwhile\tO\twhile\tO\nApache\tB-Application\tApache\tO\ndoes\tO\tdoes\tO\nsupport\tO\tsupport\tO\nHTTP/2\tB-Version\tHTTP/2\tO\nin\tO\tin\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\nfront\tO\tfront\tO\nend\tO\tend\tO\nclient\tO\tclient\tO\nconnections\tO\tconnections\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nback\tO\tback\tO\nend\tO\tend\tO\nProxyPass\tO\tProxyPass\tO\nrequests\tO\trequests\tO\n(\tO\t(\tO\nwith\tO\twith\tO\nmod_proxy_http\tB-Code_Block\tmod_proxy_http\tO\n2)\tI-Code_Block\t2)\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nwebservers/loadbalancers\tB-Application\twebservers/loadbalancers\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nNginx\tB-Application\tNginx\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nhonest\tO\thonest\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbenefits\tO\tbenefits\tO\nfor\tO\tfor\tO\nHTTP/2\tB-Version\tHTTP/2\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nclient\tO\tclient\tO\nto\tO\tto\tO\nedge\tO\tedge\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nNginx\tB-Application\tNginx\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\nNginx\tB-Application\tNginx\tO\nsupport\tO\tsupport\tO\nHTTP/2\tO\tHTTP/2\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nconnection\tO\tconnection\tO\nfrom\tO\tfrom\tO\nNginx\tB-Application\tNginx\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nback\tO\tback\tO\nend\tO\tend\tO\napps\tO\tapps\tO\nbe\tO\tbe\tO\nplain\tO\tplain\tO\nold\tO\told\tO\nHTTP/1.1\tB-Version\tHTTP/1.1\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nleast\tO\tleast\tO\nuntil\tO\tuntil\tO\nHTTP/2\tB-Version\tHTTP/2\tO\nbecomes\tO\tbecomes\tO\nmore\tO\tmore\tO\nregularly\tO\tregularly\tO\nsupported\tO\tsupported\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nhere\tO\there\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndiscussion\tO\tdiscussion\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nHTTP2\tB-Version\tHTTP2\tO\nwith\tO\twith\tO\nnode.js\tB-Application\tnode.js\tO\nbehind\tO\tbehind\tO\nnginx\tB-Application\tnginx\tO\nproxy\tO\tproxy\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31673914\tO\t31673914\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31673914/\tO\thttps://stackoverflow.com/questions/31673914/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nuser\tO\tuser\tO\nof\tO\tof\tO\nJson.net\tB-Library\tJson.net\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nstuck\tO\tstuck\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nread\tO\tread\tO\na\tO\ta\tO\njson\tB-File_Type\tjson\tO\nfile\tO\tfile\tO\nthanks\tO\tthanks\tO\nto\tO\tto\tO\nJsonTextReader\tB-Library_Class\tJsonTextReader\tO\nusing\tO\tusing\tO\njson.net\tB-Library\tjson.net\tO\n\t\nMy\tO\tMy\tO\njson\tB-File_Type\tjson\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nclass\tO\tclass\tO\nPerson\tB-Class_Name\tPerson\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nattributes\tO\tattributes\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nhttp://pastebin.com/DbSDVt2K\tO\thttp://pastebin.com/DbSDVt2K\tO\n\t\nWhen\tO\tWhen\tO\nreading\tO\treading\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nStreamReader\tB-Library_Class\tStreamReader\tO\n(\tO\t(\tO\nor\tO\tor\tO\nTextReader\tB-Library_Class\tTextReader\tO\n)\tO\t)\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nis\tO\tis\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nresult\tO\tresult\tO\nwith\tO\twith\tO\nan\tO\tan\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nJsonTextReader\tB-Library_Class\tJsonTextReader\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nunderstand\tO\tunderstand\tO\n:\tO\t:\tO\n\t\nhttp://pastebin.com/iwF3xuUp\tO\thttp://pastebin.com/iwF3xuUp\tO\n\t\nMy\tO\tMy\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nwith\tO\twith\tO\n:\tO\t:\tO\nmyString\tB-Code_Block\tmyString\tO\n=\tI-Code_Block\t=\tO\nreader.ReadAsString()\tI-Code_Block\treader.ReadAsString()\tO\n;\tI-Code_Block\t;\tO\n\t\n\"\tO\t\"\tO\nAdditional\tO\tAdditional\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\nError\tO\tError\tO\nreading\tO\treading\tO\nstring\tO\tstring\tO\n.\tO\t.\tO\n\t\nUnexpected\tB-Error_Name\tUnexpected\tO\ntoken\tI-Error_Name\ttoken\tO\n:\tO\t:\tO\nStartArray\tO\tStartArray\tO\n.\tO\t.\tO\n\t\nPath\tO\tPath\tO\n''\tO\t''\tO\n,\tO\t,\tO\nline\tO\tline\tO\n1\tO\t1\tO\n,\tO\t,\tO\nposition\tO\tposition\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nhours\tO\thours\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nnothing\tO\tnothing\tO\nthat\tO\tthat\tO\ncould\tO\tcould\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nany\tO\tany\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nunderstand\tO\tunderstand\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nextract\tO\textract\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ntr\tB-File_Type\ttr\tO\nfile\tO\tfile\tO\ncontent\tO\tcontent\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3831\tI-Code_Block\tQ_3831\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31673914\tO\t31673914\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31673914/\tO\thttps://stackoverflow.com/questions/31673914/\tO\n\t\n\t\nSimply\tO\tSimply\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\na\tO\ta\tO\nregular\tO\tregular\tO\nTextReader\tB-Library_Class\tTextReader\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nDeserialize\tB-Library_Function\tDeserialize\tO\nusing\tO\tusing\tO\nJsonConvert\tB-Library_Class\tJsonConvert\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6333\tI-Code_Block\tA_6333\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31673914\tO\t31673914\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31673914/\tO\thttps://stackoverflow.com/questions/31673914/\tO\n\t\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\njust\tO\tjust\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\nstring\tB-Code_Block\tstring\tB-Code_Block\nmyString\tI-Code_Block\tmyString\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nreader.ReadAsString()\tI-Code_Block\treader.ReadAsString()\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nThe\tO\tThe\tO\nJson\tB-Library_Class\tJson\tO\nSerializer\tI-Library_Class\tSerializer\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nread\tO\tread\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nrecognizes\tO\trecognizes\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nan\tO\tan\tO\nArray\tB-Data_Structure\tArray\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread\tO\tread\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4524\tI-Code_Block\tA_4524\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nit\tO\tit\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncorrect\tO\tcorrect\tO\ntype\tO\ttype\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ngeneric\tO\tgeneric\tO\nDeserialze\tB-Library_Function\tDeserialze\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nDeserialize\tB-Library_Function\tDeserialize\tO\n.\tO\t.\tO\n\t\nthan\tO\tthan\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nspecifiy\tO\tspecifiy\tO\nthe\tO\tthe\tO\ndeserialization\tO\tdeserialization\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4525\tI-Code_Block\tA_4525\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEdit\tO\tEdit\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncomment\tO\tcomment\tO\n:\tO\t:\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreuse\tO\treuse\tO\na\tO\ta\tO\nJsonReader\tB-Library_Class\tJsonReader\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nreader\tB-Variable_Name\treader\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nJObject\tB-Library_Class\tJObject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4526\tI-Code_Block\tA_4526\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExample\tO\tExample\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nUsing\tO\tUsing\tO\nJToken.CreateReader\tB-Library_Function\tJToken.CreateReader\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nNewtonsoft\tB-Organization\tNewtonsoft\tO\nHelp\tO\tHelp\tO\nPage\tO\tPage\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37488678\tO\t37488678\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37488678/\tO\thttps://stackoverflow.com/questions/37488678/\tO\n\t\n\t\nIf\tO\tIf\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nhas\tO\thas\tO\nauthenticated\tO\tauthenticated\tO\n,\tO\t,\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nhave\tO\thave\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nit\tO\tit\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nreturning\tO\treturning\tO\ntrue\tO\ttrue\tB-Code_Block\nfor\tO\tfor\tO\nreq.isAuthenticated()\tB-Library_Function\treq.isAuthenticated()\tB-Code_Block\n?\tO\t?\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\nthen\tO\tthen\tO\n?\tO\t?\tO\n\t\nShould\tO\tShould\tO\nn't\tO\tn't\tO\nI\tO\tI\tO\nbe\tO\tbe\tO\nfine\tO\tfine\tO\njust\tO\tjust\tO\nchecking\tO\tchecking\tO\nif\tO\tif\tO\nreq.user\tB-Library_Class\treq.user\tO\nexists\tO\texists\tO\n,\tO\t,\tO\nin\tO\tin\tO\nterms\tO\tterms\tO\nof\tO\tof\tO\nmaking\tO\tmaking\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13310925\tO\t13310925\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13310925/\tO\thttps://stackoverflow.com/questions/13310925/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\ninheriting\tO\tinheriting\tO\nIDispatch\tB-Library_Class\tIDispatch\tO\ndirectly\tO\tdirectly\tO\n(\tO\t(\tO\nIMyInterface\tB-Library_Class\tIMyInterface\tO\n:\tO\t:\tO\nIDispatch\tB-Library_Class\tIDispatch\tO\n)\tO\t)\tO\nand\tO\tand\tO\ndeclaring\tO\tdeclaring\tO\ninterface\tO\tinterface\tO\ntype\tO\ttype\tO\n[\tO\t[\tO\nInterfaceType(ComInterfaceType.InterfaceIsIDispatch)\tB-Library_Class\tInterfaceType(ComInterfaceType.InterfaceIsIDispatch)\tO\n]\tO\t]\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46309927\tO\t46309927\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46309927/\tO\thttps://stackoverflow.com/questions/46309927/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nworksheet_change\tB-Library_Function\tworksheet_change\tO\nfunction\tO\tfunction\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ntarget\tO\ttarget\tO\naddress\tO\taddress\tO\nis\tO\tis\tO\na\tO\ta\tO\ndrop\tB-User_Interface_Element\tdrop\tO\ndown\tI-User_Interface_Element\tdown\tO\n(\tO\t(\tO\ndata\tO\tdata\tO\nvalidation\tO\tvalidation\tO\n-\tO\t-\tO\npulled\tO\tpulled\tO\nfrom\tO\tfrom\tO\ntable\tB-Data_Structure\ttable\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nsuccessfully\tO\tsuccessfully\tO\n?\tO\t?\tO\n\t\nExample\tO\tExample\tO\n(\tO\t(\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6079\tI-Code_Block\tQ_6079\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46309927\tO\t46309927\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46309927/\tO\thttps://stackoverflow.com/questions/46309927/\tO\n\t\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\neither\tO\teither\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nworksheet\tB-User_Interface_Element\tworksheet\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\ndropdown\tB-User_Interface_Element\tdropdown\tO\nis\tO\tis\tO\nin\tO\tin\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nsheet\tB-User_Interface_Element\tsheet\tO\nthan\tO\tthan\tO\nwhere\tO\twhere\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nputting\tO\tputting\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nSheet1\tB-File_Name\tSheet1\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nG8\tB-Variable_Name\tG8\tO\n\"\tO\t\"\tO\non\tO\ton\tO\nSheet1\tB-File_Name\tSheet1\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nhappens\tO\thappens\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6707\tI-Code_Block\tA_6707\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nthen\tO\tthen\tO\ntry\tO\ttry\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nbeleive\tO\tbeleive\tO\nyour\tO\tyour\tO\nsheet4.conditions\tB-Code_Block\tsheet4.conditions\tB-Code_Block\nhas\tO\thas\tO\nissues\tO\tissues\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36707052\tO\t36707052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36707052/\tO\thttps://stackoverflow.com/questions/36707052/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nstruggling\tO\tstruggling\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nand\tO\tand\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nI\tO\tI\tO\n've\tO\t've\tO\na\tO\ta\tO\nfooter\tB-User_Interface_Element\tfooter\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nfull\tO\tfull\tO\nwidth\tO\twidth\tO\n.\tO\t.\tO\n\t\nInside\tO\tInside\tO\nit\tO\tit\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nI\tO\tI\tO\nlist\tB-User_Interface_Element\tlist\tO\nof\tO\tof\tO\nmessages\tO\tmessages\tO\nand\tO\tand\tO\nright\tO\tright\tO\nnext\tO\tnext\tO\nto\tO\tto\tO\nits\tO\tits\tO\nleft\tO\tleft\tO\nan\tO\tan\tO\nicon\tB-User_Interface_Element\ticon\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nFont\tB-Library\tFont\tO\nAwesome\tI-Library\tAwesome\tO\nicon\tB-User_Interface_Element\ticon\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmessage\tO\tmessage\tO\nlist\tB-User_Interface_Element\tlist\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncentered\tO\tcentered\tO\nboth\tO\tboth\tO\nvertically\tO\tvertically\tO\nand\tO\tand\tO\nhorizontally\tO\thorizontally\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nicon\tB-User_Interface_Element\ticon\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncentered\tO\tcentered\tO\nvertically\tO\tvertically\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\nul\tB-HTML_XML_Tag\tul\tO\nelements\tO\telements\tO\nwith\tO\twith\tO\ndisplay\tB-Code_Block\tdisplay\tO\n:\tI-Code_Block\t:\tO\ninline-block\tI-Code_Block\tinline-block\tO\nand\tO\tand\tO\ntext-align\tB-Code_Block\ttext-align\tO\n:\tI-Code_Block\t:\tO\ncenter\tI-Code_Block\tcenter\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmessages\tO\tmessages\tO\ndisplays\tO\tdisplays\tO\ncorrectly\tO\tcorrectly\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nicon\tB-User_Interface_Element\ticon\tO\nis\tO\tis\tO\nstuck\tO\tstuck\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nplace\tO\tplace\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nits\tO\tits\tO\ncontainer\tB-User_Interface_Element\tcontainer\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n've\tO\t've\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4518\tI-Code_Block\tQ_4518\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\ncss\tB-Language\tcss\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4519\tI-Code_Block\tQ_4519\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhttps://jsfiddle.net/b1rw80jz/1/\tO\thttps://jsfiddle.net/b1rw80jz/1/\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\naccomplish\tO\taccomplish\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36707052\tO\t36707052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36707052/\tO\thttps://stackoverflow.com/questions/36707052/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nflex-box\tO\tflex-box\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n+CSS\tB-Language\t+CSS\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5260\tI-Code_Block\tA_5260\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n+HTML\tB-Language\t+HTML\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5261\tI-Code_Block\tA_5261\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDemo\tO\tDemo\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36707052\tO\t36707052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36707052/\tO\thttps://stackoverflow.com/questions/36707052/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nicon\tB-User_Interface_Element\ticon\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\npseudo-elements::before\tO\tpseudo-elements::before\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbell\tO\tbell\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5265\tI-Code_Block\tA_5265\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhttps://jsfiddle.net/b1rw80jz/6/\tO\thttps://jsfiddle.net/b1rw80jz/6/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34165878\tO\t34165878\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34165878/\tO\thttps://stackoverflow.com/questions/34165878/\tO\n\t\n\t\nDoes\tO\tDoes\tO\nthis\tO\tthis\tO\nsimple\tO\tsimple\tO\nwalkthrough\tO\twalkthrough\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\n?\tO\t?\tO\n\t\nDoes\tO\tDoes\tO\nn't\tO\tn't\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nError\tO\tError\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nComponentGroup\tO\tComponentGroup\tO\nelement\tO\telement\tO\ncontains\tO\tcontains\tO\nan\tO\tan\tO\nunexpected\tO\tunexpected\tO\nchild\tO\tchild\tO\nelement\tO\telement\tO\n'\tB-Value\t'\tO\nFile\tI-Value\tFile\tO\n'\tB-Value\t'\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\nwalkthrough\tO\twalkthrough\tO\nout\tO\tout\tO\nof\tO\tof\tO\ndate\tO\tdate\tO\n,\tO\t,\tO\ninvalid\tO\tinvalid\tO\nor\tO\tor\tO\nam\tO\tam\tO\nI\tO\tI\tO\npossibly\tO\tpossibly\tO\njust\tO\tjust\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nstupid\tO\tstupid\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nWiX\tB-Application\tWiX\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ninstalled\tO\tinstalled\tO\nis\tO\tis\tO\n3.10\tB-Version\t3.10\tO\n.\tO\t.\tO\nand\tO\tand\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\n2015\tB-Version\t2015\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nCreating\tO\tCreating\tO\na\tO\ta\tO\nSimple\tO\tSimple\tO\nSetup\tO\tSetup\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34165878\tO\t34165878\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34165878/\tO\thttps://stackoverflow.com/questions/34165878/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nmissed\tO\tmissed\tO\nthe\tO\tthe\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\ncomponent\tB-HTML_XML_Tag\tcomponent\tO\ntag\tO\ttag\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nFile\tB-HTML_XML_Tag\tFile\tO\ntag\tO\ttag\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\nadded\tO\tadded\tO\nunderneath\tO\tunderneath\tO\nthe\tO\tthe\tO\nComponent\tB-HTML_XML_Tag\tComponent\tO\ntag\tO\ttag\tO\n.\tO\t.\tO\n\t\nThink\tO\tThink\tO\nof\tO\tof\tO\nComponents\tB-HTML_XML_Tag\tComponents\tO\nas\tO\tas\tO\ncontainers\tO\tcontainers\tO\nfor\tO\tfor\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\ngets\tO\tgets\tO\ndeployed\tO\tdeployed\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4880\tI-Code_Block\tA_4880\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32147112\tO\t32147112\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32147112/\tO\thttps://stackoverflow.com/questions/32147112/\tO\n\t\n\t\nMy\tO\tMy\tO\nskill\tO\tskill\tO\nlevel\tO\tlevel\tO\n:\tO\t:\tO\nBeginner\tO\tBeginner\tO\n\t\nCode\tO\tCode\tO\n:\tO\t:\tO\nC#\tB-Language\tC#\tO\n(\tO\t(\tO\nwpf\tB-Library\twpf\tO\n)\tO\t)\tO\n\t\nHardware\tO\tHardware\tO\n:\tO\t:\tO\nDell\tB-Device\tDell\tO\nVenue\tI-Device\tVenue\tO\n11\tB-Version\t11\tO\nPro\tI-Version\tPro\tO\ntablet\tB-Device\ttablet\tO\n(\tO\t(\tO\nwindows\tB-Operating_System\twindows\tO\n8.1\tB-Version\t8.1\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nlocation\tO\tlocation\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncomputer\tB-Device\tcomputer\tO\nvia\tO\tvia\tO\ncellular\tB-Device\tcellular\tO\ntriangulation\tO\ttriangulation\tO\nin\tO\tin\tO\ncoordinates(latitude/longitude)\tO\tcoordinates(latitude/longitude)\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nlink\tO\tlink\tO\nas\tO\tas\tO\na\tO\ta\tO\nreference\tO\treference\tO\n(\tO\t(\tO\nGetting\tO\tGetting\tO\nGPS\tB-Device\tGPS\tO\ncoordinates\tO\tcoordinates\tO\non\tO\ton\tO\nWindows\tB-Operating_System\tWindows\tO\nphone\tB-Device\tphone\tO\n7\tB-Version\t7\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\npull\tO\tpull\tO\nthe\tO\tthe\tO\nlat/lon\tO\tlat/lon\tO\ncoordinates\tO\tcoordinates\tO\nfrom\tO\tfrom\tO\nWindows\tB-Application\tWindows\tO\nLocation\tI-Application\tLocation\tO\nServices\tI-Application\tServices\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nverified\tO\tverified\tO\nthat\tO\tthat\tO\nWindows\tB-Application\tWindows\tO\nLocation\tI-Application\tLocation\tO\nServices\tI-Application\tServices\tO\nis\tO\tis\tO\nreceiving\tO\treceiving\tO\nthe\tO\tthe\tO\ncoordinates\tO\tcoordinates\tO\nvia\tO\tvia\tO\ncell\tB-Device\tcell\tO\ntower\tO\ttower\tO\ntriangulation\tO\ttriangulation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nthe\tO\tthe\tO\ncoordinates\tO\tcoordinates\tO\nare\tO\tare\tO\nlisted\tO\tlisted\tO\nas\tO\tas\tO\n\"\tB-Value\t\"\tO\nNaN\tI-Value\tNaN\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nhere\tO\there\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3897\tI-Code_Block\tQ_3897\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32147112\tO\t32147112\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32147112/\tO\thttps://stackoverflow.com/questions/32147112/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nposition\tO\tposition\tO\nonce\tO\tonce\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\ncontinous\tO\tcontinous\tO\nupdate\tO\tupdate\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreplace\tO\treplace\tO\nStart\tB-Library_Function\tStart\tB-Code_Block\nwith\tO\twith\tO\nTryStart\tB-Library_Function\tTryStart\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5072\tI-Code_Block\tA_5072\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nreturns\tO\treturns\tO\nsynchronously\tO\tsynchronously\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbest\tO\tbest\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nin\tO\tin\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24571244\tO\t24571244\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24571244/\tO\thttps://stackoverflow.com/questions/24571244/\tO\n\t\n\t\nIs\tO\tIs\tO\nthe\tO\tthe\tO\nisChecked()\tB-Library_Function\tisChecked()\tB-Code_Block\nmethod\tO\tmethod\tO\nDeprecated\tO\tDeprecated\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncoding\tO\tcoding\tO\nfor\tO\tfor\tO\nandroid\tB-Operating_System\tandroid\tO\nUI\tO\tUI\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nUiAutomator\tB-Library\tUiAutomator\tO\nFramework\tO\tFramework\tO\nthere\tO\tthere\tO\nthis\tO\tthis\tO\nmathod\tO\tmathod\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndisplayed\tO\tdisplayed\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\none\tO\tone\tO\nuiobject\tB-Library_Class\tuiobject\tB-Code_Block\nthrough\tO\tthrough\tO\nisChecked()\tB-Library_Function\tisChecked()\tB-Code_Block\nwhether\tO\twhether\tO\nit\tO\tit\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nlink\tO\tlink\tO\ni\tO\ti\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nit\tO\tit\tO\nis\tO\tis\tO\nDeprecated\tO\tDeprecated\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nwe\tO\twe\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\ngetValue()\tB-Library_Function\tgetValue()\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2748\tI-Code_Block\tQ_2748\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2749\tI-Code_Block\tQ_2749\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ngetValue\tB-Library_Function\tgetValue\tB-Code_Block\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndisplaying\tO\tdisplaying\tO\ni.e\tO\ti.e\tO\nnotavaible\tO\tnotavaible\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nand\tO\tand\tO\nisChecked()\tB-Library_Function\tisChecked()\tB-Code_Block\nis\tO\tis\tO\nalways\tO\talways\tO\nreturning\tO\treturning\tO\nfalse\tB-Value\tfalse\tB-Code_Block\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nany\tO\tany\tO\none\tO\tone\tO\ngive\tO\tgive\tO\nany\tO\tany\tO\nsuggestion\tO\tsuggestion\tO\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24571244\tO\t24571244\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24571244/\tO\thttps://stackoverflow.com/questions/24571244/\tO\n\t\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nreferring\tO\treferring\tO\nto\tO\tto\tO\na\tO\ta\tO\nwrong\tO\twrong\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ncheck\tO\tcheck\tO\nthis\tO\tthis\tO\nLink\tO\tLink\tO\nfor\tO\tfor\tO\nUIObject\tB-Library_Class\tUIObject\tO\nclass\tO\tclass\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nisChecked()\tB-Library_Function\tisChecked()\tB-Code_Block\nis\tO\tis\tO\ndeprecated\tO\tdeprecated\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nonly\tO\tonly\tO\non\tO\ton\tO\nan\tO\tan\tO\nUI\tB-Library_Class\tUI\tO\nObject\tI-Library_Class\tObject\tO\nwho\tO\twho\tO\n's\tO\t's\tO\nnode\tO\tnode\tO\ndetail\tO\tdetail\tO\n'\tB-Code_Block\t'\tB-Code_Block\ncheckable'=>true\tI-Code_Block\tcheckable'=>true\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24571244\tO\t24571244\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24571244/\tO\thttps://stackoverflow.com/questions/24571244/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsimilar\tO\tsimilar\tO\nproblem\tO\tproblem\tO\nexcept\tO\texcept\tO\nandroid\tB-Application\tandroid\tO\nstudio\tI-Application\tstudio\tO\nwont\tO\twont\tO\neven\tO\teven\tO\naccept\tO\taccept\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nCheckedTextView\tB-Library_Class\tCheckedTextView\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nput\tO\tput\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3864\tI-Code_Block\tA_3864\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nandroid\tB-Application\tandroid\tO\nstudio\tI-Application\tstudio\tO\ntells\tO\ttells\tO\nme\tO\tme\tO\n\"\tO\t\"\tO\ncannot\tO\tcannot\tO\nresolve\tO\tresolve\tO\nmethod\tO\tmethod\tO\nisChecked()\"\tB-Library_Function\tisChecked()\"\tO\nbut\tO\tbut\tO\nhas\tO\thas\tO\nplenty\tO\tplenty\tO\nof\tO\tof\tO\nother\tO\tother\tO\nsuggestions\tO\tsuggestions\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nsuspiciously\tO\tsuspiciously\tO\nisChecked()\tB-Library_Function\tisChecked()\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nno\tO\tno\tO\ndescription\tO\tdescription\tO\nbesides\tO\tbesides\tO\nthe\tO\tthe\tO\nsignature\tO\tsignature\tO\n.\tO\t.\tO\n\t\nhttp://developer.android.com/reference/android/widget/CheckedTextView.html#isChecked()\tO\thttp://developer.android.com/reference/android/widget/CheckedTextView.html#isChecked()\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22274295\tO\t22274295\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22274295/\tO\thttps://stackoverflow.com/questions/22274295/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\naccept\tO\taccept\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nname\tO\tname\tO\nthrough\tO\tthrough\tO\nan\tO\tan\tO\nApplescript\tB-Language\tApplescript\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\naccomplished\tO\taccomplished\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nam\tO\tam\tO\nthinking\tO\tthinking\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nsaved\tO\tsaved\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nbecause\tO\tbecause\tO\nthats\tO\tthats\tO\nall\tO\tall\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nanother\tO\tanother\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\nscript\tO\tscript\tO\nactivate\tO\tactivate\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\nthat\tO\tthat\tO\npoint\tO\tpoint\tO\nand\tO\tand\tO\nretrieve\tO\tretrieve\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\naccept\tO\taccept\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nscript\tO\tscript\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22274295\tO\t22274295\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22274295/\tO\thttps://stackoverflow.com/questions/22274295/\tO\n\t\n\t\nAppleScript\tB-Language\tAppleScript\tO\nOverview\tO\tOverview\tO\n\t\n|\tO\t|\tO\nScripting\tO\tScripting\tO\nwith\tO\twith\tO\nAppleScript\tB-Language\tAppleScript\tO\n\t\nOne\tO\tOne\tO\nway\tO\tway\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nproperties\tO\tproperties\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3017\tI-Code_Block\tA_3017\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nproperty-value\tO\tproperty-value\tO\nis\tO\tis\tO\nstored\tO\tstored\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ncompiled\tO\tcompiled\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nalso\tO\talso\tO\nworks\tO\tworks\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\nsaved\tO\tsaved\tO\nas\tO\tas\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nOpening\tO\tOpening\tO\nand\tO\tand\tO\nrecompiling\tO\trecompiling\tO\nit\tO\tit\tO\nin\tO\tin\tO\nAppleScript\tB-Application\tAppleScript\tO\nEditor\tI-Application\tEditor\tO\nresets\tO\tresets\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35501245\tO\t35501245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35501245/\tO\thttps://stackoverflow.com/questions/35501245/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nhigh\tB-Library\thigh\tO\nchart\tI-Library\tchart\tO\nwith\tO\twith\tO\ncodeigniter\tB-Library\tcodeigniter\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\nat\tO\tat\tO\nhttp://blueflame-software.com/using-highcharts-with-codeigniter/\tO\thttp://blueflame-software.com/using-highcharts-with-codeigniter/\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\npreview\tO\tpreview\tO\nmy\tO\tmy\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\nscreen\tO\tscreen\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ncan\tO\tcan\tO\nsome\tO\tsome\tO\non\tO\ton\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nto\tO\tto\tO\nresolve\tO\tresolve\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nsometime\tO\tsometime\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nyet\tO\tyet\tO\nno\tO\tno\tO\npositive\tO\tpositive\tO\nresult\tO\tresult\tO\n\t\nAlso\tO\tAlso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\nshown\tO\tshown\tO\nhere\tO\there\tO\non\tO\ton\tO\nstack\tB-Website\tstack\tO\noverflow\tI-Website\toverflow\tO\n,\tO\t,\tO\nyet\tO\tyet\tO\nnothing\tO\tnothing\tO\nstill\tO\tstill\tO\ndisplay\tO\tdisplay\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nview\tO\tview\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35501245\tO\t35501245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35501245/\tO\thttps://stackoverflow.com/questions/35501245/\tO\n\t\n\t\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\nare\tO\tare\tO\nquite\tO\tquite\tO\nlarger\tO\tlarger\tO\nto\tO\tto\tO\ndescribe\tO\tdescribe\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nlinks\tO\tlinks\tO\n\t\nhttps://blueflame-software.com/using-highcharts-with-codeigniter/\tO\thttps://blueflame-software.com/using-highcharts-with-codeigniter/\tO\n\t\nhttps://blueflame-software.com/using-highcharts-with-codeigniter/\tO\thttps://blueflame-software.com/using-highcharts-with-codeigniter/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15750354\tO\t15750354\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15750354/\tO\thttps://stackoverflow.com/questions/15750354/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nsearch\tO\tsearch\tO\nquery\tO\tquery\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nSoundCloud\tB-Library\tSoundCloud\tO\nAPI\tI-Library\tAPI\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\ntheir\tO\ttheir\tO\nJavaScript\tB-Library\tJavaScript\tO\nSDK\tI-Library\tSDK\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1558\tI-Code_Block\tQ_1558\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nquery\tO\tquery\tO\nusing\tO\tusing\tO\ncURL\tB-Library\tcURL\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1559\tI-Code_Block\tQ_1559\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nsays\tO\tsays\tO\n<error>401\tB-HTML_XML_Tag\t<error>401\tB-Code_Block\n-\tB-Error_Name\t-\tI-Code_Block\nUnauthorized</error>\tI-Error_Name\tUnauthorized</error>\tI-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nparams\tO\tparams\tO\nhttp://api.soundcloud.com/tracks?client_id=xxxx&q=punk\tB-Code_Block\thttp://api.soundcloud.com/tracks?client_id=xxxx&q=punk\tB-Code_Block\nit\tO\tit\tO\nwill\tO\twill\tO\ndisregard\tO\tdisregard\tO\nthe\tO\tthe\tO\nq\tB-Variable_Name\tq\tB-Code_Block\nparam\tO\tparam\tO\nand\tO\tand\tO\nrespond\tO\trespond\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\ntrack\tO\ttrack\tO\nlisting\tO\tlisting\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nway\tO\tway\tO\nto\tO\tto\tO\nquery\tO\tquery\tO\nthe\tO\tthe\tO\ntracks\tO\ttracks\tO\nendpoint\tO\tendpoint\tO\nfrom\tO\tfrom\tO\ncURL\tB-Library\tcURL\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15750354\tO\t15750354\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15750354/\tO\thttps://stackoverflow.com/questions/15750354/\tO\n\t\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\nnothing\tO\tnothing\tO\nincorrect\tO\tincorrect\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\n401\tB-Error_Name\t401\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\ninvalid\tO\tinvalid\tO\nclient\tB-Variable_Name\tclient\tO\nid\tI-Variable_Name\tid\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ndouble\tO\tdouble\tO\ncheck\tO\tcheck\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nclient\tB-Variable_Name\tclient\tO\nid\tI-Variable_Name\tid\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nwhen\tO\twhen\tO\ninitializing\tO\tinitializing\tO\nthe\tO\tthe\tO\nJavaScript\tB-Library\tJavaScript\tO\nSDK\tI-Library\tSDK\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nclient\tB-Variable_Name\tclient\tO\nid\tI-Variable_Name\tid\tO\nof\tO\tof\tO\none\tO\tone\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ntest\tO\ttest\tO\napps\tO\tapps\tO\n:\tO\t:\tO\n\t\ncurl\tB-Code_Block\tcurl\tB-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nhttps://api.soundcloud.com/tracks?q=track&client_id=aeb03ac55f278fc7e579c744144b1d5d\tI-Code_Block\thttps://api.soundcloud.com/tracks?q=track&client_id=aeb03ac55f278fc7e579c744144b1d5d\tI-Code_Block\n\t\nThe\tO\tThe\tO\norder\tO\torder\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nquerystring\tO\tquerystring\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nno\tO\tno\tO\neffect\tO\teffect\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38003153\tO\t38003153\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38003153/\tO\thttps://stackoverflow.com/questions/38003153/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nsimple\tO\tsimple\tO\nsql\tB-Language\tsql\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsql\tB-Language\tsql\tO\nquery\tO\tquery\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nvalues\tO\tvalues\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4786\tI-Code_Block\tQ_4786\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\nreturns\tO\treturns\tO\nme\tO\tme\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4787\tI-Code_Block\tQ_4787\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhat\tO\twhat\tO\nI\tO\tI\tO\nactually\tO\tactually\tO\nwant\tO\twant\tO\nis\tO\tis\tO\nto\tO\tto\tO\nappend\tO\tappend\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\nme\tO\tme\tO\nsame\tO\tsame\tO\nrecord\tO\trecord\tO\nbut\tO\tbut\tO\ncertain\tO\tcertain\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ntimes\tO\ttimes\tO\nwith\tO\twith\tO\none\tO\tone\tO\ndiffering\tO\tdiffering\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4788\tI-Code_Block\tQ_4788\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nor\tO\tor\tO\nguidance\tO\tguidance\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nP.S\tO\tP.S\tO\n.\tO\t.\tO\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nit\tO\tit\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nin\tO\tin\tO\nc#\tB-Language\tc#\tO\nwith\tO\twith\tO\nsql\tB-Language\tsql\tO\nmapping\tO\tmapping\tO\nto\tO\tto\tO\nobject\tO\tobject\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\nas\tO\tas\tO\nwell.Thanks\tO\twell.Thanks\tO\nalot\tO\talot\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38003153\tO\t38003153\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38003153/\tO\thttps://stackoverflow.com/questions/38003153/\tO\n\t\n\t\nYou\tO\tYou\tO\n've\tO\t've\tO\nnot\tO\tnot\tO\nstated\tO\tstated\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\n'\tO\t'\tO\nx\tB-Variable_Name\tx\tO\n'\tO\t'\tO\n,\tO\t,\tO\n'\tO\t'\tO\ny\tB-Variable_Name\ty\tO\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\nz\tB-Variable_Name\tz\tO\n'\tO\t'\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ntypically\tO\ttypically\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\ntable\tB-Data_Structure\ttable\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nwhich\tO\twhich\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nmake\tO\tmake\tO\nanother\tO\tanother\tO\ntable\tB-Data_Structure\ttable\tO\nand\tO\tand\tO\njoin\tO\tjoin\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nevery\tO\tevery\tO\nrow\tB-Data_Structure\trow\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n2nd\tO\t2nd\tO\ntable\tB-Data_Structure\ttable\tO\njoins\tO\tjoins\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nrow\tB-Data_Structure\trow\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ndescribed\tO\tdescribed\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5477\tI-Code_Block\tA_5477\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nResult\tO\tResult\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5478\tI-Code_Block\tA_5478\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38003153\tO\t38003153\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38003153/\tO\thttps://stackoverflow.com/questions/38003153/\tO\n\t\n\t\nWell\tO\tWell\tO\nok\tO\tok\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nsome\tO\tsome\tO\nSQL\tB-Language\tSQL\tO\nmagic\tO\tmagic\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5476\tI-Code_Block\tA_5476\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\n(\tO\t(\tO\nimplicit\tO\timplicit\tO\n)\tO\t)\tO\ncross\tO\tcross\tO\njoin\tO\tjoin\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncartesian\tO\tcartesian\tO\nproduct\tO\tproduct\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsingle\tO\tsingle\tO\n@alphabets\tO\t@alphabets\tB-Code_Block\nrow\tB-Data_Structure\trow\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nthree\tO\tthree\tO\nxyz\tB-Variable_Name\txyz\tB-Code_Block\nrows\tB-Data_Structure\trows\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36957144\tO\t36957144\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36957144/\tO\thttps://stackoverflow.com/questions/36957144/\tO\n\t\n\t\nProject\tO\tProject\tO\nStructure\tO\tStructure\tO\n(\tO\t(\tO\nsrc\tO\tsrc\tO\ncontains\tO\tcontains\tO\nreact\tO\treact\tO\ncomponent\tO\tcomponent\tO\nclasses\tO\tclasses\tO\nusing\tO\tusing\tO\njsx\tB-Language\tjsx\tO\nsyntax\tO\tsyntax\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4568\tI-Code_Block\tQ_4568\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCommand\tO\tCommand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\n:\tO\t:\tO\nbabel\tB-Code_Block\tbabel\tB-Code_Block\nsrc\tI-Code_Block\tsrc\tI-Code_Block\n--out-dir\tI-Code_Block\t--out-dir\tI-Code_Block\nlib\tI-Code_Block\tlib\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4569\tI-Code_Block\tQ_4569\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhere\tO\there\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\ntop\tO\ttop\tO\nbabel\tB-Library\tbabel\tO\ndevDependencies\tO\tdevDependencies\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nincluding\tO\tincluding\tO\nplugins\tO\tplugins\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4570\tI-Code_Block\tQ_4570\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCould\tO\tCould\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nlegitimate\tO\tlegitimate\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nbabel\tB-Library\tbabel\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nperhaps\tO\tperhaps\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nnode\tB-Library\tnode\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\ndependency\tO\tdependency\tO\nversion\tO\tversion\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nthoughts\tO\tthoughts\tO\nor\tO\tor\tO\nadvice\tO\tadvice\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36957144\tO\t36957144\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36957144/\tO\thttps://stackoverflow.com/questions/36957144/\tO\n\t\n\t\nRealized\tO\tRealized\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nnode_modules\tO\tnode_modules\tO\nsomehow\tO\tsomehow\tO\nmade\tO\tmade\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nmy\tO\tmy\tO\nsrc\tO\tsrc\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nbabel\tB-Library\tbabel\tO\nwas\tO\twas\tO\nrunning\tO\trunning\tO\nagainst\tO\tagainst\tO\nall\tO\tall\tO\nof\tO\tof\tO\nnode_modules\tB-Library_Class\tnode_modules\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nsimplified\tO\tsimplified\tO\nmy\tO\tmy\tO\nbabel.rc\tB-File_Name\tbabel.rc\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nthis\tO\tthis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5296\tI-Code_Block\tA_5296\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAfter\tO\tAfter\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nwas\tO\twas\tO\neither\tO\teither\tO\nfrom\tO\tfrom\tO\nbabel\tB-Library\tbabel\tO\nrunning\tO\trunning\tO\naginst\tO\taginst\tO\nsomething\tO\tsomething\tO\nweird\tO\tweird\tO\nin\tO\tin\tO\nnode_modules\tB-Library_Class\tnode_modules\tO\nor\tO\tor\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmany\tO\tmany\tO\nplugins\tO\tplugins\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nmanually\tO\tmanually\tO\nspecified\tO\tspecified\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nreally\tO\treally\tO\nconfusing\tO\tconfusing\tO\nbut\tO\tbut\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nany\tO\tany\tO\nfault\tO\tfault\tO\nof\tO\tof\tO\nbabel\tB-Library\tbabel\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37790195\tO\t37790195\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37790195/\tO\thttps://stackoverflow.com/questions/37790195/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nthat\tO\tthat\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\nto\tO\tto\tO\na\tO\ta\tO\nMongoDB\tB-Library\tMongoDB\tO\ncollection\tO\tcollection\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\nname\tO\tname\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\noptions\tO\toptions\tO\nbefore\tO\tbefore\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\n1)\tO\t1)\tO\nAttribute\tO\tAttribute\tO\n\t\nI\tO\tI\tO\ndecorate\tO\tdecorate\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nattribute\tO\tattribute\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nreflection\tO\treflection\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\ninside\tO\tinside\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\ncache\tO\tcache\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tB-Code_Block\nto\tO\tto\tO\navoid\tO\tavoid\tO\nfuture\tO\tfuture\tO\nlookups\tO\tlookups\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4747\tI-Code_Block\tQ_4747\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n2)\tO\t2)\tO\nStatic\tO\tStatic\tO\nProperty\tO\tProperty\tO\n\t\nHere\tO\tHere\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nstatic\tB-Data_Type\tstatic\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4748\tI-Code_Block\tQ_4748\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nfind\tO\tfind\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\ninclined\tO\tinclined\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nformer\tO\tformer\tO\nas\tO\tas\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nand\tO\tand\tO\nfeels\tO\tfeels\tO\ncleaner\tO\tcleaner\tO\nbut\tO\tbut\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsenior\tO\tsenior\tO\ndevs\tO\tdevs\tO\nhere\tO\there\tO\nare\tO\tare\tO\nturning\tO\tturning\tO\ntheir\tO\ttheir\tO\nnose\tO\tnose\tO\nup\tO\tup\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nreflection\tO\treflection\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\ncase\tO\tcase\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmade\tO\tmade\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\noption\tO\toption\tO\nor\tO\tor\tO\nis\tO\tis\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nwith\tO\twith\tO\noption\tO\toption\tO\n2\tO\t2\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37790195\tO\t37790195\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37790195/\tO\thttps://stackoverflow.com/questions/37790195/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nclear\tO\tclear\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\nmetadata\tO\tmetadata\tO\nvs\tO\tvs\tO\n.\tO\t.\tO\ndata\tO\tdata\tO\n:\tO\t:\tO\n\t\nOption\tO\tOption\tO\n1\tO\t1\tO\n:\tO\t:\tO\nAttributes\tO\tAttributes\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nhold\tO\thold\tO\nmetadata\tO\tmetadata\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nentities\tO\tentities\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nOption\tO\tOption\tO\n2\tO\t2\tO\n:\tO\t:\tO\nmember\tO\tmember\tO\nfields\tO\tfields\tO\nand\tO\tand\tO\nproperties\tO\tproperties\tO\n,\tO\t,\tO\nregardless\tO\tregardless\tO\nif\tO\tif\tO\ninstance\tO\tinstance\tO\nor\tO\tor\tO\nstatic\tB-Data_Type\tstatic\tO\n,\tO\t,\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nhold\tO\thold\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nmake\tO\tmake\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nintegral\tO\tintegral\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\n,\tO\t,\tO\noption\tO\toption\tO\n1\tO\t1\tO\n,\tO\t,\tO\nattributes\tO\tattributes\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\napproach\tO\tapproach\tO\nto\tO\tto\tO\nrepresent\tO\trepresent\tO\nmetadata\tO\tmetadata\tO\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\nof\tO\tof\tO\nreflection\tO\treflection\tO\nis\tO\tis\tO\na\tO\ta\tO\nmere\tO\tmere\tO\ntechnicality\tO\ttechnicality\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nencapsulated\tO\tencapsulated\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nan\tO\tan\tO\nAttributeManager\tB-Class_Name\tAttributeManager\tB-Code_Block\n,\tO\t,\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nease\tO\tease\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nmetadata\tO\tmetadata\tO\nand\tO\tand\tO\ncache\tO\tcache\tO\nthem\tO\tthem\tO\nappropriately\tO\tappropriately\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nperformance\tO\tperformance\tO\noverhead\tO\toverhead\tO\n(\tO\t(\tO\nshould\tO\tshould\tO\nthat\tO\tthat\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\ncase\tO\tcase\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5626311\tO\t5626311\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5626311/\tO\thttps://stackoverflow.com/questions/5626311/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nat\tO\tat\tO\na\tO\ta\tO\nclient\tB-Application\tclient\tO\nsite\tO\tsite\tO\nwhere\tO\twhere\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nwhich\tO\twhich\tO\nbegan\tO\tbegan\tO\nin\tO\tin\tO\nSharePoint\tB-Application\tSharePoint\tO\nand\tO\tand\tO\nis\tO\tis\tO\nslowly\tO\tslowly\tO\nmigrating\tO\tmigrating\tO\naway\tO\taway\tO\nto\tO\tto\tO\na\tO\ta\tO\nvery\tO\tvery\tO\ncustom\tO\tcustom\tO\nASP.NET\tB-Library\tASP.NET\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\ndata\tO\tdata\tO\nelements\tO\telements\tO\nare\tO\tare\tO\nstill\tO\tstill\tO\nhosted\tO\thosted\tO\nwithin\tO\twithin\tO\nSharePoint\tB-Application\tSharePoint\tO\nlists\tO\tlists\tO\n,\tO\t,\tO\ntwo\tO\ttwo\tO\nof\tO\tof\tO\nwhich\tO\twhich\tO\ncurrently\tO\tcurrently\tO\nin\tO\tin\tO\nquestion\tO\tquestion\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\n\"\tO\t\"\tO\nNotes\tO\tNotes\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nTasks\tO\tTasks\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nfairly\tO\tfairly\tO\nsimple\tO\tsimple\tO\ndata\tO\tdata\tO\nelements\tO\telements\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\nSharePoint\tB-Application\tSharePoint\tO\nsetup\tO\tsetup\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\nspecial\tO\tspecial\tO\nabout\tO\tabout\tO\nthem\tO\tthem\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nthings\tO\tthings\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nfrom\tO\tfrom\tO\nwithin\tO\twithin\tO\nASP.NET\tB-Library\tASP.NET\tO\nis\tO\tis\tO\nto\tO\tto\tO\nautomatically\tO\tautomatically\tO\ncreate\tO\tcreate\tO\nsome\tO\tsome\tO\nnew\tO\tnew\tO\nitems\tO\titems\tO\nfor\tO\tfor\tO\nthese\tO\tthese\tO\nlists\tB-Data_Structure\tlists\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nthem\tO\tthem\tO\nfrom\tO\tfrom\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nit\tO\tit\tO\n's\tO\t's\tO\npretty\tO\tpretty\tO\neasy\tO\teasy\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\nweb\tO\tweb\tO\npart\tO\tpart\tO\nwhich\tO\twhich\tO\nhandled\tO\thandled\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nfor\tO\tfor\tO\nthose\tO\tthose\tO\nitems\tO\titems\tO\n,\tO\t,\tO\nattached\tO\tattached\tO\nthe\tO\tthe\tO\ndebugger\tO\tdebugger\tO\nto\tO\tto\tO\nit\tO\tit\tO\n,\tO\t,\tO\ntracked\tO\ttracked\tO\nhow\tO\thow\tO\nit\tO\tit\tO\ngot\tO\tgot\tO\nits\tO\tits\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfields\tO\tfields\tO\nbeing\tO\tbeing\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nitem\tO\titem\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nquite\tO\tquite\tO\nas\tO\tas\tO\nobvious\tO\tobvious\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\nweb\tO\tweb\tO\npart\tO\tpart\tO\nUI\tO\tUI\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfield\tO\tfield\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nEssentially\tO\tEssentially\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nfield\tO\tfield\tO\nfor\tO\tfor\tO\nentering\tO\tentering\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nWindows\tB-Organization\tWindows\tO\ndomain\tO\tdomain\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbook\tO\tbook\tO\nicon\tO\ticon\tO\nopens\tO\topens\tO\na\tO\ta\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\nwhich\tO\twhich\tO\nallows\tO\tallows\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nname\tO\tname\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\ntesting\tO\ttesting\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\nas\tO\tas\tO\nlocal\tO\tlocal\tO\nAdministrator\tO\tAdministrator\tO\non\tO\ton\tO\na\tO\ta\tO\ndevelopment\tO\tdevelopment\tO\nmachine\tO\tmachine\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\n\"\tO\t\"\tO\nadmin\tB-Value\tadmin\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npop-up\tB-User_Interface_Element\tpop-up\tO\nand\tO\tand\tO\nit\tO\tit\tO\npopulates\tO\tpopulates\tO\nthe\tO\tthe\tO\nfield\tO\tfield\tO\nwith\tO\twith\tO\n\"\tB-Value\t\"\tO\n[\tI-Value\t[\tO\nmachine\tI-Value\tmachine\tO\nname\tI-Value\tname\tO\n]\tI-Value\t]\tO\n\\Administrator\tB-Value\t\\Administrator\tO\n\"\tB-Value\t\"\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nin\tO\tin\tO\ndebugging\tO\tdebugging\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nthat\tO\tthat\tO\ngets\tO\tgets\tO\npulled\tO\tpulled\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfield\tO\tfield\tO\nand\tO\tand\tO\nentered\tO\tentered\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nSharePoint\tB-Application\tSharePoint\tO\nlist\tO\tlist\tO\nitem\tO\titem\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\n1\tB-Value\t1\tO\n\"\tO\t\"\tO\nas\tO\tas\tO\nopposed\tO\topposed\tO\nto\tO\tto\tO\na\tO\ta\tO\nname\tO\tname\tO\nor\tO\tor\tO\nanything\tO\tanything\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\n\"\tO\t\"\tO\n1\tB-Value\t1\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nan\tO\tan\tO\nidentifier\tO\tidentifier\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\nadmin\tO\tadmin\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nMakes\tO\tMakes\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\nafter\tO\tafter\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nidentifier\tO\tidentifier\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nlogged-in\tO\tlogged-in\tO\nuser\tO\tuser\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nname\tO\tname\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nany\tO\tany\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nnumeric\tO\tnumeric\tO\n(\tO\t(\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\n)\tO\t)\tO\nID\tB-Variable_Name\tID\tO\n.\tO\t.\tO\n\t\nAdditionally\tO\tAdditionally\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\nhappening\tO\thappening\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\nan\tO\tan\tO\nASP.NET\tB-Library\tASP.NET\tO\napplication\tO\tapplication\tO\ncontext\tO\tcontext\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\nalso\tO\talso\tO\na\tO\ta\tO\nWPF\tB-Library\tWPF\tO\nclient\tB-Application\tclient\tO\napplication\tO\tapplication\tO\nfor\tO\tfor\tO\nlaptops\tB-Device\tlaptops\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngenerating\tO\tgenerating\tO\nthese\tO\tthese\tO\nlist\tB-Data_Structure\tlist\tO\nitems\tO\titems\tO\nand\tO\tand\tO\nsynchronizing\tO\tsynchronizing\tO\nthem\tO\tthem\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nwhen\tO\twhen\tO\nconnected\tO\tconnected\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ncurrently\tO\tcurrently\tO\noperating\tO\toperating\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nassumption\tO\tassumption\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nclient\tB-Application\tclient\tO\nuser\tO\tuser\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\nwith\tO\twith\tO\na\tO\ta\tO\nproper\tO\tproper\tO\ndomain\tO\tdomain\tO\naccount\tO\taccount\tO\nknown\tO\tknown\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nimagine\tO\timagine\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\neasy\tO\teasy\tO\n,\tO\t,\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nstumbled\tO\tstumbled\tO\nacross\tO\tacross\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nquite\tO\tquite\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5626311\tO\t5626311\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5626311/\tO\thttps://stackoverflow.com/questions/5626311/\tO\n\t\n\t\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_605\tI-Code_Block\tA_605\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBy\tO\tBy\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ninternal\tO\tinternal\tO\nId\tB-Variable_Name\tId\tO\nassigned\tO\tassigned\tO\nby\tO\tby\tO\nSharePoint\tB-Application\tSharePoint\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nId\tB-Variable_Name\tId\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nWPF\tB-Library\tWPF\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndeploy\tO\tdeploy\tO\na\tO\ta\tO\nWebService\tO\tWebService\tO\ninside\tO\tinside\tO\nSharePoint\tB-Application\tSharePoint\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nreturn\tO\treturn\tO\nthis\tO\tthis\tO\nId\tB-Variable_Name\tId\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\neven\tO\teven\tO\nquery\tO\tquery\tO\nthe\tO\tthe\tO\nSharePoint\tB-Application\tSharePoint\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsafe\tO\tsafe\tO\n:-)\tO\t:-)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28628280\tO\t28628280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28628280/\tO\thttps://stackoverflow.com/questions/28628280/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nMule\tB-Application\tMule\tO\nstandalone\tI-Application\tstandalone\tO\n3.1.0\tB-Version\t3.1.0\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nflow\tO\tflow\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\nexception\tB-Library_Class\texception\tO\nstrategy\tO\tstrategy\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nfooImpl\tB-Class_Name\tfooImpl\tB-Code_Block\nclass\tO\tclass\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\non\tO\ton\tO\npurpose\tO\tpurpose\tO\nand\tO\tand\tO\nits\tO\tits\tO\nstacktrace\tO\tstacktrace\tO\ngets\tO\tgets\tO\nvomited\tO\tvomited\tO\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nmule\tB-Application\tmule\tO\nstdout\tB-Library_Class\tstdout\tO\n-\tO\t-\tO\nExceptionTransformer\tB-Library_Class\tExceptionTransformer\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\ntriggered\tO\ttriggered\tO\nand\tO\tand\tO\nI\tO\tI\tO\nget\tO\tget\tO\nno\tO\tno\tO\nemail\tO\temail\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\ndefault-exception-strategy\tB-Code_Block\tdefault-exception-strategy\tB-Code_Block\ncompletely\tO\tcompletely\tO\nnothing\tO\tnothing\tO\nat\tO\tat\tO\nall\tO\tall\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nan\tO\tan\tO\nemail\tO\temail\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\nwith\tO\twith\tO\nExceptionTransformer\tB-Library_Class\tExceptionTransformer\tB-Code_Block\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3363\tI-Code_Block\tQ_3363\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFurther\tO\tFurther\tO\non\tO\ton\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n<custom-exception-strategy\tB-Code_Block\t<custom-exception-strategy\tB-Code_Block\nclass=\"com.arcusys.nkeservice.mule.dynasty.ExceptionTest\">\tI-Code_Block\tclass=\"com.arcusys.nkeservice.mule.dynasty.ExceptionTest\">\tI-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ndefault-exception-strategy\tB-Code_Block\tdefault-exception-strategy\tB-Code_Block\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nExceptionTest\tB-Class_Name\tExceptionTest\tB-Code_Block\ngets\tO\tgets\tO\ninstantiated\tO\tinstantiated\tO\nduring\tO\tduring\tO\nservice\tO\tservice\tO\nstartup\tO\tstartup\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\n@override\tB-Code_Block\t@override\tB-Code_Block\nhandleException\tB-Function_Name\thandleException\tI-Code_Block\nnever\tO\tnever\tO\ngets\tO\tgets\tO\ncalled\tO\tcalled\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nforced\tO\tforced\tO\nexception\tB-Library_Class\texception\tO\nI\tO\tI\tO\nget\tO\tget\tO\nto\tO\tto\tO\nstdout\tB-Library_Variable\tstdout\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3364\tI-Code_Block\tQ_3364\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28628280\tO\t28628280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28628280/\tO\thttps://stackoverflow.com/questions/28628280/\tO\n\t\n\t\nThere\tO\tThere\tO\nwas\tO\twas\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nCXF\tB-Library\tCXF\tO\ncomponents\tO\tcomponents\tO\ninvoking\tO\tinvoking\tO\nexception\tB-Library_Class\texception\tO\nstrategies\tO\tstrategies\tO\nprior\tO\tprior\tO\nto\tO\tto\tO\nMule\tB-Application\tMule\tO\n3.1.3\tB-Version\t3.1.3\tO\n:\tO\t:\tO\n\t\nhttp://mule.1045714.n5.nabble.com/mule-scm-mule-22344-branches-mule-3-1-x-modules-cxf-src-test-resources-EE-2273-td4557349.html\tO\thttp://mule.1045714.n5.nabble.com/mule-scm-mule-22344-branches-mule-3-1-x-modules-cxf-src-test-resources-EE-2273-td4557349.html\tO\n\t\nEE-2273\tO\tEE-2273\tO\n-\tO\t-\tO\nhttp://www.mulesoft.org/documentation/display/current/Mule+ESB+3.1.3+Release+Notes\tO\thttp://www.mulesoft.org/documentation/display/current/Mule+ESB+3.1.3+Release+Notes\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28628280\tO\t28628280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28628280/\tO\thttps://stackoverflow.com/questions/28628280/\tO\n\t\n\t\nuse\tO\tuse\tO\nbelow\tO\tbelow\tO\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nchoice\tO\tchoice\tO\nbased\tO\tbased\tO\nexception\tB-Library_Class\texception\tO\nstrategy\tO\tstrategy\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nflow\tB-HTML_XML_Tag\tflow\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4030\tI-Code_Block\tQ_4030\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13337146\tO\t13337146\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13337146/\tO\thttps://stackoverflow.com/questions/13337146/\tO\n\t\n\t\nlet\tO\tlet\tO\nsay\tO\tsay\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1263\tI-Code_Block\tQ_1263\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhow\tO\thow\tO\nwould\tO\twould\tO\ni\tO\ti\tO\nread\tO\tread\tO\nthat\tO\tthat\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nvector\tB-Data_Structure\tvector\tO\ncalled\tO\tcalled\tO\nvector\tB-Code_Block\tvector\tB-Code_Block\n<Item>\tI-Code_Block\t<Item>\tI-Code_Block\nitems\tI-Code_Block\titems\tI-Code_Block\n;\tO\t;\tO\nwhere\tO\twhere\tO\nItem\tB-Class_Name\tItem\tO\nis\tO\tis\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nthat\tO\tthat\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nnames\tO\tnames\tO\nas\tO\tas\tO\nlisted\tO\tlisted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nset()\tB-Library_Function\tset()\tO\nmethods\tO\tmethods\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\ni\tO\ti\tO\nread\tO\tread\tO\none\tO\tone\tO\nof\tO\tof\tO\neach\tO\teach\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nset\tO\tset\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nsetID()\tB-Function_Name\tsetID()\tO\nand\tO\tand\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nempty\tO\tempty\tO\nput\tO\tput\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\n-1\tB-Value\t-1\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nbasic\tO\tbasic\tO\nfile\tO\tfile\tO\nopen\tO\topen\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1264\tI-Code_Block\tQ_1264\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nshould\tO\tshould\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nistringstream\tB-Library_Class\tistringstream\tO\nor\tO\tor\tO\nwhat\tO\twhat\tO\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1265\tI-Code_Block\tQ_1265\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBUT\tO\tBUT\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\nstatement\tO\tstatement\tO\ncannot\tO\tcannot\tO\nresolve\tO\tresolve\tO\naddress\tO\taddress\tO\nof\tO\tof\tO\noverloaded\tO\toverloaded\tO\nfunction\tO\tfunction\tO\nat\tO\tat\tO\nline\tO\tline\tO\n:\tO\t:\tO\nifstream\tB-Code_Block\tifstream\tB-Code_Block\ninput(file_name)\tI-Code_Block\tinput(file_name)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13337146\tO\t13337146\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13337146/\tO\thttps://stackoverflow.com/questions/13337146/\tO\n\t\n\t\nThey\tO\tThey\tO\nway\tO\tway\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nis\tO\tis\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nsuitable\tO\tsuitable\tO\ninput\tO\tinput\tO\noperator\tB-Code_Block\toperator\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1707\tI-Code_Block\tA_1707\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOnce\tO\tOnce\tO\nthis\tO\tthis\tO\noperator\tB-Code_Block\toperator\tO\nis\tO\tis\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nusing\tO\tusing\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1708\tI-Code_Block\tA_1708\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5926858\tO\t5926858\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5926858/\tO\thttps://stackoverflow.com/questions/5926858/\tO\n\t\n\t\nI\tO\tI\tO\nwonder\tO\twonder\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\ntwo\tO\ttwo\tO\nconsecutive\tO\tconsecutive\tO\nlists\tB-Data_Structure\tlists\tO\nin\tO\tin\tO\nmarkdown\tO\tmarkdown\tO\nwithout\tO\twithout\tO\nthem\tO\tthem\tO\nbeing\tO\tbeing\tO\nmerged\tO\tmerged\tO\nautomatically\tO\tautomatically\tO\n:\tO\t:\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\na\tB-Value\ta\tO\n\t\nb\tB-Value\tb\tO\n\t\nx\tB-Value\tx\tO\n\t\ny\tB-Value\ty\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nmarkdown\tB-Language\tmarkdown\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nputs\tO\tputs\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nlist\tB-Data_Structure\tlist\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nelement\tO\telement\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nlist\tB-Data_Structure\tlist\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_425\tI-Code_Block\tQ_425\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDemo\tO\tDemo\tO\n:\tO\t:\tO\n\t\na\tB-Value\ta\tO\n\t\nb\tB-Value\tb\tO\n\t\nx\tB-Value\tx\tO\n\t\ny\tB-Value\ty\tO\n\t\nWhile\tO\tWhile\tO\nany\tO\tany\tO\nsolutions\tO\tsolutions\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nprefer\tO\tprefer\tO\none\tO\tone\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\npython-markdown\tB-Library\tpython-markdown\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5926858\tO\t5926858\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5926858/\tO\thttps://stackoverflow.com/questions/5926858/\tO\n\t\n\t\nThe\tO\tThe\tO\neasiest\tO\teasiest\tO\nand\tO\tand\tO\ncleanest\tO\tcleanest\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nis\tO\tis\tO\nadding\tO\tadding\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\nbetween\tO\tbetween\tO\nlists\tB-Data_Structure\tlists\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1096\tI-Code_Block\tA_1096\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nworking\tO\tworking\tO\nexample\tO\texample\tO\nin\tO\tin\tO\nstackoverflow\tB-Website\tstackoverflow\tO\n's\tO\t's\tO\nmarkdown\tB-Language\tmarkdown\tO\n:\tO\t:\tO\n\t\na\tB-Value\ta\tO\n\t\nb\tB-Value\tb\tO\n\t\nx\tB-Value\tx\tO\n\t\ny\tB-Value\ty\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsad\tO\tsad\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nbugs\tO\tbugs\tO\noccurs\tO\toccurs\tO\n:\tO\t:\tO\nsomeone\tO\tsomeone\tO\nmust\tO\tmust\tO\ngo\tO\tgo\tO\nand\tO\tand\tO\nfill\tO\tfill\tO\nthe\tO\tthe\tO\nbugs\tO\tbugs\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\ndifferent\tO\tdifferent\tO\nmarkdown\tB-Language\tmarkdown\tO\nimplementations\tO\timplementations\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4496476\tO\t4496476\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4496476/\tO\thttps://stackoverflow.com/questions/4496476/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nListView\tB-Library_Class\tListView\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntwo\tO\ttwo\tO\nentries\tO\tentries\tO\nin\tO\tin\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndisplayed\tO\tdisplayed\tO\ndifferently\tO\tdifferently\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\n.\tO\t.\tO\n\t\nNothing\tO\tNothing\tO\nfancy\tO\tfancy\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\ntext\tB-Library_Class\ttext\tO\nviews\tI-Library_Class\tviews\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntwo\tO\ttwo\tO\nentries\tO\tentries\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ndifferent\tO\tdifferent\tO\nsizes\tO\tsizes\tO\nand\tO\tand\tO\nweights\tO\tweights\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nmodifying\tO\tmodifying\tO\nthe\tO\tthe\tO\nArrayAdapter\tB-Library_Class\tArrayAdapter\tO\nclass\tO\tclass\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_311\tI-Code_Block\tQ_311\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\ninadvertantly\tO\tinadvertantly\tO\ncauses\tO\tcauses\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ntextviews\tB-Library_Class\ttextviews\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\non\tO\ton\tO\nthese\tO\tthese\tO\nspecial\tO\tspecial\tO\nattributes\tO\tattributes\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbecause\tO\tbecause\tO\ncause\tO\tcause\tO\ntextviews\tB-Library_Class\ttextviews\tO\nget\tO\tget\tO\n\"\tO\t\"\tO\nrecycled\tO\trecycled\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAbsListAdapter\tB-Library_Class\tAbsListAdapter\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4496476\tO\t4496476\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4496476/\tO\thttps://stackoverflow.com/questions/4496476/\tO\n\t\n\t\nTry\tO\tTry\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_475\tI-Code_Block\tA_475\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3629354\tO\t3629354\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3629354/\tO\thttps://stackoverflow.com/questions/3629354/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntables\tB-Data_Structure\ttables\tO\nwith\tO\twith\tO\ntheir\tO\ttheir\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n(\tO\t(\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nrelevant\tO\trelevant\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nare\tO\tare\tO\nlisted\tO\tlisted\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nforgotten\tO\tforgotten\tO\nto\tO\tto\tO\nmention\tO\tmention\tO\nthat\tO\tthat\tO\nCoreHourID\tB-Variable_Name\tCoreHourID\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nfield\tO\tfield\tO\n,\tO\t,\tO\ntable\tB-Data_Structure\ttable\tO\ncan\tO\tcan\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_259\tI-Code_Block\tQ_259\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSorry\tO\tSorry\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbig\tO\tbig\tO\nlayout\tO\tlayout\tO\n,\tO\t,\tO\nI\tO\tI\tO\nreally\tO\treally\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nproperly\tO\tproperly\tO\npost\tO\tpost\tO\ntable\tB-Data_Structure\ttable\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nhere\tO\there\tO\n's\tO\t's\tO\nan\tO\tan\tO\nattempt\tO\tattempt\tO\nat\tO\tat\tO\nexplaining\tO\texplaining\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nEvery\tO\tEvery\tO\nday\tO\tday\tO\n,\tO\t,\tO\na\tO\ta\tO\nrow\tB-Data_Structure\trow\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ninserted\tO\tinserted\tO\nin\tO\tin\tO\nEntry\tB-Variable_Name\tEntry\tB-Code_Block\nand\tO\tand\tO\nHour\tB-Variable_Name\tHour\tB-Code_Block\nfor\tO\tfor\tO\nall\tO\tall\tO\nemployees\tO\temployees\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nWorkingFromHome\tB-Variable_Name\tWorkingFromHome\tB-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nEntry\tB-Variable_Name\tEntry\tB-Code_Block\ntable\tB-Data_Structure\ttable\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nplace\tO\tplace\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nEmployeeNumber\tB-Variable_Name\tEmployeeNumber\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nJustifyDate\tB-Variable_Name\tJustifyDate\tB-Code_Block\nit\tO\tit\tO\nshould\tO\tshould\tO\nadd\tO\tadd\tO\nwhatever\tO\twhatever\tO\nday\tO\tday\tO\nit\tO\tit\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nEntryDate\tB-Variable_Name\tEntryDate\tB-Code_Block\nfield\tO\tfield\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nadd\tO\tadd\tO\nthat\tO\tthat\tO\nday\tO\tday\tO\n's\tO\t's\tO\ndate\tO\tdate\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\npart\tO\tpart\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nInHour\tB-Variable_Name\tInHour\tB-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncorresponding\tO\tcorresponding\tO\nCoreHour\tB-Variable_Name\tCoreHour\tB-Code_Block\nrow\tB-Data_Structure\trow\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nHour\tB-Variable_Name\tHour\tB-Code_Block\ntable\tO\ttable\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nEntryID\tB-Variable_Name\tEntryID\tB-Code_Block\nthat\tO\tthat\tO\njust\tO\tjust\tO\ngot\tO\tgot\tO\ninserted\tO\tinserted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nEntry\tB-Variable_Name\tEntry\tB-Code_Block\ntable\tB-Data_Structure\ttable\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nInHour\tB-Variable_Name\tInHour\tB-Code_Block\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nEntryDate\tB-Variable_Name\tEntryDate\tB-Code_Block\nand\tO\tand\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nOutHour\tB-Variable_Name\tOutHour\tB-Code_Block\nfield\tO\tfield\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nDateTime\tB-Data_Type\tDateTime\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nOutHour\tB-Variable_Name\tOutHour\tB-Code_Block\ncorresponding\tO\tcorresponding\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nemployee\tO\temployee\tO\n's\tO\t's\tO\nCoreHourID\tB-Variable_Name\tCoreHourID\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstruggling\tO\tstruggling\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n,\tO\t,\tO\nso\tO\tso\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nAny\tO\tAny\tO\ncomments/questions\tO\tcomments/questions\tO\nregarding\tO\tregarding\tO\nmy\tO\tmy\tO\nexplanation\tO\texplanation\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwill\tO\twill\tO\ngladly\tO\tgladly\tO\nrespond\tO\trespond\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3629354\tO\t3629354\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3629354/\tO\thttps://stackoverflow.com/questions/3629354/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nencapsulated\tO\tencapsulated\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nstored\tO\tstored\tO\nprocedure\tO\tprocedure\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\nvia\tO\tvia\tO\na\tO\ta\tO\nscheduled\tO\tscheduled\tO\njob\tO\tjob\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nexactly\tO\texactly\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nmeant\tO\tmeant\tO\nby\tO\tby\tO\nfor\tO\tfor\tB-Code_Block\nJustifyDate\tB-Variable_Name\tJustifyDate\tI-Code_Block\nit\tO\tit\tI-Code_Block\nshould\tO\tshould\tI-Code_Block\nadd\tO\tadd\tI-Code_Block\nwhatever\tO\twhatever\tI-Code_Block\nday\tO\tday\tI-Code_Block\nit\tO\tit\tI-Code_Block\nis\tO\tis\tI-Code_Block\nwhen\tO\twhen\tI-Code_Block\nthe\tO\tthe\tI-Code_Block\njob\tO\tjob\tI-Code_Block\nis\tO\tis\tI-Code_Block\nrunning\tO\trunning\tI-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_389\tI-Code_Block\tA_389\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n(\tO\t(\tO\nRevised\tO\tRevised\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nOutput\tO\tOutput\tO\nclause\tO\tclause\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n771491\tO\t771491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/771491/\tO\thttps://stackoverflow.com/questions/771491/\tO\n\t\n\t\nGiven\tO\tGiven\tO\nthis\tO\tthis\tO\ntable\tB-Data_Structure\ttable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_41\tI-Code_Block\tQ_41\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWith\tO\tWith\tO\nthis\tO\tthis\tO\nmodel\tO\tmodel\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_42\tI-Code_Block\tQ_42\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nDataContext\tB-Library_Class\tDataContext\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\nthe\tO\tthe\tO\nArbitraryText\tB-Variable_Name\tArbitraryText\tB-Code_Block\nproperty\tO\tproperty\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nExecuteQuery\tB-Library_Function\tExecuteQuery\tB-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_43\tI-Code_Block\tQ_43\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nentity\tO\tentity\tO\nmapping\tO\tmapping\tO\nalgorithm\tO\talgorithm\tO\nignores\tO\tignores\tO\nany\tO\tany\tO\nproperty\tO\tproperty\tO\nnot\tO\tnot\tO\nmarked\tO\tmarked\tO\nwith\tO\twith\tO\nColumnAttribute\tB-Library_Variable\tColumnAttribute\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nanother\tO\tanother\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nprefer\tO\tprefer\tO\nnot\tO\tnot\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nmapping\tO\tmapping\tO\nmyself\tO\tmyself\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nmy\tO\tmy\tO\nonly\tO\tonly\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nannoying\tO\tannoying\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nDataContext.ExecuteQuery\tB-Library_Function\tDataContext.ExecuteQuery\tO\nfunction\tO\tfunction\tO\nwill\tO\twill\tO\nfill\tO\tfill\tO\na\tO\ta\tO\nPOCO\tB-Class_Name\tPOCO\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nquery\tO\tquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_44\tI-Code_Block\tQ_44\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nan\tO\tan\tO\ninner\tO\tinner\tO\nclass\tO\tclass\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nLINQ-mapped\tB-Library\tLINQ-mapped\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nholds\tO\tholds\tO\nthe\tO\tthe\tO\nextra\tO\textra\tO\ndata\tO\tdata\tO\nmy\tO\tmy\tO\naggregate\tO\taggregate\tO\nquery\tO\tquery\tO\nreturns\tO\treturns\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nsub-optimal\tO\tsub-optimal\tO\n,\tO\t,\tO\nas\tO\tas\tO\nsome\tO\tsome\tO\nproperties\tO\tproperties\tO\nare\tO\tare\tO\nduplicated\tO\tduplicated\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nId\tB-Variable_Name\tId\tO\nand\tO\tand\tO\nText\tB-Variable_Name\tText\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n771491\tO\t771491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/771491/\tO\thttps://stackoverflow.com/questions/771491/\tO\n\t\n\t\nNot\tO\tNot\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nprobably\tO\tprobably\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\ngrungy\tO\tgrungy\tO\nthings\tO\tthings\tO\nto\tO\tto\tO\nmarry\tO\tmarry\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nUDF\tO\tUDF\tO\n,\tO\t,\tO\nperhaps\tO\tperhaps\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nthe\tO\tthe\tO\ncolumns\tB-Data_Structure\tcolumns\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nUDF\tO\tUDF\tO\njust\tO\tjust\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\narbitrary\tO\tarbitrary\tO\ntext\tB-Variable_Name\ttext\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncomment-id\tB-Variable_Name\tcomment-id\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_71\tI-Code_Block\tA_71\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlternatively\tO\tAlternatively\tO\n-\tO\t-\tO\nA\tO\tA\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nvariants\tO\tvariants\tO\non\tO\ton\tO\nExecuteQuery\tB-Library_Function\tExecuteQuery\tB-Code_Block\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\napproach\tO\tapproach\tO\nfor\tO\tfor\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\ndifferent\tO\tdifferent\tO\nthings.\tO\tthings.\tO\n.\tO\t.\tO\n\t\nPersonally\tO\tPersonally\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nprobably\tO\tprobably\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nside-step\tO\tside-step\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nfirst\tO\tfirst\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35258687\tO\t35258687\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35258687/\tO\thttps://stackoverflow.com/questions/35258687/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nappend\tO\tappend\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\nline\tO\tline\tO\nin\tO\tin\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nCent\tB-Operating_System\tCent\tO\nOS\tI-Operating_System\tOS\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4318\tI-Code_Block\tQ_4318\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nso\tO\tso\tO\nadding\tO\tadding\tO\nhash\tO\thash\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n'\tO\t'\tO\n\t\nUsing\tO\tUsing\tO\nsed\tB-Code_Block\tsed\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\ntrick\tO\ttrick\tO\n?\tO\t?\tO\n\t\n**\tO\t**\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\n\t\n**\tO\t**\tO\njust\tO\tjust\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\ngeneral\tO\tgeneral\tO\ninformation\tO\tinformation\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nsudoers\tB-File_Type\tsudoers\tO\nfile\tO\tfile\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\npart\tO\tpart\tO\nof\tO\tof\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27024754\tO\t27024754\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27024754/\tO\thttps://stackoverflow.com/questions/27024754/\tO\n\t\n\t\nWhile\tO\tWhile\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\ndifference\tO\tdifference\tO\nbranches\tO\tbranches\tO\nin\tO\tin\tO\ngit\tB-Application\tgit\tO\nI\tO\tI\tO\nusually\tO\tusually\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nall\tO\tall\tO\nbranches\tO\tbranches\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\nwith\tO\twith\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\nusual\tO\tusual\tO\nworkflow\tO\tworkflow\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollow\tO\tfollow\tO\n\t\nWork\tO\tWork\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbranch\tO\tbranch\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nfeature\tB-Variable_Name\tfeature\tO\n1)\tI-Variable_Name\t1)\tO\n\t\nCheckout\tO\tCheckout\tO\nmaster\tO\tmaster\tO\nand\tO\tand\tO\nre-base\tO\tre-base\tO\nbranch\tO\tbranch\tO\n\t\nCheckout\tO\tCheckout\tO\nanother\tO\tanother\tO\nbranch\tO\tbranch\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nfeature\tB-Variable_Name\tfeature\tO\n2)\tI-Variable_Name\t2)\tO\n\t\nRe-base\tO\tRe-base\tO\n(\tO\t(\tO\nfeature\tO\tfeature\tO\n2)\tO\t2)\tO\nbranch\tO\tbranch\tO\nwith\tO\twith\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nmy\tO\tmy\tO\nmaster\tO\tmaster\tO\nas\tO\tas\tO\nwells\tO\twells\tO\nas\tO\tas\tO\nfeature2\tB-Variable_Name\tfeature2\tO\nbranch\tO\tbranch\tO\nare\tO\tare\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\nwith\tO\twith\tO\nfeature\tB-Variable_Name\tfeature\tO\n1\tI-Variable_Name\t1\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\ntwo\tO\ttwo\tO\ncommand\tO\tcommand\tO\ncheckout\tO\tcheckout\tO\nthen\tO\tthen\tO\nre-base\tO\tre-base\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nshort\tO\tshort\tO\ncommand\tO\tcommand\tO\nfor\tO\tfor\tO\nthese\tO\tthese\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27024754\tO\t27024754\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27024754/\tO\thttps://stackoverflow.com/questions/27024754/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3734\tI-Code_Block\tA_3734\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\n<branch>\tO\t<branch>\tB-Code_Block\nis\tO\tis\tO\nspecified\tO\tspecified\tO\n,\tO\t,\tO\ngit\tB-Code_Block\tgit\tO\nrebase\tI-Code_Block\trebase\tO\nwill\tO\twill\tO\nperform\tO\tperform\tO\nan\tO\tan\tO\nautomatic\tO\tautomatic\tO\ngit\tB-Code_Block\tgit\tO\ncheckout\tI-Code_Block\tcheckout\tO\nbefore\tO\tbefore\tO\ndoing\tO\tdoing\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nit\tO\tit\tO\nremains\tO\tremains\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nbranch\tO\tbranch\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42894405\tO\t42894405\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42894405/\tO\thttps://stackoverflow.com/questions/42894405/\tO\n\t\n\t\nAlthough\tO\tAlthough\tO\nI\tO\tI\tO\nreserved\tO\treserved\tO\na\tO\ta\tO\nstatic\tO\tstatic\tO\nIP\tO\tIP\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nwarning\tO\twarning\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nnot\tO\tnot\tO\nhaving\tO\thaving\tO\nload\tO\tload\tO\nbalancer\tO\tbalancer\tO\ncreated\tO\tcreated\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5482\tI-Code_Block\tQ_5482\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42894405\tO\t42894405\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42894405/\tO\thttps://stackoverflow.com/questions/42894405/\tO\n\t\n\t\nOK\tO\tOK\tO\n,\tO\t,\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nonly\tO\tonly\tO\nwith\tO\twith\tO\nregional\tO\tregional\tO\nIPs\tO\tIPs\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45680804\tO\t45680804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45680804/\tO\thttps://stackoverflow.com/questions/45680804/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\n.mp3\tB-File_Type\t.mp3\tB-Code_Block\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nDSX\tB-Application\tDSX\tO\nfor\tO\tfor\tO\nMusic\tO\tMusic\tO\nInformation\tO\tInformation\tO\nRetrieval\tO\tRetrieval\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nlibrosa\tB-Library\tlibrosa\tB-Code_Block\nlibrary\tO\tlibrary\tO\nin\tO\tin\tO\npython\tB-Language\tpython\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\npurpose\tO\tpurpose\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nload\tO\tload\tO\n.mp3\tB-File_Type\t.mp3\tB-Code_Block\nfiles\tO\tfiles\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nabsence\tO\tabsence\tO\nof\tO\tof\tO\nffmpeg\tB-Library\tffmpeg\tB-Code_Block\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nffmpeg\tB-Library\tffmpeg\tB-Code_Block\nin\tO\tin\tO\nDSX\tB-Application\tDSX\tO\nor\tO\tor\tO\nany\tO\tany\tO\nother\tO\tother\tO\nwalk-around\tO\twalk-around\tO\nto\tO\tto\tO\nload\tO\tload\tO\n.mp3\tB-File_Type\t.mp3\tB-Code_Block\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nDSX\tB-Application\tDSX\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45680804\tO\t45680804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45680804/\tO\thttps://stackoverflow.com/questions/45680804/\tO\n\t\n\t\nAny\tO\tAny\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlibraries\tO\tlibraries\tO\nthat\tO\tthat\tO\nneed\tO\tneed\tO\nsudo\tO\tsudo\tO\npermissions\tO\tpermissions\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\ninstalled\tO\tinstalled\tO\non\tO\ton\tO\nSpark\tB-Library\tSpark\tO\nservice\tO\tservice\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\nnotebook\tO\tnotebook\tO\non\tO\ton\tO\nDSX\tB-Application\tDSX\tO\nby\tO\tby\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\ninstall\tO\tinstall\tO\nlibraries\tO\tlibraries\tO\nwith\tO\twith\tO\n--user\tB-Code_Block\t--user\tB-Code_Block\nflag\tO\tflag\tO\nin\tO\tin\tO\npip\tB-Code_Block\tpip\tO\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nIBM\tB-Library\tIBM\tO\nSpark\tI-Library\tSpark\tO\nservice\tO\tservice\tO\nteam\tO\tteam\tO\ncan\tO\tcan\tO\ninstall\tO\tinstall\tO\nthis\tO\tthis\tO\nlibraries\tO\tlibraries\tO\nwhich\tO\twhich\tO\nneed\tO\tneed\tO\nsudo\tB-Code_Block\tsudo\tO\npermissions\tO\tpermissions\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nraise\tO\traise\tO\na\tO\ta\tO\nrequest/idea\tO\trequest/idea\tO\nhere\tO\there\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nlibrary\tO\tlibrary\tO\ninstalled\tO\tinstalled\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nhttps://ibmwatsondataplatform.ideas.aha.io/?category=6441922592725708622\tO\thttps://ibmwatsondataplatform.ideas.aha.io/?category=6441922592725708622\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\n\t\nCharles\tB-User_Name\tCharles\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39745237\tO\t39745237\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39745237/\tO\thttps://stackoverflow.com/questions/39745237/\tO\n\t\n\t\nHi\tO\tHi\tO\nfellow\tO\tfellow\tO\nProgrammers\tO\tProgrammers\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nrelatively\tO\trelatively\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nWordpress\tB-Website\tWordpress\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nusually\tO\tusually\tO\nused\tO\tused\tO\nTypo3\tB-Website\tTypo3\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\nregarding\tO\tregarding\tO\nthe\tO\tthe\tO\ncustom\tO\tcustom\tO\nsidebars\tB-User_Interface_Element\tsidebars\tO\nin\tO\tin\tO\nWP\tB-Website\tWP\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nfunctions.php\tB-File_Name\tfunctions.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5016\tI-Code_Block\tQ_5016\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n4\tO\t4\tO\npanels\tB-User_Interface_Element\tpanels\tO\nfor\tO\tfor\tO\ninfo\tO\tinfo\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nhome\tO\thome\tO\npage\tO\tpage\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfooter\tB-User_Interface_Element\tfooter\tO\nanother\tO\tanother\tO\nsmall\tO\tsmall\tO\nfield\tO\tfield\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nauthor\tO\tauthor\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nbio\tO\tbio\tO\nor\tO\tor\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nindex.php\tB-File_Name\tindex.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5017\tI-Code_Block\tQ_5017\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSame\tO\tSame\tO\nimplementation\tO\timplementation\tO\nis\tO\tis\tO\nin\tO\tin\tO\nfooter.php\tB-File_Name\tfooter.php\tO\nat\tO\tat\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nposition\tO\tposition\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nProblems\tO\tProblems\tO\nare\tO\tare\tO\n:\tO\t:\tO\n\t\nContent\tO\tContent\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\nvia\tO\tvia\tO\nbackend\tO\tbackend\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nthemes\tO\tthemes\tO\n->\tO\t->\tO\nwidgets\tO\twidgets\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nand\tO\tand\tO\nis\tO\tis\tO\ndeleted\tO\tdeleted\tO\nnext\tO\tnext\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nbackend\tO\tbackend\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nerrors\tO\terrors\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwp-content/debug.log\tB-File_Name\twp-content/debug.log\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfixed\tO\tfixed\tO\nall\tO\tall\tO\ncommon\tO\tcommon\tO\nones\tO\tones\tO\nafter\tO\tafter\tO\nactivating\tO\tactivating\tO\nthe\tO\tthe\tO\noption\tO\toption\tO\nin\tO\tin\tO\nwp-config.php\tB-File_Name\twp-config.php\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\nbasic\tO\tbasic\tO\nthinking\tO\tthinking\tO\nmistakes\tO\tmistakes\tO\n?\tO\t?\tO\n\t\nBest\tO\tBest\tO\nRegards\tO\tRegards\tO\nsKylo\tB-User_Name\tsKylo\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39745237\tO\t39745237\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39745237/\tO\thttps://stackoverflow.com/questions/39745237/\tO\n\t\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nall\tO\tall\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\none\tO\tone\tO\nmistake\tO\tmistake\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\n%d\tB-Code_Block\t%d\tB-Code_Block\nto\tO\tto\tO\nconcatenate\tO\tconcatenate\tO\nthe\tO\tthe\tO\ndecimals\tB-Data_Type\tdecimals\tO\nafter\tO\tafter\tO\nyour\tO\tyour\tO\nid\tB-Variable_Name\tid\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nnecessary\tO\tnecessary\tO\nsince\tO\tsince\tO\n%d\tB-Code_Block\t%d\tO\nis\tO\tis\tO\nautomatically\tO\tautomatically\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsupplied\tO\tsupplied\tO\nid\tB-Variable_Name\tid\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nfind\tO\tfind\tO\ncodex\tB-Website\tcodex\tO\nlink\tO\tlink\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nremoved\tO\tremoved\tO\nthe\tO\tthe\tO\n%d\tB-Code_Block\t%d\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nid\tB-Variable_Name\tid\tO\nsection\tO\tsection\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nSolution\tO\tSolution\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5723\tI-Code_Block\tA_5723\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5724\tI-Code_Block\tA_5724\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n%d\tB-Code_Block\t%d\tO\nto\tO\tto\tO\nid\tO\tid\tO\nof\tO\tof\tO\nregister_sidebars\tB-Library_Function\tregister_sidebars\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ncodex\tB-Website\tcodex\tO\n,\tO\t,\tO\n\t\nit\tO\tit\tO\nsays\tO\tsays\tO\n:\tO\t:\tO\n\t\n\"\tO\t\"\tO\n%d\tB-Code_Block\t%d\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nadded\tO\tadded\tO\nautomatically\tO\tautomatically\tO\nto\tO\tto\tO\nsupplied\tO\tsupplied\tO\n'\tO\t'\tO\nid\tB-Variable_Name\tid\tO\n'\tO\t'\tO\nvalue\tO\tvalue\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n;\tO\t;\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nSidebar-1\tB-Variable_Name\tSidebar-1\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nSidebar-2\tB-Variable_Name\tSidebar-2\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nSidebar-3\tB-Variable_Name\tSidebar-3\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28776895\tO\t28776895\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28776895/\tO\thttps://stackoverflow.com/questions/28776895/\tO\n\t\n\t\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\ni\tO\ti\tO\nam\tO\tam\tO\nasking\tO\tasking\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nhighest\tO\thighest\tO\nnumeric\tO\tnumeric\tO\nvalue\tO\tvalue\tO\nX\tB-Variable_Name\tX\tO\nwill\tO\twill\tO\nhold\tO\thold\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nlowest\tO\tlowest\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nRandom\tB-Code_Block\tRandom\tO\nrand\tI-Code_Block\trand\tO\n=\tI-Code_Block\t=\tO\nnew\tI-Code_Block\tnew\tO\nRandom()\tI-Code_Block\tRandom()\tO\n;\tI-Code_Block\t;\tO\n\t\nint\tB-Code_Block\tint\tO\nx\tI-Code_Block\tx\tO\n=\tI-Code_Block\t=\tO\n1\tI-Code_Block\t1\tO\n-\tI-Code_Block\t-\tO\nrand.Next()%15\tI-Code_Block\trand.Next()%15\tO\n;\tI-Code_Block\t;\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nentered\tO\tentered\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nreceive\tO\treceive\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n-12\tB-Value\t-12\tO\nas\tO\tas\tO\na\tO\ta\tO\nresult\tO\tresult\tO\nbut\tO\tbut\tO\ncannot\tO\tcannot\tO\nget\tO\tget\tO\na\tO\ta\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28776895\tO\t28776895\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28776895/\tO\thttps://stackoverflow.com/questions/28776895/\tO\n\t\n\t\nrand.Next()\tB-Code_Block\trand.Next()\tB-Code_Block\n%\tI-Code_Block\t%\tI-Code_Block\n15\tI-Code_Block\t15\tI-Code_Block\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nbetween\tO\tbetween\tO\n0\tB-Value\t0\tO\nand\tO\tand\tO\n14\tB-Value\t14\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nIf\tO\tIf\tO\nwe\tO\twe\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ngenerates\tO\tgenerates\tO\nonly\tO\tonly\tO\npositive\tO\tpositive\tO\nintegers\tB-Data_Type\tintegers\tO\n,\tO\t,\tO\notherwise\tO\totherwise\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\na\tO\ta\tO\nnegative\tO\tnegative\tO\nnumber\tO\tnumber\tO\ntoo\tO\ttoo\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nhere\tO\there\tO\nhow\tO\thow\tO\n:\tO\t:\tO\n\t\nhttps://math.stackexchange.com/questions/519845/modulo-of-a-negative-number\tO\thttps://math.stackexchange.com/questions/519845/modulo-of-a-negative-number\tO\n\t\nThen\tO\tThen\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\n1\tB-Code_Block\t1\tO\n-\tI-Code_Block\t-\tO\n{\tI-Code_Block\t{\tO\na\tI-Code_Block\ta\tO\nnumber\tI-Code_Block\tnumber\tO\nfrom\tI-Code_Block\tfrom\tO\nthe\tI-Code_Block\tthe\tO\nset\tI-Code_Block\tset\tO\nof\tI-Code_Block\tof\tO\n0\tI-Code_Block\t0\tO\nand\tI-Code_Block\tand\tO\n14}\tI-Code_Block\t14}\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28776895\tO\t28776895\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28776895/\tO\thttps://stackoverflow.com/questions/28776895/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4057\tI-Code_Block\tA_4057\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\npay\tO\tpay\tO\nattention\tO\tattention\tO\nthat\tO\tthat\tO\n\"rand.Next()\tB-Code_Block\t\"rand.Next()\tO\n%\tI-Code_Block\t%\tO\n15\tI-Code_Block\t15\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\n\"rand.Next(15)\"\tB-Library_Function\t\"rand.Next(15)\"\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4058\tI-Code_Block\tA_4058\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nrand.Next(minValue,maxValue)\tB-Library_Function\trand.Next(minValue,maxValue)\tO\nwhere\tO\twhere\tO\nminValue\tB-Variable_Name\tminValue\tO\n-\tO\t-\tO\ninclusive\tO\tinclusive\tO\n,\tO\t,\tO\nmaxValue\tB-Variable_Name\tmaxValue\tO\n-\tO\t-\tO\nexclusive\tO\texclusive\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6008932\tO\t6008932\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6008932/\tO\thttps://stackoverflow.com/questions/6008932/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\n.NET\tB-Library\t.NET\tO\nentity\tI-Library\tentity\tO\nframework\tI-Library\tframework\tO\n4.1\tB-Version\t4.1\tO\nwith\tO\twith\tO\ncode-first\tO\tcode-first\tO\napproach\tO\tapproach\tO\nto\tO\tto\tO\neffectively\tO\teffectively\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nhere\tO\there\tO\nsimplified\tO\tsimplified\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\ntable\tB-Data_Structure\ttable\tO\nwith\tO\twith\tO\ntens\tO\ttens\tO\nof\tO\tof\tO\nthousands\tO\tthousands\tO\nof\tO\tof\tO\nentries\tO\tentries\tO\n.\tO\t.\tO\n\t\nSeveral\tO\tSeveral\tO\nusers\tO\tusers\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\n\t\nView\tO\tView\tO\nthe\tO\tthe\tO\n(\tO\t(\tO\nentire\tO\tentire\tO\n)\tO\t)\tO\ntable\tB-Data_Structure\ttable\tO\nin\tO\tin\tO\na\tO\ta\tO\nGridRow\tB-Library_Class\tGridRow\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nimplied\tO\timplied\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nTable\tB-Data_Structure\tTable\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndownloaded\tO\tdownloaded\tO\n.\tO\t.\tO\n\t\nModify\tO\tModify\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nany\tO\tany\tO\nrandom\tO\trandom\tO\nrow\tB-Data_Structure\trow\tO\n,\tO\t,\tO\nchanges\tO\tchanges\tO\nare\tO\tare\tO\nfrequent\tO\tfrequent\tO\nbut\tO\tbut\tO\nneed\tO\tneed\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\npersisted\tO\tpersisted\tO\nimmediately\tO\timmediately\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nexpected\tO\texpected\tO\nthat\tO\tthat\tO\ndifferent\tO\tdifferent\tO\nusers\tO\tusers\tO\nwill\tO\twill\tO\nmodify\tO\tmodify\tO\ndifferent\tO\tdifferent\tO\nrows\tB-Data_Structure\trows\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nalways\tO\talways\tO\ntrue\tO\ttrue\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nloss\tO\tloss\tO\nof\tO\tof\tO\nchanges\tO\tchanges\tO\nis\tO\tis\tO\npermitted\tO\tpermitted\tO\n,\tO\t,\tO\nas\tO\tas\tO\nusers\tO\tusers\tO\nwill\tO\twill\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\nupdate\tO\tupdate\tO\nsame\tO\tsame\tO\nrows\tB-Data_Structure\trows\tO\nto\tO\tto\tO\nsame\tO\tsame\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\noccasion\tO\toccasion\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\nrows\tB-Data_Structure\trows\tO\n.\tO\t.\tO\n\t\nSounds\tO\tSounds\tO\nsimple\tO\tsimple\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ninitial\tO\tinitial\tO\napproach\tO\tapproach\tO\nwas\tO\twas\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nlong-running\tO\tlong-running\tO\nDbContext\tB-Library_Class\tDbContext\tB-Code_Block\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\none\tO\tone\tO\nDbContext\tB-Library_Class\tDbContext\tB-Code_Block\nwas\tO\twas\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nentities\tO\tentities\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nSaveChanges()\tB-Library_Function\tSaveChanges()\tB-Code_Block\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n,\tO\t,\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlegwork\tO\tlegwork\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nmany\tO\tmany\tO\nhave\tO\thave\tO\npointed\tO\tpointed\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\noptimal\tO\toptimal\tO\nsolution\tO\tsolution\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlong\tO\tlong\tO\nrun\tO\trun\tO\n,\tO\t,\tO\nnotably\tO\tnotably\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstill\tO\tstill\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\nreasons\tO\treasons\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\na\tO\ta\tO\nunit-of-work\tO\tunit-of-work\tO\nis\tO\tis\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nscenario\tO\tscenario\tO\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nuser\tO\tuser\tO\nchooses\tO\tchooses\tO\nherself\tO\therself\tO\nwhen\tO\twhen\tO\nto\tO\tto\tO\npersist\tO\tpersist\tO\nchanges\tO\tchanges\tO\n,\tO\t,\tO\nand\tO\tand\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nsay\tO\tsay\tO\nthat\tO\tthat\tO\nclient\tB-Application\tclient\tO\nalways\tO\talways\tO\nwins\tO\twins\tO\nfor\tO\tfor\tO\nsimplicity\tO\tsimplicity\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nalso\tO\talso\tO\nimportant\tO\timportant\tO\nto\tO\tto\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nobjects\tO\tobjects\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nbeen\tO\tbeen\tO\ntouched\tO\ttouched\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\noverwrite\tO\toverwrite\tO\nany\tO\tany\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\napproach\tO\tapproach\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nchanges\tO\tchanges\tO\nmanually\tO\tmanually\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\nobjects\tO\tobjects\tO\nthat\tO\tthat\tO\ntrack\tO\ttrack\tO\nchanges\tO\tchanges\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\ntoo\tO\ttoo\tO\nfamiliar\tO\tfamiliar\tO\nwith\tO\twith\tO\nsuch\tO\tsuch\tO\ntechniques\tO\ttechniques\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nwelcome\tO\twelcome\tO\na\tO\ta\tO\nnudge\tO\tnudge\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ndirection\tO\tdirection\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nwishy-washy\tO\twishy-washy\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\nit\tO\tit\tO\nas\tO\tas\tO\nmore\tO\tmore\tO\nfundamental\tO\tfundamental\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlack\tO\tlack\tO\nfundamental\tO\tfundamental\tO\nunderstanding\tO\tunderstanding\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\nof\tO\tof\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nme\tO\tme\tO\nthat\tO\tthat\tO\nlong\tO\tlong\tO\nliving\tO\tliving\tO\nDbContext\tB-Library_Class\tDbContext\tB-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nway\tO\tway\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nknowledgeable\tO\tknowledgeable\tO\npeople\tO\tpeople\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\notherwise\tO\totherwise\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nleads\tO\tleads\tO\nme\tO\tme\tO\nto\tO\tto\tO\nconfusion\tO\tconfusion\tO\nand\tO\tand\tO\nimprecise\tO\timprecise\tO\nquestions\tO\tquestions\tO\n.\tO\t.\tO\n\t\nEDIT1\tO\tEDIT1\tO\n\t\nAnother\tO\tAnother\tO\npoint\tO\tpoint\tO\nof\tO\tof\tO\nconfusion\tO\tconfusion\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nexistance\tO\texistance\tO\nof\tO\tof\tO\nLocal\tB-Library_Variable\tLocal\tB-Code_Block\nproperty\tO\tproperty\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nDbSet\tB-Library_Class\tDbSet\tB-Code_Block\n<>\tI-Library_Class\t<>\tI-Code_Block\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ninvites\tO\tinvites\tO\nme\tO\tme\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nlong\tO\tlong\tO\nrunning\tO\trunning\tO\ncontext\tO\tcontext\tO\n,\tO\t,\tO\nas\tO\tas\tO\nanother\tO\tanother\tO\nuser\tO\tuser\tO\nhas\tO\thas\tO\nposted\tO\tposted\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6008932\tO\t6008932\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6008932/\tO\thttps://stackoverflow.com/questions/6008932/\tO\n\t\n\t\nSounds\tO\tSounds\tO\nto\tO\tto\tO\nme\tO\tme\tO\nlike\tO\tlike\tO\nyour\tO\tyour\tO\nusers\tO\tusers\tO\ncould\tO\tcould\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\n(\tO\t(\tO\ncached\tO\tcached\tO\n)\tO\t)\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nindefinate\tO\tindefinate\tO\nperiod\tO\tperiod\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlonger\tO\tlonger\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\ncached\tO\tcached\tO\ndata\tO\tdata\tO\nthe\tO\tthe\tO\ngreater\tO\tgreater\tO\nthe\tO\tthe\tO\nodds\tO\todds\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\ncould\tO\tcould\tO\nbecome\tO\tbecome\tO\ndisconnected\tO\tdisconnected\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nconnection\tO\tconnection\tO\nin\tO\tin\tO\nDbContext\tB-Library_Class\tDbContext\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nis\tO\tis\tO\nEF\tB-Library\tEF\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nwell\tO\twell\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\noccaisionally\tO\toccaisionally\tO\nconnected\tO\tconnected\tO\narchitecture\tO\tarchitecture\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nimplementing\tO\timplementing\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nsolve\tO\tsolve\tO\nmany\tO\tmany\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nissues\tO\tissues\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6008932\tO\t6008932\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6008932/\tO\thttps://stackoverflow.com/questions/6008932/\tO\n\t\n\t\nProblem\tO\tProblem\tO\nwith\tO\twith\tO\nlong\tO\tlong\tO\nrunning\tO\trunning\tO\ncontext\tO\tcontext\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nrefresh\tO\trefresh\tO\ndata\tO\tdata\tO\n-\tO\t-\tO\nI\tO\tI\tO\nmore\tO\tmore\tO\ndiscussed\tO\tdiscussed\tO\nproblems\tO\tproblems\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nuser\tO\tuser\tO\nopens\tO\topens\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nand\tO\tand\tO\nmodify\tO\tmodify\tO\ndata\tO\tdata\tO\nhalf\tO\thalf\tO\nan\tO\tan\tO\nhour\tO\thour\tO\nshe\tO\tshe\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\nWPF\tB-Library\tWPF\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nbusiness\tO\tbusiness\tO\naction\tO\taction\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nOpen\tO\tOpen\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n\t\nDo\tO\tDo\tO\nas\tO\tas\tO\nmany\tO\tmany\tO\nactions\tO\tactions\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n\t\nTrigger\tO\tTrigger\tO\nsaving\tO\tsaving\tO\nchanges\tO\tchanges\tO\n\t\nThen\tO\tThen\tO\nthis\tO\tthis\tO\nwhole\tO\twhole\tO\nis\tO\tis\tO\nunit\tO\tunit\tO\nof\tO\tof\tO\nwork\tO\twork\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nsingle\tO\tsingle\tO\ncontext\tO\tcontext\tO\ninstance\tO\tinstance\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nscenario\tO\tscenario\tO\nwhere\tO\twhere\tO\nlast\tO\tlast\tO\nedit\tO\tedit\tO\nwins\tO\twins\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nuntil\tO\tuntil\tO\nsomebody\tO\tsomebody\tO\nelse\tO\telse\tO\ndeletes\tO\tdeletes\tO\nrecord\tO\trecord\tO\nwhich\tO\twhich\tO\ncurrent\tO\tcurrent\tO\nuser\tO\tuser\tO\nedits\tO\tedits\tO\n.\tO\t.\tO\n\t\nAdditionally\tO\tAdditionally\tO\nafter\tO\tafter\tO\nsaving\tO\tsaving\tO\nor\tO\tor\tO\ncancelling\tO\tcancelling\tO\nchanges\tO\tchanges\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ndispose\tO\tdispose\tO\ncurrent\tO\tcurrent\tO\ncontext\tO\tcontext\tO\nand\tO\tand\tO\nload\tO\tload\tO\ndata\tO\tdata\tO\nagain\tO\tagain\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nhave\tO\thave\tO\nfresh\tO\tfresh\tO\ndata\tO\tdata\tO\nfor\tO\tfor\tO\nnext\tO\tnext\tO\nunit\tO\tunit\tO\nof\tO\tof\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nContext\tO\tContext\tO\noffers\tO\toffers\tO\nsome\tO\tsome\tO\nfeatures\tO\tfeatures\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\ndata\tO\tdata\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nrefreshes\tO\trefreshes\tO\ndata\tO\tdata\tO\npreviously\tO\tpreviously\tO\nloaded\tO\tloaded\tO\n(\tO\t(\tO\nwithout\tO\twithout\tO\nrelations\tO\trelations\tO\n)\tO\t)\tO\nso\tO\tso\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nnew\tO\tnew\tO\nunsaved\tO\tunsaved\tO\nrecords\tO\trecords\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nstill\tO\tstill\tO\nincluded\tO\tincluded\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nread\tO\tread\tO\nabout\tO\tabout\tO\nMS\tB-Library\tMS\tO\nSync\tI-Library\tSync\tO\nframework\tO\tframework\tO\nand\tO\tand\tO\nlocal\tO\tlocal\tO\ndata\tO\tdata\tO\ncache\tO\tcache\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12725463\tO\t12725463\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12725463/\tO\thttps://stackoverflow.com/questions/12725463/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\ndraggable\tO\tdraggable\tO\ncontrol\tO\tcontrol\tO\nthat\tO\tthat\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrestrict\tO\trestrict\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nboundaries\tO\tboundaries\tO\nof\tO\tof\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncontaining\tO\tcontaining\tO\ngrid\tB-User_Interface_Element\tgrid\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nnot\tO\tnot\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ndrag\tO\tdrag\tO\nit\tO\tit\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ngrid\tB-User_Interface_Element\tgrid\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ntest\tO\ttest\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\ntrue\tB-Value\ttrue\tO\nor\tO\tor\tO\nfalse\tB-Value\tfalse\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ncancel\tO\tcancel\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nVisualTreeHelper.FindElementsInHostCoordinates\tB-Library_Function\tVisualTreeHelper.FindElementsInHostCoordinates\tO\nand\tO\tand\tO\nTransformToVisual\tB-Library_Function\tTransformToVisual\tO\netc\tO\tetc\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\nwithout\tO\twithout\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nchecks\tO\tchecks\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncorners\tO\tcorners\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\nsome\tO\tsome\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nDialog\tB-Variable_Name\tDialog\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\ndragged\tO\tdragged\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1207\tI-Code_Block\tQ_1207\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12725463\tO\t12725463\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12725463/\tO\thttps://stackoverflow.com/questions/12725463/\tO\n\t\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nI\tO\tI\tO\ntook\tO\ttook\tO\nanother\tO\tanother\tO\napproach\tO\tapproach\tO\n;\tO\t;\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nfrom\tO\tfrom\tO\ndragging\tO\tdragging\tO\nANY\tO\tANY\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\ncontrol\tB-Library_Class\tcontrol\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nboundary\tO\tboundary\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nonly\tO\tonly\tO\nstopped\tO\tstopped\tO\nthem\tO\tthem\tO\nfrom\tO\tfrom\tO\ndragging\tO\tdragging\tO\nthe\tO\tthe\tO\npointer\tB-User_Interface_Element\tpointer\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nboundary\tO\tboundary\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmousemove\tB-Variable_Name\tmousemove\tO\neventhandler\tB-Library_Class\teventhandler\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1635\tI-Code_Block\tA_1635\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\ncontrol\tB-Library_Class\tcontrol\tO\nwere\tO\twere\tO\nvisible\tO\tvisible\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nwas\tO\twas\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nClip\tB-Library_Variable\tClip\tO\nproperty\tI-Library_Variable\tproperty\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\ncontrol\tB-Library_Class\tcontrol\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nboundary\tO\tboundary\tO\nare\tO\tare\tO\nhidden\tO\thidden\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1636\tI-Code_Block\tA_1636\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nquite\tO\tquite\tO\nnicely\tO\tnicely\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12725463\tO\t12725463\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12725463/\tO\thttps://stackoverflow.com/questions/12725463/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nno\tO\tno\tO\nway\tO\tway\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\nchecking\tO\tchecking\tO\neach\tO\teach\tO\ncorner\tO\tcorner\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nsome\tO\tsome\tO\nshortcuts\tO\tshortcuts\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nDialog\tB-Variable_Name\tDialog\tB-Code_Block\nand\tO\tand\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndragging\tO\tdragging\tO\nit\tO\tit\tO\nover\tO\tover\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nshape\tO\tshape\tO\nor\tO\tor\tO\nsize\tO\tsize\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\nimpossible\tO\timpossible\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nhand\tO\thand\tO\nedge\tO\tedge\tO\nof\tO\tof\tO\nDialog\tB-Variable_Name\tDialog\tB-Code_Block\nto\tO\tto\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nhand\tO\thand\tO\nedge\tO\tedge\tO\nof\tO\tof\tO\nGrid\tB-Library_Class\tGrid\tB-Code_Block\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nhand\tO\thand\tO\nedge\tO\tedge\tO\nof\tO\tof\tO\nDialog\tB-Variable_Name\tDialog\tB-Code_Block\nalso\tO\talso\tO\nbeing\tO\tbeing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nof\tO\tof\tO\nGrid\tB-Library_Class\tGrid\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nonly\tO\tonly\tO\napplies\tO\tapplies\tO\nif\tO\tif\tO\nDialog\tB-Variable_Name\tDialog\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nrotated\tO\trotated\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npseudo\tO\tpseudo\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1634\tI-Code_Block\tA_1634\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21034131\tO\t21034131\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21034131/\tO\thttps://stackoverflow.com/questions/21034131/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nsome\tO\tsome\tO\nwebcam\tB-Device\twebcam\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nx264\tB-Library\tx264\tO\ncodec\tO\tcodec\tO\nfound\tO\tfound\tO\nhere\tO\there\tO\nx264\tB-Library\tx264\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nwriting\tO\twriting\tO\nframes\tO\tframes\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\npoping\tO\tpoping\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\nVirtualDub\tB-Application\tVirtualDub\tO\nHack\tO\tHack\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nvirtual\tB-Application\tvirtual\tO\ndub\tI-Application\tdub\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nFile\tO\tFile\tO\noutput\tO\toutput\tO\nmode\tO\tmode\tO\nand\tO\tand\tO\nzero\tO\tzero\tO\nlatency\tO\tlatency\tO\nmean\tO\tmean\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncodec\tB-Application\tcodec\tO\nsince\tO\tsince\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nto\tO\tto\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\ncodec\tB-Application\tcodec\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nC#\tB-Language\tC#\tO\nand\tO\tand\tO\nemgu\tB-Library\temgu\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndont\tO\tdont\tO\nthink\tO\tthink\tO\nthats\tO\tthats\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nlies\tO\tlies\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n\t\nIn\tO\tIn\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nhelps\tO\thelps\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2236\tI-Code_Block\tQ_2236\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21034131\tO\t21034131\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21034131/\tO\thttps://stackoverflow.com/questions/21034131/\tO\n\t\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nis\tO\tis\tO\n's\tO\t's\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nlate\tO\tlate\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\n(\tO\t(\tO\non\tO\ton\tO\nwindows\tB-Operating_System\twindows\tO\n)\tO\t)\tO\nis\tO\tis\tO\nto\tO\tto\tO\nset\tO\tset\tO\n-1\tB-Value\t-1\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncodec\tB-Application\tcodec\tO\n's\tO\t's\tO\nfourcc\tO\tfourcc\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npops\tO\tpops\tO\nup\tO\tup\tO\na\tO\ta\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchoose\tO\tchoose\tO\na\tO\ta\tO\ncodec\tB-Application\tcodec\tO\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nchoose\tO\tchoose\tO\nx264wfv\tB-Library\tx264wfv\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nconfigure\tO\tconfigure\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nwhich\tO\twhich\tO\nlets\tO\tlets\tO\nyou\tO\tyou\tO\nconfigure\tO\tconfigure\tO\nthose\tO\tthose\tO\noptions\tO\toptions\tO\n(\tO\t(\tO\nzero\tO\tzero\tO\nlatency\tO\tlatency\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nNext\tO\tNext\tO\ntime\tO\ttime\tO\ncodec\tB-Application\tcodec\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nexact\tO\texact\tO\nsame\tO\tsame\tO\nsettings\tO\tsettings\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\nwith\tO\twith\tO\nfourcc\tO\tfourcc\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20953916\tO\t20953916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20953916/\tO\thttps://stackoverflow.com/questions/20953916/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntop\tB-Variable_Name\ttop\tB-Code_Block\nproperty\tO\tproperty\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\n.content\tB-Variable_Name\t.content\tB-Code_Block\nif\tO\tif\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\n.nav-wrapper\tB-Variable_Name\t.nav-wrapper\tB-Code_Block\nhas\tO\thas\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\ndisplay\tB-Variable_Name\tdisplay\tB-Code_Block\nset\tO\tset\tO\nto\tO\tto\tO\nblock\tB-Variable_Name\tblock\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nactual\tO\tactual\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n)\tO\t)\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2229\tI-Code_Block\tQ_2229\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nfiguring\tO\tfiguring\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20953916\tO\t20953916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20953916/\tO\thttps://stackoverflow.com/questions/20953916/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nvery\tO\tvery\tO\nprocedural\tO\tprocedural\tO\n,\tO\t,\tO\nBut\tO\tBut\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nhand\tO\thand\tO\n,\tO\t,\tO\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\npositioning\tO\tpositioning\tO\nstatic\tO\tstatic\tB-Code_Block\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhas\tO\thas\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\ncalled\tO\tcalled\tO\nTOP\tB-Library_Variable\tTOP\tB-Code_Block\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ncheck\tO\tcheck\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\nany\tO\tany\tO\npositioning\tO\tpositioning\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tB-Code_Block\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2809\tI-Code_Block\tA_2809\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20953916\tO\t20953916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20953916/\tO\thttps://stackoverflow.com/questions/20953916/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\ncondition\tO\tcondition\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nanimation\tO\tanimation\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\ncheck\tO\tcheck\tO\nis\tO\tis\tO\nit\tO\tit\tO\nis\tO\tis\tO\nvisible\tO\tvisible\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nCSS\tB-Language\tCSS\tO\nproperty\tO\tproperty\tO\ndisplay\tB-Library_Variable\tdisplay\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2810\tI-Code_Block\tA_2810\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45156320\tO\t45156320\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45156320/\tO\thttps://stackoverflow.com/questions/45156320/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nController\tO\tController\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\nblock\tO\tblock\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nget\tO\tget\tO\nanything\tO\tanything\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngotten\tO\tgotten\tO\na\tO\ta\tO\nminimal\tO\tminimal\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nidea\tO\tidea\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\n$\tB-Code_Block\t$\tB-Code_Block\nscope\tI-Code_Block\tscope\tI-Code_Block\n:\tO\t:\tO\n\t\nJS\tB-Language\tJS\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5882\tI-Code_Block\tQ_5882\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHTML\tB-Language\tHTML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5883\tI-Code_Block\tQ_5883\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJSFiddle\tB-Application\tJSFiddle\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nintroduce\tO\tintroduce\tO\n\"\tO\t\"\tO\nController\tO\tController\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ndisplay\tO\tdisplay\tO\n:\tO\t:\tO\n\t\nJS\tB-Language\tJS\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5884\tI-Code_Block\tQ_5884\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHTML\tB-Language\tHTML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5885\tI-Code_Block\tQ_5885\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJSFiddle\tB-Application\tJSFiddle\tO\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\n$scope\tB-Code_Block\t$scope\tB-Code_Block\nand\tO\tand\tO\nthis\tO\tthis\tB-Code_Block\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\nconcepts\tO\tconcepts\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nwrap\tO\twrap\tO\nmy\tO\tmy\tO\nhead\tO\thead\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nspecifics\tO\tspecifics\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nrules\tO\trules\tO\nfor\tO\tfor\tO\nng-repeat\tB-HTML_XML_Tag\tng-repeat\tO\n,\tO\t,\tO\nor\tO\tor\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\nobvious\tO\tobvious\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45156320\tO\t45156320\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45156320/\tO\thttps://stackoverflow.com/questions/45156320/\tO\n\t\n\t\nHere\tO\tHere\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\narrow\tB-Library_Function\tarrow\tB-Code_Block\nfunction\tO\tfunction\tI-Code_Block\nwhile\tO\twhile\tO\ndefining\tO\tdefining\tO\ncontroller\tB-Library_Function\tcontroller\tB-Code_Block\nfunction\tO\tfunction\tI-Code_Block\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nlead\tO\tlead\tO\nthis\tO\tthis\tB-Code_Block\nto\tO\tto\tO\nan\tO\tan\tO\nunexpected\tO\tunexpected\tO\ncontext\tO\tcontext\tO\nwhich\tO\twhich\tO\nnot\tO\tnot\tO\nbelong\tO\tbelong\tO\nto\tO\tto\tO\ncontroller\tO\tcontroller\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nnormal\tO\tnormal\tO\nfunction\tO\tfunction\tB-Code_Block\n.\tO\t.\tO\n\t\nrefer\tO\trefer\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nexample\tO\texample\tO\nand\tO\tand\tO\nfixed\tO\tfixed\tO\njsfiddle\tB-Application\tjsfiddle\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6543\tI-Code_Block\tQ_6543\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6544\tI-Code_Block\tQ_6544\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45156320\tO\t45156320\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45156320/\tO\thttps://stackoverflow.com/questions/45156320/\tO\n\t\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nes6\tB-Language\tes6\tO\narrow\tB-Library_Function\tarrow\tO\nfunction\tO\tfunction\tO\nsyntax\tO\tsyntax\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nsupport\tO\tsupport\tO\nes6\tB-Language\tes6\tO\nsyntax.Either\tO\tsyntax.Either\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ntranspiler(Babel)\tB-Application\ttranspiler(Babel)\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nes6\tB-Language\tes6\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\npure\tO\tpure\tO\njavascript\tB-Language\tjavascript\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nchanging\tO\tchanging\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6545\tI-Code_Block\tA_6545\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWith\tO\tWith\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6546\tI-Code_Block\tA_6546\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJSFiddle\tB-Application\tJSFiddle\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27450607\tO\t27450607\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27450607/\tO\thttps://stackoverflow.com/questions/27450607/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nperforming\tO\tperforming\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ntraversal\tO\ttraversal\tO\nin\tO\tin\tO\nNeo4J\tB-Application\tNeo4J\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nevaluator\tO\tevaluator\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ntraversal\tO\ttraversal\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nnodes\tB-Library_Class\tnodes\tO\n,\tO\t,\tO\nconnected\tO\tconnected\tO\nby\tO\tby\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\nrelationships\tO\trelationships\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nseeing\tO\tseeing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nrelationships\tO\trelationships\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nwalked\tO\twalked\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\ntraversal\tO\ttraversal\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\ncustom\tO\tcustom\tO\nevaluation\tO\tevaluation\tO\nchanges\tO\tchanges\tO\nits\tO\tits\tO\nbehavior\tO\tbehavior\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nwhether\tO\twhether\tO\nboth\tO\tboth\tO\nrelationships\tO\trelationships\tO\nare\tO\tare\tO\npresent\tO\tpresent\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nduring\tO\tduring\tO\na\tO\ta\tO\ntraversal\tO\ttraversal\tO\n,\tO\t,\tO\nNeo4J\tB-Application\tNeo4J\tO\nmaintains\tO\tmaintains\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\nvisited\tO\tvisited\tO\nnodes\tB-Library_Class\tnodes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\na\tO\ta\tO\ncandidate\tO\tcandidate\tO\npath\tO\tpath\tO\nends\tO\tends\tO\nat\tO\tat\tO\na\tO\ta\tO\nnode\tB-Library_Class\tnode\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\nvisited\tO\tvisited\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthat\tO\tthat\tO\npath\tO\tpath\tO\nis\tO\tis\tO\nnever\tO\tnever\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nevaluator\tO\tevaluator\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nevaluator\tO\tevaluator\tO\nexamine\tO\texamine\tO\nevery\tO\tevery\tO\npossible\tO\tpossible\tO\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnodes\tB-Library_Class\tnodes\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nSay\tO\tSay\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ngraph\tO\tgraph\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3164\tI-Code_Block\tQ_3164\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ntraversal\tO\ttraversal\tO\nbegins\tO\tbegins\tO\nat\tO\tat\tO\nA\tB-Variable_Name\tA\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nhas\tO\thas\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\nrelationships\tO\trelationships\tO\ntying\tO\ttying\tO\nit\tO\tit\tO\nto\tO\tto\tO\nB\tB-Variable_Name\tB\tO\n(\tO\t(\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\ntypes\tO\ttypes\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nremaining\tO\tremaining\tO\nnodes\tB-Library_Class\tnodes\tO\nare\tO\tare\tO\nconnected\tO\tconnected\tO\nby\tO\tby\tO\nonly\tO\tonly\tO\n1\tO\t1\tO\nrelationship\tO\trelationship\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ngoal\tO\tgoal\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nevaluator\tO\tevaluator\tO\nis\tO\tis\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nA-D\tB-Variable_Name\tA-D\tO\n,\tO\t,\tO\nA-B\tB-Variable_Name\tA-B\tO\n,\tO\t,\tO\nand\tO\tand\tO\nB-C\tB-Variable_Name\tB-C\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nD-E\tB-Variable_Name\tD-E\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndetermination\tO\tdetermination\tO\nthat\tO\tthat\tO\nB-C\tB-Variable_Name\tB-C\tO\nis\tO\tis\tO\nvalid\tO\tvalid\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nrelationships\tO\trelationships\tO\nbetween\tO\tbetween\tO\nA\tB-Variable_Name\tA\tO\nand\tO\tand\tO\nB\tB-Variable_Name\tB\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\nsolved\tO\tsolved\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27450607\tO\t27450607\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27450607/\tO\thttps://stackoverflow.com/questions/27450607/\tO\n\t\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nyour\tO\tyour\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nmore\tO\tmore\tO\ncarefully\tO\tcarefully\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nsuggestion\tO\tsuggestion\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ntraversal\tB-Library\ttraversal\tO\nframework\tI-Library\tframework\tO\nin\tO\tin\tO\njava\tB-Language\tjava\tO\n,\tO\t,\tO\nbasically\tO\tbasically\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nTraversalDescription\tB-Library_Function\tTraversalDescription\tB-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\niterate\tO\titerate\tO\nthrough\tO\tthrough\tO\nwhat\tO\twhat\tO\ncomes\tO\tcomes\tO\nback\tO\tback\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\nby\tO\tby\tO\nrelationships\tO\trelationships\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nby\tO\tby\tO\nPaths\tO\tPaths\tO\nor\tO\tor\tO\nby\tO\tby\tO\nNodes\tO\tNodes\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nprimary\tO\tprimary\tO\ncomplaint\tO\tcomplaint\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\nnode\tB-Library_Class\tnode\tO\nis\tO\tis\tO\nvisited\tO\tvisited\tO\nonly\tO\tonly\tO\nonce\tO\tonce\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nTraversalDescription\tB-Library_Function\tTraversalDescription\tB-Code_Block\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nRELATIONSHIP_GLOBAL\tB-Library_Function\tRELATIONSHIP_GLOBAL\tO\nguaranteeing\tO\tguaranteeing\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nrelationships\tO\trelationships\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfollowed\tO\tfollowed\tO\n,\tO\t,\tO\nwhether\tO\twhether\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nthat\tO\tthat\tO\ncauses\tO\tcauses\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nhit\tO\thit\tO\na\tO\ta\tO\nnode\tO\tnode\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nbroadly\tO\tbroadly\tO\n,\tO\t,\tO\ntraversers\tO\ttraversers\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ntend\tO\ttend\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nmaterial\tO\tmaterial\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nonce\tO\tonce\tO\nbecause\tO\tbecause\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\ndid\tO\tdid\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nultra\tO\tultra\tO\ncareful\tO\tcareful\tO\nabout\tO\tabout\tO\nspecifying\tO\tspecifying\tO\na\tO\ta\tO\ntermination\tO\ttermination\tO\ncondition\tO\tcondition\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nhitting\tO\thitting\tO\ncertain\tO\tcertain\tO\nnodes\tB-Library_Class\tnodes\tO\nor\tO\tor\tO\nrelationships\tO\trelationships\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nonce\tO\tonce\tO\nis\tO\tis\tO\nOK\tO\tOK\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndone\tO\tdone\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26068953\tO\t26068953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26068953/\tO\thttps://stackoverflow.com/questions/26068953/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nbrand\tO\tbrand\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nPyQt\tB-Application\tPyQt\tO\nso\tO\tso\tO\nbear\tO\tbear\tO\nwith\tO\twith\tO\nme\tO\tme\tO\nhere\tO\there\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nwidget\tB-User_Interface_Element\twidget\tO\nwith\tO\twith\tO\nQt\tB-Application\tQt\tO\nDesigner\tI-Application\tDesigner\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncompile\tO\tcompile\tO\nit\tO\tit\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\nas\tO\tas\tO\n.py\tB-File_Type\t.py\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\n.py\tB-File_Type\t.py\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\nadditional\tO\tadditional\tO\nfunctionality\tO\tfunctionality\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthen\tO\tthen\tO\nsay\tO\tsay\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\nto\tO\tto\tO\nQt\tB-Application\tQt\tO\nDesigner\tI-Application\tDesigner\tO\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nlayout\tO\tlayout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nGUI\tO\tGUI\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nthat\tO\tthat\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\n.py\tB-File_Type\t.py\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nmanually\tO\tmanually\tO\ncopy/paste\tO\tcopy/paste\tO\nmy\tO\tmy\tO\ncustom\tO\tcustom\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26068953\tO\t26068953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26068953/\tO\thttps://stackoverflow.com/questions/26068953/\tO\n\t\n\t\nPersonally\tO\tPersonally\tO\nI\tO\tI\tO\nhate\tO\thate\tO\ncompiling\tO\tcompiling\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nlike\tO\tlike\tO\nekhumoro\tB-User_Name\tekhumoro\tO\nsaid\tO\tsaid\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nstill\tO\tstill\tO\ndislike\tO\tdislike\tO\nthis\tO\tthis\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\npyuic\tB-Library\tpyuic\tB-Code_Block\nsometimes\tO\tsometimes\tO\nimports\tO\timports\tO\nnasty\tO\tnasty\tO\nexample_rc\tB-File_Name\texample_rc\tB-Code_Block\nthings\tO\tthings\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nlowers\tO\tlowers\tO\nproductivity\tO\tproductivity\tO\nlevels\tO\tlevels\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nabsolutely\tO\tabsolutely\tO\nmust\tO\tmust\tO\ntransform\tO\ttransform\tO\n.ui\tB-File_Type\t.ui\tB-Code_Block\nto\tO\tto\tO\n.py\tB-File_Type\t.py\tB-Code_Block\n,\tO\t,\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\n.bat\tB-File_Type\t.bat\tB-Code_Block\nfile\tO\tfile\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3605\tI-Code_Block\tA_3605\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\nwhatever\tO\twhatever\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nOS\tO\tOS\tO\n.\tO\t.\tO\n\t\nPersonally\tO\tPersonally\tO\nI\tO\tI\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nui\tB-Code_Block\tui\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nuic.loadUi('example.ui')\tI-Code_Block\tuic.loadUi('example.ui')\tI-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\nui.setupUi()\tB-Library_Function\tui.setupUi()\tB-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26068953\tO\t26068953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26068953/\tO\thttps://stackoverflow.com/questions/26068953/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ngenerated\tO\tgenerated\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3585\tI-Code_Block\tA_3585\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nmakes\tO\tmakes\tO\nit\tO\tit\tO\nquite\tO\tquite\tO\nclear\tO\tclear\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nmeant\tO\tmeant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nedited\tO\tedited\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nan\tO\tan\tO\nordinary\tO\tordinary\tO\npython\tB-Language\tpython\tO\nmodule\tO\tmodule\tO\n,\tO\t,\tO\nand\tO\tand\tO\nso\tO\tso\tO\nit\tO\tit\tO\n's\tO\t's\tO\neasy\tO\teasy\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nimport\tO\timport\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nmain\tO\tmain\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\naccess\tO\taccess\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsubclass\tO\tsubclass\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntop-level\tO\ttop-level\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nQt\tB-Application\tQt\tO\nDesigner\tI-Application\tDesigner\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nQMainWindow\tB-Library_Class\tQMainWindow\tB-Code_Block\n,\tO\t,\tO\nQDialog\tB-Library_Class\tQDialog\tB-Code_Block\nor\tO\tor\tO\nQWidget\tB-Library_Class\tQWidget\tB-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nsetupUi\tB-Library_Function\tsetupUi\tB-Code_Block\nmethod\tO\tmethod\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ngenerated\tO\tgenerated\tO\nmodule\tO\tmodule\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwidgets\tB-Library_Class\twidgets\tO\nto\tO\tto\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nsubclass\tO\tsubclass\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ntop-level\tO\ttop-level\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nQt\tB-Application\tQt\tO\nDesigner\tI-Application\tDesigner\tO\nwas\tO\twas\tO\nnamed\tO\tnamed\tO\n\"\tB-Value\t\"\tO\nMainWindow\tI-Value\tMainWindow\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\npyuic\tB-Library\tpyuic\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncorresponding\tO\tcorresponding\tO\nUi_MainWindow\tB-Library_Class\tUi_MainWindow\tB-Code_Block\nclass\tO\tclass\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nimported\tO\timported\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nmain.py\tB-File_Name\tmain.py\tB-Code_Block\nscript\tO\tscript\tO\nand\tO\tand\tO\nused\tO\tused\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3586\tI-Code_Block\tA_3586\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSee\tO\tSee\tO\nUsing\tO\tUsing\tO\nQt\tB-Application\tQt\tO\nDesigner\tI-Application\tDesigner\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nPyQt\tB-Application\tPyQt\tO\nDocumentation\tO\tDocumentation\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18972385\tO\t18972385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18972385/\tO\thttps://stackoverflow.com/questions/18972385/\tO\n\t\n\t\nTake\tO\tTake\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ninsertion\tB-Algorithm\tinsertion\tO\nsort\tI-Algorithm\tsort\tO\nalgorithm\tO\talgorithm\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nit\tO\tit\tO\n's\tO\t's\tO\nO(n^2)\tO\tO(n^2)\tO\nfairly\tO\tfairly\tO\neasy\tO\teasy\tO\nby\tO\tby\tO\nexamining\tO\texamining\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nproving\tO\tproving\tO\nit\tO\tit\tO\n's\tO\t's\tO\nO(n^2)\tO\tO(n^2)\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\ndoing\tO\tdoing\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nadd\tO\tadd\tO\nup\tO\tup\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\noperations\tO\toperations\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nn\tB-Code_Block\tn\tB-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nsum\tI-Code_Block\tsum\tI-Code_Block\nof\tI-Code_Block\tof\tI-Code_Block\nj\tI-Code_Block\tj\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\nto\tI-Code_Block\tto\tI-Code_Block\nn\tI-Code_Block\tn\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nwould\tO\twould\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\nn^2\tB-Code_Block\tn^2\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nprove\tO\tprove\tO\nthis\tO\tthis\tO\nexactly\tO\texactly\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nsomeone\tO\tsomeone\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nclearly\tO\tclearly\tO\nexplain\tO\texplain\tO\nhow\tO\thow\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nprove\tO\tprove\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nO(n^3)\tO\tO(n^3)\tO\nalgorithm\tO\talgorithm\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18972385\tO\t18972385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18972385/\tO\thttps://stackoverflow.com/questions/18972385/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nO(n^2)\tO\tO(n^2)\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nmultiplication\tO\tmultiplication\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nsum\tO\tsum\tO\n.\tO\t.\tO\n\t\nTake\tO\tTake\tO\nby\tO\tby\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nsorted\tO\tsorted\tO\nin\tO\tin\tO\ninverse\tO\tinverse\tO\norder\tO\torder\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2513\tI-Code_Block\tA_2513\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthese\tO\tthese\tO\ncases\tO\tcases\tO\nevery\tO\tevery\tO\niteration\tO\titeration\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninner\tO\tinner\tO\nloop\tO\tloop\tO\nwill\tO\twill\tO\nscan\tO\tscan\tO\nand\tO\tand\tO\nshift\tO\tshift\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nsorted\tO\tsorted\tO\nsubsection\tO\tsubsection\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nbefore\tO\tbefore\tO\ninserting\tO\tinserting\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ngives\tO\tgives\tO\ninsertion\tB-Algorithm\tinsertion\tO\nsort\tI-Algorithm\tsort\tO\na\tO\ta\tO\nquadratic\tO\tquadratic\tO\nrunning\tO\trunning\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n,\tO\t,\tO\nO(n2))\tO\tO(n2))\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\ninfo\tO\tinfo\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\ncomplexity\tO\tcomplexity\tO\nis\tO\tis\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nworst\tO\tworst\tO\ncase\tO\tcase\tO\nexample\tO\texample\tO\nand\tO\tand\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\n's\tO\t's\tO\nsteps\tO\tsteps\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18972385\tO\t18972385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18972385/\tO\thttps://stackoverflow.com/questions/18972385/\tO\n\t\n\t\nYou\tO\tYou\tO\nprove\tO\tprove\tO\nbig\tO\tbig\tO\nO\tO\tO\tO\ncomplexity\tO\tcomplexity\tO\nby\tO\tby\tO\nconsidering\tO\tconsidering\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\noperations\tO\toperations\tO\nare\tO\tare\tO\nperformed\tO\tperformed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nworst\tO\tworst\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n've\tO\t've\tO\ndone\tO\tdone\tO\nthe\tO\tthe\tO\ncounting\tO\tcounting\tO\npart\tO\tpart\tO\nand\tO\tand\tO\nentered\tO\tentered\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nhand\tO\thand\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nimage\tB-User_Interface_Element\timage\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwhat\tO\twhat\tO\nremains\tO\tremains\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nproven\tO\tproven\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndominant\tO\tdominant\tO\nterm\tO\tterm\tO\nis\tO\tis\tO\nO(n^2)\tB-Code_Block\tO(n^2)\tB-Code_Block\n.\tO\t.\tO\n\t\nApart\tO\tApart\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\nthat\tO\tthat\tO\ninvolve\tO\tinvolve\tO\nthe\tO\tthe\tO\nsum\tO\tsum\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\ninstructions\tO\tinstructions\tO\nthat\tO\tthat\tO\nget\tO\tget\tO\nexecuted\tO\texecuted\tO\nn-1\tB-Code_Block\tn-1\tB-Code_Block\ntimes\tO\ttimes\tO\nso\tO\tso\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nall\tO\tall\tO\nO(n)\tB-Code_Block\tO(n)\tB-Code_Block\nterms\tO\tterms\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsum\tO\tsum\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nworst\tO\tworst\tO\ncase\tO\tcase\tO\na\tO\ta\tO\nt_j\tB-Variable_Name\tt_j\tB-Code_Block\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nj\tB-Variable_Name\tj\tB-Code_Block\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nend\tO\tend\tO\nup\tO\tup\tO\ndecrementing\tO\tdecrementing\tO\ni\tB-Variable_Name\ti\tB-Code_Block\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nset\tO\tset\tO\nto\tO\tto\tO\nj\tB-Variable_Name\tj\tB-Code_Block\nall\tO\tall\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\n0\tO\t0\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nworst\tO\tworst\tO\ncase\tO\tcase\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nt_j\tB-Code_Block\tt_j\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nj\tI-Code_Block\tj\tI-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nterm\tO\tterm\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsum\tB-Code_Block\tsum\tB-Code_Block\nfrom\tI-Code_Block\tfrom\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\nto\tI-Code_Block\tto\tI-Code_Block\nn\tI-Code_Block\tn\tI-Code_Block\nof\tI-Code_Block\tof\tI-Code_Block\nj\tI-Code_Block\tj\tI-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\nO(n^2)\tB-Code_Block\tO(n^2)\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nmathematical\tO\tmathematical\tO\nidentity\tO\tidentity\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nproven\tO\tproven\tO\nby\tO\tby\tO\nsumming\tO\tsumming\tO\ntwo\tO\ttwo\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nseries\tO\tseries\tO\ntogether\tO\ttogether\tO\n,\tO\t,\tO\npaying\tO\tpaying\tO\nattention\tO\tattention\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\ntwo\tO\ttwo\tO\nterms\tO\tterms\tO\nthat\tO\tthat\tO\nsum\tO\tsum\tO\nto\tO\tto\tO\nn+1\tB-Code_Block\tn+1\tB-Code_Block\ntogether\tO\ttogether\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ndividing\tO\tdividing\tO\nthe\tO\tthe\tO\nsum\tO\tsum\tO\nby\tO\tby\tO\ntwo\tO\ttwo\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nproof\tO\tproof\tO\nin\tO\tin\tO\nwolfram\tB-Application\twolfram\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nO\tB-Code_Block\tO\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n(\tB-Code_Block\t(\tB-Code_Block\nn^2\tI-Code_Block\tn^2\tI-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\nn\tI-Code_Block\tn\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n/2\tB-Code_Block\t/2\tB-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nO(n^2)\tI-Code_Block\tO(n^2)\tI-Code_Block\nyou\tO\tyou\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\nthat\tO\tthat\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nsum\tO\tsum\tO\ndominate\tO\tdominate\tO\nthe\tO\tthe\tO\nruntime\tO\truntime\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\nis\tO\tis\tO\nO(n^2)\tB-Code_Block\tO(n^2)\tB-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4898317\tO\t4898317\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4898317/\tO\thttps://stackoverflow.com/questions/4898317/\tO\n\t\n\t\nin\tO\tin\tO\nblacberry\tB-Device\tblacberry\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nrecord\tO\trecord\tO\naudio\tO\taudio\tO\nfor\tO\tfor\tO\nVOIP\tB-Application\tVOIP\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\ni\tO\ti\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nrecording\tO\trecording\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nphone\tB-Device\tphone\tO\n(\tO\t(\tO\nor\tO\tor\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nmodify\tO\tmodify\tO\nthis\tO\tthis\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nstream\tO\tstream\tO\n)\tO\t)\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ncapture\tO\tcapture\tO\nsound\tO\tsound\tO\nand\tO\tand\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\ndelivering\tO\tdelivering\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nserver\tB-Application\tserver\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nrecording\tO\trecording\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nopensource\tO\topensource\tO\nprojects\tO\tprojects\tO\non\tO\ton\tO\nthis\tO\tthis\tO\ntopic\tO\ttopic\tO\n?\tO\t?\tO\n\t\nrecording\tO\trecording\tO\npart\tO\tpart\tO\nis\tO\tis\tO\nhere\tO\there\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_348\tI-Code_Block\tQ_348\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ncurrently\tO\tcurrently\tO\ni\tO\ti\tO\nam\tO\tam\tO\nsaving\tO\tsaving\tO\nthe\tO\tthe\tO\nrecorded\tO\trecorded\tO\ndetails\tO\tdetails\tO\nto\tO\tto\tO\na\tO\ta\tO\nByteArrayOutputStream\tB-Library_Class\tByteArrayOutputStream\tO\nand\tO\tand\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nrecording\tO\trecording\tO\nsaving\tO\tsaving\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_349\tI-Code_Block\tQ_349\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4898317\tO\t4898317\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4898317/\tO\thttps://stackoverflow.com/questions/4898317/\tO\n\t\n\t\nWell\tO\tWell\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\nstream\tO\tstream\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nwhile\tO\twhile\tO\nrecording\tO\trecording\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\naccess\tO\taccess\tO\nyour\tO\tyour\tO\nByteArrayOutputStream\tB-Library_Class\tByteArrayOutputStream\tO\n(\tO\t(\tO\ndataOut\tB-Variable_Name\tdataOut\tO\n)\tO\t)\tO\nin\tO\tin\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nbytes\tB-Data_Type\tbytes\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\n,\tO\t,\tO\nwrap\tO\twrap\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nRTP\tO\tRTP\tO\npackages\tO\tpackages\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nstreaming\tO\tstreaming\tO\nserver\tB-Application\tserver\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nseparate\tO\tseparate\tO\nthread\tO\tthread\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nrunning\tO\trunning\tO\ntogether\tO\ttogether\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nrecording\tO\trecording\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\nstream\tO\tstream\tO\nin\tO\tin\tO\nany\tO\tany\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\napproach\tO\tapproach\tO\n?\tO\t?\tO\n\t\nWhich\tO\tWhich\tO\nstreaming\tO\tstreaming\tO\nserver\tB-Application\tserver\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\nusing\tO\tusing\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14022529\tO\t14022529\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14022529/\tO\thttps://stackoverflow.com/questions/14022529/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1334\tI-Code_Block\tQ_1334\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1335\tI-Code_Block\tQ_1335\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nfield\tO\tfield\tO\nfrom\tO\tfrom\tO\nlower-case\tO\tlower-case\tO\ninto\tO\tinto\tO\nupper-case\tO\tupper-case\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nfields\tO\tfields\tO\nin\tO\tin\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nline\tO\tline\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nfixed\tO\tfixed\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\naccomplish\tO\taccomplish\tO\nthis\tO\tthis\tO\ngoal\tO\tgoal\tO\nusing\tO\tusing\tO\nawk\tB-Language\tawk\tB-Code_Block\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14022529\tO\t14022529\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14022529/\tO\thttps://stackoverflow.com/questions/14022529/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1788\tI-Code_Block\tA_1788\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14022529\tO\t14022529\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14022529/\tO\thttps://stackoverflow.com/questions/14022529/\tO\n\t\n\t\nYou\tO\tYou\tO\nsure\tO\tsure\tO\ncan\tO\tcan\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nhow\tO\thow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1785\tI-Code_Block\tA_1785\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nResults\tO\tResults\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1786\tI-Code_Block\tA_1786\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nmanual\tO\tmanual\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\nthe\tO\tthe\tO\nassumption\tO\tassumption\tO\nthat\tO\tthat\tO\ngiven\tO\tgiven\tO\nyour\tO\tyour\tO\nsample\tO\tsample\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthree\tO\tthree\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\ncomponent\tO\tcomponent\tO\nyou\tO\tyou\tO\ndiscuss\tO\tdiscuss\tO\napplies\tO\tapplies\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\nafter\tO\tafter\tO\nthose\tO\tthose\tO\ncontaining\tO\tcontaining\tO\nwords\tO\twords\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nconditional\tO\tconditional\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1787\tI-Code_Block\tA_1787\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3291218\tO\t3291218\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3291218/\tO\thttps://stackoverflow.com/questions/3291218/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\ndrawing\tO\tdrawing\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nan\tO\tan\tO\nordered\tO\tordered\tO\nlist\tO\tlist\tO\nmouse\tB-Device\tmouse\tO\npositions\tO\tpositions\tO\n,\tO\t,\tO\nand\tO\tand\tO\napproximate\tO\tapproximate\tO\na\tO\ta\tO\nsmooth\tO\tsmooth\tO\nQuadratic\tO\tQuadratic\tO\nBSpline\tO\tBSpline\tO\nCurve\tO\tCurve\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3291218\tO\t3291218\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3291218/\tO\thttps://stackoverflow.com/questions/3291218/\tO\n\t\n\t\n\"\tO\t\"\tO\nB-spline\tO\tB-spline\tO\ncurve\tO\tcurve\tO\nfitting\tO\tfitting\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nadaptive\tO\tadaptive\tO\ncurve\tO\tcurve\tO\nrefinement\tO\trefinement\tO\nusing\tO\tusing\tO\ndominant\tO\tdominant\tO\npoints\tO\tpoints\tO\n\"\tO\t\"\tO\nby\tO\tby\tO\nPark\tB-User_Name\tPark\tO\n&\tO\t&\tO\nLee\tB-User_Name\tLee\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nFair\tO\tFair\tO\ninterpolation\tO\tinterpolation\tO\nand\tO\tand\tO\napproximation\tO\tapproximation\tO\nof\tO\tof\tO\nB-splines\tO\tB-splines\tO\nby\tO\tby\tO\nenergy\tO\tenergy\tO\nminimization\tO\tminimization\tO\nand\tO\tand\tO\npoints\tO\tpoints\tO\ninsertion\tO\tinsertion\tO\n\"\tO\t\"\tO\nby\tO\tby\tO\nVassilev\tB-User_Name\tVassilev\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsolving\tO\tsolving\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nthere\tO\tthere\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nreferences\tO\treferences\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nlink\tO\tlink\tO\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nConverting\tO\tConverting\tO\ndata\tO\tdata\tO\npoints\tO\tpoints\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\npoints\tO\tpoints\tO\nin\tO\tin\tO\nareas\tO\tareas\tO\nof\tO\tof\tO\nhigh\tO\thigh\tO\ncurvature\tO\tcurvature\tO\nand\tO\tand\tO\nremoving\tO\tremoving\tO\ndata\tO\tdata\tO\npoints\tO\tpoints\tO\nin\tO\tin\tO\nareas\tO\tareas\tO\nof\tO\tof\tO\nlittle\tO\tlittle\tO\ncurvature\tO\tcurvature\tO\nis\tO\tis\tO\na\tO\ta\tO\ngeneral\tO\tgeneral\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4613792\tO\t4613792\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4613792/\tO\thttps://stackoverflow.com/questions/4613792/\tO\n\t\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nsvn\tB-Application\tsvn\tO\n1.6\tB-Version\t1.6\tO\n,\tO\t,\tO\na\tO\ta\tO\ntrunk\tO\ttrunk\tO\nwith\tO\twith\tO\napprox\tO\tapprox\tO\n30000\tO\t30000\tO\nfiles\tO\tfiles\tO\n(\tO\t(\tO\n1\tO\t1\tO\nGB\tO\tGB\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\n\"\tO\t\"\tO\ntest\tO\ttest\tO\n\"\tO\t\"\tO\nbranch\tO\tbranch\tO\noriginally\tO\toriginally\tO\ncopied\tO\tcopied\tO\nfrom\tO\tfrom\tO\ntrunk\tO\ttrunk\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nkeeping\tO\tkeeping\tO\nour\tO\tour\tO\n\"\tB-Value\t\"\tO\ntest\tI-Value\ttest\tO\n\"\tI-Value\t\"\tO\nbranch\tO\tbranch\tO\nin\tO\tin\tO\nsync\tB-Value\tsync\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsvn\tB-Code_Block\tsvn\tB-Code_Block\nmerge\tI-Code_Block\tmerge\tI-Code_Block\n^\tI-Code_Block\t^\tI-Code_Block\n/trunk\tI-Code_Block\t/trunk\tI-Code_Block\ncommand\tO\tcommand\tO\ntakes\tO\ttakes\tO\na\tO\ta\tO\nlong\tO\tlong\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\n30\tO\t30\tO\nmin\tO\tmin\tO\n)\tO\t)\tO\nalthough\tO\talthough\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\nchanging\tO\tchanging\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nsubdirectory\tO\tsubdirectory\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nknow\tO\tknow\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nmerge\tO\tmerge\tO\ncommand\tO\tcommand\tO\nfaster\tO\tfaster\tO\n?\tO\t?\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\ntakes\tO\ttakes\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nchanged\tO\tchanged\tO\nfiles\tO\tfiles\tO\nbut\tO\tbut\tO\napparently\tO\tapparently\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nall\tO\tall\tO\nrepository\tO\trepository\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nknows\tO\tknows\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4613792\tO\t4613792\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4613792/\tO\thttps://stackoverflow.com/questions/4613792/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nsub-folders\tO\tsub-folders\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncheckout\tO\tcheckout\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nhas\tO\thas\tO\nan\tO\tan\tO\n.svn\tB-File_Type\t.svn\tO\nfolder\tO\tfolder\tO\nwhich\tO\twhich\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nchecked\tO\tchecked\tO\nfor\tO\tfor\tO\nlocal\tO\tlocal\tO\nchanges\tO\tchanges\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nmerge\tO\tmerge\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmean\tO\tmean\tO\nthat\tO\tthat\tO\nhaving\tO\thaving\tO\none\tO\tone\tO\nhuge\tO\thuge\tO\nfolder\tO\tfolder\tO\nwith\tO\twith\tO\n30,000\tO\t30,000\tO\nfiles\tO\tfiles\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nany\tO\tany\tO\nfaster\tO\tfaster\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nin\tO\tin\tO\na\tO\ta\tO\nsmaller\tO\tsmaller\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nnoticeable\tO\tnoticeable\tO\ndifference\tO\tdifference\tO\nin\tO\tin\tO\ntime\tO\ttime\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\noperation\tO\toperation\tO\nwhen\tO\twhen\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\na\tO\ta\tO\nfast\tO\tfast\tO\nSSD\tB-Device\tSSD\tO\ndrive\tI-Device\tdrive\tO\nvs\tO\tvs\tO\n.\tO\t.\tO\nregular\tB-Device\tregular\tO\ndrive\tI-Device\tdrive\tO\nor\tO\tor\tO\na\tO\ta\tO\nnetworked\tO\tnetworked\tO\nfile\tO\tfile\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30743773\tO\t30743773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30743773/\tO\thttps://stackoverflow.com/questions/30743773/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nat\tO\tat\tO\nLC3\tB-Language\tLC3\tO\nassembly\tI-Language\tassembly\tO\nthat\tO\tthat\tO\ndevides\tO\tdevides\tO\n2\tO\t2\tO\nnatural\tB-Data_Type\tnatural\tO\nnumbers\tI-Data_Type\tnumbers\tO\nand\tO\tand\tO\nstores\tO\tstores\tO\nthe\tO\tthe\tO\nremainder\tO\tremainder\tO\nat\tO\tat\tO\nR0.In\tB-Variable_Name\tR0.In\tO\ncase\tO\tcase\tO\nthat\tO\tthat\tO\nR1\tB-Variable_Name\tR1\tO\nis\tO\tis\tO\nzero\tB-Value\tzero\tO\n,\tO\t,\tO\nR1\tB-Variable_Name\tR1\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\n0.Else\tB-Value\t0.Else\tO\nR1\tB-Variable_Name\tR1\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\n1\tB-Value\t1\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3692\tI-Code_Block\tQ_3692\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nprogram\tO\tprogram\tO\nat\tO\tat\tO\nLC3\tB-Language\tLC3\tO\nassembly\tI-Language\tassembly\tO\n...\tO\t...\tO\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\ntotal\tO\ttotal\tO\nbeginner.Could\tO\tbeginner.Could\tO\nanyone\tO\tanyone\tO\nexplain\tO\texplain\tO\nto\tO\tto\tO\nme\tO\tme\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ncompile\tO\tcompile\tO\n?\tO\t?\tO\nI\tO\tI\tO\nalways\tO\talways\tO\nget\tO\tget\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nInvalid\tB-Error_Name\tInvalid\tO\nlabel\tI-Error_Name\tlabel\tO\n'\tI-Error_Name\t'\tO\n#25\tI-Error_Name\t#25\tO\n\"\tO\t\"\tO\n\"\tO\t\"\tO\nerror\tO\terror\tO\nmessage.Thank\tO\tmessage.Thank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31464544\tO\t31464544\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31464544/\tO\thttps://stackoverflow.com/questions/31464544/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nsome\tO\tsome\tO\nsuggestion\tO\tsuggestion\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nASP.Net\tB-Library\tASP.Net\tO\nMVC\tB-Algorithm\tMVC\tO\napplication\tO\tapplication\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nview\tO\tview\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccessed\tO\taccessed\tO\nunauthorized\tO\tunauthorized\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nview\tO\tview\tO\nhave\tO\thave\tO\na\tO\ta\tO\nregistration\tO\tregistration\tO\nform\tO\tform\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\nrequirement\tO\trequirement\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nregister\tO\tregister\tO\nfor\tO\tfor\tO\nmultiple\tO\tmultiple\tO\npeople\tO\tpeople\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\npersons\tO\tpersons\tO\nregistered\tO\tregistered\tO\nso\tO\tso\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\ntwo\tO\ttwo\tO\nregistration\tO\tregistration\tO\nform\tO\tform\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\ndetaisl\tO\tdetaisl\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nfilled\tO\tfilled\tO\nand\tO\tand\tO\npress\tO\tpress\tO\nsubmit\tO\tsubmit\tO\nthen\tO\tthen\tO\nthis\tO\tthis\tO\nwhole\tO\twhole\tO\ndata\tO\tdata\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nvalidated\tO\tvalidated\tO\nand\tO\tand\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nController\tO\tController\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nViewModel\tO\tViewModel\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3788\tI-Code_Block\tQ_3788\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n?\tO\t?\tO\n\t\nPlease\tO\tPlease\tO\nsuggest\tO\tsuggest\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6947286\tO\t6947286\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6947286/\tO\thttps://stackoverflow.com/questions/6947286/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nof\tO\tof\tO\nbuilding\tO\tbuilding\tO\nand\tO\tand\tO\ndesigning\tO\tdesigning\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nJavascript\tB-Language\tJavascript\tO\nOOP\tO\tOOP\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nwondering\tO\twondering\tO\nwhat\tO\twhat\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nstructure\tO\tstructure\tO\n/\tO\t/\tO\nmanagement\tO\tmanagement\tO\nsystem\tO\tsystem\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\ninteraction\tO\tinteraction\tO\nbetween\tO\tbetween\tO\nJavascript\tB-Language\tJavascript\tO\nand\tO\tand\tO\nXML\tB-Language\tXML\tO\nis\tO\tis\tO\ngood\tO\tgood\tO\nand\tO\tand\tO\nfairly\tO\tfairly\tO\neasy\tO\teasy\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nXML\tB-Language\tXML\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nmeant\tO\tmeant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nas\tO\tas\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nform\tO\tform\tO\na\tO\ta\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nboth\tO\tboth\tO\n?\tO\t?\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nserver-side\tO\tserver-side\tO\nlanguage\tO\tlanguage\tO\n(\tO\t(\tO\nPHP\tB-Language\tPHP\tO\n)\tO\t)\tO\ngenerate\tO\tgenerate\tO\nXML\tB-Language\tXML\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nthen\tO\tthen\tO\nbe\tO\tbe\tO\nread\tO\tread\tO\nby\tO\tby\tO\nJS\tB-Language\tJS\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nam\tO\tam\tO\nI\tO\tI\tO\nheading\tO\theading\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\ndirection\tO\tdirection\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6947286\tO\t6947286\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6947286/\tO\thttps://stackoverflow.com/questions/6947286/\tO\n\t\n\t\nJavascript\tB-Language\tJavascript\tO\nitself\tO\titself\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\nqueries\tO\tqueries\tO\n....\tO\t....\tO\nit\tO\tit\tO\nneeds\tO\tneeds\tO\na\tO\ta\tO\nhelper\tO\thelper\tO\nlike\tO\tlike\tO\nPHP\tB-Language\tPHP\tO\n,\tO\t,\tO\n.net\tB-Library\t.net\tO\n,\tO\t,\tO\nor\tO\tor\tO\nJava\tB-Language\tJava\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\ntraverse\tO\ttraverse\tO\nXML\tB-Language\tXML\tO\nor\tO\tor\tO\nJSON\tB-Language\tJSON\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsending\tO\tsending\tO\ncolossal\tO\tcolossal\tO\nXML\tB-Language\tXML\tO\ndocuments\tO\tdocuments\tO\nwith\tO\twith\tO\nall\tO\tall\tO\npossible\tO\tpossible\tO\ndata\tO\tdata\tO\nwhen\tO\twhen\tO\nonly\tO\tonly\tO\nsmall\tO\tsmall\tO\namounts\tO\tamounts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nrequired\tO\trequired\tO\nwill\tO\twill\tO\nlead\tO\tlead\tO\nto\tO\tto\tO\nmassive\tO\tmassive\tO\noverhead\tO\toverhead\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nbring\tO\tbring\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nits\tO\tits\tO\nknees\tO\tknees\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\nlack-of-scalability\tO\tlack-of-scalability\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\npersonal\tO\tpersonal\tO\npreference\tO\tpreference\tO\nis\tO\tis\tO\nJQuery\tB-Library\tJQuery\tO\nAjax\tB-Library_Function\tAjax\tO\ntalking\tO\ttalking\tO\nto\tO\tto\tO\na\tO\ta\tO\nPHP\tB-Language\tPHP\tO\nbackend\tO\tbackend\tO\n(\tO\t(\tO\ntransactions\tO\ttransactions\tO\nvia\tO\tvia\tO\nJSON\tB-Language\tJSON\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndealing\tO\tdealing\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npresentation\tO\tpresentation\tO\nof\tO\tof\tO\nlarge\tO\tlarge\tO\ndatasets\tO\tdatasets\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nalways\tO\talways\tO\npage\tO\tpage\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nserver-side\tO\tserver-side\tO\nand\tO\tand\tO\npipeline\tO\tpipeline\tO\nit\tO\tit\tO\n(\tO\t(\tO\nload\tO\tload\tO\ndata\tO\tdata\tO\nahead\tO\tahead\tO\nof\tO\tof\tO\nand\tO\tand\tO\nbehind\tO\tbehind\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nview\tO\tview\tO\nto\tO\tto\tO\nreduce\tO\treduce\tO\ntransactions\tO\ttransactions\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nusually\tO\tusually\tO\npresent\tO\tpresent\tO\nin\tO\tin\tO\nvia\tO\tvia\tO\njQuery\tB-Library\tjQuery\tO\nDataTables\tB-Library_Function\tDataTables\tO\n.\tO\t.\tO\n\t\nGrids\tO\tGrids\tO\nare\tO\tare\tO\nalways\tO\talways\tO\nyour\tO\tyour\tO\nfriend\tO\tfriend\tO\nwith\tO\twith\tO\nlarge\tO\tlarge\tO\namounts\tO\tamounts\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nAgain\tO\tAgain\tO\n,\tO\t,\tO\npersonal\tO\tpersonal\tO\npreference\tO\tpreference\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nheavy\tO\theavy\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\njQuery\tB-Library\tjQuery\tO\nUI\tO\tUI\tO\nfor\tO\tfor\tO\nlayout\tO\tlayout\tO\nand\tO\tand\tO\npresentation\tO\tpresentation\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nwrite\tO\twrite\tO\ncustom\tO\tcustom\tO\nJavascript\tB-Language\tJavascript\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nnifty\tO\tnifty\tO\n\"\tO\t\"\tO\none-off\tO\tone-off\tO\ntype\tO\ttype\tO\nthings\tO\tthings\tO\nthat\tO\tthat\tO\ncome\tO\tcome\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nAgain\tO\tAgain\tO\n,\tO\t,\tO\nany\tO\tany\tO\nserver\tO\tserver\tO\nlanguage\tO\tlanguage\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nand\tO\tand\tO\nare\tO\tare\tO\ncomfortable\tO\tcomfortable\tO\nwith\tO\twith\tO\nwill\tO\twill\tO\nsuffice\tO\tsuffice\tO\n,\tO\t,\tO\nas\tO\tas\tO\nJavascript\tB-Language\tJavascript\tO\nis\tO\tis\tO\nlanguage\tO\tlanguage\tO\nagnostic\tO\tagnostic\tO\n.\tO\t.\tO\n\t\nJavascript\tB-Language\tJavascript\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nout\tO\tout\tO\nof\tO\tof\tO\nhand\tO\thand\tO\nin\tO\tin\tO\na\tO\ta\tO\nhurry\tO\thurry\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nrecommend\tO\trecommend\tO\nthat\tO\tthat\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nton\tO\tton\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nhands\tO\thands\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nfocus\tO\tfocus\tO\non\tO\ton\tO\nclean\tO\tclean\tO\npresentation\tO\tpresentation\tO\nvia\tO\tvia\tO\nsomething\tO\tsomething\tO\nbaseline\tO\tbaseline\tO\nlike\tO\tlike\tO\nHTML\tB-Language\tHTML\tO\nwith\tO\twith\tO\njudicious\tO\tjudicious\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nJavascript\tB-Language\tJavascript\tO\nand\tO\tand\tO\nCSS\tB-Language\tCSS\tO\nfor\tO\tfor\tO\nprogressive\tO\tprogressive\tO\nenhancement\tO\tenhancement\tO\n.\tO\t.\tO\n\t\nThink\tO\tThink\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\ngo\tO\tgo\tO\ncrazy\tO\tcrazy\tO\nwith\tO\twith\tO\nmotion\tO\tmotion\tO\n,\tO\t,\tO\ndynamic\tO\tdynamic\tO\nelements\tO\telements\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nforget\tO\tforget\tO\nthe\tO\tthe\tO\nold\tO\told\tO\nadage\tO\tadage\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\n80%\tO\t80%\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npeople\tO\tpeople\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\n20%\tO\t20%\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfunctionality\tO\tfunctionality\tO\n\"\tO\t\"\tO\nNail\tO\tNail\tO\nthat\tO\tthat\tO\n20%\tO\t20%\tO\ncleanly\tO\tcleanly\tO\nbefore\tO\tbefore\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ntown\tO\ttown\tO\non\tO\ton\tO\nflashy\tO\tflashy\tO\njavascript\tB-Language\tjavascript\tO\nfluff\tO\tfluff\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nusers\tO\tusers\tO\nwill\tO\twill\tO\nthank\tO\tthank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6947286\tO\t6947286\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6947286/\tO\thttps://stackoverflow.com/questions/6947286/\tO\n\t\n\t\nJSON\tB-File_Type\tJSON\tO\nis\tO\tis\tO\nby\tO\tby\tO\nfar\tO\tfar\tO\nthe\tO\tthe\tO\nfastest\tO\tfastest\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nIS\tO\tIS\tO\nJavaScript\tB-Language\tJavaScript\tO\n.\tO\t.\tO\n\t\nApplication\tO\tApplication\tO\nframeworks\tO\tframeworks\tO\nlike\tO\tlike\tO\nEXT.JS\tB-Library\tEXT.JS\tO\nare\tO\tare\tO\nalready\tO\talready\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\ngreat\tO\tgreat\tO\nsuccess\tO\tsuccess\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16994398\tO\t16994398\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16994398/\tO\thttps://stackoverflow.com/questions/16994398/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ndescribes\tO\tdescribes\tO\nwhat\tO\twhat\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nRuby\tB-Language\tRuby\tO\n1.8\tB-Version\t1.8\tO\n(\tO\t(\tO\nand\tO\tand\tO\nREE\tB-Version\tREE\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nfixed\tO\tfixed\tO\nin\tO\tin\tO\n1.9\tB-Version\t1.9\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\n:\tO\t:\tO\n\t\nWhy\tO\tWhy\tO\ncalling\tO\tcalling\tO\n==\tB-Library_Function\t==\tB-Code_Block\non\tO\ton\tO\nString\tB-Data_Type\tString\tB-Code_Block\nor\tO\tor\tO\nFixnum\tB-Data_Type\tFixnum\tB-Code_Block\ntriggers\tO\ttriggers\tO\ncalling\tO\tcalling\tO\n==\tB-Library_Function\t==\tB-Code_Block\non\tO\ton\tO\nother\tB-Variable_Name\tother\tB-Code_Block\nobject\tO\tobject\tO\nat\tO\tat\tO\nall\tO\tall\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\ncalling\tO\tcalling\tO\n==\tB-Library_Function\t==\tB-Code_Block\non\tO\ton\tO\nString\tB-Data_Type\tString\tB-Code_Block\nworks\tO\tworks\tO\ndifferently\tO\tdifferently\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nother\tB-Variable_Name\tother\tB-Code_Block\nobject\tO\tobject\tO\nclass\tO\tclass\tO\n?\tO\t?\tO\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1724\tI-Code_Block\tQ_1724\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExample\tO\tExample\tO\n1\tO\t1\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1725\tI-Code_Block\tQ_1725\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNothing\tO\tNothing\tO\ninteresting\tO\tinteresting\tO\nhere\tO\there\tO\n,\tO\t,\tO\nmove\tO\tmove\tO\nalong\tO\talong\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n2\tO\t2\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1726\tI-Code_Block\tQ_1726\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCalling\tO\tCalling\tO\n==\tB-Library_Function\t==\tB-Code_Block\non\tO\ton\tO\nString\tB-Data_Type\tString\tB-Code_Block\ntriggers\tO\ttriggers\tO\n==\tB-Library_Function\t==\tB-Code_Block\non\tO\ton\tO\nother\tB-Variable_Name\tother\tB-Code_Block\nobject\tO\tobject\tO\nof\tO\tof\tO\nException\tB-Library_Class\tException\tB-Code_Block\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n3\tO\t3\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1727\tI-Code_Block\tQ_1727\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCalling\tO\tCalling\tO\n==\tB-Library_Function\t==\tB-Code_Block\non\tO\ton\tO\nFixnum\tB-Data_Type\tFixnum\tB-Code_Block\ntriggers\tO\ttriggers\tO\n==\tB-Library_Function\t==\tB-Code_Block\non\tO\ton\tO\nother\tB-Variable_Name\tother\tB-Code_Block\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n4\tO\t4\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1728\tI-Code_Block\tQ_1728\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCalling\tO\tCalling\tO\n==\tB-Library_Function\t==\tB-Code_Block\non\tO\ton\tO\nString\tB-Data_Type\tString\tB-Code_Block\ntriggers\tO\ttriggers\tO\n==\tB-Library_Function\t==\tB-Code_Block\non\tO\ton\tO\nother\tB-Variable_Name\tother\tB-Code_Block\nobject\tO\tobject\tO\nof\tO\tof\tO\nException\tB-Library_Class\tException\tB-Code_Block\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16994398\tO\t16994398\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16994398/\tO\thttps://stackoverflow.com/questions/16994398/\tO\n\t\n\t\nRuby\tB-Language\tRuby\tO\nis\tO\tis\tO\nan\tO\tan\tO\nobject-oriented\tO\tobject-oriented\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nan\tO\tan\tO\nobject-oriented\tO\tobject-oriented\tO\nlanguage\tO\tlanguage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nsend\tO\tsend\tO\nmessages\tO\tmessages\tO\nto\tO\tto\tO\nobjects\tO\tobjects\tO\nand\tO\tand\tO\nthose\tO\tthose\tO\nobjects\tO\tobjects\tO\nthen\tO\tthen\tO\nrespond\tO\trespond\tO\nto\tO\tto\tO\nthose\tO\tthose\tO\nmessages\tO\tmessages\tO\nhowever\tO\thowever\tO\nthey\tO\tthey\tO\nsee\tO\tsee\tO\nfit\tO\tfit\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nreceiver\tO\treceiver\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nreceiver(!)\tO\treceiver(!)\tO\n\t\nis\tO\tis\tO\nin\tO\tin\tO\ntotal\tO\ttotal\tO\ncontrol\tO\tcontrol\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nmeans\tO\tmeans\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nsome\tO\tsome\tO\noperators\tO\toperators\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ncertain\tO\tcertain\tO\nexpectations\tO\texpectations\tO\nof\tO\tof\tO\nsymmetry\tO\tsymmetry\tO\n:\tO\t:\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\na\tB-Code_Block\ta\tB-Code_Block\n==\tI-Code_Block\t==\tI-Code_Block\nb\tI-Code_Block\tb\tI-Code_Block\nis\tO\tis\tO\nexpected\tO\texpected\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nb\tB-Code_Block\tb\tB-Code_Block\n==\tI-Code_Block\t==\tI-Code_Block\na\tI-Code_Block\ta\tI-Code_Block\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nin\tO\tin\tO\nan\tO\tan\tO\nOO\tO\tOO\tO\nlanguage\tO\tlanguage\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nimpossible\tO\timpossible\tO\n!\tO\t!\tO\n\t\nEither\tO\tEither\tO\na\tB-Variable_Name\ta\tB-Code_Block\nor\tO\tor\tO\nb\tB-Variable_Name\tb\tB-Code_Block\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nreceiver\tO\treceiver\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nso\tO\tso\tO\nin\tO\tin\tO\none\tO\tone\tO\ncase\tO\tcase\tO\na\tB-Variable_Name\ta\tB-Code_Block\ngets\tO\tgets\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\nwhether\tO\twhether\tO\na\tB-Variable_Name\ta\tB-Code_Block\nand\tO\tand\tO\nb\tB-Variable_Name\tb\tB-Code_Block\nare\tO\tare\tO\nequal\tO\tequal\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ncase\tO\tcase\tO\nb\tB-Variable_Name\tb\tB-Code_Block\ngets\tO\tgets\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nmight\tO\tmight\tO\ndecide\tO\tdecide\tO\ndifferently\tO\tdifferently\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nexpectation\tO\texpectation\tO\nof\tO\tof\tO\nsymmetry\tO\tsymmetry\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbroken\tO\tbroken\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\nclasses\tO\tclasses\tO\nequality\tO\tequality\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nimplemented\tO\timplemented\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n:\tO\t:\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nNumeric\tB-Class_Name\tNumeric\tB-Code_Block\nclass\tO\tclass\tO\n(\tO\t(\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\na\tO\ta\tO\nQuaternion\tB-Library_Class\tQuaternion\tB-Code_Block\nclass\tO\tclass\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nbuiltin\tO\tbuiltin\tO\nFixnum\tB-Library_Class\tFixnum\tB-Code_Block\nclass\tO\tclass\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nanything\tO\tanything\tO\nabout\tO\tabout\tO\nQuaternions\tB-Library_Class\tQuaternions\tB-Code_Block\n.\tO\t.\tO\nSo\tO\tSo\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nask\tO\task\tO\nthe\tO\tthe\tO\nFixnum\tB-Library_Class\tFixnum\tB-Code_Block\n0\tO\t0\tI-Code_Block\nwhether\tO\twhether\tO\nit\tO\tit\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nQuaternion\tB-Library_Class\tQuaternion\tB-Code_Block\n(\tB-Value\t(\tI-Code_Block\n0\tI-Value\t0\tI-Code_Block\n,\tI-Value\t,\tI-Code_Block\n0\tI-Value\t0\tI-Code_Block\n,\tI-Value\t,\tI-Code_Block\n0\tI-Value\t0\tI-Code_Block\n,\tI-Value\t,\tI-Code_Block\n0\tI-Value\t0\tI-Code_Block\n)\tI-Value\t)\tI-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nresponds\tO\tresponds\tO\nfalse\tB-Value\tfalse\tB-Code_Block\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nthe\tO\tthe\tO\nFixnum\tB-Library_Class\tFixnum\tB-Code_Block\nwill\tO\twill\tO\nfirst\tO\tfirst\tO\ncheck\tO\tcheck\tO\n:\tO\t:\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nmyself\tO\tmyself\tO\nto\tO\tto\tO\na\tO\ta\tO\nQuaternion\tB-Library_Class\tQuaternion\tB-Code_Block\n?\tO\t?\tO\n\t\nNo\tO\tNo\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmaybe\tO\tmaybe\tO\na\tO\ta\tO\nQuaternion\tB-Library_Class\tQuaternion\tB-Code_Block\nknows\tO\tknows\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nitself\tO\titself\tO\nto\tO\tto\tO\na\tO\ta\tO\nFixnum\tB-Library_Class\tFixnum\tB-Code_Block\n!\tO\t!\tO\n\t\nAfter\tO\tAfter\tO\nall\tO\tall\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nQuaternion\tB-Library_Class\tQuaternion\tB-Code_Block\nclass\tO\tclass\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nexist\tO\texist\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nFixnum\tB-Library_Class\tFixnum\tB-Code_Block\nclass\tO\tclass\tO\nwas\tO\twas\tO\nwritten\tO\twritten\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nFixnum\tB-Library_Class\tFixnum\tB-Code_Block\nclass\tO\tclass\tO\ncannot\tO\tcannot\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nQuaternions\tB-Library_Class\tQuaternions\tB-Code_Block\n.\tO\t.\tO\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nQuaternion\tB-Library_Class\tQuaternion\tB-Code_Block\nclass\tO\tclass\tO\nwas\tO\twas\tO\nwritten\tO\twritten\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nthe\tO\tthe\tO\nauthor\tO\tauthor\tO\nwas\tO\twas\tO\nso\tO\tso\tO\nthoughtful\tO\tthoughtful\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nQuaternions\tB-Library_Class\tQuaternions\tB-Code_Block\nwith\tO\twith\tO\nFixnums\tB-Library_Class\tFixnums\tB-Code_Block\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nwhy\tO\twhy\tO\nFixnum#\tB-Library_Function\tFixnum#\tB-Code_Block\n==\tI-Library_Function\t==\tI-Code_Block\nreverses\tO\treverses\tO\nthe\tO\tthe\tO\narguments\tO\targuments\tO\nand\tO\tand\tO\ntries\tO\ttries\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nString\tB-Data_Type\tString\tB-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbut\tO\tbut\tO\nsomewhat\tO\tsomewhat\tO\nmore\tO\tmore\tO\ncomplicated\tO\tcomplicated\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nRuby\tB-Language\tRuby\tO\n,\tO\t,\tO\nclasses\tO\tclasses\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\ntypes\tO\ttypes\tO\nand\tO\tand\tO\nsubtyping\tO\tsubtyping\tO\nand\tO\tand\tO\nsubclassing\tO\tsubclassing\tO\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nRuby\tB-Language\tRuby\tO\nitself\tO\titself\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\nconcept\tO\tconcept\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nat\tO\tat\tO\nall\tO\tall\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nis\tO\tis\tO\nits\tO\tits\tO\nprotocol\tO\tprotocol\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\nit\tO\tit\tO\nunderstands\tO\tunderstands\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nresponds\tO\tresponds\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\nconcept\tO\tconcept\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrecorded\tO\trecorded\tO\nin\tO\tin\tO\nRuby\tB-Language\tRuby\tO\n(\tO\t(\tO\nunlike\tO\tunlike\tO\nObjective-C\tB-Language\tObjective-C\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nexplicit\tO\texplicit\tO\nnotion\tO\tnotion\tO\nof\tO\tof\tO\nprotocol\tO\tprotocol\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\nOO\tO\tOO\tO\nencapsulation\tO\tencapsulation\tO\n,\tO\t,\tO\nand\tO\tand\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nspecific\tO\tspecific\tO\ntype\tO\ttype\tO\nand\tO\tand\tO\neven\tO\teven\tO\nmore\tO\tmore\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nspecific\tO\tspecific\tO\nrepresentation\tO\trepresentation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nNote\tO\tNote\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nviolates\tO\tviolates\tO\nOO\tO\tOO\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsometimes\tO\tsometimes\tO\nnecessary\tO\tnecessary\tO\nfor\tO\tfor\tO\nperformance\tO\tperformance\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nIn\tO\tIn\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nRuby\tB-Language\tRuby\tO\nneeds\tO\tneeds\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nof\tO\tof\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nclass\tO\tclass\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\njust\tO\tjust\tO\nresponding\tO\tresponding\tO\nto\tO\tto\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nprotocol\tO\tprotocol\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nlose\tO\tlose\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nflexibility\tO\tflexibility\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tB-Code_Block\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nmuch\tO\tmuch\tO\nrather\tO\trather\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nRope\tB-Data_Type\tRope\tB-Code_Block\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nback\tO\tback\tO\nsome\tO\tsome\tO\nflexibility\tO\tflexibility\tO\n,\tO\t,\tO\nRuby\tB-Language\tRuby\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nin\tO\tin\tO\nsomething\tO\tsomething\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexactly\tO\texactly\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tB-Code_Block\nbut\tO\tbut\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nequivalent\tO\tequivalent\tO\nto\tO\tto\tO\none\tO\tone\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nconverted\tO\tconverted\tO\nto\tO\tto\tO\none\tO\tone\tO\nwith\tO\twith\tO\na\tO\ta\tO\nto_str\tB-Library_Function\tto_str\tB-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nunlike\tO\tunlike\tO\nother\tO\tother\tO\nlanguages\tO\tlanguages\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nA\tB-Value\tA\tB-Code_Block\nIS-A\tI-Value\tIS-A\tI-Code_Block\nString\tI-Value\tString\tI-Code_Block\nis\tO\tis\tO\nrepresented\tO\trepresented\tO\nby\tO\tby\tO\nA\tB-Class_Name\tA\tB-Code_Block\nbeing\tO\tbeing\tO\na\tO\ta\tO\nsubclass\tO\tsubclass\tO\nof\tO\tof\tO\nString\tB-Data_Type\tString\tB-Code_Block\n,\tO\t,\tO\nin\tO\tin\tO\nRuby\tB-Language\tRuby\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nrelationship\tO\trelationship\tO\nA\tB-Value\tA\tB-Code_Block\nIS-A\tI-Value\tIS-A\tI-Code_Block\nString\tI-Value\tString\tI-Code_Block\nis\tO\tis\tO\nrepresented\tO\trepresented\tO\nby\tO\tby\tO\nA\tB-Class_Name\tA\tB-Code_Block\nhaving\tO\thaving\tO\na\tO\ta\tO\nto_str\tB-Library_Function\tto_str\tB-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nseeing\tO\tseeing\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nargument\tO\targument\tO\nto\tO\tto\tO\nString#\tB-Library_Function\tString#\tB-Code_Block\n==\tI-Library_Function\t==\tI-Code_Block\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tB-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\nString#\tB-Library_Function\tString#\tB-Code_Block\n==\tI-Library_Function\t==\tI-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\nstring-like\tO\tstring-like\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nit\tO\tit\tO\nimplements\tO\timplements\tO\nto_str\tB-Library_Function\tto_str\tB-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\nmaybe\tO\tmaybe\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nitself\tO\titself\tO\nto\tO\tto\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tB-Code_Block\n?\tO\t?\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nequality\tO\tequality\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nget\tO\tget\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nPeople\tO\tPeople\tO\ncannot\tO\tcannot\tO\neven\tO\teven\tO\nagree\tO\tagree\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\nmeans\tO\tmeans\tO\nin\tO\tin\tO\na\tO\ta\tO\npurely\tO\tpurely\tO\nfunctional\tO\tfunctional\tO\nlanguage\tO\tlanguage\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\neasy\tO\teasy\tO\ncase\tO\tcase\tO\n!\tO\t!\tO\n\t\nIn\tO\tIn\tO\nRuby\tB-Language\tRuby\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nadditional\tO\tadditional\tO\ncomplications\tO\tcomplications\tO\n:\tO\t:\tO\nmutable\tO\tmutable\tO\nstate\tO\tstate\tO\nand\tO\tand\tO\nOO\tO\tOO\tO\n.\tO\t.\tO\n\t\nMutable\tO\tMutable\tO\nstate\tO\tstate\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\ntwo\tO\ttwo\tO\nobjects\tO\tobjects\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\nequal\tO\tequal\tO\na\tO\ta\tO\nmoment\tO\tmoment\tO\nago\tO\tago\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nequal\tO\tequal\tO\nanymore\tO\tanymore\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nmoments\tO\tmoments\tO\nlater\tO\tlater\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nshould\tO\tshould\tO\nthey\tO\tthey\tO\nbe\tO\tbe\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nthey\tO\tthey\tO\nbe\tO\tbe\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nOO\tO\tOO\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nequality\tO\tequality\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nsymmetric\tO\tsymmetric\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\nimplementations\tO\timplementations\tO\nof\tO\tof\tO\n==\tB-Library_Function\t==\tB-Code_Block\nfor\tO\tfor\tO\nvarious\tO\tvarious\tO\ncore\tO\tcore\tO\nand\tO\tand\tO\nstdlib\tB-Library\tstdlib\tO\nclasses\tO\tclasses\tO\nare\tO\tare\tO\nconstantly\tO\tconstantly\tO\nimproved\tO\timproved\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nalso\tO\talso\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nsee\tO\tsee\tO\nweird\tO\tweird\tO\nbehavior\tO\tbehavior\tO\nnow\tO\tnow\tO\nand\tO\tand\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nSometimes\tO\tSometimes\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nartifact\tO\tartifact\tO\nof\tO\tof\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nequality\tO\tequality\tO\nright\tO\tright\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsometimes\tO\tsometimes\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\njust\tO\tjust\tO\nsimply\tO\tsimply\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\n:\tO\t:\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\narithmetic\tO\tarithmetic\tO\noperators\tO\toperators\tO\n,\tO\t,\tO\nsubclasses\tO\tsubclasses\tO\nof\tO\tof\tO\nNumeric\tB-Library_Class\tNumeric\tB-Code_Block\nactually\tO\tactually\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nformal\tO\tformal\tO\ndouble-dispatch\tO\tdouble-dispatch\tO\nprotocol\tO\tprotocol\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncoerce\tB-Library_Function\tcoerce\tB-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\na\tO\ta\tO\nNumeric\tB-Library_Class\tNumeric\tB-Code_Block\nobject\tO\tobject\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\nNumeric\tB-Library_Class\tNumeric\tB-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nask\tO\task\tO\nthat\tO\tthat\tO\nother\tO\tother\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\ncoerce\tB-Library_Function\tcoerce\tB-Code_Block\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nobjects\tO\tobjects\tO\nto\tO\tto\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nQuaternion\tB-Library_Class\tQuaternion\tB-Code_Block\nto\tO\tto\tO\na\tO\ta\tO\nFixnum\tB-Library_Class\tFixnum\tB-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nFixnum\tB-Library_Class\tFixnum\tB-Code_Block\nwo\tO\two\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2222\tI-Code_Block\tA_2222\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\n+\tB-Library_Function\t+\tB-Code_Block\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nFixnum\tB-Library_Class\tFixnum\tB-Code_Block\nwill\tO\twill\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2223\tI-Code_Block\tA_2223\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIOW\tO\tIOW\tO\n:\tO\t:\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncall\tO\tcall\tO\nQuaternion\tB-Library_Function\tQuaternion\tB-Code_Block\n#coerce\tI-Library_Function\t#coerce\tI-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nequivalent\tO\tequivalent\tO\nof\tO\tof\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2224\tI-Code_Block\tA_2224\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\nwhich\tO\twhich\tO\nQuaternion\tB-Library_Class\tQuaternion\tB-Code_Block\nwill\tO\twill\tO\nrespond\tO\trespond\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nArray\tB-Data_Structure\tArray\tB-Code_Block\nof\tO\tof\tO\n[\tB-Code_Block\t[\tB-Code_Block\nQuaternion.new(2,0,0,0)\tI-Code_Block\tQuaternion.new(2,0,0,0)\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nQuaternion.new(1,0,0,0)\tI-Code_Block\tQuaternion.new(1,0,0,0)\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nFixnum#+\tB-Library_Function\tFixnum#+\tB-Code_Block\nwill\tO\twill\tO\ntry\tO\ttry\tO\nagain\tO\tagain\tO\nby\tO\tby\tO\nsimply\tO\tsimply\tO\ncalling\tO\tcalling\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2225\tI-Code_Block\tA_2225\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhich\tO\tWhich\tO\nwill\tO\twill\tO\nnow\tO\tnow\tO\nwork\tO\twork\tO\nbecause\tO\tbecause\tO\na\tB-Variable_Name\ta\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nQuaternion\tB-Library_Class\tQuaternion\tB-Code_Block\nalso\tO\talso\tO\nand\tO\tand\tO\nknows\tO\tknows\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ntwo\tO\ttwo\tO\nQuaternions\tB-Library_Class\tQuaternions\tB-Code_Block\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nvery\tO\tvery\tO\ncommon\tO\tcommon\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\ncoerce\tB-Library_Function\tcoerce\tB-Code_Block\nis\tO\tis\tO\nsimply\tO\tsimply\tO\nto\tO\tto\tO\nswap\tO\tswap\tO\nthe\tO\tthe\tO\narguments\tO\targuments\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2226\tI-Code_Block\tA_2226\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nequivalent\tO\tequivalent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbehavior\tO\tbehavior\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nseeing\tO\tseeing\tO\nwith\tO\twith\tO\nFixnum#\tB-Library_Function\tFixnum#\tB-Code_Block\n==\tI-Library_Function\t==\tI-Code_Block\n.\tO\t.\tO\n\t\nAgain\tO\tAgain\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ndispatch\tO\tdispatch\tO\nis\tO\tis\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nget\tO\tget\tO\nright\tO\tright\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nimprovements\tO\timprovements\tO\nbeing\tO\tbeing\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncoerce\tB-Library_Function\tcoerce\tB-Code_Block\nprotocol\tO\tprotocol\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16994398\tO\t16994398\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16994398/\tO\thttps://stackoverflow.com/questions/16994398/\tO\n\t\n\t\nRuby\tB-Language\tRuby\tO\nhas\tO\thas\tO\nfour\tO\tfour\tO\nlevels\tO\tlevels\tO\nof\tO\tof\tO\nobject\tO\tobject\tO\nequivalence\tO\tequivalence\tO\n:\tO\t:\tO\n\t\n#equal\tB-Library_Function\t#equal\tB-Code_Block\n?\tI-Library_Function\t?\tI-Code_Block\n–\tO\t–\tO\nsame\tO\tsame\tO\nobject\tO\tobject\tO\n\t\n#eql\tB-Library_Function\t#eql\tB-Code_Block\n?\tI-Library_Function\t?\tI-Code_Block\n–\tO\t–\tO\nhighest\tO\thighest\tO\nlevel\tO\tlevel\tO\nof\tO\tof\tO\nequivalence\tO\tequivalence\tO\nbelow\tO\tbelow\tO\nsame\tO\tsame\tO\nobject\tO\tobject\tO\n\t\n#\tB-Library_Function\t#\tB-Code_Block\n==\tI-Library_Function\t==\tI-Code_Block\n–\tO\t–\tO\n\"\tO\t\"\tO\nstandard\tO\tstandard\tO\n\"\tO\t\"\tO\nequality\tO\tequality\tO\n\t\n#\tB-Library_Function\t#\tB-Code_Block\n==\tI-Library_Function\t==\tI-Code_Block\n=\tI-Library_Function\t=\tI-Code_Block\n,\tO\t,\tO\n#\tB-Library_Function\t#\tB-Code_Block\n=\tI-Library_Function\t=\tI-Code_Block\n~\tI-Library_Function\t~\tI-Code_Block\n,\tO\t,\tO\n#hash\tB-Library_Function\t#hash\tB-Code_Block\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\n–\tO\t–\tO\nloose\tO\tloose\tO\nequivalence\tO\tequivalence\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nsame\tO\tsame\tO\ngroup\tO\tgroup\tO\n\"\tO\t\"\tO\nequivalence\tO\tequivalence\tO\n\t\nMindful\tO\tMindful\tO\nprogrammer\tO\tprogrammer\tO\nequips\tO\tequips\tO\neach\tO\teach\tO\nof\tO\tof\tO\nher\tO\ther\tO\nclasses\tO\tclasses\tO\nwith\tO\twith\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nmethods\tO\tmethods\tO\nexcept\tO\texcept\tO\n#equal\tB-Library_Function\t#equal\tB-Code_Block\n?\tI-Library_Function\t?\tI-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nnever\tO\tnever\tO\nbe\tO\tbe\tO\noverriden\tO\toverriden\tO\n.\tO\t.\tO\n\t\nGoing\tO\tGoing\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsubject\tO\tsubject\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nmany\tO\tmany\tO\nbuilt-in\tO\tbuilt-in\tO\nRuby\tB-Language\tRuby\tO\nobjects\tO\tobjects\tO\nhave\tO\thave\tO\ntheir\tO\ttheir\tO\nshare\tO\tshare\tO\nof\tO\tof\tO\nidiosyncrasies\tO\tidiosyncrasies\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nRuby\tB-Language\tRuby\tO\ncore\tO\tcore\tO\nteam\tO\tteam\tO\nconstantly\tO\tconstantly\tO\nworks\tO\tworks\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\nway\tO\tway\tO\nfrom\tO\tfrom\tO\n1.8\tB-Version\t1.8\tO\nto\tO\tto\tO\n2.0\tB-Version\t2.0\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nfixes\tO\tfixes\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\n1.8\tB-Version\t1.8\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nmore\tO\tmore\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\nmention\tO\tmention\tO\nwith\tO\twith\tO\n#\tB-Library_Function\t#\tB-Code_Block\n==\tI-Library_Function\t==\tI-Code_Block\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nclasses\tO\tclasses\tO\nthat\tO\tthat\tO\nrepresent\tO\trepresent\tO\nelements\tO\telements\tO\nof\tO\tof\tO\nordered\tO\tordered\tO\nsets\tO\tsets\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nimplement\tO\timplement\tO\n#\tB-Library_Function\t#\tB-Code_Block\n==\tI-Library_Function\t==\tI-Code_Block\ndirectly\tO\tdirectly\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ninstead\tO\tinstead\tO\nyou\tO\tyou\tO\nprovide\tO\tprovide\tO\n#<=>\tB-Library_Function\t#<=>\tB-Code_Block\nthree-way\tO\tthree-way\tO\ncomparison\tO\tcomparison\tO\nmethod,\tO\tmethod,\tO\nand\tO\tand\tO\ninclude\tO\tinclude\tO\nComparable\tB-Library\tComparable\tB-Code_Block\nmodule,\tO\tmodule,\tO\nwhich\tO\twhich\tO\ngives\tO\tgives\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nfree\tO\tfree\tO\nmethods\tO\tmethods\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n#==,\tB-Library_Function\t#==,\tB-Code_Block\n#<,\tI-Library_Function\t#<,\tI-Code_Block\n#>\tI-Library_Function\t#>\tI-Code_Block\n,\tO\t,\tO\n#sort\tB-Library_Function\t#sort\tB-Code_Block\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nYet\tO\tYet\tO\none\tO\tone\tO\nmore\tO\tmore\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\nmention\tO\tmention\tO\nwith\tO\twith\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\noperators\tO\toperators\tO\nand\tO\tand\tO\noperator-like\tO\toperator-like\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nbe\tO\tbe\tO\nmindful\tO\tmindful\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexistence\tO\texistence\tO\nof\tO\tof\tO\n#coerce\tB-Library_Function\t#coerce\tB-Code_Block\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\nundergoing\tO\tundergoing\tO\nimprovements\tO\timprovements\tO\nin\tO\tin\tO\nRuby\tB-Language\tRuby\tO\n2.0\tB-Version\t2.0\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36930559\tO\t36930559\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36930559/\tO\thttps://stackoverflow.com/questions/36930559/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nit\tO\tit\tO\nhas\tO\thas\tO\ntwo\tO\ttwo\tO\ncontroller\tO\tcontroller\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntwo\tO\ttwo\tO\ncontrollers\tO\tcontrollers\tO\nhave\tO\thave\tO\nan\tO\tan\tO\naction\tO\taction\tO\nwith\tO\twith\tO\nFormCollection\tB-Library_Class\tFormCollection\tO\nparameter\tO\tparameter\tO\nwith\tO\twith\tO\nHTTPPost\tB-Library_Variable\tHTTPPost\tO\nattribute\tO\tattribute\tO\ndecorated\tO\tdecorated\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nForm\tO\tForm\tO\nsubmit\tO\tsubmit\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nthen\tO\tthen\tO\nwhich\tO\twhich\tO\naction\tO\taction\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ntriggered\tO\ttriggered\tO\nto\tO\tto\tO\ncapture\tO\tcapture\tO\nthe\tO\tthe\tO\nform\tB-Library_Class\tform\tO\n's\tO\t's\tO\nvalues\tO\tvalues\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36930559\tO\t36930559\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36930559/\tO\thttps://stackoverflow.com/questions/36930559/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nForm\tB-Library_Class\tForm\tO\nCollection\tI-Library_Class\tCollection\tO\nclass\tO\tclass\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\ncapture\tO\tcapture\tO\nthe\tO\tthe\tO\nform\tB-Library_Class\tform\tO\n's\tO\t's\tO\nvalues\tO\tvalues\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ncontroller.There\tO\tcontroller.There\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nways\tO\tways\tO\nto\tO\tto\tO\nfetch\tO\tfetch\tO\nthese\tO\tthese\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nForm\tB-Library_Class\tForm\tO\nCollection\tI-Library_Class\tCollection\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nhttp://tutorial.techaltum.com/Form-collection-in-MVC.html\tO\thttp://tutorial.techaltum.com/Form-collection-in-MVC.html\tO\n\t\nhttp://www.c-sharpcorner.com/UploadFile/dacca2/understand-formcollection-in-mvc-controller/\tO\thttp://www.c-sharpcorner.com/UploadFile/dacca2/understand-formcollection-in-mvc-controller/\tO\n\t\nFollow\tO\tFollow\tO\nabove\tO\tabove\tO\nlink\tO\tlink\tO\nIt\tO\tIt\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45515166\tO\t45515166\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45515166/\tO\thttps://stackoverflow.com/questions/45515166/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nexoplayer\tB-Library_Class\texoplayer\tO\nffmpeg\tB-Application\tffmpeg\tO\nextension\tO\textension\tO\nand\tO\tand\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nAMR\tB-File_Type\tAMR\tO\nformat\tO\tformat\tO\n,\tO\t,\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nFollowing\tO\tFollowing\tO\nthe\tO\tthe\tO\ntutorial\tO\ttutorial\tO\n:\tO\t:\tO\nFFmpeg\tB-Application\tFFmpeg\tO\nExtension\tO\tExtension\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5955\tI-Code_Block\tQ_5955\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAfter\tO\tAfter\tO\nthe\tO\tthe\tO\ncompilation\tO\tcompilation\tO\nstep\tO\tstep\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5956\tI-Code_Block\tQ_5956\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngenerated\tO\tgenerated\tO\naar\tB-File_Type\taar\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5957\tI-Code_Block\tQ_5957\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nextension-ffmpeg-debug.arr\tB-File_Name\textension-ffmpeg-debug.arr\tO\nfile\tO\tfile\tO\ngenerated\tO\tgenerated\tO\nand\tO\tand\tO\nput\tO\tput\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlib\tB-File_Name\tlib\tO\nfolder\tO\tfolder\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nplayer\tO\tplayer\tO\nimplementation\tO\timplementation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5958\tI-Code_Block\tQ_5958\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5959\tI-Code_Block\tQ_5959\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nelse\tO\telse\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nconfigured\tO\tconfigured\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nAMR\tB-File_Type\tAMR\tO\nformat\tO\tformat\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nanyone\tO\tanyone\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32243385\tO\t32243385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32243385/\tO\thttps://stackoverflow.com/questions/32243385/\tO\n\t\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ndeclare\tO\tdeclare\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nin\tO\tin\tO\nSwift\tB-Language\tSwift\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nhold\tO\thold\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nany\tO\tany\tO\nenum\tB-Data_Type\tenum\tB-Code_Block\nString\tI-Data_Type\tString\tO\ntype\tO\ttype\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3907\tI-Code_Block\tQ_3907\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ntwo\tO\ttwo\tO\nenum\tB-Data_Type\tenum\tO\ntypes\tO\ttypes\tO\nare\tO\tare\tO\nloosely\tO\tloosely\tO\nrelated\tO\trelated\tO\nbut\tO\tbut\tO\ndefinitely\tO\tdefinitely\tO\ndistinct\tO\tdistinct\tO\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nseparated\tO\tseparated\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nso\tO\tso\tO\nlumping\tO\tlumping\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\ntogether\tO\ttogether\tO\nin\tO\tin\tO\none\tO\tone\tO\nenum\tB-Data_Type\tenum\tO\nand\tO\tand\tO\ndeclaring\tO\tdeclaring\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nMyAllIncludingEnumType\tB-Class_Name\tMyAllIncludingEnumType\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndesirable\tO\tdesirable\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\njust\tO\tjust\tO\ndeclare\tO\tdeclare\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nStrings\tB-Data_Type\tStrings\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nrawValues\tB-Library_Class\trawValues\tO\ndirectly\tO\tdirectly\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\ndeclare\tO\tdeclare\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nas\tO\tas\tO\n[\tB-Library\t[\tB-Code_Block\nAnyObject\tI-Library\tAnyObject\tI-Code_Block\n]\tI-Library\t]\tI-Code_Block\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntype\tO\ttype\tO\ncheck\tO\tcheck\tO\neach\tO\teach\tO\nelement\tO\telement\tO\nbefore\tO\tbefore\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\n.rawValue\tB-Library_Class\t.rawValue\tB-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\ngreat\tO\tgreat\tO\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nonly\tO\tonly\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nSwift\tB-Language\tSwift\tO\n1.2\tB-Version\t1.2\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\n's\tO\t's\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nApp\tB-Application\tApp\tO\nStore\tI-Application\tStore\tO\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nship\tO\tship\tO\nupdates\tO\tupdates\tO\nbefore\tO\tbefore\tO\nXcode\tB-Application\tXcode\tO\n7\tB-Version\t7\tO\ngoes\tO\tgoes\tO\nGM\tO\tGM\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\ncleaner\tO\tcleaner\tO\nbut\tO\tbut\tO\ncompletely\tO\tcompletely\tO\nalternate\tO\talternate\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32243385\tO\t32243385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32243385/\tO\thttps://stackoverflow.com/questions/32243385/\tO\n\t\n\t\nAn\tO\tAn\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\nKametrixom\tB-User_Name\tKametrixom\tO\n's\tO\t's\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nboth\tO\tboth\tO\nenums\tB-Data_Type\tenums\tO\nconform\tO\tconform\tO\nto\tO\tto\tO\na\tO\ta\tO\ncommon\tO\tcommon\tO\nprotocol\tO\tprotocol\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\nautomatically\tO\tautomatically\tO\nconform\tO\tconform\tO\nto\tO\tto\tO\nRawRepresentable\tB-Library_Class\tRawRepresentable\tB-Code_Block\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nraw\tO\traw\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nString\tB-Data_Type\tString\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4625\tI-Code_Block\tA_4625\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narray\tB-Data_Structure\tarray\tO\nsince\tO\tsince\tO\nRawRepresentable\tB-Library_Class\tRawRepresentable\tB-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\ngeneric\tO\tgeneric\tO\nprotocol\tO\tprotocol\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4626\tI-Code_Block\tA_4626\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32243385\tO\t32243385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32243385/\tO\thttps://stackoverflow.com/questions/32243385/\tO\n\t\n\t\nJust\tO\tJust\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nlogically\tO\tlogically\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nmultiple\tO\tmultiple\tO\nenums\tB-Data_Type\tenums\tO\nin\tO\tin\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\neither\tO\teither\tO\nthis\tO\tthis\tO\nor\tO\tor\tO\nthat\tO\tthat\tO\nenum\tB-Data_Type\tenum\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nwhat\tO\twhat\tO\nan\tO\tan\tO\nenum\tB-Data_Type\tenum\tO\nis\tO\tis\tO\n!\tO\t!\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndeclare\tO\tdeclare\tO\nan\tO\tan\tO\nnew\tO\tnew\tO\nenum\tB-Data_Type\tenum\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nassociated\tO\tassociated\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\naccepted\tO\taccepted\tO\nother\tO\tother\tO\nenums\tB-Data_Type\tenums\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4616\tI-Code_Block\tA_4616\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4617\tI-Code_Block\tA_4617\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42164231\tO\t42164231\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42164231/\tO\thttps://stackoverflow.com/questions/42164231/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\napproval\tO\tapproval\tO\nprocess\tO\tprocess\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsummary\tO\tsummary\tO\nsheet\tO\tsheet\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ncurrent\tO\tcurrent\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noffers\tO\toffers\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\na\tO\ta\tO\ndetail\tO\tdetail\tO\nsheet\tO\tsheet\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nam\tO\tam\tO\nkeeping\tO\tkeeping\tO\na\tO\ta\tO\nlog\tO\tlog\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\napproved\tO\tapproved\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nyou\tO\tyou\tO\ntype\tO\ttype\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noffer\tO\toffer\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nsheet\tO\tsheet\tO\n(\tO\t(\tO\noffer\tO\toffer\tO\ndetails\tO\tdetails\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\napprover\tO\tapprover\tO\ncan\tO\tcan\tO\nview\tO\tview\tO\na\tO\ta\tO\ndrop\tB-User_Interface_Element\tdrop\tO\ndown\tI-User_Interface_Element\tdown\tO\nbox\tI-User_Interface_Element\tbox\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nopen\tO\topen\tO\nand\tO\tand\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\napproved\tO\tapproved\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\neverything\tO\teverything\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\napprover\tO\tapprover\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nusername\tO\tusername\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napprover\tO\tapprover\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\ncell\tO\tcell\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nOffer\tO\tOffer\tO\nDetail\tO\tDetail\tO\ntab\tB-User_Interface_Element\ttab\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nkey\tO\tkey\tO\n,\tO\t,\tO\nin\tO\tin\tO\nH1\tO\tH1\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nallow\tO\tallow\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nline\tO\tline\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nB\tB-Variable_Name\tB\tO\non\tO\ton\tO\nthe\tO\tthe\tO\noffer\tO\toffer\tO\ndetails\tO\tdetails\tO\npage\tO\tpage\tO\nmatches\tO\tmatches\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSummary\tO\tSummary\tO\nTab\tO\tTab\tO\nin\tO\tin\tO\nH1\tO\tH1\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\nbelow\tO\tbelow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncells\tB-User_Interface_Element\tcells\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nusername\tO\tusername\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\ninto\tO\tinto\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nM\tB-Variable_Name\tM\tO\non\tO\ton\tO\nthe\tO\tthe\tO\noffer\tO\toffer\tO\ndetail\tO\tdetail\tO\nsheet\tO\tsheet\tO\n(\tO\t(\tO\nonce\tO\tonce\tO\nit\tO\tit\tO\nfinds\tO\tfinds\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nrow\tB-User_Interface_Element\trow\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsummary\tO\tsummary\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nhardcoded\tO\thardcoded\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nkeep\tO\tkeep\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\naudit\tO\taudit\tO\npurposes\tO\tpurposes\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwill\tO\twill\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nclarify\tO\tclarify\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5355\tI-Code_Block\tQ_5355\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42164231\tO\t42164231\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42164231/\tO\thttps://stackoverflow.com/questions/42164231/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\ncolum\tO\tcolum\tO\n\"\tO\t\"\tO\nM\tB-Variable_Name\tM\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nbase\tO\tbase\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6038\tI-Code_Block\tA_6038\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2417585\tO\t2417585\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2417585/\tO\thttps://stackoverflow.com/questions/2417585/\tO\n\t\n\t\nThis\tO\tThis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nquestion\tO\tquestion\tO\nI\tO\tI\tO\nasked\tO\tasked\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\nhorizontally\tO\thorizontally\tO\naligned\tO\taligned\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\nsit\tO\tsit\tO\ninside\tO\tinside\tO\na\tO\ta\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\ncalled\tO\tcalled\tO\n\"\tO\t\"\tO\n.Parent\tB-Class_Name\t.Parent\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_162\tI-Code_Block\tQ_162\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nParent\tO\tParent\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nexists\tO\texists\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nanother\tO\tanother\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\ncalled\tO\tcalled\tO\n#main\tO\t#main\tO\n.\tO\t.\tO\n\t\n#main\tO\t#main\tO\nhas\tO\thas\tO\na\tO\ta\tO\nwhite\tO\twhite\tO\nbackground\tB-User_Interface_Element\tbackground\tO\nthat\tO\tthat\tO\nframes\tO\tframes\tO\nall\tO\tall\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\nBefore\tO\tBefore\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\nfloats\tO\tfloats\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\ninside\tO\tinside\tO\n.Parent\tB-Class_Name\t.Parent\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\nwas\tO\twas\tO\nfine\tO\tfine\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ncontaining\tO\tcontaining\tO\nDiv\tB-HTML_XML_Tag\tDiv\tO\npushed\tO\tpushed\tO\nthe\tO\tthe\tO\nwhite\tO\twhite\tO\nbackground\tB-User_Interface_Element\tbackground\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nnow\tO\tnow\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\nare\tO\tare\tO\nfloating\tO\tfloating\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\npush\tO\tpush\tO\n#main\tB-HTML_XML_Tag\t#main\tO\n'\tO\t'\tO\ns\tO\ts\tO\nwhite\tO\twhite\tO\nbackground\tB-User_Interface_Element\tbackground\tO\ndown\tO\tdown\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nsuggest\tO\tsuggest\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n#main\tB-HTML_XML_Tag\t#main\tO\nto\tO\tto\tO\nrecognise\tO\trecognise\tO\nthe\tO\tthe\tO\nsize\tB-Library_Variable\tsize\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nstrech\tO\tstrech\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\n?\tO\t?\tO\n\t\nShould\tO\tShould\tO\nI\tO\tI\tO\napproach\tO\tapproach\tO\nthis\tO\tthis\tO\ndifferently\tO\tdifferently\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nDave\tB-User_Name\tDave\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2417585\tO\t2417585\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2417585/\tO\thttps://stackoverflow.com/questions/2417585/\tO\n\t\n\t\nActually\tO\tActually\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nARE\tO\tARE\tO\nbehaving\tO\tbehaving\tO\ncorrectly\tO\tcorrectly\tO\nand\tO\tand\tO\nparent\tO\tparent\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\nare\tO\tare\tO\nnever\tO\tnever\tO\nto\tO\tto\tO\nexpand\tO\texpand\tO\nto\tO\tto\tO\ncontain\tO\tcontain\tO\nfloated\tO\tfloated\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nshown\tO\tshown\tO\nby\tO\tby\tO\nother\tO\tother\tO\nanswers\tO\tanswers\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nGoogle\tB-Website\tGoogle\tO\nfor\tO\tfor\tO\n\"\tO\t\"\tO\nclear\tO\tclear\tO\nfloats\tO\tfloats\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\nexplanations\tO\texplanations\tO\nand\tO\tand\tO\nexamples\tO\texamples\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2417585\tO\t2417585\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2417585/\tO\thttps://stackoverflow.com/questions/2417585/\tO\n\t\n\t\nGive\tO\tGive\tO\nyour\tO\tyour\tO\n#main\tB-HTML_XML_Tag\t#main\tO\noverflow:hidden\tB-Code_Block\toverflow:hidden\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nand\tO\tand\tO\noptionall\tO\toptionall\tO\nclear:both\tB-Code_Block\tclear:both\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9301538\tO\t9301538\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9301538/\tO\thttps://stackoverflow.com/questions/9301538/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nif\tO\tif\tO\nelse\tO\telse\tO\nstatement\tO\tstatement\tO\nthat\tO\tthat\tO\nchange\tO\tchange\tO\nlanguage\tO\tlanguage\tO\nCapabilitie\tB-Library_Class\tCapabilitie\tO\nEN\tO\tEN\tO\nto\tO\tto\tO\nENGLISH\tO\tENGLISH\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nits\tO\tits\tO\noverwriting\tO\toverwriting\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ncapabilities\tB-Library_Class\tcapabilities\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_785\tI-Code_Block\tQ_785\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9301538\tO\t9301538\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9301538/\tO\thttps://stackoverflow.com/questions/9301538/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1138\tI-Code_Block\tA_1138\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47311625\tO\t47311625\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47311625/\tO\thttps://stackoverflow.com/questions/47311625/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nCentos\tB-Operating_System\tCentos\tO\nserver\tB-Device\tserver\tO\nand\tO\tand\tO\nI\tO\tI\tO\ninstall\tO\tinstall\tO\niptables\tB-Application\tiptables\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nfirewall\tB-Application\tfirewall\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\niptables\tB-Application\tiptables\tO\nto\tO\tto\tO\nmonitoring\tO\tmonitoring\tO\nsystem\tO\tsystem\tO\nLike\tO\tLike\tO\n(\tO\t(\tO\nPrtg\tB-Application\tPrtg\tO\n,\tO\t,\tO\nSolarwinds\tB-Application\tSolarwinds\tO\n,\tO\t,\tO\nOpmanger\tB-Application\tOpmanger\tO\n)\tO\t)\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47311625\tO\t47311625\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47311625/\tO\thttps://stackoverflow.com/questions/47311625/\tO\n\t\n\t\nYes\tO\tYes\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nother\tO\tother\tO\nmonitoring\tO\tmonitoring\tO\nsystems\tO\tsystems\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nwith\tO\twith\tO\nSolarwinds\tB-Application\tSolarwinds\tO\nServer\tI-Application\tServer\tO\nApplication\tI-Application\tApplication\tO\nMonitor\tI-Application\tMonitor\tO\n,\tO\t,\tO\nby\tO\tby\tO\ncreating\tO\tcreating\tO\ncustom\tO\tcustom\tO\nLinuxScript\tB-Class_Name\tLinuxScript\tO\ncomponent\tO\tcomponent\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nin\tO\tin\tO\nthwack\tB-Website\tthwack\tO\nforum\tO\tforum\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44664171\tO\t44664171\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44664171/\tO\thttps://stackoverflow.com/questions/44664171/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\ndjango\tB-Library\tdjango\tO\nproject\tO\tproject\tO\ni\tO\ti\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\najax\tB-Library_Function\tajax\tO\ncall\tO\tcall\tO\nfor\tO\tfor\tO\ndynamically\tO\tdynamically\tO\ndisplay\tO\tdisplay\tO\nand\tO\tand\tO\npopulate\tO\tpopulate\tO\nfields\tO\tfields\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ntemplate\tO\ttemplate\tO\ni\tO\ti\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\n:\tO\t:\tO\n\t\nTemplate\tO\tTemplate\tO\nhtml\tB-Language\thtml\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5805\tI-Code_Block\tQ_5805\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthen\tO\tthen\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\njs\tB-Language\tjs\tO\n:\tO\t:\tO\n\t\nstart.js\tB-File_Name\tstart.js\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5806\tI-Code_Block\tQ_5806\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nurls.py\tB-File_Name\turls.py\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5807\tI-Code_Block\tQ_5807\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nfinally\tO\tfinally\tO\nmy\tO\tmy\tO\npython\tB-Language\tpython\tO\nfunction\tO\tfunction\tO\ncalled\tO\tcalled\tO\nfrom\tO\tfrom\tO\nurls.py\tB-File_Name\turls.py\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5808\tI-Code_Block\tQ_5808\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAll\tO\tAll\tO\ndone\tO\tdone\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nhidden\tO\thidden\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\n\"\tI-HTML_XML_Tag\t\"\tO\ndiv_val\tI-HTML_XML_Tag\tdiv_val\tO\n\"\tI-HTML_XML_Tag\t\"\tO\nin\tO\tin\tO\ntemplate\tO\ttemplate\tO\nwas\tO\twas\tO\nshow\tO\tshow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnow\tO\tnow\tO\ni\tO\ti\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nreturned\tO\treturned\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ntemplate\tO\ttemplate\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\npopulate\tO\tpopulate\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\n(\tO\t(\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\njquery\tB-Library\tjquery\tO\ninside\tO\tinside\tO\nmy\tO\tmy\tO\njs\tO\tjs\tO\nfunc\tO\tfunc\tO\nfor\tO\tfor\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\nchain\tO\tchain\tO\nTemplate\tO\tTemplate\tO\n->\tO\t->\tO\njs\tB-Language\tjs\tO\n->\tO\t->\tO\nurls\tO\turls\tO\n->\tO\t->\tO\nview\tO\tview\tO\nmethod\tO\tmethod\tO\n->\tO\t->\tO\nTemplate\tO\tTemplate\tO\n?\tO\t?\tO\n\t\nMany\tO\tMany\tO\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44664171\tO\t44664171\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44664171/\tO\thttps://stackoverflow.com/questions/44664171/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\nrendering\tO\trendering\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nchain\tO\tchain\tO\n\"\tO\t\"\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nrefering\tO\trefering\tO\nto\tO\tto\tO\nas\tO\tas\tO\neasily\tO\teasily\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nwhat\tO\twhat\tO\nDjango\tB-Library\tDjango\tO\ndoes\tO\tdoes\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\nserve\tO\tserve\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nHTML\tB-Language\tHTML\tO\nand\tO\tand\tO\nJS\tB-Language\tJS\tO\n(\tO\t(\tO\nat\tO\tat\tO\nleas\tO\tleas\tO\nthe\tO\tthe\tO\nJS\tB-Language\tJS\tO\ninside\tO\tinside\tO\nyour\tO\tyour\tO\nHTML\tB-Language\tHTML\tO\nview\tO\tview\tO\n)\tO\t)\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ninitial\tO\tinitial\tO\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\najax\tB-Library_Function\tajax\tO\nrequests\tO\trequests\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nafter\tO\tafter\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nbound\tO\tbound\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\nyou\tO\tyou\tO\nsend\tO\tsend\tO\ninitially\tO\tinitially\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nresponse\tO\tresponse\tO\nbecause\tO\tbecause\tO\nthis\tO\tthis\tO\nvariables\tO\tvariables\tO\nare\tO\tare\tO\npopulated\tO\tpopulated\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nrender()\tB-Library_Function\trender()\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthat\tO\tthat\tO\nmoment\tO\tmoment\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nadd\tO\tadd\tO\nor\tO\tor\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nHTML\tB-Language\tHTML\tO\ntemplate\tO\ttemplate\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmanage\tO\tmanage\tO\nrendering\tO\trendering\tO\nsmall\tO\tsmall\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nHTML\tB-Language\tHTML\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nJQuery\tB-Library\tJQuery\tO\nor\tO\tor\tO\nmaking\tO\tmaking\tO\nyour\tO\tyour\tO\nbackend\tO\tbackend\tO\na\tO\ta\tO\nREST\tO\tREST\tO\nAPI\tO\tAPI\tO\nwith\tO\twith\tO\nDjango\tB-Library\tDjango\tO\nRest\tO\tRest\tO\nFramework\tO\tFramework\tO\nand\tO\tand\tO\nmoving\tO\tmoving\tO\nto\tO\tto\tO\na\tO\ta\tO\nmore\tO\tmore\tO\ncomplete\tO\tcomplete\tO\nfrontend\tO\tfrontend\tO\nframework\tO\tframework\tO\nlike\tO\tlike\tO\nAngular\tB-Library\tAngular\tO\nor\tO\tor\tO\nReact\tB-Library\tReact\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\ndiscussions\tO\tdiscussions\tO\nover\tO\tover\tO\nserver\tB-Application\tserver\tO\nside\tO\tside\tO\nrendering\tO\trendering\tO\nvs\tO\tvs\tO\nclient\tB-Application\tclient\tO\nside\tO\tside\tO\nrendering\tO\trendering\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttps://medium.com/@adamzerner/client-side-rendering-vs-server-side-rendering-a32d2cf3bfcc\tO\thttps://medium.com/@adamzerner/client-side-rendering-vs-server-side-rendering-a32d2cf3bfcc\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16207678\tO\t16207678\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16207678/\tO\thttps://stackoverflow.com/questions/16207678/\tO\n\t\n\t\nWorking\tO\tWorking\tO\non\tO\ton\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ncontrol\tO\tcontrol\tO\nthat\tO\tthat\tO\nfetches\tO\tfetches\tO\nemployee\tB-Class_Name\temployee\tO\nfrom\tO\tfrom\tO\nWCF\tB-Library\tWCF\tO\nin\tO\tin\tO\njson\tB-File_Type\tjson\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1610\tI-Code_Block\tQ_1610\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nthis\tO\tthis\tO\nservice\tO\tservice\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1611\tI-Code_Block\tQ_1611\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nreturn\tO\treturn\tO\nEmployees\tB-Class_Name\tEmployees\tO\nin\tO\tin\tO\nfollowing\tO\tfollowing\tO\nformat\tO\tformat\tO\n(\tO\t(\tO\nJSON\tB-Data_Type\tJSON\tO\nArray\tB-Data_Structure\tArray\tO\nString\tB-Data_Type\tString\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1612\tI-Code_Block\tQ_1612\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nmade\tO\tmade\tO\nsuccessfully\tO\tsuccessfully\tO\n,\tO\t,\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nscreenshot\tO\tscreenshot\tO\nthat\tO\tthat\tO\ntells\tO\ttells\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\ni\tO\ti\tO\nam\tO\tam\tO\nfacing\tO\tfacing\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndropdown\tB-User_Interface_Element\tdropdown\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nshowing\tO\tshowing\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nin\tO\tin\tO\nJSON\tB-File_Type\tJSON\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\njavascript\tB-Language\tjavascript\tO\narray\tB-Data_Structure\tarray\tO\n,\tO\t,\tO\nnow\tO\tnow\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nplease\tO\tplease\tO\nsuggest\tO\tsuggest\tO\nwhere\tO\twhere\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\nin\tO\tin\tO\nto\tO\tto\tO\narray\tB-Data_Structure\tarray\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nWCF\tB-Library\tWCF\tO\nCode\tO\tCode\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1613\tI-Code_Block\tQ_1613\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16207678\tO\t16207678\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16207678/\tO\thttps://stackoverflow.com/questions/16207678/\tO\n\t\n\t\nThe\tO\tThe\tO\nplugin\tO\tplugin\tO\nactually\tO\tactually\tO\nexpects\tO\texpects\tO\nan\tO\tan\tO\nArray\tB-Data_Structure\tArray\tO\nof\tO\tof\tO\nobjects\tO\tobjects\tO\nwith\tO\twith\tO\nattributes\tO\tattributes\tO\nid\tO\tid\tO\nand\tO\tand\tO\nname\tO\tname\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\nJSON\tB-File_Type\tJSON\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nmodified\tO\tmodified\tO\nthe\tO\tthe\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2093\tI-Code_Block\tA_2093\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nadded\tO\tadded\tO\nthis\tO\tthis\tO\njust\tO\tjust\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nstarts\tO\tstarts\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2094\tI-Code_Block\tA_2094\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17012753\tO\t17012753\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17012753/\tO\thttps://stackoverflow.com/questions/17012753/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1730\tI-Code_Block\tQ_1730\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nstarted\tO\tstarted\tO\na\tO\ta\tO\nsession\tO\tsession\tO\nfor\tO\tfor\tO\nkeeping\tO\tkeeping\tO\ntrack\tO\ttrack\tO\nof\tO\tof\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\nusers\tO\tusers\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsame\tO\tsame\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\nput\tO\tput\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nprofile.html\tB-File_Name\tprofile.html\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nredirect\tO\tredirect\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\npage\tO\tpage\tO\nif\tO\tif\tO\na\tO\ta\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\nattempt\tO\tattempt\tO\nis\tO\tis\tO\nsuccessful\tO\tsuccessful\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfetch\tO\tfetch\tO\nany\tO\tany\tO\ninformation\tO\tinformation\tO\nfrom\tO\tfrom\tO\n$_SESSION\tB-Code_Block\t$_SESSION\tB-Code_Block\nvariables\tO\tvariables\tO\ninto\tO\tinto\tO\nthat\tO\tthat\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nextension\tO\textension\tO\nto\tO\tto\tO\nprofile.php\tB-File_Name\tprofile.php\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\nnicely\tO\tnicely\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17012753\tO\t17012753\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17012753/\tO\thttps://stackoverflow.com/questions/17012753/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nwrite\tO\twrite\tO\nphp\tB-Language\tphp\tO\ncode\tO\tcode\tO\nonly\tO\tonly\tO\nin\tO\tin\tO\nphp\tB-File_Type\tphp\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nhtml\tB-Language\thtml\tO\nin\tO\tin\tO\nhtml\tB-File_Type\thtml\tO\nfile\tO\tfile\tO\nor\tO\tor\tO\nphp\tB-File_Type\tphp\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17012753\tO\t17012753\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17012753/\tO\thttps://stackoverflow.com/questions/17012753/\tO\n\t\n\t\nPHP\tB-Language\tPHP\tO\nscripts\tO\tscripts\tO\nare\tO\tare\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nonly\tO\tonly\tO\ninterpreted\tO\tinterpreted\tO\nin\tO\tin\tO\n.php\tB-File_Type\t.php\tO\nfiles\tO\tfiles\tO\n(\tO\t(\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\ntell\tO\ttell\tO\nthe\tO\tthe\tO\nPHP\tB-Language\tPHP\tO\ninterpreter\tO\tinterpreter\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\notherwise\tO\totherwise\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\n.htaccess\tB-File_Type\t.htaccess\tO\nfile\tO\tfile\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\n$_SESSION\tB-Code_Block\t$_SESSION\tB-Code_Block\nvariables\tO\tvariables\tO\nin\tO\tin\tO\nan\tO\tan\tO\n.html\tB-File_Type\t.html\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35528780\tO\t35528780\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35528780/\tO\thttps://stackoverflow.com/questions/35528780/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nquestions\tO\tquestions\tO\nabout\tO\tabout\tO\nthrowing\tO\tthrowing\tO\nexceptions\tB-Library_Class\texceptions\tO\nin\tO\tin\tO\nC++\tB-Language\tC++\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nthem\tO\tthem\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nexception\tB-Library_Class\texception\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nthrown\tO\tthrown\tO\nfrom\tO\tfrom\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nmain()\tB-Function_Name\tmain()\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nblock\tO\tblock\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nthrow\tO\tthrow\tO\nan\tO\tan\tO\nexception\tO\texception\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain()\tB-Function_Name\tmain()\tO\nfunction\tO\tfunction\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsurrounded\tO\tsurrounded\tO\nby\tO\tby\tO\ntry\tB-Code_Block\ttry\tO\nand\tO\tand\tO\ncatch\tB-Code_Block\tcatch\tO\nstatements\tO\tstatements\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4346\tI-Code_Block\tQ_4346\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nargument\tO\targument\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncatch\tO\tcatch\tO\na\tO\ta\tO\nconst\tB-Data_Type\tconst\tO\nchar\tI-Data_Type\tchar\tO\n*\tI-Data_Type\t*\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nn't\tO\tn't\tO\nC++\tB-Language\tC++\tO\nallow\tO\tallow\tO\nfor\tO\tfor\tO\nstrings\tB-Data_Type\tstrings\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nthrow\tO\tthrow\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\nconst\tB-Data_Type\tconst\tO\nchar\tI-Data_Type\tchar\tO\n*\tI-Data_Type\t*\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\nint\tB-Data_Type\tint\tO\n?\tO\t?\tO\n\t\nor\tO\tor\tO\na\tO\ta\tO\nchar\tB-Data_Type\tchar\tO\n?\tO\t?\tO\n\t\nDoes\tO\tDoes\tO\nthrowing\tO\tthrowing\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\nin\tO\tin\tO\nfoo\tB-Function_Name\tfoo\tO\n,\tO\t,\tO\nterminate\tO\tterminate\tO\nthe\tO\tthe\tO\nfoo\tB-Function_Name\tfoo\tO\nfunction\tO\tfunction\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\ncases\tO\tcases\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\ncatch\tO\tcatch\tO\nstatements\tO\tstatements\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfunction\tO\tfunction\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nthrow\tO\tthrow\tO\n?\tO\t?\tO\n\t\nSorry\tO\tSorry\tO\nif\tO\tif\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nbasic\tO\tbasic\tO\nquestions\tO\tquestions\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nSO\tB-Website\tSO\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35528780\tO\t35528780\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35528780/\tO\thttps://stackoverflow.com/questions/35528780/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nBecause\tO\tBecause\tO\nyou\tO\tyou\tO\nthrew\tO\tthrew\tO\nstring\tB-Data_Type\tstring\tO\nliteral\tO\tliteral\tO\nwhich\tO\twhich\tO\ndecays\tO\tdecays\tO\nto\tO\tto\tO\nconst\tB-Data_Type\tconst\tB-Code_Block\nchar*\tI-Data_Type\tchar*\tI-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nshort\tO\tshort\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncatch\tO\tcatch\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nthrow\tO\tthrow\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nto\tO\tto\tO\ncatch\tO\tcatch\tO\nstring\tB-Data_Type\tstring\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nthrow\tO\tthrow\tO\nstring\tB-Data_Type\tstring\tO\nin\tO\tin\tO\nfirst\tO\tfirst\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthrow\tO\tthrow\tO\nliterally\tO\tliterally\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\nthrow\tO\tthrow\tO\nspecial\tO\tspecial\tO\nexception\tB-Library_Class\texception\tO\nclasses\tO\tclasses\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nstd::exception\tB-Library_Class\tstd::exception\tB-Code_Block\nand\tO\tand\tO\nderived\tO\tderived\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nmuch\tO\tmuch\tO\ncases\tO\tcases\tO\nwhere\tO\twhere\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nbook\tO\tbook\tO\nand\tO\tand\tO\nread\tO\tread\tO\nchapter\tO\tchapter\tO\nabout\tO\tabout\tO\nexceptions\tB-Library_Class\texceptions\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nmeantime\tO\tmeantime\tO\nthis\tO\tthis\tO\nsuper-FAQ\tO\tsuper-FAQ\tO\nentry\tO\tentry\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\nyou/\tO\tyou/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35528780\tO\t35528780\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35528780/\tO\thttps://stackoverflow.com/questions/35528780/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthrow\tO\tthrow\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nof\tO\tof\tO\nany\tO\tany\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n(\tO\t(\tO\nHopefully\tO\tHopefully\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\n)\tO\t)\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\nis\tO\tis\tO\nthrow\tO\tthrow\tO\na\tO\ta\tO\nC-string\tB-Data_Structure\tC-string\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nconst\tB-Data_Type\tconst\tB-Code_Block\nchar[13]\tI-Data_Type\tchar[13]\tI-Code_Block\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nC-Arrays\tB-Data_Structure\tC-Arrays\tO\nwill\tO\twill\tO\ndecay\tO\tdecay\tO\nto\tO\tto\tO\npointers\tO\tpointers\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\nfirst\tO\tfirst\tO\nelement\tO\telement\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\na\tO\ta\tO\npointer\tO\tpointer\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nconst\tB-Data_Type\tconst\tB-Code_Block\nchar*\tI-Data_Type\tchar*\tI-Code_Block\n.\tO\t.\tO\n\t\nTypically\tO\tTypically\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nthrow\tO\tthrow\tO\na\tO\ta\tO\npredefined\tO\tpredefined\tO\nexception\tB-Library_Class\texception\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\nheader\tO\theader\tO\n<stdexcept>\tB-Library_Class\t<stdexcept>\tB-Code_Block\nand\tO\tand\tO\nare\tO\tare\tO\nderived\tO\tderived\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\nstd::exception\tB-Library_Class\tstd::exception\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nderived\tO\tderived\tO\nexception\tB-Library_Class\texception\tO\nclasses\tO\tclasses\tO\nare\tO\tare\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\nstd::logic_error\tB-Library_Class\tstd::logic_error\tB-Code_Block\n,\tO\t,\tO\nstd::range_error\tB-Library_Class\tstd::range_error\tB-Code_Block\n,\tO\t,\tO\nstd::bad_alloc\tB-Library_Class\tstd::bad_alloc\tB-Code_Block\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nTheir\tO\tTheir\tO\nconstructors\tO\tconstructors\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nas\tO\tas\tO\nargument\tO\targument\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5063\tI-Code_Block\tA_5063\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nmessage\tO\tmessage\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccessed\tO\taccessed\tO\nin\tO\tin\tO\na\tO\ta\tO\ncatch\tO\tcatch\tO\nstatement\tO\tstatement\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5064\tI-Code_Block\tA_5064\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\nis\tO\tis\tO\ncaught\tO\tcaught\tO\n,\tO\t,\tO\nso-called\tO\tso-called\tO\nstack\tB-Data_Structure\tstack\tO\nunwinding\tO\tunwinding\tO\ntakes\tO\ttakes\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nlocally\tO\tlocally\tO\n,\tO\t,\tO\nor\tO\tor\tO\nrethrow\tO\trethrow\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nwhen\tO\twhen\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\nis\tO\tis\tO\nthrown\tO\tthrown\tO\nand\tO\tand\tO\nnever\tO\tnever\tO\ncaught\tO\tcaught\tO\n,\tO\t,\tO\nstd::terminate()\tB-Library_Function\tstd::terminate()\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nan\tO\tan\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\naborted\tO\taborted\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\ntry/catch\tO\ttry/catch\tO\nstatements\tO\tstatements\tO\nanywhere\tO\tanywhere\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nremember\tO\tremember\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nterm\tO\tterm\tO\n\"\tO\t\"\tO\nexception\tB-Library_Class\texception\tO\n\"\tO\t\"\tO\nactually\tO\tactually\tO\nmeans\tO\tmeans\tO\n.\tO\t.\tO\n\t\nCases\tO\tCases\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\ndealt\tO\tdealt\tO\nwith\tO\twith\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nconditional\tO\tconditional\tO\nexpression\tO\texpression\tO\nif\tB-Code_Block\tif\tB-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\nn\tI-Code_Block\tn\tI-Code_Block\n<\tI-Code_Block\t<\tI-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nbreak\tB-Code_Block\tbreak\tB-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\ntreatment\tO\ttreatment\tO\n.\tO\t.\tO\n\t\nEspecially\tO\tEspecially\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nrealistically\tO\trealistically\tO\nexpect\tO\texpect\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nunwanted\tO\tunwanted\tO\ncondition\tO\tcondition\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ntrue\tO\ttrue\tO\noften\tO\toften\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nsomething\tO\tsomething\tO\n\"\tO\t\"\tO\nexceptional\tO\texceptional\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndecide\tO\tdecide\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nusing\tO\tusing\tO\nexceptions\tB-Library_Class\texceptions\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\ntreated\tO\ttreated\tO\nlocally\tO\tlocally\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nput\tO\tput\tO\ntry/catch\tO\ttry/catch\tO\nclauses\tO\tclauses\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\nand\tO\tand\tO\nend\tO\tend\tO\nof\tO\tof\tO\nmain()\tB-Function_Name\tmain()\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nseveral\tO\tseveral\tO\ncatch\tO\tcatch\tO\nstatements\tO\tstatements\tO\ndirectly\tO\tdirectly\tO\nafter\tO\tafter\tO\na\tO\ta\tO\ntry\tO\ttry\tO\nstatement\tO\tstatement\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nbegin\tO\tbegin\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\nerrors\tO\terrors\tO\n,\tO\t,\tO\nor\tO\tor\tO\nsimply\tO\tsimply\tO\ncatch\tO\tcatch\tO\nanything\tO\tanything\tO\nvia\tO\tvia\tO\ncatch(...)\tB-Code_Block\tcatch(...)\tB-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\n//..\tI-Code_Block\t//..\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nall\tO\tall\tO\ndescribed\tO\tdescribed\tO\nin\tO\tin\tO\ngreat\tO\tgreat\tO\ndetail\tO\tdetail\tO\n(\tO\t(\tO\nincluding\tO\tincluding\tO\npointers\tB-Data_Type\tpointers\tO\non\tO\ton\tO\nwhen\tO\twhen\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nC++\tB-Language\tC++\tO\nFAQ\tO\tFAQ\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nHere\tO\tHere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nthat\tO\tthat\tO\nmakes\tO\tmakes\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\ntry/catch\tO\ttry/catch\tO\nstatements\tO\tstatements\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\nexception\tB-Library_Class\texception\tO\nobject\tO\tobject\tO\nis\tO\tis\tO\ncaught\tO\tcaught\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nan\tO\tan\tO\nint\tB-Data_Type\tint\tO\n(\tO\t(\tO\nerrno\tB-Library_Variable\terrno\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreally\tO\treally\tO\nthrow/catch\tO\tthrow/catch\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nprocess_several_files()\tB-Function_Name\tprocess_several_files()\tB-Code_Block\nbe\tO\tbe\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nsomewhere\tO\tsomewhere\tO\nnested\tO\tnested\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5065\tI-Code_Block\tA_5065\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9387961\tO\t9387961\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9387961/\tO\thttps://stackoverflow.com/questions/9387961/\tO\n\t\n\t\nif\tO\tif\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nallocate\tO\tallocate\tO\nnon-cacheable\tO\tnon-cacheable\tO\nphysical\tO\tphysical\tO\nmemory\tO\tmemory\tO\n(\tO\t(\tO\nDRAM\tB-Device\tDRAM\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\nusage\tO\tusage\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndriver\tB-Application\tdriver\tO\n,\tO\t,\tO\n(\tO\t(\tO\nie\tO\tie\tO\n.\tO\t.\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nbeing\tO\tbeing\tO\ncached\tO\tcached\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nCPU\tB-Device\tCPU\tO\n's\tO\t's\tO\ndata\tO\tdata\tO\ncache\tO\tcache\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nare\tO\tare\tO\naccessed\tO\taccessed\tO\n)\tO\t)\tO\nhow\tO\thow\tO\ncould\tO\tcould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nthere\tO\tthere\tO\nare\tO\tare\tO\nfunctions\tO\tfunctions\tO\nlike\tO\tlike\tO\nkmalloc()\tB-Library_Function\tkmalloc()\tO\n,\tO\t,\tO\nget_free_pages\tB-Library_Function\tget_free_pages\tO\n,\tO\t,\tO\nvmalloc\tB-Library_Function\tvmalloc\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nspecify\tO\tspecify\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncached\tO\tcached\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nthese\tO\tthese\tO\nfunctions\tO\tfunctions\tO\n?\tO\t?\tO\n\t\nany\tO\tany\tO\nsuggestion\tO\tsuggestion\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nthanks\tO\tthanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9387961\tO\t9387961\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9387961/\tO\thttps://stackoverflow.com/questions/9387961/\tO\n\t\n\t\nIn\tO\tIn\tO\nshort\tO\tshort\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\neasy\tO\teasy\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nplatform\tO\tplatform\tO\ndependent\tO\tdependent\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\ngo\tO\tgo\tO\nat\tO\tat\tO\nit\tO\tit\tO\nread\tO\tread\tO\ndrivers/char/mem.c\tB-File_Name\tdrivers/char/mem.c\tO\nand\tO\tand\tO\nChapter\tO\tChapter\tO\n15\tO\t15\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nLinux\tB-Operating_System\tLinux\tO\nDevice\tO\tDevice\tO\nDrivers\tO\tDrivers\tO\n3rd\tO\t3rd\tO\nEdition\tO\tEdition\tO\nbook\tO\tbook\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28499750\tO\t28499750\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28499750/\tO\thttps://stackoverflow.com/questions/28499750/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\npie\tB-User_Interface_Element\tpie\tO\ncharts\tI-User_Interface_Element\tcharts\tO\nusing\tO\tusing\tO\nchart.js\tB-File_Name\tchart.js\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nadding\tO\tadding\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\njs\tB-File_Type\tjs\tO\nfile\tO\tfile\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\ncharts\tB-User_Interface_Element\tcharts\tO\nusing\tO\tusing\tO\nHTML\tB-Language\tHTML\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nHTML\tB-Language\tHTML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3346\tI-Code_Block\tQ_3346\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nevery\tO\tevery\tO\nchart\tB-User_Interface_Element\tchart\tO\nretrieve\tO\tretrieve\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsibling\tO\tsibling\tO\nchart\tB-User_Interface_Element\tchart\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\njs\tB-Language\tjs\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3347\tI-Code_Block\tQ_3347\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28499750\tO\t28499750\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28499750/\tO\thttps://stackoverflow.com/questions/28499750/\tO\n\t\n\t\nOk\tO\tOk\tO\nanyway\tO\tanyway\tO\nI\tO\tI\tO\nsolve\tO\tsolve\tO\nit\tO\tit\tO\nby\tO\tby\tO\nmyself\tO\tmyself\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nfor\tO\tfor\tO\nother\tO\tother\tO\nif\tO\tif\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nSorry\tO\tSorry\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nbad\tO\tbad\tO\npractices\tO\tpractices\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\njs\tB-Language\tjs\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\na\tO\ta\tO\npro\tO\tpro\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3986\tI-Code_Block\tA_3986\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28499750\tO\t28499750\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28499750/\tO\thttps://stackoverflow.com/questions/28499750/\tO\n\t\n\t\nTo\tO\tTo\tO\ncreate\tO\tcreate\tO\nnew\tO\tnew\tO\ngraphs\tB-Data_Structure\tgraphs\tO\nto\tO\tto\tO\ndynamics\tO\tdynamics\tO\nelements\tO\telements\tO\ninserted\tO\tinserted\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nDOM\tB-Library\tDOM\tO\nObserver\tB-Library_Class\tObserver\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfiddle\tB-Application\tfiddle\tO\nwith\tO\twith\tO\na\tO\ta\tO\nexample\tO\texample\tO\nin\tO\tin\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6811\tI-Code_Block\tQ_6811\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6812\tI-Code_Block\tQ_6812\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45562594\tO\t45562594\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45562594/\tO\thttps://stackoverflow.com/questions/45562594/\tO\n\t\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nlogs\tO\tlogs\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5971\tI-Code_Block\tQ_5971\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nmessage\tO\tmessage\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhelp\tO\thelp\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nstacktrace\tO\tstacktrace\tO\nwhere\tO\twhere\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nwarning\tO\twarning\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nabout\tO\tabout\tO\nBeautiful\tB-Library\tBeautiful\tO\nSoup\tI-Library\tSoup\tO\n:-)\tO\t:-)\tO\n\t\nAn\tO\tAn\tO\neasy\tO\teasy\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\nthird\tO\tthird\tO\nparty\tO\tparty\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nbs4/__init__.py\tB-File_Name\tbs4/__init__.py\tB-Code_Block\nat\tO\tat\tO\nline\tO\tline\tO\n219\tO\t219\tO\n)\tO\t)\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5972\tI-Code_Block\tQ_5972\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nReasons\tO\tReasons\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nproduction\tO\tproduction\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnext\tO\tnext\tO\ntime\tO\ttime\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\noccurs\tO\toccurs\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nstacktrace\tO\tstacktrace\tO\nimmediately\tO\timmediately\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nflag\tO\tflag\tO\nor\tO\tor\tO\nsetting\tO\tsetting\tO\nfor\tO\tfor\tO\npython\tB-Language\tpython\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\n,\tO\t,\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nnot\tO\tnot\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nline\tO\tline\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nwhile\tO\twhile\tO\nstacktrace\tO\tstacktrace\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nupper\tO\tupper\tO\nframes\tO\tframes\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nenvironment\tO\tenvironment\tO\nPython\tB-Language\tPython\tO\n2.7\tB-Version\t2.7\tO\ngets\tO\tgets\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45562594\tO\t45562594\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45562594/\tO\thttps://stackoverflow.com/questions/45562594/\tO\n\t\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nof\tO\tof\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nI\tO\tI\tO\ngenerally\tO\tgenerally\tO\njust\tO\tjust\tO\npromote\tO\tpromote\tO\nWarnings\tB-Library_Class\tWarnings\tB-Code_Block\nto\tO\tto\tO\nExceptions\tB-Library_Class\tExceptions\tB-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nsimply\tO\tsimply\tO\nuse\tO\tuse\tO\nwarnings.simplefilter\tB-Library_Function\twarnings.simplefilter\tB-Code_Block\nor\tO\tor\tO\nwarnings.filterwarnings\tB-Library_Function\twarnings.filterwarnings\tB-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6636\tI-Code_Block\tA_6636\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhich\tO\twhich\tO\ngives\tO\tgives\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\ntraceback\tO\ttraceback\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6637\tI-Code_Block\tA_6637\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nthis\tO\tthis\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\neasily\tO\teasily\tO\nhook\tO\thook\tO\nPythons\tB-Language\tPythons\tO\npdbs\tB-Application\tpdbs\tB-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nencountered\tO\tencountered\tO\nexception\tB-Library_Class\texception\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6638\tI-Code_Block\tA_6638\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nresulting\tO\tresulting\tO\nin\tO\tin\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6639\tI-Code_Block\tA_6639\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nstarts\tO\tstarts\tO\na\tO\ta\tO\npost-mortem\tO\tpost-mortem\tO\nanalysis\tO\tanalysis\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nencountered\tO\tencountered\tO\nexception\tB-Library_Class\texception\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nshould\tO\tshould\tO\nenable\tO\tenable\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ndig\tO\tdig\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nframes\tO\tframes\tO\nand\tO\tand\tO\ninspect\tO\tinspect\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nalso\tO\talso\tO\nasked\tO\tasked\tO\nabout\tO\tabout\tO\na\tO\ta\tO\nflag\tO\tflag\tO\n,\tO\t,\tO\nand\tO\tand\tO\nindeed\tO\tindeed\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nflag\tO\tflag\tO\nthat\tO\tthat\tO\nenables\tO\tenables\tO\n\"\tO\t\"\tO\nwarning\tO\twarning\tO\nhandling\tO\thandling\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n-W\tB-Code_Block\t-W\tB-Code_Block\nflag\tO\tflag\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nwarnings.filterwarnings\tB-Library_Function\twarnings.filterwarnings\tB-Code_Block\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nconvenience\tO\tconvenience\tO\nI\tO\tI\tO\njust\tO\tjust\tO\ncopied\tO\tcopied\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n-W\tB-Code_Block\t-W\tB-Code_Block\nflag\tO\tflag\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45562594\tO\t45562594\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45562594/\tO\thttps://stackoverflow.com/questions/45562594/\tO\n\t\n\t\nYou\tO\tYou\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCreate\tO\tCreate\tO\nif\tO\tif\tO\nUSER_SITE\tB-Library_Variable\tUSER_SITE\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nexists\tO\texists\tO\n:\tO\t:\tO\nissue\tO\tissue\tO\npython\tB-Code_Block\tpython\tB-Code_Block\n-c\tI-Code_Block\t-c\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nimport\tI-Code_Block\timport\tI-Code_Block\nsite\tI-Code_Block\tsite\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nsite._script()\"\tI-Code_Block\tsite._script()\"\tI-Code_Block\n,\tO\t,\tO\nsee\tO\tsee\tO\nUSER_SITE\tB-Library_Variable\tUSER_SITE\tO\nvariable\tO\tvariable\tO\ncontents\tO\tcontents\tO\n\t\nPlace\tO\tPlace\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nusercustomize.py\tB-File_Name\tusercustomize.py\tB-Code_Block\nin\tO\tin\tO\nthat\tO\tthat\tO\ndirectory\tO\tdirectory\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6632\tI-Code_Block\tQ_6632\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCredits\tO\tCredits\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nanswer\tO\tanswer\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\nusual\tO\tusual\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ntest\tO\ttest\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6633\tI-Code_Block\tA_6633\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBefore\tO\tBefore\tO\nthe\tO\tthe\tO\nprocedure\tO\tprocedure\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6634\tI-Code_Block\tA_6634\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAfter\tO\tAfter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6635\tI-Code_Block\tA_6635\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17787438\tO\t17787438\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17787438/\tO\thttps://stackoverflow.com/questions/17787438/\tO\n\t\n\t\nLets\tO\tLets\tO\ntake\tO\ttake\tO\ntwo\tO\ttwo\tO\ndatetimes\tB-Library_Class\tdatetimes\tO\n2013-07-22\tB-Value\t2013-07-22\tO\nand\tO\tand\tO\n2013-07-28\tB-Value\t2013-07-28\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndatetimes\tB-Library_Class\tdatetimes\tO\nbetween\tO\tbetween\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\ndatetimes\tB-Library_Class\tdatetimes\tO\nare\tO\tare\tO\n2013-07-23\tB-Value\t2013-07-23\tO\n,\tO\t,\tO\n2013-07-24\tB-Value\t2013-07-24\tO\n,\tO\t,\tO\n2013-07-25\tB-Value\t2013-07-25\tO\n,\tO\t,\tO\n2013-07-26\tB-Value\t2013-07-26\tO\n,\tO\t,\tO\n2013-07-27\tB-Value\t2013-07-27\tO\n,\tO\t,\tO\n2013-07-28\tB-Value\t2013-07-28\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nmuch\tO\tmuch\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nusing\tO\tusing\tO\nphp\tB-Language\tphp\tO\ndatetime\tB-Library_Class\tdatetime\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1817\tI-Code_Block\tQ_1817\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nRequire\tO\tRequire\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nanother\tO\tanother\tO\nvariable\tO\tvariable\tO\n$interval\tB-Variable_Name\t$interval\tB-Code_Block\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nvalues\tO\tvalues\tO\n1\tB-Value\t1\tO\n,\tO\t,\tO\n2\tB-Value\t2\tO\n,\tO\t,\tO\n3.\tB-Value\t3.\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\n$interval\tB-Code_Block\t$interval\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\nthen\tO\tthen\tO\n$period\tB-Variable_Name\t$period\tB-Code_Block\nwill\tO\twill\tO\nonly\tO\tonly\tO\ncontain\tO\tcontain\tO\n2013-07-24\tB-Value\t2013-07-24\tO\n,\tO\t,\tO\n2013-07-26\tB-Value\t2013-07-26\tO\n,\tO\t,\tO\n2013-07-28\tB-Value\t2013-07-28\tO\n.\tO\t.\tO\n\t\nLikewise\tO\tLikewise\tO\n$interval\tB-Code_Block\t$interval\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n3\tI-Code_Block\t3\tI-Code_Block\nthen\tO\tthen\tO\n$period\tB-Variable_Name\t$period\tB-Code_Block\nwill\tO\twill\tO\nonly\tO\tonly\tO\ncontain\tO\tcontain\tO\n2013-07-25\tB-Value\t2013-07-25\tO\n,\tO\t,\tO\n2013-07-28\tB-Value\t2013-07-28\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17787438\tO\t17787438\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17787438/\tO\thttps://stackoverflow.com/questions/17787438/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nany\tO\tany\tO\ninterval\tB-Variable_Name\tinterval\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nvariable\tO\tvariable\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nwrite\tO\twrite\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2343\tI-Code_Block\tA_2343\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ninstead\tO\tinstead\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35972785\tO\t35972785\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35972785/\tO\thttps://stackoverflow.com/questions/35972785/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nng-repeat\tB-Library_Function\tng-repeat\tB-Code_Block\nwhere\tO\twhere\tO\nis\tO\tis\tO\nthrowing\tO\tthrowing\tO\nan\tO\tan\tO\ninjection\tB-Error_Name\tinjection\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\nadvance\tO\tadvance\tO\nangular\tB-Library\tangular\tO\ndeveloper\tO\tdeveloper\tO\n,\tO\t,\tO\na\tO\ta\tO\nnovice\tO\tnovice\tO\nmaybe\tO\tmaybe\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\nworking\tO\tworking\tO\nat\tO\tat\tO\none\tO\tone\tO\npoint\tO\tpoint\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\npoof\tO\tpoof\tO\n.\tO\t.\tO\n\t\nGone\tO\tGone\tO\n!\tO\t!\tO\n\t\nWhat\tO\tWhat\tO\ndid\tO\tdid\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\ndifferent\tO\tdifferent\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nmy\tO\tmy\tO\nlocalhost\tO\tlocalhost\tO\npath\tO\tpath\tO\nto\tO\tto\tO\nangular\tB-Library\tangular\tO\nto\tO\tto\tO\na\tO\ta\tO\nCDN\tB-Library\tCDN\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntested\tO\ttested\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nI\tO\tI\tO\ncopied\tO\tcopied\tO\nthis\tO\tthis\tO\nwork\tO\twork\tO\nfrom\tO\tfrom\tO\noriginally\tO\toriginally\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nHTML\tB-Language\tHTML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4403\tI-Code_Block\tQ_4403\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nController\tO\tController\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4404\tI-Code_Block\tQ_4404\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nCODEPEN\tB-Application\tCODEPEN\tO\nif\tO\tif\tO\nit\tO\tit\tO\nhelps\tO\thelps\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35972785\tO\t35972785\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35972785/\tO\thttps://stackoverflow.com/questions/35972785/\tO\n\t\n\t\n\t\nRemove\tO\tRemove\tO\n'\tO\t'\tO\nuiGmapgoogle-maps\tB-Library_Function\tuiGmapgoogle-maps\tO\n'\tO\t'\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\ndependecies\tO\tdependecies\tO\n\t\nLinks\tO\tLinks\tO\nwith\tO\twith\tO\ndata-binding\tO\tdata-binding\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\nuse\tO\tuse\tO\nuse\tO\tuse\tO\nng-href\tB-Library_Function\tng-href\tO\n,\tO\t,\tO\nreplacing\tO\treplacing\tO\nhref\tB-Library_Function\thref\tO\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\nangular\tB-Library\tangular\tO\napp\tO\tapp\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\npreparation\tO\tpreparation\tO\nguide\tO\tguide\tO\nfor\tO\tfor\tO\nangular\tB-Library\tangular\tO\n2\tB-Version\t2\tO\n.\tO\t.\tO\nand\tO\tand\tO\nJhon\tB-User_Name\tJhon\tO\nPapa\tI-User_Name\tPapa\tO\n's\tO\t's\tO\nangular\tB-Library\tangular\tO\nstyle\tO\tstyle\tO\nguide\tO\tguide\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35972785\tO\t35972785\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35972785/\tO\thttps://stackoverflow.com/questions/35972785/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nloading\tO\tloading\tO\nuiGmapgoogle-maps\tB-Library_Function\tuiGmapgoogle-maps\tB-Code_Block\nmodule\tO\tmodule\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\n\t\nRemoving\tO\tRemoving\tO\nuiGmapgoogle-maps\tB-Library_Function\tuiGmapgoogle-maps\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nangular\tB-Library\tangular\tO\nmodule\tO\tmodule\tO\ndependencies\tO\tdependencies\tO\nwill\tO\twill\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5132\tI-Code_Block\tA_5132\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nattach\tO\tattach\tO\nthe\tO\tthe\tO\nfilter\tB-File_Type\tfilter\tO\nfile\tO\tfile\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nfilter\tO\tfilter\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nngRepeat\tB-Library_Function\tngRepeat\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5133\tI-Code_Block\tA_5133\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSee\tO\tSee\tO\nworking\tO\tworking\tO\nsample\tO\tsample\tO\nat\tO\tat\tO\n:\tO\t:\tO\nhttp://codepen.io/anon/pen/BKLdyP?editors=1011\tO\thttp://codepen.io/anon/pen/BKLdyP?editors=1011\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30161338\tO\t30161338\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30161338/\tO\thttps://stackoverflow.com/questions/30161338/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\ngraphic\tO\tgraphic\tO\nobjects\tO\tobjects\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nMATLAB\tB-Language\tMATLAB\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nplot\tO\tplot\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\nfunction\tO\tfunction\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nconfused\tO\tconfused\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nAFIK\tO\tAFIK\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\nfunction\tO\tfunction\tO\nit\tO\tit\tO\ncreates\tO\tcreates\tO\nfigure\tO\tfigure\tO\n,\tO\t,\tO\naxis\tO\taxis\tO\n,\tO\t,\tO\nline\tO\tline\tO\nobjects\tO\tobjects\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsets\tO\tsets\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\nof\tO\tof\tO\neach\tO\teach\tO\nobject\tO\tobject\tO\naccordingly\tO\taccordingly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\nbut\tO\tbut\tO\nall\tO\tall\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nis\tO\tis\tO\na\tO\ta\tO\nwhite/blank\tO\twhite/blank\tO\nfigure\tO\tfigure\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nplot\tO\tplot\tO\na\tO\ta\tO\nsine\tO\tsine\tO\nwave\tO\twave\tO\nso\tO\tso\tO\nmy\tO\tmy\tO\nX\tB-Variable_Name\tX\tO\nand\tO\tand\tO\nY\tB-Variable_Name\tY\tO\ndata\tO\tdata\tO\nare\tO\tare\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3620\tI-Code_Block\tQ_3620\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3621\tI-Code_Block\tQ_3621\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nweird\tO\tweird\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3622\tI-Code_Block\tQ_3622\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nanything\tO\tanything\tO\nback\tO\tback\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nappreciate\tO\tappreciate\tO\ntips\tO\ttips\tO\nand\tO\tand\tO\ncomments\tO\tcomments\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30161338\tO\t30161338\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30161338/\tO\thttps://stackoverflow.com/questions/30161338/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nline\tO\tline\tB-Code_Block\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\nand\tO\tand\tO\nchange\tO\tchange\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4291\tI-Code_Block\tA_4291\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nIts\tO\tIts\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\neach\tO\teach\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nobjects\tO\tobjects\tO\ndirectly\tO\tdirectly\tO\n(\tO\t(\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nallowing\tO\tallowing\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nfigure\tO\tfigure\tO\n,\tO\t,\tO\naxes\tO\taxes\tO\netc\tO\tetc\tO\n...\tO\t...\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4292\tI-Code_Block\tA_4292\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25065828\tO\t25065828\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25065828/\tO\thttps://stackoverflow.com/questions/25065828/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nscenario\tO\tscenario\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\npagination\tO\tpagination\tO\nwith\tO\twith\tO\nDataTables\tB-Library\tDataTables\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nfirst\tO\tfirst\tO\ncolumn\tO\tcolumn\tO\nis\tO\tis\tO\ncss\tB-Language\tcss\tO\nstyled\tO\tstyled\tO\nbased\tO\tbased\tO\nupon\tO\tupon\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\npassed\tO\tpassed\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ncolored\tO\tcolored\tO\nicon\tB-User_Interface_Element\ticon\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable\tO\ttable\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\non\tO\ton\tO\npage\tB-User_Interface_Element\tpage\tO\n1\tO\t1\tO\ndisplays\tO\tdisplays\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\ndoing\tO\tdoing\tO\nthe\tO\tthe\tO\nbasics\tO\tbasics\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\non\tO\ton\tO\nfurther\tO\tfurther\tO\npages\tB-User_Interface_Element\tpages\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\ndisplayed\tO\tdisplayed\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nremoved\tO\tremoved\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nDOM\tB-Library\tDOM\tO\nat\tO\tat\tO\nthat\tO\tthat\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\n$('#my_id')\tB-Code_Block\t$('#my_id')\tB-Code_Block\n.on\tI-Code_Block\t.on\tI-Code_Block\n(\tB-Code_Block\t(\tB-Code_Block\n'page\tI-Code_Block\t'page\tI-Code_Block\n.dt\tI-Code_Block\t.dt\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nfunction()\tI-Code_Block\tfunction()\tI-Code_Block\n{\tI-Code_Block\t{\tI-Code_Block\nperPageFunctionCall()\tI-Code_Block\tperPageFunctionCall()\tI-Code_Block\n;})\tI-Code_Block\t;})\tI-Code_Block\n.dataTable(soonansoforth)\tI-Code_Block\t.dataTable(soonansoforth)\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nto\tO\tto\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nwhich\tO\twhich\tO\nselects\tO\tselects\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ncolored\tO\tcolored\tO\nflag\tO\tflag\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\npage\tB-User_Interface_Element\tpage\tO\n2\tO\t2\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\ngets\tO\tgets\tO\nupdated\tO\tupdated\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\npage\tB-User_Interface_Element\tpage\tO\n1\tO\t1\tO\nagain\tO\tagain\tO\nand\tO\tand\tO\nit\tO\tit\tO\nredisplays\tO\tredisplays\tO\nthe\tO\tthe\tO\n1st\tO\t1st\tO\npage\tB-User_Interface_Element\tpage\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\npage\tB-User_Interface_Element\tpage\tO\n2\tO\t2\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\ntime\tO\ttime\tO\nnow\tO\tnow\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndisplays\tO\tdisplays\tO\neverything\tO\teverything\tO\ncorrectly\tO\tcorrectly\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ncausing\tO\tcausing\tO\nthe\tO\tthe\tO\ndisplay\tO\tdisplay\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nnew\tO\tnew\tO\ncss\tB-Language\tcss\tO\nthe\tO\tthe\tO\n1st\tO\t1st\tO\ntrip\tO\ttrip\tO\nbut\tO\tbut\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nproperly\tO\tproperly\tO\non\tO\ton\tO\nsubsequent\tO\tsubsequent\tO\ntrips\tO\ttrips\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsomeway\tO\tsomeway\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ntable\tO\ttable\tO\nafter\tO\tafter\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\ncss\tB-Language\tcss\tO\nmanipulation\tO\tmanipulation\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25065828\tO\t25065828\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25065828/\tO\thttps://stackoverflow.com/questions/25065828/\tO\n\t\n\t\nfor\tO\tfor\tO\nrefresh\tO\trefresh\tO\nresp\tO\tresp\tO\n.\tO\t.\tO\n\t\ntable\tO\ttable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3437\tI-Code_Block\tA_3437\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25065828\tO\t25065828\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25065828/\tO\thttps://stackoverflow.com/questions/25065828/\tO\n\t\n\t\nWell\tO\tWell\tO\nit\tO\tit\tO\nis\tO\tis\tO\none\tO\tone\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\nthings\tO\tthings\tO\n:\tO\t:\tO\n\t\nEither\tO\tEither\tO\nit\tO\tit\tO\nis\tO\tis\tO\n\t\n1\tO\t1\tO\n:\tO\t:\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3436\tI-Code_Block\tA_3436\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\npage\tO\tpage\tO\nfunction\tO\tfunction\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nmore\tO\tmore\tO\nlikely\tO\tlikely\tO\neveryone\tO\teveryone\tO\n's\tO\t's\tO\nfavorite\tO\tfavorite\tO\nreason\tO\treason\tO\n:\tO\t:\tO\n\t\n2\tO\t2\tO\n:\tO\t:\tO\nCaching\tO\tCaching\tO\n\t\nIn\tO\tIn\tO\neither\tO\teither\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nwork\tO\twork\tO\nflawlessly\tO\tflawlessly\tO\nnow\tO\tnow\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20575698\tO\t20575698\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20575698/\tO\thttps://stackoverflow.com/questions/20575698/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nso\tO\tso\tO\nusers\tO\tusers\tO\ncan\tO\tcan\tO\nsubscribe\tO\tsubscribe\tO\nto\tO\tto\tO\na\tO\ta\tO\nforum\tO\tforum\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nforum\tO\tforum\tO\nis\tO\tis\tO\nupdated\tO\tupdated\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nalerted\tO\talerted\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlife\tO\tlife\tO\nof\tO\tof\tO\nme\tO\tme\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nan\tO\tan\tO\nassociative\tO\tassociative\tO\ntable\tB-Data_Structure\ttable\tO\nwith\tO\twith\tO\nuser_id\tB-Variable_Name\tuser_id\tO\nand\tO\tand\tO\nforum_id\tB-Variable_Name\tforum_id\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nsure\tO\tsure\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nsomeone\tO\tsomeone\tO\ncould\tO\tcould\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\npointers\tO\tpointers\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nthis\tO\tthis\tO\nor\tO\tor\tO\nplan\tO\tplan\tO\nit\tO\tit\tO\nout\tO\tout\tO\nor\tO\tor\tO\neven\tO\teven\tO\npoint\tO\tpoint\tO\nme\tO\tme\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nresources\tO\tresources\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20575698\tO\t20575698\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20575698/\tO\thttps://stackoverflow.com/questions/20575698/\tO\n\t\n\t\ncreate\tO\tcreate\tO\na\tO\ta\tO\njoin\tO\tjoin\tO\ntable\tB-Data_Structure\ttable\tO\ncalled\tO\tcalled\tO\nuser_forum_subscriptions\tB-Variable_Name\tuser_forum_subscriptions\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2739\tI-Code_Block\tA_2739\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nforum.users\tB-Variable_Name\tforum.users\tB-Code_Block\nare\tO\tare\tO\nthe\tO\tthe\tO\nones\tO\tones\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nalert\tO\talert\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nforum\tB-Class_Name\tforum\tO\nchanges\tO\tchanges\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20575698\tO\t20575698\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20575698/\tO\thttps://stackoverflow.com/questions/20575698/\tO\n\t\n\t\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\ngenerating\tO\tgenerating\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nmodel\tO\tmodel\tO\ncalled\tO\tcalled\tO\nSubscription\tB-Class_Name\tSubscription\tO\n.\tO\t.\tO\n\t\nLook\tO\tLook\tO\nat\tO\tat\tO\nsubscriptions\tO\tsubscriptions\tO\nas\tO\tas\tO\nresources\tO\tresources\tO\n.\tO\t.\tO\n\t\nUser\tB-Class_Name\tUser\tO\nshould\tO\tshould\tO\nhave_many\tO\thave_many\tO\nsubscriptions\tO\tsubscriptions\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nadded/removed/edited\tO\tadded/removed/edited\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nprobably\tO\tprobably\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\nMichael\tB-User_Name\tMichael\tO\nHartl\tI-User_Name\tHartl\tO\n's\tO\t's\tO\ntutorial\tO\ttutorial\tO\nChapter\tO\tChapter\tO\n11\tO\t11\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nhe\tO\the\tO\nshows\tO\tshows\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nestablish\tO\testablish\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nfollowing\tO\tfollowing\tO\n'\tO\t'\tO\nrelationship\tO\trelationship\tO\nfor\tO\tfor\tO\nhis\tO\this\tO\ntwitter-like\tB-Application\ttwitter-like\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmany\tO\tmany\tO\nways\tO\tways\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\n,\tO\t,\tO\nread\tO\tread\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nRelationship\tO\tRelationship\tO\nmodel\tO\tmodel\tO\n,\tO\t,\tO\nhope\tO\thope\tO\nit\tO\tit\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37507843\tO\t37507843\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37507843/\tO\thttps://stackoverflow.com/questions/37507843/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nwhere\tO\twhere\tO\nclause\tO\tclause\tO\nfor\tO\tfor\tO\ncomparing\tO\tcomparing\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\npassed\tO\tpassed\tO\nfrom\tO\tfrom\tO\nroute\tO\troute\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nid\tB-Variable_Name\tid\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4700\tI-Code_Block\tQ_4700\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nid\tB-Variable_Name\tid\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nname\tO\tname\tO\nin\tO\tin\tO\ncontroller\tO\tcontroller\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ngrade_id\tB-Variable_Name\tgrade_id\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\nFollowing\tO\tFollowing\tO\ncode\tO\tcode\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nused\tO\tused\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4701\tI-Code_Block\tQ_4701\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nreturning\tO\treturning\tO\nempty\tO\tempty\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\npass\tO\tpass\tO\ndirect\tO\tdirect\tO\nvalue\tO\tvalue\tO\n1\tB-Value\t1\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n$\tB-Library_Variable\t$\tO\ndata\tI-Library_Variable\tdata\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nperfectly\tO\tperfectly\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nprovide\tO\tprovide\tO\nme\tO\tme\tO\nsolution\tO\tsolution\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37507843\tO\t37507843\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37507843/\tO\thttps://stackoverflow.com/questions/37507843/\tO\n\t\n\t\nuse\tO\tuse\tO\nwhereLoose()\tB-Library_Function\twhereLoose()\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nwhere()\tB-Library_Function\twhere()\tB-Code_Block\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nSource\tO\tSource\tO\n\t\nWhy\tO\tWhy\tO\nthis\tO\tthis\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\n$data\tB-Library_Variable\t$data\tB-Code_Block\nhave\tO\thave\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tB-Code_Block\ntype\tO\ttype\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ncomparing\tO\tcomparing\tO\nString\tB-Data_Type\tString\tO\nwith\tO\twith\tO\nInt\tB-Data_Type\tInt\tB-Code_Block\ntype\tO\ttype\tO\neven\tO\teven\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\npass\tO\tpass\tO\nnumeric\tO\tnumeric\tO\nvalue\tO\tvalue\tO\n$data\tB-Library_Variable\t$data\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nString\tB-Data_Type\tString\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5389\tI-Code_Block\tA_5389\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28946305\tO\t28946305\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28946305/\tO\thttps://stackoverflow.com/questions/28946305/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nhtml\tB-Language\thtml\tO\ndocument\tO\tdocument\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\nform\tO\tform\tO\nwhere\tO\twhere\tO\nselecting\tO\tselecting\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nactivates\tO\tactivates\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\nruns\tO\truns\tO\na\tO\ta\tO\nrobotic\tB-Device\trobotic\tO\narm\tI-Device\tarm\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nBased\tO\tBased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nresearch\tO\tresearch\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\npreviously\tO\tpreviously\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nan\tO\tan\tO\nOnClick\tB-Library_Function\tOnClick\tO\nevent\tO\tevent\tO\nwould\tO\twould\tO\ndo\tO\tdo\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nquite\tO\tquite\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nreference\tO\treference\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\nrobot\tO\trobot\tO\ncommand\tO\tcommand\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3429\tI-Code_Block\tQ_3429\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\n..//../Karel/RIGHT1\tB-Value\t..//../Karel/RIGHT1\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nrobot\tO\trobot\tO\nprogram\tO\tprogram\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nis\tO\tis\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nand\tO\tand\tO\nrightmanual.stm\tB-File_Name\trightmanual.stm\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nalso\tO\talso\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nimage/button\tB-User_Interface_Element\timage/button\tO\nonegrey.jpg\tB-File_Name\tonegrey.jpg\tO\nis\tO\tis\tO\nselected\tO\tselected\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nas\tO\tas\tO\nspecific\tO\tspecific\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nsent\tO\tsent\tO\nmy\tO\tmy\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28946305\tO\t28946305\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28946305/\tO\thttps://stackoverflow.com/questions/28946305/\tO\n\t\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nredirect\tO\tredirect\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\npage\tB-User_Interface_Element\tpage\tO\non\tO\ton\tO\nform\tO\tform\tO\nsubmit\tO\tsubmit\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nid\tB-HTML_XML_Tag\tid\tO\ntag\tO\ttag\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\nname\tO\tname\tO\neg\tO\teg\tO\n.\tO\t.\tO\n\"\tB-Value\t\"\tO\nbtnRedirect\tI-Value\tbtnRedirect\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4072\tI-Code_Block\tA_4072\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\njQuery\tB-Library\tjQuery\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nonclick\tO\tonclick\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\non\tO\ton\tO\njQuery\tB-Library\tjQuery\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4073\tI-Code_Block\tA_4073\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nonClick\tB-HTML_XML_Tag\tonClick\tO\nevent\tO\tevent\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nsubmit\tO\tsubmit\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4074\tI-Code_Block\tA_4074\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48295198\tO\t48295198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48295198/\tO\thttps://stackoverflow.com/questions/48295198/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n(\tO\t(\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhere\tO\there\tO\n:P\tO\t:P\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\na\tO\ta\tO\nTimerTask\tB-Library_Class\tTimerTask\tO\nand/or\tO\tand/or\tO\na\tO\ta\tO\nHandler\tB-Library_Class\tHandler\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nevery\tO\tevery\tO\nsecond\tO\tsecond\tO\n,\tO\t,\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\nis\tO\tis\tO\non\tO\ton\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n(\tO\t(\tO\nstandby\tO\tstandby\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nafter\tO\tafter\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\n2\tO\t2\tO\nto\tO\tto\tO\n10\tO\t10\tO\nhours\tO\thours\tO\n)\tO\t)\tO\nthis\tO\tthis\tO\nprocess\tO\tprocess\tO\nbecomes\tO\tbecomes\tO\nweird\tO\tweird\tO\ntimed\tO\ttimed\tO\n.\tO\t.\tO\n\t\nSometimes\tO\tSometimes\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\n,\tO\t,\tO\nsometimes\tO\tsometimes\tO\n4\tO\t4\tO\nhours\tO\thours\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nread\tO\tread\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nPartial\tB-Library_Variable\tPartial\tO\nWake\tI-Library_Variable\tWake\tO\nLock\tI-Library_Variable\tLock\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nTried\tO\tTried\tO\nit\tO\tit\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nsolved\tO\tsolved\tO\nmy\tO\tmy\tO\nissue\tO\tissue\tO\n(\tO\t(\tO\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nanother\tO\tanother\tO\nlibrary\tO\tlibrary\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nWakeLock\tB-Library_Class\tWakeLock\tO\nwhich\tO\twhich\tO\ngets\tO\tgets\tO\nreleased\tO\treleased\tO\nafter\tO\tafter\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmine\tO\tmine\tO\nnever\tO\tnever\tO\ngets\tO\tgets\tO\nreleased\tO\treleased\tO\nby\tO\tby\tO\nme\tO\tme\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntask/runnable\tO\ttask/runnable\tO\nruns\tO\truns\tO\non\tO\ton\tO\nan\tO\tan\tO\nasynctask\tB-Library_Class\tasynctask\tO\n(\tO\t(\tO\nso\tO\tso\tO\non\tO\ton\tO\nit\tO\tit\tO\n's\tO\t's\tO\nown\tO\town\tO\nthread\tO\tthread\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nwakelock\tB-Library_Class\twakelock\tO\nis\tO\tis\tO\ncreated\tO\tcreated\tO\nfrom\tO\tfrom\tO\noutside\tO\toutside\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nMaybe\tO\tMaybe\tO\nit\tO\tit\tO\n's\tO\t's\tO\ngood\tO\tgood\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\nowner\tO\towner\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbattery\tO\tbattery\tO\ndrain\tO\tdrain\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\napp\tO\tapp\tO\nreally\tO\treally\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nthis\tO\tthis\tO\nevery\tO\tevery\tO\nsecond\tO\tsecond\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n,\tO\t,\tO\nany\tO\tany\tO\n,\tO\t,\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\nwhich\tO\twhich\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n2\tO\t2\tO\n:\tO\t:\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\nWakeLock\tB-Library_Class\tWakeLock\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nstarted\tO\tstarted\tO\nwhen\tO\twhen\tO\nmy\tO\tmy\tO\ncustom\tO\tcustom\tO\napplication\tO\tapplication\tO\nreaches\tO\treaches\tO\nonCreate\tB-Library_Function\tonCreate\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nI\tO\tI\tO\nsaid\tO\tsaid\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnever\tO\tnever\tO\nreleased\tO\treleased\tO\n.\tO\t.\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6426\tI-Code_Block\tQ_6426\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25082128\tO\t25082128\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25082128/\tO\thttps://stackoverflow.com/questions/25082128/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nan\tO\tan\tO\nasynchronous\tO\tasynchronous\tO\nunit\tO\tunit\tO\ntest\tO\ttest\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2840\tI-Code_Block\tQ_2840\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nconsole.log(e)\tB-Code_Block\tconsole.log(e)\tB-Code_Block\nexecuted\tO\texecuted\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2841\tI-Code_Block\tQ_2841\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25082128\tO\t25082128\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25082128/\tO\thttps://stackoverflow.com/questions/25082128/\tO\n\t\n\t\nJust\tO\tJust\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\ndone()\tB-Library_Function\tdone()\tB-Code_Block\ncall\tO\tcall\tO\ndown\tO\tdown\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nassert\tB-Code_Block\tassert\tO\nstatement\tO\tstatement\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3438\tI-Code_Block\tA_3438\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47180826\tO\t47180826\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47180826/\tO\thttps://stackoverflow.com/questions/47180826/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\noperating\tO\toperating\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nkernel\tB-Application\tkernel\tO\nsystem\tO\tsystem\tO\ncalls\tO\tcalls\tO\ninto\tO\tinto\tO\nextern\tB-Library_Function\textern\tB-Code_Block\nfunctions\tO\tfunctions\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6258\tI-Code_Block\tQ_6258\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nkernel.s\tB-File_Name\tkernel.s\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6259\tI-Code_Block\tQ_6259\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31243125\tO\t31243125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31243125/\tO\thttps://stackoverflow.com/questions/31243125/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nSignalR\tB-Library\tSignalR\tO\nSelf\tB-Application\tSelf\tO\nHosted\tI-Application\tHosted\tO\nService\tI-Application\tService\tO\n(\tO\t(\tO\nV\tO\tV\tO\n2.2.0\tB-Version\t2.2.0\tO\n)\tO\t)\tO\nas\tO\tas\tO\nserver\tB-Application\tserver\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nSilverlight\tB-Library\tSilverlight\tO\nas\tO\tas\tO\nSignalR\tB-Library\tSignalR\tO\nClient\tB-Application\tClient\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\nand\tO\tand\tO\nable\tO\table\tO\nto\tO\tto\tO\nexchange\tO\texchange\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nto\tO\tto\tO\nstop\tO\tstop\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nSignalR\tB-Library\tSignalR\tO\nservice\tO\tservice\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nis\tO\tis\tO\n,\tO\t,\tO\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\nthis\tO\tthis\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\nConnection\tO\tConnection\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nClient\tB-Application\tClient\tO\nshould\tO\tshould\tO\nget\tO\tget\tO\ndisconnected\tO\tdisconnected\tO\nfrom\tO\tfrom\tO\nSignalR\tB-Library\tSignalR\tO\nHub\tO\tHub\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nget\tO\tget\tO\ndisconnected\tO\tdisconnected\tO\nfrom\tO\tfrom\tO\nSignalR\tB-Library\tSignalR\tO\nHub\tO\tHub\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nrespond\tO\trespond\tO\nand\tO\tand\tO\nmy\tO\tmy\tO\nClient\tB-Application\tClient\tO\n(\tO\t(\tO\nSilverlight\tB-Library\tSilverlight\tO\nWeb\tO\tWeb\tO\nApplication\tO\tApplication\tO\n)\tO\t)\tO\ngets\tO\tgets\tO\ninto\tO\tinto\tO\nunresponsive\tO\tunresponsive\tO\nstate\tO\tstate\tO\nand\tO\tand\tO\ncomes\tO\tcomes\tO\nback\tO\tback\tO\nafter\tO\tafter\tO\naround\tO\taround\tO\n28-30\tO\t28-30\tO\nsecs\tO\tsecs\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndisconnect\tO\tdisconnect\tO\nclient\tB-Application\tclient\tO\nimmediately\tO\timmediately\tO\nonce\tO\tonce\tO\nthe\tO\tthe\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31243125\tO\t31243125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31243125/\tO\thttps://stackoverflow.com/questions/31243125/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\na\tO\ta\tO\ndeadlock\tO\tdeadlock\tO\n.\tO\t.\tO\n\t\nSignalR\tB-Library\tSignalR\tO\nclient\tB-Application\tclient\tO\nblocks\tO\tblocks\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nwhen\tO\twhen\tO\nsending\tO\tsending\tO\nthe\tO\tthe\tO\nAbort\tO\tAbort\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nSilverlight\tB-Library\tSilverlight\tO\nwants\tO\twants\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\ntimeout\tO\ttimeout\tO\nfor\tO\tfor\tO\nstopping\tO\tstopping\tO\nthe\tO\tthe\tO\nconnection\tO\tconnection\tO\nis\tO\tis\tO\n30\tO\t30\tO\nseconds\tO\tseconds\tO\nso\tO\tso\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\ntimeout\tO\ttimeout\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nis\tO\tis\tO\nunblocked\tO\tunblocked\tO\nand\tO\tand\tO\nexecution\tO\texecution\tO\ncontinues\tO\tcontinues\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nworked\tO\tworked\tO\naround\tO\taround\tO\nby\tO\tby\tO\ninvoking\tO\tinvoking\tO\nstop\tO\tstop\tO\nasynchronously\tO\tasynchronously\tO\n(\tO\t(\tO\nawait\tB-Code_Block\tawait\tB-Code_Block\nTask.Factory.StartNew\tI-Code_Block\tTask.Factory.StartNew\tI-Code_Block\n(()\tI-Code_Block\t(()\tI-Code_Block\n=>\tI-Code_Block\t=>\tI-Code_Block\nhubConnection.Stop());)\tI-Code_Block\thubConnection.Stop());)\tI-Code_Block\nor\tO\tor\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\ntimeout\tO\ttimeout\tO\nsmaller\tO\tsmaller\tO\n.\tO\t.\tO\n\t\nTL\tO\tTL\tO\n;D\tO\t;D\tO\nR\tO\tR\tO\n;\tO\t;\tO\n\t\nhttps://github.com/SignalR/SignalR/issues/3102\tO\thttps://github.com/SignalR/SignalR/issues/3102\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31243125\tO\t31243125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31243125/\tO\thttps://stackoverflow.com/questions/31243125/\tO\n\t\n\t\nI\tO\tI\tO\nresolved\tO\tresolved\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nby\tO\tby\tO\ncalling\tO\tcalling\tO\nhub\tO\thub\tO\ndisconnect\tO\tdisconnect\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nSilverlight\tB-Library\tSilverlight\tO\nThreading\tO\tThreading\tO\ntask\tO\ttask\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\nacknowledgement\tO\tacknowledgement\tO\nof\tO\tof\tO\nhub\tO\thub\tO\ndisconnect\tO\tdisconnect\tO\nfrom\tO\tfrom\tO\nSignalR\tB-Library\tSignalR\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45343442\tO\t45343442\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45343442/\tO\thttps://stackoverflow.com/questions/45343442/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nscroll\tO\tscroll\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\na\tO\ta\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\non\tO\ton\tO\na\tO\ta\tO\nwebpage\tO\twebpage\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nseeing\tO\tseeing\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThis\tO\tThis\tO\nonly\tO\tonly\tO\noccurs\tO\toccurs\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nPhantomJS\tB-Application\tPhantomJS\tO\nheadless\tO\theadless\tO\nbrowser\tB-Application\tbrowser\tO\nwith\tO\twith\tO\nSelenium\tB-Application\tSelenium\tO\nWebdriver\tI-Application\tWebdriver\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nSafari\tB-Application\tSafari\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\nwith\tO\twith\tO\nSelenium\tB-Application\tSelenium\tO\nWebdriver\tI-Application\tWebdriver\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nscrolls\tO\tscrolls\tO\nfine\tO\tfine\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\nPhantomJS\tB-Application\tPhantomJS\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5924\tI-Code_Block\tQ_5924\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nline\tO\tline\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5925\tI-Code_Block\tQ_5925\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nworks\tO\tworks\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5926\tI-Code_Block\tQ_5926\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\ncausing\tO\tcausing\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nbecause\tO\tbecause\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\ncommented\tO\tcommented\tO\nout\tO\tout\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nscroll\tO\tscroll\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nget\tO\tget\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndynamically\tO\tdynamically\tO\nloaded\tO\tloaded\tO\ndivs\tB-HTML_XML_Tag\tdivs\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3445748\tO\t3445748\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3445748/\tO\thttps://stackoverflow.com/questions/3445748/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndropUp\tO\tdropUp\tO\nmenu\tB-User_Interface_Element\tmenu\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_240\tI-Code_Block\tQ_240\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nafter\tO\tafter\tO\nclicking\tO\tclicking\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmenu_tab\tB-User_Interface_Element\tmenu_tab\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmenu\tB-User_Interface_Element\tmenu\tO\ndrops\tO\tdrops\tO\nup\tO\tup\tO\nand\tO\tand\tO\nstays\tO\tstays\tO\nup\tO\tup\tO\nuntil\tO\tuntil\tO\nclicked\tO\tclicked\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ntimeout\tO\ttimeout\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nafter\tO\tafter\tO\nsay\tO\tsay\tO\n2\tO\t2\tO\nseconds\tO\tseconds\tO\nthe\tO\tthe\tO\nmenu\tB-User_Interface_Element\tmenu\tO\ndrops\tO\tdrops\tO\ndown\tO\tdown\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nobviously\tO\tobviously\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\ncoding\tO\tcoding\tO\nwrong\tO\twrong\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ntimeout\tO\ttimeout\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nTIA\tB-User_Name\tTIA\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3445748\tO\t3445748\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3445748/\tO\thttps://stackoverflow.com/questions/3445748/\tO\n\t\n\t\nYour\tO\tYour\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nclearTimeout()\tB-Library_Function\tclearTimeout()\tO\nhere\tO\there\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nit\tO\tit\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nID\tB-Library_Variable\tID\tO\nreturned\tO\treturned\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ncreated\tO\tcreated\tO\nthat\tO\tthat\tO\ntimer\tO\ttimer\tO\nwith\tO\twith\tO\nsetTimeout()\tB-Library_Function\tsetTimeout()\tO\n.\tO\t.\tO\n\t\nCa\tO\tCa\tO\nn't\tO\tn't\tO\nsay\tO\tsay\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\ncausing\tO\tcausing\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nthough\tO\tthough\tO\n(\tO\t(\tO\nit\tO\tit\tO\nprobably\tO\tprobably\tO\nisn't\tO\tisn't\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nanything\tO\tanything\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJavascript\tB-Language\tJavascript\tO\nerror\tB-Application\terror\tO\nconsole\tI-Application\tconsole\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3445748\tO\t3445748\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3445748/\tO\thttps://stackoverflow.com/questions/3445748/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nTry\tO\tTry\tO\nit\tO\tit\tO\nout\tO\tout\tO\n:\tO\t:\tO\nhttp://jsfiddle.net/YFPey/\tO\thttp://jsfiddle.net/YFPey/\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_368\tI-Code_Block\tA_368\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42907093\tO\t42907093\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42907093/\tO\thttps://stackoverflow.com/questions/42907093/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nform\tB-User_Interface_Element\tform\tO\nlabels\tO\tlabels\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nSolidus\tB-Application\tSolidus\tO\necommerce\tO\tecommerce\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nparticular\tO\tparticular\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\nhandling\tO\thandling\tO\nUK\tO\tUK\tO\naddresses\tO\taddresses\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\n\"\tB-Value\t\"\tO\nZip\tI-Value\tZip\tO\nCode\tI-Value\tCode\tO\n\"\tI-Value\t\"\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nchanged\tO\tchanged\tO\nto\tO\tto\tO\n\"\tB-Value\t\"\tO\nPost\tI-Value\tPost\tO\nCode\tI-Value\tCode\tO\n\"\tI-Value\t\"\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nother\tO\tother\tO\nlocalization\tO\tlocalization\tO\nchanges\tO\tchanges\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42907093\tO\t42907093\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42907093/\tO\thttps://stackoverflow.com/questions/42907093/\tO\n\t\n\t\nSolidus\tB-Application\tSolidus\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwas\tO\twas\tO\nforked\tO\tforked\tO\nfrom\tO\tfrom\tO\nSpree\tB-Application\tSpree\tO\n,\tO\t,\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nways\tO\tways\tO\nto\tO\tto\tO\ncustomize\tO\tcustomize\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntranslate\tO\ttranslate\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlocale\tO\tlocale\tO\n.\tO\t.\tO\n\t\nSolidus\tB-Application\tSolidus\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\ninternationalization\tO\tinternationalization\tO\ngem\tB-Code_Block\tgem\tO\nsolidus_i18n\tI-Code_Block\tsolidus_i18n\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\nInstructions\tO\tInstructions\tO\nare\tO\tare\tO\ncurrently\tO\tcurrently\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\ncheck\tO\tcheck\tO\nwith\tO\twith\tO\ngem\tB-Code_Block\tgem\tO\nreadme\tI-Code_Block\treadme\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6194\tI-Code_Block\tA_6194\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nlocale\tO\tlocale\tO\nwithin\tO\twithin\tO\nconfig/initializers/spree.rb\tB-File_Name\tconfig/initializers/spree.rb\tB-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6195\tI-Code_Block\tA_6195\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFurther\tO\tFurther\tO\nReading\tO\tReading\tO\n\t\nSpree\tB-Application\tSpree\tO\nDocumentation\tO\tDocumentation\tO\non\tO\ton\tO\nInternationalization\tO\tInternationalization\tO\n-\tO\t-\tO\nvery\tO\tvery\tO\nsimilar\tO\tsimilar\tO\ndocumenation\tO\tdocumenation\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46868825\tO\t46868825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46868825/\tO\thttps://stackoverflow.com/questions/46868825/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ncall\tO\tcall\tO\nthat\tO\tthat\tO\ngoes\tO\tgoes\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ndialogueService\tB-Class_Name\tdialogueService\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\nan\tO\tan\tO\nobservable\tO\tobservable\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nfired\tO\tfired\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nproperty\tO\tproperty\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ncomponent\tO\tcomponent\tO\nis\tO\tis\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\neverything\tO\teverything\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nDialogue.component.ts\tB-File_Name\tDialogue.component.ts\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6184\tI-Code_Block\tQ_6184\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDialogue.component.spec.ts\tB-File_Name\tDialogue.component.spec.ts\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6185\tI-Code_Block\tQ_6185\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tB-Code_Block\t}\tO\n)\tI-Code_Block\t)\tO\n;\tB-Code_Block\t;\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47838488\tO\t47838488\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47838488/\tO\thttps://stackoverflow.com/questions/47838488/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nsomeone\tO\tsomeone\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ninput\tO\tinput\tO\ntext\tO\ttext\tO\nin\tO\tin\tO\na\tO\ta\tO\ntextbox\tB-User_Interface_Element\ttextbox\tB-Code_Block\nand\tO\tand\tO\nwhen\tO\twhen\tO\nthey\tO\tthey\tO\nhit\tO\thit\tO\nsubmit\tO\tsubmit\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\nwhat\tO\twhat\tO\nthey\tO\tthey\tO\nentered\tO\tentered\tO\nunderneath\tO\tunderneath\tO\nit\tO\tit\tO\nand\tO\tand\tO\nalso\tO\talso\tO\ndisplays\tO\tdisplays\tO\nit\tO\tit\tO\non\tO\ton\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\nphp\tB-Language\tphp\tB-Code_Block\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6355\tI-Code_Block\tQ_6355\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\nwhere\tO\twhere\tO\nthey\tO\tthey\tO\nenter\tO\tenter\tO\ntheir\tO\ttheir\tO\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\npage\tB-User_Interface_Element\tpage\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6356\tI-Code_Block\tQ_6356\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nanybody\tO\tanybody\tO\nknows\tO\tknows\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nand/or\tO\tand/or\tO\nimprove\tO\timprove\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nawesome\tO\tawesome\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9160741\tO\t9160741\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9160741/\tO\thttps://stackoverflow.com/questions/9160741/\tO\n\t\n\t\nFor\tO\tFor\tO\nlearning\tO\tlearning\tO\njQuery\tB-Library\tjQuery\tO\nUI\tI-Library\tUI\tO\ndialog\tB-Library_Class\tdialog\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ndefined\tO\tdefined\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nfollowing\tO\tfollowing\tO\nthree\tO\tthree\tO\ntasks\tO\ttasks\tO\n\t\n1)\tO\t1)\tO\nUse\tO\tUse\tO\nmy\tO\tmy\tO\nimage\tB-User_Interface_Element\timage\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\nOK\tO\tOK\tO\n\"\tO\t\"\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nCancel\tO\tCancel\tO\n\"\tO\t\"\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n\t\n2)\tO\t2)\tO\nUse\tO\tUse\tO\nmy\tO\tmy\tO\ncustom\tO\tcustom\tO\nimage\tB-User_Interface_Element\timage\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nclose\tO\tclose\tO\nbutton\tB-User_Interface_Element\tbutton\tO\non\tO\ton\tO\nright\tO\tright\tO\ntop\tO\ttop\tO\nend\tO\tend\tO\nof\tO\tof\tO\ndialog\tB-User_Interface_Element\tdialog\tO\n\t\n3)\tO\t3)\tO\nBackground\tO\tBackground\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n\"\tO\t\"\tO\ngray\tO\tgray\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nincluding\tO\tincluding\tO\ntitle\tO\ttitle\tO\n,\tO\t,\tO\nand\tO\tand\tO\nplace\tO\tplace\tO\nfor\tO\tfor\tO\nOK\tO\tOK\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nimportant\tO\timportant\tO\npoint\tO\tpoint\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\napplied\tO\tapplied\tO\nonly\tO\tonly\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ndialog\tB-User_Interface_Element\tdialog\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nother\tO\tother\tO\nwidgets\tB-User_Interface_Element\twidgets\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\ndefault\tO\tdefault\tO\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ncontent\tO\tcontent\tO\narea\tO\tarea\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nachieve\tO\tachieve\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\n#myDiv\tB-Code_Block\t#myDiv\tO\n.ui-widget-content\tI-Code_Block\t.ui-widget-content\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nsuggest\tO\tsuggest\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nPlease\tO\tPlease\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\npractices\tO\tpractices\tO\n,\tO\t,\tO\nif\tO\tif\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nE.g\tO\tE.g\tO\n.\tO\t.\tO\n1\tO\t1\tO\n.\tO\t.\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n$myDialog\tB-Variable_Name\t$myDialog\tO\n2\tO\t2\tO\n.\tO\t.\tO\nuse\tO\tuse\tO\nautoOpen\tB-Library_Variable\tautoOpen\tO\n:\tO\t:\tO\nfalse\tO\tfalse\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_773\tI-Code_Block\tQ_773\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_774\tI-Code_Block\tQ_774\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tB-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\na\tO\ta\tO\ncss\tB-Language\tcss\tO\nclass\tO\tclass\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\nwidget\tB-User_Interface_Element\twidget\tO\nfunctionality\tO\tfunctionality\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\ndialog\tB-User_Interface_Element\tdialog\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_775\tI-Code_Block\tQ_775\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9160741\tO\t9160741\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9160741/\tO\thttps://stackoverflow.com/questions/9160741/\tO\n\t\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nover-ride\tO\tover-ride\tO\ndefault\tO\tdefault\tO\ncss\tB-Language\tcss\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\njQuery\tB-Library\tjQuery\tO\nUI\tI-Library\tUI\tO\n(\tO\t(\tO\njquery.ui.theme.css\tB-File_Name\tjquery.ui.theme.css\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nImage\tB-User_Interface_Element\tImage\tO\nfor\tO\tfor\tO\nOk\tO\tOk\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\n.ui-state-default\tB-HTML_XML_Tag\t.ui-state-default\tB-Code_Block\n,\tO\t,\tI-Code_Block\n.ui-widget-content\tB-HTML_XML_Tag\t.ui-widget-content\tI-Code_Block\n.ui-state-default\tI-HTML_XML_Tag\t.ui-state-default\tI-Code_Block\n,\tO\t,\tI-Code_Block\n.ui-widget-header\tB-HTML_XML_Tag\t.ui-widget-header\tI-Code_Block\n.ui-state-default\tI-HTML_XML_Tag\t.ui-state-default\tI-Code_Block\nbackground\tO\tbackground\tO\nimage\tB-User_Interface_Element\timage\tO\n.\tO\t.\tO\n\t\nClose\tO\tClose\tO\nButton\tB-User_Interface_Element\tButton\tO\n:\tO\t:\tO\nChange\tO\tChange\tO\n.ui-widget-header\tB-HTML_XML_Tag\t.ui-widget-header\tB-Code_Block\n.ui-icon\tI-HTML_XML_Tag\t.ui-icon\tI-Code_Block\n\t\nBackground\tO\tBackground\tO\nof\tO\tof\tO\nDialogue\tB-User_Interface_Element\tDialogue\tO\n:\tO\t:\tO\nChange\tO\tChange\tO\n.ui-widget-content\tB-HTML_XML_Tag\t.ui-widget-content\tB-Code_Block\nbackground\tO\tbackground\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9160741\tO\t9160741\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9160741/\tO\thttps://stackoverflow.com/questions/9160741/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nupvoted\tO\tupvoted\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nStill\tO\tStill\tO\ndialogClass\tB-Variable_Name\tdialogClass\tO\n:\tO\t:\tO\n'\tB-Variable_Name\t'\tO\nmyDialogCSS\tI-Variable_Name\tmyDialogCSS\tO\n'\tB-Variable_Name\t'\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nHTML\tB-Language\tHTML\tO\nand\tO\tand\tO\njQuery\tB-Library\tjQuery\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1151\tI-Code_Block\tA_1151\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMyStyleSheet.css\tB-File_Name\tMyStyleSheet.css\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1152\tI-Code_Block\tA_1152\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12527077\tO\t12527077\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12527077/\tO\thttps://stackoverflow.com/questions/12527077/\tO\n\t\n\t\nFirst\tO\tFirst\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\nusing\tO\tusing\tO\nGSON\tB-Library\tGSON\tO\n.\tO\t.\tO\n\t\nTrying\tO\tTrying\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nsome\tO\tsome\tO\nJSON\tB-File_Type\tJSON\tO\n,\tO\t,\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\n\"\tB-Output_Block\t\"\tO\nincompatible\tI-Output_Block\tincompatible\tO\ntypes\tI-Output_Block\ttypes\tO\n\"\tI-Output_Block\t\"\tO\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1193\tI-Code_Block\tQ_1193\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlayerData\tB-Class_Name\tPlayerData\tB-Code_Block\nis\tO\tis\tO\nan\tO\tan\tO\ninner\tO\tinner\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1194\tI-Code_Block\tQ_1194\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\ncauses\tO\tcauses\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nGSON\tB-Library\tGSON\tO\ndocs\tO\tdocs\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nclearly\tO\tclearly\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1195\tI-Code_Block\tQ_1195\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nat\tO\tat\tO\n(\tO\t(\tO\nAFAIK\tO\tAFAIK\tO\n)\tO\t)\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nGoogle\tB-Website\tGoogle\tO\nin\tO\tin\tO\nit\tO\tit\tO\n's\tO\t's\tO\nGSON\tB-Library\tGSON\tO\nUser\tO\tUser\tO\nGuide\tO\tGuide\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nXCode\tB-Application\tXCode\tO\nwas\tO\twas\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nstrange\tO\tstrange\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\nTerminal\tB-Application\tTerminal\tB-Code_Block\neverything\tO\teverything\tO\nworked\tO\tworked\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tB-Application\tserver\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nresulted\tO\tresulted\tO\nin\tO\tin\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nNPE\tB-Error_Name\tNPE\tO\n's\tO\t's\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nresponse\tB-Variable_Name\tresponse\tB-Code_Block\nremained\tO\tremained\tO\nempty\tB-Value\tempty\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nto\tO\tto\tO\nmaaartinus\tB-User_Name\tmaaartinus\tO\nI\tO\tI\tO\nlearned\tO\tlearned\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\ncompiler\tB-Application\tcompiler\tO\nerror\tO\terror\tO\nso\tO\tso\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nit\tO\tit\tO\nwithout\tO\twithout\tO\nXCode\tB-Application\tXCode\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12527077\tO\t12527077\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12527077/\tO\thttps://stackoverflow.com/questions/12527077/\tO\n\t\n\t\nFor\tO\tFor\tO\nme\tO\tme\tO\nit\tO\tit\tO\ncompiles\tO\tcompiles\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nGSON\tO\tGSON\tB-Code_Block\nby\tO\tby\tO\nGson\tB-Library\tGson\tB-Code_Block\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nyou\tO\tyou\tO\nwere\tO\twere\tO\nsloppy\tO\tsloppy\tO\nwhen\tO\twhen\tO\nwriting\tO\twriting\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nsome\tO\tsome\tO\n\"\tO\t\"\tO\nGSON\tB-Library\tGSON\tO\n\"\tO\t\"\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnever\tO\tnever\tO\nheard\tO\theard\tO\nabout\tO\tabout\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nyour\tO\tyour\tO\nresponse\tB-Variable_Name\tresponse\tB-Code_Block\na\tO\ta\tO\nString\tB-Data_Type\tString\tB-Code_Block\n??\tO\t??\tO\n?\tO\t?\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nit\tO\tit\tO\nrunning\tO\trunning\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nby\tO\tby\tO\nVrushank\tB-User_Name\tVrushank\tO\nDesai\tI-User_Name\tDesai\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12527077\tO\t12527077\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12527077/\tO\thttps://stackoverflow.com/questions/12527077/\tO\n\t\n\t\nTry\tO\tTry\tO\nmaking\tO\tmaking\tO\nyour\tO\tyour\tO\ninner\tO\tinner\tO\nclass\tO\tclass\tO\nstatic\tB-Data_Type\tstatic\tB-Code_Block\nor\tO\tor\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nInstanceCreator\tB-Class_Name\tInstanceCreator\tB-Code_Block\nfor\tO\tfor\tO\nit\tO\tit\tO\nas\tO\tas\tO\nstated\tO\tstated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nGson\tB-Library\tGson\tO\nUser\tO\tUser\tO\nGuide\tO\tGuide\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16840884\tO\t16840884\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16840884/\tO\thttps://stackoverflow.com/questions/16840884/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nof\tO\tof\tO\ncharacters\tB-Data_Type\tcharacters\tO\nin\tO\tin\tO\na\tO\ta\tO\ndata.frame\tB-Data_Structure\tdata.frame\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nrecognized\tO\trecognized\tO\nas\tO\tas\tO\ndates\tO\tdates\tO\n:\tO\t:\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1695\tI-Code_Block\tQ_1695\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nreturns\tO\treturns\tO\n:\tO\t:\tO\n\t\n\"\tB-Value\t\"\tO\n---------\tI-Value\t---------\tO\n-\tI-Value\t-\tO\n\"\tI-Value\t\"\tO\n\"\tI-Value\t\"\tO\n---------\tI-Value\t---------\tO\n-\tI-Value\t-\tO\n\"\tI-Value\t\"\tO\n\"\tI-Value\t\"\tO\n---------\tI-Value\t---------\tO\n-\tI-Value\t-\tO\n\"\tI-Value\t\"\tO\n\"\tI-Value\t\"\tO\n---------\tI-Value\t---------\tO\n-\tI-Value\t-\tO\n\"\tI-Value\t\"\tO\n\t\nwhile\tO\twhile\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n\t\n\"\tB-Value\t\"\tO\n2013-05-30\tI-Value\t2013-05-30\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\n\"\tB-Value\t\"\tO\n2013-05-29\tI-Value\t2013-05-29\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\n\"\tB-Value\t\"\tO\n2013-05-28\tI-Value\t2013-05-28\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\n\"\tB-Value\t\"\tO\n2013-05-27\tI-Value\t2013-05-27\tO\n\"\tI-Value\t\"\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngrateful\tO\tgrateful\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16840884\tO\t16840884\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16840884/\tO\thttps://stackoverflow.com/questions/16840884/\tO\n\t\n\t\nWould\tO\tWould\tO\nn't\tO\tn't\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\ncoerce\tO\tcoerce\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\ndates\tO\tdates\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2192\tI-Code_Block\tA_2192\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nyour\tO\tyour\tO\ngsub\tB-Library_Function\tgsub\tB-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\n.\tB-Value\t.\tB-Code_Block\nhas\tO\thas\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nmeaning\tO\tmeaning\tO\nin\tO\tin\tO\nregex\tO\tregex\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\nit\tO\tit\tO\ninterpreted\tO\tinterpreted\tO\nliterally\tO\tliterally\tO\nby\tO\tby\tO\nspecifying\tO\tspecifying\tO\nfixed\tB-Code_Block\tfixed\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nTRUE\tI-Code_Block\tTRUE\tI-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16840884\tO\t16840884\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16840884/\tO\thttps://stackoverflow.com/questions/16840884/\tO\n\t\n\t\nin\tO\tin\tO\nyour\tO\tyour\tO\ngsub\tB-Library_Function\tgsub\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\n\"\tB-Value\t\"\tO\n.\tI-Value\t.\tO\n\"\tI-Value\t\"\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\npattern\tO\tpattern\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n\"\tB-Value\t\"\tO\n.\tI-Value\t.\tO\n\"\tI-Value\t\"\tO\nsymbol\tO\tsymbol\tO\nin\tO\tin\tO\na\tO\ta\tO\npattern\tO\tpattern\tO\nmeans\tO\tmeans\tO\n\"\tO\t\"\tO\nany\tO\tany\tO\ncharacter\tO\tcharacter\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntalling\tO\ttalling\tO\ngsub\tB-Library_Function\tgsub\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nevery\tO\tevery\tO\ncharacter\tO\tcharacter\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndash\tB-Value\tdash\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncorrect\tO\tcorrect\tO\ngsub\tB-Library_Function\tgsub\tB-Code_Block\ncall\tO\tcall\tO\nrequires\tO\trequires\tO\nescaping\tO\tescaping\tO\nthe\tO\tthe\tO\nperiod\tB-Value\tperiod\tO\nso\tO\tso\tO\nR\tB-Language\tR\tO\nknows\tO\tknows\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nliteral\tO\tliteral\tO\nperiod\tB-Value\tperiod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2193\tI-Code_Block\tA_2193\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nsyntax\tO\tsyntax\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\ngsub\tB-Library_Function\tgsub\tO\nreplace\tO\treplace\tO\nall\tO\tall\tO\nperiods\tB-Value\tperiods\tO\nwith\tO\twith\tO\ndashes\tB-Value\tdashes\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nreally\tO\treally\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\ndates\tO\tdates\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nas.Date\tB-Library_Function\tas.Date\tB-Code_Block\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2194\tI-Code_Block\tA_2194\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYour\tO\tYour\tO\nintended\tO\tintended\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\nconverted\tO\tconverted\tO\nyour\tO\tyour\tO\nstrings\tB-Data_Type\tstrings\tO\nto\tO\tto\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nstring\tB-Data_Type\tstring\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nas.Date\tB-Library_Function\tas.Date\tO\ntells\tO\ttells\tO\nR\tB-Language\tR\tO\nto\tO\tto\tO\ntreat\tO\ttreat\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nas\tO\tas\tO\ndates\tO\tdates\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nstrings\tB-Data_Type\tstrings\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2195\tI-Code_Block\tA_2195\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwill\tO\twill\tO\nproduce\tO\tproduce\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n(\tO\t(\tO\nbecause\tO\tbecause\tO\nR\tB-Language\tR\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nask\tO\task\tO\nit\tO\tit\tO\nto\tO\tto\tO\nplot\tO\tplot\tO\nnothing\tO\tnothing\tO\nbut\tO\tbut\tO\nstrings\tB-Data_Type\tstrings\tO\n)\tO\t)\tO\n,\tO\t,\tO\nwhereas\tO\twhereas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2196\tI-Code_Block\tA_2196\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nProduces\tO\tProduces\tO\na\tO\ta\tO\nplot\tO\tplot\tO\nof\tO\tof\tO\nindex\tO\tindex\tO\nvs\tO\tvs\tO\n.\tO\t.\tO\nday\tO\tday\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nweek\tO\tweek\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nR\tB-Language\tR\tO\nrecognizes\tO\trecognizes\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ntimeseries\tO\ttimeseries\tO\ndata\tO\tdata\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11683838\tO\t11683838\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11683838/\tO\thttps://stackoverflow.com/questions/11683838/\tO\n\t\n\t\nHello\tO\tHello\tO\nthe\tO\tthe\tO\nGWT+Hibernate+Gilead\tB-Application\tGWT+Hibernate+Gilead\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\ni\tO\ti\tO\nhave\tO\thave\tO\ndownloaded\tO\tdownloaded\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\n\t\nhttps://developers.google.com/web-toolkit/articles/using_gwt_with_hibernate\tO\thttps://developers.google.com/web-toolkit/articles/using_gwt_with_hibernate\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1090\tI-Code_Block\tQ_1090\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\njar\tB-File_Type\tjar\tO\nfile\tO\tfile\tO\ni\tO\ti\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nPlease\tO\tPlease\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\ninform\tO\tinform\tO\nme\tO\tme\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nam\tO\tam\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11683838\tO\t11683838\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11683838/\tO\thttps://stackoverflow.com/questions/11683838/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\nnewer\tO\tnewer\tO\n\"\tO\t\"\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nGWT\tB-Application\tGWT\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nnewer\tO\tnewer\tO\nthan\tO\tthan\tO\n1.7\tB-Version\t1.7\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nrecent\tO\trecent\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nGilead\tB-Application\tGilead\tO\n.\tO\t.\tO\n\t\nAFAIK\tO\tAFAIK\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nyou\tO\tyou\tO\ndescribe\tO\tdescribe\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nsolved\tO\tsolved\tO\nlong\tO\tlong\tO\nago\tO\tago\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlast\tO\tlast\tO\nrelease\tO\trelease\tO\nwas\tO\twas\tO\nversion\tO\tversion\tO\n1.3.2\tB-Version\t1.3.2\tO\non\tO\ton\tO\n2010-05-22\tO\t2010-05-22\tO\n.\tO\t.\tO\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nrelease\tO\trelease\tO\nis\tO\tis\tO\nold\tO\told\tO\n,\tO\t,\tO\nand\tO\tand\tO\nGilead\tB-Application\tGilead\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nupdated\tO\tupdated\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nit\tO\tit\tO\nstill\tO\tstill\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\neven\tO\teven\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nGWT\tB-Application\tGWT\tO\nversions\tO\tversions\tO\n(\tO\t(\tO\ncurrently\tO\tcurrently\tO\n2.5\tB-Version\t2.5\tO\nrc\tO\trc\tO\n)\tO\t)\tO\n,\tO\t,\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nHibernate\tB-Application\tHibernate\tO\n<=\tO\t<=\tO\n3.5.x\tB-Version\t3.5.x\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nrecommend\tO\trecommend\tO\nstarting\tO\tstarting\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nwith\tO\twith\tO\nGilead\tB-Application\tGilead\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nhttp://sourceforge.net/projects/gilead/forums/forum/868076/topic/4525959\tO\thttp://sourceforge.net/projects/gilead/forums/forum/868076/topic/4525959\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43712855\tO\t43712855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43712855/\tO\thttps://stackoverflow.com/questions/43712855/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\ncart\tO\tcart\tO\nand\tO\tand\tO\ncheckout\tO\tcheckout\tO\nitems\tO\titems\tO\non\tO\ton\tO\ne-commerce\tO\te-commerce\tO\nwebsites\tO\twebsites\tO\nrun\tO\trun\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nshopify\tB-Application\tshopify\tO\nplatform\tO\tplatform\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nspeed\tO\tspeed\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nadd\tB-Function_Name\tadd\tO\nto\tI-Function_Name\tto\tO\ncart\tI-Function_Name\tcart\tO\nmethod\tO\tmethod\tO\non\tO\ton\tO\nmultiple\tO\tmultiple\tO\nthreads\tO\tthreads\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nadd\tB-Function_Name\tadd\tO\nto\tI-Function_Name\tto\tO\ncart\tI-Function_Name\tcart\tO\nfunction\tO\tfunction\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5628\tI-Code_Block\tQ_5628\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhere\tO\twhere\tO\nkeywords\tB-Variable_Name\tkeywords\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\nof\tO\tof\tO\nstrings\tB-Data_Type\tstrings\tO\nso\tO\tso\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nparse\tO\tparse\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nitem\tO\titem\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsession\tB-Variable_Name\tsession\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nsession\tB-Library_Class\tsession\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nrequests\tB-Library\trequests\tO\nmodule\tO\tmodule\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfunction\tO\tfunction\tO\nfirst\tO\tfirst\tO\nparses\tO\tparses\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nsitemap\tO\tsitemap\tO\n,\tO\t,\tO\nfinding\tO\tfinding\tO\nthe\tO\tthe\tO\nunique\tO\tunique\tO\nproduct\tO\tproduct\tO\nID\tO\tID\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nsends\tO\tsends\tO\na\tO\ta\tO\npost\tO\tpost\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsession\tB-Variable_Name\tsession\tO\nvariable\tO\tvariable\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsaid\tO\tsaid\tO\nitem\tO\titem\tO\nto\tO\tto\tO\ncart\tO\tcart\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nusing\tO\tusing\tO\nthreads\tB-Library_Class\tthreads\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nmultiple\tO\tmultiple\tO\nitems\tO\titems\tO\nto\tO\tto\tO\ncart\tO\tcart\tO\n,\tO\t,\tO\ni\tO\ti\tO\nonly\tO\tonly\tO\nsee\tO\tsee\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nthis\tO\tthis\tO\nworking\tO\tworking\tO\n?\tO\t?\tO\n\t\nWould\tO\tWould\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nlock\tO\tlock\tO\n+\tO\t+\tO\nunlock\tO\tunlock\tO\nthe\tO\tthe\tO\nsession\tB-Variable_Name\tsession\tO\nvariable\tO\tvariable\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nPOST\tO\tPOST\tO\nrequest\tO\trequest\tO\none\tO\tone\tO\nby\tO\tby\tO\none\tO\tone\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5629\tI-Code_Block\tQ_5629\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43712855\tO\t43712855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43712855/\tO\thttps://stackoverflow.com/questions/43712855/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nmy\tO\tmy\tO\nexperience\tO\texperience\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhit\tO\thit\tO\nShopify\tB-Application\tShopify\tO\nwith\tO\twith\tO\nmultiple\tO\tmultiple\tO\ncart\tO\tcart\tO\nchanges\tO\tchanges\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nwill\tO\twill\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nShopify\tB-Application\tShopify\tO\nhandles\tO\thandles\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nAt\tO\tAt\tO\ntime\tO\ttime\tO\n0\tB-Value\t0\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nour\tO\tour\tO\ninitial\tO\tinitial\tO\ncart\tO\tcart\tO\n-\tO\t-\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\ncart0\tB-Variable_Name\tcart0\tO\n\t\nAt\tO\tAt\tO\ntime\tO\ttime\tO\nt\tB-Variable_Name\tt\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nsubmit\tO\tsubmit\tO\nn\tB-Variable_Name\tn\tO\nsimultaneous\tO\tsimultaneous\tO\nrequests\tO\trequests\tO\nto\tO\tto\tO\nadd/update/change\tO\tadd/update/change\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\n\t\nRequest\tO\tRequest\tO\n0\tB-Value\t0\tO\n:\tO\t:\tO\ntake\tO\ttake\tO\ncart0\tB-Variable_Name\tcart0\tO\nand\tO\tand\tO\napply\tO\tapply\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nreturn\tO\treturn\tO\nresult\tO\tresult\tO\n\t\nRequest\tO\tRequest\tO\n1\tB-Value\t1\tO\n:\tO\t:\tO\ntake\tO\ttake\tO\ncart0\tB-Variable_Name\tcart0\tO\nand\tO\tand\tO\napply\tO\tapply\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nreturn\tO\treturn\tO\nresult\tO\tresult\tO\n\t\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nRequest\tO\tRequest\tO\nn\tB-Variable_Name\tn\tO\n:\tO\t:\tO\ntake\tO\ttake\tO\ncart0\tB-Variable_Name\tcart0\tO\nand\tO\tand\tO\napply\tO\tapply\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nreturn\tO\treturn\tO\nresult\tO\tresult\tO\n\t\nThis\tO\tThis\tO\nseems\tO\tseems\tO\nconsistent\tO\tconsistent\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\nreturn\tO\treturn\tO\nvalues\tO\tvalues\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntested\tO\ttested\tO\nmultiple\tO\tmultiple\tO\nrequests\tO\trequests\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n-\tO\t-\tO\neach\tO\teach\tO\ncallback\tO\tcallback\tO\nfunction\tO\tfunction\tO\nwould\tO\twould\tO\ntrigger\tO\ttrigger\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncart\tO\tcart\tO\nthat\tO\tthat\tO\nhad\tO\thad\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nchange\tO\tchange\tO\napplied\tO\tapplied\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\ntwo\tO\ttwo\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nlimitation\tO\tlimitation\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nis\tO\tis\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nrequests\tO\trequests\tO\nare\tO\tare\tO\nchained\tO\tchained\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\none\tO\tone\tO\nto\tO\tto\tO\nfinish\tO\tfinish\tO\nbefore\tO\tbefore\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\n-\tO\t-\tO\neffectively\tO\teffectively\tO\nturning\tO\tturning\tO\nthe\tO\tthe\tO\nasynchronous\tO\tasynchronous\tO\nrequests\tO\trequests\tO\ninto\tO\tinto\tO\nsynchronous\tO\tsynchronous\tO\nones\tO\tones\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nfor\tO\tfor\tO\nspeed\tO\tspeed\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\nmethod\tO\tmethod\tO\nonly\tO\tonly\tO\nworks\tO\tworks\tO\nif\tO\tif\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nline\tO\tline\tO\nitem\tO\titem\tO\nproperties\tO\tproperties\tO\nto\tO\tto\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\n:\tO\t:\tO\ncombining\tO\tcombining\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nadditions/changes\tO\tadditions/changes\tO\ninto\tO\tinto\tO\none\tO\tone\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\n/cart/update.js\tB-File_Name\t/cart/update.js\tB-Code_Block\n,\tO\t,\tO\npassing\tO\tpassing\tO\nthe\tO\tthe\tO\nvariant\tO\tvariant\tO\nIDs\tO\tIDs\tO\nand\tO\tand\tO\ndesired\tO\tdesired\tO\nquantities\tO\tquantities\tO\nall\tO\tall\tO\nat\tO\tat\tO\nonce\tO\tonce\tO\n-\tO\t-\tO\nsee\tO\tsee\tO\nhttps://help.shopify.com/themes/development/getting-started/using-ajax-api#update-cart\tO\thttps://help.shopify.com/themes/development/getting-started/using-ajax-api#update-cart\tO\nfor\tO\tfor\tO\nexamples\tO\texamples\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nline\tO\tline\tO\nproperties\tO\tproperties\tO\nto\tO\tto\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\n,\tO\t,\tO\nchanging\tO\tchanging\tO\nyour\tO\tyour\tO\nsingle-line\tO\tsingle-line\tO\nadditions\tO\tadditions\tO\ninto\tO\tinto\tO\none\tO\tone\tO\nbig\tO\tbig\tO\nupdate\tO\tupdate\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsignificant\tO\tsignificant\tO\nspeed\tO\tspeed\tO\nand\tO\tand\tO\nreliability\tO\treliability\tO\nincrease\tO\tincrease\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tB-User_Interface_Element\tQuestion_ID\tO\n:\tO\t:\tO\n40561979\tO\t40561979\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40561979/\tO\thttps://stackoverflow.com/questions/40561979/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\njavafx\tB-Library\tjavafx\tO\napplication\tO\tapplication\tO\nwith\tO\twith\tO\na\tO\ta\tO\nTableView\tB-Library_Class\tTableView\tB-Code_Block\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n(\tO\t(\tO\ndataTypeColumn\tB-Variable_Name\tdataTypeColumn\tB-Code_Block\n)\tO\t)\tO\nis\tO\tis\tO\neditable\tO\teditable\tO\nand\tO\tand\tO\nit\tO\tit\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nComboBox\tB-Library_Class\tComboBox\tB-Code_Block\nfor\tO\tfor\tO\nediting\tO\tediting\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\nTableView\tB-Library_Class\tTableView\tB-Code_Block\ndoes\tO\tdoes\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nweird\tO\tweird\tO\nbugs\tO\tbugs\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nstart\tO\tstart\tO\nediting\tO\tediting\tO\na\tO\ta\tO\ncell\tB-User_Interface_Element\tcell\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nscroll\tO\tscroll\tO\nit\tO\tit\tO\nout\tO\tout\tO\nof\tO\tof\tO\nview\tO\tview\tO\nwithout\tO\twithout\tO\ncommiting\tO\tcommiting\tO\nthe\tO\tthe\tO\nedit\tO\tedit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nTableView\tB-Library_Class\tTableView\tB-Code_Block\nreuses\tO\treuses\tO\nthe\tO\tthe\tO\ncells\tB-User_Interface_Element\tcells\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nfound\tO\tfound\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nintervene\tO\tintervene\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nto\tO\tto\tO\nforbid\tO\tforbid\tO\nreuse\tO\treuse\tO\nof\tO\tof\tO\ncells\tB-User_Interface_Element\tcells\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ncurrently\tO\tcurrently\tO\nediting\tO\tediting\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nthough\tO\tthough\tO\nI\tO\tI\tO\nam\tO\tam\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\ncell\tB-User_Interface_Element\tcell\tO\nreuse\tO\treuse\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nproblem\tO\tproblem\tO\nbelow\tO\tbelow\tO\n,\tO\t,\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nin\tO\tin\tO\nquestion\tO\tquestion\tO\ncontains\tO\tcontains\tO\nValues\tO\tValues\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nenum\tO\tenum\tO\nDataType\tB-Library_Class\tDataType\tB-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncell\tB-User_Interface_Element\tcell\tO\nFactory\tO\tFactory\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nlooking\tO\tlooking\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5121\tI-Code_Block\tQ_5121\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nvalues\tO\tvalues\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nget\tO\tget\tO\nread\tO\tread\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5122\tI-Code_Block\tQ_5122\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\ncase\tO\tcase\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nconfusing\tO\tconfusing\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ngive\tO\tgive\tO\nmy\tO\tmy\tO\nTableView\tB-Library_Class\tTableView\tB-Code_Block\nare\tO\tare\tO\nIntegers\tB-Data_Type\tIntegers\tB-Code_Block\n(\tO\t(\tO\nfrom\tO\tfrom\tO\n0\tB-Value\t0\tO\nto\tO\tto\tO\nn-1\tB-Value\tn-1\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndifferent\tO\tdifferent\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nCellValueFactories\tB-Library_Variable\tCellValueFactories\tB-Code_Block\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nvalues\tO\tvalues\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nloaded\tO\tloaded\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nInteger\tB-Data_Type\tInteger\tB-Code_Block\nassoziated\tO\tassoziated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhen\tO\twhen\tO\nediting\tO\tediting\tO\nit\tO\tit\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\na\tO\ta\tO\nComboBox\tB-Library_Class\tComboBox\tB-Code_Block\nwith\tO\twith\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nValues\tO\tValues\tO\nthat\tO\tthat\tO\nDataType\tB-Library_Class\tDataType\tB-Code_Block\ncan\tO\tcan\tO\nhave\tO\thave\tO\nand\tO\tand\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nselect\tO\tselect\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncallback\tO\tcallback\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nthat\tO\tthat\tO\nreacts\tO\treacts\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nEdit\tO\tEdit\tO\ncommited\tO\tcommited\tO\nevent\tO\tevent\tO\nand\tO\tand\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5123\tI-Code_Block\tQ_5123\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nproblems\tO\tproblems\tO\nthat\tO\tthat\tO\noccur\tO\toccur\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\nall\tO\tall\tO\ncells\tB-User_Interface_Element\tcells\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\n:\tO\t:\tO\n\"\tB-Value\t\"\tO\nnothing\tI-Value\tnothing\tO\nselected\tI-Value\tselected\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nenum\tO\tenum\tO\nreserved\tO\treserved\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsetPlaceholder\tB-Library_Function\tsetPlaceholder\tO\nfunction\tO\tfunction\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nComboBoxTableCell\tB-Library_Class\tComboBoxTableCell\tB-Code_Block\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nstart\tO\tstart\tO\nediting\tO\tediting\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncells\tB-User_Interface_Element\tcells\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nscroll\tO\tscroll\tO\nit\tO\tit\tO\nout\tO\tout\tO\nof\tO\tof\tO\nview\tO\tview\tO\n,\tO\t,\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nrows\tB-User_Interface_Element\trows\tO\nwill\tO\twill\tO\nsuddendly\tO\tsuddendly\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nstate\tO\tstate\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nthat\tO\tthat\tO\nrow\tB-User_Interface_Element\trow\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nbeen\tO\tbeen\tO\ntouched\tO\ttouched\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nscroll\tO\tscroll\tO\nfurther\tO\tfurther\tO\nan\tO\tan\tO\ncell\tB-User_Interface_Element\tcell\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nstate\tO\tstate\tO\nwill\tO\twill\tO\nappear\tO\tappear\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\none\tO\tone\tO\nscrolls\tO\tscrolls\tO\nout\tO\tout\tO\nof\tO\tof\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\nand\tO\tand\tO\nwill\tO\twill\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncells\tB-User_Interface_Element\tcells\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nstate\tO\tstate\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nstate\tO\tstate\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ninstead\tO\tinstead\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\noriginally\tO\toriginally\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n's\tO\t's\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nunderlying\tO\tunderlying\tO\nObservableList\tB-Library_Class\tObservableList\tB-Code_Block\n,\tO\t,\tO\nthat\tO\tthat\tO\nautomatically\tO\tautomatically\tO\nupdates\tO\tupdates\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nstart\tO\tstart\tO\nediting\tO\tediting\tO\na\tO\ta\tO\ncell\tB-User_Interface_Element\tcell\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nvalue\tO\tvalue\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nprevious\tO\tprevious\tO\nedit\tO\tedit\tO\n)\tO\t)\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\neven\tO\teven\tO\nmore\tO\tmore\tO\nweird\tO\tweird\tO\nhappens\tO\thappens\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nscrolling\tO\tscrolling\tO\nit\tO\tit\tO\nout\tO\tout\tO\nof\tO\tof\tO\nview\tO\tview\tO\nagain\tO\tagain\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nrow\tB-User_Interface_Element\trow\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncell\tB-User_Interface_Element\tcell\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nvalue\tO\tvalue\tO\n\"\tB-Value\t\"\tO\nnothing\tI-Value\tnothing\tO\nselected\tI-Value\tselected\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nscroll\tO\tscroll\tO\nbackwards\tO\tbackwards\tO\nthe\tO\tthe\tO\ncell\tB-User_Interface_Element\tcell\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\noriginally\tO\toriginally\tO\nwill\tO\twill\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nstate\tO\tstate\tO\nhowever\tO\thowever\tO\nit\tO\tit\tO\n's\tO\t's\tO\nvalue\tO\tvalue\tO\nhas\tO\thas\tO\nchanged\tO\tchanged\tO\nto\tO\tto\tO\n\"\tB-Value\t\"\tO\nnothing\tI-Value\tnothing\tO\nselected\tI-Value\tselected\tO\n\"\tI-Value\t\"\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ncell\tB-User_Interface_Element\tcell\tO\nthat\tO\tthat\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nstate\tO\tstate\tO\nsomehow\tO\tsomehow\tO\ncommited\tO\tcommited\tO\nit\tO\tit\tO\n's\tO\t's\tO\nown\tO\town\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nsome\tO\tsome\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n:)\tO\t:)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40561979\tO\t40561979\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40561979/\tO\thttps://stackoverflow.com/questions/40561979/\tO\n\t\n\t\nThis\tO\tThis\tO\nindeed\tO\tindeed\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nRather\tO\tRather\tO\nsurprising\tO\tsurprising\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nscroll\tB-User_Interface_Element\tscroll\tO\nbar\tI-User_Interface_Element\tbar\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nmouse\tB-Device\tmouse\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nedit\tO\tedit\tO\nis\tO\tis\tO\nproperly\tO\tproperly\tO\ncanceled\tO\tcanceled\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nmouse\tB-Device\tmouse\tO\nwheel\tO\twheel\tO\nto\tO\tto\tO\nscroll\tO\tscroll\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nworkaround\tO\tworkaround\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nbuf\tO\tbuf\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\nsimply\tO\tsimply\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncancel\tO\tcancel\tO\nthe\tO\tthe\tO\nedit\tO\tedit\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nitem\tO\titem\tO\nis\tO\tis\tO\nreplaced\tO\treplaced\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\ncellFactory\tB-Code_Block\tcellFactory\tB-Code_Block\non\tO\ton\tO\nyour\tO\tyour\tO\nown\tO\town\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5811\tI-Code_Block\tA_5811\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24115009\tO\t24115009\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24115009/\tO\thttps://stackoverflow.com/questions/24115009/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nread\tO\tread\tO\neach\tO\teach\tO\nrow\tB-Data_Structure\trow\tO\nin\tO\tin\tO\nDatagrid\tB-Library_Class\tDatagrid\tO\none\tO\tone\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nmy\tO\tmy\tO\ndatagrid\tB-Library_Class\tdatagrid\tO\nhas\tO\thas\tO\n5\tO\t5\tO\ndata\tB-Library_Variable\tdata\tO\non\tO\ton\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\neach\tO\teach\tO\ndata\tB-Library_Variable\tdata\tO\ncorresponds\tO\tcorresponds\tO\nto\tO\tto\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\n/\tO\t/\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nC#\tB-Language\tC#\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nread\tO\tread\tO\nit\tO\tit\tO\nas\tO\tas\tO\ndata\tB-Library_Variable\tdata\tO\n1\tO\t1\tO\nthen\tO\tthen\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nfunction\tO\tfunction\tO\nunder\tO\tunder\tO\nthat\tO\tthat\tO\ndata\tB-Library_Variable\tdata\tO\n.\tO\t.\tO\n\t\nthen\tO\tthen\tO\nread\tO\tread\tO\ndata\tB-Library_Variable\tdata\tO\n2\tO\t2\tO\nthen\tO\tthen\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nfunction\tO\tfunction\tO\nunder\tO\tunder\tO\nthat\tO\tthat\tO\ndata\tB-Library_Variable\tdata\tO\n2\tO\t2\tO\n.\tO\t.\tO\nand\tO\tand\tO\nso\tO\tso\tO\non.\tO\ton.\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24115009\tO\t24115009\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24115009/\tO\thttps://stackoverflow.com/questions/24115009/\tO\n\t\n\t\nI\tO\tI\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nfollowing\tO\tfollowing\tO\nMVVM\tB-Algorithm\tMVVM\tO\n,\tO\t,\tO\nGet\tO\tGet\tO\nthe\tO\tthe\tO\nItems\tO\tItems\tO\nFrom\tO\tFrom\tO\nYour\tO\tYour\tO\nDataGrid\tB-Library_Class\tDataGrid\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3285\tI-Code_Block\tA_3285\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2590794\tO\t2590794\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2590794/\tO\thttps://stackoverflow.com/questions/2590794/\tO\n\t\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\ngcov\tB-Application\tgcov\tO\nmessage\tO\tmessage\tO\n\"\tO\t\"\tO\nMerge\tO\tMerge\tO\nmismatch\tO\tmismatch\tO\nfor\tO\tfor\tO\nsummaries\tO\tsummaries\tO\n\"\tO\t\"\tO\nmeans\tO\tmeans\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ngcc\tB-Application\tgcc\tO\nsource\tO\tsource\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttp://www.opensource.apple.com/source/gcc/gcc-5646/gcc/libgcov.c\tO\thttp://www.opensource.apple.com/source/gcc/gcc-5646/gcc/libgcov.c\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsanity\tO\tsanity\tO\ncheck\tO\tcheck\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntags\tO\ttags\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n.gcda\tB-File_Type\t.gcda\tB-Code_Block\nfiles\tO\tfiles\tO\nmatch\tO\tmatch\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\n.\tO\t.\tO\n\t\nAnyone\tO\tAnyone\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nwork\tO\twork\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2590794\tO\t2590794\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2590794/\tO\thttps://stackoverflow.com/questions/2590794/\tO\n\t\n\t\nThis\tO\tThis\tO\nhappens\tO\thappens\tO\nwhen\tO\twhen\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobjects\tO\tobjects\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlinking\tO\tlinking\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nexecutable\tO\texecutable\tO\nchanges\tO\tchanges\tO\nsignificantly\tO\tsignificantly\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nit\tO\tit\tO\ngains\tO\tgains\tO\nor\tO\tor\tO\nloses\tO\tloses\tO\nsome\tO\tsome\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\nprofilable\tO\tprofilable\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nminimal\tO\tminimal\tO\ncase\tO\tcase\tO\nto\tO\tto\tO\nproduce\tO\tproduce\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nwith\tO\twith\tO\n2\tO\t2\tO\nsource\tO\tsource\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\n2\tO\t2\tO\nexample\tO\texample\tO\nsource\tO\tsource\tO\nfiles\tO\tfiles\tO\ncalled\tO\tcalled\tO\nc\tB-File_Name\tc\tO\n..\tI-File_Name\t..\tO\n.\tI-File_Name\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_260\tI-Code_Block\tA_260\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nstuff.c\tB-File_Name\tstuff.c\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_261\tI-Code_Block\tA_261\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nimportant\tO\timportant\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbuild\tO\tbuild\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nMakefile\tB-File_Name\tMakefile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_262\tI-Code_Block\tA_262\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nMakefile\tB-File_Name\tMakefile\tO\nis\tO\tis\tO\nset\tO\tset\tO\nup\tO\tup\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncompilation\tO\tcompilation\tO\nis\tO\tis\tO\nmain.c\tB-Code_Block\tmain.c\tB-Code_Block\n->\tI-Code_Block\t->\tI-Code_Block\nmain.o\tI-Code_Block\tmain.o\tI-Code_Block\n,\tO\t,\tO\nstuff.c\tB-Code_Block\tstuff.c\tB-Code_Block\n->\tI-Code_Block\t->\tI-Code_Block\nstuff.o\tI-Code_Block\tstuff.o\tI-Code_Block\nand\tO\tand\tO\nfinally\tO\tfinally\tO\nstuff.o\tB-Code_Block\tstuff.o\tB-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\nmain.o\tI-Code_Block\tmain.o\tI-Code_Block\n->\tI-Code_Block\t->\tI-Code_Block\ntestexe\tI-Code_Block\ttestexe\tI-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\ncompile\tO\tcompile\tO\nand\tO\tand\tO\nlink\tO\tlink\tO\nthose\tO\tthose\tO\nC\tB-Language\tC\tO\nfiles\tO\tfiles\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n-fprofile-arcs\tB-Code_Block\t-fprofile-arcs\tB-Code_Block\n-ftest-coverage\tI-Code_Block\t-ftest-coverage\tI-Code_Block\noptions\tO\toptions\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nexecutable\tO\texecutable\tO\nfile\tO\tfile\tO\nhas\tO\thas\tO\nprofiling\tO\tprofiling\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nthat\tO\tthat\tO\nexecuatable\tO\texecuatable\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\n2\tO\t2\tO\noutput\tO\toutput\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nmain.gcda\tB-File_Name\tmain.gcda\tB-Code_Block\nand\tO\tand\tO\nstuff.gcda\tB-File_Name\tstuff.gcda\tB-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nso\tO\tso\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\n#if\tB-Code_Block\t#if\tB-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\nto\tO\tto\tO\n#if\tB-Code_Block\t#if\tB-Code_Block\n1\tI-Code_Block\t1\tI-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nMakefile\tB-File_Name\tMakefile\tO\nshould\tO\tshould\tO\ncause\tO\tcause\tO\njust\tO\tjust\tO\nstuff.c\tB-File_Name\tstuff.c\tO\nto\tO\tto\tO\nrecompile\tO\trecompile\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nexecutable\tO\texecutable\tO\nto\tO\tto\tO\nrelink\tO\trelink\tO\n.\tO\t.\tO\n\t\nNext\tO\tNext\tO\ntime\tO\ttime\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nexecutable\tO\texecutable\tO\ngets\tO\tgets\tO\nrun\tO\trun\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n\"\tB-Output_Block\t\"\tO\nMerge\tI-Output_Block\tMerge\tO\nmismatch\tI-Output_Block\tmismatch\tO\n\"\tI-Output_Block\t\"\tO\nmessage\tO\tmessage\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nmain.gcda\tB-File_Name\tmain.gcda\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nstuff.gcda\tB-File_Name\tstuff.gcda\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\naffected\tO\taffected\tO\nsince\tO\tsince\tO\nits\tO\tits\tO\nobject\tO\tobject\tO\nfile\tO\tfile\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nrecreated\tO\trecreated\tO\nwith\tO\twith\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nsummary\tO\tsummary\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nrecompile\tO\trecompile\tO\nmain.c\tB-File_Name\tmain.c\tB-Code_Block\nand\tO\tand\tO\nrelink\tO\trelink\tO\nthe\tO\tthe\tO\nexecutable\tO\texecutable\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\ngoes\tO\tgoes\tO\naway\tO\taway\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlove\tO\tlove\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\n!\tO\t!\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nfind\tB-Code_Block\tfind\tB-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\n-name\tI-Code_Block\t-name\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\n.gcda\tI-Code_Block\t.gcda\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\n|\tI-Code_Block\t|\tI-Code_Block\nxargs\tI-Code_Block\txargs\tI-Code_Block\nrm\tI-Code_Block\trm\tI-Code_Block\nwhenever\tO\twhenever\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nre-check\tO\tre-check\tO\ncoverage\tO\tcoverage\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\nideal\tO\tideal\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nrecompile\tO\trecompile\tO\neverything\tO\teverything\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nprofiling\tO\tprofiling\tO\n\"\tO\t\"\tO\njust\tO\tjust\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\noverkill\tO\toverkill\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9782265\tO\t9782265\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9782265/\tO\thttps://stackoverflow.com/questions/9782265/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nopenssl\tB-Library\topenssl\tO\n0.9.8g\tB-Version\t0.9.8g\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\nthe\tO\tthe\tO\ncertificate\tO\tcertificate\tO\nsignature\tO\tsignature\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nAPI\tB-Library\tAPI\tO\n\"\tI-Library\t\"\tO\nX509_verify\tI-Library\tX509_verify\tO\n\"\tI-Library\t\"\tO\nreturns\tO\treturns\tO\n0/1\tB-Value\t0/1\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\nbut\tO\tbut\tO\ni\tO\ti\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\n-1\tB-Value\t-1\tO\nas\tO\tas\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nwhy\tO\twhy\tO\ni\tO\ti\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\n-1\tB-Value\t-1\tO\nas\tO\tas\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n.\tO\t.\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9782265\tO\t9782265\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9782265/\tO\thttps://stackoverflow.com/questions/9782265/\tO\n\t\n\t\nNeed\tO\tNeed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nalgorithms\tO\talgorithms\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n.\tO\t.\tO\n\t\ncall\tO\tcall\tO\nthese\tO\tthese\tO\nfunctions\tO\tfunctions\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\nlist\tB-Data_Structure\tlist\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1236\tI-Code_Block\tA_1236\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nReturn\tO\tReturn\tO\n-1\tB-Value\t-1\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nAlgorithm\tO\tAlgorithm\tO\nobj_ID\tB-Variable_Name\tobj_ID\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24293004\tO\t24293004\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24293004/\tO\thttps://stackoverflow.com/questions/24293004/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nhelper\tO\thelper\tO\ncalled\tO\tcalled\tO\nnotifications\tB-Variable_Name\tnotifications\tB-Code_Block\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\n3\tO\t3\tO\ncollection\tB-Library_Class\tcollection\tO\ncursors\tI-Library_Class\tcursors\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ntemplate\tO\ttemplate\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nview\tO\tview\tO\nall\tO\tall\tO\n\t\nTemplate\tO\tTemplate\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2702\tI-Code_Block\tQ_2702\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHelper\tO\tHelper\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2703\tI-Code_Block\tQ_2703\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24293004\tO\t24293004\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24293004/\tO\thttps://stackoverflow.com/questions/24293004/\tO\n\t\n\t\nThe\tO\tThe\tO\nliteral\tO\tliteral\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nfetch\tB-Library_Function\tfetch\tB-Code_Block\non\tO\ton\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncursors\tB-Library_Class\tcursors\tO\nand\tO\tand\tO\nconcatenate\tO\tconcatenate\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3322\tI-Code_Block\tA_3322\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBecause\tO\tBecause\tO\nall\tO\tall\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndocuments\tO\tdocuments\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ncollection\tB-Library_Class\tcollection\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalternatively\tO\talternatively\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nsophisticated\tO\tsophisticated\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nGive\tO\tGive\tO\nthis\tO\tthis\tO\na\tO\ta\tO\ntry\tO\ttry\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3323\tI-Code_Block\tA_3323\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21079023\tO\t21079023\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21079023/\tO\thttps://stackoverflow.com/questions/21079023/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nform\tO\tform\tO\nin\tO\tin\tO\nangularjs\tB-Library\tangularjs\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nngShow\tB-Library_Class\tngShow\tO\nfor\tO\tfor\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncrossfade\tO\tcrossfade\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\nmessages\tO\tmessages\tO\nplacing\tO\tplacing\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nspot\tO\tspot\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nplunker\tO\tplunker\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\nhttp://plnkr.co/edit/EcT2oOmClz65WUgXgG4g?p=preview\tO\thttp://plnkr.co/edit/EcT2oOmClz65WUgXgG4g?p=preview\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\n1.2.4\tB-Version\t1.2.4\tO\nand\tO\tand\tO\nlinked\tO\tlinked\tO\nthe\tO\tthe\tO\nng-animate\tB-Library\tng-animate\tO\nlib\tO\tlib\tO\n.\tO\t.\tO\n\t\nRight\tO\tRight\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\nanimation\tO\tanimation\tO\n(\tO\t(\tO\nfading\tO\tfading\tO\nin/out\tO\tin/out\tO\n)\tO\t)\tO\nis\tO\tis\tO\nachieved\tO\tachieved\tO\nusing\tO\tusing\tO\nCSS\tB-Language\tCSS\tO\nnot\tO\tnot\tO\nJS\tB-Language\tJS\tO\n:\tO\t:\tO\n\t\nhtml\tB-Language\thtml\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2241\tI-Code_Block\tQ_2241\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ncss\tB-Language\tcss\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2242\tI-Code_Block\tQ_2242\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nJS\tB-Language\tJS\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2243\tI-Code_Block\tQ_2243\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21079023\tO\t21079023\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21079023/\tO\thttps://stackoverflow.com/questions/21079023/\tO\n\t\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nis\tO\tis\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nposition\tO\tposition\tO\n:\tO\t:\tO\nabsolute\tO\tabsolute\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\n's\tO\t's\tO\nstyle\tO\tstyle\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3429\tI-Code_Block\tA_3429\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nboth\tO\tboth\tO\nerrors\tO\terrors\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nposition\tO\tposition\tO\nwhile\tO\twhile\tO\nfading\tO\tfading\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\noverlapping\tO\toverlapping\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nby\tO\tby\tO\ncrossfading\tO\tcrossfading\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nwidth\tO\twidth\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontainer\tB-User_Interface_Element\tcontainer\tO\nbecause\tO\tbecause\tO\nits\tO\tits\tO\nwidth\tO\twidth\tO\nwas\tO\twas\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\nspan\tO\tspan\tO\nseveral\tO\tseveral\tO\nlines\tO\tlines\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nedited\tO\tedited\tO\nplunker\tB-Application\tplunker\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41068216\tO\t41068216\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41068216/\tO\thttps://stackoverflow.com/questions/41068216/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\ninsight\tO\tinsight\tO\ninto\tO\tinto\tO\nreporting\tO\treporting\tO\nutilization\tO\tutilization\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ntime\tO\ttime\tO\nplot\tO\tplot\tO\nthat\tO\tthat\tO\nreports\tO\treports\tO\nresourceName.utilization()\tB-Function_Name\tresourceName.utilization()\tB-Code_Block\n,\tO\t,\tO\nadditionally\tO\tadditionally\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nutilization\tO\tutilization\tO\nvalues\tO\tvalues\tO\nto\tO\tto\tO\na\tO\ta\tO\nStatistics\tO\tStatistics\tO\nobject\tO\tobject\tO\nevery\tO\tevery\tO\nhour\tO\thour\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\nplot\tO\tplot\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nStatistics\tO\tStatistics\tO\nobject\tO\tobject\tO\nas\tO\tas\tO\nstatisticName.mean()\tB-Function_Name\tstatisticName.mean()\tB-Code_Block\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nutilization\tO\tutilization\tO\nin\tO\tin\tO\nAnyLogic\tB-Application\tAnyLogic\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nreturned\tO\treturned\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\nover\tO\tover\tO\nall\tO\tall\tO\nindividual\tO\tindividual\tO\nunit\tO\tunit\tO\nutilization\tO\tutilization\tO\n,\tO\t,\tO\ncalculated\tO\tcalculated\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nrecent\tO\trecent\tO\nresetStats()\tB-Function_Name\tresetStats()\tB-Code_Block\ncall\tO\tcall\tO\nup\tO\tup\tO\nto\tO\tto\tO\ncurrent\tO\tcurrent\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nreporting\tO\treporting\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nstatisticName.mean()\tB-Function_Name\tstatisticName.mean()\tB-Code_Block\neven\tO\teven\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\naverage\tO\taverage\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\naveraged\tO\taveraged\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36429486\tO\t36429486\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36429486/\tO\thttps://stackoverflow.com/questions/36429486/\tO\n\t\n\t\nIm\tO\tIm\tO\nusing\tO\tusing\tO\ntwig\tB-Language\ttwig\tO\nbut\tO\tbut\tO\nits\tO\tits\tO\nbeing\tO\tbeing\tO\nrun\tO\trun\tO\nvia\tO\tvia\tO\ngulp\tB-Library\tgulp\tO\nnot\tO\tnot\tO\nsymphony\tB-Library\tsymphony\tO\n.\tO\t.\tO\n\t\nhttps://www.npmjs.com/package/gulp-twig\tO\thttps://www.npmjs.com/package/gulp-twig\tO\n\t\nIve\tO\tIve\tO\nused\tO\tused\tO\nextends\tO\textends\tO\nand\tO\tand\tO\nincludes\tO\tincludes\tO\nsuccessfully\tO\tsuccessfully\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncant\tO\tcant\tO\nget\tO\tget\tO\nmacros\tO\tmacros\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nmacros\tO\tmacros\tO\nrequire\tO\trequire\tO\nsymphony\tB-Library\tsymphony\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\ntwig\tB-File_Type\ttwig\tO\nfile\tO\tfile\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4482\tI-Code_Block\tQ_4482\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\ntest.twig\tB-File_Name\ttest.twig\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4483\tI-Code_Block\tQ_4483\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36429486\tO\t36429486\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36429486/\tO\thttps://stackoverflow.com/questions/36429486/\tO\n\t\n\t\nIt\tO\tIt\tO\nwas\tO\twas\tO\na\tO\ta\tO\nsyntax\tO\tsyntax\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nmain\tB-File_Name\tmain\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5212\tI-Code_Block\tA_5212\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\ntest.twig\tB-File_Name\ttest.twig\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5213\tI-Code_Block\tA_5213\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nImplementation\tO\tImplementation\tO\nNotes\tO\tNotes\tO\n:\tO\t:\tO\n\t\nhttps://github.com/justjohn/twig.js/wiki/Implementation-Notes\tO\thttps://github.com/justjohn/twig.js/wiki/Implementation-Notes\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16175946\tO\t16175946\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16175946/\tO\thttps://stackoverflow.com/questions/16175946/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nsome\tO\tsome\tO\ntrouble\tO\ttrouble\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\nGWT\tB-Application\tGWT\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n:\tO\t:\tO\nhttps://developers.google.com/web-toolkit/tools/gwtdesigner/features/menu_editing\tO\thttps://developers.google.com/web-toolkit/tools/gwtdesigner/features/menu_editing\tO\nGoogle\tO\tGoogle\tO\nthemselves\tO\tthemselves\tO\ntalk\tO\ttalk\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npossibility\tO\tpossibility\tO\nof\tO\tof\tO\nJava\tB-Application\tJava\tO\nSwing\tI-Application\tSwing\tO\n,\tO\t,\tO\nJFrame\tB-Library_Class\tJFrame\tO\nimplementation\tO\timplementation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nGWT\tB-Application\tGWT\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nJava\tB-Language\tJava\tO\nnewbie\tO\tnewbie\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nSWT\tB-Application\tSWT\tO\nequivalent\tO\tequivalent\tO\nof\tO\tof\tO\nSwing\tB-Application\tSwing\tO\nis\tO\tis\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\ntried\tO\ttried\tO\nthat\tO\tthat\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nbuilt\tO\tbuilt\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nGWT\tB-Application\tGWT\tO\nDesigner\tI-Application\tDesigner\tO\n)\tO\t)\tO\nI\tO\tI\tO\nget\tO\tget\tO\nerrors\tO\terrors\tO\nat\tO\tat\tO\neach\tO\teach\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nJFrame\tB-Library_Class\tJFrame\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1597\tI-Code_Block\tQ_1597\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nReturning\tO\tReturning\tO\n:\tO\t:\tO\n[\tO\t[\tO\nERROR\tO\tERROR\tO\n]\tO\t]\tO\n[\tO\t[\tO\ngwtearthdemo\tB-Error_Name\tgwtearthdemo\tO\n]\tO\t]\tO\n-\tO\t-\tO\nLine\tO\tLine\tO\n96\tO\t96\tO\n:\tO\t:\tO\nNo\tO\tNo\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\ntype\tO\ttype\tO\njavax.swing.JFrame\tB-Library_Class\tjavax.swing.JFrame\tO\n;\tI-Library_Class\t;\tO\ndid\tO\tdid\tO\nyou\tO\tyou\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\ninherit\tO\tinherit\tO\na\tO\ta\tO\nrequired\tO\trequired\tO\nmodule\tO\tmodule\tO\n?\tO\t?\tO\n\t\nDitto\tO\tDitto\tO\nfor\tO\tfor\tO\nJMenuBar\tB-Library_Class\tJMenuBar\tO\n,\tO\t,\tO\nJMenu\tB-Library_Class\tJMenu\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\nerrors\tO\terrors\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\nanswers\tO\tanswers\tO\nsuggesting\tO\tsuggesting\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\napplicable\tO\tapplicable\tO\nto\tO\tto\tO\nGWT\tB-Application\tGWT\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nGoogle\tB-Website\tGoogle\tO\nsuggests\tO\tsuggests\tO\nit\tO\tit\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nadvice\tO\tadvice\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16175946\tO\t16175946\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16175946/\tO\thttps://stackoverflow.com/questions/16175946/\tO\n\t\n\t\nIn\tO\tIn\tO\nGWT\tB-Application\tGWT\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nrestricted\tO\trestricted\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nonly\tO\tonly\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\njava\tB-Language\tjava\tO\nclasses\tO\tclasses\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\njava\tB-Language\tjava\tO\nclasses\tO\tclasses\tO\nto\tO\tto\tO\njavascript\tB-Language\tjavascript\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nallowed\tO\tallowed\tO\nclasses\tO\tclasses\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\nList\tO\tList\tO\nof\tO\tof\tO\nClasses\tO\tClasses\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2759665\tO\t2759665\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2759665/\tO\thttps://stackoverflow.com/questions/2759665/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nhaving\tO\thaving\tO\nsome\tO\tsome\tO\nperformance\tO\tperformance\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nOracle\tB-Application\tOracle\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndownloaded\tO\tdownloaded\tO\na\tO\ta\tO\ntrial\tO\ttrial\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nQuest\tB-Application\tQuest\tO\nSQL\tI-Application\tSQL\tO\nOptimizer\tI-Application\tOptimizer\tO\nfor\tO\tfor\tO\nOracle\tB-Application\tOracle\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmade\tO\tmade\tO\nsome\tO\tsome\tO\nchanges\tO\tchanges\tO\nthat\tO\tthat\tO\ndramatically\tO\tdramatically\tO\nimproved\tO\timproved\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\n's\tO\t's\tO\nperformance\tO\tperformance\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nexactly\tO\texactly\tO\nsure\tO\tsure\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\nrecommended\tO\trecommended\tO\nquery\tO\tquery\tO\nhad\tO\thad\tO\nsuch\tO\tsuch\tO\nan\tO\tan\tO\nimprovement\tO\timprovement\tO\n;\tO\t;\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nprovide\tO\tprovide\tO\nan\tO\tan\tO\nexplanation\tO\texplanation\tO\n?\tO\t?\tO\n\t\nBefore\tO\tBefore\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_177\tI-Code_Block\tQ_177\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlan\tO\tPlan\tO\nCost\tO\tCost\tO\n:\tO\t:\tO\n831\tB-Value\t831\tO\n\t\nElapsed\tO\tElapsed\tO\nTime\tO\tTime\tO\n:\tO\t:\tO\n00:00:21.40\tB-Value\t00:00:21.40\tO\n\t\nNumber\tO\tNumber\tO\nof\tO\tof\tO\nRecords\tO\tRecords\tO\n:\tO\t:\tO\n40,717\tB-Value\t40,717\tO\n\t\nAfter\tO\tAfter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_178\tI-Code_Block\tQ_178\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlan\tO\tPlan\tO\nCost\tO\tCost\tO\n:\tO\t:\tO\n686\tB-Value\t686\tO\n\t\nElapsed\tO\tElapsed\tO\nTime\tO\tTime\tO\n:\tO\t:\tO\n00:00:00.95\tB-Value\t00:00:00.95\tO\n\t\nNumber\tO\tNumber\tO\nof\tO\tof\tO\nRecords\tO\tRecords\tO\n:\tO\t:\tO\n40,717\tB-Value\t40,717\tO\n\t\nQuestions\tO\tQuestions\tO\n:\tO\t:\tO\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nre-arranging\tO\tre-arranging\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntables\tB-Data_Structure\ttables\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFROM\tB-Code_Block\tFROM\tB-Code_Block\nclause\tO\tclause\tO\nhelp\tO\thelp\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nadding\tO\tadding\tO\n+\tB-Code_Block\t+\tB-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nWHERE\tB-Code_Block\tWHERE\tB-Code_Block\nclause\tO\tclause\tO\ncomparisons\tO\tcomparisons\tO\nhelp\tO\thelp\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\n||\tB-Code_Block\t||\tB-Code_Block\n''\tI-Code_Block\t''\tI-Code_Block\n<>\tI-Code_Block\t<>\tI-Code_Block\n'\tI-Code_Block\t'\tI-Code_Block\nAA\tI-Code_Block\tAA\tI-Code_Block\n'\tB-Code_Block\t'\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nWHERE\tB-Code_Block\tWHERE\tB-Code_Block\nclause\tO\tclause\tO\nVERSION_NAME\tB-Code_Block\tVERSION_NAME\tB-Code_Block\ncomparison\tO\tcomparison\tO\nhelp\tO\thelp\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nof\tO\tof\tO\nhandling\tO\thandling\tO\npossible\tO\tpossible\tO\nnulls\tB-Value\tnulls\tB-Code_Block\non\tO\ton\tO\nthis\tO\tthis\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2759665\tO\t2759665\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2759665/\tO\thttps://stackoverflow.com/questions/2759665/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\nboth\tO\tboth\tO\nstatements\tO\tstatements\tO\nthrough\tO\tthrough\tO\nan\tO\tan\tO\nexplain\tB-Code_Block\texplain\tO\nplan\tI-Code_Block\tplan\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nyourself\tO\tyourself\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nissue\tO\tissue\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_267\tI-Code_Block\tA_267\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\n's\tO\t's\tO\nstill\tO\tstill\tO\nnot\tO\tnot\tO\nclear\tO\tclear\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\noccurs\tO\toccurs\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nplease\tO\tplease\tO\npaste\tO\tpaste\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nRegards\tO\tRegards\tO\n,\tO\t,\tO\n\t\nRob\tB-User_Name\tRob\tO\n.\tO\t.\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\n+\tB-Code_Block\t+\tO\n0\tI-Code_Block\t0\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\n||\tB-Code_Block\t||\tO\n''\tO\t''\tO\n\"\tO\t\"\tO\nare\tO\tare\tO\njust\tO\tjust\tO\ntricks\tO\ttricks\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nregular\tO\tregular\tO\nindexes\tO\tindexes\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nalso\tO\talso\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\nquery\tO\tquery\tO\nless\tO\tless\tO\nreadable\tO\treadable\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ntune\tO\ttune\tO\nthem\tO\tthem\tO\nmyself\tO\tmyself\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nrelying\tO\trelying\tO\non\tO\ton\tO\na\tO\ta\tO\ntool\tO\ttool\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2759665\tO\t2759665\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2759665/\tO\thttps://stackoverflow.com/questions/2759665/\tO\n\t\n\t\nAlmost\tO\tAlmost\tO\ncertainly\tO\tcertainly\tO\nthe\tO\tthe\tO\nstatistics\tO\tstatistics\tO\non\tO\ton\tO\nthese\tO\tthese\tO\ntables\tB-Data_Structure\ttables\tO\nare\tO\tare\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\ncausing\tO\tcausing\tO\nthe\tO\tthe\tO\noptimizer\tO\toptimizer\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\na\tO\ta\tO\npoor\tO\tpoor\tO\nplan\tO\tplan\tO\n.\tO\t.\tO\n\t\nGather\tO\tGather\tO\nstats\tO\tstats\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntables\tB-Data_Structure\ttables\tO\nand\tO\tand\tO\nindexes\tO\tindexes\tO\n(\tO\t(\tO\nor\tO\tor\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nDBA\tO\tDBA\tO\nto\tO\tto\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nin\tO\tin\tO\ncontrol\tO\tcontrol\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nthing\tO\tthing\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ntry\tO\ttry\tO\nyour\tO\tyour\tO\nqueries\tO\tqueries\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2980010\tO\t2980010\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2980010/\tO\thttps://stackoverflow.com/questions/2980010/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\npage\tO\tpage\tO\nshows\tO\tshows\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nload\tO\tload\tO\nexternal\tO\texternal\tO\nimages\tB-User_Interface_Element\timages\tO\nin\tO\tin\tO\nAS3\tB-Language\tAS3\tO\nDataGrid\tB-Library_Class\tDataGrid\tO\n:\tO\t:\tO\nhttp://www.adobe.com/devnet/flash/quickstart/datagrid_pt3/\tO\thttp://www.adobe.com/devnet/flash/quickstart/datagrid_pt3/\tO\n(\tO\t(\tO\nimage\tB-User_Interface_Element\timage\tO\nand\tO\tand\tO\ntext\tB-User_Interface_Element\ttext\tO\nare\tO\tare\tO\ndisplayed\tO\tdisplayed\tO\nin\tO\tin\tO\ntwo\tO\ttwo\tO\ncolumns\tB-User_Interface_Element\tcolumns\tO\n)\tO\t)\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwonder\tO\twonder\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\nimage\tB-User_Interface_Element\timage\tO\nand\tO\tand\tO\ntext\tB-User_Interface_Element\ttext\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nloaded\tO\tloaded\tO\ntogether\tO\ttogether\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nDataGrid\tB-Library_Class\tDataGrid\tO\n.\tO\t.\tO\n\t\nWithin\tO\tWithin\tO\none\tO\tone\tO\ncolumn\tB-User_Interface_Element\tcolumn\tO\n:\tO\t:\tO\nImage\tB-User_Interface_Element\tImage\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ntext\tB-User_Interface_Element\ttext\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nget\tO\tget\tO\nit\tO\tit\tO\nwork\tO\twork\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\ngrateful\tO\tgrateful\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nexamples\tO\texamples\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2980010\tO\t2980010\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2980010/\tO\thttps://stackoverflow.com/questions/2980010/\tO\n\t\n\t\nYou\tO\tYou\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nCellRenderer\tB-Class_Name\tCellRenderer\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nread\tO\tread\tO\nand\tO\tand\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\npage\tO\tpage\tO\nyou\tO\tyou\tO\nlinked\tO\tlinked\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nexplain\tO\texplain\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\ncustom\tO\tcustom\tO\nCellRenderers\tB-Class_Name\tCellRenderers\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nwhatever\tO\twhatever\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nin\tO\tin\tO\na\tO\ta\tO\ncell\tB-User_Interface_Element\tcell\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nimage\tB-User_Interface_Element\timage\tO\nwith\tO\twith\tO\ntext\tB-User_Interface_Element\ttext\tO\n,\tO\t,\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n,\tO\t,\tO\na\tO\ta\tO\ngame\tO\tgame\tO\nof\tO\tof\tO\ntetris\tO\ttetris\tO\n,\tO\t,\tO\nwhatever\tO\twhatever\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15958043\tO\t15958043\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15958043/\tO\thttps://stackoverflow.com/questions/15958043/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\njoomla\tB-Application\tjoomla\tO\n2.5\tB-Version\t2.5\tO\nmodule\tO\tmodule\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\ndata\tO\tdata\tO\npass\tO\tpass\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nparameter\tO\tparameter\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\nFatal\tB-Error_Name\tFatal\tO\nerror\tI-Error_Name\terror\tO\n:\tO\t:\tO\nCall\tO\tCall\tO\nto\tO\tto\tO\na\tO\ta\tO\nmember\tO\tmember\tO\nfunction\tO\tfunction\tO\nget()\tB-Library_Function\tget()\tO\non\tO\ton\tO\na\tO\ta\tO\nnon-object\tO\tnon-object\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nfollows\tO\tfollows\tO\nbelows\tO\tbelows\tO\n:\tO\t:\tO\n\t\nhelper.php\tB-File_Name\thelper.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1573\tI-Code_Block\tQ_1573\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nmod_feedGrabber.php\tB-File_Name\tmod_feedGrabber.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1574\tI-Code_Block\tQ_1574\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nmod_feedGrabber.xml\tB-File_Name\tmod_feedGrabber.xml\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1575\tI-Code_Block\tQ_1575\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ndefault.php\tB-File_Name\tdefault.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1576\tI-Code_Block\tQ_1576\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15958043\tO\t15958043\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15958043/\tO\thttps://stackoverflow.com/questions/15958043/\tO\n\t\n\t\nThe\tO\tThe\tO\nmain\tO\tmain\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nsupplied\tO\tsupplied\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\n$params\tB-Variable_Name\t$params\tB-Code_Block\nto\tO\tto\tO\nyour\tO\tyour\tO\nhelper\tO\thelper\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nread\tO\tread\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2068\tI-Code_Block\tA_2068\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAlso\tO\tAlso\tO\nyour\tO\tyour\tO\nXML\tB-Language\tXML\tO\nis\tO\tis\tO\ninvalid\tO\tinvalid\tO\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\n's\tO\t's\tO\nmissing\tO\tmissing\tO\nclosing\tO\tclosing\tO\ntags\tO\ttags\tO\nfor\tO\tfor\tO\nfieldset\tB-HTML_XML_Tag\tfieldset\tB-Code_Block\nand\tO\tand\tO\nfields\tB-HTML_XML_Tag\tfields\tB-Code_Block\ntags\tO\ttags\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2069\tI-Code_Block\tA_2069\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\ntip\tO\ttip\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nquick\tO\tquick\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nan\tO\tan\tO\nXML\tB-File_Type\tXML\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nvalid\tO\tvalid\tO\nby\tO\tby\tO\ndragging\tO\tdragging\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nbrowser\tB-Application\tbrowser\tO\nwindow\tO\twindow\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nposted\tO\tposted\tO\nabove\tO\tabove\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14784221\tO\t14784221\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14784221/\tO\thttps://stackoverflow.com/questions/14784221/\tO\n\t\n\t\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndetect\tO\tdetect\tO\nif\tO\tif\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nplayback\tO\tplayback\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nwith\tO\twith\tO\nWin32\tB-Library\tWin32\tO\nAPI\tI-Library\tAPI\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\naudio\tO\taudio\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndetect\tO\tdetect\tO\nplayback\tO\tplayback\tO\nprocesses\tO\tprocesses\tO\nby\tO\tby\tO\n:\tO\t:\tO\n\t\nenumerate\tO\tenumerate\tO\nplayback\tO\tplayback\tO\ndevices\tO\tdevices\tO\nwith\tO\twith\tO\nMMDeviceEnumerator\tB-Library_Class\tMMDeviceEnumerator\tO\nand\tO\tand\tO\n,\tO\t,\tO\n\t\nfor\tO\tfor\tO\neach\tO\teach\tO\ndevice\tO\tdevice\tO\n,\tO\t,\tO\nenumerate\tO\tenumerate\tO\nsessions\tO\tsessions\tO\nwith\tO\twith\tO\nIaudiosessionManager\tB-Library_Class\tIaudiosessionManager\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsimilar\tO\tsimilar\tO\nthing\tO\tthing\tO\nfor\tO\tfor\tO\nvideo\tB-User_Interface_Element\tvideo\tO\nplayback\tO\tplayback\tO\n.\tO\t.\tO\n\t\nIdeally\tO\tIdeally\tO\n,\tO\t,\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nimpossible\tO\timpossible\tO\n,\tO\t,\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nspecific\tO\tspecific\tO\nframework\tO\tframework\tO\n(\tO\t(\tO\nDirectShow\tB-Library\tDirectShow\tO\n,\tO\t,\tO\nMedia\tB-Library\tMedia\tO\nFoundation\tI-Library\tFoundation\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nis\tO\tis\tO\nok\tO\tok\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10358109\tO\t10358109\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10358109/\tO\thttps://stackoverflow.com/questions/10358109/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\ntwitter\tB-Library\ttwitter\tO\nbootstrap\tI-Library\tbootstrap\tO\nand\tO\tand\tO\nin\tO\tin\tO\ncustom\tO\tcustom\tO\ncss\tB-Language\tcss\tO\nsaying\tO\tsaying\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_918\tI-Code_Block\tQ_918\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhen\tO\twhen\tO\nadded\tO\tadded\tO\n,\tO\t,\tO\nit\tO\tit\tO\nalways\tO\talways\tO\ndisplays\tO\tdisplays\tO\nvertical\tO\tvertical\tO\nscrollbar\tB-User_Interface_Element\tscrollbar\tO\n.\tO\t.\tO\n\t\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10358109\tO\t10358109\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10358109/\tO\thttps://stackoverflow.com/questions/10358109/\tO\n\t\n\t\nadd\tO\tadd\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncss\tB-Language\tcss\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1312\tI-Code_Block\tA_1312\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44413280\tO\t44413280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44413280/\tO\thttps://stackoverflow.com/questions/44413280/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nworking\tO\tworking\tO\n(\tO\t(\tO\nin\tO\tin\tO\nmacOS\tB-Operating_System\tmacOS\tO\napp\tO\tapp\tO\nPatterns\tO\tPatterns\tO\n)\tO\t)\tO\nRegExp\tO\tRegExp\tO\nthat\tO\tthat\tO\nreformats\tO\treformats\tO\nGeoJSON\tB-File_Type\tGeoJSON\tO\nMultiPolygon\tO\tMultiPolygon\tO\ncoordinates\tO\tcoordinates\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nescape\tO\tescape\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nsed\tB-Code_Block\tsed\tB-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfile\tO\tfile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nis\tO\tis\tO\nover\tO\tover\tO\n90\tO\t90\tO\nMb\tO\tMb\tO\nin\tO\tin\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\nso\tO\tso\tO\nbash\tB-Application\tbash\tO\nterminal\tI-Application\tterminal\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nideal\tO\tideal\tO\nplace\tO\tplace\tO\nand\tO\tand\tO\nsed\tB-Code_Block\tsed\tB-Code_Block\nthe\tO\tthe\tO\nperfect\tO\tperfect\tO\ntool\tO\ttool\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\n.\tO\t.\tO\n\t\nSearch\tO\tSearch\tO\nText\tO\tText\tO\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5770\tI-Code_Block\tQ_5770\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDesired\tO\tDesired\tO\noutcome\tO\toutcome\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5771\tI-Code_Block\tQ_5771\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\ncurrent\tO\tcurrent\tO\nRegExp\tO\tRegExp\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5772\tI-Code_Block\tQ_5772\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nreformatting\tO\treformatting\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5773\tI-Code_Block\tQ_5773\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncommand\tO\tcommand\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsomething\tO\tsomething\tO\nalong\tO\talong\tO\nthese\tO\tthese\tO\nlines\tO\tlines\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5774\tI-Code_Block\tQ_5774\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nwhat\tO\twhat\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nescaped\tO\tescaped\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nRegExp\tO\tRegExp\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nMy\tO\tMy\tO\nattempts\tO\tattempts\tO\nalways\tO\talways\tO\ncomplain\tO\tcomplain\tO\nof\tO\tof\tO\nbeing\tO\tbeing\tO\nunbalanced\tO\tunbalanced\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsorry\tO\tsorry\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nhas\tO\thas\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\nanswered\tO\tanswered\tO\nelsewhere\tO\telsewhere\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\neven\tO\teven\tO\nafter\tO\tafter\tO\nextensive\tO\textensive\tO\nsearching\tO\tsearching\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n2017-01-07\tO\t2017-01-07\tO\n:\tO\t:\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nclear\tO\tclear\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ncontains\tO\tcontains\tO\nproperties\tO\tproperties\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nGPS-points\tO\tGPS-points\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nexample\tO\texample\tO\nvalues\tO\tvalues\tO\npicked\tO\tpicked\tO\nfrom\tO\tfrom\tO\nGeoJSON\tB-File_Type\tGeoJSON\tO\nFeature\tO\tFeature\tO\nproperties\tO\tproperties\tO\nis\tO\tis\tO\n\"\tB-Value\t\"\tB-Code_Block\n35.642.1.001_001\tI-Value\t35.642.1.001_001\tI-Code_Block\n\"\tI-Value\t\"\tI-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nleft\tO\tleft\tO\nunchanged\tO\tunchanged\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbraces\tO\tbraces\tO\ncheck\tO\tcheck\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\noriginal\tO\toriginal\tO\nregex\tO\tregex\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nreason\tO\treason\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44413280\tO\t44413280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44413280/\tO\thttps://stackoverflow.com/questions/44413280/\tO\n\t\n\t\nThat\tO\tThat\tO\nregex\tO\tregex\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nlegal\tO\tlegal\tO\nin\tO\tin\tO\nsed\tB-Code_Block\tsed\tB-Code_Block\n;\tO\t;\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\nPerl\tB-Language\tPerl\tO\nsyntax\tO\tsyntax\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nrecommendation\tO\trecommendation\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nperl\tB-Language\tperl\tB-Code_Block\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\nworks\tO\tworks\tO\nexactly\tO\texactly\tO\nas-is\tO\tas-is\tO\n,\tO\t,\tO\nand\tO\tand\tO\neven\tO\teven\tO\nthe\tO\tthe\tO\ncommand\tB-Application\tcommand\tO\nline\tI-Application\tline\tO\nis\tO\tis\tO\nalmost\tO\talmost\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\n-p\tB-Code_Block\t-p\tB-Code_Block\noption\tO\toption\tO\nto\tO\tto\tO\nget\tO\tget\tO\nperl\tB-Language\tperl\tB-Code_Block\nto\tO\tto\tO\noperate\tO\toperate\tO\nin\tO\tin\tO\nfilter\tO\tfilter\tO\nmode\tO\tmode\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nsed\tB-Code_Block\tsed\tB-Code_Block\ndoes\tO\tdoes\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\nrecommend\tO\trecommend\tO\nadding\tO\tadding\tO\nan\tO\tan\tO\nargument\tO\targument\tO\nsuffix\tO\tsuffix\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n-i\tB-Code_Block\t-i\tB-Code_Block\noption\tO\toption\tO\n(\tO\t(\tO\nwhether\tO\twhether\tO\nusing\tO\tusing\tO\nsed\tB-Code_Block\tsed\tB-Code_Block\nor\tO\tor\tO\nperl\tB-Language\tperl\tB-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbackup\tO\tbackup\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nsomething\tO\tsomething\tO\ngoes\tO\tgoes\tO\nhorribly\tO\thorribly\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nquoting\tO\tquoting\tO\n,\tO\t,\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nsubstitution\tO\tsubstitution\tO\ncommand\tO\tcommand\tO\nin\tO\tin\tO\nsingle\tO\tsingle\tO\nquotation\tO\tquotation\tO\nmarks\tO\tmarks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6411\tI-Code_Block\tA_6411\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44413280\tO\t44413280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44413280/\tO\thttps://stackoverflow.com/questions/44413280/\tO\n\t\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\nsed\tB-Code_Block\tsed\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6414\tI-Code_Block\tA_6414\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44660718\tO\t44660718\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44660718/\tO\thttps://stackoverflow.com/questions/44660718/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\na\tO\ta\tO\nPython\tB-Language\tPython\tO\nscript\tO\tscript\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nregularly\tO\tregularly\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nPlatypus\tB-Library\tPlatypus\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nscript\tO\tscript\tO\nprompts\tO\tprompts\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nfor\tO\tfor\tO\ninput\tO\tinput\tO\nseveral\tO\tseveral\tO\ntimes\tO\ttimes\tO\nand\tO\tand\tO\nuses\tO\tuses\tO\nthat\tO\tthat\tO\ninput\tO\tinput\tO\nto\tO\tto\tO\nconstruct\tO\tconstruct\tO\na\tO\ta\tO\nURL\tO\tURL\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nused\tO\tused\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nAPI\tB-Library\tAPI\tO\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nused\tO\tused\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5803\tI-Code_Block\tQ_5803\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n(\tO\t(\tO\nand\tO\tand\tO\nstored\tO\tstored\tO\nas\tO\tas\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n)\tO\t)\tO\nis\tO\tis\tO\nthen\tO\tthen\tO\nused\tO\tused\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5804\tI-Code_Block\tQ_5804\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSince\tO\tSince\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\ncreated\tO\tcreated\tO\nusing\tO\tusing\tO\nPlatypus\tB-Library\tPlatypus\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nallow\tO\tallow\tO\nfor\tO\tfor\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n(\tO\t(\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nam\tO\tam\tO\nrequesting\tO\trequesting\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\nmy\tO\tmy\tO\nscript\tO\tscript\tO\n)\tO\t)\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nTkinter\tB-Library\tTkinter\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nread\tO\tread\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nand\tO\tand\tO\nam\tO\tam\tO\nconfused\tO\tconfused\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsyntax\tO\tsyntax\tO\n(\tO\t(\tO\nI\tO\tI\tO\nam\tO\tam\tO\nstill\tO\tstill\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nPython\tB-Language\tPython\tO\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\n,\tO\t,\tO\nor\tO\tor\tO\nshow\tO\tshow\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nmy\tO\tmy\tO\nrequest\tO\trequest\tO\nfor\tO\tfor\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n(\tO\t(\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nexample\tO\texample\tO\nabove\tO\tabove\tO\n)\tO\t)\tO\nusing\tO\tusing\tO\nTkinter\tB-Library\tTkinter\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nusing\tO\tusing\tO\nPython\tB-Language\tPython\tO\n2.7\tB-Version\t2.7\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44660718\tO\t44660718\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44660718/\tO\thttps://stackoverflow.com/questions/44660718/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nentry\tB-Library_Class\tentry\tB-Code_Block\nwidget\tO\twidget\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\nas\tO\tas\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\nID\tO\tID\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nhit\tO\thit\tO\nthe\tO\tthe\tO\nsubmit\tO\tsubmit\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nbutton\tB-User_Interface_Element\tbutton\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ntied\tO\ttied\tO\nto\tO\tto\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\nto\tO\tto\tO\nform\tO\tform\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6456\tI-Code_Block\tA_6456\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10948803\tO\t10948803\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10948803/\tO\thttps://stackoverflow.com/questions/10948803/\tO\n\t\n\t\nIn\tO\tIn\tO\nPHP\tB-Language\tPHP\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\na\tO\ta\tO\nuser\tO\tuser\tO\ntypes\tO\ttypes\tO\n:\tO\t:\tO\n\t\n[\tB-Code_Block\t[\tB-Code_Block\nLINK\tI-Code_Block\tLINK\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\nurl\tB-Code_Block\turl\tB-Code_Block\n[\tB-Code_Block\t[\tB-Code_Block\n/LINK\tI-Code_Block\t/LINK\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nreplace\tO\treplace\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nanchor\tB-HTML_XML_Tag\tanchor\tO\ntag\tO\ttag\tO\n:\tO\t:\tO\n\t\n<a\tB-Code_Block\t<a\tB-Code_Block\nhref=url>url</a>\tI-Code_Block\thref=url>url</a>\tI-Code_Block\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\nshow\tO\tshow\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ntranslate\tO\ttranslate\tO\nthis\tO\tthis\tO\ninto\tO\tinto\tO\nregex\tB-Library\tregex\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\n[\tB-Code_Block\t[\tB-Code_Block\nLINK\tI-Code_Block\tLINK\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n[\tB-Code_Block\t[\tB-Code_Block\na-zA-Z0-9_-.\tI-Code_Block\ta-zA-Z0-9_-.\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n+\tI-Code_Block\t+\tI-Code_Block\n[\tI-Code_Block\t[\tI-Code_Block\n/LINK\tI-Code_Block\t/LINK\tI-Code_Block\n]\tI-Code_Block\t]\tI-Code_Block\n\t\nBut\tO\tBut\tO\nobviously\tO\tobviously\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nright\tO\tright\tO\n:(\tO\t:(\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10948803\tO\t10948803\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10948803/\tO\thttps://stackoverflow.com/questions/10948803/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1389\tI-Code_Block\tA_1389\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExplanation\tO\tExplanation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1390\tI-Code_Block\tA_1390\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10948803\tO\t10948803\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10948803/\tO\thttps://stackoverflow.com/questions/10948803/\tO\n\t\n\t\nCatch\tO\tCatch\tO\nlinks\tO\tlinks\tO\nbut\tO\tbut\tO\nwould\tO\twould\tO\nalways\tO\talways\tO\nrequire\tO\trequire\tO\nleading\tO\tleading\tO\nhttp://\tO\thttp://\tO\nor\tO\tor\tO\nhttps://\tO\thttps://\tO\nelse\tO\telse\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nexample.com/google.com\tO\texample.com/google.com\tO\nalso\tO\talso\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\npreg_replace_callback()\tB-Library_Function\tpreg_replace_callback()\tO\nas\tO\tas\tO\nits\tO\tits\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nxss\tB-Library\txss\tO\nunsanitized\tO\tunsanitized\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nexamples\tO\texamples\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1391\tI-Code_Block\tA_1391\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\nStrip\tO\tStrip\tO\nthe\tO\tthe\tO\nhttp://\tO\thttp://\tO\n&\tO\t&\tO\nhttps://\tO\thttps://\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nthen\tO\tthen\tO\nappend\tO\tappend\tO\nit\tO\tit\tO\nwhen\tO\twhen\tO\noutputting\tO\toutputting\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1392\tI-Code_Block\tA_1392\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\nA\tO\tA\tO\ndifferent\tO\tdifferent\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nBB\tB-Language\tBB\tO\ncode\tI-Language\tcode\tO\nlinks\tO\tlinks\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nspecify\tO\tspecify\tO\nLink\tO\tLink\tO\nname\tO\tname\tO\nfrom\tO\tfrom\tO\nlink\tO\tlink\tO\naddress\tO\taddress\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nback\tO\tback\tO\nfunction\tO\tfunction\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nmultiple\tO\tmultiple\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\noutputs\tO\toutputs\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1393\tI-Code_Block\tA_1393\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37516509\tO\t37516509\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37516509/\tO\thttps://stackoverflow.com/questions/37516509/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntables\tB-Data_Structure\ttables\tO\n:\tO\t:\tO\n\t\nAnalyses\tB-Variable_Name\tAnalyses\tO\n,\tO\t,\tO\ncolumns(id\tB-Data_Structure\tcolumns(id\tB-Code_Block\n,\tO\t,\tI-Code_Block\nname\tB-Variable_Name\tname\tI-Code_Block\n,\tO\t,\tI-Code_Block\ngame_id(FK\tB-Variable_Name\tgame_id(FK\tI-Code_Block\n));\tI-Variable_Name\t));\tI-Code_Block\n\t\nGames\tB-Variable_Name\tGames\tO\n,\tO\t,\tO\ncolumns(id\tB-Data_Structure\tcolumns(id\tB-Code_Block\n,\tO\t,\tI-Code_Block\nname\tB-Variable_Name\tname\tI-Code_Block\n,\tO\t,\tI-Code_Block\nround_id(FK\tB-Variable_Name\tround_id(FK\tI-Code_Block\n));\tI-Variable_Name\t));\tI-Code_Block\n\t\nRound\tB-Variable_Name\tRound\tO\n,\tO\t,\tO\ncolumns(id,\tB-Data_Structure\tcolumns(id,\tB-Code_Block\nround)\tB-Variable_Name\tround)\tI-Code_Block\n;\tO\t;\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nget\tO\tget\tO\nall\tO\tall\tO\nrecords\tO\trecords\tO\nof\tO\tof\tO\nAnalyses\tB-Variable_Name\tAnalyses\tO\norder\tO\torder\tO\nby\tO\tby\tO\n(\tO\t(\tO\nround_id\tB-Variable_Name\tround_id\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntry\tO\ttry\tO\nAnalyses::orderBy('round_id')->get()\tB-Code_Block\tAnalyses::orderBy('round_id')->get()\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n;\tO\t;\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37516509\tO\t37516509\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37516509/\tO\thttps://stackoverflow.com/questions/37516509/\tO\n\t\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndont\tO\tdont\tO\nhave\tO\thave\tO\nthat\tO\tthat\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nanalyses\tO\tanalyses\tO\ntable\tB-Data_Structure\ttable\tO\n\t\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\norderby\tO\torderby\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nrelation\tO\trelation\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\ncorrectly\tO\tcorrectly\tO\ndone\tO\tdone\tO\n)\tO\t)\tO\n\t\nAnalyses\tO\tAnalyses\tO\nmodel\tO\tmodel\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5392\tI-Code_Block\tA_5392\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGames\tB-Variable_Name\tGames\tO\nmodel\tO\tmodel\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5393\tI-Code_Block\tA_5393\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nAnalyses\tB-Variable_Name\tAnalyses\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ngames\tO\tgames\tO\nand\tO\tand\tO\nround\tO\tround\tO\nusing\tO\tusing\tO\neagerloading\tO\teagerloading\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5394\tI-Code_Block\tA_5394\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchain\tO\tchain\tO\nanother\tO\tanother\tO\norderby\tO\torderby\tO\nfor\tO\tfor\tO\nAnalyses\tB-Variable_Name\tAnalyses\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nexemple\tO\texemple\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5395\tI-Code_Block\tA_5395\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexemple\tO\texemple\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nAnalyses\tO\tAnalyses\tO\nordered\tO\tordered\tO\nby\tO\tby\tO\ngame_id\tB-Variable_Name\tgame_id\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ngames\tO\tgames\tO\ninside\tO\tinside\tO\neach\tO\teach\tO\nAnalyse\tB-Variable_Name\tAnalyse\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\norderedby\tO\torderedby\tO\nround_id\tB-Variable_Name\tround_id\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37516509\tO\t37516509\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37516509/\tO\thttps://stackoverflow.com/questions/37516509/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5396\tI-Code_Block\tA_5396\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnalyses\tB-Variable_Name\tAnalyses\tO\nmodel\tO\tmodel\tO\n\t\nRound\tB-Variable_Name\tRound\tO\nModel\tO\tModel\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5397\tI-Code_Block\tA_5397\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nGame\tB-Variable_Name\tGame\tO\nModel\tO\tModel\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5398\tI-Code_Block\tA_5398\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYour\tO\tYour\tO\nQuery\tO\tQuery\tO\nShould\tO\tShould\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nThis\tO\tThis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5399\tI-Code_Block\tA_5399\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10662029\tO\t10662029\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10662029/\tO\thttps://stackoverflow.com/questions/10662029/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nreading\tO\treading\tO\nthe\tO\tthe\tO\nbook\tO\tbook\tO\nProgramming\tO\tProgramming\tB-Code_Block\nEntity\tO\tEntity\tI-Code_Block\nFramework\tO\tFramework\tI-Code_Block\n:\tO\t:\tI-Code_Block\nDbContext\tO\tDbContext\tI-Code_Block\nand\tO\tand\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nchapter\tO\tchapter\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nthree\tO\tthree\tO\ndata\tO\tdata\tO\nloading\tO\tloading\tO\ntypes\tO\ttypes\tO\n:\tO\t:\tO\n\t\nLazy\tB-Algorithm\tLazy\tO\nloading\tI-Algorithm\tloading\tO\n(\tO\t(\tO\ndefault\tO\tdefault\tO\n)\tO\t)\tO\n\t\nEager\tB-Algorithm\tEager\tO\nloading\tI-Algorithm\tloading\tO\n\t\nExplicit\tB-Algorithm\tExplicit\tO\nloading\tI-Algorithm\tloading\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nasking\tO\tasking\tO\nmyself\tO\tmyself\tO\nwhich\tO\twhich\tO\ndata\tO\tdata\tO\nloading\tO\tloading\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nsituation\tO\tsituation\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nconcrete\tO\tconcrete\tO\ncomparison\tO\tcomparison\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nfound\tO\tfound\tO\nany\tO\tany\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\ndefault\tO\tdefault\tO\nlazy\tB-Algorithm\tlazy\tO\nloading\tI-Algorithm\tloading\tO\non\tO\ton\tO\na\tO\ta\tO\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nclient\tB-Application\tclient\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmodule\tO\tmodule\tO\ndeals\tO\tdeals\tO\nwith\tO\twith\tO\nsales\tO\tsales\tO\nreps\tO\treps\tO\nand\tO\tand\tO\nimply\tO\timply\tO\nthese\tO\tthese\tO\nrelated\tO\trelated\tO\ntables\tO\ttables\tO\n:\tO\t:\tO\n\t\nReps\tB-Variable_Name\tReps\tO\n\t\nReps_Zones\tB-Variable_Name\tReps_Zones\tO\n\t\nReps_Prerequisites\tB-Variable_Name\tReps_Prerequisites\tO\n\t\nUsers\tB-Variable_Name\tUsers\tO\n\t\nReps_Languages\tB-Variable_Name\tReps_Languages\tO\n\t\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\n,\tO\t,\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nall\tO\tall\tO\nthese\tO\tthese\tO\ntables\tO\ttables\tO\nto\tO\tto\tO\ndispatch\tO\tdispatch\tO\nappointments\tO\tappointments\tO\n(\tO\t(\tO\nabout\tO\tabout\tO\n150\tO\t150\tO\nappointments\tO\tappointments\tO\nto\tO\tto\tO\n50\tO\t50\tO\nreps\tO\treps\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nslow\tO\tslow\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nloading\tO\tloading\tO\nstrategy\tO\tstrategy\tO\nreally\tO\treally\tO\nimprove\tO\timprove\tO\nthe\tO\tthe\tO\nperformances\tO\tperformances\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10662029\tO\t10662029\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10662029/\tO\thttps://stackoverflow.com/questions/10662029/\tO\n\t\n\t\nLazy-loading\tB-Algorithm\tLazy-loading\tO\nseems\tO\tseems\tO\nmost\tO\tmost\tO\nsuitable\tO\tsuitable\tO\nfor\tO\tfor\tO\nsmaller\tO\tsmaller\tO\napps\tO\tapps\tO\nwithout\tO\twithout\tO\nseparate\tO\tseparate\tO\ndata\tO\tdata\tO\nlayers\tO\tlayers\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\ngrows\tO\tgrows\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nseparating\tO\tseparating\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nseparate\tO\tseparate\tO\nlayers\tO\tlayers\tO\n,\tO\t,\tO\nlazy\tB-Algorithm\tlazy\tO\nloading\tI-Algorithm\tloading\tO\nbecomes\tO\tbecomes\tO\nless\tO\tless\tO\nuseful\tO\tuseful\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nDBcontext\tB-Library_Class\tDBcontext\tO\nhas\tO\thas\tO\nlong\tO\tlong\tO\nsince\tO\tsince\tO\nbeen\tO\tbeen\tO\ndestroyed\tO\tdestroyed\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ngets\tO\tgets\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nlayer\tO\tlayer\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ndatalayer\tO\tdatalayer\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nbig\tO\tbig\tO\ndeal\tO\tdeal\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nproperites\tO\tproperites\tO\nto\tO\tto\tO\nload\tO\tload\tO\n.\tO\t.\tO\n\t\nLazy\tB-Algorithm\tLazy\tO\nloading\tI-Algorithm\tloading\tO\nis\tO\tis\tO\nturned\tO\tturned\tO\noff\tO\toff\tO\nfor\tO\tfor\tO\nvalidation\tO\tvalidation\tO\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nmarked\tO\tmarked\tO\nas\tO\tas\tO\nrequired\tO\trequired\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nonly\tO\tonly\tO\nloaded\tO\tloaded\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\nthrown\tO\tthrown\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nfrustrating\tO\tfrustrating\tO\n.\tO\t.\tO\n\t\nLazy\tB-Algorithm\tLazy\tO\nloading\tI-Algorithm\tloading\tO\nalso\tO\talso\tO\nmakes\tO\tmakes\tO\ndebugging\tO\tdebugging\tO\nrather\tO\trather\tO\ntricky\tO\ttricky\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nisnt\tO\tisnt\tO\nexecuted\tO\texecuted\tO\nuntil\tO\tuntil\tO\nit\tO\tit\tO\nis\tO\tis\tO\nused\tO\tused\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nexamine\tO\texamine\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nas\tO\tas\tO\neasily\tO\teasily\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nusually\tO\tusually\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nToList()\tB-Library_Function\tToList()\tO\nor\tO\tor\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nEF\tO\tEF\tO\nqueries\tO\tqueries\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\nexamine\tO\texamine\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9304147\tO\t9304147\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9304147/\tO\thttps://stackoverflow.com/questions/9304147/\tO\n\t\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfacebook\tB-Website\tfacebook\tO\npage\tO\tpage\tO\ntabs\tB-User_Interface_Element\ttabs\tO\n.\tO\t.\tO\n\t\nLots\tO\tLots\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nare\tO\tare\tO\nrendering\tO\trendering\tO\ncontent\tO\tcontent\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tB-User_Interface_Element\tpage\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nchange\tO\tchange\tO\nthat\tO\tthat\tO\ndevelopers\tO\tdevelopers\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\naware\tO\taware\tO\nof\tO\tof\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9304147\tO\t9304147\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9304147/\tO\thttps://stackoverflow.com/questions/9304147/\tO\n\t\n\t\nProblem\tO\tProblem\tO\nstill\tO\tstill\tO\npersists\tO\tpersists\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nlisted\tO\tlisted\tO\non\tO\ton\tO\nFacebook\tB-Website\tFacebook\tO\nhttp://developers.facebook.com/bugs/298512163544012?browse=search_4f3c5c801a70d4639459595\tO\thttp://developers.facebook.com/bugs/298512163544012?browse=search_4f3c5c801a70d4639459595\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nprioritized\tO\tprioritized\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9304147\tO\t9304147\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9304147/\tO\thttps://stackoverflow.com/questions/9304147/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nin\tO\tin\tO\nfact\tO\tfact\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\njust\tO\tjust\tO\nspent\tO\tspent\tO\nan\tO\tan\tO\nhour\tO\thour\tO\nlooking\tO\tlooking\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nappears\tO\tappears\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nincreased\tO\tincreased\tO\nthe\tO\tthe\tO\nwidth\tO\twidth\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\npane\tB-User_Interface_Element\tpane\tO\nand\tO\tand\tO\nit\tO\tit\tO\nhas\tO\thas\tO\ncaused\tO\tcaused\tO\nthe\tO\tthe\tO\ncontent\tB-User_Interface_Element\tcontent\tO\narea\tI-User_Interface_Element\tarea\tO\nto\tO\tto\tO\nshrink\tO\tshrink\tO\nto\tO\tto\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n520px\tB-Value\t520px\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\niframe\tB-HTML_XML_Tag\tiframe\tO\nthat\tO\tthat\tO\nFacebook\tB-Organization\tFacebook\tO\nuses\tO\tuses\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\napp\tO\tapp\tO\ncontent\tO\tcontent\tO\nis\tO\tis\tO\nhardcoded\tO\thardcoded\tO\nwith\tO\twith\tO\na\tO\ta\tO\n520px\tB-Value\t520px\tO\nwidth\tO\twidth\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nNeed\tO\tNeed\tO\nto\tO\tto\tO\nwait\tO\twait\tO\ntill\tO\ttill\tO\nFacebook\tB-Organization\tFacebook\tO\npushes\tO\tpushes\tO\nout\tO\tout\tO\nan\tO\tan\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nBug\tO\tBug\tO\nreported\tO\treported\tO\nto\tO\tto\tO\nfacebook\tB-Organization\tfacebook\tO\nalready\tO\talready\tO\n.\tO\t.\tO\n\t\nDetails\tO\tDetails\tO\nhere\tO\there\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26677268\tO\t26677268\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26677268/\tO\thttps://stackoverflow.com/questions/26677268/\tO\n\t\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\nis\tO\tis\tO\nused\tO\tused\tO\nin\tO\tin\tO\nseparate\tO\tseparate\tO\nwindow\tB-User_Interface_Element\twindow\tO\nby\tO\tby\tO\nblue\tB-Application\tblue\tO\ngriffon\tI-Application\tgriffon\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\nsvg\tB-File_Type\tsvg\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26677268\tO\t26677268\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26677268/\tO\thttps://stackoverflow.com/questions/26677268/\tO\n\t\n\t\nIn\tO\tIn\tO\ntheory\tO\ttheory\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nopen\tO\topen\tO\nsvg-edit.html\tB-File_Name\tsvg-edit.html\tO\nand\tO\tand\tO\nremove\tO\tremove\tO\nany\tO\tany\tO\nhtml\tB-HTML_XML_Tag\thtml\tO\n,\tO\t,\tO\nhead\tB-HTML_XML_Tag\thead\tO\n,\tO\t,\tO\nand\tO\tand\tO\nbody\tB-HTML_XML_Tag\tbody\tO\ntags\tO\ttags\tO\nand\tO\tand\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\npage\tO\tpage\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nload\tO\tload\tO\njs/css\tB-Language\tjs/css\tO\nresources\tO\tresources\tO\non\tO\ton\tO\nyour\tO\tyour\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nplace\tO\tplace\tO\nit\tO\tit\tO\ninline\tO\tinline\tO\nthough\tO\tthough\tO\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nstill\tO\tstill\tO\ninteract\tO\tinteract\tO\nwith\tO\twith\tO\nSVG-Edit\tB-Application\tSVG-Edit\tO\neven\tO\teven\tO\nwhile\tO\twhile\tO\nit\tO\tit\tO\n's\tO\t's\tO\nin\tO\tin\tO\nan\tO\tan\tO\niframe\tB-HTML_XML_Tag\tiframe\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nSVG\tB-File_Type\tSVG\tO\ncontent\tO\tcontent\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nediting\tO\tediting\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4528\tI-Code_Block\tA_4528\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15375039\tO\t15375039\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15375039/\tO\thttps://stackoverflow.com/questions/15375039/\tO\n\t\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nset\tO\tset\tO\nto\tO\tto\tO\nListBoxItem\tB-Library_Class\tListBoxItem\tO\ndifferent\tO\tdifferent\tO\nshowing\tO\tshowing\tO\ntext\tO\ttext\tO\nand\tO\tand\tO\ndifferent\tO\tdifferent\tO\nhidden\tO\thidden\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nin\tO\tin\tO\nHTML\tB-Language\tHTML\tO\nthat\tO\tthat\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1499\tI-Code_Block\tQ_1499\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15375039\tO\t15375039\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15375039/\tO\thttps://stackoverflow.com/questions/15375039/\tO\n\t\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nthings\tO\tthings\tO\nwith\tO\twith\tO\nXAML\tB-Language\tXAML\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nset\tO\tset\tO\na\tO\ta\tO\nTag\tB-Library_Function\tTag\tB-Code_Block\nproperty\tO\tproperty\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nListBoxItem\tB-Library_Class\tListBoxItem\tB-Code_Block\nto\tO\tto\tO\nanything\tO\tanything\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncommon\tO\tcommon\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nMVVM\tO\tMVVM\tO\npattern\tO\tpattern\tO\nand\tO\tand\tO\nbindings\tO\tbindings\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nset\tO\tset\tO\nItemsSource\tB-Library_Function\tItemsSource\tB-Code_Block\nof\tO\tof\tO\nyour\tO\tyour\tO\nListBox\tB-Library_Class\tListBox\tB-Code_Block\nto\tO\tto\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nitems\tO\titems\tO\nand\tO\tand\tO\neach\tO\teach\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nitems\tO\titems\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nproperties\tO\tproperties\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nand\tO\tand\tO\nother\tO\tother\tO\nproperties\tO\tproperties\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nelsewhere\tO\telsewhere\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwould\tO\twould\tO\nbind\tO\tbind\tO\nthe\tO\tthe\tO\nvisible\tO\tvisible\tO\nproperties\tO\tproperties\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nItemTemplate\tB-Library_Function\tItemTemplate\tB-Code_Block\nof\tO\tof\tO\nyour\tO\tyour\tO\nListBox\tB-Library_Class\tListBox\tB-Code_Block\nand\tO\tand\tO\nbind\tO\tbind\tO\nSelectedItem\tB-Library_Function\tSelectedItem\tB-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\nListBox\tB-Library_Class\tListBox\tB-Code_Block\nwith\tO\twith\tO\na\tO\ta\tO\nTwoWay\tB-Library_Function\tTwoWay\tB-Code_Block\nbinding\tO\tbinding\tO\nto\tO\tto\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nview\tO\tview\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ncare\tO\tcare\tO\nabout\tO\tabout\tO\npatterns\tO\tpatterns\tO\nand\tO\tand\tO\nsimply\tO\tsimply\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\n-\tO\t-\tO\ngo\tO\tgo\tO\nahead\tO\tahead\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nTag\tB-Library_Function\tTag\tB-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nSelectionChanged\tB-Library_Function\tSelectionChanged\tB-Code_Block\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33803057\tO\t33803057\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33803057/\tO\thttps://stackoverflow.com/questions/33803057/\tO\n\t\n\t\nIn\tO\tIn\tO\nSafari\tB-Application\tSafari\tO\nthe\tO\tthe\tO\ncolors\tO\tcolors\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nshowing\tO\tshowing\tO\nup\tO\tup\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nIE\tB-Application\tIE\tO\n,\tO\t,\tO\nFF\tB-Application\tFF\tO\nand\tO\tand\tO\nChrome\tB-Application\tChrome\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\ncross-browser\tB-Application\tcross-browser\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4119\tI-Code_Block\tQ_4119\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4120\tI-Code_Block\tQ_4120\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nSafari\tB-Application\tSafari\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ncolors\tO\tcolors\tO\nfpr\tO\tfpr\tO\nmy\tO\tmy\tO\ncss\tB-Language\tcss\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nand\tO\tand\tO\nbackground\tB-User_Interface_Element\tbackground\tO\ncolor\tO\tcolor\tO\nand\tO\tand\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\nsolved\tO\tsolved\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nall\tO\tall\tO\nmajor\tO\tmajor\tO\nbrowsers\tB-Application\tbrowsers\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nreading\tO\treading\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n1\tO\t1\tO\nScreenshots\tO\tScreenshots\tO\n\t\nAs\tO\tAs\tO\nrequested\tO\trequested\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\n:\tO\t:\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\n2\tO\t2\tO\nscreenshots\tO\tscreenshots\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking.\tO\tworking.\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nblue\tO\tblue\tO\narrow\tB-User_Interface_Element\tarrow\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nand\tO\tand\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\njust\tO\tjust\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nincude\tO\tincude\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nSafari\tB-Application\tSafari\tO\nscreen\tO\tscreen\tO\ncapture\tO\tcapture\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbackground\tB-User_Interface_Element\tbackground\tO\ncolor\tO\tcolor\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncolor\tO\tcolor\tO\nused\tO\tused\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncss\tB-Language\tcss\tO\nbuttons\tB-User_Interface_Element\tbuttons\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nissue.\tO\tissue.\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npicture\tO\tpicture\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\na\tO\ta\tO\nfirefox\tB-Application\tfirefox\tO\n42\tB-Version\t42\tO\nscreen\tO\tscreen\tO\ncapture\tO\tcapture\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nMSIE\tB-Application\tMSIE\tO\nand\tO\tand\tO\nChrome\tB-Application\tChrome\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npicture\tO\tpicture\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\na\tO\ta\tO\nSafari\tB-Application\tSafari\tO\n5.1.7\tB-Version\t5.1.7\tO\nscreen\tO\tscreen\tO\ncapture\tO\tcapture\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33803057\tO\t33803057\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33803057/\tO\thttps://stackoverflow.com/questions/33803057/\tO\n\t\n\t\nFor\tO\tFor\tO\nolder\tO\tolder\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nSafari\tB-Application\tSafari\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n-webkit-linear-gradient(#FFF,#000)\tB-Code_Block\t-webkit-linear-gradient(#FFF,#000)\tB-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42487521\tO\t42487521\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42487521/\tO\thttps://stackoverflow.com/questions/42487521/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nvector\tB-Data_Structure\tvector\tO\nvariables\tO\tvariables\tO\nas\tO\tas\tO\nglobal\tB-Data_Type\tglobal\tO\nand\tO\tand\tO\nexterning\tO\texterning\tO\nit\tO\tit\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nin\tO\tin\tO\nanother\tO\tanother\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n\t\nHeader\tB-File_Type\tHeader\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5412\tI-Code_Block\tQ_5412\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nheader\tO\theader\tO\nfile\tO\tfile\tO\nhas\tO\thas\tO\nno\tO\tno\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvector\tB-Data_Structure\tvector\tO\nvariables\tO\tvariables\tO\n.\tO\t.\tO\n\t\nMain.cpp\tB-File_Name\tMain.cpp\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5413\tI-Code_Block\tQ_5413\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nfunctions.cpp\tB-File_Name\tfunctions.cpp\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5414\tI-Code_Block\tQ_5414\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5415\tI-Code_Block\tQ_5415\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nC++\tB-Language\tC++\tO\n,\tO\t,\tO\ncould\tO\tcould\tO\nanyone\tO\tanyone\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42487521\tO\t42487521\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42487521/\tO\thttps://stackoverflow.com/questions/42487521/\tO\n\t\n\t\nchange\tO\tchange\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6121\tI-Code_Block\tA_6121\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6122\tI-Code_Block\tA_6122\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbecause\tO\tbecause\tO\nextern\tB-Code_Block\textern\tB-Code_Block\nstd::vector<Point2f>\tI-Code_Block\tstd::vector<Point2f>\tI-Code_Block\nobj_corners(4)\tI-Code_Block\tobj_corners(4)\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\ndefinition\tO\tdefinition\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\nprovide\tO\tprovide\tO\nan\tO\tan\tO\ninitializer\tO\tinitializer\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\na\tO\ta\tO\ndeclaration\tO\tdeclaration\tO\njust\tO\tjust\tO\nto\tO\tto\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nvector\tB-Data_Structure\tvector\tO\nexists\tO\texists\tO\nsomewhere\tO\tsomewhere\tO\nelse\tO\telse\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27575753\tO\t27575753\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27575753/\tO\thttps://stackoverflow.com/questions/27575753/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncase\tO\tcase\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nan\tO\tan\tO\noptional\tB-Data_Type\toptional\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nEqual\tO\tEqual\tO\nto\tO\tto\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nunwrap\tO\tunwrap\tO\nit\tO\tit\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nit\tO\tit\tO\nexists\tO\texists\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nstring\tB-Data_Type\tstring\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nthat\tO\tthat\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncode\tO\tcode\tO\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3196\tI-Code_Block\tQ_3196\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nelse\tO\telse\tO\nstatement\tO\tstatement\tO\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nname\tB-Variable_Name\tname\tO\nexists\tO\texists\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\n'\tO\t'\tO\nJohn\tB-Value\tJohn\tO\n'\tO\t'\tO\n,\tO\t,\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\ntime\tO\ttime\tO\nfor\tO\tfor\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nname\tB-Variable_Name\tname\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27575753\tO\t27575753\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27575753/\tO\thttps://stackoverflow.com/questions/27575753/\tO\n\t\n\t\nOptional\tB-Data_Type\tOptional\tB-Code_Block\nhas\tO\thas\tO\nan\tO\tan\tO\n==\tB-Code_Block\t==\tB-Code_Block\noperator\tO\toperator\tO\ndefined\tO\tdefined\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSwift\tB-Language\tSwift\tO\nstandard\tO\tstandard\tO\nlibrary\tO\tlibrary\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3825\tI-Code_Block\tA_3825\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThat\tO\tThat\tO\nmeans\tO\tmeans\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\noptional\tB-Data_Type\toptional\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nequatable\tO\tequatable\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncompare\tO\tcompare\tO\ntwo\tO\ttwo\tO\noptionals\tB-Data_Type\toptionals\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\noptionals\tB-Data_Type\toptionals\tO\nare\tO\tare\tO\nboth\tO\tboth\tO\nnil\tO\tnil\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\nequal\tO\tequal\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\noptionals\tB-Data_Type\toptionals\tO\nwrap\tO\twrap\tO\nvalues\tO\tvalues\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nequal\tO\tequal\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\nequal\tO\tequal\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ncare\tO\tcare\tO\nabout\tO\tabout\tO\nwhether\tO\twhether\tO\nperson.name\tB-Variable_Name\tperson.name\tB-Code_Block\nis\tO\tis\tO\nnil\tB-Value\tnil\tB-Code_Block\nor\tO\tor\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n\"\tB-Value\t\"\tO\nJohn\tI-Value\tJohn\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\nwrite\tO\twrite\tO\nif\tB-Code_Block\tif\tB-Code_Block\nperson.name\tI-Code_Block\tperson.name\tI-Code_Block\n==\tI-Code_Block\t==\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nJohn\tI-Code_Block\tJohn\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\n\"\tB-Value\t\"\tO\nJohn\tI-Value\tJohn\tO\n\"\tI-Value\t\"\tO\nis\tO\tis\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tB-Code_Block\nnot\tO\tnot\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tB-Code_Block\n?\tO\t?\tI-Code_Block\n?\tO\t?\tO\n\t\n*\tO\t*\tO\nBecause\tO\tBecause\tO\nSwift\tB-Language\tSwift\tO\nwill\tO\twill\tO\nimplicitly\tO\timplicitly\tO\nconvert\tO\tconvert\tO\nany\tO\tany\tO\ntype\tO\ttype\tO\nto\tO\tto\tO\nan\tO\tan\tO\noptional\tB-Data_Type\toptional\tO\nwrapping\tO\twrapping\tO\nthat\tO\tthat\tO\ntype\tO\ttype\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nan\tO\tan\tO\nargument\tO\targument\tO\nrequires\tO\trequires\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\n==\tB-Code_Block\t==\tB-Code_Block\nfunction\tO\tfunction\tO\nfor\tO\tfor\tO\ncomparing\tO\tcomparing\tO\noptionals\tB-Data_Type\toptionals\tO\nrequires\tO\trequires\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tB-Code_Block\n?\tI-Data_Type\t?\tI-Code_Block\nargument\tO\targument\tO\n,\tO\t,\tO\n\"\tB-Value\t\"\tO\nJohn\tI-Value\tJohn\tO\n\"\tI-Value\t\"\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nimplicitly\tO\timplicitly\tO\nconverted\tO\tconverted\tO\nto\tO\tto\tO\n{\tB-Code_Block\t{\tB-Code_Block\nSome\tI-Code_Block\tSome\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\nJohn\tI-Code_Block\tJohn\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n}\tI-Code_Block\t}\tI-Code_Block\n,\tO\t,\tO\nallowing\tO\tallowing\tO\nthe\tO\tthe\tO\n==\tB-Code_Block\t==\tB-Code_Block\noperator\tO\toperator\tO\nbetween\tO\tbetween\tO\ntwo\tO\ttwo\tO\noptionals\tB-Data_Type\toptionals\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\n*\tO\t*\tO\nwell\tO\twell\tO\nactually\tO\tactually\tO\n\"\tB-Value\t\"\tO\nJohn\tI-Value\tJohn\tO\n\"\tI-Value\t\"\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tB-Code_Block\neither\tO\teither\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nstring\tB-Data_Type\tstring\tO\nliteral\tO\tliteral\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ngetting\tO\tgetting\tO\nconverted\tO\tconverted\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nString\tB-Data_Type\tString\tB-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27575753\tO\t27575753\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27575753/\tO\thttps://stackoverflow.com/questions/27575753/\tO\n\t\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntesting\tO\ttesting\tO\nfor\tO\tfor\tO\nthree\tO\tthree\tO\ndifferent\tO\tdifferent\tO\nconditions\tO\tconditions\tO\n,\tO\t,\tO\ncorrect\tO\tcorrect\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nincorrect\tO\tincorrect\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nor\tO\tor\tO\nno\tO\tno\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nduplication\tO\tduplication\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nminimized\tO\tminimized\tO\nby\tO\tby\tO\nextracting\tO\textracting\tO\nthe\tO\tthe\tO\nduplication\tO\tduplication\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3823\tI-Code_Block\tA_3823\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14108003\tO\t14108003\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14108003/\tO\thttps://stackoverflow.com/questions/14108003/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nconfigured\tO\tconfigured\tO\ndatabase\tO\tdatabase\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ntable\tO\ttable\tO\nhello\tB-Variable_Name\thello\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\ncalled\tO\tcalled\tO\ngenes\tB-Variable_Name\tgenes\tB-Code_Block\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\nfrom\tO\tfrom\tO\nbooks.models\tB-Code_Block\tbooks.models\tB-Code_Block\nimport\tI-Code_Block\timport\tI-Code_Block\nhello\tI-Code_Block\thello\tI-Code_Block\nas\tO\tas\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nhello\tB-Variable_Name\thello\tO\nin\tO\tin\tO\nmodels.py\tB-File_Name\tmodels.py\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndatabase\tO\tdatabase\tO\ngenes\tB-Variable_Name\tgenes\tO\nand\tO\tand\tO\ntable\tO\ttable\tO\nhello\tB-Variable_Name\thello\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nDjango\tB-Library\tDjango\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\ndatabases\tO\tdatabases\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nsetup\tO\tsetup\tO\nRouter\tB-Class_Name\tRouter\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nnow\tO\tnow\tO\naccess\tO\taccess\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14108003\tO\t14108003\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14108003/\tO\thttps://stackoverflow.com/questions/14108003/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nthings.\tO\tthings.\tO\n.\tO\t.\tO\n\t\nsettings.py\tB-File_Name\tsettings.py\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1793\tI-Code_Block\tA_1793\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nrouters.py\tB-File_Name\trouters.py\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1794\tI-Code_Block\tA_1794\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOne\tO\tOne\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nmodels.py\tB-File_Name\tmodels.py\tO\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n\t\nmodels.py\tB-File_Name\tmodels.py\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1795\tI-Code_Block\tA_1795\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nprogmatically.\tO\tprogmatically.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1796\tI-Code_Block\tA_1796\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOnce\tO\tOnce\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nQuery\tB-Library_Class\tQuery\tO\nusing\tO\tusing\tO\nstandard\tO\tstandard\tO\nDjango\tB-Library\tDjango\tO\nquerysets\tB-Library_Class\tquerysets\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1797\tI-Code_Block\tA_1797\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42567341\tO\t42567341\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42567341/\tO\thttps://stackoverflow.com/questions/42567341/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nask\tO\task\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nset\tO\tset\tO\nheight\tB-Variable_Name\theight\tO\non\tO\ton\tO\nall\tO\tall\tO\nimages\tB-User_Interface_Element\timages\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\non\tO\ton\tO\nspecific\tO\tspecific\tO\nlist\tB-User_Interface_Element\tlist\tO\nand\tO\tand\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nHTML\tB-Language\tHTML\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5424\tI-Code_Block\tQ_5424\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nworking\tO\tworking\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5425\tI-Code_Block\tQ_5425\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nheight\tB-Variable_Name\theight\tO\n:\tO\t:\tO\n10px\tB-Value\t10px\tO\n!\tO\t!\tO\nimportant\tO\timportant\tO\n;\tO\t;\tO\n\t\n}\tO\t}\tO\n\t\nWhere\tO\tWhere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nCSS\tB-Language\tCSS\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nit\tO\tit\tO\nproperly\tO\tproperly\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nheight\tB-Variable_Name\theight\tO\non\tO\ton\tO\nall\tO\tall\tO\nimages\tB-User_Interface_Element\timages\tO\nwith\tO\twith\tO\nclass\tO\tclass\tO\nproduct-category\tB-Class_Name\tproduct-category\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nhelp\tO\thelp\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nsmall\tO\tsmall\tO\nimprovement\tO\timprovement\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nnice\tO\tnice\tO\nday\tO\tday\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42567341\tO\t42567341\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42567341/\tO\thttps://stackoverflow.com/questions/42567341/\tO\n\t\n\t\nli.product-category\tB-Code_Block\tli.product-category\tB-Code_Block\nproduct>img\tI-Code_Block\tproduct>img\tI-Code_Block\nselects\tO\tselects\tO\nall\tO\tall\tO\nimages\tB-User_Interface_Element\timages\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ndirect\tO\tdirect\tO\nchildren\tO\tchildren\tO\nof\tO\tof\tO\nelements\tO\telements\tO\n<product>\tB-HTML_XML_Tag\t<product>\tB-Code_Block\ninside\tO\tinside\tO\nli-s\tB-HTML_XML_Tag\tli-s\tB-Code_Block\nwith\tO\twith\tO\n'\tO\t'\tO\nproduct-category\tB-Class_Name\tproduct-category\tO\n'\tO\t'\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nweird\tO\tweird\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nli.product-category\tB-Code_Block\tli.product-category\tB-Code_Block\nimg\tI-Code_Block\timg\tI-Code_Block\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42567341\tO\t42567341\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42567341/\tO\thttps://stackoverflow.com/questions/42567341/\tO\n\t\n\t\nThe\tO\tThe\tO\n\"\tO\t\"\tO\n>\tO\t>\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nCSS\tB-Language\tCSS\tO\nselector\tO\tselector\tO\nmeans\tO\tmeans\tO\nimmediate\tO\timmediate\tO\nchild\tO\tchild\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\ning\tO\ting\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nan\tO\tan\tO\na\tO\ta\tO\ntag\tO\ttag\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nchanged\tO\tchanged\tO\nit\tO\tit\tO\nto\tO\tto\tO\nheight\tB-Library_Variable\theight\tO\n,\tO\t,\tO\naccording\tO\taccording\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6136\tI-Code_Block\tA_6136\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nor\tO\tor\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nany\tO\tany\tO\n<img>\tB-HTML_XML_Tag\t<img>\tB-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6137\tI-Code_Block\tA_6137\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25643159\tO\t25643159\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25643159/\tO\thttps://stackoverflow.com/questions/25643159/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2914\tI-Code_Block\tQ_2914\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nclass\tO\tclass\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\na\tO\ta\tO\nhomePage\tB-User_Interface_Element\thomePage\tO\nframe\tB-Library_Class\tframe\tO\nwhich\tO\twhich\tO\ncalls\tO\tcalls\tO\nanother\tO\tanother\tO\nclass\tO\tclass\tO\ncalled\tO\tcalled\tO\nProgressSample\tB-Class_Name\tProgressSample\tO\nwhich\tO\twhich\tO\nwrites\tO\twrites\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noutput\tB-Library_Class\toutput\tO\nstream\tI-Library_Class\tstream\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nupdates\tO\tupdates\tO\nthe\tO\tthe\tO\nprogress\tO\tprogress\tO\nbar\tO\tbar\tO\nsimultaneously\tO\tsimultaneously\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2915\tI-Code_Block\tQ_2915\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nclass\tO\tclass\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nwhen\tO\twhen\tO\ni\tO\ti\tO\ncall\tO\tcall\tO\nits\tO\tits\tO\nmain(......)\tB-Function_Name\tmain(......)\tO\nmethod\tO\tmethod\tO\njust\tO\tjust\tO\na\tO\ta\tO\nframe\tB-Class_Name\tframe\tO\nwith\tO\twith\tO\nwhite\tO\twhite\tO\ncolor\tO\tcolor\tO\non\tO\ton\tO\nit\tO\tit\tO\nappears\tO\tappears\tO\nnothing\tO\tnothing\tO\nis\tO\tis\tO\nadded\tO\tadded\tO\non\tO\ton\tO\nit\tO\tit\tO\nplz\tO\tplz\tO\nplz\tO\tplz\tO\nplz\tO\tplz\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwith\tO\twith\tO\nur\tO\tur\tO\nsuggestions\tO\tsuggestions\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2916\tI-Code_Block\tQ_2916\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30652409\tO\t30652409\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30652409/\tO\thttps://stackoverflow.com/questions/30652409/\tO\n\t\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nfoo.bar\tB-Variable_Name\tfoo.bar\tO\ncalling\tO\tcalling\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ninstance\tO\tinstance\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nseen\tO\tseen\tO\nit\tO\tit\tO\naround\tO\taround\tO\non\tO\ton\tO\ntutorials\tO\ttutorials\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnever\tO\tnever\tO\nexplained\tO\texplained\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\ntoo\tO\ttoo\tO\ngeneral\tO\tgeneral\tO\na\tO\ta\tO\nterm\tO\tterm\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\non\tO\ton\tO\ngoogle\tB-Website\tgoogle\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30652409\tO\t30652409\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30652409/\tO\thttps://stackoverflow.com/questions/30652409/\tO\n\t\n\t\nOperator\tO\tOperator\tO\noperator->\tB-Code_Block\toperator->\tB-Code_Block\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\non\tO\ton\tO\na\tO\ta\tO\npointer\tB-Data_Type\tpointer\tO\ntype\tO\ttype\tO\n(\tO\t(\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ncase\tO\tcase\tO\nfoo->bar\tB-Code_Block\tfoo->bar\tB-Code_Block\nis\tO\tis\tO\nequivalent\tO\tequivalent\tO\nto\tO\tto\tO\n(\tB-Code_Block\t(\tB-Code_Block\n*\tI-Code_Block\t*\tI-Code_Block\nptr\tI-Code_Block\tptr\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n.bar\tB-Code_Block\t.bar\tB-Code_Block\n)\tO\t)\tO\nor\tO\tor\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nthat\tO\tthat\tO\noverloads\tO\toverloads\tO\noperator->\tB-Code_Block\toperator->\tB-Code_Block\n(\tO\t(\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\nsemantic\tO\tsemantic\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\noverload\tO\toverload\tO\nitself\tO\titself\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nwith\tO\twith\tO\na\tO\ta\tO\npointer\tB-Data_Type\tpointer\tO\ntype\tO\ttype\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4361\tI-Code_Block\tA_4361\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\noverloaded\tO\toverloaded\tO\ntype\tO\ttype\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4362\tI-Code_Block\tA_4362\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30652409\tO\t30652409\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30652409/\tO\thttps://stackoverflow.com/questions/30652409/\tO\n\t\n\t\nfoo->bar\tB-Code_Block\tfoo->bar\tO\nis\tO\tis\tO\nused\tO\tused\tO\nwhen\tO\twhen\tO\nfoo\tB-Variable_Name\tfoo\tO\nis\tO\tis\tO\npointing\tO\tpointing\tO\nto\tO\tto\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\ndata\tO\tdata\tO\ntype\tO\ttype\tO\n\t\nfoo.bar\tB-Code_Block\tfoo.bar\tO\nis\tO\tis\tO\nused\tO\tused\tO\nwhen\tO\twhen\tO\nfoo\tB-Class_Name\tfoo\tO\nis\tO\tis\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nof\tO\tof\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17403464\tO\t17403464\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17403464/\tO\thttps://stackoverflow.com/questions/17403464/\tO\n\t\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nService\tB-Library_Class\tService\tO\nObject\tO\tObject\tO\ncalled\tO\tcalled\tO\nTransaction\tB-Class_Name\tTransaction\tO\nwhich\tO\twhich\tO\nprocesses\tO\tprocesses\tO\nan\tO\tan\tO\norder\tO\torder\tO\nmade\tO\tmade\tO\n,\tO\t,\tO\nsets\tO\tsets\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\npayments\tO\tpayments\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsets\tO\tsets\tO\nup\tO\tup\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nassociation\tO\tassociation\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nTransaction\tB-Class_Name\tTransaction\tO\nwith\tO\twith\tO\ntwo\tO\ttwo\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\ninitialize\tB-Function_Name\tinitialize\tB-Code_Block\nand\tO\tand\tO\npay\tB-Function_Name\tpay\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntesting\tO\ttesting\tO\nit\tO\tit\tO\nin\tO\tin\tO\nspec/services/\tB-Code_Block\tspec/services/\tB-Code_Block\n(\tO\t(\tO\nit\tO\tit\tO\nis\tO\tis\tO\nin\tO\tin\tO\napp/services\tB-Code_Block\tapp/services\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ninitialize\tB-Function_Name\tinitialize\tB-Code_Block\nmethod\tO\tmethod\tO\ntakes\tO\ttakes\tO\nin\tO\tin\tO\nan\tO\tan\tO\naccount\tB-Variable_Name\taccount\tB-Code_Block\nand\tO\tand\tO\nsome\tO\tsome\tO\nparameters\tO\tparameters\tO\npassed\tO\tpassed\tO\nin\tO\tin\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\npay\tB-Function_Name\tpay\tB-Code_Block\nwith\tO\twith\tO\nrspec\tB-Application\trspec\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nactually\tO\tactually\tO\ndo\tO\tdo\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\ntest\tO\ttest\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nfunction\tO\tfunction\tO\nhas\tO\thas\tO\na\tO\ta\tO\nlot\tO\tlot\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncreates\tO\tcreates\tO\nnew\tO\tnew\tO\nmodels\tO\tmodels\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsets\tO\tsets\tO\nup\tO\tup\tO\nsome\tO\tsome\tO\nassociations\tO\tassociations\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\ndouble\tB-Data_Type\tdouble\tO\naccount\tB-Variable_Name\taccount\tB-Code_Block\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\n@account\tB-Code_Block\t@account\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\ndouble\tI-Code_Block\tdouble\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\n\"\tB-Code_Block\t\"\tB-Code_Block\naccount\tI-Code_Block\taccount\tI-Code_Block\n\"\tI-Code_Block\t\"\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n:confirmed\tI-Code_Block\t:confirmed\tI-Code_Block\n=>\tI-Code_Block\t=>\tI-Code_Block\ntrue\tI-Code_Block\ttrue\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n:confirmed\tI-Code_Block\t:confirmed\tI-Code_Block\n?\tI-Code_Block\t?\tI-Code_Block\n=>\tI-Code_Block\t=>\tI-Code_Block\ntrue\tI-Code_Block\ttrue\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nfunctions\tO\tfunctions\tO\n(\tO\t(\tO\nand\tO\tand\tO\nassociations\tO\tassociations\tO\n)\tO\t)\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nTransaction\tB-Class_Name\tTransaction\tO\npay\tB-Function_Name\tpay\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nwhen\tO\twhen\tO\nthese\tO\tthese\tO\nassociations\tO\tassociations\tO\nare\tO\tare\tO\ncalled\tO\tcalled\tO\n(\tO\t(\tO\nonce\tO\tonce\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nTransaction.pay\tB-Function_Name\tTransaction.pay\tB-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\n)\tO\t)\tO\n,\tO\t,\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1769\tI-Code_Block\tQ_1769\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nbusiness\tB-Variable_Name\tbusiness\tB-Code_Block\nmodel\tO\tmodel\tO\nis\tO\tis\tO\na\tO\ta\tO\ndouble\tB-Data_Type\tdouble\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\naccount\tB-Variable_Name\taccount\tB-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nadded\tO\tadded\tO\nas\tO\tas\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\nto\tO\tto\tO\n@account\tB-Variable_Name\t@account\tB-Code_Block\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ntest\tO\ttest\tO\nmy\tO\tmy\tO\nTransaction.pay\tB-Function_Name\tTransaction.pay\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncreates\tO\tcreates\tO\nnew\tO\tnew\tO\nmodels\tO\tmodels\tO\nand\tO\tand\tO\nassociations\tO\tassociations\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\n?\tO\t?\tO\n\t\nDo\tO\tDo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmock\tO\tmock\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\nshown\tO\tshown\tO\nabove\tO\tabove\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nFactoryGirl\tB-Application\tFactoryGirl\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nas\tO\tas\tO\nmy\tO\tmy\tO\naccount\tB-Variable_Name\taccount\tB-Code_Block\nmodel\tO\tmodel\tO\nuses\tO\tuses\tO\nDevise\tB-Application\tDevise\tO\n.\tO\t.\tO\n\t\nDevise\tB-Application\tDevise\tO\ntest\tO\ttest\tO\nhelpers\tO\thelpers\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\ncontrollers\tO\tcontrollers\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntesting\tO\ttesting\tO\nin\tO\tin\tO\nservices\tO\tservices\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17403464\tO\t17403464\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17403464/\tO\thttps://stackoverflow.com/questions/17403464/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nspecific\tO\tspecific\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nnot\tO\tnot\tO\nprovided\tO\tprovided\tO\nyour\tO\tyour\tO\nTransaction\tB-Class_Name\tTransaction\tO\nclass\tO\tclass\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nat\tO\tat\tO\na\tO\ta\tO\nhigh\tO\thigh\tO\nlevel\tO\tlevel\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nrecommend\tO\trecommend\tO\n:\tO\t:\tO\n\t\nDo\tO\tDo\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\nFactoryGirl\tB-Application\tFactoryGirl\tO\nor\tO\tor\tO\nDevise\tB-Application\tDevise\tO\nhelpers\tO\thelpers\tO\n-\tO\t-\tO\nideally\tO\tideally\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nunit\tO\tunit\tO\ntest\tO\ttest\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nany\tO\tany\tO\nexternal\tO\texternal\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nStub\tO\tStub\tO\nout\tO\tout\tO\nany\tO\tany\tO\nmodel\tO\tmodel\tO\ninstances\tO\tinstances\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndealing\tO\tdealing\tO\nwith\tO\twith\tO\n-\tO\t-\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\naccount\tB-Variable_Name\taccount\tB-Code_Block\n.\tO\t.\tO\n\t\nStub\tO\tStub\tO\nout\tO\tout\tO\nany\tO\tany\tO\nexternal\tO\texternal\tO\nclasses\tO\tclasses\tO\nbeing\tO\tbeing\tO\nused\tO\tused\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\n(\tO\t(\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nBusiness\tB-Variable_Name\tBusiness\tB-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ncreating\tO\tcreating\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nclasses\tO\tclasses\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\ndoubles\tB-Data_Type\tdoubles\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nvague\tO\tvague\tO\nexample\tO\texample\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nreal\tO\treal\tO\nimplementation\tO\timplementation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2289\tI-Code_Block\tA_2289\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nnote\tO\tnote\tO\nI\tO\tI\tO\n've\tO\t've\tO\nonly\tO\tonly\tO\nrequired\tO\trequired\tO\nthe\tO\tthe\tO\ntransaction\tB-File_Name\ttransaction\tO\nfile\tO\tfile\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\nyou\tO\tyou\tO\nbe\tO\tbe\tO\naware\tO\taware\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nother\tO\tother\tO\nclasses\tO\tclasses\tO\nit\tO\tit\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\n(\tO\t(\tO\nideally\tO\tideally\tO\n)\tO\t)\tO\nstub\tO\tstub\tO\nthe\tO\tthe\tO\nconstants\tO\tconstants\tO\n,\tO\t,\tO\nor\tO\tor\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\n,\tO\t,\tO\nrequire\tO\trequire\tO\nother\tO\tother\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n'll\tO\t'll\tO\nkeep\tO\tkeep\tO\nthis\tO\tthis\tO\nspec\tO\tspec\tO\n's\tO\t's\tO\nrunning\tO\trunning\tO\ntime\tO\ttime\tO\nmuch\tO\tmuch\tO\nbetter\tO\tbetter\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nstubbed\tO\tstubbed\tO\nconfirmed\tB-Variable_Name\tconfirmed\tB-Code_Block\n?\tI-Variable_Name\t?\tI-Code_Block\n,\tO\t,\tO\nnot\tO\tnot\tO\nconfirmed\tB-Variable_Name\tconfirmed\tB-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\naccount\tB-Variable_Name\taccount\tO\ndouble\tB-Data_Type\tdouble\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\na\tO\ta\tO\nRails\tB-Library\tRails\tO\nperspective\tO\tperspective\tO\nthey\tO\tthey\tO\nmean\tO\tmean\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\none\tO\tone\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nconsistently\tO\tconsistently\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nboth\tO\tboth\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nton\tO\tton\tO\nof\tO\tof\tO\nsetup\tO\tsetup\tO\n(\tO\t(\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nconstants\tO\tconstants\tO\nand\tO\tand\tO\ntest\tO\ttest\tO\ndoubles\tB-Data_Type\tdoubles\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ntake\tO\ttake\tO\nthat\tO\tthat\tO\nas\tO\tas\tO\na\tO\ta\tO\nsign\tO\tsign\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nTransaction\tB-Class_Name\tTransaction\tO\nclass\tO\tclass\tO\nprobably\tO\tprobably\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nbroken\tO\tbroken\tO\nup\tO\tup\tO\ninto\tO\tinto\tO\nseveral\tO\tseveral\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16778041\tO\t16778041\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16778041/\tO\thttps://stackoverflow.com/questions/16778041/\tO\n\t\n\t\nMy\tO\tMy\tO\nsql\tB-Language\tsql\tO\nschema\tO\tschema\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nsqlfiddle\tB-Application\tsqlfiddle\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nShow\tO\tShow\tO\nthe\tO\tthe\tO\nTransactionID\tB-Variable_Name\tTransactionID\tO\n,\tO\t,\tO\nDoctorID\tB-Variable_Name\tDoctorID\tO\n,\tO\t,\tO\nPatientID\tB-Variable_Name\tPatientID\tO\n,\tO\t,\tO\nand\tO\tand\tO\nTotalMedicine\tB-Variable_Name\tTotalMedicine\tO\n(\tO\t(\tO\nobtained\tO\tobtained\tO\nfrom\tO\tfrom\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nMedicineID\tB-Variable_Name\tMedicineID\tO\non\tO\ton\tO\neach\tO\teach\tO\ntransaction\tO\ttransaction\tO\n)\tO\t)\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\n3\tO\t3\tO\ndigits\tO\tdigits\tO\nnumbers\tO\tnumbers\tO\nof\tO\tof\tO\nPatientID\tB-Variable_Name\tPatientID\tO\nare\tO\tare\tO\nmultiples\tO\tmultiples\tO\nof\tO\tof\tO\n4\tO\t4\tO\n.\tO\t.\tO\n\t\nSort\tO\tSort\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nascending\tO\tascending\tO\nby\tO\tby\tO\nDoctorID\tB-Variable_Name\tDoctorID\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncount\tO\tcount\tO\nthe\tO\tthe\tO\nTotalMedicine\tB-Variable_Name\tTotalMedicine\tO\nthe\tO\tthe\tO\nlargest\tO\tlargest\tO\n,\tO\t,\tO\nsmallest\tO\tsmallest\tO\nand\tO\tand\tO\naverage\tO\taverage\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nDoctor\tB-Variable_Name\tDoctor\tO\nID\tI-Variable_Name\tID\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_1686\tI-Code_Block\tQ_1686\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbut\tO\tbut\tO\nit\tO\tit\tO\ndidnot\tO\tdidnot\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\n3\tO\t3\tO\ndigit\tO\tdigit\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nPatientID\tB-Variable_Name\tPatientID\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nmultiplies\tO\tmultiplies\tO\nof\tO\tof\tO\n4.\tO\t4.\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16778041\tO\t16778041\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16778041/\tO\thttps://stackoverflow.com/questions/16778041/\tO\n\t\n\t\nAdd\tO\tAdd\tO\nWhere\tB-Code_Block\tWhere\tB-Code_Block\nCast(Substring(PatientId\tI-Code_Block\tCast(Substring(PatientId\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nLen(PatientId\tI-Code_Block\tLen(PatientId\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n-\tI-Code_Block\t-\tI-Code_Block\n2\tI-Code_Block\t2\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\n3\tI-Code_Block\t3\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\nas\tI-Code_Block\tas\tI-Code_Block\nInteger\tI-Code_Block\tInteger\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n%\tI-Code_Block\t%\tI-Code_Block\n4\tI-Code_Block\t4\tI-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\n0\tI-Code_Block\t0\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2179\tI-Code_Block\tA_2179\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16778041\tO\t16778041\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16778041/\tO\thttps://stackoverflow.com/questions/16778041/\tO\n\t\n\t\nAssuming\tO\tAssuming\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\nschema\tO\tschema\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\ntableHeader\tO\ttableHeader\tB-Code_Block\na\tO\ta\tO\nvarchar\tB-Data_Type\tvarchar\tB-Code_Block\ndata\tO\tdata\tO\ntype\tO\ttype\tO\n,\tO\t,\tO\nor\tO\tor\tO\na\tO\ta\tO\nchar(5)\tB-Data_Type\tchar(5)\tB-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\naccount\tO\taccount\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nspaces\tO\tspaces\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncolumn\tB-Data_Structure\tcolumn\tO\n.\tO\t.\tO\n\t\nRTRIM\tB-Code_Block\tRTRIM\tO\nwill\tO\twill\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2180\tI-Code_Block\tA_2180\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3989100\tO\t3989100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3989100/\tO\thttps://stackoverflow.com/questions/3989100/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n$\tB-Code_Block\t$\tO\nthis->forward404\tI-Code_Block\tthis->forward404\tO\n(\tI-Code_Block\t(\tO\n\"\tI-Code_Block\t\"\tO\nData\tI-Code_Block\tData\tO\nnot\tI-Code_Block\tnot\tO\nfound\tI-Code_Block\tfound\tO\n\"\tI-Code_Block\t\"\tO\n)\tI-Code_Block\t)\tO\n;\tI-Code_Block\t;\tO\nto\tO\tto\tO\noutput\tO\toutput\tO\nindividual\tO\tindividual\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\nwhen\tO\twhen\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ndev\tO\tdev\tO\nmode\tO\tmode\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nin\tO\tin\tO\nproduction\tO\tproduction\tO\nmode\tO\tmode\tO\n-\tO\t-\tO\nwhere\tO\twhere\tO\ndebug\tO\tdebug\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\nfalse\tB-Value\tfalse\tO\nin\tO\tin\tO\ngetApplicationConfiguration()\tB-Library_Function\tgetApplicationConfiguration()\tO\n-\tO\t-\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nsettings.yml\tB-File_Name\tsettings.yml\tO\nI\tO\tI\tO\nset\tO\tset\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\n404\tB-Error_Name\t404\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nall\tO\tall\tO\n:\tO\t:\tO\n.actions\tO\t.actions\tO\n:\tO\t:\tO\nerror_404_module\tB-Library_Class\terror_404_module\tO\n:\tO\t:\tO\nmain\tB-Library_Function\tmain\tO\nerror_404_action\tI-Library_Function\terror_404_action\tO\n:\tO\t:\tO\ncustom404\tB-Library_Function\tcustom404\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nforward404\tB-Library_Class\tforward404\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ncustom404Success.php\tB-File_Name\tcustom404Success.php\tO\ntemplate\tO\ttemplate\tO\n??\tO\t??\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3989100\tO\t3989100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3989100/\tO\thttps://stackoverflow.com/questions/3989100/\tO\n\t\n\t\nThe\tO\tThe\tO\n404\tB-Error_Name\t404\tO\nhandling\tO\thandling\tO\nis\tO\tis\tO\ncompletely\tO\tcompletely\tO\ndifferent\tO\tdifferent\tO\nbetween\tO\tbetween\tO\nprod\tB-Library_Class\tprod\tB-Code_Block\nand\tO\tand\tO\ndev\tB-Library_Class\tdev\tB-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nprod\tB-Library_Class\tprod\tB-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nyou\tO\tyou\tO\npass\tO\tpass\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nforward404\tB-Class_Name\tforward404\tB-Code_Block\nis\tO\tis\tO\nsimply\tO\tsimply\tO\nwritten\tO\twritten\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlog\tO\tlog\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhandler\tO\thandler\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nways\tO\tways\tO\nto\tO\tto\tO\nget\tO\tget\tO\nround\tO\tround\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nquickest\tO\tquickest\tO\n(\tO\t(\tO\nalbeit\tO\talbeit\tO\ndirtiest\tO\tdirtiest\tO\n)\tO\t)\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nin\tO\tin\tO\na\tO\ta\tO\nstatic\tB-Data_Type\tstatic\tO\nvariable\tO\tvariable\tO\nsomewhere\tO\tsomewhere\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\n404\tB-Error_Name\t404\tO\nhandler\tO\thandler\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nit\tO\tit\tO\nonce\tO\tonce\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ngets\tO\tgets\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\naction\tO\taction\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_410\tI-Code_Block\tA_410\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnd\tO\tAnd\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\n404\tB-Error_Name\t404\tO\nhandler\tO\thandler\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nit\tO\tit\tO\n's\tO\t's\tO\nin\tO\tin\tO\nCommonActions\tB-Library_Class\tCommonActions\tO\n)\tO\t)\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_411\tI-Code_Block\tA_411\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3989100\tO\t3989100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3989100/\tO\thttps://stackoverflow.com/questions/3989100/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nable\tO\table\tO\nto\tO\tto\tO\nget\tO\tget\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nmethod\tO\tmethod\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nsfError404Exception\tB-Error_Name\tsfError404Exception\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nhandles\tO\thandles\tO\nrespect\tO\trespect\tO\nof\tO\tof\tO\nenviroment\tO\tenviroment\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ndev\tB-Library_Class\tdev\tO\nit\tO\tit\tO\nsimple\tO\tsimple\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nexception\tO\texception\tO\nand\tO\tand\tO\nin\tO\tin\tO\nprod\tB-Library_Class\tprod\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nhandle\tO\thandle\tO\nvia\tO\tvia\tO\nset_exception_handler(\"my_handle\")\tB-Function_Name\tset_exception_handler(\"my_handle\")\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\noverride\tO\toverride\tO\nthis\tO\tthis\tO\nit\tO\tit\tO\n's\tO\t's\tO\npublic\tO\tpublic\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_412\tI-Code_Block\tA_412\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6723135\tO\t6723135\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6723135/\tO\thttps://stackoverflow.com/questions/6723135/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nPardon\tO\tPardon\tO\nmy\tO\tmy\tO\nstupidity\tO\tstupidity\tO\n,\tO\t,\tO\nanyone\tO\tanyone\tO\nknows\tO\tknows\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_506\tI-Code_Block\tQ_506\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_507\tI-Code_Block\tQ_507\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_508\tI-Code_Block\tQ_508\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6723135\tO\t6723135\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6723135/\tO\thttps://stackoverflow.com/questions/6723135/\tO\n\t\n\t\n\t\nWill\tO\tWill\tO\ncatch\tO\tcatch\tO\nand\tO\tand\tO\nrethrow\tO\trethrow\tO\nonly\tO\tonly\tO\nexceptions\tB-Library_Class\texceptions\tO\nderived\tO\tderived\tO\nfrom\tO\tfrom\tO\nException\tB-Library_Class\tException\tB-Code_Block\n.\tO\t.\tO\n\t\nWill\tO\tWill\tO\ncatch\tO\tcatch\tO\nand\tO\tand\tO\nrethrow\tO\trethrow\tO\nany\tO\tany\tO\nexception\tB-Library_Class\texception\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nSince\tO\tSince\tO\nCLRv2\tB-Library\tCLRv2\tO\n,\tO\t,\tO\nall\tO\tall\tO\nexceptions\tB-Library_Class\texceptions\tO\nare\tO\tare\tO\nderived\tO\tderived\tO\nfrom\tO\tfrom\tO\nException\tB-Library_Class\tException\tB-Code_Block\nso\tO\tso\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nidentical\tO\tidentical\tO\nto\tO\tto\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nEric\tB-User_Name\tEric\tO\nLippert\tI-User_Name\tLippert\tO\n's\tO\t's\tO\ncomment\tO\tcomment\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWill\tO\tWill\tO\ncatch\tO\tcatch\tO\nany\tO\tany\tO\nexception\tB-Library_Class\texception\tO\nderived\tO\tderived\tO\nfrom\tO\tfrom\tO\nException\tB-Library_Class\tException\tB-Code_Block\nand\tO\tand\tO\nthrow\tO\tthrow\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nthus\tO\tthus\tO\nresetting\tO\tresetting\tO\nthe\tO\tthe\tO\nstack\tO\tstack\tO\ntrace\tO\ttrace\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6723135\tO\t6723135\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6723135/\tO\thttps://stackoverflow.com/questions/6723135/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nexample\tO\texample\tO\n1\tO\t1\tO\nand\tO\tand\tO\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\nrethrows\tO\trethrows\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nexception\tB-Library_Class\texception\tO\n,\tO\t,\tO\nand\tO\tand\tO\nboth\tO\tboth\tO\ncatches\tO\tcatches\tO\nthe\tO\tthe\tO\ngeneral\tO\tgeneral\tO\nException\tB-Library_Class\tException\tB-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\nexample\tO\texample\tO\n1\tO\t1\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ncatch\tO\tcatch\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\nexception\tB-Library_Class\texception\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nDivisionByZeroException\tB-Library_Class\tDivisionByZeroException\tB-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nre-throwing\tO\tre-throwing\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\n;\tO\t;\tO\nbut\tO\tbut\tO\nthrowing\tO\tthrowing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nexception\tB-Library_Class\texception\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncaught\tO\tcaught\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncauses\tO\tcauses\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\nstacktrace\tO\tstacktrace\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nre-set\tO\tre-set\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlocation\tO\tlocation\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nthrow\tO\tthrow\tO\nit\tO\tit\tO\n-\tO\t-\tO\nwhich\tO\twhich\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nstacktrace\tO\tstacktrace\tO\nthen\tO\tthen\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlocation\tO\tlocation\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nactually\tO\tactually\tO\noccured\tO\toccured\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46791815\tO\t46791815\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46791815/\tO\thttps://stackoverflow.com/questions/46791815/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nDurable\tB-Application\tDurable\tO\nfunction\tI-Application\tfunction\tO\n(\tO\t(\tO\nOrchestration\tO\tOrchestration\tO\nfunction\tO\tfunction\tO\n)\tO\t)\tO\nand\tO\tand\tO\nseen\tO\tseen\tO\nsample\tO\tsample\tO\napplication\tO\tapplication\tO\nas\tO\tas\tO\nper\tO\tper\tO\nMicrosoft\tB-Organization\tMicrosoft\tO\ndocumentation.So\tO\tdocumentation.So\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nfew\tO\tfew\tO\ndoubts\tO\tdoubts\tO\n.\tO\t.\tO\n\t\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6162\tI-Code_Block\tQ_6162\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\ninvoke\tO\tinvoke\tO\nit\tO\tit\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nHTTP\tB-Library_Function\tHTTP\tO\nPOST\tI-Library_Function\tPOST\tO\nrequest\tO\trequest\tO\nusing\tO\tusing\tO\npostman\tB-Application\tpostman\tO\nso\tO\tso\tO\nrequest\tO\trequest\tO\nprocessed\tO\tprocessed\tO\nsuccessfully\tO\tsuccessfully\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nconfigured\tO\tconfigured\tO\ndifferent\tO\tdifferent\tO\nverb\tO\tverb\tO\nlike\tO\tlike\tO\nHTTP\tB-Library_Function\tHTTP\tO\nGET\tI-Library_Function\tGET\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nresponded\tO\tresponded\tO\nwith\tO\twith\tO\nNotFound\tB-Error_Name\tNotFound\tO\n\"\tO\t\"\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nconsole\tO\tconsole\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nrequest\tO\trequest\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nhttp\tO\thttp\tO\nrequest\tO\trequest\tO\nfrom\tO\tfrom\tO\nbrowser\tO\tbrowser\tO\nresponded\tO\tresponded\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\nNotFound\tB-Error_Name\tNotFound\tO\n\"\tO\t\"\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nconsole\tB-Application\tconsole\tO\n.Why\tO\t.Why\tO\nthis\tO\tthis\tO\nhappened\tO\thappened\tO\n?\tO\t?\tO\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\ninvoke\tO\tinvoke\tO\nany\tO\tany\tO\nOrchestration\tO\tOrchestration\tO\nfunction\tO\tfunction\tO\nwith\tO\twith\tO\nin\tO\tin\tO\ntimer\tO\ttimer\tO\ntrigger\tO\ttrigger\tO\nazure\tB-Application\tazure\tO\nfunction\tI-Application\tfunction\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\nwhy\tO\twhy\tO\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\n\t\nSome\tO\tSome\tO\nadditional\tO\tadditional\tO\ndetails\tO\tdetails\tO\nabout\tO\tabout\tO\nquestion\tO\tquestion\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6163\tI-Code_Block\tQ_6163\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ncan\tO\tcan\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nhttp\tO\thttp\tO\ntrigger\tO\ttrigger\tO\nby\tO\tby\tO\ntimer\tO\ttimer\tO\ntriggred\tO\ttriggred\tO\nwhy\tO\twhy\tO\nbecause\tO\tbecause\tO\nmy\tO\tmy\tO\ndurable\tO\tdurable\tO\nfunction\tO\tfunction\tO\nhas\tO\thas\tO\nlong\tO\tlong\tO\nrunning\tO\trunning\tO\nprocess\tO\tprocess\tO\nso\tO\tso\tO\nif\tO\tif\tO\ninvoke\tO\tinvoke\tO\norchestration\tO\torchestration\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\ntimer\tO\ttimer\tO\ntrigger\tO\ttrigger\tO\nitself\tO\titself\tO\nso\tO\tso\tO\nthere\tO\tthere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\npossibility\tO\tpossibility\tO\nof\tO\tof\tO\ntimer\tO\ttimer\tO\ntriggered\tO\ttriggered\tO\ntimeout\tO\ttimeout\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfollow\tO\tfollow\tO\nthis\tO\tthis\tO\napproach.Is\tO\tapproach.Is\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ninvoke\tO\tinvoke\tO\nby\tO\tby\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46791815\tO\t46791815\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46791815/\tO\thttps://stackoverflow.com/questions/46791815/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ngeneral\tO\tgeneral\tO\nAzure\tB-Application\tAzure\tO\nFunctions\tI-Application\tFunctions\tO\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nGET\tB-Library_Function\tGET\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nconfigured\tO\tconfigured\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nPOST\tB-Library_Function\tPOST\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\n[\tB-Library_Variable\t[\tB-Code_Block\nHttpTrigger\tI-Library_Variable\tHttpTrigger\tI-Code_Block\n]\tI-Library_Variable\t]\tI-Code_Block\nattribute\tO\tattribute\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nsignature\tO\tsignature\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6792\tI-Code_Block\tA_6792\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nGET\tB-Library_Function\tGET\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nmethods\tB-Library_Variable\tmethods\tB-Code_Block\nparameter\tO\tparameter\tO\naccordingly\tO\taccordingly\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6793\tI-Code_Block\tA_6793\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nVisual\tB-Application\tVisual\tO\nStudio\tI-Application\tStudio\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncaching\tO\tcaching\tO\nbug\tO\tbug\tO\nwhere\tO\twhere\tO\nmaking\tO\tmaking\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nroute\tO\troute\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nproperly\tO\tproperly\tO\nsaved\tO\tsaved\tO\nwhen\tO\twhen\tO\ndebugging\tO\tdebugging\tO\nlocally\tO\tlocally\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nopened\tO\topened\tO\na\tO\ta\tO\nGitHub\tB-Website\tGitHub\tO\nissue\tO\tissue\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nthat\tO\tthat\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://github.com/Azure/Azure-Functions/issues/552\tO\thttps://github.com/Azure/Azure-Functions/issues/552\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nHTTP\tO\tHTTP\tO\ntriggers\tO\ttriggers\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\ndocumentation\tO\tdocumentation\tO\n:\tO\t:\tO\nhttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook\tO\thttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\nDurable\tB-Application\tDurable\tO\nFunction\tI-Application\tFunction\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ntimer\tO\ttimer\tO\ntrigger\tO\ttrigger\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\njust\tO\tjust\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntrigger\tO\ttrigger\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6794\tI-Code_Block\tA_6794\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nTimer\tO\tTimer\tO\ntriggers\tO\ttriggers\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\ndocumentation\tO\tdocumentation\tO\n:\tO\t:\tO\nhttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer\tO\thttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46791815\tO\t46791815\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46791815/\tO\thttps://stackoverflow.com/questions/46791815/\tO\n\t\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nBecause\tO\tBecause\tO\nyou\tO\tyou\tO\nspecified\tO\tspecified\tO\nyour\tO\tyour\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ntriggered\tO\ttriggered\tO\non\tO\ton\tO\nPOST\tB-Library_Function\tPOST\tO\nonly\tO\tonly\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6790\tI-Code_Block\tA_6790\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nTo\tO\tTo\tO\nenable\tO\tenable\tO\nGET\tB-Library_Function\tGET\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nget\tB-Code_Block\tget\tB-Code_Block\nto\tO\tto\tO\nmethods\tB-Library_Variable\tmethods\tB-Code_Block\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndefine\tO\tdefine\tO\ntimer-triggered\tO\ttimer-triggered\tO\nfunction\tO\tfunction\tO\nwith\tO\twith\tO\nOrchestrationClient\tB-Library_Class\tOrchestrationClient\tB-Code_Block\ninput\tO\tinput\tO\nbinding\tO\tbinding\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nHTTP\tO\tHTTP\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nSample\tO\tSample\tO\ndeclaration\tO\tdeclaration\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6791\tI-Code_Block\tA_6791\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1446356\tO\t1446356\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1446356/\tO\thttps://stackoverflow.com/questions/1446356/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nrelatively\tO\trelatively\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\ngit\tB-Application\tgit\tO\n,\tO\t,\tO\nhaving\tO\thaving\tO\nused\tO\tused\tO\nSubversion\tB-Application\tSubversion\tO\nprimarily\tO\tprimarily\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npast\tO\tpast\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecently\tO\trecently\tO\ncloned\tO\tcloned\tO\na\tO\ta\tO\nSubversion\tB-Application\tSubversion\tO\nrepository\tO\trepository\tO\n,\tO\t,\tO\nmade\tO\tmade\tO\nchanges\tO\tchanges\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\nremote\tO\tremote\tO\nbare\tO\tbare\tO\ngit\tB-Application\tgit\tO\nrepository\tO\trepository\tO\nthat\tO\tthat\tO\nfellow\tO\tfellow\tO\ndevelopers\tO\tdevelopers\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nas\tO\tas\tO\nwe\tO\twe\tO\nmove\tO\tmove\tO\ntowards\tO\ttowards\tO\ngit\tB-Application\tgit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\npushed\tO\tpushed\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nSVN\tB-Library\tSVN\tO\nrepository\tO\trepository\tO\nyet\tO\tyet\tO\n(\tO\t(\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nintentionally\tO\tintentionally\tO\ndone\tO\tdone\tO\nthis\tO\tthis\tO\n!\tO\t!\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\npull\tO\tpull\tO\nin\tO\tin\tO\nnew\tO\tnew\tO\nchanges\tO\tchanges\tO\nfrom\tO\tfrom\tO\nSubversion\tB-Application\tSubversion\tO\nwith\tO\twith\tO\ngit\tB-Library\tgit\tO\nsvn\tI-Library\tsvn\tO\nrebase\tI-Library\trebase\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nabout\tO\tabout\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\ntrouble\tO\ttrouble\tO\nbegan\tO\tbegan\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nillustration\tO\tillustration\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\noutput\tO\toutput\tO\nfrom\tO\tfrom\tO\ngitk\tB-Application\tgitk\tO\n:\tO\t:\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndelete\tO\tdelete\tO\nthis\tO\tthis\tO\nduplicate\tO\tduplicate\tO\nhistory\tO\thistory\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nlooking\tO\tlooking\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nhelped\tO\thelped\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nhelpful\tO\thelpful\tO\npeople\tO\tpeople\tO\nat\tO\tat\tO\n#git\tB-Website\t#git\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_85\tI-Code_Block\tQ_85\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\ndoing\tO\tdoing\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1446356\tO\t1446356\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1446356/\tO\thttps://stackoverflow.com/questions/1446356/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\ntry\tO\ttry\tO\n\t\nin\tO\tin\tO\nmaster\tO\tmaster\tO\nreset\tO\treset\tO\nto\tO\tto\tO\nlatest\tO\tlatest\tO\ncommit\tO\tcommit\tO\nbefore\tO\tbefore\tO\nmerge\tO\tmerge\tO\n\t\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nbranch\tO\tbranch\tO\n\t\nrebase\tO\trebase\tO\nbranch\tO\tbranch\tO\non\tO\ton\tO\nmaster\tO\tmaster\tO\n\t\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nmaster\tO\tmaster\tO\n\t\nmerge\tO\tmerge\tO\nbranch\tO\tbranch\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28287543\tO\t28287543\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28287543/\tO\thttps://stackoverflow.com/questions/28287543/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ntable\tB-Data_Structure\ttable\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nformat\tO\tformat\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3294\tI-Code_Block\tQ_3294\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ngroup\tO\tgroup\tO\ndifferent\tO\tdifferent\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nin\tO\tin\tO\na\tO\ta\tO\nbit\tO\tbit\tO\ndifferent\tO\tdifferent\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbasis\tO\tbasis\tO\nof\tO\tof\tO\nreporting_date\tB-Variable_Name\treporting_date\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\nout\tO\tout\tO\nput\tO\tput\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3295\tI-Code_Block\tQ_3295\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ni.e\tO\ti.e\tO\nthe\tO\tthe\tO\ninterest_payment\tB-Variable_Name\tinterest_payment\tO\nshould\tO\tshould\tO\ngrouped\tO\tgrouped\tO\nby\tO\tby\tO\nreporting\tO\treporting\tO\ndate\tO\tdate\tO\nbut\tO\tbut\tO\nwhile\tO\twhile\tO\ngrouping\tO\tgrouping\tO\nthe\tO\tthe\tO\nbalance\tO\tbalance\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ngroup\tO\tgroup\tO\nby\tO\tby\tO\nfirst\tO\tfirst\tO\nrow\tB-Data_Structure\trow\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nreporting\tO\treporting\tO\ndate\tO\tdate\tO\nonly\tO\tonly\tO\n\t\nso\tO\tso\tO\nfor\tO\tfor\tO\n200401\tB-Variable_Name\t200401\tO\nthe\tO\tthe\tO\ninterest\tB-Variable_Name\tinterest\tO\npayment\tI-Variable_Name\tpayment\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n15\tB-Value\t15\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nbalance\tB-Variable_Name\tbalance\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nonly\tO\tonly\tO\n10\tB-Value\t10\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3296\tI-Code_Block\tQ_3296\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\ni\tO\ti\tO\nwas\tO\twas\tO\nplanning\tO\tplanning\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nbut\tO\tbut\tO\nobviously\tO\tobviously\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nbalance\tB-Variable_Name\tbalance\tO\ncolumn\tI-Variable_Name\tcolumn\tO\n.Is\tO\t.Is\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nsql\tB-Language\tsql\tO\nserver\tO\tserver\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nquery\tO\tquery\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\ngroup\tO\tgroup\tO\nby\tO\tby\tO\nparticular\tO\tparticular\tO\nset\tB-Data_Structure\tset\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\ngroup\tO\tgroup\tO\nby\tO\tby\tO\ndifferent\tO\tdifferent\tO\nset\tB-Data_Structure\tset\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28287543\tO\t28287543\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28287543/\tO\thttps://stackoverflow.com/questions/28287543/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nquery\tO\tquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3913\tI-Code_Block\tA_3913\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nassumption\tO\tassumption\tO\nthat\tO\tthat\tO\nid\tB-Variable_Name\tid\tB-Code_Block\nfield\tO\tfield\tO\ndefines\tO\tdefines\tO\nprecedence\tO\tprecedence\tO\nfor\tO\tfor\tO\nbalance\tB-Variable_Name\tbalance\tB-Code_Block\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nbalance\tB-Variable_Name\tbalance\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlowest\tO\tlowest\tO\nrelated\tO\trelated\tO\nid\tB-Variable_Name\tid\tB-Code_Block\nvalue\tO\tvalue\tO\ncomes\tO\tcomes\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28287543\tO\t28287543\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28287543/\tO\thttps://stackoverflow.com/questions/28287543/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3912\tI-Code_Block\tA_3912\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36096263\tO\t36096263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36096263/\tO\thttps://stackoverflow.com/questions/36096263/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsyntax\tO\tsyntax\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nme\tO\tme\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nobject\tO\tobject\tO\nwith\tO\twith\tO\none\tO\tone\tO\nproperty\tO\tproperty\tO\nand\tO\tand\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlove\tO\tlove\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nall\tO\tall\tO\non\tO\ton\tO\none\tO\tone\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4430\tI-Code_Block\tQ_4430\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nShould\tO\tShould\tO\nlog\tO\tlog\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4431\tI-Code_Block\tQ_4431\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nI\tO\tI\tO\nsaw\tO\tsaw\tO\nonce\tO\tonce\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nes-spec\tO\tes-spec\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nbabel-2015\tB-Application\tbabel-2015\tO\npreset\tO\tpreset\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4432\tI-Code_Block\tQ_4432\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36096263\tO\t36096263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36096263/\tO\thttps://stackoverflow.com/questions/36096263/\tO\n\t\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ncomputed\tO\tcomputed\tO\nproperty\tO\tproperty\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5154\tI-Code_Block\tA_5154\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names\tO\thttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names\tO\n\t\n(\tO\t(\tO\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nwith\tO\twith\tO\nes2015\tB-Version\tes2015\tO\nBabel\tB-Application\tBabel\tO\npreset\tO\tpreset\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36096263\tO\t36096263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36096263/\tO\thttps://stackoverflow.com/questions/36096263/\tO\n\t\n\t\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n:\tO\t:\tO\n\t\n*\tO\t*\tO\nnote\tO\tnote\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nconsoling\tO\tconsoling\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconsole\tB-Application\tconsole\tO\n.\tO\t.\tO\n\t\nOpen\tO\tOpen\tO\nconsole\tB-Application\tconsole\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5155\tI-Code_Block\tQ_5155\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n<script\tB-Code_Block\t<script\tB-Code_Block\nsrc=\"https://cdnjs.cloudflare.com/ajax/libs/babel-core/6.1.19/browser.min.js\"></script>\tI-Code_Block\tsrc=\"https://cdnjs.cloudflare.com/ajax/libs/babel-core/6.1.19/browser.min.js\"></script>\tI-Code_Block\n\t\n0Aconst%20A%20%3D%20%7B%5BL%5D%3A%20responses%7D%0Aconsole.log(A)%0A\tO\t0Aconst%20A%20%3D%20%7B%5BL%5D%3A%20responses%7D%0Aconsole.log(A)%0A\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5156\tI-Code_Block\tA_5156\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nnoted\tO\tnoted\tO\n:\tO\t:\tO\nother\tO\tother\tO\nperson\tO\tperson\tO\ngot\tO\tgot\tO\nin\tO\tin\tO\nbefore\tO\tbefore\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34021288\tO\t34021288\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34021288/\tO\thttps://stackoverflow.com/questions/34021288/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nappinventor\tB-Application\tappinventor\tO\nlocally\tO\tlocally\tO\non\tO\ton\tO\nwindows\tB-Operating_System\twindows\tO\n7\tB-Version\t7\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndocument\tO\tdocument\tO\n:\tO\t:\tO\nhttps://docs.google.com/document/d/1Xc9yt02x3BRoq5m1PJHBr81OOv69rEBy8LVG_84j9jc/pub#h.5p32kqx16c2d\tO\thttps://docs.google.com/document/d/1Xc9yt02x3BRoq5m1PJHBr81OOv69rEBy8LVG_84j9jc/pub#h.5p32kqx16c2d\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ndownloaded\tO\tdownloaded\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nsoftware\tO\tsoftware\tO\nlisted\tO\tlisted\tO\nin\tO\tin\tO\nsection\tO\tsection\tO\n3\tO\t3\tO\nand\tO\tand\tO\nproceeded\tO\tproceeded\tO\nbuilding\tO\tbuilding\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\ninventor\tO\tinventor\tO\nby\tO\tby\tO\ncloning\tO\tcloning\tO\na\tO\ta\tO\ngit\tB-Application\tgit\tO\nrepository\tO\trepository\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ngit\tB-Application\tgit\tO\ncommand\tO\tcommand\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nshell\tB-Application\tshell\tO\n:\tO\t:\tO\ngit\tB-Code_Block\tgit\tO\nclone\tI-Code_Block\tclone\tO\nhttps://github.com/mit-cml/appinventor-sources.git\tO\thttps://github.com/mit-cml/appinventor-sources.git\tO\n\t\nI\tO\tI\tO\nkeep\tO\tkeep\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\nfailed\tO\tfailed\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\ngithub\tO\tgithub\tO\n443\tB-Error_Name\t443\tO\nerror\tI-Error_Name\terror\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntired\tO\ttired\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nGoogle\tB-Website\tGoogle\tO\nsearch\tO\tsearch\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nGitHub\tB-Website\tGitHub\tO\n-\tO\t-\tO\nfailed\tO\tfailed\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\ngithub\tB-Website\tgithub\tO\n443\tB-Error_Name\t443\tO\nwindows/\tB-Operating_System\twindows/\tO\nFailed\tO\tFailed\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\ngitHub\tB-Website\tgitHub\tO\n-\tO\t-\tO\nNo\tO\tNo\tO\nError\tO\tError\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nat\tO\tat\tO\nall\tO\tall\tO\nexperienced\tO\texperienced\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nfield\tO\tfield\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsolutions\tO\tsolutions\tO\nmentioned\tO\tmentioned\tO\n,\tO\t,\tO\ncould\tO\tcould\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\nby\tO\tby\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nsolution\tO\tsolution\tO\nstep\tO\tstep\tO\nby\tO\tby\tO\nstep\tO\tstep\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\na\tO\ta\tO\ncompany\tO\tcompany\tO\nso\tO\tso\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nproxy\tO\tproxy\tO\nlike\tO\tlike\tO\nthey\tO\tthey\tO\nmentioned\tO\tmentioned\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nfirewall\tO\tfirewall\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nblocking\tO\tblocking\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34021288\tO\t34021288\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34021288/\tO\thttps://stackoverflow.com/questions/34021288/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nbehind\tO\tbehind\tO\nthe\tO\tthe\tO\ncorporate\tO\tcorporate\tO\nfirewall\tO\tfirewall\tO\nand\tO\tand\tO\nif\tO\tif\tO\nall\tO\tall\tO\nyour\tO\tyour\tO\nrequests\tO\trequests\tO\ngoes\tO\tgoes\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nproxy\tO\tproxy\tO\nserver\tO\tserver\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nGit\tB-Application\tGit\tO\nproxy\tO\tproxy\tO\nfirst\tO\tfirst\tO\nbefore\tO\tbefore\tO\nrunning\tO\trunning\tO\nany\tO\tany\tO\nget\tO\tget\tO\ncommands\tO\tcommands\tO\nlike\tO\tlike\tO\npull\tB-Code_Block\tpull\tO\n,\tO\t,\tO\nfetch\tB-Code_Block\tfetch\tO\nand\tO\tand\tO\npush\tB-Code_Block\tpush\tO\ncommands\tO\tcommands\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nGit\tB-Application\tGit\tO\nproxy\tO\tproxy\tO\nfor\tO\tfor\tO\nHTTP\tO\tHTTP\tO\nand\tO\tand\tO\nHTTPS\tO\tHTTPS\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nGit\tB-Application\tGit\tO\ncommands\tO\tcommands\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ngit\tB-Application\tgit\tO\nbash\tI-Application\tbash\tO\nshell\tI-Application\tshell\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4873\tI-Code_Block\tA_4873\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCheck\tO\tCheck\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nGit\tB-Application\tGit\tO\nproxy\tO\tproxy\tO\nand\tO\tand\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nunset\tO\tunset\tO\nthe\tO\tthe\tO\nGit\tB-Application\tGit\tO\nProxy\tO\tProxy\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22928390\tO\t22928390\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22928390/\tO\thttps://stackoverflow.com/questions/22928390/\tO\n\t\n\t\nIf\tO\tIf\tO\nsay\tO\tsay\tO\ni\tO\ti\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\ntextbox\tB-User_Interface_Element\ttextbox\tO\ninput\tO\tinput\tO\nand\tO\tand\tO\na\tO\ta\tO\ninteger\tB-Data_Type\tinteger\tO\nvalue\tO\tvalue\tO\nA\tB-Variable_Name\tA\tO\nthen\tO\tthen\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nat\tO\tat\tO\ntime\tO\ttime\tO\nof\tO\tof\tO\ntyping\tO\ttyping\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nitself\tO\titself\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nentered\tO\tentered\tO\nin\tO\tin\tO\ntextbox\tB-User_Interface_Element\ttextbox\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nexceed\tO\texceed\tO\nA\tB-Variable_Name\tA\tO\n.\tO\t.\tO\n\t\nTextbox\tB-User_Interface_Element\tTextbox\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2504\tI-Code_Block\tQ_2504\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nscript\tB-HTML_XML_Tag\tscript\tO\n:\tO\t:\tO\n\t\n(\tO\t(\tO\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\nby\tO\tby\tO\nFelix\tB-User_Name\tFelix\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2505\tI-Code_Block\tQ_2505\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFORM\tB-HTML_XML_Tag\tFORM\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2506\tI-Code_Block\tQ_2506\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhats\tO\tWhats\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nthe\tO\tthe\tO\nscript\tB-HTML_XML_Tag\tscript\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrunning\tO\trunning\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nprinting\tO\tprinting\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessage.Please\tO\tmessage.Please\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22928390\tO\t22928390\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22928390/\tO\thttps://stackoverflow.com/questions/22928390/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n.keyup()\tB-Library_Function\t.keyup()\tO\nevent\tO\tevent\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3104\tI-Code_Block\tA_3104\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFiddle\tB-Application\tFiddle\tO\nDemo\tO\tDemo\tO\n\t\nBased\tO\tBased\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3105\tI-Code_Block\tA_3105\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nFiddle\tB-Application\tFiddle\tO\nDemo\tO\tDemo\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22928390\tO\t22928390\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22928390/\tO\thttps://stackoverflow.com/questions/22928390/\tO\n\t\n\t\nDo\tO\tDo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3107\tI-Code_Block\tA_3107\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nDemo\tO\tDemo\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22928390\tO\t22928390\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22928390/\tO\thttps://stackoverflow.com/questions/22928390/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3106\tI-Code_Block\tA_3106\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3601479\tO\t3601479\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3601479/\tO\thttps://stackoverflow.com/questions/3601479/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nClass\tO\tClass\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\nas\tO\tas\tO\nan\tO\tan\tO\nNSObject\tB-Library_Class\tNSObject\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nclass\tO\tclass\tO\nhas\tO\thas\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nproperties\tO\tproperties\tO\nof\tO\tof\tO\ndifferent\tO\tdifferent\tO\ntypes\tO\ttypes\tO\nand\tO\tand\tO\nmethods\tO\tmethods\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ninstantiate\tO\tinstantiate\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nApp\tO\tApp\tO\n(\tO\t(\tO\nsay\tO\tsay\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nView\tB-Library_Class\tView\tO\nController\tI-Library_Class\tController\tO\n)\tO\t)\tO\nI\tO\tI\tO\n\t\nimmediately\tO\timmediately\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\na\tO\ta\tO\nrelease\tO\trelease\tO\ncall\tO\tcall\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfinished\tO\tfinished\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nie\tO\tie\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_257\tI-Code_Block\tQ_257\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrelease\tO\trelease\tO\nmyObject\tB-Variable_Name\tmyObject\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nautomatically\tO\tautomatically\tO\nrelease\tO\trelease\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndeclared\tO\tdeclared\tO\nobjects\tO\tobjects\tO\n,\tO\t,\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndeclared\tO\tdeclared\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nMyObject\tB-File_Name\tMyObject\tO\n.h\tI-File_Name\t.h\tO\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\nOR\tO\tOR\tO\n\t\nDo\tO\tDo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nrelease\tO\trelease\tO\nmethod\tO\tmethod\tO\nwhich\tO\twhich\tO\nreleases\tO\treleases\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nask\tO\task\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nmemory\tO\tmemory\tO\nmanagement\tO\tmanagement\tO\nissues\tO\tissues\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3601479\tO\t3601479\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3601479/\tO\thttps://stackoverflow.com/questions/3601479/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\ndealloc\tB-Function_Name\tdealloc\tB-Code_Block\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nobject\tO\tobject\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nrelease\tO\trelease\tO\nany\tO\tany\tO\nresources\tO\tresources\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nown\tO\town\tO\n.\tO\t.\tO\n\t\nhttp://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmObjectOwnership.html#//apple_ref/doc/uid/20000043-SW4\tO\thttp://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmObjectOwnership.html#//apple_ref/doc/uid/20000043-SW4\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_388\tI-Code_Block\tA_388\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nImportant\tO\tImportant\tO\nnote\tO\tnote\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\nnever\tO\tnever\tO\ncall\tO\tcall\tO\na\tO\ta\tO\ndealloc\tB-Function_Name\tdealloc\tO\nmethod\tO\tmethod\tO\non\tO\ton\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ninvoked\tO\tinvoked\tO\nautomatically\tO\tautomatically\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nruntime\tO\truntime\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\n's\tO\t's\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nclean\tO\tclean\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3601479\tO\t3601479\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3601479/\tO\thttps://stackoverflow.com/questions/3601479/\tO\n\t\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nissue\tO\tissue\tO\nas\tO\tas\tO\nZigglzworth\tB-User_Name\tZigglzworth\tB-Code_Block\nand\tO\tand\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n[\tO\t[\tB-Code_Block\nsuper\tO\tsuper\tI-Code_Block\ndealloc\tB-Function_Name\tdealloc\tI-Code_Block\n]\tO\t]\tI-Code_Block\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nit\tO\tit\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\n-(void)dealloc\tB-Function_Name\t-(void)dealloc\tB-Code_Block\nmethod\tO\tmethod\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwas\tO\twas\tO\ncausing\tO\tcausing\tO\na\tO\ta\tO\ncrash\tO\tcrash\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nMoved\tO\tMoved\tO\n[\tO\t[\tB-Code_Block\nsuper\tO\tsuper\tI-Code_Block\ndealloc\tB-Function_Name\tdealloc\tI-Code_Block\n]\tO\t]\tI-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nrelease\tO\trelease\tO\nstatements\tO\tstatements\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5147234\tO\t5147234\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5147234/\tO\thttps://stackoverflow.com/questions/5147234/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\noptimization\tO\toptimization\tO\nproblems\tO\tproblems\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nknown\tO\tknown\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nNP-hard\tO\tNP-hard\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ntraveling\tO\ttraveling\tO\nsalesman\tO\tsalesman\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nMAX-SAT\tO\tMAX-SAT\tO\n,\tO\t,\tO\nor\tO\tor\tO\nfinding\tO\tfinding\tO\nthe\tO\tthe\tO\nminimum\tO\tminimum\tO\nchromatic\tO\tchromatic\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\na\tO\ta\tO\ngraph\tB-Data_Structure\tgraph\tO\n.\tO\t.\tO\n\t\nGiven\tO\tGiven\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nsort\tO\tsort\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ncurious\tO\tcurious\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\ncomplexity\tO\tcomplexity\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIntuitively\tO\tIntuitively\tO\n,\tO\t,\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nco-NP\tO\tco-NP\tO\nhard\tO\thard\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\n's\tO\t's\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nrefute\tO\trefute\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\nan\tO\tan\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\nby\tO\tby\tO\nguessing\tO\tguessing\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nwitness\tO\twitness\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nreason\tO\treason\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\ncomplexity\tO\tcomplexity\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\nany\tO\tany\tO\ngood\tO\tgood\tO\nlower\tO\tlower\tO\nbounds\tO\tbounds\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncomplexity\tO\tcomplexity\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\ndecision\tO\tdecision\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nKnowing\tO\tKnowing\tO\nwhether\tO\twhether\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\nco-NP\tO\tco-NP\tO\nhard\tO\thard\tO\n,\tO\t,\tO\nPSPACE-hard\tO\tPSPACE-hard\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nreally\tO\treally\tO\ninteresting\tO\tinteresting\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5147234\tO\t5147234\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5147234/\tO\thttps://stackoverflow.com/questions/5147234/\tO\n\t\n\t\nThe\tO\tThe\tO\nterm\tO\tterm\tO\n'\tO\t'\tO\nNP-hard\tO\tNP-hard\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\n'\tO\t'\tO\nseems\tO\tseems\tO\na\tO\ta\tO\nbit\tO\tbit\tO\ntoo\tO\ttoo\tO\nbroad\tO\tbroad\tO\nto\tO\tto\tO\nlet\tO\tlet\tO\na\tO\ta\tO\nsatisfying\tO\tsatisfying\tO\nanswer\tO\tanswer\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nprecludes\tO\tprecludes\tO\ndecision\tO\tdecision\tO\nproblems\tO\tproblems\tO\nfrom\tO\tfrom\tO\nbeing\tO\tbeing\tO\nconsidered\tO\tconsidered\tO\nNP-hard\tO\tNP-hard\tO\noptimization\tO\toptimization\tO\nproblems\tO\tproblems\tO\n-\tO\t-\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nconsider\tO\tconsider\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nMAX-CNF-SAT\tO\tMAX-CNF-SAT\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsolutions\tO\tsolutions\tO\nbeing\tO\tbeing\tO\nscored\tO\tscored\tO\nas\tO\tas\tO\nfloor(k/N)\tB-Function_Name\tfloor(k/N)\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nk\tB-Variable_Name\tk\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nsatisfied\tO\tsatisfied\tO\nclauses\tO\tclauses\tO\nand\tO\tand\tO\nN\tB-Variable_Name\tN\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nclauses\tO\tclauses\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nclearly\tO\tclearly\tO\ncomputable\tO\tcomputable\tO\nin\tO\tin\tO\npolynomial\tO\tpolynomial\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nany\tO\tany\tO\nvaluation\tO\tvaluation\tO\nwhich\tO\twhich\tO\nyields\tO\tyields\tO\na\tO\ta\tO\n1\tB-Value\t1\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nformula\tO\tformula\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nsatisfy\tO\tsatisfy\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nformula\tO\tformula\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nmaximizing\tO\tmaximizing\tO\nfloor(k/N)\tB-Function_Name\tfloor(k/N)\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\nFLOOR-CNF-SAT\tO\tFLOOR-CNF-SAT\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\nimplies\tO\timplies\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreduce\tO\treduce\tO\nTAUTOLOGY\tO\tTAUTOLOGY\tO\nto\tO\tto\tO\nsaid\tO\tsaid\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\n-\tO\t-\tO\nnegate\tO\tnegate\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nany\tO\tany\tO\nsolution\tO\tsolution\tO\nas\tO\tas\tO\nS\tB-Variable_Name\tS\tO\n.\tO\t.\tO\nYou\tO\tYou\tO\ncan\tO\tcan\tO\neven\tO\teven\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ndummy\tO\tdummy\tO\nvariable\tO\tvariable\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\ngets\tO\tgets\tO\na\tO\ta\tO\n0\tB-Value\t0\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFLOOR-CNF-SAT\tO\tFLOOR-CNF-SAT\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nNegation\tO\tNegation\tO\nis\tO\tis\tO\npolynomial\tO\tpolynomial\tO\nin\tO\tin\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nif\tO\tif\tO\na\tO\ta\tO\nsolver\tO\tsolver\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nproblem\tO\tproblem\tO\ndeems\tO\tdeems\tO\nS\tB-Variable_Name\tS\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\noptimal\tO\toptimal\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nmust\tO\tmust\tO\nclearly\tO\tclearly\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nvaluation\tO\tvaluation\tO\nwhich\tO\twhich\tO\nyields\tO\tyields\tO\na\tO\ta\tO\n1\tB-Value\t1\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nour\tO\tour\tO\ncrafted\tO\tcrafted\tO\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\nsatisfies\tO\tsatisfies\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nformula\tO\tformula\tO\n-\tO\t-\tO\nin\tO\tin\tO\nturn\tO\tturn\tO\nproviding\tO\tproviding\tO\na\tO\ta\tO\nvaluation\tO\tvaluation\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsatisfy\tO\tsatisfy\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ninput\tO\tinput\tO\nto\tO\tto\tO\nTAUTOLOGY\tO\tTAUTOLOGY\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\ncheating\tO\tcheating\tO\nslightly\tO\tslightly\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nartificially\tO\tartificially\tO\ncrafted\tO\tcrafted\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\n)\tO\t)\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nestablished\tO\testablished\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nis\tO\tis\tO\noptimal\tO\toptimal\tO\n'\tO\t'\tO\nproblem\tO\tproblem\tO\nas\tO\tas\tO\nco-NP-complete\tO\tco-NP-complete\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nTAUTOLOGY\tO\tTAUTOLOGY\tO\nis\tO\tis\tO\neasily\tO\teasily\tO\nshown\tO\tshown\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nco-NP-complete\tO\tco-NP-complete\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nargument\tO\targument\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nis\tO\tis\tO\noptimal\tO\toptimal\tO\n'\tO\t'\tO\ndecision\tO\tdecision\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nco-NP-hard\tO\tco-NP-hard\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nas\tO\tas\tO\na\tO\ta\tO\nwitness\tO\twitness\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\n-\tO\t-\tO\nscore\tO\tscore\tO\nS\tB-Variable_Name\tS\tO\n,\tO\t,\tO\nscore\tO\tscore\tO\nthe\tO\tthe\tO\nwitness\tO\twitness\tO\nand\tO\tand\tO\ncompare\tO\tcompare\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nfeel\tO\tfeel\tO\ngreat\tO\tgreat\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nreduction\tO\treduction\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\neasily\tO\teasily\tO\nimprove\tO\timprove\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nrequire\tO\trequire\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nbe\tO\tbe\tO\ninstances\tO\tinstances\tO\nwhich\tO\twhich\tO\nscore\tO\tscore\tO\narbitrarily\tO\tarbitrarily\tO\nhigh\tO\thigh\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\n{\tB-Value\t{\tO\n0\tI-Value\t0\tO\n,\tI-Value\t,\tO\n1}\tI-Value\t1}\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nN\tB-Code_Block\tN\tO\n*\tI-Code_Block\t*\tO\nfloor(k/N)\tI-Code_Block\tfloor(k/N)\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nimprovement\tO\timprovement\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nconsider\tO\tconsider\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nan\tO\tan\tO\nNP-hard\tO\tNP-hard\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\nif\tO\tif\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nK\tB-Variable_Name\tK\tO\nthere\tO\tthere\tO\nexists\tO\texists\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nK\tB-Variable_Name\tK\tO\nsolutions\tO\tsolutions\tO\nwhich\tO\twhich\tO\nall\tO\tall\tO\nscore\tO\tscore\tO\ndifferently\tO\tdifferently\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nstill\tO\tstill\tO\ncheat\tO\tcheat\tO\nmy\tO\tmy\tO\nway\tO\tway\tO\nthrough\tO\tthrough\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nConsider\tO\tConsider\tO\na\tO\ta\tO\nreduction\tO\treduction\tO\nthat\tO\tthat\tO\nadds\tO\tadds\tO\nN\tB-Variable_Name\tN\tO\ndummy\tO\tdummy\tO\nvariables\tO\tvariables\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nTAUTOLOGY\tO\tTAUTOLOGY\tO\ninput\tO\tinput\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_593\tI-Code_Block\tA_593\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhere\tO\twhere\tO\nS\tB-Variable_Name\tS\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nnegated\tO\tnegated\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\ninitial\tO\tinitial\tO\nvaluation\tO\tvaluation\tO\nI\tO\tI\tO\nchoose\tO\tchoose\tO\nd1\tB-Code_Block\td1\tO\n,\tI-Code_Block\t,\tO\n..\tI-Code_Block\t..\tO\n.\tI-Code_Block\t.\tO\n,\tI-Code_Block\t,\tO\ndN\tI-Code_Block\tdN\tO\n=\tI-Code_Block\t=\tO\nfalse\tI-Code_Block\tfalse\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\na\tO\ta\tO\nscore\tO\tscore\tO\nI\tO\tI\tO\ngive\tO\tgive\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\n2N\tB-Code_Block\t2N\tO\n-\tI-Code_Block\t-\tO\n1\tI-Code_Block\t1\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nN\tB-Variable_Name\tN\tO\nclauses\tO\tclauses\tO\nare\tO\tare\tO\nall\tO\tall\tO\nfalse\tO\tfalse\tO\n,\tO\t,\tO\notherwise\tO\totherwise\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nsatisfied\tO\tsatisfied\tO\nclauses\tO\tclauses\tO\n.\tO\t.\tO\n\t\nSuch\tO\tSuch\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nwould\tO\twould\tO\nonly\tO\tonly\tO\nreturn\tO\treturn\tO\n2N\tB-Variable_Name\t2N\tO\nif\tO\tif\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nclauses\tO\tclauses\tO\nwere\tO\twere\tO\nsatisfied\tO\tsatisfied\tO\nbut\tO\tbut\tO\ncould\tO\tcould\tO\neasily\tO\teasily\tO\nhave\tO\thave\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nN\tB-Variable_Name\tN\tO\ndistinct\tO\tdistinct\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nafraid\tO\tafraid\tO\nthat\tO\tthat\tO\nwithout\tO\twithout\tO\nsome\tO\tsome\tO\ncomplicated\tO\tcomplicated\tO\nregularity\tO\tregularity\tO\nconditions\tO\tconditions\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nscoring\tO\tscoring\tO\nfunction\tO\tfunction\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\n,\tO\t,\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nconsider\tO\tconsider\tO\nthe\tO\tthe\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\nan\tO\tan\tO\nNP-hard\tO\tNP-hard\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n'\tO\t'\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nfor\tO\tfor\tO\nwhich\tO\twhich\tO\n,\tO\t,\tO\ngiven\tO\tgiven\tO\na\tO\ta\tO\ncandidate\tO\tcandidate\tO\nsolution\tO\tsolution\tO\nS\tB-Variable_Name\tS\tO\n,\tO\t,\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nin\tO\tin\tO\npolynomial\tO\tpolynomial\tO\ntime\tO\ttime\tO\nverify\tO\tverify\tO\nwhether\tO\twhether\tO\nS\tB-Variable_Name\tS\tO\nis\tO\tis\tO\noptimal\tO\toptimal\tO\n'\tO\t'\tO\n,\tO\t,\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\ncase\tO\tcase\tO\n'\tO\t'\tO\nis-optimal\tO\tis-optimal\tO\n'\tO\t'\tO\nis\tO\tis\tO\nclearly\tO\tclearly\tO\nP\tO\tP\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nno\tO\tno\tO\nfun\tO\tfun\tO\nat\tO\tat\tO\nall:/\tO\tall:/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5147234\tO\t5147234\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5147234/\tO\thttps://stackoverflow.com/questions/5147234/\tO\n\t\n\t\nBecause\tO\tBecause\tO\nS\tB-Variable_Name\tS\tO\nis\tO\tis\tO\na\tO\ta\tO\ncandidate\tO\tcandidate\tO\nsolution\tO\tsolution\tO\n;\tO\t;\tO\ngiven\tO\tgiven\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nother\tO\tother\tO\nS\tB-Variable_Name\tS\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nS\tB-Variable_Name\tS\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nproven\tO\tproven\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ngreedy\tO\tgreedy\tO\nor\tO\tor\tO\nless\tO\tless\tO\noptimal\tO\toptimal\tO\nthan\tO\tthan\tO\nany\tO\tany\tO\nother\tO\tother\tO\nS\tB-Variable_Name\tS\tO\n.\tO\t.\tO\nIt\tO\tIt\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\nS\tB-Variable_Name\tS\tO\nis\tO\tis\tO\nat\tO\tat\tO\ncurrent\tO\tcurrent\tO\nthe\tO\tthe\tO\nMOST\tO\tMOST\tO\noptimal\tO\toptimal\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5654175\tO\t5654175\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5654175/\tO\thttps://stackoverflow.com/questions/5654175/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nPentaho\tB-Application\tPentaho\tO\nKettle\tI-Application\tKettle\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nwondering\tO\twondering\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nInternal.Job.Filename.Directory\tB-Library_Variable\tInternal.Job.Filename.Directory\tB-Code_Block\nis\tO\tis\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nmy\tO\tmy\tO\nSPoon.bat\tB-File_Name\tSPoon.bat\tB-Code_Block\nfolder\tO\tfolder\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\njob/xfrm\tB-File_Name\tjob/xfrm\tO\nfolder\tO\tfolder\tO\ni\tO\ti\tO\ncreated\tO\tcreated\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nto\tO\tto\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\nparticular\tO\tparticular\tO\nfolder\tO\tfolder\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunnig\tO\trunnig\tO\nspoon.bat\tB-File_Name\tspoon.bat\tB-Code_Block\nin\tO\tin\tO\nWindows\tB-Operating_System\tWindows\tO\nXP\tB-Version\tXP\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5654175\tO\t5654175\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5654175/\tO\thttps://stackoverflow.com/questions/5654175/\tO\n\t\n\t\nTo\tO\tTo\tO\nset\tO\tset\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nvariable\tO\tvariable\tO\nInternal.Job.Filename.Directory\tB-Library_Variable\tInternal.Job.Filename.Directory\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nlaunch\tO\tlaunch\tO\nJob\tB-Library_Class\tJob\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\n\t\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3102\tI-Code_Block\tQ_3102\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5654175\tO\t5654175\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5654175/\tO\thttps://stackoverflow.com/questions/5654175/\tO\n\t\n\t\nInternal.Job.Filename.Directory\tB-Library_Variable\tInternal.Job.Filename.Directory\tB-Code_Block\nis\tO\tis\tO\nonly\tO\tonly\tO\nset\tO\tset\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nrepository\tO\trepository\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nset\tO\tset\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncannot\tO\tcannot\tO\nset\tO\tset\tO\nit\tO\tit\tO\nmanually\tO\tmanually\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nrepository\tO\trepository\tO\n?\tO\t?\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nSpoon\tB-Application\tSpoon\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\na\tO\ta\tO\ndialog\tB-User_Interface_Element\tdialog\tO\nwhich\tO\twhich\tO\nasks\tO\tasks\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nrepository\tO\trepository\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nclose\tO\tclose\tO\nthis\tO\tthis\tO\ndialog\tO\tdialog\tO\nwith\tO\twith\tO\ncancel\tO\tcancel\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nfine\tO\tfine\tO\n!\tO\t!\tO\n\t\nIt\tO\tIt\tO\ntook\tO\ttook\tO\nme\tO\tme\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nwhy\tO\twhy\tO\nInternal.Job.Filename.Directory\tB-Library_Variable\tInternal.Job.Filename.Directory\tB-Code_Block\nwas\tO\twas\tO\nalways\tO\talways\tO\nempty\tO\tempty\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrepository\tO\trepository\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\ncause\tO\tcause\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ndocumented\tO\tdocumented\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://jira.pentaho.com/browse/PDI-7434\tO\thttp://jira.pentaho.com/browse/PDI-7434\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40975280\tO\t40975280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40975280/\tO\thttps://stackoverflow.com/questions/40975280/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\ncharacters\tO\tcharacters\tO\nin\tO\tin\tO\njson\tB-Library_Function\tjson\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nlarge\tO\tlarge\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nexception\tB-Library_Class\texception\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nraised\tO\traised\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\nexception\tB-Library_Class\texception\tO\nis\tO\tis\tO\na\tO\ta\tO\nserver\tO\tserver\tO\nside\tO\tside\tO\nexception\tB-Library_Class\texception\tO\nwith\tO\twith\tO\n500\tB-Error_Name\t500\tO\nresponse\tO\tresponse\tO\ncode\tO\tcode\tO\nso\tO\tso\tO\nif\tO\tif\tO\nwe\tO\twe\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\ninside\tO\tinside\tO\na\tO\ta\tO\ntry\tB-Code_Block\ttry\tO\ncatch\tI-Code_Block\tcatch\tO\nblock\tO\tblock\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ncaught\tO\tcaught\tO\nin\tO\tin\tO\ncatch\tB-Code_Block\tcatch\tO\nblock\tO\tblock\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ntry\tB-Code_Block\ttry\tO\ncatch\tI-Code_Block\tcatch\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nscenario\tO\tscenario\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\ntest\tO\ttest\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nby\tO\tby\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\ninside\tO\tinside\tO\nan\tO\tan\tO\nasp.net\tB-Library\tasp.net\tO\nmvc\tB-Algorithm\tmvc\tO\ncontroller\tO\tcontroller\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5184\tI-Code_Block\tQ_5184\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40975280\tO\t40975280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40975280/\tO\thttps://stackoverflow.com/questions/40975280/\tO\n\t\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nreproduce\tO\treproduce\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nanyway\tO\tanyway\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nJson\tB-Library_Function\tJson\tB-Code_Block\nmethod\tO\tmethod\tO\nimplementation\tO\timplementation\tO\nis\tO\tis\tO\nalready\tO\talready\tO\ncatching\tO\tcatching\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\ninternally\tO\tinternally\tO\nand\tO\tand\tO\nconverting\tO\tconverting\tO\nit\tO\tit\tO\nto\tO\tto\tO\nfull-blown\tO\tfull-blown\tO\nHTTP\tB-Error_Name\tHTTP\tO\n5xx\tI-Error_Name\t5xx\tO\nresponse\tI-Error_Name\tresponse\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nexception\tB-Library_Class\texception\tO\ncoming\tO\tcoming\tO\nout\tO\tout\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tB-Code_Block\nJson()\tB-Library_Function\tJson()\tI-Code_Block\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nchance\tO\tchance\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ncatch\tO\tcatch\tO\nthe\tO\tthe\tO\nexception\tB-Library_Class\texception\tO\nbecause\tO\tbecause\tO\n..\tO\t..\tO\n.\tO\t.\tO\nwhat\tO\twhat\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nGenerate\tO\tGenerate\tO\nan\tO\tan\tO\nHTTP\tB-Error_Name\tHTTP\tO\n5xx\tI-Error_Name\t5xx\tO\nresponse\tI-Error_Name\tresponse\tO\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nalready\tO\talready\tO\ndone\tO\tdone\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nMVC\tB-Algorithm\tMVC\tO\nframework\tO\tframework\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40975280\tO\t40975280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40975280/\tO\thttps://stackoverflow.com/questions/40975280/\tO\n\t\n\t\nTry\tO\tTry\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5860\tI-Code_Block\tA_5860\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25988688\tO\t25988688\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25988688/\tO\thttps://stackoverflow.com/questions/25988688/\tO\n\t\n\t\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nseparate\tO\tseparate\tO\nfollowing\tO\tfollowing\tO\ntext\tB-File_Type\ttext\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nits\tO\tits\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nformat\tO\tformat\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25988688\tO\t25988688\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25988688/\tO\thttps://stackoverflow.com/questions/25988688/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\ninput\tO\tinput\tO\ndata\tO\tdata\tO\nare\tO\tare\tO\nin\tO\tin\tO\nJSON\tB-File_Type\tJSON\tO\nformat\tO\tformat\tO\n,\tO\t,\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\na\tO\ta\tO\nC-based\tB-Language\tC-based\tO\nJSON\tB-File_Type\tJSON\tO\nparser\tO\tparser\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nJSON-C\tB-Library\tJSON-C\tO\nor\tO\tor\tO\nJansson\tB-Library\tJansson\tO\n.\tO\t.\tO\n\t\nParse\tO\tParse\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nobjects\tO\tobjects\tO\nfrom\tO\tfrom\tO\nJSON\tB-File_Type\tJSON\tO\nformat\tO\tformat\tO\nand\tO\tand\tO\ninto\tO\tinto\tO\nsome\tO\tsome\tO\nstruct\tB-Data_Structure\tstruct\tB-Code_Block\nof\tO\tof\tO\nyour\tO\tyour\tO\ndesign\tO\tdesign\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nstruct\tO\tstruct\tB-Code_Block\nelements\tO\telements\tO\nto\tO\tto\tO\nstandard\tO\tstandard\tO\noutput\tO\toutput\tO\n,\tO\t,\tO\nin\tO\tin\tO\na\tO\ta\tO\nformat\tO\tformat\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nchoosing\tO\tchoosing\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18634027\tO\t18634027\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18634027/\tO\thttps://stackoverflow.com/questions/18634027/\tO\n\t\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\nget\tO\tget\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchildren\tO\tchildren\tO\nin\tO\tin\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nColumn\tB-Data_Structure\tColumn\tO\nof\tO\tof\tO\na\tO\ta\tO\nGrid\tB-Data_Structure\tGrid\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nsome\tO\tsome\tO\ncalculations\tO\tcalculations\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nchildren\tO\tchildren\tO\ninside\tO\tinside\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nColumn\tB-Data_Structure\tColumn\tO\nin\tO\tin\tO\na\tO\ta\tO\nGrid\tB-Data_Structure\tGrid\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nway\tO\tway\tO\nof\tO\tof\tO\ngetting\tO\tgetting\tO\nall\tO\tall\tO\nchildren\tO\tchildren\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nColumn\tB-Data_Structure\tColumn\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAdam\tB-User_Name\tAdam\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18634027\tO\t18634027\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18634027/\tO\thttps://stackoverflow.com/questions/18634027/\tO\n\t\n\t\nDo\tO\tDo\tO\nsome\tO\tsome\tO\nthing\tO\tthing\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nexample\tO\texample\tO\n\t\nXAML\tB-Language\tXAML\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2445\tI-Code_Block\tA_2445\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE\tO\tCODE\tO\n(\tO\t(\tO\nc#\tB-Language\tc#\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2446\tI-Code_Block\tA_2446\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\noly\tO\toly\tO\nconstraint\tO\tconstraint\tO\nis\tO\tis\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\na\tO\ta\tO\ncheck\tO\tcheck\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nelements\tO\telements\tO\nu\tO\tu\tO\nplace\tO\tplace\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nGrid\tB-Data_Structure\tGrid\tO\n.\tO\t.\tO\n.\tO\t.\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\nthen\tO\tthen\tO\nmapping\tO\tmapping\tO\nthem\tO\tthem\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\ntrouble\tO\ttrouble\tO\n..\tO\t..\tO\n.\tO\t.\tO\nplease\tO\tplease\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\ndifferent\tO\tdifferent\tO\nelements\tO\telements\tO\nare\tO\tare\tO\npresent\tO\tpresent\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18634027\tO\t18634027\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18634027/\tO\thttps://stackoverflow.com/questions/18634027/\tO\n\t\n\t\nTry\tO\tTry\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2444\tI-Code_Block\tA_2444\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44383064\tO\t44383064\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44383064/\tO\thttps://stackoverflow.com/questions/44383064/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nread\tO\tread\tO\none\tO\tone\tO\npdf\tB-File_Type\tpdf\tO\nfile\tO\tfile\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nin\tO\tin\tO\nbelow\tO\tbelow\tO\nformat\tO\tformat\tO\n-\tO\t-\tO\n\t\ndata.pdf\tB-File_Name\tdata.pdf\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5766\tI-Code_Block\tQ_5766\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nusing\tO\tusing\tO\npython\tB-Library\tpython\tO\npandas\tI-Library\tpandas\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nany\tO\tany\tO\nsuccess\tO\tsuccess\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nActually\tO\tActually\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\ncsv\tB-File_Type\tcsv\tO\nformat\tO\tformat\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\n-\tO\t-\tO\n\t\noutput.csv\tB-File_Name\toutput.csv\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5767\tI-Code_Block\tQ_5767\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nalready\tO\talready\tO\ntried\tO\ttried\tO\nwith\tO\twith\tO\npdfminer\tB-Library\tpdfminer\tO\nbut\tO\tbut\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nany\tO\tany\tO\nsuccess\tO\tsuccess\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nhtml\tB-File_Type\thtml\tO\noutput\tO\toutput\tO\nonly\tO\tonly\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nblank\tO\tblank\tO\npages\tB-User_Interface_Element\tpages\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\ntheir\tO\ttheir\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nread\tO\tread\tO\npdf\tB-File_Type\tpdf\tO\nfile\tO\tfile\tO\nusing\tO\tusing\tO\npython\tB-Library\tpython\tO\npandas\tI-Library\tpandas\tO\nor\tO\tor\tO\ncan\tO\tcan\tO\nwe\tO\twe\tO\nconvert\tO\tconvert\tO\npdf\tB-File_Type\tpdf\tO\nto\tO\tto\tO\nany\tO\tany\tO\nformat\tO\tformat\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nread\tO\tread\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\npython\tB-Library\tpython\tO\npandas\tI-Library\tpandas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44383064\tO\t44383064\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44383064/\tO\thttps://stackoverflow.com/questions/44383064/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ntabula\tB-Library\ttabula\tO\ninstalled\tO\tinstalled\tO\nthen\tO\tthen\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6409\tI-Code_Block\tA_6409\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nprint\tO\tprint\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6410\tI-Code_Block\tA_6410\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35184450\tO\t35184450\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35184450/\tO\thttps://stackoverflow.com/questions/35184450/\tO\n\t\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nnon-graphic\tO\tnon-graphic\tO\n(\tO\t(\tO\ntext\tO\ttext\tO\n)\tO\t)\tO\nC++\tB-Language\tC++\tO\ngame\tO\tgame\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\nyour\tO\tyour\tO\ncharacter\tO\tcharacter\tO\nusing\tO\tusing\tO\nn\tO\tn\tO\n,\tB-Value\t,\tO\ns\tI-Value\ts\tO\n,\tO\t,\tO\nw\tB-Value\tw\tO\n,\tO\t,\tO\ne\tB-Value\te\tO\nand\tO\tand\tO\nevery\tO\tevery\tO\nlocation\tO\tlocation\tO\nis\tO\tis\tO\ndescribed\tO\tdescribed\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nLocations\tO\tLocations\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\narray\tB-Data_Structure\tarray\tO\nof\tO\tof\tO\nan\tO\tan\tO\nobjects\tO\tobjects\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nlocation\tO\tlocation\tO\ndescription\tO\tdescription\tO\nand\tO\tand\tO\nother\tO\tother\tO\ninformation\tO\tinformation\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\narray\tB-Data_Structure\tarray\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nstarted\tO\tstarted\tO\nmaking\tO\tmaking\tO\nthis\tO\tthis\tO\ngame\tO\tgame\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\narrays\tB-Data_Structure\tarrays\tO\nwith\tO\twith\tO\ndimensions\tO\tdimensions\tO\nx\tB-Variable_Name\tx\tO\n-\tO\t-\tO\nfrom\tO\tfrom\tO\n-100\tB-Value\t-100\tO\nto\tO\tto\tO\n100\tB-Value\t100\tO\nand\tO\tand\tO\nz\tB-Variable_Name\tz\tO\n-\tO\t-\tO\nfrom\tO\tfrom\tO\n-100\tB-Value\t-100\tO\nto\tO\tto\tO\n100\tB-Value\t100\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nare\tO\tare\tO\nthere\tO\tthere\tO\nother\tO\tother\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\na\tO\ta\tO\n[\tB-Value\t[\tO\n0\tI-Value\t0\tO\n]\tI-Value\t]\tO\n[\tB-Value\t[\tO\n0\tI-Value\t0\tO\n]\tI-Value\t]\tO\nposition\tO\tposition\tO\nin\tO\tin\tO\none\tO\tone\tO\nof\tO\tof\tO\n4\tO\t4\tO\ncorners\tO\tcorners\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmiddle\tO\tmiddle\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35184450\tO\t35184450\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35184450/\tO\thttps://stackoverflow.com/questions/35184450/\tO\n\t\n\t\nOne\tO\tOne\tO\ncommon\tO\tcommon\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\nrather\tO\trather\tO\nsketchy\tO\tsketchy\tO\n)\tO\t)\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nexample\tO\texample\tO\nfor\tO\tfor\tO\n21\tO\t21\tO\nx\tO\tx\tO\n21\tO\t21\tO\nboard\tO\tboard\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5037\tI-Code_Block\tA_5037\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nnormal\tO\tnormal\tO\n21x21\tO\t21x21\tO\narray\tB-Data_Structure\tarray\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nalso\tO\talso\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\npointer\tB-Data_Type\tpointer\tO\nto\tO\tto\tO\na\tO\ta\tO\nfake\tO\tfake\tO\narray\tB-Data_Structure\tarray\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ninitialised\tO\tinitialised\tO\nto\tO\tto\tO\npoint\tO\tpoint\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ncentre\tO\tcentre\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nreal\tO\treal\tO\narray\tB-Data_Structure\tarray\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nfake\tO\tfake\tO\npointer\tB-Data_Type\tpointer\tO\nas\tO\tas\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwere\tO\twere\tO\na\tO\ta\tO\nreal\tO\treal\tO\narray\tB-Data_Structure\tarray\tO\nwith\tO\twith\tO\nindices\tO\tindices\tO\nranging\tO\tranging\tO\nfrom\tO\tfrom\tO\n-10\tB-Value\t-10\tO\nto\tO\tto\tO\n+10\tB-Value\t+10\tO\n(\tO\t(\tO\ninclusive\tO\tinclusive\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nLIVE\tO\tLIVE\tB-Keyboard_IP\nDEMO\tO\tDEMO\tI-Keyboard_IP\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35184450\tO\t35184450\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35184450/\tO\thttps://stackoverflow.com/questions/35184450/\tO\n\t\n\t\nAn\tO\tAn\tO\nArray\tB-Data_Structure\tArray\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\nonly\tO\tonly\tO\npositive\tO\tpositive\tO\nindexes\tO\tindexes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5032\tI-Code_Block\tA_5032\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ndefine\tO\tdefine\tO\na\tO\ta\tO\nFunktion\tO\tFunktion\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\nyour\tO\tyour\tO\ndesired\tO\tdesired\tO\nLocation\tB-Class_Name\tLocation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5033\tI-Code_Block\tA_5033\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nLocation\tB-Class_Name\tLocation\tO\nby\tO\tby\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\ngetLocation(x,y)\tB-Function_Name\tgetLocation(x,y)\tB-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13596623\tO\t13596623\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13596623/\tO\thttps://stackoverflow.com/questions/13596623/\tO\n\t\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\na\tO\ta\tO\nfair\tO\tfair\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nsupport\tO\tsupport\tO\n,\tO\t,\tO\nthrough\tO\tthrough\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nvarious\tO\tvarious\tO\nRevolution\tO\tRevolution\tO\nR\tB-Language\tR\tO\nmodules\tO\tmodules\tO\n,\tO\t,\tO\nin\tO\tin\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nbringing\tO\tbringing\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\ndataset\tO\tdataset\tO\ninto\tO\tinto\tO\nR\tB-Language\tR\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\ntoo\tO\ttoo\tO\nlarge\tO\tlarge\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\nRAM\tB-Device\tRAM\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\ndata\tO\tdata\tO\nsets\tO\tsets\tO\nbeing\tO\tbeing\tO\ncreated\tO\tcreated\tO\nwithin\tO\twithin\tO\nR\tB-Language\tR\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ntoo\tO\ttoo\tO\nbig\tO\tbig\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nin\tO\tin\tO\nRAM\tB-Device\tRAM\tO\n,\tO\t,\tO\nbeyond\tO\tbeyond\tO\nsimply\tO\tsimply\tO\n(\tO\t(\tO\nand\tO\tand\tO\nby\tO\tby\tO\nhand\tO\thand\tO\n)\tO\t)\tO\nbreaking\tO\tbreaking\tO\nthe\tO\tthe\tO\ncreation\tO\tcreation\tO\nstep\tO\tstep\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\nRAM-sized\tB-Device\tRAM-sized\tO\nchunks\tO\tchunks\tO\n,\tO\t,\tO\nwriting\tO\twriting\tO\nthat\tO\tthat\tO\nchunk\tO\tchunk\tO\nto\tO\tto\tO\ndisk\tB-Device\tdisk\tO\n,\tO\t,\tO\nclearing\tO\tclearing\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncontinuing\tO\tcontinuing\tO\non\tO\ton\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\njust\tO\tjust\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\nsimulation\tO\tsimulation\tO\n,\tO\t,\tO\nor\tO\tor\tO\nusing\tO\tusing\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nSurvSplit()\tB-Library_Function\tSurvSplit()\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nobservation\tO\tobservation\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsurvival\tO\tsurvival\tO\ntime\tO\ttime\tO\nfrom\tO\tfrom\tO\n1\tB-Value\t1\tO\nto\tO\tto\tO\nN\tB-Variable_Name\tN\tO\nand\tO\tand\tO\nbreak\tO\tbreak\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nN\tB-Variable_Name\tN\tO\nseperate\tO\tseperate\tO\nobservations\tO\tobservations\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13596623\tO\t13596623\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13596623/\tO\thttps://stackoverflow.com/questions/13596623/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nR\tB-Language\tR\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nyour\tO\tyour\tO\nanalysis\tO\tanalysis\tO\non\tO\ton\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nchunk\tO\tchunk\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nonly\tO\tonly\tO\ncreate\tO\tcreate\tO\nas\tO\tas\tO\nlarge\tO\tlarge\tO\nof\tO\tof\tO\na\tO\ta\tO\nchunk\tO\tchunk\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\nanalysis\tO\tanalysis\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45099328\tO\t45099328\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45099328/\tO\thttps://stackoverflow.com/questions/45099328/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread\tO\tread\tO\nonly\tO\tonly\tO\ncolum\tB-Data_Structure\tcolum\tO\nwith\tO\twith\tO\nred\tO\tred\tO\nlabel\tO\tlabel\tO\nin\tO\tin\tO\na\tO\ta\tO\ncsv\tB-File_Type\tcsv\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nphp\tB-Language\tphp\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nor\tO\tor\tO\na\tO\ta\tO\nsymfony\tB-Library\tsymfony\tO\nbundle\tO\tbundle\tO\n?\tO\t?\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nreading\tO\treading\tO\ncsv\tB-File_Type\tcsv\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\nfgetcsv\tB-Library_Function\tfgetcsv\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5874\tI-Code_Block\tQ_5874\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nlabel\tO\tlabel\tO\n's\tO\t's\tO\ncolor.Is\tO\tcolor.Is\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ncolor\tO\tcolor\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncsv\tB-File_Type\tcsv\tO\nfiles\tO\tfiles\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45099328\tO\t45099328\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45099328/\tO\thttps://stackoverflow.com/questions/45099328/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nphp\tB-Language\tphp\tO\nclass\tO\tclass\tO\nto\tO\tto\tO\nread\tO\tread\tO\ncsv\tB-File_Type\tcsv\tO\nfiles\tO\tfiles\tO\n:\tO\t:\tO\nhttps://git.webworks-nuernberg.de/webworks-nuernberg/parsecsv\tO\thttps://git.webworks-nuernberg.de/webworks-nuernberg/parsecsv\tO\n\t\nBut\tO\tBut\tO\ncweiske\tB-User_Name\tcweiske\tO\nis\tO\tis\tO\nright\tO\tright\tO\n,\tO\t,\tO\ncsv\tB-File_Type\tcsv\tO\nhas\tO\thas\tO\nn't\tO\tn't\tO\nany\tO\tany\tO\nformatting\tO\tformatting\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45099328\tO\t45099328\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45099328/\tO\thttps://stackoverflow.com/questions/45099328/\tO\n\t\n\t\nCSV\tB-File_Type\tCSV\tO\nfiles\tO\tfiles\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nformatting\tO\tformatting\tO\n.\tO\t.\tO\n\t\n.xls\tB-File_Type\t.xls\tB-Code_Block\nor\tO\tor\tO\n.odt\tB-File_Type\t.odt\tB-Code_Block\nfiles\tO\tfiles\tO\nhave\tO\thave\tO\nformatting\tO\tformatting\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nCSV\tB-File_Type\tCSV\tO\ndefinitely\tO\tdefinitely\tO\nnot\tO\tnot\tO\n-\tO\t-\tO\nonly\tO\tonly\tO\ndata\tO\tdata\tO\nare\tO\tare\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nLook\tO\tLook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\na\tO\ta\tO\ntext\tB-Application\ttext\tO\neditor\tI-Application\teditor\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35938811\tO\t35938811\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35938811/\tO\thttps://stackoverflow.com/questions/35938811/\tO\n\t\n\t\nWhy\tO\tWhy\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\ninput\tO\tinput\tO\nelement\tO\telement\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4400\tI-Code_Block\tQ_4400\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\ndate\tO\tdate\tO\nto\tO\tto\tO\n\"\tB-Code_Block\t\"\tO\nnew\tI-Code_Block\tnew\tO\nDate(2016,\tI-Code_Block\tDate(2016,\tO\n4,\tI-Code_Block\t4,\tO\n1)\tI-Code_Block\t1)\tO\n\"\tI-Code_Block\t\"\tO\nvalue\tO\tvalue\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nappears\tO\tappears\tO\nin\tO\tin\tO\nall\tO\tall\tO\nbrowsers\tB-Application\tbrowsers\tO\n.\tO\t.\tO\n\t\nLink\tO\tLink\tO\nto\tO\tto\tO\nJSbin\tB-Application\tJSbin\tO\nexample\tO\texample\tO\nhttp://jsbin.com/catolumifa/edit?html,output\tO\thttp://jsbin.com/catolumifa/edit?html,output\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35938811\tO\t35938811\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35938811/\tO\thttps://stackoverflow.com/questions/35938811/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nset\tO\tset\tO\npast\tO\tpast\tO\ndate\tO\tdate\tO\n\"\tB-Value\t\"\tO\n2016\tI-Value\t2016\tO\n,\tI-Value\t,\tO\n1\tI-Value\t1\tO\n,\tI-Value\t,\tO\n1\tI-Value\t1\tO\n\"\tI-Value\t\"\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nminimum\tO\tminimum\tO\ndate\tO\tdate\tO\nas\tO\tas\tO\ncurrent\tB-Value\tcurrent\tO\ndate\tI-Value\tdate\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nset\tO\tset\tO\nolder\tO\tolder\tO\ndate\tO\tdate\tO\nthan\tO\tthan\tO\ntoday\tO\ttoday\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nplease\tO\tplease\tO\nremove\tO\tremove\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nlines\tO\tlines\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5131\tI-Code_Block\tA_5131\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37598575\tO\t37598575\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37598575/\tO\thttps://stackoverflow.com/questions/37598575/\tO\n\t\n\t\nCan\tO\tCan\tO\n<meta>\tB-HTML_XML_Tag\t<meta>\tB-Code_Block\ntags\tO\ttags\tO\ngo\tO\tgo\tO\nin\tO\tin\tO\nexternal\tO\texternal\tO\nCSS\tB-Language\tCSS\tO\nsheets,\tO\tsheets,\tO\nand\tO\tand\tO\nbe\tO\tbe\tO\nlinked\tO\tlinked\tO\nto\tO\tto\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n<link>\tB-HTML_XML_Tag\t<link>\tB-Code_Block\ntags\tO\ttags\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nCSS\tB-Language\tCSS\tO\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4717\tI-Code_Block\tQ_4717\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCSS\tB-Language\tCSS\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4718\tI-Code_Block\tQ_4718\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhy\tO\tWhy\tO\nthe\tO\tthe\tO\ndown\tO\tdown\tO\nvote\tO\tvote\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nconsider\tO\tconsider\tO\nthis\tO\tthis\tO\nwell\tO\twell\tO\nasked\tO\tasked\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nimproved\tO\timproved\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nsuggest\tO\tsuggest\tO\nhow\tO\thow\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nup\tO\tup\tO\nvote\tO\tvote\tO\n!\tO\t!\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37598575\tO\t37598575\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37598575/\tO\thttps://stackoverflow.com/questions/37598575/\tO\n\t\n\t\nMeta\tO\tMeta\tO\ntags\tO\ttags\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nstyles\tO\tstyles\tO\n,\tO\t,\tO\nand\tO\tand\tO\ntherefore\tO\ttherefore\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nput\tO\tput\tO\nin\tO\tin\tO\nstylesheets\tO\tstylesheets\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23639002\tO\t23639002\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23639002/\tO\thttps://stackoverflow.com/questions/23639002/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nHW\tO\tHW\tO\nquestion\tO\tquestion\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nMultivariate\tO\tMultivariate\tO\nAnalysis\tO\tAnalysis\tO\nClass\tO\tClass\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2620\tI-Code_Block\tQ_2620\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPROC\tB-Data_Structure\tPROC\tO\nPLOT\tI-Data_Structure\tPLOT\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\ngenerating\tO\tgenerating\tO\na\tO\ta\tO\nhuge\tO\thuge\tO\nchart\tB-Data_Structure\tchart\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\n5-10\tO\t5-10\tO\npages\tO\tpages\tO\ntall\tO\ttall\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nridiculous\tO\tridiculous\tO\nvertical\tO\tvertical\tO\nscaling\tO\tscaling\tO\n(\tO\t(\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n.05\tB-Value\t.05\tO\n=\tO\t=\tO\nan\tO\tan\tO\ninch+\tO\tinch+\tO\nof\tO\tof\tO\ncomputer\tO\tcomputer\tO\nscreen\tO\tscreen\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ntoo\tO\ttoo\tO\nbig\tO\tbig\tO\nto\tO\tto\tO\nput\tO\tput\tO\nin\tO\tin\tO\na\tO\ta\tO\nword\tO\tword\tO\ndocument\tO\tdocument\tO\nto\tO\tto\tO\nhand\tO\thand\tO\nin\tO\tin\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\ninformative\tO\tinformative\tO\nas\tO\tas\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nSAS\tB-Application\tSAS\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlove\tO\tlove\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nscaled\tO\tscaled\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\na\tO\ta\tO\n5\tB-Value\t5\tO\n\"\tI-Value\t\"\tO\nx\tI-Value\tx\tO\n5\tI-Value\t5\tO\n\"\tI-Value\t\"\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n...\tO\t...\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\n've\tO\t've\tO\na\tO\ta\tO\nworking\tO\tworking\tO\nknowledge\tO\tknowledge\tO\nof\tO\tof\tO\nSAS\tB-Application\tSAS\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nfar\tO\tfar\tO\nfrom\tO\tfrom\tO\nskilled\tO\tskilled\tO\nat\tO\tat\tO\nit\tO\tit\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23639002\tO\t23639002\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23639002/\tO\thttps://stackoverflow.com/questions/23639002/\tO\n\t\n\t\nTry\tO\tTry\tO\nusing\tO\tusing\tO\nods\tB-Library_Function\tods\tB-Code_Block\ngraphics\tI-Library_Function\tgraphics\tI-Code_Block\nand\tO\tand\tO\nPROC\tB-Library_Function\tPROC\tB-Code_Block\nSGPLOT\tI-Library_Function\tSGPLOT\tI-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3233\tI-Code_Block\tA_3233\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8770235\tO\t8770235\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8770235/\tO\thttps://stackoverflow.com/questions/8770235/\tO\n\t\n\t\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nmy\tO\tmy\tO\nmodels\tO\tmodels\tO\nand\tO\tand\tO\ntheir\tO\ttheir\tO\nCRUD\tB-Library\tCRUD\tO\noperations\tO\toperations\tO\nthrough\tO\tthrough\tO\nhandling\tO\thandling\tO\npost_save\tB-Library_Function\tpost_save\tO\n,\tO\t,\tO\ndelete\tB-Library_Function\tdelete\tO\nand\tO\tand\tO\ninit\tB-Library_Function\tinit\tO\nsignals\tI-Library_Function\tsignals\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsave\tO\tsave\tO\nentry\tO\tentry\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nDatabase\tO\tDatabase\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\noperation\tO\toperation\tO\nhandled\tO\thandled\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_734\tI-Code_Block\tQ_734\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nthe\tO\tthe\tO\nfunny\tO\tfunny\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nrecursion\tO\trecursion\tO\nof\tO\tof\tO\nsaves\tB-Library_Function\tsaves\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nmodel\tO\tmodel\tO\nCRUD_Storage\tB-Library_Function\tCRUD_Storage\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nit\tO\tit\tO\nsending\tO\tsending\tO\nsignals\tO\tsignals\tO\nlike\tO\tlike\tO\npre(post)init\tB-Library_Function\tpre(post)init\tO\n,\tO\t,\tO\ndelete\tB-Library_Function\tdelete\tO\n,\tO\t,\tO\nsave\tO\tsave\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8770235\tO\t8770235\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8770235/\tO\thttps://stackoverflow.com/questions/8770235/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nDRY\tO\tDRY\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndismissing\tO\tdismissing\tO\nsignals\tO\tsignals\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndismiss\tO\tdismiss\tO\na\tO\ta\tO\nsignal\tO\tsignal\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nrecursion\tO\trecursion\tO\n,\tO\t,\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nis\tO\tis\tO\nto\tO\tto\tO\nset\tO\tset\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ninstance\tO\tinstance\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nupcoming\tO\tupcoming\tO\nsignals\tO\tsignals\tO\nfiring\tO\tfiring\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ndecorator\tO\tdecorator\tO\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\ninstance\tO\tinstance\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nskip_signal\tB-Library_Function\tskip_signal\tO\n'\tO\t'\tO\nattribute\tO\tattribute\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nso\tO\tso\tO\nprevents\tO\tprevents\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nfrom\tO\tfrom\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3761\tI-Code_Block\tA_3761\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWe\tO\tWe\tO\ncan\tO\tcan\tO\nnow\tO\tnow\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3762\tI-Code_Block\tA_3762\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHope\tO\tHope\tO\nThis\tO\tThis\tO\nhelps\tO\thelps\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8770235\tO\t8770235\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8770235/\tO\thttps://stackoverflow.com/questions/8770235/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nprevent\tO\tprevent\tO\nDjango\tB-Library\tDjango\tO\nfrom\tO\tfrom\tO\nsending\tO\tsending\tO\nthose\tO\tthose\tO\nsignals\tO\tsignals\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadapt\tO\tadapt\tO\nyour\tO\tyour\tO\nhandler\tO\thandler\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nlog\tO\tlog\tO\nsaves\tO\tsaves\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nCRUD_Storage\tB-Library_Function\tCRUD_Storage\tB-Code_Block\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1071\tI-Code_Block\tA_1071\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16060005\tO\t16060005\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16060005/\tO\thttps://stackoverflow.com/questions/16060005/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nan\tO\tan\tO\ninternal\tO\tinternal\tO\nhelpdesk\tO\thelpdesk\tO\n.\tO\t.\tO\n\t\nEmails\tO\tEmails\tO\naddress\tO\taddress\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhelpdesk\tO\thelpdesk\tO\nappear\tO\tappear\tO\nin\tO\tin\tO\na\tO\ta\tO\nNotes\tB-User_Interface_Element\tNotes\tO\nView\tI-User_Interface_Element\tView\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nin\tO\tin\tO\nXPages\tB-Application\tXPages\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ntext\tB-User_Interface_Element\ttext\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nany\tO\tany\tO\ninserted\tO\tinserted\tO\nimages\tB-User_Interface_Element\timages\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ntext\tB-User_Interface_Element\ttext\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nlist\tO\tlist\tO\nthe\tO\tthe\tO\nattachments\tO\tattachments\tO\nas\tO\tas\tO\nexternal\tO\texternal\tO\nlinks\tO\tlinks\tO\n(\tO\t(\tO\ncourtesy\tO\tcourtesy\tO\nof\tO\tof\tO\nhttp://techdriveactive.blogspot.co.uk/2012/11/open-attachments-in-xpage-in-client.html\tO\thttp://techdriveactive.blogspot.co.uk/2012/11/open-attachments-in-xpage-in-client.html\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nhandle\tO\thandle\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nimages\tB-User_Interface_Element\timages\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16060005\tO\t16060005\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16060005/\tO\thttps://stackoverflow.com/questions/16060005/\tO\n\t\n\t\nTo\tO\tTo\tO\nyou\tO\tyou\tO\nHelpDeskOpenDoc.xsp\tB-File_Name\tHelpDeskOpenDoc.xsp\tO\nXPage\tB-Application\tXPage\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nRich\tB-User_Interface_Element\tRich\tO\nText\tI-User_Interface_Element\tText\tO\ncontrol\tI-User_Interface_Element\tcontrol\tO\nand\tO\tand\tO\nbind\tO\tbind\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nRich\tB-User_Interface_Element\tRich\tO\nText\tI-User_Interface_Element\tText\tO\nField\tI-User_Interface_Element\tField\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nimages\tB-User_Interface_Element\timages\tO\nand\tO\tand\tO\nother\tO\tother\tO\nrich\tO\trich\tO\ncontent\tO\tcontent\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3057\tI-Code_Block\tA_3057\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16060005\tO\t16060005\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16060005/\tO\thttps://stackoverflow.com/questions/16060005/\tO\n\t\n\t\nOne\tO\tOne\tO\nway\tO\tway\tO\naround\tO\taround\tO\nthat\tO\tthat\tO\nchallenge\tO\tchallenge\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nDojo\tB-Library_Class\tDojo\tO\nContentPane\tI-Library_Class\tContentPane\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nhas\tO\thas\tO\na\tO\ta\tO\nhref\tB-Library_Variable\thref\tO\nattribute\tO\tattribute\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nurl\tO\turl\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nthen\tO\tthen\tO\ncan\tO\tcan\tO\npoint\tO\tpoint\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nrendered\tO\trendered\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nclassic\tO\tclassic\tO\nengine\tO\tengine\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_2076\tI-Code_Block\tA_2076\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nXPiNC\tB-Application\tXPiNC\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44890740\tO\t44890740\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44890740/\tO\thttps://stackoverflow.com/questions/44890740/\tO\n\t\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nimplementing\tO\timplementing\tO\nthis\tO\tthis\tO\ntick\tO\ttick\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\na\tO\ta\tO\nWin\tB-Operating_System\tWin\tO\n8\tB-Version\t8\tO\nWAMP\tB-Application\tWAMP\tO\nserver\tI-Application\tserver\tO\nrunning\tO\trunning\tO\nPHP\tB-Language\tPHP\tO\n7.1\tB-Version\t7.1\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5846\tI-Code_Block\tQ_5846\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nend\tO\tend\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nprocess\tO\tprocess\tO\nthat\tO\tthat\tO\nseem\tO\tseem\tO\nmore\tO\tmore\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\ninfinite\tO\tinfinite\tO\nloop\tO\tloop\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nMean\tO\tMean\tO\nwhile\tO\twhile\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nworks\tO\tworks\tO\non\tO\ton\tO\na\tO\ta\tO\nlive\tO\tlive\tO\nsever\tB-Device\tsever\tO\nrunning\tO\trunning\tO\nPHP\tB-Language\tPHP\tO\n7.1\tB-Version\t7.1\tO\nand\tO\tand\tO\nalso\tO\talso\tO\non\tO\ton\tO\na\tO\ta\tO\nWIN\tB-Operating_System\tWIN\tO\n8\tB-Version\t8\tO\nWAMP\tB-Application\tWAMP\tO\nserver\tI-Application\tserver\tO\nrunning\tO\trunning\tO\nPHP\tB-Language\tPHP\tO\n5.5\tB-Version\t5.5\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26851123\tO\t26851123\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26851123/\tO\thttps://stackoverflow.com/questions/26851123/\tO\n\t\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\nreally\tO\treally\tO\nsorry\tO\tsorry\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nduplicate\tO\tduplicate\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\ncoz\tO\tcoz\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nsearched\tO\tsearched\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nbut\tO\tbut\tO\nfound\tO\tfound\tO\nnothing\tO\tnothing\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nnotification\tB-User_Interface_Element\tnotification\tO\non\tO\ton\tO\nclick\tO\tclick\tO\nof\tO\tof\tO\ncancel\tB-User_Interface_Element\tcancel\tO\n-\tO\t-\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nsomewhere\tO\tsomewhere\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\n.cancel()\tB-Library_Function\t.cancel()\tO\nmethod\tO\tmethod\tO\nbut\tO\tbut\tO\nwhere\tO\twhere\tO\nshould\tO\tshould\tO\ni\tO\ti\tO\nmake\tO\tmake\tO\nthat\tO\tthat\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\none\tO\tone\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\naccept\tB-User_Interface_Element\taccept\tO\nor\tO\tor\tO\ncancel\tB-User_Interface_Element\tcancel\tO\nthe\tO\tthe\tO\nintent\tB-Library_Class\tintent\tO\nvalues\tO\tvalues\tO\ncomes\tO\tcomes\tO\nsame\tO\tsame\tO\nonly\tO\tonly\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\nNotifications\tO\tNotifications\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlogcat\tO\tlogcat\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nnotification\tB-User_Interface_Element\tnotification\tO\ncreator\tO\tcreator\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3073\tI-Code_Block\tQ_3073\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhile\tO\tWhile\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nfile\tO\tfile\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nintent\tB-Library_Class\tintent\tO\nreceiver\tO\treceiver\tO\nit\tO\tit\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3074\tI-Code_Block\tQ_3074\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26851123\tO\t26851123\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26851123/\tO\thttps://stackoverflow.com/questions/26851123/\tO\n\t\n\t\n1)\tO\t1)\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nnotification\tB-User_Interface_Element\tnotification\tO\non\tO\ton\tO\ncancel\tB-User_Interface_Element\tcancel\tO\nclick\tO\tclick\tO\n:\tO\t:\tO\n\t\nadd\tO\tadd\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nreciever\tO\treciever\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3706\tI-Code_Block\tA_3706\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\nused\tO\tused\tO\n\"\tB-Value\t\"\tO\n1\tI-Value\t1\tO\n\"\tI-Value\t\"\tO\nas\tO\tas\tO\nnotificationId\tB-Variable_Name\tnotificationId\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nmNotificationManager\tB-Code_Block\tmNotificationManager\tB-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\nnotify(1\tI-Code_Block\tnotify(1\tI-Code_Block\n,\tI-Code_Block\t,\tI-Code_Block\nmBuilder\tI-Code_Block\tmBuilder\tI-Code_Block\n.\tI-Code_Block\t.\tI-Code_Block\nbuild\tI-Code_Block\tbuild\tI-Code_Block\n())\tI-Code_Block\t())\tI-Code_Block\n;)\tI-Code_Block\t;)\tI-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nvia\tO\tvia\tO\nputExtra\tB-Library_Function\tputExtra\tO\n()\tI-Library_Function\t()\tO\nand\tO\tand\tO\nretrieve\tO\tretrieve\tO\nit\tO\tit\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nreceiver\tO\treceiver\tO\n.\tO\t.\tO\n\t\n2)\tO\t2)\tO\nsorry\tO\tsorry\tO\n,\tO\t,\tO\ni\tO\ti\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\ncan\tO\tcan\tO\nyou\tO\tyou\tO\nexplain\tO\texplain\tO\nmore\tO\tmore\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10386394\tO\t10386394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10386394/\tO\thttps://stackoverflow.com/questions/10386394/\tO\n\t\n\t\nIt\tO\tIt\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nincoming\tO\tincoming\tO\ntelephone\tB-User_Interface_Element\ttelephone\tO\ncall\tI-User_Interface_Element\tcall\tO\nscreen\tI-User_Interface_Element\tscreen\tO\nbeing\tO\tbeing\tO\nshown\tO\tshown\tO\nover\tO\tover\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nwe\tO\twe\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\naccept\tO\taccept\tO\ncall\tO\tcall\tO\n-\tO\t-\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\ndeactivated\tO\tdeactivated\tO\n,\tO\t,\tO\nso\tO\tso\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nAPI\tB-Library\tAPI\tO\nmethod\tO\tmethod\tO\nor\tO\tor\tO\nmaybe\tO\tmaybe\tO\nsome\tO\tsome\tO\nworkarounds\tO\tworkarounds\tO\nlike\tO\tlike\tO\nscreenshoting\tO\tscreenshoting\tO\nand\tO\tand\tO\nverifying\tO\tverifying\tO\nby\tO\tby\tO\npixel\tO\tpixel\tO\n?\tO\t?\tO\n\t\n:-)\tO\t:-)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10386394\tO\t10386394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10386394/\tO\thttps://stackoverflow.com/questions/10386394/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nreceiving\tO\treceiving\tO\nan\tO\tan\tO\nincoming\tO\tincoming\tO\ntelephone\tB-Device\ttelephone\tO\ncall\tO\tcall\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nRootFrame.Obscured\tB-Library_Class\tRootFrame.Obscured\tO\nevent\tO\tevent\tO\nas\tO\tas\tO\ndescribed\tO\tdescribed\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttp://www.wintellect.com/CS/blogs/jprosise/archive/2011/02/11/silverlight-for-windows-phone-programming-tip-6.aspx\tO\thttp://www.wintellect.com/CS/blogs/jprosise/archive/2011/02/11/silverlight-for-windows-phone-programming-tip-6.aspx\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37557116\tO\t37557116\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37557116/\tO\thttps://stackoverflow.com/questions/37557116/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nCSV\tB-File_Type\tCSV\tO\nimport\tO\timport\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nCOPY\tB-Library_Function\tCOPY\tB-Code_Block\ncommand\tO\tcommand\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nincludes\tO\tincludes\tO\na\tO\ta\tO\nguillemet\tO\tguillemet\tO\n(Âť)\tB-Code_Block\t(Âť)\tB-Code_Block\n.\tO\t.\tO\n\t\nRedshift\tB-Application\tRedshift\tO\ncomplains\tO\tcomplains\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\ntoo\tO\ttoo\tO\nlong\tO\tlong\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nvarchar\tB-Variable_Name\tvarchar\tB-Code_Block\ncolumn\tB-Data_Structure\tcolumn\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ndefined\tO\tdefined\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\"\tB-Value\t\"\tO\nLoads\tI-Value\tLoads\tO\n\"\tI-Value\t\"\tO\ntab\tB-User_Interface_Element\ttab\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nRedshift\tB-Application\tRedshift\tO\nGUI\tI-Application\tGUI\tO\ndisplays\tO\tdisplays\tO\nthis\tO\tthis\tO\ncharacter\tO\tcharacter\tO\nas\tO\tas\tO\ntwo\tO\ttwo\tO\ndots\tO\tdots\tO\n:\tO\t:\tO\n.\tB-Value\t.\tB-Code_Block\n.\tI-Value\t.\tI-Code_Block\n-\tO\t-\tO\nhad\tO\thad\tO\nit\tO\tit\tO\nbeen\tO\tbeen\tO\ntreated\tO\ttreated\tO\nas\tO\tas\tO\none\tO\tone\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nfit\tO\tfit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nvarchar\tB-Variable_Name\tvarchar\tB-Code_Block\ncolumn\tB-Data_Structure\tcolumn\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nclear\tO\tclear\tO\nwhether\tO\twhether\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nconversion\tO\tconversion\tO\nerror\tO\terror\tO\noccurring\tO\toccurring\tO\nor\tO\tor\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ndisplay\tO\tdisplay\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nplain\tO\tplain\tO\nINSERTs\tB-Code_Block\tINSERTs\tB-Code_Block\nI\tO\tI\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\nstrange\tO\tstrange\tO\nbehavior\tO\tbehavior\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4712\tI-Code_Block\tQ_4712\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n3\tO\t3\tO\ncharacters\tO\tcharacters\tO\ntreated\tO\ttreated\tO\nas\tO\tas\tO\n4\tO\t4\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4713\tI-Code_Block\tQ_4713\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nchar_length\tB-Library_Function\tchar_length\tB-Code_Block\nreturn\tO\treturn\tO\n2\tB-Value\t2\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4714\tI-Code_Block\tQ_4714\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nchecked\tO\tchecked\tO\nthe\tO\tthe\tO\nclient\tO\tclient\tO\nencoding\tO\tencoding\tO\nand\tO\tand\tO\ndatabase\tO\tdatabase\tO\nencodings\tO\tencodings\tO\nand\tO\tand\tO\nthose\tO\tthose\tO\nall\tO\tall\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nUTF8/UNICODE\tO\tUTF8/UNICODE\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37557116\tO\t37557116\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37557116/\tO\thttps://stackoverflow.com/questions/37557116/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nincrease\tO\tincrease\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nvarchar\tB-Variable_Name\tvarchar\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nMultibyte\tO\tMultibyte\tO\ncharacters\tB-Data_Type\tcharacters\tO\nuse\tO\tuse\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\none\tO\tone\tO\ncharacter\tB-Data_Type\tcharacter\tO\nand\tO\tand\tO\nlength\tO\tlength\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\nvarchar\tB-Variable_Name\tvarchar\tO\nfield\tO\tfield\tO\nare\tO\tare\tO\nbyte\tO\tbyte\tO\nbased\tO\tbased\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nspecial\tO\tspecial\tO\nchar\tB-Data_Type\tchar\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\ntaking\tO\ttaking\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\na\tO\ta\tO\nbyte\tO\tbyte\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\nstill\tO\tstill\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndoc\tO\tdoc\tO\npage\tO\tpage\tO\nfor\tO\tfor\tO\nRedshift\tB-Application\tRedshift\tO\nbelow\tO\tbelow\tO\n,\tO\t,\tO\n\t\nhttp://docs.aws.amazon.com/redshift/latest/dg/multi-byte-character-load-errors.html\tO\thttp://docs.aws.amazon.com/redshift/latest/dg/multi-byte-character-load-errors.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26904392\tO\t26904392\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26904392/\tO\thttps://stackoverflow.com/questions/26904392/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3083\tI-Code_Block\tQ_3083\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nrow\tB-Data_Structure\trow\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbig\tO\tbig\tO\nlist\tB-Data_Structure\tlist\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nclosest\tO\tclosest\tO\n'\tO\t'\tO\nrow\tB-Data_Structure\trow\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlittle\tO\tlittle\tO\nlist\tB-Data_Structure\tlist\tO\n,\tO\t,\tO\nas\tO\tas\tO\ndefined\tO\tdefined\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\neuclidean\tO\teuclidean\tO\nnorm\tO\tnorm\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nsum\tO\tsum\tO\nof\tO\tof\tO\nsquared\tO\tsquared\tO\ndistances\tO\tdistances\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nk\tB-Code_Block\tk\tO\n=3\tI-Code_Block\t=3\tO\ndimension\tO\tdimension\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\ntwo\tO\ttwo\tO\nloops\tO\tloops\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthere\tO\tthere\tO\nought\tO\tought\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\nbuilt\tO\tbuilt\tO\nin\tO\tin\tO\nmatrix\tB-Data_Structure\tmatrix\tO\noperations\tO\toperations\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26904392\tO\t26904392\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26904392/\tO\thttps://stackoverflow.com/questions/26904392/\tO\n\t\n\t\nApproach\tO\tApproach\tO\n#1\tO\t#1\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbuilt\tO\tbuilt\tO\nin\tO\tin\tO\nMATLAB\tB-Language\tMATLAB\tO\nfunction\tO\tfunction\tO\npdist2\tB-Library_Function\tpdist2\tB-Code_Block\nwhich\tO\twhich\tO\nfinds\tO\tfinds\tO\n\"\tO\t\"\tB-Code_Block\nPairwise\tO\tPairwise\tI-Code_Block\ndistance\tO\tdistance\tI-Code_Block\nbetween\tO\tbetween\tI-Code_Block\ntwo\tO\ttwo\tI-Code_Block\nsets\tO\tsets\tI-Code_Block\nof\tO\tof\tI-Code_Block\nobservations\tO\tobservations\tI-Code_Block\n\"\tO\t\"\tI-Code_Block\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nit\tO\tit\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncalculate\tO\tcalculate\tO\nthe\tO\tthe\tO\neuclidean\tO\teuclidean\tO\ndistance\tO\tdistance\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nfind\tO\tfind\tO\nindices\tO\tindices\tO\nof\tO\tof\tO\nminimum\tO\tminimum\tO\nvalues\tO\tvalues\tO\nalong\tO\talong\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\ndimension\tO\tdimension\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndistance\tO\tdistance\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nrepresent\tO\trepresent\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nclosest\tO\tclosest\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nrow\tB-Data_Structure\trow\tO\nof\tO\tof\tO\nbigList\tB-Variable_Name\tbigList\tB-Code_Block\nin\tO\tin\tO\nlittleList\tB-Variable_Name\tlittleList\tB-Code_Block\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\none-liner\tO\tone-liner\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3721\tI-Code_Block\tA_3721\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nApproach\tO\tApproach\tO\n#2\tO\t#2\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncare\tO\tcare\tO\nabout\tO\tabout\tO\nperformance\tO\tperformance\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nleverages\tO\tleverages\tO\nfast\tO\tfast\tB-Code_Block\nmatrix\tB-Data_Structure\tmatrix\tI-Code_Block\nmultiplication\tO\tmultiplication\tI-Code_Block\nin\tO\tin\tI-Code_Block\nMATLAB\tB-Language\tMATLAB\tI-Code_Block\n\t\nand\tO\tand\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\npresented\tO\tpresented\tO\nhere\tO\there\tO\nis\tO\tis\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nsmart\tO\tsmart\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3722\tI-Code_Block\tA_3722\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBenchmarking\tO\tBenchmarking\tO\n\t\nBenchmarking\tO\tBenchmarking\tO\nCode\tO\tCode\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3723\tI-Code_Block\tA_3723\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nBenchmark\tO\tBenchmark\tO\nresults\tO\tresults\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3724\tI-Code_Block\tA_3724\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuick\tO\tQuick\tO\nconclusions\tO\tconclusions\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nruntimes\tO\truntimes\tO\nwith\tO\twith\tO\nShai\tB-User_Name\tShai\tO\n's\tO\t's\tO\nsecond\tO\tsecond\tO\napproach\tO\tapproach\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\na\tO\ta\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nbsxfun\tB-Library_Function\tbsxfun\tB-Code_Block\nand\tO\tand\tO\nmatrix\tB-Data_Structure\tmatrix\tO\nmultiplication\tO\tmultiplication\tO\nwere\tO\twere\tO\nvery\tO\tvery\tO\nclose\tO\tclose\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nbased\tO\tbased\tO\non\tO\ton\tO\npdist2\tB-Library_Function\tpdist2\tB-Code_Block\nand\tO\tand\tO\nno\tO\tno\tO\nclear\tO\tclear\tO\nwinner\tO\twinner\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ndecided\tO\tdecided\tO\nbetween\tO\tbetween\tO\nthose\tO\tthose\tO\ntwo\tO\ttwo\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26904392\tO\t26904392\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26904392/\tO\thttps://stackoverflow.com/questions/26904392/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nbsxfun\tB-Library_Function\tbsxfun\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3717\tI-Code_Block\tA_3717\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23692695\tO\t23692695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23692695/\tO\thttps://stackoverflow.com/questions/23692695/\tO\n\t\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndetect\tO\tdetect\tO\nmousedown\tB-Library_Class\tmousedown\tO\nevent\tI-Library_Class\tevent\tO\non\tO\ton\tO\na\tO\ta\tO\ndirective\tO\tdirective\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nmy\tO\tmy\tO\ndirective\tO\tdirective\tO\nalso\tO\talso\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbecome\tO\tbecome\tO\nunforcused\tO\tunforcused\tO\nor\tO\tor\tO\ndeselected\tO\tdeselected\tO\nwhen\tO\twhen\tO\nmouse\tB-Device\tmouse\tO\nis\tO\tis\tO\ndown\tO\tdown\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ndirective/\tO\tdirective/\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23692695\tO\t23692695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23692695/\tO\thttps://stackoverflow.com/questions/23692695/\tO\n\t\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nwhich\tO\twhich\tO\nbinds\tO\tbinds\tO\na\tO\ta\tO\nmousedown\tB-Library_Class\tmousedown\tO\nevent\tI-Library_Class\tevent\tO\nhandler\tI-Library_Class\thandler\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nbind\tO\tbind\tO\nanother\tO\tanother\tO\nmousedown\tB-Library_Class\tmousedown\tO\nevent\tI-Library_Class\tevent\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nelement\tO\telement\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlatter\tO\tlatter\tO\nhandler\tO\thandler\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\ncall\tO\tcall\tO\nevent.stopPropagation()\tB-Library_Function\tevent.stopPropagation()\tB-Code_Block\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nfrom\tO\tfrom\tO\nbubbling\tO\tbubbling\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nup\tO\tup\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nlevel\tO\tlevel\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3239\tI-Code_Block\tA_3239\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWorking\tO\tWorking\tO\nPlunker\tB-Application\tPlunker\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8883078\tO\t8883078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8883078/\tO\thttps://stackoverflow.com/questions/8883078/\tO\n\t\n\t\nIf\tO\tIf\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nwas\tO\twas\tO\ninstalled\tO\tinstalled\tO\non\tO\ton\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nuninstalled\tO\tuninstalled\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndetermining\tO\tdetermining\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nAPN\tB-Application\tAPN\tO\nfeedback\tO\tfeedback\tO\nservice\tO\tservice\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nfeedback\tO\tfeedback\tO\nservice\tO\tservice\tO\nis\tO\tis\tO\ndocumented\tO\tdocumented\tO\nas\tO\tas\tO\nsaying\tO\tsaying\tO\nits\tO\tits\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\ndevices\tO\tdevices\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nresponding\tO\tresponding\tO\nto\tO\tto\tO\nnotifications\tO\tnotifications\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nadditional\tO\tadditional\tO\ninformation\tO\tinformation\tO\nincluded\tO\tincluded\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nwhy\tO\twhy\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nresponding\tO\tresponding\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nfirst\tO\tfirst\tO\nstarted\tO\tstarted\tO\nnon\tO\tnon\tO\nresponding\tO\tresponding\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndetermining\tO\tdetermining\tO\nif\tO\tif\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nuninstalled\tO\tuninstalled\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nof\tO\tof\tO\nknowing\tO\tknowing\tO\nif\tO\tif\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nis\tO\tis\tO\npresent\tO\tpresent\tO\nof\tO\tof\tO\nabsent\tO\tabsent\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8883078\tO\t8883078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8883078/\tO\thttps://stackoverflow.com/questions/8883078/\tO\n\t\n\t\nIn\tO\tIn\tO\nshort\tO\tshort\tO\n,\tO\t,\tO\nno\tO\tno\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nif\tO\tif\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nuninstalled\tO\tuninstalled\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nmy\tO\tmy\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nwhich\tO\twhich\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nyes\tO\tyes\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfeedback\tO\tfeedback\tO\nservice\tO\tservice\tO\nof\tO\tof\tO\nAPNS\tB-Application\tAPNS\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nconclusively\tO\tconclusively\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\nhad\tO\thad\tO\nbeen\tO\tbeen\tO\nuninstalled\tO\tuninstalled\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthis\tO\tthis\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nunfortunately\tO\tunfortunately\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngoing\tO\tgoing\tO\nabout\tO\tabout\tO\nthings\tO\tthings\tO\nas\tO\tas\tO\nit\tO\tit\tO\n's\tO\t's\tO\nimpossible\tO\timpossible\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\n(\tO\t(\tO\nat\tO\tat\tO\npresent\tO\tpresent\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43884711\tO\t43884711\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43884711/\tO\thttps://stackoverflow.com/questions/43884711/\tO\n\t\n\t\nng-map.min.js\tB-File_Name\tng-map.min.js\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nfor\tO\tfor\tO\nview\tO\tview\tO\nmap\tB-User_Interface_Element\tmap\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\nmap\tB-User_Interface_Element\tmap\tO\nmy\tO\tmy\tO\napplicatoion\tO\tapplicatoion\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nin\tO\tin\tO\nconsole\tB-Application\tconsole\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5668\tI-Code_Block\tQ_5668\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nMy\tO\tMy\tO\nMap\tB-User_Interface_Element\tMap\tO\ndiv\tB-HTML_XML_Tag\tdiv\tO\nis\tO\tis\tO\nfollowing\tO\tfollowing\tO\nbelow\tO\tbelow\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5669\tI-Code_Block\tQ_5669\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5670\tI-Code_Block\tQ_5670\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\nmap\tB-User_Interface_Element\tmap\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nconsole\tB-Application\tconsole\tO\nerrors\tO\terrors\tO\noccurs\tO\toccurs\tO\n.How\tO\t.How\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nissues\tO\tissues\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34612581\tO\t34612581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34612581/\tO\thttps://stackoverflow.com/questions/34612581/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\na\tO\ta\tO\nsong\tO\tsong\tO\nin\tO\tin\tO\nbrowses\tB-Application\tbrowses\tO\nincluding\tO\tincluding\tO\nAndroid\tB-Device\tAndroid\tO\nand\tO\tand\tO\nIphone\tB-Device\tIphone\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nhtml5\tB-Language\thtml5\tO\naudio\tO\taudio\tO\nplayer\tO\tplayer\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nplaybackrate\tB-Library_Variable\tplaybackrate\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nMobile\tB-Device\tMobile\tO\nBrowsers\tB-Application\tBrowsers\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nlibrary\tO\tlibrary\tO\nor\tO\tor\tO\nplugin\tO\tplugin\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nweb-audio\tB-Library\tweb-audio\tO\nAPI\tI-Library\tAPI\tO\nsupports\tO\tsupports\tO\nthis\tO\tthis\tO\nfeature\tO\tfeature\tO\n?\tO\t?\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\nplayback\tB-Library_Variable\tplayback\tO\nrate\tI-Library_Variable\trate\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nmobiles\tB-Device\tmobiles\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nwhich\tO\twhich\tO\nmethod\tO\tmethod\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nfollowing\tO\tfollowing\tO\n?\tO\t?\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4220\tI-Code_Block\tQ_4220\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34612581\tO\t34612581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34612581/\tO\thttps://stackoverflow.com/questions/34612581/\tO\n\t\n\t\nThe\tO\tThe\tO\nsite\tO\tsite\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlinking\tO\tlinking\tO\nto\tO\tto\tO\nuses\tO\tuses\tO\nWeb\tB-Library\tWeb\tO\nAudio\tI-Library\tAudio\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nplaybackrate\tB-Library_Variable\tplaybackrate\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntempo\tO\ttempo\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsong\tO\tsong\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nit\tO\tit\tO\nschedules\tO\tschedules\tO\neach\tO\teach\tO\nnote\tO\tnote\tO\nseparately\tO\tseparately\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntempo\tO\ttempo\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nreally\tO\treally\tO\ndoing\tO\tdoing\tO\nis\tO\tis\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nBPM\tO\tBPM\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\nnotes\tO\tnotes\tO\nare\tO\tare\tO\nscheduled\tO\tscheduled\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\nit\tO\tit\tO\nas\tO\tas\tO\nchanging\tO\tchanging\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4936\tI-Code_Block\tA_4936\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4937\tI-Code_Block\tA_4937\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ngo\tO\tgo\tO\nfrom\tO\tfrom\tO\n60\tB-Value\t60\tO\nBPM\tI-Value\tBPM\tO\nto\tO\tto\tO\n120\tB-Value\t120\tO\nBPM\tI-Value\tBPM\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nWeb\tB-Library\tWeb\tO\nAudio\tI-Library\tAudio\tO\nas\tO\tas\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndoing\tO\tdoing\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nAudioBufferSourceNode\tB-Library_Class\tAudioBufferSourceNode\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\na\tO\ta\tO\npre\tO\tpre\tO\nrecorded\tO\trecorded\tO\nsample\tO\tsample\tO\n,\tO\t,\tO\nhas\tO\thas\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\ncalled\tO\tcalled\tO\nplaybackRate\tB-Library_Variable\tplaybackRate\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nchanges\tO\tchanges\tO\nthe\tO\tthe\tO\nrate\tO\trate\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\npitch\tO\tpitch\tO\ncorrection\tO\tcorrection\tO\n!\tO\t!\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nit\tO\tit\tO\nout\tO\tout\tO\nat\tO\tat\tO\nhttps://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode\tO\thttps://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34612581\tO\t34612581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34612581/\tO\thttps://stackoverflow.com/questions/34612581/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nany\tO\tany\tO\nexternal\tO\texternal\tO\nPlugin\tB-Application\tPlugin\tO\nor\tO\tor\tO\nAPI\tB-Application\tAPI\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\naudio\tO\taudio\tO\nin\tO\tin\tO\nBrowser\tB-Application\tBrowser\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nadvantages\tO\tadvantages\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\nHTML5\tB-Language\tHTML5\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\ni\tO\ti\tO\nam\tO\tam\tO\nmentioning\tO\tmentioning\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwith\tO\twith\tO\neasy\tO\teasy\tO\nsyntax\tO\tsyntax\tO\nand\tO\tand\tO\nattributes\tO\tattributes\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4928\tI-Code_Block\tA_4928\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48232498\tO\t48232498\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48232498/\tO\thttps://stackoverflow.com/questions/48232498/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\nMySQL\tB-Application\tMySQL\tO\ntable\tO\ttable\tO\nusing\tO\tusing\tO\nC#\tB-Language\tC#\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nquery\tO\tquery\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\ninserted\tO\tinserted\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6414\tI-Code_Block\tQ_6414\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nchecked\tO\tchecked\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncolumn\tB-Data_Structure\tcolumn\tO\nnames\tO\tnames\tO\nare\tO\tare\tO\ncorrect\tO\tcorrect\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nspot\tO\tspot\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ninvalid\tO\tinvalid\tO\nabout\tO\tabout\tO\nmy\tO\tmy\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsomething\tO\tsomething\tO\nbasic\tO\tbasic\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nspot\tO\tspot\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nCheers\tO\tCheers\tO\n\t\nEDIT\tO\tEDIT\tO\n-\tO\t-\tO\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nquotation\tO\tquotation\tO\nmark\tO\tmark\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nuid='0\tB-Code_Block\tuid='0\tO\nhowever\tO\thowever\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ndisapeared\tO\tdisapeared\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npost\tO\tpost\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48232498\tO\t48232498\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48232498/\tO\thttps://stackoverflow.com/questions/48232498/\tO\n\t\n\t\nmissing\tO\tmissing\tO\n'\tB-Value\t'\tO\nfollowing\tO\tfollowing\tO\nzero\tO\tzero\tO\n:\tO\t:\tO\nnear\tB-Code_Block\tnear\tO\nciv_alive='0\tI-Code_Block\tciv_alive='0\tO\n\t\noriginal\tO\toriginal\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7062\tI-Code_Block\tA_7062\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nerror\tO\terror\tO\nsyntax\tO\tsyntax\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7063\tI-Code_Block\tA_7063\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nregarding\tO\tregarding\tO\nmariadb\tB-Application\tmariadb\tO\ncomments\tO\tcomments\tO\n-\tO\t-\tO\nmariadb\tB-Application\tmariadb\tO\nis\tO\tis\tO\na\tO\ta\tO\nfork\tO\tfork\tO\nof\tO\tof\tO\nmysql\tB-Application\tmysql\tO\nso\tO\tso\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\npretty\tO\tpretty\tO\nsimilar\tO\tsimilar\tO\n,\tO\t,\tO\ntherefore\tO\ttherefore\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nout\tO\tout\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39409500\tO\t39409500\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39409500/\tO\thttps://stackoverflow.com/questions/39409500/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\npandas.DataFrame\tB-Library_Class\tpandas.DataFrame\tB-Code_Block\nwith\tO\twith\tO\n3\tO\t3\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nstr\tB-Data_Type\tstr\tB-Code_Block\nand\tO\tand\tO\nn\tB-Variable_Name\tn\tB-Code_Block\nother\tO\tother\tO\ncolumns\tB-Data_Structure\tcolumns\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nfloat64\tB-Data_Type\tfloat64\tB-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ngroup\tO\tgroup\tO\nrows\tO\trows\tO\nby\tO\tby\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nthree\tO\tthree\tO\nstr\tB-Data_Type\tstr\tB-Code_Block\ncolumns\tO\tcolumns\tO\nand\tO\tand\tO\napply\tO\tapply\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nmyComplexFunc()\tB-Function_Name\tmyComplexFunc()\tB-Code_Block\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nreduce\tO\treduce\tO\n`̀N\tB-Value\t`̀N\tO\nrows\tO\trows\tO\nto\tO\tto\tO\none\tO\tone\tO\nrow\tO\trow\tO\n.\tO\t.\tO\n\t\nmyComplexFunc()\tB-Function_Name\tmyComplexFunc()\tB-Code_Block\ntake\tO\ttake\tO\nonly\tO\tonly\tO\nrows\tB-Variable_Name\trows\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nfloat64\tB-Data_Type\tfloat64\tB-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nfor\tB-Code_Block\tfor\tO\nloops\tI-Code_Block\tloops\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nefficient\tO\tefficient\tO\n,\tO\t,\tO\nSo\tO\tSo\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nflexible\tO\tflexible\tO\napply\tO\tapply\tO\nof\tO\tof\tO\npandas\tB-Library\tpandas\tB-Code_Block\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nruns\tO\truns\tO\nthe\tO\tthe\tO\nheavy\tO\theavy\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nmyComplexFunc()\tB-Function_Name\tmyComplexFunc()\tB-Code_Block\ntwice\tO\ttwice\tO\n!\tO\t!\tO\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nclear\tO\tclear\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\na\tO\ta\tO\nminimal\tO\tminimal\tO\nexample\tO\texample\tO\n\t\nLet\tO\tLet\tO\n\"\tO\t\"\tO\ndf\tB-Variable_Name\tdf\tO\n\"\tO\t\"\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ndataFrame\tB-Library_Class\tdataFrame\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4965\tI-Code_Block\tQ_4965\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nmyComplexFunc()\tB-Function_Name\tmyComplexFunc()\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4966\tI-Code_Block\tQ_4966\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4967\tI-Code_Block\tQ_4967\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\ncolumn\tO\tcolumn\tO\nB\tB-Variable_Name\tB\tB-Code_Block\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nremoved\tO\tremoved\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nfloat64\tB-Data_Type\tfloat64\tB-Code_Block\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39409500\tO\t39409500\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39409500/\tO\thttps://stackoverflow.com/questions/39409500/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfilter\tO\tfilter\tO\nDataFrame\tB-Library_Class\tDataFrame\tO\nby\tO\tby\tO\ndtype\tB-Data_Type\tdtype\tB-Code_Block\nby\tO\tby\tO\nselect_dtypes\tB-Library_Function\tselect_dtypes\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nneed\tO\tneed\tO\naggreagate\tO\taggreagate\tO\nby\tO\tby\tO\nSeries\tB-Library_Class\tSeries\tB-Code_Block\ndf.A\tB-Variable_Name\tdf.A\tI-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5690\tI-Code_Block\tA_5690\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nbecause\tO\tbecause\tO\nif\tO\tif\tO\nuse\tO\tuse\tO\nonly\tO\tonly\tO\nA\tB-Variable_Name\tA\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5691\tI-Code_Block\tA_5691\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nget\tO\tget\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nright\tO\tright\tO\n-\tO\t-\tO\nall\tO\tall\tO\nstring\tB-Data_Type\tstring\tO\ncolumns\tO\tcolumns\tO\nare\tO\tare\tO\nexcluded\tO\texcluded\tO\n(\tO\t(\tO\nA\tB-Variable_Name\tA\tB-Code_Block\nand\tO\tand\tO\nB\tB-Variable_Name\tB\tB-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5692\tI-Code_Block\tA_5692\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6647098\tO\t6647098\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6647098/\tO\thttps://stackoverflow.com/questions/6647098/\tO\n\t\n\t\nSomething\tO\tSomething\tO\ngoing\tO\tgoing\tO\nwrong\tO\twrong\tO\nbadly\tO\tbadly\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nMessage\tB-User_Interface_Element\tMessage\tO\nCompose\tI-User_Interface_Element\tCompose\tO\nScreen\tI-User_Interface_Element\tScreen\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nTabBar\tB-User_Interface_Element\tTabBar\tO\nbased\tO\tbased\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nsome\tO\tsome\tO\nscreens\tO\tscreens\tO\nI\tO\tI\tO\nam\tO\tam\tO\nshowing\tO\tshowing\tO\nToolBar\tB-User_Interface_Element\tToolBar\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ntabBar\tB-User_Interface_Element\ttabBar\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nhidesBottomBarWhenPushed\tB-Code_Block\thidesBottomBarWhenPushed\tB-Code_Block\n=\tI-Code_Block\t=\tI-Code_Block\nYES\tI-Code_Block\tYES\tI-Code_Block\n;\tI-Code_Block\t;\tI-Code_Block\nand\tO\tand\tO\nits\tO\tits\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\neverytime\tO\teverytime\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nIn\tO\tIn\tO\n1\tO\t1\tO\nscreen\tO\tscreen\tO\nI\tO\tI\tO\nam\tO\tam\tO\nsending\tO\tsending\tO\nSMS\tO\tSMS\tO\nby\tO\tby\tO\nopening\tO\topening\tO\nMessage\tB-User_Interface_Element\tMessage\tO\nCompose\tI-User_Interface_Element\tCompose\tO\nScreen\tI-User_Interface_Element\tScreen\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\niphone\tB-Device\tiphone\tO\nApp\tO\tApp\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nproblem\tO\tproblem\tO\noccurs\tO\toccurs\tO\nif\tO\tif\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nMessage\tB-User_Interface_Element\tMessage\tO\nCompose\tI-User_Interface_Element\tCompose\tO\nScreen\tI-User_Interface_Element\tScreen\tO\nand\tO\tand\tO\ni\tO\ti\tO\nclicked\tO\tclicked\tO\nCancel\tO\tCancel\tO\nbutton\tB-User_Interface_Element\tbutton\tO\nof\tO\tof\tO\nMessage\tO\tMessage\tO\nScreen\tO\tScreen\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nwhenever\tO\twhenever\tO\ngoing\tO\tgoing\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nmodule\tO\tmodule\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nshowing\tO\tshowing\tO\nToolBar\tB-User_Interface_Element\tToolBar\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\non\tO\ton\tO\nclick\tO\tclick\tO\nof\tO\tof\tO\nbutton\tO\tbutton\tO\nno\tO\tno\tO\nToolBar\tB-User_Interface_Element\tToolBar\tO\n.\tO\t.\tO\n\t\nTotally\tO\tTotally\tO\nblank\tO\tblank\tO\n,\tO\t,\tO\nno\tO\tno\tO\ntoolbar\tB-User_Interface_Element\ttoolbar\tO\nand\tO\tand\tO\nno\tO\tno\tO\ntabbar\tB-User_Interface_Element\ttabbar\tO\n(\tO\t(\tO\ntabbar\tB-User_Interface_Element\ttabbar\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nobvious\tO\tobvious\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nset\tO\tset\tO\nhidesBottomBarWhenPushed\tB-Library_Class\thidesBottomBarWhenPushed\tO\n)\tO\t)\tO\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhy\tO\twhy\tO\ntoolbar\tB-User_Interface_Element\ttoolbar\tO\nnow\tO\tnow\tO\nshowing\tO\tshowing\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nCompose\tB-User_Interface_Element\tCompose\tO\nscreen\tI-User_Interface_Element\tscreen\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlink\tO\tlink\tO\nwith\tO\twith\tO\ncompose\tB-User_Interface_Element\tcompose\tO\nscreen\tI-User_Interface_Element\tscreen\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nscreen\tB-User_Interface_Element\tscreen\tO\n.\tO\t.\tO\n\t\nFar\tO\tFar\tO\ndifferent\tO\tdifferent\tO\nimplementation\tO\timplementation\tO\nand\tO\tand\tO\ndifferent\tO\tdifferent\tO\ncontrollers\tO\tcontrollers\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncheck\tO\tcheck\tO\nby\tO\tby\tO\ndebugging\tO\tdebugging\tO\n,\tO\t,\tO\nToolbar\tB-User_Interface_Element\tToolbar\tO\nframe\tO\tframe\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6647098\tO\t6647098\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6647098/\tO\thttps://stackoverflow.com/questions/6647098/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nMFMessageComposeViewController\tB-Library_Class\tMFMessageComposeViewController\tO\nhas\tO\thas\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nnavigation\tB-User_Interface_Element\tnavigation\tO\nbar\tI-User_Interface_Element\tbar\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\napplication\tO\tapplication\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nnavigation\tO\tnavigation\tO\nbased\tO\tbased\tO\napplication\tO\tapplication\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nyour\tO\tyour\tO\ntoolbar\tB-User_Interface_Element\ttoolbar\tO\n's\tO\t's\tO\nframe\tO\tframe\tO\nposition\tO\tposition\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\naffected\tO\taffected\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nproblem\tO\tproblem\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ni\tO\ti\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\ninto\tO\tinto\tO\nnavigation\tO\tnavigation\tO\nbased\tO\tbased\tO\nbut\tO\tbut\tO\nhid\tO\thid\tO\nthe\tO\tthe\tO\nnavigation\tB-User_Interface_Element\tnavigation\tO\ncontroller\tI-User_Interface_Element\tcontroller\tO\n.\tI-User_Interface_Element\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\n\t\nHappy\tO\tHappy\tO\ncoding\tO\tcoding\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6647098\tO\t6647098\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6647098/\tO\thttps://stackoverflow.com/questions/6647098/\tO\n\t\n\t\nIssue\tO\tIssue\tO\nfixed\tO\tfixed\tO\n..\tO\t..\tO\n.\tO\t.\tO\nhad\tO\thad\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nadding\tO\tadding\tO\nit\tO\tit\tO\nto\tO\tto\tO\nkeyframe\tB-User_Interface_Element\tkeyframe\tO\nwindow\tI-User_Interface_Element\twindow\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43393391\tO\t43393391\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43393391/\tO\thttps://stackoverflow.com/questions/43393391/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntraying\tO\ttraying\tO\nto\tO\tto\tO\nread\tO\tread\tO\nmails\tO\tmails\tO\nfrom\tO\tfrom\tO\ngmail\tB-Application\tgmail\tO\n\t\nusing\tO\tusing\tO\nImapClient\tB-Application\tImapClient\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_5556\tI-Code_Block\tQ_5556\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAn\tO\tAn\tO\nexception\tB-Library_Class\texception\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\n'\tO\t'\tO\nSystem.Exception\tB-Error_Name\tSystem.Exception\tO\n'\tO\t'\tO\noccurred\tO\toccurred\tO\nin\tO\tin\tO\nAE.Net.Mail.dll\tB-File_Name\tAE.Net.Mail.dll\tO\nbut\tO\tbut\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nhandled\tO\thandled\tO\nin\tO\tin\tO\nuser\tO\tuser\tO\ncode\tO\tcode\tO\n\t\nAdditional\tO\tAdditional\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\nxm003\tB-Value\txm003\tO\nBAD\tO\tBAD\tO\nCould\tO\tCould\tO\nnot\tO\tnot\tO\nparse\tO\tparse\tO\ncommand\tO\tcommand\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43393391\tO\t43393391\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43393391/\tO\thttps://stackoverflow.com/questions/43393391/\tO\n\t\n\t\nThis\tO\tThis\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\nan\tO\tan\tO\nopen\tO\topen\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nAE.Net.Mail\tB-Library\tAE.Net.Mail\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nURL\tO\tURL\tO\nfor\tO\tfor\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\n\t\nhttps://github.com/andyedinborough/aenetmail/issues/197\tO\thttps://github.com/andyedinborough/aenetmail/issues/197\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbug\tO\tbug\tO\ninformation\tO\tinformation\tO\nand\tO\tand\tO\ncomments\tO\tcomments\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nDateTime\tB-Library_Class\tDateTime\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsearch\tB-Library_Class\tsearch\tO\ncondition\tI-Library_Class\tcondition\tO\n.\tO\t.\tO\n\t\nReplacing\tO\tReplacing\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nSearchCondition\tB-Library_Class\tSearchCondition\tB-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmight\tO\tmight\tO\nprevent\tO\tprevent\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nreading\tO\treading\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\ncorrectly\tO\tcorrectly\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6275\tI-Code_Block\tA_6275\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43393391\tO\t43393391\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43393391/\tO\thttps://stackoverflow.com/questions/43393391/\tO\n\t\n\t\n@Ahmado\tB-User_Name\t@Ahmado\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\npop3\tO\tpop3\tO\nfor\tO\tfor\tO\nreading\tO\treading\tO\ninbox\tB-Application\tinbox\tO\nemail\tO\temail\tO\n.\tO\t.\tO\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nfor\tO\tfor\tO\nonly\tO\tonly\tO\ngmail\tB-Application\tgmail\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nuse\tO\tuse\tO\nfor\tO\tfor\tO\nother\tO\tother\tO\nemail\tO\temail\tO\nalso.for\tO\talso.for\tO\nthis\tO\tthis\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n2\tO\t2\tO\ndll\tB-File_Type\tdll\tO\n.\tO\t.\tO\n\t\nDownload\tO\tDownload\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napplicatin\tO\tapplicatin\tO\nusing\tO\tusing\tO\nnuget\tB-Application\tnuget\tO\n.\tO\t.\tO\n\t\nOpenPop.NET\tB-Library\tOpenPop.NET\tO\nand\tO\tand\tO\nAE.Net.Mail\tB-Library\tAE.Net.Mail\tO\n\t\nStep1\tO\tStep1\tO\n:\tO\t:\tO\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncredential\tO\tcredential\tO\nread\tO\tread\tO\nall\tO\tall\tO\ninbox\tB-Application\tinbox\tO\nemail\tO\temail\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6540\tI-Code_Block\tA_6540\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nStep\tO\tStep\tO\n2\tO\t2\tO\n:Each\tO\t:Each\tO\nemail\tO\temail\tO\nhas\tO\thas\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nid\tB-Variable_Name\tid\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\ndetails\tO\tdetails\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_6541\tI-Code_Block\tA_6541\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\nfor\tO\tfor\tO\nASP.NET\tB-Library\tASP.NET\tO\nMVC\tI-Library\tMVC\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nreview\tO\treview\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45244287\tO\t45244287\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45244287/\tO\thttps://stackoverflow.com/questions/45244287/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nfor\tO\tfor\tO\ntwo\tO\ttwo\tO\nweeks\tO\tweeks\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nbinaries\tO\tbinaries\tO\nfor\tO\tfor\tO\nffmpeg\tB-Application\tffmpeg\tO\nand\tO\tand\tO\nSox\tB-Application\tSox\tO\n(\tO\t(\tO\narmeabi\tB-Device\tarmeabi\tO\n,\tO\t,\tO\narmeabiv7\tB-Device\tarmeabiv7\tO\n,\tO\t,\tO\nx86\tB-Device\tx86\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nsucceed\tO\tsucceed\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nbuilding\tO\tbuilding\tO\nit\tO\tit\tO\nmy\tO\tmy\tO\nself\tO\tself\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nsucceed\tO\tsucceed\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nshare\tO\tshare\tO\nthe\tO\tthe\tO\nbinaries\tB-File_Type\tbinaries\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nheartly\tO\theartly\tO\nappreciate\tO\tappreciate\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ngithub\tB-Website\tgithub\tO\nrepository\tO\trepository\tO\n\t\nhttps://github.com/guardianproject/android-ffmpeg\tO\thttps://github.com/guardianproject/android-ffmpeg\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30370935\tO\t30370935\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30370935/\tO\thttps://stackoverflow.com/questions/30370935/\tO\n\t\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nprevious\tO\tprevious\tO\nor\tO\tor\tO\nnext\tO\tnext\tO\nobject\tO\tobject\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nformat\tO\tformat\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3643\tI-Code_Block\tQ_3643\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_3644\tI-Code_Block\tQ_3644\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30370935\tO\t30370935\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30370935/\tO\thttps://stackoverflow.com/questions/30370935/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nenumerate\tB-Code_Block\tenumerate\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4315\tI-Code_Block\tA_4315\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nas\tO\tas\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nfor\tO\tfor\tO\naccessing\tO\taccessing\tO\nto\tO\tto\tO\nnext\tO\tnext\tB-Code_Block\nitems\tO\titems\tO\nand\tO\tand\tO\nrefuse\tO\trefuse\tO\nof\tO\tof\tO\nmultiple\tO\tmultiple\tO\nindexing\tO\tindexing\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\niter()\tB-Library_Function\titer()\tB-Code_Block\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\niterator\tO\titerator\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nlist\tB-Data_Structure\tlist\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nsecond\tO\tsecond\tO\nelement\tO\telement\tO\nto\tO\tto\tO\nend\tO\tend\tO\n)\tO\t)\tO\nand\tO\tand\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nnext\tO\tnext\tO\nelements\tO\telements\tO\nin\tO\tin\tO\neach\tO\teach\tO\niteration\tO\titeration\tO\nwith\tO\twith\tO\nnext\tB-Code_Block\tnext\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4316\tI-Code_Block\tA_4316\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nNone\tB-Value\tNone\tB-Code_Block\nas\tO\tas\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nargument\tO\targument\tO\nto\tO\tto\tO\nnext()\tB-Library_Function\tnext()\tB-Code_Block\nfunction\tO\tfunction\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nraise\tO\traise\tO\na\tO\ta\tO\nStopIteration\tB-Error_Name\tStopIteration\tB-Code_Block\nerror.You\tO\terror.You\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nhandle\tO\thandle\tO\nit\tO\tit\tO\nwith\tO\twith\tO\na\tO\ta\tO\ntry-except\tB-Code_Block\ttry-except\tB-Code_Block\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nfor\tO\tfor\tO\nshort\tO\tshort\tO\nlists\tB-Data_Structure\tlists\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nzip\tB-Library_Function\tzip\tB-Code_Block\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nlong\tO\tlong\tO\nlists\tB-Data_Structure\tlists\tO\nitertools.izip()\tB-Library_Function\titertools.izip()\tB-Code_Block\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nzip\tB-Library_Function\tzip\tB-Code_Block\nin\tO\tin\tO\npython\tB-Language\tpython\tO\n3)\tB-Version\t3)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4317\tI-Code_Block\tA_4317\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nzip(l,l[1:])\tB-Code_Block\tzip(l,l[1:])\tB-Code_Block\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npairs\tO\tpairs\tO\nof\tO\tof\tO\nitems\tO\titems\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4318\tI-Code_Block\tA_4318\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ni\tB-Variable_Name\ti\tB-Code_Block\nas\tO\tas\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nitem\tO\titem\tO\nthen\tO\tthen\tO\nj\tB-Variable_Name\tj\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nitem\tO\titem\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\nj\tB-Variable_Name\tj\tB-Code_Block\nas\tO\tas\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nthen\tO\tthen\tO\ni\tB-Variable_Name\ti\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\n!\tO\t!\tO\n\t\n:)\tO\t:)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30370935\tO\t30370935\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30370935/\tO\thttps://stackoverflow.com/questions/30370935/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\ndifferent\tO\tdifferent\tO\noptions\tO\toptions\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nyour\tO\tyour\tO\nuse\tO\tuse\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nneighbour\tO\tneighbour\tO\nentry\tO\tentry\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\npairs\tO\tpairs\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\nlist\tB-Data_Structure\tlist\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4320\tI-Code_Block\tA_4320\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nprior\tO\tprior\tO\nentry\tO\tentry\tO\nas\tO\tas\tO\na\tO\ta\tO\nreference\tO\treference\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_4321\tI-Code_Block\tA_4321\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNone\tB-Value\tNone\tB-Code_Block\nhere\tO\there\tO\nis\tO\tis\tO\nused\tO\tused\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nof\tO\tof\tO\na\tO\ta\tO\nprior\tO\tprior\tO\nitem\tO\titem\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n,\tO\t,\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nhow\tO\thow\tO\nit\tO\tit\tO\n's\tO\t's\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nitem\tO\titem\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nin\tO\tin\tO\nKasra\tB-User_Name\tKasra\tO\n's\tO\t's\tO\niter()-based\tB-Library_Function\titer()-based\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37149514\tO\t37149514\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37149514/\tO\thttps://stackoverflow.com/questions/37149514/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nsome\tO\tsome\tO\nCSS\tB-Language\tCSS\tO\nusing\tO\tusing\tO\nPHP\tB-Language\tPHP\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nCSS\tB-Language\tCSS\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\npage-specific\tO\tpage-specific\tO\nand\tO\tand\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nindex.php\tB-File_Name\tindex.php\tB-Code_Block\nto\tO\tto\tO\nonly\tO\tonly\tO\necho\tO\techo\tO\nthe\tO\tthe\tO\nCSS\tB-Language\tCSS\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nis\tO\tis\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nindex.php\tB-File_Name\tindex.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4622\tI-Code_Block\tQ_4622\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nheader.php\tB-File_Name\theader.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4623\tI-Code_Block\tQ_4623\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nimport.php\tB-File_Name\timport.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4624\tI-Code_Block\tQ_4624\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nheader\tO\theader\tO\nis\tO\tis\tO\nproperly\tO\tproperly\tO\nset\tO\tset\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\nCSS\tB-Language\tCSS\tO\nis\tO\tis\tO\ninterpreted\tO\tinterpreted\tO\n.\tO\t.\tO\n\t\nstyles.css.php\tB-File_Name\tstyles.css.php\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4625\tI-Code_Block\tQ_4625\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\n$name\tB-Variable_Name\t$name\tB-Code_Block\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\nit\tO\tit\tO\n's\tO\t's\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nas\tO\tas\tO\nset\tO\tset\tO\nin\tO\tin\tO\nindex.php\tB-File_Name\tindex.php\tB-Code_Block\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nMy\tO\tMy\tO\nfinal\tO\tfinal\tO\nsolution\tO\tsolution\tO\nwas\tO\twas\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nstdClass\tB-Library_Class\tstdClass\tB-Code_Block\nand\tO\tand\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\nI\tO\tI\tO\nneeded\tO\tneeded\tO\nas\tO\tas\tO\nattributes\tO\tattributes\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nputting\tO\tputting\tO\na\tO\ta\tO\nGET\tB-Library_Function\tGET\tO\nrequest\tO\trequest\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nCSS\tB-File_Type\tCSS\tO\nfile\tO\tfile\tO\nwhich\tO\twhich\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nBase64\tB-Data_Type\tBase64\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nJSON\tB-File_Type\tJSON\tO\nstring\tB-Data_Type\tstring\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37149514\tO\t37149514\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37149514/\tO\thttps://stackoverflow.com/questions/37149514/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlinking\tO\tlinking\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nstyles.css.php\tB-File_Name\tstyles.css.php\tO\nfrom\tO\tfrom\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nrendered\tO\trendered\tO\nhtml\tB-Language\thtml\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\npage\tO\tpage\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfetched\tO\tfetched\tO\nin\tO\tin\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nrequest\tO\trequest\tO\n(\tO\t(\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nse\tO\tse\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ninspect\tO\tinspect\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nrequest\tO\trequest\tO\nnever\tO\tnever\tO\npasses\tO\tpasses\tO\ntrough\tO\ttrough\tO\nyour\tO\tyour\tO\nindex.php\tB-File_Name\tindex.php\tO\n,\tO\t,\tO\nand\tO\tand\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\n$name\tB-Variable_Name\t$name\tB-Code_Block\nvariable\tO\tvariable\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nadvise\tO\tadvise\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\ncss\tB-Language\tcss\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrendered\tO\trendered\tO\nHTML\tB-Language\tHTML\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nstyle\tO\tstyle\tO\nblock\tO\tblock\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nas\tO\tas\tO\neasy\tO\teasy\tO\nas\tO\tas\tO\nchanging\tO\tchanging\tO\nyour\tO\tyour\tO\nimport.php\tB-File_Name\timport.php\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5334\tI-Code_Block\tA_5334\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nadded\tO\tadded\tO\nbenefit\tO\tbenefit\tO\nof\tO\tof\tO\nreducing\tO\treducing\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nrequests\tO\trequests\tO\nthe\tO\tthe\tO\nbrowser\tB-Application\tbrowser\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\n,\tO\t,\tO\nand\tO\tand\tO\nshould\tO\tshould\tO\ntherefore\tO\ttherefore\tO\nspeed\tO\tspeed\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbtw\tO\tbtw\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nstandard\tO\tstandard\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\ncss\tB-Language\tcss\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nid\tO\tid\tO\n(\tO\t(\tO\nor\tO\tor\tO\ndata\tO\tdata\tO\nattribute\tO\tattribute\tO\n)\tO\t)\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nbody\tB-HTML_XML_Tag\tbody\tB-Code_Block\ntag\tO\ttag\tO\nthat\tO\tthat\tO\nindicates\tO\tindicates\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ncss\tB-File_Type\tcss\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\ntrough\tO\ttrough\tO\nphp\tB-Language\tphp\tO\n,\tO\t,\tO\njust\tO\tjust\tO\na\tO\ta\tO\nstandard\tO\tstandard\tO\ncss\tB-File_Type\tcss\tO\nfile\tO\tfile\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nthen\tO\tthen\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5335\tI-Code_Block\tA_5335\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37149514\tO\t37149514\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37149514/\tO\thttps://stackoverflow.com/questions/37149514/\tO\n\t\n\t\nThe\tO\tThe\tO\n<link>\tB-HTML_XML_Tag\t<link>\tB-Code_Block\ntag\tO\ttag\tO\nmakes\tO\tmakes\tO\nan\tO\tan\tO\nHTTP\tO\tHTTP\tO\nrequest\tO\trequest\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfile\tO\tfile\tO\ntotally\tO\ttotally\tO\nindependent\tO\tindependent\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nPHP\tB-Language\tPHP\tO\npages\tO\tpages\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nincluding\tO\tincluding\tO\neach\tO\teach\tO\nother\tO\tother\tO\n,\tO\t,\tO\nso\tO\tso\tO\n$name\tB-Variable_Name\t$name\tB-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nstyles.css.php\tB-File_Name\tstyles.css.php\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nlink\tO\tlink\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\nsheet\tO\tsheet\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\npass\tO\tpass\tO\n$name\tB-Variable_Name\t$name\tB-Code_Block\nas\tO\tas\tO\na\tO\ta\tO\nget\tO\tget\tO\nvariable\tO\tvariable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5336\tI-Code_Block\tA_5336\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\nsheet\tO\tsheet\tO\nstyles.css.php\tO\tstyles.css.php\tO\nuse\tO\tuse\tO\n$_GET['name']\tB-Code_Block\t$_GET['name']\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5337\tI-Code_Block\tA_5337\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37977365\tO\t37977365\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37977365/\tO\thttps://stackoverflow.com/questions/37977365/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nscenario\tO\tscenario\tO\nwhere\tO\twhere\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nopens\tO\topens\tO\na\tO\ta\tO\ndocument\tB-User_Interface_Element\tdocument\tO\nin\tO\tin\tO\ngoogle\tB-Application\tgoogle\tO\ndrive\tI-Application\tdrive\tO\nand\tO\tand\tO\nallows\tO\tallows\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nif\tO\tif\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nmultiple\tO\tmultiple\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\ndocument\tB-User_Interface_Element\tdocument\tO\n,\tO\t,\tO\nhow\tO\thow\tO\n(\tO\t(\tO\nwhat\tO\twhat\tO\ngoogle\tO\tgoogle\tO\napi-oauth/openconnect/identity\tO\tapi-oauth/openconnect/identity\tO\nfederation/sign\tO\tfederation/sign\tO\nin\tO\tin\tO\n)\tO\t)\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nauthenticate\tO\tauthenticate\tO\nusers\tO\tusers\tO\nand\tO\tand\tO\nget\tO\tget\tO\ntheir\tO\ttheir\tO\nprofile\tO\tprofile\tO\ninfo\tO\tinfo\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndocument\tB-User_Interface_Element\tdocument\tO\nand\tO\tand\tO\nedit\tO\tedit\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nauthenticating\tO\tauthenticating\tO\nusing\tO\tusing\tO\nservice\tO\tservice\tO\naccount\tO\taccount\tO\nand\tO\tand\tO\nallowing\tO\tallowing\tO\nanonymous\tO\tanonymous\tO\naccess\tO\taccess\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nscenario\tO\tscenario\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nAPI\tO\tAPI\tO\n's\tO\t's\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\n?\tO\t?\tO\n\t\nKindly\tO\tKindly\tO\nguide\tO\tguide\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37977365\tO\t37977365\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37977365/\tO\thttps://stackoverflow.com/questions/37977365/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nactually\tO\tactually\tO\nuse\tO\tuse\tO\nGoogle\tB-Library\tGoogle\tO\nDrive\tI-Library\tDrive\tO\nRest\tI-Library\tRest\tO\nAPI\tI-Library\tAPI\tO\nwhich\tO\twhich\tO\nuses\tO\tuses\tO\nthese\tO\tthese\tO\nauthorization\tO\tauthorization\tO\nprotocols\tO\tprotocols\tO\n:\tO\t:\tO\n\t\nOAuth\tB-Library\tOAuth\tO\n2.0\tB-Version\t2.0\tO\nto\tO\tto\tO\nauthorize\tO\tauthorize\tO\nrequests\tO\trequests\tO\n,\tO\t,\tO\nor\tO\tor\tO\n\t\nif\tO\tif\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nuses\tO\tuses\tO\nGoogle\tB-Website\tGoogle\tO\nSign-in\tO\tSign-in\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\naspects\tO\taspects\tO\nof\tO\tof\tO\nauthorization\tO\tauthorization\tO\nare\tO\tare\tO\nhandled\tO\thandled\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfollow\tO\tfollow\tO\nthis\tO\tthis\tO\ngeneral\tO\tgeneral\tO\nauthorization\tO\tauthorization\tO\nprocess\tO\tprocess\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\napplication\tO\tapplication\tO\ntypes\tO\ttypes\tO\nas\tO\tas\tO\ngiven\tO\tgiven\tO\nin\tO\tin\tO\nAuthorizing\tO\tAuthorizing\tO\nrequests\tO\trequests\tO\nwith\tO\twith\tO\nOAuth\tB-Library\tOAuth\tO\n2.0\tB-Version\t2.0\tO\n:\tO\t:\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nrequires\tO\trequires\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nany\tO\tany\tO\nother\tO\tother\tO\nGoogle\tB-Library\tGoogle\tO\nAPIs\tI-Library\tAPIs\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nscopes\tO\tscopes\tO\nas\tO\tas\tO\ngiven\tO\tgiven\tO\nin\tO\tin\tO\nOAuth\tB-Library\tOAuth\tO\n2.0\tB-Version\t2.0\tO\nscope\tO\tscope\tO\ninformation\tO\tinformation\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nDrive\tB-Library\tDrive\tO\nAPI\tI-Library\tAPI\tO\ndetailed\tO\tdetailed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\ndocumentations\tO\tdocumentations\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nalso\tO\talso\tO\nadd\tO\tadd\tO\nUsing\tO\tUsing\tO\nOAuth\tB-Library\tOAuth\tO\n2.0\tB-Version\t2.0\tO\nto\tO\tto\tO\nAccess\tO\tAccess\tO\nGoogle\tB-Library\tGoogle\tO\nAPIs\tI-Library\tAPIs\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nreferences\tO\treferences\tO\nwith\tO\twith\tO\nregards\tO\tregards\tO\nto\tO\tto\tO\nGoogle\tB-Library\tGoogle\tO\nAPI\tI-Library\tAPI\tO\nscopes\tO\tscopes\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47922855\tO\t47922855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47922855/\tO\thttps://stackoverflow.com/questions/47922855/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nSQL\tB-Language\tSQL\tO\nServer\tO\tServer\tO\ntable\tB-Data_Structure\ttable\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndata\tO\tdata\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6364\tI-Code_Block\tQ_6364\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\ntable\tB-Data_Structure\ttable\tO\nstores\tO\tstores\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nof\tO\tof\tO\nconnecting\tO\tconnecting\tO\nflights\tO\tflights\tO\nbetween\tO\tbetween\tO\ndifferent\tO\tdifferent\tO\ncities\tO\tcities\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\na\tO\ta\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nformat\tO\tformat\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_6365\tI-Code_Block\tQ_6365\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nPlease\tO\tPlease\tO\nadvise\tO\tadvise\tO\non\tO\ton\tO\nhow\tO\thow\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nachieved\tO\tachieved\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47922855\tO\t47922855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47922855/\tO\thttps://stackoverflow.com/questions/47922855/\tO\n\t\n\t\nJust\tO\tJust\tO\nuse\tO\tuse\tO\ngroup\tB-Code_Block\tgroup\tB-Code_Block\nby\tI-Code_Block\tby\tI-Code_Block\nclause\tO\tclause\tO\nwith\tO\twith\tO\nconditional\tO\tconditional\tO\naggregation\tO\taggregation\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7005\tI-Code_Block\tA_7005\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\ndirectly\tO\tdirectly\tO\nfetch\tO\tfetch\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nand\tO\tand\tO\ndestination\tO\tdestination\tO\nstation\tO\tstation\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nfirst_value()\tB-Library_Function\tfirst_value()\tB-Code_Block\nand\tO\tand\tO\nlast_value()\tB-Library_Function\tlast_value()\tB-Code_Block\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7006\tI-Code_Block\tA_7006\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nabove\tO\tabove\tO\nis\tO\tis\tO\ntested\tO\ttested\tO\nbased\tO\tbased\tO\non\tO\ton\tO\ndata\tO\tdata\tO\nprovided\tO\tprovided\tO\nin\tO\tin\tO\nQ\tO\tQ\tB-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47922855\tO\t47922855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47922855/\tO\thttps://stackoverflow.com/questions/47922855/\tO\n\t\n\t\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7001\tI-Code_Block\tA_7001\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nwindow\tO\twindow\tO\nfunctions\tO\tfunctions\tO\nFIRST_VALUE\tB-Library_Function\tFIRST_VALUE\tB-Code_Block\nand\tO\tand\tO\nLAST_VALUE\tB-Library_Function\tLAST_VALUE\tB-Code_Block\nif\tO\tif\tO\nyour\tO\tyour\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nSQLServer\tB-Application\tSQLServer\tO\nsupports\tO\tsupports\tO\nthem\tO\tthem\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7002\tI-Code_Block\tA_7002\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIf\tO\tIf\tO\nID\tB-Library_Variable\tID\tB-Code_Block\nare\tO\tare\tO\ninconsistent\tO\tinconsistent\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nrecursive\tO\trecursive\tO\nCTE\tO\tCTE\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7003\tI-Code_Block\tA_7003\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nsymbiosis\tO\tsymbiosis\tO\nfrom\tO\tfrom\tO\ntwo\tO\ttwo\tO\nqueries\tB-Data_Structure\tqueries\tO\nwhich\tO\twhich\tO\nprovided\tO\tprovided\tO\nYogesh\tB-User_Name\tYogesh\tO\nSharma\tI-User_Name\tSharma\tO\nand\tO\tand\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nquery\tB-Data_Structure\tquery\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_7004\tI-Code_Block\tA_7004\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25677891\tO\t25677891\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25677891/\tO\thttps://stackoverflow.com/questions/25677891/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ninsert\tO\tinsert\tO\na\tO\ta\tO\nclick\tO\tclick\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nbutton\tB-User_Interface_Element\tbutton\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nhome\tO\thome\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nsite\tO\tsite\tO\nI\tO\tI\tO\n've\tO\t've\tO\nbuilt\tO\tbuilt\tO\nusing\tO\tusing\tO\nBootstrap\tB-Library\tBootstrap\tO\n(\tO\t(\tO\nBootstrap\tB-Library\tBootstrap\tO\n3.2.0\tB-Version\t3.2.0\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nvisit\tO\tvisit\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_2924\tI-Code_Block\tQ_2924\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25677891\tO\t25677891\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25677891/\tO\thttps://stackoverflow.com/questions/25677891/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ninvalid\tO\tinvalid\tO\nHTML\tB-Language\tHTML\tO\n(\tO\t(\tO\nan\tO\tan\tO\nhref\tB-HTML_XML_Tag\thref\tO\nattribute\tO\tattribute\tO\non\tO\ton\tO\na\tO\ta\tO\nbutton\tB-User_Interface_Element\tbutton\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\ninfo\tO\tinfo\tO\nfrom\tO\tfrom\tO\nW3C\tB-Website\tW3C\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\ntrick\tO\ttrick\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_3537\tI-Code_Block\tA_3537\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10103953\tO\t10103953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10103953/\tO\thttps://stackoverflow.com/questions/10103953/\tO\n\t\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\nan\tO\tan\tO\nefficient\tO\tefficient\tO\nalgorithm\tO\talgorithm\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\nand\tO\tand\tO\ndump\tO\tdump\tO\nall\tO\tall\tO\ncommon\tO\tcommon\tO\nsubstrings\tO\tsubstrings\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nlength\tO\tlength\tO\nis\tO\tis\tO\n3\tO\t3\tO\nor\tO\tor\tO\nlonger\tO\tlonger\tO\n)\tO\t)\tO\nbetween\tO\tbetween\tO\n2\tO\t2\tO\nstrings\tB-Data_Type\tstrings\tO\n?\tO\t?\tO\n\t\nExample\tO\tExample\tO\ninput\tO\tinput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_880\tI-Code_Block\tQ_880\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nExample\tO\tExample\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_881\tI-Code_Block\tQ_881\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\n,\tO\t,\tO\n\"\tB-Value\t\"\tO\n-D\tI-Value\t-D\tO\n\"\tI-Value\t\"\tO\n,\tO\t,\tO\n\"\tB-Value\t\"\tO\n-M\tI-Value\t-M\tO\n\"\tI-Value\t\"\tO\nis\tO\tis\tO\nalso\tO\talso\tO\na\tO\ta\tO\ncommon\tO\tcommon\tO\nsubstring\tO\tsubstring\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrequired\tO\trequired\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\nlength\tO\tlength\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\n2\tB-Value\t2\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nThere\tO\tThere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\nmissing\tO\tmissing\tO\noutputs\tO\toutputs\tO\nin\tO\tin\tO\nexample\tO\texample\tO\nbecause\tO\tbecause\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nso\tO\tso\tO\nmany\tO\tmany\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n..\tO\t..\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10103953\tO\t10103953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10103953/\tO\thttps://stackoverflow.com/questions/10103953/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nall\tO\tall\tO\ncommon\tO\tcommon\tO\nsubstrings\tO\tsubstrings\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nstructure\tO\tstructure\tO\ncalled\tO\tcalled\tO\na\tO\ta\tO\nGeneralized\tB-Data_Structure\tGeneralized\tO\nsuffix\tI-Data_Structure\tsuffix\tO\ntree\tI-Data_Structure\ttree\tO\n\t\nLibstree\tB-Library\tLibstree\tO\ncontains\tO\tcontains\tO\nsome\tO\tsome\tO\nexample\tO\texample\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nfinding\tO\tfinding\tO\nthe\tO\tthe\tO\nlongest\tO\tlongest\tO\ncommon\tO\tcommon\tO\nsubstring\tO\tsubstring\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nexample\tO\texample\tO\ncode\tO\tcode\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmodified\tO\tmodified\tO\nto\tO\tto\tO\nobtain\tO\tobtain\tO\nall\tO\tall\tO\ncommon\tO\tcommon\tO\nsubstrings\tO\tsubstrings\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5294014\tO\t5294014\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5294014/\tO\thttps://stackoverflow.com/questions/5294014/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nUTF-8\tO\tUTF-8\tO\nencoded\tO\tencoded\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\n\"\tO\t\"\tO\nUTF-8\tO\tUTF-8\tO\ncompatible\tO\tcompatible\tO\nstrings\tB-Data_Type\tstrings\tO\n\"\tO\t\"\tO\nof\tO\tof\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\n,\tO\t,\tO\nin\tO\tin\tO\nC++\tB-Language\tC++\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndata\tO\tdata\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nwritten\tO\twritten\tO\nback\tO\tback\tO\nto\tO\tto\tO\na\tO\ta\tO\nUTF-8\tO\tUTF-8\tO\nencoded\tO\tencoded\tO\nfile\tO\tfile\tO\nlater\tO\tlater\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nadvice\tO\tadvice\tO\non\tO\ton\tO\ngoogle\tB-Website\tgoogle\tO\nabout\tO\tabout\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nWindows\tB-Operating_System\tWindows\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nfor\tO\tfor\tO\nUnix\tB-Operating_System\tUnix\tO\nsystems\tO\tsystems\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5294014\tO\t5294014\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5294014/\tO\thttps://stackoverflow.com/questions/5294014/\tO\n\t\n\t\nIf\tO\tIf\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nread\tO\tread\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nit\tO\tit\tO\nthen\tO\tthen\tO\nstd::string\tB-Library_Class\tstd::string\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_576\tI-Code_Block\tA_576\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nbecause\tO\tbecause\tO\nno\tO\tno\tO\nmulti-character\tO\tmulti-character\tO\nUTF\tO\tUTF\tO\ncodepoint\tO\tcodepoint\tO\noverlaps\tO\toverlaps\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nan\tO\tan\tO\nASCII\tO\tASCII\tO\ncharacter\tO\tcharacter\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nprocessing\tO\tprocessing\tO\nof\tO\tof\tO\ntext\tO\ttext\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\nrelation\tO\trelation\tO\nto\tO\tto\tO\nend\tO\tend\tO\nof\tO\tof\tO\nline\tO\tline\tO\nsequence\tO\tsequence\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nother\tO\tother\tO\nprocessing\tO\tprocessing\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nread\tO\tread\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\n.\tO\t.\tO\n\t\nOutputting\tO\tOutputting\tO\nthe\tO\tthe\tO\nstring\tB-Data_Type\tstring\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncodepoints\tO\tcodepoints\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmanipulate\tO\tmanipulate\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nquestion\tO\tquestion\tO\nand\tO\tand\tO\ngets\tO\tgets\tO\nmore\tO\tmore\tO\ncomplex\tO\tcomplex\tO\n.\tO\t.\tO\n\t\nUsually\tO\tUsually\tO\nmanipulating\tO\tmanipulating\tO\nUTF-8\tO\tUTF-8\tO\nis\tO\tis\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhard\tO\thard\tO\n(\tO\t(\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nworth\tO\tworth\tO\nit\tO\tit\tO\nIMO\tO\tIMO\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nmanipulating\tO\tmanipulating\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nUTF-8\tO\tUTF-8\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nfixed\tO\tfixed\tO\nwidth\tO\twidth\tO\n)\tO\t)\tO\nto\tO\tto\tO\nan\tO\tan\tO\ninternal\tO\tinternal\tO\nfixed\tO\tfixed\tO\nwidth\tO\twidth\tO\nformat\tO\tformat\tO\n;\tO\t;\tO\n(\tO\t(\tO\nUTF-16\tO\tUTF-16\tO\nor\tO\tor\tO\nUTF-32\tO\tUTF-32\tO\nare\tO\tare\tO\ncommon\tO\tcommon\tO\nformats\tO\tformats\tO\nfor\tO\tfor\tO\nmanipulation\tO\tmanipulation\tO\nand\tO\tand\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n;\tO\t;\tO\n(\tO\t(\tO\nUTF-16\tO\tUTF-16\tO\nwindows\tB-Operating_System\twindows\tO\n,\tO\t,\tO\nUTF-32\tO\tUTF-32\tO\nfor\tO\tfor\tO\nmost\tO\tmost\tO\n*\tB-Operating_System\t*\tO\nnix\tI-Operating_System\tnix\tO\nlike\tO\tlike\tO\nOS\tO\tOS\tO\n)\tO\t)\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nto\tO\tto\tO\nimbue\tO\timbue\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nwith\tO\twith\tO\na\tO\ta\tO\nfacet\tO\tfacet\tO\nthat\tO\tthat\tO\nknows\tO\tknows\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nis\tO\tis\tO\nin\tO\tin\tO\nUTF-8\tO\tUTF-8\tO\nand\tO\tand\tO\nwill\tO\twill\tO\nconvert\tO\tconvert\tO\nit\tO\tit\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nfacets\tO\tfacets\tO\nfloating\tO\tfloating\tO\naround\tO\taround\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\nlibraries\tO\tlibraries\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nan\tO\tan\tO\neasy\tO\teasy\tO\none\tO\tone\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nis\tO\tis\tO\nboost\tO\tboost\tO\n:\tO\t:\tO\n\t\nhttp://www.boost.org/doc/libs/1_38_0/libs/serialization/doc/codecvt.html\tO\thttp://www.boost.org/doc/libs/1_38_0/libs/serialization/doc/codecvt.html\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nIt\tO\tIt\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nboost\tB-Library\tboost\tO\n1.46\tB-Version\t1.46\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_577\tI-Code_Block\tA_577\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThe\tO\tThe\tO\nprocesses\tO\tprocesses\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfor\tO\tfor\tO\nwritting\tO\twritting\tO\nUTF-16/32\tO\tUTF-16/32\tO\nback\tO\tback\tO\nto\tO\tto\tO\na\tO\ta\tO\nstream\tO\tstream\tO\nand\tO\tand\tO\nconverting\tO\tconverting\tO\nit\tO\tit\tO\nto\tO\tto\tO\nUTF-8\tO\tUTF-8\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_578\tI-Code_Block\tA_578\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nNote\tO\tNote\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nimbue\tO\timbue\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\nis\tO\tis\tO\nopened\tO\topened\tO\n.\tO\t.\tO\n\t\nDifferent\tO\tDifferent\tO\nimplementations\tO\timplementations\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nwill\tO\twill\tO\nreact\tO\treact\tO\ndifferently\tO\tdifferently\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nimbue\tO\timbue\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nafter\tO\tafter\tO\nit\tO\tit\tO\nis\tO\tis\tO\nopen\tO\topen\tO\n.\tO\t.\tO\n\t\nThus\tO\tThus\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nimbue\tO\timbue\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nbefore\tO\tbefore\tO\nopening\tO\topening\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nDinkumware\tO\tDinkumware\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\nconversion\tO\tconversion\tO\nfacets\tO\tfacets\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nfree\tO\tfree\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nhttp://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=index_cvt.html#Code%20Conversions\tO\thttp://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=index_cvt.html#Code%20Conversions\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nI\tO\tI\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\nUTF-X\tO\tUTF-X\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nUCS-Y\tO\tUCS-Y\tO\n.\tO\t.\tO\n\t\nThough\tO\tThough\tO\ntechnically\tO\ttechnically\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\nminor\tO\tminor\tO\ndifferences\tO\tdifferences\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\ninconsequential\tO\tinconsequential\tO\ncompared\tO\tcompared\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconfusion\tO\tconfusion\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nby\tO\tby\tO\nswitching\tO\tswitching\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nterms\tO\tterms\tO\nwhile\tO\twhile\tO\ntalking\tO\ttalking\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nsubject\tO\tsubject\tO\n.\tO\t.\tO\n\t\nStick\tO\tStick\tO\nto\tO\tto\tO\none\tO\tone\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ntalk\tO\ttalk\tO\nexplicitly\tO\texplicitly\tO\nabout\tO\tabout\tO\na\tO\ta\tO\nfeature\tO\tfeature\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nSurrogate\tO\tSurrogate\tO\npairs\tO\tpairs\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35136362\tO\t35136362\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35136362/\tO\thttps://stackoverflow.com/questions/35136362/\tO\n\t\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\ntakes\tO\ttakes\tO\npractically\tO\tpractically\tO\nno\tO\tno\tO\ntime\tO\ttime\tO\nat\tO\tat\tO\nall\tO\tall\tO\nwhen\tO\twhen\tO\noptimizing\tO\toptimizing\tO\nwith\tO\twith\tO\n-O3\tO\t-O3\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4297\tI-Code_Block\tQ_4297\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nWhat\tO\tWhat\tO\ncompiler\tB-Application\tcompiler\tO\noptimization\tO\toptimization\tO\nis\tO\tis\tO\nmaking\tO\tmaking\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\ngo\tO\tgo\tO\nfrom\tO\tfrom\tO\n0.014\tO\t0.014\tO\nseconds\tO\tseconds\tO\nwith\tO\twith\tO\n-O0\tO\t-O0\tO\nto\tO\tto\tO\n0.000000\tO\t0.000000\tO\nwith\tO\twith\tO\n-03\tB-Code_Block\t-03\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35136362\tO\t35136362\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35136362/\tO\thttps://stackoverflow.com/questions/35136362/\tO\n\t\n\t\nThe\tO\tThe\tO\ninternal\tO\tinternal\tO\nlarge\tO\tlarge\tO\nloop\tO\tloop\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nside\tO\tside\tO\neffects\tO\teffects\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nB\tB-Variable_Name\tB\tO\nanywhere\tO\tanywhere\tO\n,\tO\t,\tO\nso\tO\tso\tO\nany\tO\tany\tO\ndecent\tO\tdecent\tO\ncompiler\tB-Application\tcompiler\tO\nwith\tO\twith\tO\n-O3\tB-Code_Block\t-O3\tO\nwill\tO\twill\tO\neliminate\tO\teliminate\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\navoid\tO\tavoid\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nsummarize\tO\tsummarize\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\noutcome\tO\toutcome\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nprinting\tO\tprinting\tO\nsome\tO\tsome\tO\nrandom\tO\trandom\tO\nelement\tO\telement\tO\nfrom\tO\tfrom\tO\nB\tB-Variable_Name\tB\tO\nmight\tO\tmight\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\nsuspicious\tO\tsuspicious\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthat\tO\tthat\tO\nelimination\tO\telimination\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35136362\tO\t35136362\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35136362/\tO\thttps://stackoverflow.com/questions/35136362/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nsay\tO\tsay\tO\nfor\tO\tfor\tO\nsure\tO\tsure\tO\nwithout\tO\twithout\tO\nchecking\tO\tchecking\tO\nthe\tO\tthe\tO\ngenerated\tB-File_Name\tgenerated\tO\nassembly\tI-File_Name\tassembly\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ngeneral\tO\tgeneral\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nas-if\tO\tas-if\tO\nrule\tO\trule\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\n\t\nOP_BLOCK\tB-Output_Block\tOP_BLOCK\tB-Output_Block\n:\tI-Output_Block\t:\tI-Output_Block\n(\tI-Output_Block\t(\tI-Output_Block\noutput\tI-Output_Block\toutput\tI-Output_Block\nomitted\tI-Output_Block\tomitted\tI-Output_Block\nfor\tI-Output_Block\tfor\tI-Output_Block\nannotation\tI-Output_Block\tannotation\tI-Output_Block\n)\tI-Output_Block\t)\tI-Output_Block\n\t\nIt\tO\tIt\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nsince\tO\tsince\tO\nneither\tO\tneither\tO\nA\tB-Variable_Name\tA\tB-Code_Block\nno\tO\tno\tO\nB\tB-Variable_Name\tB\tB-Code_Block\nare\tO\tare\tO\nused\tO\tused\tO\nanywhere\tO\tanywhere\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncompiler\tB-Application\tcompiler\tO\njust\tO\tjust\tO\nomits\tO\tomits\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5017\tI-Code_Block\tA_5017\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_5018\tI-Code_Block\tA_5018\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8988321\tO\t8988321\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8988321/\tO\thttps://stackoverflow.com/questions/8988321/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nspend\tO\tspend\tO\naround\tO\taround\tO\n5\tO\t5\tO\nhours\tO\thours\tO\ntrying\tO\ttrying\tO\neverything\tO\teverything\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\neven\tO\teven\tO\nable\tO\table\tO\nto\tO\tto\tO\nreproduce\tO\treproduce\tO\nit\tO\tit\tO\nproperly\tO\tproperly\tO\nso\tO\tso\tO\nI\tO\tI\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nsimplified\tO\tsimplified\tO\noriginal\tO\toriginal\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\napologize\tO\tapologize\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nextent\tO\textent\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nrelevant\tO\trelevant\tO\ninformation\tO\tinformation\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfew\tO\tfew\tO\ntimes\tO\ttimes\tO\nI\tO\tI\tO\nfeel\tO\tfeel\tO\ncompletely\tO\tcompletely\tO\npowerless\tO\tpowerless\tO\nand\tO\tand\tO\nkindly\tO\tkindly\tO\nrequest\tO\trequest\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nany\tO\tany\tO\ncomments\tO\tcomments\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbring\tO\tbring\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nsome\tO\tsome\tO\nlight\tO\tlight\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmatter\tO\tmatter\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbehaviour\tO\tbehaviour\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\nmystery\tO\tmystery\tO\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nprogramming\tO\tprogramming\tO\nin\tO\tin\tO\nQtCreator\tB-Application\tQtCreator\tO\nin\tO\tin\tO\nUbuntu\tB-Operating_System\tUbuntu\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndevelop\tO\tdevelop\tO\na\tO\ta\tO\nframework\tO\tframework\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nmathematical\tO\tmathematical\tO\nproblems\tO\tproblems\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nPopulation\tB-Class_Name\tPopulation\tO\nof\tO\tof\tO\ncandidate\tO\tcandidate\tO\nsolutions\tO\tsolutions\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nevolve\tO\tevolve\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ntrue\tO\ttrue\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\n3\tO\t3\tO\nclasses\tO\tclasses\tO\ninvolved\tO\tinvolved\tO\n:\tO\t:\tO\nPopulation\tB-Class_Name\tPopulation\tO\n,\tO\t,\tO\nPopulationMember\tB-Class_Name\tPopulationMember\tO\nand\tO\tand\tO\nProblem\tB-Class_Name\tProblem\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_752\tI-Code_Block\tQ_752\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nUsually\tO\tUsually\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\nruns\tO\truns\tO\nin\tO\tin\tO\nloops\tO\tloops\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\npopulation\tB-Class_Name\tpopulation\tO\ncalls\tO\tcalls\tO\nits\tO\tits\tO\nvarious\tO\tvarious\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nis\tO\tis\tO\nPopulation::evaluate()\tB-Function_Name\tPopulation::evaluate()\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nprogram\tO\tprogram\tO\nran\tO\tran\tO\ngreat\tO\tgreat\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\nintroduced\tO\tintroduced\tO\nsome\tO\tsome\tO\nnew\tO\tnew\tO\nmethods\tO\tmethods\tO\nof\tO\tof\tO\nPopulation\tB-Class_Name\tPopulation\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_753\tI-Code_Block\tQ_753\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\nsegmentation\tB-Error_Name\tsegmentation\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmiddle\tO\tmiddle\tO\nof\tO\tof\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nstrangest\tO\tstrangest\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhappens\tO\thappens\tO\nonly\tO\tonly\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\n10\tO\t10\tO\nloops\tO\tloops\tO\n,\tO\t,\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\npopulation\tB-Class_Name\tpopulation\tO\nexecuted\tO\texecuted\tO\nreport()\tB-Function_Name\treport()\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nafter\tO\tafter\tO\nsome\tO\tsome\tO\nexperimentation\tO\texperimentation\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nexcluded\tO\texcluded\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\noperations\tO\toperations\tO\nwhich\tO\twhich\tO\nrequire\tO\trequire\tO\ndynamic\tO\tdynamic\tO\nallocation\tO\tallocation\tO\nof\tO\tof\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\n(\tO\t(\tO\nstrings\tB-Data_Type\tstrings\tO\n)\tO\t)\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nreport()\tB-Function_Name\treport()\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nConversely\tO\tConversely\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndisable\tO\tdisable\tO\nthe\tO\tthe\tO\nsorting\tO\tsorting\tO\nmethod\tO\tmethod\tO\n(\tO\t(\tO\nuses\tO\tuses\tO\neither\tO\teither\tO\nstd::sort\tB-Library_Function\tstd::sort\tO\nor\tO\tor\tO\nqSort\tB-Library_Function\tqSort\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nstops\tO\tstops\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nleave\tO\tleave\tO\nthe\tO\tthe\tO\nactions\tO\tactions\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ntemp\tB-Variable_Name\ttemp\tO\nPopulation\tB-Class_Name\tPopulation\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nstarted\tO\tstarted\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlet\tO\tlet\tO\nit\tO\tit\tO\ncomplete\tO\tcomplete\tO\n10\tO\t10\tO\nloops\tO\tloops\tO\nand\tO\tand\tO\nstarted\tO\tstarted\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nstep\tO\tstep\tO\nby\tO\tby\tO\nstep\tO\tstep\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwent\tO\twent\tO\ninto\tO\tinto\tO\nPopulation->evaluate()\tB-Code_Block\tPopulation->evaluate()\tO\n;\tI-Code_Block\t;\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_754\tI-Code_Block\tQ_754\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n}\tB-Code_Block\t}\tO\n\t\ndebug\tO\tdebug\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\naddres\tO\taddres\tO\nprinted\tO\tprinted\tO\nout\tO\tout\tO\nis\tO\tis\tO\n0xbffff628\tB-Value\t0xbffff628\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\n10\tB-Code_Block\t10\tO\n*\tI-Code_Block\t*\tO\npopulation_->members_.count()\tI-Code_Block\tpopulation_->members_.count()\tO\nprintouts\tO\tprintouts\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ngo\tO\tgo\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\n(\tB-Code_Block\t(\tO\n*\tI-Code_Block\t*\tO\nit\tI-Code_Block\tit\tO\n)\tI-Code_Block\t)\tO\n->\tB-Code_Block\t->\tO\nevaluate()\tI-Code_Block\tevaluate()\tO\n;\tI-Code_Block\t;\tO\nHere\tO\tHere\tO\nI\tO\tI\tO\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nassembly\tB-Language\tassembly\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_755\tI-Code_Block\tQ_755\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nI\tO\tI\tO\ngo\tO\tgo\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nof\tO\tof\tO\nfunction\tO\tfunction\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ninstruction\tO\tinstruction\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\ninstant\tO\tinstant\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nattributes\tO\tattributes\tO\nin\tO\tin\tO\nproblem_\tB-Variable_Name\tproblem_\tO\nbecome\tO\tbecome\tO\nnot\tO\tnot\tO\naccessible\tO\taccessible\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ndebugger\tB-Application\tdebugger\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nall\tO\tall\tO\nis\tO\tis\tO\nlost\tO\tlost\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_756\tI-Code_Block\tQ_756\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\ndebug\tO\tdebug\tO\n:\tO\t:\tO\n\t\nFinally\tO\tFinally\tO\nthe\tO\tthe\tO\naddress\tO\taddress\tO\nthe\tO\tthe\tO\nproblem_\tB-Variable_Name\tproblem_\tO\nis\tO\tis\tO\npointing\tO\tpointing\tO\nat\tO\tat\tO\nbecomes\tO\tbecomes\tO\n0xbffff780\tB-Value\t0xbffff780\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n0xbffff628\tB-Value\t0xbffff628\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nincrement\tO\tincrement\tO\nof\tO\tof\tO\n344\tB-Value\t344\tO\n\t\nThis\tO\tThis\tO\nhappens\tO\thappens\tO\nalways\tO\talways\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nincrement\tO\tincrement\tO\nis\tO\tis\tO\n344\tB-Value\t344\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nsome\tO\tsome\tO\nminor\tO\tminor\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\naddress\tO\taddress\tO\nchanges\tO\tchanges\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\naddresses\tO\taddresses\tO\nremains\tO\tremains\tO\n344\tB-Value\t344\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nmore\tO\tmore\tO\npuzzling\tO\tpuzzling\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nthree\tO\tthree\tO\nclasses\tO\tclasses\tO\nis\tO\tis\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n100\tB-Value\t100\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nprogram\tO\tprogram\tO\ncrashes\tO\tcrashes\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nvoid\tB-Code_Block\tvoid\tO\nProblem\tI-Code_Block\tProblem\tO\n::\tI-Code_Block\t::\tO\nevaluate(PopulationMember&)const\tI-Code_Block\tevaluate(PopulationMember&)const\tO\n;\tI-Code_Block\t;\tO\nmethod\tO\tmethod\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nsome\tO\tsome\tO\nlogic\tO\tlogic\tO\nis\tO\tis\tO\ninvolved\tO\tinvolved\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_757\tI-Code_Block\tQ_757\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8988321\tO\t8988321\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8988321/\tO\thttps://stackoverflow.com/questions/8988321/\tO\n\t\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1104\tI-Code_Block\tA_1104\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ncopying\tO\tcopying\tO\naround\tO\taround\tO\nPopulation-instances\tB-Class_Name\tPopulation-instances\tB-Code_Block\nquite\tO\tquite\tO\na\tO\ta\tO\nbit\tO\tbit\tO\n:\tO\t:\tO\n1\tO\t1\tO\n.\tO\t.\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nreturning\tO\treturning\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\ncopy\tO\tcopy\tO\nby\tO\tby\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\n2\tO\t2\tO\n.\tO\t.\tO\ncopying\tO\tcopying\tO\nagain\tO\tagain\tO\nby\tO\tby\tO\nassigning\tO\tassigning\tO\ninto\tO\tinto\tO\nanother\tO\tanother\tO\nlocal\tO\tlocal\tO\nwith\tO\twith\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1105\tI-Code_Block\tA_1105\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nAll\tO\tAll\tO\nthese\tO\tthese\tO\ninstances\tO\tinstances\tO\nget\tO\tget\tO\npointers\tB-Data_Type\tpointers\tO\nto\tO\tto\tO\nPopulationMember\tB-Class_Name\tPopulationMember\tB-Code_Block\nand\tO\tand\tO\nownsMembers_\tB-Variable_Name\townsMembers_\tB-Code_Block\nis\tO\tis\tO\nalways\tO\talways\tO\nset\tO\tset\tO\ntrue\tB-Value\ttrue\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\nlooks\tO\tlooks\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nfishy\tO\tfishy\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nwith\tO\twith\tO\nbreakpoints\tO\tbreakpoints\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ndestructors/constructors\tO\tdestructors/constructors\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nlifecycle\tO\tlifecycle\tO\nof\tO\tof\tO\neach\tO\teach\tO\npopulation\tB-Class_Name\tpopulation\tO\nand\tO\tand\tO\nits\tO\tits\tO\nmembers\tO\tmembers\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nappend\tO\tappend\tO\nmethod\tO\tmethod\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1106\tI-Code_Block\tA_1106\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmembers\tO\tmembers\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nPopulation\tB-Class_Name\tPopulation\tO\nanymore\tO\tanymore\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nPopulation&\tB-Class_Name\tPopulation&\tB-Code_Block\nis\tO\tis\tO\nstored\tO\tstored\tO\non\tO\ton\tO\nstack\tB-Data_Structure\tstack\tO\nand\tO\tand\tO\ngets\tO\tgets\tO\ndeleted\tO\tdeleted\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nfor\tB-Code_Block\tfor\tB-Code_Block\nloop\tO\tloop\tO\nends\tO\tends\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nPopulationMembers\tB-Class_Name\tPopulationMembers\tO\nstill\tO\tstill\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\nthese\tO\tthese\tO\nPopulations\tB-Class_Name\tPopulations\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nFix\tO\tFix\tO\n\t\nplease\tO\tplease\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nA_1107\tI-Code_Block\tA_1107\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35329565\tO\t35329565\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35329565/\tO\thttps://stackoverflow.com/questions/35329565/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nscoured\tO\tscoured\tO\nSOF\tB-Website\tSOF\tO\nand\tO\tand\tO\ngoogle\tB-Website\tgoogle\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\nno\tO\tno\tO\njoy\tO\tjoy\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nI\tO\tI\tO\npresume\tO\tpresume\tO\nin\tO\tin\tO\nJavaScript\tB-Language\tJavaScript\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwish\tO\twish\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nHTML\tB-Language\tHTML\tO\nforms\tO\tforms\tO\noption\tO\toption\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK\tB-Code_Block\tCODE_BLOCK\tB-Code_Block\n:\tI-Code_Block\t:\tI-Code_Block\nQ_4333\tI-Code_Block\tQ_4333\tI-Code_Block\n(\tI-Code_Block\t(\tI-Code_Block\ncode\tI-Code_Block\tcode\tI-Code_Block\nomitted\tI-Code_Block\tomitted\tI-Code_Block\nfor\tI-Code_Block\tfor\tI-Code_Block\nannotation\tI-Code_Block\tannotation\tI-Code_Block\n)\tI-Code_Block\t)\tI-Code_Block\n\t\n"
  },
  {
    "path": "resources/annotated_ner_data/StackOverflow/train_merged_labels.txt",
    "content": "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.com/questions/37985879/\tO\thttps://stackoverflow.com/questions/37985879/\tO\n\t\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\n2\tO\t2\tO\ntables B-Data_Structure tables O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4780 I-Code_Block Q_4780 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nresult\tO\tresult\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4781 I-Code_Block Q_4781 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nquery\tO\tquery\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nadjusted\tO\tadjusted\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4782 I-Code_Block Q_4782 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSQLFIDDLE B-Application SQLFIDDLE O\n:\tO\t:\tO\nhttp://sqlfiddle.com/#!9/11093\tO\thttp://sqlfiddle.com/#!9/11093\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37985879\tO\t37985879\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37985879/\tO\thttps://stackoverflow.com/questions/37985879/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\nclose\tO\tclose\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nwhere B-Code_Block where B-Code_Block\nclause\tO\tclause\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5464 I-Code_Block A_5464 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nA\tO\tA\tO\nmore\tO\tmore\tO\ntraditional\tO\ttraditional\tO\napproach\tO\tapproach\tO\nuses\tO\tuses\tO\nNOT B-Code_Block NOT B-Code_Block\nEXISTS I-Code_Block EXISTS I-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5465 I-Code_Block A_5465 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nSQL B-Application SQL O\nFiddle I-Application Fiddle O\nillustrating\tO\tillustrating\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25481513\tO\t25481513\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25481513/\tO\thttps://stackoverflow.com/questions/25481513/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nchat\tO\tchat\tO\nprogram\tO\tprogram\tO\nafter\tO\tafter\tO\nreading\tO\treading\tO\nBeej\tO\tBeej\tO\n's\tO\t's\tO\nguide\tO\tguide\tO\nto\tO\tto\tO\nprogramming\tO\tprogramming\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nthinking\tO\tthinking\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nbasics\tO\tbasics\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\nrecv() B-Function recv() O\nand\tO\tand\tO\nget\tO\tget\tO\ninput\tO\tinput\tO\nfor\tO\tfor\tO\nsend() B-Function send() O\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nclient\tO\tclient\tO\ncan\tO\tcan\tO\nalways\tO\talways\tO\nwrite\tO\twrite\tO\nsomething\tO\tsomething\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nalso\tO\talso\tO\nprint\tO\tprint\tO\nsomething\tO\tsomething\tO\nwhile\tO\twhile\tO\nhe\tO\the\tO\n's\tO\t's\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ninput\tO\tinput\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nabout\tO\tabout\tO\nthreads\tO\tthreads\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nlearned\tO\tlearned\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\nabout\tO\tabout\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\n2\tO\t2\tO\nsimple\tO\tsimple\tO\nthreads\tO\tthreads\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\n,\tO\t,\tO\nprints\tO\tprints\tO\na\tO\ta\tO\nsentence\tO\tsentence\tO\nevery\tO\tevery\tO\n3\tO\t3\tO\nseconds\tO\tseconds\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\none\tO\tone\tO\nget\tO\tget\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nlittle\tO\tlittle\tO\nprogram\tO\tprogram\tO\nof-course\tO\tof-course\tO\nhad\tO\thad\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nissues\tO\tissues\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nex\tO\tex\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nstarted\tO\tstarted\tO\ntyping\tO\ttyping\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nthread\tO\tthread\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nsomething\tO\tsomething\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nsimply\tO\tsimply\tO\ntake\tO\ttake\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwrote\tO\twrote\tO\n,\tO\t,\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nitself\tO\titself\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nrecreate\tO\trecreate\tO\nit\tO\tit\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhope\tO\thope\tO\nyou\tO\tyou\tO\nguys\tO\tguys\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2894 I-Code_Block Q_2894 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25481513\tO\t25481513\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25481513/\tO\thttps://stackoverflow.com/questions/25481513/\tO\n\t\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nundefined\tO\tundefined\tO\nbehavior\tO\tbehavior\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\nhaven\tO\thaven\tO\nan\tO\tan\tO\nuninitialized\tO\tuninitialized\tO\npointer\tO\tpointer\tO\ninput B-Function input B-Code_Block\nin\tO\tin\tO\ngetinput B-Function getinput B-Code_Block\n.\tO\t.\tO\n\t\nUninitialized\tO\tUninitialized\tO\n(\tO\t(\tO\nnon-static B-Data_Type non-static O\n)\tO\t)\tO\nlocal\tO\tlocal\tO\nvariables\tO\tvariables\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nindeterminate\tO\tindeterminate\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nrandom\tO\trandom\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nindeterminate\tO\tindeterminate\tO\n(\tO\t(\tO\nand\tO\tand\tO\nseemingly\tO\tseemingly\tO\nrandom\tO\trandom\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nscanf B-Function scanf B-Code_Block\ncall\tO\tcall\tO\nwill\tO\twill\tO\nwrite\tO\twrite\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nunknown\tO\tunknown\tO\nplace\tO\tplace\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\n,\tO\t,\tO\noverwriting\tO\toverwriting\tO\nwhatever\tO\twhatever\tO\nwas\tO\twas\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\neasily\tO\teasily\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nmaking\tO\tmaking\tO\ninput B-Function input B-Code_Block\nan\tO\tan\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40639751\tO\t40639751\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40639751/\tO\thttps://stackoverflow.com/questions/40639751/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nC# B-Language C# O\n/.NET B-Library /.NET O\napplication\tO\tapplication\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmultiple\tO\tmultiple\tO\nthreads\tO\tthreads\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nconcurrently\tO\tconcurrently\tO\n,\tO\t,\tO\n6\tO\t6\tO\nthreads\tO\tthreads\tO\n)\tO\t)\tO\n,\tO\t,\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nfollowing\tO\tfollowing\tO\nupdate\tO\tupdate\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5130 I-Code_Block Q_5130 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nrun\tO\trun\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntransaction\tO\ttransaction\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\ntables\tO\ttables\tO\nhave\tO\thave\tO\n3+mio\tO\t3+mio\tO\nrecords\tO\trecords\tO\n.\tO\t.\tO\n\t\nClustered\tO\tClustered\tO\nkey\tO\tkey\tO\nis\tO\tis\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n[\tO\t[\tO\nId B-Variable Id O\n]\tO\t]\tO\nfield\tO\tfield\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nnon-clustered\tO\tnon-clustered\tO\nindexes\tO\tindexes\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nFunny\tO\tFunny\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nmanually\tO\tmanually\tO\nchecked\tO\tchecked\tO\nand\tO\tand\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nparticular\tO\tparticular\tO\nexample\tO\texample\tO\nwith\tO\twith\tO\n3+mio\tO\t3+mio\tO\nrecords\tO\trecords\tO\ncWrh B-Variable cWrh O\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nOptions\tO\tOptions\tO\n]\tO\t]\tO\nand\tO\tand\tO\ncStg B-Variable cStg O\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nOptions\tO\tOptions\tO\n]\tO\t]\tO\nare\tO\tare\tO\nalways\tO\talways\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nso\tO\tso\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattaching\tO\tattaching\tO\nthe\tO\tthe\tO\ndeadlog\tO\tdeadlog\tO\ngraph B-Data_Structure graph O\n,\tO\t,\tO\nredacted\tO\tredacted\tO\nvalues\tO\tvalues\tO\nsay\tO\tsay\tO\nDB.wrh.Cars B-Variable DB.wrh.Cars O\n:\tO\t:\tO\n\t\nDeadlock\tO\tDeadlock\tO\ngraph B-Data_Structure graph O\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nparticular\tO\tparticular\tO\nexample\tO\texample\tO\nconcurrency\tO\tconcurrency\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\nadding\tO\tadding\tO\nany\tO\tany\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\n\" B-Value \" O\nReset I-Value Reset O\n\" I-Value \" O\nquery\tO\tquery\tO\n;\tO\t;\tO\nthe\tO\tthe\tO\n\" B-Value \" O\nRecalculate I-Value Recalculate O\n\" I-Value \" O\nquery\tO\tquery\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nsome\tO\tsome\tO\n[\tO\t[\tO\nOptions\tO\tOptions\tO\n]\tO\t]\tO\ncalculation\tO\tcalculation\tO\nin\tO\tin\tO\nC# B-Language C# O\n,\tO\t,\tO\nbulk\tO\tbulk\tO\ninserts\tO\tinserts\tO\nback\tO\tback\tO\ninto\tO\tinto\tO\nSQL B-Language SQL O\nand\tO\tand\tO\nupdates\tO\tupdates\tO\nlater\tO\tlater\tO\nin\tO\tin\tO\na\tO\ta\tO\nconcurrent\tO\tconcurrent\tO\nmode\tO\tmode\tO\nspeeds\tO\tspeeds\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nthing\tO\tthing\tO\nsignificantly\tO\tsignificantly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nstick\tO\tstick\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nconcurrent\tO\tconcurrent\tO\napproach\tO\tapproach\tO\nregardless\tO\tregardless\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\n(\tO\t(\tO\nsimple\tO\tsimple\tO\nreset\tO\treset\tO\nvs\tO\tvs\tO\nCPU B-Device CPU O\nintensive\tO\tintensive\tO\nwork\tO\twork\tO\n)\tO\t)\tO\nif\tO\tif\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nsuggestion\tO\tsuggestion\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nwork\tO\twork\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\ndeadlock\tO\tdeadlock\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40639751\tO\t40639751\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40639751/\tO\thttps://stackoverflow.com/questions/40639751/\tO\n\t\n\t\nAs\tO\tAs\tO\nsuggested\tO\tsuggested\tO\nby\tO\tby\tO\n@KamranFarzami B-User_Name @KamranFarzami O\n,\tO\t,\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nby\tO\tby\tO\n@Grantly B-User_Name @Grantly O\nsolved\tO\tsolved\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npoint\tO\tpoint\tO\nfor\tO\tfor\tO\nanswering\tO\tanswering\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\ngoes\tO\tgoes\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nTransaction\tO\tTransaction\tO\nIsolation\tO\tIsolation\tO\nLevel\tO\tLevel\tO\nof\tO\tof\tO\nSNAPSHOT\tO\tSNAPSHOT\tO\nprevents\tO\tprevents\tO\ndeadlocks\tO\tdeadlocks\tO\nfrom\tO\tfrom\tO\nocurring\tO\tocurring\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29336940\tO\t29336940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29336940/\tO\thttps://stackoverflow.com/questions/29336940/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\nam\tO\tam\tO\nstruggling\tO\tstruggling\tO\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nfiddle\tO\tfiddle\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\n\" B-Value \" O\nx2 I-Value x2 O\n\" I-Value \" O\nand\tO\tand\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\n1 B-Value 1 O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n1 B-Value 1 O\nx2 I-Value x2 O\n\t\nUse\tO\tUse\tO\nJavascript B-Language Javascript O\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nabove\tO\tabove\tO\nthe\tO\tthe\tO\nx2 B-Value x2 O\nbutton B-User_Interface_Element button O\nwill\tO\twill\tO\ndouble\tO\tdouble\tO\n.\tO\t.\tO\n\t\nSend\tO\tSend\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfiddle B-Application fiddle O\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthus\tO\tthus\tO\nfar\tO\tfar\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntargeting\tO\ttargeting\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\nvia\tO\tvia\tO\nJS B-Language JS O\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nupdated\tO\tupdated\tO\nvalue\tO\tvalue\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nx2 B-Value x2 O\nbutton B-User_Interface_Element button O\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3492 I-Code_Block Q_3492 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29336940\tO\t29336940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29336940/\tO\thttps://stackoverflow.com/questions/29336940/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4141 I-Code_Block A_4141 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29336940\tO\t29336940\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29336940/\tO\thttps://stackoverflow.com/questions/29336940/\tO\n\t\n\t\nLook\tO\tLook\tO\nat\tO\tat\tO\nwhat\tO\twhat\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\ndoing\tO\tdoing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4140 I-Code_Block A_4140 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nmultiplying\tO\tmultiplying\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nby\tO\tby\tO\ntwo\tO\ttwo\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nNOT\tO\tNOT\tO\nreading\tO\treading\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ninnerHTML B-Function innerHTML B-Code_Block\nor\tO\tor\tO\ntextContent B-Function textContent B-Code_Block\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nstring B-Data_Type string O\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nparseInt() B-Function parseInt() B-Code_Block\nor\tO\tor\tO\nparseFloat() B-Function parseFloat() B-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31336417\tO\t31336417\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31336417/\tO\thttps://stackoverflow.com/questions/31336417/\tO\n\t\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\noverride\tO\toverride\tO\nparent\tO\tparent\tO\nclass\tO\tclass\tO\n's\tO\t's\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nsuper() B-Function super() B-Code_Block\nto\tO\tto\tO\navoid\tO\tavoid\tO\nmention\tO\tmention\tO\nof\tO\tof\tO\nparent\tO\tparent\tO\nclass\tO\tclass\tO\n's\tO\t's\tO\nname\tO\tname\tO\n-\tO\t-\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nclear\tO\tclear\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhat\tO\twhat\tO\nabout\tO\tabout\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nwe\tO\twe\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nin\tO\tin\tO\nsubclass\tO\tsubclass\tO\nsome\tO\tsome\tO\nfunction\tO\tfunction\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nparent\tO\tparent\tO\nclass\tO\tclass\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\npreferable\tO\tpreferable\tO\nway\tO\tway\tO\n:\tO\t:\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsuper().parent_method() B-Function super().parent_method() B-Code_Block\nor\tO\tor\tO\nself.parent_method() B-Function self.parent_method() B-Code_Block\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nno\tO\tno\tO\ndifference\tO\tdifference\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3770 I-Code_Block Q_3770 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31336417\tO\t31336417\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31336417/\tO\thttps://stackoverflow.com/questions/31336417/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nactually\tO\tactually\tO\nsuper() B-Function super() B-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nsyntactic\tO\tsyntactic\tO\nsugar\tO\tsugar\tO\n,\tO\t,\tO\nits\tO\tits\tO\npurpose\tO\tpurpose\tO\nis\tO\tis\tO\nto\tO\tto\tO\ninvoke\tO\tinvoke\tO\nparent\tO\tparent\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsuper() B-Function super() B-Code_Block\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\na\tO\ta\tO\nparent\tO\tparent\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsuper() B-Function super() B-Code_Block\nwhen\tO\twhen\tO\ninstead\tO\tinstead\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\noverwrite\tO\toverwrite\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndifference\tO\tdifference\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nextra\tO\textra\tO\nbehavior\tO\tbehavior\tO\n(\tO\t(\tO\naka\tO\taka\tO\ncode\tO\tcode\tO\nexecution\tO\texecution\tO\n)\tO\t)\tO\nbefore\tO\tbefore\tO\nor\tO\tor\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nimplementation\tO\timplementation\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\ncompletely\tO\tcompletely\tO\ndifferent\tO\tdifferent\tO\nimplementation\tO\timplementation\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nself.method_name() B-Function self.method_name() B-Code_Block\nin\tO\tin\tO\nan\tO\tan\tO\noverride\tO\toverride\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nrecursion\tO\trecursion\tO\nerror\tO\terror\tO\n!\tO\t!\tO\n\t\n(\tO\t(\tO\nRuntimeError B-Error_Name RuntimeError B-Code_Block\n:\tO\t:\tI-Code_Block\nmaximum\tO\tmaximum\tI-Code_Block\nrecursion\tO\trecursion\tI-Code_Block\ndepth\tO\tdepth\tI-Code_Block\nexceeded\tO\texceeded\tI-Code_Block\n)\tO\t)\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4468 I-Code_Block A_4468 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nGiven\tO\tGiven\tO\na\tO\ta\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\nA B-Class A B-Code_Block\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nm B-Function m B-Code_Block\n,\tO\t,\tO\nB B-Class B B-Code_Block\nextends\tO\textends\tO\nA B-Class A B-Code_Block\nby\tO\tby\tO\noverriding\tO\toverriding\tO\nm B-Function m B-Code_Block\n,\tO\t,\tO\nC B-Class C B-Code_Block\nextends\tO\textends\tO\nA B-Class A B-Code_Block\nby\tO\tby\tO\noverwriting\tO\toverwriting\tO\nm B-Function m B-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nD B-Class D B-Code_Block\ngenerates\tO\tgenerates\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n!\tO\t!\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nrealized\tO\trealized\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nactually\tO\tactually\tO\nhave\tO\thave\tO\n2\tO\t2\tO\ndifferent\tO\tdifferent\tO\nmethods\tO\tmethods\tO\n(\tO\t(\tO\ntest_a B-Function test_a B-Code_Block\nand\tO\tand\tO\ntest_b B-Function test_b B-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nvalid\tO\tvalid\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nregarding\tO\tregarding\tO\nyour\tO\tyour\tO\nspecific\tO\tspecific\tO\nscenario\tO\tscenario\tO\n:\tO\t:\tO\n\t\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\nself.test_a() B-Function self.test_a() B-Code_Block\nunless\tO\tunless\tO\nyou\tO\tyou\tO\noverride/overwrite\tO\toverride/overwrite\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nclass\tO\tclass\tO\nB B-Class B O\nand\tO\tand\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nimplementation.\tO\timplementation.\tO\n.\tO\t.\tO\nso\tO\tso\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nsay\tO\tsay\tO\nthat\tO\tthat\tO\ncalling\tO\tcalling\tO\nsuper().test_a() B-Function super().test_a() B-Code_Block\nor\tO\tor\tO\nself.test_a() B-Function self.test_a() B-Code_Block\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ngiven\tO\tgiven\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nnever\tO\tnever\tO\noverride/overwrite\tO\toverride/overwrite\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ntest_a() B-Function test_a() B-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\nsubclasses.\tO\tsubclasses.\tO\n.\tO\t.\tO\nhowever\tO\thowever\tO\nis\tO\tis\tO\na\tO\ta\tO\nnonsense\tO\tnonsense\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsuper() B-Function super() B-Code_Block\nif\tO\tif\tO\nnot\tO\tnot\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\noverride/overwrite\tO\toverride/overwrite\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31336417\tO\t31336417\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31336417/\tO\thttps://stackoverflow.com/questions/31336417/\tO\n\t\n\t\nUsually\tO\tUsually\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nself.test_a() B-Function self.test_a() B-Code_Block\nto\tO\tto\tO\ncall\tO\tcall\tO\nan\tO\tan\tO\ninherited\tO\tinherited\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\nrare\tO\trare\tO\nsituations\tO\tsituations\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsuper().test_a() B-Function super().test_a() B-Code_Block\neven\tO\teven\tO\nthough\tO\tthough\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nequivalent\tO\tequivalent\tO\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbehavior\tO\tbehavior\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nexplore\tO\texplore\tO\nthe\tO\tthe\tO\ndifferences\tO\tdifferences\tO\n,\tO\t,\tO\nlets\tO\tlets\tO\nmake\tO\tmake\tO\ntwo\tO\ttwo\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nB B-Class B B-Code_Block\nclass\tO\tclass\tO\n,\tO\t,\tO\none\tO\tone\tO\nwith\tO\twith\tO\neach\tO\teach\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nmake\tO\tmake\tO\ntwo\tO\ttwo\tO\nC B-Class C B-Code_Block\nclasses\tO\tclasses\tO\nthat\tO\tthat\tO\nfurther\tO\tfurther\tO\nextend\tO\textend\tO\nthe\tO\tthe\tO\nB B-Class B B-Code_Block\nclasses\tO\tclasses\tO\nand\tO\tand\tO\noverride\tO\toverride\tO\ntest_a B-Function test_a B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4469 I-Code_Block A_4469 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\ntest_b() B-Function test_b() B-Code_Block\nmethod\tO\tmethod\tO\non\tO\ton\tO\nC1 B-Class C1 B-Code_Block\nand\tO\tand\tO\nC2 B-Class C2 B-Code_Block\ninstances\tO\tinstances\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\ndifferent\tO\tdifferent\tO\nresults\tO\tresults\tO\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nB1 B-Class B1 B-Code_Block\nand\tO\tand\tO\nB2 B-Class B2 B-Code_Block\nbehave\tO\tbehave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4470 I-Code_Block A_4470 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nsuper() B-Function super() B-Code_Block\ncall\tO\tcall\tO\nin\tO\tin\tO\nB2.test_b B-Function B2.test_b B-Code_Block\ntells\tO\ttells\tO\nPython B-Language Python O\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nskip\tO\tskip\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\ntest_a B-Function test_a B-Code_Block\nin\tO\tin\tO\nany\tO\tany\tO\nmore\tO\tmore\tO\nderived\tO\tderived\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nalways\tO\talways\tO\ncall\tO\tcall\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nparent\tO\tparent\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nActually\tO\tActually\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsibling\tO\tsibling\tO\nclass\tO\tclass\tO\nin\tO\tin\tO\na\tO\ta\tO\nmultiple\tO\tmultiple\tO\ninheritance\tO\tinheritance\tO\nsituation\tO\tsituation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\ngetting\tO\tgetting\tO\neven\tO\teven\tO\nmore\tO\tmore\tO\nobscure\tO\tobscure\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nLike\tO\tLike\tO\nI\tO\tI\tO\nsaid\tO\tsaid\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nusually\tO\tusually\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\na\tO\ta\tO\nmore-derived\tO\tmore-derived\tO\nclass\tO\tclass\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nCs B-Class Cs B-Code_Block\nto\tO\tto\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\nbehavior\tO\tbehavior\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninherited\tO\tinherited\tO\nmethods\tO\tmethods\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ncalling\tO\tcalling\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nless-derived\tO\tless-derived\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nusing\tO\tusing\tO\nself.whatever B-Code_Block self.whatever B-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsuper B-Function super B-Code_Block\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nfancy\tO\tfancy\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37527241\tO\t37527241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37527241/\tO\thttps://stackoverflow.com/questions/37527241/\tO\n\t\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\n's\tO\t's\tO\nparameter\tO\tparameter\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\nlater\tO\tlater\tO\nabout\tO\tabout\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nparameter\tO\tparameter\tO\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nchange\tO\tchange\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nthinking\tO\tthinking\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nsample\tO\tsample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4704 I-Code_Block Q_4704 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nparameter\tO\tparameter\tO\nof\tO\tof\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nchanged\tO\tchanged\tO\n?\tO\t?\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nwhich\tO\twhich\tO\nparameter\tO\tparameter\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\n..\tO\t..\tO\nthought\tO\tthought\tO\nabout\tO\tabout\tO\nswitch B-Code_Block switch B-Code_Block\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\na\tO\ta\tO\ngood\tO\tgood\tO\ndirection\tO\tdirection\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\ndiscussed\tO\tdiscussed\tO\non\tO\ton\tO\ninternet\tO\tinternet\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nread\tO\tread\tO\neverything\tO\teverything\tO\nabout\tO\tabout\tO\nfunctions\tO\tfunctions\tO\nand\tO\tand\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nsearching\tO\tsearching\tO\nusing\tO\tusing\tO\nwrong\tO\twrong\tO\nkeywords\tO\tkeywords\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37527241\tO\t37527241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37527241/\tO\thttps://stackoverflow.com/questions/37527241/\tO\n\t\n\t\nIf\tO\tIf\tO\nCarinherits B-Variable Carinherits B-Code_Block\nfrom\tO\tfrom\tO\nNSObject B-Class NSObject B-Code_Block\nyou\tO\tyou\tO\nget\tO\tget\tO\nkey-value-coding\tO\tkey-value-coding\tO\nfor\tO\tfor\tO\nfree\tO\tfree\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nwith\tO\twith\tO\nsetValue:forKey B-Code_Block setValue:forKey B-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5402 I-Code_Block A_5402 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37527241\tO\t37527241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37527241/\tO\thttps://stackoverflow.com/questions/37527241/\tO\n\t\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nKVC\tO\tKVC\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\ninherit\tO\tinherit\tO\nfrom\tO\tfrom\tO\nNSObject B-Class NSObject B-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nfunc\tO\tfunc\tO\nthat\tO\tthat\tO\nguards\tO\tguards\tO\nagain\tO\tagain\tO\nbad\tO\tbad\tO\nproperty\tO\tproperty\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5400 I-Code_Block A_5400 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\ncrash\tO\tcrash\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nenter\tO\tenter\tO\nbad\tO\tbad\tO\nproperty\tO\tproperty\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nanswers\tO\tanswers\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26585170\tO\t26585170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26585170/\tO\thttps://stackoverflow.com/questions/26585170/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nusing\tO\tusing\tO\nhaskell B-Language haskell O\nfor\tO\tfor\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nmost/some\tO\tmost/some\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nconcepts\tO\tconcepts\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nexactly\tO\texactly\tO\ndoes\tO\tdoes\tO\nhaskells B-Language haskells O\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nallow\tO\tallow\tO\nme\tO\tme\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\ndo\tO\tdo\tO\nin\tO\tin\tO\nanother\tO\tanother\tO\nstatically\tO\tstatically\tO\ntyped\tO\ttyped\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nintuitively\tO\tintuitively\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nhaskells B-Language haskells O\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nin\tO\tin\tO\nevery\tO\tevery\tO\nimaginable\tO\timaginable\tO\nway\tO\tway\tO\ncompared\tO\tcompared\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nin\tO\tin\tO\nC B-Language C O\n,\tO\t,\tO\nC++ B-Language C++ O\nor\tO\tor\tO\njava B-Language java O\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nexplain\tO\texplain\tO\nit\tO\tit\tO\nlogically\tO\tlogically\tO\n,\tO\t,\tO\nprimarily\tO\tprimarily\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\na\tO\ta\tO\nlack\tO\tlack\tO\nof\tO\tof\tO\nin\tO\tin\tO\ndepth\tO\tdepth\tO\nknowledge\tO\tknowledge\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\ndifferences\tO\tdifferences\tO\nin\tO\tin\tO\ntype\tO\ttype\tO\nsystems\tO\tsystems\tO\nbetween\tO\tbetween\tO\nhaskell B-Language haskell O\nand\tO\tand\tO\nother\tO\tother\tO\nstatically\tO\tstatically\tO\ntyped\tO\ttyped\tO\nlanguages\tO\tlanguages\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nsomeone\tO\tsomeone\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nexamples\tO\texamples\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nhaskells B-Language haskells O\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nhelpful\tO\thelpful\tO\ncompared\tO\tcompared\tO\nto\tO\tto\tO\na\tO\ta\tO\nlanguage\tO\tlanguage\tO\nwith\tO\twith\tO\na\tO\ta\tO\nstatic B-Data_Type static O\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nExamples\tO\tExamples\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nterse\tO\tterse\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsuccinctly\tO\tsuccinctly\tO\nexpressed\tO\texpressed\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26585170\tO\t26585170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26585170/\tO\thttps://stackoverflow.com/questions/26585170/\tO\n\t\n\t\nThe\tO\tThe\tO\nHaskell B-Language Haskell O\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nhas\tO\thas\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nfeatures\tO\tfeatures\tO\nwhich\tO\twhich\tO\nall\tO\tall\tO\nexist\tO\texist\tO\nin\tO\tin\tO\nother\tO\tother\tO\nlanguages\tO\tlanguages\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nare\tO\tare\tO\nrarely\tO\trarely\tO\ncombined\tO\tcombined\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\n,\tO\t,\tO\nconsistent\tO\tconsistent\tO\nlanguage\tO\tlanguage\tO\n:\tO\t:\tO\n\t\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nsound\tO\tsound\tO\n,\tO\t,\tO\nstatic B-Data_Type static O\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nmeaning\tO\tmeaning\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nerrors\tO\terrors\tO\nare\tO\tare\tO\nguaranteed\tO\tguaranteed\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nhappen\tO\thappen\tO\nat\tO\tat\tO\nruntime\tO\truntime\tO\nwithout\tO\twithout\tO\nneeding\tO\tneeding\tO\nruntime\tO\truntime\tO\ntype\tO\ttype\tO\nchecks\tO\tchecks\tO\n(\tO\t(\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nin\tO\tin\tO\nCaml B-Language Caml O\n,\tO\t,\tO\nSML B-Language SML O\nand\tO\tand\tO\nalmost\tO\talmost\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nin\tO\tin\tO\nJava B-Language Java O\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\nLisp B-Language Lisp O\n,\tO\t,\tO\nPython B-Language Python O\n,\tO\t,\tO\nC B-Language C O\n,\tO\t,\tO\nor\tO\tor\tO\nC++ B-Language C++ O\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nit\tO\tit\tO\npeforms\tO\tpeforms\tO\nstatic B-Data_Type static O\ntype\tO\ttype\tO\nreconstruction\tO\treconstruction\tO\n,\tO\t,\tO\nmeaning\tO\tmeaning\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nprogrammer\tO\tprogrammer\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\ntypes\tO\ttypes\tO\nunless\tO\tunless\tO\nhe\tO\the\tO\nwants\tO\twants\tO\nto\tO\tto\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncompiler B-Application compiler O\nwill\tO\twill\tO\nreconstruct\tO\treconstruct\tO\nthem\tO\tthem\tO\non\tO\ton\tO\nits\tO\tits\tO\nown\tO\town\tO\n(\tO\t(\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nin\tO\tin\tO\nCaml B-Language Caml O\nand\tO\tand\tO\nSML B-Language SML O\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nJava B-Language Java O\nor\tO\tor\tO\nC B-Language C O\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nit\tO\tit\tO\nsupports\tO\tsupports\tO\nimpredicative\tO\timpredicative\tO\npolymorphism\tO\tpolymorphism\tO\n(\tO\t(\tO\ntype\tO\ttype\tO\nvariables\tO\tvariables\tO\n)\tO\t)\tO\n,\tO\t,\tO\neven\tO\teven\tO\nat\tO\tat\tO\nhigher\tO\thigher\tO\nkinds\tO\tkinds\tO\n(\tO\t(\tO\nunlike\tO\tunlike\tO\nCaml B-Language Caml O\nand\tO\tand\tO\nSML B-Language SML O\n,\tO\t,\tO\nor\tO\tor\tO\nany\tO\tany\tO\nother\tO\tother\tO\nproduction-ready\tO\tproduction-ready\tO\nlanguage\tO\tlanguage\tO\nknown\tO\tknown\tO\nto\tO\tto\tO\nme\tO\tme\tO\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nit\tO\tit\tO\nhas\tO\thas\tO\ngood\tO\tgood\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\noverloading\tO\toverloading\tO\n(\tO\t(\tO\ntype\tO\ttype\tO\nclasses\tO\tclasses\tO\n)\tO\t)\tO\n(\tO\t(\tO\nunlike\tO\tunlike\tO\nCaml B-Language Caml O\nand\tO\tand\tO\nSML B-Language SML O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhether\tO\tWhether\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nmake\tO\tmake\tO\nHaskell B-Language Haskell O\na\tO\ta\tO\nbetter\tO\tbetter\tO\nlanguage\tO\tlanguage\tO\nis\tO\tis\tO\nopen\tO\topen\tO\nto\tO\tto\tO\ndiscussion\tO\tdiscussion\tO\n—\tO\t—\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\nhappen\tO\thappen\tO\nto\tO\tto\tO\nlike\tO\tlike\tO\ntype\tO\ttype\tO\nclasses\tO\tclasses\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n,\tO\t,\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nCaml B-Language Caml O\nprogrammers\tO\tprogrammers\tO\nwho\tO\twho\tO\nstrongly\tO\tstrongly\tO\ndislike\tO\tdislike\tO\noverloading\tO\toverloading\tO\nand\tO\tand\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nhand\tO\thand\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nHaskell B-Language Haskell O\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nlacks\tO\tlacks\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nfeatures\tO\tfeatures\tO\nthat\tO\tthat\tO\nother\tO\tother\tO\nlanguages\tO\tlanguages\tO\nsupport\tO\tsupport\tO\nelegantly\tO\telegantly\tO\n:\tO\t:\tO\n\t\nit\tO\tit\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nruntime\tO\truntime\tO\ndispatch\tO\tdispatch\tO\n(\tO\t(\tO\nunlike\tO\tunlike\tO\nJava B-Language Java O\n,\tO\t,\tO\nLisp B-Language Lisp O\n,\tO\t,\tO\nand\tO\tand\tO\nJulia B-Language Julia O\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nit\tO\tit\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nexistential\tO\texistential\tO\ntypes\tO\ttypes\tO\nand\tO\tand\tO\nGADTs\tO\tGADTs\tO\n(\tO\t(\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nboth\tO\tboth\tO\nGHC\tO\tGHC\tO\nextensions\tO\textensions\tO\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nit\tO\tit\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\ndependent\tO\tdependent\tO\ntypes\tO\ttypes\tO\n(\tO\t(\tO\nunlike\tO\tunlike\tO\nCoq B-Language Coq O\n,\tO\t,\tO\nAgda B-Language Agda O\nand\tO\tand\tO\nIdris B-Language Idris O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAgain\tO\tAgain\tO\n,\tO\t,\tO\nwhether\tO\twhether\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\ndesirable\tO\tdesirable\tO\nfeatures\tO\tfeatures\tO\nin\tO\tin\tO\na\tO\ta\tO\ngeneral-purpose\tO\tgeneral-purpose\tO\nprogramming\tO\tprogramming\tO\nlanguage\tO\tlanguage\tO\nis\tO\tis\tO\nopen\tO\topen\tO\nto\tO\tto\tO\ndiscussion\tO\tdiscussion\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26585170\tO\t26585170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26585170/\tO\thttps://stackoverflow.com/questions/26585170/\tO\n\t\n\t\nOne\tO\tOne\tO\nmajor\tO\tmajor\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nHaskell B-Language Haskell O\n's\tO\t's\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nof\tO\tof\tO\nmost\tO\tmost\tO\nOO\tO\tOO\tO\nlanguages\tO\tlanguages\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nside\tO\tside\tO\neffects\tO\teffects\tO\nis\tO\tis\tO\nrepresented\tO\trepresented\tO\nby\tO\tby\tO\na\tO\ta\tO\ndata\tO\tdata\tO\ntype\tO\ttype\tO\n(\tO\t(\tO\na\tO\ta\tO\nmonad B-Data_Type monad O\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nIO B-Data_Type IO B-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\npure\tO\tpure\tO\nfunctions\tO\tfunctions\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncompiler B-Application compiler O\ncan\tO\tcan\tO\nverify\tO\tverify\tO\nare\tO\tare\tO\nside-effect-free\tO\tside-effect-free\tO\nand\tO\tand\tO\nreferentially\tO\treferentially\tO\ntransparent\tO\ttransparent\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ngenerally\tO\tgenerally\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nand\tO\tand\tO\nless\tO\tless\tO\nprone\tO\tprone\tO\nto\tO\tto\tO\nbugs\tO\tbugs\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nside-effect-free\tO\tside-effect-free\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nother\tO\tother\tO\nlanguages\tO\tlanguages\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncompiler B-Application compiler O\n's\tO\t's\tO\nhelp\tO\thelp\tO\nin\tO\tin\tO\ndoing\tO\tdoing\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nHaskell B-Language Haskell O\nmakes\tO\tmakes\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nmore\tO\tmore\tO\ncarefully\tO\tcarefully\tO\nabout\tO\tabout\tO\nwhich\tO\twhich\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nside\tO\tside\tO\neffects\tO\teffects\tO\n(\tO\t(\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nI/O B-Data_Type I/O O\nor\tO\tor\tO\nmutable B-Data_Type mutable O\nvariables\tO\tvariables\tO\n)\tO\t)\tO\nand\tO\tand\tO\nwhich\tO\twhich\tO\nparts\tO\tparts\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\npure\tO\tpure\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nquite\tO\tquite\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nfunction\tO\tfunction\tO\ndefinitions\tO\tdefinitions\tO\nin\tO\tin\tO\nHaskell B-Language Haskell O\nare\tO\tare\tO\nexpressions\tO\texpressions\tO\n(\tO\t(\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nlists\tO\tlists\tO\nof\tO\tof\tO\nstatements\tO\tstatements\tO\n)\tO\t)\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nmore\tO\tmore\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nsubject\tO\tsubject\tO\nto\tO\tto\tO\ntype-checking\tO\ttype-checking\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nlanguages\tO\tlanguages\tO\nlike\tO\tlike\tO\nC++ B-Language C++ O\nand\tO\tand\tO\nJava B-Language Java O\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\noften\tO\toften\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nintroduce\tO\tintroduce\tO\nlogic\tO\tlogic\tO\nerrors\tO\terrors\tO\nby\tO\tby\tO\nwriting\tO\twriting\tO\nstatements\tO\tstatements\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\norder\tO\torder\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\ncompiler B-Application compiler O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nthat\tO\tthat\tO\none\tO\tone\tO\nstatement\tO\tstatement\tO\nmust\tO\tmust\tO\nprecede\tO\tprecede\tO\nanother\tO\tanother\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nhave\tO\thave\tO\none\tO\tone\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\nmodifies\tO\tmodifies\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\n's\tO\t's\tO\nstate\tO\tstate\tO\n,\tO\t,\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nsomething\tO\tsomething\tO\nimportant\tO\timportant\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthat\tO\tthat\tO\nstate\tO\tstate\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nup\tO\tup\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nthings\tO\tthings\tO\nhappen\tO\thappen\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nHaskell B-Language Haskell O\n,\tO\t,\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nordering\tO\tordering\tO\ndependency\tO\tdependency\tO\ntends\tO\ttends\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nexpressed\tO\texpressed\tO\nthrough\tO\tthrough\tO\nfunction\tO\tfunction\tO\ncomposition\tO\tcomposition\tO\n—\tO\t—\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nf B-Function f B-Code_Block\n( I-Function ( I-Code_Block\ng I-Function g I-Code_Block\nx I-Function x I-Code_Block\n) I-Function ) I-Code_Block\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\ng B-Function g B-Code_Block\nmust\tO\tmust\tO\nrun\tO\trun\tO\nfirst\tO\tfirst\tO\n—\tO\t—\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncompiler B-Application compiler O\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\ng B-Function g B-Code_Block\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\nargument\tO\targument\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nf B-Function f B-Code_Block\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\ncomposed\tO\tcomposed\tO\nthem\tO\tthem\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32560750\tO\t32560750\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32560750/\tO\thttps://stackoverflow.com/questions/32560750/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3953 I-Code_Block Q_3953 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhttps://www.youtube.com/watch?v=XPpsI8mWKmg\tO\thttps://www.youtube.com/watch?v=XPpsI8mWKmg\tO\n\t\nThis\tO\tThis\tO\nvideo B-User_Interface_Element video O\nhas\tO\thas\tO\nclosed\tO\tclosed\tO\ncaptions\tO\tcaptions\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nresponse\tO\tresponse\tO\nalways\tO\talways\tO\nreturns\tO\treturns\tO\nisCC B-Code_Block isCC B-Code_Block\n= I-Code_Block = I-Code_Block\nfalse I-Code_Block false I-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nhappens\tO\thappens\tO\nwith\tO\twith\tO\nmore\tO\tmore\tO\nvideos B-User_Interface_Element videos O\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhy\tO\twhy\tO\n?\tO\t?\tO\n\t\nhttps://developers.google.com/youtube/v3/docs/captions\tO\thttps://developers.google.com/youtube/v3/docs/captions\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3954 I-Code_Block Q_3954 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32560750\tO\t32560750\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32560750/\tO\thttps://stackoverflow.com/questions/32560750/\tO\n\t\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nset\tO\tset\tO\nclosed\tO\tclosed\tO\ncaptions\tO\tcaptions\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nvideo B-User_Interface_Element video O\nand\tO\tand\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nplayer\tO\tplayer\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nCC B-User_Interface_Element CC O\n\"\tO\t\"\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nreferring\tO\treferring\tO\nto\tO\tto\tO\nsubtitles\tO\tsubtitles\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nimportant\tO\timportant\tO\ndistinction\tO\tdistinction\tO\nbetween\tO\tbetween\tO\nsubtitles\tO\tsubtitles\tO\nand\tO\tand\tO\nclosed\tO\tclosed\tO\ncaptioning\tO\tcaptioning\tO\n(\tO\t(\tO\nsee\tO\tsee\tO\nhere\tO\there\tO\nand\tO\tand\tO\nhere\tO\there\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nTherefore\tO\tTherefore\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nisCC B-Variable isCC B-Code_Block\nwill\tO\twill\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\ntrue\tO\ttrue\tB-Code_Block\nfor\tO\tfor\tO\nvideos B-User_Interface_Element videos O\nthat\tO\tthat\tO\ninclude\tO\tinclude\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ncaptioning\tO\tcaptioning\tO\nintended\tO\tintended\tO\nfor\tO\tfor\tO\npeople\tO\tpeople\tO\nwho\tO\twho\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nhear\tO\thear\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nhappening\tO\thappening\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nvideo B-User_Interface_Element video O\n,\tO\t,\tO\nas\tO\tas\tO\nopposed\tO\topposed\tO\nto\tO\tto\tO\njust\tO\tjust\tO\ngeneral\tO\tgeneral\tO\ncaptions\tO\tcaptions\tO\nthat\tO\tthat\tO\npeople\tO\tpeople\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nonto\tO\tonto\tO\ntheir\tO\ttheir\tO\nvideos B-User_Interface_Element videos O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nalmost\tO\talmost\tO\nall\tO\tall\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nhigh\tO\thigh\tO\nquality\tO\tquality\tO\n,\tO\t,\tO\npaid\tO\tpaid\tO\nmovies\tO\tmovies\tO\non\tO\ton\tO\nYouTube B-Website YouTube O\nwill\tO\twill\tO\nhave\tO\thave\tO\nthese\tO\tthese\tO\nkinds\tO\tkinds\tO\nof\tO\tof\tO\ncaptions\tO\tcaptions\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthat\tO\tthat\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nisCC B-Variable isCC B-Code_Block\nproperty\tO\tproperty\tO\nworks\tO\tworks\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32560750\tO\t32560750\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32560750/\tO\thttps://stackoverflow.com/questions/32560750/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nsyntax\tO\tsyntax\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4650 I-Code_Block A_4650 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\nmaybe\tO\tmaybe\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4651 I-Code_Block A_4651 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ndont\tO\tdont\tO\nhave\tO\thave\tO\nmuch\tO\tmuch\tO\nexperience\tO\texperience\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nyoutube B-Library youtube O\napi I-Library api O\nbut\tO\tbut\tO\nchecking\tO\tchecking\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\ncode\tO\tcode\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32177557\tO\t32177557\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32177557/\tO\thttps://stackoverflow.com/questions/32177557/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nlearning\tO\tlearning\tO\nCollection B-Library Collection O\nFramework I-Library Framework O\non\tO\ton\tO\nthis\tO\tthis\tO\nwebsite\tO\twebsite\tO\n:\tO\t:\tO\nhttp://way2java.com/collections/hashtable-about/\tO\thttp://way2java.com/collections/hashtable-about/\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nreading\tO\treading\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\nof\tO\tof\tO\nHashtable B-Class Hashtable B-Code_Block\nI\tO\tI\tO\nsee\tO\tsee\tO\ntwo\tO\ttwo\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\ntable\tO\ttable\tO\n's\tO\t's\tO\nkeys\tO\tkeys\tO\n:\tO\t:\tO\n\t\nSet B-Function Set B-Code_Block\nkeys() I-Function keys() I-Code_Block\n:\tO\t:\tO\nReturns\tO\tReturns\tO\na\tO\ta\tO\nSet B-Class Set B-Code_Block\nobject\tO\tobject\tO\ncontaining\tO\tcontaining\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nkeys\tO\tkeys\tO\n\t\nSet B-Function Set B-Code_Block\nkeySet() I-Function keySet() I-Code_Block\n:\tO\t:\tO\nReturns\tO\tReturns\tO\na\tO\ta\tO\nSet B-Class Set B-Code_Block\nobject\tO\tobject\tO\ncontaining\tO\tcontaining\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nkeys\tO\tkeys\tO\nof\tO\tof\tO\nHashtable B-Class Hashtable B-Code_Block\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nsimilarity\tO\tsimilarity\tO\nis\tO\tis\tO\nHashtable B-Class Hashtable B-Code_Block\nand\tO\tand\tO\nSet B-Class Set B-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nallow\tO\tallow\tO\nduplicates\tO\tduplicates\tO\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\nand\tO\tand\tO\nremoving\tO\tremoving\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nSet B-Class Set B-Code_Block\nalso\tO\talso\tO\nreflects\tO\treflects\tO\nin\tO\tin\tO\nHashtable B-Class Hashtable B-Code_Block\n\t\nBoth\tO\tBoth\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nSet B-Class Set B-Code_Block\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ndifferent\tO\tdifferent\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nAnyone\tO\tAnyone\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32177557\tO\t32177557\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32177557/\tO\thttps://stackoverflow.com/questions/32177557/\tO\n\t\n\t\nkeys() B-Function keys() B-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nSet B-Class Set B-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nan\tO\tan\tO\nEnumeration<K> B-Code_Block Enumeration<K> B-Code_Block\n.\tO\t.\tO\n\t\nHashtable B-Class Hashtable B-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nlegacy\tO\tlegacy\tO\nclass\tO\tclass\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nrecommended\tO\trecommended\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nreplaced\tO\treplaced\tO\nby\tO\tby\tO\nHashMap B-Class HashMap B-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\nConcurrentHashMap B-Class ConcurrentHashMap B-Code_Block\n†\tO\t†\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nexisted\tO\texisted\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nJCF B-Library JCF O\ndid\tO\tdid\tO\n,\tO\t,\tO\ntherefore\tO\ttherefore\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nkeys B-Class keys O\nat\tO\tat\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nwas\tO\twas\tO\nthrough\tO\tthrough\tO\nan\tO\tan\tO\nEnumeration B-Class Enumeration B-Code_Block\n-\tO\t-\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nJava B-Language Java O\ninterface\tO\tinterface\tO\nfor\tO\tfor\tO\nmoving\tO\tmoving\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\ncame\tO\tcame\tO\nJava B-Language Java O\n1.2 B-Version 1.2 O\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nJCF B-Library JCF O\n.\tO\t.\tO\n\t\nHashtable B-Class Hashtable B-Code_Block\nwas\tO\twas\tO\nretrofitted\tO\tretrofitted\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nMap\tO\tMap\tB-Code_Block\ninterface\tO\tinterface\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nkeySet() B-Function keySet() B-Code_Block\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nreturned\tO\treturned\tO\na\tO\ta\tO\nSet B-Class Set B-Code_Block\n(\tO\t(\tO\nalso\tO\talso\tO\nintroduced\tO\tintroduced\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nJCF B-Library JCF O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nkeys B-Variable keys B-Code_Block\nmethod\tO\tmethod\tO\nwas\tO\twas\tO\nretained\tO\tretained\tO\nfor\tO\tfor\tO\nlegacy\tO\tlegacy\tO\ncompatibility\tO\tcompatibility\tO\nreasons\tO\treasons\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nSet B-Class Set B-Code_Block\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nmethod\tO\tmethod\tO\nachieves\tO\tachieves\tO\ntwo\tO\ttwo\tO\nthings\tO\tthings\tO\n:\tO\t:\tO\n\t\nconveys\tO\tconveys\tO\nintent\tO\tintent\tO\n-\tO\t-\tO\nit\tO\tit\tO\nreinforces\tO\treinforces\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nkeys\tO\tkeys\tO\nof\tO\tof\tO\na\tO\ta\tO\nHashtable B-Class Hashtable B-Code_Block\nare\tO\tare\tO\na\tO\ta\tO\nmathematical\tO\tmathematical\tO\nset\tO\tset\tO\n\t\nimplements\tO\timplements\tO\nIterable B-Class Iterable B-Code_Block\n<T>, I-Class <T>, I-Code_Block\nwhich\tO\twhich\tO\nreplaces\tO\treplaces\tO\nEnumerable<T> B-Class Enumerable<T> B-Code_Block\n\t\n†\tO\t†\tO\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nHashtable B-Class Hashtable B-Code_Block\ndocumentation I-Class documentation I-Code_Block\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32177557\tO\t32177557\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32177557/\tO\thttps://stackoverflow.com/questions/32177557/\tO\n\t\n\t\nThe\tO\tThe\tO\nmethod\tO\tmethod\tO\nkeys() B-Function keys() O\nin\tO\tin\tO\nHashtable B-Class Hashtable O\nactually\tO\tactually\tO\nreturn\tO\treturn\tO\nEnumeration B-Class Enumeration O\nof\tO\tof\tO\nkeys\tO\tkeys\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4605 I-Code_Block A_4605 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nReturns\tO\tReturns\tO\nan\tO\tan\tO\nenumeration B-Class enumeration O\nof\tO\tof\tO\nthe\tO\tthe\tO\nkeys\tO\tkeys\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nhashtable B-Class hashtable O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32153515\tO\t32153515\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32153515/\tO\thttps://stackoverflow.com/questions/32153515/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\nrecord\tO\trecord\tO\nin\tO\tin\tO\nmongoDb B-Application mongoDb O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ni\tO\ti\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3898 I-Code_Block Q_3898 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nMay\tO\tMay\tO\nbe\tO\tbe\tO\ni\tO\ti\tO\nam\tO\tam\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nsyntax\tO\tsyntax\tO\nfor\tO\tfor\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nanyone\tO\tanyone\tO\nlend\tO\tlend\tO\na\tO\ta\tO\nhelping\tO\thelping\tO\nhand\tO\thand\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\ni\tO\ti\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nupsert\tO\tupsert\tO\nbecause\tO\tbecause\tO\nif\tO\tif\tO\nrecord\tO\trecord\tO\nnot\tO\tnot\tO\nfound\tO\tfound\tO\nfor\tO\tfor\tO\nupdate\tO\tupdate\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ninsert\tO\tinsert\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nrecord\tO\trecord\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32153515\tO\t32153515\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32153515/\tO\thttps://stackoverflow.com/questions/32153515/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nmissing\tO\tmissing\tO\n{ B-Code_Block { B-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\nupdate\tO\tupdate\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\n{ B-Code_Block { B-Code_Block\n\" I-Code_Block \" I-Code_Block\n$set I-Code_Block $set I-Code_Block\n\" I-Code_Block \" I-Code_Block\n: I-Code_Block : I-Code_Block\nstudent_record} I-Code_Block student_record} I-Code_Block\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\n\"\tO\t\"\tO\nstudent_grade B-Variable student_grade O\n\"\tO\t\"\tO\nto\tO\tto\tO\nfloat B-Data_Type float O\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\nupsert B-Code_Block upsert B-Code_Block\n: I-Code_Block : I-Code_Block\nFalse I-Code_Block False I-Code_Block\nso\tO\tso\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nif\tO\tif\tO\nstatement\tO\tstatement\tO\ncan\tO\tcan\tO\nby\tO\tby\tO\nsimplify\tO\tsimplify\tO\nas\tO\tas\tO\n:\tO\t:\tO\nif B-Code_Block if B-Code_Block\nflag.lower() I-Code_Block flag.lower() I-Code_Block\n== I-Code_Block == I-Code_Block\n' I-Code_Block ' I-Code_Block\ny I-Code_Block y I-Code_Block\n' B-Code_Block ' B-Code_Block\n: I-Code_Block : I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4604 I-Code_Block A_4604 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nLast\tO\tLast\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nleast\tO\tleast\tO\nthe\tO\tthe\tO\nupdate B-Function update B-Code_Block\nmethod\tO\tmethod\tO\nis\tO\tis\tO\ndeprecated\tO\tdeprecated\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nAPI\tO\tAPI\tO\n.\tO\t.\tO\n\t\nupdate_one\tO\tupdate_one\tB-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1009654\tO\t1009654\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1009654/\tO\thttps://stackoverflow.com/questions/1009654/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nRails B-Library Rails O\n1.2.3 B-Version 1.2.3 O\non\tO\ton\tO\na\tO\ta\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nUpgrading\tO\tUpgrading\tO\nrails B-Library rails O\nis\tO\tis\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\noption\tO\toption\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ntest\tO\ttest\tO\nweb-service\tO\tweb-service\tO\nusing\tO\tusing\tO\nRails B-Library Rails O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntested\tO\ttested\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nRails B-Library Rails O\ninvoke\tO\tinvoke\tO\nscaffold\tO\tscaffold\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsetup\tO\tsetup\tO\na\tO\ta\tO\nclient B-Application client O\nvia\tO\tvia\tO\n.NET B-Library .NET O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\nan\tO\tan\tO\nASP.NET B-Library ASP.NET O\nWeb\tO\tWeb\tO\nApp\tO\tApp\tO\nproject\tO\tproject\tO\nin\tO\tin\tO\nC# B-Language C# O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nadding\tO\tadding\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nWeb\tO\tWeb\tO\nReference\tO\tReference\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nReference\tO\tReference\tO\nURL\tO\tURL\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nfield\tO\tfield\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwizard B-User_Interface_Element wizard O\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_57 I-Code_Block Q_57 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthen\tO\tthen\tO\nI\tO\tI\tO\nreceive\tO\treceive\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nwizard B-User_Interface_Element wizard O\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_58 I-Code_Block Q_58 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nknown\tO\tknown\tO\nissues\tO\tissues\tO\nbetween\tO\tbetween\tO\nActionWebService B-Application ActionWebService O\nand\tO\tand\tO\n.NET B-Library .NET O\nor\tO\tor\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nmy\tO\tmy\tO\nURL\tO\tURL\tO\ncorrect\tO\tcorrect\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nrails B-Library rails O\nweb-service\tO\tweb-service\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1009654\tO\t1009654\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1009654/\tO\thttps://stackoverflow.com/questions/1009654/\tO\n\t\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nprobably\tO\tprobably\tO\nbeen\tO\tbeen\tO\nanswered\tO\tanswered\tO\nelsewhere\tO\telsewhere\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsince\tO\tsince\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\npops\tO\tpops\tO\nup\tO\tup\tO\nwhen\tO\twhen\tO\nsearching\tO\tsearching\tO\ngoogle B-Website google O\nfor\tO\tfor\tO\nactionwebservice B-Application actionwebservice O\nand\tO\tand\tO\nget\tO\tget\tO\nrequests\tO\trequests\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nanswer\tO\tanswer\tO\nit\tO\tit\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\nAWS B-Application AWS O\nrefuses\tO\trefuses\tO\nnon-POST B-Function non-POST O\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nSpecifically\tO\tSpecifically\tO\nit\tO\tit\tO\nhas\tO\thas\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\naction_controller_dispatcher.rb B-File_Name action_controller_dispatcher.rb O\nthat\tO\tthat\tO\nreads\tO\treads\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_423 I-Code_Block A_423 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBasically\tO\tBasically\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\neither\tO\teither\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nPOST B-Function POST O\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nGETting B-Function GETting O\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nAWS B-Application AWS O\n's\tO\t's\tO\nhandling\tO\thandling\tO\nof\tO\tof\tO\nGET B-Function GET O\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nYou\tO\tYou\tO\nmight\tO\tmight\tO\ntry\tO\ttry\tO\nediting\tO\tediting\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\ngem\tO\tgem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\n(\tO\t(\tO\n1)\tO\t1)\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nget\tO\tget\tO\noverwritten\tO\toverwritten\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ngem\tO\tgem\tO\nand\tO\tand\tO\n(\tO\t(\tO\n2)\tO\t2)\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\ngood\tO\tgood\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\nand\tO\tand\tO\n(\tO\t(\tO\n3)\tO\t3)\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnever\tO\tnever\tO\ntried\tO\ttried\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nformer\tO\tformer\tO\nis\tO\tis\tO\nlikely\tO\tlikely\tO\nmore\tO\tmore\tO\nappropriate\tO\tappropriate\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ncontrol\tO\tcontrol\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ngenerating\tO\tgenerating\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\n,\tO\t,\tO\nZack B-User_Name Zack O\nChandler I-User_Name Chandler O\nhad\tO\thad\tO\na\tO\ta\tO\nworkaround\tO\tworkaround\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nQuickBooks B-Application QuickBooks O\n's\tO\t's\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\na\tO\ta\tO\nweb-service\tO\tweb-service\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nany\tO\tany\tO\ncase\tO\tcase\tO\n)\tO\t)\tO\n,\tO\t,\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nquoting\tO\tquoting\tO\nit\tO\tit\tO\nbelow\tO\tbelow\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nObviously\tO\tObviously\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\ndispatch_web_service_request B-Function dispatch_web_service_request O\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nQuickBooks B-Application QuickBooks O\nspecific\tO\tspecific\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhope\tO\thope\tO\nZack B-User_Name Zack O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmind\tO\tmind\tO\nme\tO\tme\tO\nreposting\tO\treposting\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27972844\tO\t27972844\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27972844/\tO\thttps://stackoverflow.com/questions/27972844/\tO\n\t\n\t\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nlarge\tO\tlarge\tO\ntext\tO\ttext\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3265 I-Code_Block Q_3265 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nevery\tO\tevery\tO\n3rd\tO\t3rd\tO\nsymbol\tO\tsymbol\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ntext\tO\ttext\tO\nwith\tO\twith\tO\nvalue\tO\tvalue\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n' B-Value ' B-Code_Block\nc' I-Value c' I-Code_Block\n)\tO\t)\tO\nand\tO\tand\tO\nif\tO\tif\tO\ntrue B-Value true O\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n1 B-Value 1 B-Code_Block\nto\tO\tto\tO\ncounter\tO\tcounter\tO\ni B-Variable i B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ngrep B-Code_Block grep B-Code_Block\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nsuite\tO\tsuite\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\npurpose\tO\tpurpose\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\nor\tO\tor\tO\nadvice\tO\tadvice\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nthan\tO\tthan\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nextract\tO\textract\tO\ncertain\tO\tcertain\tO\nvalues\tO\tvalues\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nstring B-Data_Type string O\nto\tO\tto\tO\na\tO\ta\tO\nvector B-Data_Structure vector O\n.\tO\t.\tO\n\t\n4\tO\t4\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nextract\tO\textract\tO\n4:10 B-Value 4:10 O\nsymbols\tO\tsymbols\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3266 I-Code_Block Q_3266 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nP.S\tO\tP.S\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nscript\tO\tscript\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nin\tO\tin\tO\nR B-Language R O\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ncurious\tO\tcurious\tO\nif\tO\tif\tO\nits\tO\tits\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nit\tO\tit\tO\nin\tO\tin\tO\nan\tO\tan\tO\nadequate\tO\tadequate\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27972844\tO\t27972844\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27972844/\tO\thttps://stackoverflow.com/questions/27972844/\tO\n\t\n\t\nEdited\tO\tEdited\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nfast\tO\tfast\tO\nfor\tO\tfor\tO\nmuch\tO\tmuch\tO\nlarger\tO\tlarger\tO\nstrings B-Data_Type strings O\n:\tO\t:\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nlong\tO\tlong\tO\nstring B-Data_Type string O\n(\tO\t(\tO\non\tO\ton\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\nmillions\tO\tmillions\tO\nof\tO\tof\tO\nnucleotides\tO\tnucleotides\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlookbehind\tO\tlookbehind\tO\nassertion\tO\tassertion\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\noriginal\tO\toriginal\tO\nanswer\tO\tanswer\tO\n(\tO\t(\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\nis\tO\tis\tO\ntoo\tO\ttoo\tO\nslow\tO\tslow\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npractical\tO\tpractical\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthat\tO\tthat\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nmore\tO\tmore\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\n:\tO\t:\tO\n(\tO\t(\tO\n1)\tO\t1)\tO\nsplits\tO\tsplits\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\napart\tO\tapart\tO\nbetween\tO\tbetween\tO\nevery\tO\tevery\tO\ncharacter B-Data_Type character O\n;\tO\t;\tO\n(\tO\t(\tO\n2)\tO\t2)\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\ncharacters B-Data_Type characters O\nto\tO\tto\tO\nfill\tO\tfill\tO\nup\tO\tup\tO\na\tO\ta\tO\nthree\tO\tthree\tO\nrow B-Data_Structure row O\nmatrix I-Data_Structure matrix O\n;\tO\t;\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\n(\tO\t(\tO\n3)\tO\t3)\tO\nextracts\tO\textracts\tO\nthe\tO\tthe\tO\ncharacters B-Data_Type characters O\nin\tO\tin\tO\nthe\tO\tthe\tO\n3rd\tO\t3rd\tO\nrow B-Data_Structure row O\nof\tO\tof\tO\nthe\tO\tthe\tO\nmatrix B-Data_Structure matrix O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ntakes\tO\ttakes\tO\non\tO\ton\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\n0.2\tO\t0.2\tO\nseconds\tO\tseconds\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\na\tO\ta\tO\n3-million\tO\t3-million\tO\ncharacter\tO\tcharacter\tO\nlong\tO\tlong\tO\nstring B-Data_Type string O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3878 I-Code_Block A_3878 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOriginal\tO\tOriginal\tO\nanswer\tO\tanswer\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nmight\tO\tmight\tO\nuse\tO\tuse\tO\nsubstr() B-Function substr() B-Code_Block\nin\tO\tin\tO\nboth\tO\tboth\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3879 I-Code_Block A_3879 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27972844\tO\t27972844\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27972844/\tO\thttps://stackoverflow.com/questions/27972844/\tO\n\t\n\t\nCompare\tO\tCompare\tO\nevery\tO\tevery\tO\nthird\tO\tthird\tO\ncharacter B-Data_Type character O\nwith\tO\twith\tO\n\" B-Value \" B-Code_Block\nc I-Value c I-Code_Block\n\" I-Value \" I-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3876 I-Code_Block A_3876 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nExtract\tO\tExtract\tO\ncharacters B-Data_Type characters O\n4 B-Value 4 O\nto\tO\tto\tO\n10 B-Value 10 O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3877 I-Code_Block A_3877 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23996309\tO\t23996309\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23996309/\tO\thttps://stackoverflow.com/questions/23996309/\tO\n\t\n\t\nI\tO\tI\tO\ninstall\tO\tinstall\tO\nckeditor B-Application ckeditor O\nand\tO\tand\tO\nconfiguration\tO\tconfiguration\tO\nfile\tO\tfile\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nis\tO\tis\tO\ndescribe\tO\tdescribe\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nor\tO\tor\tO\ncreate\tO\tcreate\tO\nHTML B-File_Type HTML O\nfile\tO\tfile\tO\nin\tO\tin\tO\nalfresco B-Application alfresco O\n,\tO\t,\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\narea\tO\tarea\tO\nis\tO\tis\tO\nempty\tO\tempty\tO\n(\tO\t(\tO\nblank\tO\tblank\tO\n)\tO\t)\tO\nand\tO\tand\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nedit\tO\tedit\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nHelp\tO\tHelp\tO\nplease\tO\tplease\tO\n!\tO\t!\tO\n\t\n:(\tO\t:(\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23996309\tO\t23996309\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23996309/\tO\thttps://stackoverflow.com/questions/23996309/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\nI\tO\tI\tO\ndownloaded\tO\tdownloaded\tO\nckeditor-forms-master B-Application ckeditor-forms-master O\nfrom\tO\tfrom\tO\ngithub B-Website github O\n\t\n2)\tO\t2)\tO\nIn\tO\tIn\tO\ncmd B-Application cmd O\nfrom\tO\tfrom\tO\nparent\tO\tparent\tO\nfolder\tO\tfolder\tO\nckeditor-forms-master\tO\tckeditor-forms-master\tO\nI\tO\tI\tO\nexecute\tO\texecute\tO\nthese\tO\tthese\tO\ncommands\tO\tcommands\tO\n\t\nant B-Code_Block ant O\nclean I-Code_Block clean O\ndist-jar I-Code_Block dist-jar O\n\t\nant B-Code_Block ant O\n-Dtomcat.home I-Code_Block -Dtomcat.home O\n= I-Code_Block = O\nC:/Alfresco/tomcat I-Code_Block C:/Alfresco/tomcat O\nclean I-Code_Block clean O\ndist-jar I-Code_Block dist-jar O\nhotcopy-tomcat-jar I-Code_Block hotcopy-tomcat-jar O\n\t\nBoth\tO\tBoth\tO\nwere\tO\twere\tO\nsuccessfully\tO\tsuccessfully\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nRestarted\tO\tRestarted\tO\nthe\tO\tthe\tO\nalfresco B-Application alfresco O\ntomcat I-Application tomcat O\nserver I-Application server O\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncreate/edit\tO\tcreate/edit\tO\nHTML B-File_Type HTML O\nfile\tO\tfile\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\narea\tO\tarea\tO\nis\tO\tis\tO\nblank\tO\tblank\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nalfresco B-Application alfresco O\nversion\tO\tversion\tO\n4.2.f B-Version 4.2.f O\n.\tO\t.\tO\n\t\nbrowser B-Application browser O\ngoogle I-Application google O\nchrome I-Application chrome O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5848861\tO\t5848861\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5848861/\tO\thttps://stackoverflow.com/questions/5848861/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\nSencha B-Library Sencha O\nTouch I-Library Touch O\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nstuck\tO\tstuck\tO\non\tO\ton\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\npretty\tO\tpretty\tO\nobvious\tO\tobvious\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\ntabPanel B-Class tabPanel O\nwith\tO\twith\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ntap\tO\ttap\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nbutton B-User_Interface_Element button O\nto\tO\tto\tO\nload\tO\tload\tO\n'\tO\t'\tO\nmaptestPanel B-Variable maptestPanel O\n'\tO\t'\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\npanel B-User_Interface_Element panel O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nmap B-User_Interface_Element map O\nloaded\tO\tloaded\tO\nfrom\tO\tfrom\tO\nits\tO\tits\tO\nown\tO\town\tO\njs B-File_Type js O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmap B-User_Interface_Element map O\npanel I-User_Interface_Element panel O\nlooks\tO\tlooks\tO\nok\tO\tok\tO\nby\tO\tby\tO\nitself\tO\titself\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_417 I-Code_Block Q_417 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nseeing\tO\tseeing\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nproperly\tO\tproperly\tO\nplace\tO\tplace\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntabPanel B-Variable tabPanel O\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_418 I-Code_Block Q_418 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nadvice\tO\tadvice\tO\nor\tO\tor\tO\na\tO\ta\tO\nsteer\tO\tsteer\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ndirection\tO\tdirection\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5848861\tO\t5848861\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5848861/\tO\thttps://stackoverflow.com/questions/5848861/\tO\n\t\n\t\nI\tO\tI\tO\nonly\tO\tonly\tO\nknow\tO\tknow\tO\n\"\tO\t\"\tO\nclassic\tO\tclassic\tO\n\"\tO\t\"\tO\nsencha B-Library sencha O\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\n:\tO\t:\tO\nSo\tO\tSo\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nmapPanel B-Class mapPanel O\n(\tO\t(\tO\nbut\tO\tbut\tO\nhidden\tO\thidden\tO\n)\tO\t)\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ntabPanel B-Class tabPanel O\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\nhandler\tO\thandler\tO\nshow\tO\tshow\tO\nit\tO\tit\tO\nwhile\tO\twhile\tO\nhiding\tO\thiding\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\npanel\tO\tpanel\tO\n.\tO\t.\tO\n\t\nBesides\tO\tBesides\tO\n,\tO\t,\tO\nspeaking\tO\tspeaking\tO\nof\tO\tof\tO\nlayouts\tO\tlayouts\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nprecise\tO\tprecise\tO\nlayout B-Variable layout O\n:\tO\t:\tO\n'\tO\t'\tO\ncard\tO\tcard\tO\n'\tO\t'\tO\nin\tO\tin\tO\ntabPanel B-Variable tabPanel O\nsince\tO\tsince\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\na\tO\ta\tO\ncard\tO\tcard\tO\nlayout B-Variable layout O\nby\tO\tby\tO\ndefinition\tO\tdefinition\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5848861\tO\t5848861\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5848861/\tO\thttps://stackoverflow.com/questions/5848861/\tO\n\t\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\nseveral\tO\tseveral\tO\nthings\tO\tthings\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nup\tO\tup\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\n'\tO\t'\tO\nMaps B-Class Maps O\n'\tO\t'\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nlayout B-Variable layout O\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nit\tO\tit\tO\nhas\tO\thas\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nchild\tO\tchild\tO\nitem\tO\titem\tO\n,\tO\t,\tO\nlayout B-Variable layout O\n:\tO\t:\tO\n'\tO\t'\tO\nfit B-Variable fit O\n'\tO\t'\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappropriate\tO\tappropriate\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\n2)\tO\t2)\tO\nOnly\tO\tOnly\tO\nuse\tO\tuse\tO\nfullscreen B-Variable fullscreen O\non\tO\ton\tO\nthe\tO\tthe\tO\noutermost\tO\toutermost\tO\nitem\tO\titem\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nitems\tO\titems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nfullscreen B-Variable fullscreen O\nsince\tO\tsince\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nchild\tO\tchild\tO\nitems\tO\titems\tO\nof\tO\tof\tO\nother\tO\tother\tO\ncontainers\tO\tcontainers\tO\n.\tO\t.\tO\n\t\n3)\tO\t3)\tO\nTo\tO\tTo\tO\ndynamically\tO\tdynamically\tO\nadd\tO\tadd\tO\nitems\tO\titems\tO\nto\tO\tto\tO\na\tO\ta\tO\ncontainer\tO\tcontainer\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nadd() B-Function add() O\nmethod\tO\tmethod\tO\non\tO\ton\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\ndoLayout() B-Function doLayout() O\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\nlayout B-Variable layout O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_652 I-Code_Block A_652 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nmap B-User_Interface_Element map O\nto\tO\tto\tO\na\tO\ta\tO\npanel B-User_Interface_Element panel O\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nany\tO\tany\tO\nextra\tO\textra\tO\nfunctionality\tO\tfunctionality\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nmap B-User_Interface_Element map O\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbtnPanel B-Variable btnPanel O\n.\tO\t.\tO\n\t\n4)\tO\t4)\tO\nThe\tO\tThe\tO\nbtnPanel B-Variable btnPanel O\nhas\tO\thas\tO\nno\tO\tno\tO\nlayout B-Variable layout O\neither\tO\teither\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nan\tO\tan\tO\nappropriate\tO\tappropriate\tO\nlayout B-Variable layout O\nthere\tO\tthere\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n,\tO\t,\tO\npossibly\tO\tpossibly\tO\nthe\tO\tthe\tO\nvbox\tO\tvbox\tO\nlayout B-Variable layout O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43402715\tO\t43402715\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43402715/\tO\thttps://stackoverflow.com/questions/43402715/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nread\tO\tread\tO\nsome\tO\tsome\tO\nquestions\tO\tquestions\tO\nabout\tO\tabout\tO\nkinesis B-Application kinesis O\nshard B-Class shard O\nand\tO\tand\tO\nmultiple\tO\tmultiple\tO\nconsumers B-Class consumers O\nbut\tO\tbut\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nkinesis B-Application kinesis O\nstream B-Class stream O\nwith\tO\twith\tO\njust\tO\tjust\tO\none\tO\tone\tO\nshard B-Class shard O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nconsume\tO\tconsume\tO\nthis\tO\tthis\tO\nshard B-Class shard O\nusing\tO\tusing\tO\ndifferent\tO\tdifferent\tO\nlambda\tO\tlambda\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nindependently\tO\tindependently\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\nlambda\tO\tlambda\tO\nfunction\tO\tfunction\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nit\tO\tit\tO\n's\tO\t's\tO\nown\tO\town\tO\nshard B-Class shard O\niterator\tO\titerator\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nSet\tO\tSet\tO\nmultiple\tO\tmultiple\tO\nlambda\tO\tlambda\tO\nconsumers B-Class consumers O\n(\tO\t(\tO\nstream B-Class stream O\nbased\tO\tbased\tO\n)\tO\t)\tO\nreading\tO\treading\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nstream/shard B-Class stream/shard O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43402715\tO\t43402715\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43402715/\tO\thttps://stackoverflow.com/questions/43402715/\tO\n\t\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nno\tO\tno\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nshards B-Class shards O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nlimit\tO\tlimit\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nconsumers B-Class consumers O\na\tO\ta\tO\nstream B-Class stream O\ncan\tO\tcan\tO\nhave\tO\thave\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyou\tO\tyou\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\njust\tO\tjust\tO\nlimit\tO\tlimit\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nconcurrent\tO\tconcurrent\tO\ninvocations\tO\tinvocations\tO\nof\tO\tof\tO\neach\tO\teach\tO\nlambda\tO\tlambda\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nconsumers B-Class consumers O\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nshards B-Class shards O\nof\tO\tof\tO\nconcurrent\tO\tconcurrent\tO\nexecutions\tO\texecutions\tO\n.\tO\t.\tO\n\t\nSeethis\tO\tSeethis\tO\ndoc\tO\tdoc\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25688230\tO\t25688230\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25688230/\tO\thttps://stackoverflow.com/questions/25688230/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nenum B-Data_Type enum O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2925 I-Code_Block Q_2925 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nEnumDropDownListFor B-Class EnumDropDownListFor O\nfor\tO\tfor\tO\nit\tO\tit\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2926 I-Code_Block Q_2926 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nas\tO\tas\tO\ndefault\tO\tdefault\tO\n(\tO\t(\tO\nwhen\tO\twhen\tO\npage\tO\tpage\tO\nhad\tO\thad\tO\nbeen\tO\tbeen\tO\nloaded\tO\tloaded\tO\n)\tO\t)\tO\ni\tO\ti\tO\nsee\tO\tsee\tO\nEmployee B-Variable Employee O\nin\tO\tin\tO\nthis\tO\tthis\tO\nform.But\tO\tform.But\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nfirstly\tO\tfirstly\tO\nEvaluation.My B-Variable Evaluation.My O\nfirst\tO\tfirst\tO\ndecision\tO\tdecision\tO\nwas\tO\twas\tO\nchanging\tO\tchanging\tO\nenum B-Data_Type enum O\nquery\tO\tquery\tO\nto\tO\tto\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2927 I-Code_Block Q_2927 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nbad\tO\tbad\tO\ndecision\tO\tdecision\tO\nfor\tO\tfor\tO\nwhole\tO\twhole\tO\nproject\tO\tproject\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\nworking\tO\tworking\tO\n)\tO\t)\tO\n.So\tO\t.So\tO\nhow\tO\thow\tO\neasly\tO\teasly\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nanother\tO\tanother\tO\ndefault\tO\tdefault\tO\n?\tO\t?\tO\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15564380\tO\t15564380\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15564380/\tO\thttps://stackoverflow.com/questions/15564380/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthis\tO\tthis\tO\nSlideshow B-User_Interface_Element Slideshow O\non\tO\ton\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nI\tO\tI\tO\ndouble\tO\tdouble\tO\nchecked\tO\tchecked\tO\nendless\tO\tendless\tO\ntimes\tO\ttimes\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1524 I-Code_Block Q_1524 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhttp://jsfiddle.net/2VQ9A/\tO\thttp://jsfiddle.net/2VQ9A/\tO\n\t\nIt\tO\tIt\tO\nonly\tO\tonly\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\non\tO\ton\tO\njsfiddle B-Application jsfiddle O\n,\tO\t,\tO\nits\tO\tits\tO\nlike\tO\tlike\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\nrecognized\tO\trecognized\tO\nby\tO\tby\tO\nmy\tO\tmy\tO\nbrowser B-Application browser O\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nweird\tO\tweird\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nsilly\tO\tsilly\tO\nquestion\tO\tquestion\tO\nand\tO\tand\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nJavascript B-Language Javascript O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nappreciate\tO\tappreciate\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\n:)\tO\t:)\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15564380\tO\t15564380\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15564380/\tO\thttps://stackoverflow.com/questions/15564380/\tO\n\t\n\t\ninclude\tO\tinclude\tO\nthese\tO\tthese\tO\nfiles\tO\tfiles\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2002 I-Code_Block A_2002 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nfiddle B-Application fiddle O\nmeans\tO\tmeans\tO\ndefinetely\tO\tdefinetely\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nprobme.Try\tO\tprobme.Try\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15564380\tO\t15564380\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15564380/\tO\thttps://stackoverflow.com/questions/15564380/\tO\n\t\n\t\nCheck\tO\tCheck\tO\non\tO\ton\tO\nyou\tO\tyou\tO\npage\tO\tpage\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\njquery B-Library jquery B-Code_Block\nfiles\tO\tfiles\tI-Code_Block\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2003 I-Code_Block A_2003 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\nadd\tO\tadd\tO\nthese\tO\tthese\tO\nfiles\tO\tfiles\tO\nby\tO\tby\tO\nany\tO\tany\tO\nCDN\tO\tCDN\tB-Code_Block\nlike\tO\tlike\tO\nGoogle B-Application Google B-Code_Block\nor\tO\tor\tO\nMicrosoft B-Application Microsoft B-Code_Block\n\t\nAlso\tO\tAlso\tO\nAdd\tO\tAdd\tO\nyou\tO\tyou\tO\ncode\tO\tcode\tO\nafter\tO\tafter\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nfiles\tO\tfiles\tO\n\t\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2004 I-Code_Block A_2004 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41528707\tO\t41528707\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41528707/\tO\thttps://stackoverflow.com/questions/41528707/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\ntable B-Data_Structure table O\ncalled\tO\tcalled\tO\ntemp_09.jwn B-File_Name temp_09.jwn O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncolumn B-Data_Structure column O\ncalled\tO\tcalled\tO\ncobrand_bank_id B-Variable cobrand_bank_id O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nskip\tO\tskip\tO\nthe\tO\tthe\tO\nALTER B-Code_Block ALTER O\nTABLE I-Code_Block TABLE O\nstep\tO\tstep\tO\nbelow\tO\tbelow\tO\nand\tO\tand\tO\njust\tO\tjust\tO\ndirectly\tO\tdirectly\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\ninsert B-Code_Block insert O\ninto\tO\tinto\tO\nstatement\tO\tstatement\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5272 I-Code_Block Q_5272 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41528707\tO\t41528707\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41528707/\tO\thttps://stackoverflow.com/questions/41528707/\tO\n\t\n\t\nNo\tO\tNo\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\ncolumn B-Data_Structure column O\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nSchema-less\tO\tSchema-less\tO\ndatabases\tO\tdatabases\tO\n(\tO\t(\tO\nNoSQL B-Application NoSQL O\n)\tO\t)\tO\ncan\tO\tcan\tO\nsupport\tO\tsupport\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nan\tO\tan\tO\nRDBMS B-Application RDBMS O\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nits\tO\tits\tO\nscheme\tO\tscheme\tO\naltered\tO\taltered\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nlike\tO\tlike\tO\nsaying\tO\tsaying\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nI\tO\tI\tO\nbought\tO\tbought\tO\nthese\tO\tthese\tO\nnew\tO\tnew\tO\nshoes\tO\tshoes\tO\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nbin\tO\tbin\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\njust\tO\tjust\tO\ntoss\tO\ttoss\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncorner\tO\tcorner\tO\nwill\tO\twill\tO\na\tO\ta\tO\nbin\tO\tbin\tO\nappear\tO\tappear\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\nNo\tO\tNo\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nbin B-File_Type bin O\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41528707\tO\t41528707\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41528707/\tO\thttps://stackoverflow.com/questions/41528707/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nseveral\tO\tseveral\tO\noptions\tO\toptions\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nschema\tO\tschema\tO\nflexibility\tO\tflexibility\tO\nin\tO\tin\tO\nan\tO\tan\tO\n(\tO\t(\tO\nSQL B-Language SQL O\n-\tO\t-\tO\n)\tO\t)\tO\nRDBMS B-Application RDBMS O\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nEntity\tO\tEntity\tO\n–\tO\t–\tO\nattribute\tO\tattribute\tO\n–\tO\t–\tO\nvalue\tO\tvalue\tO\nmodel\tO\tmodel\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\nstore\tO\tstore\tO\na\tO\ta\tO\nJSON B-File_Type JSON O\ndocument\tO\tdocument\tO\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\ndata\tO\tdata\tO\nvolume\tO\tvolume\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\na\tO\ta\tO\nnosql B-Application nosql O\ndb\tO\tdb\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nbetter\tO\tbetter\tO\nchoice\tO\tchoice\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nsometimes\tO\tsometimes\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nor\tO\tor\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ntables B-Data_Structure tables O\nto\tO\tto\tO\nbe\tO\tbe\tO\nschema-flexible\tO\tschema-flexible\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nother\tO\tother\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nrelational\tO\trelational\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nSQL B-Language SQL O\nRDBMS B-Application RDBMS O\nsupport\tO\tsupport\tO\nschema\tO\tschema\tO\nflexible\tO\tflexible\tO\ntables B-Data_Structure tables O\n,\tO\t,\tO\nE.g\tO\tE.g\tO\n.\tO\t.\tO\nSAP B-Code_Block SAP O\nHANA I-Code_Block HANA O\n( I-Code_Block ( O\n\" I-Code_Block \" O\nCREATE I-Code_Block CREATE O\nTABLE I-Code_Block TABLE O\n.. I-Code_Block .. O\n. I-Code_Block . O\nWITH I-Code_Block WITH O\nSCHEMA I-Code_Block SCHEMA O\nFLEXIBILITY I-Code_Block FLEXIBILITY O\n.. I-Code_Block .. O\n. I-Code_Block . O\n\" I-Code_Block \" O\n) I-Code_Block ) O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36843164\tO\t36843164\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36843164/\tO\thttps://stackoverflow.com/questions/36843164/\tO\n\t\n\t\nInternet\tO\tInternet\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nvirtual B-Application virtual O\nmachine I-Application machine O\n(\tO\t(\tO\nCentOS B-Operating_System CentOS O\n7 B-Version 7 O\n)\tO\t)\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nmachine\tO\tmachine\tO\nhas\tO\thas\tO\ntwo\tO\ttwo\tO\nnetwork B-Device network O\nadapter I-Device adapter O\n,\tO\t,\tO\nNAT\tO\tNAT\tO\nand\tO\tand\tO\nHost\tO\tHost\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nping\tO\tping\tO\namong\tO\tamong\tO\nvirtual B-Application virtual O\nmachines I-Application machines O\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n\" B-Code_Block \" O\nping I-Code_Block ping O\nslave1 I-Code_Block slave1 O\n\" I-Code_Block \" O\n\" I-Code_Block \" O\nping I-Code_Block ping O\nslave2 I-Code_Block slave2 O\n\" I-Code_Block \" O\n...\tO\t...\tO\n.\tO\t.\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\n\t\nping B-Code_Block ping O\n8.8.8.8 I-Code_Block 8.8.8.8 O\n\t\n->\tO\t->\tO\nPING B-Output_Block PING O\n8.8.8.8 I-Output_Block 8.8.8.8 O\n( I-Output_Block ( O\n8.8.8.8 I-Output_Block 8.8.8.8 O\n) I-Output_Block ) O\n56(84) I-Output_Block 56(84) O\nbytes I-Output_Block bytes O\nof I-Output_Block of O\ndata I-Output_Block data O\n. I-Output_Block . O\n\t\nafter\tO\tafter\tO\nthis\tO\tthis\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\ncomes\tO\tcomes\tO\nout.\tO\tout.\tO\n.\tO\t.\tO\n\t\nping B-Code_Block ping O\ngoogle.com I-Code_Block google.com O\n\t\n->\tO\t->\tO\nno\tO\tno\tO\nany\tO\tany\tO\nmessage\tO\tmessage\tO\ncomes\tO\tcomes\tO\nout\tO\tout\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nand\tO\tand\tO\nit\tO\tit\tO\nsays\tO\tsays\tO\n\"\tO\t\"\tO\nping B-Output_Block ping O\n: I-Output_Block : O\nunkown I-Output_Block unkown O\nhost I-Output_Block host O\ngoogle.com I-Output_Block google.com O\n\"\tO\t\"\tO\n\t\nenp0s3 B-Code_Block enp0s3 O\n-> I-Code_Block -> O\nNAT(on) I-Code_Block NAT(on) O\n\t\n->\tO\t->\tO\ninet B-Output_Block inet O\n10.0.2.15 I-Output_Block 10.0.2.15 O\n\t\n->\tO\t->\tO\nnetmask B-Output_Block netmask O\n255.255.255.0 I-Output_Block 255.255.255.0 O\n\t\nenp0s8 B-Code_Block enp0s8 O\n-> I-Code_Block -> O\nhost(on) I-Code_Block host(on) O\n\t\n->\tO\t->\tO\n192.168.56.101 B-Output_Block 192.168.56.101 O\n\t\nWhere\tO\tWhere\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nstart\tO\tstart\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nit\tO\tit\tO\nout\tO\tout\tO\n?\tO\t?\tO\n\t\nPlease\tO\tPlease\tO\nI\tO\tI\tO\nam\tO\tam\tO\nspending\tO\tspending\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n17\tO\t17\tO\nhours\tO\thours\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36843164\tO\t36843164\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36843164/\tO\thttps://stackoverflow.com/questions/36843164/\tO\n\t\n\t\nThe\tO\tThe\tO\nNetwrok B-Device Netwrok O\nadaptateur I-Device adaptateur O\nmust\tO\tmust\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nEnabled\tO\tEnabled\tO\n\t\nAttached\tO\tAttached\tO\nto\tO\tto\tO\nBridge B-Device Bridge O\nAdapter I-Device Adapter O\n\t\nThen\tO\tThen\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nvirtual B-Application virtual O\nmachine I-Application machine O\n,\tO\t,\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nNetwork\tO\tNetwork\tO\nConnections\tO\tConnections\tO\nconfiguration\tO\tconfiguration\tO\nand\tO\tand\tO\nconfigure\tO\tconfigure\tO\nto\tO\tto\tO\nObtain\tO\tObtain\tO\nan\tO\tan\tO\nIP\tO\tIP\tO\naddress\tO\taddress\tO\nautomatically\tO\tautomatically\tO\nand\tO\tand\tO\nObtain\tO\tObtain\tO\nDNS B-Application DNS O\nserver I-Application server O\naddress\tO\taddress\tO\nautomatically\tO\tautomatically\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32390491\tO\t32390491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32390491/\tO\thttps://stackoverflow.com/questions/32390491/\tO\n\t\n\t\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nlogin\tO\tlogin\tO\nand\tO\tand\tO\nregister\tO\tregister\tO\nwith\tO\twith\tO\nPHP B-Language PHP O\nand\tO\tand\tO\nMySQL B-Application MySQL O\nin\tO\tin\tO\nfragment\tO\tfragment\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nsample\tO\tsample\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nhope\tO\thope\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nloginfragment B-Class loginfragment O\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3925 I-Code_Block Q_3925 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nloginlayout B-Variable loginlayout O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3926 I-Code_Block Q_3926 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nandroid B-Operating_System android O\nso\tO\tso\tO\nI\tO\tI\tO\nreally\tO\treally\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalready\tO\talready\tO\ndevelop\tO\tdevelop\tO\nlogin\tO\tlogin\tO\nand\tO\tand\tO\nregister\tO\tregister\tO\nwith\tO\twith\tO\nPHP B-Language PHP O\nand\tO\tand\tO\nMySQL B-Application MySQL O\nby\tO\tby\tO\nfollowing\tO\tfollowing\tO\ntutorials\tO\ttutorials\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\nactivity B-Class activity O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32390491\tO\t32390491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32390491/\tO\thttps://stackoverflow.com/questions/32390491/\tO\n\t\n\t\nYou\tO\tYou\tO\nasked\tO\tasked\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nan\tO\tan\tO\ninvolved\tO\tinvolved\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nwithout\tO\twithout\tO\nbeing\tO\tbeing\tO\nable\tO\table\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nyour\tO\tyour\tO\nserver B-Application server O\nside\tO\tside\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\nmentioned\tO\tmentioned\tO\nneeding\tO\tneeding\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nAndroid B-Operating_System Android O\nDevelopers\tO\tDevelopers\tO\ntraining\tO\ttraining\tO\nwith\tO\twith\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nexamples\tO\texamples\tO\n,\tO\t,\tO\nhttp://developer.android.com/training/basics/network-ops/connecting.html\tO\thttp://developer.android.com/training/basics/network-ops/connecting.html\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nrelevant\tO\trelevant\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nhere\tO\there\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4633 I-Code_Block A_4633 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHaving\tO\tHaving\tO\ndone\tO\tdone\tO\nthis\tO\tthis\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ntimes\tO\ttimes\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\npoint\tO\tpoint\tO\nout\tO\tout\tO\nsome\tO\tsome\tO\nthings\tO\tthings\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nlikely\tO\tlikely\tO\nbite\tO\tbite\tO\nyou\tO\tyou\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthis\tO\tthis\tO\n\t\nAndroid B-Operating_System Android O\nrequires\tO\trequires\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\ncalls\tO\tcalls\tO\na\tO\ta\tO\nweb\tO\tweb\tO\nserver B-Application server O\nin\tO\tin\tO\na\tO\ta\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nhttp://developer.android.com/training/multiple-threads/index.html\tO\thttp://developer.android.com/training/multiple-threads/index.html\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nprobably\tO\tprobably\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nauthentication\tO\tauthentication\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nif\tO\tif\tO\nPHP B-Language PHP O\nside\tO\tside\tO\nyou\tO\tyou\tO\nused\tO\tused\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nDrupal B-Library Drupal O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nPHP B-Language PHP O\nframework\tO\tframework\tO\nrequires\tO\trequires\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nSession\tO\tSession\tO\nauth\tO\tauth\tO\nwith\tO\twith\tO\na\tO\ta\tO\nCRLF B-Value CRLF O\ntoken\tO\ttoken\tO\nor\tO\tor\tO\nOAuth\tO\tOAuth\tO\nor\tO\tor\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nscheme\tO\tscheme\tO\n.\tO\t.\tO\n\t\nAuthentication\tO\tAuthentication\tO\nwill\tO\twill\tO\ninvolve\tO\tinvolve\tO\nthree\tO\tthree\tO\nsteps\tO\tsteps\tO\n:\tO\t:\tO\n\t\n**\tO\t**\tO\nSign\tO\tSign\tO\nin\tO\tin\tO\n\t\n**\tO\t**\tO\nRetrieve\tO\tRetrieve\tO\na\tO\ta\tO\ncookie\tO\tcookie\tO\nor\tO\tor\tO\ntoken\tO\ttoken\tO\n\t\n**\tO\t**\tO\nSend\tO\tSend\tO\nthe\tO\tthe\tO\ntoken\tO\ttoken\tO\nin\tO\tin\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\ncontent\tO\tcontent\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nheaders\tO\theaders\tO\n\t\nFinally\tO\tFinally\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nencapsulation\tO\tencapsulation\tO\nlayer\tO\tlayer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlike\tO\tlike\tO\nJSON B-File_Type JSON O\n,\tO\t,\tO\nsome\tO\tsome\tO\nfolks\tO\tfolks\tO\nlike\tO\tlike\tO\nXML B-File_Type XML O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nGSON B-Library GSON O\nlibrary\tO\tlibrary\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nlearn\tO\tlearn\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nhere\tO\there\tO\n,\tO\t,\tO\nhttps://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/Gson.html\tO\thttps://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/Gson.html\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nuser\tO\tuser\tO\nand\tO\tand\tO\nbeginner\tO\tbeginner\tO\nfriendly\tO\tfriendly\tO\nJSON B-File_Type JSON O\nlibrary\tO\tlibrary\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\npractice\tO\tpractice\tO\nI\tO\tI\tO\nusually\tO\tusually\tO\nuse\tO\tuse\tO\nAndroid B-Operating_System Android O\n's\tO\t's\tO\nbuilt-in\tO\tbuilt-in\tO\nJSONArray B-Class JSONArray O\nand\tO\tand\tO\nJSONObject B-Class JSONObject O\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32390491\tO\t32390491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32390491/\tO\thttps://stackoverflow.com/questions/32390491/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\ngood\tO\tgood\tO\nexample\tO\texample\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n\t\nhttp://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/\tO\thttp://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/\tO\n\t\nOverall\tO\tOverall\tO\nsteps\tO\tsteps\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCreate\tO\tCreate\tO\nWeb-service\tO\tWeb-service\tO\nfor\tO\tfor\tO\nlogin\tO\tlogin\tO\nin\tO\tin\tO\nPHP B-Language PHP B-Code_Block\n\t\nCall\tO\tCall\tO\nthat\tO\tthat\tO\nWeb-service\tO\tWeb-service\tO\nform\tO\tform\tO\nandroid B-Operating_System android O\nFragment B-Class Fragment B-Code_Block\n\t\nGet\tO\tGet\tO\nresponse\tO\tresponse\tO\nand\tO\tand\tO\nparse\tO\tparse\tO\nit\tO\tit\tO\n\t\nShow\tO\tShow\tO\nthe\tO\tthe\tO\nResult\tO\tResult\tO\nto\tO\tto\tO\nUser\tO\tUser\tO\n\t\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nfor\tO\tfor\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nFragments B-Class Fragments O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2476581\tO\t2476581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2476581/\tO\thttps://stackoverflow.com/questions/2476581/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nrich B-Data_Type rich O\ntext I-Data_Type text O\nin\tO\tin\tO\na\tO\ta\tO\nQComboBox B-Class QComboBox O\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nsubclass\tO\tsubclass\tO\n?\tO\t?\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunsure\tO\tunsure\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nas\tO\tas\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnever\tO\tnever\tO\ndone\tO\tdone\tO\nanything\tO\tanything\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2476581\tO\t2476581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2476581/\tO\thttps://stackoverflow.com/questions/2476581/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\ncustom\tO\tcustom\tO\ndelegate\tO\tdelegate\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\nreplace\tO\treplace\tO\nstandard\tO\tstandard\tO\ndrawing\tO\tdrawing\tO\nroutine\tO\troutine\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nown\tO\town\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nQLabel B-Class QLabel O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nwas\tO\twas\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nquestion\tO\tquestion\tO\nhere\tO\there\tO\n:\tO\t:\tO\nQListView/QListWidget B-Class QListView/QListWidget O\nwith\tO\twith\tO\ncustom\tO\tcustom\tO\nitems\tO\titems\tO\nand\tO\tand\tO\ncustom\tO\tcustom\tO\nitem\tO\titem\tO\nwidgets B-User_Interface_Element widgets O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25610261\tO\t25610261\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25610261/\tO\thttps://stackoverflow.com/questions/25610261/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nvalidating\tO\tvalidating\tO\nan\tO\tan\tO\nXML B-Language XML O\nDOMDocument B-Class DOMDocument O\nwith\tO\twith\tO\na\tO\ta\tO\nscheme\tO\tscheme\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nmessage\tO\tmessage\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nWarning\tO\tWarning\tO\n:\tO\t:\tO\nDOMDocument::schemaValidate() B-Function DOMDocument::schemaValidate() O\n:\tO\t:\tO\nElement\tO\tElement\tO\n'\tO\t'\tO\nfoo B-Code_Block foo O\n'\tO\t'\tO\n:\tO\t:\tO\nThis\tO\tThis\tO\nelement\tO\telement\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nExpected\tO\tExpected\tO\nis\tO\tis\tO\none\tO\tone\tO\nof\tO\tof\tO\n(\tO\t(\tO\n{url}foo B-Code_Block {url}foo O\n, I-Code_Block , O\n{url}bar I-Code_Block {url}bar O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\n'\tO\t'\tO\nfoo B-Code_Block foo O\n'\tO\t'\tO\nand\tO\tand\tO\n'{url}foo' B-Code_Block '{url}foo' O\nand\tO\tand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nwarning\tO\twarning\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25610261\tO\t25610261\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25610261/\tO\thttps://stackoverflow.com/questions/25610261/\tO\n\t\n\t\nThe\tO\tThe\tO\nnotation\tO\tnotation\tO\n{url}foo B-Code_Block {url}foo B-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nan\tO\tan\tO\nexpanded\tO\texpanded\tO\nname\tO\tname\tO\nwhose\tO\twhose\tO\nnamespace\tO\tnamespace\tO\npart\tO\tpart\tO\nis\tO\tis\tO\nurl B-Variable url B-Code_Block\nand\tO\tand\tO\nwhose\tO\twhose\tO\nlocal\tO\tlocal\tO\nname\tO\tname\tO\npart\tO\tpart\tO\nis\tO\tis\tO\nfoo B-Variable foo B-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nsometimes\tO\tsometimes\tO\nreferred\tO\treferred\tO\nto\tO\tto\tO\nas\tO\tas\tO\n'\tO\t'\tO\nClark\tO\tClark\tO\nnotation\tO\tnotation\tO\n'\tO\t'\tO\nfor\tO\tfor\tO\nJames B-User_Name James O\nClark I-User_Name Clark O\n,\tO\t,\tO\nwho\tO\twho\tO\npromoted\tO\tpromoted\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthis\tO\tthis\tO\nnotation\tO\tnotation\tO\nis\tO\tis\tO\nin\tO\tin\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nunqualified\tO\tunqualified\tO\nnames\tO\tnames\tO\nare\tO\tare\tO\nsometimes\tO\tsometimes\tO\nreferred\tO\treferred\tO\nto\tO\tto\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nnotation\tO\tnotation\tO\n{}foo B-Code_Block {}foo B-Code_Block\nand\tO\tand\tO\nsometimes\tO\tsometimes\tO\n(\tO\t(\tO\nas\tO\tas\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n)\tO\t)\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nnotation\tO\tnotation\tO\nfoo B-Variable foo B-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nis\tO\tis\tO\ntelling\tO\ttelling\tO\nyou\tO\tyou\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nfound\tO\tfound\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nunqualified\tO\tunqualified\tO\nname\tO\tname\tO\nfoo B-Variable foo B-Code_Block\n,\tO\t,\tO\nat\tO\tat\tO\na\tO\ta\tO\nlocation\tO\tlocation\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nexpecting\tO\texpecting\tO\na\tO\ta\tO\nnamespace-qualfied\tO\tnamespace-qualfied\tO\nelement\tO\telement\tO\nnamed\tO\tnamed\tO\neither\tO\teither\tO\nfoo B-Variable foo B-Code_Block\nor\tO\tor\tO\nbar B-Variable bar B-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nnamespace\tO\tnamespace\tO\nurl B-Variable url B-Code_Block\n.\tO\t.\tO\n\t\nProbable\tO\tProbable\tO\ncause\tO\tcause\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nXML B-Language XML O\ninstance\tO\tinstance\tO\nlacks\tO\tlacks\tO\na\tO\ta\tO\nrequired\tO\trequired\tO\nnamespace\tO\tnamespace\tO\ndeclaration\tO\tdeclaration\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46622949\tO\t46622949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46622949/\tO\thttps://stackoverflow.com/questions/46622949/\tO\n\t\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nclassify\tO\tclassify\tO\nstrings B-Data_Type strings O\nusing\tO\tusing\tO\nr B-Language r O\n\t\nMy\tO\tMy\tO\ntext B-File_Type text O\nfile\tO\tfile\tO\nis\tO\tis\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nstructure\tO\tstructure\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6142 I-Code_Block Q_6142 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndistinguish\tO\tdistinguish\tO\nday\tO\tday\tO\n/\tO\t/\tO\nmonth\tO\tmonth\tO\n/\tO\t/\tO\nyear\tO\tyear\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ncommands\tO\tcommands\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nstrsplit B-Function strsplit O\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nstr_split B-Function str_split O\n\"\tO\t\"\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nday\tO\tday\tO\n/\tO\t/\tO\nmonth\tO\tmonth\tO\n/\tO\t/\tO\nyear\tO\tyear\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncategorize\tO\tcategorize\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nappreciate\tO\tappreciate\tO\nit\tO\tit\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nanswer\tO\tanswer\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6143 I-Code_Block Q_6143 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46622949\tO\t46622949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46622949/\tO\thttps://stackoverflow.com/questions/46622949/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\na\tO\ta\tO\npattern\tO\tpattern\tO\nfor\tO\tfor\tO\ndates\tO\tdates\tO\nmore\tO\tmore\tO\ncompletely\tO\tcompletely\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6765 I-Code_Block A_6765 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46622949\tO\t46622949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46622949/\tO\thttps://stackoverflow.com/questions/46622949/\tO\n\t\n\t\nstringr B-Library stringr O\nand\tO\tand\tO\nrebus B-Library rebus O\npackages\tO\tpackages\tO\nare\tO\tare\tO\nreally\tO\treally\tO\nhelpful\tO\thelpful\tO\nand\tO\tand\tO\nintuitive\tO\tintuitive\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6767 I-Code_Block A_6767 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12897909\tO\t12897909\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12897909/\tO\thttps://stackoverflow.com/questions/12897909/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nmy\tO\tmy\tO\nMVC B-Algorithm MVC O\napplication\tO\tapplication\tO\nfrom\tO\tfrom\tO\nAzure B-Application Azure O\nto\tO\tto\tO\nan\tO\tan\tO\nin-house\tO\tin-house\tO\nserver B-Application server O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nexport\tO\texport\tO\nthe\tO\tthe\tO\nSSL\tO\tSSL\tO\ncertificate\tO\tcertificate\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nApp\tO\tApp\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\nserver B-Application server O\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nat\tO\tat\tO\nall\tO\tall\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12897909\tO\t12897909\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12897909/\tO\thttps://stackoverflow.com/questions/12897909/\tO\n\t\n\t\nNO\tO\tNO\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\ncertificate\tO\tcertificate\tO\nout\tO\tout\tO\nof\tO\tof\tO\nWindows B-Application Windows O\nAzure I-Application Azure O\n.\tO\t.\tO\n\t\nQuestion\tO\tQuestion\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nit\tO\tit\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\ncertificate\tO\tcertificate\tO\n)\tO\t)\tO\nappeared\tO\tappeared\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAzure B-Application Azure O\nat\tO\tat\tO\nfirst\tO\tfirst\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwas\tO\twas\tO\ncertainly\tO\tcertainly\tO\nnot\tO\tnot\tO\nuploaded\tO\tuploaded\tO\nby\tO\tby\tO\nMicrosoft B-Website Microsoft O\npeople\tO\tpeople\tO\nor\tO\tor\tO\nsome\tO\tsome\tO\nmagic\tO\tmagic\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\ndeveloper\tO\tdeveloper\tO\nwho\tO\twho\tO\npacked\tO\tpacked\tO\nthe\tO\tthe\tO\ndeployment\tO\tdeployment\tO\npackage\tO\tpackage\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\ncertificate\tO\tcertificate\tO\nreference\tO\treference\tO\n(\tO\t(\tO\nthumbprint\tO\tthumbprint\tO\n)\tO\t)\tO\nand\tO\tand\tO\nservice\tO\tservice\tO\nadministrator\tO\tadministrator\tO\n(\tO\t(\tO\nor\tO\tor\tO\nco-admin\tO\tco-admin\tO\n)\tO\t)\tO\nwho\tO\twho\tO\nuploaded\tO\tuploaded\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ncertificate\tO\tcertificate\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAzure B-Application Azure O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ncontact\tO\tcontact\tO\nthat\tO\tthat\tO\npeople\tO\tpeople\tO\n(\tO\t(\tO\nwhom\tO\twhom\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\njust\tO\tjust\tO\nyou\tO\tyou\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nand\tO\tand\tO\nask\tO\task\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ncertificate\tO\tcertificate\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\ncertificate\tO\tcertificate\tO\nis\tO\tis\tO\nlost\tO\tlost\tO\n,\tO\t,\tO\ncontact\tO\tcontact\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nissuer\tO\tissuer\tO\n(\tO\t(\tO\ncertification\tO\tcertification\tO\nauthority\tO\tauthority\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwere\tO\twere\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nto\tO\tto\tO\noriginally\tO\toriginally\tO\nrequested\tO\trequested\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\noriginally\tO\toriginally\tO\nrequested\tO\trequested\tO\nthe\tO\tthe\tO\ncertificate\tO\tcertificate\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nmight\tO\tmight\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\na\tO\ta\tO\nreason\tO\treason\tO\nbehind\tO\tbehind\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40689342\tO\t40689342\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40689342/\tO\thttps://stackoverflow.com/questions/40689342/\tO\n\t\n\t\nGiven\tO\tGiven\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nindices\tO\tindices\tO\nof\tO\tof\tO\nnearest\tO\tnearest\tO\nnon-coprime\tO\tnon-coprime\tO\nnumber\tO\tnumber\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nGCD(Ai, B-Code_Block GCD(Ai, O\nAj) I-Code_Block Aj) O\n> I-Code_Block > O\n1 I-Code_Block 1 O\n, I-Code_Block , O\nfor I-Code_Block for O\nany I-Code_Block any O\nAi I-Code_Block Ai O\nand I-Code_Block and O\nAj I-Code_Block Aj O\nin I-Code_Block in O\nthe I-Code_Block the O\narray I-Code_Block array O\n, I-Code_Block , O\ni I-Code_Block i O\n!= I-Code_Block != O\nj I-Code_Block j O\n)\tO\t)\tO\nExample\tO\tExample\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nbe\tO\tbe\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5142 I-Code_Block Q_5142 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nanswer\tO\tanswer\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5143 I-Code_Block Q_5143 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nwritten\tO\twritten\tO\nthis\tO\tthis\tO\nbrute\tO\tbrute\tO\nforce\tO\tforce\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nO(n^2))\tO\tO(n^2))\tO\nusing\tO\tusing\tO\nBinary B-Algorithm Binary O\nGCD I-Algorithm GCD O\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nefficient\tO\tefficient\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nfaster\tO\tfaster\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nParticularly\tO\tParticularly\tO\nin\tO\tin\tO\nO(NlogN)\tO\tO(NlogN)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5144 I-Code_Block Q_5144 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40689342\tO\t40689342\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40689342/\tO\thttps://stackoverflow.com/questions/40689342/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nyour\tO\tyour\tO\nmax\tO\tmax\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nnumbers\tO\tnumbers\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nafford\tO\tafford\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nprimes\tO\tprimes\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nfactoring\tO\tfactoring\tO\nthem\tO\tthem\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\naverage/random\tO\taverage/random\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nworst\tO\tworst\tO\ncase\tO\tcase\tO\ncomplexity\tO\tcomplexity\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nstill\tO\tstill\tO\nO(N*N)\tO\tO(N*N)\tO\n-\tO\t-\tO\nthink\tO\tthink\tO\n\"\tO\t\"\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nare\tO\tare\tO\nprimes\tO\tprimes\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nworst\tO\tworst\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nApproach\tO\tApproach\tO\n:\tO\t:\tO\n\t\nfactor\tO\tfactor\tO\nthem\tO\tthem\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\na\tO\ta\tO\nMap[N] B-Code_Block Map[N] B-Code_Block\n+\tO\t+\tO\nint\tO\tint\tO\nclosestNeigh[]\tO\tclosestNeigh[]\tO\n\t\ntake\tO\ttake\tO\na\tO\ta\tO\nfactor\tO\tfactor\tO\nand\tO\tand\tO\nO(N)\tO\tO(N)\tB-Code_Block\ndetermine\tO\tdetermine\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nthe\tO\tthe\tO\nclosest\tO\tclosest\tO\nthat\tO\tthat\tO\ncontain\tO\tcontain\tO\nthat\tO\tthat\tO\nfactor\tO\tfactor\tO\n(\tO\t(\tO\nprefix/sufix\tO\tprefix/sufix\tO\nsums\tO\tsums\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ninvolved\tO\tinvolved\tO\n)\tO\t)\tO\n\t\neliminate\tO\teliminate\tO\nthat\tO\tthat\tO\nfactor\tO\tfactor\tO\nfrom\tO\tfrom\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfactor\tO\tfactor\tO\nmaps\tO\tmaps\tO\n\t\ntake\tO\ttake\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nfactor\tO\tfactor\tO\n.\tO\t.\tO\n\t\nAdjust\tO\tAdjust\tO\nthe\tO\tthe\tO\nclosest\tO\tclosest\tO\nneighbor\tO\tneighbor\tO\nindex\tO\tindex\tO\nonly\tO\tonly\tO\nif\tO\tif\tO\nnew\tO\tnew\tO\none\tO\tone\tO\nis\tO\tis\tO\nclosest\tO\tclosest\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmay\tO\tmay\tO\nbring\tO\tbring\tO\nsome\tO\tsome\tO\n\"\tO\t\"\tO\nrelief\tO\trelief\tO\n\"\tO\t\"\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nof\tO\tof\tO\nO B-Code_Block O B-Code_Block\n( I-Code_Block ( I-Code_Block\nN* I-Code_Block N* I-Code_Block\n<num_distict_factors> I-Code_Block <num_distict_factors> I-Code_Block\n) I-Code_Block ) I-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nagain\tO\tagain\tO\nif\tO\tif\tO\n<num_distict_factors> B-Code_Block <num_distict_factors> B-Code_Block\n== I-Code_Block == I-Code_Block\nN I-Code_Block N I-Code_Block\n(\tO\t(\tO\nall\tO\tall\tO\nprimes\tO\tprimes\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nO(N*N)\tO\tO(N*N)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40689342\tO\t40689342\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40689342/\tO\thttps://stackoverflow.com/questions/40689342/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nwilling\tO\twilling\tO\nto\tO\tto\tO\nget\tO\tget\tO\ninto\tO\tinto\tO\nfactorization\tO\tfactorization\tO\n,\tO\t,\tO\none\tO\tone\tO\ncould\tO\tcould\tO\ntraverse\tO\ttraverse\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n,\tO\t,\tO\nonce\tO\tonce\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\n,\tO\t,\tO\nfactoring\tO\tfactoring\tO\neach\tO\teach\tO\nnumber\tO\tnumber\tO\n,\tO\t,\tO\nhashing\tO\thashing\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\nof\tO\tof\tO\neach\tO\teach\tO\nnew\tO\tnew\tO\nprime\tO\tprime\tO\n(\tO\t(\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nprime\tO\tprime\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\n)\tO\t)\tO\n,\tO\t,\tO\nupdating\tO\tupdating\tO\nthe\tO\tthe\tO\nindex\tO\tindex\tO\nof\tO\tof\tO\neach\tO\teach\tO\nprime\tO\tprime\tO\nalready\tO\talready\tO\nseen\tO\tseen\tO\n,\tO\t,\tO\nand\tO\tand\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nnoting\tO\tnoting\tO\nthe\tO\tthe\tO\nnearest\tO\tnearest\tO\nseen\tO\tseen\tO\nprime\tO\tprime\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nthis\tO\tthis\tO\ntraversal\tO\ttraversal\tO\nwould\tO\twould\tO\nmiss\tO\tmiss\tO\nthe\tO\tthe\tO\nnearest\tO\tnearest\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\n,\tO\t,\tO\nconduct\tO\tconduct\tO\nanother\tO\tanother\tO\ntraversal\tO\ttraversal\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nany\tO\tany\tO\nnearer\tO\tnearer\tO\nshared\tO\tshared\tO\nprime\tO\tprime\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfactor\tO\tfactor\tO\nlists B-Data_Structure lists O\nalready\tO\talready\tO\nsaved\tO\tsaved\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13528130\tO\t13528130\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13528130/\tO\thttps://stackoverflow.com/questions/13528130/\tO\n\t\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nread\tO\tread\tO\nany\tO\tany\tO\nimage B-User_Interface_Element image O\nand\tO\tand\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ncolors\tO\tcolors\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nseveral\tO\tseveral\tO\nimages B-User_Interface_Element images O\nwith\tO\twith\tO\nseveral\tO\tseveral\tO\nformats\tO\tformats\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nadvice\tO\tadvice\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nreceive\tO\treceive\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ncolors\tO\tcolors\tO\nin\tO\tin\tO\nWriteableBitmap.GetPixels() B-Function WriteableBitmap.GetPixels() B-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\njust\tO\tjust\tO\ncloned\tO\tcloned\tB-Code_Block\nthe\tO\tthe\tI-Code_Block\nimage B-User_Interface_Element image I-Code_Block\nby\tO\tby\tO\nreading\tO\treading\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\npixel\tO\tpixel\tO\nby\tO\tby\tO\npixel\tO\tpixel\tO\nand\tO\tand\tO\nputting\tO\tputting\tO\nthis\tO\tthis\tO\npixel\tO\tpixel\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nwriteablebitmap B-Class writeablebitmap O\non\tO\ton\tO\nsame\tO\tsame\tO\nposition\tO\tposition\tO\n.\tO\t.\tO\n\t\nLike\tO\tLike\tO\ncloning\tO\tcloning\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13528130\tO\t13528130\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13528130/\tO\thttps://stackoverflow.com/questions/13528130/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nfault\tO\tfault\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nWriteablebitmap B-Class Writeablebitmap O\nEx\tO\tEx\tO\ncompiled\tO\tcompiled\tO\n/\tO\t/\tO\ndownloadable\tO\tdownloadable\tO\nversion\tO\tversion\tO\n1.0.2 B-Version 1.0.2 O\n(\tO\t(\tO\nothers\tO\tothers\tO\nversion\tO\tversion\tO\nuntil\tO\tuntil\tO\nV B-Version V O\n1.0.5 I-Version 1.0.5 O\nuntested\tO\tuntested\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsourcecode\tO\tsourcecode\tO\nof\tO\tof\tO\nwriteablebitmapex B-Class writeablebitmapex O\nVersion\tO\tVersion\tO\n1.0.5 B-Version 1.0.5 O\n,\tO\t,\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30826425\tO\t30826425\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30826425/\tO\thttps://stackoverflow.com/questions/30826425/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\none\tO\tone\tO\ntable B-Data_Structure table O\nand\tO\tand\tO\ni\tO\ti\tO\nam\tO\tam\tO\niterating\tO\titerating\tO\ntr B-HTML_XML_Tag tr O\non\tO\ton\tO\nclick\tO\tclick\tO\nof\tO\tof\tO\nbutton B-User_Interface_Element button O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3713 I-Code_Block Q_3713 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\npage B-User_Interface_Element page O\nX B-Variable X O\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nall\tO\tall\tO\niterated\tO\titerated\tO\ntr B-HTML_XML_Tag tr O\nto\tO\tto\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nnew\tO\tnew\tO\npage B-User_Interface_Element page O\nY B-Variable Y O\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3714 I-Code_Block Q_3714 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nvery\tO\tvery\tO\nnew\tO\tnew\tO\nin\tO\tin\tO\nangular B-Library angular O\nso\tO\tso\tO\nmy\tO\tmy\tO\nbad\tO\tbad\tO\nif\tO\tif\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nas\tO\tas\tO\nper\tO\tper\tO\nstandard\tO\tstandard\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30826425\tO\t30826425\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30826425/\tO\thttps://stackoverflow.com/questions/30826425/\tO\n\t\n\t\nAdd\tO\tAdd\tO\ndeveloper\tO\tdeveloper\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n$rootScope B-Variable $rootScope O\nand\tO\tand\tO\npass\tO\tpass\tO\nthat\tO\tthat\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\nscope\tO\tscope\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4395 I-Code_Block A_4395 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\non\tO\ton\tO\nsecond\tO\tsecond\tO\npage\tO\tpage\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\n$rootScope B-Variable $rootScope O\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\nlocal\tO\tlocal\tO\n$scope B-Variable $scope O\nand\tO\tand\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\nones\tO\tones\tO\nto\tO\tto\tO\nit\tO\tit\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nalso\tO\talso\tO\naccessible\tO\taccessible\tO\nto\tO\tto\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nexample\tO\texample\tO\non\tO\ton\tO\njsfiddle B-Application jsfiddle O\nhttp://jsfiddle.net/ae8neq3k/\tO\thttp://jsfiddle.net/ae8neq3k/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16400513\tO\t16400513\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16400513/\tO\thttps://stackoverflow.com/questions/16400513/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmultidimensional\tO\tmultidimensional\tO\narray B-Data_Structure array O\ncalled\tO\tcalled\tO\n$responses B-Variable $responses O\nand\tO\tand\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nprint_r B-Function print_r O\n\t\nMy\tO\tMy\tO\nforeach B-Code_Block foreach O\nloop\tO\tloop\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1646 I-Code_Block Q_1646 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nan\tO\tan\tO\noutput\tO\toutput\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nprint_r($output) B-Function print_r($output) O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16400513\tO\t16400513\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16400513/\tO\thttps://stackoverflow.com/questions/16400513/\tO\n\t\n\t\nSeems\tO\tSeems\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ntransformation\tO\ttransformation\tO\nto\tO\tto\tO\nme\tO\tme\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2122 I-Code_Block A_2122 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16400513\tO\t16400513\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16400513/\tO\thttps://stackoverflow.com/questions/16400513/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2121 I-Code_Block A_2121 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\ndo\tO\tdo\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nvar_dump B-Function var_dump O\n\"\tO\t\"\tO\non\tO\ton\tO\n\"\tO\t\"\tO\n$responses B-Variable $responses O\n\"\tO\t\"\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nprint_r B-Function print_r O\n\"\tO\t\"\tO\nbecause\tO\tbecause\tO\nwe\tO\twe\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nview\tO\tview\tO\nhow\tO\thow\tO\nthis\tO\tthis\tO\nvariable\tO\tvariable\tO\nis\tO\tis\tO\nexactly\tO\texactly\tO\ndefined\tO\tdefined\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34713402\tO\t34713402\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34713402/\tO\thttps://stackoverflow.com/questions/34713402/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\niterator\tO\titerator\tO\n,\tO\t,\tO\ninheriting\tO\tinheriting\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\niter B-Class iter B-Code_Block\nclass\tO\tclass\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\niterators B-Library iterators B-Code_Block\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\niterator\tO\titerator\tO\nand\tO\tand\tO\nits\tO\tits\tO\nmethods\tO\tmethods\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nexported\tO\texported\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\niterator\tO\titerator\tO\nand\tO\tand\tO\na\tO\ta\tO\ntest\tO\ttest\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nreproducible\tO\treproducible\tO\nand\tO\tand\tO\nrunnable\tO\trunnable\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\niterator\tO\titerator\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\npairsRef B-Function pairsRef O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4231 I-Code_Block Q_4231 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\niterator\tO\titerator\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nforeach\tO\tforeach\tO\nloops\tO\tloops\tO\nin\tO\tin\tO\na\tO\ta\tO\npackage\tO\tpackage\tO\nof\tO\tof\tO\nmine\tO\tmine\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nput\tO\tput\tO\nTest2 B-Function Test2 O\nin\tO\tin\tO\na\tO\ta\tO\npackage\tO\tpackage\tO\n(\tO\t(\tO\nexported\tO\texported\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nfunctions\tO\tfunctions\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n(\tO\t(\tO\nunexported\tO\tunexported\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\nnamespace\tO\tnamespace\tO\nimport\tO\timport\tO\nBiostrings B-Library Biostrings O\n,\tO\t,\tO\niterators B-Library iterators O\n,\tO\t,\tO\nand\tO\tand\tO\nforeach B-Library foreach O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\na\tO\ta\tO\nfresh\tO\tfresh\tO\nR B-Language R O\nsession\tO\tsession\tO\n,\tO\t,\tO\nloading\tO\tloading\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nrunning\tO\trunning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4232 I-Code_Block Q_4232 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nResults\tO\tResults\tO\nin\tO\tin\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nError\tO\tError\tO\nin\tO\tin\tO\n{\tO\t{\tO\n:\tO\t:\tO\nattempt B-Error_Name attempt O\nto I-Error_Name to O\napply I-Error_Name apply O\nnon-function I-Error_Name non-function O\n\"\tO\t\"\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ncustom\tO\tcustom\tO\niterator\tO\titerator\tO\nis\tO\tis\tO\ninternal\tO\tinternal\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nor\tO\tor\tO\nsuggestions\tO\tsuggestions\tO\nare\tO\tare\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\n[\tO\t[\tO\nEDIT\tO\tEDIT\tO\n]\tO\t]\tO\n-\tO\t-\tO\nIf\tO\tIf\tO\nI\tO\tI\tO\nexport\tO\texport\tO\nthe\tO\tthe\tO\niterator\tO\titerator\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nfunctions\tO\tfunctions\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nall\tO\tall\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nnecessarily\tO\tnecessarily\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nexport\tO\texport\tO\niterators\tO\titerators\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\n\t\nBen B-User_Name Ben O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34713402\tO\t34713402\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34713402/\tO\thttps://stackoverflow.com/questions/34713402/\tO\n\t\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nnextElem B-Function nextElem O\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nimported\tO\timported\tO\nfrom\tO\tfrom\tO\niterators B-Library iterators O\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nadditional\tO\tadditional\tO\nmethod\tO\tmethod\tO\nunique\tO\tunique\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npackage\tO\tpackage\tO\n,\tO\t,\tO\nexported\tO\texported\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nvisible\tO\tvisible\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfunctions\tO\tfunctions\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nforeach B-Library foreach O\npackage\tO\tpackage\tO\nnamespace\tO\tnamespace\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18969916\tO\t18969916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18969916/\tO\thttps://stackoverflow.com/questions/18969916/\tO\n\t\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nMongoDB B-Application MongoDB O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1987 I-Code_Block Q_1987 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nquery\tO\tquery\tO\n\"\tO\t\"\tO\nSUM\tO\tSUM\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nincoming\tO\tincoming\tO\nbetween\tO\tbetween\tO\n11 B-Value 11 O\n- I-Value - O\n12 I-Value 12 O\n\"\tO\t\"\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n500 B-Value 500 O\n)\tO\t)\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncould\tO\tcould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\nMongo B-Application Mongo O\nShell I-Application Shell O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18969916\tO\t18969916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18969916/\tO\thttps://stackoverflow.com/questions/18969916/\tO\n\t\n\t\nAs\tO\tAs\tO\nllovet B-User_Name llovet O\nsuggested\tO\tsuggested\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\naggregation B-Library aggregation O\nframework\tO\tframework\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyour\tO\tyour\tO\nquery\tO\tquery\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2517 I-Code_Block A_2517 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nshape\tO\tshape\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\ndocument\tO\tdocument\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\ncontain\tO\tcontain\tO\nthe\tO\tthe\tO\nsum\tO\tsum\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\na\tO\ta\tO\n$project B-Variable $project O\noperator\tO\toperator\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npipeline\tO\tpipeline\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2518 I-Code_Block A_2518 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35970585\tO\t35970585\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35970585/\tO\thttps://stackoverflow.com/questions/35970585/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nthat\tO\tthat\tO\nrequires\tO\trequires\tO\nJSON B-Language JSON O\nfor\tO\tfor\tO\ngetting\tO\tgetting\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\njson B-File_Type json O\nfile\tO\tfile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nran\tO\tran\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwhen\tO\twhen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\njson B-Language json O\nstring B-Data_Type string O\nusing\tO\tusing\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nfor\tO\tfor\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nID\tO\tID\tO\nworks\tO\tworks\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntested\tO\ttested\tO\nthis\tO\tthis\tO\nmultiple\tO\tmultiple\tO\ntimes\tO\ttimes\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nenter\tO\tenter\tO\nint\tO\tint\tO\nhe\tO\the\tO\nID\tO\tID\tO\nas\tO\tas\tO\na\tO\ta\tO\nstring B-Data_Type string O\nit\tO\tit\tO\nalso\tO\talso\tO\nworks\tO\tworks\tO\nprefectly\tO\tprefectly\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\njsonString B-Class jsonString O\nit\tO\tit\tO\nstops\tO\tstops\tO\nworking\tO\tworking\tO\nand\tO\tand\tO\ngives\tO\tgives\tO\na\tO\ta\tO\nnullpoiterexeption B-Error_Name nullpoiterexeption O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4402 I-Code_Block Q_4402 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\njson B-Language json O\nstring B-Data_Type string O\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\ninfo\tO\tinfo\tO\n{ B-Code_Block { B-Code_Block\n\"W1121000-00002\": I-Code_Block \"W1121000-00002\": I-Code_Block\n{ I-Code_Block { I-Code_Block\n\"clnt\":1023 I-Code_Block \"clnt\":1023 I-Code_Block\n, I-Code_Block , I-Code_Block\n\"srvr\":870 I-Code_Block \"srvr\":870 I-Code_Block\n} I-Code_Block } I-Code_Block\n} B-Code_Block } B-Code_Block\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nclnt B-Value clnt B-Code_Block\nvalue\tO\tvalue\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nstring B-Data_Type string O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24842192\tO\t24842192\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24842192/\tO\thttps://stackoverflow.com/questions/24842192/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nPyhton3.4.1 B-Language Pyhton3.4.1 O\nand\tO\tand\tO\nwin7 B-Operating_System win7 O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nreading\tO\treading\tO\na\tO\ta\tO\ntxt B-File_Type txt O\nfile\tO\tfile\tO\nexported\tO\texported\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nsoftware\tO\tsoftware\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\npython B-Language python O\ncannot\tO\tcannot\tO\nread\tO\tread\tO\nthis\tO\tthis\tO\ntext B-File_Type text O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nif\tO\tif\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\ntext B-File_Type text O\nfile\tO\tfile\tO\nby\tO\tby\tO\nnotepad B-Application notepad O\nand\tO\tand\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nspace\tO\tspace\tO\nin\tO\tin\tO\nany\tO\tany\tO\nplace\tO\tplace\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npython B-Language python O\nworks\tO\tworks\tO\nwell\tO\twell\tO\nthen\tO\tthen\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nsame\tO\tsame\tO\nfile\tO\tfile\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nmac B-Device mac O\n,\tO\t,\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\nas\tO\tas\tO\nin\tO\tin\tO\nwindows B-Operating_System windows O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\noriginal\tO\toriginal\tO\ntext B-File_Type text O\nfile\tO\tfile\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nopen\tO\topen\tO\nand\tO\tand\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\nwindows B-Operating_System windows O\nnotepad B-Application notepad O\n,\tO\t,\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\n\t\nopen\tO\topen\tO\nans\tO\tans\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\nmac B-Device mac O\ntextedit B-Application textedit O\n,\tO\t,\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndoubting\tO\tdoubting\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ncoding\tO\tcoding\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntext B-File_Type text O\nfile\tO\tfile\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nPython B-Language Python O\ncode\tO\tcode\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2796 I-Code_Block Q_2796 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nShell B-Application Shell O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2797 I-Code_Block Q_2797 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPlus\tO\tPlus\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncode\tO\tcode\tO\nreported\tO\treported\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nmac(Python3.4.1,OS10.9) B-Device mac(Python3.4.1,OS10.9) O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2798 I-Code_Block Q_2798 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24842192\tO\t24842192\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24842192/\tO\thttps://stackoverflow.com/questions/24842192/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nNotepad B-Application Notepad O\n,\tO\t,\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nreencoded\tO\treencoded\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsaved\tO\tsaved\tO\nas\tO\tas\tO\nyour\tO\tyour\tO\ndefault\tO\tdefault\tO\nfile\tO\tfile\tO\nencoding\tO\tencoding\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nWindows B-Operating_System Windows O\ninstallation\tO\tinstallation\tO\n.\tO\t.\tO\n\t\nNotepad B-Application Notepad O\nauto-detected\tO\tauto-detected\tO\nthe\tO\tthe\tO\nencoding\tO\tencoding\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nopened\tO\topened\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n.\tO\t.\tO\n\t\nPython B-Language Python O\nopens\tO\topens\tO\nfile\tO\tfile\tO\nusing\tO\tusing\tO\nthat\tO\tthat\tO\nsame\tO\tsame\tO\nsystem\tO\tsystem\tO\nencoding\tO\tencoding\tO\n,\tO\t,\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nnow\tO\tnow\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nQuoting\tO\tQuoting\tO\nthe\tO\tthe\tO\nopen() B-Function open() B-Code_Block\nfunction\tO\tfunction\tO\ndocumentation\tO\tdocumentation\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nexplicitly\tO\texplicitly\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nencoding\tO\tencoding\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nit\tO\tit\tO\ndirectly\tO\tdirectly\tO\nin\tO\tin\tO\nPython B-Language Python O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3408 I-Code_Block A_3408 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nused\tO\tused\tO\n' B-Value ' B-Code_Block\nutf-8-sig I-Value utf-8-sig I-Code_Block\n' I-Value ' I-Code_Block\nas\tO\tas\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nhere\tO\there\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nencoding\tO\tencoding\tO\nthat\tO\tthat\tO\nNotepad B-Application Notepad O\ncan\tO\tcan\tO\nauto-detect\tO\tauto-detect\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncould\tO\tcould\tO\nwell\tO\twell\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nencoding\tO\tencoding\tO\nis\tO\tis\tO\nUTF-16 B-Value UTF-16 O\nor\tO\tor\tO\nplain\tO\tplain\tO\nUTF-8 B-Value UTF-8 O\nor\tO\tor\tO\nany\tO\tany\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nother\tO\tother\tO\nencodings\tO\tencodings\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nis\tO\tis\tO\nencoded\tO\tencoded\tO\nwith\tO\twith\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nANSI\tO\tANSI\tO\ncodepage\tO\tcodepage\tO\nyou\tO\tyou\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nname\tO\tname\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\ncodepage\tO\tcodepage\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nsystem\tO\tsystem\tO\nis\tO\tis\tO\nconfigured\tO\tconfigured\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ncode\tO\tcode\tO\npage\tO\tpage\tO\n936\tO\t936\tO\n(\tO\t(\tO\nGBK\tO\tGBK\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nencoding\tO\tencoding\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\ncodecs B-Library codecs B-Code_Block\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nsupported\tO\tsupported\tO\nencodings\tO\tencodings\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1152958\tO\t1152958\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1152958/\tO\thttps://stackoverflow.com/questions/1152958/\tO\n\t\n\t\nCompile\tO\tCompile\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nclass\tO\tclass\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_68 I-Code_Block Q_68 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nusing\tO\tusing\tO\ngcc B-Code_Block gcc B-Code_Block\n-fdump-class-hierarchy I-Code_Block -fdump-class-hierarchy I-Code_Block\n.\tO\t.\tO\n\t\ngcc B-Code_Block gcc B-Code_Block\nemits\tO\temits\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK O\n: I-Code_Block : O\n( I-Code_Block ( O\ncode I-Code_Block code O\nomitted I-Code_Block omitted O\nfor I-Code_Block for O\nannotation I-Code_Block annotation O\n) I-Code_Block ) O\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsignificance\tO\tsignificance\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nnearly-empty\tO\tnearly-empty\tO\n\"\tO\t\"\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nmean\tO\tmean\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1152958\tO\t1152958\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1152958/\tO\thttps://stackoverflow.com/questions/1152958/\tO\n\t\n\t\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nit\tO\tit\tO\n's\tO\t's\tO\nto\tO\tto\tO\ndifferentiate\tO\tdifferentiate\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\n\"\tO\t\"\tO\nempty\tO\tempty\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nif\tO\tif\tO\ncompile\tO\tcompile\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nmembers\tO\tmembers\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nnearly-empty\tO\tnearly-empty\tO\n\"\tO\t\"\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nmean\tO\tmean\tO\nit\tO\tit\tO\nhasa\tO\thasa\tO\nvtable B-Data_Structure vtable O\nand\tO\tand\tO\nnothing\tO\tnothing\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1152958\tO\t1152958\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1152958/\tO\thttps://stackoverflow.com/questions/1152958/\tO\n\t\n\t\nThe\tO\tThe\tO\nC++ B-Language C++ O\nABI\tO\tABI\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nnearly\tO\tnearly\tO\nempty\tO\tempty\tO\n\"\tO\t\"\tO\nclasses\tO\tclasses\tO\nand\tO\tand\tO\nan\tO\tan\tO\ninteresting\tO\tinteresting\tO\ndiscussion\tO\tdiscussion\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nthey\tO\tthey\tO\naffect\tO\taffect\tO\nvtable B-Data_Structure vtable O\nconstruction\tO\tconstruction\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nI\tO\tI\tO\nran\tO\tran\tO\nacross\tO\tacross\tO\nthis\tO\tthis\tO\nwhile\tO\twhile\tO\nresearching\tO\tresearching\tO\nthe\tO\tthe\tO\neffect\tO\teffect\tO\nof\tO\tof\tO\nnearly\tO\tnearly\tO\nempty\tO\tempty\tO\nvirtual\tO\tvirtual\tO\nbases\tO\tbases\tO\non\tO\ton\tO\nobject\tO\tobject\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\nvtable B-Data_Structure vtable O\nsize\tO\tsize\tO\n,\tO\t,\tO\nand\tO\tand\tO\nvirtual\tO\tvirtual\tO\ncall\tO\tcall\tO\noverhead\tO\toverhead\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16261619\tO\t16261619\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16261619/\tO\thttps://stackoverflow.com/questions/16261619/\tO\n\t\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nNSJSONSerialization B-Class NSJSONSerialization O\nto\tO\tto\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nlogin\tO\tlogin\tO\nurl\tO\turl\tO\nwhich\tO\twhich\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nJSON B-Data_Type JSON O\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nobj\tO\tobj\tO\nhas\tO\thas\tO\n3\tO\t3\tO\nprops\tO\tprops\tO\n:\tO\t:\tO\ndata B-Variable data O\nis\tO\tis\tO\nobj\tO\tobj\tO\n,\tO\t,\tO\nsuccess B-Variable success O\nis\tO\tis\tO\nboolean B-Data_Type boolean O\n(\tO\t(\tO\nNOT\tO\tNOT\tO\nString B-Data_Type String O\n,\tO\t,\tO\nindicates\tO\tindicates\tO\nlogin\tO\tlogin\tO\nsuccess\tO\tsuccess\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n)\tO\t)\tO\n,\tO\t,\tO\ntimeout B-Variable timeout O\nis\tO\tis\tO\nnumber B-Data_Type number O\n(\tO\t(\tO\nNOT\tO\tNOT\tO\nString B-Data_Type String O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsuccess B-Variable success O\nand\tO\tand\tO\ntimeout B-Variable timeout O\n's\tO\t's\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nnull B-Value null O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndata B-Variable data O\nis\tO\tis\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntested\tO\ttested\tO\nthis\tO\tthis\tO\nurl\tO\turl\tO\nfrom\tO\tfrom\tO\nhtml B-File_Type html O\nfile\tO\tfile\tO\nrequiring\tO\trequiring\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nhttp://screencast.com/t/chDMshKPl\tO\thttp://screencast.com/t/chDMshKPl\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2004873\tO\t2004873\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2004873/\tO\thttps://stackoverflow.com/questions/2004873/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nCSS B-Language CSS O\nto\tO\tto\tO\nforce\tO\tforce\tO\na\tO\ta\tO\nvertical\tO\tvertical\tO\nscrollbar B-User_Interface_Element scrollbar O\nin\tO\tin\tO\nFirefox B-Application Firefox O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_129 I-Code_Block Q_129 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDoes\tO\tDoes\tO\nthis\tO\tthis\tO\ntechnique\tO\ttechnique\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nSafari B-Application Safari O\nand\tO\tand\tO\nOpera B-Application Opera O\n?\tO\t?\tO\n\t\nSome\tO\tSome\tO\npeople\tO\tpeople\tO\nsay\tO\tsay\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nsay\tO\tsay\tO\notherwise\tO\totherwise\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2004873\tO\t2004873\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2004873/\tO\thttps://stackoverflow.com/questions/2004873/\tO\n\t\n\t\nThis\tO\tThis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_581 I-Code_Block A_581 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nworks\tO\tworks\tO\nin\tO\tin\tO\nOpera B-Application Opera O\n11.01 B-Version 11.01 O\nand\tO\tand\tO\nSafari B-Application Safari O\n5.0.3 B-Version 5.0.3 O\nfor\tO\tfor\tO\nWindows B-Operating_System Windows O\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_582 I-Code_Block A_582 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nOpera B-Application Opera O\nand\tO\tand\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2004873\tO\t2004873\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2004873/\tO\thttps://stackoverflow.com/questions/2004873/\tO\n\t\n\t\nThe\tO\tThe\tO\nCSS B-Language CSS O\nrule\tO\trule\tO\noverflow-y B-Code_Block overflow-y B-Code_Block\n: I-Code_Block : I-Code_Block\nscroll I-Code_Block scroll I-Code_Block\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nin\tO\tin\tO\n:\tO\t:\tO\n\t\nOpera B-Application Opera O\n10.10 B-Version 10.10 O\n\t\nGoogle B-Application Google O\nChrome I-Application Chrome O\n3.0.195.38 B-Version 3.0.195.38 O\n\t\nMozilla B-Application Mozilla O\nFirefox I-Application Firefox O\n3.5.6 B-Version 3.5.6 O\n\t\nand\tO\tand\tO\nobviously\tO\tobviously\tO\nall\tO\tall\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nMicrosoft B-Application Microsoft O\nInternet I-Application Internet O\nExplorer I-Application Explorer O\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nscrollbar B-User_Interface_Element scrollbar O\nis\tO\tis\tO\nalways\tO\talways\tO\nshown\tO\tshown\tO\n.\tO\t.\tO\n\t\nSafari B-Application Safari O\nand\tO\tand\tO\nGoogle B-Application Google O\nChrome I-Application Chrome O\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nview\tO\tview\tO\nengine\tO\tengine\tO\n,\tO\t,\tO\nso\tO\tso\tO\nchances\tO\tchances\tO\nare\tO\tare\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nin\tO\tin\tO\nSafari B-Application Safari O\nas\tO\tas\tO\nwell\tO\twell\tO\n:)\tO\t:)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27210487\tO\t27210487\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27210487/\tO\thttps://stackoverflow.com/questions/27210487/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nin\tO\tin\tO\nKendo B-Application Kendo O\nUI I-Application UI O\n&\tO\t&\tO\nCodeigniter B-Application Codeigniter O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntrouble\tO\ttrouble\tO\nwith\tO\twith\tO\nKendo B-Application Kendo O\nUI I-Application UI O\nwhen\tO\twhen\tO\ni\tO\ti\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread\tO\tread\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\ncodeigniter B-Library codeigniter O\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\njson B-File_Type json O\ndata\tO\tdata\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nreturn\tO\treturn\tO\nfrom\tO\tfrom\tO\ncontroller\tO\tcontroller\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nnot\tO\tnot\tO\ndisplay\tO\tdisplay\tO\nat\tO\tat\tO\nKendo B-Application Kendo O\nUI I-Application UI O\ngrid\tO\tgrid\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nscreen\tO\tscreen\tO\nshoot\tO\tshoot\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\ndebug\tO\tdebug\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nscreen\tO\tscreen\tO\nshot\tO\tshot\tO\nerror\tO\terror\tO\nhttp://prntscr.com/5bmn3n\tO\thttp://prntscr.com/5bmn3n\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nscreen\tO\tscreen\tO\nshot\tO\tshot\tO\ndata\tO\tdata\tO\ni\tO\ti\tO\nrecived\tO\trecived\tO\nhttp://prntscr.com/5bmne5\tO\thttp://prntscr.com/5bmne5\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nscreen\tO\tscreen\tO\nshot\tO\tshot\tO\nKendo B-Application Kendo O\nUI I-Application UI O\ncode\tO\tcode\tO\n:\tO\t:\tO\nprntscr.com/5bmnib\tO\tprntscr.com/5bmnib\tO\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\nis\tO\tis\tO\nscreen\tO\tscreen\tO\nshot\tO\tshot\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\nprntscr.com/5bmnni\tO\tprntscr.com/5bmnni\tO\n\t\nHope\tO\tHope\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27210487\tO\t27210487\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27210487/\tO\thttps://stackoverflow.com/questions/27210487/\tO\n\t\n\t\nPlease\tO\tPlease\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3776 I-Code_Block Q_3776 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nhave\tO\thave\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\n\"\tO\t\"\tO\njsonp B-Class jsonp O\n\"\tO\t\"\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\nfor\tO\tfor\tO\ncross-domain\tO\tcross-domain\tO\nrequests\tO\trequests\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23630009\tO\t23630009\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23630009/\tO\thttps://stackoverflow.com/questions/23630009/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nan\tO\tan\tO\nMVC5 B-Library MVC5 O\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nserver-side B-Application server-side O\nvalidation\tO\tvalidation\tO\nof\tO\tof\tO\nnumber\tO\tnumber\tO\nfields\tO\tfields\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nspecific\tO\tspecific\tO\nculture\tO\tculture\tO\n(\tO\t(\tO\nde-CH B-Value de-CH O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nreally\tO\treally\tO\nfeels\tO\tfeels\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\nis\tO\tis\tO\ndefaulting\tO\tdefaulting\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nGerman\tO\tGerman\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nweb.config B-File_Name web.config O\nglobalization\tO\tglobalization\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2609 I-Code_Block Q_2609 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nany\tO\tany\tO\nresource\tO\tresource\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nso\tO\tso\tO\nfrom\tO\tfrom\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\nuiCulture B-Class uiCulture O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ncome\tO\tcome\tO\ninto\tO\tinto\tO\nplay\tO\tplay\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclient B-Application client O\nis\tO\tis\tO\nusing\tO\tusing\tO\njquery.globalize B-Variable jquery.globalize O\nand\tO\tand\tO\ncorrectly\tO\tcorrectly\tO\nloading\tO\tloading\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nde-CH B-Value de-CH O\nculture\tO\tculture\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2610 I-Code_Block Q_2610 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nreports\tO\treports\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nculture\tO\tculture\tO\nof\tO\tof\tO\n' B-Value ' O\nde-CH I-Value de-CH O\n' I-Value ' O\non\tO\ton\tO\nboth\tO\tboth\tO\nmachines\tO\tmachines\tO\n.\tO\t.\tO\n\t\nLocally\tO\tLocally\tO\nit\tO\tit\tO\nvalidates\tO\tvalidates\tO\n100.00 B-Value 100.00 O\nas\tO\tas\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver B-Application server O\nit\tO\tit\tO\nsays\tO\tsays\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nproperly\tO\tproperly\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nlocal\tO\tlocal\tO\nWin7 B-Operating_System Win7 O\nIIS7\tO\tIIS7\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nThough\tO\tThough\tO\nwhen\tO\twhen\tO\nwe\tO\twe\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nclient B-Application client O\nWin8 B-Operating_System Win8 O\nserver B-Application server O\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclient-side B-Application client-side O\nis\tO\tis\tO\nvalidating\tO\tvalidating\tO\nnumbers\tO\tnumbers\tO\nproperly\tO\tproperly\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nde-CH B-Value de-CH O\nculture\tO\tculture\tO\n' B-Value ' O\n0.00 I-Value 0.00 O\n' I-Value ' O\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nserver B-Application server O\nrejects\tO\trejects\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\ninvalid\tO\tinvalid\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nDate\tO\tDate\tO\nformats\tO\tformats\tO\nARE\tO\tARE\tO\nhowever\tO\thowever\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\njust\tO\tjust\tO\nadds\tO\tadds\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconfusion\tO\tconfusion\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwonder\tO\twonder\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsomehow\tO\tsomehow\tO\nfalling\tO\tfalling\tO\nback\tO\tback\tO\nto\tO\tto\tO\nde-DE B-Value de-DE O\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nformats\tO\tformats\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nformat\tO\tformat\tO\nis\tO\tis\tO\n' B-Value ' O\n0 I-Value 0 O\n, I-Value , O\n00 I-Value 00 O\n' B-Value ' O\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\na\tO\ta\tO\nserver B-Application server O\nhave\tO\thave\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nculture\tO\tculture\tO\nenabled/installed\tO\tenabled/installed\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nany\tO\tany\tO\nother\tO\tother\tO\nideas\tO\tideas\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23630009\tO\t23630009\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23630009/\tO\thttps://stackoverflow.com/questions/23630009/\tO\n\t\n\t\nFinally\tO\tFinally\tO\nwe\tO\twe\tO\nfigured\tO\tfigured\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nApparently\tO\tApparently\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nregistry\tO\tregistry\tO\nsettings\tO\tsettings\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nculture\tO\tculture\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver B-Application server O\nthat\tO\tthat\tO\nwere\tO\twere\tO\nset\tO\tset\tO\nto\tO\tto\tO\nde-AT B-Value de-AT O\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nsomehow\tO\tsomehow\tO\nwere\tO\twere\tO\nbeing\tO\tbeing\tO\nhonored\tO\thonored\tO\nabove\tO\tabove\tO\nthe\tO\tthe\tO\nWeb.Config B-File_Name Web.Config O\nsettings\tO\tsettings\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43565672\tO\t43565672\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43565672/\tO\thttps://stackoverflow.com/questions/43565672/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsomehow\tO\tsomehow\tO\nextract\tO\textract\tO\nplain\tO\tplain\tO\nHTTP\tO\tHTTP\tO\nrequest\tO\trequest\tO\nmessage\tO\tmessage\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nRequest B-Class Request B-Code_Block\nobject\tO\tobject\tO\nin\tO\tin\tO\nScrapy B-Library Scrapy O\n(\tO\t(\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ncopy/paste\tO\tcopy/paste\tO\nthis\tO\tthis\tO\nrequest\tO\trequest\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nfrom\tO\tfrom\tO\nBurp B-Application Burp O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ngiven\tO\tgiven\tO\na\tO\ta\tO\nscrapy.http.Request B-Class scrapy.http.Request B-Code_Block\nobject\tO\tobject\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nrequest\tO\trequest\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5581 I-Code_Block Q_5581 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nClearly\tO\tClearly\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nRequest B-Class Request B-Code_Block\nobject\tO\tobject\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nreconstruct\tO\treconstruct\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nmanually\tO\tmanually\tO\nis\tO\tis\tO\nerror-prone\tO\terror-prone\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nmiss\tO\tmiss\tO\nsome\tO\tsome\tO\nedge\tO\tedge\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nunderstanding\tO\tunderstanding\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nScrapy B-Library Scrapy O\nfirst\tO\tfirst\tO\nconverts\tO\tconverts\tO\nthis\tO\tthis\tO\nRequest B-Class Request B-Code_Block\ninto\tO\tinto\tO\nTwisted B-Library Twisted B-Code_Block\nobject\tO\tobject\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nthen\tO\tthen\tO\nwrites\tO\twrites\tO\nheaders\tO\theaders\tO\nand\tO\tand\tO\nbody\tO\tbody\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nTCP\tO\tTCP\tO\ntransport\tO\ttransport\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmaybe\tO\tmaybe\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\naway\tO\taway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwrite\tO\twrite\tO\nto\tO\tto\tO\na\tO\ta\tO\nstring B-Data_Type string O\ninstead\tO\tinstead\tO\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nget\tO\tget\tO\nHTTP\tO\tHTTP\tB-Code_Block\n1.0 B-Version 1.0 I-Code_Block\nrequest\tO\trequest\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nhttp.py B-Class http.py B-Code_Block\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\nwith\tO\twith\tO\nHTTP\tO\tHTTP\tB-Code_Block\n1.1 B-Version 1.1 I-Code_Block\nrequests\tO\trequests\tO\n/\tO\t/\tO\nhttp11.py B-File_Name http11.py B-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nactually\tO\tactually\tO\nbeing\tO\tbeing\tO\nsent\tO\tsent\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nobviously\tO\tobviously\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nduplicating\tO\tduplicating\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nScrapy/Twisted B-Library Scrapy/Twisted B-Code_Block\nframeworks\tO\tframeworks\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5582 I-Code_Block Q_5582 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43565672\tO\t43565672\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43565672/\tO\thttps://stackoverflow.com/questions/43565672/\tO\n\t\n\t\nAs\tO\tAs\tO\nscrapy B-Library scrapy O\nis\tO\tis\tO\nopen\tO\topen\tO\nsource\tO\tsource\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\nplenty\tO\tplenty\tO\nof\tO\tof\tO\nextension\tO\textension\tO\npoints\tO\tpoints\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndoable\tO\tdoable\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrequests\tO\trequests\tO\nare\tO\tare\tO\nfinally\tO\tfinally\tO\nassembled\tO\tassembled\tO\nand\tO\tand\tO\nsent\tO\tsent\tO\nout\tO\tout\tO\nin\tO\tin\tO\nscrapy/core/downloader/handlers/http11.py B-File_Name scrapy/core/downloader/handlers/http11.py O\nin\tO\tin\tO\nScrapyAgent.download_request B-Function ScrapyAgent.download_request B-Code_Block\n(\tO\t(\tO\nhttps://github.com/scrapy/scrapy/blob/master/scrapy/core/downloader/handlers/http11.py#L270\tO\thttps://github.com/scrapy/scrapy/blob/master/scrapy/core/downloader/handlers/http11.py#L270\tO\n)\tO\t)\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nplace\tO\tplace\tO\nyour\tO\tyour\tO\nhook\tO\thook\tO\nthere\tO\tthere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndump\tO\tdump\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\ntype\tO\ttype\tO\n,\tO\t,\tO\nrequest\tO\trequest\tO\nheaders\tO\theaders\tO\n,\tO\t,\tO\nand\tO\tand\tO\nrequest\tO\trequest\tO\nbody\tO\tbody\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nplace\tO\tplace\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nthere\tO\tthere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\neither\tO\teither\tO\ntry\tO\ttry\tO\nmonkey\tO\tmonkey\tO\npatching\tO\tpatching\tO\nScrapyAgent.download_request B-Function ScrapyAgent.download_request B-Code_Block\nor\tO\tor\tO\nto\tO\tto\tO\nsubclass\tO\tsubclass\tO\nScrapyAgent B-Class ScrapyAgent B-Code_Block\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nlogging\tO\tlogging\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nsubclass\tO\tsubclass\tO\nHTTP11DownloadHandler B-Class HTTP11DownloadHandler B-Code_Block\nto\tO\tto\tO\nuse\tO\tuse\tO\nyour\tO\tyour\tO\nScrapy B-Library Scrapy O\nAgent\tO\tAgent\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nset\tO\tset\tO\nHTTP11DownloadHandler B-Class HTTP11DownloadHandler O\nas\tO\tas\tO\nnew\tO\tnew\tO\nDOWNLOAD_HANDLER B-Class DOWNLOAD_HANDLER O\nfor\tO\tfor\tO\nhttp\tO\thttp\tO\n/\tO\t/\tO\nhttps\tO\thttps\tO\nrequests\tO\trequests\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n's\tO\t's\tO\nsettings.py B-File_Name settings.py O\n(\tO\t(\tO\nfor\tO\tfor\tO\ndetails\tO\tdetails\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\nhttps://doc.scrapy.org/en/latest/topics/settings.html#download-handlers\tO\thttps://doc.scrapy.org/en/latest/topics/settings.html#download-handlers\tO\n)\tO\t)\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nopinion\tO\topinion\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nclosest\tO\tclosest\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nto\tO\tto\tO\nlogging\tO\tlogging\tO\nthe\tO\tthe\tO\nrequests\tO\trequests\tO\ngoing\tO\tgoing\tO\nout\tO\tout\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\na\tO\ta\tO\npacket\tO\tpacket\tO\nsniffer\tO\tsniffer\tO\nor\tO\tor\tO\na\tO\ta\tO\nlogging\tO\tlogging\tO\nproxy\tO\tproxy\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbit\tO\tbit\tO\noverkill\tO\toverkill\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nscenario\tO\tscenario\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36118227\tO\t36118227\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36118227/\tO\thttps://stackoverflow.com/questions/36118227/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n:\tO\t:\tO\n\t\n\"\tO\t\"\tO\nAssigning\tO\tAssigning\tO\nto\tO\tto\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\nwidth\tO\twidth\tO\nor\tO\tor\tO\nheight\tO\theight\tO\nchanges\tO\tchanges\tO\nthe\tO\tthe\tO\ndimensions\tO\tdimensions\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrectangle\tO\trectangle\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncircle B-User_Interface_Element circle O\n,\tO\t,\tO\nassign\tO\tassign\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nattribute\tO\tattribute\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nchanges\tO\tchanges\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nseen\tO\tseen\tO\nin\tO\tin\tO\ncircle B-User_Interface_Element circle O\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\ni\tO\ti\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4438 I-Code_Block Q_4438 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36118227\tO\t36118227\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36118227/\tO\thttps://stackoverflow.com/questions/36118227/\tO\n\t\n\t\nYou\tO\tYou\tO\ndraw\tO\tdraw\tO\nthe\tO\tthe\tO\ncircle B-User_Interface_Element circle O\non\tO\ton\tO\nthe\tO\tthe\tO\nscreen B-User_Interface_Element screen O\nsurface\tO\tsurface\tO\n.\tO\t.\tO\n\t\nEvery\tO\tEvery\tO\ndrawing\tO\tdrawing\tO\nfunction\tO\tfunction\tO\nthen\tO\tthen\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nRect B-Class Rect B-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nTo\tO\tTo\tO\nactually\tO\tactually\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ncircle B-User_Interface_Element circle O\non\tO\ton\tO\nthe\tO\tthe\tO\nscreen B-User_Interface_Element screen O\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nerase\tO\terase\tO\nit\tO\tit\tO\nfirst\tO\tfirst\tO\n(\tO\t(\tO\ndraw\tO\tdraw\tO\nsomething\tO\tsomething\tO\nabove\tO\tabove\tO\nit\tO\tit\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ndraw\tO\tdraw\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncircle B-User_Interface_Element circle O\nin\tO\tin\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5160 I-Code_Block A_5160 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48628260\tO\t48628260\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48628260/\tO\thttps://stackoverflow.com/questions/48628260/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nup-sample\tO\tup-sample\tO\nan\tO\tan\tO\nicosahedron\tO\ticosahedron\tO\nin\tO\tin\tO\nMATLAB B-Application MATLAB O\nby\tO\tby\tO\nadding\tO\tadding\tO\nnew\tO\tnew\tO\nvertices\tO\tvertices\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nmid-points\tO\tmid-points\tO\nof\tO\tof\tO\neach\tO\teach\tO\nedge\tO\tedge\tO\nand\tO\tand\tO\nrecomputing\tO\trecomputing\tO\nthe\tO\tthe\tO\nfaces\tO\tfaces\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\nplace\tO\tplace\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nvertices\tO\tvertices\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nrecompute\tO\trecompute\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nfaces\tO\tfaces\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\neach\tO\teach\tO\nvertex\tO\tvertex\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nits\tO\tits\tO\nclosest\tO\tclosest\tO\nneighbours\tO\tneighbours\tO\nto\tO\tto\tO\nform\tO\tform\tO\na\tO\ta\tO\nnew\tO\tnew\tO\n,\tO\t,\tO\nup-sampled\tO\tup-sampled\tO\nicosahedron\tO\ticosahedron\tO\n.\tO\t.\tO\n\t\nSample\tO\tSample\tO\ndata\tO\tdata\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6479 I-Code_Block Q_6479 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6480 I-Code_Block Q_6480 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48628260\tO\t48628260\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48628260/\tO\thttps://stackoverflow.com/questions/48628260/\tO\n\t\n\t\nFor\tO\tFor\tO\na\tO\ta\tO\ntriangle\tO\ttriangle\tO\n{\tO\t{\tB-Code_Block\n1 B-Value 1 I-Code_Block\n,\tO\t,\tI-Code_Block\n2 B-Value 2 I-Code_Block\n,\tO\t,\tI-Code_Block\n3} B-Value 3} I-Code_Block\n,\tO\t,\tO\nsubdividing\tO\tsubdividing\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\n3\tO\t3\tO\nnew\tO\tnew\tO\nvertices\tO\tvertices\tO\n{\tO\t{\tB-Code_Block\na B-Variable a I-Code_Block\n,\tO\t,\tI-Code_Block\nb B-Variable b I-Code_Block\n,\tO\t,\tI-Code_Block\nc} B-Variable c} I-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7127 I-Code_Block A_7127 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\ncreate\tO\tcreate\tO\n4\tO\t4\tO\nnew\tO\tnew\tO\nfaces\tO\tfaces\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7128 I-Code_Block A_7128 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\ncreates\tO\tcreates\tO\nthe\tO\tthe\tO\ncoordinates\tO\tcoordinates\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nvertices\tO\tvertices\tO\nin\tO\tin\tO\nV B-Variable V B-Code_Block\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\na B-Variable a B-Code_Block\nvertices\tO\tvertices\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntriangles\tO\ttriangles\tO\ncome\tO\tcome\tO\nfirst\tO\tfirst\tO\n,\tO\t,\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nc B-Variable c B-Code_Block\nvertices\tO\tvertices\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nb B-Variable b B-Code_Block\nvertices\tO\tvertices\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nindices\tO\tindices\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nvertices\tO\tvertices\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\nindices\tO\tindices\tO\nstart\tO\tstart\tO\nfrom\tO\tfrom\tO\nsize(S.vertices)+1 B-Code_Block size(S.vertices)+1 B-Code_Block\nand\tO\tand\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\na\tO\ta\tO\ntotal\tO\ttotal\tO\nof\tO\tof\tO\n3*size(S.faces) B-Code_Block 3*size(S.faces) B-Code_Block\nof\tO\tof\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\nalso\tO\talso\tO\ngroup\tO\tgroup\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nvertices\tO\tvertices\tO\nfor\tO\tfor\tO\na\tO\ta\tO\neach\tO\teach\tO\nexisting\tO\texisting\tO\nface\tO\tface\tO\ntogether\tO\ttogether\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7129 I-Code_Block A_7129 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\ngives\tO\tgives\tO\nus\tO\tus\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\n[ B-Code_Block [ B-Code_Block\na I-Code_Block a I-Code_Block\nb I-Code_Block b I-Code_Block\nc I-Code_Block c I-Code_Block\n] I-Code_Block ] I-Code_Block\nfaces\tO\tfaces\tO\n(\tO\t(\tO\nactually\tO\tactually\tO\n,\tO\t,\tO\nin\tO\tin\tO\n[ B-Code_Block [ B-Code_Block\na I-Code_Block a I-Code_Block\nc I-Code_Block c I-Code_Block\nb I-Code_Block b I-Code_Block\n] I-Code_Block ] I-Code_Block\norder\tO\torder\tO\n)\tO\t)\tO\nin\tO\tin\tO\nVx(f,:) B-Code_Block Vx(f,:) B-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\na B-Variable a B-Code_Block\nvertices\tO\tvertices\tO\nin\tO\tin\tO\nVx(:,1) B-Code_Block Vx(:,1) B-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nb B-Variable b B-Code_Block\nvertices\tO\tvertices\tO\nin\tO\tin\tO\nVx(:,3)<- B-Code_Block Vx(:,3)<- B-Code_Block\n-\tO\t-\tO\nnot\tO\tnot\tO\n2 B-Value 2 O\n!\tO\t!\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nc B-Variable c B-Code_Block\nvertices\tO\tvertices\tO\nin\tO\tin\tO\nVx(:,2) B-Code_Block Vx(:,2) B-Code_Block\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\n3\tO\t3\tO\nnew\tO\tnew\tO\nfaces\tO\tfaces\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nexisting\tO\texisting\tO\nface\tO\tface\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\ncat B-Function cat B-Code_Block\n,\tO\t,\tO\npermute B-Function permute B-Code_Block\nand\tO\tand\tO\nreshape B-Function reshape B-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nreally\tO\treally\tO\nugly\tO\tugly\tO\nand\tO\tand\tO\nincomprehensible\tO\tincomprehensible\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nwe\tO\twe\tO\n've\tO\t've\tO\nonly\tO\tonly\tO\ngot\tO\tgot\tO\n9\tO\t9\tO\nvertices\tO\tvertices\tO\nthat\tO\tthat\tO\ngo\tO\tgo\tO\ninto\tO\tinto\tO\nthese\tO\tthese\tO\nfaces\tO\tfaces\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nplug\tO\tplug\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nmanually\tO\tmanually\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nm B-Code_Block m B-Code_Block\nx I-Code_Block x I-Code_Block\n9 I-Code_Block 9 I-Code_Block\nmatrix B-Data_Structure matrix O\nand\tO\tand\tO\nthen\tO\tthen\tO\nreshape B-Function reshape O\ninto\tO\tinto\tO\nm*3 B-Code_Block m*3 B-Code_Block\nx I-Code_Block x I-Code_Block\n3 I-Code_Block 3 I-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7130 I-Code_Block A_7130 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nall\tO\tall\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nleft\tO\tleft\tO\nis\tO\tis\tO\nupdating\tO\tupdating\tO\nS B-Variable S B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7131 I-Code_Block A_7131 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47203799\tO\t47203799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47203799/\tO\thttps://stackoverflow.com/questions/47203799/\tO\n\t\n\t\nSo\tO\tSo\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\nnodemon B-Code_Block nodemon O\nserver.js I-Code_Block server.js O\n,\tO\t,\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\ndeploy\tO\tdeploy\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nBitnami B-Library Bitnami O\npowered\tO\tpowered\tO\ncompute B-Device compute O\nengine I-Device engine O\nmachine\tO\tmachine\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nMongoDB B-Application MongoDB O\ninstalled\tO\tinstalled\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\nto\tO\tto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nmy\tO\tmy\tO\nnodejs B-Application nodejs O\nApp\tO\tApp\tO\nengine\tO\tengine\tO\nI\tO\tI\tO\nconnect\tO\tconnect\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6268 I-Code_Block Q_6268 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nI\tO\tI\tO\nget\tO\tget\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6269 I-Code_Block Q_6269 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nssh-ing\tO\tssh-ing\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ncompute B-Device compute O\nengine I-Device engine O\nand\tO\tand\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nadding\tO\tadding\tO\nperimision\tO\tperimision\tO\nfor\tO\tfor\tO\nport B-Device port O\n27017\tO\t27017\tO\n:\tO\t:\tO\n\t\ngcloud B-Code_Block gcloud B-Code_Block\ncompute I-Code_Block compute I-Code_Block\nfirewall-rules I-Code_Block firewall-rules I-Code_Block\ncreate I-Code_Block create I-Code_Block\nallow-mongodb I-Code_Block allow-mongodb I-Code_Block\n--allow I-Code_Block --allow I-Code_Block\ntcp:27017 I-Code_Block tcp:27017 I-Code_Block\n\t\nIt\tO\tIt\tO\nsaid\tO\tsaid\tO\nit\tO\tit\tO\nalready\tO\talready\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nin\tO\tin\tO\nmongodb.config B-File_Name mongodb.config O\nin\tO\tin\tO\nbind_ip B-Variable bind_ip O\nto\tO\tto\tO\n0.0.0.0 B-Value 0.0.0.0 O\n.\tO\t.\tO\n\t\nStill\tO\tStill\tO\nnothing\tO\tnothing\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nfrustating\tO\tfrustating\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nidea\tO\tidea\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\napreciate\tO\tapreciate\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nmention\tO\tmention\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nexperience\tO\texperience\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nso\tO\tso\tO\nplease\tO\tplease\tO\nbe\tO\tbe\tO\nexplicit\tO\texplicit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47203799\tO\t47203799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47203799/\tO\thttps://stackoverflow.com/questions/47203799/\tO\n\t\n\t\nI\tO\tI\tO\nusually\tO\tusually\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6885 I-Code_Block A_6885 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nhelped\tO\thelped\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10935804\tO\t10935804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10935804/\tO\thttps://stackoverflow.com/questions/10935804/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nvirtual B-Application virtual O\nprinter I-Application printer O\nthat\tO\tthat\tO\n'\tO\t'\tO\nshreds\tO\tshreds\tO\n'\tO\t'\tO\n\t\nBasically\tO\tBasically\tO\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsoftware\tO\tsoftware\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\n'\tO\t'\tO\nprint\tO\tprint\tO\n'\tO\t'\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nshredder\tO\tshredder\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nsaves\tO\tsaves\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nactually\tO\tactually\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nprinted\tO\tprinted\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nto\tO\tto\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\nsecurely\tO\tsecurely\tO\ndeletes\tO\tdeletes\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nand\tO\tand\tO\nshows\tO\tshows\tO\nas\tO\tas\tO\na\tO\ta\tO\ndriver B-Application driver O\nin\tO\tin\tO\nWindows B-Operating_System Windows O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nC# B-Language C# O\nof\tO\tof\tO\nVB.Net B-Language VB.Net O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10935804\tO\t10935804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10935804/\tO\thttps://stackoverflow.com/questions/10935804/\tO\n\t\n\t\nNo\tO\tNo\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\njust\tO\tjust\tO\nprint\tO\tprint\tO\nto\tO\tto\tO\nnul B-Value nul B-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nworked\tO\tworked\tO\nsince\tO\tsince\tO\nDOS B-Operating_System DOS O\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nprinter B-Device printer O\n,\tO\t,\tO\nprinting\tO\tprinting\tO\nto\tO\tto\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nport B-Device port O\n,\tO\t,\tO\nand\tO\tand\tO\nput\tO\tput\tO\nnul B-Value nul B-Code_Block\nin\tO\tin\tO\nthere\tO\tthere\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nport B-Device port O\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nhttp://www.markmmanning.com/blog/2009/01/creating-fake-printer-devnull-for.html\tO\thttp://www.markmmanning.com/blog/2009/01/creating-fake-printer-devnull-for.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39787671\tO\t39787671\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39787671/\tO\thttps://stackoverflow.com/questions/39787671/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngenerating\tO\tgenerating\tO\nPDF B-File_Type PDF O\nfiles\tO\tfiles\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nold\tO\told\tO\nlibrary\tO\tlibrary\tO\nof\tO\tof\tO\niText B-Library iText O\non\tO\ton\tO\nUnix B-Operating_System Unix O\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nexploitation\tO\texploitation\tO\nteam\tO\tteam\tO\nhas\tO\thas\tO\njust\tO\tjust\tO\ncontacted\tO\tcontacted\tO\nme\tO\tme\tO\ntelling\tO\ttelling\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nhaving\tO\thaving\tO\nstorage\tO\tstorage\tO\ntroubles\tO\ttroubles\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\ntemp B-File_Type temp O\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\na\tO\ta\tO\ndiscussion\tO\tdiscussion\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nindicate\tO\tindicate\tO\nme\tO\tme\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\n\" B-File_Name \" O\nAcroaxxxxx I-File_Name Acroaxxxxx O\n\" I-File_Name \" O\nfiles\tO\tfiles\tO\nare\tO\tare\tO\ncreated\tO\tcreated\tO\nunder\tO\tunder\tO\n/tmp B-File_Name /tmp O\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nchecking\tO\tchecking\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nI\tO\tI\tO\ngenerate\tO\tgenerate\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nhandling\tO\thandling\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nsimple\tO\tsimple\tO\n:\tO\t:\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmodify\tO\tmodify\tO\nor\tO\tor\tO\nadd\tO\tadd\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nindicate\tO\tindicate\tO\nto\tO\tto\tO\niText B-Library iText O\nto\tO\tto\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\ntmp B-File_Type tmp O\nfile\tO\tfile\tO\ncreated\tO\tcreated\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\n?\tO\t?\tO\n\t\nThnks\tO\tThnks\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24008410\tO\t24008410\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24008410/\tO\thttps://stackoverflow.com/questions/24008410/\tO\n\t\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\n\t\napache_setenv B-Code_Block apache_setenv O\n( I-Code_Block ( O\n'sessionID' I-Code_Block 'sessionID' O\n, I-Code_Block , O\nsession_id() I-Code_Block session_id() O\n, I-Code_Block , O\nTRUE I-Code_Block TRUE O\n) I-Code_Block ) O\n\t\nBUT\tO\tBUT\tO\n\t\nit\tO\tit\tO\nonly\tO\tonly\tO\nmakes\tO\tmakes\tO\nsessionID B-Variable sessionID O\nappear\tO\tappear\tO\non\tO\ton\tO\nGETs B-Code_Block GETs O\nof\tO\tof\tO\nPHP B-File_Type PHP O\nfiles\tO\tfiles\tO\nwhich\tO\twhich\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nsessionID B-Variable sessionID O\nto\tO\tto\tO\nappear\tO\tappear\tO\non\tO\ton\tO\nall\tO\tall\tO\nGETs B-Code_Block GETs O\nincluding\tO\tincluding\tO\njs B-File_Type js O\n,\tO\t,\tO\njpg B-File_Type jpg O\n,\tO\t,\tO\ngif B-File_Type gif O\netc\tO\tetc\tO\nreferred\tO\treferred\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nPHP B-File_Type PHP O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nPHP B-File_Type PHP O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nthat\tO\tthat\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nan\tO\tan\tO\napache B-Application apache O\nenvironment\tO\tenvironment\tO\nvariable\tO\tvariable\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nscope\tO\tscope\tO\nwould\tO\twould\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nGET B-Code_Block GET O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nPHP B-File_Type PHP O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\np.s\tO\tp.s\tO\n.\tO\t.\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nsetting\tO\tsetting\tO\napache B-Function apache O\nnote I-Function note O\nfirst\tO\tfirst\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\nexactly\tO\texactly\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19032760\tO\t19032760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19032760/\tO\thttps://stackoverflow.com/questions/19032760/\tO\n\t\n\t\nGetting\tO\tGetting\tO\n\"\tO\t\"\tO\nGateway B-Error_Name Gateway O\nerror I-Error_Name error O\n:\tO\t:\tO\nUnable\tO\tUnable\tO\nto\tO\tto\tO\nread\tO\tread\tO\nresponse\tO\tresponse\tO\nor\tO\tor\tO\nresponse\tO\tresponse\tO\nis\tO\tis\tO\nempty\tO\tempty\tO\n\"\tO\t\"\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\npost\tO\tpost\tO\npayments\tO\tpayments\tO\nto\tO\tto\tO\nauthorize.net B-Application authorize.net O\n.\tO\t.\tO\n\t\nAuthorize.net B-Application Authorize.net O\ncannot\tO\tcannot\tO\nsee\tO\tsee\tO\nanything\tO\tanything\tO\ncoming\tO\tcoming\tO\nthrough\tO\tthrough\tO\n,\tO\t,\tO\nhost\tO\thost\tO\nprovider\tO\tprovider\tO\nsays\tO\tsays\tO\nno\tO\tno\tO\nissues\tO\tissues\tO\non\tO\ton\tO\ntheir\tO\ttheir\tO\nend\tO\tend\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nAuthorize.net B-Application Authorize.net O\npayment\tO\tpayment\tO\ntype\tO\ttype\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nverified\tO\tverified\tO\nmy\tO\tmy\tO\nAPI B-Variable API O\nlogin I-Variable login O\nand\tO\tand\tO\ntrans B-Variable trans O\nID I-Variable ID O\nin\tO\tin\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nwebsite\tO\twebsite\tO\n,\tO\t,\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\nview\tO\tview\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ninstalled\tO\tinstalled\tO\ncURL B-Application cURL O\nSSL I-Application SSL O\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nverified\tO\tverified\tO\nno\tO\tno\tO\nfirewalls B-Application firewalls O\nare\tO\tare\tO\nblocking\tO\tblocking\tO\nconnections\tO\tconnections\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\ntestmode\tO\ttestmode\tO\n\t\ndebugging\tO\tdebugging\tO\nis\tO\tis\tO\non\tO\ton\tO\n,\tO\t,\tO\nand\tO\tand\tO\nresults\tO\tresults\tO\nare\tO\tare\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nexception.log B-File_Name exception.log O\nfile\tO\tfile\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1991 I-Code_Block Q_1991 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19032760\tO\t19032760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19032760/\tO\thttps://stackoverflow.com/questions/19032760/\tO\n\t\n\t\ni\tO\ti\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nenabled\tO\tenabled\tO\nTest\tO\tTest\tO\nMode\tO\tMode\tO\nin\tO\tin\tO\nSystem->Configuration->PaymentMethods B-Application System->Configuration->PaymentMethods O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19032760\tO\t19032760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19032760/\tO\thttps://stackoverflow.com/questions/19032760/\tO\n\t\n\t\nTurns\tO\tTurns\tO\nout\tO\tout\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nnameservers B-Application nameservers O\nat\tO\tat\tO\nmy\tO\tmy\tO\nhost\tO\thost\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\nusing\tO\tusing\tO\ninformation\tO\tinformation\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://www.magentocommerce.com/boards/viewthread/50611/\tO\thttp://www.magentocommerce.com/boards/viewthread/50611/\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nreferenced\tO\treferenced\tO\nthread\tO\tthread\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nviewed\tO\tviewed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\narchive\tO\tarchive\tO\n,\tO\t,\tO\nhere\tO\there\tO\nhttps://web.archive.org/web/20150315055800/http://www.magentocommerce.com/boards/viewthread/50611\tO\thttps://web.archive.org/web/20150315055800/http://www.magentocommerce.com/boards/viewthread/50611\tO\n)\tO\t)\tO\n\t\nAfter\tO\tAfter\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nreceived\tO\treceived\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\na\tO\ta\tO\nblocked\tO\tblocked\tO\nIP\tO\tIP\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nadded\tO\tadded\tO\nmy\tO\tmy\tO\nnew\tO\tnew\tO\nip\tO\tip\tO\nat\tO\tat\tO\naccounts.authorize.net\tO\taccounts.authorize.net\tO\nin\tO\tin\tO\nTools B-Application Tools O\n(\tO\t(\tO\ntop\tO\ttop\tO\nmenu B-User_Interface_Element menu O\n)\tO\t)\tO\n>\tO\t>\tO\nFraud\tO\tFraud\tO\nSuite\tO\tSuite\tO\n(\tO\t(\tO\nleft\tO\tleft\tO\nmenu B-User_Interface_Element menu O\n)\tO\t)\tO\n>\tO\t>\tO\nAuthorized\tO\tAuthorized\tO\nAIM\tO\tAIM\tO\nip\tO\tip\tO\naddresses\tO\taddresses\tO\n(\tO\t(\tO\nbody\tO\tbody\tO\n,\tO\t,\tO\nsecond\tO\tsecond\tO\nto\tO\tto\tO\nlast\tO\tlast\tO\nitem\tO\titem\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28485125\tO\t28485125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28485125/\tO\thttps://stackoverflow.com/questions/28485125/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nproject\tO\tproject\tO\nfor\tO\tfor\tO\nuniversity\tO\tuniversity\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nreceive\tO\treceive\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nprevious\tO\tprevious\tO\npage\tO\tpage\tO\nan\tO\tan\tO\nid\tO\tid\tO\nas\tO\tas\tO\n$_POST['ids'] B-Variable $_POST['ids'] O\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nI\tO\tI\tO\nsend\tO\tsend\tO\nthat\tO\tthat\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\na\tO\ta\tO\nhidden\tO\thidden\tO\nfield\tO\tfield\tO\nso\tO\tso\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\na\tO\ta\tO\ncicle\tO\tcicle\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nsubmit\tO\tsubmit\tO\nbutton B-User_Interface_Element button O\nI\tO\tI\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nerrors\tO\terrors\tO\non\tO\ton\tO\n$service_info B-Variable $service_info O\nand\tO\tand\tO\nno\tO\tno\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\ndo\tO\tdo\tO\nvar_dump() B-Function var_dump() O\neverything\tO\teverything\tO\nand\tO\tand\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3340 I-Code_Block Q_3340 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28485125\tO\t28485125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28485125/\tO\thttps://stackoverflow.com/questions/28485125/\tO\n\t\n\t\nchange\tO\tchange\tO\ninside\tO\tinside\tO\nyour\tO\tyour\tO\nform\tO\tform\tO\nthis\tO\tthis\tO\ninput\tO\tinput\tO\nhidden\tO\thidden\tO\nyou\tO\tyou\tO\ncreated\tO\tcreated\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3979 I-Code_Block A_3979 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3980 I-Code_Block A_3980 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nechoing\tO\techoing\tO\nthis\tO\tthis\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\n$_POST['ids'] B-Variable $_POST['ids'] O\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nget\tO\tget\tO\nany\tO\tany\tO\nvalue\tO\tvalue\tO\npassed\tO\tpassed\tO\nfrom\tO\tfrom\tO\nform B-User_Interface_Element form O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33651301\tO\t33651301\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33651301/\tO\thttps://stackoverflow.com/questions/33651301/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nquery\tO\tquery\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\ninsert\tO\tinsert\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntable B-Data_Structure table O\n,\tO\t,\tO\nAzure B-Application Azure O\nMobile I-Application Mobile O\nService I-Application Service O\nadds\tO\tadds\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nthe\tO\tthe\tO\n__createdAt B-Variable __createdAt B-Code_Block\ncolumn B-Data_Structure column O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nplanning\tO\tplanning\tO\nto\tO\tto\tO\nsort\tO\tsort\tO\nthe\tO\tthe\tO\ntable B-Data_Structure table O\naccording\tO\taccording\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nspecific\tO\tspecific\tO\ncolumn B-Data_Structure column O\n,\tO\t,\tO\nsince\tO\tsince\tO\n__createdAt B-Variable __createdAt B-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nsystem\tO\tsystem\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nof\tO\tof\tO\nadding\tO\tadding\tO\nit\tO\tit\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ntable B-Data_Structure table O\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nquery\tO\tquery\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nC# B-Language C# O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33651301\tO\t33651301\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33651301/\tO\thttps://stackoverflow.com/questions/33651301/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nmodel\tO\tmodel\tO\nthat\tO\tthat\tO\ntracks\tO\ttracks\tO\nthe\tO\tthe\tO\n__createdAt B-Variable __createdAt O\ncolumn B-Data_Structure column O\n,\tO\t,\tO\nand\tO\tand\tO\nsort\tO\tsort\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4813 I-Code_Block A_4813 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4814 I-Code_Block A_4814 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45667456\tO\t45667456\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45667456/\tO\thttps://stackoverflow.com/questions/45667456/\tO\n\t\n\t\nHi\tO\tHi\tO\nall\tO\tall\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nquestion\tO\tquestion\tO\nhere\tO\there\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nvery\tO\tvery\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nHaskell B-Language Haskell O\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nHaskell B-Language Haskell O\nfunction\tO\tfunction\tO\nwhich\tO\twhich\tO\ntakes\tO\ttakes\tO\na\tO\ta\tO\nTree B-Data_Structure Tree O\nand\tO\tand\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nthe\tO\tthe\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nits\tO\tits\tO\nnode\tO\tnode\tO\nin\tO\tin\tO\na\tO\ta\tO\npreorder\tO\tpreorder\tO\ntraversal\tO\ttraversal\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nTree B-Data_Structure Tree O\ndefinition\tO\tdefinition\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5981 I-Code_Block Q_5981 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\npreorder B-Function preorder O\nfunction\tO\tfunction\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5982 I-Code_Block Q_5982 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nadvance\tO\tadvance\tO\nthank\tO\tthank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n:)\tO\t:)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25737212\tO\t25737212\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25737212/\tO\thttps://stackoverflow.com/questions/25737212/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nListView B-Class ListView O\nin\tO\tin\tO\nmy\tO\tmy\tO\nWindows B-Application Windows O\nStore I-Application Store O\nApp\tO\tApp\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nselects\tO\tselects\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nthrough\tO\tthrough\tO\ndataTemplateSelector B-Class dataTemplateSelector O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nItemTemplate B-Class ItemTemplate O\nof\tO\tof\tO\nListView B-Class ListView O\n,\tO\t,\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nimage B-User_Interface_Element image O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthe\tO\tthe\tO\nheight B-Variable height O\nand\tO\tand\tO\nwidth B-Variable width O\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nit\tO\tit\tO\nto\tO\tto\tO\nadjust\tO\tadjust\tO\nitself\tO\titself\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nspace\tO\tspace\tO\navailable\tO\tavailable\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndisplayed\tO\tdisplayed\tO\nbigger\tO\tbigger\tO\nin\tO\tin\tO\nbig\tO\tbig\tO\nscreen\tO\tscreen\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nFollowing\tO\tFollowing\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nListView B-Class ListView O\nXAML B-Language XAML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2934 I-Code_Block Q_2934 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nVerticalContentAlignment B-Class VerticalContentAlignment O\nto\tO\tto\tO\nStretch\tO\tStretch\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nstretches\tO\tstretches\tO\nmy\tO\tmy\tO\nListViewItem B-Class ListViewItem O\nto\tO\tto\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nListView B-Class ListView O\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nItem B-User_Interface_Element Item O\nis\tO\tis\tO\nbigger\tO\tbigger\tO\n,\tO\t,\tO\nit\tO\tit\tO\nincreases\tO\tincreases\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nListViewItem B-Class ListViewItem O\nlarger\tO\tlarger\tO\nthan\tO\tthan\tO\nListView B-Class ListView O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nheight B-Variable height O\nof\tO\tof\tO\nListViewItem B-Class ListViewItem O\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2935 I-Code_Block Q_2935 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFollowing\tO\tFollowing\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nItemTemplate B-Class ItemTemplate O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nselected\tO\tselected\tO\nthrough\tO\tthrough\tO\nItemTemplateSelector B-Variable ItemTemplateSelector O\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2936 I-Code_Block Q_2936 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nGrid B-User_Interface_Element Grid O\nat\tO\tat\tO\nRow\tO\tRow\tO\nNumber\tO\tNumber\tO\n1 B-Value 1 O\n<Grid B-Code_Block <Grid B-Code_Block\nGrid.Row=\"1\" I-Code_Block Grid.Row=\"1\" I-Code_Block\n> I-Code_Block > I-Code_Block\n,\tO\t,\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nwhich\tO\twhich\tO\nmakes\tO\tmakes\tO\nthe\tO\tthe\tO\nheight B-Variable height O\ngo\tO\tgo\tO\nlarger\tO\tlarger\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nListView B-Class ListView O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nthis\tO\tthis\tO\nGrid B-User_Interface_Element Grid O\nto\tO\tto\tO\nstretch\tO\tstretch\tO\nitself\tO\titself\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nits\tO\tits\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nnot\tO\tnot\tO\ncross\tO\tcross\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nits\tO\tits\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nother\tO\tother\tO\nword\tO\tword\tO\n,\tO\t,\tO\ni\tO\ti\tO\nsimply\tO\tsimply\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbind\tO\tbind\tO\nits\tO\tits\tO\nheight B-Variable height O\nto\tO\tto\tO\nits\tO\tits\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\n,\tO\t,\tO\ni\tO\ti\tO\nam\tO\tam\tO\nstuck\tO\tstuck\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25737212\tO\t25737212\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25737212/\tO\thttps://stackoverflow.com/questions/25737212/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nproject\tO\tproject\tO\nby\tO\tby\tO\nbinding\tO\tbinding\tO\nthe\tO\tthe\tO\nHeight B-Variable Height B-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\nGrid B-Class Grid B-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nDataTemplate B-Class DataTemplate B-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nActualHeight B-Variable ActualHeight B-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\nListView B-Class ListView B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nbinding\tO\tbinding\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nListView.ItemContainerStyle B-HTML_XML_Tag ListView.ItemContainerStyle B-Code_Block\nstyle\tO\tstyle\tO\nas\tO\tas\tO\na\tO\ta\tO\nsetter\tO\tsetter\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3669 I-Code_Block A_3669 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25737212\tO\t25737212\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25737212/\tO\thttps://stackoverflow.com/questions/25737212/\tO\n\t\n\t\nhave\tO\thave\tO\nyou\tO\tyou\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nRow B-Class Row O\nDefinition I-Class Definition O\napplied\tO\tapplied\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nimage\tO\timage\tO\nto\tO\tto\tO\n'\tO\t'\tO\nAuto B-Value Auto O\n'\tO\t'\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3546 I-Code_Block Q_3546 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36540603\tO\t36540603\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36540603/\tO\thttps://stackoverflow.com/questions/36540603/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4498 I-Code_Block Q_4498 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36540603\tO\t36540603\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36540603/\tO\thttps://stackoverflow.com/questions/36540603/\tO\n\t\n\t\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5232 I-Code_Block A_5232 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36540603\tO\t36540603\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36540603/\tO\thttps://stackoverflow.com/questions/36540603/\tO\n\t\n\t\nSince\tO\tSince\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nOrderAmount B-Variable OrderAmount O\ntype\tO\ttype\tO\ncolumn B-Data_Structure column O\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nassuming\tO\tassuming\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\nmaximum\tO\tmaximum\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\norders\tO\torders\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5233 I-Code_Block A_5233 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12253248\tO\t12253248\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12253248/\tO\thttps://stackoverflow.com/questions/12253248/\tO\n\t\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\nsay\tO\tsay\tO\nyour\tO\tyour\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nproduct\tO\tproduct\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nrealise\tO\trealise\tO\nthat\tO\tthat\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\ngeneral\tO\tgeneral\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nextracted\tO\textracted\tO\nout\tO\tout\tO\nto\tO\tto\tO\na\tO\ta\tO\ngem B-File_Type gem O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\ngem\tO\tgem\tO\n,\tO\t,\tO\npublish\tO\tpublish\tO\nit\tO\tit\tO\nto\tO\tto\tO\nRubygems B-Website Rubygems O\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nreference\tO\treference\tO\nit\tO\tit\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nmain\tO\tmain\tO\nproject\tO\tproject\tO\n's\tO\t's\tO\nGemfile B-File_Type Gemfile O\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ndiscover\tO\tdiscover\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\ngem B-File_Type gem O\ninteracts\tO\tinteracts\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nproduct\tO\tproduct\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\ntime\tO\ttime\tO\nyour\tO\tyour\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nfix\tO\tfix\tO\n,\tO\t,\tO\nbuilding\tO\tbuilding\tO\nand\tO\tand\tO\ninstalling\tO\tinstalling\tO\nthe\tO\tthe\tO\ngem B-File_Type gem O\nlocally\tO\tlocally\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nabout\tO\tabout\tO\n15\tO\t15\tO\nseconds\tO\tseconds\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nminimise\tO\tminimise\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nquick\tO\tquick\tO\ndevelop/test\tO\tdevelop/test\tO\ncycle\tO\tcycle\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nAlso\tO\tAlso\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nlocally\tO\tlocally\tO\nbuilt\tO\tbuilt\tO\ngem B-File_Type gem O\n's\tO\t's\tO\nversion\tO\tversion\tO\nnumber\tO\tnumber\tO\ncould\tO\tcould\tO\ncontradict\tO\tcontradict\tO\nwith\tO\twith\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\npushed\tO\tpushed\tO\nto\tO\tto\tO\nRubygems B-Website Rubygems O\n,\tO\t,\tO\nleading\tO\tleading\tO\nto\tO\tto\tO\nconfusion\tO\tconfusion\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nAny\tO\tAny\tO\nbest\tO\tbest\tO\npractice\tO\tpractice\tO\nguides\tO\tguides\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nsubject\tO\tsubject\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12253248\tO\t12253248\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12253248/\tO\thttps://stackoverflow.com/questions/12253248/\tO\n\t\n\t\nbundler B-Application bundler O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\ngems B-File_Type gems O\nfrom\tO\tfrom\tO\nrubygems B-Website rubygems O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\npoint\tO\tpoint\tO\nit\tO\tit\tO\nat\tO\tat\tO\na\tO\ta\tO\ngit B-Application git O\nrepository\tO\trepository\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1591 I-Code_Block A_1591 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\n,\tO\t,\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nconveniently\tO\tconveniently\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1592 I-Code_Block A_1592 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\noption\tO\toption\tO\npoints\tO\tpoints\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfolder\tO\tfolder\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ngem B-File_Type gem O\n's\tO\t's\tO\nsource\tO\tsource\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39610091\tO\t39610091\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39610091/\tO\thttps://stackoverflow.com/questions/39610091/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nfiles\tO\tfiles\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\n\t\nheader.tpl B-File_Name header.tpl O\nand\tO\tand\tO\nproduct.tpl B-File_Name product.tpl O\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nor\tO\tor\tO\nmodel\tO\tmodel\tO\nfiles\tO\tfiles\tO\n\t\nFor\tO\tFor\tO\nSEO\tO\tSEO\tO\npurposes\tO\tpurposes\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmodifiy\tO\tmodifiy\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmeta\tO\tmeta\tO\ndata\tO\tdata\tO\nwhile\tO\twhile\tO\non\tO\ton\tO\na\tO\ta\tO\nproduct\tO\tproduct\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4996 I-Code_Block Q_4996 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCurrently\tO\tCurrently\tO\n$description B-Variable $description B-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nany\tO\tany\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nproduct.tpl B-File_Name product.tpl B-Code_Block\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n<?php B-Code_Block <?php B-Code_Block\necho I-Code_Block echo I-Code_Block\n$heading_title I-Code_Block $heading_title I-Code_Block\n?> I-Code_Block ?> I-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\nessentially\tO\tessentially\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nheader\tO\theader\tO\nmeta\tO\tmeta\tB-Code_Block\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\neven\tO\teven\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nwithout\tO\twithout\tO\naccessing\tO\taccessing\tO\nthe\tO\tthe\tO\nmodel/controller\tO\tmodel/controller\tO\nor\tO\tor\tO\nam\tO\tam\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwasting\tO\twasting\tO\nmy\tO\tmy\tO\ntime\tO\ttime\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39610091\tO\t39610091\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39610091/\tO\thttps://stackoverflow.com/questions/39610091/\tO\n\t\n\t\nAs\tO\tAs\tO\nnoted\tO\tnoted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\n:\tO\t:\tO\nOnce\tO\tOnce\tO\nsomething\tO\tsomething\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\n(\tO\t(\tO\nor\tO\tor\tO\nany\tO\tany\tO\nother\tO\tother\tO\noutput\tO\toutput\tO\n)\tO\t)\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nimpossible\tO\timpossible\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nserver-side B-Application server-side O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nable\tO\table\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nheader\tO\theader\tO\nwith\tO\twith\tO\npreg_replace() B-Function preg_replace() B-Code_Block\netc\tO\tetc\tO\n,\tO\t,\tO\nis\tO\tis\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nbefore\tO\tbefore\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\nheader\tO\theader\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthat\tO\tthat\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5718 I-Code_Block A_5718 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\nmove\tO\tmove\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprocessing\tO\tprocessing\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nto\tO\tto\tO\noutput\tO\toutput\tO\nanything\tO\tanything\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\n,\tO\t,\tO\nwhich\tO\twhich\tO\ncompletely\tO\tcompletely\tO\neliminates\tO\teliminates\tO\nthe\tO\tthe\tO\nparadox\tO\tparadox\tO\nof\tO\tof\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nsomething\tO\tsomething\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nalready\tO\talready\tO\nsent\tO\tsent\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nshould\tO\tshould\tO\nleave\tO\tleave\tO\nyou\tO\tyou\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nlooking\tO\tlooking\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5719 I-Code_Block A_5719 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nadded\tO\tadded\tO\nbenefit\tO\tbenefit\tO\nof\tO\tof\tO\nmaking\tO\tmaking\tO\nyour\tO\tyour\tO\nPHP B-Language PHP O\ncode\tO\tcode\tO\nmuch\tO\tmuch\tO\nsimpler\tO\tsimpler\tO\nto\tO\tto\tO\nread\tO\tread\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nmaintain\tO\tmaintain\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlong\tO\tlong\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nsmall\tO\tsmall\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\na\tO\ta\tO\nproper\tO\tproper\tO\nseperation\tO\tseperation\tO\nof\tO\tof\tO\nconcerns\tO\tconcerns\tO\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39610091\tO\t39610091\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39610091/\tO\thttps://stackoverflow.com/questions/39610091/\tO\n\t\n\t\nThe\tO\tThe\tO\nnot\tO\tnot\tO\nso\tO\tso\tO\npretty\tO\tpretty\tO\nbut\tO\tbut\tO\nfunctional\tO\tfunctional\tO\nsolution\tO\tsolution\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5717 I-Code_Block A_5717 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9984224\tO\t9984224\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9984224/\tO\thttps://stackoverflow.com/questions/9984224/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\na\tO\ta\tO\n.html.erb B-File_Type .html.erb O\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_872 I-Code_Block Q_872 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\ncorrectly\tO\tcorrectly\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\n@consumer B-Variable @consumer O\n.name I-Variable .name O\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nWhere\tO\tWhere\tO\nfacebook_consumer.js B-File_Name facebook_consumer.js O\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_873 I-Code_Block Q_873 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\ndump\tO\tdump\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\nliked\tO\tliked\tO\n<%= B-Code_Block <%= B-Code_Block\n@consumer.name I-Code_Block @consumer.name I-Code_Block\n%> I-Code_Block %> I-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nsaving\tO\tsaving\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nas\tO\tas\tO\njs.erb B-File_Name js.erb O\n,\tO\t,\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\n@consumer B-Variable @consumer O\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nthoughts\tO\tthoughts\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\napproach\tO\tapproach\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9984224\tO\t9984224\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9984224/\tO\thttps://stackoverflow.com/questions/9984224/\tO\n\t\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ninline\tO\tinline\tO\nRuby B-Language Ruby O\ncode\tO\tcode\tO\ninto\tO\tinto\tO\n.js B-File_Type .js O\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nRuby B-Language Ruby O\ncode\tO\tcode\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\n.js.erb B-File_Type .js.erb O\nfile\tO\tfile\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrender\tO\trender\tO\na\tO\ta\tO\npartial\tO\tpartial\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1269 I-Code_Block A_1269 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9984224\tO\t9984224\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9984224/\tO\thttps://stackoverflow.com/questions/9984224/\tO\n\t\n\t\nYour\tO\tYour\tO\nbest\tO\tbest\tO\nbet\tO\tbet\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\napp-wide\tO\tapp-wide\tO\nJS B-Language JS O\nobject\tO\tobject\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nvalues\tO\tvalues\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nelements\tO\telements\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\navailable\tO\tavailable\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nlinked\tO\tlinked\tO\nscripts\tO\tscripts\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1268 I-Code_Block A_1268 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6101805\tO\t6101805\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6101805/\tO\thttps://stackoverflow.com/questions/6101805/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nmulti\tO\tmulti\tO\nthreaded\tO\tthreaded\tO\nscenario\tO\tscenario\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nhandles\tO\thandles\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nUI\tO\tUI\tO\nevents\tO\tevents\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\nup\tO\tup\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nbackground\tO\tbackground\tO\noperations\tO\toperations\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n\"\tO\t\"\tO\nbackground\tO\tbackground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\nloads\tO\tloads\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nfiles\tO\tfiles\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndata-table\tO\tdata-table\tO\nof\tO\tof\tO\na\tO\ta\tO\nstrongly-typed\tO\tstrongly-typed\tO\ndataset\tO\tdataset\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nDataGridView B-Class DataGridView B-Code_Block\nis\tO\tis\tO\nbound\tO\tbound\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nDataTable B-Class DataTable B-Code_Block\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nready\tO\tready\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nbackground\tO\tbackground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\ninvokes\tO\tinvokes\tO\nthe\tO\tthe\tO\nrefresh() B-Function refresh() B-Code_Block\nfunction\tO\tfunction\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nDataGridView B-Class DataGridView B-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nlines\tO\tlines\tO\nthen\tO\tthen\tO\nwhat\tO\twhat\tO\nfits\tO\tfits\tO\non\tO\ton\tO\none\tO\tone\tO\nscreen B-Device screen O\nand\tO\tand\tO\nthe\tO\tthe\tO\nvertical B-User_Interface_Element vertical O\nscrollbar I-User_Interface_Element scrollbar O\nis\tO\tis\tO\nto\tO\tto\tO\nappear\tO\tappear\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\ngrid B-User_Interface_Element grid O\ncrashes\tO\tcrashes\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnew\tO\tnew\tO\ndatalines B-User_Interface_Element datalines O\nare\tO\tare\tO\nalways\tO\talways\tO\ndisplayed\tO\tdisplayed\tO\n.\tO\t.\tO\n\t\nError\tO\tError\tO\nonly\tO\tonly\tO\noccurs\tO\toccurs\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nenough\tO\tenough\tO\nlines\tO\tlines\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nscrollbar B-User_Interface_Element scrollbar O\n(\tO\t(\tO\nsee\tO\tsee\tO\nimage B-User_Interface_Element image O\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\n.NET B-Library .NET O\n3.5 B-Version 3.5 O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nWindows B-Operating_System Windows O\nXP B-Version XP O\nit\tO\tit\tO\ncrashes\tO\tcrashes\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nWin B-Operating_System Win O\n7 B-Version 7 O\n(\tO\t(\tO\n64 B-Version 64 O\nbit I-Version bit O\n)\tO\t)\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\ngrid B-User_Interface_Element grid O\nbecomes\tO\tbecomes\tO\nunresponsive\tO\tunresponsive\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonce\tO\tonce\tO\nI\tO\tI\tO\nresize\tO\tresize\tO\nthe\tO\tthe\tO\nwindow B-User_Interface_Element window O\nthe\tO\tthe\tO\nscrollbar B-User_Interface_Element scrollbar O\nappears\tO\tappears\tO\nand\tO\tand\tO\nall\tO\tall\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrelevant\tO\trelevant\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nare\tO\tare\tO\nattached\tO\tattached\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nGrid\tO\tGrid\tO\nrefresh B-Function refresh O\noperation\tO\toperation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n's\tO\t's\tO\n.cs B-File_Type .cs O\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_436 I-Code_Block Q_436 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nupdate\tO\tupdate\tO\npart\tO\tpart\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nbackground\tO\tbackground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_437 I-Code_Block Q_437 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nobjects\tO\tobjects\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nbackground\tO\tbackground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndirect\tO\tdirect\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nDataSet B-Class DataSet B-Code_Block\n(\tO\t(\tO\nUiDataSource B-Class UiDataSource B-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nDataTable B-Class DataTable B-Code_Block\n(\tO\t(\tO\nCurrentSamples B-Class CurrentSamples B-Code_Block\n)\tO\t)\tO\nis\tO\tis\tO\nupdated\tO\tupdated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmanner\tO\tmanner\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_438 I-Code_Block Q_438 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDataGridView B-Class DataGridView B-Code_Block\noptions\tO\toptions\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_439 I-Code_Block Q_439 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nmistake\tO\tmistake\tO\nsomewhere\tO\tsomewhere\tO\nplease\tO\tplease\tO\npoint\tO\tpoint\tO\nit\tO\tit\tO\nout\tO\tout\tO\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\n@ChrisF B-User_Name @ChrisF O\n:\tO\t:\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nremoving\tO\tremoving\tO\nthe\tO\tthe\tO\nrefresh() B-Function refresh() B-Code_Block\nstatement\tO\tstatement\tO\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwhat\tO\twhat\tO\nu\tO\tu\tO\nsuggested\tO\tsuggested\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\ndifference\tO\tdifference\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndatabinding\tO\tdatabinding\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_440 I-Code_Block Q_440 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ndataTable B-Class dataTable B-Code_Block\nin\tO\tin\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nway\tO\tway\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ndata\tO\tdata\tO\nlines\tO\tlines\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nappear\tO\tappear\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\nresize\tO\tresize\tO\nthe\tO\tthe\tO\nwindow B-User_Interface_Element window O\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nraises\tO\traises\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nproperly\tO\tproperly\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ndataTable B-Class dataTable B-Code_Block\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nthread\tO\tthread\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6101805\tO\t6101805\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6101805/\tO\thttps://stackoverflow.com/questions/6101805/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nguessing\tO\tguessing\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nhow\tO\thow\tO\nWinForms B-Library WinForms O\nworks\tO\tworks\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nSTA\tO\tSTA\tO\nmodel\tO\tmodel\tO\nfor\tO\tfor\tO\nthreading\tO\tthreading\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nDataTable B-Class DataTable O\nyou\tO\tyou\tO\n're\tO\t're\tO\naccessing\tO\taccessing\tO\nis\tO\tis\tO\nlocated\tO\tlocated\tO\nsomewhere\tO\tsomewhere\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nwe\tO\twe\tO\nsee\tO\tsee\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nDataTable B-Class DataTable O\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nthread\tO\tthread\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\nneeded\tO\tneeded\tO\nfor\tO\tfor\tO\nbinding\tO\tbinding\tO\n?\tO\t?\tO\n\t\nLikely\tO\tLikely\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nyou\tO\tyou\tO\nupdate\tO\tupdate\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n's\tO\t's\tO\nthread\tO\tthread\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\naware\tO\taware\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nbeing\tO\tbeing\tO\nmade\tO\tmade\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nsimply\tO\tsimply\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ninvoke\tO\tinvoke\tO\nany\tO\tany\tO\ncalls\tO\tcalls\tO\nto\tO\tto\tO\nDataTable B-Class DataTable O\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nreceives\tO\treceives\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\nproperly\tO\tproperly\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_683 I-Code_Block A_683 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nbackwards\tO\tbackwards\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nkeep\tO\tkeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nin\tO\tin\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\nenterprise\tO\tenterprise\tO\n\"\tO\t\"\tO\nsituation\tO\tsituation\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nprobably\tO\tprobably\tO\nbe\tO\tbe\tO\naccessing\tO\taccessing\tO\nthat\tO\tthat\tO\ndataset\tO\tdataset\tO\nby\tO\tby\tO\nmultiple\tO\tmultiple\tO\nadapters\tO\tadapters\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nupdate\tO\tupdate\tO\nthread\tO\tthread\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nadapter\tO\tadapter\tO\nto\tO\tto\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nGUI\tO\tGUI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nits\tO\tits\tO\nown\tO\town\tO\nalso\tO\talso\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nBindingList B-Class BindingList B-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nhas\tO\thas\tO\nthread\tO\tthread\tO\ncompatibility\tO\tcompatibility\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nsituation\tO\tsituation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nquote\tO\tquote\tO\nme\tO\tme\tO\non\tO\ton\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nextra\tO\textra\tO\ncredit\tO\tcredit\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\nexplain\tO\texplain\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nbefore\tO\tbefore\tO\nwith\tO\twith\tO\ncrashing\tO\tcrashing\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\naccessing\tO\taccessing\tO\nthe\tO\tthe\tO\nDataGridView B-Class DataGridView B-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhad\tO\thad\tO\ncross-thread\tO\tcross-thread\tO\noperations\tO\toperations\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6101805\tO\t6101805\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6101805/\tO\thttps://stackoverflow.com/questions/6101805/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\ncall\tO\tcall\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_680 I-Code_Block A_680 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThese\tO\tThese\tO\nwill\tO\twill\tO\ntake\tO\ttake\tO\nprogressively\tO\tprogressively\tO\nlonger\tO\tlonger\tO\nand\tO\tand\tO\nlonger\tO\tlonger\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nset\tO\tset\tO\ngets\tO\tgets\tO\nlarger\tO\tlarger\tO\nand\tO\tand\tO\nlarger\tO\tlarger\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nwritten\tO\twritten\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\na\tO\ta\tO\nDataGridView B-Class DataGridView B-Code_Block\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nmp3 B-File_Type mp3 O\nfile\tO\tfile\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nDataSource B-Class DataSource B-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\nDataGridView B-Class DataGridView B-Code_Block\nto\tO\tto\tO\na\tO\ta\tO\nDataTable B-Class DataTable B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_681 I-Code_Block A_681 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nthen\tO\tthen\tO\nsimply\tO\tsimply\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nDataTable B-Class DataTable B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_682 I-Code_Block A_682 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nautomatically\tO\tautomatically\tO\nupdates\tO\tupdates\tO\nthe\tO\tthe\tO\nDataGridView B-Class DataGridView B-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35389568\tO\t35389568\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35389568/\tO\thttps://stackoverflow.com/questions/35389568/\tO\n\t\n\t\nfind\tO\tfind\tO\n3rd\tO\t3rd\tO\ntd B-HTML_XML_Tag td O\nin\tO\tin\tO\ntr B-HTML_XML_Tag tr O\nwhere\tO\twhere\tO\nclass\tO\tclass\tO\ncontains\tO\tcontains\tO\nzebra\tO\tzebra\tO\n\t\nThe\tO\tThe\tO\nphoto\tO\tphoto\tO\nshows\tO\tshows\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n4\tO\t4\tO\nanimals\tO\tanimals\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nassociated\tO\tassociated\tO\nquantity\tO\tquantity\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nthe\tO\tthe\tO\n3rd\tO\t3rd\tO\ntd B-HTML_XML_Tag td O\nin\tO\tin\tO\nthe\tO\tthe\tO\ntr B-HTML_XML_Tag tr O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nhtml B-Language html O\nbelow\tO\tbelow\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nzebra B-Value zebra O\nhas\tO\thas\tO\nquantity\tO\tquantity\tO\n1 B-Value 1 O\n,\tO\t,\tO\nand\tO\tand\tO\nlion B-Value lion O\nhas\tO\thas\tO\nquantity\tO\tquantity\tO\n1 B-Value 1 O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nunsuccessful\tO\tunsuccessful\tO\nfinding\tO\tfinding\tO\nby\tO\tby\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhy\tO\twhy\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nspace\tO\tspace\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\n?\tO\t?\tO\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\nxpath B-Language xpath O\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ntr B-HTML_XML_Tag tr O\ntags\tO\ttags\tO\nchange\tO\tchange\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nuser\tO\tuser\tO\ninputs\tO\tinputs\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nprior\tO\tprior\tO\npage B-User_Interface_Element page O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nby\tO\tby\tO\nxpath B-Language xpath O\nwith\tO\twith\tO\ncontains\tO\tcontains\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nno\tO\tno\tO\navail\tO\tavail\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\nnot\tO\tnot\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35389568\tO\t35389568\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35389568/\tO\thttps://stackoverflow.com/questions/35389568/\tO\n\t\n\t\nYes\tO\tYes\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nuse\tO\tuse\tO\nclassName B-Function className O\nlocator\tO\tlocator\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nspace\tO\tspace\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nName\tO\tName\tO\ninstead\tO\tinstead\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ncssselector B-Function cssselector O\nor\tO\tor\tO\nxpath B-Function xpath O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5051 I-Code_Block A_5051 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35389568\tO\t35389568\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35389568/\tO\thttps://stackoverflow.com/questions/35389568/\tO\n\t\n\t\nline_item B-Class line_item B-Code_Block\nZebra I-Class Zebra I-Code_Block\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nclasses\tO\tclasses\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nWebElement B-Class WebElement B-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nby\tO\tby\tO\nclassName B-Function className B-Code_Block\nonly\tO\tonly\tO\nwith\tO\twith\tO\none\tO\tone\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5052 I-Code_Block A_5052 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nanimals\tO\tanimals\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nline_item B-Class line_item B-Code_Block\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nanimals\tO\tanimals\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5053 I-Code_Block A_5053 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nanimals B-Variable animals B-Code_Block\nnow\tO\tnow\tO\nholds\tO\tholds\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfour\tO\tfour\tO\nelements\tO\telements\tO\nwith\tO\twith\tO\nclass\tO\tclass\tO\nline_item B-Class line_item B-Code_Block\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nthird\tO\tthird\tO\n<td> B-HTML_XML_Tag <td> B-Code_Block\nin\tO\tin\tO\neach\tO\teach\tO\none\tO\tone\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nWebElements B-Class WebElements B-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5054 I-Code_Block A_5054 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5388915\tO\t5388915\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5388915/\tO\thttps://stackoverflow.com/questions/5388915/\tO\n\t\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nservice\tO\tservice\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nin\tO\tin\tO\ntwo\tO\ttwo\tO\nmodes\tO\tmodes\tO\n,\tO\t,\tO\nstarted\tO\tstarted\tO\nand\tO\tand\tO\nbound\tO\tbound\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nquite\tO\tquite\tO\nunderstand\tO\tunderstand\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndeveloper\tO\tdeveloper\tO\ndocs\tO\tdocs\tO\nor\tO\tor\tO\nother\tO\tother\tO\nquestions\tO\tquestions\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\n,\tO\t,\tO\nis\tO\tis\tO\nwhether\tO\twhether\tO\na\tO\ta\tO\nservice\tO\tservice\tO\nrunning\tO\trunning\tO\nas\tO\tas\tO\nboth\tO\tboth\tO\nstarted\tO\tstarted\tO\nand\tO\tand\tO\nbound\tO\tbound\tO\nwill\tO\twill\tO\nexit\tO\texit\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ncomponent\tO\tcomponent\tO\nunbinds\tO\tunbinds\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5388915\tO\t5388915\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5388915/\tO\thttps://stackoverflow.com/questions/5388915/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIf\tO\tIf\tO\nsomething\tO\tsomething\tO\ncalled\tO\tcalled\tO\nstartService() B-Function startService() B-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nService B-Class Service B-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nremain\tO\tremain\tO\nrunning\tO\trunning\tO\n,\tO\t,\tO\nregardless\tO\tregardless\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nbindService() B-Function bindService() B-Code_Block\nand\tO\tand\tO\nunbindService() B-Function unbindService() B-Code_Block\ncalls\tO\tcalls\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\ngone\tO\tgone\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nEventually\tO\tEventually\tO\n,\tO\t,\tO\nAndroid B-Operating_System Android O\nwill\tO\twill\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nwill\tO\twill\tO\nkill\tO\tkill\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nneither\tO\tneither\tO\nwill\tO\twill\tO\nhappen\tO\thappen\tO\nimmediately\tO\timmediately\tO\nupon\tO\tupon\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nunbindService() B-Function unbindService() B-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36970003\tO\t36970003\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36970003/\tO\thttps://stackoverflow.com/questions/36970003/\tO\n\t\n\t\nExample\tO\tExample\tO\nbuild.gradle B-File_Name build.gradle B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4571 I-Code_Block Q_4571 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nplugin\tO\tplugin\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4572 I-Code_Block Q_4572 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\ncustom\tO\tcustom\tO\ntask\tO\ttask\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4573 I-Code_Block Q_4573 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\napplicationId B-Variable applicationId B-Code_Block\nbefore\tO\tbefore\tO\nbuild\tO\tbuild\tB-Code_Block\ntask\tO\ttask\tI-Code_Block\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nvia\tO\tvia\tO\nproperty\tO\tproperty\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmanage\tO\tmanage\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36970003\tO\t36970003\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36970003/\tO\thttps://stackoverflow.com/questions/36970003/\tO\n\t\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nbecause\tO\tbecause\tO\nconfig B-Variable config O\nis\tO\tis\tO\nresolved\tO\tresolved\tO\nduring\tO\tduring\tO\nconfiguration\tO\tconfiguration\tO\nphase\tO\tphase\tO\nand\tO\tand\tO\ntask\tO\ttask\tO\nis\tO\tis\tO\nexecuted\tO\texecuted\tO\nduring\tO\tduring\tO\nexecution\tO\texecution\tO\nphase\tO\tphase\tO\n(\tO\t(\tO\nafter\tO\tafter\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nplugin\tO\tplugin\tO\napply B-Function apply O\nmethod\tO\tmethod\tO\nas\tO\tas\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\nwork\tO\twork\tO\nin\tO\tin\tO\ntask\tO\ttask\tO\nconstructor\tO\tconstructor\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\n100%\tO\t100%\tO\nsure\tO\tsure\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26466407\tO\t26466407\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26466407/\tO\thttps://stackoverflow.com/questions/26466407/\tO\n\t\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ntask\tO\ttask\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nre-order\tO\tre-order\tO\ndivs B-HTML_XML_Tag divs O\nfor\tO\tfor\tO\ntablets\tO\ttablets\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\n100% B-Value 100% O\nwidth B-HTML_XML_Tag width O\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nfiddle B-Application fiddle O\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nmean\tO\tmean\tO\n.\tO\t.\tO\n\t\nOriginal\tO\tOriginal\tO\nreference\tO\treference\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3022 I-Code_Block Q_3022 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhttp://getbootstrap.com/css/#grid-column-ordering\tO\thttp://getbootstrap.com/css/#grid-column-ordering\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26466407\tO\t26466407\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26466407/\tO\thttps://stackoverflow.com/questions/26466407/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nhack\tO\thack\tO\naround\tO\taround\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nmobile B-Device mobile O\nfirst\tO\tfirst\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6254 I-Code_Block A_6254 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26466407\tO\t26466407\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26466407/\tO\thttps://stackoverflow.com/questions/26466407/\tO\n\t\n\t\nIts\tO\tIts\tO\ndoable\tO\tdoable\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nmobile B-Device mobile O\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nPlace\tO\tPlace\tO\nthe\tO\tthe\tO\ndivs B-HTML_XML_Tag divs O\nin\tO\tin\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nappear\tO\tappear\tO\nin\tO\tin\tO\nsmall\tO\tsmall\tO\nviewports\tO\tviewports\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nreorder\tO\treorder\tO\nthem\tO\tthem\tO\nfor\tO\tfor\tO\nlarger\tO\tlarger\tO\nviewports\tO\tviewports\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3650 I-Code_Block A_3650 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43875692\tO\t43875692\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43875692/\tO\thttps://stackoverflow.com/questions/43875692/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nscript\tO\tscript\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\nLinux B-Operating_System Linux O\nUbuntu I-Operating_System Ubuntu O\n\t\nWhen\tO\tWhen\tO\nit\tO\tit\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nWindows B-Operating_System Windows O\nI\tO\tI\tO\nfell\tO\tfell\tO\nshort\tO\tshort\tO\n.\tO\t.\tO\n\t\nmy\tO\tmy\tO\nscript\tO\tscript\tO\nuses\tO\tuses\tO\nimport B-Code_Block import B-Code_Block\nargparse I-Code_Block argparse I-Code_Block\nso\tO\tso\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npass\tO\tpass\tO\narguments\tO\targuments\tO\nvia\tO\tvia\tO\ncmd B-Application cmd O\nbut\tO\tbut\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ngetting\tO\tgetting\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nwhile\tO\twhile\tO\ntyping\tO\ttyping\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nanyone\tO\tanyone\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nanswers\tO\tanswers\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nFor\tO\tFor\tO\nme\tO\tme\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nhad\tO\thad\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\ntoying\tO\ttoying\tO\nwith\tO\twith\tO\narchives\tO\tarchives\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5666 I-Code_Block Q_5666 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\naction\tO\taction\tO\nwill\tO\twill\tO\ncompress\tO\tcompress\tO\ntest1.txt B-File_Name test1.txt O\nin\tO\tin\tO\nArchive.zip B-File_Name Archive.zip O\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nstupid\tO\tstupid\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbig\tO\tbig\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\ncommand B-Application command O\nline I-Application line O\nin\tO\tin\tO\nWindows B-Operating_System Windows O\nand\tO\tand\tO\nLinux B-Operating_System Linux O\nwhen\tO\twhen\tO\nhandling\tO\thandling\tO\npython B-Language python O\n.\tO\t.\tO\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhere\tO\twhere\tO\nyour\tO\tyour\tO\narguments\tO\targuments\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n*\tO\t*\tO\n\t\nI\tO\tI\tO\nChanged\tO\tChanged\tO\nthe\tO\tthe\tO\nplaces\tO\tplaces\tO\nbetween\tO\tbetween\tO\n-c B-Code_Block -c O\nand\tO\tand\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narchive\tO\tarchive\tO\nby\tO\tby\tO\nmistake\tO\tmistake\tO\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ntyping\tO\ttyping\tO\npython3 B-Language python3 B-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\npython B-Language python B-Code_Block\nfor\tO\tfor\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\nidiot\tO\tidiot\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nbiggest\tO\tbiggest\tO\ndifference\tO\tdifference\tO\nis\tO\tis\tO\npython3 B-Language python3 B-Code_Block\nfor\tO\tfor\tO\nLinux B-Operating_System Linux O\nand\tO\tand\tO\npython B-Language python B-Code_Block\nfor\tO\tfor\tO\nWindows B-Operating_System Windows O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\ndifferent\tO\tdifferent\tO\nbetween\tO\tbetween\tO\nLinux B-Operating_System Linux O\nand\tO\tand\tO\nWindows B-Operating_System Windows O\nwhen\tO\twhen\tO\nhandling\tO\thandling\tO\npython B-Language python O\nscripts\tO\tscripts\tO\n?\tO\t?\tO\n\t\nturned\tO\tturned\tO\nout\tO\tout\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://docs.python.org/3.3/using/windows.html\tO\thttps://docs.python.org/3.3/using/windows.html\tO\n\t\nand\tO\tand\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://docs.python.org/3.3/using/unix.html\tO\thttps://docs.python.org/3.3/using/unix.html\tO\n\t\nAnyone\tO\tAnyone\tO\ninterested\tO\tinterested\tO\ncheck\tO\tcheck\tO\nthose\tO\tthose\tO\nlinks\tO\tlinks\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nidea\tO\tidea\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\nno\tO\tno\tO\nneed\tO\tneed\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nafter\tO\tafter\tO\nall\tO\tall\tO\n:(\tO\t:(\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25059453\tO\t25059453\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25059453/\tO\thttps://stackoverflow.com/questions/25059453/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\ndisplaying\tO\tdisplaying\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nusing\tO\tusing\tO\nbeans B-Class beans O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\non\tO\ton\tO\na\tO\ta\tO\nlogin\tO\tlogin\tO\npage\tO\tpage\tO\n:\tO\t:\tO\n\t\nget\tO\tget\tO\nemail\tO\temail\tO\n,\tO\t,\tO\npassword\tO\tpassword\tO\nand\tO\tand\tO\nrole\tO\trole\tO\nof\tO\tof\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nbeans B-Class beans O\ncheck\tO\tcheck\tO\nit\tO\tit\tO\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nfor\tO\tfor\tO\nvalidation\tO\tvalidation\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nany\tO\tany\tO\nerrors\tO\terrors\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nbean B-Class bean O\nand\tO\tand\tO\ndisplayed\tO\tdisplayed\tO\nto\tO\tto\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\ntesting\tO\ttesting\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nenters\tO\tenters\tO\nemail\tO\temail\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nis\tO\tis\tO\n:\tO\t:\tO\neverytime\tO\teverytime\tO\ni\tO\ti\tO\nturn\tO\tturn\tO\noff\tO\toff\tO\ntomcat B-Application tomcat O\nand\tO\tand\tO\nrerun\tO\trerun\tO\nit\tO\tit\tO\n,\tO\t,\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nenter\tO\tenter\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nfield\tO\tfield\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\ndisplayed\tO\tdisplayed\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\ni\tO\ti\tO\nonce\tO\tonce\tO\nentered\tO\tentered\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nwill\tO\twill\tO\nnever\tO\tnever\tO\nshow\tO\tshow\tO\nagain\tO\tagain\tO\n(\tO\t(\tO\nofcourse\tO\tofcourse\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nenter\tO\tenter\tO\nemail\tO\temail\tO\nin\tO\tin\tO\nemail\tO\temail\tO\nfield\tO\tfield\tO\n)\tO\t)\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\ndoLogin.jsp B-File_Name doLogin.jsp O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2835 I-Code_Block Q_2835 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nformError.java B-File_Name formError.java O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2836 I-Code_Block Q_2836 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nvalidate B-Function validate O\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2837 I-Code_Block Q_2837 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nBeans B-Class Beans O\nand\tO\tand\tO\ncurrently\tO\tcurrently\tO\nlearning\tO\tlearning\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nnames\tO\tnames\tO\nlike\tO\tlike\tO\naddGenError B-Function addGenError B-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nsetGenError B-Function setGenError B-Code_Block\nand\tO\tand\tO\nit\tO\tit\tO\nthe\tO\tthe\tO\nbehavior\tO\tbehavior\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25059453\tO\t25059453\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25059453/\tO\thttps://stackoverflow.com/questions/25059453/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n:\tO\t:\tO\n\t\nwhile\tO\twhile\tO\nsending\tO\tsending\tO\nform\tO\tform\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nbean B-Class bean O\nid\tO\tid\tO\n:\tO\t:\tO\nloginFormData B-Variable loginFormData B-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\nsession\tO\tsession\tO\nscope\tO\tscope\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nchanging\tO\tchanging\tO\nit\tO\tit\tO\nto\tO\tto\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\ni\tO\ti\tO\ngot\tO\tgot\tO\nmy\tO\tmy\tO\ndesired\tO\tdesired\tO\nfunctionality\tO\tfunctionality\tO\n.\tO\t.\tO\n\t\nChanged\tO\tChanged\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3435 I-Code_Block A_3435 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47690491\tO\t47690491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47690491/\tO\thttps://stackoverflow.com/questions/47690491/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\na\tO\ta\tO\nfolder\tO\tfolder\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nif\tO\tif\tO\nit\tO\tit\tO\nexists\tO\texists\tO\ndelete\tO\tdelete\tO\nit\tO\tit\tO\nan\tO\tan\tO\nreplace\tO\treplace\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nupdated\tO\tupdated\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\nor\tO\tor\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndelete\tO\tdelete\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\npath\tO\tpath\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nindividuals\tO\tindividuals\tO\npersonal\tO\tpersonal\tO\ndrive\tO\tdrive\tO\n\t\nMy\tO\tMy\tO\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6321 I-Code_Block Q_6321 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nHappens\tO\tHappens\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nexecutes\tO\texecutes\tO\nand\tO\tand\tO\ndeletes\tO\tdeletes\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\nfile\tO\tfile\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nappears\tO\tappears\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nfailing\tO\tfailing\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncopy\tO\tcopy\tO\nand\tO\tand\tO\npaste\tO\tpaste\tO\npart\tO\tpart\tO\n.\tO\t.\tO\n\t\nError\tO\tError\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\ndebug\tO\tdebug\tO\nthat\tO\tthat\tO\ncomes\tO\tcomes\tO\nup\tO\tup\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47690491\tO\t47690491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47690491/\tO\thttps://stackoverflow.com/questions/47690491/\tO\n\t\n\t\nBare\tO\tBare\tO\nbones\tO\tbones\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6963 I-Code_Block A_6963 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47690491\tO\t47690491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47690491/\tO\thttps://stackoverflow.com/questions/47690491/\tO\n\t\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nsaid\tO\tsaid\tO\nwhich\tO\twhich\tO\nline\tO\tline\tO\nis\tO\tis\tO\nthrowing\tO\tthrowing\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ninstantiated\tO\tinstantiated\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nFileSystemObject B-Class FileSystemObject O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6961 I-Code_Block A_6961 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfso B-Variable fso O\nreference\tO\treference\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nyour\tO\tyour\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6962 I-Code_Block A_6962 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nmethod\tO\tmethod\tO\nabove\tO\tabove\tO\nused\tO\tused\tO\n\"\tO\t\"\tO\nLate\tO\tLate\tO\nbinding\tO\tbinding\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\ninterrogate\tO\tinterrogate\tO\nthe\tO\tthe\tO\nregistry\tO\tregistry\tO\nfor\tO\tfor\tO\nScripting.FileSystemObject B-Class Scripting.FileSystemObject B-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nearly\tO\tearly\tO\nbinding\tO\tbinding\tO\nand\tO\tand\tO\nreference\tO\treference\tO\nthe\tO\tthe\tO\nMicrosoft B-Library Microsoft O\nScripting I-Library Scripting O\nRuntime I-Library Runtime O\ndirectly\tO\tdirectly\tO\nand\tO\tand\tO\navoid\tO\tavoid\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nCreateObject B-Function CreateObject B-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ndetailed\tO\tdetailed\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nStack B-Website Stack O\nOverflow I-Website Overflow O\nanswer\tO\tanswer\tO\n:\tO\t:\tO\n\t\nhttps://stackoverflow.com/a/3236348/491557\tO\thttps://stackoverflow.com/a/3236348/491557\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36564057\tO\t36564057\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36564057/\tO\thttps://stackoverflow.com/questions/36564057/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\nactions\tO\tactions\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nUITableViewCell B-Class UITableViewCell O\noverlap\tO\toverlap\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell\tO\tcell\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nNational B-Website National O\nGeographic I-Website Geographic O\napp\tO\tapp\tO\n:\tO\t:\tO\n\t\ntable B-Data_Structure table O\nview\tO\tview\tO\n\t\ntable B-Data_Structure table O\nview\tO\tview\tO\nwhen\tO\twhen\tO\nswiped\tO\tswiped\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nlistener\tO\tlistener\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncontentView B-Class contentView O\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell\tO\tcell\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nthe\tO\tthe\tO\nframe\tO\tframe\tO\nand\tO\tand\tO\nkeep\tO\tkeep\tO\nit\tO\tit\tO\nconstant\tO\tconstant\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n(\tO\t(\tO\nalthough\tO\talthough\tO\nit\tO\tit\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nit\tO\tit\tO\nwould\tO\twould\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nkinda\tO\tkinda\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\niOS B-Operating_System iOS O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\nhas\tO\thas\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\nfor\tO\tfor\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\neffect\tO\teffect\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36564057\tO\t36564057\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36564057/\tO\thttps://stackoverflow.com/questions/36564057/\tO\n\t\n\t\nu\tO\tu\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ncustom\tO\tcustom\tO\ncell\tO\tcell\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ndelete\tO\tdelete\tO\nbutton B-User_Interface_Element button O\nand\tO\tand\tO\nswipe\tO\tswipe\tO\ngestures\tO\tgestures\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nlike\tO\tlike\tO\nbutton B-User_Interface_Element button O\noverlap\tO\toverlap\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell\tO\tcell\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\nout\tO\tout\tO\nyourself\tO\tyourself\tO\n,\tO\t,\tO\nfirst\tO\tfirst\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nproject\tO\tproject\tO\nwith\tO\twith\tO\nsingle\tO\tsingle\tO\nview\tO\tview\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nand\tO\tand\tO\nproceed\tO\tproceed\tO\n\t\nsubclass\tO\tsubclass\tO\nthe\tO\tthe\tO\ntabview B-Variable tabview O\ncell\tO\tcell\tO\nwith\tO\twith\tO\nxib B-Code_Block xib O\noption\tO\toption\tO\nselected\tO\tselected\tO\nand\tO\tand\tO\nname\tO\tname\tO\nit\tO\tit\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nCustomCell B-Function CustomCell B-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nCustomCell.swift B-Class CustomCell.swift B-Code_Block\nclass\tO\tclass\tO\npast\tO\tpast\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5234 I-Code_Block A_5234 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\ntableview B-Variable tableview O\ncell\tO\tcell\tO\nheight B-Variable height O\nto\tO\tto\tO\nbe\tO\tbe\tO\nof\tO\tof\tO\n100pt B-Value 100pt O\nand\tO\tand\tO\nin\tO\tin\tO\nview\tO\tview\tO\ncontroller\tO\tcontroller\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\ntableview B-Variable tableview O\nin\tO\tin\tO\nstoryboard B-Application storyboard O\nwith\tO\twith\tO\ndatasource\tO\tdatasource\tO\nand\tO\tand\tO\ndelegate\tO\tdelegate\tO\nand\tO\tand\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nrequired\tO\trequired\tO\ndelegate\tO\tdelegate\tO\nand\tO\tand\tO\ndatasource\tO\tdatasource\tO\nmethods\tO\tmethods\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5235 I-Code_Block A_5235 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24856045\tO\t24856045\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24856045/\tO\thttps://stackoverflow.com/questions/24856045/\tO\n\t\n\t\nBear\tO\tBear\tO\nwith\tO\twith\tO\nme\tO\tme\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\ncoding\tO\tcoding\tO\nor\tO\tor\tO\nusing\tO\tusing\tO\nstackoverflow B-Website stackoverflow O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nsearching\tO\tsearching\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nGoogle B-Website Google O\ndocumentation\tO\tdocumentation\tO\nand\tO\tand\tO\nvarious\tO\tvarious\tO\nsearch B-Application search O\nengines I-Application engines O\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\nand\tO\tand\tO\nsomeone\tO\tsomeone\tO\ntold\tO\ttold\tO\nme\tO\tme\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nshared\tO\tshared\tO\nspreadsheet B-User_Interface_Element spreadsheet O\nin\tO\tin\tO\nGoogle B-Application Google O\ndriver I-Application driver O\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\nprevents\tO\tprevents\tO\nany\tO\tany\tO\nother\tO\tother\tO\nuser\tO\tuser\tO\nbut\tO\tbut\tO\nmyself\tO\tmyself\tO\nfrom\tO\tfrom\tO\nadding\tO\tadding\tO\n,\tO\t,\tO\ndeleting\tO\tdeleting\tO\nor\tO\tor\tO\nupdating\tO\tupdating\tO\na\tO\ta\tO\ncolumn B-User_Interface_Element column O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2800 I-Code_Block Q_2800 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nevent B-Class event O\ntype\tO\ttype\tO\nfor\tO\tfor\tO\nthose\tO\tthose\tO\nthree\tO\tthree\tO\ncases\tO\tcases\tO\n..\tO\t..\tO\n.\tO\t.\tO\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nevent B-Class event O\nfor\tO\tfor\tO\nadd\tO\tadd\tO\n,\tO\t,\tO\nupdate\tO\tupdate\tO\nor\tO\tor\tO\nmove\tO\tmove\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nfrom\tO\tfrom\tO\nactually\tO\tactually\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nSorry\tO\tSorry\tO\nagain\tO\tagain\tO\nfor\tO\tfor\tO\nbeing\tO\tbeing\tO\nso\tO\tso\tO\nlost\tO\tlost\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24856045\tO\t24856045\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24856045/\tO\thttps://stackoverflow.com/questions/24856045/\tO\n\t\n\t\nIn\tO\tIn\tO\na\tO\ta\tO\nshared\tO\tshared\tO\nspreadsheet B-User_Interface_Element spreadsheet O\nto\tO\tto\tO\nprevents\tO\tprevents\tO\nany\tO\tany\tO\nother\tO\tother\tO\nuser\tO\tuser\tO\nbut\tO\tbut\tO\nmyself\tO\tmyself\tO\nfrom\tO\tfrom\tO\nadding\tO\tadding\tO\n,\tO\t,\tO\ndeleting\tO\tdeleting\tO\nor\tO\tor\tO\nupdating\tO\tupdating\tO\na\tO\ta\tO\ncolumn B-User_Interface_Element column O\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nsay\tO\tsay\tO\nprevent\tO\tprevent\tO\nthem\tO\tthem\tO\nupdating\tO\tupdating\tO\na\tO\ta\tO\ncolumn B-User_Interface_Element column O\nthat\tO\tthat\tO\nimplies\tO\timplies\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nwrite\tO\twrite\tO\naccess\tO\taccess\tO\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nto\tO\tto\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\ncolumn B-User_Interface_Element column O\nor\tO\tor\tO\nto\tO\tto\tO\nany\tO\tany\tO\ncolumn B-User_Interface_Element column O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nprotection\tO\tprotection\tO\nto\tO\tto\tO\none\tO\tone\tO\nof\tO\tof\tO\nview\tO\tview\tO\nonly\tO\tonly\tO\n,\tO\t,\tO\ncomment\tO\tcomment\tO\nonly\tO\tonly\tO\nto\tO\tto\tO\n;\tO\t;\tO\n\t\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nspreadsheet B-User_Interface_Element spreadsheet O\n\t\nindividual\tO\tindividual\tO\nsheets B-User_Interface_Element sheets O\nor\tO\tor\tO\n\t\nareas\tO\tareas\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nsheet B-User_Interface_Element sheet O\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\ncolumn B-User_Interface_Element column O\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nReading\tO\tReading\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\n;\tO\t;\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3482 I-Code_Block A_3482 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nImplies\tO\tImplies\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nmodified\tO\tmodified\tO\nyour\tO\tyour\tO\nsheet B-User_Interface_Element sheet O\non\tO\ton\tO\na\tO\ta\tO\nrow B-User_Interface_Element row O\nbasis\tO\tbasis\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nprevent\tO\tprevent\tO\nthem\tO\tthem\tO\ninserting\tO\tinserting\tO\nor\tO\tor\tO\ndeleting\tO\tdeleting\tO\na\tO\ta\tO\nrow B-User_Interface_Element row O\n,\tO\t,\tO\n\t\ncreate\tO\tcreate\tO\na\tO\ta\tO\nblank\tO\tblank\tO\ncolumn B-User_Interface_Element column O\n\t\nprotect\tO\tprotect\tO\nthe\tO\tthe\tO\ncolumn B-User_Interface_Element column O\nfrom\tO\tfrom\tO\nediting\tO\tediting\tO\n\t\nhide\tO\thide\tO\nthe\tO\tthe\tO\ncolumn B-User_Interface_Element column O\n\t\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nor\tO\tor\tO\ndelete\tO\tdelete\tO\na\tO\ta\tO\nrow B-User_Interface_Element row O\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nspan\tO\tspan\tO\nthe\tO\tthe\tO\nhidden\tO\thidden\tO\nprotected\tO\tprotected\tO\ncolumn\tO\tcolumn\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\ntelling\tO\ttelling\tO\nthem\tO\tthem\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nonEdit(e) B-Class onEdit(e) O\nyou\tO\tyou\tO\nwill\tO\twill\tO\ndetect\tO\tdetect\tO\nwith\tO\twith\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nof\tO\tof\tO\na\tO\ta\tO\ncell B-User_Interface_Element cell O\nor\tO\tor\tO\ngroup\tO\tgroup\tO\nof\tO\tof\tO\ncells B-User_Interface_Element cells O\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nadding/deleting\tO\tadding/deleting\tO\nrows B-User_Interface_Element rows O\nwill\tO\twill\tO\nnot\tO\tnot\tO\ntrigger\tO\ttrigger\tO\nonEdit() B-Class onEdit() O\n,\tO\t,\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\ntrigger\tO\ttrigger\tO\nonChange() B-Class onChange() O\n.\tO\t.\tO\n\t\nWithin\tO\tWithin\tO\nthis\tO\tthis\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nspecific\tO\tspecific\tO\nway\tO\tway\tO\nto\tO\tto\tO\ntell\tO\ttell\tO\nwhether\tO\twhether\tO\na\tO\ta\tO\nrow\tO\trow\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ndeleted\tO\tdeleted\tO\nor\tO\tor\tO\ninserted\tO\tinserted\tO\n.\tO\t.\tO\n\t\nonEdit(e) B-User_Interface_Element onEdit(e) O\nwill\tO\twill\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\naffected\tO\taffected\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncross\tO\tcross\tO\ncheck\tO\tcheck\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nspreadsheets B-User_Interface_Element spreadsheets O\nparameters\tO\tparameters\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3483 I-Code_Block A_3483 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nclear\tO\tclear\tO\nto\tO\tto\tO\nme\tO\tme\tO\nform\tO\tform\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nand\tO\tand\tO\ncode\tO\tcode\tO\nwhat\tO\twhat\tO\nexactly\tO\texactly\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmisunderstood\tO\tmisunderstood\tO\nplease\tO\tplease\tO\nexplain\tO\texplain\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwill\tO\twill\tO\namend\tO\tamend\tO\nmy\tO\tmy\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAssuming\tO\tAssuming\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nof\tO\tof\tO\ninterest\tO\tinterest\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\ntoo\tO\ttoo\tO\nlate\tO\tlate\tO\na\tO\ta\tO\nreply\tO\treply\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6604073\tO\t6604073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6604073/\tO\thttps://stackoverflow.com/questions/6604073/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n:\tO\t:\tO\n\t\nhttp://d.pr/86DH+\tO\thttp://d.pr/86DH+\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndivide\tO\tdivide\tO\nall\tO\tall\tO\nnumbers\tO\tnumbers\tO\nin\tO\tin\tO\nprice\tO\tprice\tO\ncolumn B-Data_Structure column O\nwith\tO\twith\tO\n1.2 B-Value 1.2 O\nat\tO\tat\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6604073\tO\t6604073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6604073/\tO\thttps://stackoverflow.com/questions/6604073/\tO\n\t\n\t\nUse\tO\tUse\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_750 I-Code_Block A_750 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26120408\tO\t26120408\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26120408/\tO\thttps://stackoverflow.com/questions/26120408/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nAngular B-Library Angular O\ndirective\tO\tdirective\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\ntable B-User_Interface_Element table O\nwith\tO\twith\tO\nbootstrap B-Library bootstrap O\ntable B-Class table O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ntable B-Class table O\nhas\tO\thas\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nformatter\tO\tformatter\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\ncolumn B-User_Interface_Element column O\n,\tO\t,\tO\nto\tO\tto\tO\nrender\tO\trender\tO\nthe\tO\tthe\tO\nHTML B-Language HTML O\ndata\tO\tdata\tO\nof\tO\tof\tO\na\tO\ta\tO\ncolumn B-User_Interface_Element column O\n,\tO\t,\tO\nrow B-User_Interface_Element row O\nby\tO\tby\tO\nrow B-User_Interface_Element row O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nformatter\tO\tformatter\tO\nmust\tO\tmust\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nHTML B-Language HTML O\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nHTML B-Language HTML O\nis\tO\tis\tO\nreturning\tO\treturning\tO\ncontaining\tO\tcontaining\tO\na\tO\ta\tO\nngClick B-HTML_XML_Tag ngClick O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nngClick B-HTML_XML_Tag ngClick O\nis\tO\tis\tO\nn't\tO\tn't\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nangular B-Library angular O\nhas\tO\thas\tO\nn't\tO\tn't\tO\ncompiled\tO\tcompiled\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nwatch/monitor\tO\twatch/monitor\tO\ntable B-User_Interface_Element table O\nDOM\tO\tDOM\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nforce\tO\tforce\tO\nangular B-Library angular O\nto\tO\tto\tO\nprocesss/compile\tO\tprocesss/compile\tO\nit\tO\tit\tO\ndirectives\tO\tdirectives\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nsuccess\tO\tsuccess\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2986 I-Code_Block Q_2986 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnother\tO\tAnother\tO\npossible\tO\tpossible\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\ncompile\tO\tcompile\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n1\tO\t1\tO\ntime\tO\ttime\tO\nan\tO\tan\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\na\tO\ta\tO\nng-click B-HTML_XML_Tag ng-click O\nwill\tO\twill\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20283105\tO\t20283105\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20283105/\tO\thttps://stackoverflow.com/questions/20283105/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nworking\tO\tworking\tO\ncode\tO\tcode\tO\nwith\tO\twith\tO\na\tO\ta\tO\nDatagrid B-Class Datagrid B-Code_Block\nas\tO\tas\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\ncontrol\tO\tcontrol\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\na\tO\ta\tO\nDatagrid B-Class Datagrid O\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nbind\tO\tbind\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nrequires\tO\trequires\tO\nmoving\tO\tmoving\tO\ncells B-User_Interface_Element cells O\ninto\tO\tinto\tO\nother\tO\tother\tO\ncolumns B-User_Interface_Element columns O\nso\tO\tso\tO\nI\tO\tI\tO\nalways\tO\talways\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nwhich\tO\twhich\tO\ncell B-User_Interface_Element cell O\nI\tO\tI\tO\nam\tO\tam\tO\non\tO\ton\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nmouse B-Device mouse O\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nreleased\tO\treleased\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncurrent\tO\tcurrent\tO\nimplementation\tO\timplementation\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nrow B-User_Interface_Element row O\nand\tO\tand\tO\ncell B-User_Interface_Element cell O\nis\tO\tis\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nVIEW B-Class VIEW O\n's\tO\t's\tO\ncode-behind\tO\tcode-behind\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproject\tO\tproject\tO\nleader\tO\tleader\tO\nis\tO\tis\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\ndone\tO\tdone\tO\nthru\tO\tthru\tO\nbinding\tO\tbinding\tO\nas\tO\tas\tO\nhe\tO\the\tO\nwants\tO\twants\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nVIEW B-Class VIEW O\n's\tO\t's\tO\ncode-behind\tO\tcode-behind\tO\nas\tO\tas\tO\nclean\tO\tclean\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nall\tO\tall\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nproperties\tO\tproperties\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\ncells B-User_Interface_Element cells O\ncolumn I-User_Interface_Element column O\nand\tO\tand\tO\nrow B-User_Interface_Element row O\nindex\tO\tindex\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nOmitted\tO\tOmitted\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncolumns B-User_Interface_Element columns O\nas\tO\tas\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nexceed\tO\texceed\tO\nthe\tO\tthe\tO\nlimit\tO\tlimit\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nthe\tO\tthe\tO\nXAML B-Language XAML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2153 I-Code_Block Q_2153 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthe\tO\tthe\tO\ncode-behind\tO\tcode-behind\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2154 I-Code_Block Q_2154 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n\t\nI\tO\tI\tO\nproceeded\tO\tproceeded\tO\nto\tO\tto\tO\nmultibind\tO\tmultibind\tO\nthe\tO\tthe\tO\ndatagridcell B-Class datagridcell B-Code_Block\n's\tO\t's\tO\ncolumn B-Variable column O\nand\tO\tand\tO\ndatacontext B-Variable datacontext O\nproperties\tO\tproperties\tO\nas\tO\tas\tO\nparameters\tO\tparameters\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\ncommand B-Class command B-Code_Block\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\noption\tO\toption\tO\nI\tO\tI\tO\nstarted\tO\tstarted\tO\nbefore\tO\tbefore\tO\nbut\tO\tbut\tO\nset\tO\tset\tO\naside\tO\taside\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\ntime\tO\ttime\tO\nconstraints\tO\tconstraints\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndatagridrow B-Class datagridrow O\n's\tO\t's\tO\nindex\tO\tindex\tO\n,\tO\t,\tO\nI\tO\tI\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\ndatacontext B-Variable datacontext B-Code_Block\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nviewmodel B-Class viewmodel B-Code_Block\n.\tO\t.\tO\n\t\nDid\tO\tDid\tO\nthe\tO\tthe\tO\ntrick\tO\ttrick\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20283105\tO\t20283105\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20283105/\tO\thttps://stackoverflow.com/questions/20283105/\tO\n\t\n\t\nAlternative\tO\tAlternative\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nproperties\tO\tproperties\tO\nDataGrid B-Class DataGrid O\nalready\tO\talready\tO\nprovides\tO\tprovides\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\nand/or\tO\tand/or\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nfew\tO\tfew\tO\nother\tO\tother\tO\nattached\tO\tattached\tO\nproperties\tO\tproperties\tO\nsupporting\tO\tsupporting\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nproperties\tO\tproperties\tO\nlike\tO\tlike\tO\nSelectedItem B-Variable SelectedItem O\n,\tO\t,\tO\nSelectedValue B-Variable SelectedValue O\n,\tO\t,\tO\nCurrentItem B-Variable CurrentItem O\n,\tO\t,\tO\nCurrentCell B-Variable CurrentCell O\n.\tO\t.\tO\n\t\nFuthermore\tO\tFuthermore\tO\nif\tO\tif\tO\na\tO\ta\tO\nbehavior\tO\tbehavior\tO\ncouldnt\tO\tcouldnt\tO\nbe\tO\tbe\tO\nhandled\tO\thandled\tO\nwith\tO\twith\tO\nthose\tO\tthose\tO\nproperties\tO\tproperties\tO\nfrom\tO\tfrom\tO\nabove\tO\tabove\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nattached\tO\tattached\tO\nproperty\tO\tproperty\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nstyle\tO\tstyle\tO\nfor\tO\tfor\tO\ncells B-User_Interface_Element cells O\nwith\tO\twith\tO\ntriggers\tO\ttriggers\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nattached\tO\tattached\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nBinding\tO\tBinding\tO\nwill\tO\twill\tO\ntransmit\tO\ttransmit\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nattached\tO\tattached\tO\nproperty\tO\tproperty\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nViewModel B-Class ViewModel O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\njust\tO\tjust\tO\ncommunication\tO\tcommunication\tO\nbetween\tO\tbetween\tO\nViewModel B-Class ViewModel O\nand\tO\tand\tO\nView B-Class View O\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nfew\tO\tfew\tO\nlinks\tO\tlinks\tO\n:\tO\t:\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid%28v=vs.110%29.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid%28v=vs.110%29.aspx\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid.currentitem%28v=vs.110%29.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid.currentitem%28v=vs.110%29.aspx\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selectedvalue%28v=vs.110%29.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selectedvalue%28v=vs.110%29.aspx\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selecteditem%28v=vs.110%29.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selecteditem%28v=vs.110%29.aspx\tO\n\t\nThey\tO\tThey\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nall\tO\tall\tO\nbindable\tO\tbindable\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nLink\tO\tLink\tO\nto\tO\tto\tO\nMSDN B-Website MSDN O\nMultiBinding B-Class MultiBinding O\nPage\tO\tPage\tO\n:\tO\t:\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/system.windows.data.multibinding%28v=vs.110%29.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.windows.data.multibinding%28v=vs.110%29.aspx\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20283105\tO\t20283105\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20283105/\tO\thttps://stackoverflow.com/questions/20283105/\tO\n\t\n\t\nThe\tO\tThe\tO\ngeneral\tO\tgeneral\tO\nway\tO\tway\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nyour\tO\tyour\tO\nrequirement\tO\trequirement\tO\nis\tO\tis\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nan\tO\tan\tO\nICommand B-Class ICommand B-Code_Block\ntype\tO\ttype\tO\nAttached\tO\tAttached\tB-Code_Block\nProperty\tO\tProperty\tI-Code_Block\nfor\tO\tfor\tO\neach\tO\teach\tO\nevent\tO\tevent\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbasic\tO\tbasic\tO\nidea\tO\tidea\tO\nis\tO\tis\tO\nthis.\tO\tthis.\tO\n.\tO\t.\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nICommand B-Class ICommand B-Code_Block\nAttached\tO\tAttached\tI-Code_Block\nProperty\tO\tProperty\tI-Code_Block\nwith\tO\twith\tO\na\tO\ta\tO\nPropertyChangedCallback B-Class PropertyChangedCallback B-Code_Block\nhandler\tO\thandler\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nhandler\tO\thandler\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nwhen\tO\twhen\tO\nan\tO\tan\tO\nICommand B-Class ICommand B-Code_Block\nis\tO\tis\tO\ndata\tO\tdata\tO\nbound\tO\tbound\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nproperty\tO\tproperty\tO\n)\tO\t)\tO\n,\tO\t,\tO\nattach\tO\tattach\tO\na\tO\ta\tO\nhandler\tO\thandler\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nthat\tO\tthat\tO\nevent\tO\tevent\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\nICommand B-Class ICommand B-Code_Block\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nview\tO\tview\tO\nmodel\tO\tmodel\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nICommand B-Class ICommand B-Code_Block\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nPreviewKeyDown B-Class PreviewKeyDown B-Code_Block\nevent\tO\tevent\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2705 I-Code_Block A_2705 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29295312\tO\t29295312\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29295312/\tO\thttps://stackoverflow.com/questions/29295312/\tO\n\t\n\t\n@Value B-Function @Value O\nhas\tO\thas\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nvalue\tO\tvalue\tO\nwhen\tO\twhen\tO\nused\tO\tused\tO\nin\tO\tin\tO\ninsert\tO\tinsert\tO\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\n@AID B-Variable @AID O\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\n@Value B-Variable @Value O\n)\tO\t)\tO\nalways\tO\talways\tO\ngives\tO\tgives\tO\n0 B-Value 0 O\nwhen\tO\twhen\tO\nthis\tO\tthis\tO\nstored\tO\tstored\tO\nprocedure\tO\tprocedure\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nusing\tO\tusing\tO\nphp B-Language php O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3488 I-Code_Block Q_3488 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nit\tO\tit\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\ncalling\tO\tcalling\tO\nstored\tO\tstored\tO\nprocedure\tO\tprocedure\tO\ninside\tO\tinside\tO\nanother\tO\tanother\tO\nstored\tO\tstored\tO\nprocedure\tO\tprocedure\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20582835\tO\t20582835\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20582835/\tO\thttps://stackoverflow.com/questions/20582835/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsubscribe\tO\tsubscribe\tO\nbutton B-User_Interface_Element button O\nin\tO\tin\tO\nthe\tO\tthe\tO\nabout\tO\tabout\tO\nus\tO\tus\tO\nsection\tO\tsection\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\npressing\tO\tpressing\tO\n,\tO\t,\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nwindow B-User_Interface_Element window O\nappears\tO\tappears\tO\nasking\tO\tasking\tO\nfor\tO\tfor\tO\nemail\tO\temail\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nenters\tO\tenters\tO\nhis\tO\this\tO\nemail\tO\temail\tO\nwhere\tO\twhere\tO\ncould\tO\tcould\tO\nI\tO\tI\tO\nstore\tO\tstore\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nemails\tO\temails\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ndoes\tO\tdoes\tO\nemail\tO\temail\tO\nsubscription\tO\tsubscription\tO\nis\tO\tis\tO\nimplemented\tO\timplemented\tO\nin\tO\tin\tO\nAndroid B-Operating_System Android O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntotally\tO\ttotally\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nit\tO\tit\tO\n,\tO\t,\tO\nso\tO\tso\tO\nplease\tO\tplease\tO\nbe\tO\tbe\tO\ndetailed\tO\tdetailed\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20582835\tO\t20582835\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20582835/\tO\thttps://stackoverflow.com/questions/20582835/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nserver B-Application server O\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstore\tO\tstore\tO\nin\tO\tin\tO\na\tO\ta\tO\nDB\tO\tDB\tO\nthe\tO\tthe\tO\nemails\tO\temails\tO\nthe\tO\tthe\tO\nclients B-Application clients O\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\napps\tO\tapps\tO\n)\tO\t)\tO\nsend\tO\tsend\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nthing\tO\tthing\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\n(\tO\t(\tO\na\tO\ta\tO\nstring B-Data_Type string O\n)\tO\t)\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nget\tO\tget\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nan\tO\tan\tO\nemail\tO\temail\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nvoila\tO\tvoila\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\naddresses\tO\taddresses\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nTry\tO\tTry\tO\nparse\tO\tparse\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\ncloud\tO\tcloud\tO\nserver B-Application server O\nfree\tO\tfree\tO\nand\tO\tand\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34507544\tO\t34507544\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34507544/\tO\thttps://stackoverflow.com/questions/34507544/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nexcel B-Application excel O\nsheet\tO\tsheet\tO\n\"\tO\t\"\tO\nTest.xlsx B-File_Name Test.xlsx O\n\"\tO\t\"\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell B-User_Interface_Element cell O\nvalues\tO\tvalues\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nreferenced\tO\treferenced\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nexcel B-Application excel O\nsheet\tO\tsheet\tO\nusing\tO\tusing\tO\nformula\tO\tformula\tO\n\"='C:[Sample.xlsx]Sheet1'!B14\" B-Code_Block \"='C:[Sample.xlsx]Sheet1'!B14\" O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nopen\tO\topen\tO\nSmaple.xlsx B-File_Name Smaple.xlsx O\n,\tO\t,\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell B-User_Interface_Element cell O\nB14 B-Value B14 O\nin\tO\tin\tO\nsheet B-User_Interface_Element sheet O\n1 B-Value 1 O\n,\tO\t,\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\nand\tO\tand\tO\nclose\tO\tclose\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nTest.xlsx B-File_Name Test.xlsx O\nupdate\tO\tupdate\tO\nunless\tO\tunless\tO\nI\tO\tI\tO\ndouble\tO\tdouble\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncell B-User_Interface_Element cell O\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nformula\tO\tformula\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nreferenced\tO\treferenced\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\nExcel B-Application Excel O\nOptions->\tO\tOptions->\tO\nAdvanced\tO\tAdvanced\tO\n->General\tO\t->General\tO\nand\tO\tand\tO\nun-checking\tO\tun-checking\tO\nAsk\tO\tAsk\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nautomatic\tO\tautomatic\tO\nlink\tO\tlink\tO\n\"\tO\t\"\tO\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16196054\tO\t16196054\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16196054/\tO\thttps://stackoverflow.com/questions/16196054/\tO\n\t\n\t\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nvaiable\tO\tvaiable\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain B-Class main O\nclass\tO\tclass\tO\nfrom\tO\tfrom\tO\nReveiveSMS.class B-Class ReveiveSMS.class O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nReceiveSMS.class B-Class ReceiveSMS.class O\nand\tO\tand\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmessageBody B-Variable messageBody O\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain B-Class main O\n.\tO\t.\tO\n\t\nHelp\tO\tHelp\tO\nme\tO\tme\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1603 I-Code_Block Q_1603 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16196054\tO\t16196054\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16196054/\tO\thttps://stackoverflow.com/questions/16196054/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nmessageBody B-Variable messageBody B-Code_Block\nin\tO\tin\tO\nSharedPreferences B-Class SharedPreferences O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nReceiveSMS B-Class ReceiveSMS O\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2087 I-Code_Block A_2087 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\nmain B-Class main O\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2088 I-Code_Block A_2088 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21321132\tO\t21321132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21321132/\tO\thttps://stackoverflow.com/questions/21321132/\tO\n\t\n\t\nI\tO\tI\tO\nrecently\tO\trecently\tO\nswitched\tO\tswitched\tO\npython B-Language python O\ndistributions\tO\tdistributions\tO\nto\tO\tto\tO\nAnaconda B-Application Anaconda O\nfrom\tO\tfrom\tO\nContinuum\tO\tContinuum\tO\nAnalytics\tO\tAnalytics\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\ninstalling\tO\tinstalling\tO\nPython B-Language Python O\n3.3 B-Version 3.3 O\n,\tO\t,\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nbuild\tO\tbuild\tO\nsystem\tO\tsystem\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\nwith\tO\twith\tO\nSublime B-Application Sublime O\n(\tO\t(\tO\n3) B-Version 3) O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2293 I-Code_Block Q_2293 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nruns\tO\truns\tO\nscripts\tO\tscripts\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nprinted\tO\tprinted\tO\nupon\tO\tupon\tO\ncompletion\tO\tcompletion\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nenable\tO\tenable\tO\nnormal\tO\tnormal\tO\n(\tO\t(\tO\nlive\tO\tlive\tO\n)\tO\t)\tO\nprinting\tO\tprinting\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21321132\tO\t21321132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21321132/\tO\thttps://stackoverflow.com/questions/21321132/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nin\tO\tin\tO\n\"\tO\t\"\tO\nunbuffered\tO\tunbuffered\tO\n\"\tO\t\"\tO\nmode\tO\tmode\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\n-u B-Code_Block -u B-Code_Block\nflag\tO\tflag\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThis\tO\tThis\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nspecific\tO\tspecific\tO\nto\tO\tto\tO\nAnaconda B-Application Anaconda O\n,\tO\t,\tO\nbut\tO\tbut\tO\nmay\tO\tmay\tO\nstill\tO\tstill\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44314261\tO\t44314261\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44314261/\tO\thttps://stackoverflow.com/questions/44314261/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nmodified\tO\tmodified\tO\na\tO\ta\tO\nVBA B-Application VBA O\nmacro\tO\tmacro\tO\nof\tO\tof\tO\nMS B-Application MS O\nOutlook I-Application Outlook O\nthat\tO\tthat\tO\nsomeone\tO\tsomeone\tO\nin\tO\tin\tO\nour\tO\tour\tO\norganization\tO\torganization\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nsigned\tO\tsigned\tO\nwith\tO\twith\tO\nour\tO\tour\tO\norganization\tO\torganization\tO\n's\tO\t's\tO\ncertificate\tO\tcertificate\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\na\tO\ta\tO\nself-cert\tO\tself-cert\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nmy\tO\tmy\tO\npersonal\tO\tpersonal\tO\ncert\tO\tcert\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\ncert\tO\tcert\tO\nset\tO\tset\tO\nup\tO\tup\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\norganization\tO\torganization\tO\nfor\tO\tfor\tO\njust\tO\tjust\tO\nthis\tO\tthis\tO\npurpose\tO\tpurpose\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\n'll\tO\t'll\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\n\"\tO\t\"\tO\nMy_Org_VBA_Macro_Cert B-Variable My_Org_VBA_Macro_Cert O\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nMy_Org_VBA_Macro_Cert B-Variable My_Org_VBA_Macro_Cert O\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ninstalled\tO\tinstalled\tO\nin\tO\tin\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nMMC B-Application MMC O\ncertificate\tO\tcertificate\tO\nsnap-in\tO\tsnap-in\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlocation\tO\tlocation\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\npersonal\tO\tpersonal\tO\ndigital\tO\tdigital\tO\nsignature\tO\tsignature\tO\ncerts\tO\tcerts\tO\nare\tO\tare\tO\nlocated\tO\tlocated\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nrebooting\tO\trebooting\tO\n,\tO\t,\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nVBA B-Application VBA O\nproject\tO\tproject\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nTools->Digital\tO\tTools->Digital\tO\nSignature\tO\tSignature\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\npress\tO\tpress\tO\nthe\tO\tthe\tO\nChoose\tO\tChoose\tO\nbutton B-User_Interface_Element button O\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nmy\tO\tmy\tO\nown\tO\town\tO\ndigital\tO\tdigital\tO\nsignature\tO\tsignature\tO\ncerts\tO\tcerts\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nfrom\tO\tfrom\tO\n.\tO\t.\tO\n\t\nMy_Org_VBA_Macro_Cert B-Variable My_Org_VBA_Macro_Cert O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\ncertain\tO\tcertain\tO\nsettings\tO\tsettings\tO\nor\tO\tor\tO\nvalues\tO\tvalues\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nset\tO\tset\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nCert\tO\tCert\tO\nthat\tO\tthat\tO\ndetermine\tO\tdetermine\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ncerts\tO\tcerts\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\nfrom\tO\tfrom\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nenough\tO\tenough\tO\nabout\tO\tabout\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\ncert\tO\tcert\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\non\tO\ton\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nMicrosoft B-Application Microsoft O\nVBA I-Application VBA O\nversion\tO\tversion\tO\n7.1 B-Version 7.1 O\n\t\nMicrosoft B-Application Microsoft O\nOutlook I-Application Outlook O\n2013 B-Version 2013 O\n\t\nAll\tO\tAll\tO\nthe\tO\tthe\tO\narticles\tO\tarticles\tO\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nself\tO\tself\tO\ncert\tO\tcert\tO\nor\tO\tor\tO\nonly\tO\tonly\tO\ncover\tO\tcover\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsigning\tO\tsigning\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncert\tO\tcert\tO\nthat\tO\tthat\tO\nshows\tO\tshows\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nall\tO\tall\tO\ngloss\tO\tgloss\tO\nover\tO\tover\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\ncert\tO\tcert\tO\nso\tO\tso\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nvalues\tO\tvalues\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29005973\tO\t29005973\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29005973/\tO\thttps://stackoverflow.com/questions/29005973/\tO\n\t\n\t\nI\tO\tI\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nall\tO\tall\tO\ndivs B-HTML_XML_Tag divs O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\ndata-item B-Class data-item O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\ndata-variable\tO\tdata-variable\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nitem\tO\titem\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\n\t\nIE\tO\tIE\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3440 I-Code_Block Q_3440 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nShould\tO\tShould\tO\nbecome\tO\tbecome\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3441 I-Code_Block Q_3441 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCode\tO\tCode\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3442 I-Code_Block Q_3442 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhere\tO\twhere\tO\nel B-Variable el O\nis\tO\tis\tO\na\tO\ta\tO\njquery B-Library jquery O\nobject\tO\tobject\tO\ncontaining\tO\tcontaining\tO\nthe\tO\tthe\tO\nhtml B-Language html O\nI\tO\tI\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29005973\tO\t29005973\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29005973/\tO\thttps://stackoverflow.com/questions/29005973/\tO\n\t\n\t\nDEMO\tO\tDEMO\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4089 I-Code_Block A_4089 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nUPD\tO\tUPD\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nfunction\tO\tfunction\tO\nas\tO\tas\tO\nargument\tO\targument\tO\nto\tO\tto\tO\nreplaceWith B-Function replaceWith B-Code_Block\n(\tO\t(\tO\nthx\tO\tthx\tO\n@Barmar B-User_Name @Barmar O\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4090 I-Code_Block A_4090 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29005973\tO\t29005973\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29005973/\tO\thttps://stackoverflow.com/questions/29005973/\tO\n\t\n\t\nThe\tO\tThe\tO\nargument\tO\targument\tO\nto\tO\tto\tO\nreplaceWith B-Function replaceWith B-Code_Block\ncan\tO\tcan\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncalled\tO\tcalled\tO\n,\tO\t,\tO\nthis\tO\tthis\tB-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nbeing\tO\tbeing\tO\nreplaced\tO\treplaced\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nreplacement\tO\treplacement\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4088 I-Code_Block A_4088 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n49016133\tO\t49016133\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49016133/\tO\thttps://stackoverflow.com/questions/49016133/\tO\n\t\n\t\nI\tO\tI\tO\nkept\tO\tkept\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nafter\tO\tafter\tO\ninstalling\tO\tinstalling\tO\nthis\tO\tthis\tO\npackage\tO\tpackage\tO\nbelow\tO\tbelow\tO\n\t\nhttps://github.com/vinkla/instagram\tO\thttps://github.com/vinkla/instagram\tO\n\t\ninto\tO\tinto\tO\nmy\tO\tmy\tO\nLaravel B-Library Laravel O\n5.1 B-Version 5.1 O\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfollowed\tO\tfollowed\tO\neverything\tO\teverything\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninstruction\tO\tinstruction\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\non\tO\ton\tO\nMac B-Operating_System Mac O\nOS I-Operating_System OS O\nX B-Version X O\n,\tO\t,\tO\nPHP B-Language PHP O\n7.1 B-Version 7.1 O\n,\tO\t,\tO\nLaravel B-Library Laravel O\n5.1 B-Version 5.1 O\n\t\nDid\tO\tDid\tO\nI\tO\tI\tO\nforget\tO\tforget\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\none\tO\tone\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nand\tO\tand\tO\ndebug\tO\tdebug\tO\nthis\tO\tthis\tO\nfurther\tO\tfurther\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nopen\tO\topen\tO\nto\tO\tto\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nmoment\tO\tmoment\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhints/suggestions\tO\thints/suggestions\tO\n/\tO\t/\tO\nhelps\tO\thelps\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n49016133\tO\t49016133\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49016133/\tO\thttps://stackoverflow.com/questions/49016133/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nchange\tO\tchange\tO\napp B-File_Name app B-Code_Block\n\\Exceptions\\Handler.php I-File_Name \\Exceptions\\Handler.php I-Code_Block\nto\tO\tto\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\ndeclaration\tO\tdeclaration\tO\nException B-Class Exception B-Code_Block\nand\tO\tand\tO\nhandle\tO\thandle\tO\nsome\tO\tsome\tO\nlogic\tO\tlogic\tO\nwithin\tO\twithin\tO\nit\tO\tit\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nError\tO\tError\tO\nto\tO\tto\tO\nan\tO\tan\tO\nException B-Class Exception O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nknown\tO\tknown\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nlaravel B-Library laravel O\n5.2 B-Version 5.2 O\n<=\tO\t<=\tO\nwith\tO\twith\tO\nphp B-Language php O\n7 B-Version 7 O\n.\tO\t.\tO\nhttps://github.com/laravel/framework/issues/9650\tO\thttps://github.com/laravel/framework/issues/9650\tO\n\t\nfrom\tO\tfrom\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7191 I-Code_Block A_7191 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7192 I-Code_Block A_7192 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nHandler\tO\tHandler\tO\nrender B-Function render B-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n49016133\tO\t49016133\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49016133/\tO\thttps://stackoverflow.com/questions/49016133/\tO\n\t\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nLaravel B-Library Laravel O\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nrelease\tO\trelease\tO\nof\tO\tof\tO\nLaravel B-Library Laravel O\n5.1 B-Version 5.1 O\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nhelping\tO\thelping\tO\ndebug\tO\tdebug\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nvendor/Illuminate/Foundation/Bootstrap/HandleExceptions\tO\tvendor/Illuminate/Foundation/Bootstrap/HandleExceptions\tO\n@handleException\tO\t@handleException\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\n\t\ndd($e) B-Function dd($e) B-Code_Block\nat\tO\tat\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nline\tO\tline\tO\nof\tO\tof\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nEx\tO\tEx\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7202 I-Code_Block A_7202 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45569648\tO\t45569648\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45569648/\tO\thttps://stackoverflow.com/questions/45569648/\tO\n\t\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\ndeveloped\tO\tdeveloped\tO\nWord\tO\tWord\tO\nPuzzle\tO\tPuzzle\tO\nGame\tO\tGame\tO\nfor\tO\tfor\tO\nandroid B-Operating_System android O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsize\tO\tsize\tO\nis\tO\tis\tO\ngreater\tO\tgreater\tO\nthan\tO\tthan\tO\n20\tO\t20\tO\nMB\tO\tMB\tO\nbecause\tO\tbecause\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\ndeveloped\tO\tdeveloped\tO\ngame\tO\tgame\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nhelp\tO\thelp\tO\nof\tO\tof\tO\nUnity B-Application Unity O\ngame\tO\tgame\tO\nengine\tO\tengine\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nblank\tO\tblank\tO\nproject\tO\tproject\tO\nwill\tO\twill\tO\ntake\tO\ttake\tO\napprox\tO\tapprox\tO\n10\tO\t10\tO\nMB\tO\tMB\tO\nfor\tO\tfor\tO\nAPK B-File_Type APK O\nin\tO\tin\tO\nUnity B-Application Unity O\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nadvise\tO\tadvise\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45569648\tO\t45569648\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45569648/\tO\thttps://stackoverflow.com/questions/45569648/\tO\n\t\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\nchecked\tO\tchecked\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nhttps://docs.unity3d.com/Manual/ReducingFilesize.html\tO\thttps://docs.unity3d.com/Manual/ReducingFilesize.html\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nafraid\tO\tafraid\tO\nyou\tO\tyou\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nminimal\tO\tminimal\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\neven\tO\teven\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nembedding\tO\tembedding\tO\nmono B-Application mono O\n,\tO\t,\tO\nunity B-Application unity O\nengine\tO\tengine\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\ntotal\tO\ttotal\tO\ncontrol\tO\tcontrol\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nask\tO\task\tO\nyourself\tO\tyourself\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\n\"\tO\t\"\tO\nDo\tO\tDo\tO\nI\tO\tI\tO\nreally\tO\treally\tO\nneed\tO\tneed\tO\nUnity B-Application Unity O\nfor\tO\tfor\tO\na\tO\ta\tO\nword\tO\tword\tO\npuzzle\tO\tpuzzle\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\nmade\tO\tmade\tO\nmostly\tO\tmostly\tO\nwith\tO\twith\tO\nscripts\tO\tscripts\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nmaybe\tO\tmaybe\tO\nconvert\tO\tconvert\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nnative\tO\tnative\tO\napp\tO\tapp\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45569648\tO\t45569648\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45569648/\tO\thttps://stackoverflow.com/questions/45569648/\tO\n\t\n\t\nTry\tO\tTry\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nManual\tO\tManual\tO\non\tO\ton\tO\nReducing\tO\tReducing\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nbuild\tO\tbuild\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nthis\tO\tthis\tO\nforum\tO\tforum\tO\npost\tO\tpost\tO\ncould\tO\tcould\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nGoogle B-Website Google O\nsearch\tO\tsearch\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nmany\tO\tmany\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8856692\tO\t8856692\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8856692/\tO\thttps://stackoverflow.com/questions/8856692/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nusers\tO\tusers\tO\ncontroller\tO\tcontroller\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nput\tO\tput\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nthe\tO\tthe\tO\nremember\tO\tremember\tO\nme\tO\tme\tO\nfunctionality\tO\tfunctionality\tO\non\tO\ton\tO\nlogin\tO\tlogin\tO\n.\tO\t.\tO\n\t\nIT\tO\tIT\tO\nseems\tO\tseems\tO\npretty\tO\tpretty\tO\nsimple\tO\tsimple\tO\nset\tO\tset\tO\na\tO\ta\tO\ncookie\tO\tcookie\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncookie\tO\tcookie\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nvisits\tO\tvisits\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\npage\tO\tpage\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\nexists\tO\texists\tO\nlog\tO\tlog\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nCake B-Library Cake O\nis\tO\tis\tO\nnot\tO\tnot\tO\nsaving\tO\tsaving\tO\nthe\tO\tthe\tO\ncookie\tO\tcookie\tO\n,\tO\t,\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nnot\tO\tnot\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrevisit\tO\trevisit\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nauto\tO\tauto\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ntest\tO\ttest\tO\nthis\tO\tthis\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_741 I-Code_Block Q_741 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nright\tO\tright\tO\nafter\tO\tafter\tO\nI\tO\tI\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\ncookie\tO\tcookie\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nplace\tO\tplace\tO\na\tO\ta\tO\n$this->cookie->read('Auth.User') B-Code_Block $this->cookie->read('Auth.User') O\n; I-Code_Block ; O\nand\tO\tand\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\ncookie\tO\tcookie\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbrowsers\tO\tbrowsers\tO\n(\tO\t(\tO\nChrome B-Application Chrome O\n,\tO\t,\tO\nFireFox B-Application FireFox O\n)\tO\t)\tO\ncookie\tO\tcookie\tO\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nplain\tO\tplain\tO\nPHP B-Language PHP O\ncookies\tO\tcookies\tO\n,\tO\t,\tO\nvia\tO\tvia\tO\nsetcookie() B-Function setcookie() O\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ncookie\tO\tcookie\tO\nbut\tO\tbut\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nthe\tO\tthe\tO\nCake B-Library Cake O\nCookie\tO\tCookie\tO\nread\tO\tread\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthose\tO\tthose\tO\ncookies\tO\tcookies\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nto\tO\tto\tO\nresolve\tO\tresolve\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nwork\tO\twork\tO\naround\tO\taround\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nbypasses\tO\tbypasses\tO\nthe\tO\tthe\tO\nframework\tO\tframework\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nhow\tO\thow\tO\ncake B-Library cake O\nis\tO\tis\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\ncookies\tO\tcookies\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nthese\tO\tthese\tO\ncookies\tO\tcookies\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\ncakes B-Library cakes O\ncookie\tO\tcookie\tO\ncreation\tO\tcreation\tO\nalgorithm\tO\talgorithm\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nsetcookie() B-Function setcookie() O\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsetting\tO\tsetting\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nfor\tO\tfor\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nwant\tO\twant\tO\nor\tO\tor\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nwork\tO\twork\tO\naround\tO\taround\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_742 I-Code_Block Q_742 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ncakes B-Library cakes O\ncookie\tO\tcookie\tO\ncomponent\tO\tcomponent\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n,\tO\t,\tO\nread\tO\tread\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ncookie.php B-File_Name cookie.php O\ncode\tO\tcode\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nI\tO\tI\tO\nleft\tO\tleft\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nencryption\tO\tencryption\tO\nthat\tO\tthat\tO\ntoo\tO\ttoo\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncookie.php B-File_Name cookie.php O\nand\tO\tand\tO\nyour\tO\tyour\tO\napps\tO\tapps\tO\nsettings\tO\tsettings\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\narray B-Data_Structure array O\nvalues\tO\tvalues\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nam\tO\tam\tO\nonly\tO\tonly\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nID B-Variable ID O\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nput\tO\tput\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nencryption\tO\tencryption\tO\nunlike\tO\tunlike\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nstill\tO\tstill\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\ncomponent\tO\tcomponent\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8856692\tO\t8856692\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8856692/\tO\thttps://stackoverflow.com/questions/8856692/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nlogin\tO\tlogin\tO\naction\tO\taction\tO\nworks\tO\tworks\tO\nwell\tO\twell\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1087 I-Code_Block A_1087 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDoes\tO\tDoes\tO\nit\tO\tit\tO\nwork\tO\twork\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nside\tO\tside\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4436680\tO\t4436680\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4436680/\tO\thttps://stackoverflow.com/questions/4436680/\tO\n\t\n\t\nMy\tO\tMy\tO\nRails B-Library Rails O\napp\tO\tapp\tO\nbegan\tO\tbegan\tO\nreturning\tO\treturning\tO\nfunky\tO\tfunky\tO\nvalidation\tO\tvalidation\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nform\tO\tform\tO\nupon\tO\tupon\tO\ncreate/save\tO\tcreate/save\tO\nof\tO\tof\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\n{ B-Code_Block { O\n{ B-Code_Block { O\ncount I-Code_Block count O\n} I-Code_Block } O\n} B-Code_Block } O\nerrors\tO\terrors\tO\nprohibited\tO\tprohibited\tO\nthis\tO\tthis\tO\n{ B-Code_Block { O\n{ B-Code_Block { O\nmodel I-Code_Block model O\n} I-Code_Block } O\n} B-Code_Block } O\nfrom\tO\tfrom\tO\nbeing\tO\tbeing\tO\nsaved\tO\tsaved\tO\n\t\nThere\tO\tThere\tO\nwere\tO\twere\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nfields\tO\tfields\tO\n:\tO\t:\tO\n\t\n{ B-Code_Block { O\n{ B-Code_Block { O\nattribute I-Code_Block attribute O\n} I-Code_Block } O\n} B-Code_Block } O\n{ B-Code_Block { O\n{ B-Code_Block { O\nmessage I-Code_Block message O\n} I-Code_Block } O\n} B-Code_Block } O\n{ B-Code_Block { O\n{ B-Code_Block { O\nattribute I-Code_Block attribute O\n} I-Code_Block } O\n} B-Code_Block } O\n{ B-Code_Block { O\n{ B-Code_Block { O\nmessage I-Code_Block message O\n} I-Code_Block } O\n} B-Code_Block } O\n{ B-Code_Block { O\n{ B-Code_Block { O\nattribute I-Code_Block attribute O\n} I-Code_Block } O\n} B-Code_Block } O\n{ B-Code_Block { O\n{ B-Code_Block { O\nmessage I-Code_Block message O\n} I-Code_Block } O\n} B-Code_Block } O\n{ B-Code_Block { O\n{ B-Code_Block { O\nattribute I-Code_Block attribute O\n} I-Code_Block } O\n} B-Code_Block } O\n{ B-Code_Block { O\n{ B-Code_Block { O\nmessage I-Code_Block message O\n} I-Code_Block } O\n} B-Code_Block } O\n\t\nHas\tO\tHas\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\nexperienced\tO\texperienced\tO\nanything\tO\tanything\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4436680\tO\t4436680\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4436680/\tO\thttps://stackoverflow.com/questions/4436680/\tO\n\t\n\t\nYou\tO\tYou\tO\nprobably\tO\tprobably\tO\nupgraded\tO\tupgraded\tO\nRuby B-Language Ruby O\nto\tO\tto\tO\na\tO\ta\tO\nversion\tO\tversion\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwell\tO\twell\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nRails B-Library Rails O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nRuby B-Language Ruby O\n1.9 B-Version 1.9 O\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nuse\tO\tuse\tO\nRails B-Library Rails O\n2.3.9 B-Version 2.3.9 O\nif\tO\tif\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nmistaken\tO\tmistaken\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nchangelog\tO\tchangelog\tO\nfor\tO\tfor\tO\nRails B-Library Rails O\n2.3.9 B-Version 2.3.9 O\n:\tO\t:\tO\nruby-on-rails-2-3-9-released B-Language ruby-on-rails-2-3-9-released O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1691100\tO\t1691100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1691100/\tO\thttps://stackoverflow.com/questions/1691100/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_92 I-Code_Block Q_92 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nTo\tO\tTo\tO\nme\tO\tme\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nlooks\tO\tlooks\tO\nnormal\tO\tnormal\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nC++ B-Language C++ O\nso\tO\tso\tO\nI\tO\tI\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nmissing\tO\tmissing\tO\nsome\tO\tsome\tO\nnuance\tO\tnuance\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\ncompiler B-Application compiler O\nerrors\tO\terrors\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nand\tO\tand\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nWhat\tO\tWhat\tO\ngives\tO\tgives\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1691100\tO\t1691100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1691100/\tO\thttps://stackoverflow.com/questions/1691100/\tO\n\t\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nin\tO\tin\tO\nLudoCore/Singleton.h B-File_Name LudoCore/Singleton.h B-Code_Block\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\nincluded\tO\tincluded\tO\nearlier\tO\tearlier\tO\n.\tO\t.\tO\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nyour\tO\tyour\tO\nclass\tO\tclass\tB-Code_Block\ndefinitions\tO\tdefinitions\tO\nhave\tO\thave\tO\n; B-Code_Block ; B-Code_Block\nsemicolons\tO\tsemicolons\tO\nafter\tO\tafter\tO\nthem\tO\tthem\tO\nand\tO\tand\tO\nall\tO\tall\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nQuick\tO\tQuick\tO\ntest\tO\ttest\tO\n:\tO\t:\tO\ncomment\tO\tcomment\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\n#include B-Code_Block #include B-Code_Block\nand\tO\tand\tO\nstick\tO\tstick\tO\na\tO\ta\tO\ntemplate B-Code_Block template B-Code_Block\n<class I-Code_Block <class I-Code_Block\nC> I-Code_Block C> I-Code_Block\nclass I-Code_Block class I-Code_Block\nSingleton I-Code_Block Singleton I-Code_Block\n; I-Code_Block ; I-Code_Block\npredeclaration\tO\tpredeclaration\tO\nthere\tO\tthere\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ncompiler B-Application compiler O\nnow\tO\tnow\tO\ncomplains\tO\tcomplains\tO\nabout\tO\tabout\tO\nincomplete\tO\tincomplete\tO\ntypes\tO\ttypes\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nright\tO\tright\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\npost\tO\tpost\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1691100\tO\t1691100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1691100/\tO\thttps://stackoverflow.com/questions/1691100/\tO\n\t\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nheader\tO\theader\tO\n(\tO\t(\tO\nLudoCore/Singleton.h B-File_Name LudoCore/Singleton.h O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nerror\tO\terror\tO\nimplies\tO\timplies\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tB-Code_Block\nLudoTimer B-Class LudoTimer I-Code_Block\ndeclaration\tO\tdeclaration\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nSingleton.h B-File_Name Singleton.h O\ndefines\tO\tdefines\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nmissing\tO\tmissing\tO\n' B-Code_Block ' O\n; I-Code_Block ; O\n' I-Code_Block ' O\nafter\tO\tafter\tO\nthat\tO\tthat\tO\nclass\tO\tclass\tO\ndefinition\tO\tdefinition\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35527315\tO\t35527315\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35527315/\tO\thttps://stackoverflow.com/questions/35527315/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nVRAM B-Device VRAM O\nmy\tO\tmy\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\nusing\tO\tusing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ndebug\tO\tdebug\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nVisual B-Application Visual B-Code_Block\nStudio I-Application Studio I-Code_Block\nGraphics I-Application Graphics I-Code_Block\nAnalyzer I-Application Analyzer I-Code_Block\nI\tO\tI\tO\ngot\tO\tgot\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nVRAM B-Device VRAM O\nused\tO\tused\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ngraphic\tO\tgraphic\tO\nobjects\tO\tobjects\tO\nas\tO\tas\tO\nseen\tO\tseen\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nGraphics B-User_Interface_Element Graphics B-Code_Block\nObject I-User_Interface_Element Object I-Code_Block\nTable I-User_Interface_Element Table I-Code_Block\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthese\tO\tthese\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35527315\tO\t35527315\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35527315/\tO\thttps://stackoverflow.com/questions/35527315/\tO\n\t\n\t\nI\tO\tI\tO\nactually\tO\tactually\tO\nfound\tO\tfound\tO\nan\tO\tan\tO\neasier\tO\teasier\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5066 I-Code_Block A_5066 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5067 I-Code_Block A_5067 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nused\tO\tused\tO\nVRAM B-Device VRAM O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n(\tO\t(\tO\nID B-Variable ID O\n0 B-Value 0 O\n)\tO\t)\tO\nadapter B-Device adapter O\nand\tO\tand\tO\nconverts\tO\tconverts\tO\nit\tO\tit\tO\nto\tO\tto\tO\nmegabytes\tO\tmegabytes\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nrequire\tO\trequire\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwindows B-Operating_System windows O\n10 B-Version 10 O\nSDK B-Application SDK O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16056835\tO\t16056835\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16056835/\tO\thttps://stackoverflow.com/questions/16056835/\tO\n\t\n\t\ni\tO\ti\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nccavenue B-Website ccavenue O\nin\tO\tin\tO\nmy\tO\tmy\tO\nprestashop B-Application prestashop B-Code_Block\nstore\tO\tstore\tI-Code_Block\nVersion\tO\tVersion\tI-Code_Block\n1.2.5.0 B-Version 1.2.5.0 I-Code_Block\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nafter\tO\tafter\tO\nsuccessful\tO\tsuccessful\tO\ncredit\tO\tcredit\tO\ncard\tO\tcard\tO\ntransaction\tO\ttransaction\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ncoming\tO\tcoming\tO\nback\tO\tback\tO\nto\tO\tto\tO\nwebsite\tO\twebsite\tO\n,\tO\t,\tO\nshopping\tO\tshopping\tO\ncart\tO\tcart\tO\nitems\tO\titems\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nclearing\tO\tclearing\tO\nand\tO\tand\tO\nalso\tO\talso\tO\norders\tO\torders\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nupdating\tO\tupdating\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nCCavenue B-Application CCavenue O\nPayment I-Application Payment O\nGateway I-Application Gateway O\ndeveloped\tO\tdeveloped\tO\nby\tO\tby\tO\nbluezeal.in B-Website bluezeal.in O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmerchant\tO\tmerchant\tO\naccount\tO\taccount\tO\nsettings\tO\tsettings\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ngiven\tO\tgiven\tO\nReturn\tO\tReturn\tO\nPage\tO\tPage\tO\nURL\tO\tURL\tO\nas\tO\tas\tO\nhttp://myshop B-Code_Block http://myshop B-Code_Block\n/modules/ccavenue/validation.php I-Code_Block /modules/ccavenue/validation.php I-Code_Block\nwhere\tO\twhere\tO\nI\tO\tI\tO\nam\tO\tam\tO\nupdating\tO\tupdating\tO\nmy\tO\tmy\tO\norder\tO\torder\tO\ntable B-User_Interface_Element table O\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nin\tO\tin\tO\nccavenue.php B-File_Name ccavenue.php O\npage\tO\tpage\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ngiven\tO\tgiven\tO\nmy\tO\tmy\tO\nreturn\tO\treturn\tO\nurl\tO\turl\tO\nas\tO\tas\tO\n$Url B-Code_Block $Url B-Code_Block\n= I-Code_Block = I-Code_Block\n' I-Code_Block ' I-Code_Block\nhttp://'.htmlspecialchars($_SERVER['HTTP_HOST' I-Code_Block http://'.htmlspecialchars($_SERVER['HTTP_HOST' I-Code_Block\n) I-Code_Block ) I-Code_Block\n, I-Code_Block , I-Code_Block\nENT_COMPAT I-Code_Block ENT_COMPAT I-Code_Block\n, I-Code_Block , I-Code_Block\n' I-Code_Block ' I-Code_Block\nUTF-8 I-Code_Block UTF-8 I-Code_Block\n' I-Code_Block ' I-Code_Block\n) I-Code_Block ) I-Code_Block\n.__PS_BASE_URI__ I-Code_Block .__PS_BASE_URI__ I-Code_Block\n. I-Code_Block . I-Code_Block\n' I-Code_Block ' I-Code_Block\nmodules/ccavenue/validation.php I-Code_Block modules/ccavenue/validation.php I-Code_Block\n' I-Code_Block ' I-Code_Block\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nsuccessful\tO\tsuccessful\tO\ntransaction\tO\ttransaction\tO\nccavenue\tO\tccavenue\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nreturning\tO\treturning\tO\nanything\tO\tanything\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nvalidation.php B-File_Name validation.php O\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nIe\tO\tIe\tO\n,\tO\t,\tO\nAuthDesc B-Variable AuthDesc B-Code_Block\n,\tO\t,\tO\nOrder_Id B-Variable Order_Id B-Code_Block\netc\tO\tetc\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16056835\tO\t16056835\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16056835/\tO\thttps://stackoverflow.com/questions/16056835/\tO\n\t\n\t\nThis\tO\tThis\tO\nproblem\tO\tproblem\tO\ngot\tO\tgot\tO\nsolved\tO\tsolved\tO\nafter\tO\tafter\tO\nregenerating\tO\tregenerating\tO\nkey\tO\tkey\tO\nin\tO\tin\tO\nmerchant\tO\tmerchant\tO\naccount\tO\taccount\tO\nsettings.\tO\tsettings.\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41325590\tO\t41325590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41325590/\tO\thttps://stackoverflow.com/questions/41325590/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nempty\tO\tempty\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nrm B-Code_Block rm B-Code_Block\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncapture\tO\tcapture\tO\na\tO\ta\tO\npath\tO\tpath\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5242 I-Code_Block Q_5242 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThere\tO\tThere\tO\ncertainly\tO\tcertainly\tO\nis\tO\tis\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\nmanually\tO\tmanually\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5243 I-Code_Block Q_5243 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41325590\tO\t41325590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41325590/\tO\thttps://stackoverflow.com/questions/41325590/\tO\n\t\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nfancy\tO\tfancy\tO\nquotes\tO\tquotes\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nassignment\tO\tassignment\tO\nof\tO\tof\tO\nexport_folder_path B-Code_Block export_folder_path B-Code_Block\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nslanted\tO\tslanted\tO\nUnicode\tO\tUnicode\tO\nquotes\tO\tquotes\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nrecognized\tO\trecognized\tO\nas\tO\tas\tO\nquotes\tO\tquotes\tO\nby\tO\tby\tO\nbash B-Application bash O\n,\tO\t,\tO\nand\tO\tand\tO\nare\tO\tare\tO\ntherefore\tO\ttherefore\tO\ntreated\tO\ttreated\tO\nas\tO\tas\tO\nliterals\tO\tliterals\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nusually\tO\tusually\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\ncopypasting\tO\tcopypasting\tO\nfrom\tO\tfrom\tO\nblogs\tO\tblogs\tO\n,\tO\t,\tO\nor\tO\tor\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\neditor B-Application editor O\nor\tO\tor\tO\nOS\tO\tOS\tO\nnot\tO\tnot\tO\nintended\tO\tintended\tO\nfor\tO\tfor\tO\nprogrammers\tO\tprogrammers\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nWord B-Application Word O\nor\tO\tor\tO\nmacOS B-Operating_System macOS O\n.\tO\t.\tO\n\t\nReplace\tO\tReplace\tO\nthem\tO\tthem\tO\nwith\tO\twith\tO\nregular\tO\tregular\tO\nASCII\tO\tASCII\tO\ndouble\tO\tdouble\tO\nquotes\tO\tquotes\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nscript\tO\tscript\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndisable\tO\tdisable\tO\n\"\tO\t\"\tO\nsmart\tO\tsmart\tO\nquotes\tO\tquotes\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\neditor B-Application editor O\nor\tO\tor\tO\nOS\tO\tOS\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41325590\tO\t41325590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41325590/\tO\thttps://stackoverflow.com/questions/41325590/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsure\tO\tsure\tO\nabout\tO\tabout\tO\nremoving\tO\tremoving\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\nits\tO\tits\tO\ncontents\tO\tcontents\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nadvise\tO\tadvise\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5920 I-Code_Block A_5920 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ndouble\tO\tdouble\tO\nquotes\tO\tquotes\tO\nwill\tO\twill\tO\ntake\tO\ttake\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nany\tO\tany\tO\nspaces\tO\tspaces\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10116412\tO\t10116412\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10116412/\tO\thttps://stackoverflow.com/questions/10116412/\tO\n\t\n\t\nHad\tO\tHad\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nreal\tO\treal\tO\nlife\tO\tlife\tO\nmoment\tO\tmoment\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nare\tO\tare\tO\nwe\tO\twe\tO\nnaming\tO\tnaming\tO\nmutators\tO\tmutators\tO\nwith\tO\twith\tO\nget\tO\tget\tO\nand\tO\tand\tO\nset\tO\tset\tO\nprefixes\tO\tprefixes\tO\n:\tO\t:\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\njust\tO\tjust\tO\nas\tO\tas\tO\neasy\tO\teasy\tO\nand\tO\tand\tO\nunderstandable\tO\tunderstandable\tO\nto\tO\tto\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\n\t\nmyMember B-Function myMember O\n(\tO\t(\tO\nmyMember B-Class myMember O\nMember B-Variable Member O\n)\tO\t)\tO\n\t\nas\tO\tas\tO\nsetMyMember B-Function setMyMember O\nand\tO\tand\tO\ngetMyMember B-Function getMyMember O\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nhistorical\tO\thistorical\tO\nreason\tO\treason\tO\nwhy\tO\twhy\tO\nJava B-Language Java O\nhas\tO\thas\tO\nthis\tO\tthis\tO\nstyle\tO\tstyle\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10116412\tO\t10116412\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10116412/\tO\thttps://stackoverflow.com/questions/10116412/\tO\n\t\n\t\nThe\tO\tThe\tO\nget*\tO\tget*\tO\nand\tO\tand\tO\nset*\tO\tset*\tO\nstyle\tO\tstyle\tO\nof\tO\tof\tO\nnaming\tO\tnaming\tO\nis\tO\tis\tO\nspecified\tO\tspecified\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJavaBeans B-Class JavaBeans O\nspecification\tO\tspecification\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nlibraries\tO\tlibraries\tO\nusing\tO\tusing\tO\nreflection\tO\treflection\tO\nexpect\tO\texpect\tO\nthis\tO\tthis\tO\nstyle\tO\tstyle\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nJackson B-Class Jackson O\nmapper I-Class mapper O\ncan\tO\tcan\tO\nserialize\tO\tserialize\tO\na\tO\ta\tO\njava B-Language java O\nobject\tO\tobject\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nget/setters\tO\tget/setters\tO\nto\tO\tto\tO\nJSON B-File_Type JSON O\nwithout\tO\twithout\tO\nany\tO\tany\tO\nadditional\tO\tadditional\tO\nannotations\tO\tannotations\tO\n;\tO\t;\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nnaming\tO\tnaming\tO\nstyle\tO\tstyle\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntell\tO\ttell\tO\nit\tO\tit\tO\nwhere\tO\twhere\tO\nyour\tO\tyour\tO\nproperties\tO\tproperties\tO\nare\tO\tare\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nprogramming\tO\tprogramming\tO\nlanguages\tO\tlanguages\tO\nuse\tO\tuse\tO\ndifferent\tO\tdifferent\tO\nstyles\tO\tstyles\tO\n.\tO\t.\tO\n\t\nPerl B-Language Perl O\nlibraries\tO\tlibraries\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\noften\tO\toften\tO\nuse\tO\tuse\tO\na\tO\ta\tO\n->someProperty() B-Function ->someProperty() B-Code_Block\ngetter\tO\tgetter\tO\nand\tO\tand\tO\n->someProperty($newValue) B-Function ->someProperty($newValue) B-Code_Block\nsetter\tO\tsetter\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n49096137\tO\t49096137\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49096137/\tO\thttps://stackoverflow.com/questions/49096137/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nBasic\tO\tBasic\tO\nSingle-Row\tO\tSingle-Row\tO\nTile\tO\tTile\tO\nSource\tO\tSource\tO\nCollection\tO\tCollection\tO\nexample\tO\texample\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nconfigurations\tO\tconfigurations\tO\nand\tO\tand\tO\ntile\tO\ttile\tO\nsources\tO\tsources\tO\nas\tO\tas\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnow\tO\tnow\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\noverlays B-User_Interface_Element overlays O\non\tO\ton\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nand\tO\tand\tO\nsecond\tO\tsecond\tO\nimage B-User_Interface_Element image O\nbut\tO\tbut\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\noverlay B-User_Interface_Element overlay O\nshould\tO\tshould\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\npositioned\tO\tpositioned\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nimage B-User_Interface_Element image O\nand\tO\tand\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\noverlay B-User_Interface_Element overlay O\nshould\tO\tshould\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nplaced\tO\tplaced\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nimage B-User_Interface_Element image O\nbut\tO\tbut\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nhappening\tO\thappening\tO\nthat\tO\tthat\tO\nway.\tO\tway.\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\noverlays B-User_Interface_Element overlays O\ncollection\tO\tcollection\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntileSources B-Class tileSources O\ncollection\tO\tcollection\tO\n.\tO\t.\tO\n\t\nAre\tO\tAre\tO\nthe\tO\tthe\tO\noverlays B-User_Interface_Element overlays O\nnot\tO\tnot\tO\nindependent\tO\tindependent\tO\nfor\tO\tfor\tO\ndifferent\tO\tdifferent\tO\npages\tO\tpages\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nconsole B-Application console O\nafter\tO\tafter\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\noverlays\tO\toverlays\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nTiledImage.imageToViewportRectangle B-Class TiledImage.imageToViewportRectangle O\nin\tO\tin\tO\nsuch\tO\tsuch\tO\nbasic\tO\tbasic\tO\ninitialization\tO\tinitialization\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nplugin B-Application plugin O\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\n.\tO\t.\tO\n\t\nCodepen B-Application Codepen O\nexample\tO\texample\tO\nURL\tO\tURL\tO\n:\tO\t:\tO\nhttps://codepen.io/hussainb/pen/QQPPvL\tO\thttps://codepen.io/hussainb/pen/QQPPvL\tO\n\t\nCodepen B-Application Codepen O\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nhtml B-Language html O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6562 I-Code_Block Q_6562 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ncss B-Language css O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6563 I-Code_Block Q_6563 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nJavascript B-Language Javascript O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6564 I-Code_Block Q_6564 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n49096137\tO\t49096137\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49096137/\tO\thttps://stackoverflow.com/questions/49096137/\tO\n\t\n\t\nLooks\tO\tLooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nOpenSeadragon B-Library OpenSeadragon O\n!\tO\t!\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nticket\tO\tticket\tO\n:\tO\t:\tO\n\t\nhttps://github.com/openseadragon/openseadragon/issues/1412\tO\thttps://github.com/openseadragon/openseadragon/issues/1412\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nwork\tO\twork\tO\naround\tO\taround\tO\nit\tO\tit\tO\nby\tO\tby\tO\nstoring\tO\tstoring\tO\nyour\tO\tyour\tO\noverlays B-User_Interface_Element overlays O\nseparately\tO\tseparately\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\nthem\tO\tthem\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nimages B-User_Interface_Element images O\nhave\tO\thave\tO\nopened\tO\topened\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nalready\tO\talready\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nviewer B-Class viewer O\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7226 I-Code_Block A_7226 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\naction\tO\taction\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttps://codepen.io/iangilman/pen/aqgzJZ\tO\thttps://codepen.io/iangilman/pen/aqgzJZ\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16178085\tO\t16178085\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16178085/\tO\thttps://stackoverflow.com/questions/16178085/\tO\n\t\n\t\nSome\tO\tSome\tO\ndata\tO\tdata\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nplot\tO\tplot\tO\nhave\tO\thave\tO\ncoordinates\tO\tcoordinates\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n( B-Value ( O\n20 I-Value 20 O\n, I-Value , O\n0 I-Value 0 O\n) I-Value ) O\n,\tO\t,\tO\n( B-Value ( O\n10 I-Value 10 O\n, I-Value , O\n0 I-Value 0 O\n) I-Value ) O\n,\tO\t,\tO\netc\tO\tetc\tO\n..\tO\t..\tO\n.\tO\t.\tO\nBasically\tO\tBasically\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npoints\tO\tpoints\tO\nbelong\tO\tbelong\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nx-axis\tO\tx-axis\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nthese\tO\tthese\tO\npoints\tO\tpoints\tO\nare\tO\tare\tO\nhidden\tO\thidden\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\naxis\tO\taxis\tO\n;\tO\t;\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nmarkers\tO\tmarkers\tO\nare\tO\tare\tO\nbehind\tO\tbehind\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nand\tO\tand\tO\ntherefore\tO\ttherefore\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nseen\tO\tseen\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nfigure\tO\tfigure\tO\n:\tO\t:\tO\nhttp://i.stack.imgur.com/FNcob.png\tO\thttp://i.stack.imgur.com/FNcob.png\tO\n\t\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\nout\tO\tout\tO\nof\tO\tof\tO\nidea\tO\tidea\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nViktor B-User_Name Viktor O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16178085\tO\t16178085\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16178085/\tO\thttps://stackoverflow.com/questions/16178085/\tO\n\t\n\t\nMatplotlib B-Library Matplotlib O\n\"\tO\t\"\tO\nsnaps\tO\tsnaps\tO\n\"\tO\t\"\tO\nplot\tO\tplot\tO\nlimits\tO\tlimits\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nwhole\tO\twhole\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nfactors\tO\tfactors\tO\nof\tO\tof\tO\n2 B-Value 2 O\n,\tO\t,\tO\n5 B-Value 5 O\n,\tO\t,\tO\n10 B-Value 10 O\n,\tO\t,\tO\n100 B-Value 100 O\n,\tO\t,\tO\netc\tO\tetc\tO\n)\tO\t)\tO\nnumbers\tO\tnumbers\tO\n,\tO\t,\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\noften\tO\toften\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nmay\tO\tmay\tO\nwind\tO\twind\tO\nup\tO\tup\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nboundary\tO\tboundary\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\n.\tO\t.\tO\n\t\nax.margins B-Function ax.margins B-Code_Block\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\npadding\tO\tpadding\tO\nfactor\tO\tfactor\tO\nbefore\tO\tbefore\tO\nthis\tO\tthis\tO\nautoscaling\tO\tautoscaling\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\nis\tO\tis\tO\ncalculated\tO\tcalculated\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nway\tO\tway\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nof\tO\tof\tO\npoints\tO\tpoints\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\nboundary\tO\tboundary\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2085 I-Code_Block A_2085 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nan\tO\tan\tO\neasy\tO\teasy\tO\nsolution\tO\tsolution\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2086 I-Code_Block A_2086 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25877240\tO\t25877240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25877240/\tO\thttps://stackoverflow.com/questions/25877240/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable B-Data_Structure table O\nof\tO\tof\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\ngoes\tO\tgoes\tO\nquite\tO\tquite\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nback\tO\tback\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nquery\tO\tquery\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\n13\tO\t13\tO\nweeks\tO\tweeks\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ndate\tO\tdate\tO\ncolumn B-Data_Structure column O\nin\tO\tin\tO\nthat\tO\tthat\tO\ntable B-Data_Structure table O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2958 I-Code_Block Q_2958 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nof\tO\tof\tO\n13\tO\t13\tO\nweeks\tO\tweeks\tO\nback\tO\tback\tO\nas\tO\tas\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nquery\tO\tquery\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\nlinking\tO\tlinking\tO\nthat\tO\tthat\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nselect\tO\tselect\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nreturn\tO\treturn\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\n13\tO\t13\tO\nweeks\tO\tweeks\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nthat\tO\tthat\tO\nquery\tO\tquery\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nshould\tO\tshould\tO\nrefresh\tO\trefresh\tO\nevery\tO\tevery\tO\nday\tO\tday\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\n13\tO\t13\tO\nweeks\tO\tweeks\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ndate\tO\tdate\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25877240\tO\t25877240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25877240/\tO\thttps://stackoverflow.com/questions/25877240/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nconfused\tO\tconfused\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nyour\tO\tyour\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ndateadd() B-Function dateadd() O\nin\tO\tin\tO\nyour\tO\tyour\tO\nwhere B-Code_Block where O\nclause\tO\tclause\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3567 I-Code_Block A_3567 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25877240\tO\t25877240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25877240/\tO\thttps://stackoverflow.com/questions/25877240/\tO\n\t\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3566 I-Code_Block A_3566 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45819970\tO\t45819970\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45819970/\tO\thttps://stackoverflow.com/questions/45819970/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nnodejs B-Library nodejs O\nas\tO\tas\tO\na\tO\ta\tO\nstatic\tO\tstatic\tO\nlibrary\tO\tlibrary\tO\nwithout\tO\twithout\tO\nsome\tO\tsome\tO\ninternal\tO\tinternal\tO\nmodule\tO\tmodule\tO\nlike\tO\tlike\tO\nchild_process B-Class child_process B-Code_Block\ndns I-Class dns I-Code_Block\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nconfigurable\tO\tconfigurable\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45819970\tO\t45819970\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45819970/\tO\thttps://stackoverflow.com/questions/45819970/\tO\n\t\n\t\nRemove\tO\tRemove\tO\nthe\tO\tthe\tO\nmodules\tO\tmodules\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nfrom\tO\tfrom\tO\nnode.gyp B-Library node.gyp O\n,\tO\t,\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\n.js B-File_Type .js O\nfiles\tO\tfiles\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlib B-File_Name lib B-Code_Block\nfolder\tO\tfolder\tO\n,\tO\t,\tO\nremove\tO\tremove\tO\nthem\tO\tthem\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbuiltinLibs B-Class builtinLibs B-Code_Block\narray B-Data_Structure array O\nin\tO\tin\tO\nlib/internal/module.js B-File_Name lib/internal/module.js B-Code_Block\nthen\tO\tthen\tO\nbuild\tO\tbuild\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6658 I-Code_Block A_6658 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBe\tO\tBe\tO\naware\tO\taware\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nmodules\tO\tmodules\tO\nare\tO\tare\tO\nused\tO\tused\tO\nin\tO\tin\tO\ntests\tO\ttests\tO\nand\tO\tand\tO\nbenchmarks\tO\tbenchmarks\tO\n,\tO\t,\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nwith\tO\twith\tO\nchild_proccess B-File_Name child_proccess B-Code_Block\n,\tO\t,\tO\nin\tO\tin\tO\nlib/internal/v8_prof_polyfill.js B-File_Name lib/internal/v8_prof_polyfill.js B-Code_Block\nand\tO\tand\tO\nlib/internal/cluster/master.js B-File_Name lib/internal/cluster/master.js B-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36780536\tO\t36780536\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36780536/\tO\thttps://stackoverflow.com/questions/36780536/\tO\n\t\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\ncommence\tO\tcommence\tO\nby\tO\tby\tO\nstating\tO\tstating\tO\nmy\tO\tmy\tO\nobjective\tO\tobjective\tO\n:\tO\t:\tO\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\ntwo\tO\ttwo\tO\n13-bit\tO\t13-bit\tO\nintegers B-Data_Type integers O\n:\tO\t:\tO\n> B-Code_Block > O\n,\tO\t,\tO\n< B-Code_Block < O\n,\tO\t,\tO\nand\tO\tand\tO\n= B-Code_Block = O\n;\tO\t;\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\ncalculation\tO\tcalculation\tO\ntrillions\tO\ttrillions\tO\nof\tO\tof\tO\ntimes\tO\ttimes\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nis\tO\tis\tO\nimperative\tO\timperative\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\noptimize\tO\toptimize\tO\nit\tO\tit\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nprogram\tO\tprogram\tO\ncurrently\tO\tcurrently\tO\nutilizes\tO\tutilizes\tO\nPython B-Language Python O\n2.7 B-Version 2.7 O\nand\tO\tand\tO\npyopencl B-Library pyopencl O\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\ncalculation\tO\tcalculation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\naveraging\tO\taveraging\tO\nabout\tO\tabout\tO\n800\tO\t800\tO\nGFlops\tO\tGFlops\tO\nout\tO\tout\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nATI B-Device ATI O\nRadeon I-Device Radeon O\n6870 I-Device 6870 O\nwhich\tO\twhich\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\nfor\tO\tfor\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nIf\tO\tIf\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncaring\tO\tcaring\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\n<, B-Code_Block <, O\n>, I-Code_Block >, O\nand\tO\tand\tO\n= B-Code_Block = O\noperators\tO\toperators\tO\non\tO\ton\tO\n4\tO\t4\tO\nbyte\tO\tbyte\tO\nfloats B-Data_Type floats O\n(as\tO\t(as\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nnow),\tO\tnow),\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\nbitwise\tO\tbitwise\tO\nfunctions\tO\tfunctions\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\n<, B-Code_Block <, O\n> I-Code_Block > O\n,\tO\t,\tO\nand\tO\tand\tO\n= B-Code_Block = O\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\n2\tO\t2\tO\n-\tO\t-\tO\n13\tO\t13\tO\nbits\tO\tbits\tO\nobjects\tO\tobjects\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nwould\tO\twould\tO\nthis\tO\tthis\tO\nincrease\tO\tincrease\tO\nmy\tO\tmy\tO\nspeed\tO\tspeed\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\ndoes\tO\tdoes\tO\nC B-Language C O\nalready\tO\talready\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nof\tO\tof\tO\nfinding\tO\tfinding\tO\n<, B-Code_Block <, O\nand\tO\tand\tO\n> B-Code_Block > O\n,\tO\t,\tO\nand\tO\tand\tO\n= B-Code_Block = O\n(\tO\t(\tO\nobviously\tO\tobviously\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\nfloats B-Data_Type floats O\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28601689\tO\t28601689\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28601689/\tO\thttps://stackoverflow.com/questions/28601689/\tO\n\t\n\t\nI\tO\tI\tO\nHave\tO\tHave\tO\na\tO\ta\tO\nmodels\tO\tmodels\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3359 I-Code_Block Q_3359 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthere\tO\tthere\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\norm\tO\torm\tO\nform\tO\tform\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3360 I-Code_Block Q_3360 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nat\tO\tat\tO\nlast\tO\tlast\tO\ndo\tO\tdo\tO\nu\tO\tu\tO\nknow\tO\tknow\tO\nany\tO\tany\tO\ngood\tO\tgood\tO\nrefrence\tO\trefrence\tO\nfor\tO\tfor\tO\norm\tO\torm\tO\n\t\nthx\tO\tthx\tO\nfor\tO\tfor\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28601689\tO\t28601689\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28601689/\tO\thttps://stackoverflow.com/questions/28601689/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nthe\tO\tthe\tO\ngroup B-Function group O\nby I-Function by O\nis\tO\tis\tO\nfor\tO\tfor\tO\nordering\tO\tordering\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\ngroup_by B-Function group_by O\nlook\tO\tlook\tO\nat\tO\tat\tO\naggregates\tO\taggregates\tO\nand\tO\tand\tO\nannotate\tO\tannotate\tO\nin\tO\tin\tO\ndjango B-Library django O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n:\tO\t:\tO\nGet\tO\tGet\tO\nthe\tO\tthe\tO\nperson\tO\tperson\tO\nrecord\tO\trecord\tO\n-\tO\t-\tO\nselect B-Code_Block select O\nperson_name I-Code_Block person_name O\nfrom I-Code_Block from O\nPerson I-Code_Block Person O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4004 I-Code_Block A_4004 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n2\tO\t2\tO\n:\tO\t:\tO\nselect B-Code_Block select O\n* I-Code_Block * O\nfrom I-Code_Block from O\nPerson I-Code_Block Person O\n, I-Code_Block , O\nCar I-Code_Block Car O\nwhere I-Code_Block where O\ncar_owner I-Code_Block car_owner O\n= I-Code_Block = O\nperson_id I-Code_Block person_id O\n\t\nGet\tO\tGet\tO\nthe\tO\tthe\tO\ncars B-Variable cars O\nbelonging\tO\tbelonging\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nperson B-Variable person O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4005 I-Code_Block A_4005 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n3\tO\t3\tB-Code_Block\n:\tO\t:\tI-Code_Block\nselect B-Code_Block select I-Code_Block\n* I-Code_Block * O\nfrom I-Code_Block from O\nPerson I-Code_Block Person O\n, I-Code_Block , O\nCar I-Code_Block Car O\ngroup_by(person_name) I-Code_Block group_by(person_name) O\n\t\nGet\tO\tGet\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\ncars B-Variable cars O\nsorted\tO\tsorted\tO\nby\tO\tby\tO\nowner B-Variable owner O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK O\n: I-Code_Block : O\nA_4006 I-Code_Block A_4006 B-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n4\tO\t4\tB-Code_Block\n:\tO\t:\tI-Code_Block\nselect B-Code_Block select I-Code_Block\n* I-Code_Block * I-Code_Block\nfrom I-Code_Block from O\nPerson I-Code_Block Person O\n, I-Code_Block , O\nCar I-Code_Block Car O\nwhere I-Code_Block where O\nname I-Code_Block name O\nlike I-Code_Block like O\n%x% I-Code_Block %x% O\ngroup_by(person_name) I-Code_Block group_by(person_name) O\nhaving I-Code_Block having O\ncar_id I-Code_Block car_id O\n>= I-Code_Block >= O\n2 I-Code_Block 2 O\n\t\nList B-Data_Structure List O\nof\tO\tof\tO\ncars B-Variable cars O\nwith\tO\twith\tO\nsearch\tO\tsearch\tO\ncriteria\tO\tcriteria\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK O\n: I-Code_Block : O\nA_4007 I-Code_Block A_4007 O\n( I-Code_Block ( O\ncode I-Code_Block code O\nomitted I-Code_Block omitted B-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCars B-Variable Cars B-Code_Block\nand\tO\tand\tI-Code_Block\ntheir\tO\ttheir\tI-Code_Block\nOwners B-Variable Owners I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : O\nA_4008 I-Code_Block A_4008 O\n( I-Code_Block ( O\ncode I-Code_Block code O\nomitted I-Code_Block omitted B-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46224181\tO\t46224181\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46224181/\tO\thttps://stackoverflow.com/questions/46224181/\tO\n\t\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nintend\tO\tintend\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nRequest\tO\tRequest\tO\nhttps://reqres.in/api/users/2\tO\thttps://reqres.in/api/users/2\tB-Code_Block\n\t\nWhich\tO\tWhich\tO\nsends\tO\tsends\tO\na\tO\ta\tO\nresponse\tO\tresponse\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6060 I-Code_Block Q_6060 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwanna\tO\twanna\tO\ngrab\tO\tgrab\tO\nthe\tO\tthe\tO\navatar\tO\tavatar\tO\nurl\tO\turl\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nanother\tO\tanother\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nimage B-File_Type image O\nbinary I-File_Type binary O\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nas\tO\tas\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\nan\tO\tan\tO\nObservable B-Class Observable O\nthat\tO\tthat\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nthis\tO\tthis\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6061 I-Code_Block Q_6061 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nhow\tO\thow\tO\nI\tO\tI\tO\napproached\tO\tapproached\tO\nbut\tO\tbut\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfinish\tO\tfinish\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6062 I-Code_Block Q_6062 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nstructure\tO\tstructure\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6063 I-Code_Block Q_6063 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhich\tO\tWhich\tO\nthen\tO\tthen\tO\ngets\tO\tgets\tO\nresolved\tO\tresolved\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nfinal\tO\tfinal\tO\ndata\tO\tdata\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46224181\tO\t46224181\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46224181/\tO\thttps://stackoverflow.com/questions/46224181/\tO\n\t\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nswitchMap B-Function switchMap B-Code_Block\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nconcatMap B-Function concatMap B-Code_Block\nor\tO\tor\tO\nmergeMap B-Function mergeMap B-Code_Block\ninstead\tO\tinstead\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6702 I-Code_Block A_6702 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34622614\tO\t34622614\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34622614/\tO\thttps://stackoverflow.com/questions/34622614/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nmy\tO\tmy\tO\npage\tO\tpage\tO\nto\tO\tto\tO\npop-up\tO\tpop-up\tO\na\tO\ta\tO\nwindow B-User_Interface_Element window O\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nform B-User_Interface_Element form O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nform B-User_Interface_Element form O\nis\tO\tis\tO\nfilled\tO\tfilled\tO\nout\tO\tout\tO\nand\tO\tand\tO\nSubmit\tO\tSubmit\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\npop-up B-User_Interface_Element pop-up O\nto\tO\tto\tO\nremain\tO\tremain\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage B-User_Interface_Element page O\nwith\tO\twith\tO\nnew\tO\tnew\tO\ndata\tO\tdata\tO\nloaded\tO\tloaded\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nWhenever\tO\tWhenever\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsubmit\tO\tsubmit\tO\nbutton B-User_Interface_Element button O\nin\tO\tin\tO\nmy\tO\tmy\tO\npop-up B-User_Interface_Element pop-up O\n,\tO\t,\tO\nthe\tO\tthe\tO\npop-up B-User_Interface_Element pop-up O\neither\tO\teither\tO\ncloses\tO\tcloses\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntarget B-Code_Block target O\n= I-Code_Block = O\n\" I-Code_Block \" O\n_self I-Code_Block _self O\n\" I-Code_Block \" O\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\ncontains\tO\tcontains\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npop-up B-User_Interface_Element pop-up O\ngo\tO\tgo\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ntab B-User_Interface_Element tab O\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\nopens\tO\topens\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nyet\tO\tyet\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nthat\tO\tthat\tO\nallows\tO\tallows\tO\nthe\tO\tthe\tO\npop-up B-User_Interface_Element pop-up O\nto\tO\tto\tO\nstay\tO\tstay\tO\nup\tO\tup\tO\nwhen\tO\twhen\tO\ncoming\tO\tcoming\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nAJAX B-Library AJAX O\npop-up B-Function pop-up O\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nlisted\tO\tlisted\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nstandard\tO\tstandard\tO\nnon-AJAX B-Library non-AJAX O\npopup B-Function popup O\n,\tO\t,\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nif\tO\tif\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage B-User_Interface_Element page O\nthe\tO\tthe\tO\npop-up B-User_Interface_Element pop-up O\ncame\tO\tcame\tO\nfrom\tO\tfrom\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npop-up B-User_Interface_Element pop-up O\ngoes\tO\tgoes\tO\nunderneath\tO\tunderneath\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\npage B-User_Interface_Element page O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nsomething\tO\tsomething\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npage B-User_Interface_Element page O\nwhere\tO\twhere\tO\nmy\tO\tmy\tO\npop-up B-User_Interface_Element pop-up O\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4221 I-Code_Block Q_4221 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4222 I-Code_Block Q_4222 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ngraph B-Data_Structure graph O\nand\tO\tand\tO\nform B-User_Interface_Element form O\npop-up I-User_Interface_Element pop-up O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nof\tO\tof\tO\na\tO\ta\tO\nJSP B-Application JSP O\nbacked\tO\tbacked\tO\nby\tO\tby\tO\na\tO\ta\tO\nservlet B-Class servlet O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nheader B-User_Interface_Element header O\ngets\tO\tgets\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nzoomPlot.generatePlot() B-Function zoomPlot.generatePlot() O\ncreates\tO\tcreates\tO\nthe\tO\tthe\tO\nplot B-User_Interface_Element plot O\nand\tO\tand\tO\nsaves\tO\tsaves\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\n.png B-File_Type .png O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbody\tO\tbody\tO\ndisplays\tO\tdisplays\tO\nthe\tO\tthe\tO\n.png B-File_Type .png O\ngraph B-Data_Structure graph O\nand\tO\tand\tO\nthen\tO\tthen\tO\nalso\tO\talso\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nform B-User_Interface_Element form O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\none\tO\tone\tO\nsubmits\tO\tsubmits\tO\nthe\tO\tthe\tO\nform B-User_Interface_Element form O\n,\tO\t,\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nhappens\tO\thappens\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\npop-up B-User_Interface_Element pop-up O\nis\tO\tis\tO\ndisplayed\tO\tdisplayed\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nplot B-User_Interface_Element plot O\nuses\tO\tuses\tO\ndefault\tO\tdefault\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nan\tO\tan\tO\nAJAX B-Function AJAX O\nrequest I-Function request O\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\nhas\tO\thas\tO\nany\tO\tany\tO\ngood\tO\tgood\tO\nideas\tO\tideas\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nrecycle\tO\trecycle\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4223 I-Code_Block Q_4223 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34622614\tO\t34622614\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34622614/\tO\thttps://stackoverflow.com/questions/34622614/\tO\n\t\n\t\nUse\tO\tUse\tO\nAJAX B-Library AJAX O\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\nthe\tO\tthe\tO\nform B-HTML_XML_Tag form O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ninit\tO\tinit\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4934 I-Code_Block A_4934 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nElsewhere\tO\tElsewhere\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4935 I-Code_Block A_4935 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34622614\tO\t34622614\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34622614/\tO\thttps://stackoverflow.com/questions/34622614/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nways\tO\tways\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n:\tO\t:\tO\nA\tO\tA\tO\nform B-HTML_XML_Tag form O\nand\tO\tand\tO\nan\tO\tan\tO\nIframe B-HTML_XML_Tag Iframe O\n\t\nTarget\tO\tTarget\tO\nthe\tO\tthe\tO\nform B-HTML_XML_Tag form O\nto\tO\tto\tO\nthe\tO\tthe\tO\niframe B-HTML_XML_Tag iframe O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4931 I-Code_Block A_4931 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nVisually\tO\tVisually\tO\nhide\tO\thide\tO\nthe\tO\tthe\tO\niframe B-HTML_XML_Tag iframe O\nwith\tO\twith\tO\nCSS B-Language CSS O\non\tO\ton\tO\ninitial\tO\tinitial\tO\nload\tO\tload\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nvisibility B-Code_Block visibility B-Code_Block\n: I-Code_Block : I-Code_Block\nhidden I-Code_Block hidden I-Code_Block\n; I-Code_Block ; I-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ndisplay B-Code_Block display B-Code_Block\n: I-Code_Block : I-Code_Block\nnone I-Code_Block none I-Code_Block\n; I-Code_Block ; I-Code_Block\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nlatter\tO\tlatter\tO\ndestroys\tO\tdestroys\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nDOM B-Library DOM O\n.\tO\t.\tO\n\t\nPrevent\tO\tPrevent\tO\ndefault\tO\tdefault\tO\nsubmission\tO\tsubmission\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n. B-HTML_XML_Tag . O\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nform B-HTML_XML_Tag form O\nis\tO\tis\tO\nsubmitted\tO\tsubmitted\tO\n(\tO\t(\tO\nwith\tO\twith\tO\nAJAX B-Library AJAX O\n)\tO\t)\tO\n,\tO\t,\tO\nhide\tO\thide\tO\nthe\tO\tthe\tO\nform B-HTML_XML_Tag form O\nand\tO\tand\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\niframe B-HTML_XML_Tag iframe O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndialog B-User_Interface_Element dialog O\nwould\tO\twould\tO\nstill\tO\tstill\tO\nbe\tO\tbe\tO\nopen\tO\topen\tO\n.\tO\t.\tO\n\t\n2\tO\t2\tO\n:\tO\t:\tO\nA\tO\tA\tO\nform B-HTML_XML_Tag form O\nwith\tO\twith\tO\nAJAX B-Library AJAX O\n\t\nWrap\tO\tWrap\tO\nthe\tO\tthe\tO\nform B-HTML_XML_Tag form O\nin\tO\tin\tO\na\tO\ta\tO\ndiv B-HTML_XML_Tag div O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4932 I-Code_Block A_4932 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nuse\tO\tuse\tO\nAJAX B-Library AJAX O\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\nthe\tO\tthe\tO\nform B-HTML_XML_Tag form O\nand\tO\tand\tO\nshow\tO\tshow\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n#results B-HTML_XML_Tag #results O\n-container I-HTML_XML_Tag -container O\n\t\nNOTE\tO\tNOTE\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nexplain\tO\texplain\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nlogin B-User_Interface_Element login O\n.\tO\t.\tO\n\t\nDO\tO\tDO\tO\nNOT\tO\tNOT\tO\nFORGET\tO\tFORGET\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\ndefault\tO\tdefault\tO\nsubmission\tO\tsubmission\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform B-HTML_XML_Tag form O\nin\tO\tin\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexamples\tO\texamples\tO\n!\tO\t!\tO\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\njQuery B-Library jQuery O\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4933 I-Code_Block A_4933 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nYour\tO\tYour\tO\nsnippet\tO\tsnippet\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nfunctioning\tO\tfunctioning\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\n:::EDIT::\tO\t:::EDIT::\tO\n:\tO\t:\tO\n\t\nPrevent\tO\tPrevent\tO\ndefault\tO\tdefault\tO\nsubmission\tO\tsubmission\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform B-HTML_XML_Tag form O\n\t\nSend\tO\tSend\tO\na\tO\ta\tO\nPOST B-Function POST O\nrequest\tO\trequest\tO\non\tO\ton\tO\nsubmit\tO\tsubmit\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nserver B-Application server O\n\t\nRespond\tO\tRespond\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ngraph B-User_Interface_Element graph O\nimage I-User_Interface_Element image O\nurl\tO\turl\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserver B-Application server O\n\t\nReplace\tO\tReplace\tO\nthe\tO\tthe\tO\nold\tO\told\tO\ngraph B-User_Interface_Element graph O\nimage I-User_Interface_Element image O\nsrc B-HTML_XML_Tag src O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\none\tO\tone\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nmore\tO\tmore\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nout\tO\tout\tO\n?\tO\t?\tO\n\t\nEspecially\tO\tEspecially\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nJavaScript B-Language JavaScript O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44954634\tO\t44954634\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44954634/\tO\thttps://stackoverflow.com/questions/44954634/\tO\n\t\n\t\nThe\tO\tThe\tO\nassignment\tO\tassignment\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndevelop\tO\tdevelop\tO\na\tO\ta\tO\nmonitor\tO\tmonitor\tO\n,\tO\t,\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nmatchmaker B-Function matchmaker O\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\na\tO\ta\tO\nroutine\tO\troutine\tO\n:\tO\t:\tO\nself() B-Function self() O\n;\tO\t;\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\n's\tO\t's\tO\nid B-Variable id O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmatchmaker B-Function matchmaker O\nmethod\tO\tmethod\tO\nmust\tO\tmust\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nThreads\tO\tThreads\tO\nthat\tO\tthat\tO\ncall\tO\tcall\tO\nthis\tO\tthis\tO\nroutine\tO\troutine\tO\n\" B-Value \" O\ntrade I-Value trade O\n\" I-Value \" O\ntids B-Variable tids O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\na\tO\ta\tO\nthread\tO\tthread\tO\nA\tO\tA\tO\ncalls\tO\tcalls\tO\nmake_match() B-Function make_match() O\nand\tO\tand\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nB B-Value B O\nis\tO\tis\tO\nreturned\tO\treturned\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthat\tO\tthat\tO\nthread\tO\tthread\tO\nID B-Variable ID O\nB B-Value B O\nalso\tO\talso\tO\ncalled\tO\tcalled\tO\nthe\tO\tthe\tO\nmake_match B-Function make_match O\nroutine\tO\troutine\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\na\tO\ta\tO\npair\tO\tpair\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nmake_match() B-Function make_match() O\ncan\tO\tcan\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\nsleep\tO\tsleep\tO\n,\tO\t,\tO\nat\tO\tat\tO\nwill\tO\twill\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nmutex\tO\tmutex\tO\nand\tO\tand\tO\ncondition\tO\tcondition\tO\nvariables\tO\tvariables\tO\npthread.h B-File_Name pthread.h O\nmustbe\tO\tmustbe\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\ncame\tO\tcame\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nbut\tO\tbut\tO\nbecause\tO\tbecause\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nwritten\tO\twritten\tO\nassignment\tO\tassignment\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nevaluate\tO\tevaluate\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncorrectness\tO\tcorrectness\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nsome\tO\tsome\tO\nfeedback\tO\tfeedback\tO\non\tO\ton\tO\nwether\tO\twether\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nwork\tO\twork\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5854 I-Code_Block Q_5854 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45791902\tO\t45791902\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45791902/\tO\thttps://stackoverflow.com/questions/45791902/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nRg.Plugins.Popup B-Class Rg.Plugins.Popup O\nfor\tO\tfor\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nconfirmation\tO\tconfirmation\tO\npopup B-User_Interface_Element popup O\nbefore\tO\tbefore\tO\ndeleting\tO\tdeleting\tO\nan\tO\tan\tO\nitem\tO\titem\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nlike\tO\tlike\tO\n\" B-Value \" O\nAre I-Value Are O\nyou I-Value you O\nsure I-Value sure O\nyou I-Value you O\nwant I-Value want O\nto I-Value to O\ndelete I-Value delete O\nItem1 I-Value Item1 O\nfrom I-Value from O\nthe I-Value the O\nlist I-Value list O\n? I-Value ? O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\npause\tO\tpause\tO\nthe\tO\tthe\tO\ndeleting B-Function deleting O\nmethod\tO\tmethod\tO\ntill\tO\ttill\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\nconfirmation\tO\tconfirmation\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npopup B-User_Interface_Element popup O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5997 I-Code_Block Q_5997 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45791902\tO\t45791902\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45791902/\tO\thttps://stackoverflow.com/questions/45791902/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nTaskCompletionSource B-Class TaskCompletionSource O\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ncreate\tO\tcreate\tO\nPopupAlert B-Class PopupAlert B-Code_Block\npage\tO\tpage\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nasync B-Data_Type async O\nShow B-Class Show B-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6656 I-Code_Block A_6656 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\n,\tO\t,\tO\nusage\tO\tusage\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6657 I-Code_Block A_6657 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45791902\tO\t45791902\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45791902/\tO\thttps://stackoverflow.com/questions/45791902/\tO\n\t\n\t\nWhy\tO\tWhy\tO\nnot\tO\tnot\tO\nleverage\tO\tleverage\tO\nMessagingCenter B-Class MessagingCenter O\nto\tO\tto\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nremove\tO\tremove\tO\nsaid\tO\tsaid\tO\nitem B-Variable item O\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nsubscribe\tO\tsubscribe\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nwhen\tO\twhen\tO\ndisplaying\tO\tdisplaying\tO\nthe\tO\tthe\tO\npopup B-User_Interface_Element popup O\nand\tO\tand\tO\nreceive\tO\treceive\tO\nit\tO\tit\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nconfirm\tO\tconfirm\tO\nbutton B-User_Interface_Element button O\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23042401\tO\t23042401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23042401/\tO\thttps://stackoverflow.com/questions/23042401/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nseveral\tO\tseveral\tO\nmat B-File_Type mat O\nfile\tO\tfile\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\nfirst.mat B-File_Name first.mat O\n,\tO\t,\tO\nsecond.mat B-File_Name second.mat O\n,\tO\t,\tO\nthird.mat B-File_Name third.mat O\n,..\tO\t,..\tO\n.\tO\t.\tO\n\t\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nfiles\tO\tfiles\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncontent\tO\tcontent\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\nvariable1 B-Variable variable1 O\n<3400x1 B-Value <3400x1 O\ndouble> B-Data_Type double> O\n,\tO\t,\tO\nvariable2<1143x1 B-Variable variable2<1143x1 O\ndouble> B-Data_Type double> O\n,\tO\t,\tO\nvariable3<1141x1 B-Variable variable3<1141x1 O\ndouble> B-Data_Type double> O\n,\tO\t,\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nall\tO\tall\tO\nmat B-File_Type mat O\nfiles\tO\tfiles\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncontent\tO\tcontent\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\neach\tO\teach\tO\nvariable\tO\tvariable\tO\nin\tO\tin\tO\neach\tO\teach\tO\nmat B-File_Type mat O\nfile\tO\tfile\tO\nis\tO\tis\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconcatenate\tO\tconcatenate\tO\nall\tO\tall\tO\nsame\tO\tsame\tO\nvariables\tO\tvariables\tO\nin\tO\tin\tO\nall\tO\tall\tO\nmat B-File_Type mat O\nfiles\tO\tfiles\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nhave\tO\thave\tO\njust\tO\tjust\tO\none\tO\tone\tO\nmat B-File_Type mat O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\ncan\tO\tcan\tO\nsomebody\tO\tsomebody\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\nwhich\tO\twhich\tO\nfunction\tO\tfunction\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n?\tO\t?\tO\n\t\nMany\tO\tMany\tO\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23042401\tO\t23042401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23042401/\tO\thttps://stackoverflow.com/questions/23042401/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nmatlab B-Language matlab O\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nall\tO\tall\tO\nindividual\tO\tindividual\tO\nvectors B-Data_Structure vectors O\n,\tO\t,\tO\ncombine\tO\tcombine\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nthem\tO\tthem\tO\nback\tO\tback\tO\nto\tO\tto\tO\ndisk B-Device disk O\n.\tO\t.\tO\n\t\nSomething\tO\tSomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nuntested\tO\tuntested\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3118 I-Code_Block A_3118 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23042401\tO\t23042401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23042401/\tO\thttps://stackoverflow.com/questions/23042401/\tO\n\t\n\t\nThanks\tO\tThanks\tO\nall\tO\tall\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nanswers\tO\tanswers\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3119 I-Code_Block A_3119 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9612174\tO\t9612174\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9612174/\tO\thttps://stackoverflow.com/questions/9612174/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nplaying\tO\tplaying\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ngoogle B-Website google O\nexpansion\tO\texpansion\tO\npack\tO\tpack\tO\nstuff\tO\tstuff\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ngoogle\tO\tgoogle\tO\nlibrary\tO\tlibrary\tO\nproject\tO\tproject\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndownloader\tO\tdownloader\tO\nhas\tO\thas\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nvalues-v9/styles.xml B-File_Name values-v9/styles.xml O\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nnotification B-User_Interface_Element notification O\ntext\tO\ttext\tO\nproperties\tO\tproperties\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncauses\tO\tcauses\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\nis\tO\tis\tO\npreAPI9 B-Library preAPI9 O\n..\tO\t..\tO\n.\tO\t.\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nreferring\tO\treferring\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nstyle\tO\tstyle\tO\nstuff\tO\tstuff\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\nappeared\tO\tappeared\tO\nin\tO\tin\tO\napi9 B-Library api9 O\n. B-Version . O\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nsetting\tO\tsetting\tO\n\t\n<uses-sdk B-Code_Block <uses-sdk O\nandroid:minSdkVersion=\"8\" I-Code_Block android:minSdkVersion=\"8\" O\nandroid:targetSdkVersion=\"9\" B-Code_Block android:targetSdkVersion=\"9\" O\n/> I-Code_Block /> O\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nAndroidManifest.xml B-File_Name AndroidManifest.xml O\nof\tO\tof\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\n(\tO\t(\tO\nnaively\tO\tnaively\tO\n)\tO\t)\tO\nhope\tO\thope\tO\neclipse B-Application eclipse O\nwould\tO\twould\tO\njust\tO\tjust\tO\nignore\tO\tignore\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nif\tO\tif\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nbuilding\tO\tbuilding\tO\nfor\tO\tfor\tO\napi8 B-Library api8 O\n, B-Version , O\nand\tO\tand\tO\nthen\tO\tthen\tO\nwhen\tO\twhen\tO\ndeployed\tO\tdeployed\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmarket\tO\tmarket\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nvalues-9 B-File_Name values-9 O\nstuff\tO\tstuff\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nphone\tO\tphone\tO\nwere\tO\twere\tO\nat\tO\tat\tO\nor\tO\tor\tO\nabove\tO\tabove\tO\nthat\tO\tthat\tO\nlevel\tO\tlevel\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nthat\tO\tthat\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhoping\tO\thoping\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\ntrivial\tO\ttrivial\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nbtw\tO\tbtw\tO\n-\tO\t-\tO\nhere\tO\there\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nspecific\tO\tspecific\tO\nerrors\tO\terrors\tO\n\t\nDescription B-Output_Block Description O\nResource I-Output_Block Resource O\nPath I-Output_Block Path O\nLocation I-Output_Block Location O\nType I-Output_Block Type O\n\t\nerror B-Output_Block error O\n: I-Output_Block : O\nError I-Output_Block Error O\nretrieving I-Output_Block retrieving O\nparent I-Output_Block parent O\nfor I-Output_Block for O\nitem I-Output_Block item O\n: I-Output_Block : O\nNo I-Output_Block No O\nresource I-Output_Block resource O\nfound I-Output_Block found O\nthat I-Output_Block that O\nmatches I-Output_Block matches O\nthe I-Output_Block the O\ngiven I-Output_Block given O\nname I-Output_Block name O\n' I-Output_Block ' O\nandroid:TextAppearance.StatusBar.EventContent.Title I-Output_Block android:TextAppearance.StatusBar.EventContent.Title O\n' I-Output_Block ' O\n. I-Output_Block . O\n\t\nstyles.xml B-Output_Block styles.xml O\n/Google I-Output_Block /Google O\nPlay I-Output_Block Play O\nDownloader I-Output_Block Downloader O\nLibrary/res/values I-Output_Block Library/res/values O\n-v9 I-Output_Block -v9 O\nline I-Output_Block line O\n4 I-Output_Block 4 O\nAndroid I-Output_Block Android O\nAAPT I-Output_Block AAPT O\nProblem I-Output_Block Problem O\n\t\nDescription B-Output_Block Description O\nResource I-Output_Block Resource O\nPath I-Output_Block Path O\nLocation I-Output_Block Location O\nType I-Output_Block Type O\n\t\nerror B-Output_Block error O\n: I-Output_Block : O\nError I-Output_Block Error O\nretrieving I-Output_Block retrieving O\nparent I-Output_Block parent O\nfor I-Output_Block for O\nitem I-Output_Block item O\n: I-Output_Block : O\nNo I-Output_Block No O\nresource I-Output_Block resource O\nfound I-Output_Block found O\nthat I-Output_Block that O\nmatches I-Output_Block matches O\nthe I-Output_Block the O\ngiven I-Output_Block given O\nname I-Output_Block name O\n' I-Output_Block ' O\nandroid:TextAppearance.StatusBar.EventContent.Title I-Output_Block android:TextAppearance.StatusBar.EventContent.Title O\n' I-Output_Block ' O\n.\tO\t.\tO\n\t\nstyles.xml B-Output_Block styles.xml O\n/Google I-Output_Block /Google O\nPlay I-Output_Block Play O\nDownloader I-Output_Block Downloader O\nLibrary/res/values I-Output_Block Library/res/values O\n-v9 I-Output_Block -v9 O\nline I-Output_Block line O\n4 I-Output_Block 4 O\nAndroid I-Output_Block Android O\nAAPT I-Output_Block AAPT O\nProblem I-Output_Block Problem O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9612174\tO\t9612174\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9612174/\tO\thttps://stackoverflow.com/questions/9612174/\tO\n\t\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nalso\tO\talso\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nposted\tO\tposted\tO\na\tO\ta\tO\nrelated\tO\trelated\tO\nquestion\tO\tquestion\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nAndroid B-Operating_System Android O\napk B-File_Type apk O\nexpansion I-File_Type expansion O\nfile\tO\tfile\tO\nlibs\tO\tlibs\tO\nproblems\tO\tproblems\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstumped\tO\tstumped\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndeleted\tO\tdeleted\tO\nthe\tO\tthe\tO\nvalues-v9 B-File_Name values-v9 O\nfolder\tO\tfolder\tO\nand\tO\tand\tO\nrebuilt\tO\trebuilt\tO\neverything\tO\teverything\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nDownloadManager B-Application DownloadManager O\nis\tO\tis\tO\nnow\tO\tnow\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9612174\tO\t9612174\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9612174/\tO\thttps://stackoverflow.com/questions/9612174/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfixed\tO\tfixed\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nby\tO\tby\tO\nbuilding\tO\tbuilding\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncommands\tO\tcommands\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2730 I-Code_Block A_2730 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\ncommand\tO\tcommand\tO\ntells\tO\ttells\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nAndroid B-Operating_System Android O\n2.3.3 B-Version 2.3.3 O\ntoolchain\tO\ttoolchain\tO\nfor\tO\tfor\tO\nbuiding\tO\tbuiding\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nandroid:minSdkVersion B-Code_Block android:minSdkVersion O\n= I-Code_Block = O\n\" I-Code_Block \" O\n8 I-Code_Block 8 O\n\" I-Code_Block \" O\nin\tO\tin\tO\nAndroidManifest.xml B-File_Name AndroidManifest.xml O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\nvalues-v9/ B-File_Name values-v9/ O\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nRemoving\tO\tRemoving\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ncause\tO\tcause\tO\ndisplaying\tO\tdisplaying\tO\nnotification B-User_Interface_Element notification O\nwith\tO\twith\tO\ndark B-User_Interface_Element dark O\nfont I-User_Interface_Element font O\non\tO\ton\tO\ndark B-User_Interface_Element dark O\nbackground I-User_Interface_Element background O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35238771\tO\t35238771\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35238771/\tO\thttps://stackoverflow.com/questions/35238771/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ntoolbar B-User_Interface_Element toolbar O\nas\tO\tas\tO\nthe\tO\tthe\tO\naction B-User_Interface_Element action O\nbar I-User_Interface_Element bar O\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\ngetting\tO\tgetting\tO\nanything\tO\tanything\tO\nbesides\tO\tbesides\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nToolbar B-User_Interface_Element Toolbar O\nfrom\tO\tfrom\tO\nappcompat B-Library appcompat O\nand\tO\tand\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\nthe\tO\tthe\tO\nmenu B-File_Name menu O\nxml I-File_Name xml O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nnecessary\tO\tnecessary\tO\nstep\tO\tstep\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nlink\tO\tlink\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nactivity B-File_Name activity O\nxml I-File_Name xml O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4316 I-Code_Block Q_4316 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\ntoolbar B-User_Interface_Element toolbar O\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlayout\tO\tlayout\tO\ncorrectly\tO\tcorrectly\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nits\tO\tits\tO\nsize\tO\tsize\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nreflected\tO\treflected\tO\ncorrectly\tO\tcorrectly\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nruns\tO\truns\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nxml B-Language xml O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nmenu B-HTML_XML_Tag menu O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4317 I-Code_Block Q_4317 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nthing\tO\tthing\tO\nthat\tO\tthat\tO\nshows\tO\tshows\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\naction B-User_Interface_Element action O\nbar I-User_Interface_Element bar O\n:\tO\t:\tO\n\t\nJust\tO\tJust\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nclear\tO\tclear\tO\nI\tO\tI\tO\nam\tO\tam\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nfollowing\tO\tfollowing\tO\nthis\tO\tthis\tO\ntutorial\tO\ttutorial\tO\nexactly\tO\texactly\tO\n:\tO\t:\tO\n\t\nhttp://developer.android.com/training/appbar/index.html\tO\thttp://developer.android.com/training/appbar/index.html\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n,\tO\t,\tO\nthank\tO\tthank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35238771\tO\t35238771\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35238771/\tO\thttps://stackoverflow.com/questions/35238771/\tO\n\t\n\t\nadd\tO\tadd\tO\nbelow\tO\tbelow\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nyou\tO\tyou\tO\nactivity B-File_Name activity O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5038 I-Code_Block A_5038 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33803125\tO\t33803125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33803125/\tO\thttps://stackoverflow.com/questions/33803125/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nSLIDE\tO\tSLIDE\tO\nUP\tO\tUP\tO\nanimation B-Class animation O\non\tO\ton\tO\nview\tO\tview\tO\nand\tO\tand\tO\ni\tO\ti\tO\nam\tO\tam\tO\nrepeating\tO\trepeating\tO\nthis\tO\tthis\tO\nanimation B-Class animation O\nagain\tO\tagain\tO\nonAnimationEnd B-Function onAnimationEnd O\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nonAnimationEnd B-Function onAnimationEnd O\nfired\tO\tfired\tO\ntwice\tO\ttwice\tO\n,\tO\t,\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nchecked\tO\tchecked\tO\nit\tO\tit\tO\nwith\tO\twith\tO\ncounter B-Variable counter O\nat\tO\tat\tO\nonAnimationEnd B-Function onAnimationEnd O\n,\tO\t,\tO\ni\tO\ti\tO\nwill\tO\twill\tO\npost\tO\tpost\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncounter B-Variable counter O\nin\tO\tin\tO\nonAnimationEnd B-Function onAnimationEnd O\nwill\tO\twill\tO\nincremented\tO\tincremented\tO\ntwice\tO\ttwice\tO\nat\tO\tat\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nstarting\tO\tstarting\tO\nthe\tO\tthe\tO\nanimation B-Class animation O\nagain\tO\tagain\tO\nin\tO\tin\tO\nonAnimationEnd B-Function onAnimationEnd O\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nguide\tO\tguide\tO\nme\tO\tme\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4121 I-Code_Block Q_4121 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33803125\tO\t33803125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33803125/\tO\thttps://stackoverflow.com/questions/33803125/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nyour\tO\tyour\tO\nanimation B-Class animation O\nto\tO\tto\tO\nplay\tO\tplay\tO\nonce\tO\tonce\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\ntickerView.startAnimation(animSlideUp) B-Code_Block tickerView.startAnimation(animSlideUp) O\n; I-Code_Block ; O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nonAnimationEnd B-Function onAnimationEnd O\nMethod\tO\tMethod\tO\n.\tO\t.\tO\n\t\nAvoid\tO\tAvoid\tO\nusing\tO\tusing\tO\nxml B-Language xml O\nanimations B-Class animations O\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nmuch\tO\tmuch\tO\neasier\tO\teasier\tO\nin\tO\tin\tO\njava B-Language java O\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nanimate\tO\tanimate\tO\ntwo\tO\ttwo\tO\nproperties\tO\tproperties\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4836 I-Code_Block A_4836 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nonly\tO\tonly\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nscaleY B-Variable scaleY O\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\n1.0 B-Value 1.0 O\nto\tO\tto\tO\n0 B-Value 0 O\n,\tO\t,\tO\nso\tO\tso\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4837 I-Code_Block A_4837 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nLinearInterpolator B-Class LinearInterpolator O\nis\tO\tis\tO\nused\tO\tused\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nRepeat\tO\tRepeat\tO\nafter\tO\tafter\tO\nevery\tO\tevery\tO\n5\tO\t5\tO\nsec\tO\tsec\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4838 I-Code_Block A_4838 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33803125\tO\t33803125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33803125/\tO\thttps://stackoverflow.com/questions/33803125/\tO\n\t\n\t\nI\tO\tI\tO\nmay\tO\tmay\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\n:\tO\t:\tO\npost\tO\tpost\tO\nan\tO\tan\tO\nrunnable\tO\trunnable\tO\nto\tO\tto\tO\nrestart\tO\trestart\tO\nthe\tO\tthe\tO\nanimation B-Class animation O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nin\tO\tin\tO\nOnAnimationEnd() B-Function OnAnimationEnd() B-Code_Block\nfunction\tO\tfunction\tO\n,\tO\t,\tO\ncode\tO\tcode\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5845 I-Code_Block A_5845 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7222352\tO\t7222352\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7222352/\tO\thttps://stackoverflow.com/questions/7222352/\tO\n\t\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nin\tO\tin\tO\nFirebug B-Application Firebug O\nor\tO\tor\tO\nother\tO\tother\tO\nsoftware\tO\tsoftware\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\na\tO\ta\tO\ndiv B-HTML_XML_Tag div O\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nreplaced\tO\treplaced\tO\nwith\tO\twith\tO\najax B-Library ajax O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7222352\tO\t7222352\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7222352/\tO\thttps://stackoverflow.com/questions/7222352/\tO\n\t\n\t\nyes\tO\tyes\tO\n\t\nfirebug B-Application firebug O\nmarks\tO\tmarks\tO\nthe\tO\tthe\tO\nchanged\tO\tchanged\tO\ndiv B-HTML_XML_Tag div O\nin\tO\tin\tO\nyellow B-Value yellow O\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nhtml B-Language html O\ndynamic\tO\tdynamic\tO\nupdates\tO\tupdates\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nhtml B-Language html O\nview\tO\tview\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7222352\tO\t7222352\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7222352/\tO\thttps://stackoverflow.com/questions/7222352/\tO\n\t\n\t\nSure\tO\tSure\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ninspect\tO\tinspect\tO\nthe\tO\tthe\tO\nDOM B-Library DOM O\nwith\tO\twith\tO\nFireBug B-Application FireBug O\nwhich\tO\twhich\tO\nalways\tO\talways\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nDOM B-Library DOM O\nat\tO\tat\tO\nits\tO\tits\tO\nmost\tO\tmost\tO\nrecent\tO\trecent\tO\nstate\tO\tstate\tO\n(\tO\t(\tO\nand\tO\tand\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\naccounts\tO\taccounts\tO\nfor\tO\tfor\tO\nAJAX B-Library AJAX O\nupdates\tO\tupdates\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18830315\tO\t18830315\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18830315/\tO\thttps://stackoverflow.com/questions/18830315/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nOSX B-Operating_System OSX O\napp\tO\tapp\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\nsplit\tO\tsplit\tO\nview\tO\tview\tO\n(\tO\t(\tO\ntop\tO\ttop\tO\nto\tO\tto\tO\nbottom\tO\tbottom\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nview\tO\tview\tO\nof\tO\tof\tO\nsplit\tO\tsplit\tO\nview\tO\tview\tO\nis\tO\tis\tO\na\tO\ta\tO\nNSTabview B-Class NSTabview O\nhaving\tO\thaving\tO\nthree\tO\tthree\tO\ntabs B-User_Interface_Element tabs O\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nlooks\tO\tlooks\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\nNSTabview B-Class NSTabview O\nis\tO\tis\tO\nnot\tO\tnot\tO\nshowing\tO\tshowing\tO\ntabs B-User_Interface_Element tabs O\nbars I-User_Interface_Element bars O\n(\tO\t(\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ntabless\tO\ttabless\tO\n)\tO\t)\tO\nhowever\tO\thowever\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\naround\tO\taround\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nand\tO\tand\tO\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nother\tO\tother\tO\ntabs B-User_Interface_Element tabs O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35329386\tO\t35329386\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35329386/\tO\thttps://stackoverflow.com/questions/35329386/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\nan\tO\tan\tO\nimage B-User_Interface_Element image O\neditor\tO\teditor\tO\non\tO\ton\tO\nQt B-Library Qt O\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\ndisplaying\tO\tdisplaying\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\non\tO\ton\tO\nthe\tO\tthe\tO\ngraphicsView B-Class graphicsView B-Code_Block\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\n,\tO\t,\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nfitInView B-Function fitInView B-Code_Block\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nfits\tO\tfits\tO\nnicely\tO\tnicely\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ngraphicsView B-Class graphicsView B-Code_Block\nand\tO\tand\tO\nhere\tO\there\tO\nlies\tO\tlies\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nmaximize\tO\tmaximize\tO\nthe\tO\tthe\tO\nwindow B-User_Interface_Element window O\nthe\tO\tthe\tO\ngraphics\tO\tgraphics\tO\nview\tO\tview\tO\nsize\tO\tsize\tO\nchanges\tO\tchanges\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\na\tO\ta\tO\nhorizontal\tO\thorizontal\tO\nlayout\tO\tlayout\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nsome\tO\tsome\tO\nimages B-User_Interface_Element images O\nabout\tO\tabout\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntalking\tO\ttalking\tO\nabout\tO\tabout\tO\n:\tO\t:\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nwindow B-User_Interface_Element window O\nis\tO\tis\tO\nalready\tO\talready\tO\nmaximized\tO\tmaximized\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nall\tO\tall\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nfitInView B-Function fitInView B-Code_Block\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nwindow B-User_Interface_Element window O\nget\tO\tget\tO\nmaximized\tO\tmaximized\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35329386\tO\t35329386\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35329386/\tO\thttps://stackoverflow.com/questions/35329386/\tO\n\t\n\t\nQuite\tO\tQuite\tO\neasy\tO\teasy\tO\n,\tO\t,\tO\njust\tO\tjust\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\nresizeEvent B-Class resizeEvent O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nworking\tO\tworking\tO\ncode\tO\tcode\tO\nrelies\tO\trelies\tO\non\tO\ton\tO\nQGraphicsView B-Class QGraphicsView O\nand\tO\tand\tO\nQGraphicsScene B-Class QGraphicsScene O\n,\tO\t,\tO\nzoom\tO\tzoom\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n;)\tO\t;)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5058 I-Code_Block A_5058 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41641771\tO\t41641771\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41641771/\tO\thttps://stackoverflow.com/questions/41641771/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nshare\tO\tshare\tO\nimages B-User_Interface_Element images O\nto\tO\tto\tO\nInstagram B-Application Instagram O\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nown\tO\town\tO\niOS B-Operating_System iOS O\napp\tO\tapp\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nKingfisher B-Library Kingfisher O\nthroughout\tO\tthroughout\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nand\tO\tand\tO\ncache\tO\tcache\tO\nimages B-User_Interface_Element images O\nand\tO\tand\tO\nshow\tO\tshow\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nUIImageViews B-Class UIImageViews O\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nresponse\tO\tresponse\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nAPI\tO\tAPI\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nof\tO\tof\tO\nan\tO\tan\tO\nimage B-User_Interface_Element image O\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\n\t\nDownload\tO\tDownload\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nto\tO\tto\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nquestions\tO\tquestions\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nobjective-C B-Language objective-C O\nusing\tO\tusing\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5286 I-Code_Block Q_5286 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nSwift B-Language Swift O\n.\tO\t.\tO\n\t\nRename\tO\tRename\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n.igo B-File_Type .igo O\nextension\tO\textension\tO\n(\tO\t(\tO\ninstagram B-Application instagram O\nexclusive\tO\texclusive\tO\n)\tO\t)\tO\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nwould\tO\twould\tO\ndepend\tO\tdepend\tO\non\tO\ton\tO\nnumber\tO\tnumber\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nshare\tO\tshare\tO\nit\tO\tit\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5287 I-Code_Block Q_5287 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ninstagram B-Application instagram O\nhooks\tO\thooks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5288 I-Code_Block Q_5288 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDocumentation\tO\tDocumentation\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nscarce\tO\tscarce\tO\nspecially\tO\tspecially\tO\nfor\tO\tfor\tO\nSwift B-Language Swift O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\na\tO\ta\tO\npush\tO\tpush\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ndirection\tO\tdirection\tO\nis\tO\tis\tO\nall\tO\tall\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41641771\tO\t41641771\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41641771/\tO\thttps://stackoverflow.com/questions/41641771/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nnavigation B-User_Interface_Element navigation O\ncontroller I-User_Interface_Element controller O\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nUIBarButtonItem B-Class UIBarButtonItem O\nset\tO\tset\tO\nto\tO\tto\tO\nSystem\tO\tSystem\tO\nitem\tO\titem\tO\n\" B-Value \" O\nAction I-Value Action O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\ncreated\tO\tcreated\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nIBAction B-Class IBAction O\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5967 I-Code_Block A_5967 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nexcludedActivityTypes B-Function excludedActivityTypes O\nlist B-Data_Structure list O\nis\tO\tis\tO\na\tO\ta\tO\ncomplete/exhaustive\tO\tcomplete/exhaustive\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\navailable\tO\tavailable\tO\nUIActivityTypes B-Class UIActivityTypes O\ngleaned\tO\tgleaned\tO\nfrom\tO\tfrom\tO\ncode-complete\tO\tcode-complete\tO\nor\tO\tor\tO\ncommand-clicking\tO\tcommand-clicking\tO\non\tO\ton\tO\nUIActivity B-Class UIActivity O\ntype\tO\ttype\tO\nand\tO\tand\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nstruct B-Data_Structure struct O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuncomment\tO\tuncomment\tO\nthose\tO\tthose\tO\nI\tO\tI\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nexclude\tO\texclude\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nleave\tO\tleave\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nfor\tO\tfor\tO\nquick\tO\tquick\tO\nreference\tO\treference\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\npopup B-User_Interface_Element popup O\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41641771\tO\t41641771\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41641771/\tO\thttps://stackoverflow.com/questions/41641771/\tO\n\t\n\t\nIt\tO\tIt\tO\nsounds\tO\tsounds\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nalready\tO\talready\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nKingfisher B-Library Kingfisher O\nand\tO\tand\tO\nretrieving\tO\tretrieving\tO\nthe\tO\tthe\tO\nUIImage B-Class UIImage O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nabout\tO\tabout\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nis\tO\tis\tO\ninformation\tO\tinformation\tO\nfor\tO\tfor\tO\nsaving\tO\tsaving\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nto\tO\tto\tO\nthe\tO\tthe\tO\ndocuments\tO\tdocuments\tO\ndirectory\tO\tdirectory\tO\nand\tO\tand\tO\nretrieving\tO\tretrieving\tO\nit\tO\tit\tO\nto\tO\tto\tO\nshare\tO\tshare\tO\n.\tO\t.\tO\n\t\nRetrieve\tO\tRetrieve\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ndirectory\tO\tdirectory\tO\nURL\tO\tURL\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5968 I-Code_Block A_5968 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSaving\tO\tSaving\tO\nan\tO\tan\tO\nimage B-User_Interface_Element image O\nto\tO\tto\tO\nthat\tO\tthat\tO\ndirectory\tO\tdirectory\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5969 I-Code_Block A_5969 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nRetrieving\tO\tRetrieving\tO\nan\tO\tan\tO\nimage B-User_Interface_Element image O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5970 I-Code_Block A_5970 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSharing\tO\tSharing\tO\nan\tO\tan\tO\nimage B-User_Interface_Element image O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5971 I-Code_Block A_5971 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nUse\tO\tUse\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5972 I-Code_Block A_5972 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nas\tO\tas\tO\nDFD B-User_Name DFD O\npointed\tO\tpointed\tO\nout\tO\tout\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nexclude\tO\texclude\tO\ncertain\tO\tcertain\tO\nitems\tO\titems\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nshare\tO\tshare\tO\nVC\tO\tVC\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nallow\tO\tallow\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22814259\tO\t22814259\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22814259/\tO\thttps://stackoverflow.com/questions/22814259/\tO\n\t\n\t\nIn\tO\tIn\tO\nour\tO\tour\tO\napplication\tO\tapplication\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nGDI+ B-Library GDI+ O\nobjects\tO\tobjects\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nused\tO\tused\tO\noften\tO\toften\tO\nin\tO\tin\tO\nmany\tO\tmany\tO\ndifferent\tO\tdifferent\tO\ncontexts\tO\tcontexts\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nincludes\tO\tincludes\tO\nsome\tO\tsome\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nFont B-Class Font B-Code_Block\n,\tO\t,\tO\nSolidBrush B-Class SolidBrush B-Code_Block\n(\tO\t(\tO\nWhite B-Value White O\n,\tO\t,\tO\nBlack. B-Value Black. O\n.\tO\t.\tO\n)\tO\t)\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nPen. B-Class Pen. B-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthose\tO\tthose\tO\nobjects\tO\tobjects\tO\nour\tO\tour\tO\nstrategy\tO\tstrategy\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nto\tO\tto\tO\nhold\tO\thold\tO\nthem\tO\tthem\tO\nthrough\tO\tthrough\tO\nwidely\tO\twidely\tO\nvisible\tO\tvisible\tO\nstatic B-Data_Type static O\nread-only\tO\tread-only\tO\nfields\tO\tfields\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\navoids\tO\tavoids\tO\nto\tO\tto\tO\ncreate/dispose\tO\tcreate/dispose\tO\nthem\tO\tthem\tO\nmillions\tO\tmillions\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\ntook\tO\ttook\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nthread-safety\tO\tthread-safety\tO\naccesses\tO\taccesses\tO\non\tO\ton\tO\nthese\tO\tthese\tO\nobject\tO\tobject\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n(\tO\t(\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\njust\tO\tjust\tO\naccessed\tO\taccessed\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthread\tO\tthread\tO\nbasically\tO\tbasically\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\njust\tO\tjust\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nGDI+ B-Library GDI+ O\nobjects\tO\tobjects\tO\nhold\tO\thold\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlifetime\tO\tlifetime\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\nlike\tO\tlike\tO\n200\tO\t200\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nothers\tO\tothers\tO\nGDI+ B-Library GDI+ O\nobjects\tO\tobjects\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nones\tO\tones\tO\nwith\tO\twith\tO\nshort-life\tO\tshort-life\tO\n)\tO\t)\tO\nare\tO\tare\tO\nall\tO\tall\tO\ndisposed\tO\tdisposed\tO\nasap\tO\tasap\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwe\tO\twe\tO\nsometime\tO\tsometime\tO\nget\tO\tget\tO\nunexpected\tO\tunexpected\tO\nGDI+ B-Library GDI+ O\nresources\tO\tresources\tO\noutage\tO\toutage\tO\nexception B-Class exception O\n,\tO\t,\tO\nhopefully\tO\thopefully\tO\nrarely\tO\trarely\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nthese\tO\tthese\tO\nexceptions B-Class exceptions O\ncould\tO\tcould\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\nthese\tO\tthese\tO\nfew\tO\tfew\tO\nGDI+ B-Library GDI+ O\nobjects\tO\tobjects\tO\nhold\tO\thold\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nwiser\tO\twiser\tO\nstrategy\tO\tstrategy\tO\nto\tO\tto\tO\ncreate/dispose\tO\tcreate/dispose\tO\ntons\tO\ttons\tO\nof\tO\tof\tO\nshort-life\tO\tshort-life\tO\nGDI+ B-Library GDI+ O\nobjects\tO\tobjects\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nhave\tO\thave\tO\nreal-world\tO\treal-world\tO\nexperience\tO\texperience\tO\nand\tO\tand\tO\nrelevant\tO\trelevant\tO\nconclusions\tO\tconclusions\tO\nabout\tO\tabout\tO\ntheses\tO\ttheses\tO\ntwo\tO\ttwo\tO\nstrategies\tO\tstrategies\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22814259\tO\t22814259\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22814259/\tO\thttps://stackoverflow.com/questions/22814259/\tO\n\t\n\t\nCaching\tO\tCaching\tO\nSystem.Drawing B-Class System.Drawing O\nobjects\tO\tobjects\tO\nis\tO\tis\tO\na\tO\ta\tO\nmistake\tO\tmistake\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\ncheap\tO\tcheap\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\n,\tO\t,\tO\nvery\tO\tvery\tO\nexpensive\tO\texpensive\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\naround\tO\taround\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nare\tO\tare\tO\nallocated\tO\tallocated\tO\non\tO\ton\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nheap B-Data_Structure heap O\nthat\tO\tthat\tO\nall\tO\tall\tO\nprocesses\tO\tprocesses\tO\non\tO\ton\tO\na\tO\ta\tO\ndesktop B-Device desktop O\nneed\tO\tneed\tO\nto\tO\tto\tO\nshare\tO\tshare\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nheap B-Data_Structure heap O\nsize\tO\tsize\tO\nis\tO\tis\tO\nlimited\tO\tlimited\tO\nto\tO\tto\tO\n65535\tO\t65535\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nCreating\tO\tCreating\tO\nobjects\tO\tobjects\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nbrush B-Class brush O\nor\tO\tor\tO\na\tO\ta\tO\npen B-Class pen O\ntakes\tO\ttakes\tO\nroughly\tO\troughly\tO\na\tO\ta\tO\nmicrosecond\tO\tmicrosecond\tO\n,\tO\t,\tO\nminiscule\tO\tminiscule\tO\ncompared\tO\tcompared\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncost\tO\tcost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noperation\tO\toperation\tO\nyou\tO\tyou\tO\nperform\tO\tperform\tO\nwith\tO\twith\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\ndrawing\tO\tdrawing\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nexpensive\tO\texpensive\tO\nis\tO\tis\tO\na\tO\ta\tO\nFont B-Class Font O\n.\tO\t.\tO\n\t\nCreating\tO\tCreating\tO\none\tO\tone\tO\ninvolves\tO\tinvolves\tO\na\tO\ta\tO\nsizable\tO\tsizable\tO\nchunk\tO\tchunk\tO\nof\tO\tof\tO\noverhead\tO\toverhead\tO\ntaken\tO\ttaken\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nfont B-Class font O\nmapper\tO\tmapper\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nalready\tO\talready\tO\nsolved\tO\tsolved\tO\nby\tO\tby\tO\n.NET B-Library .NET O\n,\tO\t,\tO\nit\tO\tit\tO\ncaches\tO\tcaches\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nthan\tO\tthan\tO\nhogging\tO\thogging\tO\nthe\tO\tthe\tO\nheap B-Data_Structure heap O\nneedlessly\tO\tneedlessly\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nprogramming\tO\tprogramming\tO\nstyle\tO\tstyle\tO\nis\tO\tis\tO\ndangerous\tO\tdangerous\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nfar\tO\tfar\tO\ntoo\tO\ttoo\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nforget\tO\tforget\tO\nblindly\tO\tblindly\tO\napplying\tO\tapplying\tO\nthe\tO\tthe\tO\nusing\tO\tusing\tO\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncertainly\tO\tcertainly\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nyou\tO\tyou\tO\ninto\tO\tinto\tO\ntrouble\tO\ttrouble\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nrelying\tO\trelying\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfinalizer\tO\tfinalizer\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\nrelease\tO\trelease\tO\nthem\tO\tthem\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\ninvolves\tO\tinvolves\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nheavy\tO\theavy\tO\npainting\tO\tpainting\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nenough\tO\tenough\tO\nobject\tO\tobject\tO\nallocation\tO\tallocation\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\nGC\tO\tGC\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nexhaust\tO\texhaust\tO\nthe\tO\tthe\tO\nquota\tO\tquota\tO\nfor\tO\tfor\tO\nGDI B-Library GDI O\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nis\tO\tis\tO\n10,000\tO\t10,000\tO\nobjects\tO\tobjects\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nprocess\tO\tprocess\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ncrash\tO\tcrash\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nSystem.Drawing B-Class System.Drawing O\nclass\tO\tclass\tO\nwrappers\tO\twrappers\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nnearly\tO\tnearly\tO\nbig\tO\tbig\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\nGC\tO\tGC\tO\nby\tO\tby\tO\nthemselves\tO\tthemselves\tO\n,\tO\t,\tO\n10000\tO\t10000\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfinalizers\tO\tfinalizers\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nand\tO\tand\tO\nrelease\tO\trelease\tO\nthe\tO\tthe\tO\nhandles\tO\thandles\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\ndiagnose\tO\tdiagnose\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nTask B-Application Task O\nManager I-Application Manager O\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nView B-Value View O\n+\tO\t+\tO\nSelect B-Value Select O\nColumns B-User_Interface_Element Columns O\nand\tO\tand\tO\ntick\tO\ttick\tO\n\" B-Value \" O\nGDI I-Value GDI O\nObjects I-Value Objects O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nMight\tO\tMight\tO\nas\tO\tas\tO\nwell\tO\twell\tO\ntick\tO\ttick\tO\n\" B-Value \" O\nUSER I-Value USER O\nObjects I-Value Objects O\n\" I-Value \" O\n,\tO\t,\tO\nanother\tO\tanother\tO\none\tO\tone\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nvery\tO\tvery\tO\neasily\tO\teasily\tO\nleaked\tO\tleaked\tO\n.\tO\t.\tO\n\t\nKeep\tO\tKeep\tO\nan\tO\tan\tO\neye\tO\teye\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndisplayed\tO\tdisplayed\tO\ncounts\tO\tcounts\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\nwhile\tO\twhile\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nsteadily\tO\tsteadily\tO\nclimbing\tO\tclimbing\tO\nnumber\tO\tnumber\tO\nspells\tO\tspells\tO\ndoom\tO\tdoom\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29244745\tO\t29244745\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29244745/\tO\thttps://stackoverflow.com/questions/29244745/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nexperience\tO\texperience\tO\nbutton B-User_Interface_Element button O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\npage B-Application page O\neditor I-Application editor O\nin\tO\tin\tO\nSitecore B-Application Sitecore O\nwhich\tO\twhich\tO\nreferences\tO\treferences\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nway\tO\tway\tO\nto\tO\tto\tO\nopen\tO\topen\tO\na\tO\ta\tO\nSPEAK B-Library SPEAK O\ndialog B-User_Interface_Element dialog O\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\ncontext\tO\tcontext\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nshould\tO\tshould\tO\nthe\tO\tthe\tO\nwidth/height B-Variable width/height O\nof\tO\tof\tO\nthe\tO\tthe\tO\ndialog B-User_Interface_Element dialog O\nbe\tO\tbe\tO\nset\tO\tset\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncommand\tO\tcommand\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3471 I-Code_Block Q_3471 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfinding\tO\tfinding\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndialog B-User_Interface_Element dialog O\nbears\tO\tbears\tO\nno\tO\tno\tO\nresemblance\tO\tresemblance\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nwidth B-Variable width B-Code_Block\nand\tO\tand\tO\nheight B-Variable height B-Code_Block\nparameters\tO\tparameters\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nSheerResponse.ShowModalDialog B-Function SheerResponse.ShowModalDialog B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\npassing\tO\tpassing\tO\nin\tO\tin\tO\nvalues\tO\tvalues\tO\nsuffixed\tO\tsuffixed\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\npx\tO\tpx\tO\n\"\tO\t\"\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29244745\tO\t29244745\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29244745/\tO\thttps://stackoverflow.com/questions/29244745/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbox\tO\tbox\tO\nability\tO\tability\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nwidth B-Variable width O\nand\tO\tand\tO\nheight B-Variable height O\nfor\tO\tfor\tO\nSPEAK-based B-Library SPEAK-based O\ndialogs B-User_Interface_Element dialogs O\nin\tO\tin\tO\nSitecore B-Application Sitecore O\n7.5 B-Version 7.5 O\n(\tO\t(\tO\nit\tO\tit\tO\n's\tO\t's\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\n8.0 B-Version 8.0 O\n)\tO\t)\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ncustomize\tO\tcustomize\tO\nthe\tO\tthe\tO\n\\sitecore\\shell\\Controls\\jQueryModalDialogs.html B-File_Name \\sitecore\\shell\\Controls\\jQueryModalDialogs.html O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nfind\tO\tfind\tO\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nif B-Code_Block if B-Code_Block\nstatement\tO\tstatement\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4162 I-Code_Block A_4162 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nSitecore B-Application Sitecore O\n8.0 B-Version 8.0 O\na\tO\ta\tO\nnew\tO\tnew\tO\nmethod\tO\tmethod\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nadded\tO\tadded\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4163 I-Code_Block A_4163 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYour\tO\tYour\tO\nSheerResponse.ShowModalDialog B-Code_Block SheerResponse.ShowModalDialog B-Code_Block\n( B-Code_Block ( B-Code_Block\nurl I-Code_Block url I-Code_Block\n, I-Code_Block , I-Code_Block\n\" I-Code_Block \" I-Code_Block\n100 I-Code_Block 100 I-Code_Block\n\" I-Code_Block \" I-Code_Block\n, I-Code_Block , I-Code_Block\n\" I-Code_Block \" I-Code_Block\n200 I-Code_Block 200 I-Code_Block\n\" I-Code_Block \" I-Code_Block\n, I-Code_Block , I-Code_Block\nstring.Empty I-Code_Block string.Empty I-Code_Block\n, I-Code_Block , I-Code_Block\ntrue I-Code_Block true I-Code_Block\n) I-Code_Block ) I-Code_Block\n; B-Code_Block ; B-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4164 I-Code_Block A_4164 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDescription\tO\tDescription\tO\nof\tO\tof\tO\nForceDialogSize B-Variable ForceDialogSize B-Code_Block\nproperty\tO\tproperty\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2130150\tO\t2130150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2130150/\tO\thttps://stackoverflow.com/questions/2130150/\tO\n\t\n\t\nWhen\tO\tWhen\tO\ndesigning\tO\tdesigning\tO\nmy\tO\tmy\tO\nsoftware\tO\tsoftware\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbegan\tO\tbegan\tO\nwith\tO\twith\tO\ninterfaces\tO\tinterfaces\tO\nsince\tO\tsince\tO\nthis\tO\tthis\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nstandard\tO\tstandard\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\nswitched\tO\tswitched\tO\nto\tO\tto\tO\nabstract\tO\tabstract\tO\nclasses\tO\tclasses\tO\nbecause\tO\tbecause\tO\nthey\tO\tthey\tO\nseem\tO\tseem\tO\nbetter\tO\tbetter\tO\nsuited\tO\tsuited\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nat\tO\tat\tO\nhand\tO\thand\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nI\tO\tI\tO\n've\tO\t've\tO\nmissed\tO\tmissed\tO\nout\tO\tout\tO\non\tO\ton\tO\nsome\tO\tsome\tO\nconsiderations\tO\tconsiderations\tO\nwhen\tO\twhen\tO\nmaking\tO\tmaking\tO\nthis\tO\tthis\tO\ndesign\tO\tdesign\tO\nchoice\tO\tchoice\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nthan\tO\tthan\tO\ndomain\tO\tdomain\tO\nspecific\tO\tspecific\tO\nissues\tO\tissues\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthought\tO\tthought\tO\nabout\tO\tabout\tO\nwhat\tO\twhat\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nmore\tO\tmore\tO\ngeneral\tO\tgeneral\tO\nfactors\tO\tfactors\tO\nto\tO\tto\tO\nconsider\tO\tconsider\tO\nwhen\tO\twhen\tO\nchoosing\tO\tchoosing\tO\nbetween\tO\tbetween\tO\ninterfaces\tO\tinterfaces\tO\nand\tO\tand\tO\nabstracts\tO\tabstracts\tO\nclasses\tO\tclasses\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2130150\tO\t2130150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2130150/\tO\thttps://stackoverflow.com/questions/2130150/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\ninterface\tO\tinterface\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\nreasonable\tO\treasonable\tO\ndefault\tO\tdefault\tO\nbehavior\tO\tbehavior\tO\nfor\tO\tfor\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfunctionality\tO\tfunctionality\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nabstract\tO\tabstract\tO\nclass\tO\tclass\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\ncommon\tO\tcommon\tO\nboilerplate\tO\tboilerplate\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nconcrete\tO\tconcrete\tO\nimplementations\tO\timplementations\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2130150\tO\t2130150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2130150/\tO\thttps://stackoverflow.com/questions/2130150/\tO\n\t\n\t\nI\tO\tI\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\noption\tO\toption\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nboth\tO\tboth\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nalways\tO\talways\tO\npossible\tO\tpossible\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nrelying\tO\trelying\tO\non\tO\ton\tO\nsomething\tO\tsomething\tO\nhappening\tO\thappening\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nProviding\tO\tProviding\tO\nboth\tO\tboth\tO\nan\tO\tan\tO\nabstract\tO\tabstract\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nan\tO\tan\tO\ninterface\tO\tinterface\tO\nallows\tO\tallows\tO\nthe\tO\tthe\tO\ngreatest\tO\tgreatest\tO\nlatitude\tO\tlatitude\tO\nby\tO\tby\tO\nimplementers\tO\timplementers\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nabstraction\tO\tabstraction\tO\n,\tO\t,\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nrequire\tO\trequire\tO\nsomething\tO\tsomething\tO\nhappens\tO\thappens\tO\nby\tO\tby\tO\nan\tO\tan\tO\nimplementer\tO\timplementer\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nrequire\tO\trequire\tO\nthat\tO\tthat\tO\nsomething\tO\tsomething\tO\nhappens\tO\thappens\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nan\tO\tan\tO\ninterface\tO\tinterface\tO\nat\tO\tat\tO\nall--and\tO\tall--and\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\nensures\tO\tensures\tO\nthis\tO\tthis\tO\nrequired\tO\trequired\tO\naction\tO\taction\tO\nto\tO\tto\tO\nALWAYS\tO\tALWAYS\tO\noccur\tO\toccur\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nNegative\tO\tNegative\tO\nto\tO\tto\tO\ndoing\tO\tdoing\tO\nboth\tO\tboth\tO\n:\tO\t:\tO\nmore\tO\tmore\tO\ngoo\tO\tgoo\tO\n.\tO\t.\tO\n\t\nexample\tO\texample\tO\npseudocode\tO\tpseudocode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_209 I-Code_Block A_209 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nsomeone\tO\tsomeone\tO\ncould\tO\tcould\tO\nmake\tO\tmake\tO\ntheir\tO\ttheir\tO\nown\tO\town\tO\nclass\tO\tclass\tO\nthat\tO\tthat\tO\nimplements\tO\timplements\tO\nIVehicle B-Class IVehicle B-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\npass\tO\tpass\tO\nit\tO\tit\tO\nto\tO\tto\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\nan\tO\tan\tO\nIVehicle B-Class IVehicle B-Code_Block\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nobject\tO\tobject\tO\nwould\tO\twould\tO\nNOT\tO\tNOT\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nchild\tO\tchild\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nVehicle B-Class Vehicle B-Code_Block\nabstract\tO\tabstract\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\n,\tO\t,\tO\ntherefore\tO\ttherefore\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwere\tO\twere\tO\nto\tO\tto\tO\nexpect\tO\texpect\tO\nsomething\tO\tsomething\tO\nspecific\tO\tspecific\tO\nto\tO\tto\tO\nhappen\tO\thappen\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nPutCarInGear() B-Variable PutCarInGear() B-Code_Block\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nquite\tO\tquite\tO\nlikely\tO\tlikely\tO\nthat\tO\tthat\tO\nthat\tO\tthat\tO\nnew\tO\tnew\tO\nclass\tO\tclass\tO\nwould\tO\twould\tO\nNOT\tO\tNOT\tO\nfulfill\tO\tfulfill\tO\nthat\tO\tthat\tO\nexpectation\tO\texpectation\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nit\tO\tit\tO\nnever\tO\tnever\tO\nmatters\tO\tmatters\tO\nwhat\tO\twhat\tO\nimplementations\tO\timplementations\tO\nof\tO\tof\tO\nIVehicle B-Class IVehicle B-Code_Block\ndo\tO\tdo\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nflexible\tO\tflexible\tO\nabstraction\tO\tabstraction\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nboth\tO\tboth\tO\nan\tO\tan\tO\nabstract\tO\tabstract\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\nAND\tO\tAND\tO\nan\tO\tan\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46371445\tO\t46371445\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46371445/\tO\thttps://stackoverflow.com/questions/46371445/\tO\n\t\n\t\nI\tO\tI\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nencryption\tO\tencryption\tO\ncode\tO\tcode\tO\nusing\tO\tusing\tO\nCryptoJS B-Library CryptoJS O\naes256 I-Library aes256 O\nfrom\tO\tfrom\tO\n.net B-Library .net O\nto\tO\tto\tO\njavascript B-Language javascript O\n(\tO\t(\tO\nCordova B-Library Cordova O\n)\tO\t)\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\n//.Net B-Library //.Net O\nCode\tO\tCode\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6081 I-Code_Block Q_6081 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n//\tO\t//\tO\nCordova B-Library Cordova O\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsuccessfully\tO\tsuccessfully\tO\nencode\tO\tencode\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nBase64 B-Data_Type Base64 O\nstring I-Data_Type string O\nand\tO\tand\tO\ndecode\tO\tdecode\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nencoding\tO\tencoding\tO\nmethod\tO\tmethod\tO\nwritten\tO\twritten\tO\nin\tO\tin\tO\nJavascript(Cordova) B-Language Javascript(Cordova) O\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6082 I-Code_Block Q_6082 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nBase64 B-Data_Type Base64 O\nstring I-Data_Type string O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\none\tO\tone\tO\ngenerated\tO\tgenerated\tO\nby\tO\tby\tO\n.Net B-Library .Net O\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32445202\tO\t32445202\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32445202/\tO\thttps://stackoverflow.com/questions/32445202/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\ndata.frame B-Function data.frame O\nsample\tO\tsample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3934 I-Code_Block Q_3934 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstay\tO\tstay\tO\nonly\tO\tonly\tO\npairs\tO\tpairs\tO\nlogged_in B-Variable logged_in B-Code_Block\nand\tO\tand\tO\ndeauthorize B-Variable deauthorize B-Code_Block\n(\tO\t(\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\ncalculation\tO\tcalculation\tO\ntime\tO\ttime\tO\nbetween\tO\tbetween\tO\nlogs\tO\tlogs\tO\nlogged_in B-Variable logged_in B-Code_Block\nand\tO\tand\tO\ndeauthorize B-Variable deauthorize B-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nsome\tO\tsome\tO\nlogs\tO\tlogs\tO\nwas\tO\twas\tO\nlost\tO\tlost\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nmy\tO\tmy\tO\ntable B-Data_Structure table O\nafter\tO\tafter\tO\nsort\tO\tsort\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3935 I-Code_Block Q_3935 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32445202\tO\t32445202\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32445202/\tO\thttps://stackoverflow.com/questions/32445202/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4635 I-Code_Block A_4635 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nbase B-Application base B-Code_Block\nR I-Application R I-Code_Block\nsolution\tO\tsolution\tO\nusing\tO\tusing\tO\nR B-Language R O\n's\tO\t's\tO\nfactor\tO\tfactor\tO\ncoercion\tO\tcoercion\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nlocate\tO\tlocate\tO\nthe\tO\tthe\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\n\" B-Variable \" B-Code_Block\ndeauthorize I-Variable deauthorize I-Code_Block\n\" I-Variable \" I-Code_Block\nby\tO\tby\tO\nusing\tO\tusing\tO\nfactors\tO\tfactors\tO\nto\tO\tto\tO\nour\tO\tour\tO\nadvantage\tO\tadvantage\tO\n.\tO\t.\tO\n\t\nUsually\tO\tUsually\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\na\tO\ta\tO\npain\tO\tpain\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nbeing\tO\tbeing\tO\nable\tO\table\tO\nto\tO\tto\tO\nquickly\tO\tquickly\tO\nturn\tO\tturn\tO\nthe\tO\tthe\tO\nEventName B-Variable EventName B-Code_Block\ncolumn B-Data_Structure column O\ninto\tO\tinto\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\n1 B-Value 1 O\n's\tO\t's\tO\nand\tO\tand\tO\n2 B-Value 2 O\n's\tO\t's\tO\nhelps\tO\thelps\tO\nquicken\tO\tquicken\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nas.numeric(df$EventName) B-Function as.numeric(df$EventName) B-Code_Block\nfor\tO\tfor\tO\nreference\tO\treference\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthis\tO\tthis\tO\nindex\tO\tindex\tO\nwe\tO\twe\tO\nthen\tO\tthen\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\ncases\tO\tcases\tO\nof\tO\tof\tO\na\tO\ta\tO\n1 B-Value 1 O\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\na\tO\ta\tO\n2 B-Value 2 O\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nof\tO\tof\tO\neach\tO\teach\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\ndiff(as.numeric(df$EventName)) B-Function diff(as.numeric(df$EventName)) B-Code_Block\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nus\tO\tus\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nimagine\tO\timagine\tO\nwhich\tO\twhich\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nvector B-Data_Structure vector O\nwill\tO\twill\tO\ntarget\tO\ttarget\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n,\tO\t,\tO\n-1 B-Value -1 B-Code_Block\n.\tO\t.\tO\n\t\nData\tO\tData\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4636 I-Code_Block A_4636 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48723037\tO\t48723037\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48723037/\tO\thttps://stackoverflow.com/questions/48723037/\tO\n\t\n\t\nPlease\tO\tPlease\tO\nHelp\tO\tHelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\na\tO\ta\tO\nface\tO\tface\tO\nrecognition\tO\trecognition\tO\ndetector\tO\tdetector\tO\npython B-Language python O\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nsqllite B-Application sqllite O\nstudio I-Application studio O\ndatabase\tO\tdatabase\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6492 I-Code_Block Q_6492 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthat\tO\tthat\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\n\t\nthe\tO\tthe\tO\nerror\tO\terror\tO\nwas\tO\twas\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6493 I-Code_Block Q_6493 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nAnd\tO\tAnd\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\npython B-Language python O\n3.4 B-Version 3.4 O\nand\tO\tand\tO\nopencv B-Library opencv O\n3.4 B-Version 3.4 O\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n??\tO\t??\tO\n?\tO\t?\tO\n\t\nim\tO\tim\tO\nnew\tO\tnew\tO\nin\tO\tin\tO\npython B-Language python O\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48723037\tO\t48723037\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48723037/\tO\thttps://stackoverflow.com/questions/48723037/\tO\n\t\n\t\nIndexing\tO\tIndexing\tO\nis\tO\tis\tO\nzero-based\tO\tzero-based\tO\nin\tO\tin\tO\nPython B-Language Python O\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nmeans\tO\tmeans\tO\n,\tO\t,\tO\ncounting\tO\tcounting\tO\nstarts\tO\tstarts\tO\nfrom\tO\tfrom\tO\n0 B-Value 0 B-Code_Block\nnot\tO\tnot\tO\n1 B-Value 1 B-Code_Block\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nchanging\tO\tchanging\tO\nlines\tO\tlines\tO\n36\tO\t36\tO\nand\tO\tand\tO\n38\tO\t38\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7147 I-Code_Block A_7147 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18870221\tO\t18870221\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18870221/\tO\thttps://stackoverflow.com/questions/18870221/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nauthorization\tO\tauthorization\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nemail\tO\temail\tO\nand\tO\tand\tO\npassword\tO\tpassword\tO\nwithout\tO\twithout\tO\ndialog B-User_Interface_Element dialog O\nbox I-User_Interface_Element box O\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nextend\tO\textend\tO\naccess_token\tO\taccess_token\tO\n.\tO\t.\tO\n\t\nFunction\tO\tFunction\tO\ngetUser B-Function getUser O\nin\tO\tin\tO\nPHP B-Library PHP O\nSDK I-Library SDK O\nalways\tO\talways\tO\nreturn\tO\treturn\tO\n0 B-Value 0 O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\ndo\tO\tdo\tO\npost\tO\tpost\tO\nfeed\tO\tfeed\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfan\tO\tfan\tO\ngroup\tO\tgroup\tO\n's\tO\t's\tO\nwall\tO\twall\tO\nwith\tO\twith\tO\ncronjob B-Application cronjob O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntry\tO\ttry\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1970 I-Code_Block Q_1970 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithin\tO\twithin\tO\nan\tO\tan\tO\nhour\tO\thour\tO\nand\tO\tand\tO\nif\tO\tif\tO\nI\tO\tI\tO\nalready\tO\talready\tO\nlogged\tO\tlogged\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28026848\tO\t28026848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28026848/\tO\thttps://stackoverflow.com/questions/28026848/\tO\n\t\n\t\nAs\tO\tAs\tO\nsomeone\tO\tsomeone\tO\nwho\tO\twho\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nSwift B-Language Swift O\nand\tO\tand\tO\nCoreData B-Library CoreData O\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nsure\tO\tsure\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngoing\tO\tgoing\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nway\tO\tway\tO\nand\tO\tand\tO\nam\tO\tam\tO\nhoping\tO\thoping\tO\nsomeone\tO\tsomeone\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nBackground\tO\tBackground\tO\n:\tO\t:\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndownloading\tO\tdownloading\tO\nJSON B-File_Type JSON O\nover\tO\tover\tO\nan\tO\tan\tO\nAPI B-Library API O\n,\tO\t,\tO\nand\tO\tand\tO\ncaching\tO\tcaching\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nlocally\tO\tlocally\tO\non\tO\ton\tO\nan\tO\tan\tO\niPad B-Device iPad O\nin\tO\tin\tO\nCoreData B-Library CoreData O\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nimage B-User_Interface_Element image O\nthumbnail I-User_Interface_Element thumbnail O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nstoring\tO\tstoring\tO\nin\tO\tin\tO\nCoreData B-Library CoreData O\n(\tO\t(\tO\nas\tO\tas\tO\na\tO\ta\tO\nTransformable B-Data_Type Transformable O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ndoing\tO\tdoing\tO\n:\tO\t:\tO\nMy\tO\tMy\tO\noriginal\tO\toriginal\tO\nimplementation\tO\timplementation\tO\ndownloaded\tO\tdownloaded\tO\nimages B-User_Interface_Element images O\nand\tO\tand\tO\nsaved\tO\tsaved\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nCoreData B-Library CoreData O\n,\tO\t,\tO\nbut\tO\tbut\tO\nalthough\tO\talthough\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\ntriggered\tO\ttriggered\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\n(\tO\t(\tO\na\tO\ta\tO\ncallback\tO\tcallback\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nAPI B-Library API O\ncall\tO\tcall\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\ndownloading\tO\tdownloading\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimages B-User_Interface_Element images O\nseems\tO\tseems\tO\nto\tO\tto\tO\ncause\tO\tcause\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nhang\tO\thang\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3274 I-Code_Block Q_3274 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnow\tO\tnow\tO\ndoing\tO\tdoing\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nsince\tO\tsince\tO\nupdated\tO\tupdated\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3275 I-Code_Block Q_3275 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthus\tO\tthus\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3276 I-Code_Block Q_3276 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDoing\tO\tDoing\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nany\tO\tany\tO\nblocks\tO\tblocks\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nnotice\tO\tnotice\tO\n.\tO\t.\tO\n\t\nInspecting\tO\tInspecting\tO\nthe\tO\tthe\tO\nsqlite B-Application sqlite O\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndevice\tO\tdevice\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nas\tO\tas\tO\nthough\tO\tthough\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\ngetting\tO\tgetting\tO\nset\tO\tset\tO\nproperly\tO\tproperly\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nimages B-User_Interface_Element images O\nare\tO\tare\tO\nnot\tO\tnot\tO\nshowing\tO\tshowing\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nmy\tO\tmy\tO\nmethod\tO\tmethod\tO\ncompletely\tO\tcompletely\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ninform\tO\tinform\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncore B-Library core O\ndata I-Library data O\nmodel\tO\tmodel\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nupdated\tO\tupdated\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\na\tO\ta\tO\nrefresh\tO\trefresh\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nfunction\tO\tfunction\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nrow/cell B-User_Interface_Element row/cell O\nof\tO\tof\tO\na\tO\ta\tO\ntable/uicollectionview B-User_Interface_Element table/uicollectionview O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28026848\tO\t28026848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28026848/\tO\thttps://stackoverflow.com/questions/28026848/\tO\n\t\n\t\n\t\nYour\tO\tYour\tO\nNSURLConnection B-Class NSURLConnection O\n's\tO\t's\tO\ncallbacks\tO\tcallbacks\tO\nare\tO\tare\tO\nhappening\tO\thappening\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nqueue B-Data_Structure queue O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\none\tO\tone\tO\nreason\tO\treason\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nis\tO\tis\tO\nlocking\tO\tlocking\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nmanaged\tO\tmanaged\tO\nobject\tO\tobject\tO\ncontext\tO\tcontext\tO\n,\tO\t,\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nposted\tO\tposted\tO\n,\tO\t,\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nCore B-Library Core O\nData I-Library Data O\nconcurrency\tO\tconcurrency\tO\nrules\tO\trules\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nchoice\tO\tchoice\tO\nbetween\tO\tbetween\tO\nthread\tO\tthread\tO\nconfinement\tO\tconfinement\tO\n(\tO\t(\tO\nunfortunately\tO\tunfortunately\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nobsolete\tO\tobsolete\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nqueue B-Data_Structure queue O\nconfinement\tO\tconfinement\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthread\tO\tthread\tO\nconfinement\tO\tconfinement\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nmanaged\tO\tmanaged\tO\nobject\tO\tobject\tO\ncontext\tO\tcontext\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncreated\tO\tcreated\tO\nyour\tO\tyour\tO\nmanaged\tO\tmanaged\tO\nobject\tO\tobject\tO\ncontext\tO\tcontext\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\n(\tO\t(\tO\nor\tO\tor\tO\nqueue B-Data_Structure queue O\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\n-\tO\t-\tO\nso\tO\tso\tO\nany\tO\tany\tO\nCore B-Library Core O\nData I-Library Data O\noperation\tO\toperation\tO\nyou\tO\tyou\tO\nperform\tO\tperform\tO\non\tO\ton\tO\nthat\tO\tthat\tO\ncontext\tO\tcontext\tO\nwill\tO\twill\tO\nblock\tO\tblock\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nturn\tO\tturn\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nqueue B-Data_Structure queue O\nconfinement\tO\tconfinement\tO\n(\tO\t(\tO\nalmost\tO\talmost\tO\n)\tO\t)\tO\nany\tO\tany\tO\noperation\tO\toperation\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmanaged\tO\tmanaged\tO\nobject\tO\tobject\tO\ncontext\tO\tcontext\tO\nmust\tO\tmust\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\neither\tO\teither\tO\nthe\tO\tthe\tO\nperformBlock B-Function performBlock B-Code_Block\n: I-Function : I-Code_Block\nor\tO\tor\tO\nperformBlockAndWait B-Function performBlockAndWait B-Code_Block\n: I-Function : I-Code_Block\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nenqueued\tO\tenqueued\tO\nblock\tO\tblock\tO\nis\tO\tis\tO\nexecuted\tO\texecuted\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\n's\tO\t's\tO\nserial\tO\tserial\tO\nqueue B-Data_Structure queue O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nfar\tO\tfar\tO\nless\tO\tless\tO\nfailure\tO\tfailure\tO\nprone\tO\tprone\tO\nthan\tO\tthan\tO\nthread\tO\tthread\tO\nconfinement\tO\tconfinement\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nthe\tO\tthe\tO\nrecommended\tO\trecommended\tO\npractice\tO\tpractice\tO\nfor\tO\tfor\tO\nconcurrency\tO\tconcurrency\tO\nsince\tO\tsince\tO\niOS B-Operating_System iOS O\n5 B-Version 5 O\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nTypically\tO\tTypically\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nNSFetchedResultsController B-Class NSFetchedResultsController B-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nobserves\tO\tobserves\tO\na\tO\ta\tO\nmanaged\tO\tmanaged\tO\nobject\tO\tobject\tO\ncontext\tO\tcontext\tO\nfor\tO\tfor\tO\nchanges\tO\tchanges\tO\nrelevant\tO\trelevant\tO\nto\tO\tto\tO\nit\tO\tit\tO\n's\tO\t's\tO\nfetch\tO\tfetch\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nfetch\tO\tfetch\tO\npopulates\tO\tpopulates\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nlisten\tO\tlisten\tO\nfor\tO\tfor\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\nthat\tO\tthat\tO\naffect\tO\taffect\tO\nthe\tO\tthe\tO\nobjects\tO\tobjects\tO\nspecified\tO\tspecified\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nfetch\tO\tfetch\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nrelevant\tO\trelevant\tO\nchanges\tO\tchanges\tO\noccur\tO\toccur\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\ninforms\tO\tinforms\tO\nit\tO\tit\tO\n's\tO\t's\tO\ndelegate\tO\tdelegate\tO\nthrough\tO\tthrough\tO\ncallbacks\tO\tcallbacks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38802000\tO\t38802000\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38802000/\tO\thttps://stackoverflow.com/questions/38802000/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\na\tO\ta\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nBufferedImage B-Class BufferedImage O\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncopying\tO\tcopying\tO\nform\tO\tform\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsquare\tO\tsquare\tO\nbut\tO\tbut\tO\nrather\tO\trather\tO\na\tO\ta\tO\nsquare\tO\tsquare\tO\nrotated\tO\trotated\tO\non\tO\ton\tO\nsome\tO\tsome\tO\nangle\tO\tangle\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\noutput\tO\toutput\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nBufferedImage B-Class BufferedImage O\nwith\tO\twith\tO\nwidth\tO\twidth\tO\nand\tO\tand\tO\nheight\tO\theight\tO\nequals\tO\tequals\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncopying\tO\tcopying\tO\nsquare\tO\tsquare\tO\nsize\tO\tsize\tO\nand\tO\tand\tO\ncontents\tO\tcontents\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nimage B-User_Interface_Element image O\n,\tO\t,\tO\nwhere\tO\twhere\tO\ncopying\tO\tcopying\tO\nsquare\tO\tsquare\tO\nintersects\tO\tintersects\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nimage B-User_Interface_Element image O\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38802000\tO\t38802000\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38802000/\tO\thttps://stackoverflow.com/questions/38802000/\tO\n\t\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\napproach\tO\tapproach\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nimage B-User_Interface_Element image O\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\ntransform\tO\ttransform\tO\na\tO\ta\tO\nGraphics2D B-Class Graphics2D B-Code_Block\nof\tO\tof\tO\nthis\tO\tthis\tO\nimage B-User_Interface_Element image O\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\nsquare\tO\tsquare\tO\nregion\tO\tregion\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsimply\tO\tsimply\tO\npaint\tO\tpaint\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nimage B-User_Interface_Element image O\ninto\tO\tinto\tO\nthis\tO\tthis\tO\ngraphics B-User_Interface_Element graphics O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5615 I-Code_Block A_5615 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43232523\tO\t43232523\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43232523/\tO\thttps://stackoverflow.com/questions/43232523/\tO\n\t\n\t\nControl\tO\tControl\tO\n'\tO\t'\tO\nGridView1 B-Class GridView1 O\n'\tO\t'\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\n'\tO\t'\tO\nGridView B-Class GridView O\n'\tO\t'\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nplaced\tO\tplaced\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nform B-HTML_XML_Tag form O\ntag\tO\ttag\tO\nwith\tO\twith\tO\nrunat B-Code_Block runat O\n= I-Code_Block = O\nserver I-Code_Block server O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nexport\tO\texport\tO\nthe\tO\tthe\tO\nGridview B-Class Gridview O\nto\tO\tto\tO\nExcel B-Application Excel O\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nexample\tO\texample\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5528 I-Code_Block Q_5528 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43232523\tO\t43232523\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43232523/\tO\thttps://stackoverflow.com/questions/43232523/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nbelow\tO\tbelow\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\n.aspx B-File_Type .aspx O\nfile\tO\tfile\tO\ncontens\tO\tcontens\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6255 I-Code_Block A_6255 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n.aspx.vb B-File_Type .aspx.vb O\nfile\tO\tfile\tO\ncontents\tO\tcontents\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6256 I-Code_Block A_6256 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17677132\tO\t17677132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17677132/\tO\thttps://stackoverflow.com/questions/17677132/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nviews B-Variable views O\nin\tO\tin\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nlaunching\tO\tlaunching\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nI\tO\tI\tO\nswitch\tO\tswitch\tO\nthe\tO\tthe\tO\nview B-Variable view O\nwith\tO\twith\tO\nbutton B-User_Interface_Element button O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1807 I-Code_Block Q_1807 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nwhenever\tO\twhenever\tO\ni\tO\ti\tO\nswitch\tO\tswitch\tO\nthe\tO\tthe\tO\nview B-Variable view O\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nabove\tO\tabove\tO\ninitialize\tO\tinitialize\tO\nthe\tO\tthe\tO\nview B-Variable view O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmaintain\tO\tmaintain\tO\nprevious\tO\tprevious\tO\nstatus\tO\tstatus\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nview B-Variable view O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17677132\tO\t17677132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17677132/\tO\thttps://stackoverflow.com/questions/17677132/\tO\n\t\n\t\nOn\tO\tOn\tO\nan\tO\tan\tO\niPad B-Device iPad O\nthis\tO\tthis\tO\nwill\tO\twill\tO\npresent\tO\tpresent\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nview B-Variable view O\nmodally\tO\tmodally\tO\n,\tO\t,\tO\nas\tO\tas\tO\ndictated\tO\tdictated\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nviews\tO\tviews\tO\nmodalTransitionStyle B-Variable modalTransitionStyle O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthere\tO\tthere\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nget\tO\tget\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nby\tO\tby\tO\ncalling\tO\tcalling\tO\ndismissViewControllerAnimated:completion B-Function dismissViewControllerAnimated:completion B-Code_Block\n:\tO\t:\tI-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nViewController B-Library ViewController O\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\niPhone B-Device iPhone O\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nUINavigationController B-Class UINavigationController O\nin\tO\tin\tO\nyour\tO\tyour\tO\nstoryboard B-Application storyboard O\nto\tO\tto\tO\npush\tO\tpush\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\npop\tO\tpop\tO\nthe\tO\tthe\tO\nsecondViewController B-Variable secondViewController O\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nstoryboard\tO\tstoryboard\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\ntransition\tO\ttransition\tO\nthere\tO\tthere\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nperform\tO\tperform\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\n-\tO\t-\tO\nperformSegueWithIdentifier:sender B-Function performSegueWithIdentifier:sender B-Code_Block\n: I-Function : I-Code_Block\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nbutton B-User_Interface_Element button O\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nmatter\tO\tmatter\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nconnect\tO\tconnect\tO\nthe\tO\tthe\tO\nsegue B-Class segue O\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nbutton B-User_Interface_Element button O\nin\tO\tin\tO\nwhich\tO\twhich\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\ntransition\tO\ttransition\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nperformed\tO\tperformed\tO\nwithout\tO\twithout\tO\nadditional\tO\tadditional\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17677132\tO\t17677132\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17677132/\tO\thttps://stackoverflow.com/questions/17677132/\tO\n\t\n\t\ninstantiateViewControllerWithIdentifier B-Function instantiateViewControllerWithIdentifier B-Code_Block\n: I-Function : I-Code_Block\nalways\tO\talways\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nan\tO\tan\tO\nUIViewController B-Class UIViewController B-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\na\tO\ta\tO\nprevious\tO\tprevious\tO\none\tO\tone\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nit\tO\tit\tO\nover\tO\tover\tO\nand\tO\tand\tO\nover\tO\tover\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41557013\tO\t41557013\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41557013/\tO\thttps://stackoverflow.com/questions/41557013/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nAvplayer B-Class Avplayer O\nresume\tO\tresume\tO\nfrom\tO\tfrom\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nstopped\tO\tstopped\tO\n,\tO\t,\tO\nby\tO\tby\tO\nmake\tO\tmake\tO\nglobal B-Data_Type global O\nvalue\tO\tvalue\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nCMtime B-Class CMtime O\nand\tO\tand\tO\nstore\tO\tstore\tO\ncurrenttime B-Function currenttime O\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nto\tO\tto\tO\nresume\tO\tresume\tO\nfrom\tO\tfrom\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nstopped\tO\tstopped\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5278 I-Code_Block Q_5278 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nseek(to:) B-Function seek(to:) O\n\t\nnothing\tO\tnothing\tO\nchanged\tO\tchanged\tO\nit\tO\tit\tO\nalso\tO\talso\tO\nstart\tO\tstart\tO\nfrom\tO\tfrom\tO\nbeginning\tO\tbeginning\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\ncurrenttime B-Variable currenttime O\nby\tO\tby\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5279 I-Code_Block Q_5279 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\nalways\tO\talways\tO\nstart\tO\tstart\tO\nfrom\tO\tfrom\tO\nbeginning\tO\tbeginning\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\nAVAudioPlayer B-Class AVAudioPlayer O\nand\tO\tand\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nmuch\tO\tmuch\tO\neasier\tO\teasier\tO\nthan\tO\tthan\tO\nAVplayer B-Class AVplayer O\n\t\nbut\tO\tbut\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nstream\tO\tstream\tO\nAudio\tO\tAudio\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nto\tO\tto\tO\nAVplayer B-Class AVplayer O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41557013\tO\t41557013\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41557013/\tO\thttps://stackoverflow.com/questions/41557013/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\nseconds B-Variable seconds O\nfrom\tO\tfrom\tO\nCMtime B-Class CMtime O\nusing\tO\tusing\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\non\tO\ton\tO\nUnwind B-Function Unwind O\nsegue I-Function segue O\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5959 I-Code_Block Q_5959 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n2.in\tO\t2.in\tO\nviewdidload B-Function viewdidload O\nI\tO\tI\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5960 I-Code_Block A_5960 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nperfect\tO\tperfect\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\neverytime\tO\teverytime\tO\nit\tO\tit\tO\nre-download\tO\tre-download\tO\na\tO\ta\tO\naudio\tO\taudio\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nresume\tO\tresume\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nmean\tO\tmean\tO\nIf\tO\tIf\tO\nI\tO\tI\tO\nplay\tO\tplay\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nreturn\tO\treturn\tO\nto\tO\tto\tO\ntableview\tO\ttableview\tO\nthen\tO\tthen\tO\nreturn\tO\treturn\tO\nback\tO\tback\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\npurse\tO\tpurse\tO\nand\tO\tand\tO\nwait\tO\twait\tO\nsome\tO\tsome\tO\nsecond\tO\tsecond\tO\nthen\tO\tthen\tO\nplay\tO\tplay\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nstopped\tO\tstopped\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46659479\tO\t46659479\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46659479/\tO\thttps://stackoverflow.com/questions/46659479/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable B-User_Interface_Element table O\ncell I-User_Interface_Element cell O\nin\tO\tin\tO\nmy\tO\tmy\tO\nxml B-HTML_XML_Tag xml O\nfile\tO\tfile\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\ntwo\tO\ttwo\tO\nTextViews B-Class TextViews O\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\ncopies\tO\tcopies\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\ncell B-User_Interface_Element cell O\nand\tO\tand\tO\nassign\tO\tassign\tO\nvalues\tO\tvalues\tO\ninto\tO\tinto\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\njava B-Language java O\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nother\tO\tother\tO\ncells B-User_Interface_Element cells O\nshould\tO\tshould\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproperty\tO\tproperty\tO\nas\tO\tas\tO\nthat\tO\tthat\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\ncell B-User_Interface_Element cell O\nbackground\tO\tbackground\tO\ncolor\tO\tcolor\tO\n,\tO\t,\tO\nfont\tO\tfont\tO\ntype\tO\ttype\tO\n,\tO\t,\tO\nfont\tO\tfont\tO\nsize\tO\tsize\tO\netc\tO\tetc\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\ncell B-User_Interface_Element cell O\nwill\tO\twill\tO\nspan\tO\tspan\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nfirst\tO\tfirst\tO\nrow B-User_Interface_Element row O\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\nrow B-User_Interface_Element row O\nwill\tO\twill\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nmultiple\tO\tmultiple\tO\nrows B-User_Interface_Element rows O\nafter\tO\tafter\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nachieve\tO\tachieve\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nandroid B-Operating_System android O\nprogramming\tO\tprogramming\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nxml B-File_Type xml O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6147 I-Code_Block Q_6147 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26063673\tO\t26063673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26063673/\tO\thttps://stackoverflow.com/questions/26063673/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\n.gradlew B-Code_Block .gradlew O\ncreateCoverageReport I-Code_Block createCoverageReport O\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2981 I-Code_Block Q_2981 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\naccess\tO\taccess\tO\nthat\tO\tthat\tO\nindex.html B-File_Name index.html O\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nits\tO\tits\tO\ncrashing.\tO\tcrashing.\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\ngets\tO\tgets\tO\nto\tO\tto\tO\nabout\tO\tabout\tO\n98%\tO\t98%\tO\nbefore\tO\tbefore\tO\nthis\tO\tthis\tO\nfail\tO\tfail\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nnexus B-Device nexus O\n5 B-Version 5 O\nconnected\tO\tconnected\tO\nrunning\tO\trunning\tO\n4.4. B-Version 4.4. O\n.\tO\t.\tO\n\t\nmy\tO\tmy\tO\nbuild.gradle B-File_Name build.gradle O\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2982 I-Code_Block Q_2982 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26063673\tO\t26063673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26063673/\tO\thttps://stackoverflow.com/questions/26063673/\tO\n\t\n\t\nThe\tO\tThe\tO\napply\tO\tapply\tO\nplug-in\tO\tplug-in\tO\npart\tO\tpart\tO\ncauses\tO\tcauses\tO\nthe\tO\tthe\tO\ntests\tO\ttests\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nLike\tO\tLike\tO\nBill B-User_Name Bill O\nsuggested\tO\tsuggested\tO\ngradle B-Application gradle O\n's\tO\t's\tO\nlatest\tO\tlatest\tO\nrelease\tO\trelease\tO\nhas\tO\thas\tO\njacoco B-Library jacoco O\npackaged\tO\tpackaged\tO\nwithin\tO\twithin\tO\nso\tO\tso\tO\nit\tO\tit\tO\nneed\tO\tneed\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\napplied\tO\tapplied\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ntests\tO\ttests\tO\nrecently\tO\trecently\tO\nbroke\tO\tbroke\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nRemoving\tO\tRemoving\tO\nthat\tO\tthat\tO\nline\tO\tline\tO\nfixed\tO\tfixed\tO\nmy\tO\tmy\tO\nissue\tO\tissue\tO\nand\tO\tand\tO\nI\tO\tI\tO\nget\tO\tget\tO\nmy\tO\tmy\tO\nreports\tO\treports\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26063673\tO\t26063673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26063673/\tO\thttps://stackoverflow.com/questions/26063673/\tO\n\t\n\t\nCouple\tO\tCouple\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nfix\tO\tfix\tO\nyour\tO\tyour\tO\nfirst\tO\tfirst\tO\nerror\tO\terror\tO\n\"\tO\t\"\tO\nInstrumentation\tO\tInstrumentation\tO\nrun\tO\trun\tO\nfailed\tO\tfailed\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\n'\tO\t'\tO\njava.lang.VerifyError B-Error_Name java.lang.VerifyError O\n'\tO\t'\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nupgrade\tO\tupgrade\tO\nyour\tO\tyour\tO\nbuild B-Application build O\ntools I-Application tools O\nto\tO\tto\tO\n21+ B-Version 21+ O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nandroid B-Application android O\nbuild I-Application build O\ntools I-Application tools O\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nfixed\tO\tfixed\tO\n.\tO\t.\tO\n\t\nHooray\tO\tHooray\tO\n!\tO\t!\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\napply\tO\tapply\tO\nthe\tO\tthe\tO\njacoco B-Library jacoco O\nplugin\tO\tplugin\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nandroid B-Application android O\ngradle I-Application gradle O\nplugin\tO\tplugin\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\n'\tO\t'\tO\ntestCoverageEnabled B-Code_Block testCoverageEnabled O\ntrue I-Code_Block true O\n'\tO\t'\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\n.ec B-File_Type .ec O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nApplying\tO\tApplying\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhurt\tO\thurt\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nhelpful\tO\thelpful\tO\nto\tO\tto\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nmind\tO\tmind\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\njacoco B-Library jacoco O\nis\tO\tis\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\nalready\tO\talready\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\noverride\tO\toverride\tO\nfor\tO\tfor\tO\n'\tO\t'\tO\nreportsDir B-Variable reportsDir O\n'\tO\t'\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nreport\tO\treport\tO\nin\tO\tin\tO\n'\tO\t'\tO\nbuild/outputs/reports/coverage/debug/index.html\tO\tbuild/outputs/reports/coverage/debug/index.html\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7845542\tO\t7845542\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7845542/\tO\thttps://stackoverflow.com/questions/7845542/\tO\n\t\n\t\nhow\tO\thow\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nclosest\tO\tclosest\tO\ncraigslist B-Website craigslist O\nsite\tO\tsite\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\naddress(zip)\tO\taddress(zip)\tO\n?\tO\t?\tO\n\t\nor\tO\tor\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nthinking\tO\tthinking\tO\nof\tO\tof\tO\nmaking\tO\tmaking\tO\nthat\tO\tthat\tO\nmapping\tO\tmapping\tO\nmyself\tO\tmyself\tO\nby\tO\tby\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ncraigslist B-Website craigslist O\nsites\tO\tsites\tO\ncity-wise/state\tO\tcity-wise/state\tO\n-wise\tO\t-wise\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7845542\tO\t7845542\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7845542/\tO\thttps://stackoverflow.com/questions/7845542/\tO\n\t\n\t\nIndeed\tO\tIndeed\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nCraigslist B-Website Craigslist O\nsites/cities\tO\tsites/cities\tO\n,\tO\t,\tO\nprebuild\tO\tprebuild\tO\na\tO\ta\tO\nmapping\tO\tmapping\tO\nof\tO\tof\tO\ncities\tO\tcities\tO\nto\tO\tto\tO\ncoordinates\tO\tcoordinates\tO\nusing\tO\tusing\tO\nsome\tO\tsome\tO\ngeocoding B-Library geocoding O\nAPI\tO\tAPI\tO\n(\tO\t(\tO\nTiny B-Library Tiny O\nGeocoder I-Library Geocoder O\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nmind\tO\tmind\tO\nbut\tO\tbut\tO\nYahoo B-Website Yahoo O\nand\tO\tand\tO\nBing B-Website Bing O\noffer\tO\toffer\tO\ngood\tO\tgood\tO\nsolutions\tO\tsolutions\tO\ntoo\tO\ttoo\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nstoring\tO\tstoring\tO\nit\tO\tit\tO\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nmakes\tO\tmakes\tO\nsort-by-nearest\tO\tsort-by-nearest\tO\neasy\tO\teasy\tO\n(\tO\t(\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\nMySQL B-Application MySQL O\n's\tO\t's\tO\ngeospatial\tO\tgeospatial\tO\nextensions\tO\textensions\tO\nor\tO\tor\tO\nMongoDB's B-Application MongoDB's O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2135509\tO\t2135509\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2135509/\tO\thttps://stackoverflow.com/questions/2135509/\tO\n\t\n\t\nI\tO\tI\tO\ncame\tO\tcame\tO\nacross\tO\tacross\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nreproduced\tO\treproduced\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nbuilt\tO\tbuilt\tO\nwith\tO\twith\tO\noptimizations\tO\toptimizations\tO\nenabled\tO\tenabled\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nconsole B-Application console O\napp\tO\tapp\tO\nthat\tO\tthat\tO\nreplicates\tO\treplicates\tO\nthe\tO\tthe\tO\nlogic\tO\tlogic\tO\nfor\tO\tfor\tO\ntesting\tO\ttesting\tO\n(\tO\t(\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\noptimization\tO\toptimization\tO\nis\tO\tis\tO\nenabled\tO\tenabled\tO\n'\tO\t'\tO\nvalue B-Variable value O\n'\tO\t'\tO\nbecomes\tO\tbecomes\tO\nnull B-Value null O\nafter\tO\tafter\tO\nexecution\tO\texecution\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\ninvalid\tO\tinvalid\tO\nlogic\tO\tlogic\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_135 I-Code_Block Q_135 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nfix\tO\tfix\tO\nis\tO\tis\tO\nstraight\tO\tstraight\tO\nforward\tO\tforward\tO\nand\tO\tand\tO\nis\tO\tis\tO\ncommented\tO\tcommented\tO\nout\tO\tout\tO\nbelow\tO\tbelow\tO\nthe\tO\tthe\tO\noffending\tO\toffending\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nmore\tO\tmore\tO\nconcerned\tO\tconcerned\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\ncome\tO\tcome\tO\nacross\tO\tacross\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nassembler B-Application assembler O\nor\tO\tor\tO\nperhaps\tO\tperhaps\tO\nsomeone\tO\tsomeone\tO\nelse\tO\telse\tO\nhas\tO\thas\tO\nan\tO\tan\tO\nexplanation\tO\texplanation\tO\nof\tO\tof\tO\nwhy\tO\twhy\tO\nvalue B-Variable value O\ngets\tO\tgets\tO\nset\tO\tset\tO\nto\tO\tto\tO\nnull B-Value null O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_136 I-Code_Block Q_136 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nnormal\tO\tnormal\tO\noutput\tO\toutput\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_137 I-Code_Block Q_137 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nbuggy\tO\tbuggy\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_138 I-Code_Block Q_138 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nEnv\tO\tEnv\tO\nis\tO\tis\tO\na\tO\ta\tO\nVM B-Application VM O\nrunning\tO\trunning\tO\nWindows B-Operating_System Windows O\nServer I-Operating_System Server O\n2003 B-Version 2003 O\nR2 I-Version R2 O\nwith\tO\twith\tO\n.NET B-Library .NET O\n3.5 B-Version 3.5 O\nSP1 I-Version SP1 O\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nVS2008 B-Application VS2008 O\nTeam\tO\tTeam\tO\nSystem\tO\tSystem\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\n\t\nBrian B-User_Name Brian O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2135509\tO\t2135509\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2135509/\tO\thttps://stackoverflow.com/questions/2135509/\tO\n\t\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nexpression\tO\texpression\tO\nfatally\tO\tfatally\tO\nconfuses\tO\tconfuses\tO\nthe\tO\tthe\tO\nJIT\tO\tJIT\tO\noptimizer\tO\toptimizer\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ngenerated\tO\tgenerated\tO\nmachine\tO\tmachine\tO\ncode\tO\tcode\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_211 I-Code_Block A_211 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nbug\tO\tbug\tO\noccurs\tO\toccurs\tO\nat\tO\tat\tO\naddress B-Variable address O\n41 B-Value 41 O\n,\tO\t,\tO\nthe\tO\tthe\tO\noptimizer\tO\toptimizer\tO\nhas\tO\thas\tO\nconcluded\tO\tconcluded\tO\nthat\tO\tthat\tO\nvalue B-Variable value O\nwill\tO\twill\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\nnull B-Value null O\nso\tO\tso\tO\nit\tO\tit\tO\ndirectly\tO\tdirectly\tO\npasses\tO\tpasses\tO\na\tO\ta\tO\nnull B-Value null O\nto\tO\tto\tO\nString.Concat() B-Function String.Concat() O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ncomparison\tO\tcomparison\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\ngenerated\tO\tgenerated\tO\nwhen\tO\twhen\tO\nJIT\tO\tJIT\tO\noptimization\tO\toptimization\tO\nis\tO\tis\tO\nturned\tO\tturned\tO\noff\tO\toff\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_212 I-Code_Block A_212 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\ngot\tO\tgot\tO\nmoved\tO\tmoved\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nat\tO\tat\tO\naddress B-Variable address O\n5c B-Value 5c O\nit\tO\tit\tO\nnow\tO\tnow\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\nvariable\tO\tvariable\tO\n(\tO\t(\tO\nvalue B-Variable value O\n)\tO\t)\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nnull B-Value null O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nreport\tO\treport\tO\nthis\tO\tthis\tO\nbug\tO\tbug\tO\nat\tO\tat\tO\nconnect.microsoft.com\tO\tconnect.microsoft.com\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nworkaround\tO\tworkaround\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_213 I-Code_Block A_213 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2135509\tO\t2135509\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2135509/\tO\thttps://stackoverflow.com/questions/2135509/\tO\n\t\n\t\nThis\tO\tThis\tO\nbug\tO\tbug\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nfixed\tO\tfixed\tO\nin\tO\tin\tO\n.NET B-Library .NET O\n4 B-Version 4 O\n(\tO\t(\tO\nbeta B-Version beta O\n2) I-Version 2) O\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\noptimized\tO\toptimized\tO\nx86\tO\tx86\tO\ndisassembly\tO\tdisassembly\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbit\tO\tbit\tO\nnobugz\tO\tnobugz\tO\nhighlighted\tO\thighlighted\tO\n,\tO\t,\tO\nabove\tO\tabove\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_219 I-Code_Block A_219 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nprogram\tO\tprogram\tO\nalso\tO\talso\tO\ndisplays\tO\tdisplays\tO\nthe\tO\tthe\tO\nexpected\tO\texpected\tO\noutput\tO\toutput\tO\nin\tO\tin\tO\nboth\tO\tboth\tO\noptimized\tO\toptimized\tO\nand\tO\tand\tO\nunoptimized\tO\tunoptimized\tO\nmodes\tO\tmodes\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48719257\tO\t48719257\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48719257/\tO\thttps://stackoverflow.com/questions/48719257/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\ndevelop\tO\tdevelop\tO\none\tO\tone\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\nForge B-Library Forge O\nAPI I-Library API O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nworking\tO\tworking\tO\nwell\tO\twell\tO\nand\tO\tand\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\ndesign\tO\tdesign\tO\nautomation\tO\tautomation\tO\nin\tO\tin\tO\nforge B-Application forge O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nable\tO\table\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nPackage\tO\tPackage\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\ndwg B-File_Type dwg O\nfile\tO\tfile\tO\nusing\tO\tusing\tO\nforge B-Library forge O\napi I-Library api O\npreparing\tO\tpreparing\tO\nto\tO\tto\tO\nviewer\tO\tviewer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nable\tO\table\tO\nto\tO\tto\tO\nview\tO\tview\tO\ndwg B-File_Type dwg O\nin\tO\tin\tO\nbrowser B-Application browser O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nviewer\tO\tviewer\tO\nclick\tO\tclick\tO\nevent\tO\tevent\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nclick\tO\tclick\tO\npopulate\tO\tpopulate\tO\nthe\tO\tthe\tO\nelement B-Variable element O\nid I-Variable id O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\npackage\tO\tpackage\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nobject B-Variable object O\nid I-Variable id O\n.\tO\t.\tO\n\t\nelement B-Variable element O\nid I-Variable id O\nand\tO\tand\tO\nobject B-Variable object O\nid I-Variable id O\ntotally\tO\ttotally\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nconman B-Variable conman O\nid I-Variable id O\neach\tO\teach\tO\nobject\tO\tobject\tO\nclient\tO\tclient\tO\nand\tO\tand\tO\nserver\tO\tserver\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nSummary\tO\tSummary\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nviewer\tO\tviewer\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncapture\tO\tcapture\tO\nid\tO\tid\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\nmy\tO\tmy\tO\nlocal\tO\tlocal\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nusing\tO\tusing\tO\npackage\tO\tpackage\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nclicked\tO\tclicked\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\ndrawing\tO\tdrawing\tO\nnumber\tO\tnumber\tO\nin\tO\tin\tO\nviewer\tO\tviewer\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ndrawing\tO\tdrawing\tO\nnumber\tO\tnumber\tO\ndynamically\tO\tdynamically\tO\nusing\tO\tusing\tO\ncall\tO\tcall\tO\npackage\tO\tpackage\tO\nfrom\tO\tfrom\tO\nC# B-Language C# O\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48719257\tO\t48719257\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48719257/\tO\thttps://stackoverflow.com/questions/48719257/\tO\n\t\n\t\nFor\tO\tFor\tO\nan\tO\tan\tO\nRVT B-File_Type RVT O\nfile\tO\tfile\tO\n,\tO\t,\tO\none\tO\tone\tO\neasy\tO\teasy\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nto\tO\tto\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\nForge B-Application Forge O\nexternalId B-Variable externalId B-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nForge B-Application Forge O\nobject\tO\tobject\tO\nproperties\tO\tproperties\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nRevit B-Library Revit O\nelement\tO\telement\tO\nUniqueId B-Variable UniqueId B-Code_Block\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nRvtMetaProp B-Function RvtMetaProp O\nRevit B-Library Revit O\nadd-in\tO\tadd-in\tO\nmakes\tO\tmakes\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nOh\tO\tOh\tO\n,\tO\t,\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\n,\tO\t,\tO\nmore\tO\tmore\tO\ncomplete\tO\tcomplete\tO\nand\tO\tand\tO\nsuccinct\tO\tsuccinct\tO\nexplanation\tO\texplanation\tO\nof\tO\tof\tO\nUnique\tO\tUnique\tO\nIDs\tO\tIDs\tO\nfor\tO\tfor\tO\nForge B-Application Forge O\nViewer B-User_Interface_Element Viewer O\nElements\tO\tElements\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nViewer B-User_Interface_Element Viewer O\ngives\tO\tgives\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nthree\tO\tthree\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nIDs\tO\tIDs\tO\nwhen\tO\twhen\tO\ndealing\tO\tdealing\tO\nwith\tO\twith\tO\nRevit B-Library Revit O\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\t\ndbId B-Variable dbId B-Code_Block\n:\tO\t:\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nviewer\tO\tviewer\tO\nspecific\tO\tspecific\tO\nand\tO\tand\tO\nused\tO\tused\tO\nto\tO\tto\tO\nmanipulate\tO\tmanipulate\tO\nelements\tO\telements\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nviewer\tO\tviewer\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n.getProperties() B-Function .getProperties() B-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nRevit B-Library Revit O\nElementID B-Variable ElementID B-Code_Block\n:\tO\t:\tO\nexposed\tO\texposed\tO\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nName B-Variable Name B-Code_Block\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nviewer\tO\tviewer\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nselect\tO\tselect\tO\nsomething\tO\tsomething\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nProperty B-User_Interface_Element Property O\npanel I-User_Interface_Element panel O\ntitle\tO\ttitle\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nof\tO\tof\tO\n' B-Value ' O\nName I-Value Name O\n[ B-Value [ O\n12345 I-Value 12345 O\n] I-Value ] O\n' B-Value ' O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nparse\tO\tparse\tO\nthis\tO\tthis\tO\nname\tO\tname\tO\nstring B-Data_Type string O\nand\tO\tand\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\nelement B-Variable element O\nid I-Variable id O\n.\tO\t.\tO\n\t\nRevit B-Library Revit O\nUniqueID B-Variable UniqueID B-Code_Block\n:\tO\t:\tO\nexposed\tO\texposed\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nexternalId B-Variable externalId B-Code_Block\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n.getProperty() B-Function .getProperty() B-Code_Block\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16282000\tO\t16282000\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16282000/\tO\thttps://stackoverflow.com/questions/16282000/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nsurprised\tO\tsurprised\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nstraightforward\tO\tstraightforward\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nNothing\tO\tNothing\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nor\tO\tor\tO\non\tO\ton\tO\nSO B-Website SO O\nseems\tO\tseems\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nhtml B-Language html O\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1621 I-Code_Block Q_1621 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nevoke\tO\tevoke\tO\nsave\tO\tsave\tO\nas\tO\tas\tO\ndialog B-HTML_XML_Tag dialog O\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nimage B-User_Interface_Element image O\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nopening\tO\topening\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nin\tO\tin\tO\nnew\tO\tnew\tO\nwindow B-User_Interface_Element window O\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nformat\tO\tformat\tO\nunderstood\tO\tunderstood\tO\nby\tO\tby\tO\nbrowser B-Application browser O\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nsome\tO\tsome\tO\njavascript B-Language javascript O\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\n,\tO\t,\tO\nor\tO\tor\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16282000\tO\t16282000\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16282000/\tO\thttps://stackoverflow.com/questions/16282000/\tO\n\t\n\t\nYou\tO\tYou\tO\nabsolutely\tO\tabsolutely\tO\ncannot\tO\tcannot\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\non\tO\ton\tO\nclient B-Application client O\nside\tO\tside\tO\n,\tO\t,\tO\nneither\tO\tneither\tO\nin\tO\tin\tO\nHTML B-Language HTML O\n,\tO\t,\tO\nnor\tO\tnor\tO\nJavascript B-Language Javascript O\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nsending\tO\tsending\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nHTTP\tO\tHTTP\tO\nresponse\tO\tresponse\tO\nheaders\tO\theaders\tO\nfrom\tO\tfrom\tO\nserver B-Application server O\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35909768\tO\t35909768\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35909768/\tO\thttps://stackoverflow.com/questions/35909768/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nwhen\tO\twhen\tO\nhitting\tO\thitting\tO\nFEB B-Library FEB O\nREST I-Library REST O\nAPI I-Library API O\nfor\tO\tfor\tO\ngetting\tO\tgetting\tO\nrecord\tO\trecord\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\npassing\tO\tpassing\tO\nAuthorization\tO\tAuthorization\tO\nheader\tO\theader\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nget\tO\tget\tO\nrequest\tO\trequest\tO\nusing\tO\tusing\tO\nfollowing\tO\tfollowing\tO\nURL\tO\tURL\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nJava B-Language Java O\nfor\tO\tfor\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\nREST B-Library REST O\nAPI I-Library API O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhitting\tO\thitting\tO\nsame\tO\tsame\tO\nURL\tO\tURL\tO\nusing\tO\tusing\tO\npostman B-Application postman O\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nperfectly\tO\tperfectly\tO\n.\tO\t.\tO\n\t\nURL\tO\tURL\tO\n:\tO\t:\tO\nhttp://localhost/forms-basic/secure/org/data/f0720c16-d4b8-442f-8674-2d7fbdab8afc/F_Form1/8d4dfeed-aa11-45fc-a958-23d62d9328cc\tO\thttp://localhost/forms-basic/secure/org/data/f0720c16-d4b8-442f-8674-2d7fbdab8afc/F_Form1/8d4dfeed-aa11-45fc-a958-23d62d9328cc\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4396 I-Code_Block Q_4396 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35909768\tO\t35909768\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35909768/\tO\thttps://stackoverflow.com/questions/35909768/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\npassed\tO\tpassed\tO\naccept\tO\taccept\tO\nheader\tO\theader\tO\nas\tO\tas\tO\napplication/atom B-Code_Block application/atom O\n+xml I-Code_Block +xml O\nin\tO\tin\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nheader\tO\theader\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nit\tO\tit\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nissues\tO\tissues\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30229264\tO\t30229264\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30229264/\tO\thttps://stackoverflow.com/questions/30229264/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nways\tO\tways\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\ndrop B-User_Interface_Element drop O\ndown I-User_Interface_Element down O\nlist I-User_Interface_Element list O\nin\tO\tin\tO\nExcel B-Application Excel O\n:\tO\t:\tO\n\t\nData B-User_Interface_Element Data O\nvalidation I-User_Interface_Element validation O\nlist I-User_Interface_Element list O\n\t\nCombobox B-User_Interface_Element Combobox O\nform\tO\tform\tO\ncontrol\tO\tcontrol\tO\n\t\nNow\tO\tNow\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nData B-User_Interface_Element Data O\nvalidation I-User_Interface_Element validation O\ndropdown I-User_Interface_Element dropdown O\nlists I-User_Interface_Element lists O\nwich\tO\twich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ntoo\tO\ttoo\tO\nlong\tO\tlong\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsearch\tO\tsearch\tO\nfunctionality\tO\tfunctionality\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfind\tO\tfind\tO\nsome\tO\tsome\tO\nsolutions\tO\tsolutions\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\ncombobox B-User_Interface_Element combobox O\ncontrol\tO\tcontrol\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nnot\tO\tnot\tO\napplicable\tO\tapplicable\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nExcel B-Application Excel O\ndocument\tO\tdocument\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\ntheese\tO\ttheese\tO\ndropdown B-Data_Structure dropdown O\nlists I-Data_Structure lists O\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nrepeated\tO\trepeated\tO\nin\tO\tin\tO\neach\tO\teach\tO\nrow B-Data_Structure row O\n:\tO\t:\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\npossible\tO\tpossible\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsearch\tO\tsearch\tO\nfunctionality\tO\tfunctionality\tO\nto\tO\tto\tO\ndatavalidation\tO\tdatavalidation\tO\ndropdown B-User_Interface_Element dropdown O\nlist I-User_Interface_Element list O\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2551073\tO\t2551073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2551073/\tO\thttps://stackoverflow.com/questions/2551073/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nobjects\tO\tobjects\tO\nretrieved\tO\tretrieved\tO\nby\tO\tby\tO\nNHibernate B-Library NHibernate O\nover\tO\tover\tO\nWCF B-Library WCF O\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhenever\tO\twhenever\tO\na\tO\ta\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nof\tO\tof\tO\nICollection B-Class ICollection O\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nexception B-Class exception O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nNHibernate B-Library NHibernate O\ngets\tO\tgets\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nthis\tO\tthis\tO\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nintitialized\tO\tintitialized\tO\nwith\tO\twith\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nPersistentGenericSet B-Class PersistentGenericSet O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nPersistentGenericSet B-Class PersistentGenericSet O\nover\tO\tover\tO\nWCF B-Library WCF O\n?\tO\t?\tO\n\t\n-or\tO\t-or\tO\n-\tO\t-\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\nmaking\tO\tmaking\tO\nNHibernate B-Library NHibernate O\ninitialize\tO\tinitialize\tO\nthese\tO\tthese\tO\nproperties\tO\tproperties\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\ntype\tO\ttype\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2551073\tO\t2551073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2551073/\tO\thttps://stackoverflow.com/questions/2551073/\tO\n\t\n\t\nThe\tO\tThe\tO\nPersistentGenericSet B-Class PersistentGenericSet O\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nNHibernate B-Library NHibernate O\n(\tO\t(\tO\nused\tO\tused\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\ncollections\tO\tcollections\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nISet B-Class ISet O\ninterface\tO\tinterface\tO\nand\tO\tand\tO\nclasses\tO\tclasses\tO\nfrom\tO\tfrom\tO\nIesi.Collections B-Library Iesi.Collections O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwas\tO\twas\tO\nused\tO\tused\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\na\tO\ta\tO\ngap\tO\tgap\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n.Net B-Library .Net O\nframework\tO\tframework\tO\nas\tO\tas\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\nSet B-Class Set O\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nthat\tO\tthat\tO\nWCF B-Library WCF O\nhas\tO\thas\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nserializing\tO\tserializing\tO\nthis\tO\tthis\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nquick\tO\tquick\tO\nfix\tO\tfix\tO\nis\tO\tis\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\nNHibernate B-Library NHibernate O\nmappings\tO\tmappings\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nBag B-Class Bag O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nSet B-Class Set O\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nnormal\tO\tnormal\tO\nIList B-Class IList B-Code_Block\n<T> I-Class <T> I-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nSet<T> B-Class Set<T> B-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\nclasses\tO\tclasses\tO\nw\tO\tw\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nremote\tO\tremote\tO\nfacade\tO\tfacade\tO\nwhich\tO\twhich\tO\nsends\tO\tsends\tO\nDTOs\tO\tDTOs\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nWCF B-Library WCF O\nendpoints\tO\tendpoints\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ninternal\tO\tinternal\tO\ntypes\tO\ttypes\tO\nseparate\tO\tseparate\tO\nfrom\tO\tfrom\tO\nthose\tO\tthose\tO\nexposed\tO\texposed\tO\nas\tO\tas\tO\nremote\tO\tremote\tO\nservices\tO\tservices\tO\n.\tO\t.\tO\n\t\nJimmy B-User_Name Jimmy O\nBogards I-User_Name Bogards O\nAutomapper B-Library Automapper O\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\ntool\tO\ttool\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nmapping\tO\tmapping\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n\t\nAfter\tO\tAfter\tO\nre-reading\tO\tre-reading\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nhad\tO\thad\tO\na\tO\ta\tO\nlook\tO\tlook\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nand\tO\tand\tO\ncame\tO\tcame\tO\nacross\tO\tacross\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\nwhich\tO\twhich\tO\ndescribes\tO\tdescribes\tO\na\tO\ta\tO\nworkaround\tO\tworkaround\tO\nfor\tO\tfor\tO\nsending\tO\tsending\tO\nNHibernate B-Library NHibernate O\ncollections\tO\tcollections\tO\nover\tO\tover\tO\nWCF B-Library WCF O\n.\tO\t.\tO\n\t\nDavid B-User_Name David O\nBrion I-User_Name Brion O\nhas\tO\thas\tO\nwritten\tO\twritten\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nfollow\tO\tfollow\tO\nup\tO\tup\tO\narticle\tO\tarticle\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16434254\tO\t16434254\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16434254/\tO\thttps://stackoverflow.com/questions/16434254/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\ninstaller\tO\tinstaller\tO\ncreated\tO\tcreated\tO\nusing\tO\tusing\tO\nInstallshield B-Application Installshield O\n2012 B-Version 2012 O\nthat\tO\tthat\tO\ndepends\tO\tdepends\tO\ngreatly\tO\tgreatly\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\na\tO\ta\tO\nRegistry\tO\tRegistry\tO\nkey\tO\tkey\tO\nwritten\tO\twritten\tO\nby\tO\tby\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\napplication\tO\tapplication\tO\ndeveloped\tO\tdeveloped\tO\nin-house\tO\tin-house\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nRegDBGetKeyValueEx B-Function RegDBGetKeyValueEx O\nInstallscript B-Library Installscript O\nAPI I-Library API O\nto\tO\tto\tO\nfetch\tO\tfetch\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\npath\tO\tpath\tO\nguaranteed\tO\tguaranteed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntrailing\tO\ttrailing\tO\nbackslash\tO\tbackslash\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nvalue\tO\tvalue\tO\nserves\tO\tserves\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nTARGETDIR B-Variable TARGETDIR O\nfor\tO\tfor\tO\nmy\tO\tmy\tO\ninstaller\tO\tinstaller\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\noften\tO\toften\tO\nsee\tO\tsee\tO\na\tO\ta\tO\nforeign\tO\tforeign\tO\ncharacter B-Data_Type character O\n(\tO\t(\tO\nChinese\tO\tChinese\tO\n,\tO\t,\tO\nJapanese\tO\tJapanese\tO\nor\tO\tor\tO\nKorean\tO\tKorean\tO\n)\tO\t)\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbackslash.This B-Value backslash.This O\ncauses\tO\tcauses\tO\nmy\tO\tmy\tO\nTARGETDIR B-Variable TARGETDIR O\nto\tO\tto\tO\ncontain\tO\tcontain\tO\nthe\tO\tthe\tO\nforeign\tO\tforeign\tO\ncharacter B-Data_Type character O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npollutes\tO\tpollutes\tO\nmy\tO\tmy\tO\ninstallation\tO\tinstallation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nInstallscript B-Library Installscript O\nAPI I-Library API O\nwhich\tO\twhich\tO\nwrongly\tO\twrongly\tO\ntranslates\tO\ttranslates\tO\nthe\tO\tthe\tO\nRegistry\tO\tRegistry\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nprovide\tO\tprovide\tO\nsome\tO\tsome\tO\ninputs\tO\tinputs\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nmay\tO\tmay\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nroot-cause\tO\troot-cause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n1\tO\t1\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\napplication\tO\tapplication\tO\nin\tO\tin\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\na\tO\ta\tO\npurely\tO\tpurely\tO\nANSI\tO\tANSI\tO\napplication\tO\tapplication\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nUnicode\tO\tUnicode\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\n#define B-Code_Block #define O\nUNICODE I-Code_Block UNICODE O\nspecified\tO\tspecified\tO\nanywhere\tO\tanywhere\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nchecked\tO\tchecked\tO\nthe\tO\tthe\tO\ncompiler\tO\tcompiler\tO\nparameters\tO\tparameters\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nnothing\tO\tnothing\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nUnicode\tO\tUnicode\tO\nspecified\tO\tspecified\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\napplication\tO\tapplication\tO\nreads\tO\treads\tO\none\tO\tone\tO\nRegistry\tO\tRegistry\tO\nkey\tO\tkey\tO\nand\tO\tand\tO\nappends\tO\tappends\tO\na\tO\ta\tO\nbackslash\tO\tbackslash\tO\nand\tO\tand\tO\nupdates\tO\tupdates\tO\nother\tO\tother\tO\nkeys\tO\tkeys\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthis\tO\tthis\tO\noperation\tO\toperation\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nmy\tO\tmy\tO\ninstaller\tO\tinstaller\tO\nfetches\tO\tfetches\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nwritten\tO\twritten\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1647 I-Code_Block Q_1647 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nvalues\tO\tvalues\tO\nupdated\tO\tupdated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nare\tO\tare\tO\nthen\tO\tthen\tO\nwritten\tO\twritten\tO\nto\tO\tto\tO\nregistry B-Variable registry O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nInstallscript B-Library Installscript O\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nfetches\tO\tfetches\tO\nthese\tO\tthese\tO\nvalues\tO\tvalues\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1648 I-Code_Block Q_1648 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n2\tO\t2\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nthe\tO\tthe\tO\nregistry B-Variable registry O\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nset\tO\tset\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nwrong\tO\twrong\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1649 I-Code_Block Q_1649 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ncode\tO\tcode\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1650 I-Code_Block Q_1650 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16434254\tO\t16434254\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16434254/\tO\thttps://stackoverflow.com/questions/16434254/\tO\n\t\n\t\nIn\tO\tIn\tO\nsome\tO\tsome\tO\ncode\tO\tcode\tO\npages\tO\tpages\tO\nthe\tO\tthe\tO\ncurrency\tO\tcurrency\tO\nsymbol\tO\tsymbol\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbyte B-Data_Type byte O\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nASCII\tO\tASCII\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nbackslash B-Value backslash O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nUnicode\tO\tUnicode\tO\nfunctions\tO\tfunctions\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nhttp://www.siao2.com/2005/09/17/469941.aspx\tO\thttp://www.siao2.com/2005/09/17/469941.aspx\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16434254\tO\t16434254\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16434254/\tO\thttps://stackoverflow.com/questions/16434254/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nassigning\tO\tassigning\tO\nthe\tO\tthe\tO\nRegistry\tO\tRegistry\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nm_reqPath B-Variable m_reqPath B-Code_Block\nvariable\tO\tvariable\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntreating\tO\ttreating\tO\nit\tO\tit\tO\nas\tO\tas\tO\nnull-terminated B-Value null-terminated O\ncharacter B-Data_Type character O\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nstring B-Data_Type string O\ndata\tO\tdata\tO\nread\tO\tread\tO\nby\tO\tby\tO\nRegQueryValueEx() B-Function RegQueryValueEx() B-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nguaranteed\tO\tguaranteed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nnull-terminated B-Value null-terminated O\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nwriter\tO\twriter\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\ninclude\tO\tinclude\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nclearly\tO\tclearly\tO\nstated\tO\tstated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nChances\tO\tChances\tO\nare\tO\tare\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\ndata\tO\tdata\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nreading\tO\treading\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nRegistry\tO\tRegistry\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nnull-terminated B-Value null-terminated O\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nend\tO\tend\tO\nup\tO\tup\tO\ncopying\tO\tcopying\tO\nrandom\tO\trandom\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nbuffer B-Class buffer O\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\naccount\tO\taccount\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\npossibility\tO\tpossibility\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nallocate\tO\tallocate\tO\nextra\tO\textra\tO\nspace\tO\tspace\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nbuffer B-Class buffer O\nand\tO\tand\tO\nput\tO\tput\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nnull B-Value null O\nterminator\tO\tterminator\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nwhatever\tO\twhatever\tO\ndata\tO\tdata\tO\nyou\tO\tyou\tO\nactually\tO\tactually\tO\nread\tO\tread\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nproperly\tO\tproperly\tO\nnull B-Value null O\nterminated\tO\tterminated\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyour\tO\tyour\tO\nterminator\tO\tterminator\tO\nwill\tO\twill\tO\nsimply\tO\tsimply\tO\nbe\tO\tbe\tO\nredundant\tO\tredundant\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nalso\tO\talso\tO\nleaking\tO\tleaking\tO\nthe\tO\tthe\tO\nopened\tO\topened\tO\nRegistry\tO\tRegistry\tO\nkey\tO\tkey\tO\nhandle\tO\thandle\tO\nif\tO\tif\tO\nRegOpenKeyEx() B-Function RegOpenKeyEx() B-Code_Block\nsucceeds\tO\tsucceeds\tO\nbut\tO\tbut\tO\nRegQueryValueEx() B-Function RegQueryValueEx() B-Code_Block\nfails\tO\tfails\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\ninstead\tO\tinstead\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2123 I-Code_Block A_2123 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nTo\tO\tTo\tO\navoid\tO\tavoid\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\naltogether\tO\taltogether\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nRegGetValue() B-Function RegGetValue() B-Code_Block\ninstead\tO\tinstead\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndeals\tO\tdeals\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnull B-Value null O\nterminator\tO\tterminator\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2124 I-Code_Block A_2124 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOr\tO\tOr\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2125 I-Code_Block A_2125 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33223737\tO\t33223737\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33223737/\tO\thttps://stackoverflow.com/questions/33223737/\tO\n\t\n\t\nA\tO\tA\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\npositioning\tO\tpositioning\tO\nproblems\tO\tproblems\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\neasily\tO\teasily\tO\nsolvable\tO\tsolvable\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nCSS B-Language CSS O\ndisplay B-Code_Block display O\n: I-Code_Block : O\ntable I-Code_Block table O\nrule\tO\trule\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ngive\tO\tgive\tO\nit\tO\tit\tO\na\tO\ta\tO\ntry\tO\ttry\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfooter B-User_Interface_Element footer O\ncompletely\tO\tcompletely\tO\ndisappears\tO\tdisappears\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\n.\tO\t.\tO\n\t\nhtml B-Language html O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4027 I-Code_Block Q_4027 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ncss B-Language css O\nwith\tO\twith\tO\nsass B-Language sass O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4028 I-Code_Block Q_4028 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\ncodepen B-Application codepen O\n:\tO\t:\tO\n\t\nhttp://codepen.io/colintoh/pen/tGmDp\tO\thttp://codepen.io/colintoh/pen/tGmDp\tO\n\t\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nfooter B-User_Interface_Element footer O\njust\tO\tjust\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nshowing\tO\tshowing\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nfixing\tO\tfixing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nedit\tO\tedit\tO\n:\tO\t:\tO\n\t\nCSS B-Language CSS O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4029 I-Code_Block Q_4029 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nFirefox B-Application Firefox O\nright\tO\tright\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33223737\tO\t33223737\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33223737/\tO\thttps://stackoverflow.com/questions/33223737/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4726 I-Code_Block A_4726 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nTo\tO\tTo\tO\nyour\tO\tyour\tO\nfooter B-User_Interface_Element footer O\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\ntake\tO\ttake\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nspace\tO\tspace\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nfit\tO\tfit\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\ninside\tO\tinside\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nbrowsers B-Application browsers O\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nallow\tO\tallow\tO\nfor\tO\tfor\tO\nempty\tO\tempty\tO\ndivs B-HTML_XML_Tag divs O\n.\tO\t.\tO\n\t\nAdd\tO\tAdd\tO\nsome\tO\tsome\tO\ncontent\tO\tcontent\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nfooter B-User_Interface_Element footer O\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nbrowser B-Application browser O\n.\tO\t.\tO\n\t\nJSFiddle B-Application JSFiddle O\n:\tO\t:\tO\nhttps://jsfiddle.net/rq9nm772/1/\tO\thttps://jsfiddle.net/rq9nm772/1/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31276231\tO\t31276231\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31276231/\tO\thttps://stackoverflow.com/questions/31276231/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nstrange\tO\tstrange\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nresponse\tO\tresponse\tO\nwith\tO\twith\tO\nJSON B-File_Type JSON O\ndata\tO\tdata\tO\nin\tO\tin\tO\nbackground\tO\tbackground\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3757 I-Code_Block Q_3757 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nparseResponse() B-Function parseResponse() O\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nwritten\tO\twritten\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3758 I-Code_Block Q_3758 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsomehow\tO\tsomehow\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nappeared\tO\tappeared\tO\nin\tO\tin\tO\nRecyclerView B-Class RecyclerView O\nis\tO\tis\tO\nthere\tO\tthere\tO\nbefore\tO\tbefore\tO\nonPostExecute B-Function onPostExecute O\nis\tO\tis\tO\nshown\tO\tshown\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nin\tO\tin\tO\npost\tO\tpost\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\nprogressbar B-Class progressbar O\nshould\tO\tshould\tO\ngo\tO\tgo\tO\ninvisible\tO\tinvisible\tO\nand\tO\tand\tO\nnotifydatasetchange B-Function notifydatasetchange B-Code_Block\nshould\tO\tshould\tO\nalso\tO\talso\tO\nappear\tO\tappear\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ndata\tO\tdata\tO\nappears\tO\tappears\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nprogressbar B-Class progressbar O\ngoes\tO\tgoes\tO\ninvisible\tO\tinvisible\tO\nand\tO\tand\tO\nnotifyDataSetChange() B-Function notifyDataSetChange() B-Code_Block\nfired\tO\tfired\tO\n,\tO\t,\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nplease\tO\tplease\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31276231\tO\t31276231\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31276231/\tO\thttps://stackoverflow.com/questions/31276231/\tO\n\t\n\t\nAn\tO\tAn\tO\nAsyncTask B-Class AsyncTask B-Code_Block\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\nnothing\tO\tnothing\tO\nfrom\tO\tfrom\tO\ndoInBackground() B-Function doInBackground() B-Code_Block\n(\tO\t(\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ncommunicate\tO\tcommunicate\tO\nwith\tO\twith\tO\nonPostExecute() B-Function onPostExecute() B-Code_Block\nvia\tO\tvia\tO\nprivate\tO\tprivate\tO\nmembers\tO\tmembers\tO\n)\tO\t)\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nsuspicious\tO\tsuspicious\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nside\tO\tside\tO\neffects\tO\teffects\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nAsyncTask B-Class AsyncTask B-Code_Block\nand\tO\tand\tO\nthat\tO\tthat\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nstuff\tO\tstuff\tO\nis\tO\tis\tO\nhard\tO\thard\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\ncityList B-Variable cityList B-Code_Block\nand\tO\tand\tO\nactiveOrders B-Variable activeOrders B-Code_Block\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nshowing\tO\tshowing\tO\nwhat\tO\twhat\tO\nthat\tO\tthat\tO\nactually\tO\tactually\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nPresumably\tO\tPresumably\tO\nthose\tO\tthose\tO\nare\tO\tare\tO\nlists B-Data_Structure lists O\nattached\tO\tattached\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nAdapter B-Class Adapter B-Code_Block\nand\tO\tand\tO\nadding\tO\tadding\tO\nto\tO\tto\tO\nthose\tO\tthose\tO\nmight\tO\tmight\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\nView B-Class View B-Code_Block\nattached\tO\tattached\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAdapter B-Class Adapter B-Code_Block\nto\tO\tto\tO\nbe\tO\tbe\tO\nre-drawn\tO\tre-drawn\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ntry\tO\ttry\tO\ncalling\tO\tcalling\tO\nsetNotifyOnChange(false) B-Function setNotifyOnChange(false) B-Code_Block\non\tO\ton\tO\nmAdapter B-Variable mAdapter B-Code_Block\n(\tO\t(\tO\nto\tO\tto\tO\ndelay\tO\tdelay\tO\nupdates\tO\tupdates\tO\nuntil\tO\tuntil\tO\nyou\tO\tyou\tO\nmanually\tO\tmanually\tO\ncall\tO\tcall\tO\nnotifyDataSetChanged() B-Function notifyDataSetChanged() B-Code_Block\nlater\tO\tlater\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nhttp://developer.android.com/reference/android/widget/ArrayAdapter.html#setNotifyOnChange(boolean)\tO\thttp://developer.android.com/reference/android/widget/ArrayAdapter.html#setNotifyOnChange(boolean)\tO\n\t\nIn\tO\tIn\tO\ngeneral\tO\tgeneral\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nAsyncTask B-Class AsyncTask B-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nreturn\tO\treturn\tO\nanything\tO\tanything\tO\nor\tO\tor\tO\notherwise\tO\totherwise\tO\n\"\tO\t\"\tO\ncommunicate\tO\tcommunicate\tO\n\"\tO\t\"\tO\nwith\tO\twith\tO\nonPostExecute() B-Function onPostExecute() B-Code_Block\nthere\tO\tthere\tO\nis\tO\tis\tO\nlittle\tO\tlittle\tO\npoint\tO\tpoint\tO\nin\tO\tin\tO\nhaving\tO\thaving\tO\nonPostExecute() B-Function onPostExecute() B-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nbetter\tO\tbetter\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nside\tO\tside\tO\neffect\tO\teffect\tO\nin\tO\tin\tO\ndoInBackground() B-Function doInBackground() B-Code_Block\nand\tO\tand\tO\ninstead\tO\tinstead\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nparsed\tO\tparsed\tO\ndata\tO\tdata\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nto\tO\tto\tO\ncityList B-Variable cityList B-Code_Block\nand\tO\tand\tO\nactiveOrders B-Variable activeOrders B-Code_Block\nin\tO\tin\tO\nonPostExecute() B-Function onPostExecute() B-Code_Block\n.\tO\t.\tO\n\t\nMulti-threading\tO\tMulti-threading\tO\nis\tO\tis\tO\ntricky\tO\ttricky\tO\nand\tO\tand\tO\nAsyncTasks B-Class AsyncTasks B-Code_Block\nwhile\tO\twhile\tO\nappearing/attempting\tO\tappearing/attempting\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\neasier\tO\teasier\tO\n,\tO\t,\tO\nhave\tO\thave\tO\nmany\tO\tmany\tO\npitfalls\tO\tpitfalls\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nattempted\tO\tattempted\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\non\tO\ton\tO\nthread\tO\tthread\tO\nsafety\tO\tsafety\tO\nof\tO\tof\tO\nAsyncTask B-Class AsyncTask B-Code_Block\nhere\tO\there\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31276231\tO\t31276231\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31276231/\tO\thttps://stackoverflow.com/questions/31276231/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nprivilege\tO\tprivilege\tO\nto\tO\tto\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\npost\tO\tpost\tO\nit\tO\tit\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhappen\tO\thappen\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nlisteners B-Class listeners O\non\tO\ton\tO\nyour\tO\tyour\tO\nordersDatabase B-Variable ordersDatabase B-Code_Block\n,\tO\t,\tO\ncityList B-Variable cityList B-Code_Block\nor\tO\tor\tO\nactiveOrders B-Variable activeOrders B-Code_Block\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46801774\tO\t46801774\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46801774/\tO\thttps://stackoverflow.com/questions/46801774/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nRewriteRule B-Variable RewriteRule O\nfor\tO\tfor\tO\nmy\tO\tmy\tO\n.htaccess B-File_Type .htaccess O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nCondition\tO\tCondition\tO\nis\tO\tis\tO\nfollowing\tO\tfollowing\tO\n,\tO\t,\tO\nForce\tO\tForce\tO\nAll\tO\tAll\tO\nuser\tO\tuser\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\nto\tO\tto\tO\nHTTP\tO\tHTTP\tO\nwith\tO\twith\tO\nwww\tO\twww\tO\nand\tO\tand\tO\nforce\tO\tforce\tO\nsecure-email\tO\tsecure-email\tO\nfolder\tO\tfolder\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nhttps\tO\thttps\tO\nwith\tO\twith\tO\nwww\tO\twww\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthis\tO\tthis\tO\nRewriteRule B-Variable RewriteRule O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46801774\tO\t46801774\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46801774/\tO\thttps://stackoverflow.com/questions/46801774/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nadapt\tO\tadapt\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nneed\tO\tneed\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6799 I-Code_Block A_6799 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFYI\tO\tFYI\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nonly\tO\tonly\tO\nwith\tO\twith\tO\nApache B-Application Apache O\nversion\tO\tversion\tO\n>=\tO\t>=\tO\n2.4 B-Version 2.4 O\nor\tO\tor\tO\nelse\tO\telse\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmod_rewrite B-Function mod_rewrite O\n\t\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nhere\tO\there\tO\nand\tO\tand\tO\nhere\tO\there\tO\nto\tO\tto\tO\nadapt\tO\tadapt\tO\nthe\tO\tthe\tO\nrules\tO\trules\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nhighly\tO\thighly\tO\nrecommend\tO\trecommend\tO\nsetting\tO\tsetting\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\nover\tO\tover\tO\nHTTPS\tO\tHTTPS\tO\n(\tO\t(\tO\nHTTPS\tO\tHTTPS\tO\nis\tO\tis\tO\na\tO\ta\tO\nrequirement\tO\trequirement\tO\nfor\tO\tfor\tO\nmany\tO\tmany\tO\nnew\tO\tnew\tO\nbrowser B-Application browser O\nfeatures\tO\tfeatures\tO\n,\tO\t,\tO\nparticularly\tO\tparticularly\tO\nthose\tO\tthose\tO\nrequired\tO\trequired\tO\nfor\tO\tfor\tO\nProgressive\tO\tProgressive\tO\nWeb\tO\tWeb\tO\nApps\tO\tApps\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43233599\tO\t43233599\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43233599/\tO\thttps://stackoverflow.com/questions/43233599/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndefined\tO\tdefined\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nsynonyms\tO\tsynonyms\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5529 I-Code_Block Q_5529 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ndefined\tO\tdefined\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntype\tO\ttype\tO\nand\tO\tand\tO\ntype\tO\ttype\tO\nsynonym\tO\tsynonym\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5530 I-Code_Block Q_5530 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nconstruct\tO\tconstruct\tO\na\tO\ta\tO\ngraph B-Data_Structure graph O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5531 I-Code_Block Q_5531 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ntuples B-Data_Structure tuples O\nis\tO\tis\tO\nprovided\tO\tprovided\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nelement\tO\telement\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntuple B-Data_Structure tuple O\nis\tO\tis\tO\nanother\tO\tanother\tO\ntuple B-Data_Structure tuple O\nand\tO\tand\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\na\tO\ta\tO\nlist B-Data_Structure list O\n,\tO\t,\tO\nas\tO\tas\tO\nper\tO\tper\tO\nthe\tO\tthe\tO\nfunctions\tO\tfunctions\tO\ntype\tO\ttype\tO\nsignature\tO\tsignature\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nHaskell B-Language Haskell O\nso\tO\tso\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\nsome\tO\tsome\tO\ndifficulty\tO\tdifficulty\tO\nin\tO\tin\tO\ndeciphering\tO\tdeciphering\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5532 I-Code_Block Q_5532 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nconcluded\tO\tconcluded\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntype\tO\ttype\tO\nmismatches\tO\tmismatches\tO\nbut\tO\tbut\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nclear\tO\tclear\tO\nhow\tO\thow\tO\nso\tO\tso\tO\n,\tO\t,\tO\ngiven\tO\tgiven\tO\nthe\tO\tthe\tO\ntypes\tO\ttypes\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ndefined\tO\tdefined\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nfunctions\tO\tfunctions\tO\ntype\tO\ttype\tO\nsignature\tO\tsignature\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43233599\tO\t43233599\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43233599/\tO\thttps://stackoverflow.com/questions/43233599/\tO\n\t\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nuseful\tO\tuseful\tO\nexercise\tO\texercise\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nand\tO\tand\tO\nas\tO\tas\tO\na\tO\ta\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\nmaking\tO\tmaking\tO\nthis\tO\tthis\tO\nmistake\tO\tmistake\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nlearned\tO\tlearned\tO\nto\tO\tto\tO\nbetter\tO\tbetter\tO\nunderstand\tO\tunderstand\tO\noperator\tO\toperator\tO\nprecedence\tO\tprecedence\tO\nand\tO\tand\tO\nparsing\tO\tparsing\tO\nin\tO\tin\tO\nHaskell B-Language Haskell O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nmore\tO\tmore\tO\nexperience\tO\texperience\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nrealize\tO\trealize\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nhave\tO\thave\tO\navoided\tO\tavoided\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwound\tO\twound\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nsimpler\tO\tsimpler\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\na\tO\ta\tO\nresult\tO\tresult\tO\n,\tO\t,\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\npattern\tO\tpattern\tO\nmatching\tO\tmatching\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncomposing\tO\tcomposing\tO\ncalls\tO\tcalls\tO\nto\tO\tto\tO\nfst B-Function fst B-Code_Block\nand\tO\tand\tO\nsnd B-Function snd B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6259 I-Code_Block A_6259 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nshaped\tO\tshaped\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nit\tO\tit\tO\nconsumes\tO\tconsumes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\ndescriptive\tO\tdescriptive\tO\nnames\tO\tnames\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nyou\tO\tyou\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nimprovement\tO\timprovement\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nobserving\tO\tobserving\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nrecursive\tO\trecursive\tO\npattern\tO\tpattern\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\ncommon\tO\tcommon\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\neach\tO\teach\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n,\tO\t,\tO\nindependent\tO\tindependent\tO\nof\tO\tof\tO\neach\tO\teach\tO\nother\tO\tother\tO\n,\tO\t,\tO\nand\tO\tand\tO\nconstruct\tO\tconstruct\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\nmap B-Function map B-Code_Block\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\ndeals\tO\tdeals\tO\nwith\tO\twith\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nPGM B-Variable PGM O\nitems\tO\titems\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nmap B-Function map B-Code_Block\nto\tO\tto\tO\nextend\tO\textend\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\non\tO\ton\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nthem\tO\tthem\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6260 I-Code_Block A_6260 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43233599\tO\t43233599\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43233599/\tO\thttps://stackoverflow.com/questions/43233599/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nf B-Code_Block f B-Code_Block\n. I-Code_Block . I-Code_Block\ng I-Code_Block g I-Code_Block\nx I-Code_Block x I-Code_Block\nis\tO\tis\tO\nf B-Code_Block f B-Code_Block\n. I-Code_Block . I-Code_Block\n( I-Code_Block ( I-Code_Block\ng I-Code_Block g I-Code_Block\nx I-Code_Block x I-Code_Block\n) I-Code_Block ) I-Code_Block\n.\tO\t.\tO\n\t\nTherefore\tO\tTherefore\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ntypes\tO\ttypes\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nmatch\tO\tmatch\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6257 I-Code_Block A_6257 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\neither\tO\teither\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nparentheses\tO\tparentheses\tO\naround\tO\taround\tO\nfst B-Code_Block fst B-Code_Block\n. I-Code_Block . I-Code_Block\nfst I-Code_Block fst I-Code_Block\nor\tO\tor\tO\n$ B-Code_Block $ B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6258 I-Code_Block A_6258 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\ncombine\tO\tcombine\tO\nboth\tO\tboth\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nfst B-Code_Block fst B-Code_Block\n. I-Code_Block . I-Code_Block\nfst I-Code_Block fst I-Code_Block\n$ I-Code_Block $ I-Code_Block\nx I-Code_Block x I-Code_Block\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nprecedence\tO\tprecedence\tO\nof\tO\tof\tO\n$ B-Code_Block $ B-Code_Block\nis\tO\tis\tO\nlow\tO\tlow\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48268937\tO\t48268937\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48268937/\tO\thttps://stackoverflow.com/questions/48268937/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\ndocument\tO\tdocument\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nused\tO\tused\tO\nin\tO\tin\tO\na\tO\ta\tO\nlecture\tO\tlecture\tO\neach\tO\teach\tO\nsemester\tO\tsemester\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncontents\tO\tcontents\tO\nbasically\tO\tbasically\tO\nstay\tO\tstay\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\na\tO\ta\tO\nsubset\tO\tsubset\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nis\tO\tis\tO\nused\tO\tused\tO\neach\tO\teach\tO\nsemester\tO\tsemester\tO\n.\tO\t.\tO\n\t\nDefines\tO\tDefines\tO\nare\tO\tare\tO\nused\tO\tused\tO\nto\tO\tto\tO\nset\tO\tset\tO\nwhich\tO\twhich\tO\nparts\tO\tparts\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ncompiled\tO\tcompiled\tO\nand\tO\tand\tO\nwhich\tO\twhich\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\none\tO\tone\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noptions\tO\toptions\tO\nis\tO\tis\tO\ncompiled\tO\tcompiled\tO\nin\tO\tin\tO\na\tO\ta\tO\ntabular\tO\ttabular\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nform\tO\tform\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6417 I-Code_Block Q_6417 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nall\tO\tall\tO\noptions\tO\toptions\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nchosen\tO\tchosen\tO\nvia\tO\tvia\tO\ndefines\tO\tdefines\tO\nare\tO\tare\tO\nlisted\tO\tlisted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable B-User_Interface_Element table O\nas\tO\tas\tO\na\tO\ta\tO\nrow B-User_Interface_Element row O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\noccurs\tO\toccurs\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\n& B-Value & B-Code_Block\ncharacter\tO\tcharacter\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\nthe\tO\tthe\tO\n\\ifdefined B-Code_Block \\ifdefined B-Code_Block\nand\tO\tand\tO\nis\tO\tis\tO\ntreated\tO\ttreated\tO\nas\tO\tas\tO\na\tO\ta\tO\n\\fi B-Code_Block \\fi B-Code_Block\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nIncomplete B-Error_Name Incomplete B-Code_Block\n\\ifdefined I-Error_Name \\ifdefined I-Code_Block\nerror\tO\terror\tO\nis\tO\tis\tO\nthrown\tO\tthrown\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nworked\tO\tworked\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\ndefining\tO\tdefining\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\nthat\tO\tthat\tO\njust\tO\tjust\tO\noutputs\tO\toutputs\tO\nthe\tO\tthe\tO\n& B-Value & B-Code_Block\nchar B-Data_Type char O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthere\tO\tthere\tO\nsure\tO\tsure\tO\nis\tO\tis\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nsomeone\tO\tsomeone\tO\nelses\tO\telses\tO\ndocument\tO\tdocument\tO\nand\tO\tand\tO\ncannot\tO\tcannot\tO\njust\tO\tjust\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nstructure\tO\tstructure\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\ndefines\tO\tdefines\tO\nto\tO\tto\tO\nreach\tO\treach\tO\nthis\tO\tthis\tO\nspecific\tO\tspecific\tO\ngoal\tO\tgoal\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8748294\tO\t8748294\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8748294/\tO\thttps://stackoverflow.com/questions/8748294/\tO\n\t\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nit\tO\tit\tO\n's\tO\t's\tO\nreally\tO\treally\tO\nnice\tO\tnice\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nPlots B-User_Interface_Element Plots O\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nits\tO\tits\tO\nabout\tO\tabout\tO\nmaking\tO\tmaking\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\na\tO\ta\tO\ntriangle B-User_Interface_Element triangle O\nI\tO\tI\tO\nfound\tO\tfound\tO\nit\tO\tit\tO\nquite\tO\tquite\tO\ncomplicated\tO\tcomplicated\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndraw\tO\tdraw\tO\na\tO\ta\tO\ntriangle B-User_Interface_Element triangle O\nbut\tO\tbut\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthat\tO\tthat\tO\nangle B-User_Interface_Element angle O\nmarks I-User_Interface_Element marks O\n,\tO\t,\tO\nthose\tO\tthose\tO\ncurved B-User_Interface_Element curved O\nlines I-User_Interface_Element lines O\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nbeginner\tO\tbeginner\tO\ninto\tO\tinto\tO\nthis\tO\tthis\tO\njob\tO\tjob\tO\n,\tO\t,\tO\nof\tO\tof\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nbook\tO\tbook\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nrecommend\tO\trecommend\tO\nme\tO\tme\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\ngood\tO\tgood\tO\nlooking\tO\tlooking\tO\ngraphics\tO\tgraphics\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nas\tO\tas\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npicture B-User_Interface_Element picture O\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nprograms\tO\tprograms\tO\nare\tO\tare\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\nand\tO\tand\tO\nrecommendations\tO\trecommendations\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8748294\tO\t8748294\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8748294/\tO\thttps://stackoverflow.com/questions/8748294/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nsimple/basic\tO\tsimple/basic\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1068 I-Code_Block A_1068 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwrapped\tO\twrapped\tO\nin\tO\tin\tO\nManipulate B-Class Manipulate B-Code_Block\nand\tO\tand\tO\nparameterized\tO\tparameterized\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nangle\tO\tangle\tO\nalpha B-Variable alpha B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1069 I-Code_Block A_1069 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nslider B-User_Interface_Element slider O\n,\tO\t,\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\naccordingly\tO\taccordingly\tO\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8748294\tO\t8748294\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8748294/\tO\thttps://stackoverflow.com/questions/8748294/\tO\n\t\n\t\nEdit\tO\tEdit\tO\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\ninspiration\tO\tinspiration\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nDemonstrations\tO\tDemonstrations\tO\nproject\tO\tproject\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\ntriangle-related B-User_Interface_Element triangle-related O\ndemonstrations\tO\tdemonstrations\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\ntaking\tO\ttaking\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nlook\tO\tlook\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ngeometry-related\tO\tgeometry-related\tO\ndemonstrations\tO\tdemonstrations\tO\nby\tO\tby\tO\nJay B-User_Name Jay O\nWarendorff I-User_Name Warendorff O\n.\tO\t.\tO\n\t\nHe\tO\tHe\tO\nhas\tO\thas\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nstructured\tO\tstructured\tO\nset\tO\tset\tO\nof\tO\tof\tO\ngeometry-related\tO\tgeometry-related\tO\nfunctions\tO\tfunctions\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\ncan\tO\tcan\tO\nreuse\tO\treuse\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nangleArc B-Function angleArc B-Code_Block\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nget\tO\tget\tO\nyou\tO\tyou\tO\nstarted\tO\tstarted\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nexample\tO\texample\tO\nof\tO\tof\tO\na\tO\ta\tO\nhelper\tO\thelper\tO\nfunction\tO\tfunction\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nroom\tO\troom\tO\nfor\tO\tfor\tO\nimprovement\tO\timprovement\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1066 I-Code_Block A_1066 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1067 I-Code_Block A_1067 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15566370\tO\t15566370\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15566370/\tO\thttps://stackoverflow.com/questions/15566370/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nhierarchial\tO\thierarchial\tO\narray B-Data_Structure array O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsingle\tO\tsingle\tO\ndimensional\tO\tdimensional\tO\narray B-Data_Structure array O\nobtained\tO\tobtained\tO\nfrom\tO\tfrom\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nLanguage\tO\tLanguage\tO\nis\tO\tis\tO\nPHP B-Language PHP O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nmentioned\tO\tmentioned\tO\nexample\tO\texample\tO\nkey\tO\tkey\tO\nid B-Variable id O\n-3 B-Value -3 O\nindicates\tO\tindicates\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nnode\tO\tnode\tO\n.\tO\t.\tO\n\t\nInput\tO\tInput\tO\nData\tO\tData\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1525 I-Code_Block Q_1525 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOutput\tO\tOutput\tO\nexpected\tO\texpected\tO\ndata\tO\tdata\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1526 I-Code_Block Q_1526 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15566370\tO\t15566370\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15566370/\tO\thttps://stackoverflow.com/questions/15566370/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2014 I-Code_Block A_2014 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ntrick\tO\ttrick\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n&$a\tO\t&$a\tO\nnotation\tO\tnotation\tO\nwhich\tO\twhich\tO\ngives\tO\tgives\tO\nus\tO\tus\tO\nreferences\tO\treferences\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nvariable\tO\tvariable\tO\ncopies\tO\tcopies\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\nnon-root\tO\tnon-root\tO\nnodes\tO\tnodes\tO\nare\tO\tare\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nparents\tO\tparents\tO\n,\tO\t,\tO\nand\tO\tand\tO\nroot\tO\troot\tO\nnodes\tO\tnodes\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nresult\tO\tresult\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29431129\tO\t29431129\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29431129/\tO\thttps://stackoverflow.com/questions/29431129/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nupdate\tO\tupdate\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nin\tO\tin\tO\ndesign\tO\tdesign\tO\nmode\tO\tmode\tO\nof\tO\tof\tO\nAccess B-Application Access O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ninserted\tO\tinserted\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nVBA B-Language VBA O\nprocedure\tO\tprocedure\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nrecordset B-Data_Structure recordset O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nwindows\tO\twindows\tO\nID\tO\tID\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nby\tO\tby\tO\ndeclaring\tO\tdeclaring\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3502 I-Code_Block Q_3502 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\ncommand B-User_Interface_Element command O\nbutton I-User_Interface_Element button O\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nprocedure\tO\tprocedure\tO\na\tO\ta\tO\nmessage B-User_Interface_Element message O\nbox I-User_Interface_Element box O\nappears\tO\tappears\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nWindows\tO\tWindows\tO\nID\tO\tID\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ntitle\tO\ttitle\tO\nand\tO\tand\tO\nit\tO\tit\tO\nasks\tO\tasks\tO\nto\tO\tto\tO\n' B-Output_Block ' O\nEnter I-Output_Block Enter O\na I-Output_Block a O\nParameter I-Output_Block Parameter O\nValue I-Output_Block Value O\n' B-Output_Block ' O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ninserting\tO\tinserting\tO\nit\tO\tit\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntable B-Data_Structure table O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthe\tO\tthe\tO\nSQL B-Language SQL O\nstatement\tO\tstatement\tO\nis\tO\tis\tO\nincorrect\tO\tincorrect\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nwindows\tO\twindows\tO\nID\tO\tID\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\npicked\tO\tpicked\tO\nup\tO\tup\tO\nas\tO\tas\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29431129\tO\t29431129\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29431129/\tO\thttps://stackoverflow.com/questions/29431129/\tO\n\t\n\t\nAdd\tO\tAdd\tO\nquotes\tO\tquotes\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nname\tO\tname\tO\nvalue\tO\tvalue\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\ndb B-Application db O\nengine I-Application engine O\nwill\tO\twill\tO\ninterpret\tO\tinterpret\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nliteral\tO\tliteral\tO\ntext\tO\ttext\tO\nstring B-Data_Type string O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nparameter\tO\tparameter\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nchange\tO\tchange\tO\nshould\tO\tshould\tO\nresolve\tO\tresolve\tO\nyour\tO\tyour\tO\nimmediate\tO\timmediate\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nBeyond\tO\tBeyond\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\ninclude\tO\tinclude\tO\nspaces\tO\tspaces\tO\nbefore\tO\tbefore\tO\nWHERE B-Code_Block WHERE B-Code_Block\nand\tO\tand\tO\nAND B-Code_Block AND B-Code_Block\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nwith\tO\twith\tO\nDAO B-Application DAO O\n's\tO\t's\tO\nExecute B-Function Execute B-Code_Block\nmethod\tO\tmethod\tO\nand\tO\tand\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\ndbFailOnError B-Variable dbFailOnError O\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4165 I-Code_Block A_4165 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31853974\tO\t31853974\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31853974/\tO\thttps://stackoverflow.com/questions/31853974/\tO\n\t\n\t\nImagine\tO\tImagine\tO\ncode\tO\tcode\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3851 I-Code_Block Q_3851 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nRegarding\tO\tRegarding\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nlogical\tO\tlogical\tO\nbranching\tO\tbranching\tO\nis\tO\tis\tO\nby\tO\tby\tO\nstandard\tO\tstandard\tO\nensured\tO\tensured\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nevaluated\tO\tevaluated\tO\nfrom\tO\tfrom\tO\nleft\tO\tleft\tO\nto\tO\tto\tO\nright\tO\tright\tO\nand\tO\tand\tO\nand\tO\tand\tO\nsays\tO\tsays\tO\nregarding\tO\tregarding\tO\nthe\tO\tthe\tO\nconditional\tO\tconditional\tO\n& B-Code_Block & B-Code_Block\nit\tO\tit\tO\nbreaks\tO\tbreaks\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\none\tO\tone\tO\ncondition\tO\tcondition\tO\nis\tO\tis\tO\nfalse B-Value false O\n,\tO\t,\tO\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nrule\tO\trule\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nsnippet\tO\tsnippet\tO\ninvalid\tO\tinvalid\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nefficent\tO\tefficent\tO\nand\tO\tand\tO\neven\tO\teven\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nretrace\tO\tretrace\tO\nways\tO\tways\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nspecially\tO\tspecially\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\n:\tO\t:\tO\n\t\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\ninterupt\tO\tinterupt\tO\ncondition\tO\tcondition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndo/while B-Code_Block do/while B-Code_Block\nloop\tO\tloop\tO\nprevent\tO\tprevent\tO\nfrom\tO\tfrom\tO\ninvoking\tO\tinvoking\tO\nundefined\tO\tundefined\tO\nbehavior\tO\tbehavior\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nrule\tO\trule\tO\nabout\tO\tabout\tO\nusing\tO\tusing\tO\npointer B-Data_Type pointer O\narithmetic\tO\tarithmetic\tO\nthat\tO\tthat\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\na\tO\ta\tO\npointer B-Data_Type pointer O\nleaving\tO\tleaving\tO\nthe\tO\tthe\tO\nbounds\tO\tbounds\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nas\tO\tas\tO\n1\tO\t1\tO\npast\tO\tpast\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31853974\tO\t31853974\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31853974/\tO\thttps://stackoverflow.com/questions/31853974/\tO\n\t\n\t\nAfter\tO\tAfter\tO\nthis\tO\tthis\tO\nloop\tO\tloop\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4561 I-Code_Block A_4561 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nActingPointer B-Variable ActingPointer B-Code_Block\nends\tO\tends\tO\nup\tO\tup\tO\nbeing\tO\tbeing\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nOriginPointer B-Variable OriginPointer B-Code_Block\n+\tO\t+\tI-Code_Block\nSOME_GIVEN_AMOUNT B-Variable SOME_GIVEN_AMOUNT I-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nok\tO\tok\tO\nas\tO\tas\tO\na\tO\ta\tO\npointer B-Data_Type pointer O\n(\tO\t(\tO\nas\tO\tas\tO\nit\tO\tit\tO\npoints\tO\tpoints\tO\nto\tO\tto\tO\none\tO\tone\tO\nelement\tO\telement\tO\npast\tO\tpast\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwriting\tO\twriting\tO\nto\tO\tto\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\niteration\tO\titeration\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndo B-Code_Block do B-Code_Block\nloop\tO\tloop\tO\nis\tO\tis\tO\nundefined\tO\tundefined\tO\nbehaviour\tO\tbehaviour\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nActingPointer B-Variable ActingPointer B-Code_Block\nis\tO\tis\tO\ndecremented\tO\tdecremented\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\ndo B-Code_Block do B-Code_Block\nloop\tO\tloop\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\nat\tO\tat\tO\n1 B-Value 1 O\npast\tO\tpast\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\n,\tO\t,\tO\nand\tO\tand\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndecremented\tO\tdecremented\tO\nbelow\tO\tbelow\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21153309\tO\t21153309\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21153309/\tO\thttps://stackoverflow.com/questions/21153309/\tO\n\t\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\na\tO\ta\tO\najax B-Function ajax O\ncall\tO\tcall\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\njsp B-Application jsp O\nto\tO\tto\tO\nservlet B-Application servlet O\n.\tO\t.\tO\n\t\nwhen\tO\twhen\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nstring B-Data_Type string O\nthen\tO\tthen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nresponse\tO\tresponse\tO\nas\tO\tas\tO\na\tO\ta\tO\nString B-Data_Type String O\narray B-Data_Structure array O\nthen\tO\tthen\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\nstring B-Data_Type string O\narray B-Data_Structure array O\nfrom\tO\tfrom\tO\nservlet B-Application servlet O\nas\tO\tas\tO\na\tO\ta\tO\najax B-Function ajax O\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2257 I-Code_Block Q_2257 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21153309\tO\t21153309\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21153309/\tO\thttps://stackoverflow.com/questions/21153309/\tO\n\t\n\t\nSend\tO\tSend\tO\nthe\tO\tthe\tO\najax B-Function ajax O\nresponse\tO\tresponse\tO\nin\tO\tin\tO\njson B-File_Type json O\nformat\tO\tformat\tO\nby\tO\tby\tO\nencoding\tO\tencoding\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nin\tO\tin\tO\njson B-File_Type json O\nand\tO\tand\tO\nreturn\tO\treturn\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nGson B-Library Gson O\nand\tO\tand\tO\nthen\tO\tthen\tO\nencode\tO\tencode\tO\nyour\tO\tyour\tO\narray B-Data_Structure array O\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2835 I-Code_Block A_2835 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nJavascript B-Language Javascript O\nend\tO\tend\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\njson B-File_Type json O\nobject\tO\tobject\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2836 I-Code_Block A_2836 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21153309\tO\t21153309\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21153309/\tO\thttps://stackoverflow.com/questions/21153309/\tO\n\t\n\t\nWrite\tO\tWrite\tO\nit\tO\tit\tO\nout\tO\tout\tO\nto\tO\tto\tO\nJSON B-File_Type JSON O\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nJavascript B-Language Javascript O\nca\tO\tca\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\na\tO\ta\tO\nJava B-Language Java O\narray B-Data_Structure array O\n's\tO\t's\tO\ntoString() B-Function toString() O\nmethod\tO\tmethod\tO\n(\tO\t(\tO\n[ B-Code_Block [ B-Code_Block\nLjava.lang.String I-Code_Block Ljava.lang.String I-Code_Block\n; I-Code_Block ; I-Code_Block\n@5527f4f9 I-Code_Block @5527f4f9 I-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nunderstand\tO\tunderstand\tO\nJSON B-File_Type JSON O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nonly\tO\tonly\tO\never\tO\tever\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nstring B-Data_Type string O\narray B-Data_Structure array O\nand\tO\tand\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\nmore\tO\tmore\tO\nlibraries\tO\tlibraries\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2834 I-Code_Block A_2834 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nJavascript B-Language Javascript O\nframework\tO\tframework\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nclient-side B-Application client-side O\n,\tO\t,\tO\nyour\tO\tyour\tO\nJSON B-File_Type JSON O\nwill\tO\twill\tO\nbe\tO\tbe\tO\navailable\tO\tavailable\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nxmlHttpRequestObject.responseText B-Variable xmlHttpRequestObject.responseText B-Code_Block\n.\tO\t.\tO\n\t\nAngularJS B-Library AngularJS O\nstores\tO\tstores\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n$http.get().success B-Function $http.get().success B-Code_Block\nmethod\tO\tmethod\tO\n's\tO\t's\tO\nfirst\tO\tfirst\tO\ndata B-Variable data B-Code_Block\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\njQuery B-Library jQuery O\nstores\tO\tstores\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n$.ajax({success}) B-Function $.ajax({success}) B-Code_Block\nmethod\tO\tmethod\tO\n's\tO\t's\tO\nfirst\tO\tfirst\tO\ndata B-Variable data B-Code_Block\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\nAngular B-Library Angular O\nand\tO\tand\tO\njQuery B-Library jQuery O\nautomatically\tO\tautomatically\tO\nvalidate\tO\tvalidate\tO\nand\tO\tand\tO\neval B-Function eval B-Code_Block\nit\tO\tit\tO\nto\tO\tto\tO\nan\tO\tan\tO\n[ B-Code_Block [ B-Code_Block\nobject I-Code_Block object I-Code_Block\nObject I-Code_Block Object I-Code_Block\n] I-Code_Block ] I-Code_Block\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nxmlHttpRequestObject.responseText B-Variable xmlHttpRequestObject.responseText B-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37988241\tO\t37988241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37988241/\tO\thttps://stackoverflow.com/questions/37988241/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\ntwo\tO\ttwo\tO\nvalues\tO\tvalues\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndual\tO\tdual\tO\ninput\tO\tinput\tO\nrange\tO\trange\tO\nslider B-User_Interface_Element slider O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nor\tO\tor\tO\ngreater\tO\tgreater\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nfalse B-Value false B-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\noverlap\tO\toverlap\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nthumbs\tO\tthumbs\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nused\tO\tused\tO\n.change B-Function .change B-Code_Block\nto\tO\tto\tO\nlisten\tO\tlisten\tO\nfor\tO\tfor\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nconsole.log B-Function console.log B-Code_Block\n&\tO\t&\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nafter\tO\tafter\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbeen\tO\tbeen\tO\nupdated\tO\tupdated\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nincluded\tO\tincluded\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nhope\tO\thope\tO\nfor\tO\tfor\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nan\tO\tan\tO\nfull\tO\tfull\tO\nalmost\tO\talmost\tO\nworking\tO\tworking\tO\nversion\tO\tversion\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttps://fiddle.jshell.net/elliottjb7/fj9ot08v/\tO\thttps://fiddle.jshell.net/elliottjb7/fj9ot08v/\tO\n\t\nThanks\tO\tThanks\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4783 I-Code_Block Q_4783 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37988241\tO\t37988241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37988241/\tO\thttps://stackoverflow.com/questions/37988241/\tO\n\t\n\t\nthis\tO\tthis\tO\nline\tO\tline\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5470 I-Code_Block A_5470 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5471 I-Code_Block A_5471 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37988241\tO\t37988241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37988241/\tO\thttps://stackoverflow.com/questions/37988241/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5473 I-Code_Block A_5473 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ncheck\tO\tcheck\tO\nwhere\tO\twhere\tO\nbottom\tO\tbottom\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n2\tO\t2\tO\nfunctions\tO\tfunctions\tO\n(.change()) B-Function (.change()) B-Code_Block\nare\tO\tare\tO\nquite\tO\tquite\tO\nredundant\tO\tredundant\tO\nfor\tO\tfor\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n've\tO\t've\tO\nincluded\tO\tincluded\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthem\tO\tthem\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45388593\tO\t45388593\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45388593/\tO\thttps://stackoverflow.com/questions/45388593/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n8-10\tO\t8-10\tO\nclasses\tO\tclasses\tO\nthat\tO\tthat\tO\nextends\tO\textends\tO\nJPanel B-Class JPanel B-Code_Block\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nhave\tO\thave\tO\nunique\tO\tunique\tO\nlook\tO\tlook\tO\nand\tO\tand\tO\nall\tO\tall\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nlisteners\tO\tlisteners\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nGameWindow B-Class GameWindow B-Code_Block\nclass\tO\tclass\tO\nthat\tO\tthat\tO\nextends\tO\textends\tO\nJFrame B-Class JFrame B-Code_Block\nand\tO\tand\tO\nadd\tO\tadd\tO\nthose\tO\tthose\tO\npanels\tO\tpanels\tO\nto\tO\tto\tO\nGameWindow B-Class GameWindow B-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nin\tO\tin\tO\nMainMenuPanel B-Class MainMenuPanel B-Code_Block\n,\tO\t,\tO\nif\tO\tif\tO\nuser\tO\tuser\tO\nclick\tO\tclick\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nlabel\tO\tlabel\tO\nor\tO\tor\tO\nbutton B-User_Interface_Element button O\n,\tO\t,\tO\nuser\tO\tuser\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndirected\tO\tdirected\tO\nanother\tO\tanother\tO\npanel B-User_Interface_Element panel O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nframe\tO\tframe\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nbetween\tO\tbetween\tO\npanels B-User_Interface_Element panels O\nand\tO\tand\tO\nsee\tO\tsee\tO\nits\tO\tits\tO\neffects\tO\teffects\tO\non\tO\ton\tO\nGameWindow B-Class GameWindow B-Code_Block\nframe\tO\tframe\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45873518\tO\t45873518\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45873518/\tO\thttps://stackoverflow.com/questions/45873518/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ndeploy\tO\tdeploy\tO\nthe\tO\tthe\tO\nTomcat B-Application Tomcat O\nproject\tO\tproject\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nconsole B-Application console O\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6013 I-Code_Block Q_6013 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nspent\tO\tspent\tO\nseveral\tO\tseveral\tO\ndays\tO\tdays\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nit\tO\tit\tO\nand\tO\tand\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nhope\tO\thope\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nget\tO\tget\tO\nhelp\tO\thelp\tO\n,\tO\t,\tO\nthank\tO\tthank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n!\tO\t!\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nconfiguration\tO\tconfiguration\tO\nfile\tO\tfile\tO\nbeans.xml B-File_Name beans.xml O\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45678629\tO\t45678629\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45678629/\tO\thttps://stackoverflow.com/questions/45678629/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nnoticed\tO\tnoticed\tO\na\tO\ta\tO\ncommon\tO\tcommon\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nbrowser B-Application browser O\nback B-User_Interface_Element back O\nbutton I-User_Interface_Element button O\nusage\tO\tusage\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\nwhere\tO\twhere\tO\nhitting\tO\thitting\tO\nthe\tO\tthe\tO\nback B-User_Interface_Element back O\nbutton I-User_Interface_Element button O\nafter\tO\tafter\tO\nlogout\tO\tlogout\tO\nloads\tO\tloads\tO\na\tO\ta\tO\ncached\tO\tcached\tO\npage B-User_Interface_Element page O\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nappears\tO\tappears\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\n(\tO\t(\tO\nthough\tO\tthough\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nactually\tO\tactually\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nhelpful\tO\thelpful\tO\nquestions\tO\tquestions\tO\nwith\tO\twith\tO\nhelpful\tO\thelpful\tO\nanswers\tO\tanswers\tO\nand\tO\tand\tO\nemployed\tO\temployed\tO\nthe\tO\tthe\tO\nfixes\tO\tfixes\tO\nfolks\tO\tfolks\tO\nsuggested\tO\tsuggested\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nevery\tO\tevery\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nsuggested\tO\tsuggested\tO\nCache-Control B-Library Cache-Control O\noptions\tO\toptions\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nheader B-User_Interface_Element header O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5983 I-Code_Block Q_5983 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nheader B-User_Interface_Element header O\nworks\tO\tworks\tO\non\tO\ton\tO\nmost\tO\tmost\tO\nbrowsers B-Application browsers O\n,\tO\t,\tO\neven\tO\teven\tO\nwith\tO\twith\tO\njust\tO\tjust\tO\nno-cache B-Function no-cache O\nand\tO\tand\tO\nno-store B-Function no-store O\n,\tO\t,\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nheader B-User_Interface_Element header O\noptions\tO\toptions\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\non\tO\ton\tO\nSafari B-Application Safari O\n.\tO\t.\tO\n\t\nSure\tO\tSure\tO\nenough\tO\tenough\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nreliable\tO\treliable\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nto\tO\tto\tO\nresolve\tO\tresolve\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nSafari B-Application Safari O\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\njavascript B-Language javascript O\nas\tO\tas\tO\nsuch\tO\tsuch\tO\nwhich\tO\twhich\tO\nforces\tO\tforces\tO\na\tO\ta\tO\nreload\tO\treload\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5984 I-Code_Block Q_5984 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\njavascript B-Language javascript O\nblock\tO\tblock\tO\nabove\tO\tabove\tO\ndoes\tO\tdoes\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndisable\tO\tdisable\tO\njavascript B-Language javascript O\nvia\tO\tvia\tO\nSafari B-Application Safari O\n->\tO\t->\tO\nPreferences\tO\tPreferences\tO\n->\tO\t->\tO\nSecurity\tO\tSecurity\tO\nand\tO\tand\tO\nsubsequently\tO\tsubsequently\tO\nhit\tO\thit\tO\nthe\tO\tthe\tO\nback B-User_Interface_Element back O\nbutton I-User_Interface_Element button O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nan\tO\tan\tO\nedge\tO\tedge\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nfascinated\tO\tfascinated\tO\nthat\tO\tthat\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\npopular\tO\tpopular\tO\nbrowser B-Application browser O\nmakes\tO\tmakes\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\ntrivial\tO\ttrivial\tO\nbug\tO\tbug\tO\nthis\tO\tthis\tO\ntricky\tO\ttricky\tO\n!\tO\t!\tO\n\t\nIf\tO\tIf\tO\nanybody\tO\tanybody\tO\nhas\tO\thas\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nSafari B-Application Safari O\nplay\tO\tplay\tO\nnice\tO\tnice\tO\nwithout\tO\twithout\tO\njavascript B-Language javascript O\nI\tO\tI\tO\n'd\tO\t'd\tO\nlove\tO\tlove\tO\nto\tO\tto\tO\nhear\tO\thear\tO\nhow\tO\thow\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nall\tO\tall\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30052561\tO\t30052561\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30052561/\tO\thttps://stackoverflow.com/questions/30052561/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnewbie\tO\tnewbie\tO\nto\tO\tto\tO\nember.js B-Library ember.js O\nand\tO\tand\tO\nnode.I\tO\tnode.I\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nemail\tO\temail\tO\nusing\tO\tusing\tO\nmailgun B-Library mailgun O\nin\tO\tin\tO\nan\tO\tan\tO\nember.js B-Library ember.js O\napp\tO\tapp\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nFound\tO\tFound\tO\nmailgun-js B-Library mailgun-js O\npackage\tO\tpackage\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nthis\tO\tthis\tO\npackage\tO\tpackage\tO\nwith\tO\twith\tO\nember.js B-Library ember.js O\nusing\tO\tusing\tO\nexpress\tO\texpress\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncould\tO\tcould\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nparse-cloud\tO\tparse-cloud\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nember B-Library ember O\ncontroller\tO\tcontroller\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nmail\tO\tmail\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30052561\tO\t30052561\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30052561/\tO\thttps://stackoverflow.com/questions/30052561/\tO\n\t\n\t\nEmber B-Library Ember O\nruns\tO\truns\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\nwhile\tO\twhile\tO\nsending\tO\tsending\tO\nemail\tO\temail\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\n(\tO\t(\tO\nor\tO\tor\tO\n:\tO\t:\tO\nshould\tO\tshould\tO\nunder\tO\tunder\tO\nmost\tO\tmost\tO\ncircumstances\tO\tcircumstances\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\n)\tO\t)\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver B-Application server O\n.\tO\t.\tO\n\t\nexpress B-Code_Block express B-Code_Block\nand\tO\tand\tO\nmailgun-js B-Library mailgun-js B-Code_Block\nhint\tO\thint\tO\nat\tO\tat\tO\nthat\tO\tthat\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n(\tO\t(\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nserver-side B-Application server-side O\nnode\tO\tnode\tO\nmodules\tO\tmodules\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n'd\tO\t'd\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nhook\tO\thook\tO\nthe\tO\tthe\tO\nmail-sending\tO\tmail-sending\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nREST B-Library REST O\nbackend\tO\tbackend\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver B-Application server O\nor\tO\tor\tO\nprovide\tO\tprovide\tO\nit\tO\tit\tO\nas\tO\tas\tO\nan\tO\tan\tO\nextra\tO\textra\tO\nservice\tO\tservice\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\naccess\tO\taccess\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\njQuery-Ajax-Call B-Library jQuery-Ajax-Call O\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nember B-Library ember O\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43222356\tO\t43222356\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43222356/\tO\thttps://stackoverflow.com/questions/43222356/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nWPF B-Library WPF O\nDataGrid B-Class DataGrid O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndefinition\tO\tdefinition\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5524 I-Code_Block Q_5524 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nallows\tO\tallows\tO\nme\tO\tme\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nselected\tO\tselected\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nregion\tO\tregion\tO\n\"\tO\t\"\tO\nof\tO\tof\tO\ncells\tO\tcells\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nDataGrid B-Class DataGrid O\nis\tO\tis\tO\nbound\tO\tbound\tO\nto\tO\tto\tO\nan\tO\tan\tO\nobservable\tO\tobservable\tO\ncollection\tO\tcollection\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nXAML B-Language XAML O\ncolumn B-User_Interface_Element column O\ndefinitions\tO\tdefinitions\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\ncolumns B-User_Interface_Element columns O\nhidden\tO\thidden\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nvisible\tO\tvisible\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5525 I-Code_Block Q_5525 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\na\tO\ta\tO\nRight\tO\tRight\tO\nMouse B-Device Mouse O\nButton I-Device Button O\ncontext B-User_Interface_Element context O\nmenu I-User_Interface_Element menu O\ndefined\tO\tdefined\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nDataGrid B-Class DataGrid O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5526 I-Code_Block Q_5526 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nClick\tO\tClick\tO\n,\tO\t,\tO\nDrag\tO\tDrag\tO\nand\tO\tand\tO\nDrop\tO\tDrop\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nselected\tO\tselected\tO\ncells B-User_Interface_Element cells O\ninto\tO\tinto\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nthinking\tO\tthinking\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\npressing\tO\tpressing\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nAlt B-Keyboard_IP Alt O\nKey\tO\tKey\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nLeft\tO\tLeft\tO\nMouse B-Device Mouse O\nButton I-Device Button O\nclick\tO\tclick\tO\nto\tO\tto\tO\ninitiate\tO\tinitiate\tO\nthe\tO\tthe\tO\nDragDrop B-Class DragDrop O\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nconsider\tO\tconsider\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nirregular\tO\tirregular\tO\n\"\tO\t\"\tO\nselection\tO\tselection\tO\nof\tO\tof\tO\ncells B-User_Interface_Element cells O\nin\tO\tin\tO\nthe\tO\tthe\tO\nDataGrid B-Class DataGrid O\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nunclear\tO\tunclear\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nproceed\tO\tproceed\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nseveral\tO\tseveral\tO\nquestions\tO\tquestions\tO\nregarding\tO\tregarding\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\nWhat\tO\tWhat\tO\nevents\tO\tevents\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\noverride\tO\toverride\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\n/Left\tO\t/Left\tO\nMouse B-Device Mouse O\nclick\tO\tclick\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\naffect\tO\taffect\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nselected\tO\tselected\tO\ncells B-User_Interface_Element cells O\n?\tO\t?\tO\n\t\n2)\tO\t2)\tO\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ndetermine\tO\tdetermine\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\nLeft\tO\tLeft\tO\nMouse B-Device Mouse O\nButton I-Device Button O\nclick\tO\tclick\tO\nis\tO\tis\tO\noccurring\tO\toccurring\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nregion\tO\tregion\tO\nof\tO\tof\tO\nselected\tO\tselected\tO\ncells B-User_Interface_Element cells O\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\npiece\tO\tpiece\tO\n?\tO\t?\tO\n\t\n3)\tO\t3)\tO\nOnce\tO\tOnce\tO\nI\tO\tI\tO\n've\tO\t've\tO\ndetermined\tO\tdetermined\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nstep\tO\tstep\tO\n?\tO\t?\tO\n\t\nDo\tO\tDo\tO\ncopy\tO\tcopy\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nclipboard B-Application clipboard O\nfor\tO\tfor\tO\nuse\tO\tuse\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nexternal\tO\texternal\tO\ndrop\tO\tdrop\tO\n?\tO\t?\tO\n\t\n4)\tO\t4)\tO\nWhat\tO\tWhat\tO\nevents\tO\tevents\tO\n(\tO\t(\tO\nif\tO\tif\tO\nany\tO\tany\tO\n)\tO\t)\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nDataGrid B-Class DataGrid O\nin\tO\tin\tO\norder\tO\torder\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43222356\tO\t43222356\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43222356/\tO\thttps://stackoverflow.com/questions/43222356/\tO\n\t\n\t\nthe\tO\tthe\tO\nbasic\tO\tbasic\tO\nevents\tO\tevents\tO\nto\tO\tto\tO\ndrag\tO\tdrag\tO\nand\tO\tand\tO\ndrop\tO\tdrop\tO\nare\tO\tare\tO\n:\tO\t:\tO\nevents\tO\tevents\tO\nto\tO\tto\tO\ndrag\tO\tdrag\tO\nand\tO\tand\tO\ndrop\tO\tdrop\tO\n\t\nSpecially\tO\tSpecially\tO\nthe\tO\tthe\tO\nDragLeave B-Function DragLeave O\nand\tO\tand\tO\nDrop B-Function Drop O\nto\tO\tto\tO\ndo\tO\tdo\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\n(\tO\t(\tO\ndelete/add\tO\tdelete/add\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nGridData B-Class GridData O\nproperty\tO\tproperty\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nVM B-Application VM O\nto\tO\tto\tO\nsearch\tO\tsearch\tO\nand\tO\tand\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nstrongly\tO\tstrongly\tO\nrecommend\tO\trecommend\tO\n3rd\tO\t3rd\tO\nparty\tO\tparty\tO\nlike\tO\tlike\tO\nTelerik B-Application Telerik O\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43222356\tO\t43222356\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43222356/\tO\thttps://stackoverflow.com/questions/43222356/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\ncomplete\tO\tcomplete\tO\nanswer\tO\tanswer\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6280 I-Code_Block A_6280 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nshift B-Keyboard_IP shift O\nkey\tO\tkey\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nsignal\tO\tsignal\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\ndisambiguate\tO\tdisambiguate\tO\nthe\tO\tthe\tO\nclick\tO\tclick\tO\nand\tO\tand\tO\ndrag\tO\tdrag\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nDataGrid B-Class DataGrid O\nto\tO\tto\tO\nselect\tO\tselect\tO\ncells B-User_Interface_Element cells O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nmechanism\tO\tmechanism\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\ncontext\tO\tcontext\tO\nmenu B-User_Interface_Element menu O\nitem\tO\titem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclipboard B-Application clipboard O\nis\tO\tis\tO\nkey\tO\tkey\tO\nto\tO\tto\tO\nany\tO\tany\tO\ndrag\tO\tdrag\tO\nand\tO\tand\tO\ndrop\tO\tdrop\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndoing\tO\tdoing\tO\nis\tO\tis\tO\nputting\tO\tputting\tO\ndata\tO\tdata\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nclipboard B-Application clipboard O\nin\tO\tin\tO\nvarious\tO\tvarious\tO\nformats\tO\tformats\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntarget\tO\ttarget\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndrop\tO\tdrop\tO\nwill\tO\twill\tO\nrecognize\tO\trecognize\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nonly\tO\tonly\tO\nplain\tO\tplain\tO\ntext\tO\ttext\tO\nis\tO\tis\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nrich B-File_Type rich O\ntext I-File_Type text O\nor\tO\tor\tO\nHTML B-File_Type HTML O\nor\tO\tor\tO\nany\tO\tany\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nother\tO\tother\tO\nformats\tO\tformats\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nexternal\tO\texternal\tO\napplication\tO\tapplication\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndropping\tO\tdropping\tO\non\tO\ton\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nregistered\tO\tregistered\tO\nas\tO\tas\tO\na\tO\ta\tO\ndrop\tO\tdrop\tO\ntarget\tO\ttarget\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncannot\tO\tcannot\tO\nforce\tO\tforce\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nrespond\tO\trespond\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndrop\tO\tdrop\tO\n...\tO\t...\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nlistening\tO\tlistening\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nWord B-Application Word O\nand\tO\tand\tO\nExcel B-Application Excel O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nNotepad B-Application Notepad O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nall\tO\tall\tO\n4\tO\t4\tO\nitems\tO\titems\tO\nare\tO\tare\tO\nsatisfied\tO\tsatisfied\tO\n:\tO\t:\tO\n\t\nOverride\tO\tOverride\tO\nthe\tO\tthe\tO\npreview B-Function preview O\nmouse I-Function mouse O\ndown I-Function down O\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\noriginal\tO\toriginal\tO\nsource\tO\tsource\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmouse B-Device mouse O\nevent\tO\tevent\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndata B-Class data O\ngrid I-Class grid O\ncell B-User_Interface_Element cell O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ncell B-User_Interface_Element cell O\nis\tO\tis\tO\nselected\tO\tselected\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nblock\tO\tblock\tO\nof\tO\tof\tO\ncells B-User_Interface_Element cells O\nthat\tO\tthat\tO\nis\tO\tis\tO\nselected\tO\tselected\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\ncells B-User_Interface_Element cells O\n,\tO\t,\tO\ngather\tO\tgather\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbindings\tO\tbindings\tO\nand\tO\tand\tO\norganize\tO\torganize\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ngrid B-User_Interface_Element grid O\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nbaseline\tO\tbaseline\tO\nuse\tO\tuse\tO\nplain\tO\tplain\tO\ntext\tO\ttext\tO\nbut\tO\tbut\tO\noptionally\tO\toptionally\tO\nadd\tO\tadd\tO\nother\tO\tother\tO\nformats\tO\tformats\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nthe\tO\tthe\tO\nDragDrop B-Class DragDrop O\nclass\tO\tclass\tO\nto\tO\tto\tO\nactually\tO\tactually\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\nand\tO\tand\tO\ndrop\tO\tdrop\tO\n.\tO\t.\tO\n\t\nOverride\tO\tOverride\tO\npreview B-Function preview O\nmouse I-Function mouse O\ndown I-Function down O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48931998\tO\t48931998\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48931998/\tO\thttps://stackoverflow.com/questions/48931998/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nseen\tO\tseen\tO\nexamples\tO\texamples\tO\nusing\tO\tusing\tO\ncrc B-Function crc O\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nexamples\tO\texamples\tO\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\nmy\tO\tmy\tO\nhead\tO\thead\tO\nround\tO\tround\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\ngenerating\tO\tgenerating\tO\na\tO\ta\tO\nchecksum\tO\tchecksum\tO\nfor\tO\tfor\tO\nentire\tO\tentire\tO\ntable B-Data_Structure table O\ndata\tO\tdata\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\nwith\tO\twith\tO\nreplication\tO\treplication\tO\nand\tO\tand\tO\ndata\tO\tdata\tO\nvalidation\tO\tvalidation\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6530 I-Code_Block Q_6530 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\na\tO\ta\tO\nchecksum\tO\tchecksum\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\neach\tO\teach\tO\nentry\tO\tentry\tO\nin\tO\tin\tO\na\tO\ta\tO\nMYSQL B-Application MYSQL O\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nbased\tO\tbased\tO\non\tO\ton\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\nfield\tO\tfield\tO\nvalues\tO\tvalues\tO\n(\tO\t(\tO\nshown\tO\tshown\tO\nabove\tO\tabove\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nidea\tO\tidea\tO\nbeing\tO\tbeing\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nset\tO\tset\tO\nof\tO\tof\tO\nfields\tO\tfields\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nchecksum\tO\tchecksum\tO\ngenerated\tO\tgenerated\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nduplicate\tO\tduplicate\tO\nentries\tO\tentries\tO\nby\tO\tby\tO\nchecking\tO\tchecking\tO\nthe\tO\tthe\tO\nchecksum\tO\tchecksum\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nlengthy\tO\tlengthy\tO\nchecks\tO\tchecks\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfield\tO\tfield\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\ncontain\tO\tcontain\tO\nmatching\tO\tmatching\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nseen\tO\tseen\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nSQL B-Application SQL O\nSERVER I-Application SERVER O\n,\tO\t,\tO\nusing\tO\tusing\tO\nchecksum_binary\tO\tchecksum_binary\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nso\tO\tso\tO\nfast\tO\tfast\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\napply\tO\tapply\tO\na\tO\ta\tO\nchecksum\tO\tchecksum\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nindividual\tO\tindividual\tO\nfields\tO\tfields\tO\nfor\tO\tfor\tO\ncomparison\tO\tcomparison\tO\nor\tO\tor\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nstick\tO\tstick\tO\nwith\tO\twith\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48931998\tO\t48931998\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48931998/\tO\thttps://stackoverflow.com/questions/48931998/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nthis\tO\tthis\tO\ncomplicated\tO\tcomplicated\tO\n:\tO\t:\tO\n\t\nA\tO\tA\tO\nchecksum\tO\tchecksum\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nrows B-Data_Structure rows O\nwith\tO\twith\tO\n3\tO\t3\tO\ncolumns B-Data_Structure columns O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7178 I-Code_Block A_7178 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nTo\tO\tTo\tO\ninsert\tO\tinsert\tO\nthis\tO\tthis\tO\nnew\tO\tnew\tO\nchecksum\tO\tchecksum\tO\n:\tO\t:\tO\n\t\nAlter\tO\tAlter\tO\nthe\tO\tthe\tO\ntable B-Data_Structure table O\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ncolumn B-Data_Structure column O\nthen\tO\tthen\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7179 I-Code_Block A_7179 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nA\tO\tA\tO\nnote\tO\tnote\tO\nthe\tO\tthe\tO\nchecksum\tO\tchecksum\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\n100%\tO\t100%\tO\nsafe\tO\tsafe\tO\nas\tO\tas\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ncharacter B-Data_Type character O\nof\tO\tof\tO\n1\tO\t1\tO\ncolumn B-Data_Structure column O\nis\tO\tis\tO\nnot\tO\tnot\tO\nthere\tO\tthere\tO\nbut\tO\tbut\tO\nfind\tO\tfind\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ncolumn B-Data_Structure column O\nthe\tO\tthe\tO\nhash\tO\thash\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nseparator\tO\tseparator\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconcat B-Code_Block concat O\nto\tO\tto\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7180 I-Code_Block A_7180 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21192749\tO\t21192749\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21192749/\tO\thttps://stackoverflow.com/questions/21192749/\tO\n\t\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nstarted\tO\tstarted\tO\nmessing\tO\tmessing\tO\nwith\tO\twith\tO\nnode.js B-Library node.js O\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nalready\tO\talready\tO\nhaving\tO\thaving\tO\nproblems\tO\tproblems\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\neven\tO\teven\tO\nstart\tO\tstart\tO\ndebugging\tO\tdebugging\tO\nthis.\tO\tthis.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2273 I-Code_Block Q_2273 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21192749\tO\t21192749\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21192749/\tO\thttps://stackoverflow.com/questions/21192749/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nnpm B-Application npm O\njust\tO\tjust\tO\ninstall\tO\tinstall\tO\neach\tO\teach\tO\npackage\tO\tpackage\tO\nwith\tO\twith\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\ncommand\tO\tcommand\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2852 I-Code_Block A_2852 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOn\tO\tOn\tO\nmy\tO\tmy\tO\ncomputer\tO\tcomputer\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nsuggestion\tO\tsuggestion\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\npackage.json B-File_Name package.json O\n\"\tO\t\"\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthat\tO\tthat\tO\nfile\tO\tfile\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nlibraries\tO\tlibraries\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nthe\tO\tthe\tO\ndependencies\tO\tdependencies\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2853 I-Code_Block A_2853 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\njust\tO\tjust\tO\nexecute\tO\texecute\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2854 I-Code_Block A_2854 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nnpm B-Application npm O\nwill\tO\twill\tO\nmake\tO\tmake\tO\nall\tO\tall\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nnode_modules B-File_Name node_modules O\n\"\tO\t\"\tO\nwhere\tO\twhere\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\njs B-Language js O\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndirectory\tO\tdirectory\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nnode_modules B-File_Name node_modules O\n\"\tO\t\"\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndependencies\tO\tdependencies\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nall\tO\tall\tO\navailable\tO\tavailable\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npackage.json B-File_Name package.json O\nfile\tO\tfile\tO\n,\tO\t,\tO\nnear\tO\tnear\tO\nevery\tO\tevery\tO\ndependency\tO\tdependency\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\n\" B-Value \" O\n* I-Value * O\n\" I-Value \" O\n,\tO\t,\tO\nthat\tO\tthat\tO\nmeans\tO\tmeans\tO\n\" B-Value \" O\nall I-Value all O\nversions I-Value versions O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\na\tO\ta\tO\nuseful\tO\tuseful\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\nhttps://npmjs.org/doc/json.html\tO\thttps://npmjs.org/doc/json.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24892137\tO\t24892137\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24892137/\tO\thttps://stackoverflow.com/questions/24892137/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\na\tO\ta\tO\nplaceholder\tO\tplaceholder\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nhold\tO\thold\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\na\tO\ta\tO\ncalculation\tO\tcalculation\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthe\tO\tthe\tO\ncompiler B-Application compiler O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode.\tO\tcode.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2806 I-Code_Block Q_2806 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWould\tO\tWould\tO\nreally\tO\treally\tO\nappreciate\tO\tappreciate\tO\nit\tO\tit\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24892137\tO\t24892137\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24892137/\tO\thttps://stackoverflow.com/questions/24892137/\tO\n\t\n\t\nfinal B-Data_Type final B-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nkeyword\tO\tkeyword\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nchanging\tO\tchanging\tO\nyour\tO\tyour\tO\nfloat B-Data_Type float B-Code_Block\nfinal B-Variable final I-Code_Block\nto\tO\tto\tO\nanother\tO\tanother\tO\nname\tO\tname\tO\nlike\tO\tlike\tO\nfloat B-Data_Type float B-Code_Block\nfinalAnswer B-Variable finalAnswer I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24892137\tO\t24892137\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24892137/\tO\thttps://stackoverflow.com/questions/24892137/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nkeyword\tO\tkeyword\tO\nfinal B-Data_Type final O\n.\tO\t.\tO\n\t\nChange\tO\tChange\tO\nyour\tO\tyour\tO\nname\tO\tname\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3416 I-Code_Block A_3416 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47190967\tO\t47190967\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47190967/\tO\thttps://stackoverflow.com/questions/47190967/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nclass\tO\tclass\tO\nA B-Class A O\nis\tO\tis\tO\nexecuting\tO\texecuting\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nlog\tO\tlog\tO\nstatements\tO\tstatements\tO\nin\tO\tin\tO\nmethods\tO\tmethods\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nclass\tO\tclass\tO\nprinting B-Class printing O\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nset\tO\tset\tO\nbreakpoints\tO\tbreakpoints\tO\non\tO\ton\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nis\tO\tis\tO\nexecuting\tO\texecuting\tO\noff\tO\toff\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nin\tO\tin\tO\nclass\tO\tclass\tO\nA B-Class A O\n,\tO\t,\tO\nand\tO\tand\tO\ndebug\tO\tdebug\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbreakpoints\tO\tbreakpoints\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\npause\tO\tpause\tO\nexecution\tO\texecution\tO\n.\tO\t.\tO\n\t\nBreakpoints\tO\tBreakpoints\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nin\tO\tin\tO\nonResume() B-Function onResume() O\nof\tO\tof\tO\nan\tO\tan\tO\nActivity\tO\tActivity\tO\nclass\tO\tclass\tO\nB B-Class B O\nare\tO\tare\tO\nexecuting\tO\texecuting\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nhow\tO\thow\tO\nAndroid B-Application Android O\nStudio I-Application Studio O\nis\tO\tis\tO\nchoosing\tO\tchoosing\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nbreakpoints\tO\tbreakpoints\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nissue\tO\tissue\tO\nseems\tO\tseems\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nAndroid B-Application Android O\nStudio I-Application Studio O\nbreakpoints\tO\tbreakpoints\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\ndoinbackground B-Function doinbackground O\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nthat\tO\tthat\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nworkaround\tO\tworkaround\tO\nbut\tO\tbut\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nluck\tO\tluck\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47190967\tO\t47190967\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47190967/\tO\thttps://stackoverflow.com/questions/47190967/\tO\n\t\n\t\nI\tO\tI\tO\ndeleted\tO\tdeleted\tO\nmy\tO\tmy\tO\n.gradle B-File_Name .gradle O\n,\tO\t,\tO\nand\tO\tand\tO\n.AndroidStudioPreview B-File_Name .AndroidStudioPreview O\nfolders\tO\tfolders\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nrestarted\tO\trestarted\tO\nmy\tO\tmy\tO\ncomputer B-Device computer O\nand\tO\tand\tO\nrestarted\tO\trestarted\tO\nAndroid B-Application Android O\nStudio I-Application Studio O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nbreakpoints\tO\tbreakpoints\tO\nare\tO\tare\tO\nworking\tO\tworking\tO\nproperly\tO\tproperly\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nAndroid B-Application Android O\nStudio I-Application Studio O\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nnuclear\tO\tnuclear\tO\noption\tO\toption\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30403467\tO\t30403467\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30403467/\tO\thttps://stackoverflow.com/questions/30403467/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\ndataframes B-Data_Structure dataframes O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nmain B-Variable main O\npool\tO\tpool\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nis\tO\tis\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nlist B-Data_Structure list O\n\"\tO\t\"\tO\nof\tO\tof\tO\nnames\tO\tnames\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nfilter\tO\tfilter\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nmain\tO\tmain\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3647 I-Code_Block Q_3647 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nlist1 B-Variable list1 O\n(\tO\t(\tO\ncurrently\tO\tcurrently\tO\nin\tO\tin\tO\na\tO\ta\tO\ndataframe B-Data_Structure dataframe O\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3648 I-Code_Block Q_3648 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ndplyr::filter B-Function dplyr::filter O\nand\tO\tand\tO\nthe\tO\tthe\tO\n%in% B-Code_Block %in% O\noperator\tO\toperator\tO\nto\tO\tto\tO\nsubset\tO\tsubset\tO\nthe\tO\tthe\tO\nmain B-Variable main O\npool\tO\tpool\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3649 I-Code_Block Q_3649 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\n0 B-Value 0 O\nrow B-Data_Structure row O\ndataframe I-Data_Structure dataframe O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30403467\tO\t30403467\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30403467/\tO\thttps://stackoverflow.com/questions/30403467/\tO\n\t\n\t\nRichard B-User_Name Richard O\n's\tO\t's\tO\nsuggestion\tO\tsuggestion\tO\nworked\tO\tworked\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4353 I-Code_Block A_4353 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17631216\tO\t17631216\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17631216/\tO\thttps://stackoverflow.com/questions/17631216/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\nsingle-page\tO\tsingle-page\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\nusing\tO\tusing\tO\nBackbone B-Library Backbone O\nand\tO\tand\tO\nLaravel B-Library Laravel O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nset\tO\tset\tO\nmy\tO\tmy\tO\nrouter B-Device router O\nto\tO\tto\tO\nuse\tO\tuse\tO\npushState B-Function pushState O\nand\tO\tand\tO\nconfigured\tO\tconfigured\tO\nLaravel B-Library Laravel O\nto\tO\tto\tO\nsend\tO\tsend\tO\nall\tO\tall\tO\nother\tO\tother\tO\nrequests\tO\trequests\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nview\tO\tview\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbackbone B-Library backbone O\napplication\tO\tapplication\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nbackbone B-Library backbone O\ntakes\tO\ttakes\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrouting\tO\trouting\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem/question\tO\tproblem/question\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nroute\tO\troute\tO\ncalled\tO\tcalled\tO\n'\tO\t'\tO\ndashboard B-Function dashboard O\n'\tO\t'\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nroute\tO\troute\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\napplication\tO\tapplication\tO\nview\tO\tview\tO\nand\tO\tand\tO\nis\tO\tis\tO\nshown\tO\tshown\tO\nafter\tO\tafter\tO\nlogin\tO\tlogin\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nuses\tO\tuses\tO\na\tO\ta\tO\ncollection B-Class collection O\ncalled\tO\tcalled\tO\nClients B-Class Clients O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1788 I-Code_Block Q_1788 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nDash.Views.Dashboard B-Class Dash.Views.Dashboard B-Code_Block\nview\tO\tview\tO\ntakes\tO\ttakes\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nviews\tO\tviews\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\nrenderDashboard() B-Function renderDashboard() O\n;\tO\t;\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\nrendering\tO\trendering\tO\nall\tO\tall\tO\nclient B-Application client O\nviews\tO\tviews\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\ninteresting\tO\tinteresting\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nrendering\tO\trendering\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nclient\tO\tclient\tO\nviews\tO\tviews\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1789 I-Code_Block Q_1789 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwith\tO\twith\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nin\tO\tin\tO\nall\tO\tall\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nmean\tO\tmean\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\nfirst\tO\tfirst\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nroutes\tO\troutes\tO\nme\tO\tme\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndashboard B-User_Interface_Element dashboard O\nview\tO\tview\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nclients B-Application clients O\ngets\tO\tgets\tO\nrendered\tO\trendered\tO\nand\tO\tand\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nDOM\tO\tDOM\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nhappens\tO\thappens\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\naccess\tO\taccess\tO\n/dashboard B-User_Interface_Element /dashboard B-Code_Block\nimmediately\tO\timmediately\tO\n(\tO\t(\tO\nafther\tO\tafther\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nchecks\tO\tchecks\tO\nif\tO\tif\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nclient B-Application client O\nviews\tO\tviews\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nfirst\tO\tfirst\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nclient B-Application client O\nviews\tO\tviews\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\naccess\tO\taccess\tO\n/dashboard B-User_Interface_Element /dashboard B-Code_Block\ndirectly\tO\tdirectly\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1790 I-Code_Block Q_1790 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\ntook\tO\ttook\tO\nme\tO\tme\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfix\tO\tfix\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nwas\tO\twas\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nthis B-Variable this B-Code_Block\n. I-Variable . I-Code_Block\n$el I-Variable $el I-Code_Block\nwith\tO\twith\tO\n$(this.el) B-Variable $(this.el) B-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nalway\tO\talway\tO\n's\tO\t's\tO\nthought\tO\tthought\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nmatter\tO\tmatter\tO\nbecause\tO\tbecause\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nessentially\tO\tessentially\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nor\tO\tor\tO\nam\tO\tam\tO\nI\tO\tI\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nassumption\tO\tassumption\tO\n?\tO\t?\tO\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nexplain\tO\texplain\tO\nto\tO\tto\tO\nme\tO\tme\tO\nthis\tO\tthis\tO\nweird\tO\tweird\tO\nbehaviour\tO\tbehaviour\tO\n?\tO\t?\tO\n\t\nAs\tO\tAs\tO\nrequested\tO\trequested\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nglobal B-Data_Type global O\nDashboard B-Class Dashboard O\nview\tO\tview\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1791 I-Code_Block Q_1791 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17631216\tO\t17631216\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17631216/\tO\thttps://stackoverflow.com/questions/17631216/\tO\n\t\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nguess\tO\tguess\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nright\tO\tright\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2311 I-Code_Block A_2311 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\n.dashboard B-Variable .dashboard B-Code_Block\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ndirectly\tO\tdirectly\tO\nassign\tO\tassign\tO\nto\tO\tto\tO\nthis.el B-Variable this.el B-Code_Block\nand\tO\tand\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\na\tO\ta\tO\nmistake\tO\tmistake\tO\nas\tO\tas\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nupdate\tO\tupdate\tO\nthis B-Variable this B-Code_Block\n. I-Variable . I-Code_Block\n$ I-Variable $ I-Code_Block\nel I-Variable el I-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthis.el B-Variable this.el B-Code_Block\nand\tO\tand\tO\nthis B-Variable this B-Code_Block\n. I-Variable . I-Code_Block\n$el I-Variable $el I-Code_Block\nreference\tO\treference\tO\ndifferent\tO\tdifferent\tO\nthings\tO\tthings\tO\nand\tO\tand\tO\nnothing\tO\tnothing\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\nsetElement B-Function setElement B-Code_Block\nto\tO\tto\tO\nchange\tO\tchange\tO\na\tO\ta\tO\nview\tO\tview\tO\n's\tO\t's\tO\nel B-Variable el B-Code_Block\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsaying\tO\tsaying\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2312 I-Code_Block A_2312 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11984095\tO\t11984095\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11984095/\tO\thttps://stackoverflow.com/questions/11984095/\tO\n\t\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1122 I-Code_Block Q_1122 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOr\tO\tOr\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11984095\tO\t11984095\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11984095/\tO\thttps://stackoverflow.com/questions/11984095/\tO\n\t\n\t\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nold\tO\told\tO\nparams\tO\tparams\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nmerge\tO\tmerge\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nthem\tO\tthem\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1548 I-Code_Block A_1548 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11984095\tO\t11984095\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11984095/\tO\thttps://stackoverflow.com/questions/11984095/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\npassing\tO\tpassing\tO\na\tO\ta\tO\nString B-Data_Type String O\nas\tO\tas\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nargument\tO\targument\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\n's\tO\t's\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n3rd\tO\t3rd\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nsecond\tO\tsecond\tO\nparameter\tO\tparameter\tO\nis\tO\tis\tO\ninterpreted\tO\tinterpreted\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nresponse_status B-Variable response_status B-Code_Block\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nredirect\tO\tredirect\tO\nis\tO\tis\tO\nan\tO\tan\tO\ninternal\tO\tinternal\tO\none\tO\tone\tO\n(\tO\t(\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\napp\tO\tapp\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nscheme\tO\tscheme\tO\nand\tO\tand\tO\nhostname\tO\thostname\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nuse\tO\tuse\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1546 I-Code_Block A_1546 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\n's\tO\t's\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\nURL\tO\tURL\tO\n,\tO\t,\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\ncomplete\tO\tcomplete\tO\nURL\tO\tURL\tO\nbefore\tO\tbefore\tO\nredirecting\tO\tredirecting\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1547 I-Code_Block A_1547 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25973006\tO\t25973006\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25973006/\tO\thttps://stackoverflow.com/questions/25973006/\tO\n\t\n\t\nHi\tO\tHi\tO\ni\tO\ti\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\naltbeacon B-Library altbeacon O\nreference\tO\treference\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\ndidEnterRegion B-Function didEnterRegion O\nusing\tO\tusing\tO\nbootstrap B-Class bootstrap O\nnotifier I-Class notifier O\nwhen\tO\twhen\tO\napp\tO\tapp\tO\nsees\tO\tsees\tO\nbeacon B-Device beacon O\nin\tO\tin\tO\nbackground\tO\tbackground\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nscan\tO\tscan\tO\nbackground\tO\tbackground\tO\nevery\tO\tevery\tO\n5\tO\t5\tO\nminutes\tO\tminutes\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nreact\tO\treact\tO\nto\tO\tto\tO\nnew\tO\tnew\tO\nbeacon B-Device beacon O\nimmediately\tO\timmediately\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nMy\tO\tMy\tO\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2976 I-Code_Block Q_2976 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n} B-Code_Block } O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25973006\tO\t25973006\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25973006/\tO\thttps://stackoverflow.com/questions/25973006/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nincrease\tO\tincrease\tO\nthe\tO\tthe\tO\nfrequency\tO\tfrequency\tO\nof\tO\tof\tO\nbackground\tO\tbackground\tO\nscans\tO\tscans\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3584 I-Code_Block A_3584 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\ndetection\tO\tdetection\tO\ntimes\tO\ttimes\tO\nas\tO\tas\tO\nfast\tO\tfast\tO\nas\tO\tas\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nbe\tO\tbe\tO\nforewarned\tO\tforewarned\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nuse\tO\tuse\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nbattery\tO\tbattery\tO\npower\tO\tpower\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntweak\tO\ttweak\tO\nthe\tO\tthe\tO\nbetween\tO\tbetween\tO\nscan\tO\tscan\tO\nperiod\tO\tperiod\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ntolerance\tO\ttolerance\tO\nfor\tO\tfor\tO\nbattery\tO\tbattery\tO\ndrain\tO\tdrain\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\nnoted\tO\tnoted\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\n5\tO\t5\tO\nminutes\tO\tminutes\tO\n(\tO\t(\tO\n5*3600l\tO\t5*3600l\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAndroid B-Operating_System Android O\nL B-Version L O\nhas\tO\thas\tO\nnew\tO\tnew\tO\nscanning B-Library scanning O\nAPIs I-Library APIs O\nwhich\tO\twhich\tO\npromise\tO\tpromise\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nimprove\tO\timprove\tO\nthis\tO\tthis\tO\ntradeoff\tO\ttradeoff\tO\nbetween\tO\tbetween\tO\ndetection\tO\tdetection\tO\ntimers\tO\ttimers\tO\nand\tO\tand\tO\nbattery\tO\tbattery\tO\nusage\tO\tusage\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nfor4.3 B-Version for4.3 O\nand\tO\tand\tO\n4.4 B-Version 4.4 O\napps\tO\tapps\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\njudgment\tO\tjudgment\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4139365\tO\t4139365\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4139365/\tO\thttps://stackoverflow.com/questions/4139365/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nJava B-Language Java O\n6 B-Version 6 O\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nreason\tO\treason\tO\nwhy\tO\twhy\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nconditional\tO\tconditional\tO\nexpressions\tO\texpressions\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_275 I-Code_Block Q_275 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nnot\tO\tnot\tO\nloop\tO\tloop\tO\nexpressions\tO\texpressions\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_276 I-Code_Block Q_276 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhich\tO\twhich\tO\nadds\tO\tadds\tO\nelements\tO\telements\tO\nfrom\tO\tfrom\tO\nschedule\tO\tschedule\tO\ninto\tO\tinto\tO\nweeklyPlan B-Variable weeklyPlan O\nwhile\tO\twhile\tO\nhasNext() B-Function hasNext() B-Code_Block\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nlanguages\tO\tlanguages\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nfeature\tO\tfeature\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4139365\tO\t4139365\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4139365/\tO\thttps://stackoverflow.com/questions/4139365/\tO\n\t\n\t\nThese\tO\tThese\tO\n\"\tO\t\"\tO\nloop\tO\tloop\tO\nexpressions\tO\texpressions\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nin\tO\tin\tO\na\tO\ta\tO\nslightly\tO\tslightly\tO\ndifferent\tO\tdifferent\tO\nform\tO\tform\tO\n,\tO\t,\tO\nare\tO\tare\tO\ncalled\tO\tcalled\tO\nclosures\tO\tclosures\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ngroovy-code B-Language groovy-code O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_420 I-Code_Block A_420 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndefine\tO\tdefine\tO\nwhat\tO\twhat\tO\nhappens\tO\thappens\tO\nwith\tO\twith\tO\neach\tO\teach\tO\nobject\tO\tobject\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nschedule B-Variable schedule B-Code_Block\ncollection\tO\tcollection\tO\n.\tO\t.\tO\n\t\nJava B-Language Java O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nyet\tO\tyet\tO\nsupport\tO\tsupport\tO\nclosures\tO\tclosures\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nit\tO\tit\tO\nis\tO\tis\tO\nimplemented\tO\timplemented\tO\nwith\tO\twith\tO\nanonymous\tO\tanonymous\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\nclosures\tO\tclosures\tO\nare\tO\tare\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\napplications\tO\tapplications\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4139365\tO\t4139365\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4139365/\tO\thttps://stackoverflow.com/questions/4139365/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbecause\tO\tbecause\tO\nconditional\tO\tconditional\tO\nexpressions\tO\texpressions\tO\nare\tO\tare\tO\nmuch\tO\tmuch\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nwithout\tO\twithout\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\npesky\tO\tpesky\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\nsaying\tO\tsaying\tO\nthat\tO\tthat\tO\nweeklyPlan.add B-Function weeklyPlan.add O\nwill\tO\twill\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nmultiple\tO\tmultiple\tO\ntimes\tO\ttimes\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nthat\tO\tthat\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\n=> B-Code_Block => B-Code_Block\noperator\tO\toperator\tO\njust\tO\tjust\tO\njumped\tO\tjumped\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nparentheses\tO\tparentheses\tO\nthat\tO\tthat\tO\ncontain\tO\tcontain\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nC# B-Language C# O\nhas\tO\thas\tO\nfeatures\tO\tfeatures\tO\nin\tO\tin\tO\nLINQ B-Library LINQ O\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nperform\tO\tperform\tO\nsimilar\tO\tsimilar\tO\nactions\tO\tactions\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndescribing\tO\tdescribing\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nimplements\tO\timplements\tO\nthese\tO\tthese\tO\nusing\tO\tusing\tO\nclosures\tO\tclosures\tO\nand\tO\tand\tO\nextension\tO\textension\tO\nmethods\tO\tmethods\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_421 I-Code_Block A_421 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\ntricky\tO\ttricky\tO\nlanguage\tO\tlanguage\tO\nconstructs\tO\tconstructs\tO\nthan\tO\tthan\tO\nJava B-Language Java O\nstarted\tO\tstarted\tO\nout\tO\tout\tO\nwith\tO\twith\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\n.NET B-Library .NET O\nruntime\tO\truntime\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nrapidly\tO\trapidly\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nJava B-Language Java O\nplatform\tO\tplatform\tO\nhas\tO\thas\tO\n,\tO\t,\tO\nlargely\tO\tlargely\tO\nfor\tO\tfor\tO\npolitical\tO\tpolitical\tO\nreasons\tO\treasons\tO\n.\tO\t.\tO\n\t\nJava B-Language Java O\n7 B-Version 7 O\nwas\tO\twas\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nfeature\tO\tfeature\tO\nclosures\tO\tclosures\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthey\tO\tthey\tO\ngot\tO\tgot\tO\npushed\tO\tpushed\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nnext\tO\tnext\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36982499\tO\t36982499\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36982499/\tO\thttps://stackoverflow.com/questions/36982499/\tO\n\t\n\t\nI\tO\tI\tO\nalways\tO\talways\tO\nread\tO\tread\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nat\tO\tat\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nprocessor B-Device processor O\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nrun\tO\trun\tO\none\tO\tone\tO\nprocess\tO\tprocess\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\none\tO\tone\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nin\tO\tin\tO\nstate\tO\tstate\tO\nrunning\tO\trunning\tB-Code_Block\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nrunnable\tO\trunnable\tO\nprocesses\tO\tprocesses\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nare\tO\tare\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nprocesses\tO\tprocesses\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nscheduler\tO\tscheduler\tO\nto\tO\tto\tO\nschedule\tO\tschedule\tO\ntheir\tO\ttheir\tO\nexecution\tO\texecution\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nall\tO\tall\tO\nthese\tO\tthese\tO\nrunnable\tO\trunnable\tO\nprocesses\tO\tprocesses\tO\nexist\tO\texist\tO\nin\tO\tin\tO\nuser\tO\tuser\tO\naddress\tO\taddress\tO\nspace\tO\tspace\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nrunning\tO\trunning\tO\nprocess\tO\tprocess\tO\nin\tO\tin\tO\nuser\tO\tuser\tO\naddress\tO\taddress\tO\nspace\tO\tspace\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nonce\tO\tonce\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nscheduled\tO\tscheduled\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nbrought\tO\tbrought\tO\nback\tO\tback\tO\nto\tO\tto\tO\nRAM B-Device RAM O\nfrom\tO\tfrom\tO\ndisk B-Device disk O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nwhich\tO\twhich\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nmean\tO\tmean\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nkernel B-Application kernel O\nkeeps\tO\tkeeps\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ntask\tO\ttask\tO\ndescriptor\tO\tdescriptor\tO\nin\tO\tin\tO\nits\tO\tits\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nall\tO\tall\tO\nrunnable\tO\trunnable\tO\nprocesses\tO\tprocesses\tO\neven\tO\teven\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nin\tO\tin\tO\ndisk B-Device disk O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\nI\tO\tI\tO\nam\tO\tam\tO\nconfused\tO\tconfused\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36982499\tO\t36982499\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36982499/\tO\thttps://stackoverflow.com/questions/36982499/\tO\n\t\n\t\nIf\tO\tIf\tO\nCPU B-Device CPU O\nsupports\tO\tsupports\tO\nvirtual\tO\tvirtual\tO\nmemory\tO\tmemory\tO\naddressing\tO\taddressing\tO\n,\tO\t,\tO\neach\tO\teach\tO\nprocess\tO\tprocess\tO\nhas\tO\thas\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nview\tO\tview\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nTwo\tO\tTwo\tO\ndifferent\tO\tdifferent\tO\nprocesses\tO\tprocesses\tO\nthat\tO\tthat\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nmemory\tO\tmemory\tO\naddress\tO\taddress\tO\n,\tO\t,\tO\nwill\tO\twill\tO\nmap\tO\tmap\tO\nto\tO\tto\tO\ndifferent\tO\tdifferent\tO\nlocation\tO\tlocation\tO\nin\tO\tin\tO\nphysical\tO\tphysical\tO\nmemory\tO\tmemory\tO\n,\tO\t,\tO\nunless\tO\tunless\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nmaps\tO\tmaps\tO\ntells\tO\ttells\tO\notherwize\tO\totherwize\tO\n(\tO\t(\tO\nshared\tO\tshared\tO\nmemory\tO\tmemory\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nDLL B-File_Type DLL O\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nmapped\tO\tmapped\tO\nread\tO\tread\tO\nonly\tO\tonly\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n)\tO\t)\tO\n\t\nIf\tO\tIf\tO\nCPU B-Device CPU O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\nvirtual\tO\tvirtual\tO\nmemory\tO\tmemory\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nmemory\tO\tmemory\tO\nprotection\tO\tprotection\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nprocesses\tO\tprocesses\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nprotected\tO\tprotected\tO\naway\tO\taway\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nrunning\tO\trunning\tO\nprocess\tO\tprocess\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\naccess\tO\taccess\tO\nits\tO\tits\tO\nown\tO\town\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25518174\tO\t25518174\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25518174/\tO\thttps://stackoverflow.com/questions/25518174/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nLogin\tO\tLogin\tO\npage B-User_Interface_Element page O\nwithout\tO\twithout\tO\nLayout\tO\tLayout\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nlogin\tO\tlogin\tO\nusing\tO\tusing\tO\najax B-Function ajax O\npost I-Function post O\nmethod\tO\tmethod\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\nnot\tO\tnot\tO\nhit\tO\thit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmvc B-Algorithm mvc O\nController\tO\tController\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nIm\tO\tIm\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\nalert B-User_Interface_Element alert O\nbox I-User_Interface_Element box O\nin\tO\tin\tO\nsuccess\tO\tsuccess\tO\nsection\tO\tsection\tO\nis\tO\tis\tO\npopup\tO\tpopup\tO\nwith\tO\twith\tO\nblank\tO\tblank\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nhit\tO\thit\tO\nthat\tO\tthat\tO\nalert\tO\talert\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nrecord\tO\trecord\tO\n.\tO\t.\tO\n\t\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nAjax B-Function Ajax O\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2899 I-Code_Block Q_2899 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nLogin\tO\tLogin\tO\nForm\tO\tForm\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2900 I-Code_Block Q_2900 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nScripts\tO\tScripts\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2901 I-Code_Block Q_2901 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25518174\tO\t25518174\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25518174/\tO\thttps://stackoverflow.com/questions/25518174/\tO\n\t\n\t\nThe\tO\tThe\tO\nProblem\tO\tProblem\tO\nis\tO\tis\tO\nwith\tO\twith\tO\ndatatype\tO\tdatatype\tB-Code_Block\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nspecified\tO\tspecified\tO\nin\tO\tin\tO\najax B-Function ajax O\nrequest\tO\trequest\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3516 I-Code_Block A_3516 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25518174\tO\t25518174\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25518174/\tO\thttps://stackoverflow.com/questions/25518174/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nalert B-Function alert O\nis\tO\tis\tO\nempty\tO\tempty\tO\n(\tO\t(\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nundefined\tO\tundefined\tO\n)\tO\t)\tO\nyour\tO\tyour\tO\nserver B-Application server O\nis\tO\tis\tO\nnot\tO\tnot\tO\nresponding\tO\tresponding\tO\nwith\tO\twith\tO\na\tO\ta\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nany\tO\tany\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\nin\tO\tin\tO\ndata.Code B-Code_Block data.Code O\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nalert({}.Code) B-Code_Block alert({}.Code) B-Code_Block\n; I-Code_Block ; I-Code_Block\nshows\tO\tshows\tO\nan\tO\tan\tO\nalert B-Function alert O\nwith\tO\twith\tO\nundefined\tO\tundefined\tO\nwhereas\tO\twhereas\tO\ndata B-Code_Block data B-Code_Block\n= I-Code_Block = I-Code_Block\n{Code:''};alert(data.Code) I-Code_Block {Code:''};alert(data.Code) I-Code_Block\n; I-Code_Block ; I-Code_Block\nshows\tO\tshows\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\nalert B-Function alert O\nas\tO\tas\tO\ndescribed\tO\tdescribed\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nProbably\tO\tProbably\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nconsole B-Application console O\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nalerts B-Function alerts O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25036609\tO\t25036609\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25036609/\tO\thttps://stackoverflow.com/questions/25036609/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nAFNetworking B-Library AFNetworking B-Code_Block\n2.0 B-Version 2.0 I-Code_Block\nto\tO\tto\tO\nsend\tO\tsend\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nAPI B-Library API O\n(\tO\t(\tO\njson B-File_Type json O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nexcept\tO\texcept\tO\nof\tO\tof\tO\nsending\tO\tsending\tO\ndata\tO\tdata\tO\nwith\tO\twith\tO\ngerman\tO\tgerman\tO\nletters\tO\tletters\tO\nlike\tO\tlike\tO\nä B-Value ä B-Code_Block\nü I-Value ü I-Code_Block\nö I-Value ö I-Code_Block\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nAPI B-Library API O\nbecause\tO\tbecause\tO\ni\tO\ti\tO\ndid\tO\tdid\tO\nit\tO\tit\tO\nin\tO\tin\tO\nAndroid B-Operating_System Android O\nand\tO\tand\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2829 I-Code_Block Q_2829 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6588337\tO\t6588337\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6588337/\tO\thttps://stackoverflow.com/questions/6588337/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\ndevices\tO\tdevices\tO\nlocation\tO\tlocation\tO\nupdates\tO\tupdates\tO\nwith\tO\twith\tO\nstatements\tO\tstatements\tO\nbelow\tO\tbelow\tO\nincluded\tO\tincluded\tO\n:\tO\t:\tO\n\t\nJust\tO\tJust\tO\ncurious\tO\tcurious\tO\nas\tO\tas\tO\nto\tO\tto\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nSIGABRT B-Function SIGABRT O\nsignal I-Function signal O\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nPrevSpeedDic B-Variable PrevSpeedDic O\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_492 I-Code_Block Q_492 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nmove\tO\tmove\tO\nthis\tO\tthis\tO\nabove\tO\tabove\tO\nthe\tO\tthe\tO\nstatement\tO\tstatement\tO\nabove\tO\tabove\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nas\tO\tas\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nvariables\tO\tvariables\tO\nare\tO\tare\tO\ndefined\tO\tdefined\tO\ncorrectly\tO\tcorrectly\tO\nor\tO\tor\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nany\tO\tany\tO\ncircumstance\tO\tcircumstance\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_493 I-Code_Block Q_493 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6588337\tO\t6588337\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6588337/\tO\thttps://stackoverflow.com/questions/6588337/\tO\n\t\n\t\nLocal\tO\tLocal\tO\nvariables\tO\tvariables\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\ninitialized\tO\tinitialized\tO\nto\tO\tto\tO\n0 B-Value 0 O\n(\tO\t(\tO\nnil B-Value nil O\n)\tO\t)\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nset\tO\tset\tO\nDriveInfoDic B-Variable DriveInfoDic O\nbefore\tO\tbefore\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nbranch\tO\tbranch\tO\nand\tO\tand\tO\ncrash\tO\tcrash\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15588799\tO\t15588799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15588799/\tO\thttps://stackoverflow.com/questions/15588799/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nreading\tO\treading\tO\nthrough\tO\tthrough\tO\nsome\tO\tsome\tO\nsimilar\tO\tsimilar\tO\nquestions\tO\tquestions\tO\nbut\tO\tbut\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nimplement\tO\timplement\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nGoogle B-Library Google O\nApp I-Library App O\nEngine I-Library Engine O\nand\tO\tand\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nCSV B-File_Type CSV O\nexport\tO\texport\tO\nusing\tO\tusing\tO\nunicodecsv B-Library unicodecsv O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nexport\tO\texport\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nrun\tO\trun\tO\ndaily\tO\tdaily\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nBlobstore B-Class Blobstore O\nitem I-Class item O\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nretrieved\tO\tretrieved\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nURL\tO\tURL\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nintention\tO\tintention\tO\nof\tO\tof\tO\nBlobstore B-Class Blobstore O\nitems I-Class items O\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nalso\tO\talso\tO\nread\tO\tread\tO\nsome\tO\tsome\tO\narticles\tO\tarticles\tO\nthat\tO\tthat\tO\ngot\tO\tgot\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nUnforuntately\tO\tUnforuntately\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsuch\tO\tsuch\tO\nan\tO\tan\tO\nexperienced\tO\texperienced\tO\nprogrammer\tO\tprogrammer\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\nof\tO\tof\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nsituation\tO\tsituation\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nbe\tO\tbe\tO\ngreat\tO\tgreat\tO\nif\tO\tif\tO\nsomeone\tO\tsomeone\tO\ncould\tO\tcould\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\ninput\tO\tinput\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nrealize\tO\trealize\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1529 I-Code_Block Q_1529 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15588799\tO\t15588799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15588799/\tO\thttps://stackoverflow.com/questions/15588799/\tO\n\t\n\t\nAs\tO\tAs\tO\nTim B-User_Name Tim O\npointed\tO\tpointed\tO\nout\tO\tout\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\noverwrite\tO\toverwrite\tO\nblobstore B-Library blobstore O\nentity\tO\tentity\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\none\tO\tone\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nand\tO\tand\tO\nremember\tO\tremember\tO\nthe\tO\tthe\tO\nkey B-Class key O\nto\tO\tto\tO\nserve\tO\tserve\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nentity\tO\tentity\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2015 I-Code_Block A_2015 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthen\tO\tthen\tO\n,\tO\t,\tO\nin\tO\tin\tO\na\tO\ta\tO\ncron B-Class cron O\nhandler I-Class handler O\nyou\tO\tyou\tO\nmay\tO\tmay\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2016 I-Code_Block A_2016 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\n,\tO\t,\tO\nfinally\tO\tfinally\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nserve\tO\tserve\tO\nyour\tO\tyour\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nin\tO\tin\tO\na\tO\ta\tO\nBlobstoreDownloadHandler B-Class BlobstoreDownloadHandler B-Code_Block\n)\tO\t)\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\njust\tO\tjust\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2017 I-Code_Block A_2017 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15588799\tO\t15588799\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15588799/\tO\thttps://stackoverflow.com/questions/15588799/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\noverwrite\tO\toverwrite\tO\na\tO\ta\tO\nblob B-Library blob O\nstore I-Library store O\nentity\tO\tentity\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\ndelete\tO\tdelete\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nno\tO\tno\tO\ncontrol\tO\tcontrol\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nblob B-Class blob O\nstore I-Class store O\nkey I-Class key O\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nkeep/manage\tO\tkeep/manage\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nin\tO\tin\tO\nyourapp\tO\tyourapp\tO\nwith\tO\twith\tO\na\tO\ta\tO\nredirect\tO\tredirect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nblob B-Library blob O\nstore I-Library store O\nURL\tO\tURL\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nwriting\tO\twriting\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nblob B-Library blob O\nstore I-Library store O\n,\tO\t,\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfile B-Library file O\napi I-Library api O\n\t\nhttps://developers.google.com/appengine/docs/python/blobstore/overview#Writing_Files_to_the_Blobstore\tO\thttps://developers.google.com/appengine/docs/python/blobstore/overview#Writing_Files_to_the_Blobstore\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25772079\tO\t25772079\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25772079/\tO\thttps://stackoverflow.com/questions/25772079/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\nXcode B-Application Xcode O\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nmy\tO\tmy\tO\nIPA B-File_Type IPA O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nsearching\tO\tsearching\tO\napple\tO\tapple\tO\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\npossible\tO\tpossible\tO\nsystem\tO\tsystem\tO\ncapabilities\tO\tcapabilities\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nlazy\tO\tlazy\tO\n,\tO\t,\tO\nI\tO\tI\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\narchive\tO\tarchive\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nwith\tO\twith\tO\nthese\tO\tthese\tO\ncapabilities\tO\tcapabilities\tO\nturned\tO\tturned\tO\non\tO\ton\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsearched\tO\tsearched\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nIPA B-File_Type IPA O\n,\tO\t,\tO\nbut\tO\tbut\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\nwhere\tO\twhere\tO\nXcode6 B-Application Xcode6 B-Code_Block\nis\tO\tis\tO\nhiding\tO\thiding\tO\nthese\tO\tthese\tO\nentitlements\tO\tentitlements\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nusers\tO\tusers\tO\nusing\tO\tusing\tO\nXcode6 B-Application Xcode6 O\nthese\tO\tthese\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\ncapabilities\tO\tcapabilities\tO\nlisted\tO\tlisted\tO\nhere\tO\there\tO\n\t\nSince\tO\tSince\tO\nI\tO\tI\tO\ngenerate\tO\tgenerate\tO\nmy\tO\tmy\tO\nIPA B-File_Type IPA O\nmanually\tO\tmanually\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nthese\tO\tthese\tO\nkeys\tO\tkeys\tO\nare\tO\tare\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\ncapabilities\tO\tcapabilities\tO\nset\tO\tset\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nApp\tO\tApp\tO\nIdentifier\tO\tIdentifier\tO\n.\tO\t.\tO\n\t\nUPDATED\tO\tUPDATED\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nwere\tO\twere\tO\nactually\tO\tactually\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nproject.pbxproj B-File_Name project.pbxproj B-Code_Block\nfile\tO\tfile\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nhelp\tO\thelp\tO\n@colinta B-User_Name @colinta O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2939 I-Code_Block Q_2939 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25772079\tO\t25772079\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25772079/\tO\thttps://stackoverflow.com/questions/25772079/\tO\n\t\n\t\nYour\tO\tYour\tO\nscreenshot\tO\tscreenshot\tO\ngave\tO\tgave\tO\nme\tO\tme\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\n-\tO\t-\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\ndiff\tO\tdiff\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproject.pbxproj B-File_Name project.pbxproj O\nfile\tO\tfile\tO\n!\tO\t!\tO\n\t\nCame\tO\tCame\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3553 I-Code_Block A_3553 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHTH\tO\tHTH\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35585860\tO\t35585860\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35585860/\tO\thttps://stackoverflow.com/questions/35585860/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nworking\tO\tworking\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npagerank B-Algorithm pagerank O\nalgorithm\tO\talgorithm\tO\n:\tO\t:\tO\n\t\nwhere\tO\twhere\tO\nmxm B-Variable mxm B-Code_Block\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4354 I-Code_Block Q_4354 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nit\tO\tit\tO\nshould\tO\tshould\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\niterations\tO\titerations\tO\n:\tO\t:\tO\n\t\nIteration\tO\tIteration\tO\n0\tO\t0\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIteration\tO\tIteration\tO\n1\tO\t1\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIteration\tO\tIteration\tO\n2\tO\t2\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIteration\tO\tIteration\tO\n3\tO\t3\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\n.\tO\t.\tO\n\t\n.\tO\t.\tO\n\t\n.\tO\t.\tO\n\t\nIteration\tO\tIteration\tO\n9\tO\t9\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nhowever\tO\thowever\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nThe\tO\tThe\tO\nabove\tO\tabove\tO\nis\tO\tis\tO\na\tO\ta\tO\npart\tO\tpart\tO\n,\tO\t,\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nCan\tO\tCan\tO\nanybody\tO\tanybody\tO\nplease\tO\tplease\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35585860\tO\t35585860\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35585860/\tO\thttps://stackoverflow.com/questions/35585860/\tO\n\t\n\t\nLooking\tO\tLooking\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nsection\tO\tsection\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5076 I-Code_Block A_5076 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nVariables\tO\tVariables\tO\np B-Variable p B-Code_Block\nand\tO\tand\tO\nq B-Variable q B-Code_Block\nare\tO\tare\tO\nset\tO\tset\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\nhost_rank[k] B-Code_Block host_rank[k] B-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nunless\tO\tunless\tO\ni B-Code_Block i B-Code_Block\n== I-Code_Block == I-Code_Block\nk I-Code_Block k I-Code_Block\n(\tO\t(\tO\nthus\tO\tthus\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nelement\tO\telement\tO\nbetween\tO\tbetween\tO\np B-Variable p B-Code_Block\nand\tO\tand\tO\nq B-Variable q B-Code_Block\nbeing\tO\tbeing\tO\nread\tO\tread\tO\n)\tO\t)\tO\n,\tO\t,\tO\nlol B-Variable lol B-Code_Block\nwill\tO\twill\tO\nnot\tO\tnot\tO\nmove\tO\tmove\tO\nfrom\tO\tfrom\tO\n0 B-Value 0 B-Code_Block\n,\tO\t,\tO\nso\tO\tso\tO\neucl B-Variable eucl B-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\n0 B-Value 0 B-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ninfinite\tO\tinfinite\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nsuspect\tO\tsuspect\tO\nthat\tO\tthat\tO\nlol B-Code_Block lol B-Code_Block\n= I-Code_Block = I-Code_Block\n0 I-Code_Block 0 I-Code_Block\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ndo-while B-Code_Block do-while B-Code_Block\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nunless\tO\tunless\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\ni B-Variable i B-Code_Block\n,\tO\t,\tO\nd B-Variable d B-Code_Block\n,\tO\t,\tO\nn B-Variable n B-Code_Block\nand\tO\tand\tO\nsumPR B-Variable sumPR B-Code_Block\nare\tO\tare\tO\nshared\tO\tshared\tO\nand\tO\tand\tO\naltered\tO\taltered\tO\nby\tO\tby\tO\nanother\tO\tanother\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n,\tO\t,\tO\nif\tO\tif\tO\nit\tO\tit\tO\nrepeats\tO\trepeats\tO\n,\tO\t,\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nrepeat\tO\trepeat\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31851180\tO\t31851180\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31851180/\tO\thttps://stackoverflow.com/questions/31851180/\tO\n\t\n\t\nSay\tO\tSay\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nHTML B-Language HTML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3850 I-Code_Block Q_3850 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nreplace\tO\treplace\tO\nall\tO\tall\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nUS$ B-Value US$ O\nXX.xx I-Value XX.xx O\nwith\tO\twith\tO\nGBP£ B-Variable GBP£ O\nYY.yy I-Variable YY.yy O\non\tO\ton\tO\nthe\tO\tthe\tO\nlive\tO\tlive\tO\npage\tO\tpage\tO\nusing\tO\tusing\tO\njquery B-Library jquery O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nGBP B-Variable GBP O\nwould\tO\twould\tO\nbe\tO\tbe\tO\ndetermined\tO\tdetermined\tO\nby\tO\tby\tO\nmy\tO\tmy\tO\nown\tO\town\tO\ncurrency\tO\tcurrency\tO\nconversion\tO\tconversion\tO\nratio\tO\tratio\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nfirst\tO\tfirst\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprices\tO\tprices\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nanything\tO\tanything\tO\nbeginning\tO\tbeginning\tO\nwith\tO\twith\tO\nUSD$ B-Value USD$ O\nand\tO\tand\tO\nending\tO\tending\tO\nafter\tO\tafter\tO\n.xx B-Value .xx O\n?\tO\t?\tO\n\t\nPrices\tO\tPrices\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nhave\tO\thave\tO\ncents\tO\tcents\tO\ndisplayed\tO\tdisplayed\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nstuck\tO\tstuck\tO\nwhat\tO\twhat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\npart\tO\tpart\tO\n.\tO\t.\tO\n\t\nShould\tO\tShould\tO\nI\tO\tI\tO\nwrap\tO\twrap\tO\nthese\tO\tthese\tO\ninstances\tO\tinstances\tO\nin\tO\tin\tO\na\tO\ta\tO\nspan\tO\tspan\tO\ntag\tO\ttag\tO\nwith\tO\twith\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\njquery.each() B-Function jquery.each() O\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nloop\tO\tloop\tO\nthrough\tO\tthrough\tO\neach\tO\teach\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nwith\tO\twith\tO\na\tO\ta\tO\njquery(this).html(\"GBP£YY.yy\") B-Function jquery(this).html(\"GBP£YY.yy\") O\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nsetting\tO\tsetting\tO\nme\tO\tme\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\npath\tO\tpath\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nguys\tO\tguys\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31851180\tO\t31851180\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31851180/\tO\thttps://stackoverflow.com/questions/31851180/\tO\n\t\n\t\nbase\tO\tbase\tO\nmethod\tO\tmethod\tO\nfor\tO\tfor\tO\ntext\tO\ttext\tO\nreplacements\tO\treplacements\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4556 I-Code_Block A_4556 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nstuff\tO\tstuff\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4557 I-Code_Block A_4557 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfire\tO\tfire\tO\nthat\tO\tthat\tO\non\tO\ton\tO\nANY\tO\tANY\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\nwill\tO\twill\tO\neven\tO\teven\tO\nreplace\tO\treplace\tO\ntitles\tO\ttitles\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nso.\tO\tso.\tO\n.\tO\t.\tO\nto\tO\tto\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nbenefits\tO\tbenefits\tO\nof\tO\tof\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\njquery B-Library jquery O\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\njquery B-Library jquery O\nwill\tO\twill\tO\nprocess\tO\tprocess\tO\nand\tO\tand\tO\nwrap\tO\twrap\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\nelement\tO\telement\tO\nin\tO\tin\tO\na\tO\ta\tO\nbrowser B-Application browser O\ncompatible\tO\tcompatible\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nusing\tO\tusing\tO\na\tO\ta\tO\nnative\tO\tnative\tO\njavascript B-Language javascript O\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nspeed\tO\tspeed\tO\nup\tO\tup\tO\nthis\tO\tthis\tO\nprocess\tO\tprocess\tO\nalot\tO\talot\tO\n.\tO\t.\tO\n\t\nusing\tO\tusing\tO\nnative\tO\tnative\tO\ntextnodes B-Class textnodes O\nalso\tO\talso\tO\nis\tO\tis\tO\nbenefitial\tO\tbenefitial\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbreak\tO\tbreak\tO\nevent B-Class event O\nhandlers\tO\thandlers\tO\nfor\tO\tfor\tO\nchild\tO\tchild\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\nconsider\tO\tconsider\tO\nusing\tO\tusing\tO\nfastdom B-Application fastdom O\n.\tO\t.\tO\n\t\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatter\tO\tmatter\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\njquery B-Library jquery O\nor\tO\tor\tO\nnative\tO\tnative\tO\njs B-Language js O\n.\tO\t.\tO\n\t\nafter\tO\tafter\tO\nwriting\tO\twriting\tO\nto\tO\tto\tO\nelements\tO\telements\tO\nthe\tO\tthe\tO\ndom\tO\tdom\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\ncertain\tO\tcertain\tO\ntasks\tO\ttasks\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nread\tO\tread\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nloose\tO\tloose\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nedited\tO\tedited\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nto\tO\tto\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\na\tO\ta\tO\nfastdom B-Application fastdom O\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4558 I-Code_Block A_4558 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthis\tO\tthis\tO\nwill\tO\twill\tO\nbasically\tO\tbasically\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\nin\tO\tin\tO\nan\tO\tan\tO\ninstant\tO\tinstant\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\neven\tO\teven\tO\nfurther\tO\tfurther\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\njquery B-Library jquery O\nas\tO\tas\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4559 I-Code_Block A_4559 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4560 I-Code_Block A_4560 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31851180\tO\t31851180\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31851180/\tO\thttps://stackoverflow.com/questions/31851180/\tO\n\t\n\t\nIf\tO\tIf\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nvalues\tO\tvalues\tO\nare\tO\tare\tO\ndirectly\tO\tdirectly\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nspan B-HTML_XML_Tag span O\n,\tO\t,\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ngive\tO\tgive\tO\nthem\tO\tthem\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nto\tO\tto\tO\niterate\tO\titerate\tO\nover\tO\tover\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n\t\nYou\tO\tYou\tO\nfirst\tO\tfirst\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nnumeric\tO\tnumeric\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nin\tO\tin\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n\t\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\ncurrency\tO\tcurrency\tO\nstore\tO\tstore\tO\nit\tO\tit\tO\nin\tO\tin\tO\nother\tO\tother\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nreplace\tO\treplace\tO\nUS$ B-Value US$ O\nwith\tO\twith\tO\nGBP B-Value GBP O\n\t\nreplace\tO\treplace\tO\nnumeric\tO\tnumeric\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nwith\tO\twith\tO\nconverted\tO\tconverted\tO\nvalue\tO\tvalue\tO\n\t\njQuery B-Library jQuery O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4555 I-Code_Block A_4555 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46835501\tO\t46835501\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46835501/\tO\thttps://stackoverflow.com/questions/46835501/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nblade B-Library blade O\ntemplating I-Library templating O\n.\tO\t.\tO\n\t\nDue\tO\tDue\tO\nto\tO\tto\tO\nserver B-Device server O\nlimitations\tO\tlimitations\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nhave\tO\thave\tO\nblade B-Library blade O\ngenerate\tO\tgenerate\tO\ncache B-File_Type cache O\nfiles\tO\tfiles\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfly\tO\tfly\tO\n-\tO\t-\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nblade B-Library blade O\nwith\tO\twith\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncache B-File_Type cache O\nfiles\tO\tfiles\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nOddly\tO\tOddly\tO\n,\tO\t,\tO\nblade B-Library blade O\nkeeps\tO\tkeeps\tO\nignoring\tO\tignoring\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncache B-File_Type cache O\nfiles\tO\tfiles\tO\nwe\tO\twe\tO\n're\tO\t're\tO\nproviding\tO\tproviding\tO\nand\tO\tand\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nreference\tO\treference\tO\ncache B-File_Type cache O\nfiles\tO\tfiles\tO\nthat\tO\tthat\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nidea\tO\tidea\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\n?\tO\t?\tO\n\t\nhow\tO\thow\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6172 I-Code_Block Q_6172 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEssentially\tO\tEssentially\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\n100%\tO\t100%\tO\nhappy\tO\thappy\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nand\tO\tand\tO\nftp B-File_Type ftp O\nall\tO\tall\tO\nthe\tO\tthe\tO\ncache B-File_Type cache O\nfiles\tO\tfiles\tO\nover\tO\tover\tO\n.\tO\t.\tO\n\t\nAlthough\tO\tAlthough\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nblade B-Library blade O\nattempts\tO\tattempts\tO\nreference\tO\treference\tO\nduring\tO\tduring\tO\nrender\tO\trender\tO\ntime\tO\ttime\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nexist\tO\texist\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nproviding\tO\tproviding\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\npicked\tO\tpicked\tO\nup\tO\tup\tO\nby\tO\tby\tO\nblade B-Library blade O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nappreciate\tO\tappreciate\tO\nthe\tO\tthe\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46835501\tO\t46835501\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46835501/\tO\thttps://stackoverflow.com/questions/46835501/\tO\n\t\n\t\nClear\tO\tClear\tO\nBlade B-Library Blade O\ncache\tO\tcache\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6801 I-Code_Block A_6801 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7450608\tO\t7450608\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7450608/\tO\thttps://stackoverflow.com/questions/7450608/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\nusing\tO\tusing\tO\nJSP B-Library JSP O\nand\tO\tand\tO\nServlets B-Class Servlets O\nusing\tO\tusing\tO\nApache B-Application Apache O\n- I-Application - O\ntomcat I-Application tomcat O\n5.5 B-Version 5.5 O\nas\tO\tas\tO\nserver B-Application server O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napplication\tO\tapplication\tO\nruns\tO\truns\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhenever\tO\twhenever\tO\nI\tO\tI\tO\nleave\tO\tleave\tO\nany\tO\tany\tO\nwebpage\tO\twebpage\tO\nopen\tO\topen\tO\nand\tO\tand\tO\nreturn\tO\treturn\tO\nback\tO\tback\tO\nto\tO\tto\tO\nit\tO\tit\tO\nafter\tO\tafter\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nsay\tO\tsay\tO\n30minutes\tO\t30minutes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nany\tO\tany\tO\nbutton B-User_Interface_Element button O\nor\tO\tor\tO\nicon B-User_Interface_Element icon O\n,\tO\t,\tO\nit\tO\tit\tO\nthrows\tO\tthrows\tO\nerror\tO\terror\tO\nsayin\tO\tsayin\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_589 I-Code_Block Q_589 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7450608\tO\t7450608\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7450608/\tO\thttps://stackoverflow.com/questions/7450608/\tO\n\t\n\t\nSounds\tO\tSounds\tO\nlike\tO\tlike\tO\nyour\tO\tyour\tO\nsession\tO\tsession\tO\nis\tO\tis\tO\ntiming\tO\ttiming\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\neither\tO\teither\tO\nforce\tO\tforce\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nor\tO\tor\tO\nextend\tO\textend\tO\nyour\tO\tyour\tO\nsession\tO\tsession\tO\ntimeout\tO\ttimeout\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\ntimeout\tO\ttimeout\tO\nby\tO\tby\tO\nediting\tO\tediting\tO\nyour\tO\tyour\tO\nweb.xml B-File_Name web.xml O\nand\tO\tand\tO\nadding\tO\tadding\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_859 I-Code_Block A_859 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhich\tO\tWhich\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\na\tO\ta\tO\nsession\tO\tsession\tO\ntimeout\tO\ttimeout\tO\nof\tO\tof\tO\n60\tO\t60\tO\nminutes\tO\tminutes\tO\n.\tO\t.\tO\n\t\n-1 B-Value -1 O\nmeans\tO\tmeans\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ntimeout\tO\ttimeout\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7450608\tO\t7450608\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7450608/\tO\thttps://stackoverflow.com/questions/7450608/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThe\tO\tThe\tO\nsymptom\tO\tsymptom\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nonly\tO\tonly\tO\noccurs\tO\toccurs\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nlong\tO\tlong\tO\ntime\tO\ttime\tO\nindeed\tO\tindeed\tO\nindicates\tO\tindicates\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ntimed\tO\ttimed\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nsession\tO\tsession\tO\ntimeout\tO\ttimeout\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nactually\tO\tactually\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nJSP B-Library JSP O\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nold\tO\told\tO\nfashioned\tO\tfashioned\tO\nJSP B-Library JSP O\nscriptlets B-File_Name scriptlets O\n<% B-Code_Block <% B-Code_Block\n%> I-Code_Block %> I-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nnormal\tO\tnormal\tO\nJava B-Language Java O\nclasses\tO\tclasses\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nservlets B-Class servlets O\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\nthe\tO\tthe\tO\nrequest/response\tO\trequest/response\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nbusiness\tO\tbusiness\tO\nstuff\tO\tstuff\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJSP B-Library JSP O\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nharder\tO\tharder\tO\nto\tO\tto\tO\nnaildown\tO\tnaildown\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\ncause\tO\tcause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nNullPointerException B-Error_Name NullPointerException B-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\ngenerated\tO\tgenerated\tO\nhomepage_jsp.java B-File_Name homepage_jsp.java B-Code_Block\nin\tO\tin\tO\nserver B-Application server O\n's\tO\t's\tO\nwork\tO\twork\tO\ndirectory\tO\tdirectory\tO\nand\tO\tand\tO\nhead\tO\thead\tO\nto\tO\tto\tO\nline\tO\tline\tO\n107\tO\t107\tO\nand\tO\tand\tO\nfinally\tO\tfinally\tO\ntrackback\tO\ttrackback\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nhomepage.jsp B-File_Name homepage.jsp B-Code_Block\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfix\tO\tfix\tO\nthe\tO\tthe\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nrequest.getSession() B-Function request.getSession() B-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nrequest.getSession(false) B-Function request.getSession(false) B-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\na\tO\ta\tO\nsession\tO\tsession\tO\nattribute\tO\tattribute\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nnull B-Value null B-Code_Block\nbefore\tO\tbefore\tO\naccessing\tO\taccessing\tO\nit\tO\tit\tO\n,\tO\t,\tO\netcetera\tO\tetcetera\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41259620\tO\t41259620\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41259620/\tO\thttps://stackoverflow.com/questions/41259620/\tO\n\t\n\t\nPlease\tO\tPlease\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nconfigure\tO\tconfigure\tO\nthe\tO\tthe\tO\norientdb B-Application orientdb O\nwith\tO\twith\tO\nspring B-Library spring O\nmvc B-Algorithm mvc O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5224 I-Code_Block Q_5224 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\ninto\tO\tinto\tO\nmy\tO\tmy\tO\nmvc-dispacher-servlet.xml B-File_Name mvc-dispacher-servlet.xml O\nfile\tO\tfile\tO\n\t\nand\tO\tand\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\ndependencies\tO\tdependencies\tO\nalso\tO\talso\tO\nin\tO\tin\tO\nto\tO\tto\tO\npom.xml B-File_Name pom.xml O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5225 I-Code_Block Q_5225 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nOrientDb B-Application OrientDb O\nserver I-Application server O\nis\tO\tis\tO\n2.2.13 B-Version 2.2.13 O\nversion\tO\tversion\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nlatest\tO\tlatest\tO\n.\tO\t.\tO\n\t\nhelp\tO\thelp\tO\nme\tO\tme\tO\nin\tO\tin\tO\nconfiguring\tO\tconfiguring\tO\nit.if\tO\tit.if\tO\npossible\tO\tpossible\tO\nsuggest\tO\tsuggest\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nproject\tO\tproject\tO\nURL\tO\tURL\tO\nalso\tO\talso\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nYou\tO\tYou\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1273116\tO\t1273116\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1273116/\tO\thttps://stackoverflow.com/questions/1273116/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\nappropriate\tO\tappropriate\tO\nway\tO\tway\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nan\tO\tan\tO\nExcel B-File_Type Excel O\nfile\tO\tfile\tO\non\tO\ton\tO\nan\tO\tan\tO\nNT B-Operating_System NT O\nserver I-Operating_System server O\noperating\tO\toperating\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nnumerous\tO\tnumerous\tO\nproblems\tO\tproblems\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nExcel B-Application Excel O\nAPI I-Application API O\nand\tO\tand\tO\nthen\tO\tthen\tO\ncame\tO\tcame\tO\nacross\tO\tacross\tO\nthe\tO\tthe\tO\nofficial\tO\tofficial\tO\nMicrosoft B-Website Microsoft O\non\tO\ton\tO\nOffice\tO\tOffice\tO\nAutomation\tO\tAutomation\tO\nwhich\tO\twhich\tO\nstates\tO\tstates\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nExcel B-Application Excel O\nAPI I-Application API O\nis\tO\tis\tO\nnot\tO\tnot\tO\nsuitable\tO\tsuitable\tO\nfor\tO\tfor\tO\nExcel B-Application Excel O\nautomation\tO\tautomation\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsorts\tO\tsorts\tO\nissues\tO\tissues\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nsaw\tO\tsaw\tO\nwere\tO\twere\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthose\tO\tthose\tO\ndescribed\tO\tdescribed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narticle\tO\tarticle\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nanother\tO\tanother\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nan\tO\tan\tO\nExcel B-File_Type Excel O\nfile\tO\tfile\tO\n(\tO\t(\tO\nxls B-File_Type xls O\n,\tO\t,\tO\nxlsx B-File_Type xlsx O\n,\tO\t,\tO\nxlsm B-File_Type xlsm O\n)\tO\t)\tO\non\tO\ton\tO\na\tO\ta\tO\nserver B-Application server O\n(\tO\t(\tO\nno\tO\tno\tO\nUI\tO\tUI\tO\n)\tO\t)\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nsuffer\tO\tsuffer\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nthreading/security/license\tO\tthreading/security/license\tO\nissues\tO\tissues\tO\nimposed\tO\timposed\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nExcel B-Application Excel O\nAPI I-Application API O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1273116\tO\t1273116\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1273116/\tO\thttps://stackoverflow.com/questions/1273116/\tO\n\t\n\t\nExcel B-Application Excel O\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nof\tO\tof\tO\nyears\tO\tyears\tO\nof\tO\tof\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nstop\tO\tstop\tO\nfolks\tO\tfolks\tO\nfrom\tO\tfrom\tO\nusing\tO\tusing\tO\nExcel B-Application Excel O\non\tO\ton\tO\nthe\tO\tthe\tO\nserver B-Application server O\n,\tO\t,\tO\nthey\tO\tthey\tO\n've\tO\t've\tO\ngiven\tO\tgiven\tO\nup/embraced\tO\tup/embraced\tO\nthe\tO\tthe\tO\nmarket\tO\tmarket\tO\nneed\tO\tneed\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nstarted\tO\tstarted\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\n2007 B-Version 2007 O\nhas\tO\thas\tO\nsome\tO\tsome\tO\nimpovement\tO\timpovement\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nand\tO\tand\tO\nExcel B-Application Excel O\n2010 B-Version 2010 O\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\neven\tO\teven\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1273116\tO\t1273116\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1273116/\tO\thttps://stackoverflow.com/questions/1273116/\tO\n\t\n\t\nThere\tO\tThere\tO\nwere\tO\twere\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nlibraries\tO\tlibraries\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\nhighlighted\tO\thighlighted\tO\nby\tO\tby\tO\ndifferent\tO\tdifferent\tO\nusers\tO\tusers\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nallow\tO\tallow\tO\nthe\tO\tthe\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nfunctionality\tO\tfunctionality\tO\nrequired\tO\trequired\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nlisted\tO\tlisted\tO\nthem\tO\tthem\tO\nhere\tO\there\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nwere\tO\twere\tO\nevaluated\tO\tevaluated\tO\nso\tO\tso\tO\nwhere\tO\twhere\tO\nappropriate\tO\tappropriate\tO\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nput\tO\tput\tO\ndown\tO\tdown\tO\ninteresting\tO\tinteresting\tO\ncomments\tO\tcomments\tO\nfor\tO\tfor\tO\ncomparing\tO\tcomparing\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndetails\tO\tdetails\tO\nI\tO\tI\tO\n've\tO\t've\tO\nincluded\tO\tincluded\tO\nare\tO\tare\tO\ncompletely\tO\tcompletely\tO\nopinion\tO\topinion\tO\nbased\tO\tbased\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nlibraries\tO\tlibraries\tO\nwould\tO\twould\tO\nprobably\tO\tprobably\tO\nachieve\tO\tachieve\tO\nthe\tO\tthe\tO\nrequired\tO\trequired\tO\ngoal\tO\tgoal\tO\n.\tO\t.\tO\n\t\nSpreadsheetGear.Net B-Library SpreadsheetGear.Net O\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nevaluate\tO\tevaluate\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nhigh\tO\thigh\tO\npurchase\tO\tpurchase\tO\ncost\tO\tcost\tO\n)\tO\t)\tO\n\t\nAspose.Cells B-Library Aspose.Cells O\n\t\n(\tO\t(\tO\nEvaluated\tO\tEvaluated\tO\nby\tO\tby\tO\na\tO\ta\tO\ncollegue\tO\tcollegue\tO\n.\tO\t.\tO\n\t\nAppeared\tO\tAppeared\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nfairly\tO\tfairly\tO\nsimple\tO\tsimple\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\n,\tO\t,\tO\nperformance\tO\tperformance\tO\ncomparable\tO\tcomparable\tO\nto\tO\tto\tO\nExcel B-Application Excel O\nInterop\tO\tInterop\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nGemBox B-Library GemBox O\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nevaluate\tO\tevaluate\tO\n)\tO\t)\tO\n\t\nExcel B-Library Excel O\nServices I-Library Services O\n\t\n(\tO\t(\tO\nSeems\tO\tSeems\tO\nonly\tO\tonly\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nSharePoint B-Application SharePoint O\n2007 B-Version 2007 O\n)\tO\t)\tO\n\t\nExcel B-Library Excel O\nMapper I-Library Mapper O\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nevaluate\tO\tevaluate\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nrequires\tO\trequires\tO\nstrongly\tO\tstrongly\tO\ntyped\tO\ttyped\tO\nobjects\tO\tobjects\tO\nto\tO\tto\tO\nimport\tO\timport\tO\ninto\tO\tinto\tO\nwhich\tO\twhich\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nfit\tO\tfit\tO\nmy\tO\tmy\tO\nrequirement\tO\trequirement\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSmartXls B-Library SmartXls O\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nevaluate\tO\tevaluate\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nrequires\tO\trequires\tO\nstrongly\tO\tstrongly\tO\ntyped\tO\ttyped\tO\nobjects\tO\tobjects\tO\nto\tO\tto\tO\nimport\tO\timport\tO\ninto\tO\tinto\tO\nwhich\tO\twhich\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nfit\tO\tfit\tO\nmy\tO\tmy\tO\nrequirement\tO\trequirement\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nActiveXls B-Library ActiveXls O\n\t\n(\tO\t(\tO\nFairly\tO\tFairly\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nlack\tO\tlack\tO\nof\tO\tof\tO\nProperties\tO\tProperties\tO\nraises\tO\traises\tO\nquestions\tO\tquestions\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\na\tO\ta\tO\npreference\tO\tpreference\tO\nof\tO\tof\tO\nMethods\tO\tMethods\tO\nfor\tO\tfor\tO\ntrivial\tO\ttrivial\tO\nactions\tO\tactions\tO\n.\tO\t.\tO\n\t\nDespite\tO\tDespite\tO\nit\tO\tit\tO\n's\tO\t's\tO\nclaim\tO\tclaim\tO\nof\tO\tof\tO\n1M\tO\t1M\tO\nrecords\tO\trecords\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\nwas\tO\twas\tO\nout\tO\tout\tO\nperformed\tO\tperformed\tO\nby\tO\tby\tO\ncheaper\tO\tcheaper\tO\nFlexCel B-Library FlexCel O\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\ndecided\tO\tdecided\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nhelp/API\tO\thelp/API\tO\nmanual\tO\tmanual\tO\nis\tO\tis\tO\nalmost\tO\talmost\tO\nuseless\tO\tuseless\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nKoogra B-Library Koogra O\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nevaluate\tO\tevaluate\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nfinding\tO\tfinding\tO\nno\tO\tno\tO\ndocumentations/information\tO\tdocumentations/information\tO\n)\tO\t)\tO\n\t\nFileHelpers B-Library FileHelpers O\n\t\n(\tO\t(\tO\nDid\tO\tDid\tO\nn't\tO\tn't\tO\nevaluate\tO\tevaluate\tO\n)\tO\t)\tO\n\t\nFlexcel B-Library Flexcel O\n\t\n(\tO\t(\tO\nLowest\tO\tLowest\tO\ncost\tO\tcost\tO\nsolution\tO\tsolution\tO\nfound\tO\tfound\tO\n,\tO\t,\tO\ngood\tO\tgood\tO\nperformance\tO\tperformance\tO\nand\tO\tand\tO\nwas\tO\twas\tO\nsimple\tO\tsimple\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nwith\tO\twith\tO\na\tO\ta\tO\nclose\tO\tclose\tO\nproximity\tO\tproximity\tO\nto\tO\tto\tO\nExcel B-Application Excel O\nInterop\tO\tInterop\tO\nstructure\tO\tstructure\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nreceived\tO\treceived\tO\nquick\tO\tquick\tO\nresponse\tO\tresponse\tO\nto\tO\tto\tO\ntechnical\tO\ttechnical\tO\nquestion\tO\tquestion\tO\nfrom\tO\tfrom\tO\nsupport\tO\tsupport\tO\n.\tO\t.\tO\n\t\nProbably\tO\tProbably\tO\nmy\tO\tmy\tO\npick\tO\tpick\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbunch\tO\tbunch\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nSyncFusion B-Library SyncFusion O\nBackOffice I-Library BackOffice O\n\t\n(\tO\t(\tO\nMedium\tO\tMedium\tO\ncost\tO\tcost\tO\nand\tO\tand\tO\nhad\tO\thad\tO\na\tO\ta\tO\nreasonable\tO\treasonable\tO\nstructure\tO\tstructure\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\nhad\tO\thad\tO\nmore\tO\tmore\tO\ndifficulty\tO\tdifficulty\tO\nimplementing\tO\timplementing\tO\nand\tO\tand\tO\ninconsistent\tO\tinconsistent\tO\nresults\tO\tresults\tO\nwhen\tO\twhen\tO\nrunning\tO\trunning\tO\nunit\tO\tunit\tO\ntests\tO\ttests\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nreceived\tO\treceived\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\n' B-Error_Name ' O\nAttempted I-Error_Name Attempted O\nto I-Error_Name to O\nread I-Error_Name read O\nprotected I-Error_Name protected O\nmemory I-Error_Name memory O\n' B-Error_Name ' O\nerrors I-Error_Name errors O\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nencourage\tO\tencourage\tO\nme\tO\tme\tO\nwith\tO\twith\tO\npurely\tO\tpurely\tO\nmanaged\tO\tmanaged\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27493928\tO\t27493928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27493928/\tO\thttps://stackoverflow.com/questions/27493928/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nreally\tO\treally\tO\nbasic\tO\tbasic\tO\ncss B-Language css O\nhovers B-Function hovers O\nwhich\tO\twhich\tO\nwork\tO\twork\tO\non\tO\ton\tO\nall\tO\tall\tO\nbrowsers B-Application browsers O\nexcept\tO\texcept\tO\nie10 B-Application ie10 O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nnow\tO\tnow\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nonly\tO\tonly\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nanchor\tO\tanchor\tO\ntags\tO\ttags\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nwork-around\tO\twork-around\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nspecifying\tO\tspecifying\tO\na\tO\ta\tO\nbackground-color B-Variable background-color O\nbut\tO\tbut\tO\nthat\tO\tthat\tO\ndoesnt\tO\tdoesnt\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nread\tO\tread\tO\na\tO\ta\tO\nlot\tO\tlot\tO\non\tO\ton\tO\nstackoverflow B-Website stackoverflow O\nbut\tO\tbut\tO\nnon\tO\tnon\tO\nof\tO\tof\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3184 I-Code_Block Q_3184 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27493928\tO\t27493928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27493928/\tO\thttps://stackoverflow.com/questions/27493928/\tO\n\t\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nanswers\tO\tanswers\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n(\tO\t(\tO\nIE10 B-Application IE10 O\n,\tO\t,\tO\nWin7 B-Operating_System Win7 O\non\tO\ton\tO\nVirtual B-Application Virtual O\nMachine I-Application Machine O\n)\tO\t)\tO\n\t\nAnother\tO\tAnother\tO\noption\tO\toption\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nJavascript B-Language Javascript O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3813 I-Code_Block A_3813 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27493928\tO\t27493928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27493928/\tO\thttps://stackoverflow.com/questions/27493928/\tO\n\t\n\t\nI\tO\tI\tO\nfinally\tO\tfinally\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\nwas\tO\twas\tO\nwrong\tO\twrong\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nso\tO\tso\tO\nretarded\tO\tretarded\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nbelive\tO\tbelive\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\n.\tO\t.\tO\n\t\nSimply\tO\tSimply\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nbeginning\tO\tbeginning\tO\n(\tO\t(\tO\nbefore\tO\tbefore\tO\n<html> B-HTML_XML_Tag <html> B-Code_Block\ntag\tO\ttag\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4202 I-Code_Block A_4202 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYep\tO\tYep\tO\n,\tO\t,\tO\nInternet B-Application Internet O\nExplorer. I-Application Explorer. O\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nthe\tO\tthe\tO\n:hover B-Function :hover B-Code_Block\nworks\tO\tworks\tO\nonly\tO\tonly\tO\non\tO\ton\tO\n<a> B-HTML_XML_Tag <a> B-Code_Block\nand\tO\tand\tO\n<button> B-HTML_XML_Tag <button> B-Code_Block\ntags\tO\ttags\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22503305\tO\t22503305\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22503305/\tO\thttps://stackoverflow.com/questions/22503305/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\none\tO\tone\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nrunning\tO\trunning\tO\nSSIS B-Application SSIS O\nPackage I-Application Package O\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhile\tO\twhile\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nApplication\tO\tApplication\tO\ngot\tO\tgot\tO\ncrashed.I\tO\tcrashed.I\tO\nsaw\tO\tsaw\tO\neventviewer B-Application eventviewer O\nand\tO\tand\tO\nfound\tO\tfound\tO\nbelow\tO\tbelow\tO\nexception B-Class exception O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2462 I-Code_Block Q_2462 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis.\tO\tthis.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2463 I-Code_Block Q_2463 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44290177\tO\t44290177\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44290177/\tO\thttps://stackoverflow.com/questions/44290177/\tO\n\t\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\n2\tO\t2\tO\npipelines B-Class pipelines O\n,\tO\t,\tO\nboth\tO\tboth\tO\nare\tO\tare\tO\nordered\tO\tordered\tO\nas\tO\tas\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5737 I-Code_Block Q_5737 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThey\tO\tThey\tO\nexecute\tO\texecute\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\npipeline B-Class pipeline O\nis\tO\tis\tO\na\tO\ta\tO\nmutator\tO\tmutator\tO\n.\tO\t.\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nis\tO\tis\tO\nsubmits\tO\tsubmits\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\ncorrectly\tO\tcorrectly\tO\ngets\tO\tgets\tO\nsubmitted\tO\tsubmitted\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblems\tO\tproblems\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nsometimes\tO\tsometimes\tO\nwhen\tO\twhen\tO\ndata\tO\tdata\tO\nreaches\tO\treaches\tO\nmy\tO\tmy\tO\nmutator\tO\tmutator\tB-Code_Block\npipeline B-Class pipeline I-Code_Block\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\n'\tO\t'\tO\nadditional\tO\tadditional\tO\n'\tO\t'\tO\nitems\tO\titems\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nsecond\tO\tsecond\tO\npipeline B-Class pipeline O\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n(\tO\t(\tO\nwithout\tO\twithout\tO\nmutations\tO\tmutations\tO\n)\tO\t)\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5738 I-Code_Block Q_5738 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nreturn\tO\treturn\tB-Code_Block\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nadditional\tO\tadditional\tO\nitem\tO\titem\tO\nthat\tO\tthat\tO\nstarts\tO\tstarts\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\npipeline B-Class pipeline O\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nMany\tO\tMany\tO\nhelps\tO\thelps\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44290177\tO\t44290177\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44290177/\tO\thttps://stackoverflow.com/questions/44290177/\tO\n\t\n\t\nQuickly\tO\tQuickly\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ndocs\tO\tdocs\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nprobably\tO\tprobably\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsubclass\tO\tsubclass\tO\nof\tO\tof\tO\nscrapy.item.Item B-Class scrapy.item.Item B-Code_Block\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nlinked B-Data_Structure linked O\nlist I-Data_Structure list O\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nhaving\tO\thaving\tO\ntouched\tO\ttouched\tO\nscrapy\tO\tscrapy\tO\nmuch\tO\tmuch\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmight\tO\tmight\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nmodifications\tO\tmodifications\tO\nbut\tO\tbut\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nget\tO\tget\tO\nyou\tO\tyou\tO\nstarted\tO\tstarted\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6381 I-Code_Block A_6381 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\nitems\tO\titems\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nmultiple\tO\tmultiple\tO\nItems\tO\tItems\tO\nand\tO\tand\tO\nchain\tO\tchain\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6382 I-Code_Block A_6382 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ndatabase\tO\tdatabase\tO\npipeline\tO\tpipeline\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nprocess\tO\tprocess\tO\neach\tO\teach\tO\nitem\tO\titem\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6383 I-Code_Block A_6383 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36919534\tO\t36919534\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36919534/\tO\thttps://stackoverflow.com/questions/36919534/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nstructure\tO\tstructure\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4553 I-Code_Block Q_4553 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4554 I-Code_Block Q_4554 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nrestructure\tO\trestructure\tO\nthat\tO\tthat\tO\narray B-Data_Structure array O\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nchild-parent\tO\tchild-parent\tO\nrelations\tO\trelations\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4555 I-Code_Block Q_4555 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\ngenerated\tO\tgenerated\tO\narray B-Data_Structure array O\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4556 I-Code_Block Q_4556 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nnow\tO\tnow\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsort\tO\tsort\tO\nevery\tO\tevery\tO\ndimension\tO\tdimension\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nby\tO\tby\tO\nthe\tO\tthe\tO\nsort\tO\tsort\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\n(\tO\t(\tO\nmy\tO\tmy\tO\n\"\tO\t\"\tO\nreal\tO\treal\tO\narray B-Data_Structure array O\n\"\tO\t\"\tO\nhas\tO\thas\tO\nmore\tO\tmore\tO\nsubarrays B-Data_Structure subarrays O\nthen\tO\tthen\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\nplayed\tO\tplayed\tO\naround\tO\taround\tO\nwith\tO\twith\tO\nmultisort B-Algorithm multisort O\nbut\tO\tbut\tO\ni\tO\ti\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\n\t\nany\tO\tany\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36919534\tO\t36919534\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36919534/\tO\thttps://stackoverflow.com/questions/36919534/\tO\n\t\n\t\nSort\tO\tSort\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nwhen\tO\twhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\n1\tO\t1\tO\ndimension\tO\tdimension\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nmulti-dimensional\tO\tmulti-dimensional\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nbetter\tO\tbetter\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nsort\tO\tsort\tO\nit\tO\tit\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nSort\tO\tSort\tO\nby\tO\tby\tO\nparent\tO\tparent\tO\nthen\tO\tthen\tO\nsort\tO\tsort\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nbuild\tO\tbuild\tO\nyour\tO\tyour\tO\nmultidimensional\tO\tmultidimensional\tO\narray B-Data_Structure array O\n,\tO\t,\tO\neach\tO\teach\tO\nchild\tO\tchild\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nalready\tO\talready\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\norder\tO\torder\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\nend\tO\tend\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24633629\tO\t24633629\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24633629/\tO\thttps://stackoverflow.com/questions/24633629/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nof\tO\tof\tO\nlabels B-Class labels O\ndisplayed\tO\tdisplayed\tO\non\tO\ton\tO\nJFrame B-Class JFrame O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nJFrame B-Class JFrame O\ncould\tO\tcould\tO\nn't\tO\tn't\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\ncreated\tO\tcreated\tO\nlabels B-Class labels O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\njust\tO\tjust\tO\nappears\tO\tappears\tO\nblank\tO\tblank\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2758 I-Code_Block Q_2758 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24633629\tO\t24633629\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24633629/\tO\thttps://stackoverflow.com/questions/24633629/\tO\n\t\n\t\n\t\nJFrame B-Class JFrame O\nhas\tO\thas\tO\nBorderLayout B-Class BorderLayout O\nimplemented\tO\timplemented\tO\nin\tO\tin\tO\nAPI B-Library API O\n,\tO\t,\tO\nin\tO\tin\tO\nBorderLayout B-Class BorderLayout O\nonly\tO\tonly\tO\none\tO\tone\tO\nJComponents B-Class JComponents O\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nplaced\tO\tplaced\tO\nto\tO\tto\tO\none\tO\tone\tO\nof\tO\tof\tO\n5th\tO\t5th\tO\nareas\tO\tareas\tO\n\t\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nposted\tO\tposted\tO\nhere\tO\there\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\ncompleted\tO\tcompleted\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nshows\tO\tshows\tO\nhow\tO\thow\tO\nis\tO\tis\tO\narrays B-Data_Structure arrays O\nof\tO\tof\tO\nJLabels B-Class JLabels O\nadded\tO\tadded\tO\nto\tO\tto\tO\nJFrame B-Class JFrame O\n\t\nto\tO\tto\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\nGridLayout B-Class GridLayout O\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nsuggest\tO\tsuggest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nJTable B-Class JTable O\n(\tO\t(\tO\nin\tO\tin\tO\nJScrollPane B-Class JScrollPane O\n)\tO\t)\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nJLabels B-Class JLabels O\nadded\tO\tadded\tO\nto\tO\tto\tO\nJFrame B-Class JFrame O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17925478\tO\t17925478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17925478/\tO\thttps://stackoverflow.com/questions/17925478/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrender\tO\trender\tO\na\tO\ta\tO\nrich:dataTable B-Data_Structure rich:dataTable O\n,\tO\t,\tO\nbut\tO\tbut\tO\nfails\tO\tfails\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nits\tO\tits\tO\nconditional\tO\tconditional\tO\nrendering.I\tO\trendering.I\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nrender\tO\trender\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n,\tO\t,\tO\nthe\tO\tthe\tO\nbacking-bean\tO\tbacking-bean\tO\nfetches\tO\tfetches\tO\nfrom\tO\tfrom\tO\nDB\tO\tDB\tO\n,\tO\t,\tO\nis\tO\tis\tO\ngreater\tO\tgreater\tO\nthan\tO\tthan\tO\nzero B-Value zero O\n.\tO\t.\tO\n\t\nJSF-2.0 B-Application JSF-2.0 O\n,\tO\t,\tO\nRichFaces-4 B-Library RichFaces-4 O\nare\tO\tare\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17925478\tO\t17925478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17925478/\tO\thttps://stackoverflow.com/questions/17925478/\tO\n\t\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nrender\tO\trender\tO\n\"\tO\t\"\tO\nattribute\tO\tattribute\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndatatable\tO\tdatatable\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nit\tO\tit\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndefine\tO\tdefine\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ncomponent\tO\tcomponent\tO\nis\tO\tis\tO\nrendered\tO\trendered\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclient B-Application client O\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ncheck\tO\tcheck\tO\nby\tO\tby\tO\nEL\tO\tEL\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nis\tO\tis\tO\npopulated\tO\tpopulated\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2359 I-Code_Block A_2359 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nall\tO\tall\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalways\tO\talways\tO\nimplement\tO\timplement\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\nquery B-Function query O\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nnever\tO\tnever\tO\nreturn\tO\treturn\tO\nnull B-Value null O\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nquery B-Function query O\nhas\tO\thas\tO\nno\tO\tno\tO\nresult\tO\tresult\tO\nI\tO\tI\tO\nreturn\tO\treturn\tO\nan\tO\tan\tO\nempty B-Value empty O\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nI\tO\tI\tO\nnever\tO\tnever\tO\nget\tO\tget\tO\na\tO\ta\tO\nnullpointerexception\tO\tnullpointerexception\tO\nand\tO\tand\tO\nI\tO\tI\tO\nprefer\tO\tprefer\tO\nthen\tO\tthen\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nan\tO\tan\tO\nempty B-Value empty O\ntable B-Data_Structure table O\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\neaser\tO\teaser\tO\nto\tO\tto\tO\nlayout\tO\tlayout\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\ntable B-Data_Structure table O\nalways\tO\talways\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthat\tO\tthat\tO\nhelps\tO\thelps\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17925478\tO\t17925478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17925478/\tO\thttps://stackoverflow.com/questions/17925478/\tO\n\t\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\nname\tO\tname\tO\non\tO\ton\tO\nthe\tO\tthe\tO\na4j:jsFunction B-Function a4j:jsFunction O\nis\tO\tis\tO\nreRender B-Variable reRender O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\njust\tO\tjust\tO\nrender\tO\trender\tO\n.\tO\t.\tO\n\t\nShould\tO\tShould\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38972804\tO\t38972804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38972804/\tO\thttps://stackoverflow.com/questions/38972804/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\ngreat\tO\tgreat\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nhelping\tO\thelping\tO\nme\tO\tme\tO\nparse\tO\tparse\tO\nthrough\tO\tthrough\tO\nand\tO\tand\tO\ndisplay\tO\tdisplay\tO\nresults\tO\tresults\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nphp B-Language php O\ngenerated\tO\tgenerated\tO\nhtml B-Language html O\ntable B-Data_Structure table O\non\tO\ton\tO\nanother\tO\tanother\tO\npage\tO\tpage\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nserver B-Device server O\n,\tO\t,\tO\nusing\tO\tusing\tO\nPHP B-Language PHP O\n's\tO\t's\tO\nDOMDocument B-Variable DOMDocument O\nand\tO\tand\tO\nDOMXpath B-Variable DOMXpath O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4904 I-Code_Block Q_4904 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nanother\tO\tanother\tO\nvariable\tO\tvariable\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nforeach B-Code_Block foreach O\nloop\tO\tloop\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4905 I-Code_Block Q_4905 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n've\tO\t've\tO\ndone\tO\tdone\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nresearch\tO\tresearch\tO\nalso\tO\talso\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nlead\tO\tlead\tO\nme\tO\tme\tO\nto\tO\tto\tO\nbelieve\tO\tbelieve\tO\nthat\tO\tthat\tO\nincluding\tO\tincluding\tO\nmultiple\tO\tmultiple\tO\nvariables\tO\tvariables\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nforeach B-Code_Block foreach O\nloop\tO\tloop\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nverify\tO\tverify\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nso\tO\tso\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nanyone\tO\tanyone\tO\nhave\tO\thave\tO\nanother\tO\tanother\tO\nidea\tO\tidea\tO\nfor\tO\tfor\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nachieve\tO\tachieve\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nresult\tO\tresult\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27420059\tO\t27420059\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27420059/\tO\thttps://stackoverflow.com/questions/27420059/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\ndiv B-HTML_XML_Tag div O\ntag\tO\ttag\tO\naction\tO\taction\tO\nto\tO\tto\tO\ninputbox B-User_Interface_Element inputbox O\nin\tO\tin\tO\nclick\tO\tclick\tO\nevent.In\tO\tevent.In\tO\ndiv B-HTML_XML_Tag div O\ntag\tO\ttag\tO\ncalender B-Application calender O\nis\tO\tis\tO\ndisplayed\tO\tdisplayed\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3163 I-Code_Block Q_3163 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27420059\tO\t27420059\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27420059/\tO\thttps://stackoverflow.com/questions/27420059/\tO\n\t\n\t\nJust\tO\tJust\tO\nshow\tO\tshow\tO\ndatepicker B-Function datepicker O\non\tO\ton\tO\na\tO\ta\tO\nclick\tO\tclick\tO\nevent\tO\tevent\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3805 I-Code_Block A_3805 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45538053\tO\t45538053\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45538053/\tO\thttps://stackoverflow.com/questions/45538053/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nAWS B-Application AWS O\nAPI I-Application API O\nGateway I-Application Gateway O\nwith\tO\twith\tO\nan\tO\tan\tO\nAWS B-Application AWS O\nlambda I-Application lambda O\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nintegration\tO\tintegration\tO\nworks\tO\tworks\tO\nflawlessly\tO\tflawlessly\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nLambda\tO\tLambda\tO\nProxy\tO\tProxy\tO\nintegration\tO\tintegration\tO\n'\tO\t'\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nIntegration\tO\tIntegration\tO\nRequest\tO\tRequest\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ncheck\tO\tcheck\tO\n'\tO\t'\tO\nUse\tO\tUse\tO\nLambda\tO\tLambda\tO\nProxy\tO\tProxy\tO\nintegration\tO\tintegration\tO\n'\tO\t'\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nintegration\tO\tintegration\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nI\tO\tI\tO\nstart\tO\tstart\tO\ngetting\tO\tgetting\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nI\tO\tI\tO\ngoogled B-Website googled O\naround\tO\taround\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nand\tO\tand\tO\nrealized\tO\trealized\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nback\tO\tback\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\nin\tO\tin\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nformat\tO\tformat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5966 I-Code_Block Q_5966 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\ndespite\tO\tdespite\tO\ndoing\tO\tdoing\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\ncontinue\tO\tcontinue\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nmy\tO\tmy\tO\nLambda B-Application Lambda O\nfunction\tO\tfunction\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5967 I-Code_Block Q_5967 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntest\tO\ttest\tO\nthe\tO\tthe\tO\nAPI\tO\tAPI\tO\nfrom\tO\tfrom\tO\nAPI B-Application API O\nGateway I-Application Gateway O\nconsole\tO\tconsole\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\nI\tO\tI\tO\nget\tO\tget\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nun-check\tO\tun-check\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nUse\tO\tUse\tO\nLambda\tO\tLambda\tO\nProxy\tO\tProxy\tO\nintegration\tO\tintegration\tO\n'\tO\t'\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nokay\tO\tokay\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nmy\tO\tmy\tO\nresponse\tO\tresponse\tO\nis\tO\tis\tO\nmalformed\tO\tmalformed\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45538053\tO\t45538053\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45538053/\tO\thttps://stackoverflow.com/questions/45538053/\tO\n\t\n\t\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nit\tO\tit\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nsending\tO\tsending\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\nback\tO\tback\tO\nin\tO\tin\tO\nan\tO\tan\tO\nincorrect\tO\tincorrect\tO\nmanner\tO\tmanner\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nresponse\tO\tresponse\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsent\tO\tsent\tO\nback\tO\tback\tO\nas\tO\tas\tO\na\tO\ta\tO\nPOJO B-Data_Type POJO O\nobject\tO\tobject\tO\ndirectly\tO\tdirectly\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nserializing\tO\tserializing\tO\nthe\tO\tthe\tO\nPOJO B-Data_Type POJO O\nand\tO\tand\tO\nsending\tO\tsending\tO\nit\tO\tit\tO\nback\tO\tback\tO\nas\tO\tas\tO\na\tO\ta\tO\nString B-Data_Type String O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6613 I-Code_Block A_6613 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\nsomeone\tO\tsomeone\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31688119\tO\t31688119\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31688119/\tO\thttps://stackoverflow.com/questions/31688119/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nArdent B-Application Ardent O\nwith\tO\twith\tO\nLaravel B-Library Laravel O\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nare\tO\tare\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nsite\tO\tsite\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\nallows\tO\tallows\tO\nUS\tO\tUS\tO\ncustomers\tO\tcustomers\tO\nbut\tO\tbut\tO\nwe\tO\twe\tO\n're\tO\t're\tO\nextending\tO\textending\tO\nit\tO\tit\tO\nto\tO\tto\tO\nCanadian\tO\tCanadian\tO\ncustomers\tO\tcustomers\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nour\tO\tour\tO\nrequirements\tO\trequirements\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nzip\tO\tzip\tO\ncode\tO\tcode\tO\nbe\tO\tbe\tO\n5-9 B-Value 5-9 O\ncharacters I-Value characters O\nlong\tO\tlong\tO\n,\tO\t,\tO\nall\tO\tall\tO\nnumbers\tO\tnumbers\tO\n(\tO\t(\tO\nwe\tO\twe\tO\nstrip\tO\tstrip\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\ndash\tO\tdash\tO\nand\tO\tand\tO\nother\tO\tother\tO\npunctuation\tO\tpunctuation\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nvalidation\tO\tvalidation\tO\nfor\tO\tfor\tO\npostal\tO\tpostal\tO\ncodes\tO\tcodes\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\npostal_codes B-Variable postal_codes O\nto\tO\tto\tO\nbe\tO\tbe\tO\nrequired\tO\trequired\tO\nif\tO\tif\tO\nzip_code B-Variable zip_code O\nis\tO\tis\tO\nnot\tO\tnot\tO\noffered\tO\toffered\tO\n(\tO\t(\tO\nand\tO\tand\tO\nvice\tO\tvice\tO\nversa\tO\tversa\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nTheoretically\tO\tTheoretically\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\njust\tO\tjust\tO\none\tO\tone\tO\nfield\tO\tfield\tO\nbut\tO\tbut\tO\nwe\tO\twe\tO\n'd\tO\t'd\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmore\tO\tmore\tO\ncomplex\tO\tcomplex\tO\nregex\tO\tregex\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31688119\tO\t31688119\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31688119/\tO\thttps://stackoverflow.com/questions/31688119/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nsite\tO\tsite\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncountry B-Variable country O\nfield\tO\tfield\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4527 I-Code_Block A_4527 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nrequired_without B-Value required_without O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26353240\tO\t26353240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26353240/\tO\thttps://stackoverflow.com/questions/26353240/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nhow\tO\thow\tO\nlong\tO\tlong\tO\nmy\tO\tmy\tO\nbattery B-Device battery O\nruns\tO\truns\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nraspberry B-Device raspberry O\npi I-Device pi O\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nrun\tO\trun\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nloop\tO\tloop\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nbattery B-Device battery O\ndies\tO\tdies\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrecord\tO\trecord\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\nand\tO\tand\tO\nends\tO\tends\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ntxt B-File_Type txt O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncurrent\tO\tcurrent\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3008 I-Code_Block Q_3008 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\npython B-Language python O\ni\tO\ti\tO\nwill\tO\twill\tO\nget\tO\tget\tO\na\tO\ta\tO\nresult\tO\tresult\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ncode\tO\tcode\tO\nmakes\tO\tmakes\tO\na\tO\ta\tO\nfile B-Class file O\ncalled\tO\tcalled\tO\n'\tO\t'\tO\nfile B-Variable file O\n'\tO\t'\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nnothing\tO\tnothing\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntxt B-File_Type txt O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nand\tO\tand\tO\nall\tO\tall\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntime\tO\ttime\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26353240\tO\t26353240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26353240/\tO\thttps://stackoverflow.com/questions/26353240/\tO\n\t\n\t\nNo\tO\tNo\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrecord\tO\trecord\tO\nthese\tO\tthese\tO\ntimes\tO\ttimes\tO\nyourself\tO\tyourself\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nPi B-Device Pi O\n(\tO\t(\tO\nand\tO\tand\tO\nalmost\tO\talmost\tO\nany\tO\tany\tO\nLinux B-Operating_System Linux O\ndistribution\tO\tdistribution\tO\n)\tO\t)\tO\nwrites\tO\twrites\tO\nthose\tO\tthose\tO\nevents\tO\tevents\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n/var/log/wtmp B-File_Name /var/log/wtmp B-Code_Block\nfile\tO\tfile\tO\n(\tO\t(\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nthat\tO\tthat\tO\nfile\tO\tfile\tO\nhere\tO\there\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlast B-Code_Block last B-Code_Block\ncommand\tO\tcommand\tO\ncan\tO\tcan\tO\nretrieve\tO\tretrieve\tO\nthose\tO\tthose\tO\nevents\tO\tevents\tO\n(\tO\t(\tO\nalso\tO\talso\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nmanual\tO\tmanual\tO\nentry\tO\tentry\tO\nfor\tO\tfor\tO\nlast\tO\tlast\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3634 I-Code_Block A_3634 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nExplanation\tO\tExplanation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nflags\tO\tflags\tO\n:\tO\t:\tO\n\t\n-F B-Code_Block -F O\nprints\tO\tprints\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\ndate\tO\tdate\tO\nand\tO\tand\tO\ntimes\tO\ttimes\tO\n-\tO\t-\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nhandy\tO\thandy\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\n-R B-Code_Block -R O\nsuppresses\tO\tsuppresses\tO\nthe\tO\tthe\tO\nhostname\tO\thostname\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\n-x B-Code_Block -x O\nshows\tO\tshows\tO\nshutdown\tO\tshutdown\tO\nen\tO\ten\tO\nrunlevel\tO\trunlevel\tO\nchanges\tO\tchanges\tO\n-\tO\t-\tO\nnow\tO\tnow\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\nthe\tO\tthe\tO\ngrep B-Code_Block grep B-Code_Block\nstatement\tO\tstatement\tO\nfilters\tO\tfilters\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nboot\tO\tboot\tO\nor\tO\tor\tO\nshutdown\tO\tshutdown\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26353240\tO\t26353240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26353240/\tO\thttps://stackoverflow.com/questions/26353240/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nrecomend\tO\trecomend\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3633 I-Code_Block A_3633 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\ndifferences\tO\tdifferences\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nalways\tO\talways\tO\nopen B-Function open O\nthe\tO\tthe\tO\nfile B-Class file O\nin\tO\tin\tO\nappend\tO\tappend\tB-Code_Block\nmode\tO\tmode\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfile B-Class file O\nwill\tO\twill\tO\nbe\tO\tbe\tO\nflushed\tO\tflushed\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nNext\tO\tNext\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nfile B-Class file O\nwith\tO\twith\tO\nthe\tO\tthe\tO\namount\tO\tamount\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\nelapsed\tO\telapsed\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\neven\tO\teven\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nraspberry B-Device raspberry O\npi I-Device pi O\nshuts\tO\tshuts\tO\ndown\tO\tdown\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nrecover\tO\trecover\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43267978\tO\t43267978\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43267978/\tO\thttps://stackoverflow.com/questions/43267978/\tO\n\t\n\t\nContext\tO\tContext\tO\n\t\nGNU B-Operating_System GNU O\nbash B-Application bash O\n4.4.12(1)-release B-Version 4.4.12(1)-release B-Code_Block\n\t\nPowerline B-Application Powerline O\n2.5.2-1 B-Version 2.5.2-1 B-Code_Block\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nPS1 B-Variable PS1 O\nScript\tO\tScript\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5534 I-Code_Block Q_5534 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPowerline B-Application Powerline O\nconfig\tO\tconfig\tO\n\t\nconfig.json B-File_Name config.json O\n\t\ncolors.json B-File_Name colors.json O\n\t\ncolorschemes/shell/default.json B-File_Name colorschemes/shell/default.json O\n\t\nthemes/shell/default.json B-File_Name themes/shell/default.json O\n\t\nProblem\tO\tProblem\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\nas\tO\tas\tO\nhim\tO\thim\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nchars B-Data_Type chars O\nthe\tO\tthe\tO\nline\tO\tline\tO\nwraps\tO\twraps\tO\nand\tO\tand\tO\nI\tO\tI\tO\nstart\tO\tstart\tO\nwriting\tO\twriting\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nline\tO\tline\tO\n,\tO\t,\tO\noverwriting\tO\toverwriting\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nalready\tO\talready\tO\nwrote\tO\twrote\tO\n(\tO\t(\tO\nincluding\tO\tincluding\tO\nps B-Variable ps O\n1) I-Variable 1) O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\naware\tO\taware\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nnon-printable\tO\tnon-printable\tO\ncharacter\tO\tcharacter\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nit\tO\tit\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\npowerline B-Application powerline O\nbug\tO\tbug\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nother\tO\tother\tO\nproblems\tO\tproblems\tO\ncan\tO\tcan\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38778865\tO\t38778865\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38778865/\tO\thttps://stackoverflow.com/questions/38778865/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nqueue B-Data_Structure queue O\nmultiple\tO\tmultiple\tO\nnotifications B-User_Interface_Element notifications O\nto\tO\tto\tO\npop\tO\tpop\tO\nat\tO\tat\tO\ndifferent\tO\tdifferent\tO\ntimes\tO\ttimes\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nclicks\tO\tclicks\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\n(\tO\t(\tO\nscheduleNotification B-Class scheduleNotification O\noccurs\tO\toccurs\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\nafter\tO\tafter\tO\nits\tO\tits\tO\npressed\tO\tpressed\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nnotifications B-User_Interface_Element notifications O\nall\tO\tall\tO\npop\tO\tpop\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nfinal\tO\tfinal\tO\npress\tO\tpress\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\npressing\tO\tpressing\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\n4\tO\t4\tO\ntimes\tO\ttimes\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\nnotification B-User_Interface_Element notification O\nwill\tO\twill\tO\npop\tO\tpop\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\n4th\tO\t4th\tO\nclick\tO\tclick\tO\n.\tO\t.\tO\n\t\nRelevant\tO\tRelevant\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4878 I-Code_Block Q_4878 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nReceiver B-Class Receiver O\nclass\tO\tclass\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4879 I-Code_Block Q_4879 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47087661\tO\t47087661\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47087661/\tO\thttps://stackoverflow.com/questions/47087661/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nform\tO\tform\tO\nvalidation\tO\tvalidation\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nnotifies\tO\tnotifies\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nEmployeeNo B-Variable EmployeeNo B-Code_Block\nand\tO\tand\tO\nEngagementID B-Variable EngagementID B-Code_Block\nhave\tO\thave\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nEmployeeNo B-Variable EmployeeNo B-Code_Block\nwith\tO\twith\tO\n0507 B-Value 0507 B-Code_Block\nand\tO\tand\tO\nan\tO\tan\tO\nEngagementID B-Variable EngagementID B-Code_Block\nwith\tO\twith\tO\n13 B-Value 13 B-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nduplicate\tO\tduplicate\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n,\tO\t,\tO\nEngagement B-Output_Block Engagement O\nalready I-Output_Block already O\nexists I-Output_Block exists O\non I-Output_Block on O\nthat I-Output_Block that O\nusername I-Output_Block username O\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6235 I-Code_Block Q_6235 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43098434\tO\t43098434\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43098434/\tO\thttps://stackoverflow.com/questions/43098434/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5509 I-Code_Block Q_5509 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43098434\tO\t43098434\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43098434/\tO\thttps://stackoverflow.com/questions/43098434/\tO\n\t\n\t\nsimply\tO\tsimply\tO\nput\tO\tput\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndeclaring\tO\tdeclaring\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nnamed\tO\tnamed\tO\n\"\tO\t\"\tO\nDie B-Class Die O\n\"\tO\t\"\tO\nand\tO\tand\tO\ndefining\tO\tdefining\tO\n3\tO\t3\tO\nfunctions\tO\tfunctions\tO\nwhich\tO\twhich\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nshow B-Function show O\n:\tO\t:\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nstring B-Data_Type string O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nface\tO\tface\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndie\tO\tdie\tO\nin\tO\tin\tO\nbrackets\tO\tbrackets\tO\n\t\ngetFaceValue B-Function getFaceValue O\n:\tO\t:\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nface\tO\tface\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndie\tO\tdie\tO\n\t\nroll B-Function roll O\n:\tO\t:\tO\ngets\tO\tgets\tO\na\tO\ta\tO\nrandom\tO\trandom\tO\nnumber\tO\tnumber\tO\nbetween\tO\tbetween\tO\n1 B-Value 1 O\nand\tO\tand\tO\n6 B-Value 6 O\n,\tO\t,\tO\nessentially\tO\tessentially\tO\nrolling\tO\trolling\tO\nthe\tO\tthe\tO\ndie\tO\tdie\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34928520\tO\t34928520\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34928520/\tO\thttps://stackoverflow.com/questions/34928520/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4272 I-Code_Block Q_4272 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nB B-Variable B O\nin\tO\tin\tO\nA B-Variable A O\n,\tO\t,\tO\nbut\tO\tbut\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nfind\tO\tfind\tO\nfirst\tO\tfirst\tO\nrowA\tO\trowA\tO\nof\tO\tof\tO\nvalue\tO\tvalue\tO\n1\tO\t1\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nB B-Variable B O\n)\tO\t)\tO\n\t\nfind\tO\tfind\tO\nfirst\tO\tfirst\tO\nrowA\tO\trowA\tO\nof\tO\tof\tO\nvalue\tO\tvalue\tO\n0\tO\t0\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nB B-Function B O\n)\tO\t)\tO\n\t\nfind\tO\tfind\tO\nfirst\tO\tfirst\tO\nrowA\tO\trowA\tO\nof\tO\tof\tO\nvalue\tO\tvalue\tO\n5\tO\t5\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nB B-Variable B O\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nC B-Code_Block C B-Code_Block\n=[ I-Code_Block =[ I-Code_Block\n2 I-Code_Block 2 I-Code_Block\n2 I-Code_Block 2 I-Code_Block\n1 I-Code_Block 1 I-Code_Block\n2 I-Code_Block 2 I-Code_Block\n2 I-Code_Block 2 I-Code_Block\n] I-Code_Block ] I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4273 I-Code_Block Q_4273 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34928520\tO\t34928520\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34928520/\tO\thttps://stackoverflow.com/questions/34928520/\tO\n\t\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nalmost\tO\talmost\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmust\tO\tmust\tO\ninitialize\tO\tinitialize\tO\nthe\tO\tthe\tO\nindex-variable B-Variable index-variable B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4976 I-Code_Block A_4976 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46711949\tO\t46711949\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46711949/\tO\thttps://stackoverflow.com/questions/46711949/\tO\n\t\n\t\nIn\tO\tIn\tO\nMySQL B-Application MySQL O\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nin\tO\tin\tO\nfollowing\tO\tfollowing\tO\nexpressions\tO\texpressions\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nis\tO\tis\tO\nto\tO\tto\tO\nreduce\tO\treduce\tO\ncode\tO\tcode\tO\nduplicity\tO\tduplicity\tO\nand\tO\tand\tO\navoid\tO\tavoid\tO\npossible\tO\tpossible\tO\nproblems\tO\tproblems\tO\nwhen\tO\twhen\tO\nediting\tO\tediting\tO\nexisting\tO\texisting\tO\nscripts\tO\tscripts\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nmandatory\tO\tmandatory\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6153 I-Code_Block Q_6153 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6148291\tO\t6148291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6148291/\tO\thttps://stackoverflow.com/questions/6148291/\tO\n\t\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\n1\tO\t1\tO\nperl B-Language perl O\nscript\tO\tscript\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nwe\tO\twe\tO\nwrite\tO\twrite\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nsubroutines\tO\tsubroutines\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_449 I-Code_Block Q_449 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwrote\tO\twrote\tO\nanother\tO\tanother\tO\nscript\tO\tscript\tO\nTry_2.pl B-File_Name Try_2.pl B-Code_Block\n,\tO\t,\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\ncheck\tO\tcheck\tO\nsubroutine\tO\tsubroutine\tO\nof\tO\tof\tO\nperl B-Language perl O\nscript\tO\tscript\tO\nTry_1.pl B-File_Name Try_1.pl B-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6148291\tO\t6148291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6148291/\tO\thttps://stackoverflow.com/questions/6148291/\tO\n\t\n\t\nIt\tO\tIt\tO\nsounds\tO\tsounds\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nmodule\tO\tmodule\tO\n.\tO\t.\tO\n\t\nTry_1.pm B-File_Name Try_1.pm O\n(\tO\t(\tO\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nnote\tO\tnote\tO\nextension\tO\textension\tO\n)\tO\t)\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nform\tO\tform\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_693 I-Code_Block A_693 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nTry_2.pl B-File_Name Try_2.pl O\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_694 I-Code_Block A_694 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThat\tO\tThat\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6148291\tO\t6148291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6148291/\tO\thttps://stackoverflow.com/questions/6148291/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nmodules\tO\tmodules\tO\n(\tO\t(\tO\nextension\tO\textension\tO\n.pm B-File_Type .pm B-Code_Block\n)\tO\t)\tO\nbut\tO\tbut\tO\ninstead\tO\tinstead\tO\nuse\tO\tuse\tO\nlibraries\tO\tlibraries\tO\n(\tO\t(\tO\nextension\tO\textension\tO\n.pl B-File_Type .pl B-Code_Block\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_696 I-Code_Block A_696 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nboth\tO\tboth\tO\nfiles\tO\tfiles\tO\nTry_1.pl B-File_Name Try_1.pl B-Code_Block\nand\tO\tand\tO\nTry_2.pl B-File_Name Try_2.pl B-Code_Block\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37757484\tO\t37757484\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37757484/\tO\thttps://stackoverflow.com/questions/37757484/\tO\n\t\n\t\nShould\tO\tShould\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nArrayList B-Class ArrayList O\n,\tO\t,\tO\nVectors B-Class Vectors O\n,\tO\t,\tO\nHashMp B-Class HashMp O\nor\tO\tor\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nbank\tO\tbank\tO\nprogram\tO\tprogram\tO\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ninformation\tO\tinformation\tO\nin\tO\tin\tO\nan\tO\tan\tO\none\tO\tone\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37757484\tO\t37757484\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37757484/\tO\thttps://stackoverflow.com/questions/37757484/\tO\n\t\n\t\nTo\tO\tTo\tO\ndecide\tO\tdecide\tO\nbetween\tO\tbetween\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nArrayList/Vector B-Class ArrayList/Vector O\nor\tO\tor\tO\na\tO\ta\tO\nHashMap B-Class HashMap O\ndepends\tO\tdepends\tO\non\tO\ton\tO\nwhether\tO\twhether\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nkey-value\tO\tkey-value\tO\npairs\tO\tpairs\tO\nor\tO\tor\tO\nsimple\tO\tsimple\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nkey-value\tO\tkey-value\tO\npairs\tO\tpairs\tO\na\tO\ta\tO\nHashMap B-Class HashMap O\nis\tO\tis\tO\nthe\tO\tthe\tO\ngo-to\tO\tgo-to\tO\noption\tO\toption\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\nname B-Variable name O\n-\tO\t-\tO\nperson B-Variable person O\nobject\tO\tobject\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\nobjects B-Class objects O\nbut\tO\tbut\tO\nno\tO\tno\tO\nreal\tO\treal\tO\nkeys\tO\tkeys\tO\n(\tO\t(\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ntrees\tO\ttrees\tO\nin\tO\tin\tO\na\tO\ta\tO\nforest\tO\tforest\tO\n)\tO\t)\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nArrayList B-Class ArrayList O\nor\tO\tor\tO\nVector B-Class Vector O\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nVector B-Class Vector O\nand\tO\tand\tO\nArrayList B-Class ArrayList O\nis\tO\tis\tO\nmore\tO\tmore\tO\nsubtle\tO\tsubtle\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\narticle\tO\tarticle\tO\nis\tO\tis\tO\nfrom\tO\tfrom\tO\n2001\tO\t2001\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\nnewest\tO\tnewest\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmost\tO\tmost\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nArrayList B-Class ArrayList O\nis\tO\tis\tO\nthe\tO\tthe\tO\nbetter\tO\tbetter\tO\nchoice\tO\tchoice\tO\nand\tO\tand\tO\nVector B-Class Vector O\nis\tO\tis\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nconsidered\tO\tconsidered\tO\ndeprecated\tO\tdeprecated\tO\nnowadays\tO\tnowadays\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\nbiggest\tO\tbiggest\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nis\tO\tis\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nVector B-Class Vector O\nis\tO\tis\tO\nsynchronized\tO\tsynchronized\tO\nwhile\tO\twhile\tO\nArrayList B-Class ArrayList O\nis\tO\tis\tO\nn't\tO\tn't\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nin\tO\tin\tO\nmost\tO\tmost\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nmakes\tO\tmakes\tO\nthe\tO\tthe\tO\nVector B-Class Vector O\nslower\tO\tslower\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nArrayList B-Class ArrayList O\nas\tO\tas\tO\nit\tO\tit\tO\ncreates\tO\tcreates\tO\nunnecessary\tO\tunnecessary\tO\noverhead\tO\toverhead\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nJava B-Language Java O\nVector B-Class Vector O\nclass\tO\tclass\tO\nconsidered\tO\tconsidered\tO\nobsolete\tO\tobsolete\tO\nor\tO\tor\tO\ndeprecated\tO\tdeprecated\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22773304\tO\t22773304\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22773304/\tO\thttps://stackoverflow.com/questions/22773304/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncoding\tO\tcoding\tO\nin\tO\tin\tO\nQt B-Application Qt O\nC++ B-Language C++ O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndeclaring\tO\tdeclaring\tO\na\tO\ta\tO\nliteral\tO\tliteral\tO\ndouble B-Data_Type double O\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\nrountine\tO\trountine\tO\nof\tO\tof\tO\n0.1 B-Value 0.1 O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\npass\tO\tpass\tO\nthis\tO\tthis\tO\nvariable\tO\tvariable\tO\nto\tO\tto\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\ntype\tO\ttype\tO\ndouble B-Data_Type double O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nhover\tO\thover\tO\nthe\tO\tthe\tO\nmouse\tO\tmouse\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nin\tO\tin\tO\ndebug\tO\tdebug\tO\nmode\tO\tmode\tO\nI\tO\tI\tO\nsee\tO\tsee\tO\n0.100000000000001 B-Value 0.100000000000001 O\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncause\tO\tcause\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nchange\tO\tchange\tO\nand\tO\tand\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nstop\tO\tstop\tO\nit\tO\tit\tO\nplease\tO\tplease\tO\n?\tO\t?\tO\n\t\nMethod\tO\tMethod\tO\nDefinition\tO\tDefinition\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2490 I-Code_Block Q_2490 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMethod\tO\tMethod\tO\nCall\tO\tCall\tO\nwith\tO\twith\tO\nliteral\tO\tliteral\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n0.1 B-Value 0.1 O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2491 I-Code_Block Q_2491 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nenvironment\tO\tenvironment\tO\nis\tO\tis\tO\nWindows B-Operating_System Windows O\n64 B-Version 64 O\nbit\tO\tbit\tO\nOS\tO\tOS\tO\nusing\tO\tusing\tO\nQt B-Application Qt O\n5.2.1 B-Version 5.2.1 O\nand\tO\tand\tO\ncompiling\tO\tcompiling\tO\nusing\tO\tusing\tO\nMicrosoft B-Application Microsoft O\n2010 I-Application 2010 O\nVisual I-Application Visual O\nStudio I-Application Studio O\ncompiler I-Application compiler O\nin\tO\tin\tO\n32\tO\t32\tO\nbit\tO\tbit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22773304\tO\t22773304\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22773304/\tO\thttps://stackoverflow.com/questions/22773304/\tO\n\t\n\t\nMany\tO\tMany\tO\ndecimal\tO\tdecimal\tO\nnumbers\tO\tnumbers\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nexactly\tO\texactly\tO\nrepresentable\tO\trepresentable\tO\nin\tO\tin\tO\nIEEE\tO\tIEEE\tO\nfloating\tO\tfloating\tO\npoint\tO\tpoint\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nbinary\tO\tbinary\tO\nrepresentation\tO\trepresentation\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\ndouble B-Data_Type double B-Code_Block\n)\tO\t)\tO\nand\tO\tand\tO\n0.1 B-Value 0.1 O\nfalls\tO\tfalls\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncamp\tO\tcamp\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\ntype\tO\ttype\tO\n0.1 B-Value 0.1 B-Code_Block\nthe\tO\tthe\tO\nC++ B-Language C++ O\ncompiler B-Application compiler O\nis\tO\tis\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthat\tO\tthat\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndouble B-Data_Type double B-Code_Block\nto\tO\tto\tO\nbe\tO\tbe\tO\nrepresented\tO\trepresented\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nhardware\tO\thardware\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nso\tO\tso\tO\nby\tO\tby\tO\ncomputing\tO\tcomputing\tO\na\tO\ta\tO\nnear\tO\tnear\tO\napproximation\tO\tapproximation\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\na\tO\ta\tO\npower\tO\tpower\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\n:\tO\t:\tO\n0.5 B-Value 0.5 B-Code_Block\n,\tO\t,\tO\n0.25 B-Value 0.25 B-Code_Block\nthese\tO\tthese\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nexactly\tO\texactly\tO\nrepresented\tO\trepresented\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nin-depth\tO\tin-depth\tO\ndescription\tO\tdescription\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22773304\tO\t22773304\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22773304/\tO\thttps://stackoverflow.com/questions/22773304/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nnormal\tO\tnormal\tO\nbehaviour\tO\tbehaviour\tO\nin\tO\tin\tO\nany\tO\tany\tO\ncomputer B-Device computer O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ncaused\tO\tcaused\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\ndecimal B-Data_Type decimal O\nnumbers I-Data_Type numbers O\nare\tO\tare\tO\nbeing\tO\tbeing\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\nfixed-sized\tO\tfixed-sized\tO\nbinary\tO\tbinary\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nextra\tO\textra\tO\ndigits\tO\tdigits\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ninherent\tO\tinherent\tO\nerrors\tO\terrors\tO\ncaused\tO\tcaused\tO\nby\tO\tby\tO\nconverting\tO\tconverting\tO\nfrom\tO\tfrom\tO\nbinary\tO\tbinary\tO\nto\tO\tto\tO\ndecimal\tO\tdecimal\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nchoose\tO\tchoose\tO\na\tO\ta\tO\nprecision\tO\tprecision\tO\n(\tO\t(\tO\neither\tO\teither\tO\nfloat B-Data_Type float B-Code_Block\nor\tO\tor\tO\ndouble B-Data_Type double B-Code_Block\n)\tO\t)\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nbig\tO\tbig\tO\nenough\tO\tenough\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nextra\tO\textra\tO\nerror\tO\terror\tO\ndigits\tO\tdigits\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nmake\tO\tmake\tO\nany\tO\tany\tO\ndifference\tO\tdifference\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nchop\tO\tchop\tO\nthem\tO\tthem\tO\noff\tO\toff\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7421703\tO\t7421703\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7421703/\tO\thttps://stackoverflow.com/questions/7421703/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nmy\tO\tmy\tO\nview B-Class view O\ncontroller I-Class controller O\nis\tO\tis\tO\nfirst\tO\tfirst\tO\npresented\tO\tpresented\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\npotentially\tO\tpotentially\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\ncache\tO\tcache\tO\nthat\tO\tthat\tO\nprovides\tO\tprovides\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ntaps\tO\ttaps\tO\nthe\tO\tthe\tO\nback\tO\tback\tO\nbutton B-User_Interface_Element button O\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndeeper\tO\tdeeper\tO\nview B-Class view O\ncontroller I-Class controller O\nto\tO\tto\tO\nreturn\tO\treturn\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nview B-Class view O\ncontroller I-Class controller O\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ncache\tO\tcache\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nevent\tO\tevent\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\n?\tO\t?\tO\n\t\nin\tO\tin\tO\ninit B-Function init B-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nviewWillAppear B-Function viewWillAppear B-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfired\tO\tfired\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nwill\tO\twill\tO\nappear\tO\tappear\tO\n.\tO\t.\tO\n\t\nviewDidLoad B-Function viewDidLoad B-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfired\tO\tfired\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nloaded\tO\tloaded\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nnib B-File_Type nib O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\ncould\tO\tcould\tO\nhappen\tO\thappen\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\ntime\tO\ttime\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nmemory\tO\tmemory\tO\nwarning\tO\twarning\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nOr\tO\tOr\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nSince\tO\tSince\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nmemory\tO\tmemory\tO\nresident\tO\tresident\tO\ncache\tO\tcache\tO\n,\tO\t,\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nplace\tO\tplace\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nhaving\tO\thaving\tO\nthe\tO\tthe\tO\ncaller\tO\tcaller\tO\ncall\tO\tcall\tO\nsomething\tO\tsomething\tO\nextra\tO\textra\tO\nis\tO\tis\tO\ninelegant\tO\tinelegant\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nbuilt-in\tO\tbuilt-in\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nclarify\tO\tclarify\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nmemory\tO\tmemory\tO\nresident\tO\tresident\tO\ncache\tO\tcache\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nparsing\tO\tparsing\tO\nan\tO\tan\tO\nXML B-File_Type XML O\nfile\tO\tfile\tO\nto\tO\tto\tO\nbinary B-File_Type binary O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbinary B-File_Type binary O\nis\tO\tis\tO\nloaded\tO\tloaded\tO\nand\tO\tand\tO\nunloaded\tO\tunloaded\tO\nin\tO\tin\tO\nviewDidLoad B-Function viewDidLoad B-Code_Block\nand\tO\tand\tO\nviewDidUnload B-Function viewDidUnload B-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nprerequisite\tO\tprerequisite\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nstep\tO\tstep\tO\n,\tO\t,\tO\nmaking\tO\tmaking\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nbinary B-File_Type binary O\nis\tO\tis\tO\nup-to-date\tO\tup-to-date\tO\nprior\tO\tprior\tO\nto\tO\tto\tO\nit\tO\tit\tO\nbeing\tO\tbeing\tO\nloaded\tO\tloaded\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7421703\tO\t7421703\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7421703/\tO\thttps://stackoverflow.com/questions/7421703/\tO\n\t\n\t\nload\tO\tload\tO\nthe\tO\tthe\tO\ncache\tO\tcache\tO\nin\tO\tin\tO\nviewDidLoad B-Function viewDidLoad O\nand\tO\tand\tO\nrelease\tO\trelease\tO\nit\tO\tit\tO\nin\tO\tin\tO\nviewDidUnload B-Function viewDidUnload O\nand\tO\tand\tO\ndealloc B-Function dealloc O\n.\tO\t.\tO\n\t\nviewDidUnload B-Function viewDidUnload O\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nduring\tO\tduring\tO\nlow-memory\tO\tlow-memory\tO\nconditions\tO\tconditions\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nremain\tO\tremain\tO\nresponsive\tO\tresponsive\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nfree\tO\tfree\tO\nup\tO\tup\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\nmemory\tO\tmemory\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\n.\tO\t.\tO\n\t\nwell\tO\twell\tO\nexplained\tO\texplained\tO\nhere\tO\there\tO\n:\tO\t:\tO\nWhen\tO\tWhen\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nrelease\tO\trelease\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\n-(void)viewDidUnload B-Function -(void)viewDidUnload O\nrather\tO\trather\tO\nthan\tO\tthan\tO\nin\tO\tin\tO\n-dealloc B-Function -dealloc O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7421703\tO\t7421703\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7421703/\tO\thttps://stackoverflow.com/questions/7421703/\tO\n\t\n\t\nUsing\tO\tUsing\tO\ninit B-Function init B-Code_Block\nmay\tO\tmay\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nrecommend\tO\trecommend\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsubclass\tO\tsubclass\tO\nof\tO\tof\tO\nUINavigationController B-Class UINavigationController B-Code_Block\n.\tO\t.\tO\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nmethod\tO\tmethod\tO\ncalled\tO\tcalled\tO\nsetRootTableViewController B-Code_Block setRootTableViewController B-Code_Block\n:( I-Code_Block :( I-Code_Block\nUITableViewController I-Code_Block UITableViewController I-Code_Block\n*) I-Code_Block *) I-Code_Block\ncontroller I-Code_Block controller I-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nimplementation\tO\timplementation\tO\ncall\tO\tcall\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_854 I-Code_Block A_854 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nreloadData B-Variable reloadData B-Code_Block\nwill\tO\twill\tO\ncall\tO\tcall\tO\nall\tO\tall\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndelegate\tO\tdelegate\tO\nand\tO\tand\tO\ndata\tO\tdata\tO\nsource\tO\tsource\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ntable B-User_Interface_Element table O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nmethod\tO\tmethod\tO\ncall\tO\tcall\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ntable B-Class table O\nview I-Class view O\ncontroller I-Class controller O\ninstead\tO\tinstead\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\ndeclaration\tO\tdeclaration\tO\nto\tO\tto\tO\nsetRootTableViewController B-Code_Block setRootTableViewController B-Code_Block\n:( I-Code_Block :( I-Code_Block\nCustomTableViewController I-Code_Block CustomTableViewController I-Code_Block\n*) I-Code_Block *) I-Code_Block\ncontroller I-Code_Block controller I-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\nwhatever\tO\twhatever\tO\nyour\tO\tyour\tO\ncustom\tO\tcustom\tO\ntable\tO\ttable\tO\ncontroller\tO\tcontroller\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nreloadData B-Variable reloadData B-Code_Block\nline\tO\tline\tO\nwith\tO\twith\tO\none\tO\tone\tO\nthat\tO\tthat\tO\ncalls\tO\tcalls\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\ndelegate\tO\tdelegate\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nUINavigationController B-Class UINavigationController B-Code_Block\nand\tO\tand\tO\nadding\tO\tadding\tO\nyour\tO\tyour\tO\ncustom\tO\tcustom\tO\nview B-Class view O\ncontroller I-Class controller O\n,\tO\t,\tO\ncreate\tO\tcreate\tO\none\tO\tone\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nnib B-File_Type nib O\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nrootViewController B-Class rootViewController B-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\noverride\tO\toverride\tO\ninitWithRootViewController B-Code_Block initWithRootViewController B-Code_Block\n:( I-Code_Block :( I-Code_Block\nUIViewController I-Code_Block UIViewController I-Code_Block\n*) I-Code_Block *) I-Code_Block\ncontroller I-Code_Block controller I-Code_Block\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\nimagine\tO\timagine\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nnib B-File_Type nib O\nwill\tO\twill\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nview\tO\tview\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstack\tO\tstack\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_855 I-Code_Block A_855 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30631008\tO\t30631008\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30631008/\tO\thttps://stackoverflow.com/questions/30631008/\tO\n\t\n\t\nThis\tO\tThis\tO\nquery\tO\tquery\tO\nworks\tO\tworks\tO\nin\tO\tin\tO\ndata B-Application data O\nstudio I-Application studio O\n,\tO\t,\tO\nbut\tO\tbut\tO\nfails\tO\tfails\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nalias\tO\talias\tO\nin\tO\tin\tO\nMS B-Application MS O\nQuery I-Application Query O\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\ndifferent\tO\tdifferent\tO\ntypes\tO\ttypes\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n\"\",'',[] B-Value \"\",'',[] O\nand\tO\tand\tO\neven\tO\teven\tO\nhttps://support.microsoft.com/en-us/kb/298955\tO\thttps://support.microsoft.com/en-us/kb/298955\tO\n\t\nSELECT B-Code_Block SELECT O\n' I-Code_Block ' O\nTRANIN'AS I-Code_Block TRANIN'AS O\nNAME I-Code_Block NAME O\n, I-Code_Block , O\nSUM I-Code_Block SUM O\n( I-Code_Block ( O\nCASE I-Code_Block CASE O\nWHEN I-Code_Block WHEN O\nALT3.TRANINDT I-Code_Block ALT3.TRANINDT O\nBETWEEN I-Code_Block BETWEEN O\n20150603 I-Code_Block 20150603 O\nAND I-Code_Block AND O\n20150601 I-Code_Block 20150601 O\nTHEN I-Code_Block THEN O\n1 I-Code_Block 1 O\nelse I-Code_Block else O\n0 I-Code_Block 0 O\nEND I-Code_Block END O\n) I-Code_Block ) O\nAS B-Code_Block AS O\nCurrentMonth I-Code_Block CurrentMonth O\n, I-Code_Block , O\nSUM I-Code_Block SUM O\n( I-Code_Block ( O\nCASE I-Code_Block CASE O\nWHEN I-Code_Block WHEN O\nALT3.TRANINDT I-Code_Block ALT3.TRANINDT O\nBETWEEN I-Code_Block BETWEEN O\n20150501 I-Code_Block 20150501 O\nAND I-Code_Block AND O\n20150531 I-Code_Block 20150531 O\nTHEN I-Code_Block THEN O\n1 I-Code_Block 1 O\nelse I-Code_Block else O\n0 I-Code_Block 0 O\nEND I-Code_Block END O\n) I-Code_Block ) O\nAS B-Code_Block AS O\nLastMonth I-Code_Block LastMonth O\n\t\nFROM B-Code_Block FROM O\nALT3 I-Code_Block ALT3 O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30631008\tO\t30631008\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30631008/\tO\thttps://stackoverflow.com/questions/30631008/\tO\n\t\n\t\nMS B-Website MS O\nbroke\tO\tbroke\tO\nMS B-Application MS O\nquery I-Application query O\na\tO\ta\tO\nlong\tO\tlong\tO\ntime\tO\ttime\tO\nago\tO\tago\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nright\tO\tright\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnothing\tO\tnothing\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\ngiven\tO\tgiven\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nNormally\tO\tNormally\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nrename\tO\trename\tO\nthe\tO\tthe\tO\ncolumn B-Data_Structure column O\nonce\tO\tonce\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nback\tO\tback\tO\nin\tO\tin\tO\nExcel B-Application Excel O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\nMS B-Application MS O\nquery I-Application query O\n,\tO\t,\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4356 I-Code_Block A_4356 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28491592\tO\t28491592\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28491592/\tO\thttps://stackoverflow.com/questions/28491592/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3341 I-Code_Block Q_3341 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\npick\tO\tpick\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nperson__name B-Variable person__name O\nand\tO\tand\tO\nperson__email B-Variable person__email O\n,\tO\t,\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nstrange\tO\tstrange\tO\npart\tO\tpart\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\npick\tO\tpick\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconsole B-Application console O\non\tO\ton\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\n.. I-Application .. O\n.\tO\t.\tO\nsomeone\tO\tsomeone\tO\nknows\tO\tknows\tO\nwhat\tO\twhat\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ncausing\tO\tcausing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nof\tO\tof\tO\nhtml B-Language html O\nthe\tO\tthe\tO\n2\tO\t2\tO\ninputs B-User_Interface_Element inputs O\nfields I-User_Interface_Element fields O\nhave\tO\thave\tO\nthe\tO\tthe\tO\nid\tO\tid\tO\nperson__name B-Variable person__name O\nand\tO\tand\tO\nperson__email B-Variable person__email O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nin\tO\tin\tO\na\tO\ta\tO\nexternal\tO\texternal\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nand\tO\tand\tO\ni\tO\ti\tO\nam\tO\tam\tO\ncalling\tO\tcalling\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nhtml B-Language html O\n.\tO\t.\tO\n\t\nHTML B-Language HTML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3342 I-Code_Block Q_3342 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ncant\tO\tcant\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nsubmit\tO\tsubmit\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nscripts\tO\tscripts\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3343 I-Code_Block Q_3343 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nInside\tO\tInside\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3344 I-Code_Block Q_3344 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28491592\tO\t28491592\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28491592/\tO\thttps://stackoverflow.com/questions/28491592/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nalert B-Function alert O\nthe\tO\tthe\tO\nname B-Variable name O\n,\tO\t,\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nname B-Variable name O\nin\tO\tin\tO\nthe\tO\tthe\tO\njQuery B-Library jQuery O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3981 I-Code_Block A_3981 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhttp://jsfiddle.net/376fLujs/3/\tO\thttp://jsfiddle.net/376fLujs/3/\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyour\tO\tyour\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\nincluded\tO\tincluded\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nInclude\tO\tInclude\tO\nthe\tO\tthe\tO\njQuery B-Library jQuery O\nbefore\tO\tbefore\tO\nyour\tO\tyour\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3982 I-Code_Block A_3982 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nadd\tO\tadd\tO\n:\tO\t:\tO\nconsole.log(\"working\") B-Code_Block console.log(\"working\") O\n; I-Code_Block ; O\nas\tO\tas\tO\nthe\tO\tthe\tO\nvery\tO\tvery\tO\nfirst\tO\tfirst\tO\nline\tO\tline\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nscript\tO\tscript\tO\n\t\nopen\tO\topen\tO\nthe\tO\tthe\tO\nchrome B-Application chrome O\nconsole I-Application console O\n/\tO\t/\tO\nFirebug B-Application Firebug O\nand\tO\tand\tO\nrefresh\tO\trefresh\tO\nyour\tO\tyour\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\n\"\tO\t\"\tO\nworking\tO\tworking\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconsole B-Application console O\n,\tO\t,\tO\nyour\tO\tyour\tO\njavascript B-Language javascript O\nis\tO\tis\tO\nnot\tO\tnot\tO\nincluded\tO\tincluded\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ncomments\tO\tcomments\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nforms\tO\tforms\tO\n,\tO\t,\tO\nre-using\tO\tre-using\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nID B-Variable ID O\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAlways\tO\tAlways\tO\nkeep\tO\tkeep\tO\nIDs B-Variable IDs O\nunique\tO\tunique\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nyour\tO\tyour\tO\nlink\tO\tlink\tO\nis\tO\tis\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform B-User_Interface_Element form O\nlike\tO\tlike\tO\nyour\tO\tyour\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3983 I-Code_Block A_3983 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhttp://jsfiddle.net/376fLujs/4/\tO\thttp://jsfiddle.net/376fLujs/4/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28491592\tO\t28491592\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28491592/\tO\thttps://stackoverflow.com/questions/28491592/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nsay\tO\tsay\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nevent\tO\tevent\tO\nhandling\tO\thandling\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3984 I-Code_Block A_3984 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\nmight\tO\tmight\tO\nnot\tO\tnot\tO\nyet\tO\tyet\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nloads\tO\tloads\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\ntake\tO\ttake\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29344912\tO\t29344912\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29344912/\tO\thttps://stackoverflow.com/questions/29344912/\tO\n\t\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nbrief\tO\tbrief\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nGitLab B-Application GitLab O\nserver I-Application server O\non\tO\ton\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nrepositories\tO\trepositories\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\ntheir\tO\ttheir\tO\nAPI B-Application API O\n,\tO\t,\tO\nspecifically\tO\tspecifically\tO\nGet\tO\tGet\tO\nfile\tO\tfile\tO\narchive\tO\tarchive\tO\nusing\tO\tusing\tO\ncURL B-Library cURL O\nand\tO\tand\tO\nPHP B-Language PHP O\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nbellow\tO\tbellow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3495 I-Code_Block Q_3495 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nfile\tO\tfile\tO\ndownloads\tO\tdownloads\tO\nproperly\tO\tproperly\tO\nand\tO\tand\tO\nis\tO\tis\tO\nsaved\tO\tsaved\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndisk\tO\tdisk\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nunzip\tO\tunzip\tO\nit\tO\tit\tO\nMAC B-Operating_System MAC O\nOS I-Operating_System OS O\nautomatically\tO\tautomatically\tO\nadds\tO\tadds\tO\na\tO\ta\tO\n.git B-File_Type .git O\nextension\tO\textension\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nmanually\tO\tmanually\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\n.git B-File_Type .git O\nextension\tO\textension\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nproperly\tO\tproperly\tO\nrecognized\tO\trecognized\tO\nas\tO\tas\tO\na\tO\ta\tO\nfolder\tO\tfolder\tO\nand\tO\tand\tO\neverything\tO\teverything\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\norder\tO\torder\tO\n(\tO\t(\tO\nno\tO\tno\tO\nmissing\tO\tmissing\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nno\tO\tno\tO\ncorrupted\tO\tcorrupted\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nnuisance\tO\tnuisance\tO\nto\tO\tto\tO\nsay\tO\tsay\tO\nthe\tO\tthe\tO\nleast\tO\tleast\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nparticularly\tO\tparticularly\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nGitLab B-Application GitLab O\n's\tO\t's\tO\nAPI I-Application API O\n,\tO\t,\tO\nor\tO\tor\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\nhow\tO\thow\tO\nMAC B-Operating_System MAC O\nOS I-Operating_System OS O\ntreats\tO\ttreats\tO\n.git B-File_Type .git O\nextension\tO\textension\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nperfectly\tO\tperfectly\tO\nhonest\tO\thonest\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nknow\tO\tknow\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nbegin\tO\tbegin\tO\ndebugging\tO\tdebugging\tO\n.\tO\t.\tO\n\t\nGoogle B-Website Google O\nand/or\tO\tand/or\tO\nSO B-Website SO O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nanything\tO\tanything\tO\nof\tO\tof\tO\nsignificance\tO\tsignificance\tO\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nOS B-Operating_System OS O\nX I-Operating_System X O\nVersion\tO\tVersion\tO\n10.8.4 B-Version 10.8.4 O\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nleave\tO\tleave\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\nwith\tO\twith\tO\ntheir\tO\ttheir\tO\nAPI B-Application API O\nlink\tO\tlink\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\napparently\tO\tapparently\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nlinks\tO\tlinks\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20941825\tO\t20941825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20941825/\tO\thttps://stackoverflow.com/questions/20941825/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnewer\tO\tnewer\tO\nto\tO\tto\tO\nAndroid B-Operating_System Android O\n,\tO\t,\tO\nbut\tO\tbut\tO\nand\tO\tand\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ngroup\tO\tgroup\tO\nchat\tO\tchat\tO\nfunctionality\tO\tfunctionality\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nGroupMe B-Application GroupMe O\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nWithin\tO\tWithin\tO\nGroupMe B-Application GroupMe O\n,\tO\t,\tO\na\tO\ta\tO\nperson\tO\tperson\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\n,\tO\t,\tO\ninvite\tO\tinvite\tO\nfriends\tO\tfriends\tO\nand\tO\tand\tO\nall\tO\tall\tO\nthose\tO\tthose\tO\nfriends\tO\tfriends\tO\ncan\tO\tcan\tO\nshare\tO\tshare\tO\ncontent\tO\tcontent\tO\nand\tO\tand\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nupdates\tO\tupdates\tO\nof\tO\tof\tO\nother\tO\tother\tO\nmembers\tO\tmembers\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nresearched\tO\tresearched\tO\nScringo B-Application Scringo O\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nfree\tO\tfree\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nperson\tO\tperson\tO\nto\tO\tto\tO\nperson\tO\tperson\tO\nchat\tO\tchat\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ndocs\tO\tdocs\tO\non\tO\ton\tO\nGroup\tO\tGroup\tO\nchat\tO\tchat\tO\nimply\tO\timply\tO\nonly\tO\tonly\tO\nusing\tO\tusing\tO\n'\tO\t'\tO\nchat\tO\tchat\tO\nrooms\tO\trooms\tO\n'\tO\t'\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\npersonal\tO\tpersonal\tO\nsmall\tO\tsmall\tO\ngroup\tO\tgroup\tO\nrelated\tO\trelated\tO\nchats\tO\tchats\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nin\tO\tin\tO\nGroupMe B-Application GroupMe O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\npossibility\tO\tpossibility\tO\nof\tO\tof\tO\ncustomizing\tO\tcustomizing\tO\nScringo B-Application Scringo O\nso\tO\tso\tO\nthat\tO\tthat\tO\none\tO\tone\tO\ncan\tO\tcan\tO\nenable\tO\tenable\tO\nsuch\tO\tsuch\tO\n'\tO\t'\tO\nprivate\tO\tprivate\tO\n'\tO\t'\tO\n,\tO\t,\tO\ninvitation\tO\tinvitation\tO\nonly\tO\tonly\tO\n,\tO\t,\tO\ngroup\tO\tgroup\tO\nfeatures\tO\tfeatures\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20941825\tO\t20941825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20941825/\tO\thttps://stackoverflow.com/questions/20941825/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nScringoCommentButton B-User_Interface_Element ScringoCommentButton O\n(\tO\t(\tO\nhttp://www.scringo.com/docs/android-guides/popular/setup-chat-rooms-and-forums/#Adhoc\tO\thttp://www.scringo.com/docs/android-guides/popular/setup-chat-rooms-and-forums/#Adhoc\tO\n)\tO\t)\tO\nand\tO\tand\tO\nlet\tO\tlet\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\ninto\tO\tinto\tO\nthat\tO\tthat\tO\nroom\tO\troom\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nshow\tO\tshow\tO\nthis\tO\tthis\tO\nbutton B-User_Interface_Element button O\nonly\tO\tonly\tO\nto\tO\tto\tO\nallowed\tO\tallowed\tO\nusers\tO\tusers\tO\n.\tO\t.\tO\n\t\nBTW\tO\tBTW\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\neven\tO\teven\tO\ncustomize\tO\tcustomize\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nXML B-Language XML O\n:\tO\t:\tO\nscringo_comment_button.xml B-File_Name scringo_comment_button.xml O\n, I-File_Name , O\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nScringo B-Library Scringo O\nAndroid I-Library Android O\nLibrary I-Library Library O\nproject\tO\tproject\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47872154\tO\t47872154\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47872154/\tO\thttps://stackoverflow.com/questions/47872154/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nVisual B-Application Visual O\nstudio I-Application studio O\nweb\tO\tweb\tO\nperformance\tO\tperformance\tO\ntest\tO\ttest\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncsv B-File_Type csv O\nfile\tO\tfile\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nin\tO\tin\tO\na\tO\ta\tO\nstring B-Data_Type string O\nbody\tO\tbody\tO\nof\tO\tof\tO\na\tO\ta\tO\nweb\tO\tweb\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nweb B-Application web O\ntest I-Application test O\nretrieve\tO\tretrieve\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\naccountID B-Variable accountID O\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nas\tO\tas\tO\nint\tO\tint\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\nstring B-Data_Type string O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\naccount\tO\taccount\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\n000005 B-Value 000005 O\nor\tO\tor\tO\n000016 B-Value 000016 O\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nput\tO\tput\tO\na\tO\ta\tO\n5 B-Value 5 O\nand\tO\tand\tO\na\tO\ta\tO\n15 B-Value 15 O\nignoring\tO\tignoring\tO\nthe\tO\tthe\tO\nzeroes B-Value zeroes O\non\tO\ton\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nan\tO\tan\tO\nerror\tO\terror\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\nservice\tO\tservice\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nforce\tO\tforce\tO\nthe\tO\tthe\tO\nweb B-Application web O\ntest I-Application test O\nto\tO\tto\tO\nsee\tO\tsee\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nas\tO\tas\tO\nstrings B-Data_Type strings O\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nBelow\tO\tBelow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncsv B-File_Type csv O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nand\tO\tand\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\n2\tO\t2\tO\ncolumns B-Data_Structure columns O\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6357 I-Code_Block Q_6357 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47872154\tO\t47872154\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47872154/\tO\thttps://stackoverflow.com/questions/47872154/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nend\tO\tend\tO\nup\tO\tup\tO\ndoing\tO\tdoing\tO\nis\tO\tis\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nWeb B-Application Web O\nRequest I-Application Request O\nplug I-Application plug O\nin I-Application in O\nthat\tO\tthat\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nsource\tO\tsource\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nwebtest B-Application webtest O\ncontext\tO\tcontext\tO\nand\tO\tand\tO\nediting\tO\tediting\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6989 I-Code_Block A_6989 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n} B-Code_Block } O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43935138\tO\t43935138\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43935138/\tO\thttps://stackoverflow.com/questions/43935138/\tO\n\t\n\t\nMKV B-File_Type MKV O\nis\tO\tis\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\npopular\tO\tpopular\tO\nvideo\tO\tvideo\tO\ncontainer\tO\tcontainer\tO\nformat\tO\tformat\tO\nwhich\tO\twhich\tO\nsupports\tO\tsupports\tO\nto\tO\tto\tO\ngroup\tO\tgroup\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nvideo\tO\tvideo\tO\n,\tO\t,\tO\naudio\tO\taudio\tO\nor\tO\tor\tO\nsubtitle\tO\tsubtitle\tO\nfiles\tO\tfiles\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ngrouped\tO\tgrouped\tO\ntogether\tO\ttogether\tO\nto\tO\tto\tO\none\tO\tone\tO\nfile\tO\tfile\tO\n;\tO\t;\tO\n\t\nNow\tO\tNow\tO\na\tO\ta\tO\ndays\tO\tdays\tO\nmajority\tO\tmajority\tO\nof\tO\tof\tO\n4K\tO\t4K\tO\nvideos\tO\tvideos\tO\navailable\tO\tavailable\tO\nonline\tO\tonline\tO\nare\tO\tare\tO\nin\tO\tin\tO\nmkv B-File_Type mkv O\nformat\tO\tformat\tO\n,\tO\t,\tO\nand\tO\tand\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nare\tO\tare\tO\nabove\tO\tabove\tO\n20GB\tO\t20GB\tO\nin\tO\tin\tO\nsize\tO\tsize\tO\n;\tO\t;\tO\n\t\nBut\tO\tBut\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nmajority\tO\tmajority\tO\nof\tO\tof\tO\nTV B-Device TV O\nor\tO\tor\tO\nmedia B-Device media O\nplayer I-Device player O\nonly\tO\tonly\tO\nsupport\tO\tsupport\tO\nFAT16/32\tO\tFAT16/32\tO\nnot\tO\tnot\tO\neven\tO\teven\tO\nexFAT\tO\texFAT\tO\n,\tO\t,\tO\nConsidering\tO\tConsidering\tO\nthe\tO\tthe\tO\nlimitation\tO\tlimitation\tO\nof\tO\tof\tO\n4GB\tO\t4GB\tO\nfile\tO\tfile\tO\nsize\tO\tsize\tO\nin\tO\tin\tO\nFAT32\tO\tFAT32\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nsplit\tO\tsplit\tO\nthe\tO\tthe\tO\n20\tO\t20\tO\ngb\tO\tgb\tO\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nmultiple\tO\tmultiple\tO\n2GB\tO\t2GB\tO\nor\tO\tor\tO\n3Gb\tO\t3Gb\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nhaving\tO\thaving\tO\nmetadata\tO\tmetadata\tO\nmkv B-File_Type mkv O\n(\tO\t(\tO\nmain.mkv B-File_Name main.mkv O\nin\tO\tin\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nexample\tO\texample\tO\n)\tO\t)\tO\nfile\tO\tfile\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nable\tO\table\tO\nto\tO\tto\tO\npick\tO\tpick\tO\nthe\tO\tthe\tO\nrespective\tO\trespective\tO\ndata\tO\tdata\tO\n;\tO\t;\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nmovie\tO\tmovie\tO\nformat\tO\tformat\tO\nwhich\tO\twhich\tO\nsupports\tO\tsupports\tO\nthe\tO\tthe\tO\nsplit\tO\tsplit\tO\nfile\tO\tfile\tO\nmodel\tO\tmodel\tO\n\t\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nfolder/ B-File_Name folder/ O\n\t\nmain.mkv B-File_Name main.mkv O\n\t\npart1.dat B-File_Name part1.dat O\n\t\npart2.dat B-File_Name part2.dat O\n\t\npart3.dat B-File_Name part3.dat O\n\t\npart4.dat B-File_Name part4.dat O\n\t\n...\tO\t...\tO\n.\tO\t.\tO\netc\tO\tetc\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\ncontainer\tO\tcontainer\tO\nformat\tO\tformat\tO\nwhich\tO\twhich\tO\nsupport\tO\tsupport\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nto\tO\tto\tO\norganize\tO\torganize\tO\nfiles\tO\tfiles\tO\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nMKV B-File_Type MKV O\nsupports\tO\tsupports\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nconvert\tO\tconvert\tO\nsingle\tO\tsingle\tO\nmkv B-File_Type mkv O\nfile\tO\tfile\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1742075\tO\t1742075\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1742075/\tO\thttps://stackoverflow.com/questions/1742075/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nmy\tO\tmy\tO\nvirtual\tO\tvirtual\tO\n(\tO\t(\tO\nxen B-Application xen O\n)\tO\t)\tO\nwin B-Operating_System win O\nxp B-Version xp O\ninstances\tO\tinstances\tO\n,\tO\t,\tO\na\tO\ta\tO\ndedicated\tO\tdedicated\tO\nwindows B-Operating_System windows O\nserver B-Application server O\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\ndedicated\tO\tdedicated\tO\nwindows B-Operating_System windows O\nxp B-Version xp O\ndesktop B-Device desktop O\npc I-Device pc O\nfor\tO\tfor\tO\nweb\tO\tweb\tO\napp\tO\tapp\tO\nUI\tO\tUI\tO\ntesting\tO\ttesting\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nselenium-rc B-Application selenium-rc O\nand\tO\tand\tO\nthe\tO\tthe\tO\nselenium B-Library selenium O\nPHP B-Language PHP O\nAPI B-Library API O\nfrom\tO\tfrom\tO\npear B-Application pear O\n(\tO\t(\tO\nthe\tO\tthe\tO\nphp B-Language php O\nscript\tO\tscript\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\ntests\tO\ttests\tO\nsits\tO\tsits\tO\non\tO\ton\tO\nits\tO\tits\tO\napp\tO\tapp\tO\nserver B-Application server O\n,\tO\t,\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlocal\tO\tlocal\tO\nnetwork\tO\tnetwork\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nremote-controlled\tO\tremote-controlled\tO\nwindowses\tO\twindowses\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nhas\tO\thas\tO\nworked\tO\tworked\tO\nout\tO\tout\tO\ngreat\tO\tgreat\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\ni\tO\ti\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nscreenshot\tO\tscreenshot\tO\nfrom\tO\tfrom\tO\nselenium B-Application selenium O\nRC I-Application RC O\n-\tO\t-\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nall\tO\tall\tO\nblank\tO\tblank\tO\n(\tO\t(\tO\ngray\tO\tgray\tO\n)\tO\t)\tO\nafter\tO\tafter\tO\nbase64_decode() B-Function base64_decode() O\n; I-Function ; O\n(\tO\t(\tO\nwithout\tO\twithout\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\ndont\tO\tdont\tO\neven\tO\teven\tO\nopen\tO\topen\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nDespite\tO\tDespite\tO\nos B-Operating_System os O\nx I-Operating_System x O\npreview B-Application preview O\ndisplays\tO\tdisplays\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\ngray\tO\tgray\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nactually\tO\tactually\tO\ntransparent\tO\ttransparent\tO\nor\tO\tor\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nother\tO\tother\tO\ncorruption\tO\tcorruption\tO\nbecause\tO\tbecause\tO\nPhotoshop B-Application Photoshop O\nwont\tO\twont\tO\nopen\tO\topen\tO\nthem\tO\tthem\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nweigh\tO\tweigh\tO\n0.7k\tO\t0.7k\tO\n)\tO\t)\tO\nThe\tO\tThe\tO\nunix B-Operating_System unix O\n\"\tO\t\"\tO\nfile B-Code_Block file O\n\"\tO\t\"\tO\ncommand\tO\tcommand\tO\nhowever\tO\thowever\tO\nrecognizes\tO\trecognizes\tO\nthem\tO\tthem\tO\ncorrectly\tO\tcorrectly\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\nPNG B-File_Type PNG O\nimage\tO\timage\tO\n,\tO\t,\tO\n1440\tO\t1440\tO\nx\tO\tx\tO\n900\tO\t900\tO\n,\tO\t,\tO\n8-bit/color\tO\t8-bit/color\tO\nRGB\tO\tRGB\tO\n,\tO\t,\tO\nnon-interlaced\tO\tnon-interlaced\tO\n\"\tO\t\"\tO\n-\tO\t-\tO\n1440\tO\t1440\tO\nx\tO\tx\tO\n900\tO\t900\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nresolution\tO\tresolution\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nMac B-Device Mac O\n,\tO\t,\tO\nconnected\tO\tconnected\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nwindows B-Operating_System windows O\nsystems\tO\tsystems\tO\nthrough\tO\tthrough\tO\nremote B-Application remote O\ndesktop I-Application desktop O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nselenium B-Application selenium O\nrc I-Application rc O\ndirectly\tO\tdirectly\tO\n(\tO\t(\tO\nie\tO\tie\tO\njava B-Code_Block java O\n-jar I-Code_Block -jar O\nselenium-server.jar I-Code_Block selenium-server.jar O\n)\tO\t)\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nas\tO\tas\tO\na\tO\ta\tO\nservice\tO\tservice\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsymptoms\tO\tsymptoms\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\naccross\tO\taccross\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nwindows B-Operating_System windows O\ntest\tO\ttest\tO\nsystems\tO\tsystems\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nSelenium B-Library Selenium O\nversion\tO\tversion\tO\nis\tO\tis\tO\n1.0.1 B-Version 1.0.1 O\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nsnippet\tO\tsnippet\tO\nthat\tO\tthat\tO\ntries\tO\ttries\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nscreenshot\tO\tscreenshot\tO\n:\tO\t:\tO\n\t\n$this->selenium->windowMaximize() B-Code_Block $this->selenium->windowMaximize() O\n; I-Code_Block ; O\n\t\n$screenshot B-Code_Block $screenshot O\n= I-Code_Block = O\n$this->selenium->captureScreenshotToString() I-Code_Block $this->selenium->captureScreenshotToString() O\n; I-Code_Block ; O\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nTesting_Selenium B-Library Testing_Selenium O\npear I-Library pear O\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrealize\tO\trealize\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\nhere\tO\there\tO\ndealing\tO\tdealing\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nservice\tO\tservice\tO\nwrapper\tO\twrapper\tO\nnor\tO\tnor\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nafford\tO\tafford\tO\nto\tO\tto\tO\nintroduce\tO\tintroduce\tO\nthis\tO\tthis\tO\ncomplexity\tO\tcomplexity\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\na\tO\ta\tO\nmistake\tO\tmistake\tO\n)\tO\t)\tO\n\t\nthanks\tO\tthanks\tO\n&\tO\t&\tO\nregards\tO\tregards\tO\n,\tO\t,\tO\n\t\nAndras B-User_Name Andras O\n\t\nps\tO\tps\tO\n:\tO\t:\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\ncross\tO\tcross\tO\nposting\tO\tposting\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nseveral\tO\tseveral\tO\nforums\tO\tforums\tO\nin\tO\tin\tO\na\tO\ta\tO\ndesperate\tO\tdesperate\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\nget\tO\tget\tO\nsome\tO\tsome\tO\nimput\tO\timput\tO\n-\tO\t-\tO\napologies\tO\tapologies\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nupsets\tO\tupsets\tO\nyou\tO\tyou\tO\n:-)\tO\t:-)\tO\n\t\nedit\tO\tedit\tO\n:\tO\t:\tO\nselenium B-Application selenium O\nrc I-Application rc O\nconsole I-Application console O\nsays\tO\tsays\tO\n\t\n16:38:24.562 B-Output_Block 16:38:24.562 O\nINFO I-Output_Block INFO O\n- I-Output_Block - O\nGot I-Output_Block Got O\nresult I-Output_Block result O\n: I-Output_Block : O\n[ I-Output_Block [ O\nbase64 I-Output_Block base64 O\nencoded I-Output_Block encoded O\nPNG I-Output_Block PNG O\n] I-Output_Block ] O\non B-Output_Block on O\nsession I-Output_Block session O\na5304a287eb244028c8c843b294bf98f I-Output_Block a5304a287eb244028c8c843b294bf98f O\n\t\njava.net.SocketException B-Output_Block java.net.SocketException O\n: I-Output_Block : O\nSoftware I-Output_Block Software O\ncaused I-Output_Block caused O\nconnection I-Output_Block connection O\nabort I-Output_Block abort O\n: I-Output_Block : O\nsocket I-Output_Block socket O\nwrite I-Output_Block write O\nerror I-Output_Block error O\n\t\nat B-Output_Block at O\njava.net.SocketOutputStream.socketWrite0(NativeMethod) I-Output_Block java.net.SocketOutputStream.socketWrite0(NativeMethod) O\n\t\nat B-Output_Block at O\njava.net.SocketOutputStream.socketWrite(UnknownSource) I-Output_Block java.net.SocketOutputStream.socketWrite(UnknownSource) O\n\t\nat B-Output_Block at O\njava.net.SocketOutputStream.write(UnknownSource) I-Output_Block java.net.SocketOutputStream.write(UnknownSource) O\n\t\nat B-Output_Block at O\norg.mortbay.http.ChunkingOutputStream.bypassWrite(ChunkingOutputStream.java:151) I-Output_Block org.mortbay.http.ChunkingOutputStream.bypassWrite(ChunkingOutputStream.java:151) O\n\t\nat B-Output_Block at O\norg.mortbay.http.BufferedOutputStream.write(BufferedOutputStream.java:142) I-Output_Block org.mortbay.http.BufferedOutputStream.write(BufferedOutputStream.java:142) O\n\t\nat B-Output_Block at O\norg.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:423) I-Output_Block org.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:423) O\n\t\nat B-Output_Block at O\norg.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:414) I-Output_Block org.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:414) O\n\t\nat B-Output_Block at O\norg.openqa.selenium.server.SeleniumDriverResourceHandler.handleCommandRequest(SeleniumDriverResourceHandler.java:370) I-Output_Block org.openqa.selenium.server.SeleniumDriverResourceHandler.handleCommandRequest(SeleniumDriverResourceHandler.java:370) O\n\t\nat B-Output_Block at O\norg.openqa.selenium.server.SeleniumDriverResourceHandler.handle(SeleniumDriverResourceHandler.java:125) I-Output_Block org.openqa.selenium.server.SeleniumDriverResourceHandler.handle(SeleniumDriverResourceHandler.java:125) O\n\t\nat B-Output_Block at O\norg.mortbay.http.HttpContext.handle(HttpContext.java:1530) I-Output_Block org.mortbay.http.HttpContext.handle(HttpContext.java:1530) O\n\t\nat B-Output_Block at O\norg.mortbay.http.HttpContext.handle(HttpContext.java:1482) I-Output_Block org.mortbay.http.HttpContext.handle(HttpContext.java:1482) O\n\t\nat B-Output_Block at O\norg.mortbay.http.HttpServer.service(HttpServer.java:909) I-Output_Block org.mortbay.http.HttpServer.service(HttpServer.java:909) O\n\t\nat B-Output_Block at O\norg.mortbay.http.HttpConnection.service(HttpConnection.java:820) I-Output_Block org.mortbay.http.HttpConnection.service(HttpConnection.java:820) O\n\t\nat B-Output_Block at O\norg.mortbay.http.HttpConnection.handleNext(HttpConnection.java:986) I-Output_Block org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:986) O\n\t\nat B-Output_Block at O\norg.mortbay.http.HttpConnection.handle(HttpConnection.java:837) I-Output_Block org.mortbay.http.HttpConnection.handle(HttpConnection.java:837) O\n\t\nat B-Output_Block at O\norg.mortbay.http.SocketListener.handleConnection(SocketListener.java:245) I-Output_Block org.mortbay.http.SocketListener.handleConnection(SocketListener.java:245) O\n\t\nat B-Output_Block at O\norg.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357) I-Output_Block org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357) O\n\t\nat B-Output_Block at O\norg.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534) I-Output_Block org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534) O\n\t\nfor\tO\tfor\tO\nall\tO\tall\tO\nscreen\tO\tscreen\tO\ncaptures\tO\tcaptures\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1742075\tO\t1742075\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1742075/\tO\thttps://stackoverflow.com/questions/1742075/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nphysical\tO\tphysical\tO\ndesktop B-Device desktop O\n(\tO\t(\tO\nor\tO\tor\tO\nremote B-Application remote O\ndesktop I-Application desktop O\nsession\tO\tsession\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nJava B-Language Java O\nprocess\tO\tprocess\tO\nthat\tO\tthat\tO\nruns\tO\truns\tO\nSelenium B-Application Selenium O\nRC I-Application RC O\nwill\tO\twill\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\na\tO\ta\tO\nblack\tO\tblack\tO\nscreenshot\tO\tscreenshot\tO\n.\tO\t.\tO\n\t\nWithout\tO\tWithout\tO\nknowing\tO\tknowing\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nthe\tO\tthe\tO\ncreator\tO\tcreator\tO\nof\tO\tof\tO\nSelenium B-Application Selenium O\nRC I-Application RC O\n,\tO\t,\tO\nI\tO\tI\tO\nactually\tO\tactually\tO\nrecommend\tO\trecommend\tO\nagainst\tO\tagainst\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nWindows B-Operating_System Windows O\nService\tO\tService\tO\nentirely\tO\tentirely\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nwhat\tO\twhat\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nat\tO\tat\tO\nBrowserMob B-Application BrowserMob O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nprovides\tO\tprovides\tO\nfree\tO\tfree\tO\nmonitoring\tO\tmonitoring\tO\nand\tO\tand\tO\nfree\tO\tfree\tO\nload\tO\tload\tO\ntesting\tO\ttesting\tO\nservices\tO\tservices\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\na\tO\ta\tO\nrecently\tO\trecently\tO\nlaunch\tO\tlaunch\tO\ninstant\tO\tinstant\tO\ntest\tO\ttest\tO\ntool\tO\ttool\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\nscreenshots\tO\tscreenshots\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nsite\tO\tsite\tO\nfrom\tO\tfrom\tO\nmultiple\tO\tmultiple\tO\nlocations\tO\tlocations\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nlaunch\tO\tlaunch\tO\neverything\tO\teverything\tO\nfrom\tO\tfrom\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\nof\tO\tof\tO\na\tO\ta\tO\nVNC B-Application VNC O\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nWindows B-Operating_System Windows O\n,\tO\t,\tO\nconfigure\tO\tconfigure\tO\nVNC B-Application VNC O\nto\tO\tto\tO\nlaunch\tO\tlaunch\tO\na\tO\ta\tO\nsession\tO\tsession\tO\nupon\tO\tupon\tO\nstartup\tO\tstartup\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nauto-logs\tO\tauto-logs\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nplace\tO\tplace\tO\na\tO\ta\tO\n.bat B-File_Type .bat O\nfile\tO\tfile\tO\nin\tO\tin\tO\nProgram B-File_Name Program O\nFiles->Startup I-File_Name Files->Startup O\nthat\tO\tthat\tO\nlaunches\tO\tlaunches\tO\nSelenium B-Application Selenium O\nRC I-Application RC O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\na\tO\ta\tO\npain\tO\tpain\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nreliable\tO\treliable\tO\nway\tO\tway\tO\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\nfor\tO\tfor\tO\nensuring\tO\tensuring\tO\nthat\tO\tthat\tO\nSelenium B-Application Selenium O\nRC I-Application RC O\nstarts\tO\tstarts\tO\nin\tO\tin\tO\nan\tO\tan\tO\nenvironment\tO\tenvironment\tO\nthat\tO\tthat\tO\nsupports\tO\tsupports\tO\nscreenshots\tO\tscreenshots\tO\n,\tO\t,\tO\nlaunching\tO\tlaunching\tO\nIE B-Application IE O\n,\tO\t,\tO\ninteracting\tO\tinteracting\tO\nwith\tO\twith\tO\nnative\tO\tnative\tO\nevents\tO\tevents\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1742075\tO\t1742075\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1742075/\tO\thttps://stackoverflow.com/questions/1742075/\tO\n\t\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\nseen\tO\tseen\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nquestion\tO\tquestion\tO\n?\tO\t?\tO\n\t\nMaybe\tO\tMaybe\tO\nthat\tO\tthat\tO\ncould\tO\tcould\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nsimilar\tO\tsimilar\tO\nadventures\tO\tadventures\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25656547\tO\t25656547\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25656547/\tO\thttps://stackoverflow.com/questions/25656547/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n4\tO\t4\tO\noutlined\tO\toutlined\tO\nstar\tO\tstar\tO\nimages B-User_Interface_Element images O\n.\tO\t.\tO\n\t\nWhenever\tO\tWhenever\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nstar\tO\tstar\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nits\tO\tits\tO\nimage B-User_Interface_Element image O\nto\tO\tto\tO\na\tO\ta\tO\nfilled\tO\tfilled\tO\nstar\tO\tstar\tO\nand\tO\tand\tO\nwhenever\tO\twhenever\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\nagain\tO\tagain\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nstar\tO\tstar\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nto\tO\tto\tO\na\tO\ta\tO\nfilled\tO\tfilled\tO\nstar\tO\tstar\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\n,\tO\t,\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nstarts\tO\tstarts\tO\nturn\tO\tturn\tO\ninto\tO\tinto\tO\nfilled\tO\tfilled\tO\nstars\tO\tstars\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nall\tO\tall\tO\nfilled\tO\tfilled\tO\nstars\tO\tstars\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\ninto\tO\tinto\tO\nblank\tO\tblank\tO\nstars\tO\tstars\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nbutton B-User_Interface_Element button O\nclick\tO\tclick\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2922 I-Code_Block Q_2922 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nim1 B-Variable im1 O\nthrough\tO\tthrough\tO\nim4 B-Variable im4 O\nto\tO\tto\tO\noutlined\tO\toutlined\tO\nstars\tO\tstars\tO\nand\tO\tand\tO\nR.drawable.star B-Class R.drawable.star O\nis\tO\tis\tO\na\tO\ta\tO\nfilled\tO\tfilled\tO\nstar\tO\tstar\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25656547\tO\t25656547\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25656547/\tO\thttps://stackoverflow.com/questions/25656547/\tO\n\t\n\t\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3535 I-Code_Block A_3535 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41798737\tO\t41798737\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41798737/\tO\thttps://stackoverflow.com/questions/41798737/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nrunning\tO\trunning\tO\nreact-native B-Code_Block react-native B-Code_Block\nlink I-Code_Block link I-Code_Block\nit\tO\tit\tO\ngives\tO\tgives\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n,\tO\t,\tO\n\t\nIt\tO\tIt\tO\nsays\tO\tsays\tO\n,\tO\t,\tO\nrnpm-install B-Error_Name rnpm-install B-Code_Block\nERR I-Error_Name ERR I-Code_Block\n!\tO\t!\tI-Code_Block\n\t\nIt\tO\tIt\tB-Code_Block\nseems\tO\tseems\tI-Code_Block\nsomething\tO\tsomething\tI-Code_Block\nwent\tO\twent\tI-Code_Block\nwrong\tO\twrong\tI-Code_Block\nwhile\tO\twhile\tI-Code_Block\nlinking.\tO\tlinking.\tI-Code_Block\n.\tO\t.\tI-Code_Block\nError\tO\tError\tI-Code_Block\n:\tO\t:\tI-Code_Block\nCannot\tO\tCannot\tI-Code_Block\nread\tO\tread\tI-Code_Block\nproperty\tO\tproperty\tI-Code_Block\n'\tO\t'\tI-Code_Block\nUIAppFonts\tO\tUIAppFonts\tI-Code_Block\n'\tO\t'\tB-Code_Block\nof\tO\tof\tI-Code_Block\nnull B-Value null I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41798737\tO\t41798737\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41798737/\tO\thttps://stackoverflow.com/questions/41798737/\tO\n\t\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nthis\tO\tthis\tO\nexact\tO\texact\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\naccidentally\tO\taccidentally\tO\ndeleted\tO\tdeleted\tO\nby\tO\tby\tO\nInfo.plist B-File_Name Info.plist B-Code_Block\nfile\tO\tfile\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nios B-Operating_System ios O\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nRestoring\tO\tRestoring\tO\nit\tO\tit\tO\n,\tO\t,\tO\nfixed\tO\tfixed\tO\nmy\tO\tmy\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45251451\tO\t45251451\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45251451/\tO\thttps://stackoverflow.com/questions/45251451/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\njust\tO\tjust\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsoftware\tO\tsoftware\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nproject\tO\tproject\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntype\tO\ttype\tO\nout\tO\tout\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5912 I-Code_Block Q_5912 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nall\tO\tall\tO\nsaved\tO\tsaved\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36901594\tO\t36901594\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36901594/\tO\thttps://stackoverflow.com/questions/36901594/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4546 I-Code_Block Q_4546 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nnumber\tO\tnumber\tO\nmarking\tO\tmarking\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nasterix\tO\tasterix\tO\nmarking\tO\tmarking\tO\nthe\tO\tthe\tO\nfrequency\tO\tfrequency\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\nthat\tO\tthat\tO\nnumber\tO\tnumber\tO\nhas\tO\thas\tO\nappeared\tO\tappeared\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4547 I-Code_Block Q_4547 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nprints\tO\tprints\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4548 I-Code_Block Q_4548 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nas\tO\tas\tO\nfirst\tO\tfirst\tO\nshown\tO\tshown\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36901594\tO\t36901594\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36901594/\tO\thttps://stackoverflow.com/questions/36901594/\tO\n\t\n\t\nSurely\tO\tSurely\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nprint\tO\tprint\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nline\tO\tline\tO\n?\tO\t?\tO\n\t\nCan\tO\tCan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nusing\tO\tusing\tO\n/n B-Value /n B-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5082507\tO\t5082507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5082507/\tO\thttps://stackoverflow.com/questions/5082507/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\none\tO\tone\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nwritten\tO\twritten\tO\nin\tO\tin\tO\nC# B-Language C# O\n-\tO\t-\tO\nWindows B-Library Windows O\nForms I-Library Forms O\nto\tO\tto\tO\nC++ B-Language C++ O\n-\tO\t-\tO\nwxWidgets B-Library wxWidgets O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nborderless\tO\tborderless\tO\nand\tO\tand\tO\nhas\tO\thas\tO\na\tO\ta\tO\nthin\tO\tthin\tO\n,\tO\t,\tO\ntransparent\tO\ttransparent\tO\npanel B-User_Interface_Element panel O\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform B-User_Interface_Element form O\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nform B-User_Interface_Element form O\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\ntechnique\tO\ttechnique\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nMake\tO\tMake\tO\na\tO\ta\tO\nborderless\tO\tborderless\tO\nform B-User_Interface_Element form O\nmovable\tO\tmovable\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbasically\tO\tbasically\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nin\tO\tin\tO\nwxWidgets B-Library wxWidgets O\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nsearched\tO\tsearched\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\na\tO\ta\tO\nmouse B-Device mouse O\ndown\tO\tdown\tO\nevent B-Class event O\nover\tO\tover\tO\na\tO\ta\tO\nwxPanel B-Class wxPanel O\nand\tO\tand\tO\nfound\tO\tfound\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nexamples\tO\texamples\tO\nbut\tO\tbut\tO\nboth\tO\tboth\tO\nused\tO\tused\tO\nwxPython B-Class wxPython O\nin\tO\tin\tO\ntheir\tO\ttheir\tO\narticle/question\tO\tarticle/question\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nknowledge\tO\tknowledge\tO\nabout\tO\tabout\tO\nPython B-Language Python O\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nin\tO\tin\tO\nC++ B-Language C++ O\n-\tO\t-\tO\nwxWidgets B-Library wxWidgets O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5082507\tO\t5082507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5082507/\tO\thttps://stackoverflow.com/questions/5082507/\tO\n\t\n\t\n\"\tO\t\"\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfire\tO\tfire\tO\na\tO\ta\tO\nmouse B-Device mouse O\ndown\tO\tdown\tO\nevent\tO\tevent\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\n'\tO\t'\tO\nfiring\tO\tfiring\tO\n'\tO\t'\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\n-\tO\t-\tO\nthe\tO\tthe\tO\nOS\tO\tOS\tO\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nEVT_LEFT_DOWN B-Class EVT_LEFT_DOWN O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nwxWidgets B-Class wxWidgets O\nevents I-Class events O\n?\tO\t?\tO\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nprograms\tO\tprograms\tO\n?\tO\t?\tO\n\t\nhttp://docs.wxwidgets.org/2.6/wx_samples.html\tO\thttp://docs.wxwidgets.org/2.6/wx_samples.html\tO\nThey\tO\tThey\tO\nare\tO\tare\tO\nall\tO\tall\tO\nin\tO\tin\tO\nC++ B-Language C++ O\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ndescription\tO\tdescription\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nevents B-Class events O\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://docs.wxwidgets.org/2.6/wx_eventhandlingoverview.html#eventhandlingoverview\tO\thttp://docs.wxwidgets.org/2.6/wx_eventhandlingoverview.html#eventhandlingoverview\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nabout\tO\tabout\tO\nsomething\tO\tsomething\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nof\tO\tof\tO\nhandling\tO\thandling\tO\nthe\tO\tthe\tO\nEVT_LEFT_DOWN B-Class EVT_LEFT_DOWN O\nevent\tO\tevent\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nplease\tO\tplease\tO\npost\tO\tpost\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\ndescribe\tO\tdescribe\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43816324\tO\t43816324\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43816324/\tO\thttps://stackoverflow.com/questions/43816324/\tO\n\t\n\t\nI\tO\tI\tO\ncreating\tO\tcreating\tO\n5\tO\t5\tO\nthreads\tO\tthreads\tO\nand\tO\tand\tO\nall\tO\tall\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\ncritical\tO\tcritical\tO\nsection\tO\tsection\tO\nand\tO\tand\tO\nread\tO\tread\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nall\tO\tall\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nlock\tO\tlock\tO\nusing\tO\tusing\tO\nsemaphores\tO\tsemaphores\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nthread\tO\tthread\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\ncritical\tO\tcritical\tO\nsection\tO\tsection\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5647 I-Code_Block Q_5647 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11224784\tO\t11224784\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11224784/\tO\thttps://stackoverflow.com/questions/11224784/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\njust\tO\tjust\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nMySQL B-Application MySQL O\nuser\tO\tuser\tO\nwith\tO\twith\tO\na\tO\ta\tO\npassword\tO\tpassword\tO\nand\tO\tand\tO\ngranted\tO\tgranted\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nprivileges\tO\tprivileges\tO\non\tO\ton\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npassword\tO\tpassword\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nset\tO\tset\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan't\tO\tcan't\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1039 I-Code_Block Q_1039 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nMacOS B-Operating_System MacOS O\nLion B-Version Lion O\nin\tO\tin\tO\na\tO\ta\tO\nbash B-Application bash O\nshell I-Application shell O\n,\tO\t,\tO\nversion\tO\tversion\tO\n10.6 B-Version 10.6 O\nof\tO\tof\tO\nMySQL B-Application MySQL O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11224784\tO\t11224784\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11224784/\tO\thttps://stackoverflow.com/questions/11224784/\tO\n\t\n\t\nThe\tO\tThe\tO\nCREATE B-Code_Block CREATE O\nUSER I-Code_Block USER O\nstatement\tO\tstatement\tO\nneeds\tO\tneeds\tO\na\tO\ta\tO\nhost-part\tO\thost-part\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ndefine\tO\tdefine\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n' B-Value ' O\n% I-Value % O\n' B-Value ' O\nand\tO\tand\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nGRANT B-Code_Block GRANT O\nstatement\tO\tstatement\tO\nincludes\tO\tincludes\tO\n@'localhost' B-Value @'localhost' O\n,\tO\t,\tO\nyou\tO\tyou\tO\nend\tO\tend\tO\nup\tO\tup\tO\nwith\tO\twith\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nwith\tO\twith\tO\na\tO\ta\tO\npassword\tO\tpassword\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nwithout\tO\twithout\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1436 I-Code_Block A_1436 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nResults\tO\tResults\tO\nin\tO\tin\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1437 I-Code_Block A_1437 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nUse\tO\tUse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nto\tO\tto\tO\nget\tO\tget\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1438 I-Code_Block A_1438 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbest\tO\tbest\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nconnect\tO\tconnect\tO\n,\tO\t,\tO\notherwise\tO\totherwise\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\ndatabase\tO\tdatabase\tO\nafter\tO\tafter\tO\nconnecting\tO\tconnecting\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1439 I-Code_Block A_1439 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46329660\tO\t46329660\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46329660/\tO\thttps://stackoverflow.com/questions/46329660/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nTravis B-Application Travis O\nbuild\tO\tbuild\tO\nthat\tO\tthat\tO\nkeeps\tO\tkeeps\tO\nfailing\tO\tfailing\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n.env B-File_Type .env B-Code_Block\nfile\tO\tfile\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nenv-file B-File_Type env-file O\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nputting\tO\tputting\tO\nafter_failure B-Code_Block after_failure B-Code_Block\n: I-Code_Block : I-Code_Block\n\" I-Code_Block \" I-Code_Block\ncat I-Code_Block cat I-Code_Block\n/Users/travis/.opam/system/build/topkg.0.9.0/topkg I-Code_Block /Users/travis/.opam/system/build/topkg.0.9.0/topkg I-Code_Block\n-19768-81a3ce.env I-Code_Block -19768-81a3ce.env I-Code_Block\n\" I-Code_Block \" I-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nyml B-File_Type yml O\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nduring\tO\tduring\tO\na\tO\ta\tO\nbefore_install B-Code_Block before_install B-Code_Block\nstep\tO\tstep\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6080 I-Code_Block Q_6080 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46329660\tO\t46329660\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46329660/\tO\thttps://stackoverflow.com/questions/46329660/\tO\n\t\n\t\nI\tO\tI\tO\nreached\tO\treached\tO\nout\tO\tout\tO\nto\tO\tto\tO\nTravis B-Application Travis O\nsupport\tO\tsupport\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\ntold\tO\ttold\tO\nme\tO\tme\tO\nthat\tO\tthat\tO\nany\tO\tany\tO\nerrors\tO\terrors\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nbefore_install B-Code_Block before_install B-Code_Block\nstep\tO\tstep\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\na\tO\ta\tO\nlog B-File_Type log O\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nTravis B-Application Travis O\nbuild\tO\tbuild\tO\nlog B-File_Type log O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13592166\tO\t13592166\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13592166/\tO\thttps://stackoverflow.com/questions/13592166/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlist B-Data_Structure list O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1297 I-Code_Block Q_1297 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nabsolute\tO\tabsolute\tO\nfastest\tO\tfastest\tO\nway\tO\tway\tO\nof\tO\tof\tO\npulling\tO\tpulling\tO\nall\tO\tall\tO\nvalues\tO\tvalues\tO\nabove\tO\tabove\tO\nsay\tO\tsay\tO\n\"\tO\t\"\tO\n7 B-Value 7 O\n\"\tO\t\"\tO\nand\tO\tand\tO\nplacing\tO\tplacing\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfor B-Code_Block for O\nloop\tO\tloop\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\ntoo\tO\ttoo\tO\nlong\tO\tlong\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nhundreds\tO\thundreds\tO\nof\tO\tof\tO\nmillions\tO\tmillions\tO\nof\tO\tof\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nideally\tO\tideally\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1298 I-Code_Block Q_1298 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\n!\tO\t!\tO\n\t\nProcessing\tO\tProcessing\tO\ntimes\tO\ttimes\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13592166\tO\t13592166\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13592166/\tO\thttps://stackoverflow.com/questions/13592166/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nworry\tO\tworry\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\nabout\tO\tabout\tO\nmaintaining\tO\tmaintaining\tO\na\tO\ta\tO\nsorted\tO\tsorted\tO\norder\tO\torder\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nnumpy B-Library numpy B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1735 I-Code_Block A_1735 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nitems\tO\titems\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nsorted\tO\tsorted\tO\nalready\tO\talready\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbisect B-Library bisect B-Code_Block\nmodule\tO\tmodule\tO\n(\tO\t(\tO\nor\tO\tor\tO\nnumpy B-Library numpy B-Code_Block\nhas\tO\thas\tO\nits\tO\tits\tO\nown\tO\town\tO\nmethods\tO\tmethods\tO\nfor\tO\tfor\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nsorted\tO\tsorted\tO\ndata\tO\tdata\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1736 I-Code_Block A_1736 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nsorted\tO\tsorted\tO\norder\tO\torder\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1737 I-Code_Block A_1737 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13592166\tO\t13592166\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13592166/\tO\thttps://stackoverflow.com/questions/13592166/\tO\n\t\n\t\nAboveNumber B-Class AboveNumber O\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nno\tO\tno\tO\nmagic\tO\tmagic\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nis\tO\tis\tO\nunordered\tO\tunordered\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nrun\tO\trun\tO\nthrough\tO\tthrough\tO\nall\tO\tall\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\noptimize\tO\toptimize\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nmaintaining\tO\tmaintaining\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nin\tO\tin\tO\norder\tO\torder\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nby\tO\tby\tO\nmaking\tO\tmaking\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nis\tO\tis\tO\nalways\tO\talways\tO\nordered\tO\tordered\tO\nafter\tO\tafter\tO\nan\tO\tan\tO\ninsert\tO\tinsert\tO\nor\tO\tor\tO\nerase\tO\terase\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nis\tO\tis\tO\nordered\tO\tordered\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nfind\tO\tfind\tO\nyour\tO\tyour\tO\n\"\tO\t\"\tO\nmean\tO\tmean\tO\n\"\tO\t\"\tO\nby\tO\tby\tO\na\tO\ta\tO\nbinary\tO\tbinary\tO\nsearch\tO\tsearch\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nfaster\tO\tfaster\tO\nthan\tO\tthan\tO\nrunning\tO\trunning\tO\nthrough\tO\tthrough\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n,\tO\t,\tO\nthen\tO\tthen\tO\ncut\tO\tcut\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nat\tO\tat\tO\nthat\tO\tthat\tO\nposition\tO\tposition\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17918344\tO\t17918344\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17918344/\tO\thttps://stackoverflow.com/questions/17918344/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nSSO\tO\tSSO\tO\non\tO\ton\tO\nWindows B-Operating_System Windows O\n(\tO\t(\tO\nin\tO\tin\tO\nJava B-Language Java O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nRecently\tO\tRecently\tO\nI\tO\tI\tO\ndiscovered\tO\tdiscovered\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\ndoing\tO\tdoing\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nWaffle B-Library Waffle O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1841 I-Code_Block Q_1841 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nexample\tO\texample\tO\nis\tO\tis\tO\neasy\tO\teasy\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nand\tO\tand\tO\nit\tO\tit\tO\nseams\tO\tseams\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\n?\tO\t?\tO\n\t\nDoes\tO\tDoes\tO\nWaffle B-Library Waffle O\nget\tO\tget\tO\nthe\tO\tthe\tO\nKerberos\tO\tKerberos\tO\nticket\tO\tticket\tO\nfrom\tO\tfrom\tO\nWindows B-Operating_System Windows O\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nserver B-Application server O\nvalidate\tO\tvalidate\tO\nthe\tO\tthe\tO\nticket\tO\tticket\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nclient B-Application client O\n?\tO\t?\tO\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\nabsolutely\tO\tabsolutely\tO\ntrust\tO\ttrust\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ngroups\tO\tgroups\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nget\tO\tget\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\ndo-loop B-Code_Block do-loop O\n\t\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserver B-Application server O\ncontext\tO\tcontext\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nThomas B-User_Name Thomas O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17918344\tO\t17918344\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17918344/\tO\thttps://stackoverflow.com/questions/17918344/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nWaffle B-Library Waffle O\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nWindows B-Application Windows O\nSSPI I-Application SSPI O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nperforms\tO\tperforms\tO\nall\tO\tall\tO\noperations\tO\toperations\tO\ninvolving\tO\tinvolving\tO\nKerberos\tO\tKerberos\tO\ntickets\tO\ttickets\tO\non\tO\ton\tO\nclient B-Application client O\n's\tO\t's\tO\nbehalf\tO\tbehalf\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclient B-Application client O\nnever\tO\tnever\tO\nsees\tO\tsees\tO\nthe\tO\tthe\tO\nticket\tO\tticket\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nbasic\tO\tbasic\tO\nKerberos\tO\tKerberos\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntoken\tO\ttoken\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver B-Application server O\nis\tO\tis\tO\nencrypted\tO\tencrypted\tO\nby\tO\tby\tO\nserver B-Variable server O\n's\tO\t's\tO\nsecret I-Variable secret O\nkey I-Variable key O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nguarantees\tO\tguarantees\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntoken\tO\ttoken\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nTicket B-Application Ticket O\nGranting I-Application Granting O\nService I-Application Service O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nauthenticated\tO\tauthenticated\tO\nthe\tO\tthe\tO\nclient B-Application client O\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nare\tO\tare\tO\nretrieved\tO\tretrieved\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsecurity B-Variable security O\ntoken I-Variable token O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nWindows-specific B-Operating_System Windows-specific O\nextension\tO\textension\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nMIT B-Licence MIT O\nKerberos I-Licence Kerberos O\nprotocol I-Licence protocol O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45905348\tO\t45905348\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45905348/\tO\thttps://stackoverflow.com/questions/45905348/\tO\n\t\n\t\nI\tO\tI\tO\nwanted\tO\twanted\tO\nsome\tO\tsome\tO\ntext\tO\ttext\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nemails\tO\temails\tO\nor\tO\tor\tO\nletters\tO\tletters\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nwhile\tO\twhile\tO\nexperimenting\tO\texperimenting\tO\nthe\tO\tthe\tO\nAPI B-Library API O\nin\tO\tin\tO\nelasticsearch B-Application elasticsearch O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\nsources\tO\tsources\tO\nwhere\tO\twhere\tO\none\tO\tone\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n&\tO\t&\tO\nRegards\tO\tRegards\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45905348\tO\t45905348\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45905348/\tO\thttps://stackoverflow.com/questions/45905348/\tO\n\t\n\t\nCheck\tO\tCheck\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nenron\tO\tenron\tO\ndataset\tO\tdataset\tO\nas\tO\tas\tO\na\tO\ta\tO\nnice\tO\tnice\tO\nstart\tO\tstart\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45905348\tO\t45905348\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45905348/\tO\thttps://stackoverflow.com/questions/45905348/\tO\n\t\n\t\nType\tO\tType\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nURL\tO\tURL\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\n:\tO\t:\tO\n\t\nlocalhost:9200/_search B-Value localhost:9200/_search O\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\ndata\tO\tdata\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nelasticsearch B-Application elasticsearch O\nis\tO\tis\tO\nin\tO\tin\tO\nserver B-Application server O\nand\tO\tand\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nin\tO\tin\tO\nremote\tO\tremote\tO\ncomputer B-Device computer O\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nlocalhist B-Value localhist O\nwith\tO\twith\tO\nyour\tO\tyour\tO\nIP\tO\tIP\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41895004\tO\t41895004\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41895004/\tO\thttps://stackoverflow.com/questions/41895004/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nextract\tO\textract\tO\nall\tO\tall\tO\nurls\tO\turls\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\ncontain\tO\tcontain\tO\nparameters\tO\tparameters\tO\n:\tO\t:\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5328 I-Code_Block Q_5328 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nsince\tO\tsince\tO\n? B-Value ? O\nis\tO\tis\tO\nan\tO\tan\tO\nspecial\tO\tspecial\tO\nchar B-Data_Type char O\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41895004\tO\t41895004\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41895004/\tO\thttps://stackoverflow.com/questions/41895004/\tO\n\t\n\t\nThe\tO\tThe\tO\nHTML B-Language HTML O\ncode\tO\tcode\tO\nfor\tO\tfor\tO\n? B-Value ? B-Code_Block\nis\tO\tis\tO\n? B-Value ? B-Code_Block\n\t\nYour\tO\tYour\tO\nquery\tO\tquery\tO\nwould\tO\twould\tO\nthen\tO\tthen\tO\nbe\tO\tbe\tO\nsite:example.com B-Code_Block site:example.com B-Code_Block\nAND I-Code_Block AND I-Code_Block\ninurl I-Code_Block inurl I-Code_Block\n: I-Code_Block : I-Code_Block\n? I-Code_Block ? I-Code_Block\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nto\tO\tto\tO\nconstrain\tO\tconstrain\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nfor\tO\tfor\tO\nCar B-Code_Block Car B-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nhttps://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\tO\thttps://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\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25230984\tO\t25230984\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25230984/\tO\thttps://stackoverflow.com/questions/25230984/\tO\n\t\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n\"\tO\t\"\tO\nUncaught B-Error_Name Uncaught O\nTypeError I-Error_Name TypeError O\n:\tO\t:\tO\nundefined\tO\tundefined\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntaking\tO\ttaking\tO\nan\tO\tan\tO\nonline\tO\tonline\tO\ncourse\tO\tcourse\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nfinal\tO\tfinal\tO\nproject\tO\tproject\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nstuck\tO\tstuck\tO\nwithout\tO\twithout\tO\nget\tO\tget\tO\nany\tO\tany\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nexplain\tO\texplain\tO\nme\tO\tme\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nhappen\tO\thappen\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\nand\tO\tand\tO\nhere\tO\there\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2869 I-Code_Block Q_2869 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25230984\tO\t25230984\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25230984/\tO\thttps://stackoverflow.com/questions/25230984/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nsaying\tO\tsaying\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3475 I-Code_Block A_3475 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3476 I-Code_Block A_3476 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36019847\tO\t36019847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36019847/\tO\thttps://stackoverflow.com/questions/36019847/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nSpark B-Library Spark O\n1.5.1 B-Version 1.5.1 O\n,\tO\t,\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nforward\tO\tforward\tO\nfill\tO\tfill\tO\nnull B-Value null O\nvalues\tO\tvalues\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nknown\tO\tknown\tO\nobservation\tO\tobservation\tO\nfor\tO\tfor\tO\none\tO\tone\tO\ncolumn B-Data_Structure column O\nof\tO\tof\tO\nmy\tO\tmy\tO\nDataFrame B-Class DataFrame O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\na\tO\ta\tO\nnull B-Value null O\nvalue\tO\tvalue\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nto\tO\tto\tO\nbackward\tO\tbackward\tO\nfill\tO\tfill\tO\nthis\tO\tthis\tO\nnull B-Value null O\nvalue\tO\tvalue\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nknwn\tO\tknwn\tO\nobservation\tO\tobservation\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nIf\tO\tIf\tO\nthat\tO\tthat\tO\ntoo\tO\ttoo\tO\ncomplicates\tO\tcomplicates\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nskipped\tO\tskipped\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\npost\tO\tpost\tO\n,\tO\t,\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nin\tO\tin\tO\nScala B-Language Scala O\nwas\tO\twas\tO\nprovided\tO\tprovided\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nsimilar\tO\tsimilar\tO\nproblem\tO\tproblem\tO\nby\tO\tby\tO\nzero323 B-User_Name zero323 O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nScala B-Language Scala O\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsucceed\tO\tsucceed\tO\nto\tO\tto\tO\n''\tO\t''\tO\ntranslate''\tO\ttranslate''\tO\nit\tO\tit\tO\nin\tO\tin\tO\nPyspark B-Library Pyspark O\nAPI I-Library API O\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nPyspark B-Library Pyspark O\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\n,\tO\t,\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexample\tO\texample\tO\nsample\tO\tsample\tO\ninput\tO\tinput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4413 I-Code_Block Q_4413 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nexpected\tO\texpected\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4414 I-Code_Block Q_4414 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36019847\tO\t36019847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36019847/\tO\thttps://stackoverflow.com/questions/36019847/\tO\n\t\n\t\nThe\tO\tThe\tO\npartitioned\tO\tpartitioned\tO\nexample\tO\texample\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nSpark B-Library Spark O\n/\tO\t/\tO\nScala B-Language Scala O\n:\tO\t:\tO\nforward\tO\tforward\tO\nfill\tO\tfill\tO\nwith\tO\twith\tO\nlast\tO\tlast\tO\nobservation\tO\tobservation\tO\nin\tO\tin\tO\npyspark B-Library pyspark O\nis\tO\tis\tO\nshown\tO\tshown\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nonly\tO\tonly\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\npartitioned\tO\tpartitioned\tO\n.\tO\t.\tO\n\t\nLoad\tO\tLoad\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5767 I-Code_Block A_5767 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nDataFrame B-Class DataFrame O\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5768 I-Code_Block A_5768 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nColumn B-Data_Structure Column O\nused\tO\tused\tO\nto\tO\tto\tO\nsort\tO\tsort\tO\nthe\tO\tthe\tO\npartitions\tO\tpartitions\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5769 I-Code_Block A_5769 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nfill B-Function fill O\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\nin\tO\tin\tO\nmultiple\tO\tmultiple\tO\ncolumns B-Data_Structure columns O\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5770 I-Code_Block A_5770 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nConvert\tO\tConvert\tO\nto\tO\tto\tO\nrdd B-Data_Structure rdd O\n,\tO\t,\tO\npartition\tO\tpartition\tO\n,\tO\t,\tO\nsort\tO\tsort\tO\nand\tO\tand\tO\nfill\tO\tfill\tO\nthe\tO\tthe\tO\nmissing\tO\tmissing\tO\nvalues\tO\tvalues\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5771 I-Code_Block A_5771 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nConvert\tO\tConvert\tO\nback\tO\tback\tO\nto\tO\tto\tO\nDataFrame B-Class DataFrame O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5772 I-Code_Block A_5772 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5773 I-Code_Block A_5773 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36019847\tO\t36019847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36019847/\tO\thttps://stackoverflow.com/questions/36019847/\tO\n\t\n\t\nCloudera B-Website Cloudera O\nhas\tO\thas\tO\nreleased\tO\treleased\tO\na\tO\ta\tO\nlibrary\tO\tlibrary\tO\ncalled\tO\tcalled\tO\nspark-ts B-Library spark-ts O\nthat\tO\tthat\tO\noffers\tO\toffers\tO\na\tO\ta\tO\nsuite\tO\tsuite\tO\nof\tO\tof\tO\nuseful\tO\tuseful\tO\nmethods\tO\tmethods\tO\nfor\tO\tfor\tO\nprocessing\tO\tprocessing\tO\ntime\tO\ttime\tO\nseries\tO\tseries\tO\nand\tO\tand\tO\nsequential\tO\tsequential\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nSpark B-Library Spark O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nlibrary\tO\tlibrary\tO\nsupports\tO\tsupports\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ntime-windowed\tO\ttime-windowed\tO\nmethods\tO\tmethods\tO\nfor\tO\tfor\tO\nimputing\tO\timputing\tO\ndata\tO\tdata\tO\npoints\tO\tpoints\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nother\tO\tother\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsequence\tO\tsequence\tO\n.\tO\t.\tO\n\t\nhttp://blog.cloudera.com/blog/2015/12/spark-ts-a-new-library-for-analyzing-time-series-data-with-apache-spark/\tO\thttp://blog.cloudera.com/blog/2015/12/spark-ts-a-new-library-for-analyzing-time-series-data-with-apache-spark/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13742839\tO\t13742839\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13742839/\tO\thttps://stackoverflow.com/questions/13742839/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1306 I-Code_Block Q_1306 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ninside\tO\tinside\tO\nresponse\tO\tresponse\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nbellow\tO\tbellow\tO\nhtml B-Language html O\ncode\tO\tcode\tO\nwith\tO\twith\tO\nsimple\tO\tsimple\tO\nJavaScript B-Language JavaScript O\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1307 I-Code_Block Q_1307 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhere\tO\there\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\npopup()function B-Function popup()function O\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13742839\tO\t13742839\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13742839/\tO\thttps://stackoverflow.com/questions/13742839/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nyou\tO\tyou\tO\nexpect\tO\texpect\tO\nthat\tO\tthat\tO\nJavascript B-Language Javascript O\ncontained\tO\tcontained\tO\nwithin\tO\twithin\tO\nan\tO\tan\tO\najax B-Function ajax O\nresponse\tO\tresponse\tO\nis\tO\tis\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nexecute\tO\texecute\tO\nany\tO\tany\tO\nJavascript B-Language Javascript O\ncontained\tO\tcontained\tO\nwithin\tO\twithin\tO\najax B-Function ajax O\nresponses\tO\tresponses\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nJavascript B-Language Javascript O\nand\tO\tand\tO\nexecute\tO\texecute\tO\nit\tO\tit\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\neval() B-Function eval() B-Code_Block\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnasty\tO\tnasty\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\neval() B-Function eval() B-Code_Block\nyou\tO\tyou\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nconsider\tO\tconsider\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\naccept\tO\taccept\tO\nvalid\tO\tvalid\tO\nJavascript B-Language Javascript O\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\npass\tO\tpass\tO\nyour\tO\tyour\tO\nresponse\tO\tresponse\tO\nto\tO\tto\tO\nit\tO\tit\tO\nbecause\tO\tbecause\tO\nthat\tO\tthat\tO\nincludes\tO\tincludes\tO\nsome\tO\tsome\tO\nHTML B-Language HTML O\n.\tO\t.\tO\n\t\nA\tO\tA\tO\npossible\tO\tpossible\tO\nsolution\tO\tsolution\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\npopup() B-Function popup() B-Code_Block\nfunction\tO\tfunction\tO\nalready\tO\talready\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nor\tO\tor\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\nJavascript B-File_Type Javascript O\nfile\tO\tfile\tO\n,\tO\t,\tO\nand\tO\tand\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nthe\tO\tthe\tO\nclick\tO\tclick\tO\nhandler\tO\thandler\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nHTML B-Language HTML O\nto\tO\tto\tO\nthe\tO\tthe\tO\nDOM B-Library DOM O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1751 I-Code_Block A_1751 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13742839\tO\t13742839\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13742839/\tO\thttps://stackoverflow.com/questions/13742839/\tO\n\t\n\t\nMake\tO\tMake\tO\nthat\tO\tthat\tO\nstring B-Data_Type string O\nhidden\tO\thidden\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\npage\tO\tpage\tO\nand\tO\tand\tO\njust\tO\tjust\tO\ndisplay\tO\tdisplay\tO\nit\tO\tit\tO\non\tO\ton\tO\nsuccess\tO\tsuccess\tO\n.\tO\t.\tO\n\t\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1752 I-Code_Block A_1752 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBetter\tO\tBetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nwith\tO\twith\tO\nDOM B-Library DOM O\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40523285\tO\t40523285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40523285/\tO\thttps://stackoverflow.com/questions/40523285/\tO\n\t\n\t\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ntraverse\tO\ttraverse\tO\nsome\tO\tsome\tO\nexcel2007 B-Application excel2007 O\ndata\tO\tdata\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\npoi.jar B-File_Name poi.jar O\nbased\tO\tbased\tO\non\tO\ton\tO\njdk1.6.But B-Application jdk1.6.But O\nwhen\tO\twhen\tO\nI\tO\tI\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nstrange\tO\tstrange\tO\nphenomenon\tO\tphenomenon\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntraverse\tO\ttraverse\tO\nthe\tO\tthe\tO\nrow\tO\trow\tO\n(\tO\t(\tO\nstored\tO\tstored\tO\nby\tO\tby\tO\nHashMap()) B-Class HashMap()) O\nand\tO\tand\tO\nthen\tO\tthen\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nrow\tO\trow\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\njava.util.ArrayList B-Class java.util.ArrayList O\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nstarting\tO\tstarting\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\niterator\tO\titerator\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfirst\tO\tfirst\tO\nclear\tO\tclear\tO\nthe\tO\tthe\tO\nrow\tO\trow\tO\ndata\tO\tdata\tO\nby\tO\tby\tO\ninvoking\tO\tinvoking\tO\nMap.clear() B-Function Map.clear() O\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nagain\tO\tagain\tO\ninvoking\tO\tinvoking\tO\nthe\tO\tthe\tO\nArrayList.add() B-Function ArrayList.add() O\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nrow\tO\trow\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\noverridden\tO\toverridden\tO\nthe\tO\tthe\tO\nolder\tO\tolder\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5115 I-Code_Block Q_5115 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNext\tO\tNext\tO\nSnippets\tO\tSnippets\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\ndebug\tO\tdebug\tO\nlog\tO\tlog\tO\nfor\tO\tfor\tO\nrowForSheet(List) B-Variable rowForSheet(List) O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5116 I-Code_Block Q_5116 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthe\tO\tthe\tO\nlater\tO\tlater\tO\ndata\tO\tdata\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\nolder\tO\tolder\tO\ndata\tO\tdata\tO\n\t\nDid\tO\tDid\tO\nyou\tO\tyou\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40523285\tO\t40523285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40523285/\tO\thttps://stackoverflow.com/questions/40523285/\tO\n\t\n\t\nFirst\tO\tFirst\tO\noff\tO\toff\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ncreation\tO\tcreation\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nmap B-Class map O\ninside\tO\tinside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nloops B-Code_Block loops O\nso\tO\tso\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nmap B-Class map O\neach\tO\teach\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5801 I-Code_Block A_5801 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\neach\tO\teach\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nmap B-Class map O\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ndata\tO\tdata\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nadded\tO\tadded\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18168003\tO\t18168003\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18168003/\tO\thttps://stackoverflow.com/questions/18168003/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nAmazon B-Application Amazon O\nRedshift I-Application Redshift O\nto\tO\tto\tO\ndo\tO\tdo\tO\ndata\tO\tdata\tO\nanalysis\tO\tanalysis\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsometimes\tO\tsometimes\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n'\tO\t'\tO\nunload B-Function unload O\n'\tO\t'\tO\nto\tO\tto\tO\nunload\tO\tunload\tO\na\tO\ta\tO\nRedShift B-Data_Structure RedShift O\ntable I-Data_Structure table O\ninto\tO\tinto\tO\nS3 B-File_Type S3 O\nand\tO\tand\tO\nthen\tO\tthen\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\nanother\tO\tanother\tO\nRedshift B-Application Redshift O\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\na\tO\ta\tO\nprefix\tO\tprefix\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfile\tO\tfile\tO\nwhen\tO\twhen\tO\ndoing\tO\tdoing\tO\n'\tO\t'\tO\nunload B-Function unload O\n'\tO\t'\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\nmany\tO\tmany\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nS3 B-File_Type S3 O\nbucket\tO\tbucket\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ngraceful\tO\tgraceful\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncleanup\tO\tcleanup\tO\nall\tO\tall\tO\nthose\tO\tthose\tO\ndata\tO\tdata\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nenumerate\tO\tenumerate\tO\neach\tO\teach\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbucket\tO\tbucket\tO\nand\tO\tand\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nmatches\tO\tmatches\tO\nthe\tO\tthe\tO\nprefix\tO\tprefix\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18168003\tO\t18168003\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18168003/\tO\thttps://stackoverflow.com/questions/18168003/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nvery\tO\tvery\tO\neasy\tO\teasy\tO\nwith\tO\twith\tO\ns3cmd B-Application s3cmd O\nfrom\tO\tfrom\tO\ns3tools B-Website s3tools O\n(\tO\t(\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ncopy\tO\tcopy\tO\nfrom\tO\tfrom\tO\nhttp://s3tools.org/s3cmd\tO\thttp://s3tools.org/s3cmd\tO\n)\tO\t)\tO\n\t\nFirst\tO\tFirst\tO\nconfigure\tO\tconfigure\tO\nthis\tO\tthis\tO\nprogram\tO\tprogram\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2391 I-Code_Block A_2391 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nis\tO\tis\tO\njust\tO\tjust\tO\none\tO\tone\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2392 I-Code_Block A_2392 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32536875\tO\t32536875\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32536875/\tO\thttps://stackoverflow.com/questions/32536875/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\nweb B-HTML_XML_Tag web O\nroles I-HTML_XML_Tag roles O\nand\tO\tand\tO\none\tO\tone\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nruns\tO\truns\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nlayer\tO\tlayer\tO\nconsisting\tO\tconsisting\tO\nof\tO\tof\tO\n3\tO\t3\tO\nWCF B-Library WCF O\nservices\tO\tservices\tO\nconnected\tO\tconnected\tO\nwith\tO\twith\tO\nnet.tcp\tO\tnet.tcp\tO\n,\tO\t,\tO\neach\tO\teach\tO\ndeployed\tO\tdeployed\tO\nas\tO\tas\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\non\tO\ton\tO\nport B-Device port O\n808 B-Value 808 O\n,\tO\t,\tO\n810 B-Value 810 O\n,\tO\t,\tO\nand\tO\tand\tO\n811 B-Value 811 O\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nlayer\tO\tlayer\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\nopen\tO\topen\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nother\tO\tother\tO\nweb B-HTML_XML_Tag web O\nrole I-HTML_XML_Tag role O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nservices\tO\tservices\tO\nendpoint\tO\tendpoint\tO\ninternal\tO\tinternal\tO\nand\tO\tand\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\naccess\tO\taccess\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nfront\tO\tfront\tO\nweb B-HTML_XML_Tag web O\nrole I-HTML_XML_Tag role O\n.\tO\t.\tO\n\t\nLike\tO\tLike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3946 I-Code_Block Q_3946 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nUserService B-File_Name UserService O\nis\tO\tis\tO\nattempted\tO\tattempted\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\ntime\tO\ttime\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nset\tO\tset\tO\n<AllowAllTraffic/> B-HTML_XML_Tag <AllowAllTraffic/> B-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n<WhenSource B-HTML_XML_Tag <WhenSource B-Code_Block\n...> I-HTML_XML_Tag ...> I-Code_Block\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nno\tO\tno\tO\neffect\tO\teffect\tO\n.\tO\t.\tO\n\t\nSecond\tO\tSecond\tO\nattempt\tO\tattempt\tO\n:\tO\t:\tO\n\t\nAfter\tO\tAfter\tO\nsome\tO\tsome\tO\nfeedback\tO\tfeedback\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nsome\tO\tsome\tO\nvariations\tO\tvariations\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nFixedPort B-HTML_XML_Tag FixedPort B-Code_Block\nand\tO\tand\tO\nPortRange B-HTML_XML_Tag PortRange B-Code_Block\nto\tO\tto\tO\n811 B-Value 811 O\nand\tO\tand\tO\nthe\tO\tthe\tO\nrole\tO\trole\tO\nlistening\tO\tlistening\tO\nto\tO\tto\tO\nport B-Code_Block port B-Code_Block\n=\"*\" I-Code_Block =\"*\" I-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3947 I-Code_Block Q_3947 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nkept\tO\tkept\tO\nthe\tO\tthe\tO\nNetworkTrafficRules B-HTML_XML_Tag NetworkTrafficRules O\nas\tO\tas\tO\nin\tO\tin\tO\nprevious\tO\tprevious\tO\nattempts\tO\tattempts\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlistener\tO\tlistener\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ndynamic\tO\tdynamic\tO\nport B-Device port O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nWebRole.cs B-File_Name WebRole.cs O\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3948 I-Code_Block Q_3948 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnother\tO\tAnother\tO\nnote\tO\tnote\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncalling\tO\tcalling\tO\nservice\tO\tservice\tO\nuses\tO\tuses\tO\nport B-Device port O\n811 B-Value 811 O\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nservice\tO\tservice\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nruns\tO\truns\tO\nthree\tO\tthree\tO\ndifferent\tO\tdifferent\tO\nWCF B-Library WCF O\nproject\tO\tproject\tO\nsites\tO\tsites\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ncalling\tO\tcalling\tO\nalso\tO\talso\tO\nuses\tO\tuses\tO\na\tO\ta\tO\nspecified\tO\tspecified\tO\nport B-Device port O\nnumber\tO\tnumber\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nif\tO\tif\tO\nit\tO\tit\tO\nall\tO\tall\tO\nof\tO\tof\tO\na\tO\ta\tO\nsudden\tO\tsudden\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndynamic\tO\tdynamic\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncalling\tO\tcalling\tO\nservice\tO\tservice\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3949 I-Code_Block Q_3949 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nreceiving(Internal)\tO\treceiving(Internal)\tO\nWebRole B-HTML_XML_Tag WebRole O\nsites\tO\tsites\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nconfigurations\tO\tconfigurations\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3950 I-Code_Block Q_3950 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nWCF B-Library WCF O\nsite\tO\tsite\tO\non\tO\ton\tO\nport B-Device port O\n811 B-Value 811 O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3951 I-Code_Block Q_3951 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32536875\tO\t32536875\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32536875/\tO\thttps://stackoverflow.com/questions/32536875/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ninternal\tO\tinternal\tO\nendpoint\tO\tendpoint\tO\nIP-addresses\tO\tIP-addresses\tO\nand\tO\tand\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexternal\tO\texternal\tO\naddress\tO\taddress\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4647 I-Code_Block A_4647 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n49020250\tO\t49020250\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49020250/\tO\thttps://stackoverflow.com/questions/49020250/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6540 I-Code_Block Q_6540 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nworks\tO\tworks\tO\nif\tO\tif\tO\nI\tO\tI\tO\ngive\tO\tgive\tO\nas\tO\tas\tO\ninput B-Code_Block input O\n-> I-Code_Block -> O\nc:\\data I-Code_Block c:\\data O\n\t\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nif\tO\tif\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6541 I-Code_Block Q_6541 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nexplain\tO\texplain\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nreason\tO\treason\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nbehaviour\tO\tbehaviour\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n49020250\tO\t49020250\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49020250/\tO\thttps://stackoverflow.com/questions/49020250/\tO\n\t\n\t\nBecause\tO\tBecause\tO\nin\tO\tin\tO\nliteral\tO\tliteral\tO\nstrings B-Data_Type strings O\n,\tO\t,\tO\n\\ B-Value \\ B-Code_Block\nis\tO\tis\tO\nan\tO\tan\tO\nescape\tO\tescape\tO\ncharacter\tO\tcharacter\tO\n-\tO\t-\tO\nallow\tO\tallow\tO\nputting\tO\tputting\tO\nquotes/tabs/newlines B-Value quotes/tabs/newlines O\netc\tO\tetc\tO\n.\tO\t.\tO\nin\tO\tin\tO\nliteral\tO\tliteral\tO\nstrings B-Data_Type strings O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\n' B-Value ' B-Code_Block\nc:\\\\data I-Value c:\\\\data I-Code_Block\n' B-Value ' B-Code_Block\nor\tO\tor\tO\n' B-Value ' B-Code_Block\nc:/data I-Value c:/data I-Code_Block\n' I-Value ' I-Code_Block\n(\tO\t(\tO\nforward\tO\tforward\tO\nslash\tO\tslash\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\nwindows B-Operating_System windows O\n)\tO\t)\tO\n\t\nAnother\tO\tAnother\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\nraw\tO\traw\tO\n\"\tO\t\"\tO\nstrings B-Data_Type strings O\nr'c:\\data' B-Value r'c:\\data' B-Code_Block\nbut\tO\tbut\tO\nbe\tO\tbe\tO\ncareful\tO\tcareful\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\nescaped\tO\tescaped\tO\ncharacters\tO\tcharacters\tO\nanymore\tO\tanymore\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40686543\tO\t40686543\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40686543/\tO\thttps://stackoverflow.com/questions/40686543/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5140 I-Code_Block Q_5140 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\njust\tO\tjust\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nmultiplication\tO\tmultiplication\tO\n\t\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n( B-Value ( O\n3* I-Value 3* O\n5) I-Value 5) O\ngive\tO\tgive\tO\nme\tO\tme\tO\nthat\tO\tthat\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nbackslah B-Value backslah O\nto\tO\tto\tO\nescape\tO\tescape\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5141 I-Code_Block Q_5141 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\nunclosed B-Error_Name unclosed O\ncharacter I-Error_Name character O\nliteral I-Error_Name literal O\nand\tO\tand\tO\nillegal B-Error_Name illegal O\nstart I-Error_Name start O\nof I-Error_Name of O\nexpression I-Error_Name expression O\nerrors\tO\terrors\tO\n\t\nwhat\tO\twhat\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40686543\tO\t40686543\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40686543/\tO\thttps://stackoverflow.com/questions/40686543/\tO\n\t\n\t\nRefer\tO\tRefer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nJavadoc\tO\tJavadoc\tO\nof\tO\tof\tO\nString.replaceFirst B-Function String.replaceFirst B-Code_Block\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nparameter\tO\tparameter\tO\nis\tO\tis\tO\na\tO\ta\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\n(\tO\t(\tO\nmeaning\tO\tmeaning\tO\ncharacters\tO\tcharacters\tO\nlike\tO\tlike\tO\n* B-Value * B-Code_Block\nhave\tO\thave\tO\nspecial\tO\tspecial\tO\nmeaning\tO\tmeaning\tO\n)\tO\t)\tO\n;\tO\t;\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nparameter\tO\tparameter\tO\nis\tO\tis\tO\na\tO\ta\tO\nregex\tO\tregex\tO\nreplacement\tO\treplacement\tO\n(\tO\t(\tO\nmeaning\tO\tmeaning\tO\ncertain\tO\tcertain\tO\ncharacter\tO\tcharacter\tO\nsequences\tO\tsequences\tO\nhave\tO\thave\tO\nspecial\tO\tspecial\tO\nmeaning\tO\tmeaning\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\\ B-Value \\ B-Code_Block\nand\tO\tand\tO\n$ B-Value $ B-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nin\tO\tin\tO\nstrings B-Data_Type strings O\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nuntrusted\tO\tuntrusted\tO\nsource\tO\tsource\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nquote\tO\tquote\tO\nthem\tO\tthem\tO\nappropriately\tO\tappropriately\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5826 I-Code_Block A_5826 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nString.replaceFirst B-Function String.replaceFirst B-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ntool\tO\ttool\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\njob\tO\tjob\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\ncorrectly\tO\tcorrectly\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nmatch\tO\tmatch\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nstring B-Data_Type string O\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nreally\tO\treally\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmost\tO\tmost\tO\nstraightforward\tO\tstraightforward\tO\nmodification\tO\tmodification\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nString.substring B-Function String.substring B-Code_Block\n-\tO\t-\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nexactly\tO\texactly\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nthing\tO\tthing\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nis\tO\tis\tO\n,\tO\t,\tO\nso\tO\tso\tO\nmake\tO\tmake\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5827 I-Code_Block A_5827 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n(\tO\t(\tO\nThis\tO\tThis\tO\nwould\tO\twould\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\n7\tO\t7\tO\nlines\tO\tlines\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n)\tO\t)\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nbetter\tO\tbetter\tO\nagain\tO\tagain\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nStringBuilder B-Class StringBuilder B-Code_Block\n,\tO\t,\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\ncreating\tO\tcreating\tO\nunnecessary\tO\tunnecessary\tO\nstrings B-Data_Type strings O\nin\tO\tin\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nstill\tO\tstill\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\nmulti-digit\tO\tmulti-digit\tO\nor\tO\tor\tO\nnegative\tO\tnegative\tO\nnumbers\tO\tnumbers\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43041539\tO\t43041539\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43041539/\tO\thttps://stackoverflow.com/questions/43041539/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\nregarding\tO\tregarding\tO\nJava B-Language Java O\ncode\tO\tcode\tO\nimplementation\tO\timplementation\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nscenario\tO\tscenario\tO\n,\tO\t,\tO\n\t\nGet\tO\tGet\tO\nUser\tO\tUser\tO\nInput\tO\tInput\tO\n[\tO\t[\tO\nString B-Data_Type String O\nfrom\tO\tfrom\tO\nScanner B-Class Scanner O\n]\tO\t]\tO\n\t\nConvert\tO\tConvert\tO\nthe\tO\tthe\tO\nString B-Data_Type String O\ninput\tO\tinput\tO\nto\tO\tto\tO\n1D\tO\t1D\tO\nArray B-Data_Structure Array O\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\n1D\tO\t1D\tO\nchar B-Data_Type char O\narray B-Data_Structure array O\n,\tO\t,\tO\npopulate\tO\tpopulate\tO\nit\tO\tit\tO\naccordingly\tO\taccordingly\tO\nto\tO\tto\tO\n2D\tO\t2D\tO\nchar B-Data_Type char O\narray B-Data_Structure array O\nbased\tO\tbased\tO\non\tO\ton\tO\npositions\tO\tpositions\tO\n,\tO\t,\tO\n[ B-Value [ O\n0 I-Value 0 O\n] I-Value ] O\n[ B-Value [ O\n0 I-Value 0 O\n] I-Value ] O\n,\tO\t,\tO\n[ B-Value [ O\n0 I-Value 0 O\n] I-Value ] O\n[ B-Value [ O\n1 I-Value 1 O\n] I-Value ] O\netc\tO\tetc\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n,\tO\t,\tO\n\t\ncharArray B-Variable charArray O\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ncreated\tO\tcreated\tO\nas\tO\tas\tO\na\tO\ta\tO\n6\tO\t6\tO\nby\tO\tby\tO\n6\tO\t6\tO\narray.char[][] B-Data_Structure array.char[][] B-Code_Block\ncharArray B-Code_Block charArray I-Code_Block\n= I-Code_Block = I-Code_Block\nnew I-Code_Block new I-Code_Block\nchar[6][6] I-Code_Block char[6][6] I-Code_Block\n; I-Code_Block ; I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5504 I-Code_Block Q_5504 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nprinting\tO\tprinting\tO\nof\tO\tof\tO\nmessages\tO\tmessages\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\n's\tO\t's\tO\ni B-Variable i O\nposition\tO\tposition\tO\nand\tO\tand\tO\nto\tO\tto\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncorresponding\tO\tcorresponding\tO\n2D\tO\t2D\tO\narray B-Data_Structure array O\npositions\tO\tpositions\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\npopulate\tO\tpopulate\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nby\tO\tby\tO\nassigning\tO\tassigning\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nappreciate\tO\tappreciate\tO\nany\tO\tany\tO\ntips\tO\ttips\tO\nand\tO\tand\tO\nguidance\tO\tguidance\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43041539\tO\t43041539\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43041539/\tO\thttps://stackoverflow.com/questions/43041539/\tO\n\t\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nin\tO\tin\tO\n6*6\tO\t6*6\tO\ncharacter B-Data_Type character O\narray B-Data_Structure array O\nwithout\tO\twithout\tO\ngetting\tO\tgetting\tO\nexception B-Class exception O\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6219 I-Code_Block A_6219 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43041539\tO\t43041539\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43041539/\tO\thttps://stackoverflow.com/questions/43041539/\tO\n\t\n\t\nThe\tO\tThe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nhas\tO\thas\tO\nentered\tO\tentered\tO\n36\tO\t36\tO\ncharacters\tO\tcharacters\tO\nexactly\tO\texactly\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nchar B-Data_Type char O\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nLive\tO\tLive\tO\nDemo\tO\tDemo\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6220 I-Code_Block A_6220 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\n1D\tO\t1D\tO\narray B-Data_Structure array O\nas\tO\tas\tO\na\tO\ta\tO\nflat\tO\tflat\tO\n2D\tO\t2D\tO\narray B-Data_Structure array O\n,\tO\t,\tO\nor\tO\tor\tO\nparse\tO\tparse\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\na\tO\ta\tO\n2D\tO\t2D\tO\narray B-Data_Structure array O\nin\tO\tin\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6221 I-Code_Block A_6221 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43678707\tO\t43678707\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43678707/\tO\thttps://stackoverflow.com/questions/43678707/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nlist B-Data_Structure list O\nfrom\tO\tfrom\tO\none\tO\tone\tO\ntable B-Data_Structure table O\n,\tO\t,\tO\nusing\tO\tusing\tO\ncontain\tO\tcontain\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\ntables B-Data_Structure tables O\nand\tO\tand\tO\nmake\tO\tmake\tO\nkeyField B-Variable keyField O\nfrom\tO\tfrom\tO\nfirst\tO\tfirst\tO\nTable B-Data_Structure Table O\nbut\tO\tbut\tO\nvalueField B-Variable valueField O\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nTable B-Data_Structure Table O\n+\tO\t+\tO\nkey B-Variable key O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntable B-Data_Structure table O\nCustomerNumbers B-Variable CustomerNumbers O\n(\tO\t(\tO\nkey\tO\tkey\tO\n=>\tO\t=>\tO\ncustomer_number\tO\tcustomer_number\tO\n)\tO\t)\tO\n->\tO\t->\tO\nUsers\tO\tUsers\tO\n->\tO\t->\tO\nGroups\tO\tGroups\tO\n(\tO\t(\tO\nvalue\tO\tvalue\tO\n=>\tO\t=>\tO\nname\tO\tname\tO\n)\tO\t)\tO\n\t\nNeed\tO\tNeed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nlist B-Data_Structure list O\nwith\tO\twith\tO\nall\tO\tall\tO\nCustomerNumbers.customer_number B-Class CustomerNumbers.customer_number O\nas\tO\tas\tO\nkey\tO\tkey\tO\nand\tO\tand\tO\nGroups.name B-Class Groups.name O\nplus\tO\tplus\tO\nkey B-Variable key O\nas\tO\tas\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nquery\tO\tquery\tO\n(\tO\t(\tO\nalso\tO\talso\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nmake\tO\tmake\tO\nstandard\tO\tstandard\tO\nclassic\tO\tclassic\tO\nphp B-Language php O\nforeach\tO\tforeach\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nlist B-Data_Structure list O\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5621 I-Code_Block Q_5621 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nresult\tO\tresult\tO\nshoud\tO\tshoud\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5622 I-Code_Block Q_5622 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlso\tO\tAlso\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nduplicated\tO\tduplicated\tO\nquestion\tO\tquestion\tO\n@drmonkeyninja B-User_Name @drmonkeyninja O\nbecause\tO\tbecause\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nexample\tO\texample\tO\n(\tO\t(\tO\nQuestion\tO\tQuestion\tO\n)\tO\t)\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nvirtual\tO\tvirtual\tO\nfield\tO\tfield\tO\noption\tO\toption\tO\nfrom\tO\tfrom\tO\nsingle\tO\tsingle\tO\nmodel\tO\tmodel\tO\n(\tO\t(\tO\nex\tO\tex\tO\n.\tO\t.\tO\n\t\nModel\tO\tModel\tO\nUsers\tO\tUsers\tO\nand\tO\tand\tO\ntake\tO\ttake\tO\nFirst\tO\tFirst\tO\nand\tO\tand\tO\nLast\tO\tLast\tO\nname\tO\tname\tO\nas\tO\tas\tO\none\tO\tone\tO\nfield\tO\tfield\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nvirtual\tO\tvirtual\tO\nfield\tO\tfield\tO\nfrom\tO\tfrom\tO\nmodel\tO\tmodel\tO\nCustomer\tO\tCustomer\tO\nNumbers\tO\tNumbers\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\nfield\tO\tfield\tO\nfrom\tO\tfrom\tO\nModel\tO\tModel\tO\nGroups\tO\tGroups\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nsolution\tO\tsolution\tO\nin\tO\tin\tO\npure\tO\tpure\tO\nphp B-Language php O\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhope\tO\thope\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nCakePhp B-Library CakePhp O\nsoultion\tO\tsoultion\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5623 I-Code_Block Q_5623 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18562928\tO\t18562928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18562928/\tO\thttps://stackoverflow.com/questions/18562928/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nbeginner\tO\tbeginner\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nfinding\tO\tfinding\tO\nit\tO\tit\tO\nvery\tO\tvery\tO\ndifficult\tO\tdifficult\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\none\tO\tone\tO\nconcept\tO\tconcept\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\nconcept\tO\tconcept\tO\n.\tO\t.\tO\n\t\nSolution\tO\tSolution\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1918 I-Code_Block Q_1918 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMyApp.Web B-Variable MyApp.Web O\nreferences\tO\treferences\tO\nMyApp.Logic B-Variable MyApp.Logic O\n,\tO\t,\tO\nand\tO\tand\tO\nMyApp.Logic B-Variable MyApp.Logic O\nreferences\tO\treferences\tO\nMyApp.Data B-Variable MyApp.Data O\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nsimply\tO\tsimply\tO\nbind\tO\tbind\tO\na\tO\ta\tO\ngridview B-User_Interface_Element gridview O\nby\tO\tby\tO\nthe\tO\tthe\tO\ntablename B-Variable tablename O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nchosen\tO\tchosen\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndropdownlist B-User_Interface_Element dropdownlist O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nhundreds\tO\thundreds\tO\nand\tO\tand\tO\nmore\tO\tmore\tO\ntables B-Data_Structure tables O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npurpose\tO\tpurpose\tO\nhere\tO\there\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n(\tO\t(\tO\nwith\tO\twith\tO\npaging\tO\tpaging\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n\"\tO\t\"\tO\nGet_Data B-Class Get_Data O\n\"\tO\t\"\tO\non\tO\ton\tO\nproject\tO\tproject\tO\nMyApp.Data B-Variable MyApp.Data O\nhas\tO\thas\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1919 I-Code_Block Q_1919 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFrom\tO\tFrom\tO\nMyApp.Logic B-Variable MyApp.Logic O\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\njust\tO\tjust\tO\npassing\tO\tpassing\tO\nthe\tO\tthe\tO\ndatatable B-Data_Structure datatable O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nMyApp.Data B-Variable MyApp.Data O\ntier\tO\ttier\tO\nto\tO\tto\tO\nMyApp.Web B-Variable MyApp.Web O\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\ngridview B-User_Interface_Element gridview O\nis\tO\tis\tO\nbound\tO\tbound\tO\nand\tO\tand\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nreally\tO\treally\tO\nbad\tO\tbad\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ndatatable B-Data_Structure datatable O\nin\tO\tin\tO\nUI\tO\tUI\tO\nlevel\tO\tlevel\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nit\tO\tit\tO\na\tO\ta\tO\nbad\tO\tbad\tO\ndesign\tO\tdesign\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18562928\tO\t18562928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18562928/\tO\thttps://stackoverflow.com/questions/18562928/\tO\n\t\n\t\nThe\tO\tThe\tO\nnotion\tO\tnotion\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbad\tO\tbad\tO\npractice\tO\tpractice\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nUI\tO\tUI\tO\nto\tO\tto\tO\ncreate/load/consume\tO\tcreate/load/consume\tO\na\tO\ta\tO\ndatatable B-Data_Structure datatable O\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\npreferable\tO\tpreferable\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\ninto\tO\tinto\tO\nlayers\tO\tlayers\tO\nthat\tO\tthat\tO\nspecialize\tO\tspecialize\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\ncommon\tO\tcommon\tO\nsplit\tO\tsplit\tO\nis\tO\tis\tO\nto\tO\tto\tO\nhave\tO\thave\tO\n3\tO\t3\tO\nlayers\tO\tlayers\tO\n:\tO\t:\tO\n\t\nLayer\tO\tLayer\tO\n1\tO\t1\tO\nis\tO\tis\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nlayer\tO\tlayer\tO\nresponsible\tO\tresponsible\tO\nfor\tO\tfor\tO\ncommunicating\tO\tcommunicating\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\npopulating\tO\tpopulating\tO\ndomain\tO\tdomain\tO\nobjects\tO\tobjects\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndomain\tO\tdomain\tO\nobjects\tO\tobjects\tO\nare\tO\tare\tO\ntypically\tO\ttypically\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nlayer\tO\tlayer\tO\n2\tO\t2\tO\nwhich\tO\twhich\tO\nalso\tO\talso\tO\nholds\tO\tholds\tO\nthe\tO\tthe\tO\nbusiness\tO\tbusiness\tO\nlogic\tO\tlogic\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nby\tO\tby\tO\ndomain\tO\tdomain\tO\nobjects\tO\tobjects\tO\ni\tO\ti\tO\nmean\tO\tmean\tO\nclasses\tO\tclasses\tO\nthat\tO\tthat\tO\nrepresent\tO\trepresent\tO\nreal\tO\treal\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\ncustomer\tO\tcustomer\tO\n,\tO\t,\tO\nbank\tO\tbank\tO\naccount\tO\taccount\tO\n,\tO\t,\tO\nhotel\tO\thotel\tO\nroom\tO\troom\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nby\tO\tby\tO\nbusiness\tO\tbusiness\tO\nlogic\tO\tlogic\tO\ni\tO\ti\tO\nmean\tO\tmean\tO\nthe\tO\tthe\tO\nrules\tO\trules\tO\nthat\tO\tthat\tO\napply\tO\tapply\tO\nto\tO\tto\tO\ndomain\tO\tdomain\tO\nobjects\tO\tobjects\tO\nduring\tO\tduring\tO\nevents\tO\tevents\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nhotel\tO\thotel\tO\nroom\tO\troom\tO\nis\tO\tis\tO\nbooked\tO\tbooked\tO\na\tO\ta\tO\nconfirmation\tO\tconfirmation\tO\nis\tO\tis\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncustomer\tO\tcustomer\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nthird\tO\tthird\tO\nlayer\tO\tlayer\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nlayer\tO\tlayer\tO\n,\tO\t,\tO\nto\tO\tto\tO\nsimplyfy\tO\tsimplyfy\tO\ncoding\tO\tcoding\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nonly\tO\tonly\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nwhats\tO\twhats\tO\nin\tO\tin\tO\nlayer\tO\tlayer\tO\n2\tO\t2\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nrecommendation\tO\trecommendation\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\ndatatables B-Data_Structure datatables O\nin\tO\tin\tO\nyour\tO\tyour\tO\nUI\tO\tUI\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nmotivation\tO\tmotivation\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nreally\tO\treally\tO\nstart\tO\tstart\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nis\tO\tis\tO\nbig\tO\tbig\tO\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\ndevelopers\tO\tdevelopers\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nit\tO\tit\tO\n,\tO\t,\tO\nor\tO\tor\tO\nyour\tO\tyour\tO\nusing\tO\tusing\tO\nunit\tO\tunit\tO\ntesting\tO\ttesting\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nsituation\tO\tsituation\tO\nthen\tO\tthen\tO\ni\tO\ti\tO\n'd\tO\t'd\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nfriendly\tO\tfriendly\tO\nmember\tO\tmember\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nteam\tO\tteam\tO\nto\tO\tto\tO\nexplain\tO\texplain\tO\nthis\tO\tthis\tO\nbetter\tO\tbetter\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nyou\tO\tyou\tO\nwriting\tO\twriting\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nthen\tO\tthen\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nworry\tO\tworry\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\n,\tO\t,\tO\nwrite\tO\twrite\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nread\tO\tread\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nbooks\tO\tbooks\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nstuff\tO\tstuff\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nmore\tO\tmore\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nrecommend\tO\trecommend\tO\nthe\tO\tthe\tO\ncraig B-User_Name craig O\nlarman I-User_Name larman O\nbook\tO\tbook\tO\non\tO\ton\tO\numl B-Language uml O\nand\tO\tand\tO\npatterns\tO\tpatterns\tO\n.\tO\t.\tO\n\t\nhope\tO\thope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28833382\tO\t28833382\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28833382/\tO\thttps://stackoverflow.com/questions/28833382/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nasp.net B-Library asp.net O\nwith\tO\twith\tO\njavascript B-Language javascript O\n.\tO\t.\tO\n\t\nJavascript B-Language Javascript O\nwork\tO\twork\tO\nfine\tO\tfine\tO\nwith\tO\twith\tO\nIE8 B-Application IE8 O\nand\tO\tand\tO\nsome\tO\tsome\tO\nIE11 B-Application IE11 O\n.\tO\t.\tO\n\t\nJavascript B-Language Javascript O\nis\tO\tis\tO\nable\tO\table\tO\nto\tO\tto\tO\nresponse\tO\tresponse\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nuser\tO\tuser\tO\nwho\tO\twho\tO\nuse\tO\tuse\tO\nIE11 B-Application IE11 O\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nresponse\tO\tresponse\tO\nto\tO\tto\tO\nother\tO\tother\tO\nusers\tO\tusers\tO\nwho\tO\twho\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nIE11 B-Application IE11 O\neven\tO\teven\tO\nthough\tO\tthough\tO\nthey\tO\tthey\tO\nalready\tO\talready\tO\nhave\tO\thave\tO\nIE B-Application IE O\nsetting\tO\tsetting\tO\nscript\tO\tscript\tO\nenabled\tO\tenabled\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalready\tO\talready\tO\nupdate\tO\tupdate\tO\nto\tO\tto\tO\n4.5 B-Version 4.5 O\n.NET B-Library .NET O\nFramework\tO\tFramework\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nstill\tO\tstill\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nusers\tO\tusers\tO\ntold\tO\ttold\tO\nme\tO\tme\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nused\tO\tused\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwell\tO\twell\tO\nbefore\tO\tbefore\tO\nwhile\tO\twhile\tO\nhe\tO\the\tO\nusing\tO\tusing\tO\nIE11 B-Application IE11 O\nand\tO\tand\tO\nhe\tO\the\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nanything\tO\tanything\tO\nsince\tO\tsince\tO\nuntil\tO\tuntil\tO\nweb\tO\tweb\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nhim\tO\thim\tO\n.\tO\t.\tO\n\t\nAnyone\tO\tAnyone\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\ncould\tO\tcould\tO\ncause\tO\tcause\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\none\tO\tone\tO\nof\tO\tof\tO\nuser\tO\tuser\tO\nwho\tO\twho\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nsource\tO\tsource\tO\nerror\tO\terror\tO\non\tO\ton\tO\njavascript B-File_Type javascript O\nfile\tO\tfile\tO\n,\tO\t,\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28833382\tO\t28833382\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28833382/\tO\thttps://stackoverflow.com/questions/28833382/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nin\tO\tin\tO\nIE B-Application IE O\nsetting\tO\tsetting\tO\nunder\tO\tunder\tO\nSecurity\tO\tSecurity\tO\ntab B-User_Interface_Element tab O\nby\tO\tby\tO\nremoving\tO\tremoving\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nURL\tO\tURL\tO\nfrom\tO\tfrom\tO\ntrusted\tO\ttrusted\tO\nsites\tO\tsites\tO\nand\tO\tand\tO\nmove\tO\tmove\tO\nurl\tO\turl\tO\nto\tO\tto\tO\nlocal\tO\tlocal\tO\nintranet\tO\tintranet\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14668198\tO\t14668198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14668198/\tO\thttps://stackoverflow.com/questions/14668198/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nUICollectionViewController B-Class UICollectionViewController O\nwith\tO\twith\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\ndataset\tO\tdataset\tO\n(\tO\t(\tO\n>2000\tO\t>2000\tO\nitems\tO\titems\tO\n)\tO\t)\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nlayout\tO\tlayout\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nsections\tO\tsections\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nscrolling\tO\tscrolling\tO\nperformance\tO\tperformance\tO\nbecame\tO\tbecame\tO\nextremely\tO\textremely\tO\nchoppy\tO\tchoppy\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nInstruments\tO\tInstruments\tO\nand\tO\tand\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ntests\tO\ttests\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndetermined\tO\tdetermined\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nlookup\tO\tlookup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlayout\tO\tlayout\tO\n(\tO\t(\tO\nlayoutAttributesForElementsInRect B-Function layoutAttributesForElementsInRect B-Code_Block\n: I-Function : I-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncache\tO\tcache\tO\nlayout\tO\tlayout\tO\nattributes\tO\tattributes\tO\nin\tO\tin\tO\nprepareLayout B-Function prepareLayout B-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nlook\tO\tlook\tO\nthem\tO\tthem\tO\nup\tO\tup\tO\nhere\tO\there\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfastest\tO\tfastest\tO\nway\tO\tway\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1401 I-Code_Block Q_1401 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\n~\tO\t~\tO\n25%\tO\t25%\tO\nof\tO\tof\tO\ncpu B-Device cpu O\ntime\tO\ttime\tO\nwas\tO\twas\tO\nspent\tO\tspent\tO\nenumerating\tO\tenumerating\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nmostly\tO\tmostly\tO\non\tO\ton\tO\n[ B-Code_Block [ B-Code_Block\nNSIndexPath I-Code_Block NSIndexPath I-Code_Block\nisEqual I-Code_Block isEqual I-Code_Block\n: I-Code_Block : I-Code_Block\n] I-Code_Block ] I-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nfaster\tO\tfaster\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhash\tO\thash\tO\nthese\tO\tthese\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\na\tO\ta\tO\ncross\tO\tcross\tO\ntest\tO\ttest\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndata\tO\tdata\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsectioned\tO\tsectioned\tO\nUICollectionViewFlowLayout B-Class UICollectionViewFlowLayout O\nand\tO\tand\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nsmooth\tO\tsmooth\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14668198\tO\t14668198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14668198/\tO\thttps://stackoverflow.com/questions/14668198/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nturns\tO\tturns\tO\nout\tO\tout\tO\nusing\tO\tusing\tO\narrays B-Data_Structure arrays O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ndictionaries B-Data_Structure dictionaries O\n,\tO\t,\tO\nand\tO\tand\tO\nfiltering\tO\tfiltering\tO\nby\tO\tby\tO\nan\tO\tan\tO\nNSPredicate B-Class NSPredicate O\nwas\tO\twas\tO\nmuch\tO\tmuch\tO\nfaster\tO\tfaster\tO\nsince\tO\tsince\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\nindices\tO\tindices\tO\nwere\tO\twere\tO\nalready\tO\talready\tO\nknown\tO\tknown\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23708895\tO\t23708895\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23708895/\tO\thttps://stackoverflow.com/questions/23708895/\tO\n\t\n\t\nMy\tO\tMy\tO\nproject\tO\tproject\tO\nwas\tO\twas\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nDjango B-Library Django O\n1.5.4 B-Version 1.5.4 O\nand\tO\tand\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nupgrade\tO\tupgrade\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\npip B-Code_Block pip B-Code_Block\ninstall I-Code_Block install I-Code_Block\n-U I-Code_Block -U I-Code_Block\n-I I-Code_Block -I I-Code_Block\ndjango I-Code_Block django I-Code_Block\nand\tO\tand\tO\nnow\tO\tnow\tO\npip B-Code_Block pip B-Code_Block\nfreeze I-Code_Block freeze I-Code_Block\nshows\tO\tshows\tO\nDjango B-Library Django O\n1.6.5 B-Version 1.6.5 O\n(\tO\t(\tO\nclearly\tO\tclearly\tO\ndjango B-Library django O\nhas\tO\thas\tO\nupgraded\tO\tupgraded\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nin\tO\tin\tO\nvirtualen B-Code_Block virtualen B-Code_Block\nv) I-Code_Block v) I-Code_Block\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nusing\tO\tusing\tO\nDjango B-Library Django O\n1.5.4 B-Version 1.5.4 O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nupgraded\tO\tupgraded\tO\nversion\tO\tversion\tO\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ncomments\tO\tcomments\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\neverything\tO\teverything\tO\nbut\tO\tbut\tO\nunfortunately\tO\tunfortunately\tO\nnothing\tO\tnothing\tO\nworked\tO\tworked\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nre-deploy\tO\tre-deploy\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nsomeone\tO\tsomeone\tO\nexplains\tO\texplains\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nhappened\tO\thappened\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23708895\tO\t23708895\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23708895/\tO\thttps://stackoverflow.com/questions/23708895/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n--upgrade B-Code_Block --upgrade B-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\npip B-Code_Block pip B-Code_Block\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nupgrade\tO\tupgrade\tO\nPython B-Language Python O\npackages\tO\tpackages\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3240 I-Code_Block A_3240 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23708895\tO\t23708895\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23708895/\tO\thttps://stackoverflow.com/questions/23708895/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\nexpert\tO\texpert\tO\non\tO\ton\tO\neither\tO\teither\tO\nPython B-Language Python O\nor\tO\tor\tO\nDjango B-Library Django O\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nis\tO\tis\tO\nfollowing\tO\tfollowing\tO\nalong\tO\talong\tO\nthis\tO\tthis\tO\nreally\tO\treally\tO\nvery\tO\tvery\tO\ngood\tO\tgood\tO\nbook\tO\tbook\tO\n:\tO\t:\tO\nTest\tO\tTest\tO\nDriven\tO\tDriven\tO\nWeb\tO\tWeb\tO\nDevelopment\tO\tDevelopment\tO\nWith\tO\tWith\tO\nPython B-Language Python O\n(\tO\t(\tO\n2nd\tO\t2nd\tO\nEd\tO\tEd\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nuses\tO\tuses\tO\nDjango B-Library Django O\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nalso\tO\talso\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nWindoze B-Operating_System Windoze O\nmachine\tO\tmachine\tO\n(\tO\t(\tO\nW10 B-Operating_System W10 O\n)\tO\t)\tO\nwith\tO\twith\tO\nCygwin B-Application Cygwin O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nI\tO\tI\tO\nmention\tO\tmention\tO\nall\tO\tall\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\n,\tO\t,\tO\nhaving\tO\thaving\tO\ninstalled\tO\tinstalled\tO\nPython B-Language Python O\n3.6 B-Version 3.6 O\nin\tO\tin\tO\nmy\tO\tmy\tO\nCygwin B-Application Cygwin O\nsetup\tO\tsetup\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npip3 B-Code_Block pip3 O\n,\tO\t,\tO\nnot\tO\tnot\tO\npip B-Code_Block pip B-Code_Block\n,\tO\t,\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nDjango B-Library Django O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ninstalled\tO\tinstalled\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nDjango B-Library Django O\nwas\tO\twas\tO\n1.11.8 B-Version 1.11.8 O\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nofficial\tO\tofficial\tO\n\"\tO\t\"\tO\n(?)\tO\t(?)\tO\n\t\ntutorial\tO\ttutorial\tO\nhere\tO\there\tO\nthey\tO\tthey\tO\nwant\tO\twant\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nDjango B-Library Django O\n2.0 B-Version 2.0 O\ninstalled\tO\tinstalled\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuccessfully\tO\tsuccessfully\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7034 I-Code_Block A_7034 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\nsomeone\tO\tsomeone\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nsomeone\tO\tsomeone\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nknowledgeable\tO\tknowledgeable\tO\nthan\tO\tthan\tO\nme\tO\tme\tO\ncan\tO\tcan\tO\ntalk\tO\ttalk\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nneed\tO\tneed\tO\nor\tO\tor\tO\notherwise\tO\totherwise\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npip3 B-Code_Block pip3 B-Code_Block\nfor\tO\tfor\tO\nall\tO\tall\tO\nPython B-Language Python O\n3.x B-Version 3.x O\nactivity\tO\tactivity\tO\n??\tO\t??\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45605404\tO\t45605404\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45605404/\tO\thttps://stackoverflow.com/questions/45605404/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\njava B-Language java O\nbased\tO\tbased\tO\nrate\tO\trate\tO\nstreaming\tO\tstreaming\tO\napplication\tO\tapplication\tO\ndeployed\tO\tdeployed\tO\nin\tO\tin\tO\nweblogic B-Application weblogic O\n,\tO\t,\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nnode B-Application node O\njs I-Application js O\nand\tO\tand\tO\nredis B-Application redis O\nfor\tO\tfor\tO\nreal-time\tO\treal-time\tO\nstreaming\tO\tstreaming\tO\nrates\tO\trates\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nnode B-Application node O\njs I-Application js O\nand\tO\tand\tO\nredis B-Application redis O\nto\tO\tto\tO\nmy\tO\tmy\tO\nexisting\tO\texisting\tO\njava B-Language java O\nbased\tO\tbased\tO\napplication\tO\tapplication\tO\ndeployed\tO\tdeployed\tO\nin\tO\tin\tO\nweblogic B-Application weblogic O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19114353\tO\t19114353\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19114353/\tO\thttps://stackoverflow.com/questions/19114353/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nwriting\tO\twriting\tO\nsome\tO\tsome\tO\nsoftware\tO\tsoftware\tO\nthat\tO\tthat\tO\ntalks\tO\ttalks\tO\nto\tO\tto\tO\nexternal\tO\texternal\tO\nhardware\tO\thardware\tO\nvia\tO\tvia\tO\na\tO\ta\tO\ndll B-Library dll O\n(\tO\t(\tO\nmoving\tO\tmoving\tO\nsome\tO\tsome\tO\nmotors\tO\tmotors\tO\nand\tO\tand\tO\nreading\tO\treading\tO\nsome\tO\tsome\tO\nvalues\tO\tvalues\tO\nback\tO\tback\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncalls\tO\tcalls\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndll B-Library dll O\nare\tO\tare\tO\nblocking\tO\tblocking\tO\nand\tO\tand\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nreturn\tO\treturn\tO\nfor\tO\tfor\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsoftware\tO\tsoftware\tO\nperforms\tO\tperforms\tO\na\tO\ta\tO\nscan\tO\tscan\tO\nby\tO\tby\tO\nmoving\tO\tmoving\tO\nthe\tO\tthe\tO\nhardware\tO\thardware\tO\n,\tO\t,\tO\ntaking\tO\ttaking\tO\na\tO\ta\tO\nreading\tO\treading\tO\nand\tO\tand\tO\nrepeating\tO\trepeating\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\npoints\tO\tpoints\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nscan\tO\tscan\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\n30\tO\t30\tO\nminutes\tO\tminutes\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nthe\tO\tthe\tO\nscan\tO\tscan\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nobviously\tO\tobviously\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nGUI B-User_Interface_Element GUI O\nto\tO\tto\tO\nbe\tO\tbe\tO\nresponsive\tO\tresponsive\tO\nand\tO\tand\tO\na\tO\ta\tO\nlive\tO\tlive\tO\ngraph B-Data_Structure graph O\n(\tO\t(\tO\nin\tO\tin\tO\nan\tO\tan\tO\nMDI B-Class MDI O\nChild I-Class Child O\n)\tO\t)\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nincoming\tO\tincoming\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nupdated\tO\tupdated\tO\nat\tO\tat\tO\neach\tO\teach\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nMultithreading\tO\tMultithreading\tO\nseems\tO\tseems\tO\nthe\tO\tthe\tO\nobvious\tO\tobvious\tO\nchoice\tO\tchoice\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nthread\tO\tthread\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\ntalk\tO\ttalk\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nVCL B-Library VCL O\nthread\tO\tthread\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ngraph B-Data_Structure graph O\nduring\tO\tduring\tO\na\tO\ta\tO\nscan\tO\tscan\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nTThread B-Class TThread O\ndescendant\tO\tdescendant\tO\nthat\tO\tthat\tO\nperforms\tO\tperforms\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nscan\tO\tscan\tO\nlogic\tO\tlogic\tO\n'\tO\t'\tO\nand\tO\tand\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nof\tO\tof\tO\ndoubles B-Data_Type doubles O\nin\tO\tin\tO\nthe\tO\tthe\tO\npublic\tO\tpublic\tO\nvar B-Data_Type var O\nsection\tO\tsection\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nChildForm B-Class ChildForm O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\nout\tO\tout\tO\nthis\tO\tthis\tO\narray B-Data_Structure array O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhether\tO\twhether\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nSynchronize B-Function Synchronize O\nor\tO\tor\tO\nCriticalSection B-Function CriticalSection O\nor\tO\tor\tO\nPostMessage B-Function PostMessage O\nor\tO\tor\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\ntime\tO\ttime\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nadded\tO\tadded\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nVCL B-Library VCL O\nthread\tO\tthread\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ngraph B-Data_Structure graph O\n.\tO\t.\tO\n\t\nShould\tO\tShould\tO\nI\tO\tI\tO\nreally\tO\treally\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nintermediary\tO\tintermediary\tO\nobject\tO\tobject\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\na\tO\ta\tO\nglobal B-Data_Type global O\nvar I-Data_Type var O\nand\tO\tand\tO\naccess\tO\taccess\tO\nthis\tO\tthis\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nThread B-Class Thread O\nand\tO\tand\tO\nthe\tO\tthe\tO\nChildForm B-Class ChildForm O\nseparately\tO\tseparately\tO\nsomehow\tO\tsomehow\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19114353\tO\t19114353\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19114353/\tO\thttps://stackoverflow.com/questions/19114353/\tO\n\t\n\t\nI\tO\tI\tO\nfind\tO\tfind\tO\nthat\tO\tthat\tO\npopulating\tO\tpopulating\tO\na\tO\ta\tO\nTThreadList B-Class TThreadList B-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nposting\tO\tposting\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n,\tO\t,\tO\nthen\tO\tthen\tO\nprocessing\tO\tprocessing\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\nand\tO\tand\tO\neasily\tO\teasily\tO\nmaintainable\tO\tmaintainable\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nstore\tO\tstore\tO\nas\tO\tas\tO\nmany\tO\tmany\tO\nreadings\tO\treadings\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n,\tO\t,\tO\nand\tO\tand\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nreceived\tO\treceived\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nsimply\tO\tsimply\tO\nprocess\tO\tprocess\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nat\tO\tat\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nDefine\tO\tDefine\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nreadings\tO\treadings\tO\n,\tO\t,\tO\ninstantiate\tO\tinstantiate\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nin\tO\tin\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\nfree\tO\tfree\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\npop\tO\tpop\tO\nthem\tO\tthem\tO\noff\tO\toff\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19114353\tO\t19114353\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19114353/\tO\thttps://stackoverflow.com/questions/19114353/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninvest\tO\tinvest\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nmore\tO\tmore\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nSynchronize B-Function Synchronize O\ncall\tO\tcall\tO\nwhich\tO\twhich\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nblocks\tO\tblocks\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nFIFO\tO\tFIFO\tO\nqueue B-Data_Structure queue O\nwith\tO\twith\tO\nmessaging\tO\tmessaging\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nflow\tO\tflow\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nthread\tO\tthread\tO\nputs\tO\tputs\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nqueue B-Data_Structure queue O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nthread\tO\tthread\tO\npost\tO\tpost\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\nwindow\tO\twindow\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\none\tO\tone\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ncare\tO\tcare\tO\n:)\tO\t:)\tO\n\t\nYou\tO\tYou\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nand\tO\tand\tO\nprocess\tO\tprocess\tO\nany\tO\tany\tO\nmessages\tO\tmessages\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nqueue B-Data_Structure queue O\nas\tO\tas\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\nfit\tO\tfit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nthe\tO\tthe\tO\nqueue B-Data_Structure queue O\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2533 I-Code_Block A_2533 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nput\tO\tput\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nqueue B-Data_Structure queue O\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2534 I-Code_Block A_2534 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nprocessing\tO\tprocessing\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2535 I-Code_Block A_2535 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwritten\tO\twritten\tO\nwithout\tO\twithout\tO\nDelphi B-Application Delphi O\nand\tO\tand\tO\nchecks\tO\tchecks\tO\nso\tO\tso\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ncontain\tO\tcontain\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshowed\tO\tshowed\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nusing\tO\tusing\tO\nmy\tO\tmy\tO\nfreely\tO\tfreely\tO\navailable\tO\tavailable\tO\nthread\tO\tthread\tO\nsafe\tO\tsafe\tO\nqueue B-Data_Structure queue O\nand\tO\tand\tO\nTAnyValue B-Variable TAnyValue O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nboth\tO\tboth\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttp://www.cromis.net/blog/downloads/\tO\thttp://www.cromis.net/blog/downloads/\tO\n\t\nAlso\tO\tAlso\tO\nplease\tO\tplease\tO\nnote\tO\tnote\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\ndo\tO\tdo\tO\nany\tO\tany\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nPostMessage B-Function PostMessage O\nwas\tO\twas\tO\nactually\tO\tactually\tO\nsent\tO\tsent\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\ncheck\tO\tcheck\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nproduction\tO\tproduction\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45631939\tO\t45631939\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45631939/\tO\thttps://stackoverflow.com/questions/45631939/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\napp\tO\tapp\tO\nwhereby\tO\twhereby\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ninputs\tO\tinputs\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nform B-User_Interface_Element form O\nand\tO\tand\tO\nthen\tO\tthen\tO\nhits\tO\thits\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\n,\tO\t,\tO\nopens\tO\topens\tO\nup\tO\tup\tO\na\tO\ta\tO\nemailing\tO\temailing\tO\napp\tO\tapp\tO\nand\tO\tand\tO\nsends\tO\tsends\tO\nit\tO\tit\tO\noff\tO\toff\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\naddress\tO\taddress\tO\nput\tO\tput\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n3\tO\t3\tO\ncheckboxes B-User_Interface_Element checkboxes O\n,\tO\t,\tO\none\tO\tone\tO\nthat\tO\tthat\tO\nasks\tO\tasks\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nwants\tO\twants\tO\na\tO\ta\tO\ncall\tO\tcall\tO\nback\tO\tback\tO\n,\tO\t,\tO\none\tO\tone\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nwant\tO\twant\tO\nan\tO\tan\tO\nemail\tO\temail\tO\nback\tO\tback\tO\nand\tO\tand\tO\none\tO\tone\tO\nsaying\tO\tsaying\tO\nno\tO\tno\tO\nthanks\tO\tthanks\tO\nto\tO\tto\tO\nboth\tO\tboth\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncurrent\tO\tcurrent\tO\njava B-Language java O\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5979 I-Code_Block Q_5979 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nwhich\tO\twhich\tO\ncalls\tO\tcalls\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5980 I-Code_Block Q_5980 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nline\tO\tline\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncheckbox B-Class checkbox O\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nback\tO\tback\tO\nbox B-User_Interface_Element box O\nwas\tO\twas\tO\nticked\tO\tticked\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nsay\tO\tsay\tO\n\"\tO\t\"\tO\nThe\tO\tThe\tO\nuser\tO\tuser\tO\nrequests\tO\trequests\tO\na\tO\ta\tO\ncall\tO\tcall\tO\nback\tO\tback\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nboth\tO\tboth\tO\ncall\tO\tcall\tO\nand\tO\tand\tO\nemail\tO\temail\tO\nare\tO\tare\tO\nticked\tO\tticked\tO\nthen\tO\tthen\tO\n\"\tO\t\"\tO\nThe\tO\tThe\tO\nuser\tO\tuser\tO\nrequests\tO\trequests\tO\na\tO\ta\tO\ncall\tO\tcall\tO\nor\tO\tor\tO\nemail\tO\temail\tO\nback\tO\tback\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nno\tO\tno\tO\nthanks\tO\tthanks\tO\ncheckbox B-User_Interface_Element checkbox O\nis\tO\tis\tO\nticked\tO\tticked\tO\nthen\tO\tthen\tO\n\"\tO\t\"\tO\nThe\tO\tThe\tO\nuser\tO\tuser\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nrequire\tO\trequire\tO\nan\tO\tan\tO\nupdate\tO\tupdate\tO\nwhen\tO\twhen\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nresolved\tO\tresolved\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45631939\tO\t45631939\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45631939/\tO\thttps://stackoverflow.com/questions/45631939/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29070171\tO\t29070171\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29070171/\tO\thttps://stackoverflow.com/questions/29070171/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ndataset\tO\tdataset\tO\npattern\tO\tpattern\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nrest B-Library rest O\nservice\tO\tservice\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nangular B-Library angular O\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3447 I-Code_Block Q_3447 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nRight\tO\tRight\tO\nnow\tO\tnow\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\npattern\tO\tpattern\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3448 I-Code_Block Q_3448 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nProblem\tO\tProblem\tO\nis\tO\tis\tO\ndata\tO\tdata\tO\nfield\tO\tfield\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncreating\tO\tcreating\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\noutput\tO\toutput\tO\nwhich\tO\twhich\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\ngenerates\tO\tgenerates\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3449 I-Code_Block Q_3449 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29070171\tO\t29070171\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29070171/\tO\thttps://stackoverflow.com/questions/29070171/\tO\n\t\n\t\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nYou\tO\tYou\tO\nnee\tO\tnee\tO\na\tO\ta\tO\nloop\tO\tloop\tO\nfor\tO\tfor\tO\ndataname B-Variable dataname B-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4100 I-Code_Block A_4100 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29070171\tO\t29070171\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29070171/\tO\thttps://stackoverflow.com/questions/29070171/\tO\n\t\n\t\npush() B-Function push() O\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\narray B-Data_Structure array O\n's\tO\t's\tO\nlength\tO\tlength\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4098 I-Code_Block A_4098 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nconcat() B-Function concat() O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4099 I-Code_Block A_4099 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10252987\tO\t10252987\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10252987/\tO\thttps://stackoverflow.com/questions/10252987/\tO\n\t\n\t\nSOLUTION\tO\tSOLUTION\tO\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nget\tO\tget\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nbit\tO\tbit\tO\noldish\tO\toldish\tO\nSymfony2 B-Application Symfony2 O\nrelease\tO\trelease\tO\n(\tO\t(\tO\n2.0-RC6 B-Version 2.0-RC6 O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\n__construct B-Function __construct B-Code_Block\nof\tO\tof\tO\nRoleSecurityIdentity B-Class RoleSecurityIdentity B-Code_Block\n(\tO\t(\tO\nreported\tO\treported\tO\nback\tO\tback\tO\nin\tO\tin\tO\nDecember\tO\tDecember\tO\n'\tO\t'\tO\n10\tO\t10\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\ninstance\tO\tinstance\tB-Code_Block\nof\tO\tof\tI-Code_Block\nRole B-Class Role I-Code_Block\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ninstance\tO\tinstance\tB-Code_Block\nof\tO\tof\tI-Code_Block\nRoleInstance B-Class RoleInstance I-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\nprobably\tO\tprobably\tO\nclose\tO\tclose\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\npretty\tO\tpretty\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nwhole\tO\twhole\tO\nACL B-Data_Structure ACL B-Code_Block\nconcept\tO\tconcept\tO\nin\tO\tin\tO\nSymfony2 B-Application Symfony2 B-Code_Block\nbut\tO\tbut\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nbasics\tO\tbasics\tO\nbehind\tO\tbehind\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nLast\tO\tLast\tO\nnight\tO\tnight\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nnext\tO\tnext\tO\nscenario\tO\tscenario\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\nuser\tO\tuser\tO\nroles\tO\troles\tO\n(\tO\t(\tO\nROLE_GROUP1 B-Variable ROLE_GROUP1 B-Code_Block\n,\tO\t,\tO\nROLE_GROUP B-Variable ROLE_GROUP B-Code_Block\n2) I-Variable 2) I-Code_Block\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsetup\tO\tsetup\tO\nobject-level\tO\tobject-level\tO\nACL B-Class ACL B-Code_Block\nfor\tO\tfor\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ngroups\tO\tgroups\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nuser\tO\tuser\tO\nwith\tO\twith\tO\nROLE_GROUP1 B-Variable ROLE_GROUP1 B-Code_Block\nis\tO\tis\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nput\tO\tput\tO\nthis\tO\tthis\tO\nrole\tO\trole\tO\ninto\tO\tinto\tO\nACE B-Variable ACE B-Code_Block\n,\tO\t,\tO\notherwise\tO\totherwise\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nput\tO\tput\tO\nROLE_GROUP2 B-Variable ROLE_GROUP2 B-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nreally\tO\treally\tO\nalmost\tO\talmost\tO\nidentical\tO\tidentical\tO\nto\tO\tto\tO\nofficial\tO\tofficial\tO\ndocs\tO\tdocs\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_897 I-Code_Block Q_897 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nit\tO\tit\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\ngrant\tO\tgrant\tO\nall\tO\tall\tO\npermissions\tO\tpermissions\tO\nto\tO\tto\tO\nusers\tO\tusers\tO\nwith\tO\twith\tO\nROLE_GROUP1 B-Variable ROLE_GROUP1 B-Code_Block\nrole\tO\trole\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nTo\tO\tTo\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\npermissions\tO\tpermissions\tO\nI\tO\tI\tO\nused\tO\tused\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nfrom\tO\tfrom\tO\nofficial\tO\tofficial\tO\ndocs\tO\tdocs\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_898 I-Code_Block Q_898 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n..\tO\t..\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nalways\tO\talways\tO\nfails\tO\tfails\tO\n(\tO\t(\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nexception\tO\texception\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlooked\tO\tlooked\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nACL B-Data_Structure ACL O\ntables I-Data_Structure tables O\nand\tO\tand\tO\neverything\tO\teverything\tO\nseemed\tO\tseemed\tO\nnormal\tO\tnormal\tO\n,\tO\t,\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nsee\tO\tsee\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nRoleSecurityIdentity B-Class RoleSecurityIdentity O\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\nscenario\tO\tscenario\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nEDIT\tO\tEDIT\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\ndrilled\tO\tdrilled\tO\ndown\tO\tdown\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nSymfony B-Application Symfony O\n's\tO\t's\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\npermission\tO\tpermission\tO\ngrant\tO\tgrant\tO\nfails\tO\tfails\tO\nin\tO\tin\tO\nequals B-Function equals B-Code_Block\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nRoleSecurityIdentity B-Class RoleSecurityIdentity B-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_899 I-Code_Block Q_899 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nturns\tO\tturns\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\n$sid->getRole() B-Code_Block $sid->getRole() B-Code_Block\nis\tO\tis\tO\nstring B-Data_Type string B-Code_Block\n\"\tO\t\"\tO\nROLE_GROUP1 B-Variable ROLE_GROUP1 O\n\"\tO\t\"\tO\nwhile\tO\twhile\tO\n$ B-Code_Block $ B-Code_Block\nthis->role I-Code_Block this->role I-Code_Block\nis\tO\tis\tO\nRole B-Class Role B-Code_Block\nobject\tO\tobject\tO\nof\tO\tof\tO\nROLE_GROUP1 B-Variable ROLE_GROUP1 O\nrole\tO\trole\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10252987\tO\t10252987\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10252987/\tO\thttps://stackoverflow.com/questions/10252987/\tO\n\t\n\t\nJust\tO\tJust\tO\nto\tO\tto\tO\nmark\tO\tmark\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nas\tO\tas\tO\nresolved\tO\tresolved\tO\n.\tO\t.\tO\n\t\nSolution\tO\tSolution\tO\n:\tO\t:\tO\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nget\tO\tget\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nbit\tO\tbit\tO\noldish\tO\toldish\tO\nSymfony2 B-Application Symfony2 O\nrelease\tO\trelease\tO\n(\tO\t(\tO\n2.0-RC6 B-Version 2.0-RC6 O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\n__construct B-Function __construct O\nof\tO\tof\tO\nRoleSecurityIdentity B-Class RoleSecurityIdentity O\n(\tO\t(\tO\nreported\tO\treported\tO\nback\tO\tback\tO\nin\tO\tin\tO\nDecember\tO\tDecember\tO\n'\tO\t'\tO\n10\tO\t10\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nRole B-Class Role O\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nRoleInstance B-Class RoleInstance O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\nprobably\tO\tprobably\tO\nclose\tO\tclose\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48458649\tO\t48458649\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48458649/\tO\thttps://stackoverflow.com/questions/48458649/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\ntables\tO\ttables\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6448 I-Code_Block Q_6448 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ntwo\tO\ttwo\tO\ntables B-Data_Structure tables O\nare\tO\tare\tO\nrelated\tO\trelated\tO\nthrough\tO\tthrough\tO\nForeign-key B-Variable Foreign-key O\n: I-Variable : O\nFkOriginalTextId I-Variable FkOriginalTextId O\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nOriginalText B-Class OriginalText O\nwill\tO\twill\tO\nhave\tO\thave\tO\nkey/value B-Variable key/value O\npairs\tO\tpairs\tO\nfor\tO\tfor\tO\ndifferent\tO\tdifferent\tO\nlanguages\tO\tlanguages\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\nclient B-Application client O\nwants\tO\twants\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncustomized\tO\tcustomized\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\ngoes\tO\tgoes\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nCustomText B-Class CustomText O\ntable B-Data_Structure table O\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nOriginalText B-Class OriginalText O\n:\tO\t:\tO\nEmployee B-Variable Employee O\n,\tO\t,\tO\nCustomText B-Class CustomText O\n:\tO\t:\tO\nStaff-member B-Variable Staff-member O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nkey B-Variable key O\n:\tO\t:\tO\nEmployee B-Variable Employee O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nLambda/Linq B-Library Lambda/Linq O\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nof\tO\tof\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nlanguage\tO\tlanguage\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nOriginalText B-Class OriginalText O\ntable B-Data_Structure table O\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nTextValue B-Variable TextValue O\nshould\tO\tshould\tO\nbe\tO\tbe\tO\noverriden\tO\toverriden\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nreplacement\tO\treplacement\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nkey B-Variable key O\nin\tO\tin\tO\nthe\tO\tthe\tO\nCustomText B-Class CustomText O\ntable B-Data_Structure table O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\nmultiple\tO\tmultiple\tO\nSQL B-Language SQL O\nstatements\tO\tstatements\tO\nby\tO\tby\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nOriginalText B-Class OriginalText O\nvalues\tO\tvalues\tO\nto\tO\tto\tO\na\tO\ta\tO\ntemp B-Variable temp O\ntable B-Data_Structure table O\nand\tO\tand\tO\nlater\tO\tlater\tO\non\tO\ton\tO\nupdating\tO\tupdating\tO\nthem\tO\tthem\tO\nwith\tO\twith\tO\nCustomText B-Class CustomText O\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nPerhaps\tO\tPerhaps\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nCTE\tO\tCTE\tO\n?\tO\t?\tO\n\t\nP.S\tO\tP.S\tO\n.\tO\t.\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\nLINQ B-Library LINQ O\nor\tO\tor\tO\nLambda B-Library Lambda O\nexpressions\tO\texpressions\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48458649\tO\t48458649\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48458649/\tO\thttps://stackoverflow.com/questions/48458649/\tO\n\t\n\t\nAs\tO\tAs\tO\ntwo\tO\ttwo\tO\ntables B-Data_Structure tables O\nhave\tO\thave\tO\nrelations\tO\trelations\tO\nso\tO\tso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\neach\tO\teach\tO\nOriginalText B-Class OriginalText B-Code_Block\nitem\tO\titem\tO\nhas\tO\thas\tO\na\tO\ta\tO\nCustomText B-Class CustomText B-Code_Block\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nget\tO\tget\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\nCustomText B-Class CustomText B-Code_Block\nif\tO\tif\tO\nexists\tO\texists\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7097 I-Code_Block A_7097 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3055469\tO\t3055469\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3055469/\tO\thttps://stackoverflow.com/questions/3055469/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\njust\tO\tjust\tO\nnormalized\tO\tnormalized\tO\nthe\tO\tthe\tO\nfont B-Variable font O\nsize I-Variable size O\nwith\tO\twith\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_215 I-Code_Block Q_215 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nresize\tO\tresize\tO\nthe\tO\tthe\tO\nheading B-User_Interface_Element heading O\ntags\tO\ttags\tO\ngiving\tO\tgiving\tO\npercentages\tO\tpercentages\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n<h1>, B-HTML_XML_Tag <h1>, B-Code_Block\n<h2> I-HTML_XML_Tag <h2> I-Code_Block\n.\tO\t.\tO\n\t\nSomething\tO\tSomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_216 I-Code_Block Q_216 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nI\tO\tI\tO\ngave\tO\tgave\tO\na\tO\ta\tO\npercentage\tO\tpercentage\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nh2 B-HTML_XML_Tag h2 O\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhat\tO\twhat\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\npercentages\tO\tpercentages\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3055469\tO\t3055469\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3055469/\tO\thttps://stackoverflow.com/questions/3055469/\tO\n\t\n\t\nThe\tO\tThe\tO\npercentages\tO\tpercentages\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nwhatever\tO\twhatever\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\nnothing\tO\tnothing\tO\nsaying\tO\tsaying\tO\nthat\tO\tthat\tO\nan\tO\tan\tO\nH1 B-HTML_XML_Tag H1 O\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nbigger\tO\tbigger\tO\nthan\tO\tthan\tO\nan\tO\tan\tO\nH2 B-HTML_XML_Tag H2 O\n,\tO\t,\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3055469\tO\t3055469\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3055469/\tO\thttps://stackoverflow.com/questions/3055469/\tO\n\t\n\t\nView\tO\tView\tO\nthe\tO\tthe\tO\nfalowing\tO\tfalowing\tO\nlink\tO\tlink\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nsolve\tO\tsolve\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCSS B-Language CSS O\nFONT B-Variable FONT O\nSIZE I-Variable SIZE O\nem\tO\tem\tO\nvs\tO\tvs\tO\npx\tO\tpx\tO\nvs\tO\tvs\tO\npt\tO\tpt\tO\nvs\tO\tvs\tO\n%\tO\t%\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3055469\tO\t3055469\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3055469/\tO\thttps://stackoverflow.com/questions/3055469/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nwith\tO\twith\tO\na\tO\ta\tO\nconversion\tO\tconversion\tO\ntable B-User_Interface_Element table O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12285437\tO\t12285437\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12285437/\tO\thttps://stackoverflow.com/questions/12285437/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nclick\tO\tclick\tO\nevent\tO\tevent\tO\nto\tO\tto\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\nusing\tO\tusing\tO\nlive B-Function live O\nand\tO\tand\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\ntrigger\tO\ttrigger\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\nanyways\tO\tanyways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1159 I-Code_Block Q_1159 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nbutton B-User_Interface_Element button O\nis\tO\tis\tO\ncreated\tO\tcreated\tO\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12285437\tO\t12285437\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12285437/\tO\thttps://stackoverflow.com/questions/12285437/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\none() B-Function one() B-Code_Block\nwith\tO\twith\tO\ndelegated\tO\tdelegated\tO\nhandlers\tO\thandlers\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n(\tO\t(\tO\nin\tO\tin\tO\njQuery B-Library jQuery O\n1.7 B-Version 1.7 O\n+\tO\t+\tO\n)\tO\t)\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\ndeprecated\tO\tdeprecated\tO\nlive() B-Function live() B-Code_Block\nfunction\tO\tfunction\tO\nwith\tO\twith\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1600 I-Code_Block A_1600 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nreplace\tO\treplace\tO\ndocument B-Variable document B-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nclosest\tO\tclosest\tO\nnon-dynamic\tO\tnon-dynamic\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12285437\tO\t12285437\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12285437/\tO\thttps://stackoverflow.com/questions/12285437/\tO\n\t\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\noption\tO\toption\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.one B-Function .one O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nlive B-Function live O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nmakes\tO\tmakes\tO\nmore\tO\tmore\tO\nsense.\tO\tsense.\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nHiddenfield\tO\tHiddenfield\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\npage\tO\tpage\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nclick\tO\tclick\tO\nevent\tO\tevent\tO\nis\tO\tis\tO\ntriggered\tO\ttriggered\tO\nthen\tO\tthen\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nflag B-Variable flag O\nvalue.\tO\tvalue.\tO\n.\tO\t.\tO\n\t\nNext\tO\tNext\tO\ntime\tO\ttime\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nbutton\tO\tbutton\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nflag B-Variable flag O\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nalready\tO\talready\tO\nexecuted\tO\texecuted\tO\nonce\tO\tonce\tO\nthen\tO\tthen\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ninside\tO\tinside\tO\nit.\tO\tit.\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nhttp://jsfiddle.net/sushanth009/Fakb5/\tO\thttp://jsfiddle.net/sushanth009/Fakb5/\tO\n\t\nAlso\tO\tAlso\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\n.live B-Function .live O\nis\tO\tis\tO\ndeprecated\tO\tdeprecated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\njQuery B-Library jQuery O\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\npreferred\tO\tpreferred\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.on() B-Function .on() O\ninstead\tO\tinstead\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28312078\tO\t28312078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28312078/\tO\thttps://stackoverflow.com/questions/28312078/\tO\n\t\n\t\nWhy\tO\tWhy\tO\nam\tO\tam\tO\nI\tO\tI\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3298 I-Code_Block Q_3298 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\npretty\tO\tpretty\tO\nbad\tO\tbad\tO\nmistakes\tO\tmistakes\tO\n.\tO\t.\tO\n\t\nsorry\tO\tsorry\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndumb\tO\tdumb\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3299 I-Code_Block Q_3299 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\narrays B-Data_Structure arrays O\nwhich\tO\twhich\tO\nare\tO\tare\tO\nlists B-Data_Structure lists O\nin\tO\tin\tO\npython B-Language python O\n(\tO\t(\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\ncoding\tO\tcoding\tO\nand\tO\tand\tO\npython B-Language python O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28312078\tO\t28312078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28312078/\tO\thttps://stackoverflow.com/questions/28312078/\tO\n\t\n\t\nHere\tO\tHere\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3914 I-Code_Block A_3914 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\nassign\tO\tassign\tO\nplayerHand B-Variable playerHand O\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\nfrom\tO\tfrom\tO\nrandint B-Function randint B-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nan\tO\tan\tO\nint B-Data_Type int B-Code_Block\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3915 I-Code_Block A_3915 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\nindex\tO\tindex\tO\ninto\tO\tinto\tO\nplayerHand B-Variable playerHand B-Code_Block\nlike\tO\tlike\tO\nit\tO\tit\tO\nis\tO\tis\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28312078\tO\t28312078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28312078/\tO\thttps://stackoverflow.com/questions/28312078/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nwrong\tO\twrong\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3932 I-Code_Block A_3932 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ncorrect\tO\tcorrect\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3933 I-Code_Block A_3933 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33016848\tO\t33016848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33016848/\tO\thttps://stackoverflow.com/questions/33016848/\tO\n\t\n\t\nSo\tO\tSo\tO\nconfusingly\tO\tconfusingly\tO\n@IfProfileValue B-Class @IfProfileValue B-Code_Block\nhas\tO\thas\tO\nnothing\tO\tnothing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\n@Profile B-Class @Profile B-Code_Block\nor\tO\tor\tO\n@ActiveProfiles B-Class @ActiveProfiles B-Code_Block\n.\tO\t.\tO\n\t\n@Profile B-Class @Profile B-Code_Block\ntests\tO\ttests\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\na\tO\ta\tO\nprofile B-Class profile O\nis\tO\tis\tO\nactive B-Value active O\n,\tO\t,\tO\n@ActiveProfiles B-Class @ActiveProfiles B-Code_Block\nsets\tO\tsets\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\nactive B-Value active O\n,\tO\t,\tO\nand\tO\tand\tO\n@IfProfileValue B-Class @IfProfileValue B-Code_Block\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthings\tO\tthings\tO\nin\tO\tin\tO\nSpring B-Library Spring O\nEnvironment\tO\tEnvironment\tB-Code_Block\n.\tO\t.\tO\n\t\nWut\tO\tWut\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\ndeprecate\tO\tdeprecate\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\nones\tO\tones\tO\n@IfEnvironment B-Class @IfEnvironment B-Code_Block\n,\tO\t,\tO\n@IfProfile B-Class @IfProfile B-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\n@ActivateProfiles B-Class @ActivateProfiles B-Code_Block\n.\tO\t.\tO\n\t\nCommentary\tO\tCommentary\tO\naside\tO\taside\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n@IfProfileValue B-Class @IfProfileValue B-Code_Block\nto\tO\tto\tO\ndetect\tO\tdetect\tO\nwhether\tO\twhether\tO\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nprofile B-Class profile O\nactive B-Value active O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nSpring B-Library Spring O\nBoot I-Library Boot O\non\tO\ton\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nAnswers\tO\tAnswers\tO\nshould\tO\tshould\tO\nshow\tO\tshow\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwe\tO\twe\tO\nwill\tO\twill\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nprofile B-Class profile O\nis\tO\tis\tO\nactivated\tO\tactivated\tO\nas\tO\tas\tO\n@ActiveProfiles B-Class @ActiveProfiles B-Code_Block\n( I-Class ( I-Code_Block\n\" I-Class \" I-Code_Block\ntest I-Class test I-Code_Block\n\" I-Class \" I-Code_Block\n) I-Class ) I-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\n@IfProfileValue B-Code_Block @IfProfileValue B-Code_Block\n( B-Code_Block ( B-Code_Block\nname I-Code_Block name I-Code_Block\n= I-Code_Block = I-Code_Block\n\" I-Code_Block \" I-Code_Block\nactiveProfiles I-Code_Block activeProfiles I-Code_Block\n\" I-Code_Block \" I-Code_Block\n, I-Code_Block , I-Code_Block\nvalue I-Code_Block value I-Code_Block\n= I-Code_Block = I-Code_Block\n\" I-Code_Block \" I-Code_Block\ntest I-Code_Block test I-Code_Block\n\" I-Code_Block \" I-Code_Block\n) I-Code_Block ) I-Code_Block\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nskipped\tO\tskipped\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmeans\tO\tmeans\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nmatching\tO\tmatching\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nspeculate\tO\tspeculate\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nActiveProfiles B-Class ActiveProfiles B-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nCollection B-Class Collection B-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33016848\tO\t33016848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33016848/\tO\thttps://stackoverflow.com/questions/33016848/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nexplained\tO\texplained\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\ndetail\tO\tdetail\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/a/23627479/388980\tO\thttps://stackoverflow.com/a/23627479/388980\tO\n\t\n..\tO\t..\tO\n.\tO\t.\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nseen\tO\tseen\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\ncommented\tO\tcommented\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nanswer\tO\tanswer\tO\nyesterday\tO\tyesterday\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nthat\tO\tthat\tO\n@IfProfileValue B-Class @IfProfileValue B-Code_Block\nhas\tO\thas\tO\nnothing\tO\tnothing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\n@Profile B-Class @Profile B-Code_Block\nor\tO\tor\tO\n@ActiveProfiles B-Class @ActiveProfiles B-Code_Block\nis\tO\tis\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nevolution\tO\tevolution\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nframework\tO\tframework\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nbelow\tO\tbelow\tO\nfor\tO\tfor\tO\nfurther\tO\tfurther\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThese\tO\tThese\tO\nstatements\tO\tstatements\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nentirely\tO\tentirely\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\npart\tO\tpart\tO\n.\tO\t.\tO\n\t\n@Profile B-Class @Profile B-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nselectively\tO\tselectively\tO\nenable\tO\tenable\tO\na\tO\ta\tO\ncomponent\tO\tcomponent\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\n@Service B-Class @Service B-Code_Block\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n,\tO\t,\tO\n@Configuration B-Class @Configuration B-Code_Block\nclass\tO\tclass\tO\n,\tO\t,\tO\nor\tO\tor\tO\n@Bean B-Function @Bean B-Code_Block\nmethod\tO\tmethod\tO\nif\tO\tif\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnamed\tO\tnamed\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofiles B-Variable profiles O\nis\tO\tis\tO\nactive B-Value active O\nin\tO\tin\tO\nthe\tO\tthe\tO\nSpring B-Class Spring O\nEnvironment I-Class Environment B-Code_Block\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nApplicationContext B-Class ApplicationContext B-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nannotation\tO\tannotation\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndirectly\tO\tdirectly\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\ntesting\tO\ttesting\tO\n:\tO\t:\tO\n@Profile B-Class @Profile B-Code_Block\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\non\tO\ton\tO\na\tO\ta\tO\ntest\tO\ttest\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\n@ActiveProfiles B-Class @ActiveProfiles B-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\ndesignate\tO\tdesignate\tO\nwhich\tO\twhich\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofiles\tO\tprofiles\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\nthose\tO\tthose\tO\ndeclared\tO\tdeclared\tO\nvia\tO\tvia\tO\n@Profile B-Class @Profile B-Code_Block\n)\tO\t)\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nactive B-Value active O\nwhen\tO\twhen\tO\nloading\tO\tloading\tO\nan\tO\tan\tO\nApplicationContext B-Class ApplicationContext B-Code_Block\nfor\tO\tfor\tO\nan\tO\tan\tO\nintegration\tO\tintegration\tO\ntest\tO\ttest\tO\n.\tO\t.\tO\n\t\n@IfProfileValue B-Class @IfProfileValue B-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthings\tO\tthings\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSpring B-Class Spring O\nEnvironment I-Class Environment B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nassuming\tO\tassuming\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nnone\tO\tnone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSpring B-Library Spring O\nFramework I-Library Framework O\nstates\tO\tstates\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nI\tO\tI\tO\nstated\tO\tstated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\naforementioned\tO\taforementioned\tO\nthread\tO\tthread\tO\n:\tO\t:\tO\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\n@IfProfileValue B-Class @IfProfileValue B-Code_Block\nwas\tO\twas\tO\nintroduced\tO\tintroduced\tO\nin\tO\tin\tO\nSpring B-Library Spring O\nFramework I-Library Framework O\n2.0 B-Version 2.0 O\n,\tO\t,\tO\nlong\tO\tlong\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nnotion\tO\tnotion\tO\nof\tO\tof\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofiles\tO\tprofiles\tO\n,\tO\t,\tO\nand\tO\tand\tO\n@ActiveProfiles B-Class @ActiveProfiles B-Code_Block\nwas\tO\twas\tO\nfirst\tO\tfirst\tO\nintroduced\tO\tintroduced\tO\nin\tO\tin\tO\nSpring B-Library Spring O\nFramework I-Library Framework O\n3.1 B-Version 3.1 O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\naforementioned\tO\taforementioned\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nI\tO\tI\tO\nalso\tO\talso\tO\npointed\tO\tpointed\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nterm\tO\tterm\tO\n'\tO\t'\tO\nprofile B-Variable profile O\n'\tO\t'\tO\nis\tO\tis\tO\nperhaps\tO\tperhaps\tO\nmisleading\tO\tmisleading\tO\nwhen\tO\twhen\tO\nconsidering\tO\tconsidering\tO\nthe\tO\tthe\tO\nsemantics\tO\tsemantics\tO\nfor\tO\tfor\tO\n@IfProfileValue B-Class @IfProfileValue B-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nkey\tO\tkey\tO\nis\tO\tis\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\n'\tO\t'\tO\ntest\tO\ttest\tO\ngroups\tO\tgroups\tO\n'\tO\t'\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nthose\tO\tthose\tO\nin\tO\tin\tO\nTestNG B-Library TestNG O\n)\tO\t)\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n'\tO\t'\tO\nprofiles B-Variable profiles O\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nexamples\tO\texamples\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJavaDoc\tO\tJavaDoc\tO\nfor\tO\tfor\tO\n@IfProfileValue B-Class @IfProfileValue O\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThat\tO\tThat\tO\ndepends\tO\tdepends\tO\n,\tO\t,\tO\nand\tO\tand\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofile B-Variable profile O\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nsay\tO\tsay\tO\n\"\tO\t\"\tO\nprofile B-Variable profile O\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\n@ActiveProfiles B-Class @ActiveProfiles B-Code_Block\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofiles\tO\tprofiles\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntests\tO\ttests\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\ncurrently\tO\tcurrently\tO\nuse\tO\tuse\tO\n@IfProfileValue B-Class @IfProfileValue B-Code_Block\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nif\tO\tif\tO\na\tO\ta\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofile B-Class profile O\nis\tO\tis\tO\nactive B-Value active O\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofiles B-Variable profiles O\nconfigured\tO\tconfigured\tO\nvia\tO\tvia\tO\n@ActiveProfiles B-Class @ActiveProfiles B-Code_Block\nare\tO\tare\tO\nset\tO\tset\tO\ndirectly\tO\tdirectly\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\n's\tO\t's\tO\nApplicationContext B-Class ApplicationContext B-Code_Block\nand\tO\tand\tO\nnot\tO\tnot\tO\nas\tO\tas\tO\na\tO\ta\tO\nJava B-Language Java O\nsystem\tO\tsystem\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofiles\tO\tprofiles\tO\nonly\tO\tonly\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nspring.profiles.active B-Variable spring.profiles.active B-Code_Block\nsystem\tO\tsystem\tO\nproperty\tO\tproperty\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n@IfProfileValue B-Class @IfProfileValue B-Code_Block\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nif\tO\tif\tO\na\tO\ta\tO\nbean\tO\tbean\tO\ndefinition\tO\tdefinition\tO\nprofile B-Variable profile O\nis\tO\tis\tO\nactive B-Value active O\n,\tO\t,\tO\nsince\tO\tsince\tO\n@IfProfileValue B-Class @IfProfileValue B-Code_Block\nin\tO\tin\tO\nfact\tO\tfact\tO\nworks\tO\tworks\tO\nwith\tO\twith\tO\nsystem\tO\tsystem\tO\nproperties\tO\tproperties\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4699 I-Code_Block A_4699 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThat\tO\tThat\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nsince\tO\tsince\tO\nactiveProfiles B-Value activeProfiles B-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nincorrect\tO\tincorrect\tO\nproperty\tO\tproperty\tO\nname B-Variable name O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncorrect\tO\tcorrect\tO\nsystem\tO\tsystem\tO\nproperty\tO\tproperty\tO\nname\tO\tname\tO\nis\tO\tis\tO\nspring.profiles.active B-Variable spring.profiles.active B-Code_Block\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nAbstractEnvironment.ACTIVE_PROFILES_PROPERTY_NAME B-Variable AbstractEnvironment.ACTIVE_PROFILES_PROPERTY_NAME B-Code_Block\nfor\tO\tfor\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\n@IfProfileValue B-Class @IfProfileValue B-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nharmony\tO\tharmony\tO\nwith\tO\twith\tO\n@ActiveProfiles B-Class @ActiveProfiles B-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nknown\tO\tknown\tO\nissue\tO\tissue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nSpring B-Library Spring O\nteam\tO\tteam\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nconsult\tO\tconsult\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nJIRA B-Application JIRA O\nissues\tO\tissues\tO\nfor\tO\tfor\tO\nfurther\tO\tfurther\tO\ndetails\tO\tdetails\tO\nand\tO\tand\tO\nto\tO\tto\tO\njoin\tO\tjoin\tO\nin\tO\tin\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndiscussions\tO\tdiscussions\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nhttps://jira.spring.io/browse/SPR-7754\tO\thttps://jira.spring.io/browse/SPR-7754\tO\n\t\nhttps://jira.spring.io/browse/SPR-8982\tO\thttps://jira.spring.io/browse/SPR-8982\tO\n\t\nhttps://jira.spring.io/browse/SPR-11677\tO\thttps://jira.spring.io/browse/SPR-11677\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nclarifies\tO\tclarifies\tO\nthe\tO\tthe\tO\nsituation\tO\tsituation\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nSam B-User_Name Sam O\n(\tO\t(\tO\nauthor\tO\tauthor\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nSpring\tO\tSpring\tO\nTestContext\tO\tTestContext\tO\nFramework\tO\tFramework\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33016848\tO\t33016848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33016848/\tO\thttps://stackoverflow.com/questions/33016848/\tO\n\t\n\t\nSam B-User_Name Sam O\nnailed\tO\tnailed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nAs\tO\tAs\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\naccepted\tO\taccepted\tO\nand\tO\tand\tO\nanswered\tO\tanswered\tO\nyears\tO\tyears\tO\nback\tO\tback\tO\n)\tO\t)\tO\n\t\nOne\tO\tOne\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nSystem\tO\tSystem\tO\nProperties\tO\tProperties\tO\nthrough\tO\tthrough\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ntest\tO\ttest\tO\n,\tO\t,\tO\nhaving\tO\thaving\tO\nthem\tO\tthem\tO\npropagate\tO\tpropagate\tO\nthrough\tO\tthrough\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nJVM B-Application JVM O\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nbuild\tO\tbuild\tO\ntool\tO\ttool\tO\nlike\tO\tlike\tO\ngradle B-Application gradle O\nmay\tO\tmay\tO\nrequire\tO\trequire\tO\nan\tO\tan\tO\nadditional\tO\tadditional\tO\nstep\tO\tstep\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6932 I-Code_Block A_6932 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nbusiness\tO\tbusiness\tO\nas\tO\tas\tO\nusual\tO\tusual\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nintegration\tO\tintegration\tO\ntest\tO\ttest\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6933 I-Code_Block A_6933 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFinally\tO\tFinally\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nexecute\tO\texecute\tO\nyour\tO\tyour\tO\ntests\tO\ttests\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nterminal B-Application terminal O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\nyou\tO\tyou\tO\nspecified\tO\tspecified\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6934 I-Code_Block A_6934 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nthing\tO\tthing\tO\nI\tO\tI\tO\nlike\tO\tlike\tO\nmost\tO\tmost\tO\nabout\tO\tabout\tO\n@IfProfileValue B-Class @IfProfileValue B-Code_Block\nover\tO\tover\tO\ngrabbing\tO\tgrabbing\tO\nthe\tO\tthe\tO\nSystem.property B-Variable System.property O\nand\tO\tand\tO\nchecking\tO\tchecking\tO\nassumeTrue/False B-Value assumeTrue/False B-Code_Block\nmanually\tO\tmanually\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nno\tO\tno\tO\nSpring B-Library Spring O\nContext\tO\tContext\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\n(\tO\t(\tO\nor\tO\tor\tO\nflyway/other\tO\tflyway/other\tO\nmigrations\tO\tmigrations\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\n)\tO\t)\tO\nkeeping\tO\tkeeping\tO\nunit\tO\tunit\tO\ntests\tO\ttests\tO\nfast\tO\tfast\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37170941\tO\t37170941\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37170941/\tO\thttps://stackoverflow.com/questions/37170941/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nForm1 B-Class Form1 B-Code_Block\nwithDataGridView` B-Class withDataGridView` I-Code_Block\nwhich\tO\twhich\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncolumns B-Data_Structure columns O\n:\tO\t:\tO\n\t\nID B-Class ID O\n\t\nNAME B-Class NAME O\n\t\nSHORT B-Class SHORT O\nDESCRIPTION I-Class DESCRIPTION O\n\t\nDESCRIPTION B-Class DESCRIPTION O\n\t\nAlso\tO\tAlso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\nthat\tO\tthat\tO\nopens\tO\topens\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nForm2 B-Class Form2 B-Code_Block\nthat\tO\tthat\tO\nhas\tO\thas\tO\nseveral\tO\tseveral\tO\ntextboxes B-Class textboxes O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\npass\tO\tpass\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nform\tO\tform\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nform B-User_Interface_Element form O\n,\tO\t,\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\ntextBox1 B-Class textBox1 O\nof\tO\tof\tO\nForm2 B-Class Form2 O\nwill\tO\twill\tO\nbe\tO\tbe\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nID B-Class ID O\ncolumn B-Data_Structure column O\nof\tO\tof\tO\nthe\tO\tthe\tO\nDataGridView B-Class DataGridView O\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nworks\tO\tworks\tO\nsame\tO\tsame\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\ncolumns B-Data_Structure columns O\n(\tO\t(\tO\ntextbox2 B-Class textbox2 O\nto\tO\tto\tO\nNAME B-Class NAME O\n..\tO\t..\tO\ntextbox4\tO\ttextbox4\tO\nto\tO\tto\tO\nDESCRIPTION B-Class DESCRIPTION O\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4627 I-Code_Block Q_4627 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n//\tO\t//\tO\nForm2 B-Class Form2 O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4628 I-Code_Block Q_4628 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n\\Form1 B-Class \\Form1 O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4629 I-Code_Block Q_4629 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\ncorrect\tO\tcorrect\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37170941\tO\t37170941\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37170941/\tO\thttps://stackoverflow.com/questions/37170941/\tO\n\t\n\t\nYou\tO\tYou\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nForm1 B-Class Form1 B-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nMove\tO\tMove\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nor\tO\tor\tO\nevent\tO\tevent\tO\nhandler\tO\thandler\tO\n,\tO\t,\tO\nas\tO\tas\tO\nForm_Load B-Function Form_Load B-Code_Block\nor\tO\tor\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nform B-Class form O\nconstructor\tO\tconstructor\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5357 I-Code_Block A_5357 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEdit\tO\tEdit\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nyour\tO\tyour\tO\nForm2 B-Class Form2 B-Code_Block\nshould\tO\tshould\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nmc B-Variable mc B-Code_Block\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nat\tO\tat\tO\nclass\tO\tclass\tO\nlevel\tO\tlevel\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nis\tO\tis\tO\naccessible\tO\taccessible\tO\nfrom\tO\tfrom\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5358 I-Code_Block A_5358 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\nsave\tO\tsave\tO\nyour\tO\tyour\tO\nobject\tO\tobject\tO\non\tO\ton\tO\nbutton B-User_Interface_Element button O\nclick\tO\tclick\tO\nand\tO\tand\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nmoment\tO\tmoment\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9973671\tO\t9973671\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9973671/\tO\thttps://stackoverflow.com/questions/9973671/\tO\n\t\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\njQuery B-Library jQuery O\ncombobox B-Function combobox O\n(\tO\t(\tO\nfiddle B-Application fiddle O\n)\tO\t)\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nMozilla B-Application Mozilla O\nFirefox I-Application Firefox O\naddon\tO\taddon\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nAMO B-Application AMO O\neditors I-Application editors O\nrejected\tO\trejected\tO\nmy\tO\tmy\tO\nAddon B-Application Addon O\nafter\tO\tafter\tO\nreviewing\tO\treviewing\tO\nstating\tO\tstating\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\njavascript B-Language javascript O\ndoes\tO\tdoes\tO\nunsafe\tO\tunsafe\tO\nHTML B-Language HTML O\ninsertion\tO\tinsertion\tO\nwith\tO\twith\tO\nunsanitized\tO\tunsanitized\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nParts\tO\tParts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nstated\tO\tstated\tO\nas\tO\tas\tO\nunsafe\tO\tunsafe\tO\nall\tO\tall\tO\nbelong\tO\tbelong\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nofficial\tO\tofficial\tO\njQuery B-Library jQuery O\nUi I-Library Ui O\npage\tO\tpage\tO\nfor\tO\tfor\tO\ncombobox B-Function combobox O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nwriting\tO\twriting\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nRemoving\tO\tRemoving\tO\nthis\tO\tthis\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nthrows\tO\tthrows\tO\nerror\tO\terror\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncombobox B-Function combobox O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmakes\tO\tmakes\tO\nme\tO\tme\tO\nwonder\tO\twonder\tO\nwhy\tO\twhy\tO\ncombobox B-Function combobox B-Code_Block\nis\tO\tis\tO\nn't\tO\tn't\tO\nalready\tO\talready\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\njQuery B-Library jQuery O\nand\tO\tand\tO\nwhy\tO\twhy\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthis\tO\tthis\tO\nsnippet\tO\tsnippet\tO\ninside\tO\tinside\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nanything\tO\tanything\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\nofficial\tO\tofficial\tO\njquery B-Library jquery O\npage\tO\tpage\tO\nsafe\tO\tsafe\tO\nand\tO\tand\tO\nsanitized\tO\tsanitized\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_865 I-Code_Block Q_865 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42315302\tO\t42315302\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42315302/\tO\thttps://stackoverflow.com/questions/42315302/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nsome\tO\tsome\tO\ncertain\tO\tcertain\tO\ninformation\tO\tinformation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirebase B-Application firebase O\nrealtime I-Application realtime O\ndatabase I-Application database O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ndatabase\tO\tdatabase\tO\nstructure\tO\tstructure\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5389 I-Code_Block Q_5389 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\ncondition\tO\tcondition\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nSQL B-Language SQL O\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5390 I-Code_Block Q_5390 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nusing\tO\tusing\tO\nRuby B-Language Ruby O\nor\tO\tor\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\ntheir\tO\ttheir\tO\nREST B-Library REST O\nAPI I-Library API O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42315302\tO\t42315302\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42315302/\tO\thttps://stackoverflow.com/questions/42315302/\tO\n\t\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndivided\tO\tdivided\tO\ninto\tO\tinto\tO\ntwo\tO\ttwo\tO\nsteps\tO\tsteps\tO\n.\tO\t.\tO\n\t\nStep\tO\tStep\tO\n1)\tO\t1)\tO\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nrules\tO\trules\tO\nin\tO\tin\tO\nfirebase B-Application firebase O\nDatabase I-Application Database O\nif\tO\tif\tO\nnot\tO\tnot\tO\nalready\tO\talready\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6081 I-Code_Block A_6081 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nStep\tO\tStep\tO\n2)\tO\t2)\tO\nTo\tO\tTo\tO\nfetch\tO\tfetch\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nfirebase B-Application firebase O\nDatabase I-Application Database O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrest B-Library rest O\nAPI I-Library API O\nrequest\tO\trequest\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6082 I-Code_Block A_6082 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15909728\tO\t15909728\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15909728/\tO\thttps://stackoverflow.com/questions/15909728/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nOracle B-Application Oracle O\n11G B-Version 11G O\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nstring B-Data_Type string O\n:\tO\t:\tO\nI B-Value I B-Code_Block\n- I-Value - I-Code_Block\nAm I-Value Am I-Code_Block\nin I-Value in I-Code_Block\n- I-Value - I-Code_Block\nNeed I-Value Need I-Code_Block\nHelp I-Value Help I-Code_Block\n- I-Value - I-Code_Block\nPlease I-Value Please I-Code_Block\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n- B-Value - B-Code_Block\ncharacter B-Data_Type character O\nthen\tO\tthen\tO\nselect\tO\tselect\tO\neverything\tO\teverything\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nplaying\tO\tplaying\tO\naround\tO\taround\tO\nwith\tO\twith\tO\nREGEXP_REPLACE B-Function REGEXP_REPLACE B-Code_Block\nand\tO\tand\tO\nSUBSTR B-Function SUBSTR B-Code_Block\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nobject\tO\tobject\tO\nbut\tO\tbut\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\neverything\tO\teverything\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\n* B-Value * O\nsomewhere\tO\tsomewhere\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nsyntax\tO\tsyntax\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1571 I-Code_Block Q_1571 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\nquery\tO\tquery\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nobject\tO\tobject\tO\n' B-Value ' O\nAm I-Value Am O\nin I-Value in O\n' B-Value ' O\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthis\tO\tthis\tO\nreturned\tO\treturned\tO\n' B-Value ' O\nNeed I-Value Need O\nof I-Value of O\nHelp I-Value Help O\n- I-Value - O\nPlease I-Value Please O\n' B-Value ' O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nimportant\tO\timportant\tO\nto\tO\tto\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\n- B-Value - B-Code_Block\ncharacter B-Data_Type character O\ndirectly\tO\tdirectly\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\neither\tO\teither\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nthird\tO\tthird\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15909728\tO\t15909728\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15909728/\tO\thttps://stackoverflow.com/questions/15909728/\tO\n\t\n\t\nSince\tO\tSince\tO\n[ B-Value [ B-Code_Block\n^- I-Value ^- I-Code_Block\n] I-Value ] I-Code_Block\nwill\tO\twill\tO\nonly\tO\tonly\tO\nmatch\tO\tmatch\tO\nnon-hyphen\tO\tnon-hyphen\tO\ncharacters B-Data_Type characters O\n,\tO\t,\tO\nyour\tO\tyour\tO\nmatch\tO\tmatch\tO\ngroup\tO\tgroup\tO\nwill\tO\twill\tO\nstart\tO\tstart\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nhyphen B-Value hyphen O\nand\tO\tand\tO\nthen\tO\tthen\tO\nstop\tO\tstop\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ncapture\tO\tcapture\tO\neverything\tO\teverything\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nhyphen B-Value hyphen O\n,\tO\t,\tO\ntry\tO\ttry\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2062 I-Code_Block A_2062 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47377510\tO\t47377510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47377510/\tO\thttps://stackoverflow.com/questions/47377510/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nPHP B-Language PHP O\nCode\tO\tCode\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6285 I-Code_Block Q_6285 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\njust\tO\tjust\tO\nget\tO\tget\tO\nvalues\tO\tvalues\tO\nspecific\tO\tspecific\tO\nrange\tO\trange\tO\nof\tO\tof\tO\nindex\tO\tindex\tO\nand\tO\tand\tO\nreplace\tO\treplace\tO\nprevious\tO\tprevious\tO\narrays B-Data_Structure arrays O\nvalues\tO\tvalues\tO\nwith\tO\twith\tO\nthese\tO\tthese\tO\nnew\tO\tnew\tO\nvalues.Something\tO\tvalues.Something\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6286 I-Code_Block Q_6286 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nresult\tO\tresult\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6287 I-Code_Block Q_6287 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nseparate\tO\tseparate\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narray($my_arr) B-Data_Structure array($my_arr) O\nthat\tO\tthat\tO\nare\tO\tare\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nspecified\tO\tspecified\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nindexes\tO\tindexes\tO\nand\tO\tand\tO\neverywhere\tO\teverywhere\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nand\tO\tand\tO\nreplace\tO\treplace\tO\nall\tO\tall\tO\nprevious\tO\tprevious\tO\narray($my_arr) B-Data_Structure array($my_arr) O\nvalues\tO\tvalues\tO\nwith\tO\twith\tO\nthese\tO\tthese\tO\nnew\tO\tnew\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\n**\tO\t**\tO\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nwere\tO\twere\tO\nnot\tO\tnot\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nindexes\tO\tindexes\tO\n,\tO\t,\tO\nOther\tO\tOther\tO\nindexes\tO\tindexes\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nspecified\tO\tspecified\tO\nrange\tO\trange\tO\nfor\tO\tfor\tO\nindex\tO\tindex\tO\nnumbers\tO\tnumbers\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nreplaced\tO\treplaced\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nreturn\tO\treturn\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nindexes\tO\tindexes\tO\nbetween\tO\tbetween\tO\n0 B-Value 0 O\nand\tO\tand\tO\n4($my_arr[0]....$my_arr[4]) B-Value 4($my_arr[0]....$my_arr[4]) O\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nvalue\tO\tvalue\tO\nleave\tO\tleave\tO\nempty\tO\tempty\tO\nor\tO\tor\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nreturn\tO\treturn\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47377510\tO\t47377510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47377510/\tO\thttps://stackoverflow.com/questions/47377510/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsolution\tO\tsolution\tO\nafter\tO\tafter\tO\nseveral\tO\tseveral\tO\ntests\tO\ttests\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6913 I-Code_Block A_6913 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47377510\tO\t47377510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47377510/\tO\thttps://stackoverflow.com/questions/47377510/\tO\n\t\n\t\narray_slice B-Function array_slice O\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6907 I-Code_Block A_6907 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSince\tO\tSince\tO\nyour\tO\tyour\tO\narray B-Data_Structure array O\ncontains\tO\tcontains\tO\nmixed\tO\tmixed\tO\nkeys\tO\tkeys\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nfirst\tO\tfirst\tO\nsort\tO\tsort\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nnumeric\tO\tnumeric\tO\nkeys\tO\tkeys\tO\nwould\tO\twould\tO\nappear\tO\tappear\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6908 I-Code_Block A_6908 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOutput\tO\tOutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6909 I-Code_Block A_6909 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nManual\tO\tManual\tO\narray_slice B-Function array_slice O\n\t\nManual\tO\tManual\tO\nksort B-Function ksort O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24275945\tO\t24275945\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24275945/\tO\thttps://stackoverflow.com/questions/24275945/\tO\n\t\n\t\nassume\tO\tassume\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndataset B-Data_Structure dataset O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2700 I-Code_Block Q_2700 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nsql B-Language sql O\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndatasource\tO\tdatasource\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndateStart B-Variable dateStart O\nand\tO\tand\tO\nthe\tO\tthe\tO\ndateEnd B-Variable dateEnd O\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthe\tO\tthe\tO\nyear\tO\tyear\tO\nand\tO\tand\tO\nmonth\tO\tmonth\tO\ngrouping\tO\tgrouping\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2701 I-Code_Block Q_2701 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nhard\tO\thard\tO\ntime\tO\ttime\tO\nwrapping\tO\twrapping\tO\nmy\tO\tmy\tO\nhead\tO\thead\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24275945\tO\t24275945\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24275945/\tO\thttps://stackoverflow.com/questions/24275945/\tO\n\t\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ntabled-valued\tO\ttabled-valued\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\nthe\tO\tthe\tO\n2\tO\t2\tO\ndates\tO\tdates\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nyear\tO\tyear\tO\nand\tO\tand\tO\nmonth\tO\tmonth\tO\nas\tO\tas\tO\na\tO\ta\tO\ntable B-Data_Structure table O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3318 I-Code_Block A_3318 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3319 I-Code_Block A_3319 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nreturns\tO\treturns\tO\n:\tO\t:\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\njoin\tO\tjoin\tO\nto\tO\tto\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nget\tO\tget\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3320 I-Code_Block A_3320 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24275945\tO\t24275945\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24275945/\tO\thttps://stackoverflow.com/questions/24275945/\tO\n\t\n\t\nI\tO\tI\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\neasiest\tO\teasiest\tO\nto\tO\tto\tO\napproach\tO\tapproach\tO\nthese\tO\tthese\tO\nproblems\tO\tproblems\tO\nby\tO\tby\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nintegers B-Data_Type integers O\nand\tO\tand\tO\nthen\tO\tthen\tO\nusing\tO\tusing\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nincrement\tO\tincrement\tO\nthe\tO\tthe\tO\ndates\tO\tdates\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3317 I-Code_Block A_3317 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29857985\tO\t29857985\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29857985/\tO\thttps://stackoverflow.com/questions/29857985/\tO\n\t\n\t\nA\tO\tA\tO\nScalaTest B-Application ScalaTest O\nsuite\tO\tsuite\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3575 I-Code_Block Q_3575 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsbt B-Application sbt O\ncommand\tO\tcommand\tO\nline\tO\tline\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\nsetting\tO\tsetting\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3576 I-Code_Block Q_3576 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlso\tO\tAlso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3577 I-Code_Block Q_3577 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFinally\tO\tFinally\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3578 I-Code_Block Q_3578 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhen\tO\tWhen\tO\nusing\tO\tusing\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nattempts\tO\tattempts\tO\nthe\tO\tthe\tO\nSystem.getProperty B-Function System.getProperty O\ncomes\tO\tcomes\tO\nup\tO\tup\tO\nblank\tO\tblank\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\napproach\tO\tapproach\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nwork\tO\twork\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nScalaTest B-Application ScalaTest O\nfrom\tO\tfrom\tO\nwithin\tO\twithin\tO\nIntellij B-Application Intellij O\nand\tO\tand\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nJVM B-Application JVM O\nparameters\tO\tparameters\tO\nto\tO\tto\tO\n-Dmy.command-line.property B-Code_Block -Dmy.command-line.property O\n= I-Code_Block = O\nfoo I-Code_Block foo O\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nRun\tO\tRun\tO\nConfiguration\tO\tConfiguration\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29857985\tO\t29857985\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29857985/\tO\thttps://stackoverflow.com/questions/29857985/\tO\n\t\n\t\nThis\tO\tThis\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4904 I-Code_Block A_4904 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4905 I-Code_Block A_4905 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29857985\tO\t29857985\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29857985/\tO\thttps://stackoverflow.com/questions/29857985/\tO\n\t\n\t\nYour\tO\tYour\tO\nthird\tO\tthird\tO\nway\tO\tway\tO\nalmost\tO\talmost\tO\nworks\tO\tworks\tO\n(\tO\t(\tO\nif\tO\tif\tO\nfork B-Code_Block fork B-Code_Block\nin I-Code_Block in I-Code_Block\nTest I-Code_Block Test I-Code_Block\n:= I-Code_Block := I-Code_Block\ntrue I-Code_Block true I-Code_Block\nis\tO\tis\tO\nset\tO\tset\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nfirst\tO\tfirst\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5831 I-Code_Block A_5831 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27059843\tO\t27059843\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27059843/\tO\thttps://stackoverflow.com/questions/27059843/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nDynamic\tO\tDynamic\tO\nUrl\tO\tUrl\tO\nwith\tO\twith\tO\noptional\tO\toptional\tO\nparameter\tO\tparameter\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\nIf\tO\tIf\tO\nmy\tO\tmy\tO\nurl\tO\turl\tO\nis\tO\tis\tO\nas\tO\tas\tO\nwww.example.com/getTest/1/\tO\twww.example.com/getTest/1/\tO\n\t\nNow\tO\tNow\tO\nthis\tO\tthis\tO\n1\tO\t1\tB-Code_Block\nin\tO\tin\tO\nurl\tO\turl\tO\nis\tO\tis\tO\noptional\tO\toptional\tO\n,\tO\t,\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nviews\tO\tviews\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nNone B-Variable None O\nlike\tO\tlike\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3104 I-Code_Block Q_3104 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThus\tO\tThus\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nid\tO\tid\tO\nin\tO\tin\tO\nURL\tO\tURL\tO\nthen\tO\tthen\tO\nstill\tO\tstill\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfacing\tO\tfacing\tO\nissue\tO\tissue\tO\nwhile\tO\twhile\tO\ntesting\tO\ttesting\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nunit\tO\tunit\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nurl\tO\turl\tO\nas\tO\tas\tO\nurl B-Code_Block url B-Code_Block\n= I-Code_Block = I-Code_Block\nreverse I-Code_Block reverse I-Code_Block\n( I-Code_Block ( I-Code_Block\n'yescourse:academypage_url' I-Code_Block 'yescourse:academypage_url' I-Code_Block\n, I-Code_Block , I-Code_Block\nargs I-Code_Block args I-Code_Block\n=[ I-Code_Block =[ I-Code_Block\nNone] I-Code_Block None] I-Code_Block\n) I-Code_Block ) I-Code_Block\nit\tO\tit\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\t\nNoReverseMatch B-Error_Name NoReverseMatch B-Code_Block\n:\tO\t:\tI-Code_Block\nReverse B-Output_Block Reverse I-Code_Block\nfor I-Output_Block for I-Code_Block\n' I-Output_Block ' I-Code_Block\nacademypage_url I-Output_Block academypage_url I-Code_Block\n' B-Output_Block ' B-Code_Block\nwith I-Output_Block with I-Code_Block\narguments I-Output_Block arguments I-Code_Block\n' I-Output_Block ' I-Code_Block\n( B-Output_Block ( B-Code_Block\n' B-Output_Block ' B-Code_Block\nnew I-Output_Block new I-Code_Block\n' B-Output_Block ' B-Code_Block\n, I-Output_Block , I-Code_Block\nNone I-Output_Block None I-Code_Block\n) I-Output_Block ) I-Code_Block\n' B-Output_Block ' B-Code_Block\nand I-Output_Block and I-Code_Block\nkeyword I-Output_Block keyword I-Code_Block\narguments I-Output_Block arguments I-Code_Block\n'{}' I-Output_Block '{}' I-Code_Block\nnot I-Output_Block not I-Code_Block\nfound I-Output_Block found I-Code_Block\n. I-Output_Block . I-Code_Block\n\t\nSo\tO\tSo\tO\nPlease\tO\tPlease\tO\nTell\tO\tTell\tO\nme\tO\tme\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nhandle\tO\thandle\tO\nthese\tO\tthese\tO\noptional\tO\toptional\tO\nurl\tO\turl\tO\nin\tO\tin\tO\nTest\tO\tTest\tO\ncases\tO\tcases\tO\nor\tO\tor\tO\nin\tO\tin\tO\nReverse B-Class Reverse O\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3105 I-Code_Block Q_3105 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27059843\tO\t27059843\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27059843/\tO\thttps://stackoverflow.com/questions/27059843/\tO\n\t\n\t\nYou\tO\tYou\tO\nmade\tO\tmade\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nfunction\tO\tfunction\tO\n's\tO\t's\tO\nid B-Variable id B-Code_Block\nparameter\tO\tparameter\tO\noptional\tO\toptional\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\noptional\tO\toptional\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\npattern\tO\tpattern\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nfirsty\tO\tfirsty\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrewrite\tO\trewrite\tO\nyour\tO\tyour\tO\npattern\tO\tpattern\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3738 I-Code_Block A_3738 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n=>\tO\t=>\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\n'\tO\t'\tO\nid B-Variable id O\n'\tO\t'\tO\nsub-pattern\tO\tsub-pattern\tO\nis\tO\tis\tO\noptional\tO\toptional\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nmatch\tO\tmatch\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nnumerics\tO\tnumerics\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\ndone\tO\tdone\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreverse\tO\treverse\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nby\tO\tby\tO\nnot\tO\tnot\tO\npassing\tO\tpassing\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nargs B-Variable args B-Code_Block\nnor\tO\tnor\tO\nkwargs B-Variable kwargs B-Code_Block\narguments\tO\targuments\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3739 I-Code_Block A_3739 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\nby\tO\tby\tO\npassing\tO\tpassing\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\nlist B-Data_Structure list O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3740 I-Code_Block A_3740 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\nby\tO\tby\tO\npassing\tO\tpassing\tO\nNone B-Value None B-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3741 I-Code_Block A_3741 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nby\tO\tby\tO\npassing\tO\tpassing\tO\na\tO\ta\tO\nlist B-Data_Structure list O\ncontaining\tO\tcontaining\tO\nNone B-Value None B-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41258578\tO\t41258578\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41258578/\tO\thttps://stackoverflow.com/questions/41258578/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncontroller\tO\tcontroller\tO\n\"\tO\t\"\tO\nfront\tO\tfront\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\ncontroller\tO\tcontroller\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nerror\tO\terror\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41258578\tO\t41258578\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41258578/\tO\thttps://stackoverflow.com/questions/41258578/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\ncatch\tO\tcatch\tO\nthe\tO\tthe\tO\nException B-Class Exception O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5904 I-Code_Block A_5904 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40469483\tO\t40469483\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40469483/\tO\thttps://stackoverflow.com/questions/40469483/\tO\n\t\n\t\nAll\tO\tAll\tO\nhttp\tO\thttp\tO\nsecurity\tO\tsecurity\tO\nis\tO\tis\tO\napplied\tO\tapplied\tO\nat\tO\tat\tO\nstartup\tO\tstartup\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5111 I-Code_Block Q_5111 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDuring\tO\tDuring\tO\nruntime\tO\truntime\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nmore\tO\tmore\tO\nto\tO\tto\tO\nit\tO\tit\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5112 I-Code_Block Q_5112 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhen\tO\tWhen\tO\nthat\tO\tthat\tO\nline\tO\tline\tO\nis\tO\tis\tO\nexecuted\tO\texecuted\tO\n,\tO\t,\tO\nit\tO\tit\tO\nadds\tO\tadds\tO\nit\tO\tit\tO\nto\tO\tto\tO\nhttp.authorizeRequests()'s B-Function http.authorizeRequests()'s O\nbut\tO\tbut\tO\n/bla\tO\t/bla\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\naccessible\tO\taccessible\tO\nby\tO\tby\tO\n\"\tO\t\"\tO\nnon\tO\tnon\tO\nadmins\tO\tadmins\tO\n\"\tO\t\"\tO\n\t\nWhen\tO\tWhen\tO\nserver B-Application server O\nis\tO\tis\tO\nrestarted\tO\trestarted\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nchange\tO\tchange\tO\ntakes\tO\ttakes\tO\neffect\tO\teffect\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nloading\tO\tloading\tO\nbla\tO\tbla\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nsecurity\tO\tsecurity\tO\ntake\tO\ttake\tO\neffect\tO\teffect\tO\ninstantly\tO\tinstantly\tO\nwithout\tO\twithout\tO\nrestarting\tO\trestarting\tO\nthe\tO\tthe\tO\nserver B-Application server O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40469483\tO\t40469483\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40469483/\tO\thttps://stackoverflow.com/questions/40469483/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndynamicaly\tO\tdynamicaly\tO\nchange\tO\tchange\tO\na\tO\ta\tO\nspring B-Library spring O\nbean\tO\tbean\tO\nat\tO\tat\tO\nruntime\tO\truntime\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nhard\tO\thard\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\ntools\tO\ttools\tO\nlike\tO\tlike\tO\nspring-loaded B-Library spring-loaded O\nor\tO\tor\tO\nJRebel B-Library JRebel O\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nSO B-Website SO O\nabout\tO\tabout\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nUpdate\tO\tUpdate\tO\nspring B-Library spring O\nbeans B-Class beans O\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\ndynamically\tO\tdynamically\tO\nchange\tO\tchange\tO\nspring B-Library spring O\nbeans B-Class beans O\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\nreplace\tO\treplace\tO\na\tO\ta\tO\nSpring B-Library Spring O\nbean B-Class bean O\ndefinition\tO\tdefinition\tO\nat\tO\tat\tO\nruntime\tO\truntime\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\napproach\tO\tapproach\tO\n(\tO\t(\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nopinion\tO\topinion\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nspring B-Library spring O\nprofiles B-Class profiles O\n.\tO\t.\tO\n\t\nDefine\tO\tDefine\tO\na\tO\ta\tO\nbean B-Class bean O\nwith\tO\twith\tO\nauthorisations\tO\tauthorisations\tO\nfor\tO\tfor\tO\n/bla\tO\t/bla\tO\nand\tO\tand\tO\nanother B-Class another O\nbean\tO\tbean\tO\nwithout\tO\twithout\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\nprofiles\tO\tprofiles\tO\n.\tO\t.\tO\n\t\nsee\tO\tsee\tO\ndynamically\tO\tdynamically\tO\ndeclare\tO\tdeclare\tO\nbeans B-Class beans O\nat\tO\tat\tO\nruntime\tO\truntime\tO\nin\tO\tin\tO\nSpring B-Library Spring O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4704802\tO\t4704802\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4704802/\tO\thttps://stackoverflow.com/questions/4704802/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nSphinx B-Application Sphinx O\ncharset_table B-Data_Structure charset_table B-Code_Block\nthat\tO\tthat\tO\nis\tO\tis\tO\nsuitable\tO\tsuitable\tO\nfor\tO\tfor\tO\nnatural\tO\tnatural\tO\nlanguage\tO\tlanguage\tO\n\"\tO\t\"\tO\nalmost\tO\talmost\tO\nall\tO\tall\tO\n\"\tO\t\"\tO\nlanguages\tO\tlanguages\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\n\"\tO\t\"\tO\nalmost\tO\talmost\tO\nall\tO\tall\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nvague\tO\tvague\tO\ndefinition\tO\tdefinition\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nrequirement\tO\trequirement\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nrestated\tO\trestated\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncharset_table B-Data_Structure charset_table B-Code_Block\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nsuitable\tO\tsuitable\tO\nto\tO\tto\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nlanguage\tO\tlanguage\tO\ncodes\tO\tcodes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_325 I-Code_Block Q_325 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nGiven\tO\tGiven\tO\nthose\tO\tthose\tO\nrequirements\tO\trequirements\tO\nwhat\tO\twhat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsuitable\tO\tsuitable\tO\ncharset_table B-Data_Structure charset_table B-Code_Block\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4704802\tO\t4704802\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4704802/\tO\thttps://stackoverflow.com/questions/4704802/\tO\n\t\n\t\nIf\tO\tIf\tO\none\tO\tone\tO\nof\tO\tof\tO\nMySQL B-Application MySQL O\n's\tO\t's\tO\ncollations\tO\tcollations\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nutf8_general_ci B-Value utf8_general_ci O\n,\tO\t,\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nsuitable\tO\tsuitable\tO\n(\tO\t(\tO\neven\tO\teven\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nMySQL B-Application MySQL O\n)\tO\t)\tO\nor\tO\tor\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ndecent\tO\tdecent\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadapt\tO\tadapt\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nfind\tO\tfind\tO\nthis\tO\tthis\tO\nuseful\tO\tuseful\tO\n:\tO\t:\tO\nhttp://thefsb.wordpress.com/2010/12/\tO\thttp://thefsb.wordpress.com/2010/12/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32917369\tO\t32917369\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32917369/\tO\thttps://stackoverflow.com/questions/32917369/\tO\n\t\n\t\nThe\tO\tThe\tO\ndocs\tO\tdocs\tO\nsays\tO\tsays\tO\nthat\tO\tthat\tO\nnew B-Code_Block new B-Code_Block\n\"\tO\t\"\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nmutable B-Data_Type mutable O\nvector B-Data_Structure vector O\nof\tO\tof\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\nlength\tO\tlength\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nunsafeNew B-Code_Block unsafeNew B-Code_Block\n\"\tO\t\"\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nmutable B-Data_Type mutable O\nvector B-Data_Structure vector O\nof\tO\tof\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\nlength\tO\tlength\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlength\tO\tlength\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nchecked\tO\tchecked\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nHowever\tO\tHowever\tO\nthis\tO\tthis\tO\nresolved\tO\tresolved\tO\ngithub B-Website github O\nissue\tO\tissue\tO\nindicates\tO\tindicates\tO\nthat\tO\tthat\tO\nunsafeNew B-Code_Block unsafeNew B-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nzero\tO\tzero\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nwhile\tO\twhile\tO\nnew B-Code_Block new B-Code_Block\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\none\tO\tone\tO\nis\tO\tis\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32917369\tO\t32917369\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32917369/\tO\thttps://stackoverflow.com/questions/32917369/\tO\n\t\n\t\nNo\tO\tNo\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nclear\tO\tclear\tO\n:\tO\t:\tO\n\t\nhttps://hackage.haskell.org/package/vector-0.11.0.0/docs/src/Data-Vector-Generic-Mutable.html#new\tO\thttps://hackage.haskell.org/package/vector-0.11.0.0/docs/src/Data-Vector-Generic-Mutable.html#new\tO\n\t\nnew B-Code_Block new B-Code_Block\nis\tO\tis\tO\nunsafeNew B-Code_Block unsafeNew B-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\naddition\tO\taddition\tO\nof\tO\tof\tO\nbasicInitialize B-Code_Block basicInitialize B-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11102701\tO\t11102701\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11102701/\tO\thttps://stackoverflow.com/questions/11102701/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nJquery B-Library Jquery O\nplugin\tO\tplugin\tO\nSupersized B-Application Supersized O\nand\tO\tand\tO\ni\tO\ti\tO\ncant\tO\tcant\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nMagento B-Application Magento O\n.\tO\t.\tO\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nsustitute\tO\tsustitute\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\n$\tO\t$\tO\nby\tO\tby\tO\njQuery B-Library jQuery O\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nsupersized B-Application supersized O\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\njQuery.noConflict() B-Function jQuery.noConflict() O\n; I-Function ; O\njust\tO\tjust\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\ni\tO\ti\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nhtml B-Language html O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\ndoesnt\tO\tdoesnt\tO\nwork\tO\twork\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1024 I-Code_Block Q_1024 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11102701\tO\t11102701\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11102701/\tO\thttps://stackoverflow.com/questions/11102701/\tO\n\t\n\t\nTry\tO\tTry\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1420 I-Code_Block A_1420 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNo\tO\tNo\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nboth\tO\tboth\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1421 I-Code_Block A_1421 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthey\tO\tthey\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11102701\tO\t11102701\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11102701/\tO\thttps://stackoverflow.com/questions/11102701/\tO\n\t\n\t\nNote\tO\tNote\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nany\tO\tany\tO\nfunction\tO\tfunction\tO\nnamed\tO\tnamed\tO\nsupersized() B-Function supersized() B-Code_Block\nso\tO\tso\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nRead\tO\tRead\tO\nabout\tO\tabout\tO\njQuery B-Library jQuery O\nplugin\tO\tplugin\tO\nmaking\tO\tmaking\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nused\tO\tused\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1417 I-Code_Block A_1417 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1418 I-Code_Block A_1418 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nboth\tO\tboth\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\none\tO\tone\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nare\tO\tare\tO\nsame\tO\tsame\tO\nand\tO\tand\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nyou\tO\tyou\tO\nadded\tO\tadded\tO\njQuery B-Library jQuery O\nlibrary\tO\tlibrary\tO\nfirst\tO\tfirst\tO\n\t\nFull\tO\tFull\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1419 I-Code_Block A_1419 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48688285\tO\t48688285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48688285/\tO\thttps://stackoverflow.com/questions/48688285/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\n‌ B-Code_Block ‌ B-Code_Block\nwith I-Code_Block with I-Code_Block\ninnerHTML I-Code_Block innerHTML I-Code_Block\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6486 I-Code_Block Q_6486 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6487 I-Code_Block Q_6487 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n‌ B-Code_Block ‌ B-Code_Block\n? I-Code_Block ? I-Code_Block\n\t\nalert(document.getElementsByTagName('div')[0].innerHTML) B-Function alert(document.getElementsByTagName('div')[0].innerHTML) B-Code_Block\n\t\n<div>This B-Code_Block <div>This B-Code_Block\ndiv I-Code_Block div I-Code_Block\ncontains I-Code_Block contains I-Code_Block\na I-Code_Block a I-Code_Block\nzero-width&zwnj;non-joiner, I-Code_Block zero-width&zwnj;non-joiner, I-Code_Block\na I-Code_Block a I-Code_Block\nnon-breaking&nbsp;space I-Code_Block non-breaking&nbsp;space I-Code_Block\n&amp; I-Code_Block &amp; I-Code_Block\nan I-Code_Block an I-Code_Block\nampersand</div> I-Code_Block ampersand</div> I-Code_Block\n\t\nFiddle B-Application Fiddle O\n:\tO\t:\tO\nhttps://jsfiddle.net/yst1Lanv/\tO\thttps://jsfiddle.net/yst1Lanv/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48688285\tO\t48688285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48688285/\tO\thttps://stackoverflow.com/questions/48688285/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nits\tO\tits\tO\nunicode\tO\tunicode\tO\n\\u200c B-Value \\u200c B-Code_Block\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nreplace\tO\treplace\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n‌ B-Value ‌ B-Code_Block\nstring I-Value string I-Code_Block\n. B-Data_Type . O\n\t\nalert B-Function alert B-Code_Block\n( I-Function ( I-Code_Block\ndocument.getElementsByTagName B-Function document.getElementsByTagName B-Code_Block\n('div')[0] I-Function ('div')[0] I-Code_Block\n.innerHTML.replace I-Function .innerHTML.replace I-Code_Block\n( I-Function ( I-Code_Block\n/ I-Function / I-Code_Block\n\\u200c/g I-Function \\u200c/g I-Code_Block\n, I-Function , I-Code_Block\n' I-Function ' I-Code_Block\n‌' I-Function ‌' I-Code_Block\n) I-Function ) I-Code_Block\n) B-Function ) B-Code_Block\n\t\n<div>This B-Code_Block <div>This B-Code_Block\ndiv I-Code_Block div I-Code_Block\ncontains I-Code_Block contains I-Code_Block\na I-Code_Block a I-Code_Block\nzero-width&zwnj;non-joiner, I-Code_Block zero-width&zwnj;non-joiner, I-Code_Block\na I-Code_Block a I-Code_Block\nnon-breaking&nbsp;space I-Code_Block non-breaking&nbsp;space I-Code_Block\n&amp; I-Code_Block &amp; I-Code_Block\nan I-Code_Block an I-Code_Block\nampersand</div> I-Code_Block ampersand</div> I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48688285\tO\t48688285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48688285/\tO\thttps://stackoverflow.com/questions/48688285/\tO\n\t\n\t\nYour\tO\tYour\tO\ncharacter B-Data_Type character O\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nextracted\tO\textracted\tO\n(\tO\t(\tO\ninnerHTML B-Variable innerHTML B-Code_Block\n)\tO\t)\tO\ntext\tO\ttext\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nnot\tO\tnot\tO\nencoded\tO\tencoded\tO\nas\tO\tas\tO\nits\tO\tits\tO\nHTML B-Language HTML O\nentity\tO\tentity\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\ncharacter B-Data_Type character O\nwith\tO\twith\tO\nits\tO\tits\tO\nentity\tO\tentity\tO\n:\tO\t:\tO\n\t\nalert B-Function alert B-Code_Block\n( I-Function ( I-Code_Block\ndocument.getElementsByTagName B-Function document.getElementsByTagName B-Code_Block\n('div')[0] I-Function ('div')[0] I-Code_Block\n.innerHTML.replace I-Function .innerHTML.replace I-Code_Block\n(/‌/ I-Function (/‌/ I-Code_Block\ng I-Function g I-Code_Block\n, I-Function , I-Code_Block\n' I-Function ' I-Code_Block\n‌' I-Function ‌' I-Code_Block\n) I-Function ) I-Code_Block\n) B-Function ) B-Code_Block\n; B-Function ; B-Code_Block\n\t\n<div>This B-Code_Block <div>This B-Code_Block\ndiv I-Code_Block div I-Code_Block\ncontains I-Code_Block contains I-Code_Block\na I-Code_Block a I-Code_Block\nzero-width&zwnj;non-joiner, I-Code_Block zero-width&zwnj;non-joiner, I-Code_Block\na I-Code_Block a I-Code_Block\nnon-breaking&nbsp;space I-Code_Block non-breaking&nbsp;space I-Code_Block\n&amp; I-Code_Block &amp; I-Code_Block\nan I-Code_Block an I-Code_Block\nampersand</div> I-Code_Block ampersand</div> I-Code_Block\n\t\nYong B-User_Name Yong O\nQuan I-User_Name Quan O\nposted\tO\tposted\tO\nsome\tO\tsome\tO\nnicer\tO\tnicer\tO\ncode\tO\tcode\tO\nthan\tO\tthan\tO\nme\tO\tme\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nmaintainable\tO\tmaintainable\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nunicode\tO\tunicode\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nregex\tO\tregex\tO\nabove\tO\tabove\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nconfusing\tO\tconfusing\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nread\tO\tread\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7141 I-Code_Block A_7141 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43034930\tO\t43034930\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43034930/\tO\thttps://stackoverflow.com/questions/43034930/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncase\tO\tcase\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncollect\tO\tcollect\tO\nsales\tO\tsales\tO\nstatistics\tO\tstatistics\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ntable B-Data_Structure table O\nwith\tO\twith\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\naggregated\tO\taggregated\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntable\tO\ttable\tO\nhas\tO\thas\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nmillion\tO\tmillion\tO\nentries\tO\tentries\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nitself\tO\titself\tO\nis\tO\tis\tO\naround\tO\taround\tO\n22Gb\tO\t22Gb\tO\n.\tO\t.\tO\n\t\nPlenty\tO\tPlenty\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\nwith\tO\twith\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nworking\tO\tworking\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nbetter\tO\tbetter\tO\n-\tO\t-\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nvery\tO\tvery\tO\nslow\tO\tslow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nPHP B-Language PHP O\nwith\tO\twith\tO\nsqlsrv B-Library sqlsrv O\nextension\tO\textension\tO\non\tO\ton\tO\nCentOS B-Application CentOS O\n7 B-Version 7 O\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\na\tO\ta\tO\nMSSQL B-Application MSSQL O\ndatabase\tO\tdatabase\tO\n(\tO\t(\tO\nERP\tO\tERP\tO\nsystem\tO\tsystem\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nphp B-Language php O\nvariables\tO\tvariables\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nquery\tO\tquery\tO\nis\tO\tis\tO\nset\tO\tset\tO\nup\tO\tup\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5501 I-Code_Block Q_5501 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nguessed\tO\tguessed\tO\nalready\tO\talready\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ncollecting\tO\tcollecting\tO\nsales\tO\tsales\tO\nstatistics\tO\tstatistics\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\ncustomer\tO\tcustomer\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nmonth\tO\tmonth\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nyear B-Variable year O\n2016 B-Value 2016 O\nand\tO\tand\tO\n2015 B-Value 2015 O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5502 I-Code_Block Q_5502 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nworks\tO\tworks\tO\nwell\tO\twell\tO\n,\tO\t,\tO\ngiving\tO\tgiving\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\ni\tO\ti\tO\nexpect\tO\texpect\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\ntoo\tO\ttoo\tO\nslow\tO\tslow\tO\non\tO\ton\tO\ncustomers\tO\tcustomers\tO\nwith\tO\twith\tO\nmany\tO\tmany\tO\norders/transactions\tO\torders/transactions\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\npointers\tO\tpointers\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nspeed\tO\tspeed\tO\nthis\tO\tthis\tO\nup\tO\tup\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntime\tO\ttime\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43034930\tO\t43034930\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43034930/\tO\thttps://stackoverflow.com/questions/43034930/\tO\n\t\n\t\nYour\tO\tYour\tO\nquery\tO\tquery\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nconditional\tO\tconditional\tO\naggregation\tO\taggregation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6214 I-Code_Block A_6214 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSubqueries\tO\tSubqueries\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28749425\tO\t28749425\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28749425/\tO\thttps://stackoverflow.com/questions/28749425/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nWebApi B-Library WebApi O\naction\tO\taction\tO\nthat\tO\tthat\tO\ndeletes\tO\tdeletes\tO\nan\tO\tan\tO\norder\tO\torder\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nback-end\tO\tback-end\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nusers B-Variable users O\nthat\tO\tthat\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAdmin B-Variable Admin B-Code_Block\nand\tO\tand\tO\nOrder B-Variable Order B-Code_Block\nroles\tO\troles\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser B-Variable user O\nis\tO\tis\tO\nalso\tO\talso\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nReadonly B-Variable Readonly B-Code_Block\nrole\tO\trole\tO\nthe\tO\tthe\tO\naction\tO\taction\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nHTTP B-Error_Name HTTP B-Code_Block\n403 I-Error_Name 403 I-Code_Block\nForbidden I-Error_Name Forbidden I-Code_Block\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3386 I-Code_Block Q_3386 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nactions\tO\tactions\tO\nfrom\tO\tfrom\tO\nbeing\tO\tbeing\tO\nexecuted\tO\texecuted\tO\nif\tO\tif\tO\nusers\tO\tusers\tO\nare\tO\tare\tO\nin\tO\tin\tO\nspecific\tO\tspecific\tO\nroles\tO\troles\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nput\tO\tput\tO\nif(User.IsInRole(\"Readonly\")) B-Code_Block if(User.IsInRole(\"Readonly\")) B-Code_Block\n{ I-Code_Block { I-Code_Block\nreturn I-Code_Block return I-Code_Block\nForbidden() I-Code_Block Forbidden() I-Code_Block\n; I-Code_Block ; I-Code_Block\n} I-Code_Block } I-Code_Block\nat\tO\tat\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nall\tO\tall\tO\ndatabase\tO\tdatabase\tO\nupdate-able\tO\tupdate-able\tO\naction\tO\taction\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3387 I-Code_Block Q_3387 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nNotAuthorized B-Variable NotAuthorized B-Code_Block\naction\tO\taction\tO\nfilter\tO\tfilter\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nHTTP B-Error_Name HTTP B-Code_Block\n403 I-Error_Name 403 I-Code_Block\nForbidden I-Error_Name Forbidden I-Code_Block\nresponse\tO\tresponse\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nReadonly B-Variable Readonly B-Code_Block\nrole\tO\trole\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28749425\tO\t28749425\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28749425/\tO\thttps://stackoverflow.com/questions/28749425/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nreverse\tO\treverse\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n[ B-Variable [ B-Code_Block\nAuthorize() I-Variable Authorize() I-Code_Block\n] I-Variable ] I-Code_Block\nattribute\tO\tattribute\tO\nand\tO\tand\tO\nforbid\tO\tforbid\tO\nusers\tO\tusers\tO\nfrom\tO\tfrom\tO\nexecuting\tO\texecuting\tO\nMVC B-Algorithm MVC O\nWebApi B-Library WebApi O\nactions\tO\tactions\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\na\tO\ta\tO\nmember\tO\tmember\tO\nof\tO\tof\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nroles\tO\troles\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4055 I-Code_Block A_4055 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nTo\tO\tTo\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nfilter\tO\tfilter\tO\nattribute\tO\tattribute\tO\nsimply\tO\tsimply\tO\ndecorate\tO\tdecorate\tO\nany\tO\tany\tO\nactions\tO\tactions\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\na\tO\ta\tO\nmember\tO\tmember\tO\nof\tO\tof\tO\na\tO\ta\tO\nrestricted\tO\trestricted\tO\nrole\tO\trole\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\na\tO\ta\tO\nread-only\tO\tread-only\tO\nrole\tO\trole\tO\nthey\tO\tthey\tO\nnot\tO\tnot\tO\npermitted\tO\tpermitted\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4056 I-Code_Block A_4056 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15748635\tO\t15748635\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15748635/\tO\thttps://stackoverflow.com/questions/15748635/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nsaving\tO\tsaving\tO\na\tO\ta\tO\none\tO\tone\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\nself-reference\tO\tself-reference\tO\nrelationship\tO\trelationship\tO\n,\tO\t,\tO\nboth\tO\tboth\tO\nparent\tO\tparent\tO\nand\tO\tand\tO\nchildren\tO\tchildren\tO\nare\tO\tare\tO\nsaved\tO\tsaved\tO\nproperly\tO\tproperly\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nIm\tO\tIm\tO\ngetting\tO\tgetting\tO\nparent_id B-Variable parent_id O\nnull B-Value null O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nchildren\tO\tchildren\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfolloed\tO\tfolloed\tO\nthe\tO\tthe\tO\ndoctrine B-Library doctrine O\nexample\tO\texample\tO\n..\tO\t..\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1553 I-Code_Block Q_1553 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n} B-Code_Block } O\n\t\nand\tO\tand\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1554 I-Code_Block Q_1554 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nreally\tO\treally\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nim\tO\tim\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15748635\tO\t15748635\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15748635/\tO\thttps://stackoverflow.com/questions/15748635/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npersist\tO\tpersist\tO\nALL\tO\tALL\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nentities\tO\tentities\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nafter\tO\tafter\tO\nrunning\tO\trunning\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\ndoctrine B-Library doctrine O\n)\tO\t)\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nYour\tO\tYour\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nnamed\tO\tnamed\tO\n\"\tO\t\"\tO\nCategory->addChildren B-Function Category->addChildren O\n\"\tO\t\"\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nchildren\tO\tchildren\tO\nto\tO\tto\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\ncategory\tO\tcategory\tO\nentity\tO\tentity\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2077 I-Code_Block A_2077 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15748635\tO\t15748635\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15748635/\tO\thttps://stackoverflow.com/questions/15748635/\tO\n\t\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\ntried\tO\ttried\tO\nout\tO\tout\tO\nDoctrine B-Application Doctrine O\nExtensions I-Application Extensions O\n,\tO\t,\tO\nparticularly\tO\tparticularly\tO\nthe\tO\tthe\tO\ntree B-Data_Structure tree O\nextension\tO\textension\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nmakes\tO\tmakes\tO\nwork\tO\twork\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nextremely\tO\textremely\tO\neasy\tO\teasy\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32108657\tO\t32108657\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32108657/\tO\thttps://stackoverflow.com/questions/32108657/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nLWJGL B-Library LWJGL O\npractice\tO\tpractice\tO\nproject\tO\tproject\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nand\tO\tand\tO\njust\tO\tjust\tO\nrecently\tO\trecently\tO\nstumbled\tO\tstumbled\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwith\tO\twith\tO\nevery\tO\tevery\tO\nproject\tO\tproject\tO\ni\tO\ti\tO\ndue\tO\tdue\tO\ni\tO\ti\tO\nsave\tO\tsave\tO\nworking\tO\tworking\tO\nbackups\tO\tbackups\tO\nin\tO\tin\tO\nmultiple\tO\tmultiple\tO\nplaces\tO\tplaces\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nrunning\tO\trunning\tO\na\tO\ta\tO\nWindows B-Operating_System Windows O\n8.1 B-Version 8.1 O\nOS\tO\tOS\tO\nand\tO\tand\tO\nrecently\tO\trecently\tO\nupgraded\tO\tupgraded\tO\nto\tO\tto\tO\nWindows B-Operating_System Windows O\n10 B-Version 10 O\nand\tO\tand\tO\nsuddenly\tO\tsuddenly\tO\nall\tO\tall\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nbackups\tO\tbackups\tO\nand\tO\tand\tO\ncurrent\tO\tcurrent\tO\nprogram\tO\tprogram\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nrendering\tO\trendering\tO\nerror\tO\terror\tO\nas\tO\tas\tO\nseen\tO\tseen\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\non\tO\ton\tO\na\tO\ta\tO\nwindows B-Operating_System windows O\n8.1 B-Version 8.1 O\nOS\tO\tOS\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nnew\tO\tnew\tO\nwindows B-Operating_System windows O\ndriver B-Application driver O\nupdate\tO\tupdate\tO\nthat\tO\tthat\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ncausing\tO\tcausing\tO\nthis\tO\tthis\tO\nrendering\tO\trendering\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nincompatibility\tO\tincompatibility\tO\nwith\tO\twith\tO\nwindows B-Operating_System windows O\n10 B-Version 10 O\nand\tO\tand\tO\nLWJGL B-Library LWJGL O\ni\tO\ti\tO\nhav\tO\thav\tO\nn't\tO\tn't\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nabout\tO\tabout\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32108657\tO\t32108657\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32108657/\tO\thttps://stackoverflow.com/questions/32108657/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nrender\tO\trender\tO\nany\tO\tany\tO\nobjects\tO\tobjects\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nworld\tO\tworld\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ninbuilt\tO\tinbuilt\tO\ndepth\tO\tdepth\tO\ntesting\tO\ttesting\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nGL11.glEnable(GL11.GL_DEPTH_TEST) B-Code_Block GL11.glEnable(GL11.GL_DEPTH_TEST) O\n; I-Code_Block ; O\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\nforgotten\tO\tforgotten\tO\nin\tO\tin\tO\nmost\tO\tmost\tO\ncases\tO\tcases\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\n!\tO\t!\tO\n\t\n-Kore B-User_Name -Kore O\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nAlso\tO\tAlso\tO\ndont\tO\tdont\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\nclear\tO\tclear\tO\nthe\tO\tthe\tO\nbuffer B-Data_Structure buffer O\naswell\tO\taswell\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nGL11 B-Code_Block GL11 O\n. I-Code_Block . O\nglClear(GL11 I-Code_Block glClear(GL11 O\n. I-Code_Block . O\nGL_COLOR_BUFFER_BIT|GL11 I-Code_Block GL_COLOR_BUFFER_BIT|GL11 O\n. I-Code_Block . O\nGL_DEPTH_BUFFER_BIT I-Code_Block GL_DEPTH_BUFFER_BIT O\n); I-Code_Block ); O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5920152\tO\t5920152\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5920152/\tO\thttps://stackoverflow.com/questions/5920152/\tO\n\t\n\t\nFirstly\tO\tFirstly\tO\n,\tO\t,\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nLocationManager B-Class LocationManager O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nin\tO\tin\tO\nan\tO\tan\tO\nAsyncTask B-Class AsyncTask O\nas\tO\tas\tO\nit\tO\tit\tO\n's\tO\t's\tO\nalready\tO\talready\tO\nnon\tO\tnon\tO\nUI\tO\tUI\tO\nblocking\tO\tblocking\tO\n:)\tO\t:)\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nactivity\tO\tactivity\tO\nwhich\tO\twhich\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\nGets\tO\tGets\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\ncurrent\tO\tcurrent\tO\nlocation\tO\tlocation\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\nCalls\tO\tCalls\tO\na\tO\ta\tO\nwebservice\tO\twebservice\tO\nto\tO\tto\tO\nretrieve\tO\tretrieve\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nspecific\tO\tspecific\tO\nPOIs\tO\tPOIs\tO\naround\tO\taround\tO\nthat\tO\tthat\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nchoose\tO\tchoose\tO\nto\tO\tto\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nas\tO\tas\tO\nmap B-Data_Structure map O\nor\tO\tor\tO\nlist B-Data_Structure list O\nusing\tO\tusing\tO\na\tO\ta\tO\nTabActivity B-Class TabActivity O\n.\tO\t.\tO\n\t\nBearing\tO\tBearing\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthe\tO\tthe\tO\nAsyncTask B-Class AsyncTask O\nto\tO\tto\tO\nget\tO\tget\tO\nusers\tO\tusers\tO\nlocation\tO\tlocation\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nwebservice\tO\twebservice\tO\nis\tO\tis\tO\nmanaged\tO\tmanaged\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nTabActivity B-Class TabActivity O\nview\tO\tview\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\neither\tO\teither\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndocked\tO\tdocked\tO\nviews\tO\tviews\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nTabActivity B-Class TabActivity O\nto\tO\tto\tO\nstart\tO\tstart\tO\nan\tO\tan\tO\nAsyncTask B-Class AsyncTask O\nwhich\tO\twhich\tO\nfirst\tO\tfirst\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nlocation\tO\tlocation\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncalls\tO\tcalls\tO\nthe\tO\tthe\tO\nwebservice\tO\twebservice\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nprogress\tO\tprogress\tO\ndialog B-User_Interface_Element dialog O\nprevents\tO\tprevents\tO\nswitching\tO\tswitching\tO\nviews\tO\tviews\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ntabs B-Keyboard_IP tabs O\nduring\tO\tduring\tO\nthis\tO\tthis\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nall\tO\tall\tO\nworking\tO\tworking\tO\napart\tO\tapart\tO\nfrom\tO\tfrom\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nlocation\tO\tlocation\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nAsyncTask B-Class AsyncTask O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nwebservice\tO\twebservice\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwritten\tO\twritten\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmapping\tO\tmapping\tO\nand\tO\tand\tO\noverlay\tO\toverlay\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwritten\tO\twritten\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\nprogress\tO\tprogress\tO\ndialog B-User_Interface_Element dialog O\ncopes\tO\tcopes\tO\nwith\tO\twith\tO\norientation\tO\torientation\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfocus\tO\tfocus\tO\non\tO\ton\tO\nlocation\tO\tlocation\tO\nis\tO\tis\tO\nspeed\tO\tspeed\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\naccuracy\tO\taccuracy\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nchooses\tO\tchooses\tO\nto\tO\tto\tO\nview\tO\tview\tO\nresults\tO\tresults\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmapview B-Class mapview O\nthen\tO\tthen\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\n'\tO\t'\tO\nMy\tO\tMy\tO\nlocation\tO\tlocation\tO\n'\tO\t'\tO\nbutton B-User_Interface_Element button O\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nenable\tO\tenable\tO\na\tO\ta\tO\nmore\tO\tmore\tO\naccurate\tO\taccurate\tO\nlocation\tO\tlocation\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nobtained\tO\tobtained\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninitially\tO\tinitially\tO\nget\tO\tget\tO\na\tO\ta\tO\nrough\tO\trough\tO\nlocation\tO\tlocation\tO\nand\tO\tand\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nresults\tO\tresults\tO\nquickly\tO\tquickly\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngoing\tO\tgoing\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nmap B-Data_Structure map O\nview\tO\tview\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nmap B-Data_Structure map O\nactivity\tO\tactivity\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nlocation\tO\tlocation\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nwebservice\tO\twebservice\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nasync B-Class async O\n-\tO\t-\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nwhat\tO\twhat\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ntaps\tO\ttaps\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nview\tO\tview\tO\ntab\tO\ttab\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nlocation\tO\tlocation\tO\nphase\tO\tphase\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nalso\tO\talso\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\ntheir\tO\ttheir\tO\ndefault\tO\tdefault\tO\nview\tO\tview\tO\n-\tO\t-\tO\nsome\tO\tsome\tO\npeople\tO\tpeople\tO\nmay\tO\tmay\tO\nprefer\tO\tprefer\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nto\tO\tto\tO\na\tO\ta\tO\nmap\tO\tmap\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlistview\tO\tlistview\tO\nwhich\tO\twhich\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nretrieve\tO\tretrieve\tO\nthe\tO\tthe\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nadvice\tO\tadvice\tO\n\t\nMartin B-User_Name Martin O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5920152\tO\t5920152\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5920152/\tO\thttps://stackoverflow.com/questions/5920152/\tO\n\t\n\t\nI\tO\tI\tO\nsussed\tO\tsussed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nhaving\tO\thaving\tO\nwas\tO\twas\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nLocationListener B-Function LocationListener O\nwas\tO\twas\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAsyncTask B-Class AsyncTask O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\nthat\tO\tthat\tO\nalthough\tO\talthough\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ncreated\tO\tcreated\tO\nand\tO\tand\tO\nprepared\tO\tprepared\tO\na\tO\ta\tO\nlopper\tO\tlopper\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nn't\tO\tn't\tO\ncalled\tO\tcalled\tO\nLooper.Loop() B-Function Looper.Loop() O\n\t\nI\tO\tI\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nrequestLocationUpdates B-Class requestLocationUpdates O\n,\tO\t,\tO\nkick\tO\tkick\tO\noff\tO\toff\tO\na\tO\ta\tO\ntimer\tO\ttimer\tO\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nthe\tO\tthe\tO\nlocationmanager B-Class locationmanager O\nresponds\tO\tresponds\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlocation\tO\tlocation\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\ntimer\tO\ttimer\tO\nexpires\tO\texpires\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nlooper.quit() B-Function looper.quit() O\nto\tO\tto\tO\nensure\tO\tensure\tO\nthings\tO\tthings\tO\nreturn\tO\treturn\tO\nto\tO\tto\tO\nnormal\tO\tnormal\tO\n.\tO\t.\tO\n\t\nSeems\tO\tSeems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nremember\tO\tremember\tO\nto\tO\tto\tO\nrespond\tO\trespond\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nback\tO\tback\tO\nbutton B-User_Interface_Element button O\netc\tO\tetc\tO\n,\tO\t,\tO\ncancelling\tO\tcancelling\tO\nthe\tO\tthe\tO\ntimer\tO\ttimer\tO\nand\tO\tand\tO\nlooper\tO\tlooper\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nAsyncTask B-Class AsyncTask O\nis\tO\tis\tO\ncancelled\tO\tcancelled\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27025952\tO\t27025952\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27025952/\tO\thttps://stackoverflow.com/questions/27025952/\tO\n\t\n\t\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\nto\tO\tto\tO\nload\tO\tload\tO\nin\tO\tin\tO\na\tO\ta\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nprofile\tO\tprofile\tO\npicture\tO\tpicture\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\niOS B-Operating_System iOS O\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nrewrite\tO\trewrite\tO\nby\tO\tby\tO\nme\tO\tme\tO\nto\tO\tto\tO\nload\tO\tload\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nurl\tO\turl\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3097 I-Code_Block Q_3097 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nold\tO\told\tO\ncode\tO\tcode\tO\nhad\tO\thad\tO\nthis\tO\tthis\tO\nUIImageView B-Code_Block UIImageView B-Code_Block\n* I-Code_Block * I-Code_Block\nimageView I-Code_Block imageView I-Code_Block\n= I-Code_Block = I-Code_Block\n[ B-Code_Block [ B-Code_Block\n[ B-Code_Block [ B-Code_Block\nUIImageView B-Code_Block UIImageView B-Code_Block\nalloc I-Code_Block alloc I-Code_Block\n] I-Code_Block ] I-Code_Block\ninitWithFrame:CGRectMake(0,40,100,100) B-Code_Block initWithFrame:CGRectMake(0,40,100,100) B-Code_Block\n] I-Code_Block ] I-Code_Block\n; I-Code_Block ; I-Code_Block\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nimage B-Variable image O\nwould\tO\twould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\ntoo\tO\ttoo\tO\nlarge\tO\tlarge\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nincorporate\tO\tincorporate\tO\nthat\tO\tthat\tO\ninto\tO\tinto\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nchanging\tO\tchanging\tO\nhttp://placehold.it/250x250 B-Code_Block http://placehold.it/250x250 B-Code_Block\nto\tO\tto\tO\nhttp://placehold.it/100x100 B-Code_Block http://placehold.it/100x100 B-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\noption\tO\toption\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nplaceholder\tO\tplaceholder\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27025952\tO\t27025952\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27025952/\tO\thttps://stackoverflow.com/questions/27025952/\tO\n\t\n\t\nUse\tO\tUse\tO\nUIImageView B-Code_Block UIImageView B-Code_Block\n* I-Code_Block * I-Code_Block\nimageView I-Code_Block imageView I-Code_Block\n= I-Code_Block = I-Code_Block\n[ B-Code_Block [ B-Code_Block\n[ B-Code_Block [ B-Code_Block\nUIImageView B-Code_Block UIImageView B-Code_Block\nalloc I-Code_Block alloc I-Code_Block\n] I-Code_Block ] I-Code_Block\ninitWithFrame:CGRectMake(0,40,100,100) B-Code_Block initWithFrame:CGRectMake(0,40,100,100) B-Code_Block\n] I-Code_Block ] I-Code_Block\n; I-Code_Block ; I-Code_Block\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nimage B-Variable image O\nlater\tO\tlater\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3735 I-Code_Block A_3735 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nprobably\tO\tprobably\tO\ntake\tO\ttake\tO\nout\tO\tout\tO\n\t\nimageView.layer.rasterizationScale B-Variable imageView.layer.rasterizationScale B-Code_Block\nand\tO\tand\tO\nimageView.layer.shouldRasterize B-Variable imageView.layer.shouldRasterize B-Code_Block\n,\tO\t,\tO\n\t\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\non\tO\ton\tO\na\tO\ta\tO\nside\tO\tside\tO\nnote\tO\tnote\tO\n\t\n(\tO\t(\tO\n+ B-Code_Block + B-Code_Block\n[ I-Code_Block [ I-Code_Block\nNSData I-Code_Block NSData I-Code_Block\ndataWithContentsOfURL I-Code_Block dataWithContentsOfURL I-Code_Block\n: I-Code_Block : I-Code_Block\n] I-Code_Block ] I-Code_Block\nshould\tO\tshould\tO\nNEVER\tO\tNEVER\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\ncase.\tO\tcase.\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44457082\tO\t44457082\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44457082/\tO\thttps://stackoverflow.com/questions/44457082/\tO\n\t\n\t\nWhile\tO\tWhile\tO\nuploading\tO\tuploading\tO\ndoc B-File_Type doc O\nfile\tO\tfile\tO\n(\tO\t(\tO\nexample B-File_Name example O\ntest.doc I-File_Name test.doc O\n)\tO\t)\tO\nto\tO\tto\tO\nserver B-Application server O\n(\tO\t(\tO\nunix B-Operating_System unix O\nmachine\tO\tmachine\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\napache B-Application apache B-Code_Block\ncommons I-Application commons I-Code_Block\njar B-File_Type jar O\nwhich\tO\twhich\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nFormFile B-Class FormFile B-Code_Block\ninstance\tO\tinstance\tO\nat\tO\tat\tO\nserver B-Application server O\nside\tO\tside\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nbyte B-Data_Type byte O\narray B-Data_Structure array O\nform\tO\tform\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbyte B-Data_Type byte O\narray B-Data_Structure array O\nto\tO\tto\tO\nresponse\tO\tresponse\tO\noutput\tO\toutput\tO\nstream\tO\tstream\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbrowser B-Application browser O\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nweird\tO\tweird\tO\ncontent\tO\tcontent\tO\nis\tO\tis\tO\nshown\tO\tshown\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nget\tO\tget\tO\none\tO\tone\tO\npop B-User_Interface_Element pop O\nup I-User_Interface_Element up O\nto\tO\tto\tO\nselect\tO\tselect\tO\nencoding\tO\tencoding\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nand\tO\tand\tO\nweird\tO\tweird\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nshown\tO\tshown\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ndoc.The B-File_Type doc.The O\ncontent\tO\tcontent\tO\ntype\tO\ttype\tO\nis\tO\tis\tO\nset\tO\tset\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5775 I-Code_Block Q_5775 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nwhile\tO\twhile\tO\nwriting\tO\twriting\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\noutput\tO\toutput\tO\nstream\tO\tstream\tO\n,\tO\t,\tO\nmeta\tO\tmeta\tO\ndata\tO\tdata\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\ndoc B-File_Type doc O\nfile\tO\tfile\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nwritten\tO\twritten\tO\nwhich\tO\twhich\tO\ncauses\tO\tcauses\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nanything\tO\tanything\tO\nspecific\tO\tspecific\tO\nfor\tO\tfor\tO\ndoc B-File_Type doc O\nor\tO\tor\tO\ndocx B-File_Type docx O\nfile\tO\tfile\tO\nformats\tO\tformats\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nso\tO\tso\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nin\tO\tin\tO\nproper\tO\tproper\tO\nformat\tO\tformat\tO\nand\tO\tand\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\ncorrect\tO\tcorrect\tO\ndata\tO\tdata\tO\nwhich\tO\twhich\tO\ni\tO\ti\tO\nuploaded\tO\tuploaded\tO\nor\tO\tor\tO\nI\tO\tI\tO\nam\tO\tam\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nAdvance\tO\tAdvance\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44457082\tO\t44457082\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44457082/\tO\thttps://stackoverflow.com/questions/44457082/\tO\n\t\n\t\nIt\tO\tIt\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nfix\tO\tfix\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\nany\tO\tany\tO\ntest\tO\ttest\tO\naround\tO\taround\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nmime\tO\tmime\tO\ntypes\tO\ttypes\tO\nplease\tO\tplease\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\n\t\nhttps://technet.microsoft.com/en-us/library/ee309278(office.12).aspx\tO\thttps://technet.microsoft.com/en-us/library/ee309278(office.12).aspx\tO\n\t\nUpdated\tO\tUpdated\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nresponse\tO\tresponse\tO\ntype\tO\ttype\tO\nas\tO\tas\tO\nArrayBuffer B-Class ArrayBuffer O\nand\tO\tand\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nas\tO\tas\tO\nBlob B-Class Blob O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6477 I-Code_Block A_6477 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOr\tO\tOr\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nwork\tO\twork\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6478 I-Code_Block Q_6478 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44457082\tO\t44457082\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44457082/\tO\thttps://stackoverflow.com/questions/44457082/\tO\n\t\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\na\tO\ta\tO\nknown\tO\tknown\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nMicrosoft B-Website Microsoft O\nwhich\tO\twhich\tO\nprovide\tO\tprovide\tO\nworkaround\tO\tworkaround\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n\t\nEncoding\tO\tEncoding\tO\nPop B-User_Interface_Element Pop O\nUp I-User_Interface_Element Up O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4921376\tO\t4921376\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4921376/\tO\thttps://stackoverflow.com/questions/4921376/\tO\n\t\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\ndeclare\tO\tdeclare\tO\nan\tO\tan\tO\nIF B-Code_Block IF O\nstatement\tO\tstatement\tO\nwith\tO\twith\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\nOR B-Code_Block OR O\nclauses\tO\tclauses\tO\nwill\tO\twill\tO\nJavaScript B-Language JavaScript O\nread\tO\tread\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nORs B-Code_Block ORs O\nor\tO\tor\tO\nstop\tO\tstop\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nsatisfied\tO\tsatisfied\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4921376\tO\t4921376\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4921376/\tO\thttps://stackoverflow.com/questions/4921376/\tO\n\t\n\t\nStops\tO\tStops\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ncalled\tO\tcalled\tO\nshort-circuiting\tO\tshort-circuiting\tO\n\t\nhttp://en.wikipedia.org/wiki/Short-circuit_evaluation\tO\thttp://en.wikipedia.org/wiki/Short-circuit_evaluation\tO\n\t\nhttps://developer.mozilla.org/en/JavaScript/Reference/Operators/Logical_Operators\tO\thttps://developer.mozilla.org/en/JavaScript/Reference/Operators/Logical_Operators\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4921376\tO\t4921376\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4921376/\tO\thttps://stackoverflow.com/questions/4921376/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_513 I-Code_Block A_513 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41878995\tO\t41878995\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41878995/\tO\thttps://stackoverflow.com/questions/41878995/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\ndata\tO\tdata\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nall\tO\tall\tO\nin\tO\tin\tO\none\tO\tone\tO\ncolumn B-User_Interface_Element column O\nfor\tO\tfor\tO\nexample\tO\texample\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5320 I-Code_Block Q_5320 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nto\tO\tto\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5321 I-Code_Block Q_5321 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nformula\tO\tformula\tO\nwill\tO\twill\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5322 I-Code_Block Q_5322 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWithout\tO\tWithout\tO\ntyping\tO\ttyping\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nthing\tO\tthing\tO\nout\tO\tout\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41878995\tO\t41878995\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41878995/\tO\thttps://stackoverflow.com/questions/41878995/\tO\n\t\n\t\nPut\tO\tPut\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nupper\tO\tupper\tO\nleft\tO\tleft\tO\ncell B-User_Interface_Element cell O\nof\tO\tof\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nregion\tO\tregion\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6002 I-Code_Block A_6002 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\ncopy/drag\tO\tcopy/drag\tO\nover\tO\tover\tO\none\tO\tone\tO\ncolumn B-User_Interface_Element column O\nand\tO\tand\tO\ndown\tO\tdown\tO\nsufficient\tO\tsufficient\tO\nto\tO\tto\tO\nget\tO\tget\tO\n0s B-Value 0s O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41878995\tO\t41878995\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41878995/\tO\thttps://stackoverflow.com/questions/41878995/\tO\n\t\n\t\nPick\tO\tPick\tO\nsome\tO\tsome\tO\ncell B-User_Interface_Element cell O\nand\tO\tand\tO\nenter\tO\tenter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6006 I-Code_Block A_6006 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\ncopy\tO\tcopy\tO\nboth\tO\tboth\tO\nacross\tO\tacross\tO\nand\tO\tand\tO\ndown\tO\tdown\tO\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47874480\tO\t47874480\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47874480/\tO\thttps://stackoverflow.com/questions/47874480/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\nzipcodes\tO\tzipcodes\tO\nand\tO\tand\tO\na\tO\ta\tO\ndata\tO\tdata\tO\npoint\tO\tpoint\tO\ncorresponding\tO\tcorresponding\tO\nto\tO\tto\tO\neach\tO\teach\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nplot\tO\tplot\tO\na\tO\ta\tO\nchloropleth B-User_Interface_Element chloropleth O\nusing\tO\tusing\tO\nthese\tO\tthese\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nR B-Language R O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nggplot B-Library ggplot O\nand\tO\tand\tO\nR B-Language R O\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nway\tO\tway\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\nis\tO\tis\tO\nI\tO\tI\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nframe\tO\tframe\tO\n,\tO\t,\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nzipcodes\tO\tzipcodes\tO\nto\tO\tto\tO\nlat\tO\tlat\tO\nlong B-Data_Type long O\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nplot\tO\tplot\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nhavent\tO\thavent\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\ndirection\tO\tdirection\tO\n/\tO\t/\tO\ncode\tO\tcode\tO\nsamples\tO\tsamples\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31801069\tO\t31801069\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31801069/\tO\thttps://stackoverflow.com/questions/31801069/\tO\n\t\n\t\nWhile\tO\tWhile\tO\nwriting\tO\twriting\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncomputer\tO\tcomputer\tO\ndating\tO\tdating\tO\nassignment\tO\tassignment\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nwe\tO\twe\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ncompatibility\tO\tcompatibility\tO\nof\tO\tof\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nof\tO\tof\tO\nfour\tO\tfour\tO\nobjects\tO\tobjects\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nprinted\tO\tprinted\tO\nstrangely\tO\tstrangely\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nEclipse B-Application Eclipse O\ndid\tO\tdid\tO\nn't\tO\tn't\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nan\tO\tan\tO\nerror/warning\tO\terror/warning\tO\nat\tO\tat\tO\nfirst\tO\tfirst\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3847 I-Code_Block Q_3847 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nthings\tO\tthings\tO\nout\tO\tout\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nappeared\tO\tappeared\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\n:\tO\t:\tO\n90.0 B-Value 90.0 O\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nFitzwilliam\tO\tFitzwilliam\tO\nDarcy\tO\tDarcy\tO\n:\tO\t:\tO\n90.55 B-Value 90.55 O\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nRomeo\tO\tRomeo\tO\nMontague\tO\tMontague\tO\n:\tO\t:\tO\n90.3 B-Value 90.3 O\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nJuliet\tO\tJuliet\tO\nCapulet\tO\tCapulet\tO\n:\tO\t:\tO\n90.0 B-Value 90.0 O\n\t\nso\tO\tso\tO\n.......................................................\tO\t.......................................................\tO\non\tO\ton\tO\nso\tO\tso\tO\nforth\tO\tforth\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nwas\tO\twas\tO\na\tO\ta\tO\n\" B-Value \" O\n9 I-Value 9 O\n\" I-Value \" O\nappearing\tO\tappearing\tO\nin\tO\tin\tO\nfront\tO\tfront\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nnumbers\tO\tnumbers\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nlater\tO\tlater\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhad\tO\thad\tO\ntwo\tO\ttwo\tO\nconcatenating\tO\tconcatenating\tO\noperators\tO\toperators\tO\n(\"+\") B-Code_Block (\"+\") O\nafter\tO\tafter\tO\nmy\tO\tmy\tO\n\" B-Value \" O\n\\n I-Value \\n O\n\" B-Value \" O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\ndeleting\tO\tdeleting\tO\nthe\tO\tthe\tO\nextraneous\tO\textraneous\tO\n\" B-Code_Block \" O\n+ I-Code_Block + O\n\" I-Code_Block \" O\n.\tO\t.\tO\n\t\nNew\tO\tNew\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK O\n: I-Code_Block : O\nQ_3848 I-Code_Block Q_3848 B-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNew\tO\tNew\tB-Code_Block\ncorrect\tO\tcorrect\tI-Code_Block\nrun\tO\trun\tI-Code_Block\n:\tO\t:\tO\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\n:\tO\t:\tO\n0.0 B-Value 0.0 O\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nFitzwilliam\tO\tFitzwilliam\tO\nDarcy\tO\tDarcy\tO\n:\tO\t:\tO\n0.55 B-Value 0.55 O\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nRomeo\tO\tRomeo\tO\nMontague\tO\tMontague\tO\n:\tO\t:\tO\n0.3 B-Value 0.3 O\n\t\nFit\tO\tFit\tO\nbetween\tO\tbetween\tO\nElizabeth\tO\tElizabeth\tO\nBennett\tO\tBennett\tO\nand\tO\tand\tO\nJuliet\tO\tJuliet\tO\nCapulet\tO\tCapulet\tO\n:\tO\t:\tO\n0.0 B-Value 0.0 O\n\t\nso\tO\tso\tO\n..............................................\tO\t..............................................\tO\non\tO\ton\tO\nso\tO\tso\tO\nforth\tO\tforth\tO\n.\tO\t.\tO\n\t\nThough\tO\tThough\tO\nI\tO\tI\tO\n've\tO\t've\tO\nthankfully\tO\tthankfully\tO\nfound\tO\tfound\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nexactly\tO\texactly\tO\nis\tO\tis\tO\ncausing\tO\tcausing\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nhappen\tO\thappen\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\neclipse B-Application eclipse O\nshorthand\tO\tshorthand\tO\nthat\tO\tthat\tO\nleads\tO\tleads\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n\" B-Value \" O\n9 I-Value 9 O\n\" I-Value \" O\n'\tO\t'\tO\ns\tO\ts\tO\nappearance\tO\tappearance\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\neclipse B-Application eclipse O\nbug\tO\tbug\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstill\tO\tstill\tO\na\tO\ta\tO\nbeginner\tO\tbeginner\tO\nat\tO\tat\tO\njava B-Language java O\n, I-Language , O\nso\tO\tso\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nsolid\tO\tsolid\tO\nconclusion\tO\tconclusion\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nmodifying\tO\tmodifying\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nslightly\tO\tslightly\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\nEclipse B-Application Eclipse O\nwould\tO\twould\tO\nreact\tO\treact\tO\n(\tO\t(\tO\nI\tO\tI\tO\ndeleted\tO\tdeleted\tO\nthe\tO\tthe\tO\nspace\tO\tspace\tO\nbetween\tO\tbetween\tO\nmy\tO\tmy\tO\noriginal\tO\toriginal\tO\n\" B-Code_Block \" O\n+ I-Code_Block + O\n+ I-Code_Block + O\n\" I-Code_Block \" O\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK O\n: I-Code_Block : O\nQ_3849 I-Code_Block Q_3849 O\n( I-Code_Block ( O\ncode I-Code_Block code O\nomitted I-Code_Block omitted O\nfor I-Code_Block for O\nannotation I-Code_Block annotation B-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEclipse B-Application Eclipse B-Code_Block\ngave\tO\tgave\tI-Code_Block\nme\tO\tme\tI-Code_Block\nthis\tO\tthis\tI-Code_Block\nwarning\tO\twarning\tI-Code_Block\n:\tO\t:\tI-Code_Block\n\t\nMultiple\tO\tMultiple\tB-Code_Block\nmarkers\tO\tmarkers\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n\t\nSyntax\tO\tSyntax\tO\nerror\tO\terror\tO\non\tO\ton\tO\ntoken\tO\ttoken\tO\n\"\tO\t\"\tO\n++ B-Code_Block ++ O\n\"\tO\t\"\tO\n,\tO\t,\tO\n+ B-Code_Block + O\n\t\nexpected\tO\texpected\tO\n\t\nInvalid\tO\tInvalid\tO\nargument\tO\targument\tO\nto\tO\tto\tO\noperation\tO\toperation\tO\n++ B-Code_Block ++ O\n/\tO\t/\tO\n- B-Code_Block - O\n- I-Code_Block - O\n\t\nThis\tO\tThis\tO\nmakes\tO\tmakes\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\n++ B-Code_Block ++ O\non\tO\ton\tO\nits\tO\tits\tO\nown\tO\town\tO\nis\tO\tis\tO\nan\tO\tan\tO\noperator\tO\toperator\tO\nof\tO\tof\tO\nsorts\tO\tsorts\tO\n.\tO\t.\tO\n\t\nInterestingly\tO\tInterestingly\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nput\tO\tput\tO\na\tO\ta\tO\nspace\tO\tspace\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\n++ B-Code_Block ++ O\n\"\tO\t\"\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nwarning\tO\twarning\tO\ndisappears\tO\tdisappears\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\npaste\tO\tpaste\tO\nmy\tO\tmy\tO\nentire\tO\tentire\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsake\tO\tsake\tO\nof\tO\tof\tO\nreadability\tO\treadability\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nedit\tO\tedit\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nclarification\tO\tclarification\tO\nregarding\tO\tregarding\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31801069\tO\t31801069\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31801069/\tO\thttps://stackoverflow.com/questions/31801069/\tO\n\t\n\t\nNo\tO\tNo\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nunusual\tO\tunusual\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nsimplify\tO\tsimplify\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nmassively\tO\tmassively\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4546 I-Code_Block A_4546 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nResult\tO\tResult\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4547 I-Code_Block A_4547 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nadmittedly\tO\tadmittedly\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nstrings B-Data_Type strings O\nfor\tO\tfor\tO\nboth\tO\tboth\tO\nstart B-Variable start B-Code_Block\nand\tO\tand\tO\nend B-Variable end B-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\n+ B-Code_Block + B-Code_Block\nbeing\tO\tbeing\tO\nleft-associative\tO\tleft-associative\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\nany\tO\tany\tO\ndifference\tO\tdifference\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nIf\tO\tIf\tO\nstart B-Variable start B-Code_Block\nwere\tO\twere\tO\nan\tO\tan\tO\ninteger B-Data_Type integer O\n,\tO\t,\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nbinary\tO\tbinary\tO\n+ B-Code_Block + B-Code_Block\noperator\tO\toperator\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ninteger B-Data_Type integer O\naddition\tO\taddition\tO\nin\tO\tin\tO\nboth\tO\tboth\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nextra\tO\textra\tO\n+ B-Code_Block + B-Code_Block\nends\tO\tends\tO\nup\tO\tup\tO\nbeing\tO\tbeing\tO\na\tO\ta\tO\nunary B-Data_Type unary O\n+ B-Code_Block + B-Code_Block\noperator\tO\toperator\tO\nwith\tO\twith\tO\n' B-Value ' B-Code_Block\n\\t I-Value \\t I-Code_Block\n' B-Value ' B-Code_Block\nas\tO\tas\tO\nthe\tO\tthe\tO\noperand\tO\toperand\tO\n.\tO\t.\tO\n\t\nUnary\tO\tUnary\tO\nnumeric\tO\tnumeric\tO\npromotion\tO\tpromotion\tO\nis\tO\tis\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nchar B-Data_Type char B-Code_Block\n,\tO\t,\tO\ngiving\tO\tgiving\tO\nint B-Data_Type int B-Code_Block\nas\tO\tas\tO\na\tO\ta\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbecomes\tO\tbecomes\tO\neffectively\tO\teffectively\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4548 I-Code_Block A_4548 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhich\tO\twhich\tO\nis\tO\tis\tO\neffectively\tO\teffectively\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4549 I-Code_Block A_4549 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhich\tO\twhich\tO\nis\tO\tis\tO\neffectively\tO\teffectively\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4550 I-Code_Block A_4550 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n..\tO\t..\tO\n.\tO\t.\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\npoint\tO\tpoint\tO\nit\tO\tit\tO\n's\tO\t's\tO\nhopefully\tO\thopefully\tO\nclear\tO\tclear\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\navoid\tO\tavoid\tO\naccidentally\tO\taccidentally\tO\nending\tO\tending\tO\nup\tO\tup\tO\ntreating\tO\ttreating\tO\na\tO\ta\tO\ncharacter B-Data_Type character O\nas\tO\tas\tO\nan\tO\tan\tO\ninteger B-Data_Type integer O\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nprobably\tO\tprobably\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nstrings B-Data_Type strings O\ninstead\tO\tinstead\tO\n-\tO\t-\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\npoint\tO\tpoint\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\ncompile\tO\tcompile\tO\nbecause\tO\tbecause\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nno\tO\tno\tO\nunary B-Data_Type unary O\n+ B-Code_Block + B-Code_Block\noperator\tO\toperator\tO\nfor\tO\tfor\tO\nString B-Data_Type String B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4551 I-Code_Block A_4551 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n.\tO\t.\tO\n.\tO\t.\tO\ngives\tO\tgives\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4552 I-Code_Block A_4552 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31801069\tO\t31801069\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31801069/\tO\thttps://stackoverflow.com/questions/31801069/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n+ B-Code_Block + B-Code_Block\n+ I-Code_Block + I-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nalso\tO\talso\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nchar B-Data_Type char O\n' B-Value ' B-Code_Block\n\\t I-Value \\t I-Code_Block\n' B-Value ' B-Code_Block\nand\tO\tand\tO\nnot\tO\tnot\tO\nString B-Data_Type String O\n\" B-Value \" B-Code_Block\n\\t I-Value \\t I-Code_Block\n\" B-Value \" B-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nSystem.out.println B-Code_Block System.out.println B-Code_Block\n( I-Code_Block ( I-Code_Block\n\" I-Code_Block \" I-Code_Block\nHello I-Code_Block Hello I-Code_Block\n\" I-Code_Block \" I-Code_Block\n+ I-Code_Block + I-Code_Block\n' I-Code_Block ' I-Code_Block\n\\t' I-Code_Block \\t' I-Code_Block\n) I-Code_Block ) I-Code_Block\n; B-Code_Block ; B-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\n\\t B-Value \\t B-Code_Block\nis\tO\tis\tO\ntaken\tO\ttaken\tO\nas\tO\tas\tO\na\tO\ta\tO\ncharacter\tO\tcharacter\tO\nliteral\tO\tliteral\tO\nand\tO\tand\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nas\tO\tas\tO\n\\t B-Value \\t B-Code_Block\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nSystem.out.println B-Code_Block System.out.println B-Code_Block\n( I-Code_Block ( I-Code_Block\n\" I-Code_Block \" I-Code_Block\nHello I-Code_Block Hello I-Code_Block\n\" I-Code_Block \" I-Code_Block\n+ I-Code_Block + I-Code_Block\n+ I-Code_Block + I-Code_Block\n' I-Code_Block ' I-Code_Block\n\\t' I-Code_Block \\t' I-Code_Block\n) I-Code_Block ) I-Code_Block\n; B-Code_Block ; B-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nbecomes\tO\tbecomes\tO\neffectively\tO\teffectively\tO\nSystem.out.println B-Code_Block System.out.println B-Code_Block\n( I-Code_Block ( I-Code_Block\n\" I-Code_Block \" I-Code_Block\nHello I-Code_Block Hello I-Code_Block\n\" I-Code_Block \" I-Code_Block\n+ I-Code_Block + I-Code_Block\n( B-Code_Block ( B-Code_Block\n+ I-Code_Block + I-Code_Block\n' I-Code_Block ' I-Code_Block\n\\t' I-Code_Block \\t' I-Code_Block\n) I-Code_Block ) I-Code_Block\n) B-Code_Block ) B-Code_Block\n; B-Code_Block ; B-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nit\tO\tit\tO\nis\tO\tis\tO\ntreated\tO\ttreated\tO\nas\tO\tas\tO\nan\tO\tan\tO\nint B-Data_Type int B-Code_Block\nby\tO\tby\tO\njava B-Language java O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nonly\tO\tonly\tO\nassign\tO\tassign\tO\n+ B-Code_Block + B-Code_Block\nand\tO\tand\tO\n- B-Code_Block - B-Code_Block\nsigns\tO\tsigns\tO\nto\tO\tto\tO\nints B-Data_Type ints O\n,\tO\t,\tO\nnot\tO\tnot\tO\nchars B-Data_Type chars O\n.\tO\t.\tO\n\t\nRemember\tO\tRemember\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nint B-Code_Block int B-Code_Block\ni I-Code_Block i I-Code_Block\n= I-Code_Block = I-Code_Block\n+2 I-Code_Block +2 I-Code_Block\nor\tO\tor\tO\n-2 B-Code_Block -2 B-Code_Block\nor\tO\tor\tO\n+ B-Code_Block + B-Code_Block\n+ I-Code_Block + I-Code_Block\n2 I-Code_Block 2 I-Code_Block\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nASCII\tO\tASCII\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n\\t B-Value \\t B-Code_Block\nis\tO\tis\tO\n9 B-Value 9 B-Code_Block\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nand\tO\tand\tO\nget\tO\tget\tO\n's\tO\t's\tO\nprinted\tO\tprinted\tO\nas\tO\tas\tO\nHello9 B-Value Hello9 B-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20035155\tO\t20035155\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20035155/\tO\thttps://stackoverflow.com/questions/20035155/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\njQuery B-Library jQuery O\nplugin\tO\tplugin\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2121 I-Code_Block Q_2121 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThat\tO\tThat\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2122 I-Code_Block Q_2122 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThat\tO\tThat\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\nfor\tO\tfor\tO\nrotating\tO\trotating\tO\nit\tO\tit\tO\nvery\tO\tvery\tO\nnice\tO\tnice\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nanimate\tO\tanimate\tO\nthe\tO\tthe\tO\nrotation\tO\trotation\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nhappen\tO\thappen\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\nplugin B-Application plugin O\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nfyi\tO\tfyi\tO\n:\tO\t:\tO\nchanging\tO\tchanging\tO\nanimate B-Code_Block animate B-Code_Block\n: I-Code_Block : I-Code_Block\nfalse I-Code_Block false I-Code_Block\nto\tO\tto\tO\ntrue\tO\ttrue\tB-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nenable\tO\tenable\tO\nit\tO\tit\tO\n:)\tO\t:)\tO\n)\tO\t)\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33477223\tO\t33477223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33477223/\tO\thttps://stackoverflow.com/questions/33477223/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nMandrill B-Library Mandrill O\n's\tO\t's\tO\napi I-Library api O\nto\tO\tto\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nvia\tO\tvia\tO\ncomposer B-Application composer O\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\ninstalled\tO\tinstalled\tO\nit\tO\tit\tO\nmanually\tO\tmanually\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nMandrill B-Library Mandrill O\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nnothing\tO\tnothing\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\ncausing\tO\tcausing\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nMandrill B-Library Mandrill O\nmethods\tO\tmethods\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nshowing\tO\tshowing\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4085 I-Code_Block Q_4085 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n..\tO\t..\tO\n.\tO\t.\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\nfollowing\tO\tfollowing\tO\nchoices\tO\tchoices\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4086 I-Code_Block Q_4086 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\nare\tO\tare\tO\nsuppose\tO\tsuppose\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\nis\tO\tis\tO\nsuppose\tO\tsuppose\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\ncan\tO\tcan\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\ntrouble-shooting\tO\ttrouble-shooting\tO\nideas\tO\tideas\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nat\tO\tat\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\n6\tO\t6\tO\nhours\tO\thours\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nshould\tO\tshould\tO\nnote\tO\tnote\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nforward\tO\tforward\tO\nslash\tO\tslash\tO\nin\tO\tin\tO\norder\tO\torder\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4087 I-Code_Block Q_4087 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nonly\tO\tonly\tO\nbring\tO\tbring\tO\nthis\tO\tthis\tO\nup\tO\tup\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nbeing\tO\tbeing\tO\ndone\tO\tdone\tO\non\tO\ton\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\nexample\tO\texample\tO\nthat\tO\tthat\tO\nexist\tO\texist\tO\nout\tO\tout\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n,\tO\t,\tO\n\t\nChris B-User_Name Chris O\nM I-User_Name M O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33477223\tO\t33477223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33477223/\tO\thttps://stackoverflow.com/questions/33477223/\tO\n\t\n\t\nCheck\tO\tCheck\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nhttps://mandrillapp.com/api/docs/messages.php.html\tO\thttps://mandrillapp.com/api/docs/messages.php.html\tO\n.\tO\t.\tO\n\t\nIts\tO\tIts\tO\nhas\tO\thas\tO\nPHP B-Language PHP O\nlibrary\tO\tlibrary\tO\nspecific\tO\tspecific\tO\nexamples\tO\texamples\tO\nof\tO\tof\tO\neach\tO\teach\tO\nAPI B-Library API O\n,\tO\t,\tO\nlike\tO\tlike\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4792 I-Code_Block A_4792 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n,\tO\t,\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15196931\tO\t15196931\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15196931/\tO\thttps://stackoverflow.com/questions/15196931/\tO\n\t\n\t\nIve\tO\tIve\tO\nbeen\tO\tbeen\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\ntutorials\tO\ttutorials\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nphone\tO\tphone\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\na\tO\ta\tO\ncontact\tO\tcontact\tO\nin\tO\tin\tO\nAndroid B-Operating_System Android O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nI\tO\tI\tO\nface\tO\tface\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ncontact\tO\tcontact\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n3\tO\t3\tO\ncontacts\tO\tcontacts\tO\nsaved\tO\tsaved\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nnumbers\tO\tnumbers\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nIm\tO\tIm\tO\nposting\tO\tposting\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nif\tO\tif\tO\nit\tO\tit\tO\nhelps\tO\thelps\tO\nanyone\tO\tanyone\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1473 I-Code_Block Q_1473 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n==\tO\t==\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nFor\tO\tFor\tO\nthose\tO\tthose\tO\ninterested\tO\tinterested\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1474 I-Code_Block Q_1474 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15196931\tO\t15196931\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15196931/\tO\thttps://stackoverflow.com/questions/15196931/\tO\n\t\n\t\nHi\tO\tHi\tO\ntry\tO\ttry\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\ncontacts\tO\tcontacts\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1934 I-Code_Block A_1934 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15196931\tO\t15196931\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15196931/\tO\thttps://stackoverflow.com/questions/15196931/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1933 I-Code_Block A_1933 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42188872\tO\t42188872\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42188872/\tO\thttps://stackoverflow.com/questions/42188872/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndraw\tO\tdraw\tO\na\tO\ta\tO\nborder B-User_Interface_Element border O\nthat\tO\tthat\tO\nlooks\tO\tlooks\tO\nexactly\tO\texactly\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\none\tO\tone\tO\na\tO\ta\tO\nListView B-Class ListView O\non\tO\ton\tO\nWindows B-Operating_System Windows O\n10 B-Version 10 O\nhas\tO\thas\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nbecause\tO\tbecause\tO\n,\tO\t,\tO\nFixed3D B-Variable Fixed3D O\nlooks\tO\tlooks\tO\nsunken\tO\tsunken\tO\n,\tO\t,\tO\nand\tO\tand\tO\nFixedSingle B-Variable FixedSingle O\nlooks\tO\tlooks\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\naforementioned\tO\taforementioned\tO\nborder B-User_Interface_Element border O\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nMagnifier B-Application Magnifier O\n,\tO\t,\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nWindows B-Operating_System Windows O\n10 B-Version 10 O\nborder B-User_Interface_Element border O\nis\tO\tis\tO\ntwo-pixel\tO\ttwo-pixel\tO\nwide\tO\twide\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nidea\tO\tidea\tO\nwas\tO\twas\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\npanel B-User_Interface_Element panel O\nthat\tO\tthat\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nborders B-User_Interface_Element borders O\nbut\tO\tbut\tO\ndraws\tO\tdraws\tO\ntwo-pixel-wide B-Value two-pixel-wide O\nrectangles B-User_Interface_Element rectangles O\non\tO\ton\tO\nits\tO\tits\tO\nclient\tO\tclient\tO\narea\tO\tarea\tO\n,\tO\t,\tO\nand\tO\tand\tO\nfit\tO\tfit\tO\na\tO\ta\tO\nchild B-Variable child O\n,\tO\t,\tO\nwhose\tO\twhose\tO\nborder B-User_Interface_Element border O\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\nnone\tO\tnone\tO\n,\tO\t,\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nrectangles B-User_Interface_Element rectangles O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nwell\tO\twell\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nDesigner B-Application Designer O\n,\tO\t,\tO\nnor\tO\tnor\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nwork\tO\twork\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5358 I-Code_Block Q_5358 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42188872\tO\t42188872\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42188872/\tO\thttps://stackoverflow.com/questions/42188872/\tO\n\t\n\t\nThe\tO\tThe\tO\ndescription\tO\tdescription\tO\nof\tO\tof\tO\nAffectedControl B-Variable AffectedControl B-Code_Block\nis\tO\tis\tO\n\"\tO\t\"\tO\nGets\tO\tGets\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\ncontrol\tO\tcontrol\tO\naffected\tO\taffected\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nchange\tO\tchange\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nweirdly\tO\tweirdly\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nactually\tO\tactually\tO\nthe\tO\tthe\tO\npanel B-User_Interface_Element panel O\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6041 I-Code_Block A_6041 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nflickering\tO\tflickering\tO\nwhen\tO\twhen\tO\nresizing\tO\tresizing\tO\nthe\tO\tthe\tO\npanel B-User_Interface_Element panel O\n,\tO\t,\tO\nprobably\tO\tprobably\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\ntwo\tO\ttwo\tO\ncontrols\tO\tcontrols\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\none\tO\tone\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\nborder B-User_Interface_Element border O\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17209302\tO\t17209302\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17209302/\tO\thttps://stackoverflow.com/questions/17209302/\tO\n\t\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nload\tO\tload\tO\nspecific\tO\tspecific\tO\nentities\tO\tentities\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nJSP B-Application JSP O\nform\tO\tform\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\noccurs\tO\toccurs\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nload\tO\tload\tO\nentities\tO\tentities\tO\nwhich\tO\twhich\tO\ntypes\tO\ttypes\tO\nare\tO\tare\tO\n\"\tO\t\"\tO\nUSER\tO\tUSER\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nhere\tO\there\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1749 I-Code_Block Q_1749 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nlies\tO\tlies\tO\nin\tO\tin\tO\nat B-Output_Block at B-Code_Block\ncom.mysite.bookingmeeting.dao.implementation.UserProfileDaoImpl.findAllUsers(UserProfileDaoImpl.java:47) I-Output_Block com.mysite.bookingmeeting.dao.implementation.UserProfileDaoImpl.findAllUsers(UserProfileDaoImpl.java:47) I-Code_Block\nand\tO\tand\tO\nat B-Output_Block at B-Code_Block\norg.apache.jsp.admin.ManageUsers_jsp._jspService(ManageUsers_jsp.java:133) I-Output_Block org.apache.jsp.admin.ManageUsers_jsp._jspService(ManageUsers_jsp.java:133) I-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nchecked\tO\tchecked\tO\nthose\tO\tthose\tO\ncodes\tO\tcodes\tO\nin\tO\tin\tO\nthose\tO\tthose\tO\nspecific\tO\tspecific\tO\npages\tO\tpages\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nworked\tO\tworked\tO\nbefore\tO\tbefore\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreasons\tO\treasons\tO\nnow\tO\tnow\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nmethod\tO\tmethod\tO\nfindAllUsers() B-Function findAllUsers() O\nof\tO\tof\tO\nUserProfileDaoImpl() B-Class UserProfileDaoImpl() O\nclass\tO\tclass\tO\nis\tO\tis\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1750 I-Code_Block Q_1750 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nManageUsers.jsp B-File_Name ManageUsers.jsp O\nis\tO\tis\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1751 I-Code_Block Q_1751 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntested\tO\ttested\tO\nabove\tO\tabove\tO\nfile\tO\tfile\tO\nwithout\tO\twithout\tO\nDeleteUserForm.jspf B-File_Name DeleteUserForm.jspf O\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nwell\tO\twell\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nproblems\tO\tproblems\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\ncause\tO\tcause\tO\nis\tO\tis\tO\nDeleteUserForm.jsp B-File_Name DeleteUserForm.jsp O\nand\tO\tand\tO\nhere\tO\there\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nform\tO\tform\tO\nis\tO\tis\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1752 I-Code_Block Q_1752 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nalso\tO\talso\tO\nworked\tO\tworked\tO\nbefore\tO\tbefore\tO\nbut\tO\tbut\tO\nnow\tO\tnow\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17209302\tO\t17209302\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17209302/\tO\thttps://stackoverflow.com/questions/17209302/\tO\n\t\n\t\nI\tO\tI\tO\nsolved\tO\tsolved\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nand\tO\tand\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nset\tO\tset\tO\nString B-Data_Type String O\ntype\tO\ttype\tO\nvariable\tO\tvariable\tO\nto\tO\tto\tO\nUserProfile B-Class UserProfile O\ntype\tO\ttype\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22112995\tO\t22112995\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22112995/\tO\thttps://stackoverflow.com/questions/22112995/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n(\tO\t(\tO\nSpotDetails B-Class SpotDetails O\n)\tO\t)\tO\nwhich\tO\twhich\tO\nincludes\tO\tincludes\tO\na\tO\ta\tO\nfragment\tO\tfragment\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ndrawn\tO\tdrawn\tO\nprogramically\tO\tprogramically\tO\n.\tO\t.\tO\n\t\nUntill\tO\tUntill\tO\nnow\tO\tnow\tO\ni\tO\ti\tO\n've\tO\t've\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\nfragment\tO\tfragment\tO\ndrawing\tO\tdrawing\tO\nclass\tO\tclass\tO\n(\tO\t(\tO\nWindRose B-Class WindRose O\n)\tO\t)\tO\nas\tO\tas\tO\na\tO\ta\tO\nchild\tO\tchild\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nWindRose B-Class WindRose O\nclass\tO\tclass\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nAsynTask B-Class AsynTask O\nfor\tO\tfor\tO\nbetter\tO\tbetter\tO\nUser\tO\tUser\tO\nExperience\tO\tExperience\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\nApplication\tO\tApplication\tO\nis\tO\tis\tO\nsuffering\tO\tsuffering\tO\nfrom\tO\tfrom\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\nwork\tO\twork\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nWindRose B-Class WindRose O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2395 I-Code_Block Q_2395 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWindRose B-Class WindRose O\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2396 I-Code_Block Q_2396 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIm\tO\tIm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\ni\tO\ti\tO\nexplained\tO\texplained\tO\nthings\tO\tthings\tO\nright\tO\tright\tO\nso\tO\tso\tO\nplease\tO\tplease\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nif\tO\tif\tO\nthings\tO\tthings\tO\nare\tO\tare\tO\nunclear\tO\tunclear\tO\n:)\tO\t:)\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2397 I-Code_Block Q_2397 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nhow\tO\thow\tO\nshould\tO\tshould\tO\ni\tO\ti\tO\nimplement\tO\timplement\tO\nthis\tO\tthis\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nSpotDetails B-Class SpotDetails O\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nwhat\tO\twhat\tO\nshould\tO\tshould\tO\ni\tO\ti\tO\nreturn\tO\treturn\tO\nfrom\tO\tfrom\tO\nDrawRose B-Function DrawRose O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22112995\tO\t22112995\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22112995/\tO\thttps://stackoverflow.com/questions/22112995/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\ndraw B-Function draw O\nonly\tO\tonly\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ndraw B-Function draw O\nin\tO\tin\tO\nthe\tO\tthe\tO\nbackground B-User_Interface_Element background O\nif\tO\tif\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nDraw B-Function Draw O\ninheritance\tO\tinheritance\tO\nmethod\tO\tmethod\tO\nfrom\tO\tfrom\tO\nView B-Class View O\n.\tO\t.\tO\n\t\nBetter\tO\tBetter\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nSurfaceView B-Class SurfaceView O\nwith\tO\twith\tO\nlock\tO\tlock\tO\n/\tO\t/\tO\nunlock\tO\tunlock\tO\ncanvas B-Variable canvas O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\noptimized\tO\toptimized\tO\nalgorithm\tO\talgorithm\tO\nwhich\tO\twhich\tO\nallows\tO\tallows\tO\nfor\tO\tfor\tO\nbackground B-User_Interface_Element background O\ndrawing\tO\tdrawing\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3002 I-Code_Block A_3002 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46272847\tO\t46272847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46272847/\tO\thttps://stackoverflow.com/questions/46272847/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nsharing\tO\tsharing\tO\ndata\tO\tdata\tO\nacross\tO\tacross\tO\ntwo\tO\ttwo\tO\nsibling\tO\tsibling\tO\ncomponents\tO\tcomponents\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\ninjectible B-Class injectible O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\ninjectible\tO\tinjectible\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nobservable B-Class observable O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6070 I-Code_Block Q_6070 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nthen\tO\tthen\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nSubject B-Class Subject O\nin\tO\tin\tO\nplace\tO\tplace\tO\nof\tO\tof\tO\nObservable B-Class Observable O\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nObservable B-Class Observable O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nSubject B-Class Subject O\n,\tO\t,\tO\nso\tO\tso\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nreactive\tO\treactive\tO\nprogramming\tO\tprogramming\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nconfused\tO\tconfused\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46272847\tO\t46272847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46272847/\tO\thttps://stackoverflow.com/questions/46272847/\tO\n\t\n\t\nuse\tO\tuse\tO\na\tO\ta\tO\nglobal B-Data_Type global O\nvariable\tO\tvariable\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ninjectible B-Class injectible O\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nthem\tO\tthem\tO\nthrough\tO\tthrough\tO\nout\tO\tout\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\n1.create\tO\t1.create\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nDTO\tO\tDTO\tO\n.\tO\t.\tO\n\t\n2.import\tO\t2.import\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ncomponent\tO\tcomponent\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\n3.create\tO\t3.create\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\nconstructor\tO\tconstructor\tO\n's\tO\t's\tO\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\n4.access\tO\t4.access\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32402094\tO\t32402094\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32402094/\tO\thttps://stackoverflow.com/questions/32402094/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\nSpark B-Library Spark O\n1.4.1 B-Version 1.4.1 O\non\tO\ton\tO\nmy\tO\tmy\tO\nlocal\tO\tlocal\tO\nMac B-Device Mac O\nlaptop I-Device laptop O\nand\tO\tand\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npyspark B-Library pyspark B-Code_Block\ninteractively\tO\tinteractively\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nissues\tO\tissues\tO\n.\tO\t.\tO\n\t\nSpark B-Library Spark O\nwas\tO\twas\tO\ninstalled\tO\tinstalled\tO\nthrough\tO\tthrough\tO\nHomebrew B-Application Homebrew O\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nAnaconda B-Application Anaconda O\nPython B-Language Python O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nspark-submit B-Code_Block spark-submit B-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3927 I-Code_Block Q_3927 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3928 I-Code_Block Q_3928 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nanywhere\tO\tanywhere\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n/usr/local/Cellar/apache-spark/1.4.1/ B-File_Name /usr/local/Cellar/apache-spark/1.4.1/ B-Code_Block\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nspark-submit B-Code_Block spark-submit B-Code_Block\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nset\tO\tset\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3929 I-Code_Block Q_3929 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nsomething\tO\tsomething\tO\nis\tO\tis\tO\nset\tO\tset\tO\nincorrectly\tO\tincorrectly\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nenvironment\tO\tenvironment\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nit\tO\tit\tO\ndown\tO\tdown\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32402094\tO\t32402094\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32402094/\tO\thttps://stackoverflow.com/questions/32402094/\tO\n\t\n\t\nThe\tO\tThe\tO\npython B-File_Type python O\nfiles\tO\tfiles\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nexecuted\tO\texecuted\tO\nby\tO\tby\tO\nspark-submit B-Code_Block spark-submit B-Code_Block\nshould\tO\tshould\tO\nbe\tO\tbe\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nPYTHONPATH B-Code_Block PYTHONPATH B-Code_Block\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\npath\tO\tpath\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\nby\tO\tby\tO\ndoing\tO\tdoing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7137 I-Code_Block A_7137 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nadd\tO\tadd\tO\n' B-Value ' B-Code_Block\n. I-Value . I-Code_Block\n' I-Value ' I-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nPYTHONPATH B-Code_Block PYTHONPATH B-Code_Block\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nalready\tO\talready\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\npython B-Language python O\nscript\tO\tscript\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7138 I-Code_Block A_7138 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThanks\tO\tThanks\tO\nto\tO\tto\tO\n@Def_Os B-User_Name @Def_Os O\nfor\tO\tfor\tO\npointing\tO\tpointing\tO\nthat\tO\tthat\tO\nout\tO\tout\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7930740\tO\t7930740\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7930740/\tO\thttps://stackoverflow.com/questions/7930740/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nsome\tO\tsome\tO\ngeneric\tO\tgeneric\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nhandling\tO\thandling\tO\ndrops\tO\tdrops\tO\nin\tO\tin\tO\nWPF B-Library WPF O\ndrop\tO\tdrop\tO\ntargets\tO\ttargets\tO\n.\tO\t.\tO\n\t\nAllowDrop B-Variable AllowDrop O\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\ntrue\tO\ttrue\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n've\tO\t've\tO\nhooked\tO\thooked\tO\nonto\tO\tonto\tO\nDragEnter B-Class DragEnter O\n,\tO\t,\tO\nDragOver B-Class DragOver O\n,\tO\t,\tO\nDragLeave B-Class DragLeave O\n,\tO\t,\tO\n&\tO\t&\tO\nDrop B-Class Drop O\non\tO\ton\tO\nthe\tO\tthe\tO\ndrop\tO\tdrop\tO\ntarget\tO\ttarget\tO\nUIElement B-Class UIElement O\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nbubbling\tO\tbubbling\tO\nevents\tO\tevents\tO\nenables\tO\tenables\tO\nnesting\tO\tnesting\tO\nof\tO\tof\tO\ndrop\tO\tdrop\tO\ntargets\tO\ttargets\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\nsource\tO\tsource\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\ninter-application\tO\tinter-application\tO\ndrag\tO\tdrag\tO\n&\tO\t&\tO\ndrop\tO\tdrop\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nUI\tO\tUI\tO\ncleanup\tO\tcleanup\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\na\tO\ta\tO\npotential\tO\tpotential\tO\ndrop\tO\tdrop\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\npresses\tO\tpresses\tO\nEsc B-Keyboard_IP Esc O\nto\tO\tto\tO\ncancel\tO\tcancel\tO\nthe\tO\tthe\tO\ndrop\tO\tdrop\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ndrop\tO\tdrop\tO\ntarget\tO\ttarget\tO\nnever\tO\tnever\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\ngets\tO\tgets\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nevent\tO\tevent\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndifferentiate\tO\tdifferentiate\tO\nfrom\tO\tfrom\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nothers\tO\tothers\tO\n.\tO\t.\tO\n\t\nDrop\tO\tDrop\tO\nis\tO\tis\tO\neasy\tO\teasy\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nwhat\tO\twhat\tO\nindicates\tO\tindicates\tO\na\tO\ta\tO\ncancel\tO\tcancel\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nDragLeave B-Class DragLeave O\nis\tO\tis\tO\na\tO\ta\tO\nbubbling\tO\tbubbling\tO\nrouted\tO\trouted\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\ne.OriginalSource B-Variable e.OriginalSource O\nis\tO\tis\tO\nalways\tO\talways\tO\nset\tO\tset\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nevent\tO\tevent\tO\n(\tO\t(\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nPreview\tO\tPreview\tO\n)\tO\t)\tO\nvia\tO\tvia\tO\nhittesting\tO\thittesting\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntarget\tO\ttarget\tO\nis\tO\tis\tO\nan\tO\tan\tO\nItemsControl B-Class ItemsControl O\n(\tO\t(\tO\nListbox B-Class Listbox O\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n've\tO\t've\tO\ncurrently\tO\tcurrently\tO\nbeen\tO\tbeen\tO\ntesting\tO\ttesting\tO\nwith\tO\twith\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nI\tO\tI\tO\ndrag\tO\tdrag\tO\nover\tO\tover\tO\nmy\tO\tmy\tO\nintended\tO\tintended\tO\ndrop\tO\tdrop\tO\ntarget\tO\ttarget\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nloads\tO\tloads\tO\nof\tO\tof\tO\nDragLeave B-Class DragLeave O\nevents\tO\tevents\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\nvisuals\tO\tvisuals\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ntarget\tO\ttarget\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nnever\tO\tnever\tO\nget\tO\tget\tO\nany\tO\tany\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ntarget\tO\ttarget\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nGrids B-User_Interface_Element Grids O\n,\tO\t,\tO\nrectangles B-User_Interface_Element rectangles O\n,\tO\t,\tO\nborders B-User_Interface_Element borders O\n,\tO\t,\tO\ntextblocks B-User_Interface_Element textblocks O\n,\tO\t,\tO\nthey\tO\tthey\tO\nall\tO\tall\tO\nhappily\tO\thappily\tO\nsend\tO\tsend\tO\nme\tO\tme\tO\nDragLeave B-Class DragLeave O\n,\tO\t,\tO\nbut\tO\tbut\tO\nnone\tO\tnone\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nItemsControl B-Class ItemsControl O\nI\tO\tI\tO\n'm\tO\t'm\tO\nconnected\tO\tconnected\tO\nup\tO\tup\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nhittesting\tO\thittesting\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n've\tO\t've\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nBackground B-Variable Background O\nof\tO\tof\tO\nthe\tO\tthe\tO\nItemsControl B-Class ItemsControl O\nto\tO\tto\tO\na\tO\ta\tO\ncolour\tO\tcolour\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nmakes\tO\tmakes\tO\nno\tO\tno\tO\ndifference\tO\tdifference\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\nam\tO\tam\tO\nI\tO\tI\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ndrop\tO\tdrop\tO\noperation\tO\toperation\tO\nhas\tO\thas\tO\ndefinitely\tO\tdefinitely\tO\nfinished\tO\tfinished\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nThe\tO\tThe\tO\nactual\tO\tactual\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nimplementing\tO\timplementing\tO\nsome\tO\tsome\tO\ncustom\tO\tcustom\tO\ndragging\tO\tdragging\tO\nbehaviour\tO\tbehaviour\tO\nin\tO\tin\tO\na\tO\ta\tO\nTreeView B-Class TreeView O\nthat\tO\tthat\tO\nexpands\tO\texpands\tO\nfolders B-User_Interface_Element folders O\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nhover\tO\thover\tO\nover\tO\tover\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncancels\tO\tcancels\tO\ntimers\tO\ttimers\tO\n&\tO\t&\tO\nundoes\tO\tundoes\tO\nthe\tO\tthe\tO\nexpansion\tO\texpansion\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ndrop\tO\tdrop\tO\nis\tO\tis\tO\nfinished\tO\tfinished\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmore\tO\tmore\tO\nto\tO\tto\tO\ncome\tO\tcome\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\nto\tO\tto\tO\nfire\tO\tfire\tO\nsensibly\tO\tsensibly\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nListBox B-Class ListBox O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7930740\tO\t7930740\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7930740/\tO\thttps://stackoverflow.com/questions/7930740/\tO\n\t\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncomplex\tO\tcomplex\tO\nscenario\tO\tscenario\tO\nhere\tO\there\tO\nso\tO\tso\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nstart\tO\tstart\tO\nbasic\tO\tbasic\tO\nin\tO\tin\tO\nhopes\tO\thopes\tO\nof\tO\tof\tO\ngiving\tO\tgiving\tO\nyou\tO\tyou\tO\na\tO\ta\tO\ndirection\tO\tdirection\tO\nand\tO\tand\tO\nhopefully\tO\thopefully\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nframework\tO\tframework\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\ninform\tO\tinform\tO\nof\tO\tof\tO\na\tO\ta\tO\nDragEnter B-Class DragEnter O\nevent\tO\tevent\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\nis\tO\tis\tO\nmarked\tO\tmarked\tO\nwith\tO\twith\tO\nAllowDrop B-Code_Block AllowDrop O\n= I-Code_Block = O\ntrue I-Code_Block true O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ndone\tO\tdone\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nsounds\tO\tsounds\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nDragLeave B-Class DragLeave O\nevent\tO\tevent\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nto\tO\tto\tO\ngrab\tO\tgrab\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\ndata\tO\tdata\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nhook\tO\thook\tO\ninto\tO\tinto\tO\nDragLeave B-Class DragLeave O\nbut\tO\tbut\tO\nto\tO\tto\tO\nhook\tO\thook\tO\ninto\tO\tinto\tO\nPreviewMouseMove B-Class PreviewMouseMove O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\ndetermine\tO\tdetermine\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nmouse B-Device mouse O\nis\tO\tis\tO\npressed\tO\tpressed\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nfar\tO\tfar\tO\nof\tO\tof\tO\na\tO\ta\tO\ndistance\tO\tdistance\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nbefore\tO\tbefore\tO\nenacting\tO\tenacting\tO\na\tO\ta\tO\nDoDragDrop B-Function DoDragDrop O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nevent\tO\tevent\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nand\tO\tand\tO\nanalyze\tO\tanalyze\tO\nDrag B-Variable Drag O\nData I-Variable Data O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\nstarts\tO\tstarts\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nDataObject B-Variable DataObject O\nand\tO\tand\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nDoDragDrop B-Function DoDragDrop O\ncall\tO\tcall\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_931 I-Code_Block A_931 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\ndrag B-Variable drag O\ndata I-Variable data O\nis\tO\tis\tO\nnow\tO\tnow\tO\naccessible\tO\taccessible\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nDragEventArgs B-Class DragEventArgs O\nobject\tO\tobject\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\n(\tO\t(\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nrename\tO\trename\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nparameter\tO\tparameter\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ne B-Variable e O\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_932 I-Code_Block A_932 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nsuggestion\tO\tsuggestion\tO\nis\tO\tis\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\nunique\tO\tunique\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\nevent\tO\tevent\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\ndifferentiate\tO\tdifferentiate\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nitem\tO\titem\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlistbox B-Class listbox O\nselection\tO\tselection\tO\n,\tO\t,\tO\nor\tO\tor\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nclass\tO\tclass\tO\nholding\tO\tholding\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nitem\tO\titem\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\nindicator\tO\tindicator\tO\nif\tO\tif\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7930740\tO\t7930740\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7930740/\tO\thttps://stackoverflow.com/questions/7930740/\tO\n\t\n\t\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\ne.Source B-Variable e.Source O\nand\tO\tand\tO\nnot\tO\tnot\tO\ne.OriginalSource B-Variable e.OriginalSource O\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nDropTarget B-Code_Block DropTarget O\n= I-Code_Block = O\n\" I-Code_Block \" O\nTrue I-Code_Block True O\n\" I-Code_Block \" O\non\tO\ton\tO\nthe\tO\tthe\tO\nItemsControl B-Class ItemsControl O\n&\tO\t&\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nDropOver B-Class DropOver O\nevent\tO\tevent\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nItemsControl B-Class ItemsControl O\n,\tO\t,\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nargument\tO\targument\tO\ne.Source B-Variable e.Source O\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nItemsControl B-Class ItemsControl O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22806379\tO\t22806379\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22806379/\tO\thttps://stackoverflow.com/questions/22806379/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntesting\tO\ttesting\tO\nAngularJS B-Library AngularJS O\nwith\tO\twith\tO\nProtractor B-Library Protractor O\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nrepeater B-Function repeater O\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsum\tO\tsum\tO\nall\tO\tall\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrows B-Variable rows O\n,\tO\t,\tO\nand\tO\tand\tO\ncompare\tO\tcompare\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsummary\tO\tsummary\tO\nline\tO\tline\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\nHTML B-Language HTML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2496 I-Code_Block Q_2496 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ne2e\tO\te2e\tO\ntest\tO\ttest\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2497 I-Code_Block Q_2497 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nvarious\tO\tvarious\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nerrors\tO\terrors\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nsomeone\tO\tsomeone\tO\nadvice\tO\tadvice\tO\nwhat\tO\twhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nerror\tO\terror\tO\nI\tO\tI\tO\nget\tO\tget\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2498 I-Code_Block Q_2498 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22806379\tO\t22806379\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22806379/\tO\thttps://stackoverflow.com/questions/22806379/\tO\n\t\n\t\nrows B-Variable rows O\nis\tO\tis\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nside\tO\tside\tO\neffect\tO\teffect\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\ngetText() B-Function getText() O\nis\tO\tis\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\narray B-Data_Structure array O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\nelement\tO\telement\tO\n)\tO\t)\tO\n\t\nAlso\tO\tAlso\tO\ngetText()'s B-Function getText()'s O\nresponse\tO\tresponse\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nhandled\tO\thandled\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\ncallback\tO\tcallback\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3116 I-Code_Block A_3116 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16184741\tO\t16184741\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16184741/\tO\thttps://stackoverflow.com/questions/16184741/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ninnodb B-Application innodb O\ntable B-Data_Structure table O\n,\tO\t,\tO\nand\tO\tand\tO\nset\tO\tset\tO\nmysql B-Application mysql O\ninnodb_file_per_table B-Code_Block innodb_file_per_table O\n= I-Code_Block = O\n1 I-Code_Block 1 O\non\tO\ton\tO\nHost B-Device Host O\nA I-Device A O\n\t\nthis\tO\tthis\tO\ntable B-Data_Structure table O\n's\tO\t's\tO\nibd B-File_Type ibd O\nfile\tO\tfile\tO\nallocate\tO\tallocate\tO\nabout\tO\tabout\tO\n3GB\tO\t3GB\tO\ndisk B-Device disk O\n\t\nthen\tO\tthen\tO\n,\tO\t,\tO\ni\tO\ti\tO\ndump\tO\tdump\tO\nthis\tO\tthis\tO\ntable\tO\ttable\tO\nto\tO\tto\tO\nsql B-Language sql O\nfile(a.sql) B-File_Name file(a.sql) O\n,\tO\t,\tO\na.sql B-File_Name a.sql O\nallocate\tO\tallocate\tO\nabout\tO\tabout\tO\n2.5Gb\tO\t2.5Gb\tO\ndisk B-Device disk O\n\t\nnext\tO\tnext\tO\n,\tO\t,\tO\ni\tO\ti\tO\nimport\tO\timport\tO\na.sql B-File_Name a.sql O\nto\tO\tto\tO\nHost B-Device Host O\nB I-Device B O\n.\tO\t.\tO\n\t\nHost B-Device Host O\nA I-Device A O\nand\tO\tand\tO\nHost B-Device Host O\nB I-Device B O\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nhardware\tO\thardware\tO\n,\tO\t,\tO\nsame\tO\tsame\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nsame\tO\tsame\tO\nmysql B-Application mysql O\nconfigure\tO\tconfigure\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ni\tO\ti\tO\nfound\tO\tfound\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ntable B-Data_Structure table O\n's\tO\t's\tO\nibd B-File_Type ibd O\nfile\tO\tfile\tO\non\tO\ton\tO\nHost B-Device Host O\nB I-Device B O\nallocate\tO\tallocate\tO\n30GB\tO\t30GB\tO\ndisk B-Device disk O\n.\tO\t.\tO\n\t\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ndump\tO\tdump\tO\nthis\tO\tthis\tO\ntable B-Data_Structure table O\non\tO\ton\tO\nHost B-Device Host O\nB I-Device B O\nto\tO\tto\tO\nb.sql B-File_Name b.sql O\n\t\nb.sql B-File_Name b.sql O\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\na.sql B-File_Name a.sql O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nsure\tO\tsure\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nimport\tO\timport\tO\na.sql B-File_Name a.sql O\nto\tO\tto\tO\nHost B-Device Host O\nB I-Device B O\n,\tO\t,\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nalert\tO\talert\tO\ntable B-Data_Structure table O\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nthe\tO\tthe\tO\nallocate\tO\tallocate\tO\ndisk\tO\tdisk\tO\nso\tO\tso\tO\nlarge\tO\tlarge\tO\n?\tO\t?\tO\n\t\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\ntable B-Data_Structure table O\ndescription\tO\tdescription\tO\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16184741\tO\t16184741\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16184741/\tO\thttps://stackoverflow.com/questions/16184741/\tO\n\t\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nibdata1 B-File_Name ibdata1 O\nthere\tO\tthere\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nafter\tO\tafter\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\noptimize\tO\toptimize\tO\ntable B-Data_Structure table O\na\tO\ta\tO\non\tO\ton\tO\nHost B-Device Host O\nA I-Device A O\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nbecause\tO\tbecause\tO\nin\tO\tin\tO\nhost B-Device host O\nA I-Device A O\n,\tO\t,\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nof\tO\tof\tO\ntable B-Variable table O\nA I-Variable A O\nis\tO\tis\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nibdata1 B-File_Name ibdata1 O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23729564\tO\t23729564\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23729564/\tO\thttps://stackoverflow.com/questions/23729564/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\ngame\tO\tgame\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nget\tO\tget\tO\nfrom\tO\tfrom\tO\none\tO\tone\tO\npoint\tO\tpoint\tO\n(\tO\t(\tO\ntask\tO\ttask\tO\n)\tO\t)\tO\non\tO\ton\tO\na\tO\ta\tO\nsite\tO\tsite\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\n(\tO\t(\tO\ndest\tO\tdest\tO\n)\tO\t)\tO\nin\tO\tin\tO\nan\tO\tan\tO\niframe B-HTML_XML_Tag iframe O\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nstarting\tO\tstarting\tO\nand\tO\tand\tO\nend\tO\tend\tO\npoints\tO\tpoints\tO\nare\tO\tare\tO\nchosen\tO\tchosen\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nstarting\tO\tstarting\tO\npoint\tO\tpoint\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nend\tO\tend\tO\npoint\tO\tpoint\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\na\tO\ta\tO\npopup B-User_Interface_Element popup O\nbox I-User_Interface_Element box O\nsaying\tO\tsaying\tO\nyou\tO\tyou\tO\nwon\tO\twon\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\none\tO\tone\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\nCoda B-Application Coda O\n2 B-Version 2 O\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nany\tO\tany\tO\nbrowser B-Application browser O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nvery\tO\tvery\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nJS B-Language JS O\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nStack B-Website Stack O\nOverflow I-Website Overflow O\nso\tO\tso\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nHow\tO\tHow\tO\nI\tO\tI\tO\nam\tO\tam\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nindex.html B-File_Name index.html O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2628 I-Code_Block Q_2628 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nactual\tO\tactual\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2629 I-Code_Block Q_2629 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23729564\tO\t23729564\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23729564/\tO\thttps://stackoverflow.com/questions/23729564/\tO\n\t\n\t\nUse\tO\tUse\tO\nlocation.href B-Variable location.href B-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nurl.value B-Variable url.value B-Code_Block\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nother\tO\tother\tO\nuseful\tO\tuseful\tO\nlocation\tO\tlocation\tO\nproperties\tO\tproperties\tO\nin\tO\tin\tO\nw3schools B-Website w3schools O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23463773\tO\t23463773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23463773/\tO\thttps://stackoverflow.com/questions/23463773/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nthis\tO\tthis\tO\nimage B-User_Interface_Element image O\n,\tO\t,\tO\ndirectly\tO\tdirectly\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\npath\tO\tpath\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\nthrow\tO\tthrow\tO\nFirefox B-Application Firefox O\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nredirected\tO\tredirected\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ninto\tO\tinto\tO\nsome\tO\tsome\tO\nManga B-Application Manga O\n,\tO\t,\tO\ni\tO\ti\tO\ncould\tO\tcould\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nfrom\tO\tfrom\tO\nimage B-User_Interface_Element image O\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthat\tO\tthat\tO\none\tO\tone\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nSomeone\tO\tSomeone\tO\nknows\tO\tknows\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\n's\tO\t's\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2585 I-Code_Block Q_2585 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nURL\tO\tURL\tO\ndirectly\tO\tdirectly\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23463773\tO\t23463773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23463773/\tO\thttps://stackoverflow.com/questions/23463773/\tO\n\t\n\t\nMost\tO\tMost\tO\nlikely\tO\tlikely\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nchecking\tO\tchecking\tO\nthe\tO\tthe\tO\nHTTP B-Variable HTTP O\nREFERRER I-Variable REFERRER O\n(\tO\t(\tO\nwith\tO\twith\tO\nmod_rewrite B-Function mod_rewrite O\nmaybe\tO\tmaybe\tO\n)\tO\t)\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmatch\tO\tmatch\tO\ntheir\tO\ttheir\tO\ndomain\tO\tdomain\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nredirect\tO\tredirect\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhomepage\tO\thomepage\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nsetting\tO\tsetting\tO\nHTTP-REFERRER B-Variable HTTP-REFERRER O\nto\tO\tto\tO\nhttp://centraldemangas.com.br/\tO\thttp://centraldemangas.com.br/\tB-Code_Block\nand\tO\tand\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42842175\tO\t42842175\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42842175/\tO\thttps://stackoverflow.com/questions/42842175/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nfrom\tO\tfrom\tO\nAPI B-Application API O\nand\tO\tand\tO\nis\tO\tis\tO\nalways\tO\talways\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ncatch\tO\tcatch\tO\n.\tO\t.\tO\n\t\nEstou\tO\tEstou\tO\ntentando\tO\ttentando\tO\nsalvar\tO\tsalvar\tO\numa\tO\tuma\tO\nimagem\tO\timagem\tO\nque\tO\tque\tO\nvem\tO\tvem\tO\nda\tO\tda\tO\nAPI B-Application API O\nmas\tO\tmas\tO\nsempre\tO\tsempre\tO\ncai\tO\tcai\tO\nno\tO\tno\tO\ncatch\tO\tcatch\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5473 I-Code_Block Q_5473 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4305676\tO\t4305676\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4305676/\tO\thttps://stackoverflow.com/questions/4305676/\tO\n\t\n\t\nAssume\tO\tAssume\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nor\tO\tor\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\nany\tO\tany\tO\nadjacent\tO\tadjacent\tO\ntechnology/language\tO\ttechnology/language\tO\n--what\tO\t--what\tO\n'\tO\t'\tO\ns\tO\ts\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nautomating\tO\tautomating\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nprocessing/summary\tO\tprocessing/summary\tO\nSQL B-Language SQL O\nscripts\tO\tscripts\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nscripts\tO\tscripts\tO\n,\tO\t,\tO\nclean-up\tO\tclean-up\tO\n(\tO\t(\tO\neg\tO\teg\tO\n,\tO\t,\tO\nupdate\tO\tupdate\tO\n,\tO\t,\tO\ndelete\tO\tdelete\tO\n)\tO\t)\tO\n,\tO\t,\tO\nprocessing\tO\tprocessing\tO\n(\tO\t(\tO\neg\tO\teg\tO\n,\tO\t,\tO\njoins\tO\tjoins\tO\n)\tO\t)\tO\nand\tO\tand\tO\nsummaries\tO\tsummaries\tO\npost-processing\tO\tpost-processing\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\nlast\tO\tlast\tO\nmonth\tO\tmonth\tO\nbut\tO\tbut\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nautomate\tO\tautomate\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\npreferred\tO\tpreferred\tO\nmethod(s)\tO\tmethod(s)\tO\nof\tO\tof\tO\nautomating\tO\tautomating\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nprocess\tO\tprocess\tO\nas\tO\tas\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\nsequential\tO\tsequential\tO\nscripts\tO\tscripts\tO\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nAll\tO\tAll\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nrun\tO\trun\tO\non\tO\ton\tO\nMySQL B-Application MySQL O\ndbs\tO\tdbs\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4305676\tO\t4305676\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4305676/\tO\thttps://stackoverflow.com/questions/4305676/\tO\n\t\n\t\nSimilar\tO\tSimilar\tO\nto\tO\tto\tO\nMAW B-User_Name MAW O\n's\tO\t's\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nWindows B-Application Windows O\nService I-Application Service O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\ncommand B-Application command O\nline I-Application line O\napp I-Application app O\n(\tO\t(\tO\nno\tO\tno\tO\nGUI\tO\tGUI\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsplit\tO\tsplit\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nindividual\tO\tindividual\tO\nDB\tO\tDB\tO\nscripts\tO\tscripts\tO\ninto\tO\tinto\tO\nseparate\tO\tseparate\tO\ntasks\tO\ttasks\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nService\tO\tService\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nat\tO\tat\tO\ndifferent\tO\tdifferent\tO\ntime\tO\ttime\tO\nintervals\tO\tintervals\tO\n,\tO\t,\tO\nlog\tO\tlog\tO\ntheir\tO\ttheir\tO\nresults\tO\tresults\tO\nseparately\tO\tseparately\tO\n,\tO\t,\tO\nand\tO\tand\tO\nbe\tO\tbe\tO\nindependently\tO\tindependently\tO\nconfigured\tO\tconfigured\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4305676\tO\t4305676\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4305676/\tO\thttps://stackoverflow.com/questions/4305676/\tO\n\t\n\t\nThis\tO\tThis\tO\ndepends\tO\tdepends\tO\ngreatly\tO\tgreatly\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nDBMS B-Application DBMS O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nSQL B-Application SQL O\nServer I-Application Server O\nthere\tO\tthere\tO\nare\tO\tare\tO\nscheduled\tO\tscheduled\tO\njobs\tO\tjobs\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nany\tO\tany\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nstored\tO\tstored\tO\nprocedures/commands\tO\tprocedures/commands\tO\non\tO\ton\tO\na\tO\ta\tO\nschedule\tO\tschedule\tO\n,\tO\t,\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nWindows B-Application Windows O\nscheduled I-Application scheduled O\ntasks I-Application tasks O\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ntagged\tO\ttagged\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nwith\tO\twith\tO\nmysql B-Application mysql O\n,\tO\t,\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nassume\tO\tassume\tO\nthats\tO\tthats\tO\nwhat\tO\twhat\tO\nyour\tO\tyour\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\non\tO\ton\tO\nmysql B-Application mysql O\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nhttp://dev.mysql.com/tech-resources/articles/event-feature.html\tO\thttp://dev.mysql.com/tech-resources/articles/event-feature.html\tO\n\t\nIf\tO\tIf\tO\nall\tO\tall\tO\nelse\tO\telse\tO\nfails\tO\tfails\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreference\tO\treference\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nscripts\tO\tscripts\tO\nin\tO\tin\tO\na\tO\ta\tO\nstored\tO\tstored\tO\nprocedure\tO\tprocedure\tO\n,\tO\t,\tO\nthan\tO\tthan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ncommand B-Application command O\nline I-Application line O\nprogram\tO\tprogram\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ndb\tO\tdb\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\nthat\tO\tthat\tO\nprocedure\tO\tprocedure\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nschedule\tO\tschedule\tO\nthat\tO\tthat\tO\nprogram\tO\tprogram\tO\nwith\tO\twith\tO\nWindows B-Application Windows O\nTask I-Application Task O\nscheduler I-Application scheduler O\nor\tO\tor\tO\nsimilar\tO\tsimilar\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31410107\tO\t31410107\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31410107/\tO\thttps://stackoverflow.com/questions/31410107/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable B-HTML_XML_Tag table O\nwith\tO\twith\tO\n3\tO\t3\tO\ncolumns B-User_Interface_Element columns O\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncolor\tO\tcolor\tO\nto\tO\tto\tO\ngreen\tO\tgreen\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nselect\tO\tselect\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nchecklist B-User_Interface_Element checklist O\n(\tO\t(\tO\nform B-HTML_XML_Tag form O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nin\tO\tin\tO\nGREEN\tO\tGREEN\tO\nthe\tO\tthe\tO\ncolumn\tO\tcolumn\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncity\tO\tcity\tO\ni\tO\ti\tO\nchoose\tO\tchoose\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nif\tO\tif\tO\nI\tO\tI\tO\nchoose\tO\tchoose\tO\nNew B-Value New O\nYork I-Value York O\n,\tO\t,\tO\nthen\tO\tthen\tO\ncolumn B-User_Interface_Element column O\nNew B-Value New O\nYork I-Value York O\nbecome\tO\tbecome\tO\ngreen\tO\tgreen\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nHTML B-Language HTML O\n-\tO\t-\tO\nTable B-HTML_XML_Tag Table O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3779 I-Code_Block Q_3779 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHTML B-Language HTML O\n-\tO\t-\tO\nForm B-HTML_XML_Tag Form O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3780 I-Code_Block Q_3780 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nScript\tO\tScript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3781 I-Code_Block Q_3781 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31410107\tO\t31410107\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31410107/\tO\thttps://stackoverflow.com/questions/31410107/\tO\n\t\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nif B-Code_Block if B-Code_Block\nelse I-Code_Block else I-Code_Block\nadd\tO\tadd\tO\na\tO\ta\tO\ndata-city B-Variable data-city B-Code_Block\nattribute\tO\tattribute\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nwhich\tO\twhich\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\ndropdown B-User_Interface_Element dropdown O\ncorresponds\tO\tcorresponds\tO\nto\tO\tto\tO\nwhich\tO\twhich\tO\ncolumn B-User_Interface_Element column O\nof\tO\tof\tO\nthe\tO\tthe\tO\ntable B-User_Interface_Element table O\n.\tO\t.\tO\n\t\nAdd\tO\tAdd\tO\ndata-city B-Variable data-city B-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nth B-HTML_XML_Tag th B-Code_Block\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4473 I-Code_Block A_4473 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBased\tO\tBased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndropdown B-User_Interface_Element dropdown O\nvalue\tO\tvalue\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nth B-HTML_XML_Tag th O\nand\tO\tand\tO\nget\tO\tget\tO\nits\tO\tits\tO\nindex B-Variable index O\n.\tO\t.\tO\n\t\nGet\tO\tGet\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\ncolumn B-User_Interface_Element column O\n(\tO\t(\tO\ntds B-HTML_XML_Tag tds O\n)\tO\t)\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthat\tO\tthat\tO\nindex B-Variable index O\nand\tO\tand\tO\nchange B-Function change O\ncss B-Language css O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4474 I-Code_Block A_4474 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\ndemo\tO\tdemo\tO\nhttp://jsbin.com/leqinun/1/edit?html,js,output\tO\thttp://jsbin.com/leqinun/1/edit?html,js,output\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20807194\tO\t20807194\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20807194/\tO\thttps://stackoverflow.com/questions/20807194/\tO\n\t\n\t\nFor\tO\tFor\tO\none\tO\tone\tO\nweek\tO\tweek\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\ntype B-Error_Name type O\nmissmatch I-Error_Name missmatch O\nerror I-Error_Name error O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsearch\tO\tsearch\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\n,\tO\t,\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ngenerics\tO\tgenerics\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\ncould\tO\tcould\tO\nanyone\tO\tanyone\tO\nplease\tO\tplease\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2205 I-Code_Block Q_2205 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2206 I-Code_Block Q_2206 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nclasses\tO\tclasses\tO\nand\tO\tand\tO\ninterfaces\tO\tinterfaces\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2207 I-Code_Block Q_2207 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20807194\tO\t20807194\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20807194/\tO\thttps://stackoverflow.com/questions/20807194/\tO\n\t\n\t\nA\tO\tA\tO\nlittle\tO\tlittle\tO\nimprovement\tO\timprovement\tO\nof\tO\tof\tO\nT B-User_Name T O\nMcKeown I-User_Name McKeown O\n's\tO\t's\tO\nanswer\tO\tanswer\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2782 I-Code_Block A_2782 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSince\tO\tSince\tO\nBaseRequest B-Class BaseRequest O\nis\tO\tis\tO\nconstrained\tO\tconstrained\tO\nby\tO\tby\tO\nparameter\tO\tparameter\tO\nT B-Variable T B-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nput\tO\tput\tO\nconstraint\tO\tconstraint\tO\non\tO\ton\tO\ngeneric\tO\tgeneric\tO\nmethod\tO\tmethod\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nomit\tO\tomit\tO\ncasting\tO\tcasting\tO\nfrom\tO\tfrom\tO\ncaller\tO\tcaller\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\ngeneric\tO\tgeneric\tO\nreturn\tO\treturn\tO\ntype\tO\ttype\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2783 I-Code_Block A_2783 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20807194\tO\t20807194\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20807194/\tO\thttps://stackoverflow.com/questions/20807194/\tO\n\t\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nsending\tO\tsending\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nListAlertsRequest B-Class ListAlertsRequest B-Code_Block\nto\tO\tto\tO\nDoGetRequest B-Function DoGetRequest B-Code_Block\nwhich\tO\twhich\tO\nneeds\tO\tneeds\tO\na\tO\ta\tO\nparameter\tO\tparameter\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nBaseRequest<BaseResponse> B-Class BaseRequest<BaseResponse> B-Code_Block\n.\tO\t.\tO\n\t\nListAlertsRequest B-Class ListAlertsRequest B-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nBaseRequest B-Class BaseRequest B-Code_Block\n<BaseResponse> I-Class <BaseResponse> I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32090809\tO\t32090809\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32090809/\tO\thttps://stackoverflow.com/questions/32090809/\tO\n\t\n\t\nHi\tO\tHi\tO\nguys\tO\tguys\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nconvert\tO\tconvert\tO\na\tO\ta\tO\nimage B-User_Interface_Element image O\nto\tO\tto\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3892 I-Code_Block Q_3892 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nif\tO\tif\tO\ni\tO\ti\tO\nwa\tO\twa\tO\nn't\tO\tn't\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\nthis\tO\tthis\tO\nimage B-User_Interface_Element image O\nautomatically\tO\tautomatically\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nset\tO\tset\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3893 I-Code_Block Q_3893 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3894 I-Code_Block Q_3894 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\ninput\tO\tinput\tO\nfile\tO\tfile\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nmy\tO\tmy\tO\ndefault\tO\tdefault\tO\nimage\tO\timage\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nwith\tO\twith\tO\najax B-Library ajax O\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nEDIT2\tO\tEDIT2\tO\n\t\nIf\tO\tIf\tO\nevent.target.files B-Variable event.target.files B-Code_Block\n; I-Variable ; I-Code_Block\nis\tO\tis\tO\nnull\tO\tnull\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nset\tO\tset\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nnew\tO\tnew\tO\nimage B-User_Interface_Element image O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3895 I-Code_Block Q_3895 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32090809\tO\t32090809\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32090809/\tO\thttps://stackoverflow.com/questions/32090809/\tO\n\t\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4602 I-Code_Block A_4602 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhere\tO\twhere\tO\ndefaultImg B-Variable defaultImg B-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nwhich\tO\twhich\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\nimg B-User_Interface_Element img O\nwith\tO\twith\tO\nsrc\tO\tsrc\tO\n.\tO\t.\tO\n\t\nsomthing\tO\tsomthing\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4603 I-Code_Block A_4603 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46376245\tO\t46376245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46376245/\tO\thttps://stackoverflow.com/questions/46376245/\tO\n\t\n\t\nI\tO\tI\tO\nwonder\tO\twonder\tO\nwhether\tO\twhether\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncalculate\tO\tcalculate\tO\nthe\tO\tthe\tO\n2nd-order\tO\t2nd-order\tO\nderivative\tO\tderivative\tO\non\tO\ton\tO\nCRF B-Algorithm CRF O\nloss\tO\tloss\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nTensorflow B-Library Tensorflow O\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\ntf.contrib.crf.crf_log_likelihood B-Code_Block tf.contrib.crf.crf_log_likelihood O\n\"\tO\t\"\tO\nto\tO\tto\tO\ncalculate\tO\tcalculate\tO\nthe\tO\tthe\tO\nloss\tO\tloss\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nit\tO\tit\tO\ngives\tO\tgives\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\" B-Output_Block \" O\nSecond-order I-Output_Block Second-order O\ngradient I-Output_Block gradient O\nfor I-Output_Block for O\nwhile I-Output_Block while O\nloops I-Output_Block loops O\nnot I-Output_Block not O\nsupported I-Output_Block supported O\n\" I-Output_Block \" O\n.\tO\t.\tO\n\t\nPreviously\tO\tPreviously\tO\n,\tO\t,\tO\nit\tO\tit\tO\nalso\tO\talso\tO\ngives\tO\tgives\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\nfor\tO\tfor\tO\nRNN B-Algorithm RNN O\nloss\tO\tloss\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nTensorflow B-Library Tensorflow O\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\n2nd-order\tO\t2nd-order\tO\nderivative\tO\tderivative\tO\nfor\tO\tfor\tO\nsequence\tO\tsequence\tO\nmodel\tO\tmodel\tO\nat\tO\tat\tO\nall\tO\tall\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19544673\tO\t19544673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19544673/\tO\thttps://stackoverflow.com/questions/19544673/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nsubmit\tO\tsubmit\tO\na\tO\ta\tO\nform\tO\tform\tO\nand\tO\tand\tO\nstarts\tO\tstarts\tO\nan\tO\tan\tO\nimageupload B-Function imageupload O\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthe\tO\tthe\tO\nimageupload B-Function imageupload O\nis\tO\tis\tO\ncomplete\tO\tcomplete\tO\n,\tO\t,\tO\nanother\tO\tanother\tO\nfunction\tO\tfunction\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nstart\tO\tstart\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2058 I-Code_Block Q_2058 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nstart\tO\tstart\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nupload\tO\tupload\tO\nis\tO\tis\tO\nfinished\tO\tfinished\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2059 I-Code_Block Q_2059 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nmust\tO\tmust\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\ninsert\tO\tinsert\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nBest\tO\tBest\tO\nregards\tO\tregards\tO\n\t\nHendrik B-User_Name Hendrik O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19544673\tO\t19544673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19544673/\tO\thttps://stackoverflow.com/questions/19544673/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2604 I-Code_Block A_2604 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19544673\tO\t19544673\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19544673/\tO\thttps://stackoverflow.com/questions/19544673/\tO\n\t\n\t\nUse\tO\tUse\tO\nsuccess B-Code_Block success B-Code_Block\n: I-Code_Block : I-Code_Block\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2605 I-Code_Block A_2605 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nRead\tO\tRead\tO\nhttp://malsup.com/jquery/form/#options-object\tO\thttp://malsup.com/jquery/form/#options-object\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31893984\tO\t31893984\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31893984/\tO\thttps://stackoverflow.com/questions/31893984/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\nonly\tO\tonly\tO\non\tO\ton\tO\nleft\tO\tleft\tO\nside\tO\tside\tO\nwhere\tO\twhere\tO\nis\tO\tis\tO\nletter\tO\tletter\tO\n\" B-Value \" O\nF I-Value F O\n\" I-Value \" O\nand\tO\tand\tO\nother\tO\tother\tO\nsection\tO\tsection\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nnot\tO\tnot\tO\nclickable\tO\tclickable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nwith\tO\twith\tO\ncss B-Language css O\nclass\tO\tclass\tO\ndiver\tO\tdiver\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nHtml B-Language Html O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3852 I-Code_Block Q_3852 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCSS B-Language CSS O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3853 I-Code_Block Q_3853 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCodePen B-Application CodePen O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31893984\tO\t31893984\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31893984/\tO\thttps://stackoverflow.com/questions/31893984/\tO\n\t\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nHTML B-Language HTML O\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\n\"\tO\t\"\tO\nuniversal\tO\tuniversal\tO\nreset\tO\treset\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\n* B-Value * B-Code_Block\nsection\tO\tsection\tO\n)\tO\t)\tO\nhave\tO\thave\tO\nan\tO\tan\tO\neffect\tO\teffect\tO\non\tO\ton\tO\nelements\tO\telements\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nHeaders\tO\tHeaders\tO\n,\tO\t,\tO\nparagraphs\tO\tparagraphs\tO\nand\tO\tand\tO\nlists\tO\tlists\tO\nspring\tO\tspring\tO\nto\tO\tto\tO\nmind\tO\tmind\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4564 I-Code_Block Q_4564 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4565 I-Code_Block Q_4565 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27327659\tO\t27327659\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27327659/\tO\thttps://stackoverflow.com/questions/27327659/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nquery\tO\tquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3155 I-Code_Block Q_3155 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhowever\tO\thowever\tO\nthis\tO\tthis\tO\nquery\tO\tquery\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nbasically\tO\tbasically\tO\nwanted\tO\twanted\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nto\tO\tto\tO\nbe\tO\tbe\tO\nordered\tO\tordered\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\npictures\tO\tpictures\tO\nin\tO\tin\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ndid\tO\tdid\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nit\tO\tit\tO\ngiving\tO\tgiving\tO\nme\tO\tme\tO\n1\tO\t1\tO\non\tO\ton\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstyles\tO\tstyles\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nmore\tO\tmore\tO\npictures\tO\tpictures\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nstyle\tO\tstyle\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27327659\tO\t27327659\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27327659/\tO\thttps://stackoverflow.com/questions/27327659/\tO\n\t\n\t\nORDER B-Code_Block ORDER B-Code_Block\nBY I-Code_Block BY I-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nunderscores\tO\tunderscores\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nequally\tO\tequally\tO\nimportant\tO\timportant\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nDISTINCT B-Code_Block DISTINCT B-Code_Block\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\nmodifies\tO\tmodifies\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nSELECT B-Code_Block SELECT B-Code_Block\nand\tO\tand\tO\nit\tO\tit\tO\napplies\tO\tapplies\tO\nto\tO\tto\tO\nall\tO\tall\tO\ncolumns B-Data_Structure columns O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\ngroup B-Code_Block group B-Code_Block\nby I-Code_Block by I-Code_Block\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncolumn B-Data_Structure column O\nyou\tO\tyou\tO\nhave\tO\thave\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndistinct\tO\tdistinct\tO\n.\tO\t.\tO\n\t\nSomething\tO\tSomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3793 I-Code_Block A_3793 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nalmost\tO\talmost\tO\nnever\tO\tnever\tO\nneed\tO\tneed\tO\ndistinct B-Code_Block distinct B-Code_Block\nwith\tO\twith\tO\ngroup B-Code_Block group B-Code_Block\nby I-Code_Block by I-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29686565\tO\t29686565\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29686565/\tO\thttps://stackoverflow.com/questions/29686565/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nread\tO\tread\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nquestions\tO\tquestions\tO\non\tO\ton\tO\nnon-Abstract\tO\tnon-Abstract\tO\nclasses\tO\tclasses\tO\nwith\tO\twith\tO\nabstract\tO\tabstract\tO\nmethods\tO\tmethods\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nunderstood\tO\tunderstood\tO\nany\tO\tany\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nheres\tO\theres\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nmetronome\tO\tmetronome\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nmetronome\tO\tmetronome\tO\nto\tO\tto\tO\n'\tO\t'\tO\nclick\tO\tclick\tO\n'\tO\t'\tO\nand\tO\tand\tO\nplay\tO\tplay\tO\nsound\tO\tsound\tO\nI\tO\tI\tO\ncopied\tO\tcopied\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nhttp://www.cs.cmu.edu/~illah/CLASSDOCS/javasound.pdf\tO\thttp://www.cs.cmu.edu/~illah/CLASSDOCS/javasound.pdf\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\na\tO\ta\tO\nsuper\tO\tsuper\tO\nbasic\tO\tbasic\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nJFrame B-Class JFrame O\n,\tO\t,\tO\nJPanel B-Class JPanel O\n,\tO\t,\tO\nand\tO\tand\tO\nJButtton B-Class JButtton O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nButton B-User_Interface_Element Button O\n(\tO\t(\tO\nClickForSound B-Variable ClickForSound O\n)\tO\t)\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nplay\tO\tplay\tO\nthe\tO\tthe\tO\nsound\tO\tsound\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3536 I-Code_Block Q_3536 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nI\tO\tI\tO\nget\tO\tget\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nClass\tO\tClass\tO\nPlsWork B-Class PlsWork O\nis\tO\tis\tO\nnot\tO\tnot\tO\nabstract\tO\tabstract\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\noverride\tO\toverride\tO\nabstract\tO\tabstract\tO\nmethod\tO\tmethod\tO\nPlsWork B-Class PlsWork O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3537 I-Code_Block Q_3537 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlso\tO\tAlso\tO\nPLEASE\tO\tPLEASE\tO\ntalk\tO\ttalk\tO\nto\tO\tto\tO\nme\tO\tme\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\nidiot\tO\tidiot\tO\nas\tO\tas\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nalmost\tO\talmost\tO\nno\tO\tno\tO\nunderstanding\tO\tunderstanding\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nabstract\tO\tabstract\tO\nmeans\tO\tmeans\tO\nor\tO\tor\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nabstract\tO\tabstract\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nanything\tO\tanything\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nabstract\tO\tabstract\tO\nor\tO\tor\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29686565\tO\t29686565\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29686565/\tO\thttps://stackoverflow.com/questions/29686565/\tO\n\t\n\t\nCheck\tO\tCheck\tO\nyour\tO\tyour\tO\nsyntax\tO\tsyntax\tO\n:\tO\t:\tO\nactionPerformed B-Code_Block actionPerformed B-Code_Block\n!= I-Code_Block != I-Code_Block\nactionPreformed I-Code_Block actionPreformed I-Code_Block\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\nthe\tO\tthe\tO\n@Override B-Code_Block @Override B-Code_Block\nannotation\tO\tannotation\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\nin\tO\tin\tO\nother\tO\tother\tO\n,\tO\t,\tO\nnon-compile\tO\tnon-compile\tO\ntime\tO\ttime\tO\nerror\tO\terror\tO\nsituations\tO\tsituations\tO\n(\tO\t(\tO\neg\tO\teg\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\noverriding\tO\toverriding\tO\na\tO\ta\tO\nnon-abstract\tO\tnon-abstract\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\na\tO\ta\tO\nsubclass\tO\tsubclass\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4212 I-Code_Block A_4212 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18893848\tO\t18893848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18893848/\tO\thttps://stackoverflow.com/questions/18893848/\tO\n\t\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ngit B-Application git O\nhistory\tO\thistory\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1973 I-Code_Block Q_1973 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nSHA\tO\tSHA\tO\nof\tO\tof\tO\ncommit\tO\tcommit\tO\ng B-Variable g B-Code_Block\n.\tO\t.\tO\n\t\nNeither\tO\tNeither\tO\nfeature\tO\tfeature\tO\n,\tO\t,\tO\nnor\tO\tnor\tO\nrelease\tO\trelease\tO\nare\tO\tare\tO\navailable\tO\tavailable\tO\nany\tO\tany\tO\nlonger\tO\tlonger\tO\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\ncommit\tO\tcommit\tO\nq B-Variable q B-Code_Block\n,\tO\t,\tO\nIE\tO\tIE\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nrelease\tO\trelease\tO\nbranch\tO\tbranch\tO\nwas\tO\twas\tO\nmerged\tO\tmerged\tO\ninto\tO\tinto\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nanswers\tO\tanswers\tO\nin\tO\tin\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nquestion\tO\tquestion\tO\n(\tO\t(\tO\nFind\tO\tFind\tO\nmerge\tO\tmerge\tO\ncommit\tO\tcommit\tO\nwhich\tO\twhich\tO\ninclude\tO\tinclude\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ncommit\tO\tcommit\tO\n)\tO\t)\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nfind\tO\tfind\tO\ncommit\tO\tcommit\tO\nk B-Variable k O\n,\tO\t,\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nfeature\tO\tfeature\tO\nbranch\tO\tbranch\tO\nwas\tO\twas\tO\nmerged\tO\tmerged\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nrelease\tO\trelease\tO\nbranch\tO\tbranch\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18893848\tO\t18893848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18893848/\tO\thttps://stackoverflow.com/questions/18893848/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nsuggest\tO\tsuggest\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2505 I-Code_Block A_2505 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n--merges B-Code_Block --merges B-Code_Block\nlogs\tO\tlogs\tO\nonly\tO\tonly\tO\nmerge\tO\tmerge\tO\ncommits\tO\tcommits\tO\n,\tO\t,\tO\nand\tO\tand\tO\n--ancestry-path B-Code_Block --ancestry-path B-Code_Block\nlimits\tO\tlimits\tO\nthe\tO\tthe\tO\ncommits\tO\tcommits\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nthose\tO\tthose\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\nbetween\tO\tbetween\tO\ng B-Variable g O\nand\tO\tand\tO\nq B-Variable q O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nshow\tO\tshow\tO\nyou\tO\tyou\tO\nboth\tO\tboth\tO\nk B-Variable k O\nand\tO\tand\tO\nq B-Variable q O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18893848\tO\t18893848\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18893848/\tO\thttps://stackoverflow.com/questions/18893848/\tO\n\t\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nfeature\tO\tfeature\tO\nor\tO\tor\tO\nrelease\tO\trelease\tO\nbranches\tO\tbranches\tO\nhad\tO\thad\tO\nunique\tO\tunique\tO\nnames\tO\tnames\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nq B-Variable q B-Code_Block\non\tO\ton\tO\nmaster B-Code_Block master B-Code_Block\nby\tO\tby\tO\nsearching\tO\tsearching\tO\nits\tO\tits\tO\nmerge\tO\tmerge\tO\ncommits\tO\tcommits\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nunique\tO\tunique\tO\nname\tO\tname\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\ngitk B-Code_Block gitk B-Code_Block\n--merges I-Code_Block --merges I-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\nentering\tO\tentering\tO\na\tO\ta\tO\nterm\tO\tterm\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFind B-Code_Block Find B-Code_Block\nfield\tO\tfield\tO\n)\tO\t)\tO\nbecause\tO\tbecause\tO\nGit B-Application Git O\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nrecords\tO\trecords\tO\nthe\tO\tthe\tO\nmerged\tO\tmerged\tO\nbranch\tO\tbranch\tO\nnames\tO\tnames\tO\nin\tO\tin\tO\nmerge\tO\tmerge\tO\ncommit\tO\tcommit\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nmerge\tO\tmerge\tO\ncommit\tO\tcommit\tO\non\tO\ton\tO\nmasterthat B-Code_Block masterthat B-Code_Block\nhas\tO\thas\tO\ng B-Variable g B-Code_Block\nmerged\tO\tmerged\tO\nwith\tO\twith\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2504 I-Code_Block A_2504 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8794169\tO\t8794169\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8794169/\tO\thttps://stackoverflow.com/questions/8794169/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nappend\tO\tappend\tO\nthe\tO\tthe\tO\ncount\tO\tcount\tO\nto\tO\tto\tO\nduplicate\tO\tduplicate\tO\nentries\tO\tentries\tO\nin\tO\tin\tO\na\tO\ta\tO\nstring B-Data_Type string O\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nwhich\tO\twhich\tO\ncontains\tO\tcontains\tO\nduplicate\tO\tduplicate\tO\nentries\tO\tentries\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_735 I-Code_Block Q_735 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\ndesired\tO\tdesired\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_736 I-Code_Block Q_736 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8794169\tO\t8794169\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8794169/\tO\thttps://stackoverflow.com/questions/8794169/\tO\n\t\n\t\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1072 I-Code_Block A_1072 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nnote\tO\tnote\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nvery\tO\tvery\tO\nsimple\tO\tsimple\tO\njavascript B-Language javascript O\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\neasily\tO\teasily\tO\nreadable\tO\treadable\tO\n,\tO\t,\tO\nunderstandable\tO\tunderstandable\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nvery\tO\tvery\tO\nlarge\tO\tlarge\tO\nlists B-Data_Structure lists O\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nefficient\tO\tefficient\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\ntest\tO\ttest\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8794169\tO\t8794169\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8794169/\tO\thttps://stackoverflow.com/questions/8794169/\tO\n\t\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\ncount\tO\tcount\tO\nof\tO\tof\tO\nall\tO\tall\tO\nduplicates\tO\tduplicates\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1073 I-Code_Block A_1073 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBest\tO\tBest\tO\nregards\tO\tregards\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39861601\tO\t39861601\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39861601/\tO\thttps://stackoverflow.com/questions/39861601/\tO\n\t\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nabout\tO\tabout\tO\n100\tO\t100\tO\nusers\tO\tusers\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\ndisabled\tO\tdisabled\tO\nin\tO\tin\tO\nAD\tO\tAD\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\nDeprovisioned\tO\tDeprovisioned\tO\nin\tO\tin\tO\nOkta B-Application Okta O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nreactivate\tO\treactivate\tO\nthese\tO\tthese\tO\nusers\tO\tusers\tO\nin\tO\tin\tO\nOkta B-Application Okta O\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nwere\tO\twere\tO\nalready\tO\talready\tO\nenabled\tO\tenabled\tO\non\tO\ton\tO\nAD\tO\tAD\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nPowerShell B-Application PowerShell O\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\nOkta B-Application Okta O\nwritten\tO\twritten\tO\nby\tO\tby\tO\nMatt B-User_Name Matt O\nEgan I-User_Name Egan O\n(\tO\t(\tO\nhttps://github.com/mbegan/Okta-PSModule\tO\thttps://github.com/mbegan/Okta-PSModule\tO\n)\tO\t)\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\naccount\tO\taccount\tO\nfrom\tO\tfrom\tO\ndeprovisioned\tO\tdeprovisioned\tO\nto\tO\tto\tO\nProvisioned\tO\tProvisioned\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\naccount\tO\taccount\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nprofiled\tO\tprofiled\tO\nby\tO\tby\tO\nActive\tO\tActive\tO\nDirectory\tO\tDirectory\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nan\tO\tan\tO\nAPI B-Library API O\ncall\tO\tcall\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nallow\tO\tallow\tO\nme\tO\tme\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthat\tO\tthat\tO\nfinal\tO\tfinal\tO\nlink\tO\tlink\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5035 I-Code_Block Q_5035 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39861601\tO\t39861601\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39861601/\tO\thttps://stackoverflow.com/questions/39861601/\tO\n\t\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nAD\tO\tAD\tO\nuser\tO\tuser\tO\ndeactivated\tO\tdeactivated\tO\nin\tO\tin\tO\nAD\tO\tAD\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nturn\tO\tturn\tO\ndeprovisioned\tO\tdeprovisioned\tO\nin\tO\tin\tO\nOkta B-Application Okta O\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nreactivate\tO\treactivate\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nin\tO\tin\tO\nAD\tO\tAD\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nand\tO\tand\tO\nlater\tO\tlater\tO\nin\tO\tin\tO\nOkta B-Application Okta O\n,\tO\t,\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nmastered\tO\tmastered\tO\nby\tO\tby\tO\nAD\tO\tAD\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\nactivate\tO\tactivate\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nin\tO\tin\tO\nOkta B-Application Okta O\n(\tO\t(\tO\nvia\tO\tvia\tO\nAPI B-Library API O\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nPOST\tO\tPOST\tO\n/api/v1/users/{{userId}}/lifecycle/activate?sendEmail=false\tO\t/api/v1/users/{{userId}}/lifecycle/activate?sendEmail=false\tO\n)\tO\t)\tO\nafter\tO\tafter\tO\nactivating\tO\tactivating\tO\nin\tO\tin\tO\nAD\tO\tAD\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nimport\tO\timport\tO\nfor\tO\tfor\tO\nAD\tO\tAD\tO\n.\tO\t.\tO\n\t\nImport\tO\tImport\tO\nwill\tO\twill\tO\nimport\tO\timport\tO\nreactivated\tO\treactivated\tO\nuser\tO\tuser\tO\nand\tO\tand\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\nconfirm\tO\tconfirm\tO\nthe\tO\tthe\tO\nassignment\tO\tassignment\tO\nuser\tO\tuser\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nAD\tO\tAD\tO\nmastered\tO\tmastered\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36199343\tO\t36199343\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36199343/\tO\thttps://stackoverflow.com/questions/36199343/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable B-Data_Structure table O\nwith\tO\twith\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncolumns B-Data_Structure columns O\nas\tO\tas\tO\nvarbinary B-Data_Type varbinary O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nactually\tO\tactually\tO\ncontains\tO\tcontains\tO\nbase64 B-Data_Type base64 O\nencoded\tO\tencoded\tO\nstring B-Data_Type string O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4449 I-Code_Block Q_4449 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nits\tO\tits\tO\ncontents\tO\tcontents\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4450 I-Code_Block Q_4450 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ncolumn B-Data_Structure column O\nto\tO\tto\tO\nXMl B-Language XMl O\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ncast\tO\tcast\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrequired\tO\trequired\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nstore\tO\tstore\tO\nmuch\tO\tmuch\tO\nlonger\tO\tlonger\tO\nstrings B-Data_Type strings O\nas\tO\tas\tO\nXML B-Language XML O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nentry\tO\tentry\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4451 I-Code_Block Q_4451 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ntable B-Data_Structure table O\nto\tO\tto\tO\nxml B-Language xml O\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36199343\tO\t36199343\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36199343/\tO\thttps://stackoverflow.com/questions/36199343/\tO\n\t\n\t\nHow\tO\tHow\tO\nabout\tO\tabout\tO\nusing\tO\tusing\tO\nfor\tO\tfor\tB-Code_Block\nxml B-Language xml I-Code_Block\npath\tO\tpath\tI-Code_Block\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5168 I-Code_Block A_5168 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nannotations\tO\tannotations\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\ncolumns B-Data_Structure columns O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndocumentation\tO\tdocumentation\tO\nis\tO\tis\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36199343\tO\t36199343\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36199343/\tO\thttps://stackoverflow.com/questions/36199343/\tO\n\t\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5169 I-Code_Block A_5169 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15298378\tO\t15298378\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15298378/\tO\thttps://stackoverflow.com/questions/15298378/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntwo\tO\ttwo\tO\ndimensional\tO\tdimensional\tO\narray B-Data_Structure array O\nand\tO\tand\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncount\tO\tcount\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\ndimension\tO\tdimension\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1485 I-Code_Block Q_1485 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ncount\tO\tcount\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nelements\tO\telements\tO\nin\tO\tin\tO\n$multi_array[0][1] B-Code_Block $multi_array[0][1] B-Code_Block\nfor\tO\tfor\tO\nexample\tO\texample\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\n:\tO\t:\tO\n\t\ncount($ALPHABET[0][0]) B-Code_Block count($ALPHABET[0][0]) B-Code_Block\n; I-Code_Block ; I-Code_Block\n\t\nis\tO\tis\tO\n1 B-Value 1 B-Code_Block\nwhere\tO\twhere\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n7 B-Value 7 B-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15298378\tO\t15298378\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15298378/\tO\thttps://stackoverflow.com/questions/15298378/\tO\n\t\n\t\nTreat\tO\tTreat\tO\nevery\tO\tevery\tO\nelement\tO\telement\tO\nas\tO\tas\tO\narray B-Data_Structure array O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1941 I-Code_Block A_1941 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15298378\tO\t15298378\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15298378/\tO\thttps://stackoverflow.com/questions/15298378/\tO\n\t\n\t\n$multiarray[0][1] B-Code_Block $multiarray[0][1] B-Code_Block\n= I-Code_Block = I-Code_Block\n1 I-Code_Block 1 I-Code_Block\n,\tO\t,\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\ncount($multiarray[$index]) B-Code_Block count($multiarray[$index]) B-Code_Block\nor\tO\tor\tO\nsum\tO\tsum\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nby\tO\tby\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1943 I-Code_Block A_1943 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOr\tO\tOr\tO\nthe\tO\tthe\tO\nequivalent\tO\tequivalent\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1944 I-Code_Block A_1944 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16748223\tO\t16748223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16748223/\tO\thttps://stackoverflow.com/questions/16748223/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nlooks\tO\tlooks\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\npresented\tO\tpresented\tO\nin\tO\tin\tO\ndoxygen B-Application doxygen O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nmean\tO\tmean\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile(s)\tO\tfile(s)\tO\nthat\tO\tthat\tO\ngenerated\tO\tgenerated\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nfont\tO\tfont\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16748223\tO\t16748223\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16748223/\tO\thttps://stackoverflow.com/questions/16748223/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ncustom\tO\tcustom\tO\nCSS B-Language CSS O\nto\tO\tto\tO\nstyle\tO\tstyle\tO\nDoxygen B-Application Doxygen O\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13618291\tO\t13618291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13618291/\tO\thttps://stackoverflow.com/questions/13618291/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ntable B-Data_Structure table O\nwork\tO\twork\tO\nwith\tO\twith\tO\nGuid B-Variable Guid O\nids B-Variable ids O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nbigint B-Data_Type bigint O\n,\tO\t,\tO\nand\tO\tand\tO\ndifferent\tO\tdifferent\tO\nname\tO\tname\tO\nthan\tO\tthan\tO\nid B-Variable id O\n,\tO\t,\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nGuids B-Variable Guids O\nand\tO\tand\tO\ndifferent\tO\tdifferent\tO\nid B-Variable id O\nname\tO\tname\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nclient B-Application client O\nmodel\tO\tmodel\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45244961\tO\t45244961\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45244961/\tO\thttps://stackoverflow.com/questions/45244961/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n3\tO\t3\tO\ncommits\tO\tcommits\tO\nand\tO\tand\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nskip\tO\tskip\tO\na\tO\ta\tO\ncommit\tO\tcommit\tO\n-2 B-Value -2 O\nwhile\tO\twhile\tO\nrebasing\tO\trebasing\tO\ninto\tO\tinto\tO\n1 B-Value 1 O\n\t\nsay\tO\tsay\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5909 I-Code_Block Q_5909 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ni\tO\ti\tO\ndid\tO\tdid\tO\ngit B-Code_Block git O\nrebase I-Code_Block rebase O\n-i I-Code_Block -i O\nHEAD I-Code_Block HEAD O\n~ I-Code_Block ~ O\n3 I-Code_Block 3 O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5910 I-Code_Block Q_5910 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ni\tO\ti\tO\ntried\tO\ttried\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nremoved\tO\tremoved\tO\nthe\tO\tthe\tO\npick\tO\tpick\tO\ncommit B-Code_Block commit O\n-2 I-Code_Block -2 O\n)\tO\t)\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\ndeleted\tO\tdeleted\tO\nthe\tO\tthe\tO\ncommit B-Code_Block commit O\n-2 I-Code_Block -2 O\nitself\tO\titself\tO\nfrom\tO\tfrom\tO\ngit B-Application git O\nlog B-File_Type log O\n:(\tO\t:(\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5911 I-Code_Block Q_5911 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSomeone\tO\tSomeone\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nsquash\tO\tsquash\tO\ncommit\tO\tcommit\tO\n1\tO\t1\tO\nand\tO\tand\tO\ncommit\tO\tcommit\tO\n3\tO\t3\tO\nusing\tO\tusing\tO\ncommand\tO\tcommand\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45244961\tO\t45244961\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45244961/\tO\thttps://stackoverflow.com/questions/45244961/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ncare\tO\tcare\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nhistory\tO\thistory\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbranch\tO\tbranch\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncommits\tO\tcommits\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstart\tO\tstart\tO\na\tO\ta\tO\nbranch\tO\tbranch\tO\nfrom\tO\tfrom\tO\ncommit-4 B-Code_Block commit-4 O\n; I-Code_Block ; O\ncherry\tO\tcherry\tO\npick\tO\tpick\tO\n1 B-Value 1 O\nand\tO\tand\tO\n3 B-Value 3 O\n,\tO\t,\tO\nsquash\tO\tsquash\tO\nthem\tO\tthem\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncherry\tO\tcherry\tO\npick\tO\tpick\tO\ncommit-2 B-Code_Block commit-2 O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\non\tO\ton\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nbranch\tO\tbranch\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nresult\tO\tresult\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nassumed\tO\tassumed\tO\nthe\tO\tthe\tO\ncommits\tO\tcommits\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nconflicts\tO\tconflicts\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6560 I-Code_Block A_6560 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45244961\tO\t45244961\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45244961/\tO\thttps://stackoverflow.com/questions/45244961/\tO\n\t\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nunderstanding\tO\tunderstanding\tO\ncorrectly\tO\tcorrectly\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nreorder\tO\treorder\tO\nthe\tO\tthe\tO\ncommits\tO\tcommits\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6559 I-Code_Block A_6559 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nwould\tO\twould\tO\nplace\tO\tplace\tO\ncommit B-Code_Block commit B-Code_Block\n-2 I-Code_Block -2 I-Code_Block\nafter\tO\tafter\tO\n-1 B-Value -1 B-Code_Block\nand\tO\tand\tO\n-3 B-Value -3 B-Code_Block\n;\tO\t;\tO\nput\tO\tput\tO\n-2 B-Value -2 B-Code_Block\non\tO\ton\tO\ntop\tO\ttop\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\ncome\tO\tcome\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nCommits\tO\tCommits\tO\nare\tO\tare\tO\nevaluated\tO\tevaluated\tO\ntop\tO\ttop\tO\nto\tO\tto\tO\nbottom\tO\tbottom\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8946593\tO\t8946593\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8946593/\tO\thttps://stackoverflow.com/questions/8946593/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nEnterprise B-Application Enterprise O\nGuide I-Application Guide O\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\ntask\tO\ttask\tO\n,\tO\t,\tO\notherwise\tO\totherwise\tO\nI\tO\tI\tO\nwould\tO\twould\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nstep\tO\tstep\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nstep\tO\tstep\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_748 I-Code_Block Q_748 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8946593\tO\t8946593\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8946593/\tO\thttps://stackoverflow.com/questions/8946593/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nrecords\tO\trecords\tO\npresent\tO\tpresent\tO\nin\tO\tin\tO\none\tO\tone\tO\ntable B-Data_Structure table O\nand\tO\tand\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\n.\tO\t.\tO\n\t\nCreated\tO\tCreated\tO\ntable B-Data_Structure table O\nnew\tO\tnew\tO\nwith\tO\twith\tO\nrecords\tO\trecords\tO\ncontaining\tO\tcontaining\tO\nsex\tO\tsex\tO\n=\tO\t=\tO\nM\tO\tM\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nrecords\tO\trecords\tO\nwith\tO\twith\tO\nsex\tO\tsex\tO\n=\tO\t=\tO\nF\tO\tF\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3208 I-Code_Block A_3208 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWill\tO\tWill\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nactual\tO\tactual\tO\ndatasets\tO\tdatasets\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nof\tO\tof\tO\naround\tO\taround\tO\n100k\tO\t100k\tO\nobs\tO\tobs\tO\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nP.S\tO\tP.S\tO\n:\tO\t:\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nasked\tO\tasked\tO\nanswered\tO\tanswered\tO\nand\tO\tand\tO\nforgotten\tO\tforgotten\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nand\tO\tand\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\na\tO\ta\tO\ndirect\tO\tdirect\tO\nanswer\tO\tanswer\tO\nany\tO\tany\tO\nwhere\tO\twhere\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nadding\tO\tadding\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\ncome\tO\tcome\tO\nhandy\tO\thandy\tO\n.\tO\t.\tO\n\t\n:)\tO\t:)\tO\n\t\nMy\tO\tMy\tO\nfirst\tO\tfirst\tO\nanswer\tO\tanswer\tO\nalso\tO\talso\tO\n.\tO\t.\tO\n\t\n:)\tO\t:)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8946593\tO\t8946593\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8946593/\tO\thttps://stackoverflow.com/questions/8946593/\tO\n\t\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\none\tO\tone\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nsurely\tO\tsurely\tO\nmany\tO\tmany\tO\nothers\tO\tothers\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1090 I-Code_Block A_1090 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5885124\tO\t5885124\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5885124/\tO\thttps://stackoverflow.com/questions/5885124/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nmodel\tO\tmodel\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_420 I-Code_Block Q_420 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDoes\tO\tDoes\tO\nnHibernate B-Application nHibernate O\noffer\tO\toffer\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nrepresent\tO\trepresent\tO\nthis\tO\tthis\tO\nwhile\tO\twhile\tO\nmaintaining\tO\tmaintaining\tO\nthe\tO\tthe\tO\nsimple\tO\tsimple\tO\npublic\tO\tpublic\tO\nAPI\tO\tAPI\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5885124\tO\t5885124\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5885124/\tO\thttps://stackoverflow.com/questions/5885124/\tO\n\t\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nobservable\tO\tobservable\tO\ncollection\tO\tcollection\tO\n(\tO\t(\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nas\tO\tas\tO\nIList B-Class IList O\nand\tO\tand\tO\nhandle\tO\thandle\tO\nthat\tO\tthat\tO\nbehind\tO\tbehind\tO\nthe\tO\tthe\tO\nscenes\tO\tscenes\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nmapping\tO\tmapping\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_655 I-Code_Block A_655 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\ndrawback\tO\tdrawback\tO\nis\tO\tis\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nrequire\tO\trequire\tO\na\tO\ta\tO\nkeyed\tO\tkeyed\tO\ntable B-Data_Structure table O\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntag B-Variable tag O\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nworry\tO\tworry\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntag B-Variable tag O\ncan\tO\tcan\tO\nappear\tO\tappear\tO\non\tO\ton\tO\nmultiple\tO\tmultiple\tO\nleads\tO\tleads\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\ntags B-Variable tags O\nas\tO\tas\tO\na\tO\ta\tO\nmany\tO\tmany\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nintermediate\tO\tintermediate\tO\ntable B-Data_Structure table O\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nrequiring\tO\trequiring\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntag B-Variable tag O\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_656 I-Code_Block A_656 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47997882\tO\t47997882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47997882/\tO\thttps://stackoverflow.com/questions/47997882/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\noutput\tO\toutput\tO\nconcatenated\tO\tconcatenated\tO\nstring B-Data_Type string O\nfrom\tO\tfrom\tO\nmultiple\tO\tmultiple\tO\nSQL B-Language SQL O\nCASE B-Code_Block CASE B-Code_Block\nexpressions\tO\texpressions\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nquery\tO\tquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6385 I-Code_Block Q_6385 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nSo\tO\tSo\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\ncolumns\tO\tcolumns\tO\nB B-Variable B O\nand\tO\tand\tO\nLK B-Variable LK O\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nintroduce\tO\tintroduce\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ncolumn B-Data_Structure column O\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nAccess\tO\tAccess\tO\nLevel\tO\tLevel\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nB B-Variable B O\nis\tO\tis\tO\nActive\tO\tActive\tO\nor\tO\tor\tO\nLK B-Variable LK O\nis\tO\tis\tO\nactive\tO\tactive\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nB B-Variable B O\nor\tO\tor\tO\nLK B-Variable LK O\ndepending\tO\tdepending\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nB B-Variable B O\nonly\tO\tonly\tO\nis\tO\tis\tO\nactive\tO\tactive\tO\n,\tO\t,\tO\noutput\tO\toutput\tO\nfor\tO\tfor\tO\n'\tO\t'\tO\nAccess\tO\tAccess\tO\nLevel\tO\tLevel\tO\n'\tO\t'\tO\ncolumn B-Data_Structure column O\nwill\tO\twill\tO\nbe\tO\tbe\tO\nB B-Variable B O\n,\tO\t,\tO\nif\tO\tif\tO\nboth\tO\tboth\tO\nprograms\tO\tprograms\tO\nare\tO\tare\tO\nactive\tO\tactive\tO\nthen\tO\tthen\tO\noutput\tO\toutput\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\n'\tO\t'\tO\nB\tO\tB\tO\n,\tO\t,\tO\nLK\tO\tLK\tO\n'\tO\t'\tO\n,\tO\t,\tO\nif\tO\tif\tO\nLK B-Variable LK O\nis\tO\tis\tO\nactive\tO\tactive\tO\nonly\tO\tonly\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncolumn B-Data_Structure column O\nwill\tO\twill\tO\nhave\tO\thave\tO\nvakue\tO\tvakue\tO\nof\tO\tof\tO\nLK B-Variable LK O\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\noptions\tO\toptions\tO\nto\tO\tto\tO\nconcatenate\tO\tconcatenate\tO\na\tO\ta\tO\ncolumn B-Data_Structure column O\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\nmultiple\tO\tmultiple\tO\ncase B-Code_Block case O\nqueries\tO\tqueries\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\nLaziale B-User_Name Laziale O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47997882\tO\t47997882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47997882/\tO\thttps://stackoverflow.com/questions/47997882/\tO\n\t\n\t\nWrite\tO\tWrite\tO\na\tO\ta\tO\nthird\tO\tthird\tO\nCASE B-Code_Block CASE O\nexpression\tO\texpression\tO\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nthe\tO\tthe\tO\ncombinations\tO\tcombinations\tO\nyou\tO\tyou\tO\ndescribe\tO\tdescribe\tO\nand\tO\tand\tO\nassigns\tO\tassigns\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\npseudocode\tO\tpseudocode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7029 I-Code_Block A_7029 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCASE B-Code_Block CASE O\nexpressions\tO\texpressions\tO\nare\tO\tare\tO\nevaluated\tO\tevaluated\tO\nin\tO\tin\tO\norder\tO\torder\tO\nfrom\tO\tfrom\tO\ntop\tO\ttop\tO\nto\tO\tto\tO\nbottom\tO\tbottom\tO\nand\tO\tand\tO\nresolve\tO\tresolve\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nWHEN\tO\tWHEN\tO\ncondition\tO\tcondition\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nmet\tO\tmet\tO\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\nboth\tO\tboth\tO\nB B-Variable B O\nand\tO\tand\tO\nLK B-Variable LK O\nare\tO\tare\tO\nactive\tO\tactive\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncondition\tO\tcondition\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nmet\tO\tmet\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nresult\tO\tresult\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nreturned\tO\treturned\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nmatter\tO\tmatter\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ntwo\tO\ttwo\tO\nconditions\tO\tconditions\tO\nare\tO\tare\tO\nalso\tO\talso\tO\nboth\tO\tboth\tO\ntrue B-Value true O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47997882\tO\t47997882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47997882/\tO\thttps://stackoverflow.com/questions/47997882/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7030 I-Code_Block A_7030 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43687553\tO\t43687553\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43687553/\tO\thttps://stackoverflow.com/questions/43687553/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\naccept\tO\taccept\tO\neither\tO\teither\tO\ninput\tO\tinput\tO\nfrom\tO\tfrom\tO\nkeyboard B-Device keyboard O\nor\tO\tor\tO\n2d B-Device 2d O\nbarcode I-Device barcode O\nscanner I-Device scanner O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ninput\tO\tinput\tO\nis\tO\tis\tO\nmixture\tO\tmixture\tO\nof\tO\tof\tO\nalpha\tO\talpha\tO\nnumeric\tO\tnumeric\tO\n,\tO\t,\tO\nalso\tO\talso\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nCtrl+v B-Keyboard_IP Ctrl+v B-Keyboard_IP\nto\tO\tto\tO\npaste\tO\tpaste\tO\ntheir\tO\ttheir\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nCtrl+v B-Keyboard_IP Ctrl+v B-Keyboard_IP\n,\tO\t,\tO\nonly\tO\tonly\tO\nv B-Keyboard_IP v B-Keyboard_IP\nkey\tO\tkey\tO\nis\tO\tis\tO\ndetected\tO\tdetected\tO\nand\tO\tand\tO\nshown\tO\tshown\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nmy\tO\tmy\tO\ncursor B-User_Interface_Element cursor O\nautofocus\tO\tautofocus\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nbelow\tO\tbelow\tO\nthe\tO\tthe\tO\njavascript B-Language javascript O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5624 I-Code_Block Q_5624 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nhtml B-Language html O\npart\tO\tpart\tO\n.\tO\t.\tO\n\t\nFormatted\tO\tFormatted\tO\nHTML B-Language HTML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5625 I-Code_Block Q_5625 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21076101\tO\t21076101\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21076101/\tO\thttps://stackoverflow.com/questions/21076101/\tO\n\t\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\ncould\tO\tcould\tO\nsound\tO\tsound\tO\nlike\tO\tlike\tO\nweird\tO\tweird\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nin\tO\tin\tO\na\tO\ta\tO\nCFML B-Language CFML O\nscript\tO\tscript\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nas\tO\tas\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nfile\tO\tfile\tO\nbut\tO\tbut\tO\na\tO\ta\tO\nstring/text/base64 B-Data_Type string/text/base64 O\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthat\tO\tthat\tO\npossible\tO\tpossible\tO\nor\tO\tor\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nway\tO\tway\tO\nin\tO\tin\tO\nCFML B-Language CFML O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nPHP B-Language PHP O\nwith\tO\twith\tO\nfiles\tO\tfiles\tO\nas\tO\tas\tO\nbase64 B-Data_Type base64 O\ndata\tO\tdata\tO\neven\tO\teven\tO\nimages B-User_Interface_Element images O\nbase64 B-Data_Type base64 O\nencoded\tO\tencoded\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nabout\tO\tabout\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2240 I-Code_Block Q_2240 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhy\tO\tWhy\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nTo\tO\tTo\tO\novercome\tO\tovercome\tO\nerrors\tO\terrors\tO\nbetween\tO\tbetween\tO\ndifferent\tO\tdifferent\tO\nfunctions\tO\tfunctions\tO\nwith\tO\twith\tO\nsame\tO\tsame\tO\nname\tO\tname\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\nCF B-Application CF O\nversions\tO\tversions\tO\n(\tO\t(\tO\n6 B-Version 6 O\n,\tO\t,\tO\n7 B-Version 7 O\n,\tO\t,\tO\n8 B-Version 8 O\n,\tO\t,\tO\n9 B-Version 9 O\n,\tO\t,\tO\n20 B-Version 20 O\n)\tO\t)\tO\nbut\tO\tbut\tO\nsame\tO\tsame\tO\nnames\tO\tnames\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nportability\tO\tportability\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21076101\tO\t21076101\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21076101/\tO\thttps://stackoverflow.com/questions/21076101/\tO\n\t\n\t\nFound\tO\tFound\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nbut\tO\tbut\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2826 I-Code_Block A_2826 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8043363\tO\t8043363\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8043363/\tO\thttps://stackoverflow.com/questions/8043363/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncustom\tO\tcustom\tO\ncontrol\tO\tcontrol\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ninterface\tO\tinterface\tO\nthis\tO\tthis\tO\ncontrol\tO\tcontrol\tO\nexposes\tO\texposes\tO\nto\tO\tto\tO\nit\tO\tit\tO\n's\tO\t's\tO\nusers\tO\tusers\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_659 I-Code_Block Q_659 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNeed\tO\tNeed\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_660 I-Code_Block Q_660 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ntell\tO\ttell\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ngeneric\tO\tgeneric\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\ninterface\tO\tinterface\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8043363\tO\t8043363\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8043363/\tO\thttps://stackoverflow.com/questions/8043363/\tO\n\t\n\t\nThe\tO\tThe\tO\ntype\tO\ttype\tO\nparameter\tO\tparameter\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nbearing\tO\tbearing\tO\none\tO\tone\tO\nway\tO\tway\tO\nor\tO\tor\tO\nanother\tO\tanother\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nderived\tO\tderived\tO\nclass\tO\tclass\tO\nbeing\tO\tbeing\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\n.\tO\t.\tO\n\t\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_947 I-Code_Block A_947 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBot\tO\tBot\tO\nA B-Class A O\nand\tO\tand\tO\nB B-Class B O\nare\tO\tare\tO\nimplementations\tO\timplementations\tO\nof\tO\tof\tO\nI B-Class I O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8043363\tO\t8043363\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8043363/\tO\thttps://stackoverflow.com/questions/8043363/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nright-click\tO\tright-click\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\nand\tO\tand\tO\nchoose\tO\tchoose\tO\nimplement\tO\timplement\tO\ninterface\tO\tinterface\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\ndesigned\tO\tdesigned\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwont\tO\twont\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\n's\tO\t's\tO\ndefinition\tO\tdefinition\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nmake\tO\tmake\tO\nthem\tO\tthem\tO\nmatch\tO\tmatch\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n(\tO\t(\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\nimplementation\tO\timplementation\tO\nwill\tO\twill\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nsignature\tO\tsignature\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninterface\tO\tinterface\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_948 I-Code_Block A_948 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35816626\tO\t35816626\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35816626/\tO\thttps://stackoverflow.com/questions/35816626/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nstandard\tO\tstandard\tO\ntop-level\tO\ttop-level\tO\nGit B-Application Git O\nrepository\tO\trepository\tO\nwith\tO\twith\tO\nGit B-Application Git O\nsubmodules\tO\tsubmodules\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nknown\tO\tknown\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\ncommit\tO\tcommit\tO\nid\tO\tid\tO\nrecorded\tO\trecorded\tO\nby\tO\tby\tO\ntop-level\tO\ttop-level\tO\nrepository\tO\trepository\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatch\tO\tmatch\tO\nactual\tO\tactual\tO\nHEAD B-Code_Block HEAD B-Code_Block\nfor\tO\tfor\tO\nspecific\tO\tspecific\tO\nsubmodule\tO\tsubmodule\tO\n,\tO\t,\tO\ngit B-Code_Block git B-Code_Block\nstatus I-Code_Block status I-Code_Block\nfrom\tO\tfrom\tO\ntop-level\tO\ttop-level\tO\nrepository\tO\trepository\tO\nreports\tO\treports\tO\nit\tO\tit\tO\nby\tO\tby\tO\n(\tO\t(\tB-Code_Block\nnew\tO\tnew\tI-Code_Block\ncommits\tO\tcommits\tI-Code_Block\n)\tO\t)\tI-Code_Block\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4385 I-Code_Block Q_4385 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nProblem\tO\tProblem\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\ncircumstances\tO\tcircumstances\tO\n,\tO\t,\tO\ngit B-Code_Block git B-Code_Block\nstatus I-Code_Block status I-Code_Block\nstops\tO\tstops\tO\nreporting\tO\treporting\tO\n(\tO\t(\tB-Code_Block\nnew\tO\tnew\tI-Code_Block\ncommits\tO\tcommits\tI-Code_Block\n)\tO\t)\tI-Code_Block\nfor\tO\tfor\tO\njust\tO\tjust\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsubmodules\tO\tsubmodules\tO\neven\tO\teven\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nclear\tO\tclear\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nnew\tO\tnew\tO\ncommits\tO\tcommits\tO\n-\tO\t-\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nincorrectly\tO\tincorrectly\tO\nstop\tO\tstop\tO\nreporting\tO\treporting\tO\n(\tO\t(\tB-Code_Block\nnew\tO\tnew\tI-Code_Block\ncommits\tO\tcommits\tI-Code_Block\n)\tO\t)\tI-Code_Block\nfor\tO\tfor\tO\nsubmodule-a.git B-Code_Block submodule-a.git B-Code_Block\nwhile\tO\twhile\tO\nstill\tO\tstill\tO\nshowing\tO\tshowing\tO\nproperly\tO\tproperly\tO\n(\tO\t(\tB-Code_Block\nnew\tO\tnew\tI-Code_Block\ncommits\tO\tcommits\tI-Code_Block\n)\tO\t)\tI-Code_Block\nfor\tO\tfor\tO\nsubmodule-b.git B-Code_Block submodule-b.git B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nverify\tO\tverify\tO\nthat\tO\tthat\tO\ncommit\tO\tcommit\tO\nids\tO\tids\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nmatch\tO\tmatch\tO\n:\tO\t:\tO\n\t\nWhat\tO\tWhat\tO\ntop-level\tO\ttop-level\tO\nrepository\tO\trepository\tO\n\"\tO\t\"\tO\nthinks\tO\tthinks\tO\n\"\tO\t\"\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4386 I-Code_Block Q_4386 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nsubmodule\tO\tsubmodule\tO\nrepository\tO\trepository\tO\n\"\tO\t\"\tO\nthinks\tO\tthinks\tO\n\"\tO\t\"\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4387 I-Code_Block Q_4387 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBy\tO\tBy\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\n,\tO\t,\tO\nboth\tO\tboth\tO\ntop-level\tO\ttop-level\tO\nand\tO\tand\tO\nsubmodule\tO\tsubmodule\tO\nrepositories\tO\trepositories\tO\nare\tO\tare\tO\notherwise\tO\totherwise\tO\nhave\tO\thave\tO\nclean\tO\tclean\tO\nstatus\tO\tstatus\tO\n:\tO\t:\tO\n\t\nTop-level\tO\tTop-level\tO\n(\tO\t(\tO\nnote\tO\tnote\tO\nmissing\tO\tmissing\tO\nentry\tO\tentry\tO\nfor\tO\tfor\tO\nsubmodule-a.git B-Code_Block submodule-a.git B-Code_Block\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4388 I-Code_Block Q_4388 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSubmodule\tO\tSubmodule\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4389 I-Code_Block Q_4389 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nalso\tO\talso\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\n(\tO\t(\tO\nas\tO\tas\tO\nin\tO\tin\tO\ngit B-Code_Block git B-Code_Block\nadd I-Code_Block add I-Code_Block\n--all I-Code_Block --all I-Code_Block\n&& I-Code_Block && I-Code_Block\ngit I-Code_Block git I-Code_Block\ncommit I-Code_Block commit I-Code_Block\n)\tO\t)\tO\ncommit\tO\tcommit\tO\nids\tO\tids\tO\nfor\tO\tfor\tO\nsuch\tO\tsuch\tO\nsubmodules\tO\tsubmodules\tO\nrecorded\tO\trecorded\tO\nby\tO\tby\tO\ntop-level\tO\ttop-level\tO\nrepository\tO\trepository\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nsimply\tO\tsimply\tO\n\"\tO\t\"\tO\nthinks\tO\tthinks\tO\n\"\tO\t\"\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nnothing\tO\tnothing\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nPlatform/Version\tO\tPlatform/Version\tO\n:\tO\t:\tO\nGNU/Linux B-Operating_System GNU/Linux O\n4.2.6-200.fc22.x86_64 B-Version 4.2.6-200.fc22.x86_64 O\n,\tO\t,\tO\ngit B-Application git O\nversion\tO\tversion\tO\n2.4.3 B-Version 2.4.3 O\n(\tO\t(\tO\nalso\tO\talso\tO\nconfirmed\tO\tconfirmed\tO\non\tO\ton\tO\n2.5.0 B-Version 2.5.0 O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion\tO\tQuestion\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nor\tO\tor\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\noption\tO\toption\tO\nsomewhere\tO\tsomewhere\tO\nwhich\tO\twhich\tO\nmay\tO\tmay\tO\ndisable\tO\tdisable\tO\nsuch\tO\tsuch\tO\n(\tO\t(\tB-Code_Block\nnew\tO\tnew\tI-Code_Block\ncommits\tO\tcommits\tI-Code_Block\n)\tO\t)\tI-Code_Block\nreport\tO\treport\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35816626\tO\t35816626\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35816626/\tO\thttps://stackoverflow.com/questions/35816626/\tO\n\t\n\t\nI\tO\tI\tO\nre-confirmed\tO\tre-confirmed\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\n(\tO\t(\tO\nin-place\tO\tin-place\tO\n)\tO\t)\tO\nupgraded\tO\tupgraded\tO\nOS\tO\tOS\tO\nto\tO\tto\tO\nrecently\tO\trecently\tO\nreleased\tO\treleased\tO\nFedora B-Operating_System Fedora O\n24 B-Version 24 O\n(\tO\t(\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nGit B-Application Git O\n2.7.4 B-Version 2.7.4 B-Code_Block\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n)\tO\t)\tO\n-\tO\t-\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfilesystem\tO\tfilesystem\tO\ncontent\tO\tcontent\tO\nwas\tO\twas\tO\npreserved\tO\tpreserved\tO\n(\tO\t(\tO\nrepositories\tO\trepositories\tO\nand\tO\tand\tO\nconfiguration\tO\tconfiguration\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\ndisappeared\tO\tdisappeared\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nprevious\tO\tprevious\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\ngit B-Application git O\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nretrospective\tO\tretrospective\tO\nobservation\tO\tobservation\tO\n-\tO\t-\tO\nI\tO\tI\tO\nnever\tO\tnever\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\nreproduce\tO\treproduce\tO\nthings\tO\tthings\tO\nmanually\tO\tmanually\tO\nusing\tO\tusing\tO\nshort\tO\tshort\tO\nbranch\tO\tbranch\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nappeared\tO\tappeared\tO\nin\tO\tin\tO\nCI\tO\tCI\tO\nwhen\tO\twhen\tO\nmany\tO\tmany\tO\nautomatic\tO\tautomatic\tO\nbranches\tO\tbranches\tO\nwere\tO\twere\tO\ncreated\tO\tcreated\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\n~\tO\t~\tO\n100\tO\t100\tO\n(\tO\t(\tO\none\tO\tone\tO\nper\tO\tper\tO\nbuild\tO\tbuild\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nlong\tO\tlong\tO\nnames\tO\tnames\tO\n~\tO\t~\tO\n120+\tO\t120+\tO\ncharacters\tO\tcharacters\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\ncondition\tO\tcondition\tO\nmight\tO\tmight\tO\nhit\tO\thit\tO\nsome\tO\tsome\tO\nunhandled\tO\tunhandled\tO\nedge\tO\tedge\tO\ncases\tO\tcases\tO\nin\tO\tin\tO\nGit B-Application Git O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11604170\tO\t11604170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11604170/\tO\thttps://stackoverflow.com/questions/11604170/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nJava B-Application Java O\nEE B-Version EE O\nproject\tO\tproject\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nhtml B-Language html O\n,\tO\t,\tO\njavascript B-Language javascript O\n,\tO\t,\tO\njava B-Language java O\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nJQuery B-Library JQuery O\nto\tO\tto\tO\nload\tO\tload\tO\nup\tO\tup\tO\nan\tO\tan\tO\nhtml B-Language html O\ntemplate\tO\ttemplate\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndiv B-HTML_XML_Tag div O\ntag\tO\ttag\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nunsure\tO\tunsure\tO\nof\tO\tof\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nrelative\tO\trelative\tO\npath\tO\tpath\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nload B-Function load O\nmethod\tO\tmethod\tO\nstarts\tO\tstarts\tO\nfrom\tO\tfrom\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nhtml B-File_Type html O\nfile\tO\tfile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nload\tO\tload\tO\nis\tO\tis\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nback\tO\tback\tO\ndown\tO\tdown\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\nup\tO\tup\tO\nto\tO\tto\tO\nget\tO\tget\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\neasy\tO\teasy\tO\nway\tO\tway\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nby\tO\tby\tO\nsome\tO\tsome\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\ndebugging\tO\tdebugging\tO\nmethods\tO\tmethods\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\npath\tO\tpath\tO\nis\tO\tis\tO\n...\tO\t...\tO\n.\tO\t.\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nBONUS\tO\tBONUS\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\njavascript B-Language javascript O\n(\tO\t(\tO\nJQuery B-Library JQuery O\n)\tO\t)\tO\nthat\tO\tthat\tO\nits\tO\tits\tO\nusing\tO\tusing\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\nin\tO\tin\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nin\tO\tin\tO\nanother\tO\tanother\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1082 I-Code_Block Q_1082 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nI\tO\tI\tO\nexplained\tO\texplained\tO\nthis\tO\tthis\tO\nclearly\tO\tclearly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\nkeep\tO\tkeep\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\nbut\tO\tbut\tO\nget\tO\tget\tO\nnothing\tO\tnothing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntaking\tO\ttaking\tO\nstabs\tO\tstabs\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndark\tO\tdark\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11604170\tO\t11604170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11604170/\tO\thttps://stackoverflow.com/questions/11604170/\tO\n\t\n\t\nJavascript B-Language Javascript O\nruns\tO\truns\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\n,\tO\t,\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nknowledge\tO\tknowledge\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nJava B-Application Java O\nEE B-Version EE O\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nopen\tO\topen\tO\nup\tO\tup\tO\nyour\tO\tyour\tO\nbrowsers B-Application browsers O\nconsole I-Application console O\nand\tO\tand\tO\nwrite\tO\twrite\tO\nthis\tO\tthis\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1505 I-Code_Block A_1505 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n's\tO\t's\tO\nurl\tO\turl\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\n\" B-Value \" B-Code_Block\n\\ I-Value \\ I-Code_Block\n\" B-Value \" B-Code_Block\nis\tO\tis\tO\nescape\tO\tescape\tO\ncharacter\tO\tcharacter\tO\nin\tO\tin\tO\njavascript B-Language javascript O\nstrings B-Data_Type strings O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nprobably\tO\tprobably\tO\nwanted\tO\twanted\tO\n\" B-Value \" B-Code_Block\n/ I-Value / I-Code_Block\n\" I-Value \" I-Code_Block\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11604170\tO\t11604170\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11604170/\tO\thttps://stackoverflow.com/questions/11604170/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nabsolute\tO\tabsolute\tO\nurl\tO\turl\tO\nby\tO\tby\tO\nstaring\tO\tstaring\tO\nit\tO\tit\tO\nwith\tO\twith\tO\na\tO\ta\tO\nslash B-Value slash O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1504 I-Code_Block A_1504 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwill\tO\twill\tO\nreference\tO\treference\tO\nhttp://www.[yourwebsite].com/src/main/webapp/resources/js/template/Event/EventMainTemplate.html\tO\thttp://www.[yourwebsite].com/src/main/webapp/resources/js/template/Event/EventMainTemplate.html\tO\n\t\nThat\tO\tThat\tO\nhas\tO\thas\tO\ncaused\tO\tcaused\tO\nme\tO\tme\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ntrouble\tO\ttrouble\tO\nbefore\tO\tbefore\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44306899\tO\t44306899\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44306899/\tO\thttps://stackoverflow.com/questions/44306899/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nvarious\tO\tvarious\tO\nfailed\tO\tfailed\tO\nmethods\tO\tmethods\tO\nfor\tO\tfor\tO\nthese\tO\tthese\tO\nby\tO\tby\tO\nother\tO\tother\tO\nsimilar\tO\tsimilar\tO\nquestions\tO\tquestions\tO\n.\tO\t.\tO\n\t\nHopefully\tO\tHopefully\tO\n,\tO\t,\tO\ny'all\tO\ty'all\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npart\tO\tpart\tO\nwhere\tO\twhere\tO\nsocket B-Variable socket O\nreceives\tO\treceives\tO\nan\tO\tan\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ncomment\tO\tcomment\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nrequire\tO\trequire\tO\nany\tO\tany\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\nfrom\tO\tfrom\tO\nme\tO\tme\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5743 I-Code_Block Q_5743 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44306899\tO\t44306899\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44306899/\tO\thttps://stackoverflow.com/questions/44306899/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nprovided\tO\tprovided\tO\n#messages B-Code_Block #messages B-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nscroll-able\tO\tscroll-able\tO\narea\tO\tarea\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nDOM B-Library DOM O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6385 I-Code_Block A_6385 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44306899\tO\t44306899\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44306899/\tO\thttps://stackoverflow.com/questions/44306899/\tO\n\t\n\t\nwrap\tO\twrap\tO\nthe\tO\tthe\tO\nul.messages B-HTML_XML_Tag ul.messages O\nin\tO\tin\tO\na\tO\ta\tO\ndiv B-HTML_XML_Tag div O\nwith\tO\twith\tO\na\tO\ta\tO\nclass B-Code_Block class O\n= I-Code_Block = O\n\" I-Code_Block \" O\nmsg-con I-Code_Block msg-con O\n\" I-Code_Block \" O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6386 I-Code_Block A_6386 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nnow\tO\tnow\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\njavascript B-Language javascript O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6387 I-Code_Block A_6387 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhope\tO\thope\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41443520\tO\t41443520\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41443520/\tO\thttps://stackoverflow.com/questions/41443520/\tO\n\t\n\t\nGiven\tO\tGiven\tO\nthree\tO\tthree\tO\nmajor\tO\tmajor\tO\ncompeting\tO\tcompeting\tO\napplications\tO\tapplications\tO\neach\tO\teach\tO\nimplementing\tO\timplementing\tO\na\tO\ta\tO\nslightly\tO\tslightly\tO\ndifferent\tO\tdifferent\tO\ndata\tO\tdata\tO\nschema\tO\tschema\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\ndomain\tO\tdomain\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfaced\tO\tfaced\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\nof\tO\tof\tO\nimplementing\tO\timplementing\tO\n:\tO\t:\tO\n\t\na\tO\ta\tO\n\"\tO\t\"\tO\ncanonical\tO\tcanonical\tO\n\"\tO\t\"\tO\ndata\tO\tdata\tO\nschema\tO\tschema\tO\nexpressive\tO\texpressive\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nrepresent\tO\trepresent\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nintersection\tO\tintersection\tO\nset\tO\tset\tO\nof\tO\tof\tO\nfeatures\tO\tfeatures\tO\nof\tO\tof\tO\nall\tO\tall\tO\n3\tO\t3\tO\napplications\tO\tapplications\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nadditional\tO\tadditional\tO\ndetails\tO\tdetails\tO\n(\tO\t(\tO\nmeta\tO\tmeta\tO\ndata\tO\tdata\tO\n)\tO\t)\tO\n\t\nconverters\tO\tconverters\tO\nfor\tO\tfor\tO\ndoing\tO\tdoing\tO\n(\tO\t(\tO\nbidirectional\tO\tbidirectional\tO\n)\tO\t)\tO\ndata\tO\tdata\tO\nexchange\tO\texchange\tO\nbetween\tO\tbetween\tO\nthose\tO\tthose\tO\n3\tO\t3\tO\napplications\tO\tapplications\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncanonical\tO\tcanonical\tO\nschema\tO\tschema\tO\n\t\nHow\tO\tHow\tO\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\napproach\tO\tapproach\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\n\t\nThe\tO\tThe\tO\ncanonical\tO\tcanonical\tO\nschema\tO\tschema\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nusing\tO\tusing\tO\nXSD\tO\tXSD\tO\nand\tO\tand\tO\nclosely\tO\tclosely\tO\nresembles\tO\tresembles\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nschema\tO\tschema\tO\nof\tO\tof\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n3\tO\t3\tO\napplications\tO\tapplications\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nA B-Variable A O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nrenders\tO\trenders\tO\ndata\tO\tdata\tO\nexchange\tO\texchange\tO\nwith\tO\twith\tO\nA B-Variable A O\ntrivial\tO\ttrivial\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nbidirectional\tO\tbidirectional\tO\ndata\tO\tdata\tO\nexchange\tO\texchange\tO\nwith\tO\twith\tO\napplications\tO\tapplications\tO\nB B-Variable B O\nand\tO\tand\tO\nC B-Variable C O\n(\tO\t(\tO\ncreate\tO\tcreate\tO\nsome\tO\tsome\tO\nstate\tO\tstate\tO\nin\tO\tin\tO\nA B-Variable A O\n,\tO\t,\tO\nload\tO\tload\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nB B-Variable B O\n,\tO\t,\tO\nalter\tO\talter\tO\nit\tO\tit\tO\nin\tO\tin\tO\nB B-Variable B O\n,\tO\t,\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\naltered\tO\taltered\tO\nstate\tO\tstate\tO\ninto\tO\tinto\tO\nA\tO\tA\tO\n) B-Variable ) O\n,\tO\t,\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nsimples\tO\tsimples\tO\nstates\tO\tstates\tO\nin\tO\tin\tO\nA B-Variable A O\nonto\tO\tonto\tO\nmore\tO\tmore\tO\ncomplex\tO\tcomplex\tO\nstates\tO\tstates\tO\nin\tO\tin\tO\nB/C B-Variable B/C O\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nidentified\tO\tidentified\tO\nand\tO\tand\tO\ndeconstructed\tO\tdeconstructed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nreverse\tO\treverse\tO\nmapping\tO\tmapping\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nWhy\tO\tWhy\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nmy\tO\tmy\tO\napproach\tO\tapproach\tO\n\t\nMost\tO\tMost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nschema\tO\tschema\tO\nmappings\tO\tmappings\tO\nare\tO\tare\tO\npretty\tO\tpretty\tO\ntrivial\tO\ttrivial\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nA B-Variable A O\nsimply\tO\tsimply\tO\nmaps\tO\tmaps\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nB\tO\tB\tO\n) B-Variable ) O\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ntrivial\tO\ttrivial\tO\ncode\tO\tcode\tO\nby\tO\tby\tO\nhand\tO\thand\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nimagine\tO\timagine\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ntrivial\tO\ttrivial\tO\ncode\tO\tcode\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ngenerated\tO\tgenerated\tO\ngiven\tO\tgiven\tO\na\tO\ta\tO\nformalized\tO\tformalized\tO\nmapping\tO\tmapping\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nschemes\tO\tschemes\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nnontrivial\tO\tnontrivial\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmapping\tO\tmapping\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\none\tO\tone\tO\ndesribed\tO\tdesribed\tO\nabove\tO\tabove\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nexpect\tO\texpect\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\nsimply\tO\tsimply\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nso\tO\tso\tO\narbitrary\tO\tarbitrary\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmany\tO\tmany\tO\ncases\tO\tcases\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nconvention\tO\tconvention\tO\nfor\tO\tfor\tO\nmapping\tO\tmapping\tO\nstates\tO\tstates\tO\nin\tO\tin\tO\nA B-Variable A O\nonto\tO\tonto\tO\nmore\tO\tmore\tO\ncomplex\tO\tcomplex\tO\nstates\tO\tstates\tO\nin\tO\tin\tO\nB/C B-Variable B/C O\nmight\tO\tmight\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndead\tO\tdead\tO\nend\tO\tend\tO\nat\tO\tat\tO\nsome\tO\tsome\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbecome\tO\tbecome\tO\nnecessary\tO\tnecessary\tO\nfor\tO\tfor\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nmirrored\tO\tmirrored\tO\nsubspace\tO\tsubspace\tO\n\"\tO\t\"\tO\nlabel\tO\tlabel\tO\nand\tO\tand\tO\ntherefore\tO\ttherefore\tO\nanother\tO\tanother\tO\napproach\tO\tapproach\tO\nfor\tO\tfor\tO\nidentifying\tO\tidentifying\tO\nconversion\tO\tconversion\tO\nartifacts\tO\tartifacts\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nimagine\tO\timagine\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nformalized\tO\tformalized\tO\nmapping\tO\tmapping\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ntool\tO\ttool\tO\nto\tO\tto\tO\ntransparently\tO\ttransparently\tO\nmanage\tO\tmanage\tO\nthose\tO\tthose\tO\nconventions\tO\tconventions\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\na\tO\ta\tO\nreasoner\tO\treasoner\tO\ncould\tO\tcould\tO\neven\tO\teven\tO\nautomatically\tO\tautomatically\tO\nspot\tO\tspot\tO\nincoherent\tO\tincoherent\tO\n,\tO\t,\tO\ninconsistent\tO\tinconsistent\tO\nmappings\tO\tmappings\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nmight\tO\tmight\tO\nalso\tO\talso\tO\nallow\tO\tallow\tO\nme\tO\tme\tO\nto\tO\tto\tO\nmore\tO\tmore\tO\neasily\tO\teasily\tO\ndiscuss\tO\tdiscuss\tO\nthe\tO\tthe\tO\nmapping\tO\tmapping\tO\nwith\tO\twith\tO\ndomain\tO\tdomain\tO\nexperts\tO\texperts\tO\nand\tO\tand\tO\nusers\tO\tusers\tO\n.\tO\t.\tO\n\t\nQuestions\tO\tQuestions\tO\n\t\nFrom\tO\tFrom\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nread\tO\tread\tO\nabout\tO\tabout\tO\nontologies\tO\tontologies\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nimpression\tO\timpression\tO\nthat\tO\tthat\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nis\tO\tis\tO\nan\tO\tan\tO\nontology\tO\tontology\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\ncorrect\tO\tcorrect\tO\n?\tO\t?\tO\n\t\nAs\tO\tAs\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nit\tO\tit\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nontology\tO\tontology\tO\nto\tO\tto\tO\ndescribe\tO\tdescribe\tO\nthe\tO\tthe\tO\nmapping\tO\tmapping\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\nrequire\tO\trequire\tO\nme\tO\tme\tO\nto\tO\tto\tO\nexpress\tO\texpress\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nschemes\tO\tschemes\tO\nthemselves\tO\tthemselves\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nontology\tO\tontology\tO\n(\tO\t(\tO\nso\tO\tso\tO\na\tO\ta\tO\nrelation\tO\trelation\tO\n\"\tO\t\"\tO\nmaps\tO\tmaps\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\ncan\tO\tcan\tO\nreference\tO\treference\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nfrom\tO\tfrom\tO\nA B-Variable A O\nand\tO\tand\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nfrom\tO\tfrom\tO\nB B-Variable B O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nthose\tO\tthose\tO\nschemes\tO\tschemes\tO\nare\tO\tare\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\nlong-lived\tO\tlong-lived\tO\napplications\tO\tapplications\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nalways\tO\talways\tO\ncoherent\tO\tcoherent\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nfeature\tO\tfeature\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nmight\tO\tmight\tO\ncause\tO\tcause\tO\nsome\tO\tsome\tO\nstate\tO\tstate\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nsemantic\tO\tsemantic\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsemantics\tO\tsemantics\tO\nof\tO\tof\tO\nits\tO\tits\tO\nconstituents\tO\tconstituents\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nexisting\tO\texisting\tO\ntools\tO\ttools\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwith\tO\twith\tO\nmanaging\tO\tmanaging\tO\nthose\tO\tthose\tO\ncomplexities\tO\tcomplexities\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nexpect\tO\texpect\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nrequire\tO\trequire\tO\nsome\tO\tsome\tO\nadditional\tO\tadditional\tO\nmachinery\tO\tmachinery\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nontology\tO\tontology\tO\nto\tO\tto\tO\ndescribe\tO\tdescribe\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n-taken\tO\t-taken\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nabove\tO\tabove\tO\n-\tO\t-\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\na\tO\ta\tO\n\"\tO\t\"\tO\npermanent\tO\tpermanent\tO\nmirrored\tO\tmirrored\tO\nsubspace\tO\tsubspace\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\na\tO\ta\tO\n\"\tO\t\"\tO\ndissipating\tO\tdissipating\tO\nmirrored\tO\tmirrored\tO\nsubspace\tO\tsubspace\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\ntwo\tO\ttwo\tO\ntypes\tO\ttypes\tO\n+\tO\t+\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nrelation\tO\trelation\tO\nreconnecting\tO\treconnecting\tO\nthem\tO\tthem\tO\n?\tO\t?\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\neffort\tO\teffort\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nDo\tO\tDo\tO\navailable\tO\tavailable\tO\nontology\tO\tontology\tO\nlanguages\tO\tlanguages\tO\nprovide\tO\tprovide\tO\nsomething\tO\tsomething\tO\nout-of-the-box\tO\tout-of-the-box\tO\nto\tO\tto\tO\nexpress\tO\texpress\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\napplication\tO\tapplication\tO\nof\tO\tof\tO\nontologies\tO\tontologies\tO\na\tO\ta\tO\ncommon\tO\tcommon\tO\napplication\tO\tapplication\tO\nfor\tO\tfor\tO\nontologies\tO\tontologies\tO\nor\tO\tor\tO\nis\tO\tis\tO\nit\tO\tit\tO\na\tO\ta\tO\ncorner\tO\tcorner\tO\ncase\tO\tcase\tO\n?\tO\t?\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\ncompanies\tO\tcompanies\tO\nwho\tO\twho\tO\nprovide\tO\tprovide\tO\nservices\tO\tservices\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\napplication\tO\tapplication\tO\n?\tO\t?\tO\n\t\nWhich\tO\tWhich\tO\ntools\tO\ttools\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\nsuggest\tO\tsuggest\tO\nfor\tO\tfor\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\nontology\tO\tontology\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nassume\tO\tassume\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\noff-the-shelf\tO\toff-the-shelf\tO\ntools\tO\ttools\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ngeneration\tO\tgeneration\tO\nmentioned\tO\tmentioned\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\napproach\tO\tapproach\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ngeneration\tO\tgeneration\tO\ntask\tO\ttask\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41443520\tO\t41443520\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41443520/\tO\thttps://stackoverflow.com/questions/41443520/\tO\n\t\n\t\nAbstracting\tO\tAbstracting\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\ninterfaces\tO\tinterfaces\tO\n,\tO\t,\tO\nand\tO\tand\tO\nrules\tO\trules\tO\nfor\tO\tfor\tO\ntransformation\tO\ttransformation\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nas\tO\tas\tO\nsubset\tO\tsubset\tO\nof\tO\tof\tO\nontology\tO\tontology\tO\ncreation\tO\tcreation\tO\nknown\tO\tknown\tO\nas\tO\tas\tO\na\tO\ta\tO\nmeta-model\tO\tmeta-model\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nMeta\tO\tMeta\tO\nObject\tO\tObject\tO\nFacility\tO\tFacility\tO\n(\tO\t(\tO\nMOF\tO\tMOF\tO\n)\tO\t)\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nTopic\tO\tTopic\tO\nMaps\tO\tMaps\tO\nare\tO\tare\tO\nanother\tO\tanother\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nReferences\tO\tReferences\tO\n\t\nInfoGrid\tO\tInfoGrid\tO\nWeb\tO\tWeb\tO\nGraph\tO\tGraph\tO\nDatabase\tO\tDatabase\tO\n:\tO\t:\tO\nWhat\tO\tWhat\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\ndifferences\tO\tdifferences\tO\nbetween\tO\tbetween\tO\na\tO\ta\tO\nvocabulary\tO\tvocabulary\tO\n,\tO\t,\tO\na\tO\ta\tO\ntaxonomy\tO\ttaxonomy\tO\n,\tO\t,\tO\na\tO\ta\tO\nthesaurus\tO\tthesaurus\tO\n,\tO\t,\tO\nan\tO\tan\tO\nontology\tO\tontology\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nmeta-model\tO\tmeta-model\tO\n?\tO\t?\tO\n\t\nMeta\tO\tMeta\tO\nObject\tO\tObject\tO\nFacility\tO\tFacility\tO\n(\tO\t(\tO\nMOF\tO\tMOF\tO\n)\tO\t)\tO\n\t\nSpecification\tO\tSpecification\tO\n(\tO\t(\tO\npdf B-File_Type pdf O\n)\tO\t)\tO\n\t\nTopic\tO\tTopic\tO\nMaps\tO\tMaps\tO\nNow\tO\tNow\tO\n\t\nAn\tO\tAn\tO\nIntroduction\tO\tIntroduction\tO\nto\tO\tto\tO\nTopic\tO\tTopic\tO\nMaps\tO\tMaps\tO\n\t\nTM4J\tO\tTM4J\tO\n-\tO\t-\tO\nTopic\tO\tTopic\tO\nMaps\tO\tMaps\tO\nFor\tO\tFor\tO\nJava B-Language Java O\n\t\nCode\tO\tCode\tO\nGeneration\tO\tGeneration\tO\nwith\tO\twith\tO\nOpenDDS B-Language OpenDDS O\n,\tO\t,\tO\nPart\tO\tPart\tO\nI\tO\tI\tO\n:\tO\t:\tO\n:\tO\t:\tO\nOCI\tO\tOCI\tO\n\t\nPaws\tO\tPaws\tO\n-\tO\t-\tO\nA\tO\tA\tO\nPerl B-Library Perl O\nSDK I-Library SDK O\nfor\tO\tfor\tO\nAWS B-Library AWS O\n( I-Library ( O\nAmazon I-Library Amazon O\nWeb I-Library Web O\nServices I-Library Services O\n) I-Library ) O\nAPIs B-Library APIs O\n-\tO\t-\tO\nmetacpan.org\tO\tmetacpan.org\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40738894\tO\t40738894\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40738894/\tO\thttps://stackoverflow.com/questions/40738894/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsdk B-Application sdk O\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nintegrated\tO\tintegrated\tO\nin\tO\tin\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nServer\tO\tServer\tO\nfor\tO\tfor\tO\nour\tO\tour\tO\nsdk B-Application sdk O\nwants\tO\twants\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsingle\tO\tsingle\tO\nGCM B-Application GCM O\nId\tO\tId\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\npush B-User_Interface_Element push O\nnotification I-User_Interface_Element notification O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\ntackle\tO\ttackle\tO\nthe\tO\tthe\tO\nscenario\tO\tscenario\tO\nwhere\tO\twhere\tO\nmy\tO\tmy\tO\nsdk B-Application sdk O\nis\tO\tis\tO\nintegrated\tO\tintegrated\tO\nin\tO\tin\tO\ntwo\tO\ttwo\tO\napplications\tO\tapplications\tO\nin\tO\tin\tO\nsame\tO\tsame\tO\nphone B-Device phone O\nand\tO\tand\tO\nas\tO\tas\tO\nsdk B-Application sdk O\nin\tO\tin\tO\none\tO\tone\tO\napplication\tO\tapplication\tO\nregisters\tO\tregisters\tO\nGCM B-Application GCM O\n,\tO\t,\tO\nthe\tO\tthe\tO\nGCM B-Application GCM O\nregistered\tO\tregistered\tO\nfrom\tO\tfrom\tO\nsdk B-Application sdk O\nin\tO\tin\tO\nother\tO\tother\tO\napplication\tO\tapplication\tO\nexpires\tO\texpires\tO\n?\tO\t?\tO\n\t\nFYI\tO\tFYI\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nreviewed\tO\treviewed\tO\nthis\tO\tthis\tO\nanswer\tO\tanswer\tO\nAndroid B-Application Android O\nGCM I-Application GCM O\n:\tO\t:\tO\nsame\tO\tsame\tO\nsender\tO\tsender\tO\nid\tO\tid\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\napplication\tO\tapplication\tO\nbut\tO\tbut\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nconsidering\tO\tconsidering\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nis\tO\tis\tO\ninstalled\tO\tinstalled\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\ndevice\tO\tdevice\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40738894\tO\t40738894\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40738894/\tO\thttps://stackoverflow.com/questions/40738894/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nYou\tO\tYou\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nmatters\tO\tmatters\tO\nis\tO\tis\tO\nregistration B-Code_Block registration B-Code_Block\nId I-Code_Block Id I-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\nclient B-Application client O\n(\tO\t(\tO\napp\tO\tapp\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ngot\tO\tgot\tO\nit\tO\tit\tO\ndifferent\tO\tdifferent\tO\nper\tO\tper\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatter\tO\tmatter\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nis\tO\tis\tO\ninstalled\tO\tinstalled\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\n(\tO\t(\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n)\tO\t)\tO\nsame\tO\tsame\tO\nsender\tO\tsender\tO\nid\tO\tid\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nirrelevant\tO\tirrelevant\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7561264\tO\t7561264\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7561264/\tO\thttps://stackoverflow.com/questions/7561264/\tO\n\t\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nGraph B-Library Graph O\nAPI I-Library API O\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nalternate\tO\talternate\tO\nname\tO\tname\tO\nsomeone\tO\tsomeone\tO\nfills\tO\tfills\tO\nout\tO\tout\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\nAccount\tO\tAccount\tO\nSettings\tO\tSettings\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7561264\tO\t7561264\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7561264/\tO\thttps://stackoverflow.com/questions/7561264/\tO\n\t\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\n'\tO\t'\tO\nusername B-Variable username O\n'\tO\t'\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nfield\tO\tfield\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUser B-Class User O\nGraph I-Class Graph O\nObject I-Class Object O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n' B-Value ' O\nbtaylor I-Value btaylor O\n' B-Value ' O\nreturned\tO\treturned\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nuser\tO\tuser\tO\n,\tO\t,\tO\nhttps://www.facebook.com/btaylor\tO\thttps://www.facebook.com/btaylor\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\ngrab\tO\tgrab\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nusername B-Variable username O\n'\tO\t'\tO\nfield\tO\tfield\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nUser B-Class User O\nGraph I-Class Graph O\nObject I-Class Object O\n,\tO\t,\tO\nas\tO\tas\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\n:\tO\t:\tO\nhttps://graph.facebook.com/btaylor\tO\thttps://graph.facebook.com/btaylor\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7561264\tO\t7561264\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7561264/\tO\thttps://stackoverflow.com/questions/7561264/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\ncurrently\tO\tcurrently\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthis\tO\tthis\tO\nfield\tO\tfield\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nAPI B-Application API O\nby\tO\tby\tO\nany\tO\tany\tO\nmeans\tO\tmeans\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\naware\tO\taware\tO\nof\tO\tof\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nfile\tO\tfile\tO\na\tO\ta\tO\nwishlist\tO\twishlist\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbug\tO\tbug\tO\ntracker\tO\ttracker\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nget\tO\tget\tO\npicked\tO\tpicked\tO\nup\tO\tup\tO\nand\tO\tand\tO\nimplemented\tO\timplemented\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16516578\tO\t16516578\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16516578/\tO\thttps://stackoverflow.com/questions/16516578/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nbootstrap B-Library bootstrap O\nwith\tO\twith\tO\nDjango B-Library Django O\n.\tO\t.\tO\n\t\nThough\tO\tThough\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngood\tO\tgood\tO\nin\tO\tin\tO\nPython B-Language Python O\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nstruggling\tO\tstruggling\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nsome\tO\tsome\tO\nbasic\tO\tbasic\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\nfile\tO\tfile\tO\nuploads/forms\tO\tuploads/forms\tO\nin\tO\tin\tO\nbootstrap B-Library bootstrap O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nparticular\tO\tparticular\tO\nreason\tO\treason\tO\nfor\tO\tfor\tO\nusing\tO\tusing\tO\nFileField B-Class FileField O\nin\tO\tin\tO\nDjango B-Library Django O\nmodels\tO\tmodels\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16516578\tO\t16516578\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16516578/\tO\thttps://stackoverflow.com/questions/16516578/\tO\n\t\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nFile\tO\tFile\tO\nUploads\tO\tUploads\tO\ndocumentation\tO\tdocumentation\tO\n\t\nDjango B-Library Django O\nCripsy I-Library Cripsy O\nforms I-Library forms O\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nwith\tO\twith\tO\nBootstrap B-Library Bootstrap O\nforms\tO\tforms\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nFileField B-Class FileField B-Code_Block\n(\tO\t(\tO\ndocs\tO\tdocs\tO\n)\tO\t)\tO\nwill\tO\twill\tO\nautomatically\tO\tautomatically\tO\nupload\tO\tupload\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\ngiving\tO\tgiving\tO\nyou\tO\tyou\tO\nvarious\tO\tvarious\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nadditional\tO\tadditional\tO\nfunctionality\tO\tfunctionality\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nupload\tO\tupload\tO\nto\tO\tto\tO\n,\tO\t,\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nabsolute\tO\tabsolute\tO\nurl\tO\turl\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nability\tO\tability\tO\nto\tO\tto\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33927327\tO\t33927327\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33927327/\tO\thttps://stackoverflow.com/questions/33927327/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\nwhich\tO\twhich\tO\nallows\tO\tallows\tO\nme\tO\tme\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\n.jar B-File_Type .jar B-Code_Block\nfile\tO\tfile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\nsure\tO\tsure\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmeaning\tO\tmeaning\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nmy\tO\tmy\tO\nprograms\tO\tprograms\tO\nfrom\tO\tfrom\tO\nEclipse B-Application Eclipse O\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nunderstanding\tO\tunderstanding\tO\nfully\tO\tfully\tO\nit\tO\tit\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ndifficult\tO\tdifficult\tO\nto\tO\tto\tO\ncustomise\tO\tcustomise\tO\nthe\tO\tthe\tO\nrun\tO\trun\tO\nconfigurations\tO\tconfigurations\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncommand\tO\tcommand\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4148 I-Code_Block Q_4148 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nquestions\tO\tquestions\tO\n:\tO\t:\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nmeaning\tO\tmeaning\tO\nof\tO\tof\tO\n: B-Code_Block : B-Code_Block\n. I-Code_Block . I-Code_Block\nafter\tO\tafter\tO\nthe\tO\tthe\tO\n.jar B-File_Type .jar B-Code_Block\nlibrary\tO\tlibrary\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nclass\tO\tclass\tO\ntransport.FileSender B-Class transport.FileSender B-Code_Block\nbasically\tO\tbasically\tO\nallows\tO\tallows\tO\nme\tO\tme\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nby\tO\tby\tO\nclass\tO\tclass\tO\nMGBNSender B-Class MGBNSender B-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nmanage\tO\tmanage\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nEclipse B-Application Eclipse O\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nhow\tO\thow\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nimported\tO\timported\tO\nthe\tO\tthe\tO\n.jar B-File_Type .jar B-Code_Block\nfile.\tO\tfile.\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33927327\tO\t33927327\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33927327/\tO\thttps://stackoverflow.com/questions/33927327/\tO\n\t\n\t\nThe\tO\tThe\tO\n. B-Code_Block . B-Code_Block\nadds\tO\tadds\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ndirectory\tO\tdirectory\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclass-path\tO\tclass-path\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\ncompiled\tO\tcompiled\tO\nJava B-Language Java O\nsource\tO\tsource\tO\nfiles\tO\tfiles\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nclasses\tO\tclasses\tO\n)\tO\t)\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\ntree\tO\ttree\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ndeveloping\tO\tdeveloping\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nMain B-Class Main O\n,\tO\t,\tO\nor\tO\tor\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\n,\tO\t,\tO\nclass\tO\tclass\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\ndirectory\tO\tdirectory\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39820928\tO\t39820928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39820928/\tO\thttps://stackoverflow.com/questions/39820928/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nrecently\tO\trecently\tO\npast\tO\tpast\tO\nday\tO\tday\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nweek\tO\tweek\tO\n,\tO\t,\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\nmoment\tO\tmoment\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n1\tO\t1\tO\n:\tO\t:\tO\nGiven\tO\tGiven\tO\nthis\tO\tthis\tO\nmoment\tO\tmoment\tO\n—\tO\t—\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nsay\tO\tsay\tO\nSun B-Value Sun O\nOct I-Value Oct O\n2 I-Value 2 O\n2016 I-Value 2016 O\n15:30:30 I-Value 15:30:30 O\nEST I-Value EST O\n—\tO\t—\tO\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ndetermine\tO\tdetermine\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nrecently\tO\trecently\tO\npast\tO\tpast\tO\nFriday B-Value Friday O\nat I-Value at O\n20:00:00 I-Value 20:00:00 O\nMST I-Value MST O\n?\tO\t?\tO\n\t\nAnswer\tO\tAnswer\tO\n1\tO\t1\tO\n:\tO\t:\tO\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nFriday B-Value Friday O\n, I-Value , O\nSept I-Value Sept O\n30 I-Value 30 O\n, I-Value , O\n2016 I-Value 2016 O\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n2\tO\t2\tO\n:\tO\t:\tO\nWhat\tO\tWhat\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nrecently\tO\trecently\tO\npast\tO\tpast\tO\nSunday B-Value Sunday O\nat I-Value at O\n21:00:00 I-Value 21:00:00 O\nEST I-Value EST O\n?\tO\t?\tO\n\t\nAnswer\tO\tAnswer\tO\n2\tO\t2\tO\n:\tO\t:\tO\nThat\tO\tThat\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nSunday B-Value Sunday O\n, I-Value , O\nSep I-Value Sep O\n25 I-Value 25 O\n, I-Value , O\n2016 I-Value 2016 O\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n3\tO\t3\tO\n:\tO\t:\tO\nWhat\tO\tWhat\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nrecently\tO\trecently\tO\npast\tO\tpast\tO\nSunday B-Value Sunday O\nat I-Value at O\n14:30:30 I-Value 14:30:30 O\nMST I-Value MST O\n?\tO\t?\tO\n\t\nAnswer\tO\tAnswer\tO\n3\tO\t3\tO\n:\tO\t:\tO\nThat\tO\tThat\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\nSunday B-Value Sunday O\n, I-Value , O\nSep I-Value Sep O\n25 I-Value 25 O\n, I-Value , O\n2016 I-Value 2016 O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39820928\tO\t39820928\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39820928/\tO\thttps://stackoverflow.com/questions/39820928/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nphp B-Language php O\nDateTime B-Class DateTime O\nAPI\tO\tAPI\tO\nextension\tO\textension\tO\ncalled\tO\tcalled\tO\nCarbon B-Library Carbon O\n.\tO\t.\tO\n\t\nhttps://packagist.org/packages/nesbot/carbon\tO\thttps://packagist.org/packages/nesbot/carbon\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ninstall\tO\tinstall\tO\nit\tO\tit\tO\nvia\tO\tvia\tO\nComposer B-Application Composer O\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nsimply\tO\tsimply\tO\nwrite\tO\twrite\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5728 I-Code_Block A_5728 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\ntutorial\tO\ttutorial\tO\nseries\tO\tseries\tO\nby\tO\tby\tO\nAlex B-User_Name Alex O\nfrom\tO\tfrom\tO\nCodecourse B-Website Codecourse O\non\tO\ton\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCarbon B-Library Carbon O\nTutorial\tO\tTutorial\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20632394\tO\t20632394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20632394/\tO\thttps://stackoverflow.com/questions/20632394/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\non\tO\ton\tO\nstackexchange B-Website stackexchange O\n,\tO\t,\tO\nfacing\tO\tfacing\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nwith\tO\twith\tO\nnumerous\tO\tnumerous\tO\nhours\tO\thours\tO\nspent\tO\tspent\tO\non\tO\ton\tO\nGoogle B-Website Google O\n.\tO\t.\tO\n\t\nApologies\tO\tApologies\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlack\tO\tlack\tO\nof\tO\tof\tO\nmore\tO\tmore\tO\nimages B-User_Interface_Element images O\n,\tO\t,\tO\nstackexchange B-Website stackexchange O\nwill\tO\twill\tO\nnot\tO\tnot\tO\nallow\tO\tallow\tO\nme\tO\tme\tO\nto\tO\tto\tO\nmore\tO\tmore\tO\nphotos B-User_Interface_Element photos O\nuntil\tO\tuntil\tO\nmy\tO\tmy\tO\nreputation\tO\treputation\tO\nis\tO\tis\tO\nhigher\tO\thigher\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nresults\tO\tresults\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\n.do B-File_Type .do O\npage\tO\tpage\tO\n:\tO\t:\tO\n\t\nhttp://webapps2.rrc.state.tx.us/EWA/productionQueryAction.do\tO\thttp://webapps2.rrc.state.tx.us/EWA/productionQueryAction.do\tO\n\t\nThe\tO\tThe\tO\nurl\tO\turl\tO\nremains\tO\tremains\tO\nstatic\tO\tstatic\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\nquery\tO\tquery\tO\ne.g\tO\te.g\tO\nis\tO\tis\tO\nsubmitted\tO\tsubmitted\tO\n-\tO\t-\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nalter\tO\talter\tO\nmy\tO\tmy\tO\nquery\tO\tquery\tO\nby\tO\tby\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nsubmitted\tO\tsubmitted\tO\n,\tO\t,\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\na\tO\ta\tO\nlong\tO\tlong\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nload\tO\tload\tO\n,\tO\t,\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\nloading\tO\tloading\tO\n,\tO\t,\tO\na\tO\ta\tO\ntable B-User_Interface_Element table O\nof\tO\tof\tO\nresults\tO\tresults\tO\nis\tO\tis\tO\npresented\tO\tpresented\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\nrequire\tO\trequire\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\non\tO\ton\tO\none\tO\tone\tO\npage\tO\tpage\tO\nso\tO\tso\tO\nI\tO\tI\tO\nselect\tO\tselect\tO\n'\tO\t'\tO\nView\tO\tView\tO\nAll\tO\tAll\tO\n'\tO\t'\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nsize\tO\tsize\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndrop B-User_Interface_Element drop O\ndown I-User_Interface_Element down O\nmenu I-User_Interface_Element menu O\non\tO\ton\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nleft\tO\tleft\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntable B-User_Interface_Element table O\nto\tO\tto\tO\nobtain\tO\tobtain\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npage\tO\tpage\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nmany\tO\tmany\tO\nmore\tO\tmore\tO\nrows B-User_Interface_Element rows O\nthan\tO\tthan\tO\ndisplayed\tO\tdisplayed\tO\nhere\tO\there\tO\n)\tO\t)\tO\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nto\tO\tto\tO\nthen\tO\tthen\tO\nimport\tO\timport\tO\nthis\tO\tthis\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nI\tO\tI\tO\nopen\tO\topen\tO\na\tO\ta\tO\nspreadsheet B-User_Interface_Element spreadsheet O\nand\tO\tand\tO\ncopy-paste\tO\tcopy-paste\tO\nit\tO\tit\tO\nall\tO\tall\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nfor\tO\tfor\tO\none\tO\tone\tO\ncounty/query/submission\tO\tcounty/query/submission\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nextremely\tO\textremely\tO\ntedious\tO\ttedious\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nmonthly\tO\tmonthly\tO\nfor\tO\tfor\tO\nabout\tO\tabout\tO\n20\tO\t20\tO\ncounties\tO\tcounties\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nfurther\tO\tfurther\tO\n10\tO\t10\tO\ndistricts\tO\tdistricts\tO\n.\tO\t.\tO\n\t\nDue\tO\tDue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlong\tO\tlong\tO\nload\tO\tload\tO\ntime\tO\ttime\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\nof\tO\tof\tO\neach\tO\teach\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\ntask\tO\ttask\tO\nthat\tO\tthat\tO\neasily\tO\teasily\tO\ntakes\tO\ttakes\tO\n2-3\tO\t2-3\tO\nhours\tO\thours\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nsuch\tO\tsuch\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhoping\tO\thoping\tO\nsomeone\tO\tsomeone\tO\nhere\tO\there\tO\nhas\tO\thas\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nautomate/ease\tO\tautomate/ease\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nor\tO\tor\tO\neven\tO\teven\tO\nsimply\tO\tsimply\tO\nadvice\tO\tadvice\tO\nas\tO\tas\tO\nto\tO\tto\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\ninformation\tO\tinformation\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nmyself\tO\tmyself\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\ndirectly\tO\tdirectly\tO\nquery\tO\tquery\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nspreadsheet B-User_Interface_Element spreadsheet O\n,\tO\t,\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nsolved\tO\tsolved\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nload\tO\tload\tO\ntimes\tO\ttimes\tO\nare\tO\tare\tO\nirrelevant\tO\tirrelevant\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nprocess\tO\tprocess\tO\nof\tO\tof\tO\nquerying\tO\tquerying\tO\nthe\tO\tthe\tO\nserver B-Application server O\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nautomated\tO\tautomated\tO\nas\tO\tas\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nrun\tO\trun\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nwithout\tO\twithout\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\napologise\tO\tapologise\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlong\tO\tlong\tO\nand\tO\tand\tO\nnon-specific\tO\tnon-specific\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nand\tO\tand\tO\nany\tO\tany\tO\nresponse\tO\tresponse\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20632394\tO\t20632394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20632394/\tO\thttps://stackoverflow.com/questions/20632394/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nactually\tO\tactually\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nnetwork\tO\tnetwork\tO\ncalls\tO\tcalls\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nexecuted\tO\texecuted\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nCSV B-File_Type CSV O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\ndid\tO\tdid\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nparameters\tO\tparameters\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nparameters\tO\tparameters\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nin\tO\tin\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2761 I-Code_Block A_2761 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nprefixed\tO\tprefixed\tO\nwith\tO\twith\tO\nsearchArgs B-Class searchArgs B-Code_Block\nare\tO\tare\tO\nimportant\tO\timportant\tO\n(\tO\t(\tO\nthey\tO\tthey\tO\ncontain\tO\tcontain\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nmonth/year/.\tO\tmonth/year/.\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nactionManager B-Class actionManager B-Code_Block\nprefixed\tO\tprefixed\tO\nparameters\tO\tparameters\tO\ncontain\tO\tcontain\tO\nsome\tO\tsome\tO\ncomplicated\tO\tcomplicated\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nthem\tO\tthem\tO\n(\tO\t(\tO\nelse\tO\telse\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\nactually\tO\tactually\tO\nused\tO\tused\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\njust\tO\tjust\tO\nleave\tO\tleave\tO\nthem\tO\tthem\tO\nempty\tO\tempty\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nexecuting\tO\texecuting\tO\nthis\tO\tthis\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nimediately\tO\timediately\tO\nreceive\tO\treceive\tO\nthe\tO\tthe\tO\nCSV B-File_Type CSV O\nfile\tO\tfile\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nprobably\tO\tprobably\tO\nparse\tO\tparse\tO\nusing\tO\tusing\tO\nany\tO\tany\tO\nlanguage\tO\tlanguage\tO\n(\tO\t(\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nCSV B-File_Type CSV O\nparsing\tO\tparsing\tO\nlibrary\tO\tlibrary\tO\n)\tO\t)\tO\nand\tO\tand\tO\ninsert\tO\tinsert\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\npossibility\tO\tpossibility\tO\nis\tO\tis\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nsource\tO\tsource\tO\n(\tO\t(\tO\nor\tO\tor\tO\na\tO\ta\tO\npublic\tO\tpublic\tO\nAPI B-Library API O\nyou\tO\tyou\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nreally\tO\treally\tO\ncrazy\tO\tcrazy\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nchange\tO\tchange\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\nusing\tO\tusing\tO\nPHP B-Language PHP O\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nin\tO\tin\tO\nPHP B-Language PHP O\nretrieving\tO\tretrieving\tO\nthe\tO\tthe\tO\nCSV B-File_Type CSV O\n(\tO\t(\tO\nusing\tO\tusing\tO\ncURL B-Library cURL O\n)\tO\t)\tO\nand\tO\tand\tO\nparsing\tO\tparsing\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2762 I-Code_Block A_2762 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20632394\tO\t20632394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20632394/\tO\thttps://stackoverflow.com/questions/20632394/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndescribing\tO\tdescribing\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nsounds\tO\tsounds\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nDatabase\tO\tDatabase\tO\ntaking\tO\ttaking\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nany\tO\tany\tO\nindexes\tO\tindexes\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nbeing\tO\tbeing\tO\nqueried\tO\tqueried\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nquerying\tO\tquerying\tO\ndata\tO\tdata\tO\nacross\tO\tacross\tO\nmultiple\tO\tmultiple\tO\nlinked\tO\tlinked\tO\ntables B-User_Interface_Element tables O\n(\tO\t(\tO\nwhich\tO\twhich\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\n&\tO\t&\tO\nsounds\tO\tsounds\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\n)\tO\t)\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nindexes\tO\tindexes\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nqueries\tO\tqueries\tO\nwill\tO\twill\tO\nrun\tO\trun\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ndog\tO\tdog\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwebsite\tO\twebsite\tO\noffers\tO\toffers\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nintroduction\tO\tintroduction\tO\nto\tO\tto\tO\nindexes\tO\tindexes\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nworth\tO\tworth\tO\ntaking\tO\ttaking\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nthan\tO\tthan\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nprevalent\tO\tprevalent\tO\nto\tO\tto\tO\nsetup\tO\tsetup\tO\na\tO\ta\tO\ncron B-Application cron O\nto\tO\tto\tO\nautomate\tO\tautomate\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\nAnusha B-User_Name Anusha O\nhas\tO\thas\tO\ndescribed\tO\tdescribed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nrecommend\tO\trecommend\tO\nlooking\tO\tlooking\tO\ninto\tO\tinto\tO\nindexes\tO\tindexes\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\ncron B-Application cron O\njobs\tO\tjobs\tO\n,\tO\t,\tO\nas\tO\tas\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\njust\tO\tjust\tO\ncut\tO\tcut\tO\ndown\tO\tdown\tO\nthe\tO\tthe\tO\namount\tO\tamount\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\neach\tO\teach\tO\nmonth\tO\tmonth\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nfully\tO\tfully\tO\nautomate\tO\tautomate\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nrunning\tO\trunning\tO\nin\tO\tin\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nminutes\tO\tminutes\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nhours\tO\thours\tO\neach\tO\teach\tO\nmonth\tO\tmonth\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4126518\tO\t4126518\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4126518/\tO\thttps://stackoverflow.com/questions/4126518/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nEF B-Library EF O\nmodel\tO\tmodel\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nlogically\tO\tlogically\tO\nhave\tO\thave\tO\na\tO\ta\tO\n\"\tO\t\"\tO\ntemplate B-Class template O\n\"\tO\t\"\tO\ntype\tO\ttype\tO\nand\tO\tand\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\ntype\tO\ttype\tO\n\"\tO\t\"\tO\n\t\nBasically\tO\tBasically\tO\nmy\tO\tmy\tO\ntemplates B-Class templates O\nare\tO\tare\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nwork\tO\twork\tO\nflow\tO\tflow\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ninstances\tO\tinstances\tO\nare\tO\tare\tO\nthose\tO\tthose\tO\ntemplates B-Class templates O\napplied\tO\tapplied\tO\nto\tO\tto\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nassociation\tO\tassociation\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ntemplate B-Class template O\nhas\tO\thas\tO\nzero\tO\tzero\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\ninstances\tO\tinstances\tO\n,\tO\t,\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nbased\tO\tbased\tO\non\tO\ton\tO\na\tO\ta\tO\ntemplate B-Class template O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nthe\tO\tthe\tO\ntemplate B-Class template O\nmay\tO\tmay\tO\nbe\tO\tbe\tO\n\"\tO\t\"\tO\nsend\tO\tsend\tO\nletter\tO\tletter\tO\n\"\tO\t\"\tO\nwhich\tO\twhich\tO\ngets\tO\tgets\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\na\tO\ta\tO\ncustomer\tO\tcustomer\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nletter\tO\tletter\tO\nsent\tO\tsent\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nincludes\tO\tincludes\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nsent\tO\tsent\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\npdf B-File_Type pdf O\nof\tO\tof\tO\nthe\tO\tthe\tO\nletter\tO\tletter\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntemplates B-Class templates O\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nsubclasses/types\tO\tsubclasses/types\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nmatch\tO\tmatch\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nwhich\tO\twhich\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\na\tO\ta\tO\ncorresponding\tO\tcorresponding\tO\nsubclass\tO\tsubclass\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\n)\tO\t)\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\nis\tO\tis\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ninherited\tO\tinherited\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nis\tO\tis\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nTemplateType2 B-Class TemplateType2 O\n(\tO\t(\tO\ninherits\tO\tinherits\tO\nfrom\tO\tfrom\tO\ntemplate B-Class template O\n)\tO\t)\tO\nand\tO\tand\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nto\tO\tto\tO\nloan1 B-Variable loan1 O\n.\tO\t.\tO\n.\tO\t.\tO\nloan1.TemplateInstances.add(foo) B-Function loan1.TemplateInstances.add(foo) O\n…\tO\t…\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nfoo B-Variable foo O\nis\tO\tis\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nInstanceType2 B-Class InstanceType2 O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\nnow\tO\tnow\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nhack\tO\thack\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nstoring\tO\tstoring\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\nentity\tO\tentity\tO\nname\tO\tname\tO\nas\tO\tas\tO\na\tO\ta\tO\nscalar\tO\tscalar\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntemplate B-Class template O\nentity\tO\tentity\tO\n,\tO\t,\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nreflection\tO\treflection\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbasically\tO\tbasically\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nmapping\tO\tmapping\tO\n,\tO\t,\tO\nexposing\tO\texposing\tO\nthe\tO\tthe\tO\npossibility\tO\tpossibility\tO\nof\tO\tof\tO\nall\tO\tall\tO\nsorts\tO\tsorts\tO\nof\tO\tof\tO\nerrors\tO\terrors\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\nname\tO\tname\tO\n,\tO\t,\tO\nor\tO\tor\tO\nworse\tO\tworse\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nenter\tO\tenter\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nentity\tO\tentity\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nor\tO\tor\tO\nthoughts\tO\tthoughts\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ntackle\tO\ttackle\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4126518\tO\t4126518\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4126518/\tO\thttps://stackoverflow.com/questions/4126518/\tO\n\t\n\t\nI\tO\tI\tO\nended\tO\tended\tO\nup\tO\tup\tO\nsolving\tO\tsolving\tO\nthis\tO\tthis\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\na\tO\ta\tO\nhack\tO\thack\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nnaming\tO\tnaming\tO\nconventions\tO\tconventions\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nhandler\tO\thandler\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontext\tO\tcontext\tO\nsavingchanges B-Function savingchanges O\nmethod\tO\tmethod\tO\n\t\nand\tO\tand\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\nreflection\tO\treflection\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nsolution\tO\tsolution\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nmain\tO\tmain\tO\npart\tO\tpart\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_438 I-Code_Block A_438 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2892716\tO\t2892716\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2892716/\tO\thttps://stackoverflow.com/questions/2892716/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\na\tO\ta\tO\nstring B-Data_Type string O\nwith\tO\twith\tO\nparentheses\tO\tparentheses\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n((Question)(Left_Node)(right_node)) B-Code_Block ((Question)(Left_Node)(right_node)) B-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nquestion\tO\tquestion\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n\"\tO\t\"\tO\nif\tO\tif\tO\nsegment\tO\tsegment\tO\nsize\tO\tsize\tO\n<\tO\t<\tO\n1.5 B-Value 1.5 O\n,\tO\t,\tO\nthen\tO\tthen\tO\nchoose\tO\tchoose\tO\nleft\tO\tleft\tO\nnode\tO\tnode\tO\n,\tO\t,\tO\nelse\tO\telse\tO\nright\tO\tright\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nquestion\tO\tquestion\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ndictionary B-Data_Structure dictionary O\nwith\tO\twith\tO\na\tO\ta\tO\nkey B-Variable key O\nand\tO\tand\tO\na\tO\ta\tO\nvalue B-Variable value O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nleft\tO\tleft\tO\nand\tO\tand\tO\nright\tO\tright\tO\nnode B-Data_Structure node O\nrepresent\tO\trepresent\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\nleft\tO\tleft\tO\nor\tO\tor\tO\nright\tO\tright\tO\nhalf\tO\thalf\tO\ntree B-Data_Structure tree O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ntraversed\tO\ttraversed\tO\nrecursively\tO\trecursively\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nleaf\tO\tleaf\tO\nnode B-Data_Structure node O\nis\tO\tis\tO\nreached\tO\treached\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nmanner\tO\tmanner\tO\nwe\tO\twe\tO\nwill\tO\twill\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nbinary\tO\tbinary\tO\ndecision\tO\tdecision\tO\ntree B-Data_Structure tree O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2892716\tO\t2892716\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2892716/\tO\thttps://stackoverflow.com/questions/2892716/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndecide\tO\tdecide\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nformat\tO\tformat\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nraw\tO\traw\tO\npython B-Language python O\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nstore\tO\tstore\tO\nyour\tO\tyour\tO\ntree B-Data_Structure tree O\nin\tO\tin\tO\na\tO\ta\tO\npython B-Language python O\ndictionary B-Data_Structure dictionary O\nof\tO\tof\tO\nnodes B-Data_Structure nodes O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_287 I-Code_Block A_287 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nparse\tO\tparse\tO\nthis\tO\tthis\tO\ntree B-Data_Structure tree O\nsimply\tO\tsimply\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npython B-Language python O\nparser\tO\tparser\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_288 I-Code_Block A_288 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nformat\tO\tformat\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nspecified\tO\tspecified\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nwe\tO\twe\tO\ncannot\tO\tcannot\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nshare\tO\tshare\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2892716\tO\t2892716\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2892716/\tO\thttps://stackoverflow.com/questions/2892716/\tO\n\t\n\t\nThis\tO\tThis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nsyntax\tO\tsyntax\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nthe\tO\tthe\tO\ntarget\tO\ttarget\tO\nfor\tO\tfor\tO\npyparsing B-Library pyparsing O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbasic\tO\tbasic\tO\nformat\tO\tformat\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\nenough\tO\tenough\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\npyparsing B-Library pyparsing O\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_558 I-Code_Block A_558 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\narithmetic\tO\tarithmetic\tO\nexpressions\tO\texpressions\tO\n,\tO\t,\tO\nand\tO\tand\tO\nboolean\tO\tboolean\tO\noperations\tO\toperations\tO\nand\tO\tand\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\n'\tO\t'\tO\nand B-Code_Block and O\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\nor B-Code_Block or O\n'\tO\t'\tO\noperators\tO\toperators\tO\n,\tO\t,\tO\nthings\tO\tthings\tO\nget\tO\tget\tO\ncomplicated\tO\tcomplicated\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nrecursive\tO\trecursive\tO\ngrammar\tO\tgrammar\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nan\tO\tan\tO\naction\tO\taction\tO\ncan\tO\tcan\tO\nitself\tO\titself\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nnested\tO\tnested\tO\ndecision\tO\tdecision\tO\n.\tO\t.\tO\n\t\nPyparsing B-Library Pyparsing O\nhas\tO\thas\tO\nbuilt-in\tO\tbuilt-in\tO\nsupport\tO\tsupport\tO\nthat\tO\tthat\tO\nsimplifies\tO\tsimplifies\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\narithmetic\tO\tarithmetic\tO\nand\tO\tand\tO\nboolean B-Data_Type boolean O\nexpressions\tO\texpressions\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nprecedence\tO\tprecedence\tO\nof\tO\tof\tO\noperations\tO\toperations\tO\nand\tO\tand\tO\ngruping\tO\tgruping\tO\nin\tO\tin\tO\nparentheses\tO\tparentheses\tO\n,\tO\t,\tO\nplus\tO\tplus\tO\nrecursive\tO\trecursive\tO\nexpressions\tO\texpressions\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npyparsing B-Library pyparsing O\ngrammar\tO\tgrammar\tO\nin\tO\tin\tO\nvarious\tO\tvarious\tO\npieces\tO\tpieces\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nhere\tO\there\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbasic\tO\tbasic\tO\nparsing\tO\tparsing\tO\nelements\tO\telements\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_559 I-Code_Block A_559 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nparse\tO\tparse\tO\naction\tO\taction\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nexpression\tO\texpression\tO\nwill\tO\twill\tO\nautomatically\tO\tautomatically\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nparsed\tO\tparsed\tO\nnumber\tO\tnumber\tO\nto\tO\tto\tO\na\tO\ta\tO\nfloat B-Data_Type float O\nvalue\tO\tvalue\tO\nat\tO\tat\tO\nparse\tO\tparse\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nWord B-Class Word O\nclass\tO\tclass\tO\ntakes\tO\ttakes\tO\ntwo\tO\ttwo\tO\nstrings B-Data_Type strings O\n:\tO\t:\tO\na\tO\ta\tO\nstring B-Data_Type string O\ncontaining\tO\tcontaining\tO\nall\tO\tall\tO\nvalid\tO\tvalid\tO\nleading\tO\tleading\tO\ncharacters\tO\tcharacters\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nstring B-Data_Type string O\nof\tO\tof\tO\nall\tO\tall\tO\nvalid\tO\tvalid\tO\nbody\tO\tbody\tO\ncharacters\tO\tcharacters\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nvarname B-Variable varname O\ndefinition\tO\tdefinition\tO\nsupports\tO\tsupports\tO\nvariable\tO\tvariable\tO\nnames\tO\tnames\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nPython B-Language Python O\nidentifiers\tO\tidentifiers\tO\n.\tO\t.\tO\n\t\nPyparsing B-Library Pyparsing O\nhas\tO\thas\tO\nthe\tO\tthe\tO\noperatorPrecedence B-Function operatorPrecedence B-Code_Block\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\nan\tO\tan\tO\nexpression\tO\texpression\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbasic\tO\tbasic\tO\noperand\tO\toperand\tO\ndefinition\tO\tdefinition\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ntuples\tO\ttuples\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\neach\tO\teach\tO\nlevel\tO\tlevel\tO\nof\tO\tof\tO\noperators\tO\toperators\tO\n:\tO\t:\tO\nan\tO\tan\tO\nexpression\tO\texpression\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\noperators\tO\toperators\tO\n,\tO\t,\tO\nan\tO\tan\tO\ninteger B-Data_Type integer O\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\noperator\tO\toperator\tO\nis\tO\tis\tO\nunary\tO\tunary\tO\n,\tO\t,\tO\nbinary\tO\tbinary\tO\n,\tO\t,\tO\nor\tO\tor\tO\nternary\tO\tternary\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwhether\tO\twhether\tO\nleft\tO\tleft\tO\n-\tO\t-\tO\nor\tO\tor\tO\nright-associative\tO\tright-associative\tO\n.\tO\t.\tO\n\t\noperatorPrecedence\tO\toperatorPrecedence\tO\ntakes\tO\ttakes\tO\ncare\tO\tcare\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrecursive\tO\trecursive\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\narithmetic\tO\tarithmetic\tO\nexpressions\tO\texpressions\tO\nnested\tO\tnested\tO\nin\tO\tin\tO\nparentheses\tO\tparentheses\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nexpression\tO\texpression\tO\ndefines\tO\tdefines\tO\nbasic\tO\tbasic\tO\n4-function\tO\t4-function\tO\nmath\tO\tmath\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_560 I-Code_Block A_560 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\na\tO\ta\tO\nboolean\tO\tboolean\tO\ncondition\tO\tcondition\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nwe\tO\twe\tO\n'll\tO\t'll\tO\neventually\tO\teventually\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nthe\tO\tthe\tO\ndecision\tO\tdecision\tO\nquestion\tO\tquestion\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_561 I-Code_Block A_561 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYour\tO\tYour\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\nactions\tO\tactions\tO\nwas\tO\twas\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nsketchy\tO\tsketchy\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nup\tO\tup\tO\nsome\tO\tsome\tO\npossible\tO\tpossible\tO\nstatements\tO\tstatements\tO\n:\tO\t:\tO\nan\tO\tan\tO\nassignment\tO\tassignment\tO\nstatement\tO\tstatement\tO\n,\tO\t,\tO\na\tO\ta\tO\nprint\tO\tprint\tB-Code_Block\nstatement\tO\tstatement\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsince\tO\tsince\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nspeech\tO\tspeech\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\na\tO\ta\tO\nsay\tO\tsay\tB-Code_Block\nstatement\tO\tstatement\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nsimliar\tO\tsimliar\tO\nto\tO\tto\tO\nprint\tO\tprint\tB-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_562 I-Code_Block A_562 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\ndefinitions\tO\tdefinitions\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nnotice\tO\tnotice\tO\nthat\tO\tthat\tO\nsome\tO\tsome\tO\nexpressions\tO\texpressions\tO\nare\tO\tare\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\na\tO\ta\tO\nquoted\tO\tquoted\tO\nstring B-Data_Type string O\n,\tO\t,\tO\nas\tO\tas\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\nis\tO\tis\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nstring B-Data_Type string O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\n\"\tO\t\"\tO\ncall B-Function call O\n\"\tO\t\"\tO\nactually\tO\tactually\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmatched\tO\tmatched\tO\ntokens\tO\ttokens\tO\nare\tO\tare\tO\ntagged\tO\ttagged\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nresults\tO\tresults\tO\nnames\tO\tnames\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\nhelpful\tO\thelpful\tO\nat\tO\tat\tO\npost-parsing\tO\tpost-parsing\tO\ntime\tO\ttime\tO\nat\tO\tat\tO\npicking\tO\tpicking\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nindividual\tO\tindividual\tO\nmatching\tO\tmatching\tO\nelements\tO\telements\tO\n(\tO\t(\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nnamed\tO\tnamed\tO\ngroups\tO\tgroups\tO\nin\tO\tin\tO\nregular\tO\tregular\tO\nexpressions\tO\texpressions\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthese\tO\tthese\tO\npieces\tO\tpieces\tO\ntogether\tO\ttogether\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\ndecision\tO\tdecision\tO\nexpression\tO\texpression\tO\n,\tO\t,\tO\nhere\tO\there\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nand\tO\tand\tO\naction\tO\taction\tO\nexpressions\tO\texpressions\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_563 I-Code_Block A_563 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\naction\tO\taction\tO\ndefinition\tO\tdefinition\tO\ncan\tO\tcan\tO\ninclude\tO\tinclude\tO\na\tO\ta\tO\ndecision\tO\tdecision\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\naction\tO\taction\tO\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\ndecision\tO\tdecision\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbreak\tO\tbreak\tO\nthis\tO\tthis\tO\nchicken-and-egg\tO\tchicken-and-egg\tO\ndependency\tO\tdependency\tO\n,\tO\t,\tO\nwe\tO\twe\tO\npreface\tO\tpreface\tO\nthis\tO\tthis\tO\nsection\tO\tsection\tO\nwith\tO\twith\tO\ndefining\tO\tdefining\tO\ndecision\tO\tdecision\tB-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nwith\tO\twith\tO\na\tO\ta\tO\nplaceholder\tO\tplaceholder\tO\nexpression\tO\texpression\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\npyparsing B-Library pyparsing O\nForward B-Class Forward B-Code_Block\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_564 I-Code_Block A_564 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nafter\tO\tafter\tO\nquestion B-Variable question B-Code_Block\nand\tO\tand\tO\naction B-Variable action B-Code_Block\nare\tO\tare\tO\ndefined\tO\tdefined\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\n<< B-Code_Block << O\n'\tO\t'\tO\noperator\tO\toperator\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\ninsert\tO\tinsert\tO\n\"\tO\t\"\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nexpression\tO\texpression\tO\ndefinition\tO\tdefinition\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\ndecision B-Variable decision B-Code_Block\nvariable\tO\tvariable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_565 I-Code_Block A_565 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAgain\tO\tAgain\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntook\tO\ttook\tO\nliberties\tO\tliberties\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\ndefined\tO\tdefined\tO\nformat\tO\tformat\tO\n,\tO\t,\tO\nthinking\tO\tthinking\tO\nthat\tO\tthat\tO\nan\tO\tan\tO\noptional B-Code_Block optional O\nelse-clause I-Code_Block else-clause O\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\noptional\tO\toptional\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nOptional B-Code_Block Optional B-Code_Block\nwrapper\tO\twrapper\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nGroup(action)(\"elseAction\") B-Code_Block Group(action)(\"elseAction\") B-Code_Block\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\ndefines\tO\tdefines\tO\nthe\tO\tthe\tO\ngrammar\tO\tgrammar\tO\n,\tO\t,\tO\nnow\tO\tnow\tO\nhere\tO\there\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\ntest\tO\ttest\tO\ncases\tO\tcases\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\ndump() B-Function dump() O\non\tO\ton\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nreturned\tO\treturned\tO\nby\tO\tby\tO\nparseString B-Function parseString O\nis\tO\tis\tO\na\tO\ta\tO\nnice\tO\tnice\tO\nway\tO\tway\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\ntokens\tO\ttokens\tO\n,\tO\t,\tO\nand\tO\tand\tO\nany\tO\tany\tO\nnames\tO\tnames\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_566 I-Code_Block A_566 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_567 I-Code_Block A_567 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nparsing\tO\tparsing\tO\nprogram\tO\tprogram\tO\n-\tO\t-\tO\nhttp://pastebin.com/DnaNrx7j\tO\thttp://pastebin.com/DnaNrx7j\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nstage\tO\tstage\tO\n,\tO\t,\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnext\tO\tnext\tO\nstep\tO\tstep\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nevaluating\tO\tevaluating\tO\nthe\tO\tthe\tO\nexpression\tO\texpression\tO\nby\tO\tby\tO\nprocessing\tO\tprocessing\tO\nthe\tO\tthe\tO\nreturned\tO\treturned\tO\ntokens\tO\ttokens\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npyparsing B-Library pyparsing O\nwiki\tO\twiki\tO\nexample\tO\texample\tO\nSimpleBool.py B-File_Name SimpleBool.py O\n(\tO\t(\tO\nhttp://pyparsing.wikispaces.com/file/view/simpleBool.py\tO\thttp://pyparsing.wikispaces.com/file/view/simpleBool.py\tO\n)\tO\t)\tO\nincludes\tO\tincludes\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nattaching\tO\tattaching\tO\nparse\tO\tparse\tO\nactions\tO\tactions\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nparsed\tO\tparsed\tO\ntokens\tO\ttokens\tO\ninto\tO\tinto\tO\ncallable\tO\tcallable\tO\nclass\tO\tclass\tO\ninstances\tO\tinstances\tO\nthat\tO\tthat\tO\nsimplify\tO\tsimplify\tO\nevaluating\tO\tevaluating\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25289254\tO\t25289254\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25289254/\tO\thttps://stackoverflow.com/questions/25289254/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nnoticed\tO\tnoticed\tO\npeople\tO\tpeople\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nlocalize\tO\tlocalize\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2872 I-Code_Block Q_2872 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCould\tO\tCould\tO\nanyone\tO\tanyone\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nCurrentUICulture B-Variable CurrentUICulture B-Code_Block\nand\tO\tand\tO\nCurrentCulture B-Variable CurrentCulture B-Code_Block\nare\tO\tare\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nboth\tO\tboth\tO\n\t\nWhat\tO\tWhat\tO\nwill\tO\twill\tO\nhappen\tO\thappen\tO\nif\tO\tif\tO\nI\tO\tI\tO\nassign\tO\tassign\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nCultureInfo(\"fr-FR\") B-Value CultureInfo(\"fr-FR\") B-Code_Block\n;\tO\t;\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nCurrentUICulture B-Variable CurrentUICulture O\nor\tO\tor\tO\nCurrentCulture B-Variable CurrentCulture O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nreally\tO\treally\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nin\tO\tin\tO\ndetail\tO\tdetail\tO\nwhat\tO\twhat\tO\nCurrentUICulture B-Variable CurrentUICulture B-Code_Block\nand\tO\tand\tO\nCurrentCulture B-Variable CurrentCulture B-Code_Block\ndoes\tO\tdoes\tO\n?\tO\t?\tO\n\t\nSuppose\tO\tSuppose\tO\nclient\tO\tclient\tO\npc B-Device pc O\nlanguage\tO\tlanguage\tO\nsetting\tO\tsetting\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nGerman B-Value German O\nor\tO\tor\tO\nFrench B-Value French O\netc\tO\tetc\tO\n.\tO\t.\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndevelop\tO\tdevelop\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nin\tO\tin\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nwhatever\tO\twhatever\tO\nlanguage\tO\tlanguage\tO\nsetting\tO\tsetting\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\napps\tO\tapps\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\npc B-Device pc O\nwith\tO\twith\tO\ntheir\tO\ttheir\tO\nlanguage\tO\tlanguage\tO\nsetting\tO\tsetting\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmean\tO\tmean\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncontrols B-User_Interface_Element controls O\nwill\tO\twill\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nin\tO\tin\tO\nGerman B-Value German O\nor\tO\tor\tO\nFrench B-Value French O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhard\tO\thard\tO\ncode\tO\tcode\tO\nthe\tO\tthe\tO\nculture\tO\tculture\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nCultureInfo(\"fr-FR\") B-Value CultureInfo(\"fr-FR\") B-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nrather\tO\trather\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nlanguage\tO\tlanguage\tO\nsetting\tO\tsetting\tO\ndictate\tO\tdictate\tO\nthe\tO\tthe\tO\nlanguage\tO\tlanguage\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncontrols B-User_Interface_Element controls O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25289254\tO\t25289254\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25289254/\tO\thttps://stackoverflow.com/questions/25289254/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\npretty\tO\tpretty\tO\nsimple\tO\tsimple\tO\n.\tO\t.\tO\n\t\nCurrentCulture B-Variable CurrentCulture B-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nculture\tO\tculture\tO\nassigned\tO\tassigned\tO\nfor\tO\tfor\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\nvarious\tO\tvarious\tO\nculture-specific\tO\tculture-specific\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nToString() B-Function ToString() B-Code_Block\none\tO\tone\tO\n.\tO\t.\tO\n\t\nCurrentUICulture B-Variable CurrentUICulture B-Code_Block\nis\tO\tis\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nBy\tO\tBy\tO\nsetting\tO\tsetting\tO\nboth\tO\tboth\tO\nyou\tO\tyou\tO\nensure\tO\tensure\tO\nwhat\tO\twhat\tO\nall\tO\tall\tO\nToString() B-Function ToString() B-Code_Block\nworks\tO\tworks\tO\ncorrectly\tO\tcorrectly\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nform\tO\tform\tO\nresources\tO\tresources\tO\nare\tO\tare\tO\nloaded\tO\tloaded\tO\nfrom\tO\tfrom\tO\nappropriate\tO\tappropriate\tO\nsatellite\tO\tsatellite\tO\n.\tO\t.\tO\n\t\nRegarding\tO\tRegarding\tO\nusage\tO\tusage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nthink\tO\tthink\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nuser\tO\tuser\tO\nwith\tO\twith\tO\noption\tO\toption\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnative\tO\tnative\tO\nGerman B-Value German O\nwindows\tO\twindows\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nset\tO\tset\tO\nEnglish B-Value English O\nculture\tO\tculture\tO\nin\tO\tin\tO\nit\tO\tit\tO\n(\tO\t(\tO\ndate\tO\tdate\tO\nformat\tO\tformat\tO\nand\tO\tand\tO\ndefault\tO\tdefault\tO\nculture\tO\tculture\tO\nfor\tO\tfor\tO\nconsole B-Application console O\napplications I-Application applications O\n)\tO\t)\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\nspeak\tO\tspeak\tO\nRussian\tO\tRussian\tO\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nlanguage\tO\tlanguage\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nchose\tO\tchose\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nyour\tO\tyour\tO\nsoftware\tO\tsoftware\tO\n?\tO\t?\tO\n\t\n=P\tO\t=P\tO\n\t\nBy\tO\tBy\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\neither\tO\teither\tO\ntake\tO\ttake\tO\nlanguage\tO\tlanguage\tO\nchosen\tO\tchosen\tO\nin\tO\tin\tO\ninstaller B-Application installer O\n(\tO\t(\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ninstaller B-Application installer O\nin\tO\tin\tO\nmultiple\tO\tmultiple\tO\nlanguages\tO\tlanguages\tO\nand\tO\tand\tO\noptions\tO\toptions\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nthere\tO\tthere\tO\n)\tO\t)\tO\nor\tO\tor\tO\ncurrent\tO\tcurrent\tO\nWindows B-Operating_System Windows O\nuser\tO\tuser\tO\nlanguage\tO\tlanguage\tO\npreferences\tO\tpreferences\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\npossible\tO\tpossible\tO\nscenario\tO\tscenario\tO\n:\tO\t:\tO\n\t\nPreconditions\tO\tPreconditions\tO\n:\tO\t:\tO\napplication\tO\tapplication\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nlocalized\tO\tlocalized\tO\n,\tO\t,\tO\nsatellites\tO\tsatellites\tO\nare\tO\tare\tO\nthere\tO\tthere\tO\n(\tO\t(\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nread\tO\tread\tO\nthis\tO\tthis\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nsatellites\tO\tsatellites\tO\nmyself\tO\tmyself\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\napplication\tO\tapplication\tO\nstarts\tO\tstarts\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\navailable\tO\tavailable\tO\nlanguages\tO\tlanguages\tO\n(\tO\t(\tO\neither\tO\teither\tO\nstatically\tO\tstatically\tO\nor\tO\tor\tO\nby\tO\tby\tO\nenumerating\tO\tenumerating\tO\nsatellites\tO\tsatellites\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3484 I-Code_Block A_3484 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nif\tO\tif\tO\napplication\tO\tapplication\tO\nstart\tO\tstart\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\nto\tO\tto\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nstring B-Data_Type string B-Code_Block\nlanguage\tO\tlanguage\tI-Code_Block\nsetting\tO\tsetting\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nnull B-Value null B-Code_Block\nor\tO\tor\tO\n\"\" B-Value \"\" B-Code_Block\n,\tO\t,\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nflag\tO\tflag\tO\nwhat\tO\twhat\tO\nno\tO\tno\tO\nlanguage\tO\tlanguage\tO\nis\tO\tis\tO\nselected\tO\tselected\tO\nyet\tO\tyet\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndetect\tO\tdetect\tO\ndefault\tO\tdefault\tO\nos\tO\tos\tO\nlanguage\tO\tlanguage\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3485 I-Code_Block A_3485 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nlist B-Data_Structure list O\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nset\tO\tset\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3486 I-Code_Block A_3486 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nlanguage\tO\tlanguage\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\ndefault\tO\tdefault\tO\n\"\tO\t\"\tO\nlanguage\tO\tlanguage\tO\n(\tO\t(\tO\nto\tO\tto\tO\nexample\tO\texample\tO\n,\tO\t,\tO\n\" B-Value \" O\nen I-Value en O\n\" I-Value \" O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nits\tO\tits\tO\ndone\tO\tdone\tO\nat\tO\tat\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nany\tO\tany\tO\nfurther\tO\tfurther\tO\nconstructed\tO\tconstructed\tO\nand\tO\tand\tO\nused\tO\tused\tO\nwindow\tO\twindow\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nproper\tO\tproper\tO\nresources\tO\tresources\tO\n.\tO\t.\tO\n\t\nUser\tO\tUser\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nGive\tO\tGive\tO\nhim\tO\thim\tO\npossibility\tO\tpossibility\tO\nto\tO\tto\tO\nchose\tO\tchose\tO\none\tO\tone\tO\nof\tO\tof\tO\navailable\tO\tavailable\tO\nLanguages\tO\tLanguages\tB-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nwinforms\tO\twinforms\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nreload\tO\treload\tO\nforms\tO\tforms\tO\nafter\tO\tafter\tO\nchange\tO\tchange\tO\nculture\tO\tculture\tO\n.\tO\t.\tO\n\t\nEasiest\tO\tEasiest\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\ntell\tO\ttell\tO\nuser\tO\tuser\tO\nwhat\tO\twhat\tO\n\"\tO\t\"\tO\nsoftware\tO\tsoftware\tO\nrestart\tO\trestart\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17357014\tO\t17357014\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17357014/\tO\thttps://stackoverflow.com/questions/17357014/\tO\n\t\n\t\nNewbie\tO\tNewbie\tO\nRails B-Library Rails O\ncoder\tO\tcoder\tO\nhere\tO\there\tO\n...\tO\t...\tO\n.\tO\t.\tO\nspent\tO\tspent\tO\nway\tO\tway\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\ntime\tO\ttime\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nthis\tO\tthis\tO\none\tO\tone\tO\nout\tO\tout\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nscript\tO\tscript\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ndev\tO\tdev\tO\nmachine\tO\tmachine\tO\nbut\tO\tbut\tO\nfails\tO\tfails\tO\nin\tO\tin\tO\nproduction\tO\tproduction\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthis\tO\tthis\tO\nscript\tO\tscript\tO\nfails\tO\tfails\tO\n-\tO\t-\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncheck\tO\tcheck\tO\n/tmp B-File_Name /tmp O\nfolder\tO\tfolder\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nmini_magick20130627-17452-1k48fim.png B-File_Name mini_magick20130627-17452-1k48fim.png O\n\"\tO\t\"\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nImageMagick B-Application ImageMagick O\nconvert\tO\tconvert\tO\nand\tO\tand\tO\nresize\tO\tresize\tO\nalso\tO\talso\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncommand B-Application command O\nline I-Application line O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1760 I-Code_Block Q_1760 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nErrno::ENOENT B-Error_Name Errno::ENOENT O\nin\tO\tin\tO\nSitesController\tO\tSitesController\tO\n#create\tO\t#create\tO\n\t\nNo\tO\tNo\tO\nsuch\tO\tsuch\tO\nfile\tO\tfile\tO\nor\tO\tor\tO\ndirectory\tO\tdirectory\tO\n-\tO\t-\tO\nidentify\tO\tidentify\tO\n-quiet\tO\t-quiet\tO\n-ping\tO\t-ping\tO\n/tmp/mini_magick20130627 B-File_Name /tmp/mini_magick20130627 O\n-17452-1k48fim.png I-File_Name -17452-1k48fim.png O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17357014\tO\t17357014\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17357014/\tO\thttps://stackoverflow.com/questions/17357014/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nanother\tO\tanother\tO\nanswer\tO\tanswer\tO\nwhich\tO\twhich\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\ndevelopment.rb B-File_Name development.rb O\n(\tO\t(\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nwith\tO\twith\tO\npassenger B-Application passenger O\n)\tO\t)\tO\nand\tO\tand\tO\nproduction.rb B-File_Name production.rb O\n\t\nadd\tO\tadd\tO\nto\tO\tto\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2803 I-Code_Block A_2803 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nGot\tO\tGot\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nreference\tO\treference\tO\n:\tO\t:\tO\nPassenger B-Application Passenger O\n+\tO\t+\tO\nCarrierwave B-Application Carrierwave O\n+\tO\t+\tO\nRails B-Library Rails O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17357014\tO\t17357014\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17357014/\tO\thttps://stackoverflow.com/questions/17357014/\tO\n\t\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\nanswer\tO\tanswer\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nquestion\tO\tquestion\tO\nsince\tO\tsince\tO\nsomeone\tO\tsomeone\tO\nelse\tO\telse\tO\nmay\tO\tmay\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nissue\tO\tissue\tO\nhas\tO\thas\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nPhusion B-Application Phusion O\nPassenger I-Application Passenger O\n(\tO\t(\tO\nunder\tO\tunder\tO\nApache B-Application Apache O\n)\tO\t)\tO\nhandles\tO\thandles\tO\nenvironment\tO\tenvironment\tO\nvars\tO\tvars\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nApache B-Application Apache O\n+\tO\t+\tO\nPhusion B-Application Phusion O\nPassenger I-Application Passenger O\nserver I-Application server O\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nresolved\tO\tresolved\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nby\tO\tby\tO\nplacing\tO\tplacing\tO\nthe\tO\tthe\tO\nImageMagick B-Application ImageMagick O\npath\tO\tpath\tO\nvars\tO\tvars\tO\ninto\tO\tinto\tO\nmy\tO\tmy\tO\napache B-Application apache O\nhttpd-vhosts.conf B-File_Name httpd-vhosts.conf O\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2282 I-Code_Block A_2282 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMore\tO\tMore\tO\ninfo\tO\tinfo\tO\navailable\tO\tavailable\tO\nhere\tO\there\tO\n-\tO\t-\tO\n\t\nFrom\tO\tFrom\tO\n:\tO\t:\tO\nhttp://blog.phusion.nl/2008/12/16/passing-environment-variables-to-ruby-from-phusion-passenger/\tO\thttp://blog.phusion.nl/2008/12/16/passing-environment-variables-to-ruby-from-phusion-passenger/\tO\n\t\nBut\tO\tBut\tO\nwait\tO\twait\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nalready\tO\talready\tO\nset\tO\tset\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\n/etc/bashrc B-File_Name /etc/bashrc O\nor\tO\tor\tO\n/etc/profile B-File_Name /etc/profile O\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthey\tO\tthey\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nset\tO\tset\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\n/etc/bashrc B-File_Name /etc/bashrc O\nor\tO\tor\tO\n/etc/profile B-File_Name /etc/profile O\n, I-File_Name , O\nthen\tO\tthen\tO\nthese\tO\tthese\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nare\tO\tare\tO\nmade\tO\tmade\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nshell B-Application shell O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\non\tO\ton\tO\nmost\tO\tmost\tO\noperating\tO\toperating\tO\nsystems\tO\tsystems\tO\n,\tO\t,\tO\nApache B-Application Apache O\nis\tO\tis\tO\nnot\tO\tnot\tO\nstarted\tO\tstarted\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nshell B-Application shell O\nand\tO\tand\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nload\tO\tload\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nbashrc/profile B-File_Name bashrc/profile O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nsetting\tO\tsetting\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nin\tO\tin\tO\n/etc/bashrc B-File_Name /etc/bashrc O\nand\tO\tand\tO\n/etc/profile B-File_Name /etc/profile O\nusually\tO\tusually\tO\nhas\tO\thas\tO\nno\tO\tno\tO\neffect\tO\teffect\tO\non\tO\ton\tO\nApache B-Application Apache O\n(\tO\t(\tO\nand\tO\tand\tO\nby\tO\tby\tO\ninduction\tO\tinduction\tO\n,\tO\t,\tO\non\tO\ton\tO\nPassenger B-Application Passenger O\nand\tO\tand\tO\nRails B-Library Rails O\nprocesses\tO\tprocesses\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40373238\tO\t40373238\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40373238/\tO\thttps://stackoverflow.com/questions/40373238/\tO\n\t\n\t\nin\tO\tin\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nin\tO\tin\tO\nchrome B-Application chrome O\nit\tO\tit\tO\nis\tO\tis\tO\nshowing\tO\tshowing\tO\nwrong\tO\twrong\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nexplorer B-Application explorer O\nit\tO\tit\tO\nis\tO\tis\tO\nshowing\tO\tshowing\tO\ntrue\tO\ttrue\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ni\tO\ti\tO\nwrite\tO\twrite\tO\nthis\tO\tthis\tO\njs B-Language js O\ncode\tO\tcode\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\ndoesnt\tO\tdoesnt\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\njs B-Language js O\n;\tO\t;\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5100 I-Code_Block Q_5100 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n;\tO\t;\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5101 I-Code_Block Q_5101 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40373238\tO\t40373238\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40373238/\tO\thttps://stackoverflow.com/questions/40373238/\tO\n\t\n\t\nPass\tO\tPass\tO\nParameter\tO\tParameter\tO\nValue\tO\tValue\tO\nin\tO\tin\tO\nnot\tO\tnot\tO\nproper\tO\tproper\tO\nDate\tO\tDate\tO\nFormat\tO\tFormat\tO\n\t\nUse\tO\tUse\tO\nprocessDate.getFullYear()==> B-Code_Block processDate.getFullYear()==> B-Code_Block\nprocessDate.getFullYear().toDateString() I-Code_Block processDate.getFullYear().toDateString() I-Code_Block\ndate\tO\tdate\tO\ndata\tO\tdata\tO\nconvert\tO\tconvert\tO\ninto\tO\tinto\tO\nString B-Data_Type String O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40373238\tO\t40373238\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40373238/\tO\thttps://stackoverflow.com/questions/40373238/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5838 I-Code_Block A_5838 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nplease\tO\tplease\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36664025\tO\t36664025\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36664025/\tO\thttps://stackoverflow.com/questions/36664025/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\nif\tO\tif\tO\nstatement\tO\tstatement\tO\nin\tO\tin\tO\nJS B-Language JS O\nthat\tO\tthat\tO\nis\tO\tis\tO\ndependent\tO\tdependent\tO\non\tO\ton\tO\ncharacter\tO\tcharacter\tO\ncount\tO\tcount\tO\nin\tO\tin\tO\nan\tO\tan\tO\nhtml B-Language html O\ninput\tO\tinput\tO\nfield\tO\tfield\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\ngreater\tO\tgreater\tO\nthan\tO\tthan\tO\n0 B-Value 0 O\nin\tO\tin\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfield\tO\tfield\tO\nthen\tO\tthen\tO\ncss B-Language css O\nattributes\tO\tattributes\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nfield\tO\tfield\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36664025\tO\t36664025\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36664025/\tO\thttps://stackoverflow.com/questions/36664025/\tO\n\t\n\t\nAnd\tO\tAnd\tO\nto\tO\tto\tO\ncomplete\tO\tcomplete\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nanswers\tO\tanswers\tO\n,\tO\t,\tO\nnow\tO\tnow\tO\none\tO\tone\tO\nanswer\tO\tanswer\tO\nthat\tO\tthat\tO\nevaluates\tO\tevaluates\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nloses\tO\tloses\tO\nfocus\tO\tfocus\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5251 I-Code_Block Q_5251 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n<input B-Code_Block <input B-Code_Block\nid=\"txt\" I-Code_Block id=\"txt\" I-Code_Block\nonchange=\"inputChange(this.value)\" I-Code_Block onchange=\"inputChange(this.value)\" I-Code_Block\n/> I-Code_Block /> I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36664025\tO\t36664025\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36664025/\tO\thttps://stackoverflow.com/questions/36664025/\tO\n\t\n\t\nDepending\tO\tDepending\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nhappen\tO\thappen\tO\non\tO\ton\tO\npage B-User_Interface_Element page O\nload\tO\tload\tO\nor\tO\tor\tO\nchecking\tO\tchecking\tO\nwhile\tO\twhile\tO\nsomething\tO\tsomething\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\npage\tO\tpage\tO\nload\tO\tload\tO\ncheck\tO\tcheck\tO\n@gurvinder372 B-User_Name @gurvinder372 O\nanswer\tO\tanswer\tO\nelse\tO\telse\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nonkeyup B-Code_Block onkeyup B-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfield\tO\tfield\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5250 I-Code_Block Q_5250 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n<input B-Code_Block <input B-Code_Block\ntype=\"text\" I-Code_Block type=\"text\" I-Code_Block\nid=\"input\"> I-Code_Block id=\"input\"> I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39226277\tO\t39226277\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39226277/\tO\thttps://stackoverflow.com/questions/39226277/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncollapsible B-User_Interface_Element collapsible O\nforce I-User_Interface_Element force O\ndiagram I-User_Interface_Element diagram O\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncollapsed\tO\tcollapsed\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n(\tO\t(\tO\nstarting\tO\tstarting\tO\nout\tO\tout\tO\nwith\tO\twith\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nnode\tO\tnode\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nran\tO\tran\tO\nacross\tO\tacross\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nhttp://bl.ocks.org/david4096/6168323\tO\thttp://bl.ocks.org/david4096/6168323\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nblank\tO\tblank\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nMozilla B-Application Mozilla O\nFirefox I-Application Firefox O\n43.0.4 B-Version 43.0.4 O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\neven\tO\teven\tO\nput\tO\tput\tO\nit\tO\tit\tO\nto\tO\tto\tO\nplunker B-Application plunker O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nresult\tO\tresult\tO\n-\tO\t-\tO\nblank\tO\tblank\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nidentify\tO\tidentify\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\nwould\tO\twould\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nit\tO\tit\tO\npartially\tO\tpartially\tO\ncollpased\tO\tcollpased\tO\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nmeans\tO\tmeans\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nset\tO\tset\tO\nof\tO\tof\tO\nchildren\tO\tchildren\tO\nexpanded\tO\texpanded\tO\nbut\tO\tbut\tO\neverything\tO\teverything\tO\nelse\tO\telse\tO\ncollapsed\tO\tcollapsed\tO\n?\tO\t?\tO\n\t\nMy\tO\tMy\tO\nnon-working\tO\tnon-working\tO\nexample\tO\texample\tO\non\tO\ton\tO\nplunker B-Application plunker O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33226129\tO\t33226129\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33226129/\tO\thttps://stackoverflow.com/questions/33226129/\tO\n\t\n\t\nI\tO\tI\tO\nwrote\tO\twrote\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4030 I-Code_Block Q_4030 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\ngetAllNetworkInfo() B-Function getAllNetworkInfo() O\nis\tO\tis\tO\ndeprecated\tO\tdeprecated\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33226129\tO\t33226129\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33226129/\tO\thttps://stackoverflow.com/questions/33226129/\tO\n\t\n\t\nas\tO\tas\tO\nthe\tO\tthe\tO\ndocs\tO\tdocs\tO\nsay\tO\tsay\tO\n:\tO\t:\tO\n\t\ngetAllNetworkInfo() B-Function getAllNetworkInfo() B-Code_Block\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ngetActiveNetworkInfo() B-Function getActiveNetworkInfo() B-Code_Block\n:\tO\t:\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4727 I-Code_Block A_4727 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33226129\tO\t33226129\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33226129/\tO\thttps://stackoverflow.com/questions/33226129/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5521 I-Code_Block A_5521 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\nfor\tO\tfor\tO\ndetecting\tO\tdetecting\tO\ninternet\tO\tinternet\tO\nconnection\tO\tconnection\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25744401\tO\t25744401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25744401/\tO\thttps://stackoverflow.com/questions/25744401/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nautomatically\tO\tautomatically\tO\ntitle\tO\ttitle\tO\nplots B-User_Interface_Element plots O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nplotted\tO\tplotted\tO\n\t\nso\tO\tso\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nintance\tO\tintance\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nplot\tO\tplot\tO\nsupermatrix(5:10,:,2:3) B-Function supermatrix(5:10,:,2:3) O\n\t\nthe\tO\tthe\tO\ntitle\tO\ttitle\tO\n(\tO\t(\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nlegend\tO\tlegend\tO\n.\tO\t.\tO\n.\tO\t.\tO\n)\tO\t)\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nplot B-User_Interface_Element plot O\nsays\tO\tsays\tO\n\"supermatrix(5:10,:,2:3)\" B-Value \"supermatrix(5:10,:,2:3)\" O\n\t\nthanks\tO\tthanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25744401\tO\t25744401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25744401/\tO\thttps://stackoverflow.com/questions/25744401/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nmodified\tO\tmodified\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\ndfig B-Function dfig B-Code_Block\noriginally\tO\toriginally\tO\ncreated\tO\tcreated\tO\nby\tO\tby\tO\nF.Moisy B-User_Name F.Moisy O\nfor\tO\tfor\tO\ncreating\tO\tcreating\tO\ndocked\tO\tdocked\tO\nfigures B-User_Interface_Element figures O\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nplotting\tO\tplotting\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfigure B-User_Interface_Element figure O\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nidea\tO\tidea\tO\nis\tO\tis\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ncommand\tO\tcommand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nhistory\tO\thistory\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nfigure B-User_Interface_Element figure O\ntitle\tO\ttitle\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3562 I-Code_Block A_3562 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25744401\tO\t25744401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25744401/\tO\thttps://stackoverflow.com/questions/25744401/\tO\n\t\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\ndebugging\tO\tdebugging\tO\npurposes\tO\tpurposes\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nyou\tO\tyou\tO\ntell\tO\ttell\tO\nus\tO\tus\tO\nyour\tO\tyour\tO\noverall\tO\toverall\tO\nmotivation\tO\tmotivation\tO\nbecause\tO\tbecause\tO\nsomeone\tO\tsomeone\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsuggest\tO\tsuggest\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nrobust\tO\trobust\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nmight\tO\tmight\tO\nget\tO\tget\tO\nyou\tO\tyou\tO\nstarted\tO\tstarted\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3547 I-Code_Block A_3547 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlthough\tO\tAlthough\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nhonest\tO\thonest\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nimagine\tO\timagine\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\never\tO\tever\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42663484\tO\t42663484\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42663484/\tO\thttps://stackoverflow.com/questions/42663484/\tO\n\t\n\t\nI\tO\tI\tO\nfollowed\tO\tfollowed\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nPrint\tO\tPrint\tO\nin\tO\tin\tO\nandroid B-Operating_System android O\n(\tO\t(\tO\nThermal B-Device Thermal O\nPrinter I-Device Printer O\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nMy\tO\tMy\tO\nweb-view B-Application web-view O\nOver\tO\tOver\tO\nthere\tO\tthere\tO\nOn-click B-Function On-click O\nIt\tO\tIt\tO\nwill\tO\twill\tO\nLoad\tO\tLoad\tO\nMy\tO\tMy\tO\nAndroid B-Operating_System Android O\nActivity B-Application Activity O\nWhich\tO\tWhich\tO\nis\tO\tis\tO\nOut\tO\tOut\tO\nof\tO\tof\tO\nview B-Application view O\n.. I-Application .. O\n. I-Application . O\n\t\nFor\tO\tFor\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nGiven\tO\tGiven\tO\nthis\tO\tthis\tO\n..\tO\t..\tO\n.\tO\t.\tO\nto\tO\tto\tO\nOpen\tO\tOpen\tO\nnew\tO\tnew\tO\nactivity B-Application activity O\nfrom\tO\tfrom\tO\nweb-view. B-Application web-view. O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5436 I-Code_Block Q_5436 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nMy\tO\tMy\tO\nprinter B-Device printer O\nActivity B-Class Activity O\nis\tO\tis\tO\nworking\tO\tworking\tO\nFine\tO\tFine\tO\nSo\tO\tSo\tO\nhere\tO\there\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\npass\tO\tpass\tO\na\tO\ta\tO\nValue\tO\tValue\tO\nOn B-Function On O\nclick I-Function click O\nButton B-User_Interface_Element Button O\nWhich\tO\tWhich\tO\nOpens\tO\tOpens\tO\nPrinter B-Application Printer O\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ncan\tO\tcan\tO\nAny\tO\tAny\tO\none\tO\tone\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nReceive\tO\tReceive\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nandroid B-Operating_System android O\nActivity B-Class Activity O\nnot\tO\tnot\tO\nin\tO\tin\tO\nweb-view. B-Class web-view. O\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nweb-view B-Application web-view O\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nButton B-User_Interface_Element Button O\nits\tO\tits\tO\nloading\tO\tloading\tO\nAndroid B-Operating_System Android O\nActivity B-Application Activity O\nAlong\tO\tAlong\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nPass\tO\tPass\tO\nA\tO\tA\tO\nstring B-Data_Type string O\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nnew\tO\tnew\tO\nActivity B-Class Activity O\n\t\nWhy\tO\tWhy\tO\nShould\tO\tShould\tO\nI\tO\tI\tO\npass\tO\tpass\tO\nValue\tO\tValue\tO\nmeans\tO\tmeans\tO\nIn\tO\tIn\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nUrl\tO\tUrl\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nPrint\tO\tPrint\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nURL\tO\tURL\tO\n\t\nHere\tO\tHere\tO\nJS B-Language JS O\nvalue\tO\tvalue\tO\nis\tO\tis\tO\ndifferent\tO\tdifferent\tO\nform\tO\tform\tO\ncurrent\tO\tcurrent\tO\nURL\tO\tURL\tO\n\t\nUpdate\tO\tUpdate\tO\n\t\nI\tO\tI\tO\nfollowed\tO\tfollowed\tO\nthis\tO\tthis\tO\nBut\tO\tBut\tO\nits\tO\tits\tO\nInside\tO\tInside\tO\nthe\tO\tthe\tO\nWeb-view B-Class Web-view O\nI\tO\tI\tO\nwant\tO\twant\tO\nsame\tO\tsame\tO\nat\tO\tat\tO\nOutside\tO\tOutside\tO\nthe\tO\tthe\tO\nweb-view. B-Class web-view. O\n.\tO\t.\tO\n\t\nMeans\tO\tMeans\tO\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nweb-view B-Application web-view O\nIts\tO\tIts\tO\nopening\tO\topening\tO\nandroid B-Operating_System android O\nactivity B-Application activity O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nits\tO\tits\tO\nshould\tO\tshould\tO\npass\tO\tpass\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nactivity B-Class activity O\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nweb-view B-Class web-view O\n\t\nUpdate\tO\tUpdate\tO\n1\tO\t1\tO\n\t\nI\tO\tI\tO\nfollowed\tO\tfollowed\tO\n@Sujal B-User_Name @Sujal O\nMandal I-User_Name Mandal O\nanswer\tO\tanswer\tO\nBut\tO\tBut\tO\nI\tO\tI\tO\ndont\tO\tdont\tO\nKnow\tO\tKnow\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nValue\tO\tValue\tO\nIn\tO\tIn\tO\nnext\tO\tnext\tO\nactivity B-Class activity O\nCan\tO\tCan\tO\nany\tO\tany\tO\none\tO\tone\tO\nsuggest\tO\tsuggest\tO\nme.\tO\tme.\tO\n.\tO\t.\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nkind.\tO\tkind.\tO\n.\tO\t.\tO\nin\tO\tin\tO\nnext\tO\tnext\tO\nactivity\tO\tactivity\tO\nIt\tO\tIt\tO\nmay\tO\tmay\tO\nin\tO\tin\tO\nSystem.out.println B-Function System.out.println B-Code_Block\nor\tO\tor\tO\ntext-view B-User_Interface_Element text-view B-Code_Block\nor\tO\tor\tO\nany\tO\tany\tO\nother\tO\tother\tO\nstring B-Data_Type string B-Code_Block\nSo\tO\tSo\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ncan\tO\tcan\tO\nAny\tO\tAny\tO\none\tO\tone\tO\nsuggest\tO\tsuggest\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nUse\tO\tUse\tO\nthe\tO\tthe\tO\nJavaScript B-Language JavaScript O\nValue\tO\tValue\tO\nin\tO\tin\tO\nother\tO\tother\tO\nactivity B-Class activity O\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nweb-view B-Class web-view O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42663484\tO\t42663484\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42663484/\tO\thttps://stackoverflow.com/questions/42663484/\tO\n\t\n\t\nHTML B-Language HTML O\nJS I-Language JS O\nCODE\tO\tCODE\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6159 I-Code_Block A_6159 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n&\tO\t&\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\nandroid B-Language android O\ncode\tO\tcode\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6160 I-Code_Block A_6160 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nnext\tO\tnext\tO\nactivity\tO\tactivity\tO\nreceive\tO\treceive\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nJS B-Language JS O\nresponse\tO\tresponse\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\n\t\nString B-Code_Block String B-Code_Block\ndata I-Code_Block data I-Code_Block\n= I-Code_Block = I-Code_Block\ngetIntent().getStringExtra(\"STRING_DATA\") I-Code_Block getIntent().getStringExtra(\"STRING_DATA\") I-Code_Block\n; I-Code_Block ; I-Code_Block\n\t\nat\tO\tat\tO\noncreate B-Function oncreate O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39257708\tO\t39257708\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39257708/\tO\thttps://stackoverflow.com/questions/39257708/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nHTML B-File_Type HTML O\nfile\tO\tfile\tO\nwith\tO\twith\tO\n2\tO\t2\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\ndivs B-HTML_XML_Tag divs O\n,\tO\t,\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nare\tO\tare\tO\n15 B-Value 15 O\nx I-Value x O\n15px I-Value 15px O\n,\tO\t,\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nred B-Value red O\n,\tO\t,\tO\nthe\tO\tthe\tO\nothers\tO\tothers\tO\ngreen B-Value green O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\neliminate\tO\teliminate\tO\nthat\tO\tthat\tO\nwhite\tO\twhite\tO\nspace\tO\tspace\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\npadding B-Code_Block padding B-Code_Block\n: I-Code_Block : I-Code_Block\n2px I-Code_Block 2px I-Code_Block\n; I-Code_Block ; I-Code_Block\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nspace\tO\tspace\tO\nafter\tO\tafter\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ndivs\tO\tdivs\tO\nare\tO\tare\tO\ngetting\tO\tgetting\tO\nbigger\tO\tbigger\tO\nthan\tO\tthan\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nget\tO\tget\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nspace\tO\tspace\tO\n,\tO\t,\tO\nkeeping\tO\tkeeping\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n(\tO\t(\tO\n15 B-Value 15 O\nx I-Value x O\n15px I-Value 15px O\n)\tO\t)\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndivs B-HTML_XML_Tag divs O\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4948 I-Code_Block Q_4948 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4949 I-Code_Block Q_4949 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48447936\tO\t48447936\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48447936/\tO\thttps://stackoverflow.com/questions/48447936/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndeveloping\tO\tdeveloping\tO\nan\tO\tan\tO\nangular5 B-Library angular5 O\nfront\tO\tfront\tO\nend\tO\tend\tO\nand\tO\tand\tO\nasp.net B-Library asp.net O\ncore\tO\tcore\tO\n2.0 B-Version 2.0 O\nweb\tO\tweb\tO\napi\tO\tapi\tO\napplication\tO\tapplication\tO\nusing\tO\tusing\tO\nVisual B-Application Visual O\nstudio I-Application studio O\n2017 B-Version 2017 O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\napplication\tO\tapplication\tO\nis\tO\tis\tO\nauthenticating\tO\tauthenticating\tO\nusers\tO\tusers\tO\nusing\tO\tusing\tO\nazure B-Application azure O\nAD\tO\tAD\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nAzure B-Application Azure O\nAD\tO\tAD\tO\nusers\tO\tusers\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nother\tO\tother\tO\nAzure B-Application Azure O\nAD\tO\tAD\tO\nusers\tO\tusers\tO\nhave\tO\thave\tO\nno\tO\tno\tO\naccess\tO\taccess\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwarn\tO\twarn\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nwith\tO\twith\tO\nno\tO\tno\tO\naccess\tO\taccess\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nlogin\tO\tlogin\tO\nin\tO\tin\tO\n(\tO\t(\tO\nIf\tO\tIf\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nno\tO\tno\tO\ngroups\tO\tgroups\tO\nor\tO\tor\tO\nroles\tO\troles\tO\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nat\tO\tat\tO\nazure B-Application azure O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nBasically\tO\tBasically\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\nuser\tO\tuser\tO\nbelong\tO\tbelong\tO\nto\tO\tto\tO\ncertain\tO\tcertain\tO\nAzure B-Application Azure O\nAD\tO\tAD\tO\ngroup\tO\tgroup\tO\nor\tO\tor\tO\nRoles\tO\tRoles\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35585021\tO\t35585021\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35585021/\tO\thttps://stackoverflow.com/questions/35585021/\tO\n\t\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nguide\tO\tguide\tO\nor\tO\tor\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nJSON B-File_Type JSON O\nresponse\tO\tresponse\tO\nand\tO\tand\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nserializeable\tO\tserializeable\tO\nclass\tO\tclass\tO\nor\tO\tor\tO\ncontract\tO\tcontract\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\nfiguring\tO\tfiguring\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\ncontract\tO\tcontract\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nmoderately\tO\tmoderately\tO\nsized\tO\tsized\tO\nJSON B-File_Type JSON O\ntype\tO\ttype\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\njson B-File_Type json O\nresponse\tO\tresponse\tO\nhas\tO\thas\tO\nsub\tO\tsub\tO\ntypes\tO\ttypes\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4353 I-Code_Block Q_4353 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35585021\tO\t35585021\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35585021/\tO\thttps://stackoverflow.com/questions/35585021/\tO\n\t\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nhttp://json2csharp.com/\tO\thttp://json2csharp.com/\tO\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nbefore\tO\tbefore\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nexample\tO\texample\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalways\tO\talways\tO\ndesign\tO\tdesign\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nthat\tO\tthat\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\njson B-File_Type json O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nmuch\tO\tmuch\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nmodel\tO\tmodel\tO\ndesign\tO\tdesign\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nc# B-Language c# O\nmodel\tO\tmodel\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\njson B-File_Type json O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nwebsite\tO\twebsite\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\n:\tO\t:\tO\nhttp://json2csharp.com\tO\thttp://json2csharp.com\tO\n\t\nA\tO\tA\tO\ncomplete\tO\tcomplete\tO\nexample\tO\texample\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nC# B-Language C# O\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5073 I-Code_Block A_5073 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nJSON B-File_Type JSON O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5074 I-Code_Block A_5074 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nModel\tO\tModel\tO\nGenerated\tO\tGenerated\tO\nautomatically\tO\tautomatically\tO\nusing\tO\tusing\tO\nhttp://json2csharp.com/\tO\thttp://json2csharp.com/\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5075 I-Code_Block A_5075 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthis\tO\tthis\tO\ncomplete\tO\tcomplete\tO\nexample\tO\texample\tO\nhelps\tO\thelps\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nday\tO\tday\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7156650\tO\t7156650\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7156650/\tO\thttps://stackoverflow.com/questions/7156650/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable B-User_Interface_Element table O\nwith\tO\twith\tO\nplayers\tO\tplayers\tO\nand\tO\tand\tO\nscores\tO\tscores\tO\n(\tO\t(\tO\nName:Mike B-Value Name:Mike O\nScore:10 I-Value Score:10 O\n,\tO\t,\tO\nName:Peter B-Value Name:Peter O\nScore:5 I-Value Score:5 O\n,\tO\t,\tO\netc\tO\tetc\tO\n)\tO\t)\tO\nand\tO\tand\tO\na\tO\ta\tO\nView\tO\tView\tO\nwith\tO\twith\tO\n3\tO\t3\tO\npictures B-User_Interface_Element pictures O\nof\tO\tof\tO\na\tO\ta\tO\nbronze B-Value bronze O\n,\tO\t,\tO\nsilver B-Value silver O\nand\tO\tand\tO\ngold B-Value gold O\nmedal\tO\tmedal\tO\n.\tO\t.\tO\n\t\nUnderneath\tO\tUnderneath\tO\neach\tO\teach\tO\npicture B-User_Interface_Element picture O\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nplayername(s)\tO\tplayername(s)\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwinners\tO\twinners\tO\neach\tO\teach\tO\nweek\tO\tweek\tO\n/\tO\t/\tO\nround\tO\tround\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nwell\tO\twell\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmultiple\tO\tmultiple\tO\nbronze\tO\tbronze\tO\n,\tO\t,\tO\nsilver\tO\tsilver\tO\nor\tO\tor\tO\ngold\tO\tgold\tO\nscores\tO\tscores\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nTotalViewModel B-Class TotalViewModel O\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nObservableCollection B-Class ObservableCollection O\nfor\tO\tfor\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nTotal\tO\tTotal\tO\nScores\tO\tScores\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_550 I-Code_Block Q_550 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nIEnumerable B-Class IEnumerable O\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmultiple\tO\tmultiple\tO\nnumbers\tO\tnumbers\tO\none\tO\tone\tO\n,\tO\t,\tO\ntwo\tO\ttwo\tO\n,\tO\t,\tO\nthree\tO\tthree\tO\nscore\tO\tscore\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_551 I-Code_Block Q_551 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nDataContext B-Class DataContext O\nof\tO\tof\tO\nmy\tO\tmy\tO\nView\tO\tView\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nstraightforward\tO\tstraightforward\tO\nbindings\tO\tbindings\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nset\tO\tset\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nUserControl B-Class UserControl O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_552 I-Code_Block Q_552 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\ndisplayed\tO\tdisplayed\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nDataGrid B-Class DataGrid O\n(\tO\t(\tO\nguess\tO\tguess\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nstupid\tO\tstupid\tO\nmistake\tO\tmistake\tO\nhere\tO\there\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_553 I-Code_Block Q_553 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\nquestions\tO\tquestions\tO\n:\tO\t:\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nnumber\tO\tnumber\tO\n1/2/3\tO\t1/2/3\tO\nscores\tO\tscores\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nView\tO\tView\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7156650\tO\t7156650\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7156650/\tO\thttps://stackoverflow.com/questions/7156650/\tO\n\t\n\t\nWell\tO\tWell\tO\nI\tO\tI\tO\nwont\tO\twont\tO\nget\tO\tget\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nbinding\tO\tbinding\tO\nbit\tO\tbit\tO\nbut\tO\tbut\tO\na\tO\ta\tO\nlinq B-Library linq O\nquery\tO\tquery\tO\nto\tO\tto\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nthree\tO\tthree\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_818 I-Code_Block A_818 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7156650\tO\t7156650\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7156650/\tO\thttps://stackoverflow.com/questions/7156650/\tO\n\t\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nbinding\tO\tbinding\tO\nto\tO\tto\tO\nFirstOne B-Class FirstOne O\nso\tO\tso\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\npropertychanged B-Function propertychanged O\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_817 I-Code_Block A_817 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39852545\tO\t39852545\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39852545/\tO\thttps://stackoverflow.com/questions/39852545/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nprogram\tO\tprogram\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5030 I-Code_Block Q_5030 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nfails\tO\tfails\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\non\tO\ton\tO\nboth\tO\tboth\tO\ng++ B-Application g++ O\n5.4 B-Version 5.4 O\nand\tO\tand\tO\nclang B-Application clang O\n3.8 B-Version 3.8 O\n(\tO\t(\tO\nUbuntu B-Operating_System Ubuntu O\n64-bit B-Version 64-bit O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\ng++ B-Application g++ O\noutput\tO\toutput\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5031 I-Code_Block Q_5031 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nclang B-Application clang O\noutput\tO\toutput\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5032 I-Code_Block Q_5032 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ndiagnostics\tO\tdiagnostics\tO\nvary\tO\tvary\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nin\tO\tin\tO\nform\tO\tform\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nare\tO\tare\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nclash\tO\tclash\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nC B-Language C O\nfunction\tO\tfunction\tO\nclock B-Function clock B-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nstruct B-Data_Structure struct O\nof\tO\tof\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nname\tO\tname\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrelevant\tO\trelevant\tO\ndeclaration\tO\tdeclaration\tO\nfrom\tO\tfrom\tO\ntime.h B-File_Name time.h B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5033 I-Code_Block Q_5033 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nsuch\tO\tsuch\tO\nsymbols\tO\tsymbols\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstd B-Variable std B-Code_Block\nnamespace\tO\tnamespace\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nincludes\tO\tincludes\tO\n<ctime> B-Library <ctime> B-Code_Block\n?\tO\t?\tO\n\t\nInterestingly\tO\tInterestingly\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nvery\tO\tvery\tO\ndeclaration\tO\tdeclaration\tO\nsits\tO\tsits\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nlines\tO\tlines\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nmacro\tO\tmacro\tO\nwhich\tO\twhich\tO\nreads\tO\treads\tO\n__BEGIN_NAMESPACE_STD B-Code_Block __BEGIN_NAMESPACE_STD B-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\n,\tO\t,\tO\nin\tO\tin\tO\n<ctime> B-Library <ctime> B-Code_Block\n,\tO\t,\tO\none\tO\tone\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5034 I-Code_Block Q_5034 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nbug\tO\tbug\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39852545\tO\t39852545\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39852545/\tO\thttps://stackoverflow.com/questions/39852545/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nC++ B-Language C++ O\nstandard\tO\tstandard\tO\nalso\tO\talso\tO\nallows\tO\tallows\tO\nimplementations\tO\timplementations\tO\nto\tO\tto\tO\nput\tO\tput\tO\nnames\tO\tnames\tO\nfrom\tO\tfrom\tO\nC-library B-Library C-library O\nderived\tO\tderived\tO\nheaders B-File_Type headers O\nin\tO\tin\tO\nthe\tO\tthe\tO\nglobal B-Data_Type global O\nnamespace\tO\tnamespace\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nstd::clock B-Library std::clock B-Code_Block\nand\tO\tand\tO\n::clock B-Library ::clock B-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\napplies\tO\tapplies\tO\nto\tO\tto\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\n<c*> B-Library <c*> B-Code_Block\nC++ B-Language C++ O\nheaders B-File_Type headers O\nwith\tO\twith\tO\na\tO\ta\tO\ncorresponding\tO\tcorresponding\tO\n<*.h> B-Library <*.h> B-Code_Block\nversion\tO\tversion\tO\nin\tO\tin\tO\nC B-Language C O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35337267\tO\t35337267\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35337267/\tO\thttps://stackoverflow.com/questions/35337267/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nopen\tO\topen\tO\na\tO\ta\tO\npdf B-File_Type pdf B-Code_Block\nfile\tO\tfile\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nhtml B-Language html B-Code_Block\ndocument\tO\tdocument\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nopen\tO\topen\tO\n.\tO\t.\tO\n\t\nChrome B-Application Chrome O\nsaid\tO\tsaid\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\npdf B-File_Type pdf B-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nhtml B-File_Type html B-Code_Block\nare\tO\tare\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlocation\tO\tlocation\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlocalhost B-Code_Block localhost B-Code_Block\nof\tO\tof\tO\nmy\tO\tmy\tO\ncomputer B-Device computer O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4334 I-Code_Block Q_4334 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35337267\tO\t35337267\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35337267/\tO\thttps://stackoverflow.com/questions/35337267/\tO\n\t\n\t\nAfter\tO\tAfter\tO\nStruggling\tO\tStruggling\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\ni\tO\ti\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nBy\tO\tBy\tO\nReferring\tO\tReferring\tO\nthis\tO\tthis\tO\nLink\tO\tLink\tO\nHere\tO\tHere\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelp\tO\thelp\tO\nsomeone\tO\tsomeone\tO\n.\tO\t.\tO\n\t\nJS B-Language JS O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6779 I-Code_Block A_6779 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHTML B-Language HTML O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6780 I-Code_Block A_6780 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35337267\tO\t35337267\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35337267/\tO\thttps://stackoverflow.com/questions/35337267/\tO\n\t\n\t\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nare\tO\tare\tO\nworking\tO\tworking\tO\nfor\tO\tfor\tO\nPDF B-File_Type PDF O\nin\tO\tin\tO\nchrome B-Application chrome O\nbrowser I-Application browser O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5046 I-Code_Block A_5046 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22588703\tO\t22588703\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22588703/\tO\thttps://stackoverflow.com/questions/22588703/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nGridview B-Class Gridview O\nand\tO\tand\tO\nthe\tO\tthe\tO\ncolumns B-HTML_XML_Tag columns O\ndefined\tO\tdefined\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2474 I-Code_Block Q_2474 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nsolving\tO\tsolving\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22588703\tO\t22588703\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22588703/\tO\thttps://stackoverflow.com/questions/22588703/\tO\n\t\n\t\nNothing\tO\tNothing\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nmarkup\tO\tmarkup\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nthing\tO\tthing\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nrecommend\tO\trecommend\tO\nis\tO\tis\tO\nending\tO\tending\tO\nthe\tO\tthe\tO\nLabel B-HTML_XML_Tag Label O\ncontrol\tO\tcontrol\tO\nimmediately\tO\timmediately\tO\nand\tO\tand\tO\ntrying\tO\ttrying\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3063 I-Code_Block A_3063 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\npast\tO\tpast\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\nissues\tO\tissues\tO\nwhen\tO\twhen\tO\nTab B-Keyboard_IP Tab O\n,\tO\t,\tO\nÂ B-Keyboard_IP Â O\nor I-Keyboard_IP or O\nsome\tO\tsome\tO\nunintentional\tO\tunintentional\tO\ncharacters\tO\tcharacters\tO\ncome\tO\tcome\tO\nin\tO\tin\tO\nbetween\tO\tbetween\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntemplated\tO\ttemplated\tO\ncontrols\tO\tcontrols\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nsuch\tO\tsuch\tO\ncharacters\tO\tcharacters\tO\nby\tO\tby\tO\nredoing\tO\tredoing\tO\nevery\tO\tevery\tO\nline\tO\tline\tO\nfrom\tO\tfrom\tO\nscratch\tO\tscratch\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22588703\tO\t22588703\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22588703/\tO\thttps://stackoverflow.com/questions/22588703/\tO\n\t\n\t\nThis\tO\tThis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nold\tO\told\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nothers\tO\tothers\tO\nwho\tO\twho\tO\nencounter\tO\tencounter\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nproblem\tO\tproblem\tO\ncan\tO\tcan\tO\ncaused\tO\tcaused\tO\nby\tO\tby\tO\nnot\tO\tnot\tO\nputting\tO\tputting\tO\nwhite\tO\twhite\tO\nspace\tO\tspace\tO\nbetween\tO\tbetween\tO\nproperties\tO\tproperties\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4013 I-Code_Block A_4013 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38334379\tO\t38334379\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38334379/\tO\thttps://stackoverflow.com/questions/38334379/\tO\n\t\n\t\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nparticular\tO\tparticular\tO\ndiv B-HTML_XML_Tag div O\n's\tO\t's\tO\ncontent\tO\tcontent\tO\nas\tO\tas\tO\nan\tO\tan\tO\ninput\tO\tinput\tO\nelement\tO\telement\tO\n's\tO\t's\tO\nvalue\tO\tvalue\tO\nautomatically\tO\tautomatically\tO\nwhen\tO\twhen\tO\npage B-User_Interface_Element page O\nis\tO\tis\tO\nloaded\tO\tloaded\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38334379\tO\t38334379\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38334379/\tO\thttps://stackoverflow.com/questions/38334379/\tO\n\t\n\t\nbase\tO\tbase\tO\non\tO\ton\tO\nbrso05 B-User_Name brso05 O\n's\tO\t's\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\n\t\ndocument.getElementById(\"myInput\").value B-Code_Block document.getElementById(\"myInput\").value B-Code_Block\n= I-Code_Block = I-Code_Block\ndocument.getElementById(\"myDiv\").innerHTML I-Code_Block document.getElementById(\"myDiv\").innerHTML I-Code_Block\n; I-Code_Block ; I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5530 I-Code_Block Q_5530 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38334379\tO\t38334379\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38334379/\tO\thttps://stackoverflow.com/questions/38334379/\tO\n\t\n\t\nMaybe\tO\tMaybe\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5529 I-Code_Block A_5529 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44569735\tO\t44569735\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44569735/\tO\thttps://stackoverflow.com/questions/44569735/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nrecords\tO\trecords\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsubject\tO\tsubject\tO\ntable B-User_Interface_Element table O\nthen\tO\tthen\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\ngroup_concat\tO\tgroup_concat\tO\nof\tO\tof\tO\nyii2 B-Library yii2 O\nbind\tO\tbind\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5794 I-Code_Block Q_5794 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nsingle\tO\tsingle\tO\nvalue\tO\tvalue\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\n\" B-Value \" O\nEnglish I-Value English O\n, I-Value , O\nmaths I-Value maths O\n\" I-Value \" O\nbut\tO\tbut\tO\nmy\tO\tmy\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\n\" B-Value \" O\nEnglish I-Value English O\n\" I-Value \" O\nonly\tO\tonly\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44569735\tO\t44569735\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44569735/\tO\thttps://stackoverflow.com/questions/44569735/\tO\n\t\n\t\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nassign\tO\tassign\tO\na\tO\ta\tO\nname\tO\tname\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nusing\tO\tusing\tO\nalias\tO\talias\tO\n.\tO\t.\tO\n.\tO\t.\tO\neg\tO\teg\tO\ng_sname B-Variable g_sname O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6446 I-Code_Block A_6446 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\ncolumn() B-Function column() O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6447 I-Code_Block A_6447 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42022010\tO\t42022010\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42022010/\tO\thttps://stackoverflow.com/questions/42022010/\tO\n\t\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\nan\tO\tan\tO\nHTML B-Language HTML O\nwith\tO\twith\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\nshow\tO\tshow\tO\ndetails\tO\tdetails\tO\nwhich\tO\twhich\tO\nopens\tO\topens\tO\nup\tO\tup\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthat\tO\tthat\tO\npage\tO\tpage\tO\ninto\tO\tinto\tO\npdf B-File_Type pdf O\n,\tO\t,\tO\ntherefore\tO\ttherefore\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nwkhtmltopdf B-Application wkhtmltopdf O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nPDF B-File_Type PDF O\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\nwas\tO\twas\tO\nn't\tO\tn't\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nhtml B-Language html O\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nautomatically\tO\tautomatically\tO\ngenerated\tO\tgenerated\tO\nby\tO\tby\tO\na\tO\ta\tO\ntool\tO\ttool\tO\ncalled\tO\tcalled\tO\nOpenSCAP B-Application OpenSCAP O\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\ngot\tO\tgot\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nshow\tO\tshow\tO\nthis\tO\tthis\tO\ndetails\tO\tdetails\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npdf B-File_Type pdf O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nSLES B-Operating_System SLES O\n11 B-Version 11 O\n.\tO\t.\tO\n\t\nmy\tO\tmy\tO\ncommand\tO\tcommand\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5339 I-Code_Block Q_5339 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29542100\tO\t29542100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29542100/\tO\thttps://stackoverflow.com/questions/29542100/\tO\n\t\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\noff\tO\toff\tO\nW3C B-Website W3C O\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://www.w3schools.com/php/php_ajax_database.asp\tO\thttp://www.w3schools.com/php/php_ajax_database.asp\tO\n\t\nmodified\tO\tmodified\tO\nit\tO\tit\tO\nto\tO\tto\tO\nfit\tO\tfit\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nfile\tO\tfile\tO\nnames\tO\tnames\tO\nand\tO\tand\tO\ndatabase\tO\tdatabase\tO\netc\tO\tetc\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nweird\tO\tweird\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nechoing\tO\techoing\tO\nmy\tO\tmy\tO\nresponses\tO\tresponses\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nevery\tO\tevery\tO\nproduct\tO\tproduct\tO\nthat\tO\tthat\tO\ncollects\tO\tcollects\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nproduct\tO\tproduct\tO\ndatabase\tO\tdatabase\tO\nit\tO\tit\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nit\tO\tit\tO\nin\tO\tin\tO\na\tO\ta\tO\nsection B-HTML_XML_Tag section O\ntag\tO\ttag\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3521 I-Code_Block Q_3521 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nworking\tO\tworking\tO\nanymore\tO\tanymore\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nclosest\tO\tclosest\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ngotten\tO\tgotten\tO\nis\tO\tis\tO\nit\tO\tit\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\ndisplay\tO\tdisplay\tO\none\tO\tone\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nbreaks\tO\tbreaks\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nPHP B-Language PHP O\necho B-Function echo O\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nreturned\tO\treturned\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndiv B-HTML_XML_Tag div O\ntag\tO\ttag\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3522 I-Code_Block Q_3522 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nso\tO\tso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nchanging\tO\tchanging\tO\nmy\tO\tmy\tO\nCSS B-Language CSS O\nto\tO\tto\tO\nstuff\tO\tstuff\tO\nlike\tO\tlike\tO\narticle B-HTML_XML_Tag article O\n>\tO\t>\tO\n.txtHint B-Class .txtHint O\n>\tO\t>\tO\n#sideWays\tO\t#sideWays\tO\nor\tO\tor\tO\neven\tO\teven\tO\njust\tO\tjust\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\n#sideWays\tO\t#sideWays\tO\ncss B-Language css O\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\n.txtHint B-Class .txtHint O\nto\tO\tto\tO\nskip\tO\tskip\tO\nthe\tO\tthe\tO\n>\tO\t>\tO\n#sideWays\tO\t#sideWays\tO\nbut\tO\tbut\tO\nnothing\tO\tnothing\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nmy\tO\tmy\tO\nCSS B-Language CSS O\non\tO\ton\tO\nthe\tO\tthe\tO\necho B-Code_Block echo O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29542100\tO\t29542100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29542100/\tO\thttps://stackoverflow.com/questions/29542100/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhy\tO\twhy\tO\nbut\tO\tbut\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nkeyword\tO\tkeyword\tO\necho B-Code_Block echo O\nto\tO\tto\tO\nprint B-Code_Block print O\nfixed\tO\tfixed\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nof\tO\tof\tO\nit\tO\tit\tO\nnot\tO\tnot\tO\nrecognising\tO\trecognising\tO\nmy\tO\tmy\tO\nhtml B-Language html O\ntags\tO\ttags\tO\nand\tO\tand\tO\napplying\tO\tapplying\tO\nthe\tO\tthe\tO\nCSS B-Language CSS O\nto\tO\tto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48927134\tO\t48927134\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48927134/\tO\thttps://stackoverflow.com/questions/48927134/\tO\n\t\n\t\nTrying\tO\tTrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nsmart B-Device smart O\nwatch I-Device watch O\napplication\tO\tapplication\tO\nopening\tO\topening\tO\na\tO\ta\tO\nweb\tO\tweb\tO\nview\tO\tview\tO\nwhich\tO\twhich\tO\nruns\tO\truns\tO\nsome\tO\tsome\tO\njavascript B-Language javascript O\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\ncrazy\tO\tcrazy\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6525 I-Code_Block Q_6525 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nMWE\tO\tMWE\tO\n.\tO\t.\tO\n\t\nMainActivity.java B-File_Name MainActivity.java O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6526 I-Code_Block Q_6526 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nactivity_main.xml B-File_Name activity_main.xml O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6527 I-Code_Block Q_6527 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nerror\tO\terror\tO\nI\tO\tI\tO\nget\tO\tget\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6528 I-Code_Block Q_6528 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nchecked\tO\tchecked\tO\nother\tO\tother\tO\nthreads\tO\tthreads\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nin\tO\tin\tO\nparticular\tO\tparticular\tO\nconfused\tO\tconfused\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n\"\tO\t\"\tO\nline\tO\tline\tO\n0\tO\t0\tO\n\"\tO\t\"\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nxml B-File_Type xml O\nfile\tO\tfile\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48927134\tO\t48927134\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48927134/\tO\thttps://stackoverflow.com/questions/48927134/\tO\n\t\n\t\nAndroid B-Operating_System Android O\nWear I-Operating_System Wear O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\nWebView B-Class WebView B-Code_Block\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nconcretely\tO\tconcretely\tO\n,\tO\t,\tO\nexamine\tO\texamine\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nexception B-Class exception O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7177 I-Code_Block A_7177 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSince\tO\tSince\tO\nAndroid B-Operating_System Android O\n4.4 B-Version 4.4 O\nor\tO\tor\tO\nthereabouts\tO\tthereabouts\tO\n,\tO\t,\tO\nWebView B-Class WebView B-Code_Block\nis\tO\tis\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nSystem B-Application System O\nWebView I-Application WebView O\n\"\tO\t\"\tO\napp\tO\tapp\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmeans\tO\tmeans\tO\nAndroid B-Operating_System Android O\nhas\tO\thas\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\ngyrations\tO\tgyrations\tO\nto\tO\tto\tO\nget\tO\tget\tO\nits\tO\tits\tO\nhand\tO\thand\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nguts\tO\tguts\tO\nof\tO\tof\tO\nWebView B-Class WebView B-Code_Block\nimplementation\tO\timplementation\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nWebView B-Class WebView B-Code_Block\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n,\tO\t,\tO\nNullWebViewFactoryProvider B-Error_Name NullWebViewFactoryProvider B-Code_Block\nmeans\tO\tmeans\tO\n\"\tO\t\"\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\na\tO\ta\tO\nSystem B-Application System O\nWebView I-Application WebView O\nto\tO\tto\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4549172\tO\t4549172\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4549172/\tO\thttps://stackoverflow.com/questions/4549172/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\ninput\tO\tinput\tO\nfield\tO\tfield\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\ninterval\tO\tinterval\tO\nin\tO\tin\tO\ndays\tO\tdays\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ncronjob B-Application cronjob O\ncommand\tO\tcommand\tO\n(\tO\t(\tO\nie\tO\tie\tO\n:\tO\t:\tO\n* B-Code_Block * B-Code_Block\n* I-Code_Block * I-Code_Block\n* I-Code_Block * I-Code_Block\n* I-Code_Block * I-Code_Block\n* I-Code_Block * I-Code_Block\n)\tO\t)\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nPHP B-Language PHP O\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ndays\tO\tdays\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nor\tO\tor\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmanually\tO\tmanually\tO\nsetup\tO\tsetup\tO\n?\tO\t?\tO\n\t\nSomething\tO\tSomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_312 I-Code_Block Q_312 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4549172\tO\t4549172\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4549172/\tO\thttps://stackoverflow.com/questions/4549172/\tO\n\t\n\t\nif\tO\tif\tO\ni\tO\ti\tO\nunderstand\tO\tunderstand\tO\nyou\tO\tyou\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\ngiven\tO\tgiven\tO\namount\tO\tamount\tO\nof\tO\tof\tO\ndays\tO\tdays\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\n?\tO\t?\tO\n\t\n* B-File_Name * O\n/5 I-File_Name /5 O\n* I-File_Name * O\n* I-File_Name * O\n* I-File_Name * O\n* I-File_Name * O\n/home/user/test.pl I-File_Name /home/user/test.pl O\n\t\n.---------------\tO\t.---------------\tO\n-\tO\t-\tO\nminute\tO\tminute\tO\n(\tO\t(\tO\n0\tO\t0\tO\n-\tO\t-\tO\n59\tO\t59\tO\n)\tO\t)\tO\n\t\n|\tO\t|\tO\n.------------\tO\t.------------\tO\n-\tO\t-\tO\nhour\tO\thour\tO\n(\tO\t(\tO\n0\tO\t0\tO\n-\tO\t-\tO\n2\tO\t2\tO\n3) B-Value 3) O\n\t\n|\tO\t|\tO\n|\tO\t|\tO\n.---------\tO\t.---------\tO\n-\tO\t-\tO\nday\tO\tday\tO\nof\tO\tof\tO\nmonth B-Value month O\n( I-Value ( O\n1 I-Value 1 O\n- I-Value - O\n3 I-Value 3 O\n1) I-Value 1) O\n\t\n|\tO\t|\tO\n|\tO\t|\tO\n|\tO\t|\tO\n.------\tO\t.------\tO\n-\tO\t-\tO\nmonth\tO\tmonth\tO\n( B-Value ( O\n1 I-Value 1 O\n- I-Value - O\n1 I-Value 1 O\n2) I-Value 2) O\nOR I-Value OR O\njan I-Value jan O\n,\tO\t,\tO\nfeb B-Value feb O\n,\tO\t,\tO\nmar B-Value mar O\n,\tO\t,\tO\napr B-Value apr O\n.. I-Value .. O\n. I-Value . O\n\t\n|\tO\t|\tO\n|\tO\t|\tO\n|\tO\t|\tO\n|\tO\t|\tO\n.----\tO\t.----\tO\n-\tO\t-\tO\nday B-Value day O\nof I-Value of O\nweek I-Value week O\n( I-Value ( O\n0 I-Value 0 O\n- I-Value - O\n6 I-Value 6 O\n) I-Value ) O\n(\tO\t(\tO\nSunday B-Value Sunday O\n= I-Value = O\n0 I-Value 0 O\nor\tO\tor\tO\n7 B-Value 7 O\n)\tO\t)\tO\nOR\tO\tOR\tO\nsun B-Value sun O\n,\tO\t,\tO\nmon B-Value mon O\n,\tO\t,\tO\ntue B-Value tue O\n,\tO\t,\tO\nwed B-Value wed O\n,\tO\t,\tO\nthu B-Value thu O\n,\tO\t,\tO\nfri B-Value fri O\n,\tO\t,\tO\nsat B-Value sat O\n\t\n|\tO\t|\tO\n|\tO\t|\tO\n|\tO\t|\tO\n|\tO\t|\tO\n|\tO\t|\tO\n\t\n*\tO\t*\tO\n*\tO\t*\tO\n*\tO\t*\tO\n*\tO\t*\tO\n*\tO\t*\tO\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4549172\tO\t4549172\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4549172/\tO\thttps://stackoverflow.com/questions/4549172/\tO\n\t\n\t\nCronjobs B-Application Cronjobs O\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nminute\tO\tminute\tO\nthe\tO\tthe\tO\ncron B-Application cron O\ndeamon I-Application deamon O\nlooks\tO\tlooks\tO\nfor\tO\tfor\tO\nwhich\tO\twhich\tO\njobs\tO\tjobs\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npattern\tO\tpattern\tO\n(\tO\t(\tO\n\"\tO\t\"\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nweekday\tO\tweekday\tO\n?\tO\t?\tO\n\t\nis\tO\tis\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nminute\tO\tminute\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\nscript\tO\tscript\tO\ncheck\tO\tcheck\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nis\tO\tis\tO\ncorrect\tO\tcorrect\tO\nbecause\tO\tbecause\tO\ncron B-Application cron O\ncannot\tO\tcannot\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nthat\tO\tthat\tO\ncheck\tO\tcheck\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmanual\tO\tmanual\tO\njob\tO\tjob\tO\nor\tO\tor\tO\nin\tO\tin\tO\nBash B-Application Bash O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30643371\tO\t30643371\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30643371/\tO\thttps://stackoverflow.com/questions/30643371/\tO\n\t\n\t\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nListBox B-Class ListBox B-Code_Block\n(\tO\t(\tO\nwhich\tO\twhich\tO\ncontains\tO\tcontains\tO\nScrollViewer B-Class ScrollViewer B-Code_Block\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n)\tO\t)\tO\nand\tO\tand\tO\nListBoxItem B-Class ListBoxItem B-Code_Block\nwith\tO\twith\tO\nScrollViewer B-Class ScrollViewer B-Code_Block\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nnext\tO\tnext\tO\nview\tO\tview\tO\n:\tO\t:\tO\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nListBox B-Class ListBox O\nshould\tO\tshould\tO\nalso\tO\talso\tO\nsupport\tO\tsupport\tO\nvirtualization\tO\tvirtualization\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nenable\tO\tenable\tO\nit\tO\tit\tO\n,\tO\t,\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwondering\tO\twondering\tO\nwill\tO\twill\tO\nit\tO\tit\tO\nwork\tO\twork\tO\nif\tO\tif\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n2\tO\t2\tO\nscroll B-Class scroll O\nviewers I-Class viewers O\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nUPDATED\tO\tUPDATED\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nListBox.ItemTemplate B-Variable ListBox.ItemTemplate B-Code_Block\n,\tO\t,\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nbinding\tO\tbinding\tO\nItemsSource B-Variable ItemsSource B-Code_Block\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\ntips\tO\ttips\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30643371\tO\t30643371\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30643371/\tO\thttps://stackoverflow.com/questions/30643371/\tO\n\t\n\t\nEasy\tO\tEasy\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\n've\tO\t've\tO\ngiven\tO\tgiven\tO\nyou\tO\tyou\tO\nthree\tO\tthree\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\none\tO\tone\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nright\tO\tright\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nThrough\tO\tThrough\tO\nXaml B-Language Xaml O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4357 I-Code_Block A_4357 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFrom\tO\tFrom\tO\nC# B-Language C# O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4358 I-Code_Block A_4358 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n(\tO\t(\tO\nI\tO\tI\tO\n've\tO\t've\tO\nadded\tO\tadded\tO\na\tO\ta\tO\nshort\tO\tshort\tO\ncomment\tO\tcomment\tO\njust\tO\tjust\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nprobably\tO\tprobably\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nscroll B-User_Interface_Element scroll O\nbar I-User_Interface_Element bar O\ngo\tO\tgo\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nacross\tO\tacross\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nusing\tO\tusing\tO\nItem B-Class Item O\nTemplate I-Class Template O\n:\tO\t:\tO\n(\tO\t(\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnever\tO\tnever\tO\ndone\tO\tdone\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nso\tO\tso\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nshoot\tO\tshoot\tO\nme\tO\tme\tO\nif\tO\tif\tO\nits\tO\tits\tO\nwrong\tO\twrong\tO\n!\tO\t!\tO\n:)\tO\t:)\tO\n)\tO\t)\tO\n\t\nXAML B-Language XAML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4359 I-Code_Block A_4359 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCode\tO\tCode\tO\nBehind\tO\tBehind\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4360 I-Code_Block A_4360 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOutput\tO\tOutput\tO\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1126445\tO\t1126445\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1126445/\tO\thttps://stackoverflow.com/questions/1126445/\tO\n\t\n\t\nWhen\tO\tWhen\tO\ncompiling\tO\tcompiling\tO\na\tO\ta\tO\n64bit\tO\t64bit\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\ndoes\tO\tdoes\tO\nstrlen() B-Function strlen() O\nreturn\tO\treturn\tO\na\tO\ta\tO\n64-bit\tO\t64-bit\tO\ninteger B-Data_Type integer O\n?\tO\t?\tO\n\t\nAm\tO\tAm\tO\ni\tO\ti\tO\nmissing\tO\tmissing\tO\nsomthing\tO\tsomthing\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\nstrlen() B-Function strlen() O\nreturns\tO\treturns\tO\na\tO\ta\tO\nsize_t B-Data_Type size_t O\ntype\tO\ttype\tO\n,\tO\t,\tO\nand\tO\tand\tO\nby\tO\tby\tO\ndefinition\tO\tdefinition\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\n..\tO\t..\tO\n.\tO\t.\tO\nWhy\tO\tWhy\tO\nwould\tO\twould\tO\nstrlen B-Function strlen O\nneed\tO\tneed\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\n64-bit\tO\t64-bit\tO\ninteger B-Data_Type integer O\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\ndesigned\tO\tdesigned\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nwith\tO\twith\tO\nstrings B-Data_Type strings O\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthat\tO\tthat\tO\nsaid\tO\tsaid\tO\n:\tO\t:\tO\n\t\nDo\tO\tDo\tO\nprogrammers\tO\tprogrammers\tO\ncommonly\tO\tcommonly\tO\ncreate\tO\tcreate\tO\nmulti-gigabyte\tO\tmulti-gigabyte\tO\nor\tO\tor\tO\nmulti-terabyte\tO\tmulti-terabyte\tO\nstrings B-Data_Type strings O\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\ndid\tO\tdid\tO\n,\tO\t,\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nthey\tO\tthey\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nlength\tO\tlength\tO\nthan\tO\tthan\tO\nsearching\tO\tsearching\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nNULL B-Value NULL O\ncharacter\tO\tcharacter\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nridiculous\tO\tridiculous\tO\n,\tO\t,\tO\nin\tO\tin\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nStrLenAsync() B-Function StrLenAsync() O\nfunction\tO\tfunction\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncallback\tO\tcallback\tO\njust\tO\tjust\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthe\tO\tthe\tO\nultra\tO\tultra\tO\nlong\tO\tlong\tO\nprocess\tO\tprocess\tO\nfor\tO\tfor\tO\nsearching\tO\tsearching\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nNULL B-Value NULL O\nin\tO\tin\tO\nthe\tO\tthe\tO\n40TB\tO\t40TB\tO\nstring B-Data_Type string O\n.\tO\t.\tO\n\t\nSound\tO\tSound\tO\nstupid\tO\tstupid\tO\n?\tO\t?\tO\n\t\nYea\tO\tYea\tO\n,\tO\t,\tO\nwell\tO\twell\tO\nstrlen() B-Function strlen() O\nreturns\tO\treturns\tO\na\tO\ta\tO\n64-bit\tO\t64-bit\tO\ninteger B-Data_Type integer O\n!\tO\t!\tO\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nStrLenAsync() B-Function StrLenAsync() O\nfunction\tO\tfunction\tO\nis\tO\tis\tO\na\tO\ta\tO\njoke\tO\tjoke\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1126445\tO\t1126445\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1126445/\tO\thttps://stackoverflow.com/questions/1126445/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\n1)\tO\t1)\tO\nsize_t B-Data_Type size_t O\nis\tO\tis\tO\na\tO\ta\tO\ntypedef\tO\ttypedef\tO\nand\tO\tand\tO\nvaries\tO\tvaries\tO\nwith\tO\twith\tO\narchitectures\tO\tarchitectures\tO\nand\tO\tand\tO\n2)\tO\t2)\tO\nWould\tO\tWould\tO\nn't\tO\tn't\tO\nit\tO\tit\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nlargest\tO\tlargest\tO\ninteger B-Data_Type integer O\nas\tO\tas\tO\na\tO\ta\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\n32\tO\t32\tO\nbits\tO\tbits\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nnot\tO\tnot\tO\n16\tO\t16\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\n64\tO\t64\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nmachine\tO\tmachine\tO\nbecause\tO\tbecause\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nmax\tO\tmax\tO\nstring B-Data_Type string O\nlength\tO\tlength\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1126445\tO\t1126445\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1126445/\tO\thttps://stackoverflow.com/questions/1126445/\tO\n\t\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ncompiling\tO\tcompiling\tO\nfor\tO\tfor\tO\na\tO\ta\tO\n64-bit\tO\t64-bit\tO\ntarget\tO\ttarget\tO\n,\tO\t,\tO\nsize_t B-Data_Type size_t O\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nas\tO\tas\tO\n64-bit\tO\t64-bit\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmakes\tO\tmakes\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nsize_t B-Data_Type size_t O\nis\tO\tis\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nsizes\tO\tsizes\tO\nof\tO\tof\tO\nall\tO\tall\tO\nkinds\tO\tkinds\tO\nof\tO\tof\tO\nobjects\tO\tobjects\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\nstrings B-Data_Type strings O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44281232\tO\t44281232\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44281232/\tO\thttps://stackoverflow.com/questions/44281232/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\npupil\tO\tpupil\tO\ndetection\tO\tdetection\tO\nfrom\tO\tfrom\tO\nimage B-User_Interface_Element image O\nusing\tO\tusing\tO\npythonwith B-Language pythonwith B-Code_Block\nopencvpackage B-Library opencvpackage I-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\ntest\tO\ttest\tO\nimages B-User_Interface_Element images O\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\ndetect\tO\tdetect\tO\npupil\tO\tpupil\tO\nin\tO\tin\tO\n(\tO\t(\tO\na\tO\ta\tO\n)\tO\t)\tO\npart\tO\tpart\tO\nbut\tO\tbut\tO\nwhenever\tO\twhenever\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\npresence\tO\tpresence\tO\nof\tO\tof\tO\nreflection/\tO\treflection/\tO\nglare\tO\tglare\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\ndetect\tO\tdetect\tO\nblob\tO\tblob\tB-Code_Block\nof\tO\tof\tO\npupil\tO\tpupil\tO\npixels\tO\tpixels\tO\naccurately\tO\taccurately\tO\nin\tO\tin\tO\n(\tO\t(\tO\nb\tO\tb\tO\n)\tO\t)\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nimage B-User_Interface_Element image O\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanybody\tO\tanybody\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5734 I-Code_Block Q_5734 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26684237\tO\t26684237\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26684237/\tO\thttps://stackoverflow.com/questions/26684237/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nwebsocket\tO\twebsocket\tO\nserver B-Application server O\nwhich\tO\twhich\tO\ni\tO\ti\tO\nbasicly\tO\tbasicly\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nover\tO\tover\tO\nhttps\tO\thttps\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3055 I-Code_Block Q_3055 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\nbrowser B-Application browser O\nsays\tO\tsays\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nWebSocket\tO\tWebSocket\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\n'\tO\t'\tO\nwss://192.168.1.8/ws\tO\twss://192.168.1.8/ws\tO\n'\tO\t'\tO\nfailed\tO\tfailed\tO\n:\tO\t:\tO\nWebSocket\tO\tWebSocket\tO\nopening\tO\topening\tO\nhandshake\tO\thandshake\tO\nwas\tO\twas\tO\ncanceled\tO\tcanceled\tO\n\"\tO\t\"\tO\n\t\nThe\tO\tThe\tO\nthings\tO\tthings\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwas\tO\twas\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\nAdd\tO\tAdd\tO\ncertificate\tO\tcertificate\tO\nto\tO\tto\tO\nsystem\tO\tsystem\tO\n(\tO\t(\tO\nwin B-Operating_System win O\n8.1 B-Version 8.1 O\nPRO I-Version PRO O\nx6 I-Version x6 O\n4) I-Version 4) O\nby\tO\tby\tO\ndouble\tO\tdouble\tO\nclicking\tO\tclicking\tO\non\tO\ton\tO\ncert B-File_Type cert O\nfile\tO\tfile\tO\n\t\n2)\tO\t2)\tO\nAdd\tO\tAdd\tO\ncertificate\tO\tcertificate\tO\nto\tO\tto\tO\ngoogle B-Application google O\nchrome I-Application chrome O\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nsystem\tO\tsystem\tO\n(\tO\t(\tO\nthrough\tO\tthrough\tO\nsettings\tO\tsettings\tO\nof\tO\tof\tO\nbrowser B-Application browser O\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nserver B-Application server O\nwhen\tO\twhen\tO\ni\tO\ti\tO\nreimplement\tO\treimplement\tO\nit\tO\tit\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nhttp\tO\thttp\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nhttps\tO\thttps\tO\nso\tO\tso\tO\nphysical\tO\tphysical\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\nmachine\tO\tmachine\tO\nlooks\tO\tlooks\tO\nOK\tO\tOK\tO\n.\tO\t.\tO\n\t\nmy\tO\tmy\tO\ncertificate\tO\tcertificate\tO\nare\tO\tare\tO\nself-signed\tO\tself-signed\tO\n,\tO\t,\tO\ngenerated\tO\tgenerated\tO\nby\tO\tby\tO\ncommand\tO\tcommand\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3056 I-Code_Block Q_3056 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nhow\tO\thow\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3057 I-Code_Block Q_3057 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26684237\tO\t26684237\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26684237/\tO\thttps://stackoverflow.com/questions/26684237/\tO\n\t\n\t\nAs\tO\tAs\tO\n@BenDarnell B-User_Name @BenDarnell O\nposted\tO\tposted\tO\n,\tO\t,\tO\nWe\tO\tWe\tO\nhave\tO\thave\tO\nto\tO\tto\tO\naccept\tO\taccept\tO\nthis\tO\tthis\tO\ncertificate\tO\tcertificate\tO\nby\tO\tby\tO\nbrowse\tO\tbrowse\tO\nto\tO\tto\tO\npage\tO\tpage\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nserver B-Application server O\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyour\tO\tyour\tO\nbrowser B-Application browser O\nwill\tO\twill\tO\ninform\tO\tinform\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\nis\tO\tis\tO\nuntrusted\tO\tuntrusted\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nyour\tO\tyour\tO\nbrowser B-Application browser O\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nuntrusted\tO\tuntrusted\tO\ncertificate\tO\tcertificate\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\ncode\tO\tcode\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nplace\tO\tplace\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3695 I-Code_Block A_3695 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8022156\tO\t8022156\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8022156/\tO\thttps://stackoverflow.com/questions/8022156/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nfor\tO\tfor\tO\nabout\tO\tabout\tO\na\tO\ta\tO\nweek\tO\tweek\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\na\tO\ta\tO\ndrop B-User_Interface_Element drop O\ndown I-User_Interface_Element down O\nmenu I-User_Interface_Element menu O\nusing\tO\tusing\tO\nselenium B-Library selenium O\n2 B-Version 2 O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nto\tO\tto\tO\nautomate\tO\tautomate\tO\na\tO\ta\tO\nflight\tO\tflight\tO\nsearch\tO\tsearch\tO\nusing\tO\tusing\tO\nITA B-Application ITA O\nMatrix I-Application Matrix O\n2 B-Version 2 O\n(\tO\t(\tO\nhttp://matrix.itasoftware.com/\tO\thttp://matrix.itasoftware.com/\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\nworks\tO\tworks\tO\nOK\tO\tOK\tO\nexcept\tO\texcept\tO\nselecting\tO\tselecting\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\npassengers\tO\tpassengers\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndrop B-User_Interface_Element drop O\ndown I-User_Interface_Element down O\nmenu I-User_Interface_Element menu O\n.\tO\t.\tO\n\t\nClicking\tO\tClicking\tO\non\tO\ton\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nattempts\tO\tattempts\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nkeys\tO\tkeys\tO\nor\tO\tor\tO\narrow\tO\tarrow\tO\ncommands\tO\tcommands\tO\nto\tO\tto\tO\nboth\tO\tboth\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nID\tO\tID\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncreated\tO\tcreated\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\npops\tO\tpops\tO\nup\tO\tup\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\nany\tO\tany\tO\nactions\tO\tactions\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nappreciate\tO\tappreciate\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\nam\tO\tam\tO\nvery\tO\tvery\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\npython B-Language python O\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nas\tO\tas\tO\na\tO\ta\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nself\tO\tself\tO\nteaching\tO\tteaching\tO\nexercise\tO\texercise\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_658 I-Code_Block Q_658 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8022156\tO\t8022156\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8022156/\tO\thttps://stackoverflow.com/questions/8022156/\tO\n\t\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nit\tO\tit\tO\nfails\tO\tfails\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\npassenger\tO\tpassenger\tO\ndrop B-User_Interface_Element drop O\ndown I-User_Interface_Element down O\nmenu I-User_Interface_Element menu O\nis\tO\tis\tO\nnot\tO\tnot\tO\nactually\tO\tactually\tO\na\tO\ta\tO\ndrop B-User_Interface_Element drop O\ndown I-User_Interface_Element down O\nmenu I-User_Interface_Element menu O\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsome\tO\tsome\tO\nclever\tO\tclever\tO\nhtml B-Language html O\nand\tO\tand\tO\njavascript B-Language javascript O\nso\tO\tso\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nrespond\tO\trespond\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nusual\tO\tusual\tO\nevents\tO\tevents\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nClick\tO\tClick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlist B-User_Interface_Element list O\nat\tO\tat\tO\nID\tO\tID\tO\n: B-Variable : O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_987 I-Code_Block A_987 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nmenu B-User_Interface_Element menu O\nitem\tO\titem\tO\nat\tO\tat\tO\nXPath B-Language XPath O\n(\tO\t(\tO\nreplace\tO\treplace\tO\n' B-Variable ' O\nNUMBER_OF_PASSENGERS I-Variable NUMBER_OF_PASSENGERS O\n' B-Variable ' O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\npassengers\tO\tpassengers\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_988 I-Code_Block A_988 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35597909\tO\t35597909\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35597909/\tO\thttps://stackoverflow.com/questions/35597909/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nunread\tO\tunread\tO\nmessages\tO\tmessages\tO\ncount\tO\tcount\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nXMPPUserCoreDataStorageObject B-Code_Block XMPPUserCoreDataStorageObject B-Code_Block\n* I-Code_Block * I-Code_Block\nuser I-Code_Block user I-Code_Block\nis\tO\tis\tO\nalways\tO\talways\tO\nnil B-Value nil B-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nchat\tO\tchat\tO\nfunction\tO\tfunction\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nunread\tO\tunread\tO\nmessages\tO\tmessages\tO\ncount\tO\tcount\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4355 I-Code_Block Q_4355 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35597909\tO\t35597909\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35597909/\tO\thttps://stackoverflow.com/questions/35597909/\tO\n\t\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ncleaned.So\tO\tcleaned.So\tO\ndeep\tO\tdeep\tO\nclean\tO\tclean\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nby\tO\tby\tO\npressing\tO\tpressing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nkeys\tO\tkeys\tO\n\t\nwindow+alt+shift+ B-Keyboard_IP window+alt+shift+ O\nk I-Keyboard_IP k O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17072036\tO\t17072036\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17072036/\tO\thttps://stackoverflow.com/questions/17072036/\tO\n\t\n\t\nIn\tO\tIn\tO\nGNU B-Operating_System GNU O\nEMACS B-Application EMACS O\n24.3 B-Version 24.3 O\n,\tO\t,\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nrecentf\tO\trecentf\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nrecently\tO\trecently\tO\nopened\tO\topened\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\ncertain\tO\tcertain\tO\nmakefiles B-File_Name makefiles O\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntype\tO\ttype\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\npath\tO\tpath\tO\nwhenever\tO\twhenever\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nprojects\tO\tprojects\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\ncertain\tO\tcertain\tO\nfiles\tO\tfiles\tO\nsticky\tO\tsticky\tO\nor\tO\tor\tO\npersistent\tO\tpersistent\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17072036\tO\t17072036\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17072036/\tO\thttps://stackoverflow.com/questions/17072036/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexactly\tO\texactly\tO\nanswering\tO\tanswering\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nserve\tO\tserve\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\npurpose\tO\tpurpose\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbookmark\tO\tbookmark\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nmost\tO\tmost\tO\noften\tO\toften\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://www.emacswiki.org/emacs/BookMarks\tO\thttp://www.emacswiki.org/emacs/BookMarks\tO\n\t\nbut\tO\tbut\tO\nin\tO\tin\tO\na\tO\ta\tO\nnutshell\tO\tnutshell\tO\n:\tO\t:\tO\nC-x B-Keyboard_IP C-x B-Keyboard_IP\nr I-Keyboard_IP r I-Keyboard_IP\nm I-Keyboard_IP m I-Keyboard_IP\nbookmarks\tO\tbookmarks\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nopen\tO\topen\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nworks\tO\tworks\tO\non\tO\ton\tO\ndired B-Application dired B-Code_Block\nbuffers B-Data_Structure buffers O\ntoo\tO\ttoo\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nC-x B-Keyboard_IP C-x B-Keyboard_IP\nr I-Keyboard_IP r I-Keyboard_IP\nb I-Keyboard_IP b I-Keyboard_IP\nloads\tO\tloads\tO\nthe\tO\tthe\tO\nbookmarked\tO\tbookmarked\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\nword\tO\tword\tO\ncompletion\tO\tcompletion\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17072036\tO\t17072036\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17072036/\tO\thttps://stackoverflow.com/questions/17072036/\tO\n\t\n\t\nSet\tO\tSet\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrecent\tO\trecent\tO\nfiles\tO\tfiles\tO\nlist B-Data_Structure list O\nto\tO\tto\tO\na\tO\ta\tO\nhigh\tO\thigh\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2236 I-Code_Block A_2236 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nthe\tO\tthe\tO\nmakefiles B-File_Name makefiles O\nwo\tO\two\tO\nn't\tO\tn't\tO\ndrop\tO\tdrop\tO\nout\tO\tout\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nif\tO\tif\tO\nyou\tO\tyou\tO\nvisit\tO\tvisit\tO\nthem\tO\tthem\tO\nregularly\tO\tregularly\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nit\tO\tit\tO\nis\tO\tis\tO\nuseful\tO\tuseful\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\na\tO\ta\tO\nlong\tO\tlong\tO\nrecentf\tO\trecentf\tO\nlist B-Data_Structure list O\nand\tO\tand\tO\nuse\tO\tuse\tO\na\tO\ta\tO\npackage\tO\tpackage\tO\nwhich\tO\twhich\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nfiles\tO\tfiles\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\nwith\tO\twith\tO\ncompletion\tO\tcompletion\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nsome\tO\tsome\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\nhttp://www.emacswiki.org/emacs-es/RecentFiles\tO\thttp://www.emacswiki.org/emacs-es/RecentFiles\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38259499\tO\t38259499\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38259499/\tO\thttps://stackoverflow.com/questions/38259499/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\na\tO\ta\tO\nUbuntu B-Operating_System Ubuntu O\n16.04 B-Version 16.04 O\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nComposer B-Application Composer O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\noptions\tO\toptions\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n:\tO\t:\tO\n\t\nThrough\tO\tThrough\tO\nComposer.org B-Website Composer.org O\nsite\tO\tsite\tO\nrecommendations\tO\trecommendations\tO\ncommand\tO\tcommand\tO\nline->\tO\tline->\tO\nphp B-Code_Block php B-Code_Block\n-r I-Code_Block -r I-Code_Block\n\" I-Code_Block \" I-Code_Block\ncopy('https://getcomposer I-Code_Block copy('https://getcomposer I-Code_Block\n.org/installer I-Code_Block .org/installer I-Code_Block\n' I-Code_Block ' I-Code_Block\n, I-Code_Block , I-Code_Block\n' I-Code_Block ' I-Code_Block\ncomposer-setup.php I-Code_Block composer-setup.php I-Code_Block\n' I-Code_Block ' I-Code_Block\n) I-Code_Block ) I-Code_Block\n; I-Code_Block ; I-Code_Block\n\" I-Code_Block \" I-Code_Block\n.. I-Code_Block .. I-Code_Block\n. I-Code_Block . I-Code_Block\n\t\nTrough\tO\tTrough\tO\napt B-Code_Block apt O\n->\tO\t->\tO\natp B-Code_Block atp B-Code_Block\ninstall I-Code_Block install I-Code_Block\ncomposer I-Code_Block composer I-Code_Block\n,\tO\t,\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nconstraint\tO\tconstraint\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\ntrough\tO\ttrough\tO\nprocess\tO\tprocess\tO\n2\tO\t2\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38259499\tO\t38259499\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38259499/\tO\thttps://stackoverflow.com/questions/38259499/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ninstall\tO\tinstall\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\npackage B-Application package O\nmanager I-Application manager O\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nget\tO\tget\tO\nan\tO\tan\tO\nolder\tO\tolder\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nWhether\tO\tWhether\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nthat\tO\tthat\tO\nmatters\tO\tmatters\tO\nis\tO\tis\tO\nup\tO\tup\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nbenefits\tO\tbenefits\tO\nto\tO\tto\tO\ninstalling\tO\tinstalling\tO\neverything\tO\teverything\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\npackage B-Application package O\nmanager I-Application manager O\n;\tO\t;\tO\nnamely\tO\tnamely\tO\n,\tO\t,\tO\nit\tO\tit\tO\nbecomes\tO\tbecomes\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nyour\tO\tyour\tO\nentire\tO\tentire\tO\nsystem\tO\tsystem\tO\nup-to-date\tO\tup-to-date\tO\n(\tO\t(\tO\nby\tO\tby\tO\nUbuntu B-Operating_System Ubuntu O\n's\tO\t's\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\nup-to-date\tO\tup-to-date\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nalso\tO\talso\tO\nobvious\tO\tobvious\tO\nbenefits\tO\tbenefits\tO\nto\tO\tto\tO\nfollowing\tO\tfollowing\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\nsoftware\tO\tsoftware\tO\n's\tO\t's\tO\ninstructions\tO\tinstructions\tO\n.\tO\t.\tO\n\t\nPersonally\tO\tPersonally\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\nwere\tO\twere\tO\nsharing\tO\tsharing\tO\ncode\tO\tcode\tO\nwith\tO\twith\tO\nother\tO\tother\tO\ndevelopers\tO\tdevelopers\tO\nwho\tO\twho\tO\nuse\tO\tuse\tO\ncomposer B-Application composer O\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ninstall\tO\tinstall\tO\ncomposer B-Application composer O\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nrecommended\tO\trecommended\tO\n'\tO\t'\tO\nway\tO\tway\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nit\tO\tit\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\nby\tO\tby\tO\nchecking\tO\tchecking\tO\nperiodically\tO\tperiodically\tO\nfor\tO\tfor\tO\nnew\tO\tnew\tO\nversions\tO\tversions\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nway\tO\tway\tO\nwe\tO\twe\tO\n'd\tO\t'd\tO\nall\tO\tall\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32241130\tO\t32241130\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32241130/\tO\thttps://stackoverflow.com/questions/32241130/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nBasic B-Class Basic O\nComboTree I-Class ComboTree O\nfrom\tO\tfrom\tO\njeasyui.com B-Website jeasyui.com O\n\t\nindex.js B-File_Name index.js O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3905 I-Code_Block Q_3905 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nin\tO\tin\tO\ncshtml B-File_Type cshtml O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3906 I-Code_Block Q_3906 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32241130\tO\t32241130\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32241130/\tO\thttps://stackoverflow.com/questions/32241130/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ndirective\tO\tdirective\tO\n[\tO\t[\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nas\tO\tas\tO\nattribute\tO\tattribute\tO\nfor\tO\tfor\tO\ninput\tO\tinput\tO\nelement\tO\telement\tO\n]\tO\t]\tO\nand\tO\tand\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nusing\tO\tusing\tO\nloadData B-Variable loadData O\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\npromise\tO\tpromise\tO\nis\tO\tis\tO\nresolved\tO\tresolved\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4608 I-Code_Block A_4608 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32241130\tO\t32241130\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32241130/\tO\thttps://stackoverflow.com/questions/32241130/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nworking\tO\tworking\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nsolve\tO\tsolve\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\ncreate\tO\tcreate\tO\na\tO\ta\tO\nservice\tO\tservice\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nremote\tO\tremote\tO\ndata\tO\tdata\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4609 I-Code_Block A_4609 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ntree_data1.json B-File_Name tree_data1.json O\ndata\tO\tdata\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4610 I-Code_Block A_4610 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ncreate\tO\tcreate\tO\na\tO\ta\tO\ndirective\tO\tdirective\tO\nsay\tO\tsay\tO\n\"\tO\t\"\tO\ncomboTreeDirective B-Variable comboTreeDirective O\n\"\tO\t\"\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nas\tO\tas\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\nto\tO\tto\tO\ncomboe\tO\tcomboe\tO\ntree\tO\ttree\tO\nelement\tO\telement\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4611 I-Code_Block A_4611 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nas\tO\tas\tO\nshown\tO\tshown\tO\nbelow\tO\tbelow\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4612 I-Code_Block A_4612 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncomplete\tO\tcomplete\tO\nworking\tO\tworking\tO\nexample\tO\texample\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4613 I-Code_Block A_4613 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23629090\tO\t23629090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23629090/\tO\thttps://stackoverflow.com/questions/23629090/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\ncalls\tO\tcalls\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nserver B-Application server O\nto\tO\tto\tO\na\tO\ta\tO\nREST B-Library REST O\nAPI I-Library API O\nthat\tO\tthat\tO\nis\tO\tis\tO\nexposed\tO\texposed\tO\nby\tO\tby\tO\nanother\tO\tanother\tO\nserver B-Application server O\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\ntaking\tO\ttaking\tO\ntoo\tO\ttoo\tO\nlong\tO\tlong\tO\nto\tO\tto\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\ntakes\tO\ttakes\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nRight\tO\tRight\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nC# B-Language C# O\nAsync/Await B-Code_Block Async/Await B-Code_Block\nalong\tO\talong\tO\nwith\tO\twith\tO\nHTTPClient B-Class HTTPClient B-Code_Block\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2608 I-Code_Block Q_2608 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23629090\tO\t23629090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23629090/\tO\thttps://stackoverflow.com/questions/23629090/\tO\n\t\n\t\nAS\tO\tAS\tO\n@TheESJ B-User_Name @TheESJ O\nsaid\tO\tsaid\tO\nthe\tO\tthe\tO\nawaits B-Code_Block awaits O\nmake\tO\tmake\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nexecute\tO\texecute\tO\nin\tO\tin\tO\na\tO\ta\tO\nserial\tO\tserial\tO\nfashion\tO\tfashion\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nonce\tO\tonce\tO\nexecution\tO\texecution\tO\nreaches\tO\treaches\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nawait B-Code_Block await B-Code_Block\n,\tO\t,\tO\nexecution\tO\texecution\tO\nis\tO\tis\tO\neffectively\tO\teffectively\tO\n\"\tO\t\"\tO\npaused\tO\tpaused\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nresume\tO\tresume\tO\nuntil\tO\tuntil\tO\nthat\tO\tthat\tO\nTask B-Class Task B-Code_Block\nis\tO\tis\tO\ncomplete\tO\tcomplete\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\navoid\tO\tavoid\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nnot\tO\tnot\tO\nawaiting\tO\tawaiting\tO\nthe\tO\tthe\tO\nTask B-Class Task B-Code_Block\n,\tO\t,\tO\njust\tO\tjust\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\ntasks B-Class tasks O\nto\tO\tto\tO\nkeep\tO\tkeep\tO\ntrack\tO\ttrack\tO\nof\tO\tof\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nfacilitate\tO\tfacilitate\tO\nthis\tO\tthis\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nintroduced\tO\tintroduced\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nhelper\tO\thelper\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\nbody\tO\tbody\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nloops\tO\tloops\tO\nand\tO\tand\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nTask B-Class Task B-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3234 I-Code_Block A_3234 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nmain\tO\tmain\tO\nloop\tO\tloop\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\ntasks B-Class tasks O\nto\tO\tto\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nas\tO\tas\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\nare\tO\tare\tO\nkicked\tO\tkicked\tO\noff\tO\toff\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nessentially\tO\tessentially\tO\nexecute\tO\texecute\tO\nthe\tO\tthe\tO\ntasks B-Class tasks O\nin\tO\tin\tO\nparallel\tO\tparallel\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nincrease\tO\tincrease\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nconcurrent\tO\tconcurrent\tO\nconnections\tO\tconnections\tO\nyour\tO\tyour\tO\nserver B-Application server O\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nif\tO\tif\tO\nit\tO\tit\tO\ncauses\tO\tcauses\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nmain B-Function main O\nmethod\tO\tmethod\tO\nthen\tO\tthen\tO\nbecomes\tO\tbecomes\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3235 I-Code_Block A_3235 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23629090\tO\t23629090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23629090/\tO\thttps://stackoverflow.com/questions/23629090/\tO\n\t\n\t\nThose\tO\tThose\tO\n'\tO\t'\tO\nawait B-Code_Block await O\n's\tO\t's\tO\ninside\tO\tinside\tO\nyour\tO\tyour\tO\nloop\tO\tloop\tO\nwill\tO\twill\tO\nserialize\tO\tserialize\tO\nthe\tO\tthe\tO\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nConsider\tO\tConsider\tO\ninstead\tO\tinstead\tO\nusing\tO\tusing\tO\n.ContinueWith B-Function .ContinueWith O\non\tO\ton\tO\nthe\tO\tthe\tO\ntask\tO\ttask\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n,\tO\t,\tO\nkeep\tO\tkeep\tO\ntrack\tO\ttrack\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntasks\tO\ttasks\tO\nin\tO\tin\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n,\tO\t,\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\nTask.WhenAll B-Function Task.WhenAll O\nonce\tO\tonce\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndone\tO\tdone\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nparallel\tO\tparallel\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42339121\tO\t42339121\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42339121/\tO\thttps://stackoverflow.com/questions/42339121/\tO\n\t\n\t\nDear\tO\tDear\tO\nExpert\tO\tExpert\tO\nneed\tO\tneed\tO\nHelp\tO\tHelp\tO\nfirst\tO\tfirst\tO\nsee\tO\tsee\tO\nmy\tO\tmy\tO\nview\tO\tview\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\ncodeigniter B-Library codeigniter O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5393 I-Code_Block Q_5393 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nthis\tO\tthis\tO\nmy\tO\tmy\tO\nmodel\tO\tmodel\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5394 I-Code_Block Q_5394 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\nif\tO\tif\tO\ni\tO\ti\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nimportant\tO\timportant\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5395 I-Code_Block Q_5395 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nif\tO\tif\tO\nsearching\tO\tsearching\tO\nbetween\tO\tbetween\tO\ntwo\tO\ttwo\tO\ndate\tO\tdate\tO\ntglawal B-Variable tglawal O\nand\tO\tand\tO\ntglakhir B-Variable tglakhir O\n\t\nim\tO\tim\tO\nusing\tO\tusing\tO\nbetween\tO\tbetween\tO\n2016-12-04 B-Value 2016-12-04 O\nand\tO\tand\tO\n2016-12-04 B-Value 2016-12-04 O\noutput\tO\toutput\tO\ndisplay\tO\tdisplay\tO\nwill\tO\twill\tO\nempty B-Value empty O\n\t\nbut\tO\tbut\tO\nif\tO\tif\tO\nusing\tO\tusing\tO\nbetween\tO\tbetween\tO\n2016-12-04 B-Value 2016-12-04 O\nand\tO\tand\tO\n2016-12-06 B-Value 2016-12-06 O\noutput\tO\toutput\tO\nsuccess B-Value success O\nwhere\tO\twhere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nor\tO\tor\tO\nmaybe\tO\tmaybe\tO\nim\tO\tim\tO\nusing\tO\tusing\tO\nwhere\tO\twhere\tO\nor\tO\tor\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nlike\tO\tlike\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42339121\tO\t42339121\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42339121/\tO\thttps://stackoverflow.com/questions/42339121/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n>= B-Code_Block >= O\nand\tO\tand\tO\n<= B-Code_Block <= O\noperator\tO\toperator\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\nmodel\tO\tmodel\tO\ntry\tO\ttry\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6086 I-Code_Block A_6086 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\nwill\tO\twill\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbetween\tO\tbetween\tO\ndates\tO\tdates\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\ndates\tO\tdates\tO\nselected\tO\tselected\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nthe\tO\tthe\tO\noperator\tO\toperator\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\nand\tO\tand\tO\nending\tO\tending\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21995689\tO\t21995689\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21995689/\tO\thttps://stackoverflow.com/questions/21995689/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nto_secs B-Function to_secs B-Code_Block\nthat\tO\tthat\tO\nconverts\tO\tconverts\tO\nhours\tO\thours\tO\n,\tO\t,\tO\nminutes\tO\tminutes\tO\n,\tO\t,\tO\nand\tO\tand\tO\nseconds\tO\tseconds\tO\nto\tO\tto\tO\na\tO\ta\tO\ntotal\tO\ttotal\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nseconds\tO\tseconds\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nbook\tO\tbook\tO\nit\tO\tit\tO\nsays\tO\tsays\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntest\tO\ttest\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2381 I-Code_Block Q_2381 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21995689\tO\t21995689\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21995689/\tO\thttps://stackoverflow.com/questions/21995689/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\n3600\tO\t3600\tO\nseconds\tO\tseconds\tO\nin\tO\tin\tO\nan\tO\tan\tO\nhour\tO\thour\tO\n,\tO\t,\tO\n60\tO\t60\tO\nin\tO\tin\tO\na\tO\ta\tO\nminute\tO\tminute\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrest\tO\trest\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\narithmetic\tO\tarithmetic\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2984 I-Code_Block A_2984 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDemo\tO\tDemo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2985 I-Code_Block A_2985 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45753833\tO\t45753833\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45753833/\tO\thttps://stackoverflow.com/questions/45753833/\tO\n\t\n\t\nAs\tO\tAs\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nformat\tO\tformat\tO\nof\tO\tof\tO\nLiferays B-Library Liferays O\ninput-date B-Variable input-date O\nfield I-Variable field O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nsuccessfull\tO\tsuccessfull\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\ni\tO\ti\tO\nwas\tO\twas\tO\ntesting\tO\ttesting\tO\nit\tO\tit\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\nbrowsers B-Application browsers O\nand\tO\tand\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\nFirefox B-Application Firefox O\nmesses\tO\tmesses\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nfield B-Variable field O\n.\tO\t.\tO\n\t\nNo\tO\tNo\tO\nproblems\tO\tproblems\tO\nin\tO\tin\tO\nIE B-Application IE O\nor\tO\tor\tO\nChrome B-Application Chrome O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ninitially\tO\tinitially\tO\ndisplays\tO\tdisplays\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ndate\tO\tdate\tO\nlike\tO\tlike\tO\n18.08.2017 B-Value 18.08.2017 O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nfield B-Variable field O\n(\tO\t(\tO\nno\tO\tno\tO\nchange\tO\tchange\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nthat\tO\tthat\tO\nmoment\tO\tmoment\tO\n)\tO\t)\tO\nit\tO\tit\tO\ndisplays\tO\tdisplays\tO\nd.08.2017 B-Value d.08.2017 O\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nfirst\tO\tfirst\tO\ni\tO\ti\tO\nthought\tO\tthought\tO\ni\tO\ti\tO\nmessed\tO\tmessed\tO\nit\tO\tit\tO\nup\tO\tup\tO\ndue\tO\tdue\tO\nmy\tO\tmy\tO\nformat\tO\tformat\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nafter\tO\tafter\tO\nundoing\tO\tundoing\tO\nthese\tO\tthese\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nstill\tO\tstill\tO\nexists\tO\texists\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nvalue\tO\tvalue\tO\nitself\tO\titself\tO\nhowever\tO\thowever\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nnormal\tO\tnormal\tO\nand\tO\tand\tO\nmy\tO\tmy\tO\njava B-Language java O\nmethod\tO\tmethod\tO\ndoesnt\tO\tdoesnt\tO\nget\tO\tget\tO\nany\tO\tany\tO\nerros\tO\terros\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npicker B-User_Interface_Element picker O\nand\tO\tand\tO\nthe\tO\tthe\tO\nhidden\tO\thidden\tO\nfields\tO\tfields\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nthe\tO\tthe\tO\nvisible\tO\tvisible\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nis\tO\tis\tO\nmessed\tO\tmessed\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlooked\tO\tlooked\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nconsole\tO\tconsole\tO\nand\tO\tand\tO\nsaw\tO\tsaw\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nLiferay.Form B-File_Name Liferay.Form O\nis\tO\tis\tO\nundefined\tO\tundefined\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nrelevant\tO\trelevant\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nIE B-Application IE O\nand\tO\tand\tO\nChrome B-Application Chrome O\nare\tO\tare\tO\ndisplaying\tO\tdisplaying\tO\nerrors\tO\terrors\tO\ntoo\tO\ttoo\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nare\tO\tare\tO\nalso\tO\talso\tO\ndisplaying\tO\tdisplaying\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nnormally\tO\tnormally\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5995 I-Code_Block Q_5995 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nget\tO\tget\tO\nrid\tO\trid\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndatepicker B-User_Interface_Element datepicker O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5996 I-Code_Block Q_5996 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\njs B-Language js O\ncode\tO\tcode\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\ni\tO\ti\tO\n've\tO\t've\tO\nwritten\tO\twritten\tO\nnone\tO\tnone\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27283346\tO\t27283346\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27283346/\tO\thttps://stackoverflow.com/questions/27283346/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nMOBILE B-Device MOBILE O\nfirst\tO\tfirst\tO\napproach\tO\tapproach\tO\nto\tO\tto\tO\nresponsive\tO\tresponsive\tO\ndesign\tO\tdesign\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ndoing\tO\tdoing\tO\nso\tO\tso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nmy\tO\tmy\tO\nMAX B-Variable MAX O\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\nto\tO\tto\tO\nMIN B-Variable MIN O\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\n.\tO\t.\tO\n\t\nTherefore\tO\tTherefore\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\ngraceful\tO\tgraceful\tO\ndegradation\tO\tdegradation\tO\n,\tO\t,\tO\nI\tO\tI\tO\naim\tO\taim\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nprogressive\tO\tprogressive\tO\nenhancement\tO\tenhancement\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nexplain\tO\texplain\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nre-engineer\tO\tre-engineer\tO\nmy\tO\tmy\tO\nCSS B-Language CSS O\nto\tO\tto\tO\nuse\tO\tuse\tO\nMIN-width B-Variable MIN-width O\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\nas\tO\tas\tO\nopposed\tO\topposed\tO\nto\tO\tto\tO\nMAX-width B-Variable MAX-width O\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nbelow\tO\tbelow\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntrimmed\tO\ttrimmed\tO\nout\tO\tout\tO\n95%\tO\t95%\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncss B-Language css O\nand\tO\tand\tO\nhave\tO\thave\tO\nleft\tO\tleft\tO\nthe\tO\tthe\tO\nbreakpoints\tO\tbreakpoints\tO\n\t\n//\tO\t//\tO\n------------------------------MAIN\tO\t------------------------------MAIN\tO\nCSS\tO\tCSS\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3146 I-Code_Block Q_3146 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n//\tO\t//\tO\n--------------------------------MEDIA\tO\t--------------------------------MEDIA\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3147 I-Code_Block Q_3147 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n//\tO\t//\tO\n--------------------------------MEDIA\tO\t--------------------------------MEDIA\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3148 I-Code_Block Q_3148 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27283346\tO\t27283346\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27283346/\tO\thttps://stackoverflow.com/questions/27283346/\tO\n\t\n\t\n@media B-Code_Block @media O\nMIN-width I-Code_Block MIN-width O\n: I-Code_Block : O\n\t\nMin-width B-Variable Min-width O\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\neasy\tO\teasy\tO\n,\tO\t,\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nand\tO\tand\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\ntoo\tO\ttoo\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nusing\tO\tusing\tO\nMAX B-Variable MAX O\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nusing\tO\tusing\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3780 I-Code_Block A_3780 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nimportant\tO\timportant\tO\nto\tO\tto\tO\nstill\tO\tstill\tO\nuse\tO\tuse\tO\nmax-width B-Variable max-width O\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nlimits\tO\tlimits\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\nof\tO\tof\tO\nobjects\tO\tobjects\tO\non\tO\ton\tO\ncertain\tO\tcertain\tO\nscreens B-Device screens O\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nmin-width B-Variable min-width O\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nespecially\tO\tespecially\tO\nuseful\tO\tuseful\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\ncertain\tO\tcertain\tO\nstyles\tO\tstyles\tO\nto\tO\tto\tO\napply\tO\tapply\tO\nto\tO\tto\tO\na\tO\ta\tO\nsmaller\tO\tsmaller\tO\nobject\tO\tobject\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nhave\tO\thave\tO\nthat\tO\tthat\tO\nsame\tO\tsame\tO\nstyle\tO\tstyle\tO\napply\tO\tapply\tO\nto\tO\tto\tO\na\tO\ta\tO\nlarger\tO\tlarger\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nstyles\tO\tstyles\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nminimum\tO\tminimum\tO\nsize\tO\tsize\tO\nbut\tO\tbut\tO\nalso\tO\talso\tO\nadd\tO\tadd\tO\non\tO\ton\tO\nextra\tO\textra\tO\nstyles\tO\tstyles\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlarger\tO\tlarger\tO\nobject\tO\tobject\tO\nwith\tO\twith\tO\nout\tO\tout\tO\neffecting\tO\teffecting\tO\nthe\tO\tthe\tO\nsmaller\tO\tsmaller\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3781 I-Code_Block A_3781 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nstyles\tO\tstyles\tO\nfrom\tO\tfrom\tO\nscreens B-Device screens O\nwith\tO\twith\tO\na\tO\ta\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nover\tO\tover\tO\n740px B-Value 740px O\nwill\tO\twill\tO\nalready\tO\talready\tO\nbe\tO\tbe\tO\napplied\tO\tapplied\tO\nto\tO\tto\tO\nany\tO\tany\tO\nscreens B-Device screens O\nwith\tO\twith\tO\na\tO\ta\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nover\tO\tover\tO\n900px B-Value 900px O\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthere\tO\tthere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadjust\tO\tadjust\tO\nyour\tO\tyour\tO\nstyles\tO\tstyles\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\nreducing\tO\treducing\tO\nthe\tO\tthe\tO\namount\tO\tamount\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nproduce\tO\tproduce\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nThings\tO\tThings\tO\n:\tO\t:\tO\n\t\n-When\tO\t-When\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nactual\tO\tactual\tO\nelements\tO\telements\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nscreen B-Device screen O\n(\tO\t(\tO\nexcluding\tO\texcluding\tO\nmin/max\tO\tmin/max\tO\n-sizes\tO\t-sizes\tO\nwith\tO\twith\tO\n@media B-Code_Block @media O\n)\tO\t)\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npercentages\tO\tpercentages\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthat\tO\tthat\tO\nway\tO\tway\tO\nitems\tO\titems\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nauto\tO\tauto\tO\nre-sized\tO\tre-sized\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\n-Here\tO\t-Here\tO\nis\tO\tis\tO\na\tO\ta\tO\ngreat\tO\tgreat\tO\nwebsite\tO\twebsite\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nendeavours\tO\tendeavours\tO\nwith\tO\twith\tO\nmedia\tO\tmedia\tO\nqueries\tO\tqueries\tO\n:\tO\t:\tO\nhttp://css-tricks.com/snippets/css/media-queries-for-standard-devices/\tO\thttp://css-tricks.com/snippets/css/media-queries-for-standard-devices/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27283346\tO\t27283346\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27283346/\tO\thttps://stackoverflow.com/questions/27283346/\tO\n\t\n\t\nIt\tO\tIt\tO\ntotally\tO\ttotally\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nsites\tO\tsites\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndisplayed\tO\tdisplayed\tO\nwell\tO\twell\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nwidth B-Variable width O\nof\tO\tof\tO\n400px B-Value 400px O\nwhile\tO\twhile\tO\nsome\tO\tsome\tO\nothers\tO\tothers\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nminumum\tO\tminumum\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\ntoo\tO\ttoo\tO\nsmall\tO\tsmall\tO\nto\tO\tto\tO\nrender\tO\trender\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\na\tO\ta\tO\nclean\tO\tclean\tO\nmanner\tO\tmanner\tO\n.\tO\t.\tO\n\t\nVery\tO\tVery\tO\noften\tO\toften\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\neven\tO\teven\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmin-width B-Variable min-width O\nor\tO\tor\tO\nmax-width B-Variable max-width O\nwhen\tO\twhen\tO\noptimizing\tO\toptimizing\tO\nfor\tO\tfor\tO\nmobile\tO\tmobile\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nfar\tO\tfar\tO\nmore\tO\tmore\tO\nbetter\tO\tbetter\tO\npractices\tO\tpractices\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n:\tO\t:\tO\n\t\nUse\tO\tUse\tO\nEm B-Value Em O\nover\tO\tover\tO\nPx B-Value Px O\n-\tO\t-\tO\nIt\tO\tIt\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nset\tO\tset\tO\nfont-size B-Variable font-size O\nand\tO\tand\tO\nother\tO\tother\tO\nsizes\tO\tsizes\tO\nin\tO\tin\tO\nunits\tO\tunits\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nem B-Value em O\n\"\tO\t\"\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nin\tO\tin\tO\n\"\tO\t\"\tO\npx B-Value px O\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\na\tO\ta\tO\npixel\tO\tpixel\tO\nis\tO\tis\tO\nextremely\tO\textremely\tO\nsmall\tO\tsmall\tO\non\tO\ton\tO\na\tO\ta\tO\ncell B-Device cell O\nphone I-Device phone O\n,\tO\t,\tO\nwhereas\tO\twhereas\tO\nem\tO\tem\tO\nunits\tO\tunits\tO\nproportionally\tO\tproportionally\tO\nadjusts\tO\tadjusts\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\na\tO\ta\tO\nsize\tO\tsize\tO\nthat\tO\tthat\tO\nfits\tO\tfits\tO\nthe\tO\tthe\tO\nscreen B-Device screen O\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nPercentages\tO\tPercentages\tO\n-\tO\t-\tO\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nfind\tO\tfind\tO\nthat\tO\tthat\tO\nusing\tO\tusing\tO\npercentages\tO\tpercentages\tO\nare\tO\tare\tO\nfar\tO\tfar\tO\nmore\tO\tmore\tO\nfriendly\tO\tfriendly\tO\nthan\tO\tthan\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nspecifying\tO\tspecifying\tO\nthe\tO\tthe\tO\nwidth B-Variable width O\nor\tO\tor\tO\nheight B-Variable height O\nof\tO\tof\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nin\tO\tin\tO\npixels\tO\tpixels\tO\nor\tO\tor\tO\nem\tO\tem\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\npercentages\tO\tpercentages\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\ncontent\tO\tcontent\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nadjust\tO\tadjust\tO\nwell\tO\twell\tO\nin\tO\tin\tO\nfor\tO\tfor\tO\nskinny\tO\tskinny\tO\ndisplays\tO\tdisplays\tO\n.\tO\t.\tO\n\t\nAvoid\tO\tAvoid\tO\nAbsolutely\tO\tAbsolutely\tO\nPositioned\tO\tPositioned\tO\nElements\tO\tElements\tO\n-\tO\t-\tO\nHaving\tO\tHaving\tO\nelements\tO\telements\tO\npositioned\tO\tpositioned\tO\nabsolutely\tO\tabsolutely\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\ndifficuly\tO\tdifficuly\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\non\tO\ton\tO\nsmall\tO\tsmall\tO\ndisplays\tO\tdisplays\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nsimply\tO\tsimply\tO\ncan\tO\tcan\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nabsolute\tO\tabsolute\tO\nelements\tO\telements\tO\nmay\tO\tmay\tO\nget\tO\tget\tO\ntoo\tO\ttoo\tO\nnear\tO\tnear\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nrelatively\tO\trelatively\tO\npositioned\tO\tpositioned\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nUse\tO\tUse\tO\nrelative\tO\trelative\tO\npositioning\tO\tpositioning\tO\nas\tO\tas\tO\nmuch\tO\tmuch\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nclean\tO\tclean\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46536461\tO\t46536461\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46536461/\tO\thttps://stackoverflow.com/questions/46536461/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nlearning\tO\tlearning\tO\npython B-Language python O\nunittest B-Library unittest O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nask\tO\task\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\ntest_code B-Variable test_code O\n'\tO\t'\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6121 I-Code_Block Q_6121 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nthe\tO\tthe\tO\nargument\tO\targument\tO\nof\tO\tof\tO\n'\tO\t'\tO\n-m B-Code_Block -m O\n'\tO\t'\tO\noption\tO\toption\tO\nor\tO\tor\tO\none\tO\tone\tO\nof\tO\tof\tO\nunittest B-Library unittest O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\nunittest B-Library unittest O\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46536461\tO\t46536461\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46536461/\tO\thttps://stackoverflow.com/questions/46536461/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nunittest B-Library unittest O\nmodule\tO\tmodule\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\ntests\tO\ttests\tO\nfrom\tO\tfrom\tO\nmodules\tO\tmodules\tO\nin\tO\tin\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\n-m B-Code_Block -m O\nis\tO\tis\tO\na\tO\ta\tO\nflag\tO\tflag\tO\nand\tO\tand\tO\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\npython B-Language python O\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\ntest\tO\ttest\tO\nmethods\tO\tmethods\tO\nof\tO\tof\tO\nunittest B-Library unittest O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4175017\tO\t4175017\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4175017/\tO\thttps://stackoverflow.com/questions/4175017/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmatrix B-Data_Structure matrix O\nrepresented\tO\trepresented\tO\nin\tO\tin\tO\nPHP B-Language PHP O\nas\tO\tas\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_283 I-Code_Block Q_283 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\nmatrix B-Data_Structure matrix O\nrepresented\tO\trepresented\tO\nin\tO\tin\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nway\tO\tway\tO\n(\tO\t(\tO\nhere\tO\there\tO\nwithout\tO\twithout\tO\ninner\tO\tinner\tO\narrays B-Data_Structure arrays O\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nmind\tO\tmind\tO\nadding\tO\tadding\tO\nthem\tO\tthem\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_284 I-Code_Block Q_284 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncombination\tO\tcombination\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_285 I-Code_Block Q_285 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfailed\tO\tfailed\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\neven\tO\teven\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\noperation\tO\toperation\tO\nhas\tO\thas\tO\na\tO\ta\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nHas\tO\tHas\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nanyone\tO\tanyone\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nmyself\tO\tmyself\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4175017\tO\t4175017\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4175017/\tO\thttps://stackoverflow.com/questions/4175017/\tO\n\t\n\t\nJust\tO\tJust\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\ndoes\tO\tdoes\tO\nwant\tO\twant\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nwould\tO\twould\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncartesian\tO\tcartesian\tO\nproduct\tO\tproduct\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\narrays B-Data_Structure arrays O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_533 I-Code_Block A_533 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nadditionally\tO\tadditionally\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nfrom\tO\tfrom\tO\n$array1 B-Variable $array1 O\nand\tO\tand\tO\n$array2 B-Variable $array2 O\nin\tO\tin\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\narray B-Data_Structure array O\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmerge\tO\tmerge\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\narrays B-Data_Structure arrays O\ntogether\tO\ttogether\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nnested\tO\tnested\tO\nforeach\tO\tforeach\tO\nloops\tO\tloops\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_534 I-Code_Block A_534 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4175017\tO\t4175017\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4175017/\tO\thttps://stackoverflow.com/questions/4175017/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nthe\tO\tthe\tO\ncartesian\tO\tcartesian\tO\nproduct\tO\tproduct\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nnative\tO\tnative\tO\nPHP B-Language PHP O\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ncalculate\tO\tcalculate\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30869401\tO\t30869401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30869401/\tO\thttps://stackoverflow.com/questions/30869401/\tO\n\t\n\t\nMy\tO\tMy\tO\nangularjs B-Library angularjs O\napp\tO\tapp\tO\nis\tO\tis\tO\nembedded\tO\tembedded\tO\ninto\tO\tinto\tO\nasp.net B-Library asp.net O\nmvc I-Library mvc O\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nangularjs B-Library angularjs O\nI\tO\tI\tO\n'm\tO\t'm\tO\nsending\tO\tsending\tO\na\tO\ta\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\na\tO\ta\tO\ncross\tO\tcross\tO\ndomain\tO\tdomain\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3721 I-Code_Block Q_3721 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nfix\tO\tfix\tO\non\tO\ton\tO\nasp.net B-Library asp.net O\nmvc I-Library mvc O\nserver B-Application server O\nside\tO\tside\tO\ninside\tO\tinside\tO\nwhich\tO\twhich\tO\nthis\tO\tthis\tO\nangularjs B-Library angularjs O\napp\tO\tapp\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\nor\tO\tor\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\ncheck\tO\tcheck\tO\non\tO\ton\tO\nmywebservice.com\tO\tmywebservice.com\tO\nside\tO\tside\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30869401\tO\t30869401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30869401/\tO\thttps://stackoverflow.com/questions/30869401/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\na\tO\ta\tO\nserver B-Application server O\nof\tO\tof\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\norigin\tO\torigin\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nresolved\tO\tresolved\tO\non\tO\ton\tO\nmywebservice.com\tO\tmywebservice.com\tO\nby\tO\tby\tO\nallowing\tO\tallowing\tO\nyour\tO\tyour\tO\ndomain\tO\tdomain\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nrequests\tO\trequests\tO\nto\tO\tto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nserver B-Application server O\nand\tO\tand\tO\nthen\tO\tthen\tO\nsend\tO\tsend\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nAngular B-Library Angular O\nfront\tO\tfront\tO\nend\tO\tend\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22066032\tO\t22066032\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22066032/\tO\thttps://stackoverflow.com/questions/22066032/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nChoiceBox B-Class ChoiceBox O\nwhich\tO\twhich\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\npress\tO\tpress\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nChoiceBox B-Class ChoiceBox O\nmenu B-User_Interface_Element menu O\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2389 I-Code_Block Q_2389 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22066032\tO\t22066032\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22066032/\tO\thttps://stackoverflow.com/questions/22066032/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ninitially\tO\tinitially\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nChoiceBox B-Class ChoiceBox O\nin\tO\tin\tO\nyour\tO\tyour\tO\npane B-User_Interface_Element pane O\nand\tO\tand\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvisibility\tO\tvisibility\tO\nas\tO\tas\tO\nfalse B-Value false B-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2991 I-Code_Block A_2991 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nLater\tO\tLater\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvisibility\tO\tvisibility\tO\nas\tO\tas\tO\ntrue B-Value true O\n!\tO\t!\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2992 I-Code_Block A_2992 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nI\tO\tI\tO\njust\tO\tjust\tO\ntyped\tO\ttyped\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nso\tO\tso\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncompile\tO\tcompile\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n!\tO\t!\tO\n\t\nJust\tO\tJust\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47142335\tO\t47142335\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47142335/\tO\thttps://stackoverflow.com/questions/47142335/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nrandom\tO\trandom\tO\nnumber\tO\tnumber\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nrange\tO\trange\tO\nin\tO\tin\tO\nGroovy B-Language Groovy O\nScript\tO\tScript\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nbetween\tO\tbetween\tO\n10,000 B-Value 10,000 O\nand\tO\tand\tO\n90,000 B-Value 90,000 O\n\t\nBelow\tO\tBelow\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\nattempts\tO\tattempts\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6250 I-Code_Block Q_6250 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6251 I-Code_Block Q_6251 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBoth\tO\tBoth\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nrandom\tO\trandom\tO\nnumber\tO\tnumber\tO\nyes\tO\tyes\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nof\tO\tof\tO\n10 B-Value 10 O\n, I-Value , O\n00-90 I-Value 00-90 O\n, I-Value , O\n000 I-Value 000 O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47142335\tO\t47142335\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47142335/\tO\thttps://stackoverflow.com/questions/47142335/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nmy\tO\tmy\tO\nerror\tO\terror\tO\n:\tO\t:\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nthe\tO\tthe\tO\n90000 B-Value 90000 O\nand\tO\tand\tO\nthe\tO\tthe\tO\n10000 B-Value 10000 O\nfor\tO\tfor\tO\n1 B-Value 1 O\n.\tO\t.\tO\n\t\nCorrect\tO\tCorrect\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6870 I-Code_Block A_6870 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34700061\tO\t34700061\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34700061/\tO\thttps://stackoverflow.com/questions/34700061/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfixed\tO\tfixed\tO\nmenu B-User_Interface_Element menu O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmoves\tO\tmoves\tO\nwith\tO\twith\tO\nscrolling\tO\tscrolling\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ndynamically\tO\tdynamically\tO\nanother\tO\tanother\tO\ndiv B-HTML_XML_Tag div O\nbefore\tO\tbefore\tO\nthis\tO\tthis\tO\nmenu B-User_Interface_Element menu O\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\ndisappear\tO\tdisappear\tO\nonce\tO\tonce\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nstick\tO\tstick\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmoving\tO\tmoving\tO\nmenu B-User_Interface_Element menu O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nprepend\tO\tprepend\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbody\tO\tbody\tO\nwith\tO\twith\tO\nposition\tO\tposition\tO\nfixed\tO\tfixed\tO\n-\tO\t-\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nmenu B-User_Interface_Element menu O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nprepend\tO\tprepend\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmenu B-User_Interface_Element menu O\n,\tO\t,\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nway\tO\tway\tO\nto\tO\tto\tO\napproach\tO\tapproach\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4229 I-Code_Block Q_4229 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhttps://jsfiddle.net/rzpL34ef/3/\tO\thttps://jsfiddle.net/rzpL34ef/3/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34700061\tO\t34700061\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34700061/\tO\thttps://stackoverflow.com/questions/34700061/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4941 I-Code_Block Q_4941 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4942 I-Code_Block Q_4942 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4943 I-Code_Block Q_4943 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33610138\tO\t33610138\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33610138/\tO\thttps://stackoverflow.com/questions/33610138/\tO\n\t\n\t\nConsider\tO\tConsider\tO\nfollowing\tO\tfollowing\tO\nJavascript B-Language Javascript O\ncode\tO\tcode\tO\nexample\tO\texample\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4104 I-Code_Block Q_4104 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nIDEA B-Application IDEA O\nsay\tO\tsay\tO\n{ B-Code_Block { O\n} B-Code_Block } O\nca\tO\tca\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nhash B-Class hash O\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n\t\nJSDoc B-Language JSDoc O\nstyle\tO\tstyle\tO\nwas\tO\twas\tO\npicked\tO\tpicked\tO\nup\tO\tup\tO\nfrom\tO\tfrom\tO\nZimbra B-Application Zimbra O\nfrontend\tO\tfrontend\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nDwtComposite B-Variable DwtComposite O\nconstructor\tO\tconstructor\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nitself\tO\titself\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13016890\tO\t13016890\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13016890/\tO\thttps://stackoverflow.com/questions/13016890/\tO\n\t\n\t\nWhat\tO\tWhat\tO\ncode\tO\tcode\tO\nquality\tO\tquality\tO\n/\tO\t/\tO\ncode\tO\tcode\tO\ncoverage\tO\tcoverage\tO\ntools\tO\ttools\tO\nare\tO\tare\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nJasmine B-Library Jasmine O\n?\tO\t?\tO\n\t\nWorking\tO\tWorking\tO\nin\tO\tin\tO\nRails B-Library Rails O\n3.2.2 B-Version 3.2.2 O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13016890\tO\t13016890\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13016890/\tO\thttps://stackoverflow.com/questions/13016890/\tO\n\t\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nJsTestDriver B-Library JsTestDriver O\nand\tO\tand\tO\nthis\tO\tthis\tO\nJasmine B-Library Jasmine O\nadapter\tO\tadapter\tO\nto\tO\tto\tO\nget\tO\tget\tO\ncoverage\tO\tcoverage\tO\nmetrics\tO\tmetrics\tO\n.\tO\t.\tO\n\t\nJSCoverage B-Application JSCoverage O\nis\tO\tis\tO\na\tO\ta\tO\nC B-Language C O\nbased\tO\tbased\tO\ntool\tO\ttool\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\nout\tO\tout\tO\nof\tO\tof\tO\nband\tO\tband\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncommand B-Application command O\nline. I-Application line. O\n.\tO\t.\tO\n\t\nJesCov B-Application JesCov O\nis\tO\tis\tO\na\tO\ta\tO\nJava B-Library Java O\nsolution\tO\tsolution\tO\nthat\tO\tthat\tO\nsupports\tO\tsupports\tO\nJasmine B-Library Jasmine O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncommand B-Application command O\nline I-Application line O\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nfairly\tO\tfairly\tO\nstraight\tO\tstraight\tO\nforward\tO\tforward\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nwith\tO\twith\tO\nRails B-Library Rails O\nif\tO\tif\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nhas\tO\thas\tO\na\tO\ta\tO\nJRE B-Application JRE O\n:\tO\t:\tO\n\t\njava B-Code_Block java B-Code_Block\n-jar I-Code_Block -jar I-Code_Block\njescov-0.0.1.jar I-Code_Block jescov-0.0.1.jar I-Code_Block\none.js I-Code_Block one.js I-Code_Block\ntwo.js I-Code_Block two.js I-Code_Block\nthree.js I-Code_Block three.js I-Code_Block\n\t\nI\tO\tI\tO\nlooked\tO\tlooked\tO\ninto\tO\tinto\tO\nJesCov B-Application JesCov O\nseveral\tO\tseveral\tO\nmonths\tO\tmonths\tO\nago\tO\tago\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nGrails B-Library Grails O\nproject\tO\tproject\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnever\tO\tnever\tO\nactually\tO\tactually\tO\ntried\tO\ttried\tO\nit\tO\tit\tO\nout\tO\tout\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\nhearing\tO\thearing\tO\nyour\tO\tyour\tO\nexperience\tO\texperience\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44181149\tO\t44181149\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44181149/\tO\thttps://stackoverflow.com/questions/44181149/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\npass\tO\tpass\tO\na\tO\ta\tO\nstring B-Data_Type string O\nparameter\tO\tparameter\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nform B-Class form O\nPanel I-Class Panel O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nstring B-Data_Type string O\nparameter\tO\tparameter\tO\ndata\tO\tdata\tO\non\tO\ton\tO\nGWT B-Library GWT O\nform B-Class form O\npanel I-Class panel O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nservlet B-Library servlet O\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nreceive\tO\treceive\tO\npassed\tO\tpassed\tO\nstring B-Data_Type string O\nparameter\tO\tparameter\tO\nusing\tO\tusing\tO\npost\tO\tpost\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nlarge\tO\tlarge\tO\namounts\tO\tamounts\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nservlet B-Library servlet O\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5721 I-Code_Block Q_5721 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44181149\tO\t44181149\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44181149/\tO\thttps://stackoverflow.com/questions/44181149/\tO\n\t\n\t\nUse\tO\tUse\tO\nHidden B-Class Hidden O\nwidget B-User_Interface_Element widget O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncreates\tO\tcreates\tO\n<input B-Code_Block <input B-Code_Block\ntype='hidden'> I-Code_Block type='hidden'> I-Code_Block\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38410109\tO\t38410109\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38410109/\tO\thttps://stackoverflow.com/questions/38410109/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nsystem\tO\tsystem\tO\nso\tO\tso\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nparams\tO\tparams\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n[\tO\t[\tO\ntitle B-HTML_XML_Tag title O\n]\tO\t]\tO\nand\tO\tand\tO\nit\tO\tit\tO\n'll\tO\t'll\tO\nshow\tO\tshow\tO\nmy\tO\tmy\tO\ntitle\tO\ttitle\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nincluded\tO\tincluded\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nalso\tO\talso\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nphp B-Language php O\ncode\tO\tcode\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\nit\tO\tit\tO\nand\tO\tand\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\ndifficult\tO\tdifficult\tO\ngetting\tO\tgetting\tO\nthem\tO\tthem\tO\nboth\tO\tboth\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ninclude B-Function include O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nfile_get_Contents B-Function file_get_Contents O\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\ninclude B-Function include O\n,\tO\t,\tO\nthe\tO\tthe\tO\nparams\tO\tparams\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nfile_get_contents B-Function file_get_contents O\nthe\tO\tthe\tO\nphp B-Language php O\ndoesnt\tO\tdoesnt\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndoesnt\tO\tdoesnt\tO\nshow\tO\tshow\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4837 I-Code_Block Q_4837 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHope\tO\tHope\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13102747\tO\t13102747\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13102747/\tO\thttps://stackoverflow.com/questions/13102747/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\"\tO\t\"\tO\ntagit B-Function tagit O\n\"\tO\t\"\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\n(\tO\t(\tO\npart\tO\tpart\tO\nof\tO\tof\tO\n)\tO\t)\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1247 I-Code_Block Q_1247 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nwise\tO\twise\tO\nmen\tO\tmen\tO\n,\tO\t,\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13102747\tO\t13102747\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13102747/\tO\thttps://stackoverflow.com/questions/13102747/\tO\n\t\n\t\nsince\tO\tsince\tO\nno\tO\tno\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\nloading\tO\tloading\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nthis.Also\tO\tthis.Also\tO\nwhich\tO\twhich\tO\nplugin\tO\tplugin\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\nusing\tO\tusing\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1685 I-Code_Block A_1685 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16528731\tO\t16528731\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16528731/\tO\thttps://stackoverflow.com/questions/16528731/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nAndroid B-Operating_System Android O\nApplication\tO\tApplication\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nrecord\tO\trecord\tO\na\tO\ta\tO\nvideo B-User_Interface_Element video O\nand\tO\tand\tO\n,\tO\t,\tO\nduring\tO\tduring\tO\nrecording\tO\trecording\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\ncapture\tO\tcapture\tO\nframes\tO\tframes\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nemulator B-Application emulator O\n(\tO\t(\tO\nusing\tO\tusing\tO\nEclipse B-Application Eclipse O\nJuno B-Version Juno O\n,\tO\t,\tO\nOpenCV4Android B-Library OpenCV4Android O\nver\tO\tver\tO\n.\tO\t.\tO\n2.4.5 B-Version 2.4.5 O\n,\tO\t,\tO\nand\tO\tand\tO\nandroid-ndk B-Application android-ndk O\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nlogcat B-Application logcat O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1655 I-Code_Block Q_1655 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\nMainActivity.java B-File_Name MainActivity.java O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1656 I-Code_Block Q_1656 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n2)\tO\t2)\tO\njniVideoCapture.cpp B-File_Name jniVideoCapture.cpp O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1657 I-Code_Block Q_1657 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n3)\tO\t3)\tO\nAndroid.mk B-File_Name Android.mk O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1658 I-Code_Block Q_1658 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nmanually\tO\tmanually\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndir\tO\tdir\tO\nlibs B-File_Name libs O\nof\tO\tof\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\nlibopencv_java.so B-File_Name libopencv_java.so O\n,\tO\t,\tO\ntaking\tO\ttaking\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nopencv B-Library opencv O\ntutorial\tO\ttutorial\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\n've\tO\t've\tO\nloaded\tO\tloaded\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\njniVideoCapture B-Class jniVideoCapture O\nin\tO\tin\tO\nthe\tO\tthe\tO\nMainActivity B-File_Name MainActivity O\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nbetter\tO\tbetter\tO\nresults\tO\tresults\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\nis\tO\tis\tO\nautomatically\tO\tautomatically\tO\nremoved\tO\tremoved\tO\nfrom\tO\tfrom\tO\nlibs/ B-File_Name libs/ O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16528731\tO\t16528731\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16528731/\tO\thttps://stackoverflow.com/questions/16528731/\tO\n\t\n\t\nJust\tO\tJust\tO\nadd\tO\tadd\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2137 I-Code_Block A_2137 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nright\tO\tright\tO\nafter\tO\tafter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2138 I-Code_Block A_2138 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\njust\tO\tjust\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nlink\tO\tlink\tO\n(\tO\t(\tO\nstatically\tO\tstatically\tO\n)\tO\t)\tO\nopencv B-Library opencv O\nlibrary\tO\tlibrary\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nmistake\tO\tmistake\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21818346\tO\t21818346\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21818346/\tO\thttps://stackoverflow.com/questions/21818346/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\ntable B-Class table O\n(\tO\t(\tO\nabout\tO\tabout\tO\n40M\tO\t40M\tO\nRows B-Data_Structure Rows O\n)\tO\t)\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nhad\tO\thad\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ncolumns B-Data_Structure columns O\nthat\tO\tthat\tO\nare\tO\tare\tO\n0 B-Value 0 O\nwhich\tO\twhich\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nnull B-Value null O\ninstead\tO\tinstead\tO\nso\tO\tso\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nbetter\tO\tbetter\tO\nkey\tO\tkey\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nwritten\tO\twritten\tO\nscripts\tO\tscripts\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nchop\tO\tchop\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\ninto\tO\tinto\tO\nchunks\tO\tchunks\tO\nof\tO\tof\tO\n10000\tO\t10000\tO\nrecords\tO\trecords\tO\n,\tO\t,\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\noccurance\tO\toccurance\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncolumns B-Data_Structure columns O\nwith\tO\twith\tO\nzero B-Value zero O\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nnull B-Value null O\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2352 I-Code_Block Q_2352 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\ngreat\tO\tgreat\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nfor\tO\tfor\tO\never\tO\tever\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthinking\tO\tthinking\tO\nthe\tO\tthe\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\ntable B-Class table O\nand\tO\tand\tO\ninsert\tO\tinsert\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrename\tO\trename\tO\nit\tO\tit\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nthe\tO\tthe\tO\nold\tO\told\tO\ntable B-Class table O\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncolumns B-Data_Structure columns O\nhaving\tO\thaving\tO\nzero B-Value zero O\n.\tO\t.\tO\n\t\nQuestion\tO\tQuestion\tO\nis\tO\tis\tO\n-\tO\t-\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\na\tO\ta\tO\ninsert\tO\tinsert\tO\ninto\tO\tinto\tO\ntable2 B-Variable table2 O\nselect\tO\tselect\tO\nfrom\tO\tfrom\tO\ntable1 B-Variable table1 O\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ncleanse\tO\tcleanse\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\ntable1 B-Variable table1 O\nbefore\tO\tbefore\tO\nit\tO\tit\tO\ngoes\tO\tgoes\tO\nin\tO\tin\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21818346\tO\t21818346\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21818346/\tO\thttps://stackoverflow.com/questions/21818346/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nusually\tO\tusually\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\n,\tO\t,\tO\nsanitised\tO\tsanitised\tO\n,\tO\t,\tO\ntable B-Class table O\n,\tO\t,\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nDB B-Application DB O\nserver I-Application server O\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nhard\tO\thard\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nother\tO\tother\tO\ntables B-Class tables O\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nforeign B-Variable foreign O\nkeys I-Variable keys O\n,\tO\t,\tO\nindexes B-Variable indexes O\n,\tO\t,\tO\netc\tO\tetc\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ntable B-Class table O\n.\tO\t.\tO\n\t\nWhether\tO\tWhether\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nsanitised\tO\tsanitised\tO\ntable B-Class table O\nwill\tO\twill\tO\nbe\tO\tbe\tO\nquicker\tO\tquicker\tO\nthan\tO\tthan\tO\nupdating\tO\tupdating\tO\nyour\tO\tyour\tO\nexisting\tO\texisting\tO\ntable B-Class table O\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\ntell\tO\ttell\tO\nby\tO\tby\tO\ntrying\tO\ttrying\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21818346\tO\t21818346\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21818346/\tO\thttps://stackoverflow.com/questions/21818346/\tO\n\t\n\t\nDump\tO\tDump\tO\nthe\tO\tthe\tO\npk/clustered B-Variable pk/clustered O\nkey I-Variable key O\nof\tO\tof\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nrecords\tO\trecords\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ntemp\tO\ttemp\tO\ntable B-Class table O\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\njoining\tO\tjoining\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntemp\tO\ttemp\tO\ntable B-Class table O\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nwill\tO\twill\tO\nensure\tO\tensure\tO\nthe\tO\tthe\tO\nlowest\tO\tlowest\tO\nlocking\tO\tlocking\tO\nlevel\tO\tlevel\tO\nand\tO\tand\tO\nquickest\tO\tquickest\tO\naccess\tO\taccess\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nidentity\tO\tidentity\tO\ncolumn B-Data_Structure column O\nto\tO\tto\tO\nthe\tO\tthe\tO\ntemp\tO\ttemp\tO\ntable B-Class table O\n,\tO\t,\tO\nthan\tO\tthan\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nloop\tO\tloop\tO\nthrough\tO\tthrough\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nupdates\tO\tupdates\tO\nin\tO\tin\tO\nbatches\tO\tbatches\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33080954\tO\t33080954\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33080954/\tO\thttps://stackoverflow.com/questions/33080954/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmysql B-Application mysql O\nresult\tO\tresult\tO\nset\tO\tset\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nseveral\tO\tseveral\tO\nrows B-Data_Structure rows O\n,\tO\t,\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nto\tO\tto\tO\ncombine\tO\tcombine\tO\nthe\tO\tthe\tO\nrows B-Data_Structure rows O\nto\tO\tto\tO\nform\tO\tform\tO\none\tO\tone\tO\nrow B-Data_Structure row O\nof\tO\tof\tO\nresults\tO\tresults\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nuniqueness\tO\tuniqueness\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrows B-Data_Structure rows O\n.\tO\t.\tO\n\t\nSay\tO\tSay\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nTable B-Data_Structure Table O\nresult\tO\tresult\tO\n1\tO\t1\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4017 I-Code_Block Q_4017 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nproduce\tO\tproduce\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4018 I-Code_Block Q_4018 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nnormal\tO\tnormal\tO\n\"\tO\t\"\tO\nSELECT B-Code_Block SELECT O\n* I-Code_Block * O\nFROM I-Code_Block FROM O\ncomponent_summary I-Code_Block component_summary B-Code_Block\nWHERE I-Code_Block WHERE O\nlabref='A' I-Code_Block labref='A' B-Code_Block\n\"\tO\t\"\tO\nThen\tO\tThen\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nside\tO\tside\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nbut\tO\tbut\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nworking.\tO\tworking.\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nSuggestions\tO\tSuggestions\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nmysql B-Application mysql O\nfirst\tO\tfirst\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33080954\tO\t33080954\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33080954/\tO\thttps://stackoverflow.com/questions/33080954/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4704 I-Code_Block A_4704 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14943795\tO\t14943795\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14943795/\tO\thttps://stackoverflow.com/questions/14943795/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nCakePHP B-Library CakePHP O\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\npage\tO\tpage\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nforms B-User_Interface_Element forms O\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nform B-Class form O\nupdates\tO\tupdates\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nfield\tO\tfield\tO\non\tO\ton\tO\na\tO\ta\tO\nrecord\tO\trecord\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nforms B-Class forms O\nthrough\tO\tthrough\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\n\"\tO\t\"\tO\nSubmit\tO\tSubmit\tO\nAll\tO\tAll\tO\n\"\tO\t\"\tO\nbutton B-User_Interface_Element button O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nsolutions\tO\tsolutions\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nlest\tO\tlest\tO\nthan\tO\tthan\tO\nsuccessful\tO\tsuccessful\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nfirst\tO\tfirst\tO\nattempt\tO\tattempt\tO\nwas\tO\twas\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\naction\tO\taction\tO\ncalled\tO\tcalled\tO\neditAll B-Function editAll B-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nthat\tO\tthat\tO\ntook\tO\ttook\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nforms\tO\tforms\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\naction\tO\taction\tO\nwithout\tO\twithout\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nhidden\tO\thidden\tO\nform B-Class form O\nthat\tO\tthat\tO\nsaves\tO\tsaves\tO\nall\tO\tall\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nidea\tO\tidea\tO\nwas\tO\twas\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nJavascript B-Language Javascript O\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\niterated\tO\titerated\tO\nover\tO\tover\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nforms\tO\tforms\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nto\tO\tto\tO\nbe\tO\tbe\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\n's\tO\t's\tO\neditAll B-Function editAll B-Code_Block\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nimplementation\tO\timplementation\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nreasonable\tO\treasonable\tO\nway\tO\tway\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nhoping\tO\thoping\tO\nsomeone\tO\tsomeone\tO\ncould\tO\tcould\tO\npoint\tO\tpoint\tO\nme\tO\tme\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndirection\tO\tdirection\tO\nto\tO\tto\tO\nsubmitting\tO\tsubmitting\tO\nmultiple\tO\tmultiple\tO\nforms B-Class forms O\n(\tO\t(\tO\nor\tO\tor\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nmultiple\tO\tmultiple\tO\nforms B-Class forms O\n)\tO\t)\tO\nat\tO\tat\tO\nonce\tO\tonce\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\npage B-User_Interface_Element page O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14943795\tO\t14943795\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14943795/\tO\thttps://stackoverflow.com/questions/14943795/\tO\n\t\n\t\nI\tO\tI\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nALWAYS\tO\tALWAYS\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\n-\tO\t-\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\njust\tO\tjust\tO\nmake\tO\tmake\tO\none\tO\tone\tO\nform B-Class form O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nhoping\tO\thoping\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nindividually\tO\tindividually\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nalong\tO\talong\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nKeep\tO\tKeep\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfields\tO\tfields\tO\nin\tO\tin\tO\none\tO\tone\tO\nform B-Class form O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\neach\tO\teach\tO\nfield\tO\tfield\tO\nhave\tO\thave\tO\na\tO\ta\tO\n'\tO\t'\tO\nsubmitted B-Variable submitted O\n'\tO\t'\tO\nvalue\tO\tvalue\tO\n(\tO\t(\tO\n1 B-Value 1 O\nor\tO\tor\tO\n0 B-Value 0 O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\nclick\tO\tclick\tO\nthe\tO\tthe\tO\nSubmit\tO\tSubmit\tO\nnext\tO\tnext\tO\nto\tO\tto\tO\nan\tO\tan\tO\nindividual\tO\tindividual\tO\nfield\tO\tfield\tO\n,\tO\t,\tO\nturn\tO\tturn\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsubmitted B-Variable submitted O\nvalues\tO\tvalues\tO\nto\tO\tto\tO\n0 B-Value 0 O\nexcept\tO\texcept\tO\nthat\tO\tthat\tO\none\tO\tone\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nsubmit\tO\tsubmit\tO\nthe\tO\tthe\tO\nform B-Class form O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\nclick\tO\tclick\tO\nSubmit\tO\tSubmit\tO\nAll\tO\tAll\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nturn\tO\tturn\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nto\tO\tto\tO\n' B-Value ' O\n1 I-Value 1 O\n' B-Value ' O\nand\tO\tand\tO\nsubmit\tO\tsubmit\tO\nthe\tO\tthe\tO\nform B-Class form O\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nstrip\tO\tstrip\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\n'\tO\t'\tO\nsubmitted B-Variable submitted O\n'\tO\t'\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n1 B-Value 1 O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwould\tO\twould\tO\nstill\tO\tstill\tO\ntake\tO\ttake\tO\nsome\tO\tsome\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nsubmitting\tO\tsubmitting\tO\nmore\tO\tmore\tO\ndata\tO\tdata\tO\nthan\tO\tthan\tO\nis\tO\tis\tO\nnecessary\tO\tnecessary\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\n...\tO\t...\tO\n.\tO\t.\tO\nit\tO\tit\tO\n's\tO\t's\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33943539\tO\t33943539\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33943539/\tO\thttps://stackoverflow.com/questions/33943539/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\na\tO\ta\tO\ncolumn B-Data_Structure column O\ncalled\tO\tcalled\tO\nchildren_ids B-Variable children_ids B-Code_Block\ninside\tO\tinside\tO\na\tO\ta\tO\nsubquery\tO\tsubquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4149 I-Code_Block Q_4149 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\ncount_children B-Variable count_children B-Code_Block\nis\tO\tis\tO\nalways\tO\talways\tO\nNULL B-Value NULL B-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nreplace\tO\treplace\tO\nchildren_ids B-Variable children_ids B-Code_Block\nwith\tO\twith\tO\nsome\tO\tsome\tO\nreal\tO\treal\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4150 I-Code_Block Q_4150 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nan\tO\tan\tO\nouter\tO\touter\tO\ncolumn B-Data_Structure column O\ninside\tO\tinside\tO\na\tO\ta\tO\nsubquery\tO\tsubquery\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33943539\tO\t33943539\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33943539/\tO\thttps://stackoverflow.com/questions/33943539/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nusing\tO\tusing\tO\nfind_in_set() B-Function find_in_set() B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4861 I-Code_Block A_4861 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nfix\tO\tfix\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nstructure\tO\tstructure\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nproper\tO\tproper\tO\njunction B-Data_Structure junction O\ntable I-Data_Structure table O\n.\tO\t.\tO\n\t\nStoring\tO\tStoring\tO\nlists B-Data_Structure lists O\nof\tO\tof\tO\nids\tO\tids\tO\nin\tO\tin\tO\na\tO\ta\tO\ncomma\tO\tcomma\tO\ndelimited\tO\tdelimited\tO\ncolumn B-Data_Structure column O\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nway\tO\tway\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33943539\tO\t33943539\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33943539/\tO\thttps://stackoverflow.com/questions/33943539/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nreplace\tO\treplace\tO\nIn B-Code_Block In O\n( I-Code_Block ( O\nchildren_ids I-Code_Block children_ids O\n) I-Code_Block ) O\nby\tO\tby\tO\nIn B-Code_Block In O\n( I-Code_Block ( O\nselect I-Code_Block select O\nchildren_ids I-Code_Block children_ids O\nfrom I-Code_Block from O\nhotels I-Code_Block hotels O\nhotls1 I-Code_Block hotls1 O\nwhere I-Code_Block where O\nhotels.id I-Code_Block hotels.id O\n= I-Code_Block = O\nhotels1.I I-Code_Block hotels1.I O\n' I-Code_Block ' O\nd I-Code_Block d O\n) I-Code_Block ) O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37338311\tO\t37338311\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37338311/\tO\thttps://stackoverflow.com/questions/37338311/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\neach\tO\teach\tO\nelements\tO\telements\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ntuple B-Data_Structure tuple O\nof\tO\tof\tO\ntwo\tO\ttwo\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlist B-Data_Structure list O\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4668 I-Code_Block Q_4668 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4669 I-Code_Block Q_4669 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37338311\tO\t37338311\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37338311/\tO\thttps://stackoverflow.com/questions/37338311/\tO\n\t\n\t\nUse\tO\tUse\tO\nsplit() B-Function split() B-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5370 I-Code_Block A_5370 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37338311\tO\t37338311\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37338311/\tO\thttps://stackoverflow.com/questions/37338311/\tO\n\t\n\t\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5369 I-Code_Block A_5369 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3016936\tO\t3016936\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3016936/\tO\thttps://stackoverflow.com/questions/3016936/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nobject\tO\tobject\tO\nADBannerView B-Class ADBannerView O\nin\tO\tin\tO\nmy\tO\tmy\tO\nCocos2d B-Library Cocos2d O\ngame\tO\tgame\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nbanner B-User_Interface_Element banner O\napears\tO\tapears\tO\nin\tO\tin\tO\nvertical\tO\tvertical\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\nwhen\tO\twhen\tO\nmy\tO\tmy\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\nin\tO\tin\tO\nlandscape\tO\tlandscape\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_213 I-Code_Block Q_213 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nbanner B-User_Interface_Element banner O\nto\tO\tto\tO\nappear\tO\tappear\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\nin\tO\tin\tO\nhorizontal\tO\thorizontal\tO\n(\tO\t(\tO\nlandscape\tO\tlandscape\tO\nmode\tO\tmode\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nsupport\tO\tsupport\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3016936\tO\t3016936\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3016936/\tO\thttps://stackoverflow.com/questions/3016936/\tO\n\t\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrotate\tO\trotate\tO\nthe\tO\tthe\tO\nframe\tO\tframe\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nmade\tO\tmade\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_334 I-Code_Block A_334 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nM_PI B-Variable M_PI O\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nmath.h B-File_Name math.h O\nin\tO\tin\tO\nthe\tO\tthe\tO\ncocos2d B-Library cocos2d O\nlibrary\tO\tlibrary\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\njust\tO\tjust\tO\npi B-Variable pi O\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nit\tO\tit\tO\non\tO\ton\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nplay\tO\tplay\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n2\tO\t2\tO\nnumbers\tO\tnumbers\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrect\tO\trect\tO\nto\tO\tto\tO\nposition\tO\tposition\tO\nit\tO\tit\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3016936\tO\t3016936\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3016936/\tO\thttps://stackoverflow.com/questions/3016936/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nframe\tO\tframe\tO\nsize\tO\tsize\tO\n&\tO\t&\tO\norigin\tO\torigin\tO\nin\tO\tin\tO\nshouldAutorotateToInterfaceOrientation B-Function shouldAutorotateToInterfaceOrientation O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11639253\tO\t11639253\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11639253/\tO\thttps://stackoverflow.com/questions/11639253/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nconstantly\tO\tconstantly\tO\nfinding\tO\tfinding\tO\nmyself\tO\tmyself\tO\nbuilding\tO\tbuilding\tO\nprograms\tO\tprograms\tO\nwhere\tO\twhere\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmultiple\tO\tmultiple\tO\nscreens B-User_Interface_Element screens O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nconsider\tO\tconsider\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nlayout\tO\tlayout\tO\noffers\tO\toffers\tO\ntwo\tO\ttwo\tO\nbuttons B-User_Interface_Element buttons O\n:\tO\t:\tO\ncreate\tO\tcreate\tO\nfile\tO\tfile\tO\nor\tO\tor\tO\nedit\tO\tedit\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nUpon\tO\tUpon\tO\nclicking\tO\tclicking\tO\none\tO\tone\tO\n,\tO\t,\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nscreen B-User_Interface_Element screen O\nsupporting\tO\tsupporting\tO\nwhatever\tO\twhatever\tO\nbutton B-User_Interface_Element button O\nthey\tO\tthey\tO\npress\tO\tpress\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nthey\tO\tthey\tO\nclick\tO\tclick\tO\na\tO\ta\tO\nback\tO\tback\tO\nbutton B-User_Interface_Element button O\nand\tO\tand\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nthem\tO\tthem\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nscreen B-User_Interface_Element screen O\nof\tO\tof\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwondering\tO\twondering\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nbest\tO\tbest\tO\ndo\tO\tdo\tO\nseparate\tO\tseparate\tO\nmenus B-User_Interface_Element menus O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\nbest\tO\tbest\tO\njust\tO\tjust\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nseparate\tO\tseparate\tO\nmethods\tO\tmethods\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\neach\tO\teach\tO\nscreen B-User_Interface_Element screen O\n,\tO\t,\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\none\tO\tone\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\n(\tO\t(\tO\nlike\tO\tlike\tO\n\"\tO\t\"\tO\nback\tO\tback\tO\n\"\tO\t\"\tO\nbutton B-User_Interface_Element button O\n)\tO\t)\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nthinking\tO\tthinking\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nseeing\tO\tseeing\tO\nas\tO\tas\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nopinions\tO\topinions\tO\non\tO\ton\tO\na\tO\ta\tO\npossibly\tO\tpossibly\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nof\tO\tof\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nscreen B-User_Interface_Element screen O\ndisplayed\tO\tdisplayed\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\nAJ B-User_Name AJ O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11639253\tO\t11639253\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11639253/\tO\thttps://stackoverflow.com/questions/11639253/\tO\n\t\n\t\nBased\tO\tBased\tO\non\tO\ton\tO\nyour\tO\tyour\tO\n2nd\tO\t2nd\tO\ncomment\tO\tcomment\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nusing\tO\tusing\tO\nPanels B-Class Panels O\n.\tO\t.\tO\n\t\nLook\tO\tLook\tO\nat\tO\tat\tO\nusing\tO\tusing\tO\nmultiple\tO\tmultiple\tO\npanels B-Class panels O\nfor\tO\tfor\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nactivities\tO\tactivities\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1509 I-Code_Block A_1509 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEnsure\tO\tEnsure\tO\nall\tO\tall\tO\npanels B-Class panels O\nare\tO\tare\tO\nhidden\tO\thidden\tO\nwhen\tO\twhen\tO\ninitialised\tO\tinitialised\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsimply\tO\tsimply\tO\nswap\tO\tswap\tO\na\tO\ta\tO\npanel B-Class panel O\nfor\tO\tfor\tO\nanother\tO\tanother\tO\none\tO\tone\tO\nupon\tO\tupon\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\nclick\tO\tclick\tO\nevent B-Class event O\nusing\tO\tusing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1510 I-Code_Block A_1510 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlayout B-Class layout O\nyou\tO\tyou\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nalso\tO\talso\tO\nother\tO\tother\tO\ntechniques\tO\ttechniques\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nremoving\tO\tremoving\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\n(\tO\t(\tO\nor\tO\tor\tO\nshowing\tO\tshowing\tO\nand\tO\tand\tO\nhiding\tO\thiding\tO\nmultiple\tO\tmultiple\tO\npanels B-Class panels O\n)\tO\t)\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nBorderLayout B-Class BorderLayout O\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsimple\tO\tsimple\tO\n\"\tO\t\"\tO\nreplace\tO\treplace\tO\n\"\tO\t\"\tO\na\tO\ta\tO\nBorderLayout B-Class BorderLayout O\narea\tO\tarea\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\npanel B-Class panel O\nand\tO\tand\tO\nthen\tO\tthen\tO\nrevalidate\tO\trevalidate\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1511 I-Code_Block A_1511 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\nalso\tO\talso\tO\nthat\tO\tthat\tO\ndifferent\tO\tdifferent\tO\nOperating\tO\tOperating\tO\nSystems\tO\tSystems\tO\n(\tO\t(\tO\nWindows B-Operating_System Windows O\n,\tO\t,\tO\nMac B-Operating_System Mac O\netc\tO\tetc\tO\n)\tO\t)\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\ndifferent\tO\tdifferent\tO\nstyles\tO\tstyles\tO\nthey\tO\tthey\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nadhere\tO\tadhere\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nyou\tO\tyou\tO\nmentioned\tO\tmentioned\tO\na\tO\ta\tO\ntypical\tO\ttypical\tO\nWindows B-Operating_System Windows O\ninstaller B-Application installer O\n;\tO\t;\tO\npeople\tO\tpeople\tO\nhave\tO\thave\tO\ncome\tO\tcome\tO\nto\tO\tto\tO\nexpect\tO\texpect\tO\nan\tO\tan\tO\ninstaller B-Application installer O\nto\tO\tto\tO\nlook\tO\tlook\tO\nand\tO\tand\tO\nwork\tO\twork\tO\nin\tO\tin\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nway\tO\tway\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\non\tO\ton\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nOS\tO\tOS\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\na\tO\ta\tO\ncompletely\tO\tcompletely\tO\ndifferent\tO\tdifferent\tO\nset\tO\tset\tO\nof\tO\tof\tO\nexpectations\tO\texpectations\tO\nand\tO\tand\tO\nlooks\tO\tlooks\tO\n.\tO\t.\tO\n\t\nFurther\tO\tFurther\tO\nreading\tO\treading\tO\n:\tO\t:\tO\n\t\nTutorial\tO\tTutorial\tO\non\tO\ton\tO\nusing\tO\tusing\tO\npanels B-Class panels O\n\t\nJava B-Language Java O\nSE B-Version SE O\n7 I-Version 7 O\n(\tO\t(\tO\nJPanel B-Class JPanel O\nAPI\tO\tAPI\tO\n)\tO\t)\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThis\tO\tThis\tO\ncomes\tO\tcomes\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\npersonal\tO\tpersonal\tO\npreference\tO\tpreference\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninitalise\tO\tinitalise\tO\neverything\tO\teverything\tO\non\tO\ton\tO\nstartup\tO\tstartup\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nquicker\tO\tquicker\tO\nswaps\tO\tswaps\tO\nbetween\tO\tbetween\tO\npanels B-User_Interface_Element panels O\n(\tO\t(\tO\nor\tO\tor\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ncalled\tO\tcalled\tO\nthem\tO\tthem\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nscreens B-User_Interface_Element screens O\n\"\tO\t\"\tO\n)\tO\t)\tO\n,\tO\t,\tO\nOR\tO\tOR\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\nquicker\tO\tquicker\tO\ninital\tO\tinital\tO\nstartup\tO\tstartup\tO\nand\tO\tand\tO\nessentially\tO\tessentially\tO\nhave\tO\thave\tO\n\"\tO\t\"\tO\nlazy B-Algorithm lazy O\nloading I-Algorithm loading O\n\"\tO\t\"\tO\nof\tO\tof\tO\neach\tO\teach\tO\ncomponent\tO\tcomponent\tO\nas\tO\tas\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPersonally\tO\tPersonally\tO\nI\tO\tI\tO\nopt\tO\topt\tO\nfor\tO\tfor\tO\neverything\tO\teverything\tO\nduring\tO\tduring\tO\ninitalisation\tO\tinitalisation\tO\n(\tO\t(\tO\nunless\tO\tunless\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nthings\tO\tthings\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nor\tO\tor\tO\nload\tO\tload\tO\nduring\tO\tduring\tO\nyour\tO\tyour\tO\napplications\tO\tapplications\tO\nstartup\tO\tstartup\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nreally\tO\treally\tO\ncomes\tO\tcomes\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\npersonal\tO\tpersonal\tO\npreference\tO\tpreference\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nedit\tO\tedit\tO\n:\tO\t:\tO\n\t\nSpeaking\tO\tSpeaking\tO\nabout\tO\tabout\tO\nlayouts B-Class layouts O\n,\tO\t,\tO\nperhaps\tO\tperhaps\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nlayout\tO\tlayout\tO\nstyle\tO\tstyle\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nout\tO\tout\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCardLayout B-Class CardLayout O\ntutorial\tO\ttutorial\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\nout\tO\tout\tO\nsomewhat\tO\tsomewhat\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11639253\tO\t11639253\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11639253/\tO\thttps://stackoverflow.com/questions/11639253/\tO\n\t\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscreen B-User_Interface_Element screen O\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nscreen B-User_Interface_Element screen O\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nlike\tO\tlike\tO\nin\tO\tin\tO\na\tO\ta\tO\nwizard B-User_Interface_Element wizard O\n)\tO\t)\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\ndescribed\tO\tdescribed\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39483192\tO\t39483192\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39483192/\tO\thttps://stackoverflow.com/questions/39483192/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nan\tO\tan\tO\nalert B-User_Interface_Element alert O\nbox I-User_Interface_Element box O\nshowing\tO\tshowing\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nwith\tO\twith\tO\nPHP B-Language PHP O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\nalert B-User_Interface_Element alert O\nbox I-User_Interface_Element box O\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nanswer\tO\tanswer\tO\nsuch\tO\tsuch\tO\n\"\tO\t\"\tO\nupdate B-Code_Block update B-Code_Block\nsubject I-Code_Block subject I-Code_Block\nset I-Code_Block set I-Code_Block\nsemester I-Code_Block semester I-Code_Block\n= I-Code_Block = I-Code_Block\n2 I-Code_Block 2 I-Code_Block\nwhere I-Code_Block where I-Code_Block\nid I-Code_Block id I-Code_Block\n= I-Code_Block = I-Code_Block\n171 I-Code_Block 171 I-Code_Block\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nafter\tO\tafter\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\ninto\tO\tinto\tO\nalert B-User_Interface_Element alert O\nbox I-User_Interface_Element box O\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\ni\tO\ti\tO\nget\tO\tget\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nalert B-User_Interface_Element alert O\nbox I-User_Interface_Element box O\nonly\tO\tonly\tO\n\"\tO\t\"\tO\nupdate B-Code_Block update B-Code_Block\nsubject I-Code_Block subject I-Code_Block\nset I-Code_Block set I-Code_Block\n$f I-Code_Block $f I-Code_Block\n= I-Code_Block = I-Code_Block\n$data I-Code_Block $data I-Code_Block\nwhere I-Code_Block where I-Code_Block\nid I-Code_Block id I-Code_Block\n= I-Code_Block = I-Code_Block\n$did I-Code_Block $did I-Code_Block\n\"\tO\t\"\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nupdate\tO\tupdate\tO\nin\tO\tin\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nPHP B-Language PHP O\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4977 I-Code_Block Q_4977 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39483192\tO\t39483192\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39483192/\tO\thttps://stackoverflow.com/questions/39483192/\tO\n\t\n\t\nChange\tO\tChange\tO\nthe\tO\tthe\tO\nquotations\tO\tquotations\tO\n.\tO\t.\tO\n\t\nLearn\tO\tLearn\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nsingle\tO\tsingle\tO\nand\tO\tand\tO\ndouble\tO\tdouble\tO\nquotes\tO\tquotes\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nupdate\tO\tupdate\tO\nusing\tO\tusing\tO\nthat\tO\tthat\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nan\tO\tan\tO\ninvalid\tO\tinvalid\tO\nquery B-Variable query O\nwith\tO\twith\tO\nJavascript B-Language Javascript O\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5702 I-Code_Block A_5702 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nmysql_ B-Class mysql_ O\nextensions I-Class extensions O\nare\tO\tare\tO\ndeprecated\tO\tdeprecated\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nmysqli B-Application mysqli O\nor\tO\tor\tO\nPDO B-Application PDO O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39483192\tO\t39483192\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39483192/\tO\thttps://stackoverflow.com/questions/39483192/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\npassing\tO\tpassing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndeprecated\tO\tdeprecated\tO\nmysql_query B-Function mysql_query B-Code_Block\nfunction\tO\tfunction\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nvalid\tO\tvalid\tO\nsql B-Language sql O\nand\tO\tand\tO\nwould\tO\twould\tO\ncause\tO\tcause\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nyou\tO\tyou\tO\nwere\tO\twere\tO\ntrying\tO\ttrying\tO\nsomething\tO\tsomething\tO\nalong\tO\talong\tO\nthese\tO\tthese\tO\nlines\tO\tlines\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5703 I-Code_Block A_5703 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29483046\tO\t29483046\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29483046/\tO\thttps://stackoverflow.com/questions/29483046/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nHttpClient B-Class HttpClient O\nto\tO\tto\tO\nupload\tO\tupload\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nMicrosoft B-Application Microsoft O\nAzure I-Application Azure O\nBlob I-Application Blob O\nStorage I-Application Storage O\nvia\tO\tvia\tO\ntheir\tO\ttheir\tO\nREST B-Library REST O\napi I-Library api O\nin\tO\tin\tO\nXamarin.iOS B-Application Xamarin.iOS O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nbeen\tO\tbeen\tO\ngoing\tO\tgoing\tO\nalright\tO\talright\tO\nuntil\tO\tuntil\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nEvery\tO\tEvery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nContent-Length B-Variable Content-Length O\nheader\tO\theader\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclient B-Variable client O\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3511 I-Code_Block Q_3511 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\nHttpClient B-Class HttpClient O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3512 I-Code_Block Q_3512 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nTryAddWithoutValidation B-Function TryAddWithoutValidation O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nAdd B-Function Add O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3513 I-Code_Block Q_3513 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nthrown\tO\tthrown\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nheader\tO\theader\tO\nstill\tO\tstill\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nadded\tO\tadded\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29483046\tO\t29483046\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29483046/\tO\thttps://stackoverflow.com/questions/29483046/\tO\n\t\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ninner\tO\tinner\tO\nworkings\tO\tworkings\tO\nof\tO\tof\tO\nCheckName() B-Function CheckName() O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthrowing\tO\tthrowing\tO\nthe\tO\tthe\tO\nexception B-Class exception O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://github.com/mono/mono/blob/master/mcs/class/System.Net.Http/System.Net.Http.Headers/HttpHeaders.cs\tO\thttps://github.com/mono/mono/blob/master/mcs/class/System.Net.Http/System.Net.Http.Headers/HttpHeaders.cs\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4187 I-Code_Block A_4187 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAfter\tO\tAfter\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nsource\tO\tsource\tO\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nContent-Length B-Variable Content-Length B-Code_Block\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nknown_headers B-Variable known_headers B-Code_Block\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\ninternal\tO\tinternal\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nContent-Length B-Variable Content-Length B-Code_Block\nheader\tO\theader\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\na\tO\ta\tO\nlong B-Data_Type long O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nAdd() B-Function Add() O\nmethod\tO\tmethod\tO\nonly\tO\tonly\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nstring B-Data_Type string O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nget\tO\tget\tO\n's\tO\t's\tO\nparsed\tO\tparsed\tO\nto\tO\tto\tO\na\tO\ta\tO\nlong B-Data_Type long O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nvalue\tO\tvalue\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\npassing\tO\tpassing\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nContent-Length B-Variable Content-Length B-Code_Block\nvalue\tO\tvalue\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nlong B-Data_Type long O\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9358136\tO\t9358136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9358136/\tO\thttps://stackoverflow.com/questions/9358136/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\ncontent\tO\tcontent\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndiv B-HTML_XML_Tag div O\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nif\tO\tif\tO\nI\tO\tI\tO\nput\tO\tput\tO\na\tO\ta\tO\ntable B-User_Interface_Element table O\ninside\tO\tinside\tO\nof\tO\tof\tO\na\tO\ta\tO\ndiv B-HTML_XML_Tag div O\nand\tO\tand\tO\nset\tO\tset\tO\na\tO\ta\tO\nwidth B-Variable width O\n(\tO\t(\tB-Code_Block\nwidth:200px B-Code_Block width:200px I-Code_Block\n!\tO\t!\tI-Code_Block\nimportant\tO\timportant\tI-Code_Block\n)\tO\t)\tI-Code_Block\nfor\tO\tfor\tO\nthat\tO\tthat\tO\ndiv B-HTML_XML_Tag div O\nthe\tO\tthe\tO\ntable B-User_Interface_Element table O\nit\tO\tit\tO\nwill\tO\twill\tO\noverwrite\tO\toverwrite\tO\nthat\tO\tthat\tO\ndiv B-HTML_XML_Tag div O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nhow\tO\thow\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nall\tO\tall\tO\ncontent\tO\tcontent\tO\ninside\tO\tinside\tO\nthat\tO\tthat\tO\ndiv B-HTML_XML_Tag div O\n?\tO\t?\tO\n\t\nfiddle B-Application fiddle O\nexample\tO\texample\tO\n:\tO\t:\tO\nhttp://jsfiddle.net/ebG9N/45/\tO\thttp://jsfiddle.net/ebG9N/45/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9358136\tO\t9358136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9358136/\tO\thttps://stackoverflow.com/questions/9358136/\tO\n\t\n\t\nYou\tO\tYou\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nheader B-User_Interface_Element header O\nto\tO\tto\tO\nwhite-space B-Code_Block white-space B-Code_Block\n: I-Code_Block : I-Code_Block\nnowrap I-Code_Block nowrap I-Code_Block\n; I-Code_Block ; I-Code_Block\ntherefore\tO\ttherefore\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\nis\tO\tis\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\nthe\tO\tthe\tO\nheaders B-User_Interface_Element headers O\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nwidth B-Variable width O\nof\tO\tof\tO\nthe\tO\tthe\tO\ntable B-User_Interface_Element table O\nwill\tO\twill\tO\nbe\tO\tbe\tO\nbigger\tO\tbigger\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\ndiv B-HTML_XML_Tag div O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\n,\tO\t,\tO\noverflow B-Code_Block overflow B-Code_Block\n: I-Code_Block : I-Code_Block\nhidden I-Code_Block hidden I-Code_Block\n; I-Code_Block ; I-Code_Block\nto\tO\tto\tO\ncut\tO\tcut\tO\nthe\tO\tthe\tO\noverflowing\tO\toverflowing\tO\nparts\tO\tparts\tO\n,\tO\t,\tO\nor\tO\tor\tO\noverflow B-Code_Block overflow B-Code_Block\n: I-Code_Block : I-Code_Block\nauto I-Code_Block auto I-Code_Block\n; I-Code_Block ; I-Code_Block\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nscrollbar B-User_Interface_Element scrollbar O\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nthem\tO\tthem\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nrendering\tO\trendering\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9358136\tO\t9358136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9358136/\tO\thttps://stackoverflow.com/questions/9358136/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nsolutions\tO\tsolutions\tO\n.\tO\t.\tO\n\t\ni)\tO\ti)\tO\nIF\tO\tIF\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nSTRICTLY\tO\tSTRICTLY\tO\ncontain\tO\tcontain\tO\ntable B-User_Interface_Element table O\nWITHIN\tO\tWITHIN\tO\ndiv B-HTML_XML_Tag div O\nthen\tO\tthen\tO\noverflow:auto B-Code_Block overflow:auto O\n; I-Code_Block ; O\nis\tO\tis\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nii)\tO\tii)\tO\nBUT\tO\tBUT\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\nmind\tO\tmind\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nWRAP\tO\tWRAP\tO\ndiv B-HTML_XML_Tag div O\nto\tO\tto\tO\nthe\tO\tthe\tO\nwidth B-Variable width O\nof\tO\tof\tO\ntable B-User_Interface_Element table O\nthen\tO\tthen\tO\n.\tO\t.\tO\n\t\ndisplay:table B-Code_Block display:table O\n; I-Code_Block ; O\nis\tO\tis\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nGenerally\tO\tGenerally\tO\nits\tO\tits\tO\nbad\tO\tbad\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\ncontain\tO\tcontain\tO\nwider\tO\twider\tO\nelement\tO\telement\tO\nwithin\tO\twithin\tO\nexplicitly\tO\texplicitly\tO\nknown\tO\tknown\tO\nless\tO\tless\tO\nwider\tO\twider\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23467913\tO\t23467913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23467913/\tO\thttps://stackoverflow.com/questions/23467913/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncome\tO\tcome\tO\nacross\tO\tacross\tO\na\tO\ta\tO\nsituation\tO\tsituation\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nam\tO\tam\tO\nreading\tO\treading\tO\na\tO\ta\tO\nsome\tO\tsome\tO\nlog B-File_Type log O\nfile\tO\tfile\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncounting\tO\tcounting\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nlines\tO\tlines\tO\nI\tO\tI\tO\nencountered\tO\tencountered\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2586 I-Code_Block Q_2586 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nread\tO\tread\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nCSV B-File_Type CSV O\n,\tO\t,\tO\nSyslog B-File_Type Syslog O\n,\tO\t,\tO\nor\tO\tor\tO\nany\tO\tany\tO\nother\tO\tother\tO\nwild\tO\twild\tO\nformat\tO\tformat\tO\n)\tO\t)\tO\n,\tO\t,\tO\nit\tO\tit\tO\nruns\tO\truns\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\nand\tO\tand\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\ngenerated\tO\tgenerated\tO\nvia\tO\tvia\tO\na\tO\ta\tO\nmac B-Device mac O\n,\tO\t,\tO\nit\tO\tit\tO\ngoes\tO\tgoes\tO\nhay-wire\tO\thay-wire\tO\nand\tO\tand\tO\nsimply\tO\tsimply\tO\nreports\tO\treports\tO\nback\tO\tback\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nline\tO\tline\tO\nwas\tO\twas\tO\nread\tO\tread\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nmy\tO\tmy\tO\nlog B-File_Type log O\nfile\tO\tfile\tO\nis\tO\tis\tO\nlarge\tO\tlarge\tO\n,\tO\t,\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nthousand\tO\tthousand\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\nlogs\tO\tlogs\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nread\tO\tread\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nopened\tO\topened\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nSublime B-Application Sublime O\nand\tO\tand\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nsee\tO\tsee\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nseparate\tO\tseparate\tO\nlines\tO\tlines\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nviewed\tO\tviewed\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nvia\tO\tvia\tO\nVIM B-Application VIM O\n,\tO\t,\tO\nIt\tO\tIt\tO\ndisplayed\tO\tdisplayed\tO\nonly\tO\tonly\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncharacter\tO\tcharacter\tO\n' B-Value ' O\n^M I-Value ^M O\n' B-Value ' O\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\neach\tO\teach\tO\nline\tO\tline\tO\n(\tO\t(\tO\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nit\tO\tit\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nterminator\tO\tterminator\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nsample\tO\tsample\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\nlines\tO\tlines\tO\nis\tO\tis\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nvim B-Application vim O\nis\tO\tis\tO\ndisplaying\tO\tdisplaying\tO\nthe\tO\tthe\tO\n^M B-Value ^M O\ncharacter\tO\tcharacter\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nline\tO\tline\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nAny\tO\tAny\tO\nsuggestion\tO\tsuggestion\tO\nas\tO\tas\tO\nto\tO\tto\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ntackle\tO\ttackle\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23467913\tO\t23467913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23467913/\tO\thttps://stackoverflow.com/questions/23467913/\tO\n\t\n\t\nBoth\tO\tBoth\tO\nline\tO\tline\tO\nfeed\tO\tfeed\tO\n(\tO\t(\tO\n^J B-Value ^J B-Code_Block\n,\tO\t,\tO\n0x0a B-Value 0x0a O\n)\tO\t)\tO\nand\tO\tand\tO\ncarriage\tO\tcarriage\tO\nreturn\tO\treturn\tO\n(\tO\t(\tO\n^M B-Value ^M B-Code_Block\n,\tO\t,\tO\n0x0d B-Value 0x0d O\n)\tO\t)\tO\nare\tO\tare\tO\nused\tO\tused\tO\nas\tO\tas\tO\nline\tO\tline\tO\nseparators\tO\tseparators\tO\n;\tO\t;\tO\nUnix B-Operating_System Unix O\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n,\tO\t,\tO\n(\tO\t(\tO\nold\tO\told\tO\n)\tO\t)\tO\nMac B-Device Mac O\nthe\tO\tthe\tO\nlatter\tO\tlatter\tO\n,\tO\t,\tO\nWindows B-Operating_System Windows O\nboth\tO\tboth\tO\nin\tO\tin\tO\ncombination\tO\tcombination\tO\n(\tO\t(\tO\nCR-LF B-Value CR-LF O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfile\tO\tfile\tO\ninput\tO\tinput\tO\nlibrary\tO\tlibrary\tO\nthat\tO\tthat\tO\nabstracts\tO\tabstracts\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nabsolutely\tO\tabsolutely\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nthe\tO\tthe\tO\nold\tO\told\tO\nMac B-Device Mac O\nformat\tO\tformat\tO\n(\tO\t(\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nMacOS B-Operating_System MacOS O\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nkernel B-Application kernel O\nis\tO\tis\tO\nUnix-based B-Operating_System Unix-based O\n,\tO\t,\tO\nalso\tO\talso\tO\nuses\tO\tuses\tO\nLF B-Value LF O\n)\tO\t)\tO\n)\tO\t)\tO\n,\tO\t,\tO\ntreat\tO\ttreat\tO\nboth\tO\tboth\tO\nLF B-Value LF O\nand\tO\tand\tO\nCR B-Value CR O\nas\tO\tas\tO\na\tO\ta\tO\nline\tO\tline\tO\nseparator\tO\tseparator\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ncount\tO\tcount\tO\nthe\tO\tthe\tO\nCR-LF B-Value CR-LF O\nused\tO\tused\tO\nby\tO\tby\tO\nWindows B-Operating_System Windows O\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nVim B-Application Vim O\n\t\nWhat\tO\tWhat\tO\nVim B-Application Vim O\ndetects\tO\tdetects\tO\nis\tO\tis\tO\ndetermined\tO\tdetermined\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\n' B-Variable ' B-Code_Block\nfileformats I-Variable fileformats I-Code_Block\n' B-Variable ' B-Code_Block\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\ndetect\tO\tdetect\tO\nMac B-Device Mac O\nas\tO\tas\tO\nwell\tO\twell\tO\nvia\tO\tvia\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3200 I-Code_Block A_3200 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23467913\tO\t23467913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23467913/\tO\thttps://stackoverflow.com/questions/23467913/\tO\n\t\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nproblem\tO\tproblem\tO\neven\tO\teven\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nto\tO\tto\tO\nline\tO\tline\tO\nbreaks\tO\tbreaks\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nreading\tO\treading\tO\nbytes B-Data_Type bytes O\nand\tO\tand\tO\nthen\tO\tthen\tO\ntreating\tO\ttreating\tO\nthose\tO\tthose\tO\nas\tO\tas\tO\ncharacters B-Data_Type characters O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\neffectively\tO\teffectively\tO\nassuming\tO\tassuming\tO\nan\tO\tan\tO\nencoding\tO\tencoding\tO\nof\tO\tof\tO\nISO-8859-1\tO\tISO-8859-1\tO\nwhich\tO\twhich\tO\nmay\tO\tmay\tO\nwell\tO\twell\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\ncorrect\tO\tcorrect\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nInputStreamReader B-Class InputStreamReader B-Code_Block\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nof\tO\tof\tO\noperating\tO\toperating\tO\nsystems\tO\tsystems\tO\nhaving\tO\thaving\tO\ndifferent\tO\tdifferent\tO\nline\tO\tline\tO\nbreaks.\tO\tbreaks.\tO\n.\tO\t.\tO\nuse\tO\tuse\tO\nBufferedReader.readLine() B-Function BufferedReader.readLine() B-Code_Block\nto\tO\tto\tO\nread\tO\tread\tO\na\tO\ta\tO\nline\tO\tline\tO\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nhandles\tO\thandles\tO\nline\tO\tline\tO\nbreaks\tO\tbreaks\tO\nof\tO\tof\tO\n\\n B-Value \\n B-Code_Block\n,\tO\t,\tO\n\\r B-Value \\r B-Code_Block\nor\tO\tor\tO\n\\r\\n B-Value \\r\\n B-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nwould\tO\twould\tO\nbecome\tO\tbecome\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3199 I-Code_Block A_3199 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44303105\tO\t44303105\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44303105/\tO\thttps://stackoverflow.com/questions/44303105/\tO\n\t\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nimplemented\tO\timplemented\tO\na\tO\ta\tO\nprotected\tO\tprotected\tO\narea\tO\tarea\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nWebsite\tO\tWebsite\tO\n(\tO\t(\tO\nwith\tO\twith\tO\numbraco B-Application umbraco O\n)\tO\t)\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\na\tO\ta\tO\nLogin\tO\tLogin\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\na\tO\ta\tO\npage B-User_Interface_Element page O\nthat\tO\tthat\tO\nnormal\tO\tnormal\tO\nusers\tO\tusers\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nLogin B-Application Login O\nSnippet I-Application Snippet O\nand\tO\tand\tO\nthe\tO\tthe\tO\nLogin B-Application Login O\nStatus I-Application Status O\nSnippet I-Application Snippet O\nMacro\tO\tMacro\tO\nthat\tO\tthat\tO\numbraco B-Application umbraco O\nprovides\tO\tprovides\tO\n.\tO\t.\tO\n\t\nLike\tO\tLike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5742 I-Code_Block Q_5742 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nshowing\tO\tshowing\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfooter B-User_Interface_Element footer O\nbut\tO\tbut\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\nit\tO\tit\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nvisible\tO\tvisible\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nvisible\tO\tvisible\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\non\tO\ton\tO\na\tO\ta\tO\npage B-User_Interface_Element page O\nthat\tO\tthat\tO\nis\tO\tis\tO\nprotected\tO\tprotected\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44303105\tO\t44303105\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44303105/\tO\thttps://stackoverflow.com/questions/44303105/\tO\n\t\n\t\nI\tO\tI\tO\nsimply\tO\tsimply\tO\nverified\tO\tverified\tO\nif\tO\tif\tO\nhe\tO\the\tO\nis\tO\tis\tO\nLogged\tO\tLogged\tO\nin\tO\tin\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nUmbraco B-Application Umbraco O\nMacro I-Application Macro O\nSnippet I-Application Snippet O\nit\tO\tit\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6384 I-Code_Block A_6384 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27982861\tO\t27982861\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27982861/\tO\thttps://stackoverflow.com/questions/27982861/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncase\tO\tcase\tO\nsuccessfully\tO\tsuccessfully\tO\non\tO\ton\tO\nan\tO\tan\tO\ninbound\tO\tinbound\tO\nemail\tO\temail\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngroup\tO\tgroup\tO\naccount\tO\taccount\tO\nby\tO\tby\tO\nenable\tO\tenable\tO\nEnable\tO\tEnable\tO\n\"\tO\t\"\tO\nCreate\tO\tCreate\tO\nCase\tO\tCase\tO\nfrom\tO\tfrom\tO\nEmail\tO\tEmail\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\nset\tO\tset\tO\nup\tO\tup\tO\n,\tO\t,\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nrecord\tO\trecord\tO\nin\tO\tin\tO\ncustom\tO\tcustom\tO\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nwhere\tO\twhere\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nwrite\tO\twrite\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nCE B-Application CE O\n6.5.17 B-Version 6.5.17 O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27982861\tO\t27982861\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27982861/\tO\thttps://stackoverflow.com/questions/27982861/\tO\n\t\n\t\nThe\tO\tThe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nafter\tO\tafter\tO\nsave\tO\tsave\tO\nlogic B-Library logic O\nhook I-Library hook O\non\tO\ton\tO\nthe\tO\tthe\tO\nEmail B-Class Email O\nmodule\tO\tmodule\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nrecord\tO\trecord\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nfor\tO\tfor\tO\n\"\tO\t\"\tO\nCreate\tO\tCreate\tO\nCase\tO\tCase\tO\nfrom\tO\tfrom\tO\nEmail\tO\tEmail\tO\n\"\tO\t\"\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nleft\tO\tleft\tO\nunchecked\tO\tunchecked\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1840505\tO\t1840505\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1840505/\tO\thttps://stackoverflow.com/questions/1840505/\tO\n\t\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nnested\tO\tnested\tO\ndiv B-HTML_XML_Tag div O\nstructure\tO\tstructure\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nlevel\tO\tlevel\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nshould\tO\tshould\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\njQuery B-Library jQuery O\n.load\tO\t.load\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nworks\tO\tworks\tO\nonly\tO\tonly\tO\nwith\tO\twith\tO\nsimple\tO\tsimple\tO\ndivs(non-nested).. B-HTML_XML_Tag divs(non-nested).. O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_115 I-Code_Block Q_115 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOk\tO\tOk\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nstuff\tO\tstuff\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_116 I-Code_Block Q_116 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1840505\tO\t1840505\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1840505/\tO\thttps://stackoverflow.com/questions/1840505/\tO\n\t\n\t\nAssuming\tO\tAssuming\tO\nthe\tO\tthe\tO\n2nd\tO\t2nd\tO\nlevel\tO\tlevel\tO\ndiv B-HTML_XML_Tag div O\nhas\tO\thas\tO\nand\tO\tand\tO\nid B-HTML_XML_Tag id O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_174 I-Code_Block A_174 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nElse\tO\tElse\tO\nchange\tO\tchange\tO\nselector\tO\tselector\tO\naccordingly\tO\taccordingly\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nnormally\tO\tnormally\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nfirst\tO\tfirst\tO\nchild\tO\tchild\tO\ndiv B-HTML_XML_Tag div O\nof\tO\tof\tO\n#div_1 B-Code_Block #div_1 B-Code_Block\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_175 I-Code_Block A_175 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBTW\tO\tBTW\tO\n.\tO\t.\tO\n\t\n:\tO\t:\tO\nNote\tO\tNote\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nown\tO\town\tO\npage B-User_Interface_Element page O\n(\tO\t(\tO\ncross-domain\tO\tcross-domain\tO\nrequests\tO\trequests\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nsupported\tO\tsupported\tO\nwith\tO\twith\tO\najax B-Library ajax O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1840505\tO\t1840505\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1840505/\tO\thttps://stackoverflow.com/questions/1840505/\tO\n\t\n\t\nFirstly\tO\tFirstly\tO\n,\tO\t,\tO\nloading\tO\tloading\tO\ndata\tO\tdata\tO\nwith\tO\twith\tO\nAJAX B-Function AJAX O\nwill\tO\twill\tO\nonly\tO\tonly\tO\nwork\tO\twork\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nis\tO\tis\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndomain\tO\tdomain\tO\n.\tO\t.\tO\n\t\n\"\tO\t\"\tO\nremote\tO\tremote\tO\nsite\tO\tsite\tO\n\"\tO\t\"\tO\nindicates\tO\tindicates\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nstuff\tO\tstuff\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\ndomain\tO\tdomain\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nto\tO\tto\tO\nget\tO\tget\tO\nround\tO\tround\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhave\tO\thave\tO\na\tO\ta\tO\nserver-side\tO\tserver-side\tO\nscript\tO\tscript\tO\nthat\tO\tthat\tO\nfetches\tO\tfetches\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nand\tO\tand\tO\nreturns\tO\treturns\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nPHP B-Language PHP O\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncURL B-Library cURL O\nfunctions\tO\tfunctions\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nplenty\tO\tplenty\tO\nof\tO\tof\tO\nquestions\tO\tquestions\tO\nhere\tO\there\tO\nabout\tO\tabout\tO\nthat\tO\tthat\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nsearch\tO\tsearch\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nchosen\tO\tchosen\tO\nlanguage\tO\tlanguage\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_173 I-Code_Block A_173 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26823055\tO\t26823055\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26823055/\tO\thttps://stackoverflow.com/questions/26823055/\tO\n\t\n\t\ni\tO\ti\tO\nseen\tO\tseen\tO\nsome\tO\tsome\tO\ntools\tO\ttools\tO\non\tO\ton\tO\ngithub B-Website github O\nand\tO\tand\tO\nnow\tO\tnow\tO\nvector B-Class vector O\ndrawables I-Class drawables O\nin\tO\tin\tO\nLolipop B-Version Lolipop O\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nsvg B-File_Type svg O\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nmajor\tO\tmajor\tO\nadvantage\tO\tadvantage\tO\ni\tO\ti\tO\nfind\tO\tfind\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nsvg B-File_Type svg O\nfiles\tO\tfiles\tO\nshould\tO\tshould\tO\nstretch\tO\tstretch\tO\nand\tO\tand\tO\nkeep\tO\tkeep\tO\nproper\tO\tproper\tO\nscaling\tO\tscaling\tO\nthus\tO\tthus\tO\nlooking\tO\tlooking\tO\nsharp\tO\tsharp\tO\nafter\tO\tafter\tO\nstretching\tO\tstretching\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwith\tO\twith\tO\nsvg B-File_Type svg O\nfiles\tO\tfiles\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nkeep\tO\tkeep\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nimages B-User_Interface_Element images O\nin\tO\tin\tO\nthe\tO\tthe\tO\ndrawable\tO\tdrawable\tO\nfolder\tO\tfolder\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nfiltering\tO\tfiltering\tO\nthem\tO\tthem\tO\nout\tO\tout\tO\nby\tO\tby\tO\ndensity\tO\tdensity\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmakes\tO\tmakes\tO\nthe\tO\tthe\tO\napk B-File_Type apk O\nfile\tO\tfile\tO\nsmaller\tO\tsmaller\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ndesirable\tO\tdesirable\tO\n.\tO\t.\tO\n\t\nQuestion\tO\tQuestion\tO\n:\tO\t:\tO\nWould\tO\tWould\tO\nthere\tO\tthere\tO\nbe\tO\tbe\tO\nany\tO\tany\tO\nreason\tO\treason\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\nPNG B-File_Type PNG O\nimages B-User_Interface_Element images O\nin\tO\tin\tO\nnative\tO\tnative\tO\nandroid B-Operating_System android O\nproject\tO\tproject\tO\nand\tO\tand\tO\nconvert\tO\tconvert\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nsvg B-File_Type svg O\nfiles\tO\tfiles\tO\nwith\tO\twith\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nan\tO\tan\tO\nonline\tO\tonline\tO\nconverter\tO\tconverter\tO\ntool\tO\ttool\tO\nlike\tO\tlike\tO\nvector B-Application vector O\nmagic I-Application magic O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26823055\tO\t26823055\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26823055/\tO\thttps://stackoverflow.com/questions/26823055/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nseveral\tO\tseveral\tO\nreasons\tO\treasons\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nvector B-Class vector O\ndrawables I-Class drawables O\nare\tO\tare\tO\nonly\tO\tonly\tO\nsupported\tO\tsupported\tO\non\tO\ton\tO\nAndroid B-Operating_System Android O\n5.0 B-Version 5.0 O\n+\tO\t+\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\ntargeting\tO\ttargeting\tO\nLollipop B-Version Lollipop O\nand\tO\tand\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nstill\tO\tstill\tO\nneed\tO\tneed\tO\nPNGs B-File_Type PNGs O\nfor\tO\tfor\tO\nolder\tO\tolder\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nAndroid B-Operating_System Android O\n.\tO\t.\tO\n\t\nSecond\tO\tSecond\tO\n,\tO\t,\tO\nconverting\tO\tconverting\tO\nraster\tO\traster\tO\nto\tO\tto\tO\nvector\tO\tvector\tO\nwill\tO\twill\tO\nin\tO\tin\tO\nmost\tO\tmost\tO\ncases\tO\tcases\tO\nyield\tO\tyield\tO\npoor\tO\tpoor\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nstart\tO\tstart\tO\nby\tO\tby\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nassets\tO\tassets\tO\nas\tO\tas\tO\nvector\tO\tvector\tO\nimages B-User_Interface_Element images O\nin\tO\tin\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nlike\tO\tlike\tO\nIllustrator B-Application Illustrator O\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nexport\tO\texport\tO\nto\tO\tto\tO\nSVG B-File_Type SVG O\nfor\tO\tfor\tO\nconversion\tO\tconversion\tO\nto\tO\tto\tO\nVectorDrawable B-Class VectorDrawable O\nformat\tO\tformat\tO\nand\tO\tand\tO\nexport\tO\texport\tO\nto\tO\tto\tO\nPNG B-File_Type PNG O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nDPI\tO\tDPI\tO\nbuckets\tO\tbuckets\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\non\tO\ton\tO\npre-5.0 B-Version pre-5.0 O\ndevices\tO\tdevices\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33091991\tO\t33091991\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33091991/\tO\thttps://stackoverflow.com/questions/33091991/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\ncomparison\tO\tcomparison\tO\noperators\tO\toperators\tO\non\tO\ton\tO\nmy\tO\tmy\tO\npostgresql B-Library postgresql O\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nrange\tO\trange\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nMockTable B-Variable MockTable O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4019 I-Code_Block Q_4019 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEach\tO\tEach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfields\tO\tfields\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nare\tO\tare\tO\nlabeled\tO\tlabeled\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSQL B-Language SQL O\nserver B-Application server O\nas\tO\tas\tO\ntext\tO\ttext\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\npull\tO\tpull\tO\ninformation\tO\tinformation\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4020 I-Code_Block Q_4020 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThus\tO\tThus\tO\nrecieving\tO\trecieving\tO\nthe\tO\tthe\tO\n1st\tO\t1st\tO\nand\tO\tand\tO\n3rd\tO\t3rd\tO\ncolumn B-Data_Structure column O\nback\tO\tback\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nInput\tO\tInput\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33091991\tO\t33091991\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33091991/\tO\thttps://stackoverflow.com/questions/33091991/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\ncolumn B-Data_Structure column O\nnames\tO\tnames\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nall-lowercase\tO\tall-lowercase\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\nspecify\tO\tspecify\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\ndouble\tO\tdouble\tO\nquotes\tO\tquotes\tO\nand\tO\tand\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nsame\tO\tsame\tO\ncapitalization\tO\tcapitalization\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable B-Data_Structure table O\n:\tO\t:\tO\n\t\nSELECT B-Code_Block SELECT B-Code_Block\n* I-Code_Block * I-Code_Block\nFROM I-Code_Block FROM I-Code_Block\n\" I-Code_Block \" I-Code_Block\nMockTable I-Code_Block MockTable I-Code_Block\n\" I-Code_Block \" I-Code_Block\nWHERE I-Code_Block WHERE I-Code_Block\n\" I-Code_Block \" I-Code_Block\nHours I-Code_Block Hours I-Code_Block\n\" I-Code_Block \" I-Code_Block\n> I-Code_Block > I-Code_Block\n25 I-Code_Block 25 I-Code_Block\n; I-Code_Block ; I-Code_Block\n\t\nNote\tO\tNote\tO\nthis\tO\tthis\tO\nsays\tO\tsays\tO\n\" B-Code_Block \" B-Code_Block\nHours I-Code_Block Hours I-Code_Block\n\" I-Code_Block \" I-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n\" B-Code_Block \" B-Code_Block\nHOURS I-Code_Block HOURS I-Code_Block\n\" I-Code_Block \" I-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\nreason\tO\treason\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nall-lowercase\tO\tall-lowercase\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ncolumn B-Data_Structure column O\nand\tO\tand\tO\ntable B-Data_Structure table O\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nlowercase\tO\tlowercase\tO\nyou\tO\tyou\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ndouble-quotes B-Value double-quotes O\naround\tO\taround\tO\nthe\tO\tthe\tO\ncolumn B-Data_Structure column O\nnames\tO\tnames\tO\nunless\tO\tunless\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\na\tO\ta\tO\nreserved\tO\treserved\tO\nword\tO\tword\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nmean\tO\tmean\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ncontext\tO\tcontext\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33091991\tO\t33091991\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33091991/\tO\thttps://stackoverflow.com/questions/33091991/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\ncompare\tO\tcompare\tO\nnumbers\tO\tnumbers\tO\nas\tO\tas\tO\nstrings B-Data_Type strings O\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\nalphabetical\tO\talphabetical\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmagnitude\tO\tmagnitude\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\nmeaningless\tO\tmeaningless\tO\n,\tO\t,\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nis\tO\tis\tO\nmerely\tO\tmerely\tO\na\tO\ta\tO\nword\tO\tword\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n\" B-Value \" O\n25 I-Value 25 O\n\" I-Value \" O\nis\tO\tis\tO\ngreater\tO\tgreater\tO\nthan\tO\tthan\tO\n\" B-Value \" O\n100 I-Value 100 O\n\" I-Value \" O\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\n\" B-Value \" O\n2 I-Value 2 O\n\" I-Value \" O\ncomes\tO\tcomes\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\n\" B-Value \" O\n1 I-Value 1 O\n\" I-Value \" O\nin\tO\tin\tO\nan\tO\tan\tO\nalphabetical\tO\talphabetical\tO\nsense\tO\tsense\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\neither\tO\teither\tO\ncast\tO\tcast\tO\nyour\tO\tyour\tO\n\"\tO\t\"\tO\nHours B-Code_Block Hours O\n\"\tO\t\"\tO\nfield\tO\tfield\tO\nas\tO\tas\tO\ninteger B-Data_Type integer O\n(\tO\t(\tO\nor\tO\tor\tO\nfix\tO\tfix\tO\nthat\tO\tthat\tO\ndamned\tO\tdamned\tO\ntable B-Data_Structure table O\nbecause\tO\tbecause\tO\nnumbers\tO\tnumbers\tO\nin\tO\tin\tO\nstring B-Data_Type string O\nfields\tO\tfields\tO\nis\tO\tis\tO\nnasty\tO\tnasty\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4707 I-Code_Block A_4707 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nObviously\tO\tObviously\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\nsome\tO\tsome\tO\ndifficult\tO\tdifficult\tO\nproblems\tO\tproblems\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nrecords\tO\trecords\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tB-Code_Block\nHours B-Code_Block Hours I-Code_Block\n\"\tO\t\"\tI-Code_Block\nfield\tO\tfield\tO\ncontains\tO\tcontains\tO\nnon-numeric\tO\tnon-numeric\tO\ncharacters\tO\tcharacters\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\narises\tO\tarises\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31102878\tO\t31102878\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31102878/\tO\thttps://stackoverflow.com/questions/31102878/\tO\n\t\n\t\nin\tO\tin\tO\nmy\tO\tmy\tO\nrouting.yml B-File_Name routing.yml O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3745 I-Code_Block Q_3745 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\npage B-Variable page O\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ninteger B-Data_Type integer O\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nput\tO\tput\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3746 I-Code_Block Q_3746 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nbig\tO\tbig\tO\nproblem\tO\tproblem\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nput\tO\tput\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3747 I-Code_Block Q_3747 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nit\tO\tit\tO\nworks\tO\tworks\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\ngood\tO\tgood\tO\nthing\tO\tthing\tO\nfor\tO\tfor\tO\nsearch\tO\tsearch\tO\ncrawler\tO\tcrawler\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\n{\tO\t{\tO\npage B-Variable page O\n}\tO\t}\tO\nvalue\tO\tvalue\tO\nrestrict\tO\trestrict\tO\nto\tO\tto\tO\ninteger B-Data_Type integer O\nor\tO\tor\tO\nnumbers\tO\tnumbers\tO\n?\tO\t?\tO\n\t\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31102878\tO\t31102878\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31102878/\tO\thttps://stackoverflow.com/questions/31102878/\tO\n\t\n\t\nDo\tO\tDo\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4425 I-Code_Block A_4425 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20213956\tO\t20213956\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20213956/\tO\thttps://stackoverflow.com/questions/20213956/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntoy\tO\ttoy\tO\ngraph B-Data_Structure graph O\nthat\tO\tthat\tO\nrepresents\tO\trepresents\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\na\tO\ta\tO\nforum\tO\tforum\tO\nthread\tO\tthread\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2146 I-Code_Block Q_2146 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nno\tO\tno\tO\nlayout\tO\tlayout\tO\nthat\tO\tthat\tO\nplaces\tO\tplaces\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nvertex B-Data_Structure vertex O\n(\tO\t(\tO\nid B-Variable id O\n0\tO\t0\tO\n, B-Value , O\nlabel B-Variable label O\nA B-Value A O\n)\tO\t)\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nand\tO\tand\tO\ngrows\tO\tgrows\tO\ndownwards\tO\tdownwards\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20213956\tO\t20213956\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20213956/\tO\thttps://stackoverflow.com/questions/20213956/\tO\n\t\n\t\nOK\tO\tOK\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\njust\tO\tjust\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nReingold-Tilford\tO\tReingold-Tilford\tO\nlayout\tO\tlayout\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\nhttp://igraph.sourceforge.net/doc/python/igraph.Graph-class.html#layout_reingold_tilford\tO\thttp://igraph.sourceforge.net/doc/python/igraph.Graph-class.html#layout_reingold_tilford\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2697 I-Code_Block A_2697 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43061034\tO\t43061034\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43061034/\tO\thttps://stackoverflow.com/questions/43061034/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nnative\tO\tnative\tO\nmodule\tO\tmodule\tO\n,\tO\t,\tO\nand\tO\tand\tO\ni\tO\ti\tO\nwould\tO\twould\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\ncolor\tO\tcolor\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\n<Text B-Code_Block <Text B-Code_Block\nstyle={{color: I-Code_Block style={{color: I-Code_Block\n'blue'}} I-Code_Block 'blue'}} I-Code_Block\n/> I-Code_Block /> I-Code_Block\nchild\tO\tchild\tO\ncomponent\tO\tcomponent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nsuccessfully\tO\tsuccessfully\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ngetHighlightColor B-Function getHighlightColor B-Code_Block\nthat\tO\tthat\tO\nmatch\tO\tmatch\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n<Text B-Code_Block <Text B-Code_Block\nselectionColor='red'></Text>, I-Code_Block selectionColor='red'></Text>, I-Code_Block\nbut\tO\tbut\tO\ni\tO\ti\tO\ndon't\tO\tdon't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\ncolor\tO\tcolor\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nstyle\tO\tstyle\tO\nprop\tO\tprop\tO\n<Text B-Code_Block <Text B-Code_Block\nstyle={{color: I-Code_Block style={{color: I-Code_Block\n'blue'}}></Text> I-Code_Block 'blue'}}></Text> I-Code_Block\n,\tO\t,\tO\ni\tO\ti\tO\nbelieve\tO\tbelieve\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\non\tO\ton\tO\ngetCurrentTextColor B-Function getCurrentTextColor B-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nsetTextColor B-Function setTextColor B-Code_Block\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\nfixed\tO\tfixed\tO\nstyle\tO\tstyle\tO\ncolor\tO\tcolor\tO\nprop\tO\tprop\tO\non\tO\ton\tO\nreact\tO\treact\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nme\tO\tme\tO\npost\tO\tpost\tO\nsome\tO\tsome\tO\nsnippets\tO\tsnippets\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nunderstand\tO\tunderstand\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nam\tO\tam\tO\ntalking\tO\ttalking\tO\nabout\tO\tabout\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5506 I-Code_Block Q_5506 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSomeComponent.js B-File_Name SomeComponent.js O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5507 I-Code_Block Q_5507 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthose\tO\tthose\tO\nstyles\tO\tstyles\tO\nproperties\tO\tproperties\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\nside\tO\tside\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\nexactly\tO\texactly\tO\nreact-native B-Library react-native O\ndeals\tO\tdeals\tO\nwith\tO\twith\tO\nTextView B-Class TextView O\nand\tO\tand\tO\nStyleSheets B-Class StyleSheets O\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23841820\tO\t23841820\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23841820/\tO\thttps://stackoverflow.com/questions/23841820/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmade\tO\tmade\tO\na\tO\ta\tO\ndmg B-File_Type dmg O\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nuploader\tO\tuploader\tO\ndesktop B-Device desktop O\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndmg B-File_Type dmg O\nis\tO\tis\tO\nported\tO\tported\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\nfrom\tO\tfrom\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\ndownload\tO\tdownload\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nSafari B-Application Safari O\nBrowser I-Application Browser O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndownloads B-File_Name downloads O\nfolder\tO\tfolder\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nexecute\tO\texecute\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthrows\tO\tthrows\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nstating\tO\tstating\tO\nits\tO\tits\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nunidentified\tO\tunidentified\tO\ndeveloper\tO\tdeveloper\tO\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\n,\tO\t,\tO\nin\tO\tin\tO\nSecurity\tO\tSecurity\tO\n&\tO\t&\tO\nPrivacy\tO\tPrivacy\tO\nsettings\tO\tsettings\tO\n,\tO\t,\tO\ni\tO\ti\tO\nopted\tO\topted\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\ndownload\tO\tdownload\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nexpect\tO\texpect\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nsetting\tO\tsetting\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nmodifications\tO\tmodifications\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\ninorder\tO\tinorder\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ndmg B-File_Type dmg O\nto\tO\tto\tO\nrun\tO\trun\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nsuch\tO\tsuch\tO\nerrors/warnings\tO\terrors/warnings\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nnovice\tO\tnovice\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nkindly\tO\tkindly\tO\nrequesting\tO\trequesting\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23841820\tO\t23841820\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23841820/\tO\thttps://stackoverflow.com/questions/23841820/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ninstall\tO\tinstall\tO\nan\tO\tan\tO\nunverified\tO\tunverified\tO\napp\tO\tapp\tO\non\tO\ton\tO\nmac B-Device mac O\nby\tO\tby\tO\nright-clicking\tO\tright-clicking\tO\nthe\tO\tthe\tO\nDMG B-File_Type DMG O\nand\tO\tand\tO\nselecting\tO\tselecting\tO\nopen\tO\topen\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\npop\tO\tpop\tO\nup\tO\tup\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nopposed\tO\topposed\tO\nto\tO\tto\tO\ndoubled\tO\tdoubled\tO\nclicking\tO\tclicking\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\noption\tO\toption\tO\nto\tO\tto\tO\ncontinue\tO\tcontinue\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\nfor\tO\tfor\tO\nscreenshots\tO\tscreenshots\tO\n-\tO\t-\tO\nhttp://osxdaily.com/2012/07/27/app-cant-be-opened-because-it-is-from-an-unidentified-developer/\tO\thttp://osxdaily.com/2012/07/27/app-cant-be-opened-because-it-is-from-an-unidentified-developer/\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nother\tO\tother\tO\noption\tO\toption\tO\nis\tO\tis\tO\nto\tO\tto\tO\npay\tO\tpay\tO\nApple B-Website Apple O\nto\tO\tto\tO\nbecome\tO\tbecome\tO\na\tO\ta\tO\nverified\tO\tverified\tO\ndeveloper\tO\tdeveloper\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nreviewed\tO\treviewed\tO\nand\tO\tand\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nMac B-Device Mac O\napp\tO\tapp\tO\nstore\tO\tstore\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39642650\tO\t39642650\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39642650/\tO\thttps://stackoverflow.com/questions/39642650/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nGET\tO\tGET\tO\nrequest\tO\trequest\tO\nin\tO\tin\tO\nPOSTMAN B-Application POSTMAN O\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nchild\tO\tchild\tO\nentity\tO\tentity\tO\n(\tO\t(\tO\nTown B-Class Town O\n)\tO\t)\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\nentity\tO\tentity\tO\n(\tO\t(\tO\nProvince B-Class Province O\n)\tO\t)\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nshown\tO\tshown\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJSON B-Data_Type JSON O\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4999 I-Code_Block Q_4999 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\nentities\tO\tentities\tO\n.\tO\t.\tO\n\t\nParent\tO\tParent\tO\nClass\tO\tClass\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5000 I-Code_Block Q_5000 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nChild\tO\tChild\tO\nClass\tO\tClass\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5001 I-Code_Block Q_5001 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nresponse\tO\tresponse\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5002 I-Code_Block Q_5002 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nexpecting\tO\texpecting\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5003 I-Code_Block Q_5003 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nObjects\tO\tObjects\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nused\tO\tused\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nSpring-data-jpa B-Library Spring-data-jpa O\nentities\tO\tentities\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nsimple\tO\tsimple\tO\nPOJOs B-Data_Type POJOs O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nEntities\tO\tEntities\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39642650\tO\t39642650\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39642650/\tO\thttps://stackoverflow.com/questions/39642650/\tO\n\t\n\t\nSwap\tO\tSwap\tO\n@JsonBackReference B-Class @JsonBackReference B-Code_Block\nand\tO\tand\tO\n@JsonManagedReference B-Class @JsonManagedReference B-Code_Block\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5720 I-Code_Block A_5720 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19525049\tO\t19525049\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19525049/\tO\thttps://stackoverflow.com/questions/19525049/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\n256\tO\t256\tO\nfunctions\tO\tfunctions\tO\nthat\tO\tthat\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n\t\nBasically\tO\tBasically\tO\nI\tO\tI\tO\nwant\tO\twant\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nable\tO\table\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\ncase-insensitively\tO\tcase-insensitively\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\nI\tO\tI\tO\nwant\tO\twant\tO\napplepie() B-Function applepie() B-Code_Block\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ncalled\tO\tcalled\tO\ncase-insensitively\tO\tcase-insensitively\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2051 I-Code_Block Q_2051 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nmost\tO\tmost\tO\nstraightforward\tO\tstraightforward\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndeclare\tO\tdeclare\tO\nanother\tO\tanother\tO\n255\tO\t255\tO\nfunctions\tO\tfunctions\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nletter\tO\tletter\tO\nin\tO\tin\tO\ncaps\tO\tcaps\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2052 I-Code_Block Q_2052 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2053 I-Code_Block Q_2053 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nall\tO\tall\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2054 I-Code_Block Q_2054 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nin\tO\tin\tO\ntotal\tO\ttotal\tO\n256\tO\t256\tO\n(\tO\t(\tO\n2\tO\t2\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npower\tO\tpower\tO\nof\tO\tof\tO\n8\tO\t8\tO\n)\tO\t)\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nquickly\tO\tquickly\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nmore\tO\tmore\tO\n\"\tO\t\"\tO\nbuilt-in\tO\tbuilt-in\tO\n\"\tO\t\"\tO\napproach\tO\tapproach\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2055 I-Code_Block Q_2055 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2056 I-Code_Block Q_2056 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthat\tO\tthat\tO\ncan\tO\tcan\tO\npasses\tO\tpasses\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nto\tO\tto\tO\napplepie B-Function applepie O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nfor B-Code_Block for O\nloop\tO\tloop\tO\nfor B-Code_Block for B-Code_Block\nB I-Code_Block B I-Code_Block\nin I-Code_Block in I-Code_Block\n\" I-Code_Block \" I-Code_Block\n$@ I-Code_Block $@ I-Code_Block\n\" I-Code_Block \" I-Code_Block\n; I-Code_Block ; I-Code_Block\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19525049\tO\t19525049\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19525049/\tO\thttps://stackoverflow.com/questions/19525049/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfake\tO\tfake\tO\na\tO\ta\tO\ncase-insensitive\tO\tcase-insensitive\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\nby\tO\tby\tO\ndefining\tO\tdefining\tO\nall-lowercase\tO\tall-lowercase\tO\nfunction\tO\tfunction\tO\nnames\tO\tnames\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nbash B-Language bash B-Code_Block\n's\tO\t's\tO\ntrap\tO\ttrap\tO\nfor\tO\tfor\tO\nmissing\tO\tmissing\tO\ncommand\tO\tcommand\tO\nnames\tO\tnames\tO\n(\tO\t(\tO\nrequires\tO\trequires\tO\nbash B-Language bash B-Code_Block\n4 B-Version 4 O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nyourself\tO\tyourself\tO\non\tO\ton\tO\nOS B-Operating_System OS O\nX I-Operating_System X O\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2593 I-Code_Block A_2593 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\napple B-Function apple B-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nas\tO\tas\tO\nApPlE B-Code_Block ApPlE B-Code_Block\n,\tO\t,\tO\ncommand_not_found_handle B-Function command_not_found_handle B-Code_Block\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\narguments\tO\targuments\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nline\tO\tline\tO\ntakes\tO\ttakes\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nargument\tO\targument\tO\n(\tO\t(\tO\nApPlE B-Code_Block ApPlE B-Code_Block\n)\tO\t)\tO\nand\tO\tand\tO\nlower-cases\tO\tlower-cases\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nit\tO\tit\tO\nattempts\tO\tattempts\tO\nto\tO\tto\tO\nrun\tO\trun\tO\napple B-Code_Block apple B-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\narguments\tO\targuments\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19525049\tO\t19525049\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19525049/\tO\thttps://stackoverflow.com/questions/19525049/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\npretty\tO\tpretty\tO\nobtuse\tO\tobtuse\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndefinitely\tO\tdefinitely\tO\nnot\tO\tnot\tO\na\tO\ta\tO\none-liner\tO\tone-liner\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhere\tO\there\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nin\tO\tin\tO\nbash B-Language bash O\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nhelp\tO\thelp\tO\nfrom\tO\tfrom\tO\nbc B-Code_Block bc B-Code_Block\nand\tO\tand\tO\ntr B-Code_Block tr B-Code_Block\n(\tO\t(\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nosx B-Operating_System osx O\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2597 I-Code_Block A_2597 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n;\tO\t;\tO\n\t\ngets\tO\tgets\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\n\t\nfigures\tO\tfigures\tO\nout\tO\tout\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ncase\tO\tcase\tO\ncombinations\tO\tcombinations\tO\n(\tO\t(\tO\n2^n\tO\t2^n\tO\n)\tO\t)\tO\n\t\nloops\tO\tloops\tO\nover\tO\tover\tO\neach\tO\teach\tO\ncombination\tO\tcombination\tO\n\t\nturns\tO\tturns\tO\nthe\tO\tthe\tO\ncombination\tO\tcombination\tO\nnumber\tO\tnumber\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nstring B-Data_Type string O\nof\tO\tof\tO\nbinary\tO\tbinary\tO\ndigits\tO\tdigits\tO\n\t\nFiddles\tO\tFiddles\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nof\tO\tof\tO\nbinary\tO\tbinary\tO\ndigits\tO\tdigits\tO\nso\tO\tso\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlength\tO\tlength\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\n\t\nindexes\tO\tindexes\tO\nthrough\tO\tthrough\tO\neach\tO\teach\tO\nchar B-Data_Type char O\nof\tO\tof\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\nand\tO\tand\tO\nstring B-Data_Type string O\nof\tO\tof\tO\nbinary\tO\tbinary\tO\ndigits\tO\tdigits\tO\nand\tO\tand\tO\ndoes\tO\tdoes\tO\na\tO\ta\tO\ntoupper() B-Function toupper() O\ncase\tO\tcase\tO\nchange\tO\tchange\tO\nonly\tO\tonly\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nbinary\tO\tbinary\tO\ndigit\tO\tdigit\tO\nis\tO\tis\tO\n1 B-Value 1 O\n\t\nreassembles\tO\treassembles\tO\nthe\tO\tthe\tO\nchars B-Data_Type chars O\nto\tO\tto\tO\na\tO\ta\tO\nstring B-Data_Type string O\n\t\ndoes\tO\tdoes\tO\na\tO\ta\tO\nbash B-Language bash O\nalias\tO\talias\tO\nfrom\tO\tfrom\tO\neach\tO\teach\tO\ncombination\tO\tcombination\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\n\t\nAssumes\tO\tAssumes\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\ndefined\tO\tdefined\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nan\tO\tan\tO\nall-lowercase\tO\tall-lowercase\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12085067\tO\t12085067\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12085067/\tO\thttps://stackoverflow.com/questions/12085067/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ninvoke\tO\tinvoke\tO\nthe\tO\tthe\tO\nRestful B-Library Restful O\nWeb I-Library Web O\nservices\tO\tservices\tO\nusing\tO\tusing\tO\nSpring B-Library Spring O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsearched\tO\tsearched\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nand\tO\tand\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nrestful\tO\trestful\tO\nservice\tO\tservice\tO\nusing\tO\tusing\tO\ndifferent\tO\tdifferent\tO\nannotations\tO\tannotations\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1128 I-Code_Block Q_1128 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\na\tO\ta\tO\nweb.xml B-File_Name web.xml O\n+\tO\t+\tO\n( B-File_Name ( O\nname I-File_Name name O\n) I-File_Name ) O\n-servlet.xml B-File_Name -servlet.xml O\n\t\nAbove\tO\tAbove\tO\nexample\tO\texample\tO\nhas\tO\thas\tO\njust\tO\tjust\tO\none\tO\tone\tO\nmethod\tO\tmethod\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nmapped\tO\tmapped\tO\nto\tO\tto\tO\na\tO\ta\tO\nurl\tO\turl\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nannotations\tO\tannotations\tO\nat\tO\tat\tO\nall\tO\tall\tO\nin\tO\tin\tO\na\tO\ta\tO\njava B-Language java O\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nrest\tO\trest\tO\nservices\tO\tservices\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nannotations\tO\tannotations\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nconfigure\tO\tconfigure\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nannotations\tO\tannotations\tO\nin\tO\tin\tO\nan\tO\tan\tO\nXML B-File_Type XML O\nfile\tO\tfile\tO\nand\tO\tand\tO\ntheir\tO\ttheir\tO\n(\tO\t(\tO\nall\tO\tall\tO\nmethods\tO\tmethods\tO\nin\tO\tin\tO\na\tO\ta\tO\njava B-Language java O\nclass\tO\tclass\tO\n)\tO\t)\tO\ncorresponding\tO\tcorresponding\tO\nURL\tO\tURL\tO\n's\tO\t's\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20369529\tO\t20369529\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20369529/\tO\thttps://stackoverflow.com/questions/20369529/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nspring B-Library spring O\nmvc I-Library mvc O\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nan\tO\tan\tO\nimage B-User_Interface_Element image O\non\tO\ton\tO\nJSP B-Library JSP O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nimage B-User_Interface_Element image O\nfile\tO\tfile\tO\nis\tO\tis\tO\nlocated\tO\tlocated\tO\nat\tO\tat\tO\n\t\nMyApp/WebContent/images/logo.jpg B-File_Name MyApp/WebContent/images/logo.jpg O\n\t\nAnd\tO\tAnd\tO\nmy\tO\tmy\tO\nJSP B-Library JSP O\npages\tO\tpages\tO\nare\tO\tare\tO\nlocated\tO\tlocated\tO\nat\tO\tat\tO\n\t\nMyApp/WebContent/WEB-INF/view/home.jsp B-File_Name MyApp/WebContent/WEB-INF/view/home.jsp O\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\t\n<'img B-Code_Block <'img O\nsrc=\"<%=request.getContextPath()%> I-Code_Block src=\"<%=request.getContextPath()%> O\n/images/logo.jpg I-Code_Block /images/logo.jpg O\n\" I-Code_Block \" O\n/ I-Code_Block / O\n>and I-Code_Block >and O\n\t\n<'img B-Code_Block <'img O\nsrc=\"<'c:url I-Code_Block src=\"<'c:url O\nvalue='<%=request.getContextPath()%>/images/logo.jpg'> I-Code_Block value='<%=request.getContextPath()%>/images/logo.jpg'> O\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nbecause\tO\tbecause\tO\nmy\tO\tmy\tO\nwebapp B-Application webapp O\nhierarchy\tO\thierarchy\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nlike\tO\tlike\tO\n\t\nMyApp B-File_Name MyApp O\n\\src\\main\\webapp\\images\\logo.jpg I-File_Name \\src\\main\\webapp\\images\\logo.jpg O\n\t\nMyApp B-File_Name MyApp O\n\\src\\main\\webapp\\web-inf\\views\\home.jsp I-File_Name \\src\\main\\webapp\\web-inf\\views\\home.jsp O\n??\tO\t??\tO\n?\tO\t?\tO\n\t\nReally\tO\tReally\tO\nappreciate\tO\tappreciate\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nhttp://www.tutorialspoint.com/spring/spring_static_pages_example.htm\tO\thttp://www.tutorialspoint.com/spring/spring_static_pages_example.htm\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nresource\tO\tresource\tO\nmapping\tO\tmapping\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nservlet.xml B-File_Name servlet.xml O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nreally\tO\treally\tO\nappreciate\tO\tappreciate\tO\nall\tO\tall\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nkind\tO\tkind\tO\nanswers\tO\tanswers\tO\n.\tO\t.\tO\n\t\n:)\tO\t:)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20369529\tO\t20369529\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20369529/\tO\thttps://stackoverflow.com/questions/20369529/\tO\n\t\n\t\ntry\tO\ttry\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2717 I-Code_Block A_2717 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEven\tO\tEven\tO\nthough\tO\tthough\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nSpring B-Library Spring O\nMVC I-Library MVC O\napp\tO\tapp\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nstill\tO\tstill\tO\ndeploy\tO\tdeploy\tO\nas\tO\tas\tO\na\tO\ta\tO\nnormal\tO\tnormal\tO\nwebapp B-Application webapp O\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nyour\tO\tyour\tO\ndeployment\tO\tdeployment\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\n,\tO\t,\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\nto\tO\tto\tO\ntest\tO\ttest\tO\nloading\tO\tloading\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20369529\tO\t20369529\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20369529/\tO\thttps://stackoverflow.com/questions/20369529/\tO\n\t\n\t\nAny\tO\tAny\tO\nstatic\tO\tstatic\tO\nresource\tO\tresource\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nURL\tO\tURL\tO\nMapping\tO\tMapping\tO\nin\tO\tin\tO\nspring B-Library spring O\nmvc I-Library mvc O\n,\tO\t,\tO\nso\tO\tso\tO\nstatic\tO\tstatic\tO\nresources\tO\tresources\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nspringmvc-servlet.xml B-File_Name springmvc-servlet.xml B-Code_Block\n.\tO\t.\tO\n\t\nAdd\tO\tAdd\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nentry\tO\tentry\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nMVC B-Algorithm MVC O\nconfiguration\tO\tconfiguration\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nstatic\tO\tstatic\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nresources B-File_Name resources B-Code_Block\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2718 I-Code_Block A_2718 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthen\tO\tthen\tO\nstatic\tO\tstatic\tO\nfiles\tO\tfiles\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccessible\tO\taccessible\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2719 I-Code_Block A_2719 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8279090\tO\t8279090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8279090/\tO\thttps://stackoverflow.com/questions/8279090/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nfor\tO\tfor\tO\nstatement\tO\tstatement\tO\nto\tO\tto\tO\nenumerate\tO\tenumerate\tO\nall\tO\tall\tO\nobjects\tO\tobjects\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\neach\tO\teach\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nobject\tO\tobject\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nso\tO\tso\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\ndifferent\tO\tdifferent\tO\nones\tO\tones\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\n5\tO\t5\tO\nstring B-Data_Type string O\nobjects\tO\tobjects\tO\nin\tO\tin\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfor\tO\tfor\tO\nstatement\tO\tstatement\tO\nto\tO\tto\tO\nenumerate\tO\tenumerate\tO\neach\tO\teach\tO\nobject\tO\tobject\tO\nand\tO\tand\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nnsmutablestring B-Class nsmutablestring O\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\n@\tO\t@\tO\n\"\tO\t\"\tO\nhello\tO\thello\tO\n\"\tO\t\"\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_704 I-Code_Block Q_704 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nhere\tO\there\tO\nis\tO\tis\tO\nit\tO\tit\tO\nbriefly\tO\tbriefly\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n-\tO\t-\tO\n5\tO\t5\tO\nobjects\tO\tobjects\tO\n\t\nenumerate\tO\tenumerate\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nand\tO\tand\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nobject\tO\tobject\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nwith\tO\twith\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nname\tO\tname\tO\nso\tO\tso\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nit\tO\tit\tO\n:\tO\t:\tO\nobject1 B-Variable object1 O\nobject2 I-Variable object2 O\nobject3 I-Variable object3 O\nobject4 I-Variable object4 O\nobject5 I-Variable object5 O\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\n\t\nBy\tO\tBy\tO\narray\tO\tarray\tO\ni\tO\ti\tO\nmean\tO\tmean\tO\nNSArray B-Class NSArray O\n\t\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nadding\tO\tadding\tO\nuiimageview B-Class uiimageview O\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8279090\tO\t8279090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8279090/\tO\thttps://stackoverflow.com/questions/8279090/\tO\n\t\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfor B-Code_Block for B-Code_Block\n( I-Code_Block ( I-Code_Block\n.. I-Code_Block .. I-Code_Block\n. I-Code_Block . I-Code_Block\nin I-Code_Block in I-Code_Block\n.. I-Code_Block .. I-Code_Block\n. I-Code_Block . I-Code_Block\n) I-Code_Block ) I-Code_Block\n,\tO\t,\tO\nuse\tO\tuse\tO\njust\tO\tjust\tO\na\tO\ta\tO\nstandard\tO\tstandard\tO\nfor\tO\tfor\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_995 I-Code_Block A_995 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nUpdated\tO\tUpdated\tO\nfor\tO\tfor\tO\ncomment\tO\tcomment\tO\nbelow\tO\tbelow\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8279090\tO\t8279090\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8279090/\tO\thttps://stackoverflow.com/questions/8279090/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nto\tO\tto\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nArray B-Data_Structure Array O\nobjects\tO\tobjects\tO\nare\tO\tare\tO\nalready\tO\talready\tO\nuniquely\tO\tuniquely\tO\nidentified\tO\tidentified\tO\nby\tO\tby\tO\ntheir\tO\ttheir\tO\nindex\tO\tindex\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\ndifferent\tO\tdifferent\tO\nnames\tO\tnames\tO\n(\tO\t(\tO\nNSString B-Class NSString O\n* B-Data_Type * O\npointers I-Data_Type pointers O\n)\tO\t)\tO\n??\tO\t??\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nrelevant\tO\trelevant\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nalready\tO\talready\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\nstrings B-Data_Type strings O\nthere\tO\tthere\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\narray B-Data_Structure array O\n,\tO\t,\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nrepresent\tO\trepresent\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nof\tO\tof\tO\nstrings B-Data_Type strings O\nrepresenting\tO\trepresenting\tO\nsome\tO\tsome\tO\nconfiguration\tO\tconfiguration\tO\nparameters\tO\tparameters\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nprogramm\tO\tprogramm\tO\n..\tO\t..\tO\n.\tO\t.\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\nthinks\tO\tthinks\tO\nof\tO\tof\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nexample\tO\texample\tO\n:)\tO\t:)\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nclear\tO\tclear\tO\nand\tO\tand\tO\ndistinct\tO\tdistinct\tO\nway\tO\tway\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\neach\tO\teach\tO\nmember\tO\tmember\tO\nof\tO\tof\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\ndifferent\tO\tdifferent\tO\npointer B-Data_Type pointer O\nnames\tO\tnames\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nint\tO\tint\tO\nconstants\tO\tconstants\tO\nfor\tO\tfor\tO\nindexes\tO\tindexes\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\n-\tO\t-\tO\n(\tO\t(\tO\ndeclared\tO\tdeclared\tO\nin\tO\tin\tO\nC B-Language C O\nmacros\tO\tmacros\tO\n,\tO\t,\tO\nor\tO\tor\tO\nin\tO\tin\tO\nan\tO\tan\tO\nenum\tO\tenum\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40117462\tO\t40117462\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40117462/\tO\thttps://stackoverflow.com/questions/40117462/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nUICollectionView B-Class UICollectionView O\ninside\tO\tinside\tO\nUITableView B-Class UITableView O\nthat\tO\tthat\tO\nonly\tO\tonly\tO\npresent\tO\tpresent\tO\nphotos B-User_Interface_Element photos O\n.\tO\t.\tO\n\t\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\non\tO\ton\tO\niOS B-Operating_System iOS O\n9 B-Version 9 O\n\t\nBut\tO\tBut\tO\nin\tO\tin\tO\niOS B-Operating_System iOS O\n10 B-Version 10 O\n,\tO\t,\tO\nphotos B-User_Interface_Element photos O\nnot\tO\tnot\tO\nappearing\tO\tappearing\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\ntap\tO\ttap\tO\non\tO\ton\tO\ncell B-User_Interface_Element cell O\nthat\tO\tthat\tO\nholds\tO\tholds\tO\ncollection B-Class collection O\nview I-Class view O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nsetPrefetchingEnabled B-Code_Block setPrefetchingEnabled O\n= I-Code_Block = O\nNO I-Code_Block NO O\nbut\tO\tbut\tO\nstill\tO\tstill\tO\nnot\tO\tnot\tO\nappearing\tO\tappearing\tO\n\t\nany\tO\tany\tO\nsuggestion\tO\tsuggestion\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28741241\tO\t28741241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28741241/\tO\thttps://stackoverflow.com/questions/28741241/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\nlabels B-User_Interface_Element labels O\nwith\tO\twith\tO\ntext B-User_Interface_Element text O\nas\tO\tas\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3383 I-Code_Block Q_3383 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nvertically\tO\tvertically\tO\nalign\tO\talign\tO\ntwo\tO\ttwo\tO\nUILabels B-Class UILabels B-Code_Block\ntext\tO\ttext\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nlabels B-User_Interface_Element labels O\ntext I-User_Interface_Element text O\nalign\tO\talign\tO\nvertically\tO\tvertically\tO\nat\tO\tat\tO\ncolon B-Value colon O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3384 I-Code_Block Q_3384 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\nwith\tO\twith\tO\n4\tO\t4\tO\ndifferent\tO\tdifferent\tO\nlabels B-User_Interface_Element labels O\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nLabel1 B-Variable Label1 O\n:\tO\t:\tO\namount\tO\tamount\tO\nlabel1 B-Variable label1 O\n\t\nSecond\tO\tSecond\tO\nLabel2 B-Variable Label2 O\n:\tO\t:\tO\namount\tO\tamount\tO\nLabel2 B-Variable Label2 O\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\n2\tO\t2\tO\nlabels B-User_Interface_Element labels O\nonly\tO\tonly\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3385 I-Code_Block Q_3385 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nalign\tO\talign\tO\nvertically\tO\tvertically\tO\nat\tO\tat\tO\ncolon B-Value colon O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28741241\tO\t28741241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28741241/\tO\thttps://stackoverflow.com/questions/28741241/\tO\n\t\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccomplished\tO\taccomplished\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nAutoLayout B-Class AutoLayout O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\n4\tO\t4\tO\nlabels B-Variable labels O\n:\tO\t:\tO\n\t\nTitle B-Variable Title O\nLabels I-Variable Labels O\n\t\n'\tO\t'\tO\nFirst B-Output_Block First O\nValue I-Output_Block Value O\n' B-Output_Block ' O\n(\tO\t(\tO\nRight\tO\tRight\tO\nAligned\tO\tAligned\tO\n)\tO\t)\tO\n\t\n' B-Output_Block ' O\nSecond I-Output_Block Second O\nValue I-Output_Block Value O\n'\tO\t'\tO\n(\tO\t(\tO\nRight\tO\tRight\tO\nAligned\tO\tAligned\tO\n)\tO\t)\tO\n\t\nValue B-Variable Value O\nLabels I-Variable Labels O\n\t\n'\tO\t'\tO\n:1 B-Output_Block :1 O\n, I-Output_Block , O\n000 I-Output_Block 000 O\n' B-Output_Block ' O\n(\tO\t(\tO\nLeft\tO\tLeft\tO\nAligned\tO\tAligned\tO\n)\tO\t)\tO\n\t\n' B-Output_Block ' O\n:100 I-Output_Block :100 O\n' I-Output_Block ' O\n(\tO\t(\tO\nLeft\tO\tLeft\tO\nAligned\tO\tAligned\tO\n)\tO\t)\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npin\tO\tpin\tO\nboth\tO\tboth\tO\ntitle\tO\ttitle\tO\nlabels B-User_Interface_Element labels O\nto\tO\tto\tO\nhave\tO\thave\tO\nequal\tO\tequal\tO\nwidths B-Variable widths O\nand\tO\tand\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npin\tO\tpin\tO\nboth\tO\tboth\tO\nvalue B-Variable value O\nlabels B-User_Interface_Element labels O\nto\tO\tto\tO\nhave\tO\thave\tO\nequal\tO\tequal\tO\nwidths B-Variable widths O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nconstraints\tO\tconstraints\tO\nfor\tO\tfor\tO\nhorizontal\tO\thorizontal\tO\nspacing\tO\tspacing\tO\nbetween\tO\tbetween\tO\nboth\tO\tboth\tO\ntitle B-Variable title O\nand\tO\tand\tO\nvalue B-Variable value O\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nspacing\tO\tspacing\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nequal\tO\tequal\tO\nbetween\tO\tbetween\tO\nrows B-User_Interface_Element rows O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ncode\tO\tcode\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nlabel B-User_Interface_Element label O\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncolon B-Value colon O\nsymbol\tO\tsymbol\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvalue B-Variable value O\n.\tO\t.\tO\n\t\nE.g\tO\tE.g\tO\n.\tO\t.\tO\n\t\n[ B-Code_Block [ B-Code_Block\nNSString I-Code_Block NSString I-Code_Block\nstringwithFormat I-Code_Block stringwithFormat I-Code_Block\n: I-Code_Block : I-Code_Block\n@ I-Code_Block @ I-Code_Block\n\" I-Code_Block \" I-Code_Block\n:%d I-Code_Block :%d I-Code_Block\n\" I-Code_Block \" I-Code_Block\n, I-Code_Block , I-Code_Block\nvalue I-Code_Block value I-Code_Block\n] I-Code_Block ] I-Code_Block\n; B-Code_Block ; B-Code_Block\n\t\nThis\tO\tThis\tO\nimage B-User_Interface_Element image O\nillustrates\tO\tillustrates\tO\nthe\tO\tthe\tO\nconstraints\tO\tconstraints\tO\nrequired\tO\trequired\tO\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28741241\tO\t28741241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28741241/\tO\thttps://stackoverflow.com/questions/28741241/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nAutolayout\tO\tAutolayout\tO\nplace\tO\tplace\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nlabels B-User_Interface_Element labels O\nin\tO\tin\tO\nthe\tO\tthe\tO\nUIView B-Class UIView O\nand\tO\tand\tO\nthen\tO\tthen\tO\nalign\tO\talign\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\nto\tO\tto\tO\nalign\tO\talign\tO\ncentre\tO\tcentre\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nhorizontal\tO\thorizontal\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nvertical\tO\tvertical\tO\nspacing\tO\tspacing\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nviews\tO\tviews\tO\n..\tO\t..\tO\n.\tO\t.\tO\nas\tO\tas\tO\n\t\nThe\tO\tThe\tO\ncorrect\tO\tcorrect\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncontainer B-User_Interface_Element container O\nview\tO\tview\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nderives\tO\tderives\tO\nits\tO\tits\tO\nheight\tO\theight\tO\nfrom\tO\tfrom\tO\nits\tO\tits\tO\nsubviews\tO\tsubviews\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncontainer B-User_Interface_Element container O\nview\tO\tview\tO\nis\tO\tis\tO\nthen\tO\tthen\tO\npinned\tO\tpinned\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncentre\tO\tcentre\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell B-User_Interface_Element cell O\n-\tO\t-\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nconstraints\tO\tconstraints\tO\nlinking\tO\tlinking\tO\nthe\tO\tthe\tO\ncontainer B-User_Interface_Element container O\nto\tO\tto\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nand\tO\tand\tO\nbottom\tO\tbottom\tO\nedges\tO\tedges\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncell B-User_Interface_Element cell O\n.\tO\t.\tO\n\t\nWithin\tO\tWithin\tO\nthe\tO\tthe\tO\ncontainer B-User_Interface_Element container O\n,\tO\t,\tO\nthe\tO\tthe\tO\nvertical\tO\tvertical\tO\nconstraints\tO\tconstraints\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\n|[label1]-[label2]| B-Variable |[label1]-[label2]| O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ncontainer B-User_Interface_Element container O\nthe\tO\tthe\tO\nheight\tO\theight\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nlabels B-User_Interface_Element labels O\nplus\tO\tplus\tO\nthe\tO\tthe\tO\nspace\tO\tspace\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncentre\tO\tcentre\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontainer B-User_Interface_Element container O\nview\tO\tview\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nlabels B-User_Interface_Element labels O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42958086\tO\t42958086\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42958086/\tO\thttps://stackoverflow.com/questions/42958086/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nread\tO\tread\tO\n\"\tO\t\"\tO\ncrashlytics B-Application crashlytics O\nlog\tO\tlog\tO\nin\tO\tin\tO\na\tO\ta\tO\nlive\tO\tlive\tO\nXamarin B-Application Xamarin O\niOS I-Application iOS O\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nissue\tO\tissue\tO\naffects\tO\taffects\tO\nalmost\tO\talmost\tO\n80%\tO\t80%\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nstruggling\tO\tstruggling\tO\nto\tO\tto\tO\ndecipher\tO\tdecipher\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nlog B-File_Type log O\nin\tO\tin\tO\nthis\tO\tthis\tO\ngist B-Website gist O\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nuploaded\tO\tuploaded\tO\nthe\tO\tthe\tO\ndSYM B-File_Type dSYM O\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nCrashlytics B-Application Crashlytics O\ndashboard B-User_Interface_Element dashboard O\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nlog B-File_Type log O\nremains\tO\tremains\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nnormal\tO\tnormal\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nXamarin B-Application Xamarin O\nApp\tO\tApp\tO\nthis\tO\tthis\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nlog B-File_Type log O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\neven\tO\teven\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nsource\tO\tsource\tO\nfile\tO\tfile\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\ncauses\tO\tcauses\tO\nthe\tO\tthe\tO\ncrash\tO\tcrash\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nAppDelegate.cs B-File_Name AppDelegate.cs O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5492 I-Code_Block Q_5492 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmethods\tO\tmethods\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5493 I-Code_Block Q_5493 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\non\tO\ton\tO\nFabric B-Application Fabric O\nconfiguration\tO\tconfiguration\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46084048\tO\t46084048\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46084048/\tO\thttps://stackoverflow.com/questions/46084048/\tO\n\t\n\t\nPlease\tO\tPlease\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nhelp\tO\thelp\tO\n,\tO\t,\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nAmazon B-Application Amazon O\nS3 I-Application S3 O\nBucket\tO\tBucket\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nour\tO\tour\tO\nvideo\tO\tvideo\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nAmazon B-Application Amazon O\nCloudFront I-Application CloudFront O\nto\tO\tto\tO\nstream\tO\tstream\tO\nthe\tO\tthe\tO\nvideo B-User_Interface_Element video O\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nwant\tO\twant\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nschedule\tO\tschedule\tO\ndifferent\tO\tdifferent\tO\nvideo B-User_Interface_Element video O\nto\tO\tto\tO\nplay\tO\tplay\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nspecific\tO\tspecific\tO\ntime\tO\ttime\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nday\tO\tday\tO\nand\tO\tand\tO\nend\tO\tend\tO\nat\tO\tat\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ntime\tO\ttime\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nday\tO\tday\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nschedule\tO\tschedule\tO\nvideo B-User_Interface_Element video O\nplay\tO\tplay\tO\non\tO\ton\tO\ncloudfront B-Application cloudfront O\nstream\tO\tstream\tO\n,\tO\t,\tO\nand\tO\tand\tO\nplay\tO\tplay\tO\nmultiple\tO\tmultiple\tO\nand\tO\tand\tO\ndifferent\tO\tdifferent\tO\nvideos B-User_Interface_Element videos O\nat\tO\tat\tO\ndifferent\tO\tdifferent\tO\ntime\tO\ttime\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nour\tO\tour\tO\ntime\tO\ttime\tO\nzone\tO\tzone\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nup\tO\tup\tO\nAmazon B-Application Amazon O\nS3 I-Application S3 O\nbucket\tO\tbucket\tO\n,\tO\t,\tO\nAmazon B-Application Amazon O\nEC2 I-Application EC2 O\ninstance\tO\tinstance\tO\nand\tO\tand\tO\nAmazon B-Application Amazon O\nCloudFront I-Application CloudFront O\nfor\tO\tfor\tO\nvideo B-User_Interface_Element video O\nstreaming\tO\tstreaming\tO\n.\tO\t.\tO\n\t\nWe\tO\tWe\tO\nneed\tO\tneed\tO\nsolution\tO\tsolution\tO\non\tO\ton\tO\nhow\tO\thow\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nschedule\tO\tschedule\tO\nvideos B-User_Interface_Element videos O\nthat\tO\tthat\tO\nplay\tO\tplay\tO\nthrough\tO\tthrough\tO\nCloudFront B-Application CloudFront O\nRTMP\tO\tRTMP\tO\nor\tO\tor\tO\nhttp\tO\thttp\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nAdvance\tO\tAdvance\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28392515\tO\t28392515\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28392515/\tO\thttps://stackoverflow.com/questions/28392515/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ndefined\tO\tdefined\tO\nsome\tO\tsome\tO\nproperties\tO\tproperties\tO\nin\tO\tin\tO\na\tO\ta\tO\ncontroller B-Class controller O\nfor\tO\tfor\tO\na\tO\ta\tO\npagination\tO\tpagination\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3321 I-Code_Block Q_3321 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nlimit B-Code_Block limit B-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nRoute B-Class Route O\n's\tO\t's\tO\nmodel-function B-Function model-function B-Code_Block\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3322 I-Code_Block Q_3322 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28392515\tO\t28392515\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28392515/\tO\thttps://stackoverflow.com/questions/28392515/\tO\n\t\n\t\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nqueryParams B-Variable queryParams O\noption\tO\toption\tO\n(\tO\t(\tO\nhttp://emberjs.com/guides/routing/query-params/\tO\thttp://emberjs.com/guides/routing/query-params/\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nquery B-Variable query O\nparams I-Variable params O\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nlimit B-Code_Block limit O\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nquery B-Variable query O\nparam I-Variable param O\nin\tO\tin\tO\nyour\tO\tyour\tO\nURL\tO\tURL\tO\nlike\tO\tlike\tO\nhttp://yourdomain.com/someroute?limit=15 B-Code_Block http://yourdomain.com/someroute?limit=15 B-Code_Block\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\ncontroller B-Class controller O\nwill\tO\twill\tO\nbecome\tO\tbecome\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3958 I-Code_Block A_3958 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\nroute B-Class route O\nwill\tO\twill\tO\nbecome\tO\tbecome\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3959 I-Code_Block A_3959 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlternative\tO\tAlternative\tO\n:\tO\t:\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nquery B-Variable query O\nparams I-Variable params O\n,\tO\t,\tO\nanother\tO\tanother\tO\nsolution\tO\tsolution\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nthe\tO\tthe\tO\nlimit\tO\tlimit\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\nroute B-Class route O\n's\tO\t's\tO\ncontroller I-Class controller O\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\ndoing\tO\tdoing\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmodel B-Function model O\nhook\tO\thook\tO\nby\tO\tby\tO\ndoing\tO\tdoing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3960 I-Code_Block A_3960 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47051596\tO\t47051596\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47051596/\tO\thttps://stackoverflow.com/questions/47051596/\tO\n\t\n\t\nMy\tO\tMy\tO\nmain\tO\tmain\tO\nconcern\tO\tconcern\tO\nis\tO\tis\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\navailable\tO\tavailable\tO\nquantity\tO\tquantity\tO\nof\tO\tof\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\nproduct\tO\tproduct\tO\nfrom\tO\tfrom\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\ncompare\tO\tcompare\tO\nthat\tO\tthat\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nCart B-Class Cart O\nitem\tO\titem\tO\nwhich\tO\twhich\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\nsession\tO\tsession\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\n$id B-Variable $id O\n\"\tO\t\"\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nDB\tO\tDB\tO\nproduct\tO\tproduct\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\nit\tO\tit\tO\nto\tO\tto\tO\nCart B-Class Cart O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\navailable\tO\tavailable\tO\nquantity\tO\tquantity\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\nthe\tO\tthe\tO\nincrease\tO\tincrease\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nqty B-Variable qty O\n\"\tO\t\"\tO\nfrom\tO\tfrom\tO\nCart B-Class Cart O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nbut\tO\tbut\tO\nfailed\tO\tfailed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6232 I-Code_Block Q_6232 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nrequested\tO\trequested\tO\n$id B-Variable $id O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nCart B-Class Cart O\nitems\tO\titems\tO\n'\tO\t'\tO\nid B-Variable id O\n'\tO\t'\tO\nnot\tO\tnot\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nrowId B-Variable rowId O\nfrom\tO\tfrom\tO\nCart B-Library Cart O\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47051596\tO\t47051596\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47051596/\tO\thttps://stackoverflow.com/questions/47051596/\tO\n\t\n\t\nTry\tO\tTry\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nCart::search() B-Function Cart::search() O\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\nprovided\tO\tprovided\tO\nid B-Variable id O\nand\tO\tand\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\n$cartItem B-Variable $cartItem O\nwhich\tO\twhich\tO\nmatches\tO\tmatches\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nall\tO\tall\tO\nitems\tO\titems\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nid B-Variable id O\nof\tO\tof\tO\n1 B-Value 1 O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6853 I-Code_Block A_6853 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCheck\tO\tCheck\tO\ndocumentation\tO\tdocumentation\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetail\tO\tdetail\tO\n:\tO\t:\tO\nhttps://github.com/Crinsane/LaravelShoppingcart\tO\thttps://github.com/Crinsane/LaravelShoppingcart\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18026461\tO\t18026461\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18026461/\tO\thttps://stackoverflow.com/questions/18026461/\tO\n\t\n\t\nA\tO\tA\tO\nCaseMilestone B-Class CaseMilestone O\nrecord\tO\trecord\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\none\tO\tone\tO\nCase B-Class Case O\nrecord\tO\trecord\tO\nand\tO\tand\tO\none\tO\tone\tO\nCase B-Class Case O\nrecord\tO\trecord\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\nmany\tO\tmany\tO\nCaseMilestone B-Class CaseMilestone O\nrecords\tO\trecords\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1857 I-Code_Block Q_1857 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSimilarly\tO\tSimilarly\tO\n,\tO\t,\tO\na\tO\ta\tO\nCaseMilestone B-Class CaseMilestone O\nrecord\tO\trecord\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\none\tO\tone\tO\nMilestoneType B-Class MilestoneType O\nrecord\tO\trecord\tO\nand\tO\tand\tO\none\tO\tone\tO\nMilestoneType B-Class MilestoneType O\nrecord\tO\trecord\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\nmany\tO\tmany\tO\nCaseMilestone B-Class CaseMilestone O\nrecords\tO\trecords\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1858 I-Code_Block Q_1858 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\ncome\tO\tcome\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nnot\tO\tnot\tO\nall\tO\tall\tO\nCaseMilestones B-Class CaseMilestones O\nare\tO\tare\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nassociated\tO\tassociated\tO\nMilestoneType B-Class MilestoneType O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nquery\tO\tquery\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18026461\tO\t18026461\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18026461/\tO\thttps://stackoverflow.com/questions/18026461/\tO\n\t\n\t\nCheck\tO\tCheck\tO\n\" B-Value \" O\nChild I-Value Child O\nRelationship I-Value Relationship O\nName I-Value Name O\n\" I-Value \" O\nin\tO\tin\tO\nLookup\tO\tLookup\tO\nfrom\tO\tfrom\tO\nCaseMilestones B-Class CaseMilestones O\nto\tO\tto\tO\nMilestoneType B-Class MilestoneType O\n\t\nand\tO\tand\tO\nchange\tO\tchange\tO\nto\tO\tto\tO\nSELECT B-Code_Block SELECT B-Code_Block\nId I-Code_Block Id I-Code_Block\n, I-Code_Block , I-Code_Block\n( I-Code_Block ( I-Code_Block\nSELECT I-Code_Block SELECT I-Code_Block\nId I-Code_Block Id I-Code_Block\nFROM I-Code_Block FROM I-Code_Block\n\" I-Code_Block \" I-Code_Block\nChild I-Code_Block Child I-Code_Block\nRelationship I-Code_Block Relationship I-Code_Block\nName I-Code_Block Name I-Code_Block\n\" I-Code_Block \" I-Code_Block\n) I-Code_Block ) I-Code_Block\nFROM I-Code_Block FROM I-Code_Block\nMilestoneType I-Code_Block MilestoneType I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9506342\tO\t9506342\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9506342/\tO\thttps://stackoverflow.com/questions/9506342/\tO\n\t\n\t\nOk\tO\tOk\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\nuser\tO\tuser\tO\nentered\tO\tentered\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\ninvalid\tO\tinvalid\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nskip\tO\tskip\tO\nalmost\tO\talmost\tO\nall\tO\tall\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nget\tO\tget\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nwhile\tO\twhile\tO\nloop\tO\tloop\tO\nto\tO\tto\tO\nask\tO\task\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nproceed\tO\tproceed\tO\nwith\tO\twith\tO\ncalculating\tO\tcalculating\tO\nanother\tO\tanother\tO\nloan\tO\tloan\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nprofessor\tO\tprofessor\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nprovided\tO\tprovided\tO\nus\tO\tus\tO\nwith\tO\twith\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nive\tO\tive\tO\nfound\tO\tfound\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nspecific\tO\tspecific\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nvalidation\tO\tvalidation\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nskipped\tO\tskipped\tO\nwithout\tO\twithout\tO\nexiting\tO\texiting\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nask\tO\task\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncalculate\tO\tcalculate\tO\nanother\tO\tanother\tO\nloan\tO\tloan\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nthus\tO\tthus\tO\nfar\tO\tfar\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_815 I-Code_Block Q_815 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9506342\tO\t9506342\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9506342/\tO\thttps://stackoverflow.com/questions/9506342/\tO\n\t\n\t\ncontinue B-Code_Block continue O\nis\tO\tis\tO\nmaybe\tO\tmaybe\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nworse\tO\tworse\tO\nfeature\tO\tfeature\tO\nof\tO\tof\tO\njava B-Language java O\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nbreak B-Code_Block break O\nkeyword\tO\tkeyword\tO\n(\tO\t(\tO\nexcept\tO\texcept\tO\nin\tO\tin\tO\nswitch B-Code_Block switch O\nstatements\tO\tstatements\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nleads\tO\tleads\tO\nto\tO\tto\tO\njigsaw\tO\tjigsaw\tO\ncode\tO\tcode\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\njumps\tO\tjumps\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\ncontinue B-Code_Block continue O\nmay\tO\tmay\tO\nbe\tO\tbe\tO\npractical\tO\tpractical\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nvery\tO\tvery\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nit\tO\tit\tO\nproduces\tO\tproduces\tO\n(\tO\t(\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\nadding\tO\tadding\tO\nan\tO\tan\tO\ninner\tO\tinner\tO\nloop.\tO\tloop.\tO\n.\tO\t.\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\n2\tO\t2\tO\ncontinues B-Code_Block continues O\nwill\tO\twill\tO\nmake\tO\tmake\tO\nyou\tO\tyou\tO\ncrazy\tO\tcrazy\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalways\tO\talways\tO\navoid\tO\tavoid\tO\nusing\tO\tusing\tO\ncontinue B-Code_Block continue O\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nanother\tO\tanother\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nSame\tO\tSame\tO\nfor\tO\tfor\tO\nbreak B-Code_Block break O\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1183 I-Code_Block A_1183 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\neasy\tO\teasy\tO\n,\tO\t,\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\nclear\tO\tclear\tO\nand\tO\tand\tO\neven\tO\teven\tO\nbetter\tO\tbetter\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\nprocessing\tO\tprocessing\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ntied\tO\ttied\tO\nto\tO\tto\tO\nrobustness\tO\trobustness\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nprovide\tO\tprovide\tO\na\tO\ta\tO\nprocess() B-Function process() O\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nexception B-Class exception O\nif\tO\tif\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nentered\tO\tentered\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvalid\tO\tvalid\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmakes\tO\tmakes\tO\nit\tO\tit\tO\neven\tO\teven\tO\nmore\tO\tmore\tO\nclear\tO\tclear\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nnormal\tO\tnormal\tO\n\"\tO\t\"\tO\nprogram\tO\tprogram\tO\nbehavior\tO\tbehavior\tO\nand\tO\tand\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nstrange\tO\tstrange\tO\ncases\tO\tcases\tO\nyou\tO\tyou\tO\nhandle\tO\thandle\tO\nas\tO\tas\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1184 I-Code_Block A_1184 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthen\tO\tthen\tO\nyour\tO\tyour\tO\nmain\tO\tmain\tO\nloop\tO\tloop\tO\nbecomes\tO\tbecomes\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1185 I-Code_Block A_1185 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9506342\tO\t9506342\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9506342/\tO\thttps://stackoverflow.com/questions/9506342/\tO\n\t\n\t\nBreak B-Code_Block Break O\nis\tO\tis\tO\nvery\tO\tvery\tO\nuseful\tO\tuseful\tO\nfor\tO\tfor\tO\nstopping\tO\tstopping\tO\nloops\tO\tloops\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nsaid\tO\tsaid\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\n.\tO\t.\tO\n\t\nEssentially\tO\tEssentially\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\neffect\tO\teffect\tO\nof\tO\tof\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nboolean B-Data_Type boolean O\nparameter\tO\tparameter\tO\nof\tO\tof\tO\na\tO\ta\tO\nfor B-Code_Block for O\nloop\tO\tloop\tO\nto\tO\tto\tO\ntrue B-Value true O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nwhat\tO\twhat\tO\nin\tO\tin\tO\nCMD B-Application CMD O\nis\tO\tis\tO\nreferred\tO\treferred\tO\nto\tO\tto\tO\na\tO\ta\tO\nGOTO\tO\tGOTO\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1186 I-Code_Block A_1186 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24648824\tO\t24648824\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24648824/\tO\thttps://stackoverflow.com/questions/24648824/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nread\tO\tread\tO\nsome\tO\tsome\tO\nXML B-File_Type XML O\nfiles\tO\tfiles\tO\nthat\tO\tthat\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\nONIX B-File_Type ONIX O\nstandard\tO\tstandard\tO\n\t\nSee\tO\tSee\tO\n:\tO\t:\tO\nhttp://www.editeur.org/93/Release-3.0-Downloads/\tO\thttp://www.editeur.org/93/Release-3.0-Downloads/\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\ni\tO\ti\tO\ndownloaded\tO\tdownloaded\tO\nthe\tO\tthe\tO\nONIX B-File_Type ONIX O\n3.0 B-Version 3.0 O\nXSD B-File_Type XSD O\n:\tO\t:\tO\n\t\nhttp://www.editeur.org/files/ONIX%203/ONIX_BookProduct_XSD_schema+codes_Issue_25.zip\tO\thttp://www.editeur.org/files/ONIX%203/ONIX_BookProduct_XSD_schema+codes_Issue_25.zip\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\ndownloaded\tO\tdownloaded\tO\nXSD B-File_Type XSD O\nand\tO\tand\tO\nthis\tO\tthis\tO\ncommand\tO\tcommand\tO\n\"\tO\t\"\tO\nxsd B-Code_Block xsd O\nyour.xsd I-Code_Block your.xsd O\n/classes I-Code_Block /classes O\n\"\tO\t\"\tO\ni\tO\ti\tO\ncreated\tO\tcreated\tO\nclasses\tO\tclasses\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nXml B-Class Xml O\nSerializer I-Class Serializer O\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2761 I-Code_Block Q_2761 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nand\tO\tand\tO\nexception B-Class exception O\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nWhen\tO\tWhen\tO\ni\tO\ti\tO\ndrill\tO\tdrill\tO\ndown\tO\tdown\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ninner\tO\tinner\tO\nexceptions B-Class exceptions O\ni\tO\ti\tO\nend\tO\tend\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nmessage\tO\tmessage\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nXSD B-File_Type XSD O\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nsuggestions\tO\tsuggestions\tO\n?\tO\t?\tO\n!\tO\t!\tO\n\t\nEdit\tO\tEdit\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2762 I-Code_Block Q_2762 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25391383\tO\t25391383\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25391383/\tO\thttps://stackoverflow.com/questions/25391383/\tO\n\t\n\t\ni\tO\ti\tO\nam\tO\tam\tO\nbeginner\tO\tbeginner\tO\nin\tO\tin\tO\nQT B-Application QT O\n\t\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nbinary B-File_Type binary O\nfile\tO\tfile\tO\nand\tO\tand\tO\ndraw\tO\tdraw\tO\nit\tO\tit\tO\npixel\tO\tpixel\tO\nby\tO\tby\tO\npixel\tO\tpixel\tO\n\t\ni\tO\ti\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nwarning\tO\twarning\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nwas\tO\twas\tO\ndebugging\tO\tdebugging\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2886 I-Code_Block Q_2886 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2887 I-Code_Block Q_2887 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthanks\tO\tthanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n:)\tO\t:)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25391383\tO\t25391383\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25391383/\tO\thttps://stackoverflow.com/questions/25391383/\tO\n\t\n\t\nYou\tO\tYou\tO\nincorrectly\tO\tincorrectly\tO\ncalculate\tO\tcalculate\tO\nx B-Variable x O\nand\tO\tand\tO\ny B-Variable y O\ncoordinate\tO\tcoordinate\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3496 I-Code_Block A_3496 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nx B-Variable x O\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ninstead\tO\tinstead\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3497 I-Code_Block A_3497 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ny B-Variable y O\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3498 I-Code_Block A_3498 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\nmaybe\tO\tmaybe\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nanother\tO\tanother\tO\nvariable\tO\tvariable\tO\nfor\tO\tfor\tO\nx B-Variable x O\nto\tO\tto\tO\navoid\tO\tavoid\tO\ndivision\tO\tdivision\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3499 I-Code_Block A_3499 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSuggestions\tO\tSuggestions\tO\n:\tO\t:\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nvariable\tO\tvariable\tO\nright\tO\tright\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\nis\tO\tis\tO\nused\tO\tused\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3500 I-Code_Block A_3500 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\neven\tO\teven\tO\nbetter\tO\tbetter\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3501 I-Code_Block A_3501 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23679510\tO\t23679510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23679510/\tO\thttps://stackoverflow.com/questions/23679510/\tO\n\t\n\t\nI\tO\tI\tO\nHave\tO\tHave\tO\nA\tO\tA\tO\ntable B-Data_Structure table O\nthat\tO\tthat\tO\nshows\tO\tshows\tO\neach\tO\teach\tO\ncourse\tO\tcourse\tO\na\tO\ta\tO\nstudent\tO\tstudent\tO\nis\tO\tis\tO\nregisered\tO\tregisered\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2626 I-Code_Block Q_2626 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\nwill\tO\twill\tO\nI\tO\tI\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ncourses\tO\tcourses\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nstudent\tO\tstudent\tO\ndoing\tO\tdoing\tO\nPSY1 B-Variable PSY1 O\nalso\tO\talso\tO\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\nfufills\tO\tfufills\tO\nBOTH\tO\tBOTH\tO\nCond1 B-Variable Cond1 O\nand\tO\tand\tO\nCond B-Variable Cond O\n2 I-Variable 2 O\n?\tO\t?\tO\n\t\ni.e\tO\ti.e\tO\n1004 B-Variable 1004 O\ndoes\tO\tdoes\tO\n1\tO\t1\tO\ncourse\tO\tcourse\tO\nthat\tO\tthat\tO\npasses\tO\tpasses\tO\nboth\tO\tboth\tO\ncriteria\tO\tcriteria\tO\nand\tO\tand\tO\nalso\tO\talso\tO\ndoes\tO\tdoes\tO\npsy1 B-Variable psy1 O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2627 I-Code_Block Q_2627 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDoesnt\tO\tDoesnt\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nED\tO\tED\tO\n:\tO\t:\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nall\tO\tall\tO\nstudents\tO\tstudents\tO\ndoing\tO\tdoing\tO\nPSY1 B-Variable PSY1 O\n,\tO\t,\tO\nAlong\tO\tAlong\tO\nwith\tO\twith\tO\nteh\tO\tteh\tO\nammount\tO\tammount\tO\nof\tO\tof\tO\nOTHER\tO\tOTHER\tO\ncourses\tO\tcourses\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nwhich\tO\twhich\tO\nfufill\tO\tfufill\tO\nbot\tO\tbot\tO\ncond1 B-Variable cond1 O\nand\tO\tand\tO\ncond2 B-Variable cond2 O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23679510\tO\t23679510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23679510/\tO\thttps://stackoverflow.com/questions/23679510/\tO\n\t\n\t\nUntested\tO\tUntested\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nshould\tO\tshould\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\na\tO\ta\tO\nstarter\tO\tstarter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3237 I-Code_Block A_3237 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23679510\tO\t23679510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23679510/\tO\thttps://stackoverflow.com/questions/23679510/\tO\n\t\n\t\nE.g\tO\tE.g\tO\n.\tO\t.\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3238 I-Code_Block A_3238 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nstudents\tO\tstudents\tO\nwith\tO\twith\tO\na\tO\ta\tO\nscore\tO\tscore\tO\nof\tO\tof\tO\nzero B-Value zero O\n,\tO\t,\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\n[ B-Function [ O\nINNER I-Function INNER O\n] I-Function ] O\nJOIN B-Function JOIN O\nto\tO\tto\tO\na\tO\ta\tO\nLEFT B-Function LEFT O\nJOIN I-Function JOIN O\nand\tO\tand\tO\nCOUNT B-Function COUNT O\n(\tO\t(\tO\nor\tO\tor\tO\nCOALESCE(COUNT)) B-Function COALESCE(COUNT)) O\nsomething\tO\tsomething\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28665982\tO\t28665982\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28665982/\tO\thttps://stackoverflow.com/questions/28665982/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nRails\tO\tRails\tO\nproject\tO\tproject\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3375 I-Code_Block Q_3375 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nimages B-User_Interface_Element images O\nin\tO\tin\tO\nthe\tO\tthe\tO\ndirectory\tO\tdirectory\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nRoot/uploads/images B-File_Name Root/uploads/images O\n\"\tO\t\"\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nlots\tO\tlots\tO\nby\tO\tby\tO\ngoogling\tO\tgoogling\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\ngot\tO\tgot\tO\nhelpfull\tO\thelpfull\tO\n,\tO\t,\tO\ni\tO\ti\tO\nam\tO\tam\tO\nstuch\tO\tstuch\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\nthankful\tO\tthankful\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28665982\tO\t28665982\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28665982/\tO\thttps://stackoverflow.com/questions/28665982/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\ntry\tO\ttry\tO\nsomething\tO\tsomething\tO\nalong\tO\talong\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4032 I-Code_Block A_4032 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nroutes.rb B-File_Name routes.rb O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4033 I-Code_Block A_4033 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nsecurity\tO\tsecurity\tO\nis\tO\tis\tO\nyour\tO\tyour\tO\nconcern\tO\tconcern\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\npermission\tO\tpermission\tO\nchecks\tO\tchecks\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1411364\tO\t1411364\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1411364/\tO\thttps://stackoverflow.com/questions/1411364/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nWebView B-Class WebView O\ninto\tO\tinto\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nloading\tO\tloading\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nHTML B-Language HTML O\npage\tO\tpage\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nembedded\tO\tembedded\tO\nimages B-User_Interface_Element images O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nzoom\tO\tzoom\tO\nin\tO\tin\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntext B-User_Interface_Element text O\nand\tO\tand\tO\nimage B-User_Interface_Element image O\nin\tO\tin\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nfashion\tO\tfashion\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nwould\tO\twould\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nweb B-Application web O\nbrowser I-Application browser O\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nenable\tO\tenable\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1411364\tO\t1411364\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1411364/\tO\thttps://stackoverflow.com/questions/1411364/\tO\n\t\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nscalesPageToFit B-Variable scalesPageToFit O\nto\tO\tto\tO\nYES\tO\tYES\tO\n...\tO\t...\tO\n.\tO\t.\tO\nit\tO\tit\tO\nallows\tO\tallows\tO\nit\tO\tit\tO\nto\tO\tto\tO\nzoom\tO\tzoom\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\n..\tO\t..\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ntrue\tO\ttrue\tO\nzoom\tO\tzoom\tO\nlike\tO\tlike\tO\nsafari B-Application safari O\nhas\tO\thas\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1411364\tO\t1411364\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1411364/\tO\thttps://stackoverflow.com/questions/1411364/\tO\n\t\n\t\nFor\tO\tFor\tO\ncompleteness\tO\tcompleteness\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmust\tO\tmust\tO\nenable\tO\tenable\tO\nmultitouch B-Variable multitouch O\n,\tO\t,\tO\nscalesPagesToFit B-Variable scalesPagesToFit O\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nconditions\tO\tconditions\tO\nif\tO\tif\tO\nits\tO\tits\tO\nwithin\tO\twithin\tO\ncertain\tO\tcertain\tO\nother\tO\tother\tO\nviews B-User_Interface_Element views O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthen\tO\tthen\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nit\tO\tit\tO\nscaling\tO\tscaling\tO\nyour\tO\tyour\tO\nwebpage\tO\twebpage\tO\n(\tO\t(\tO\nespecially\tO\tespecially\tO\nif\tO\tif\tO\nusing\tO\tusing\tO\nlocal\tO\tlocal\tO\nfiles\tO\tfiles\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nsnippet\tO\tsnippet\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nHTML B-Language HTML O\n\t\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\nso\tO\tso\tO\n:\tO\t:\tO\nhttp://iphoneincubator.com/blog/windows-views/right-scale-for-a-uiwebview\tO\thttp://iphoneincubator.com/blog/windows-views/right-scale-for-a-uiwebview\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32991273\tO\t32991273\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32991273/\tO\thttps://stackoverflow.com/questions/32991273/\tO\n\t\n\t\nOn\tO\tOn\tO\nAndroid B-Operating_System Android O\n6.0 B-Version 6.0 O\nMarshmallow I-Version Marshmallow O\nthe\tO\tthe\tO\npositioning\tO\tpositioning\tO\nof\tO\tof\tO\nan\tO\tan\tO\nEditText B-Class EditText O\nin\tO\tin\tO\nrelation\tO\trelation\tO\nto\tO\tto\tO\nan\tO\tan\tO\nImageView B-Class ImageView O\nin\tO\tin\tO\na\tO\ta\tO\nRelativeLayout B-Class RelativeLayout O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nattributes\tO\tattributes\tO\nbaseline B-Variable baseline O\nand\tO\tand\tO\nlayout_alignBaseline B-Variable layout_alignBaseline O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbehaviour\tO\tbehaviour\tO\ncan\tO\tcan\tO\neven\tO\teven\tO\nbe\tO\tbe\tO\nobserved\tO\tobserved\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlayout\tO\tlayout\tO\neditor\tO\teditor\tO\nin\tO\tin\tO\nAndroid B-Application Android O\nstudio I-Application studio O\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\na\tO\ta\tO\nreal\tO\treal\tO\nAndroid B-Operating_System Android O\nMarshmallow B-Version Marshmallow O\ndevice\tO\tdevice\tO\nor\tO\tor\tO\nemulatr B-Application emulatr O\nthe\tO\tthe\tO\nEditText B-Class EditText O\nin\tO\tin\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\nshift\tO\tshift\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nvisible\tO\tvisible\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nI\tO\tI\tO\nmiss\tO\tmiss\tO\nsome\tO\tsome\tO\nchanges\tO\tchanges\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4002 I-Code_Block Q_4002 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\nscreenshots\tO\tscreenshots\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nLayout B-Application Layout O\nEditor I-Application Editor O\nof\tO\tof\tO\nAndroid B-Application Android O\nStudio I-Application Studio O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\nscreenshots\tO\tscreenshots\tO\nis\tO\tis\tO\nsolely\tO\tsolely\tO\nthe\tO\tthe\tO\nchange\tO\tchange\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nAPI B-Library API O\nlevel\tO\tlevel\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nproject\tO\tproject\tO\nhttps://github.com/mikegr/baseline\tO\thttps://github.com/mikegr/baseline\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32991273\tO\t32991273\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32991273/\tO\thttps://stackoverflow.com/questions/32991273/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbug\tO\tbug\tO\nreported\tO\treported\tO\non\tO\ton\tO\nhttps://code.google.com/p/android/issues/detail?id=73697&thanks=73697\tO\thttps://code.google.com/p/android/issues/detail?id=73697&thanks=73697\tO\n\t\nSince\tO\tSince\tO\nAPI11 B-Library API11 O\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\nuse\tO\tuse\tO\nandroid:baselineAlignBottom B-Code_Block android:baselineAlignBottom B-Code_Block\n= I-Code_Block = I-Code_Block\n\" I-Code_Block \" I-Code_Block\ntrue I-Code_Block true I-Code_Block\n\" I-Code_Block \" I-Code_Block\n\t\nBelow\tO\tBelow\tO\nAPI11 B-Library API11 O\nyou\tO\tyou\tO\ncan\tO\tcan\tO\noverwrite\tO\toverwrite\tO\ngetBaseLine() B-Function getBaseLine() B-Code_Block\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\nto\tO\tto\tO\nAndroid B-Library Android O\nSupport I-Library Support O\nLibrary I-Library Library O\n23.2.1 B-Version 23.2.1 O\n,\tO\t,\tO\nthis\tO\tthis\tO\nmay\tO\tmay\tO\nsolve\tO\tsolve\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35518401\tO\t35518401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35518401/\tO\thttps://stackoverflow.com/questions/35518401/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread\tO\tread\tO\na\tO\ta\tO\nhuge\tO\thuge\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\nfread B-Function fread O\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nguess\tO\tguess\tO\nsomething\tO\tsomething\tO\nis\tO\tis\tO\nmessed\tO\tmessed\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlayout\tO\tlayout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\ni\tO\ti\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4342 I-Code_Block Q_4342 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\non\tO\ton\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\ni\tO\ti\tO\njust\tO\tjust\tO\ntook\tO\ttook\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nand\tO\tand\tO\nfew\tO\tfew\tO\nbefore\tO\tbefore\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4343 I-Code_Block Q_4343 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4344 I-Code_Block Q_4344 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nsolve\tO\tsolve\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35518401\tO\t35518401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35518401/\tO\thttps://stackoverflow.com/questions/35518401/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\n100%\tO\t100%\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nhere\tO\there\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ntry\tO\ttry\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nwith\tO\twith\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5901 I-Code_Block A_5901 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nfread B-Function fread O\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nseemed\tO\tseemed\tO\nthat\tO\tthat\tO\nfread B-Function fread O\nwas\tO\twas\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\nidentifying\tO\tidentifying\tO\nmy\tO\tmy\tO\ncolumn B-Data_Structure column O\nseparation\tO\tseparation\tO\n.\tO\t.\tO\n\t\nSetting\tO\tSetting\tO\nfill B-Variable fill O\nto\tO\tto\tO\ntrue\tO\ttrue\tO\nallows\tO\tallows\tO\nfread B-Function fread O\nto\tO\tto\tO\nfill\tO\tfill\tO\nin\tO\tin\tO\nany\tO\tany\tO\nmissing\tO\tmissing\tO\ndata\tO\tdata\tO\n-\tO\t-\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nresulting\tO\tresulting\tO\ndata\tO\tdata\tO\nframe\tO\tframe\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nweirdness\tO\tweirdness\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27321862\tO\t27321862\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27321862/\tO\thttps://stackoverflow.com/questions/27321862/\tO\n\t\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nrecently\tO\trecently\tO\nstarted\tO\tstarted\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\na\tO\ta\tO\nload\tO\tload\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\non\tO\ton\tO\na\tO\ta\tO\nHadoop B-Application Hadoop O\n/\tO\t/\tO\nHBase B-Application HBase O\ncluster\tO\tcluster\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nfollowed\tO\tfollowed\tO\nthe\tO\tthe\tO\ntutorial\tO\ttutorial\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nApache B-Application Apache O\n'\tO\t'\tO\nQuick\tO\tQuick\tO\nStart\tO\tStart\tO\n'\tO\t'\tO\nguide\tO\tguide\tO\n,\tO\t,\tO\nand\tO\tand\tO\nhave\tO\thave\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nstandalone\tO\tstandalone\tO\nHBase B-Application HBase O\ninstance\tO\tinstance\tO\nrunning\tO\trunning\tO\nsuccessfully\tO\tsuccessfully\tO\non\tO\ton\tO\none\tO\tone\tO\nof\tO\tof\tO\nour\tO\tour\tO\nservers B-Application servers O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nHBase B-Application HBase O\nshell I-Application shell O\nto\tO\tto\tO\ncreate\tO\tcreate\tO\ntables B-Data_Structure tables O\n,\tO\t,\tO\nput\tO\tput\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nget\tO\tget\tO\n,\tO\t,\tO\nscan\tO\tscan\tO\netc\tO\tetc\tO\n-\tO\t-\tO\nlooks\tO\tlooks\tO\ngood\tO\tgood\tO\n!\tO\t!\tO\n\t\nNow\tO\tNow\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\nour\tO\tour\tO\nservers B-Application servers O\nwhere\tO\twhere\tO\nHBase B-Application HBase O\nwill\tO\twill\tO\nbe\tO\tbe\tO\ninstalled\tO\tinstalled\tO\nare\tO\tare\tO\nall\tO\tall\tO\nlinux B-Operating_System linux O\n,\tO\t,\tO\nbut\tO\tbut\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ndevelopers\tO\tdevelopers\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncompany\tO\tcompany\tO\nuse\tO\tuse\tO\nWindows B-Operating_System Windows O\nmachines\tO\tmachines\tO\n-\tO\t-\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\nif\tO\tif\tO\nwe\tO\twe\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\neveryone\tO\teveryone\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncompany\tO\tcompany\tO\ninstall\tO\tinstall\tO\nCygwin B-Application Cygwin O\njust\tO\tjust\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nJava B-Application Java O\nAPI I-Application API O\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nrunning\tO\trunning\tO\nfrom\tO\tfrom\tO\ninside\tO\tinside\tO\nEclipse B-Application Eclipse O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nJava B-Application Java O\nAPI I-Application API O\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3150 I-Code_Block Q_3150 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFollowed\tO\tFollowed\tO\neventually\tO\teventually\tO\nby\tO\tby\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3151 I-Code_Block Q_3151 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nJava B-Library Java O\nAPI I-Library API O\nfor\tO\tfor\tO\nHBase B-Application HBase O\non\tO\ton\tO\nWindows B-Operating_System Windows O\n,\tO\t,\tO\nconnecting\tO\tconnecting\tO\nto\tO\tto\tO\na\tO\ta\tO\nserver B-Application server O\nrunning\tO\trunning\tO\non\tO\ton\tO\nLinux B-Operating_System Linux O\n,\tO\t,\tO\nwithout\tO\twithout\tO\ninstalling\tO\tinstalling\tO\nCygwin B-Application Cygwin O\n,\tO\t,\tO\nHadoop B-Application Hadoop O\nand\tO\tand\tO\nHBase B-Application HBase O\non\tO\ton\tO\nevery\tO\tevery\tO\ndeveloper\tO\tdeveloper\tO\n's\tO\t's\tO\nmachine\tO\tmachine\tO\n?\tO\t?\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nwould\tO\twould\tO\nanother\tO\tanother\tO\npackage\tO\tpackage\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nKundera B-Application Kundera O\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nwithout\tO\twithout\tO\nCygwin B-Application Cygwin O\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nREST B-Library REST O\nAPI I-Library API O\ncompare\tO\tcompare\tO\nin\tO\tin\tO\nperformance\tO\tperformance\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\nJava B-Application Java O\nAPI I-Application API O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nalways\tO\talways\tO\nwrite\tO\twrite\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nwrapper\tO\twrapper\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nand\tO\tand\tO\ndistribute\tO\tdistribute\tO\nit\tO\tit\tO\nto\tO\tto\tO\nour\tO\tour\tO\ndevelopers\tO\tdevelopers\tO\n(\tO\t(\tO\nalthough\tO\talthough\tO\nno\tO\tno\tO\ndoubt\tO\tdoubt\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nalready\tO\talready\tO\nexist\tO\texist\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\nas\tO\tas\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\ntrouble\tO\ttrouble\tO\nfinding\tO\tfinding\tO\na\tO\ta\tO\ndefinitive\tO\tdefinitive\tO\nanswer\tO\tanswer\tO\non\tO\ton\tO\nGoogle B-Website Google O\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20959651\tO\t20959651\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20959651/\tO\thttps://stackoverflow.com/questions/20959651/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nusing\tO\tusing\tO\nanalog\tO\tanalog\tB-Code_Block\npin B-Device pin I-Code_Block\n3 B-Value 3 I-Code_Block\non\tO\ton\tO\nmy\tO\tmy\tO\nArduino B-Device Arduino O\nUno I-Device Uno O\nto\tO\tto\tO\nsend\tO\tsend\tO\nout\tO\tout\tO\nvoltage\tO\tvoltage\tO\nfrom\tO\tfrom\tO\n0 B-Value 0 O\nto\tO\tto\tO\n5V B-Value 5V O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthat\tO\tthat\tO\nvoltage\tO\tvoltage\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\nthe\tO\tthe\tO\nmotor B-Device motor O\nand\tO\tand\tO\ncurrently\tO\tcurrently\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2230 I-Code_Block Q_2230 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\n255 B-Value 255 B-Code_Block\npwm I-Value pwm I-Code_Block\nfor\tO\tfor\tO\n5V B-Value 5V O\nand\tO\tand\tO\n127 B-Value 127 B-Code_Block\nfor I-Value for O\n2.5V I-Value 2.5V O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nPWM\tO\tPWM\tO\nis\tO\tis\tO\nsending\tO\tsending\tO\nfull\tO\tfull\tO\ncycle\tO\tcycle\tO\nat\tO\tat\tO\n255pwm(5V) B-Value 255pwm(5V) O\n,\tO\t,\tO\nbut\tO\tbut\tO\non\tO\ton\tO\n127V B-Value 127V O\nthe\tO\tthe\tO\ncycle\tO\tcycle\tO\nis\tO\tis\tO\nat\tO\tat\tO\n50% B-Value 50% O\nwhich\tO\twhich\tO\ncauses\tO\tcauses\tO\nmy\tO\tmy\tO\nmotor B-Device motor O\nto\tO\tto\tO\ntwitch\tO\ttwitch\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nsearching\tO\tsearching\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nfull\tO\tfull\tO\nPWM\tO\tPWM\tO\ncycle\tO\tcycle\tO\neven\tO\teven\tO\nat\tO\tat\tO\nlower\tO\tlower\tO\nvolts\tO\tvolts\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20959651\tO\t20959651\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20959651/\tO\thttps://stackoverflow.com/questions/20959651/\tO\n\t\n\t\nFirst\tO\tFirst\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nD3 B-Value D3 O\nnot\tO\tnot\tO\nA3 B-Value A3 O\n,\tO\t,\tO\nsince\tO\tsince\tO\nPWM\tO\tPWM\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nexist\tO\texist\tO\non\tO\ton\tO\nA3 B-Value A3 O\n.\tO\t.\tO\n\t\nAssuming\tO\tAssuming\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndriving\tO\tdriving\tO\na\tO\ta\tO\nDC B-Device DC O\nmotor I-Device motor O\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nservo B-Device servo O\nor\tO\tor\tO\nstepper B-Device stepper O\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\n1st\tO\t1st\tO\n.\tO\t.\tO\n\t\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nsmoothing\tO\tsmoothing\tO\ncapacitor\tO\tcapacitor\tO\n.\tO\t.\tO\n\t\nWhere\tO\tWhere\tO\nyour\tO\tyour\tO\nformula\tO\tformula\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nF B-Code_Block F O\n= I-Code_Block = O\nL*C I-Code_Block L*C O\nNoting\tO\tNoting\tO\nthat\tO\tthat\tO\nanalogWrite B-Function analogWrite O\nuses\tO\tuses\tO\na\tO\ta\tO\nF B-Code_Block F O\n= I-Code_Block = O\n490Hz I-Code_Block 490Hz O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nconcept\tO\tconcept\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\nin\tO\tin\tO\nshort\tO\tshort\tO\nthe\tO\tthe\tO\ncap\tO\tcap\tO\naverage\tO\taverage\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nhigh\tO\thigh\tO\nand\tO\tand\tO\nlows\tO\tlows\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nPWM\tO\tPWM\tO\n,\tO\t,\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nduty\tO\tduty\tO\ncycle\tO\tcycle\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\ncapacitance\tO\tcapacitance\tO\nneeded\tO\tneeded\tO\nis\tO\tis\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfrequency\tO\tfrequency\tO\nand\tO\tand\tO\nimpedance\tO\timpedance\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nprovide\tO\tprovide\tO\nthe\tO\tthe\tO\nanalog\tO\tanalog\tO\nvoltage\tO\tvoltage\tO\n.\tO\t.\tO\n\t\n2nd\tO\t2nd\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nbigger\tO\tbigger\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nArduino B-Device Arduino O\ncan\tO\tcan\tO\nnot\tO\tnot\tO\nsupply\tO\tsupply\tO\nsufficient\tO\tsufficient\tO\ncurrent\tO\tcurrent\tO\nto\tO\tto\tO\ndrive\tO\tdrive\tO\nthe\tO\tthe\tO\nmotor B-Device motor O\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nmax\tO\tmax\tO\nout\tO\tout\tO\nat\tO\tat\tO\nabout\tO\tabout\tO\n20ma B-Value 20ma O\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmotor B-Device motor O\nlikely\tO\tlikely\tO\nneeds\tO\tneeds\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nat\tO\tat\tO\nlow\tO\tlow\tO\nspeeds\tO\tspeeds\tO\nthe\tO\tthe\tO\npulses\tO\tpulses\tO\nwhich\tO\twhich\tO\nwere\tO\twere\tO\nweek\tO\tweek\tO\n,\tO\t,\tO\nstall\tO\tstall\tO\nout\tO\tout\tO\nduring\tO\tduring\tO\ntheir\tO\ttheir\tO\nlow\tO\tlow\tO\nperiods\tO\tperiods\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nPWM\tO\tPWM\tO\noutput\tO\toutput\tO\ndrive\tO\tdrive\tO\na\tO\ta\tO\ntransistor B-Device transistor O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nin\tO\tin\tO\nturn\tO\tturn\tO\nwill\tO\twill\tO\nON-OFF\tO\tON-OFF\tO\nthe\tO\tthe\tO\nmotor B-Device motor O\ndirectly\tO\tdirectly\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npower\tO\tpower\tO\nsupply\tO\tsupply\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nyour\tO\tyour\tO\nmotor\tO\tmotor\tO\nmay\tO\tmay\tO\nhave\tO\thave\tO\nenough\tO\tenough\tO\ninertia\tO\tinertia\tO\nas\tO\tas\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\ncap\tO\tcap\tO\n.\tO\t.\tO\n\t\nsee\tO\tsee\tO\nadafruit-arduino-lesson-13-dc-motors/breadboard\tO\tadafruit-arduino-lesson-13-dc-motors/breadboard\tO\n-layout\tO\t-layout\tO\n\t\nand\tO\tand\tO\nhere\tO\there\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ndiscussion\tO\tdiscussion\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nsmoothing\tO\tsmoothing\tO\ncap\tO\tcap\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10063672\tO\t10063672\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10063672/\tO\thttps://stackoverflow.com/questions/10063672/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmenu-bar B-User_Interface_Element menu-bar O\nbased\tO\tbased\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndisplays\tO\tdisplays\tO\na\tO\ta\tO\nwindow B-User_Interface_Element window O\n,\tO\t,\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nicon B-User_Interface_Element icon O\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nall\tO\tall\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\non\tO\ton\tO\nMac B-Operating_System Mac O\nOS I-Operating_System OS O\nX I-Operating_System X O\nLion B-Version Lion O\n,\tO\t,\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n,\tO\t,\tO\nan\tO\tan\tO\nerror\tO\terror\tO\noccurs\tO\toccurs\tO\non\tO\ton\tO\nSnow B-Version Snow O\nLeopard I-Version Leopard O\nan\tO\tan\tO\nsooner\tO\tsooner\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nMac B-Operating_System Mac O\nOS I-Operating_System OS O\nX I-Operating_System X O\n.\tO\t.\tO\n\t\nAnytime\tO\tAnytime\tO\n[ B-Code_Block [ B-Code_Block\nTheWindowController I-Code_Block TheWindowController I-Code_Block\nwindow I-Code_Block window I-Code_Block\n] I-Code_Block ] I-Code_Block\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nstops\tO\tstops\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nkeeps\tO\tkeeps\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nwindow\tO\twindow\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nnil\tO\tnil\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncorrupt\tO\tcorrupt\tO\n,\tO\t,\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nIdea\tO\tIdea\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\n,\tO\t,\tO\nand\tO\tand\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\nsaid\tO\tsaid\tO\n,\tO\t,\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nhappens\tO\thappens\tO\nin\tO\tin\tO\nMac B-Operating_System Mac O\nOS I-Operating_System OS O\nX I-Operating_System X O\nSnow B-Version Snow O\nLeopard I-Version Leopard O\n.\tO\t.\tO\n\t\nBtw\tO\tBtw\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nARC\tO\tARC\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nmatters\tO\tmatters\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10063672\tO\t10063672\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10063672/\tO\thttps://stackoverflow.com/questions/10063672/\tO\n\t\n\t\nYou\tO\tYou\tO\n're\tO\t're\tO\nloading\tO\tloading\tO\na\tO\ta\tO\nNIB B-File_Type NIB O\nthat\tO\tthat\tO\nuses\tO\tuses\tO\na\tO\ta\tO\n10.7-specific B-Version 10.7-specific O\nfeature\tO\tfeature\tO\n,\tO\t,\tO\nCocoa\tO\tCocoa\tO\nAutolayout\tO\tAutolayout\tO\n,\tO\t,\tO\non\tO\ton\tO\n10.6 B-Version 10.6 O\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwish\tO\twish\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\n10.6 B-Version 10.6 O\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nusing\tO\tusing\tO\nsuch\tO\tsuch\tO\nfeatures\tO\tfeatures\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ndeployment\tO\tdeployment\tO\ntarget\tO\ttarget\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nNIB B-File_Type NIB O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nthen\tO\tthen\tO\ncause\tO\tcause\tO\nwarnings\tO\twarnings\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nfor\tO\tfor\tO\nfeatures\tO\tfeatures\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nthat\tO\tthat\tO\ndeployment\tO\tdeployment\tO\ntarget\tO\ttarget\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nalready\tO\talready\tO\ndone\tO\tdone\tO\nso\tO\tso\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nsimilar\tO\tsimilar\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntarget\tO\ttarget\tO\n's\tO\t's\tO\nbuild\tO\tbuild\tO\nsettings\tO\tsettings\tO\n.\tO\t.\tO\n\t\nSet\tO\tSet\tO\nthe\tO\tthe\tO\ndeployment\tO\tdeployment\tO\ntarget\tO\ttarget\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nnecessarily\tO\tnecessarily\tO\ncause\tO\tcause\tO\nwarnings\tO\twarnings\tO\nfor\tO\tfor\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nuses\tO\tuses\tO\nfeatures\tO\tfeatures\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\nintroduced\tO\tintroduced\tO\nin\tO\tin\tO\n10.7 B-Version 10.7 O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nup\tO\tup\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\nbuild\tO\tbuild\tO\nconfiguration\tO\tconfiguration\tO\nwhich\tO\twhich\tO\nbuilds\tO\tbuilds\tO\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\n10.6 B-Version 10.6 O\nSDK B-Library SDK O\nand\tO\tand\tO\ncompile\tO\tcompile\tO\nagainst\tO\tagainst\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\npost-10.6 B-Version post-10.6 O\nfeatures\tO\tfeatures\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nApple B-Library Apple O\n's\tO\t's\tO\nSDK I-Library SDK O\nCompatibility\tO\tCompatibility\tO\nGuide\tO\tGuide\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21621538\tO\t21621538\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21621538/\tO\thttps://stackoverflow.com/questions/21621538/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nreferring\tO\treferring\tO\nto\tO\tto\tO\nhow\tO\thow\tO\nangular B-Library angular O\njs I-Library js O\nconnects\tO\tconnects\tO\nto\tO\tto\tO\nmongo B-Application mongo O\ndb I-Application db O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhile\tO\twhile\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nurl B-Variable url O\nand\tO\tand\tO\nport B-Variable port O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\ndb B-Variable db O\n'\tO\t'\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\ncode\tO\tcode\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2332 I-Code_Block Q_2332 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWill\tO\tWill\tO\nsomeone\tO\tsomeone\tO\nplease\tO\tplease\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\npath\tO\tpath\tO\nhere\tO\there\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nalso\tO\talso\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nMONGOHQ_URL B-Variable MONGOHQ_URL O\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nhttp://docs.mongohq.com/languages/nodejs.html\tO\thttp://docs.mongohq.com/languages/nodejs.html\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nmongo B-Application mongo O\nurl\tO\turl\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2333 I-Code_Block Q_2333 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\n\t\nSabari B-User_Name Sabari O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21621538\tO\t21621538\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21621538/\tO\thttps://stackoverflow.com/questions/21621538/\tO\n\t\n\t\nThe\tO\tThe\tO\nMONGOHQ_URL B-Variable MONGOHQ_URL B-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nshell B-Application shell O\nenvironment\tO\tenvironment\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nin\tO\tin\tO\nbash B-Language bash B-Code_Block\nyou\tO\tyou\tO\nwould\tO\twould\tO\nadd\tO\tadd\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\n~ B-File_Name ~ B-Code_Block\n/.bash_profile I-File_Name /.bash_profile I-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3064 I-Code_Block A_3064 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n.\tO\t.\tO\n.\tO\t.\tO\nor\tO\tor\tO\ninclude\tO\tinclude\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ncommand B-Application command O\nline I-Application line O\nwhen\tO\twhen\tO\nstarting\tO\tstarting\tO\nthe\tO\tthe\tO\nnode B-Application node O\napp\tO\tapp\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3065 I-Code_Block A_3065 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnother\tO\tAnother\tO\ncommon\tO\tcommon\tO\napproach\tO\tapproach\tO\nwith\tO\twith\tO\nNode.js B-Library Node.js O\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\ndotenv B-Code_Block dotenv B-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nload\tO\tload\tO\nenvironment\tO\tenvironment\tO\nvariables\tO\tvariables\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\n.env B-File_Type .env B-Code_Block\ndirectory\tO\tdirectory\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ndefault\tO\tdefault\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nthis\tO\tthis\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\na\tO\ta\tO\nMongoHQ B-Library MongoHQ O\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8202136\tO\t8202136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8202136/\tO\thttps://stackoverflow.com/questions/8202136/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nmootools B-Library mootools O\najax B-Function ajax O\nrequests\tO\trequests\tO\nto\tO\tto\tO\nrecord\tO\trecord\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\noutgoing\tO\toutgoing\tO\nlinks\tO\tlinks\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nhere\tO\there\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nlink\tO\tlink\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_698 I-Code_Block Q_698 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\njavascript B-Language javascript O\nfunction\tO\tfunction\tO\nclickRecord(id) B-Function clickRecord(id) O\nis\tO\tis\tO\ndefined\tO\tdefined\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_699 I-Code_Block Q_699 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nreturn\tO\treturn\tO\nfalse B-Value false O\n;\tO\t;\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nonclick B-Code_Block onclick O\n=\"\" I-Code_Block =\"\" O\ndeclaration\tO\tdeclaration\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nclick\tO\tclick\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nintended\tO\tintended\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\nfalse B-Value false O\n;\tO\t;\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\najax B-Library ajax O\ncall\tO\tcall\tO\nis\tO\tis\tO\nnever\tO\tnever\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nthe\tO\tthe\tO\nonclick B-Function onclick O\nevent\tO\tevent\tO\nshould\tO\tshould\tO\nexecute\tO\texecute\tO\nfirst\tO\tfirst\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\naction\tO\taction\tO\nshould\tO\tshould\tO\nexecute\tO\texecute\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nan\tO\tan\tO\neven\tO\teven\tO\nstranger\tO\tstranger\tO\nscenario\tO\tscenario\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nonmousedown B-Function onmousedown O\nevent\tO\tevent\tO\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\non\tO\ton\tO\nFirefox B-Application Firefox O\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nonmousedown B-Function onmousedown O\nevent\tO\tevent\tO\n,\tO\t,\tO\nonce\tO\tonce\tO\nyou\tO\tyou\tO\ngo\tO\tgo\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncant\tO\tcant\tO\nsimply\tO\tsimply\tO\nnavigate\tO\tnavigate\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nold\tO\told\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\nthe\tO\tthe\tO\nold\tO\told\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nElse\tO\tElse\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhappen\tO\thappen\tO\non\tO\ton\tO\nIE B-Application IE O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8202136\tO\t8202136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8202136/\tO\thttps://stackoverflow.com/questions/8202136/\tO\n\t\n\t\nOK\tO\tOK\tO\n.\tO\t.\tO\nFound\tO\tFound\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquestions\tO\tquestions\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\ninline\tO\tinline\tO\nmootools B-Library mootools O\nrequest\tO\trequest\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nexecute\tO\texecute\tO\nwhen\tO\twhen\tO\ndeclared\tO\tdeclared\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nonclick() B-Function onclick() O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\ncaused\tO\tcaused\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\nsynchronous\tO\tsynchronous\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nprobably\tO\tprobably\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nwithout\tO\twithout\tO\nactually\tO\tactually\tO\nfully\tO\tfully\tO\ncommitting\tO\tcommitting\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\nthen\tO\tthen\tO\nmoves\tO\tmoves\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\npage\tO\tpage\tO\nbreaking\tO\tbreaking\tO\nthe\tO\tthe\tO\nexecution\tO\texecution\tO\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\na\tO\ta\tO\nsynchronous\tO\tsynchronous\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nfixes\tO\tfixes\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThe\tO\tThe\tO\nsecond\tO\tsecond\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nmentioned\tO\tmentioned\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nonmousedownevent B-Function onmousedownevent O\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nfirefox B-Application firefox O\nnot\tO\tnot\tO\nexecuting\tO\texecuting\tO\nthe\tO\tthe\tO\najax B-Library ajax O\ncall\tO\tcall\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\nnavigates\tO\tnavigates\tO\nback\tO\tback\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nunsolved\tO\tunsolved\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\nam\tO\tam\tO\nleaving\tO\tleaving\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nas\tO\tas\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nquestion\tO\tquestion\tO\nraised\tO\traised\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8202136\tO\t8202136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8202136/\tO\thttps://stackoverflow.com/questions/8202136/\tO\n\t\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nonclick B-Function onclick B-Code_Block\n-\tO\t-\tO\nvery\tO\tvery\tO\n1995\tO\t1995\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nattach\tO\tattach\tO\nan\tO\tan\tO\nevent\tO\tevent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nevent.stop() B-Function event.stop() B-Code_Block\n,\tO\t,\tO\nie\tO\tie\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_980 I-Code_Block A_980 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nJS B-Language JS O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_981 I-Code_Block A_981 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBtw\tO\tBtw\tO\n.\tO\t.\tO\n\t\n<div B-Code_Block <div B-Code_Block\nid=\"1\"> I-Code_Block id=\"1\"> I-Code_Block\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvalid\tO\tvalid\tO\nin\tO\tin\tO\nHTML B-Language HTML O\n,\tO\t,\tO\nan\tO\tan\tO\nID B-Variable ID O\n'd\tO\t'd\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\na\tO\ta\tO\nletter\tO\tletter\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35568493\tO\t35568493\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35568493/\tO\thttps://stackoverflow.com/questions/35568493/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nstop\tO\tstop\tO\nMetaTrader B-Application MetaTrader B-Keyboard_IP\nTerminal I-Application Terminal I-Keyboard_IP\n4 B-Version 4 I-Keyboard_IP\noffline\tO\toffline\tO\nchart\tO\tchart\tO\nfrom\tO\tfrom\tO\nupdating\tO\tupdating\tO\nthe\tO\tthe\tO\nprice\tO\tprice\tO\non\tO\ton\tO\nits\tO\tits\tO\nown\tO\town\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nprice\tO\tprice\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nin\tO\tin\tO\ntimezone\tO\ttimezone\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nbroker\tO\tbroker\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nchecked\tO\tchecked\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nproperties\tO\tproperties\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nMQL4 B-Language MQL4 B-Code_Block\nforum\tO\tforum\tO\n.\tO\t.\tO\n\t\nNo\tO\tNo\tO\nluck\tO\tluck\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35568493\tO\t35568493\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35568493/\tO\thttps://stackoverflow.com/questions/35568493/\tO\n\t\n\t\nFor\tO\tFor\tO\ntrully\tO\ttrully\tO\noffline-charts\tO\toffline-charts\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nway\tO\tway\tO\n\t\nWhile\tO\tWhile\tO\nregular\tO\tregular\tO\ncharts\tO\tcharts\tO\nprocess\tO\tprocess\tO\nan\tO\tan\tO\nindependent\tO\tindependent\tO\nevent-flow\tO\tevent-flow\tO\n,\tO\t,\tO\nreceived\tO\treceived\tO\nfrom\tO\tfrom\tO\nMT4-Server B-Application MT4-Server O\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nchange\tO\tchange\tO\nfor\tO\tfor\tO\nretaining\tO\tretaining\tO\nyour\tO\tyour\tO\nown\tO\town\tO\ncontrol\tO\tcontrol\tO\nover\tO\tover\tO\nTOHLCV-data B-Code_Block TOHLCV-data B-Code_Block\nrecords\tO\trecords\tO\n-\tO\t-\tO\n-\tO\t-\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\nTimeZone B-Code_Block TimeZone B-Code_Block\nshifts\tO\tshifts\tO\n,\tO\t,\tO\nsynthetic\tO\tsynthetic\tO\nBar(s) B-Code_Block Bar(s) B-Code_Block\nadditions\tO\tadditions\tO\nand\tO\tand\tO\nother\tO\tother\tO\nadaptations\tO\tadaptations\tO\n,\tO\t,\tO\nas\tO\tas\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\nown\tO\town\tO\n,\tO\t,\tO\ntransformed\tO\ttransformed\tO\n,\tO\t,\tO\nTOHLCV-history B-Code_Block TOHLCV-history B-Code_Block\nand\tO\tand\tO\nimport\tO\timport\tB-Code_Block\nthese\tO\tthese\tO\nrecords\tO\trecords\tO\nvia\tO\tvia\tO\nF2 B-Keyboard_IP F2 B-Keyboard_IP\nfacility\tO\tfacility\tI-Keyboard_IP\n,\tO\t,\tI-Keyboard_IP\ncalled\tO\tcalled\tI-Keyboard_IP\nin\tO\tin\tI-Keyboard_IP\nMT4 B-Application MT4 I-Keyboard_IP\na\tO\ta\tI-Keyboard_IP\nHistory\tO\tHistory\tI-Keyboard_IP\nCentre\tO\tCentre\tI-Keyboard_IP\n.\tO\t.\tI-Keyboard_IP\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\na\tO\ta\tO\nlive-quote-stream\tO\tlive-quote-stream\tO\nupdates\tO\tupdates\tO\nin\tO\tin\tO\nMetaTrader B-Application MetaTrader B-Keyboard_IP\nTerminal I-Application Terminal I-Keyboard_IP\n4 B-Version 4 I-Keyboard_IP\n\t\nThe\tO\tThe\tO\nsimplest\tO\tsimplest\tO\never\tO\tever\tO\nway\tO\tway\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\nto\tO\tto\tO\nany\tO\tany\tO\nTrading B-Application Trading O\nServer I-Application Server O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\navoid\tO\tavoid\tO\nunwanted\tO\tunwanted\tO\nupdates\tO\tupdates\tO\nfrom\tO\tfrom\tO\nreaching\tO\treaching\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\nanFxQuoteStreamPROCESSOR B-Code_Block anFxQuoteStreamPROCESSOR B-Code_Block\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nused\tO\tused\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nway\tO\tway\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ninject\tO\tinject\tO\nfake\tO\tfake\tO\nQuoteStreamDATA B-Code_Block QuoteStreamDATA B-Code_Block\ninto\tO\tinto\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nMT4 B-Application MT4 B-Code_Block\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthis\tO\tthis\tO\nenters\tO\tenters\tO\na\tO\ta\tO\ngray\tO\tgray\tO\n,\tO\t,\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\nblack\tO\tblack\tO\nzone\tO\tzone\tO\n,\tO\t,\tO\nas\tO\tas\tO\nMetaQuotes B-Website MetaQuotes O\n, I-Website , O\nInc I-Website Inc O\n. I-Website . O\n,\tO\t,\tO\npostulated\tO\tpostulated\tO\nthe\tO\tthe\tO\nServer/Terminal B-Application Server/Terminal O\nprotocol\tO\tprotocol\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nprotected\tO\tprotected\tO\nIP\tO\tIP\tO\nand\tO\tand\tO\nany\tO\tany\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\nreverse-engineer\tO\treverse-engineer\tO\nthey\tO\tthey\tO\nconsider\tO\tconsider\tO\nan\tO\tan\tO\nunlawfull\tO\tunlawfull\tO\nviolation\tO\tviolation\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\nrights\tO\trights\tO\nand\tO\tand\tO\ncould\tO\tcould\tO\ncause\tO\tcause\tO\nlegal\tO\tlegal\tO\nconsequences\tO\tconsequences\tO\n,\tO\t,\tO\nso\tO\tso\tO\nbe\tO\tbe\tO\ncarefull\tO\tcarefull\tO\non\tO\ton\tO\nstepping\tO\tstepping\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAnyway\tO\tAnyway\tO\n,\tO\t,\tO\na\tO\ta\tO\ndoable\tO\tdoable\tO\napproach\tO\tapproach\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nexplicit\tO\texplicit\tO\nrisk\tO\trisk\tO\nwarning\tO\twarning\tO\nbeing\tO\tbeing\tO\npresented\tO\tpresented\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35568493\tO\t35568493\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35568493/\tO\thttps://stackoverflow.com/questions/35568493/\tO\n\t\n\t\nCa\tO\tCa\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nQuotes\tO\tQuotes\tO\nget\tO\tget\tO\nfed\tO\tfed\tO\nin\tO\tin\tO\nfrom\tO\tfrom\tO\nmt4 B-Application mt4 O\nand\tO\tand\tO\nget\tO\tget\tO\n\"\tO\t\"\tO\nevented\tO\tevented\tO\n\"\tO\t\"\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nmetatrader B-Application metatrader O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15276020\tO\t15276020\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15276020/\tO\thttps://stackoverflow.com/questions/15276020/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ncompare\tO\tcompare\tO\ntool\tO\ttool\tO\nthat\tO\tthat\tO\nAnkhSVN B-Application AnkhSVN O\nuses\tO\tuses\tO\nin\tO\tin\tO\nVS2012 B-Application VS2012 O\nbut\tO\tbut\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nSubversion\tO\tSubversion\tO\nEnvironment\tO\tEnvironment\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nSubversion\tO\tSubversion\tO\nUser\tO\tUser\tO\nTools\tO\tTools\tO\n\"\tO\t\"\tO\nmenus\tO\tmenus\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nshowing\tO\tshowing\tO\nup\tO\tup\tO\nlike\tO\tlike\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nin\tO\tin\tO\nVS2010 B-Application VS2010 O\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nsee\tO\tsee\tO\n:\tO\t:\tO\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nseeing\tO\tseeing\tO\nin\tO\tin\tO\nVS2012 B-Application VS2012 O\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwith\tO\twith\tO\nAnkhSVN B-Application AnkhSVN O\nv\tO\tv\tO\n2.4.11610.27 B-Version 2.4.11610.27 O\n(\tO\t(\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nstable\tO\tstable\tO\nversion\tO\tversion\tO\nas\tO\tas\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nbeing\tO\tbeing\tO\ncreated\tO\tcreated\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nVS2012 B-Application VS2012 O\nUltimate\tO\tUltimate\tO\nbut\tO\tbut\tO\n,\tO\t,\tO\npresumably\tO\tpresumably\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\noccur\tO\toccur\tO\non\tO\ton\tO\nany\tO\tany\tO\nVS2012 B-Application VS2012 O\nversion\tO\tversion\tO\nwhich\tO\twhich\tO\nsupports\tO\tsupports\tO\nplugins\tO\tplugins\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\nTortoiseSVN B-Library TortoiseSVN O\ninstalled\tO\tinstalled\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ncomputer\tO\tcomputer\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndoubt\tO\tdoubt\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nreinstalling\tO\treinstalling\tO\nthe\tO\tthe\tO\nAnkhSVN B-Application AnkhSVN O\nplugin\tO\tplugin\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nthan\tO\tthan\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nthe\tO\tthe\tO\nAnkhSVN B-Application AnkhSVN O\nplugin\tO\tplugin\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nmention\tO\tmention\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nCollabNet B-Application CollabNet O\nweb\tO\tweb\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthese\tO\tthese\tO\nmenu\tO\tmenu\tO\nitems\tO\titems\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15276020\tO\t15276020\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15276020/\tO\thttps://stackoverflow.com/questions/15276020/\tO\n\t\n\t\nThis\tO\tThis\tO\nhappened\tO\thappened\tO\nto\tO\tto\tO\nme\tO\tme\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nAnkhSVN B-Application AnkhSVN O\nwas\tO\twas\tO\nnot\tO\tnot\tO\nmy\tO\tmy\tO\nactive\tO\tactive\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\ncontrol\tO\tcontrol\tO\nprovider\tO\tprovider\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\n\t\ntools->options->source\tO\ttools->options->source\tO\ncontrol\tO\tcontrol\tO\nand\tO\tand\tO\nchoose\tO\tchoose\tO\nAnkhSVN B-Application AnkhSVN O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15276020\tO\t15276020\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15276020/\tO\thttps://stackoverflow.com/questions/15276020/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\neveryone\tO\teveryone\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\nuninstall/reinstall\tO\tuninstall/reinstall\tO\nof\tO\tof\tO\nAnkhSVN B-Application AnkhSVN O\nsolved\tO\tsolved\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\ninto\tO\tinto\tO\nAdvanced\tO\tAdvanced\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\ninstallation\tO\tinstallation\tO\nand\tO\tand\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nVS2012 B-Application VS2012 O\nis\tO\tis\tO\nselected\tO\tselected\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\ntried\tO\ttried\tO\na\tO\ta\tO\nrepair\tO\trepair\tO\nbefore\tO\tbefore\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nuninstall/reinstall\tO\tuninstall/reinstall\tO\nwith\tO\twith\tO\nVS2012 B-Application VS2012 O\nselected\tO\tselected\tO\nin\tO\tin\tO\nAdvanced\tO\tAdvanced\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22070727\tO\t22070727\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22070727/\tO\thttps://stackoverflow.com/questions/22070727/\tO\n\t\n\t\nMy\tO\tMy\tO\nblank.ex B-File_Name blank.ex O\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2390 I-Code_Block Q_2390 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\niex B-Application iex O\n,\tO\t,\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2391 I-Code_Block Q_2391 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nwondering\tO\twondering\tO\nwhat\tO\twhat\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nAny B-Code_Block Any B-Code_Block\nmeans\tO\tmeans\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncontext\tO\tcontext\tO\n?\tO\t?\tO\n\t\nand\tO\tand\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nsomething\tO\tsomething\tO\ninteresting\tO\tinteresting\tO\n,\tO\t,\tO\nweather\tO\tweather\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nimplemented\tO\timplemented\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2392 I-Code_Block Q_2392 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\niex B-Application iex O\nbefore\tO\tbefore\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nthat\tO\tthat\tO\nmeans\tO\tmeans\tO\nthis\tO\tthis\tO\nimplemented\tO\timplemented\tO\ndoes\tO\tdoes\tO\nnothing\tO\tnothing\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmissed\tO\tmissed\tO\nsomething\tO\tsomething\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22070727\tO\t22070727\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22070727/\tO\thttps://stackoverflow.com/questions/22070727/\tO\n\t\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\nconfusing\tO\tconfusing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nget\tO\tget\tO\nstarted\tO\tstarted\tO\nwith\tO\twith\tO\nexample\tO\texample\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nFirstly\tO\tFirstly\tO\nmy\tO\tmy\tO\nblank.ex B-File_Name blank.ex O\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2996 I-Code_Block A_2996 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nafter\tO\tafter\tO\nI\tO\tI\tO\ncompile\tO\tcompile\tO\nit\tO\tit\tO\nelixirc B-Code_Block elixirc B-Code_Block\nblank.ex I-Code_Block blank.ex I-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\nthese\tO\tthese\tO\nbeam B-File_Type beam O\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2997 I-Code_Block A_2997 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nsecondly\tO\tsecondly\tO\nmy\tO\tmy\tO\nblank.ex B-File_Name blank.ex O\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2998 I-Code_Block A_2998 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\ncompile\tO\tcompile\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthese\tO\tthese\tO\nbeam B-File_Type beam O\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2999 I-Code_Block A_2999 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\nElixir.Blank.Integer.beam B-File_Name Elixir.Blank.Integer.beam B-Code_Block\nElixir.Blank.List.beam I-File_Name Elixir.Blank.List.beam I-Code_Block\nfiles I-File_Name files O\n,\tO\t,\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nin\tO\tin\tO\niex B-Application iex O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3000 I-Code_Block A_3000 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nbecause\tO\tbecause\tO\nmy\tO\tmy\tO\nmissing\tO\tmissing\tO\nof\tO\tof\tO\ndeleting\tO\tdeleting\tO\nthe\tO\tthe\tO\nolder\tO\tolder\tO\nbeam B-File_Type beam O\nfiles\tO\tfiles\tO\nmanually\tO\tmanually\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22070727\tO\t22070727\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22070727/\tO\thttps://stackoverflow.com/questions/22070727/\tO\n\t\n\t\nAny B-Code_Block Any B-Code_Block\nclause\tO\tclause\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nif\tO\tif\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nprovided\tO\tprovided\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngetting\tO\tgetting\tO\nthese\tO\tthese\tO\nweird\tO\tweird\tO\nresults\tO\tresults\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nincorrect\tO\tincorrect\tO\ndefinitions\tO\tdefinitions\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nshell B-Application shell O\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2993 I-Code_Block A_2993 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\ngot\tO\tgot\tO\nexpected\tO\texpected\tO\nresults\tO\tresults\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2994 I-Code_Block A_2994 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nlast\tO\tlast\tO\nexample\tO\texample\tO\nis\tO\tis\tO\na\tO\ta\tO\nfallback\tO\tfallback\tO\nto\tO\tto\tO\nAny B-Code_Block Any B-Code_Block\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nprotocol\tO\tprotocol\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndefined\tO\tdefined\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ntuple\tO\ttuple\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nAny B-Code_Block Any B-Code_Block\nimplementation\tO\timplementation\tO\n,\tO\t,\tO\nand\tO\tand\tO\nrestart\tO\trestart\tO\nthe\tO\tthe\tO\nshell B-Application shell O\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2995 I-Code_Block A_2995 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45838700\tO\t45838700\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45838700/\tO\thttps://stackoverflow.com/questions/45838700/\tO\n\t\n\t\nMy\tO\tMy\tO\nOpenfire B-Application Openfire O\nserver B-Device server O\nstopped\tO\tstopped\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nit\tO\tit\tO\nhappens\tO\thappens\tO\nevery\tO\tevery\tO\n2\tO\t2\tO\nor\tO\tor\tO\n3\tO\t3\tO\ndays\tO\tdays\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nrestart\tO\trestart\tO\nservice\tO\tservice\tO\nmanually\tO\tmanually\tO\nwhat\tO\twhat\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n?\tO\t?\tO\n\t\nit\tO\tit\tO\nreally\tO\treally\tO\na\tO\ta\tO\nbig\tO\tbig\tO\nissue\tO\tissue\tO\nand\tO\tand\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nare\tO\tare\tO\nlive.Please\tO\tlive.Please\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfixed\tO\tfixed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nError\tO\tError\tO\nlog B-File_Type log O\n:\tO\t:\tO\n\t\n2017.08.23 B-Output_Block 2017.08.23 O\n09:37:35 I-Output_Block 09:37:35 O\norg.jivesoftware.openfire.plugin.rest.exceptions.RESTExceptionMapper I-Output_Block org.jivesoftware.openfire.plugin.rest.exceptions.RESTExceptionMapper O\n- I-Output_Block - O\nUserAlreadyExistsException I-Output_Block UserAlreadyExistsException O\n: I-Output_Block : O\nCould I-Output_Block Could O\nnot I-Output_Block not O\ncreate I-Output_Block create O\nnew I-Output_Block new O\nuser I-Output_Block user O\nwith I-Output_Block with O\nressource I-Output_Block ressource O\n3 I-Output_Block 3 O\n\t\natg B-Output_Block atg O\n. I-Output_Block . O\njivesoftware I-Output_Block jivesoftware O\n. I-Output_Block . O\nopenfire I-Output_Block openfire O\n. I-Output_Block . O\ncontainer I-Output_Block container O\n. I-Output_Block . O\nPluginManager I-Output_Block PluginManager O\n. I-Output_Block . O\nloadPlugin(PluginManager I-Output_Block loadPlugin(PluginManager O\n. I-Output_Block . O\njavaorg I-Output_Block javaorg O\n. I-Output_Block . O\njivesoftware I-Output_Block jivesoftware O\n. I-Output_Block . O\nopenfire I-Output_Block openfire O\n. I-Output_Block . O\ncontainer I-Output_Block container O\n. I-Output_Block . O\nPluginMonitor$MonitorTask$4 I-Output_Block PluginMonitor$MonitorTask$4 O\n. I-Output_Block . O\ncall(PluginMonitor I-Output_Block call(PluginMonitor O\n. I-Output_Block . O\njavaorg I-Output_Block javaorg O\n. I-Output_Block . O\njivesoftware I-Output_Block jivesoftware O\n. I-Output_Block . O\nopenfire I-Output_Block openfire O\n. I-Output_Block . O\ncontainer I-Output_Block container O\n. I-Output_Block . O\nPluginMonitor$MonitorTask$4 I-Output_Block PluginMonitor$MonitorTask$4 O\n. I-Output_Block . O\ncall(PluginMonitor I-Output_Block call(PluginMonitor O\n. I-Output_Block . O\njavaat I-Output_Block javaat O\njava I-Output_Block java O\n. I-Output_Block . O\nutil I-Output_Block util O\n. I-Output_Block . O\nconcurrent I-Output_Block concurrent O\n. I-Output_Block . O\nFutureTask I-Output_Block FutureTask O\n. I-Output_Block . O\nrun(FutureTask I-Output_Block run(FutureTask O\n. I-Output_Block . O\njava I-Output_Block java O\n: I-Output_Block : O\n262 I-Output_Block 262 O\n) I-Output_Block ) O\n\t\njava B-Output_Block java O\n. I-Output_Block . O\nutil I-Output_Block util O\n. I-Output_Block . O\nconcurrent I-Output_Block concurrent O\n. I-Output_Block . O\nThreadPoolExecutor I-Output_Block ThreadPoolExecutor O\n. I-Output_Block . O\nrunWorker(ThreadPoolExecutor I-Output_Block runWorker(ThreadPoolExecutor O\n. I-Output_Block . O\njava I-Output_Block java O\n: I-Output_Block : O\njava I-Output_Block java O\n. I-Output_Block . O\nutil I-Output_Block util O\n. I-Output_Block . O\nconcurrent I-Output_Block concurrent O\n. I-Output_Block . O\nThreadPoolExecutor$Worker I-Output_Block ThreadPoolExecutor$Worker O\n. I-Output_Block . O\nrun(ThreadPoolExecutor I-Output_Block run(ThreadPoolExecutor O\n. I-Output_Block . O\njava I-Output_Block java O\nat I-Output_Block at O\njava I-Output_Block java O\n. I-Output_Block . O\nlang I-Output_Block lang O\n. I-Output_Block . O\nThread I-Output_Block Thread O\n. I-Output_Block . O\nrun I-Output_Block run O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30773944\tO\t30773944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30773944/\tO\thttps://stackoverflow.com/questions/30773944/\tO\n\t\n\t\nIn\tO\tIn\tO\ncontroller\tO\tcontroller\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nwritten\tO\twritten\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nconvert\tO\tconvert\tO\nrank B-Variable rank O\ninto\tO\tinto\tO\nFloat B-Data_Type Float O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3704 I-Code_Block Q_3704 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nbut\tO\tbut\tO\nhere\tO\there\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nerror\tO\terror\tO\nthat\tO\tthat\tO\nReferenceError B-Error_Name ReferenceError O\n:\tO\t:\tO\ndetails\tO\tdetails\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndefined\tO\tdefined\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\njson B-File_Type json O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3705 I-Code_Block Q_3705 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nhtml B-File_Type html O\nif\tO\tif\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\nheader B-User_Interface_Element header O\nof\tO\tof\tO\ntable B-User_Interface_Element table O\nthen\tO\tthen\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nsort\tO\tsort\tO\nthe\tO\tthe\tO\ntable B-User_Interface_Element table O\nboth\tO\tboth\tO\nascending\tO\tascending\tO\nand\tO\tand\tO\ndescending\tO\tdescending\tO\norder\tO\torder\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3706 I-Code_Block Q_3706 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30773944\tO\t30773944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30773944/\tO\thttps://stackoverflow.com/questions/30773944/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ndynamic\tO\tdynamic\tO\nsorting\tO\tsorting\tO\nby\tO\tby\tO\nclicking\tO\tclicking\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nheader B-User_Interface_Element header O\ndivs B-HTML_XML_Tag divs O\ndoing\tO\tdoing\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4386 I-Code_Block A_4386 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncontroller\tO\tcontroller\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4387 I-Code_Block A_4387 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDoing\tO\tDoing\tO\nso\tO\tso\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nrevert\tO\trevert\tO\nthe\tO\tthe\tO\nsort\tO\tsort\tO\nwhen\tO\twhen\tO\nre-clicking\tO\tre-clicking\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nheader B-User_Interface_Element header O\nof\tO\tof\tO\na\tO\ta\tO\ncolumn B-User_Interface_Element column O\n.\tO\t.\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\ndynamically\tO\tdynamically\tO\nname\tO\tname\tO\nyour\tO\tyour\tO\nIDs B-HTML_XML_Tag IDs O\nin\tO\tin\tO\nthe\tO\tthe\tO\nng-repeat B-Function ng-repeat O\ndirective\tO\tdirective\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nerrors\tO\terrors\tO\nand\tO\tand\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\nHTML B-Language HTML O\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n49127467\tO\t49127467\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/49127467/\tO\thttps://stackoverflow.com/questions/49127467/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nRetrofit B-Class Retrofit O\nin\tO\tin\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nI\tO\tI\tO\nbuild\tO\tbuild\tO\nit\tO\tit\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6569 I-Code_Block Q_6569 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmodel\tO\tmodel\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6570 I-Code_Block Q_6570 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\n@Expose B-Code_Block @Expose O\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nserialize B-Function serialize O\nteacherServiceId B-Variable teacherServiceId O\nin\tO\tin\tO\none\tO\tone\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nother\tO\tother\tO\nones\tO\tones\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nwithout\tO\twithout\tO\ncreating\tO\tcreating\tO\nnew\tO\tnew\tO\nmodel\tO\tmodel\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nRetrofit B-Class Retrofit O\ninstance\tO\tinstance\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29743699\tO\t29743699\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29743699/\tO\thttps://stackoverflow.com/questions/29743699/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nmade\tO\tmade\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nwith\tO\twith\tO\nC# B-Language C# O\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\napplication\tO\tapplication\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nread\tO\tread\tO\nevery\tO\tevery\tO\n20\tO\t20\tO\nsecond\tO\tsecond\tO\n840\tO\t840\tO\nregisters B-Device registers O\nof\tO\tof\tO\nPLC B-Device PLC O\nvia\tO\tvia\tO\nModbus B-Class Modbus O\nTCP I-Class TCP O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nlibrary\tO\tlibrary\tO\nhttp://www.codeproject.com/Tips/16260/Modbus-TCP-class\tO\thttp://www.codeproject.com/Tips/16260/Modbus-TCP-class\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n\t\nMaster.ReadHoldingRegister(ushortid,byteunit,ushortstartAddress,ushortnumInputs) B-Function Master.ReadHoldingRegister(ushortid,byteunit,ushortstartAddress,ushortnumInputs) B-Code_Block\n\t\nIt\tO\tIt\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\nbytes B-Data_Type bytes O\narray B-Data_Structure array O\nof\tO\tof\tO\nlenght\tO\tlenght\tO\n144\tO\t144\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\n1680\tO\t1680\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nidea\tO\tidea\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29743699\tO\t29743699\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29743699/\tO\thttps://stackoverflow.com/questions/29743699/\tO\n\t\n\t\nModbus B-Class Modbus O\nallows\tO\tallows\tO\nup\tO\tup\tO\nto\tO\tto\tO\n125\tO\t125\tO\nholding\tO\tholding\tO\nregisters B-Device registers O\nto\tO\tto\tO\nbe\tO\tbe\tO\nread\tO\tread\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nRead B-Function Read O\nHolding I-Function Holding O\nRegisters I-Function Registers O\nfunction\tO\tfunction\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nlibrary\tO\tlibrary\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nthrow\tO\tthrow\tO\nan\tO\tan\tO\nerror\tO\terror\tO\non\tO\ton\tO\na\tO\ta\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\n840\tO\t840\tO\nregisters B-Device registers O\n,\tO\t,\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\ntaking\tO\ttaking\tO\nthis\tO\tthis\tO\nlimit\tO\tlimit\tO\ninto\tO\tinto\tO\naccount\tO\taccount\tO\nby\tO\tby\tO\nspliting\tO\tspliting\tO\nyour\tO\tyour\tO\ncall\tO\tcall\tO\nin\tO\tin\tO\nseveral\tO\tseveral\tO\nRead B-Function Read O\nHolding I-Function Holding O\nRegisters I-Function Registers O\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nstudy\tO\tstudy\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nreliably\tO\treliably\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29743699\tO\t29743699\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29743699/\tO\thttps://stackoverflow.com/questions/29743699/\tO\n\t\n\t\nAs\tO\tAs\tO\nsuggested\tO\tsuggested\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nof\tO\tof\tO\ndelay\tO\tdelay\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ncalls\tO\tcalls\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46974708\tO\t46974708\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46974708/\tO\thttps://stackoverflow.com/questions/46974708/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nbuild.xml B-File_Name build.xml O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntriggering\tO\ttriggering\tO\nmvn B-Application mvn O\nbuild\tO\tbuild\tO\nfrom\tO\tfrom\tO\nant\tO\tant\tO\nscript\tO\tscript\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nrenaming\tO\trenaming\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\ncopying\tO\tcopying\tO\nit\tO\tit\tO\nto\tO\tto\tO\nspecific\tO\tspecific\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nconcept\tO\tconcept\tO\nof\tO\tof\tO\nprofile\tO\tprofile\tO\nin\tO\tin\tO\nmaven B-Application maven O\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nprovide\tO\tprovide\tO\nmaven B-Application maven O\nprofile\tO\tprofile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nsnapshot\tO\tsnapshot\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6216 I-Code_Block Q_6216 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46974708\tO\t46974708\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46974708/\tO\thttps://stackoverflow.com/questions/46974708/\tO\n\t\n\t\nAnt\tO\tAnt\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\narguments\tO\targuments\tO\npassed\tO\tpassed\tO\nby\tO\tby\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nadd\tO\tadd\tO\nyour\tO\tyour\tO\nprofile\tO\tprofile\tO\nentry\tO\tentry\tO\nas\tO\tas\tO\nan\tO\tan\tO\nargument\tO\targument\tO\n.\tO\t.\tO\n\t\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6835 I-Code_Block A_6835 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7861757\tO\t7861757\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7861757/\tO\thttps://stackoverflow.com/questions/7861757/\tO\n\t\n\t\nprivate B-Code_Block private O\nvoid I-Code_Block void O\nXButtonExit_Click I-Code_Block XButtonExit_Click O\n( I-Code_Block ( O\nobject I-Code_Block object O\nsender I-Code_Block sender O\n, I-Code_Block , O\nEventArgs I-Code_Block EventArgs O\ne I-Code_Block e O\n) I-Code_Block ) O\n{ I-Code_Block { O\n//This I-Code_Block //This O\nwill I-Code_Block will O\nclose I-Code_Block close O\nthe I-Code_Block the O\nprogram I-Code_Block program O\nClose() I-Code_Block Close() O\n;} I-Code_Block ;} O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_636 I-Code_Block Q_636 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nwork\tO\twork\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nTextBoxes B-Class TextBoxes O\ninto\tO\tinto\tO\na\tO\ta\tO\ncurrency B-Data_Type currency O\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nthe\tO\tthe\tO\nmath\tO\tmath\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbiggest\tO\tbiggest\tO\nproblem\tO\tproblem\tO\nIm\tO\tIm\tO\n'\tO\t'\tO\nhaving\tO\thaving\tO\nis\tO\tis\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsales B-Variable sales O\ntax I-Variable tax O\nwhen\tO\twhen\tO\nconverting\tO\tconverting\tO\nit\tO\tit\tO\nto\tO\tto\tO\ncurrency B-Data_Type currency O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nmath\tO\tmath\tO\nwork\tO\twork\tO\nif\tO\tif\tO\nsubtotal\tO\tsubtotal\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncurrency B-Data_Type currency O\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nit\tO\tit\tO\nback\tO\tback\tO\nto\tO\tto\tO\ndecimal B-Data_Type decimal O\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nSubtotal B-Code_Block Subtotal O\n* I-Code_Block * O\n1.0 I-Code_Block 1.0 O\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\n:\tO\t:\tO\n\t\n//Take\tO\t//Take\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\nxTextBoxTotal B-Variable xTextBoxTotal O\nand\tO\tand\tO\nstore\tO\tstore\tO\nit\tO\tit\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_637 I-Code_Block Q_637 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nFormatException B-Error_Name FormatException O\nwas\tO\twas\tO\nunhandled\tO\tunhandled\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nConvert.toInt16(xtextboxTotal.text) B-Function Convert.toInt16(xtextboxTotal.text) O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7861757\tO\t7861757\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7861757/\tO\thttps://stackoverflow.com/questions/7861757/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nformating\tO\tformating\tO\na\tO\ta\tO\nnumeric\tO\tnumeric\tO\nstring B-Data_Type string O\nas\tO\tas\tO\ncurrency B-Data_Type currency O\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nit\tO\tit\tO\nback\tO\tback\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nre-convert\tO\tre-convert\tO\nit\tO\tit\tO\nback\tO\tback\tO\nto\tO\tto\tO\na\tO\ta\tO\nnumeric B-Data_Type numeric O\nform\tO\tform\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncurency B-Data_Type curency O\nformatting\tO\tformatting\tO\nrules\tO\trules\tO\nyou\tO\tyou\tO\nused\tO\tused\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\n:\tO\t:\tO\nhttp://msdn.microsoft.com/en-us/library/3s27fasw.aspx\tO\thttp://msdn.microsoft.com/en-us/library/3s27fasw.aspx\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_916 I-Code_Block A_916 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26096867\tO\t26096867\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26096867/\tO\thttps://stackoverflow.com/questions/26096867/\tO\n\t\n\t\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nquestion\tO\tquestion\tO\nmay\tO\tmay\tO\nseem\tO\tseem\tO\nstupid\tO\tstupid\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nbeginner\tO\tbeginner\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSpring B-Library Spring O\nframework\tO\tframework\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nsearching\tO\tsearching\tO\nand\tO\tand\tO\ntesting\tO\ttesting\tO\nmany\tO\tmany\tO\nmethods\tO\tmethods\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nsuccess\tO\tsuccess\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nlogging\tO\tlogging\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nWeb\tO\tWeb\tO\nService\tO\tService\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nSpring B-Library Spring O\n.\tO\t.\tO\n\t\nMaven B-Library Maven O\nis\tO\tis\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\ndependencies\tO\tdependencies\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nspring-boot-starter-ws B-Library spring-boot-starter-ws B-Code_Block\ndependency\tO\tdependency\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nstarter-web\tO\tstarter-web\tO\nstarter\tO\tstarter\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nwith\tO\twith\tO\nlog4j B-Library log4j O\n,\tO\t,\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\na\tO\ta\tO\ndependency\tO\tdependency\tO\nand\tO\tand\tO\nconfig B-File_Type config O\nfile\tO\tfile\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nproduce\tO\tproduce\tO\na\tO\ta\tO\nlog B-File_Type log O\nfile\tO\tfile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ninitialization\tO\tinitialization\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlogger B-Class logger O\nitself\tO\titself\tO\n,\tO\t,\tO\nand\tO\tand\tO\nno\tO\tno\tO\nlogging\tO\tlogging\tO\nabout\tO\tabout\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\nis\tO\tis\tO\nused\tO\tused\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nlog4j B-Library log4j O\nis\tO\tis\tO\nin\tO\tin\tO\nTRACE\tO\tTRACE\tO\nlevel\tO\tlevel\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nwith\tO\twith\tO\nlogback B-Library logback O\n,\tO\t,\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nlogback.xml B-File_Name logback.xml O\nfile\tO\tfile\tO\n,\tO\t,\tO\nand\tO\tand\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nstarter-logging\tO\tstarter-logging\tO\ndependency\tO\tdependency\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nalso\tO\talso\tO\ncreates\tO\tcreates\tO\nempty\tO\tempty\tO\nlog B-File_Type log O\nfiles\tO\tfiles\tO\nwith\tO\twith\tO\nnothing\tO\tnothing\tO\non\tO\ton\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nSpring B-Library Spring O\nboot I-Library boot O\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\napplication.properties B-File_Name application.properties B-Code_Block\nfile\tO\tfile\tO\nis\tO\tis\tO\nmentioned\tO\tmentioned\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nWEB-INF\tO\tWEB-INF\tO\n,\tO\t,\tO\nand\tO\tand\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nlogging.level.org.springframework B-Class logging.level.org.springframework B-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nlogging.path B-Variable logging.path B-Code_Block\nentries\tO\tentries\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nstill\tO\tstill\tO\nno\tO\tno\tO\nlog B-File_Type log O\nfile\tO\tfile\tO\ncreated\tO\tcreated\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlog\tO\tlog\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nmessages\tO\tmessages\tO\n,\tO\t,\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlog\tO\tlog\tO\nthe\tO\tthe\tO\nevents\tO\tevents\tO\ngenerated\tO\tgenerated\tO\nby\tO\tby\tO\nSpring B-Library Spring O\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nalso\tO\talso\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmain B-Function main O\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nan\tO\tan\tO\nEndpoint B-Class Endpoint O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nservice\tO\tservice\tO\n,\tO\t,\tO\nif\tO\tif\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nrelevant\tO\trelevant\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\npossible\tO\tpossible\tO\nlogging\tO\tlogging\tO\n,\tO\t,\tO\npossibly\tO\tpossibly\tO\nwithout\tO\twithout\tO\nadding\tO\tadding\tO\ntoo\tO\ttoo\tO\nmany\tO\tmany\tO\ndependencies\tO\tdependencies\tO\nor\tO\tor\tO\nso\tO\tso\tO\n,\tO\t,\tO\nand\tO\tand\tO\nretrieve\tO\tretrieve\tO\nthe\tO\tthe\tO\nSpring B-Library Spring O\nmessages\tO\tmessages\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nlog B-File_Type log O\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26096867\tO\t26096867\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26096867/\tO\thttps://stackoverflow.com/questions/26096867/\tO\n\t\n\t\nlogback B-Library logback O\nis\tO\tis\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nlogging\tO\tlogging\tO\nimplementation\tO\timplementation\tO\nused\tO\tused\tO\nby\tO\tby\tO\nSpring B-Library Spring O\nBoot I-Library Boot O\n(\tO\t(\tO\nI\tO\tI\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nspring B-Library spring O\nboot I-Library boot O\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\njar B-File_Type jar O\nand\tO\tand\tO\nrun\tO\trun\tO\nthat\tO\tthat\tO\n!\tO\t!\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBasicly\tO\tBasicly\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nanything\tO\tanything\tO\nlogging\tO\tlogging\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nhandled\tO\thandled\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nstarter\tO\tstarter\tO\nyou\tO\tyou\tO\nincluded\tO\tincluded\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\nlogback.xml B-File_Name logback.xml O\nshipped\tO\tshipped\tO\nwith\tO\twith\tO\nSpring B-Library Spring O\nwhich\tO\twhich\tO\nturns\tO\tturns\tO\non\tO\ton\tO\nlogging\tO\tlogging\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nspring B-Library spring O\nframework\tO\tframework\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\non\tO\ton\tO\nINFO\tO\tINFO\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nthis\tO\tthis\tO\nsimply\tO\tsimply\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nlogback.xml B-File_Name logback.xml B-Code_Block\nfile\tO\tfile\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncontent\tO\tcontent\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\none\tO\tone\tO\nand\tO\tand\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nlogger B-Class logger O\nfor\tO\tfor\tO\nspring B-Library spring O\non\tO\ton\tO\nDEBUG\tO\tDEBUG\tO\nor\tO\tor\tO\nTRACE\tO\tTRACE\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nput\tO\tput\tO\neverything\tO\teverything\tO\non\tO\ton\tO\ntrace\tO\ttrace\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\nless\tO\tless\tO\nperformant\tO\tperformant\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nprobably\tO\tprobably\tO\ndoing\tO\tdoing\tO\nto\tO\tto\tO\nmuch\tO\tmuch\tO\nand\tO\tand\tO\nthinking\tO\tthinking\tO\nto\tO\tto\tO\ncomplex\tO\tcomplex\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26096867\tO\t26096867\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26096867/\tO\thttps://stackoverflow.com/questions/26096867/\tO\n\t\n\t\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nlogging.level.org.springframework B-Class logging.level.org.springframework B-Code_Block\nand\tO\tand\tI-Code_Block\nthe\tO\tthe\tI-Code_Block\nlogging.path B-Variable logging.path I-Code_Block\nworks\tO\tworks\tO\nwith\tO\twith\tO\nspring B-Library spring O\nboot I-Library boot O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nmove\tO\tmove\tO\nyour\tO\tyour\tO\nlogback.xml B-File_Name logback.xml O\nfile\tO\tfile\tO\nand\tO\tand\tO\napplication.properties B-File_Name application.properties O\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nresources\tO\tresources\tB-Code_Block\ndir\tO\tdir\tO\n+\tO\t+\tO\npaste\tO\tpaste\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nlogback.xml B-File_Name logback.xml O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3592 I-Code_Block A_3592 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nlog\tO\tlog\tO\non\tO\ton\tO\nconsole B-Application console O\nand\tO\tand\tO\nyour\tO\tyour\tO\n/tmp B-File_Name /tmp O\n(\tO\t(\tO\nif\tO\tif\tO\nlinux B-Operating_System linux O\n)\tO\t)\tO\ndir\tO\tdir\tO\n.\tO\t.\tO\n\t\n//Update\tO\t//Update\tO\n:\tO\t:\tO\n\t\nto\tO\tto\tO\nmanually\tO\tmanually\tO\nset\tO\tset\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nlogs B-File_Type logs O\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n(\tO\t(\tO\ni\tO\ti\tO\nbasically\tO\tbasically\tO\nreduced\tO\treduced\tO\nwhats\tO\twhats\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\nbase.xml B-File_Name base.xml O\nwhich\tO\twhich\tO\nis\tO\tis\tO\nimported\tO\timported\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3593 I-Code_Block A_3593 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nthen\tO\tthen\tO\nchange\tO\tchange\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3594 I-Code_Block A_3594 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3595 I-Code_Block A_3595 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42892071\tO\t42892071\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42892071/\tO\thttps://stackoverflow.com/questions/42892071/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrun\tO\trun\tO\n\"\tO\t\"\tO\nline\tO\tline\tO\nprogram\tO\tprogram\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\ngraphics\tO\tgraphics\tO\nusing\tO\tusing\tO\nC++ B-Language C++ O\nin\tO\tin\tO\nCode B-Application Code O\nBlocks I-Application Blocks O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nalready\tO\talready\tO\ndone\tO\tdone\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nenvironment\tO\tenvironment\tO\nin\tO\tin\tO\ncode B-Application code O\nblocks I-Application blocks O\nfor\tO\tfor\tO\ngraphics\tO\tgraphics\tO\n.\tO\t.\tO\n\t\nStill\tO\tStill\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nprogram\tO\tprogram\tO\nshows\tO\tshows\tO\nno\tO\tno\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nit\tO\tit\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nany\tO\tany\tO\nline\tO\tline\tO\nin\tO\tin\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nOutput\tO\tOutput\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\nis\tO\tis\tO\nshowing\tO\tshowing\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5480 I-Code_Block Q_5480 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20414245\tO\t20414245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20414245/\tO\thttps://stackoverflow.com/questions/20414245/\tO\n\t\n\t\non\tO\ton\tO\nthis\tO\tthis\tO\nwebpage\tO\twebpage\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nscroll\tO\tscroll\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ninline\tO\tinline\tO\nimage B-User_Interface_Element image O\n,\tO\t,\tO\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbefore/after\tO\tbefore/after\tO\njavascript B-Language javascript O\nslider B-User_Interface_Element slider O\nhappening\tO\thappening\tO\n.\tO\t.\tO\n\t\nhowever\tO\thowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nnormal\tO\tnormal\tO\ncentering\tO\tcentering\tO\noptions\tO\toptions\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking\tO\tworking\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nand\tO\tand\tO\nend\tO\tend\tO\nup\tO\tup\tO\nbreaking\tO\tbreaking\tO\nthe\tO\tthe\tO\nslider B-User_Interface_Element slider O\n.\tO\t.\tO\n\t\nany\tO\tany\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciate\tO\tappreciate\tO\n.\tO\t.\tO\n\t\nHTML B-Language HTML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2168 I-Code_Block Q_2168 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCSS B-Language CSS O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2169 I-Code_Block Q_2169 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20414245\tO\t20414245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20414245/\tO\thttps://stackoverflow.com/questions/20414245/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nLike\tO\tLike\tO\nthe\tO\tthe\tO\nouter\tO\touter\tO\ncontainers\tO\tcontainers\tO\nhave\tO\thave\tO\na\tO\ta\tO\nwidth\tO\twidth\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ninner\tO\tinner\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nfor\tO\tfor\tO\nnow\tO\tnow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2721 I-Code_Block A_2721 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nsame\tO\tsame\tO\nas\tO\tas\tO\nyour\tO\tyour\tO\nimages B-User_Interface_Element images O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40851742\tO\t40851742\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40851742/\tO\thttps://stackoverflow.com/questions/40851742/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nwebpack B-Library webpack O\nand\tO\tand\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nwebpack B-Library webpack O\ndocumentation\tO\tdocumentation\tO\nhere\tO\there\tO\nhttps://webpack.js.org/loaders/\tO\thttps://webpack.js.org/loaders/\tO\n:\tO\t:\tO\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nhappened\tO\thappened\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\ntest B-Code_Block test B-Code_Block\n: I-Code_Block : I-Code_Block\n/ I-Code_Block / I-Code_Block\n\\.css$/ I-Code_Block \\.css$/ I-Code_Block\n, I-Code_Block , I-Code_Block\n\t\nJust\tO\tJust\tO\nwondering\tO\twondering\tO\nwhat\tO\twhat\tO\nare\tO\tare\tO\nthose\tO\tthose\tO\nfront/back B-Value front/back O\nslashes I-Value slashes O\nand\tO\tand\tO\n$ B-Value $ O\nsymbol\tO\tsymbol\tO\nmeant\tO\tmeant\tO\nfor\tO\tfor\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43767033\tO\t43767033\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43767033/\tO\thttps://stackoverflow.com/questions/43767033/\tO\n\t\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ncomputer B-Device computer O\nopencv B-Library opencv O\nwith\tO\twith\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nspecific\tO\tspecific\tO\nversion\tO\tversion\tO\n(\tO\t(\tO\n2.4.10 B-Version 2.4.10 O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nthe\tO\tthe\tO\nbranch\tO\tbranch\tO\non\tO\ton\tO\ngithub B-Website github O\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nopencv B-Library opencv O\ncore\tO\tcore\tO\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\ndownload\tO\tdownload\tO\nthis\tO\tthis\tO\nversion\tO\tversion\tO\non\tO\ton\tO\nofficials\tO\tofficials\tO\nrepositories\tO\trepositories\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43767033\tO\t43767033\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43767033/\tO\thttps://stackoverflow.com/questions/43767033/\tO\n\t\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nclone\tO\tclone\tO\nOpenCV B-Library OpenCV B-Code_Block\n2.4.10 B-Version 2.4.10 I-Code_Block\nthrough\tO\tthrough\tO\nTortoiseGit B-Application TortoiseGit B-Code_Block\n2.4.0.3 B-Version 2.4.0.3 I-Code_Block\n.\tO\t.\tO\n\t\nClone\tO\tClone\tO\nOpenCV B-Library OpenCV B-Code_Block\nHEAD B-Code_Block HEAD I-Code_Block\nfrom\tO\tfrom\tO\nhttps://github.com/opencv/opencv.git\tO\thttps://github.com/opencv/opencv.git\tB-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ncloned\tO\tcloned\tO\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nright\tO\tright\tO\nclick\tO\tclick\tO\nand\tO\tand\tO\nselect\tO\tselect\tO\nTortoiseGit B-Application TortoiseGit B-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npopup\tO\tpopup\tO\nmenu B-User_Interface_Element menu O\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nsub\tO\tsub\tO\nmenu B-User_Interface_Element menu O\n,\tO\t,\tO\nselect\tO\tselect\tO\nSwitch/Checkout B-Code_Block Switch/Checkout B-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nSwitch/Checkout B-Code_Block Switch/Checkout B-Code_Block\nmenu B-User_Interface_Element menu O\n,\tO\t,\tO\nselect\tO\tselect\tO\nOpenCV-2.4.10 B-Library OpenCV-2.4.10 B-Code_Block\nfrom\tO\tfrom\tO\nBranch B-Code_Block Branch B-Code_Block\nor\tO\tor\tO\n2.4.10 B-Version 2.4.10 B-Code_Block\nfrom\tO\tfrom\tO\nTag B-Code_Block Tag B-Code_Block\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nshow B-Code_Block show B-Code_Block\nlog I-Code_Block log I-Code_Block\nto\tO\tto\tO\nverify\tO\tverify\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nversion\tO\tversion\tO\nis\tO\tis\tO\ncloned\tO\tcloned\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nimage B-User_Interface_Element image O\nbelow\tO\tbelow\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nsubfolder\tO\tsubfolder\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nopencv-2.4.10 B-Library opencv-2.4.10 B-Code_Block\ncore\tO\tcore\tI-Code_Block\npackage\tO\tpackage\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nGitHub B-Website GitHub O\nclone\tO\tclone\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25024282\tO\t25024282\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25024282/\tO\thttps://stackoverflow.com/questions/25024282/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nstarting\tO\tstarting\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsome\tO\tsome\tO\nnot\tO\tnot\tO\nequality\tO\tequality\tO\nJoin\tO\tJoin\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nread\tO\tread\tO\nthat\tO\tthat\tO\nneither\tO\tneither\tO\nPig B-Application Pig O\nnor\tO\tnor\tO\nHive B-Application Hive O\nsupport\tO\tsupport\tO\ninequality\tO\tinequality\tO\nJoin\tO\tJoin\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\nread\tO\tread\tO\nthat\tO\tthat\tO\nPig B-Application Pig O\ncan\tO\tcan\tO\nsupport\tO\tsupport\tO\nthat\tO\tthat\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nCROSS B-Code_Block CROSS O\nand\tO\tand\tO\nFILTER B-Code_Block FILTER O\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nalso\tO\talso\tO\nin\tO\tin\tO\nHive B-Application Hive O\nusing\tO\tusing\tO\nWHERE B-Code_Block WHERE O\nclause\tO\tclause\tO\n?\tO\t?\tO\nAre\tO\tAre\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\ncases\tO\tcases\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nsupposed\tO\tsupposed\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nboth\tO\tboth\tO\nin\tO\tin\tO\nPig B-Application Pig O\nand\tO\tand\tO\nin\tO\tin\tO\nHive B-Application Hive O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\nabout\tO\tabout\tO\nperformance\tO\tperformance\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25024282\tO\t25024282\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25024282/\tO\thttps://stackoverflow.com/questions/25024282/\tO\n\t\n\t\nI\tO\tI\tO\nremember\tO\tremember\tO\nHive B-Application Hive O\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\none\tO\tone\tO\nreducer\tO\treducer\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n\"\tO\t\"\tO\nCROSS B-Code_Block CROSS O\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nPig B-Application Pig O\nuses\tO\tuses\tO\na\tO\ta\tO\nsmart\tO\tsmart\tO\napproach\tO\tapproach\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\n\"\tO\t\"\tO\nCROSS B-Code_Block CROSS O\n\"\tO\t\"\tO\nand\tO\tand\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nin\tO\tin\tO\nparallel\tO\tparallel\tO\nand\tO\tand\tO\nit\tO\tit\tO\nusually\tO\tusually\tO\nhas\tO\thas\tO\nbetter\tO\tbetter\tO\nperformance\tO\tperformance\tO\nthan\tO\tthan\tO\nHive B-Application Hive O\n.\tO\t.\tO\n\t\nBTW\tO\tBTW\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nupdated\tO\tupdated\tO\nmy\tO\tmy\tO\nknowledge\tO\tknowledge\tO\nabout\tO\tabout\tO\nHive B-Application Hive O\nand\tO\tand\tO\nPig B-Application Pig O\nfor\tO\tfor\tO\none\tO\tone\tO\nyear\tO\tyear\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nHive B-Application Hive O\nimproved\tO\timproved\tO\n\"\tO\t\"\tO\nCROSS B-Code_Block CROSS O\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npast\tO\tpast\tO\nyear\tO\tyear\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36835825\tO\t36835825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36835825/\tO\thttps://stackoverflow.com/questions/36835825/\tO\n\t\n\t\nProblem\tO\tProblem\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nsize\tO\tsize\tO\nscale\tO\tscale\tO\nfor\tO\tfor\tO\nedges B-User_Interface_Element edges O\nand\tO\tand\tO\nnodes B-User_Interface_Element nodes O\nin\tO\tin\tO\na\tO\ta\tO\nnetwork B-Library network O\ncreated\tO\tcreated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nggnetwork B-Library ggnetwork O\npackage\tO\tpackage\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nbelow\tO\tbelow\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nalready\tO\talready\tO\ndid\tO\tdid\tO\nthat\tO\tthat\tO\nsince\tO\tsince\tO\nthey\tO\tthey\tO\nall\tO\tall\tO\nhave\tO\thave\tO\ndifferent\tO\tdifferent\tO\nsizes\tO\tsizes\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nfact\tO\tfact\tO\nedge B-User_Interface_Element edge O\nand\tO\tand\tO\nnode B-User_Interface_Element node O\nsize\tO\tsize\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nscaled\tO\tscaled\tO\nindependently\tO\tindependently\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nplot B-User_Interface_Element plot O\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nare\tO\tare\tO\nboth\tO\tboth\tO\nscaled\tO\tscaled\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nscale_size_area() B-Function scale_size_area() B-Code_Block\nfunction\tO\tfunction\tO\ntowards\tO\ttowards\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nmaximum\tO\tmaximum\tO\n(\tO\t(\tO\n30 B-Value 30 O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nget\tO\tget\tO\nlarger\tO\tlarger\tO\nnodes\tO\tnodes\tO\nmy\tO\tmy\tO\nedges\tO\tedges\tO\nwill\tO\twill\tO\nshrink\tO\tshrink\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nboils\tO\tboils\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nscaling\tO\tscaling\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\ndifferent\tO\tdifferent\tO\ngeoms\tO\tgeoms\tO\nwith\tO\twith\tO\ndifferent\tO\tdifferent\tO\nfunctions\tO\tfunctions\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nscale\tO\tscale\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnodes\tO\tnodes\tO\nwith\tO\twith\tO\nscale_size_area B-Code_Block scale_size_area B-Code_Block\n( I-Code_Block ( I-Code_Block\nmax_size I-Code_Block max_size I-Code_Block\n= I-Code_Block = I-Code_Block\n30 I-Code_Block 30 I-Code_Block\n) I-Code_Block ) I-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nedges\tO\tedges\tO\nwith\tO\twith\tO\nscale_size_continuous B-Code_Block scale_size_continuous B-Code_Block\n( I-Code_Block ( I-Code_Block\nrange I-Code_Block range I-Code_Block\n= I-Code_Block = I-Code_Block\nc(1,6)) I-Code_Block c(1,6)) I-Code_Block\n?\tO\t?\tO\n\t\nExample\tO\tExample\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4534 I-Code_Block Q_4534 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nExample\tO\tExample\tO\nplot B-User_Interface_Element plot O\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36835825\tO\t36835825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36835825/\tO\thttps://stackoverflow.com/questions/36835825/\tO\n\t\n\t\nAlmost\tO\tAlmost\tO\na\tO\ta\tO\nduplicate\tO\tduplicate\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nggplot2 B-Library ggplot2 O\nexpert\tO\texpert\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\n,\tO\t,\tO\ndual-scaling\tO\tdual-scaling\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nhaving\tO\thaving\tO\ntwo\tO\ttwo\tO\ny-axes\tO\ty-axes\tO\nor\tO\tor\tO\ntwo\tO\ttwo\tO\ncolor\tO\tcolor\tO\nscales\tO\tscales\tO\n)\tO\t)\tO\ncontradicts\tO\tcontradicts\tO\nthe\tO\tthe\tO\ngrammar\tO\tgrammar\tO\nof\tO\tof\tO\ngraphics\tO\tgraphics\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\naforementioned\tO\taforementioned\tO\nquestion\tO\tquestion\tO\nmight\tO\tmight\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nhack\tO\thack\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44495847\tO\t44495847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44495847/\tO\thttps://stackoverflow.com/questions/44495847/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nSVG B-File_Type SVG O\nimages B-User_Interface_Element images O\nin\tO\tin\tO\nCKEDITOR B-Application CKEDITOR O\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\naccomplish\tO\taccomplish\tO\nthis\tO\tthis\tO\nI\tO\tI\tO\nbase64_encode B-Function base64_encode O\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nand\tO\tand\tO\nusing\tO\tusing\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nsource\tO\tsource\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nbecomes\tO\tbecomes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5779 I-Code_Block Q_5779 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nalmost\tO\talmost\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\npreview B-Application preview O\nI\tO\tI\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nI\tO\tI\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nimage\tO\timage\tO\nthe\tO\tthe\tO\n\" B-Value \" O\n+ I-Value + O\n\" I-Value \" O\n-signs\tO\t-signs\tO\nbecome\tO\tbecome\tO\nreplaces\tO\treplaces\tO\nby\tO\tby\tO\nwhitespaces B-Value whitespaces O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nCKEditor B-Application CKEditor O\nsetting\tO\tsetting\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nvar_dumped B-Function var_dumped O\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nit\tO\tit\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver B-Application server O\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nspaces B-Value spaces O\nwhere\tO\twhere\tO\nalready\tO\talready\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nhave\tO\thave\tO\na\tO\ta\tO\nclue\tO\tclue\tO\nhow\tO\thow\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21587066\tO\t21587066\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21587066/\tO\thttps://stackoverflow.com/questions/21587066/\tO\n\t\n\t\nI\tO\tI\tO\ntesting\tO\ttesting\tO\nan\tO\tan\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsingleton B-Class singleton O\npattern\tO\tpattern\tO\nand\tO\tand\tO\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhy\tO\twhy\tO\nIntelliJ B-Application IntelliJ O\nis\tO\tis\tO\nthrowing\tO\tthrowing\tO\nme\tO\tme\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2321 I-Code_Block Q_2321 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\nhow\tO\thow\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ncalling\tO\tcalling\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2322 I-Code_Block Q_2322 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2323 I-Code_Block Q_2323 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21587066\tO\t21587066\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21587066/\tO\thttps://stackoverflow.com/questions/21587066/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ncalling\tO\tcalling\tO\nstatic B-Data_Type static B-Code_Block\nmethod\tO\tmethod\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nClass\tO\tClass\tO\nso\tO\tso\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nnew B-Code_Block new B-Code_Block\nkeyword\tO\tkeyword\tO\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2924 I-Code_Block A_2924 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21587066\tO\t21587066\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21587066/\tO\thttps://stackoverflow.com/questions/21587066/\tO\n\t\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\nanswers\tO\tanswers\tO\nare\tO\tare\tO\ncorrect\tO\tcorrect\tO\n-\tO\t-\tO\nhowever\tO\thowever\tO\nthis\tO\tthis\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nSingleton B-Class Singleton O\npattern\tO\tpattern\tO\nis\tO\tis\tO\nhorribly\tO\thorribly\tO\nflawed\tO\tflawed\tO\nand\tO\tand\tO\nwill\tO\twill\tO\nbreak\tO\tbreak\tO\nin\tO\tin\tO\nunexpected\tO\tunexpected\tO\nways\tO\tways\tO\nin\tO\tin\tO\na\tO\ta\tO\nmulti-threading\tO\tmulti-threading\tO\nenvironment\tO\tenvironment\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nlazy\tO\tlazy\tO\ninitialization\tO\tinitialization\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsingleton B-Class singleton O\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nmust\tO\tmust\tO\nhave\tO\thave\tO\nlazy\tO\tlazy\tO\ninitialization\tO\tinitialization\tO\nthen\tO\tthen\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nstatic B-Data_Type static O\nholder\tO\tholder\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2926 I-Code_Block A_2926 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nloader\tO\tloader\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nlazy\tO\tlazy\tO\ninitialization\tO\tinitialization\tO\n,\tO\t,\tO\nthread\tO\tthread\tO\nsafety\tO\tsafety\tO\n,\tO\t,\tO\netc\tO\tetc\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ncompletely\tO\tcompletely\tO\nthread\tO\tthread\tO\nsafe\tO\tsafe\tO\nand\tO\tand\tO\nfast\tO\tfast\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nsynchronization\tO\tsynchronization\tO\nor\tO\tor\tO\nnull B-Value null O\nchecks\tO\tchecks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35324855\tO\t35324855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35324855/\tO\thttps://stackoverflow.com/questions/35324855/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nan\tO\tan\tO\nalgorithm\tO\talgorithm\tO\nfor\tO\tfor\tO\nprocess\tO\tprocess\tO\nhistograms\tO\thistograms\tO\nimages B-User_Interface_Element images O\nusing\tO\tusing\tO\nmultiple\tO\tmultiple\tO\nthreads\tO\tthreads\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\ncommon\tO\tcommon\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\nmultiple\tO\tmultiple\tO\nthread\tO\tthread\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncache\tO\tcache\tO\nbuffer B-Data_Structure buffer O\non\tO\ton\tO\neach\tO\teach\tO\none\tO\tone\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nhistogram\tO\thistogram\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncache\tO\tcache\tO\nbuffer B-Data_Structure buffer O\nand\tO\tand\tO\nthen\tO\tthen\tO\nlock\tO\tlock\tO\na\tO\ta\tO\nmutex\tO\tmutex\tO\naddition\tO\taddition\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nvector B-Data_Structure vector O\n,\tO\t,\tO\nand\tO\tand\tO\nunlock\tO\tunlock\tO\nthe\tO\tthe\tO\nbuffer B-Data_Structure buffer O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nefficient\tO\tefficient\tO\nbut\tO\tbut\tO\ncan\tO\tcan\tO\nintroduce\tO\tintroduce\tO\na\tO\ta\tO\n'\tO\t'\tO\njam\tO\tjam\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmean\tO\tmean\tO\nthe\tO\tthe\tO\nadditions\tO\tadditions\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndatas\tO\tdatas\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nrealized\tO\trealized\tO\nconcurently\tO\tconcurently\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nshort\tO\tshort\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n0-255 B-Value 0-255 O\n)\tO\t)\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nneeded\tO\tneeded\tO\nto\tO\tto\tO\nproceed\tO\tproceed\tO\nthe\tO\tthe\tO\naddition\tO\taddition\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nfast\tO\tfast\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nneglect\tO\tneglect\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\nof\tO\tof\tO\ndatas\tO\tdatas\tO\nis\tO\tis\tO\nhigher\tO\thigher\tO\nlike\tO\tlike\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\non\tO\ton\tO\nthermal\tO\tthermal\tO\nimages B-User_Interface_Element images O\nthis\tO\tthis\tO\ntime\tO\ttime\tO\ncan\tO\tcan\tO\nbecome\tO\tbecome\tO\nmore\tO\tmore\tO\nsignificant\tO\tsignificant\tO\n.\tO\t.\tO\n\t\nThermal\tO\tThermal\tO\nimages B-User_Interface_Element images O\nare\tO\tare\tO\noften\tO\toften\tO\nmatrix B-Data_Structure matrix O\nof\tO\tof\tO\nunsigned B-Data_Type unsigned O\nshort I-Data_Type short O\n,\tO\t,\tO\neven\tO\teven\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nrange\tO\trange\tO\n(\tO\t(\tO\n0-65535 B-Value 0-65535 O\n)\tO\t)\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\nmust\tO\tmust\tO\nprocess\tO\tprocess\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nspeed\tO\tspeed\tO\nup\tO\tup\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\nhte\tO\thte\tO\nprocessing\tO\tprocessing\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nto\tO\tto\tO\nlaunch\tO\tlaunch\tO\na\tO\ta\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\naddition\tO\taddition\tO\nwhile\tO\twhile\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nforeground\tO\tforeground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\nwould\tO\twould\tO\nonly\tO\tonly\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\ndatas\tO\tdatas\tO\ninto\tO\tinto\tO\na\tO\ta\tO\npreallocated\tO\tpreallocated\tO\nbuffer B-Data_Structure buffer O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nbasically\tO\tbasically\tO\nthe\tO\tthe\tO\nwork\tO\twork\tO\nof\tO\tof\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nforeground\tO\tforeground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\nused\tO\tused\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nget\tO\tget\tO\na\tO\ta\tO\nbuffer\tO\tbuffer\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ncircular\tO\tcircular\tO\nbuffer\tO\tbuffer\tO\n.\tO\t.\tO\n\t\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\nhistogram\tO\thistogram\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nspecified\tO\tspecified\tO\nset\tO\tset\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nfrom\tO\tfrom\tO\nline\tO\tline\tO\nn B-Variable n O\nto\tO\tto\tO\nline\tO\tline\tO\nm B-Variable m O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\n-notify\tO\t-notify\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nbuffer B-Data_Structure buffer O\nthe\tO\tthe\tO\noperations\tO\toperations\tO\nare\tO\tare\tO\nfinished\tO\tfinished\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nused\tO\tused\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nwait\tO\twait\tO\nuntil\tO\tuntil\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\narrive\tO\tarrive\tO\nand\tO\tand\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\navailable\tO\tavailable\tO\nbuffer B-Data_Structure buffer O\nis\tO\tis\tO\nlower\tO\tlower\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nbuffers B-Data_Structure buffers O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nconditions\tO\tconditions\tO\nare\tO\tare\tO\ntrue B-Value true O\nthen\tO\tthen\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbuffer B-Data_Structure buffer O\nto\tO\tto\tO\nbe\tO\tbe\tO\nprocessed\tO\tprocessed\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbuffers B-Data_Structure buffers O\navailable\tO\tavailable\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nthe\tO\tthe\tO\naddition\tO\taddition\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nbuffer\tO\tbuffer\tO\n.\tO\t.\tO\n\t\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nprocessed\tO\tprocessed\tO\nbuffer\tO\tbuffer\tO\nreusable\tO\treusable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nfamiliar\tO\tfamiliar\tO\nwith\tO\twith\tO\ncondition\tO\tcondition\tO\nvariables\tO\tvariables\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\ncommunication\tO\tcommunication\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nthreads\tO\tthreads\tO\nusing\tO\tusing\tO\nconditions\tO\tconditions\tO\nvariable\tO\tvariable\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntoy B-Class toy O\nsample\tO\tsample\tO\n:\tO\t:\tO\n\t\ntoy.h B-File_Name toy.h O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4329 I-Code_Block Q_4329 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nmain B-File_Name main O\n.cpp I-File_Name .cpp O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4330 I-Code_Block Q_4330 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\nis\tO\tis\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwithout\tO\twithout\tO\ndifficulties\tO\tdifficulties\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nunwanted\tO\tunwanted\tO\naspect\tO\taspect\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nwritten\tO\twritten\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nbackground\tO\tbackground\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4331 I-Code_Block Q_4331 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nmust\tO\tmust\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\n\"\tO\t\"\tO\nit B-Variable it O\n\"\tO\t\"\tO\notherwise\tO\totherwise\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nposition\tO\tposition\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbuffer\tO\tbuffer\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nwas\tO\twas\tO\n:\tO\t:\tO\n\t\n-\tO\t-\tO\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\nthread\tO\tthread\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\nis\tO\tis\tO\nsend\tO\tsend\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\n-\tO\t-\tO\nThen\tO\tThen\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\nbuffers B-Data_Structure buffers O\n(\tO\t(\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nbuffers B-Data_Structure buffers O\ndepending\tO\tdepending\tO\nhow\tO\thow\tO\nfast\tO\tfast\tO\nthe\tO\tthe\tO\nthreads\tO\tthreads\tO\nare\tO\tare\tO\nending\tO\tending\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\n-\tO\t-\tO\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nnotify\tO\tnotify\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nforeground\tO\tforeground\tO\nthread\tO\tthread\tO\n(\tO\t(\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nget_buffer()) B-Function get_buffer()) O\nit\tO\tit\tO\nhas\tO\thas\tO\nfinish\tO\tfinish\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\nbuffer B-Data_Structure buffer O\nand\tO\tand\tO\nhas\tO\thas\tO\nmade\tO\tmade\tO\nit\tO\tit\tO\nreusable\tO\treusable\tO\n.\tO\t.\tO\n\t\nFollowing\tO\tFollowing\tO\nthese\tO\tthese\tO\nstatement\tO\tstatement\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nis\tO\tis\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nthread\tO\tthread\tO\nit\tO\tit\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\nbetween\tO\tbetween\tO\nBuf_start B-Variable Buf_start O\nand\tO\tand\tO\n_Buf_end B-Variable _Buf_end O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nseeking\tO\tseeking\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbuffer\tO\tbuffer\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nbackground\tO\tbackground\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4332 I-Code_Block Q_4332 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAfter\tO\tAfter\tO\nseveral\tO\tseveral\tO\nhours\tO\thours\tO\nof\tO\tof\tO\ntests\tO\ttests\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\ninterested\tO\tinterested\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nalgorithm\tO\talgorithm\tO\nreally\tO\treally\tO\nwork\tO\twork\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\n,\tO\t,\tO\nless\tO\tless\tO\nprocessing\tO\tprocessing\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncommunicate\tO\tcommunicate\tO\nbetween\tO\tbetween\tO\nthreads\tO\tthreads\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35324855\tO\t35324855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35324855/\tO\thttps://stackoverflow.com/questions/35324855/\tO\n\t\n\t\nI\tO\tI\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n!\tO\t!\tO\n\t\n:)\tO\t:)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nidentify\tO\tidentify\tO\nseveral\tO\tseveral\tO\nissues\tO\tissues\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n\"\tO\t\"\tO\ntoy B-Class toy O\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\noverload\tO\toverload\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noperator\tO\toperator\tB-Code_Block\n() B-Code_Block () I-Code_Block\nI\tO\tI\tO\ncopy\tO\tcopy\tO\npast\tO\tpast\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nget B-Function get B-Code_Block\nbuffer() I-Function buffer() I-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\na\tO\ta\tO\nblock\tO\tblock\tO\nfunction\tO\tfunction\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nwait\tO\twait\tO\ncondition\tO\tcondition\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsequential\tO\tsequential\tO\nover\tO\tover\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nunique_lock B-Code_Block unique_lock B-Code_Block\nneeded\tO\tneeded\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncondition\tO\tcondition\tO\nvariable\tO\tvariable\tO\nexist\tO\texist\tO\nonly\tO\tonly\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nbrackets\tO\tbrackets\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nblock\tO\tblock\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nwait\tO\twait\tO\ncondition\tO\tcondition\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nevaluated\tO\tevaluated\tO\nthe\tO\tthe\tO\nmutex\tO\tmutex\tO\n_mtx_foreground B-Code_Block _mtx_foreground B-Code_Block\nis\tO\tis\tO\nunlock\tO\tunlock\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nan\tO\tan\tO\noutbound\tO\toutbound\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\navailable\tO\tavailable\tO\nbuffer\tO\tbuffer\tO\nthe\tO\tthe\tO\nwhile\tO\twhile\tB-Code_Block\nloop\tO\tloop\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nreplaced\tO\treplaced\tO\nby\tO\tby\tO\na\tO\ta\tO\nfor B-Code_Block for B-Code_Block\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nissue\tO\tissue\tO\nwas\tO\twas\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncondition\tO\tcondition\tO\nto\tO\tto\tO\nsatisfy\tO\tsatisfy\tO\nfor\tO\tfor\tO\nincrement\tO\tincrement\tO\nthe\tO\tthe\tO\npointer B-Data_Type pointer O\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nbackground\tO\tbackground\tO\n\"\tO\t\"\tO\nthread\tO\tthread\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nidea\tO\tidea\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nmust\tO\tmust\tO\nrun\tO\trun\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbackground\tO\tbackground\tO\nthread\tO\tthread\tO\nis\tO\tis\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\n\t\nfrom\tO\tfrom\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nLook\tO\tLook\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nbuffer B-Data_Structure buffer O\nto\tO\tto\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\n\t\nprocess\tO\tprocess\tO\nit\tO\tit\tO\n,\tO\t,\tO\nremake\tO\tremake\tO\nit\tO\tit\tO\navailable\tO\tavailable\tO\nand\tO\tand\tO\nnotify\tO\tnotify\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nredo\tO\tredo\tO\nuntil\tO\tuntil\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nbuffers B-Data_Structure buffers O\nare\tO\tare\tO\nprocessed\tO\tprocessed\tO\nthen\tO\tthen\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\nto\tO\tto\tO\n2)\tO\t2)\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nsome\tO\tsome\tO\npart\tO\tpart\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\n\"\tO\t\"\tO\ndeeply\tO\tdeeply\tO\n\"\tO\t\"\tO\nmodified\tO\tmodified\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tB-Code_Block\ntoy B-Class toy I-Code_Block\ncalled\tO\tcalled\tO\ntoy2 B-Class toy2 O\nis\tO\tis\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5049 I-Code_Block A_5049 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47411756\tO\t47411756\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47411756/\tO\thttps://stackoverflow.com/questions/47411756/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nentities\tO\tentities\tO\n:\tO\t:\tO\n\t\nA\tO\tA\tO\nUser B-Variable User B-Code_Block\ncan\tO\tcan\tO\nhave\tO\thave\tO\nJobs B-Variable Jobs B-Code_Block\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nJob B-Variable Job B-Code_Block\ncan\tO\tcan\tO\ncontain\tO\tcontain\tO\nTasks B-Variable Tasks B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nusers B-Variable users O\neasily\tO\teasily\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6289 I-Code_Block Q_6289 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFor\tO\tFor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nJob B-Variable Job B-Code_Block\nwas\tO\twas\tO\nn't\tO\tn't\tO\ngiven\tO\tgiven\tO\na\tO\ta\tO\nUser B-Variable User B-Code_Block\nrecord\tO\trecord\tO\n,\tO\t,\tO\njust\tO\tjust\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\nID B-Variable ID O\nso\tO\tso\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nlink\tO\tlink\tO\nthem\tO\tthem\tO\ntogether\tO\ttogether\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nimportant\tO\timportant\tO\ninformation\tO\tinformation\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6290 I-Code_Block Q_6290 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\ncount B-Variable count O\nof\tO\tof\tO\ntasks\tO\ttasks\tO\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nuser B-Variable user O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nessentially\tO\tessentially\tO\nlike\tO\tlike\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6291 I-Code_Block Q_6291 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThat\tO\tThat\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nthing\tO\tthing\tO\nwould\tO\twould\tO\nallow\tO\tallow\tO\nme\tO\tme\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\ntasksCount B-Variable tasksCount B-Code_Block\nas\tO\tas\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nuser B-Variable user B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6292 I-Code_Block Q_6292 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSomething\tO\tSomething\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nwas\tO\twas\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nscores B-Variable scores O\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nbreaks\tO\tbreaks\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nand\tO\tand\tO\nmeans\tO\tmeans\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nhave\tO\thave\tO\nto\tO\tto\tO\npull\tO\tpull\tO\nsome\tO\tsome\tO\nclever\tO\tclever\tO\ntricks\tO\ttricks\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntwig B-File_Type twig O\nfile\tO\tfile\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6293 I-Code_Block Q_6293 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nresults\tO\tresults\tO\nare\tO\tare\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ntwig B-File_Type twig O\nfile\tO\tfile\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nparameter\tO\tparameter\tO\nusers B-Variable users B-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nabove\tO\tabove\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nof\tO\tof\tO\nuser B-Variable user O\n,\tO\t,\tO\ncount B-Variable count O\n,\tO\t,\tO\nuser B-Variable user O\n,\tO\t,\tO\ncount B-Variable count O\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\ncount B-Variable count O\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nuser B-Variable user O\nas\tO\tas\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthat\tO\tthat\tO\nlogic\tO\tlogic\tO\naway\tO\taway\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ntwig B-File_Type twig O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nalso\tO\talso\tO\nprefer\tO\tprefer\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nhydrate\tO\thydrate\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nas\tO\tas\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nbecause\tO\tbecause\tO\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nUser B-Variable User B-Code_Block\nentity\tO\tentity\tO\nthat\tO\tthat\tO\ngenerates\tO\tgenerates\tO\na\tO\ta\tO\nGravatar B-Application Gravatar O\nimage B-User_Interface_Element image O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6294 I-Code_Block Q_6294 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nallows\tO\tallows\tO\nme\tO\tme\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\nGravatar B-Application Gravatar O\nimage\tO\timage\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntwig B-File_Type twig O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6295 I-Code_Block Q_6295 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIs\tO\tIs\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44833318\tO\t44833318\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44833318/\tO\thttps://stackoverflow.com/questions/44833318/\tO\n\t\n\t\ni\tO\ti\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nclass\tO\tclass\tO\nRSAPKCS1Signatureformatter B-Class RSAPKCS1Signatureformatter O\nand\tO\tand\tO\nRSACryptoServiceProvider B-Class RSACryptoServiceProvider O\n\t\nas\tO\tas\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nsign\tO\tsign\tO\ndata\tO\tdata\tO\nusing\tO\tusing\tO\nRSAPKCS1Signatureformatter B-Class RSAPKCS1Signatureformatter O\nit\tO\tit\tO\nreturns\tO\treturns\tO\ndifferent\tO\tdifferent\tO\nsignature\tO\tsignature\tO\nvalue\tO\tvalue\tO\nthan\tO\tthan\tO\nsigning\tO\tsigning\tO\nusing\tO\tusing\tO\nRSACryptoServiceProvider B-Class RSACryptoServiceProvider O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44833318\tO\t44833318\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44833318/\tO\thttps://stackoverflow.com/questions/44833318/\tO\n\t\n\t\nRSAPKCS1SignatureFormatter B-Class RSAPKCS1SignatureFormatter B-Code_Block\njust\tO\tjust\tO\ncalls\tO\tcalls\tO\nRSACryptoServiceProvider.SignHash B-Function RSACryptoServiceProvider.SignHash B-Code_Block\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nsay\tO\tsay\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nPsychic\tO\tPsychic\tO\ndebugging\tO\tdebugging\tO\nsays\tO\tsays\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ncalling\tO\tcalling\tO\nSignData B-Function SignData O\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nRSA B-Class RSA O\nobject\tO\tobject\tO\ndirectly\tO\tdirectly\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nit\tO\tit\tO\ngetting\tO\tgetting\tO\nhashed\tO\thashed\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nis\tO\tis\tO\nSignHash B-Function SignHash O\n(\tO\t(\tO\nfor\tO\tfor\tO\npre-digested\tO\tpre-digested\tO\nvalues\tO\tvalues\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24521320\tO\t24521320\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24521320/\tO\thttps://stackoverflow.com/questions/24521320/\tO\n\t\n\t\nTrying\tO\tTrying\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\nAngular B-Library Angular O\n's\tO\t's\tO\ntoolset\tO\ttoolset\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napplication\tO\tapplication\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\npage\tO\tpage\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\none\tO\tone\tO\nroute B-Class route O\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nother\tO\tother\tO\n\"\tO\t\"\tO\nstate\tO\tstate\tO\n\"\tO\t\"\tO\nas\tO\tas\tO\nin\tO\tin\tO\nURL\tO\tURL\tO\nstate\tO\tstate\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nadvantage\tO\tadvantage\tO\nof\tO\tof\tO\ncontrollers\tO\tcontrollers\tO\nand\tO\tand\tO\nviews\tO\tviews\tO\nin\tO\tin\tO\na\tO\ta\tO\n1:1\tO\t1:1\tO\nrelationship\tO\trelationship\tO\nwith\tO\twith\tO\na\tO\ta\tO\nroute B-Class route O\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nis\tO\tis\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nController+View\tO\tController+View\tO\ncombinations\tO\tcombinations\tO\nfor\tO\tfor\tO\ncomponents\tO\tcomponents\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage B-User_Interface_Element page O\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nA\tO\tA\tO\ncomponent\tO\tcomponent\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nwidget B-User_Interface_Element widget O\n,\tO\t,\tO\nmodal B-User_Interface_Element modal O\nwindow I-User_Interface_Element window O\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nleverage\tO\tleverage\tO\nAngular B-Library Angular O\nin\tO\tin\tO\nthis\tO\tthis\tO\nsituation\tO\tsituation\tO\n?\tO\t?\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\nhttps://github.com/angular-ui/ui-router\tO\thttps://github.com/angular-ui/ui-router\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nstill\tO\tstill\tO\nrelies\tO\trelies\tO\nheavily\tO\theavily\tO\non\tO\ton\tO\ncreating\tO\tcreating\tO\n\"\tO\t\"\tO\nstates\tO\tstates\tO\n\"\tO\t\"\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\ntying\tO\ttying\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nURL\tO\tURL\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24521320\tO\t24521320\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24521320/\tO\thttps://stackoverflow.com/questions/24521320/\tO\n\t\n\t\nTo\tO\tTo\tO\ninclude\tO\tinclude\tO\nHTML B-Language HTML O\npartials\tO\tpartials\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nng-include B-HTML_XML_Tag ng-include B-Code_Block\ndirective\tO\tdirective\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncoupled\tO\tcoupled\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nng-controller B-HTML_XML_Tag ng-controller B-Code_Block\ndirective\tO\tdirective\tO\nin\tO\tin\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ndifferent\tO\tdifferent\tO\nways\tO\tways\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nnest\tO\tnest\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nwith\tO\twith\tO\nng-include B-HTML_XML_Tag ng-include B-Code_Block\ninside\tO\tinside\tO\nan\tO\tan\tO\nng-controller B-HTML_XML_Tag ng-controller B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3355 I-Code_Block A_3355 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ninclude\tO\tinclude\tO\nan\tO\tan\tO\nng-controller B-HTML_XML_Tag ng-controller B-Code_Block\ndirective\tO\tdirective\tO\ninside\tO\tinside\tO\nan\tO\tan\tO\nincluded\tO\tincluded\tO\npartial\tO\tpartial\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3356 I-Code_Block A_3356 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\ncombine\tO\tcombine\tO\nng-include B-HTML_XML_Tag ng-include B-Code_Block\nand\tO\tand\tO\nng-controller B-HTML_XML_Tag ng-controller B-Code_Block\ndirectives\tO\tdirectives\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nelement\tO\telement\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3357 I-Code_Block A_3357 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPlease\tO\tPlease\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexamples\tO\texamples\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nliteral\tO\tliteral\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nng-include B-HTML_XML_Tag ng-include B-Code_Block\ndirective\tO\tdirective\tO\nis\tO\tis\tO\nwrapped\tO\twrapped\tO\nin\tO\tin\tO\nsingle\tO\tsingle\tO\nquotes\tO\tquotes\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nexpects\tO\texpects\tO\nan\tO\tan\tO\nexpression\tO\texpression\tO\n.\tO\t.\tO\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nutilize\tO\tutilize\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ntechniques\tO\ttechniques\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nexpect\tO\texpect\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nheavily\tO\theavily\tO\nwith\tO\twith\tO\ndirectives\tO\tdirectives\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nUI B-Class UI O\nBootstrap I-Class Bootstrap O\nmodal I-Class modal O\n)\tO\t)\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\ntheir\tO\ttheir\tO\nown\tO\town\tO\ncontroller\tO\tcontroller\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\nPlunker B-Application Plunker O\nhere\tO\there\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nworking\tO\tworking\tO\nexamples\tO\texamples\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nng-include B-HTML_XML_Tag ng-include B-Code_Block\noptions\tO\toptions\tO\nlisted\tO\tlisted\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nincluding\tO\tincluding\tO\nswapping\tO\tswapping\tO\nthe\tO\tthe\tO\nincluded\tO\tincluded\tO\ntemplate\tO\ttemplate\tO\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nspeak\tO\tspeak\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfeasibility\tO\tfeasibility\tO\nof\tO\tof\tO\nactually\tO\tactually\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\nproduction\tO\tproduction\tO\napplication\tO\tapplication\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nappears\tO\tappears\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\non\tO\ton\tO\nfirst\tO\tfirst\tO\nglance\tO\tglance\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38213599\tO\t38213599\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38213599/\tO\thttps://stackoverflow.com/questions/38213599/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nbasically\tO\tbasically\tO\nasking\tO\tasking\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\ncostly\tO\tcostly\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nCPU B-Device CPU O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsituation\tO\tsituation\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nabout\tO\tabout\tO\n40-400\tO\t40-400\tO\nparticles B-Class particles O\non\tO\ton\tO\nthe\tO\tthe\tO\nscreen B-User_Interface_Element screen O\nat\tO\tat\tO\nany\tO\tany\tO\none\tO\tone\tO\ngiven\tO\tgiven\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nparticle B-Class particle O\nhas\tO\thas\tO\na\tO\ta\tO\nList B-Data_Structure List O\nof\tO\tof\tO\nParticleAI B-Class ParticleAI O\nwhich\tO\twhich\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nUpdate() B-Function Update() O\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nList B-Data_Structure List O\nof\tO\tof\tO\nnewly\tO\tnewly\tO\ncreated\tO\tcreated\tO\nParticle B-Class Particle O\nobjects\tO\tobjects\tO\n,\tO\t,\tO\nif\tO\tif\tO\nany\tO\tany\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthis\tO\tthis\tO\ngame\tO\tgame\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nmade\tO\tmade\tO\nfor\tO\tfor\tO\nmobile B-Device mobile O\n,\tO\t,\tO\nefficiency\tO\tefficiency\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nprocessor B-Device processor O\nis\tO\tis\tO\nkey\tO\tkey\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\ncostly\tO\tcostly\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nsomething\tO\tsomething\tO\nbetween\tO\tbetween\tO\n100-2000 B-Value 100-2000 O\nLists B-Data_Structure Lists O\nevery\tO\tevery\tO\nframe\tO\tframe\tO\n(\tO\t(\tO\nat\tO\tat\tO\n60FPS\tO\t60FPS\tO\n)\tO\t)\tO\nwhich\tO\twhich\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nempty\tO\tempty\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nor\tO\tor\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nnulls B-Value nulls O\nand\tO\tand\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nnull B-Value null O\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nAI B-Class AI O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nbrain\tO\tbrain\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nconstructing\tO\tconstructing\tO\na\tO\ta\tO\nList B-Data_Structure List O\nobject\tO\tobject\tO\nwould\tO\twould\tO\ntake\tO\ttake\tO\nmore\tO\tmore\tO\nprocessor B-Device processor O\ntime\tO\ttime\tO\nthan\tO\tthan\tO\nsimply\tO\tsimply\tO\nreturning\tO\treturning\tO\na\tO\ta\tO\nnull\tO\tnull\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nboolean B-Data_Type boolean O\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nassumption\tO\tassumption\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nother\tO\tother\tO\nsimilar\tO\tsimilar\tO\nquestions\tO\tquestions\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nbest\tO\tbest\tO\npractice\tO\tpractice\tO\nis\tO\tis\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nempty\tO\tempty\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nmaking\tO\tmaking\tO\nthis\tO\tthis\tO\ngame\tO\tgame\tO\nfor\tO\tfor\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nso\tO\tso\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nnull B-Value null O\nwill\tO\twill\tO\nnever\tO\tnever\tO\nbe\tO\tbe\tO\nreceived\tO\treceived\tO\nunexpectedly\tO\tunexpectedly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nin\tO\tin\tO\npure\tO\tpure\tO\nprocessing\tO\tprocessing\tO\nterms\tO\tterms\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\n,\tO\t,\tO\nsimply\tO\tsimply\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsheer\tO\tsheer\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nparticle B-Class particle O\nobjects\tO\tobjects\tO\nbeing\tO\tbeing\tO\ncreated\tO\tcreated\tO\nat\tO\tat\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nJust\tO\tJust\tO\nrealized\tO\trealized\tO\nsomething\tO\tsomething\tO\nwhich\tO\twhich\tO\nmay\tO\tmay\tO\nwork\tO\twork\tO\nbetter\tO\tbetter\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\n(\tO\t(\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nlist B-Data_Structure list O\nand\tO\tand\tO\nreturning\tO\treturning\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nparticleAI B-Class particleAI O\nevery\tO\tevery\tO\nframe\tO\tframe\tO\n)\tO\t)\tO\ncreate\tO\tcreate\tO\neach\tO\teach\tO\nparticleAI B-Class particleAI O\n's\tO\t's\tO\nreturn\tO\treturn\tO\nlist B-Data_Structure list O\nat\tO\tat\tO\nconstruction\tO\tconstruction\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nclear\tO\tclear\tO\nit\tO\tit\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\nof\tO\tof\tO\neach\tO\teach\tO\nUpdate() B-Function Update() O\nphase\tO\tphase\tO\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nalmost\tO\talmost\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38213599\tO\t38213599\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38213599/\tO\thttps://stackoverflow.com/questions/38213599/\tO\n\t\n\t\nAs\tO\tAs\tO\nobjects\tO\tobjects\tO\nare\tO\tare\tO\nshared\tO\tshared\tO\n,\tO\t,\tO\nreusing\tO\treusing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlist B-Data_Structure list O\nobject\tO\tobject\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\ninvolve\tO\tinvolve\tO\ncopying\tO\tcopying\tO\n.\tO\t.\tO\n\t\nNull B-Value Null O\nor\tO\tor\tO\nempty\tO\tempty\tO\nlist B-Data_Structure list O\n?\tO\t?\tO\n\t\nAssuming\tO\tAssuming\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n,\tO\t,\tO\nnull B-Value null O\nseems\tO\tseems\tO\nugly\tO\tugly\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\njava B-Language java O\na\tO\ta\tO\nLinkedList B-Class LinkedList O\nwould\tO\twould\tO\nbe\tO\tbe\tO\nlighter\tO\tlighter\tO\nthat\tO\tthat\tO\nan\tO\tan\tO\nArrayList B-Class ArrayList O\n,\tO\t,\tO\nso\tO\tso\tO\npick\tO\tpick\tO\na\tO\ta\tO\nlinked B-Class linked O\nlist I-Class list O\n.\tO\t.\tO\n\t\nNull B-Value Null O\nwould\tO\twould\tO\nbe\tO\tbe\tO\nfaster\tO\tfaster\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nread-only\tO\tread-only\tO\n,\tO\t,\tO\nto-be-replaced\tO\tto-be-replaced\tO\nCollections.emptyList() B-Function Collections.emptyList() B-Code_Block\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nsafer\tO\tsafer\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nstructure\tO\tstructure\tO\nof\tO\tof\tO\none\tO\tone\tO\naspect\tO\taspect\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nworthwile\tO\tworthwile\tO\nconsidering\tO\tconsidering\tO\nthe\tO\tthe\tO\nalgorithmic\tO\talgorithmic\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nSpending\tO\tSpending\tO\ntime\tO\ttime\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nrelevant\tO\trelevant\tO\nthings\tO\tthings\tO\n.\tO\t.\tO\n\t\nQueues B-Data_Structure Queues O\n.\tO\t.\tO\n\t\nPriorities\tO\tPriorities\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40979310\tO\t40979310\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40979310/\tO\thttps://stackoverflow.com/questions/40979310/\tO\n\t\n\t\nI\tO\tI\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nexpress\tO\texpress\tO\nmyself\tO\tmyself\tO\nvery\tO\tvery\tO\nwell\tO\twell\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\ndoubt\tO\tdoubt\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nwill\tO\twill\tO\ntry\tO\ttry\tO\nbest\tO\tbest\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\napp\tO\tapp\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nvarious\tO\tvarious\tO\nquests\tO\tquests\tO\n(\tO\t(\tO\nhosted\tO\thosted\tO\non\tO\ton\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n)\tO\t)\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nmust\tO\tmust\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nquest\tO\tquest\tO\nwith\tO\twith\tO\na\tO\ta\tO\nrandom\tO\trandom\tO\nquest\tO\tquest\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\ndisplay\tO\tdisplay\tO\nit\tO\tit\tO\non\tO\ton\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nduring\tO\tduring\tO\n24\tO\t24\tO\nhours\tO\thours\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nafter\tO\tafter\tO\nthat\tO\tthat\tO\n24\tO\t24\tO\nhours\tO\thours\tO\ndisplay\tO\tdisplay\tO\nanother\tO\tanother\tO\none\tO\tone\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n,\tO\t,\tO\ni\tO\ti\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nunderstood\tO\tunderstood\tO\nit\tO\tit\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nachieve\tO\tachieve\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nsearched\tO\tsearched\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nand\tO\tand\tO\ni\tO\ti\tO\ncant\tO\tcant\tO\nfind\tO\tfind\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\nsuits\tO\tsuits\tO\nmy\tO\tmy\tO\nneeds\tO\tneeds\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40979310\tO\t40979310\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40979310/\tO\thttps://stackoverflow.com/questions/40979310/\tO\n\t\n\t\nYou\tO\tYou\tO\nstore\tO\tstore\tO\na\tO\ta\tO\ntimestamp B-Class timestamp O\non\tO\ton\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nphone\tO\tphone\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nhe\tO\the\tO\nlogs\tO\tlogs\tO\nin\tO\tin\tO\nyou\tO\tyou\tO\ncompare\tO\tcompare\tO\nthe\tO\tthe\tO\ntimestamp B-Class timestamp O\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\n24\tO\t24\tO\nhours\tO\thours\tO\npassed\tO\tpassed\tO\nyou\tO\tyou\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nquest\tO\tquest\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nstored\tO\tstored\tO\ntimestamp B-Class timestamp O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40979310\tO\t40979310\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40979310/\tO\thttps://stackoverflow.com/questions/40979310/\tO\n\t\n\t\nuse\tO\tuse\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5861 I-Code_Block A_5861 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41417370\tO\t41417370\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41417370/\tO\thttps://stackoverflow.com/questions/41417370/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nnotepad++ B-Application notepad++ O\nregex\tO\tregex\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\ninto\tO\tinto\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThere\tO\tThere\tO\nmay\tO\tmay\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\nthree\tO\tthree\tO\nor\tO\tor\tO\nfor\tO\tfor\tO\nBrackets\tO\tBrackets\tO\nin\tO\tin\tO\neach\tO\teach\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwork\tO\twork\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nShould\tO\tShould\tO\nbecome\tO\tbecome\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5255 I-Code_Block Q_5255 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41417370\tO\t41417370\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41417370/\tO\thttps://stackoverflow.com/questions/41417370/\tO\n\t\n\t\nDo\tO\tDo\tO\na\tO\ta\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\nfind/replace\tO\tfind/replace\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nOpen\tO\tOpen\tO\nReplace\tO\tReplace\tO\nDialog B-User_Interface_Element Dialog O\n\t\nFind\tO\tFind\tO\nWhat\tO\tWhat\tO\n:\tO\t:\tO\n[ B-Value [ B-Code_Block\n^ I-Value ^ I-Code_Block\n\\[\\]]*\\[([^\\]]+)\\] I-Value \\[\\]]*\\[([^\\]]+)\\] I-Code_Block\n\t\nReplace\tO\tReplace\tO\nWith\tO\tWith\tO\n:\tO\t:\tO\n\\1\\n B-Value \\1\\n B-Code_Block\n\t\nCheck\tO\tCheck\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\n\t\nClick\tO\tClick\tO\nReplace\tO\tReplace\tO\nor\tO\tor\tO\nReplace\tO\tReplace\tO\nAll\tO\tAll\tO\n\t\nExplanation\tO\tExplanation\tO\n\t\none\tO\tone\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nbrackets\tO\tbrackets\tO\nare\tO\tare\tO\nRE\tO\tRE\tO\nmetacharacters\tO\tmetacharacters\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nmeans\tO\tmeans\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nescape\tO\tescape\tO\neach\tO\teach\tO\nbracket\tO\tbracket\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nwe\tO\twe\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nliteral\tO\tliteral\tO\nbracket\tO\tbracket\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\na\tO\ta\tO\nliteral\tO\tliteral\tO\nbracket\tO\tbracket\tO\nbecomes\tO\tbecomes\tO\n\\ B-Value \\ B-Code_Block\n[ I-Value [ I-Code_Block\nor\tO\tor\tO\n\\ B-Value \\ B-Code_Block\n] I-Value ] I-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nRE\tO\tRE\tO\n\t\nhere\tO\there\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nRE\tO\tRE\tO\nwe\tO\twe\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\noptional\tO\toptional\tO\npart\tO\tpart\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nconsist\tO\tconsist\tO\nof\tO\tof\tO\neverything\tO\teverything\tO\nnot\tO\tnot\tO\nbrackets\tO\tbrackets\tO\n(\tO\t(\tO\n[ B-Value [ B-Code_Block\n\\ I-Value \\ I-Code_Block\n[ I-Value [ I-Code_Block\n\\ I-Value \\ I-Code_Block\n] I-Value ] I-Code_Block\n] B-Value ] B-Code_Block\n*) I-Value *) I-Code_Block\n\t\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nan\tO\tan\tO\nopening\tO\topening\tO\nbracket\tO\tbracket\tO\n,\tO\t,\tO\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nsomthing\tO\tsomthing\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nclosing\tO\tclosing\tO\nbracket\tO\tbracket\tO\n(( B-Value (( B-Code_Block\n[ I-Value [ I-Code_Block\n^\\ I-Value ^\\ I-Code_Block\n] I-Value ] I-Code_Block\n] B-Value ] B-Code_Block\n+)) I-Value +)) I-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\nalso\tO\talso\tO\ncaptured\tO\tcaptured\tO\ninto\tO\tinto\tO\n\\1 B-Value \\1 B-Code_Block\ndue\tO\tdue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nparentheses\tO\tparentheses\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nreuse\tO\treuse\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsubstitution\tO\tsubstitution\tO\n\t\nwhatever\tO\twhatever\tO\nis\tO\tis\tO\nmatched\tO\tmatched\tO\nabove\tO\tabove\tO\nis\tO\tis\tO\ncompletely\tO\tcompletely\tO\nreplaced\tO\treplaced\tO\nby\tO\tby\tO\nwhatever\tO\twhatever\tO\nwas\tO\twas\tO\ncaptured\tO\tcaptured\tO\ninto\tO\tinto\tO\n\\1 B-Value \\1 B-Code_Block\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\na\tO\ta\tO\nnewline\tO\tnewline\tO\n(\tO\t(\tO\n\\n B-Value \\n B-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nwindows-style\tO\twindows-style\tO\nlineendings\tO\tlineendings\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n\\r\\n B-Value \\r\\n B-Code_Block\ninstead\tO\tinstead\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47030828\tO\t47030828\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47030828/\tO\thttps://stackoverflow.com/questions/47030828/\tO\n\t\n\t\nI\tO\tI\tO\nrecently\tO\trecently\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nLayoutManager B-Function LayoutManager O\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nin\tO\tin\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nRecyclerView B-Class RecyclerView O\n,\tO\t,\tO\none\tO\tone\tO\nfrom\tO\tfrom\tO\nnative\tO\tnative\tO\nAndroid B-Operating_System Android O\nand\tO\tand\tO\none\tO\tone\tO\nfrom\tO\tfrom\tO\nLeanback B-Library Leanback O\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nfrom\tO\tfrom\tO\nleanback B-Library leanback O\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nmaintain\tO\tmaintain\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfocused\tO\tfocused\tO\nelement\tO\telement\tO\nfixed\tO\tfixed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmiddle\tO\tmiddle\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscreen B-Device screen O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\nlayout\tO\tlayout\tO\nto\tO\tto\tO\nstack\tO\tstack\tO\nfrom\tO\tfrom\tO\nend\tO\tend\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\ndirection\tO\tdirection\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nscroll\tO\tscroll\tO\nto\tO\tto\tO\nleft\tO\tleft\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nright\tO\tright\tO\nscrolling\tO\tscrolling\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\nlibrary\tO\tlibrary\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nmethods\tO\tmethods\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nsetStackFromEnd(true) B-Function setStackFromEnd(true) O\nor\tO\tor\tO\nsetReverseLayout(true) B-Function setReverseLayout(true) O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\nfrom\tO\tfrom\tO\nLeanback B-Library Leanback O\nLayoutManager B-Function LayoutManager O\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\nYou\tO\tYou\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4390141\tO\t4390141\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4390141/\tO\thttps://stackoverflow.com/questions/4390141/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nreading\tO\treading\tO\nan\tO\tan\tO\narticle\tO\tarticle\tO\nlinked\tO\tlinked\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nslashdot B-Website slashdot O\nstory\tO\tstory\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncame\tO\tcame\tO\nacross\tO\tacross\tO\nthis\tO\tthis\tO\nlittle\tO\tlittle\tO\ntidbit\tO\ttidbit\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nscoured\tO\tscoured\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\n(\tO\t(\tO\nokay\tO\tokay\tO\n,\tO\t,\tO\nI\tO\tI\tO\nspent\tO\tspent\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n15\tO\t15\tO\nminutes\tO\tminutes\tO\ngoogling\tO\tgoogling\tO\nvariations\tO\tvariations\tO\non\tO\ton\tO\n\"\tO\t\"\tO\njava B-Language java O\nquestion\tO\tquestion\tO\nmark\tO\tmark\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\nand\tO\tand\tO\ngot\tO\tgot\tO\nnothing\tO\tnothing\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nofficial\tO\tofficial\tO\ndocumentation\tO\tdocumentation\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nC# B-Language C# O\nhas\tO\thas\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\noperator\tO\toperator\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\n? B-Code_Block ? O\n? I-Code_Block ? O\n\"\tO\t\"\tO\noperator\tO\toperator\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlanguage\tO\tlanguage\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nternary\tO\tternary\tO\noperator\tO\toperator\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnever\tO\tnever\tO\nseen\tO\tseen\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nLink\tO\tLink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\narticle\tO\tarticle\tO\n:\tO\t:\tO\nhttp://infoworld.com/d/developer-world/12-programming-mistakes-avoid-292\tO\thttp://infoworld.com/d/developer-world/12-programming-mistakes-avoid-292\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4390141\tO\t4390141\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4390141/\tO\thttps://stackoverflow.com/questions/4390141/\tO\n\t\n\t\nThe\tO\tThe\tO\noriginal\tO\toriginal\tO\nidea\tO\tidea\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\ngroovy B-Language groovy O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwas\tO\twas\tO\nproposed\tO\tproposed\tO\nfor\tO\tfor\tO\nJava B-Language Java O\n7 B-Version 7 O\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nProject\tO\tProject\tO\nCoin\tO\tCoin\tO\n:\tO\t:\tO\nhttps://wiki.openjdk.java.net/display/Coin/2009+Proposals+TOC\tO\thttps://wiki.openjdk.java.net/display/Coin/2009+Proposals+TOC\tO\n(\tO\t(\tO\nElvis\tO\tElvis\tO\nand\tO\tand\tO\nOther\tO\tOther\tO\nNull-Safe\tO\tNull-Safe\tO\nOperators\tO\tOperators\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhas\tO\thas\tO\nn't\tO\tn't\tO\nbeen\tO\tbeen\tO\naccepted\tO\taccepted\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrelated\tO\trelated\tO\nElvis\tO\tElvis\tO\noperator\tO\toperator\tO\n? B-Code_Block ? O\n: I-Code_Block : O\nwas\tO\twas\tO\nproposed\tO\tproposed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nx B-Code_Block x O\n? I-Code_Block ? B-Code_Block\n: I-Code_Block : I-Code_Block\ny I-Code_Block y I-Code_Block\nshorthand\tO\tshorthand\tO\nfor\tO\tfor\tO\nx B-Code_Block x O\n!= I-Code_Block != B-Code_Block\nnull I-Code_Block null I-Code_Block\n? I-Code_Block ? I-Code_Block\nx I-Code_Block x I-Code_Block\n: I-Code_Block : I-Code_Block\ny I-Code_Block y I-Code_Block\n,\tO\t,\tI-Code_Block\nespecially\tO\tespecially\tO\nuseful\tO\tuseful\tO\nwhen\tO\twhen\tO\nx B-Variable x O\nis\tO\tis\tO\na\tO\ta\tO\ncomplex\tO\tcomplex\tO\nexpression\tO\texpression\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4390141\tO\t4390141\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4390141/\tO\thttps://stackoverflow.com/questions/4390141/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\neven\tO\teven\tO\nwork\tO\twork\tO\n;\tO\t;\tO\nif\tO\tif\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nperson\tO\tperson\tO\nreference\tO\treference\tO\nwas\tO\twas\tO\nnull B-Value null O\n,\tO\t,\tO\nwhat\tO\twhat\tO\nwould\tO\twould\tO\nthe\tO\tthe\tO\nruntime\tO\truntime\tO\nreplace\tO\treplace\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n?\tO\t?\tO\n\t\nA\tO\tA\tO\nnew\tO\tnew\tO\nPerson B-Class Person O\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nwould\tO\twould\tO\nrequire\tO\trequire\tO\nthe\tO\tthe\tO\nPerson B-Class Person O\nto\tO\tto\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\ndefault\tO\tdefault\tO\ninitialization\tO\tinitialization\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nexpect\tO\texpect\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\navoid\tO\tavoid\tO\nnull B-Error_Name null O\nreference I-Error_Name reference O\nexceptions I-Error_Name exceptions O\nbut\tO\tbut\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nstill\tO\tstill\tO\nget\tO\tget\tO\nunpredictable\tO\tunpredictable\tO\nbehavior\tO\tbehavior\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nplan\tO\tplan\tO\nfor\tO\tfor\tO\nthese\tO\tthese\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nsetups\tO\tsetups\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n? B-Code_Block ? O\n? I-Code_Block ? O\n\t\noperator\tO\toperator\tO\nin\tO\tin\tO\nC# B-Language C# O\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nbest\tO\tbest\tO\ntermed\tO\ttermed\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\ncoalesce\tO\tcoalesce\tO\n\"\tO\t\"\tO\noperator\tO\toperator\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchain\tO\tchain\tO\nseveral\tO\tseveral\tO\nexpressions\tO\texpressions\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nnull B-Value null O\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nJava B-Language Java O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nternary\tO\tternary\tO\noperator\tO\toperator\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nnull B-Value null O\nchecks\tO\tchecks\tO\nand\tO\tand\tO\nevaluate\tO\tevaluate\tO\nan\tO\tan\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nexpression\tO\texpression\tO\nif\tO\tif\tO\nany\tO\tany\tO\nmember\tO\tmember\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nchain\tO\tchain\tO\nis\tO\tis\tO\nnull B-Value null O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_460 I-Code_Block A_460 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\ntry-catch B-Code_Block try-catch O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_461 I-Code_Block A_461 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32510600\tO\t32510600\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32510600/\tO\thttps://stackoverflow.com/questions/32510600/\tO\n\t\n\t\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\nmade\tO\tmade\tO\non\tO\ton\tO\nlocalhost\tO\tlocalhost\tO\nrails4-application\tO\trails4-application\tO\nand\tO\tand\tO\npush\tO\tpush\tO\nhim\tO\thim\tO\non\tO\ton\tO\ngithub B-Website github O\n.\tO\t.\tO\n\t\nafter\tO\tafter\tO\ni\tO\ti\tO\ncreate\tO\tcreate\tO\naccount\tO\taccount\tO\non\tO\ton\tO\nheroku B-Application heroku O\nand\tO\tand\tO\nconnected\tO\tconnected\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ngithub-repository\tO\tgithub-repository\tO\nand\tO\tand\tO\nstarting\tO\tstarting\tO\nmanual\tO\tmanual\tO\ndeploy\tO\tdeploy\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nresult\tO\tresult\tO\ni\tO\ti\tO\nget\tO\tget\tO\nfollow\tO\tfollow\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3943 I-Code_Block Q_3943 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nsolutions\tO\tsolutions\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\ntopic\tO\ttopic\tO\n:\tO\t:\tO\nheroku B-Application heroku O\npush\tO\tpush\tO\nrejected\tO\trejected\tO\n,\tO\t,\tO\nfailed\tO\tfailed\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nRuby/rails B-Language Ruby/rails O\napp\tO\tapp\tO\n\t\nbut\tO\tbut\tO\nthey\tO\tthey\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32510600\tO\t32510600\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32510600/\tO\thttps://stackoverflow.com/questions/32510600/\tO\n\t\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\ndebugger B-Application debugger O\ngem B-File_Type gem O\non\tO\ton\tO\nHeroku B-Application Heroku O\nand\tO\tand\tO\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nPut\tO\tPut\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndevelopment B-Value development B-Code_Block\ngroup\tO\tgroup\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ngem B-File_Type gem O\nfile\tO\tfile\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nlocal\tO\tlocal\tO\ndevelopment\tO\tdevelopment\tO\nenvironment\tO\tenvironment\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\ndeployed\tO\tdeployed\tO\nin\tO\tin\tO\nproduction\tO\tproduction\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4644 I-Code_Block A_4644 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSee\tO\tSee\tO\nhttps://devcenter.heroku.com/articles/ruby-support#debugger-gems-fail-to-install\tO\thttps://devcenter.heroku.com/articles/ruby-support#debugger-gems-fail-to-install\tO\nfor\tO\tfor\tO\nfurther\tO\tfurther\tO\nexplanation\tO\texplanation\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38980946\tO\t38980946\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38980946/\tO\thttps://stackoverflow.com/questions/38980946/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nCodeIgniter B-Library CodeIgniter O\nand\tO\tand\tO\nsqlserver B-Application sqlserver O\n2008 B-Version 2008 O\nI\tO\tI\tO\nupdated\tO\tupdated\tO\nmy\tO\tmy\tO\npc B-Device pc O\nto\tO\tto\tO\nwindows B-Operating_System windows O\n10 B-Version 10 O\nthen\tO\tthen\tO\nstopped\tO\tstopped\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsqlserver B-Application sqlserver O\ndriver I-Application driver O\nfor\tO\tfor\tO\nphp B-Language php O\nis\tO\tis\tO\nconfigured\tO\tconfigured\tO\nand\tO\tand\tO\nmy\tO\tmy\tO\nphp B-Language php O\nini B-File_Type ini O\nshows\tO\tshows\tO\nit\tO\tit\tO\n,\tO\t,\tO\nalso\tO\talso\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nconnects\tO\tconnects\tO\nto\tO\tto\tO\nsql B-Application sql O\nserver I-Application server O\nbut\tO\tbut\tO\nnow\tO\tnow\tO\nwhen\tO\twhen\tO\nim\tO\tim\tO\ntriying\tO\ttriying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nit\tO\tit\tO\ngivme\tO\tgivme\tO\nfalse\tO\tfalse\tO\n\t\nso\tO\tso\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4906 I-Code_Block Q_4906 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlways\tO\tAlways\tO\nits\tO\tits\tO\nlike\tO\tlike\tO\nsqlserver B-Application sqlserver O\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nanymore\tO\tanymore\tO\nbut\tO\tbut\tO\ncannot\tO\tcannot\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nPhp B-Language Php O\ninfo\tO\tinfo\tO\nshows\tO\tshows\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4907 I-Code_Block Q_4907 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nits\tO\tits\tO\nmy\tO\tmy\tO\nmistake\tO\tmistake\tO\ncannot\tO\tcannot\tO\nconect\tO\tconect\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4908 I-Code_Block Q_4908 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nconfig B-File_Type config O\nits\tO\tits\tO\nokay\tO\tokay\tO\n:S\tO\t:S\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38980946\tO\t38980946\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38980946/\tO\thttps://stackoverflow.com/questions/38980946/\tO\n\t\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nwasnt\tO\twasnt\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nconfig B-File_Type config O\n,\tO\t,\tO\nwas\tO\twas\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npassword\tO\tpassword\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nexpired\tO\texpired\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncode B-Library code O\nigniter I-Library igniter O\nwas\tO\twas\tO\nn't\tO\tn't\tO\nshowing\tO\tshowing\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nbecouse\tO\tbecouse\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nactive\tO\tactive\tO\nthis\tO\tthis\tO\nconfig B-File_Type config O\n:\tO\t:\tO\n\t\ndatabase.php B-File_Name database.php O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5643 I-Code_Block A_5643 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSolved\tO\tSolved\tO\n;)\tO\t;)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35695507\tO\t35695507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35695507/\tO\thttps://stackoverflow.com/questions/35695507/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\ngit B-Application git O\nusing\tO\tusing\tO\na\tO\ta\tO\ntutorial\tO\ttutorial\tO\n(\tO\t(\tO\nhttps://www.atlassian.com/git/tutorials/setting-up-a-repository/git-clone\tO\thttps://www.atlassian.com/git/tutorials/setting-up-a-repository/git-clone\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\ngit B-Code_Block git O\nconfig I-Code_Block config O\n--global I-Code_Block --global O\nalias I-Code_Block alias O\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\ntutorial\tO\ttutorial\tO\ni\tO\ti\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nshortcut\tO\tshortcut\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nGit B-Application Git O\ncommand\tO\tcommand\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nsyntax\tO\tsyntax\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nprovide\tO\tprovide\tO\nme\tO\tme\tO\na\tO\ta\tO\nworking\tO\tworking\tO\nexample\tO\texample\tO\nfor\tO\tfor\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nshortcut\tO\tshortcut\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngit B-Application git O\ncommand\tO\tcommand\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nequal\tO\tequal\tO\nsynatax\tO\tsynatax\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nsyntax\tO\tsyntax\tO\ndidnt\tO\tdidnt\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35695507\tO\t35695507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35695507/\tO\thttps://stackoverflow.com/questions/35695507/\tO\n\t\n\t\nThe\tO\tThe\tO\naliases\tO\taliases\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narticle\tO\tarticle\tO\nare\tO\tare\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5095 I-Code_Block A_5095 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThey\tO\tThey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5096 I-Code_Block A_5096 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35695507\tO\t35695507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35695507/\tO\thttps://stackoverflow.com/questions/35695507/\tO\n\t\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nreading\tO\treading\tO\nit\tO\tit\tO\ntoo\tO\ttoo\tO\nliterally\tO\tliterally\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nyour\tO\tyour\tO\nfault\tO\tfault\tO\n;\tO\t;\tO\nthe\tO\tthe\tO\ninstructions\tO\tinstructions\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nexplain\tO\texplain\tO\nits\tO\tits\tO\nown\tO\town\tO\nsyntax\tO\tsyntax\tO\nvery\tO\tvery\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5098 I-Code_Block A_5098 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNotice\tO\tNotice\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\nwrite\tO\twrite\tO\n\"\tO\t\"\tO\nalias.<alias> B-Code_Block alias.<alias> B-Code_Block\n\"\tO\t\"\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nwhole\tO\twhole\tO\npurpose\tO\tpurpose\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nconfig B-Code_Block config O\ncommand\tO\tcommand\tO\nis\tO\tis\tO\nto\tO\tto\tO\nactually\tO\tactually\tO\nconfigure\tO\tconfigure\tO\nhow\tO\thow\tO\ngit B-Application git O\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npoint\tO\tpoint\tO\nof\tO\tof\tO\nalias\tO\talias\tO\nis\tO\tis\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nall\tO\tall\tO\nyour\tO\tyour\tO\ncommands\tO\tcommands\tO\nlike\tO\tlike\tO\nconfig B-Code_Block config O\n,\tO\t,\tO\nhelp B-Code_Block help O\n,\tO\t,\tO\ninit B-Code_Block init O\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\nnew\tO\tnew\tO\nways\tO\tways\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncalled\tO\tcalled\tO\nupon\tO\tupon\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntyped\tO\ttyped\tO\nright\tO\tright\tO\nnext\tO\tnext\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nalias B-Code_Block alias B-Code_Block\n. I-Code_Block . I-Code_Block\n\"\tO\t\"\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nthe\tO\tthe\tO\nNEW\tO\tNEW\tO\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nspace\tO\tspace\tO\naway\tO\taway\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nwhere\tO\twhere\tO\nit\tO\tit\tO\nsays\tO\tsays\tO\n\"\tO\t\"\tO\nhelp B-Code_Block help B-Code_Block\n\"\tO\t\"\tO\nI\tO\tI\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\nalias\tO\talias\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nbasically\tO\tbasically\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nhelp B-Code_Block help B-Code_Block\n\"\tO\t\"\tO\ncommand\tO\tcommand\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nby\tO\tby\tO\ntyping\tO\ttyping\tO\n\"\tO\t\"\tO\nhp B-Code_Block hp B-Code_Block\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nliterally\tO\tliterally\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\ncode\tO\tcode\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5099 I-Code_Block A_5099 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nwrite\tO\twrite\tO\nIMABigBaboon\tO\tIMABigBaboon\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ninit B-Code_Block init O\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nit\tO\tit\tO\n!\tO\t!\tO\n\t\nJust\tO\tJust\tO\nbe\tO\tbe\tO\ncareful\tO\tcareful\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nname\tO\tname\tO\ntwo\tO\ttwo\tO\ncommands\tO\tcommands\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nyou\tO\tyou\tO\nwind\tO\twind\tO\nup\tO\tup\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nalias\tO\talias\tO\n.\tO\t.\tO\n\t\nRemember\tO\tRemember\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\none\tO\tone\tO\nalias\tO\talias\tO\nfor\tO\tfor\tO\none\tO\tone\tO\ncommand\tO\tcommand\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41944911\tO\t41944911\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41944911/\tO\thttps://stackoverflow.com/questions/41944911/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\nWhich\tO\tWhich\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nbetween\tO\tbetween\tO\nusing\tO\tusing\tO\nNotificationCenter B-Class NotificationCenter B-Code_Block\nand\tO\tand\tO\nusing\tO\tusing\tO\nClosures\tO\tClosures\tB-Code_Block\nto\tO\tto\tO\ncommunicate\tO\tcommunicate\tO\nbetween\tO\tbetween\tO\ntwo\tO\ttwo\tO\ninstances\tO\tinstances\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nsimilar\tO\tsimilar\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n?\tO\t?\tO\n\t\nHopefully\tO\tHopefully\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\nhelps\tO\thelps\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nbetter\tO\tbetter\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\ntake\tO\ttake\tO\nURLSession B-Class URLSession B-Code_Block\nclass\tO\tclass\tO\nas\tO\tas\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nits\tO\tits\tO\nmethods\tO\tmethods\tO\nhave\tO\thave\tO\na\tO\ta\tO\nclosure\tO\tclosure\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nthey\tO\tthey\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\nwith\tO\twith\tO\nData B-Class Data B-Code_Block\n,\tO\t,\tI-Code_Block\nResponse B-Class Response I-Code_Block\n,\tO\t,\tI-Code_Block\nand\tO\tand\tI-Code_Block\nError B-Class Error I-Code_Block\ninside\tO\tinside\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nI\tO\tI\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nin\tO\tin\tO\nwhat\tO\twhat\tO\nsituations\tO\tsituations\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\neach\tO\teach\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41944911\tO\t41944911\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41944911/\tO\thttps://stackoverflow.com/questions/41944911/\tO\n\t\n\t\nIn\tO\tIn\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\nthe\tO\tthe\tO\npatterns\tO\tpatterns\tO\nare\tO\tare\tO\ninterchangeable\tO\tinterchangeable\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n:\tO\t:\tO\n\t\nUsing\tO\tUsing\tO\na\tO\ta\tO\nclosure\tO\tclosure\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsimplest\tO\tsimplest\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nsimple\tO\tsimple\tO\ncases\tO\tcases\tO\n\t\nUsing\tO\tUsing\tO\na\tO\ta\tO\ndelegate\tO\tdelegate\tO\nis\tO\tis\tO\ncommon\tO\tcommon\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\ncomplex\tO\tcomplex\tO\ncommunication\tO\tcommunication\tO\nbetween\tO\tbetween\tO\ntwo\tO\ttwo\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\ndelegate\tO\tdelegate\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\nthan\tO\tthan\tO\nmany\tO\tmany\tO\nclosures\tO\tclosures\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nnotifications\tO\tnotifications\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nobservers\tO\tobservers\tO\nor\tO\tor\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nobjects\tO\tobjects\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nobserving\tO\tobserving\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nasking\tO\tasking\tO\nyourself\tO\tyourself\tO\nwhy\tO\twhy\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nclosures\tO\tclosures\tO\nfor\tO\tfor\tO\nsimple\tO\tsimple\tO\ncases\tO\tcases\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\ndelegates\tO\tdelegates\tO\nor\tO\tor\tO\nnotifications\tO\tnotifications\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nclosures\tO\tclosures\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nlightweight\tO\tlightweight\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nare\tO\tare\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\npositively\tO\tpositively\tO\naffect\tO\taffect\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nquality\tO\tquality\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\n's\tO\t's\tO\nconsider\tO\tconsider\tO\na\tO\ta\tO\ncompletion\tO\tcompletion\tO\ncallback\tO\tcallback\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndecide\tO\tdecide\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nnotification\tO\tnotification\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nanother\tO\tanother\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nhandle\tO\thandle\tO\nthat\tO\tthat\tO\nnotification\tO\tnotification\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsame\tO\tsame\tO\nis\tO\tis\tO\nvalid\tO\tvalid\tO\nfor\tO\tfor\tO\ndelegates\tO\tdelegates\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\ncontext\tO\tcontext\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nthat\tO\tthat\tO\ntriggered\tO\ttriggered\tO\nthe\tO\tthe\tO\nactions\tO\tactions\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nhand\tO\thand\tO\n,\tO\t,\tO\na\tO\ta\tO\nclosure\tO\tclosure\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncreated\tO\tcreated\tO\ninline\tO\tinline\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\ntriggers\tO\ttriggers\tO\nthe\tO\tthe\tO\naction\tO\taction\tO\nand\tO\tand\tO\nhandles\tO\thandles\tO\nits\tO\tits\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nat\tO\tat\tO\none\tO\tone\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nreally\tO\treally\tO\nsimplifies\tO\tsimplifies\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nclosure\tO\tclosure\tO\nneeds\tO\tneeds\tO\nsome\tO\tsome\tO\ncontext\tO\tcontext\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ncapture\tO\tcapture\tO\nit\tO\tit\tO\n,\tO\t,\tO\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nadditional\tO\tadditional\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48920728\tO\t48920728\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48920728/\tO\thttps://stackoverflow.com/questions/48920728/\tO\n\t\n\t\nHere\tO\tHere\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nwhich\tO\twhich\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nin\tO\tin\tO\ndata B-Variable data O\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nso\tO\tso\tO\nI\tO\tI\tO\ngave\tO\tgave\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6522 I-Code_Block Q_6522 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\ncontroller\tO\tcontroller\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6523 I-Code_Block Q_6523 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\npass\tO\tpass\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nerror\tO\terror\tO\nlike\tO\tlike\tO\nundefined B-Error_Name undefined B-Code_Block\nindex I-Error_Name index I-Code_Block\ndata I-Error_Name data I-Code_Block\nin\tO\tin\tO\nconsole B-Application console O\n\t\nMy\tO\tMy\tO\ntoPost B-Variable toPost B-Code_Block\nvariable\tO\tvariable\tO\ncontains\tO\tcontains\tO\nvalue\tO\tvalue\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6524 I-Code_Block Q_6524 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48920728\tO\t48920728\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48920728/\tO\thttps://stackoverflow.com/questions/48920728/\tO\n\t\n\t\nIf\tO\tIf\tO\nsubmit_data B-Variable submit_data O\nreferred\tO\treferred\tO\nhere\tO\there\tO\nis\tO\tis\tO\na\tO\ta\tO\nform\tO\tform\tO\nfield\tO\tfield\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7169 I-Code_Block A_7169 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\nget\tO\tget\tO\ndata B-Variable data O\nby\tO\tby\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7170 I-Code_Block A_7170 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48920728\tO\t48920728\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48920728/\tO\thttps://stackoverflow.com/questions/48920728/\tO\n\t\n\t\nSerialization\tO\tSerialization\tO\nbasically\tO\tbasically\tO\ndoes\tO\tdoes\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7171 I-Code_Block A_7171 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nfield_name_1 B-Code_Block field_name_1 B-Code_Block\n= I-Code_Block = I-Code_Block\nfield_value_1&field_name_2 I-Code_Block field_value_1&field_name_2 I-Code_Block\n= I-Code_Block = I-Code_Block\nfield_value_2 I-Code_Block field_value_2 I-Code_Block\n\t\nInstead\tO\tInstead\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nmanually\tO\tmanually\tO\nbuild\tO\tbuild\tO\nthat\tO\tthat\tO\n^ B-Code_Block ^ O\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nvariables\tO\tvariables\tO\nthat\tO\tthat\tO\nexist\tO\texist\tO\nvia\tO\tvia\tO\npost\tO\tpost\tO\nbecome\tO\tbecome\tO\n$_POST['field_name_1'] B-Code_Block $_POST['field_name_1'] B-Code_Block\nand\tO\tand\tO\n$_POST['field_name_2'] B-Code_Block $_POST['field_name_2'] B-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nconfirm\tO\tconfirm\tO\nvia\tO\tvia\tO\nprint_r($_POST) B-Code_Block print_r($_POST) B-Code_Block\n; I-Code_Block ; I-Code_Block\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\npost\tO\tpost\tO\nkeys\tO\tkeys\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nrow_selected B-Variable row_selected B-Code_Block\ninto\tO\tinto\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nturn\tO\tturn\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nin\tO\tin\tO\nphp B-Language php O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7172 I-Code_Block A_7172 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nController\tO\tController\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7173 I-Code_Block A_7173 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35352590\tO\t35352590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35352590/\tO\thttps://stackoverflow.com/questions/35352590/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nof\tO\tof\tO\nsome\tO\tsome\tO\ndirectory\tO\tdirectory\tO\npaths\tO\tpaths\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4336 I-Code_Block Q_4336 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nall\tO\tall\tO\n.svn B-File_Type .svn B-Code_Block\nfolders\tO\tfolders\tO\nfrom\tO\tfrom\tO\nall\tO\tall\tO\nthis\tO\tthis\tO\ndirectories\tO\tdirectories\tO\nat\tO\tat\tO\nonce\tO\tonce\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nroot\tO\troot\tO\ndirectory\tO\tdirectory\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\ndeas\tO\tdeas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35352590\tO\t35352590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35352590/\tO\thttps://stackoverflow.com/questions/35352590/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5048 I-Code_Block A_5048 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35352590\tO\t35352590\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35352590/\tO\thttps://stackoverflow.com/questions/35352590/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\n(\tO\t(\tO\nadded\tO\tadded\tO\n-type B-Code_Block -type B-Code_Block\nd I-Code_Block d I-Code_Block\nto\tO\tto\tO\nyour\tO\tyour\tO\nfind\tO\tfind\tO\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nget\tO\tget\tO\nfolders\tO\tfolders\tO\nonly\tO\tonly\tO\n)\tO\t)\tO\n\t\nrm B-Code_Block rm B-Code_Block\n-rf I-Code_Block -rf I-Code_Block\n`find I-Code_Block `find I-Code_Block\n. I-Code_Block . I-Code_Block\n-type I-Code_Block -type I-Code_Block\nd I-Code_Block d I-Code_Block\n-name I-Code_Block -name I-Code_Block\n.svn I-Code_Block .svn I-Code_Block\n` I-Code_Block ` I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32720706\tO\t32720706\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32720706/\tO\thttps://stackoverflow.com/questions/32720706/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nDjango B-Library Django O\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\nPostgreSQL B-Application PostgreSQL O\n)\tO\t)\tO\nthat\tO\tthat\tO\nneeds\tO\tneeds\tO\na\tO\ta\tO\ncolumn B-Data_Structure column O\nnumeric(15,6)\tO\tnumeric(15,6)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nfinding\tO\tfinding\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32720706\tO\t32720706\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32720706/\tO\thttps://stackoverflow.com/questions/32720706/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nPostgreSQL B-Application PostgreSQL O\ndocs\tO\tdocs\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nDjango B-Library Django O\n's\tO\t's\tO\nDecimalField B-Class DecimalField B-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4662 I-Code_Block A_4662 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSome\tO\tSome\tO\ndocs\tO\tdocs\tO\n:\tO\t:\tO\n\t\nhttp://www.postgresql.org/docs/current/interactive/datatype-numeric.html#DATATYPE-NUMERIC-DECIMAL\tO\thttp://www.postgresql.org/docs/current/interactive/datatype-numeric.html#DATATYPE-NUMERIC-DECIMAL\tO\n\t\nhttps://docs.djangoproject.com/en/1.8/ref/forms/fields/#decimalfield\tO\thttps://docs.djangoproject.com/en/1.8/ref/forms/fields/#decimalfield\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34595415\tO\t34595415\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34595415/\tO\thttps://stackoverflow.com/questions/34595415/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nsimilar\tO\tsimilar\tO\nproblems\tO\tproblems\tO\nbut\tO\tbut\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nsolutions.MY\tO\tsolutions.MY\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\nsignup\tO\tsignup\tO\nbutton B-User_Interface_Element button O\n,\tO\t,\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\nsaved\tO\tsaved\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nvisible\tO\tvisible\tO\nin\tO\tin\tO\ndjango B-Library django O\nadministration.But\tO\tadministration.But\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nhit\tO\thit\tO\nthe\tO\tthe\tO\nsignup\tO\tsignup\tO\nbutton B-User_Interface_Element button O\nin\tO\tin\tO\nthe\tO\tthe\tO\nredirected\tO\tredirected\tO\nurl\tO\turl\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nforms.py B-File_Name forms.py O\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4217 I-Code_Block Q_4217 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nmy\tO\tmy\tO\nviews.py B-File_Name views.py O\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4218 I-Code_Block Q_4218 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nmodels.py B-File_Name models.py O\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4219 I-Code_Block Q_4219 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\ni\tO\ti\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nat\tO\tat\tO\n\"mail_base,provider=email.split(\"@\")\" B-Code_Block \"mail_base,provider=email.split(\"@\")\" O\nin\tO\tin\tO\nforms.py.Please B-File_Name forms.py.Please O\nhelp\tO\thelp\tO\nme.\tO\tme.\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34595415\tO\t34595415\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34595415/\tO\thttps://stackoverflow.com/questions/34595415/\tO\n\t\n\t\nIf\tO\tIf\tO\nsomeone\tO\tsomeone\tO\nleaves\tO\tleaves\tO\nemail B-Class email B-Code_Block\nfield I-Class field O\nblank\tO\tblank\tO\n(\tO\t(\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nallowed\tO\tallowed\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nSignUp\tO\tSignUp\tO\nmodel\tO\tmodel\tO\nemail B-Code_Block email B-Code_Block\n= I-Code_Block = I-Code_Block\nEmailField(blank=True)) I-Code_Block EmailField(blank=True)) I-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\nself.cleaned_data.get('email') B-Code_Block self.cleaned_data.get('email') B-Code_Block\nwill\tO\twill\tO\nreturn\tO\treturn\tO\n'' B-Value '' B-Code_Block\n(\tO\t(\tO\nempty\tO\tempty\tO\nstring B-Data_Type string O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nmail_base B-Code_Block mail_base B-Code_Block\n, I-Code_Block , I-Code_Block\nprovider I-Code_Block provider I-Code_Block\n= I-Code_Block = I-Code_Block\nemail.split('@') I-Code_Block email.split('@') I-Code_Block\nwill\tO\twill\tO\nraise\tO\traise\tO\nthat\tO\tthat\tO\nexception B-Class exception O\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34595415\tO\t34595415\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34595415/\tO\thttps://stackoverflow.com/questions/34595415/\tO\n\t\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nhappen\tO\thappen\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nemail B-Variable email B-Code_Block\nstring B-Data_Type string O\n,\tO\t,\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\n,\tO\t,\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nan\tO\tan\tO\n' B-Value ' O\n@ I-Value @ O\n' B-Value ' O\nsymbol\tO\tsymbol\tO\nin\tO\tin\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nleads\tO\tleads\tO\nemail.split(\"@\") B-Code_Block email.split(\"@\") B-Code_Block\nto\tO\tto\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nlength\tO\tlength\tO\n1\tO\t1\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nlength\tO\tlength\tO\n2\tO\t2\tO\n,\tO\t,\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nwere\tO\twere\tO\nexpecting\tO\texpecting\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nblank\tO\tblank\tO\nemail B-Variable email O\nsomewhere\tO\tsomewhere\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nany\tO\tany\tO\nemail B-Class email B-Code_Block\nfield I-Class field O\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nan\tO\tan\tO\n' B-Value ' O\n@ I-Value @ O\n' B-Value ' O\nsymbol\tO\tsymbol\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\nthis\tO\tthis\tO\nexception B-Class exception O\nto\tO\tto\tO\nbe\tO\tbe\tO\nraised\tO\traised\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2726352\tO\t2726352\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2726352/\tO\thttps://stackoverflow.com/questions/2726352/\tO\n\t\n\t\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nmultiple\tO\tmultiple\tO\njoins\tO\tjoins\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_175 I-Code_Block Q_175 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nabove\tO\tabove\tO\nall\tO\tall\tO\nis\tO\tis\tO\nfine\tO\tfine\tO\nuntil\tO\tuntil\tO\ni\tO\ti\tO\npress\tO\tpress\tO\n\" B-Value \" O\n. I-Value . O\n\" I-Value \" O\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n3rd\tO\t3rd\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nthere\tO\tthere\tO\ni\tO\ti\tO\nexpect\tO\texpect\tO\nto\tO\tto\tO\nget\tO\tget\tO\nintellisense\tO\tintellisense\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nu.Id B-Code_Block u.Id B-Code_Block\n== I-Code_Block == I-Code_Block\nug.UserId I-Code_Block ug.UserId I-Code_Block\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nappear\tO\tappear\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ncompile\tO\tcompile\tO\nafter\tO\tafter\tO\n.\tO\t.\tO\n\t\nwhat\tO\twhat\tO\ndid\tO\tdid\tO\ni\tO\ti\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nANSWER\tO\tANSWER\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\naliases\tO\taliases\tO\nis\tO\tis\tO\nimportant\tO\timportant\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\ni\tO\ti\tO\n've\tO\t've\tO\nused\tO\tused\tO\nug.UserId B-Code_Block ug.UserId B-Code_Block\nequals I-Code_Block equals I-Code_Block\nu.Id I-Code_Block u.Id I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2726352\tO\t2726352\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2726352/\tO\thttps://stackoverflow.com/questions/2726352/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nin\tO\tin\tO\nLINQ B-Library LINQ O\nto\tO\tto\tO\nSQL B-Language SQL O\n(\tO\t(\tO\nNorthwind B-Application Northwind O\ndatabase I-Application database O\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_263 I-Code_Block A_263 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25197614\tO\t25197614\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25197614/\tO\thttps://stackoverflow.com/questions/25197614/\tO\n\t\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\na\tO\ta\tO\nquery\tO\tquery\tO\non\tO\ton\tO\na\tO\ta\tO\n.sql B-File_Type .sql O\ndump\tO\tdump\tO\nfile\tO\tfile\tO\nwithout\tO\twithout\tO\nimporting\tO\timporting\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n?\tO\t?\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\nstuff.sql B-File_Name stuff.sql O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2859 I-Code_Block Q_2859 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nexecute\tO\texecute\tO\nsome\tO\tsome\tO\nSELECT B-Code_Block SELECT B-Code_Block\nStatement\tO\tStatement\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\noptions\tO\toptions\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nSure\tO\tSure\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\ndump\tO\tdump\tO\nin\tO\tin\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nDB\tO\tDB\tO\n,\tO\t,\tO\nexecute\tO\texecute\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n,\tO\t,\tO\ndump\tO\tdump\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\nand\tO\tand\tO\ndelete\tO\tdelete\tO\nthe\tO\tthe\tO\nDB\tO\tDB\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nwith\tO\twith\tO\nless\tO\tless\tO\noverhead\tO\toverhead\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25197614\tO\t25197614\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25197614/\tO\thttps://stackoverflow.com/questions/25197614/\tO\n\t\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3468 I-Code_Block A_3468 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25197614\tO\t25197614\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25197614/\tO\thttps://stackoverflow.com/questions/25197614/\tO\n\t\n\t\nNot\tO\tNot\tO\nwithout\tO\twithout\tO\nimporting\tO\timporting\tO\nat\tO\tat\tO\nall\tO\tall\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndont\tO\tdont\tO\nthink\tO\tthink\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nother\tO\tother\tO\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nimport\tO\timport\tO\nyour\tO\tyour\tO\nSQL B-File_Type SQL O\ndump\tO\tdump\tO\ninto\tO\tinto\tO\na\tO\ta\tO\ntemporary\tO\ttemporary\tO\nmemory-only\tO\tmemory-only\tO\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\nthis\tO\tthis\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nSQLite B-Library SQLite O\n:MEMORY B-Code_Block :MEMORY B-Code_Block\n: I-Code_Block : I-Code_Block\ndatabase\tO\tdatabase\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nsql B-Language sql O\nis\tO\tis\tO\ncompatible\tO\tcompatible\tO\n,\tO\t,\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nEngine B-Code_Block Engine B-Code_Block\n= I-Code_Block = I-Code_Block\nMEMORY I-Code_Block MEMORY I-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\nEngine B-Code_Block Engine B-Code_Block\n= I-Code_Block = I-Code_Block\nHEAP I-Code_Block HEAP I-Code_Block\nfor\tO\tfor\tO\nolder\tO\tolder\tO\nversions\tO\tversions\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nMySQL B-Application MySQL O\n\"\tO\t\"\tO\ncreate B-Code_Block create B-Code_Block\ntable I-Code_Block table I-Code_Block\n\"\tO\t\"\tO\nDDL\tO\tDDL\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nmemory\tO\tmemory\tO\ntable B-Data_Structure table O\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\ndb\tO\tdb\tO\n(\tO\t(\tO\nYou\tO\tYou\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nEngine B-Code_Block Engine O\n= I-Code_Block = O\nINNODB I-Code_Block INNODB O\nor\tO\tor\tO\nEngine B-Code_Block Engine O\n= I-Code_Block = O\nMyISAM I-Code_Block MyISAM O\nwith\tO\twith\tO\nMEMORY B-Code_Block MEMORY O\nin\tO\tin\tO\nyour\tO\tyour\tO\ndump\tO\tdump\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nimport\tO\timport\tO\nit\tO\tit\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSame\tO\tSame\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nObviously\tO\tObviously\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\na\tO\ta\tO\n1TB\tO\t1TB\tO\nDatabase\tO\tDatabase\tO\nwould\tO\twould\tO\nprobably\tO\tprobably\tO\nprove\tO\tprove\tO\nimpractical\tO\timpractical\tO\nto\tO\tto\tO\nimport\tO\timport\tO\ninto\tO\tinto\tO\nRAM B-Device RAM O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26004396\tO\t26004396\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26004396/\tO\thttps://stackoverflow.com/questions/26004396/\tO\n\t\n\t\nEdit\tO\tEdit\tO\n(\tO\t(\tO\nsolution\tO\tsolution\tO\n?\tO\t?\tO\n\t\n)\tO\t)\tO\n:\tO\t:\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nconverting\tO\tconverting\tO\nmy\tO\tmy\tO\narrays B-Data_Structure arrays O\ninto\tO\tinto\tO\na\tO\ta\tO\nstring B-Data_Type string O\nand\tO\tand\tO\nparsing\tO\tparsing\tO\nthrough\tO\tthrough\tO\nand\tO\tand\tO\nrecreating\tO\trecreating\tO\nthem\tO\tthem\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nend\tO\tend\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\nhas\tO\thas\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nappreciate\tO\tappreciate\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nOriginal\tO\tOriginal\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nthat\tO\tthat\tO\nextends\tO\textends\tO\nMPxCommand B-Class MPxCommand B-Code_Block\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nplug-in B-Application plug-in O\nand\tO\tand\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nthe\tO\tthe\tO\nMArgList B-Class MArgList B-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ndoIt() B-Function doIt() B-Code_Block\nfunction\tO\tfunction\tO\nto\tO\tto\tO\npull\tO\tpull\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nlists B-Data_Structure lists O\nfrom\tO\tfrom\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nargs B-Variable args O\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\npull\tO\tpull\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nstrings B-Data_Type strings O\nand\tO\tand\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nints B-Data_Type ints O\nthat\tO\tthat\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nan\tO\tan\tO\ninconsistent\tO\tinconsistent\tO\nlength\tO\tlength\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\n(\tO\t(\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\n)\tO\t)\tO\nfill\tO\tfill\tO\nthe\tO\tthe\tO\nflag\tO\tflag\tO\nmultiple\tO\tmultiple\tO\ntimes\tO\ttimes\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nhad\tO\thad\tO\nsuccess\tO\tsuccess\tO\npulling\tO\tpulling\tO\nindividual\tO\tindividual\tO\nvariables\tO\tvariables\tO\nwith\tO\twith\tO\nMArgParser B-Function MArgParser B-Code_Block\nbut\tO\tbut\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\npull\tO\tpull\tO\na\tO\ta\tO\nfull\tO\tfull\tO\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\nMArgList B-Class MArgList B-Code_Block\nappears\tO\tappears\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nasStringArray(index) B-Function asStringArray(index) B-Code_Block\nand\tO\tand\tO\nasIntArray(index) B-Function asIntArray(index) B-Code_Block\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\nthem\tO\tthem\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2977 I-Code_Block Q_2977 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2978 I-Code_Block Q_2978 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nput\tO\tput\tO\n\" B-Value \" O\nhello I-Value hello O\n\" I-Value \" O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nargs B-Variable args B-Code_Block\ninto\tO\tinto\tO\nself.myStr B-Variable self.myStr B-Code_Block\nif\tO\tif\tO\nI\tO\tI\tO\nrun\tO\trun\tO\ncmds.myCommand B-Code_Block cmds.myCommand B-Code_Block\n( B-Code_Block ( B-Code_Block\ns I-Code_Block s I-Code_Block\n= I-Code_Block = I-Code_Block\n\" I-Code_Block \" I-Code_Block\nhello I-Code_Block hello I-Code_Block\n\" I-Code_Block \" I-Code_Block\n) I-Code_Block ) I-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nrun\tO\trun\tO\ncmds.myCommand B-Code_Block cmds.myCommand B-Code_Block\n( B-Code_Block ( B-Code_Block\ns I-Code_Block s I-Code_Block\n= I-Code_Block = I-Code_Block\n[ I-Code_Block [ I-Code_Block\n\" I-Code_Block \" I-Code_Block\nhello I-Code_Block hello I-Code_Block\n\" I-Code_Block \" I-Code_Block\n, I-Code_Block , I-Code_Block\n\" I-Code_Block \" I-Code_Block\nworld I-Code_Block world I-Code_Block\n\" I-Code_Block \" I-Code_Block\n] I-Code_Block ] I-Code_Block\n) I-Code_Block ) I-Code_Block\nand\tO\tand\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\narray\tO\tarray\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nargs B-Variable args B-Code_Block\nvariable\tO\tvariable\tO\nand\tO\tand\tO\nput\tO\tput\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nself.myStr B-Variable self.myStr B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthat\tO\tthat\tO\nclears\tO\tclears\tO\nup\tO\tup\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26004396\tO\t26004396\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26004396/\tO\thttps://stackoverflow.com/questions/26004396/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndeclaration\tO\tdeclaration\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4445 I-Code_Block A_4445 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nint B-Data_Type int B-Code_Block\n& I-Data_Type & I-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nan\tO\tan\tO\nint B-Data_Type int O\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nan\tO\tan\tO\nint B-Data_Type int O\nyou\tO\tyou\tO\ngive\tO\tgive\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nvariable\tO\tvariable\tO\nwill\tO\twill\tO\nreflect\tO\treflect\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmaybe\tO\tmaybe\tO\nyou\tO\tyou\tO\nalready\tO\talready\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\n:\tO\t:\tO\npassing\tO\tpassing\tO\na\tO\ta\tO\nconstant\tO\tconstant\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\ninto\tO\tinto\tO\npython B-Language python O\nat\tO\tat\tO\nall\tO\tall\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nsufficient\tO\tsufficient\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\ndeclare\tO\tdeclare\tO\nan\tO\tan\tO\nint B-Data_Type int O\n,\tO\t,\tO\ninitialize\tO\tinitialize\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\npass\tO\tpass\tO\nit\tO\tit\tO\nas\tO\tas\tO\nargument\tO\targument\tO\n2\tO\t2\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4130263\tO\t4130263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4130263/\tO\thttps://stackoverflow.com/questions/4130263/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nimplemented\tO\timplemented\tO\nan\tO\tan\tO\nOpenID\tO\tOpenID\tO\nIdP\tO\tIdP\tO\nand\tO\tand\tO\nan\tO\tan\tO\nRP\tO\tRP\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nworking-\tO\tworking-\tO\n-\tO\t-\tO\nthe\tO\tthe\tO\nRP\tO\tRP\tO\nis\tO\tis\tO\ncontacting\tO\tcontacting\tO\nthe\tO\tthe\tO\nIdP\tO\tIdP\tO\nand\tO\tand\tO\nis\tO\tis\tO\nredirecting\tO\tredirecting\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nIdP\tO\tIdP\tO\nfor\tO\tfor\tO\nauthentication\tO\tauthentication\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nam\tO\tam\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nauthenticate/authorize\tO\tauthenticate/authorize\tO\npage B-User_Interface_Element page O\nit\tO\tit\tO\nsays\tO\tsays\tO\n\" B-Output_Block \" O\nThis I-Output_Block This O\nsite I-Output_Block site O\nfailed I-Output_Block failed O\nverification I-Output_Block verification O\n. I-Output_Block . O\n\" I-Output_Block \" O\n\t\nI\tO\tI\tO\ndug\tO\tdug\tO\naround\tO\taround\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nand\tO\tand\tO\nsaw\tO\tsaw\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nthings\tO\tthings\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nwas\tO\twas\tO\ndoing\tO\tdoing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nhunch\tO\thunch\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nYadis B-Library Yadis O\ndocument\tO\tdocument\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\nfound\tO\tfound\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nsite\tO\tsite\tO\n's\tO\t's\tO\nrealm\tO\trealm\tO\nshoots\tO\tshoots\tO\noff\tO\toff\tO\na\tO\ta\tO\n302 B-Error_Name 302 O\nFound\tO\tFound\tO\nstatus\tO\tstatus\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nthought\tO\tthought\tO\nthis\tO\tthis\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nand\tO\tand\tO\nset\tO\tset\tO\nit\tO\tit\tO\nup\tO\tup\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\nAccept\tO\tAccept\tO\n\"\tO\t\"\tO\nrequest\tO\trequest\tO\nheader\tO\theader\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfed\tO\tfed\tO\nthe\tO\tthe\tO\nYadis B-Library Yadis O\ndocument\tO\tdocument\tO\ntype\tO\ttype\tO\n(\tO\t(\tO\n\" B-Value \" O\napplication/xrds I-Value application/xrds O\n+xml I-Value +xml O\n\" I-Value \" O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nissuing\tO\tissuing\tO\nthe\tO\tthe\tO\n302 B-Function 302 O\nFound I-Function Found O\nredirect\tO\tredirect\tO\n,\tO\t,\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\ntried\tO\ttried\tO\nplacing\tO\tplacing\tO\nthe\tO\tthe\tO\nX-XRDS-Location\tO\tX-XRDS-Location\tO\nheader\tO\theader\tO\n..\tO\t..\tO\n.\tO\t.\tO\nno\tO\tno\tO\ngo\tO\tgo\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nother\tO\tother\tO\nsuggestions\tO\tsuggestions\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4130263\tO\t4130263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4130263/\tO\thttps://stackoverflow.com/questions/4130263/\tO\n\t\n\t\nIt\tO\tIt\tO\ntook\tO\ttook\tO\na\tO\ta\tO\nnice\tO\tnice\tO\nrework\tO\trework\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nonce\tO\tonce\tO\nI\tO\tI\tO\nfixed\tO\tfixed\tO\nthe\tO\tthe\tO\n302 B-Error_Name 302 O\nFound I-Error_Name Found O\nto\tO\tto\tO\na\tO\ta\tO\n200 B-Error_Name 200 O\nOK I-Error_Name OK O\nresponse\tO\tresponse\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ngolden\tO\tgolden\tO\n.\tO\t.\tO\n\t\nhttp://blog.nerdbank.net/2008/06/why-yahoo-says-your-openid-site.html\tO\thttp://blog.nerdbank.net/2008/06/why-yahoo-says-your-openid-site.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25192105\tO\t25192105\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25192105/\tO\thttps://stackoverflow.com/questions/25192105/\tO\n\t\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nstuck\tO\tstuck\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nweek\tO\tweek\tO\nor\tO\tor\tO\nso\tO\tso\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\ndoes\tO\tdoes\tO\none\tO\tone\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nspecific\tO\tspecific\tO\nrow B-Data_Structure row O\nselected\tO\tselected\tO\non\tO\ton\tO\na\tO\ta\tO\nUIPickerView B-Class UIPickerView O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsecondviewcontroller B-Variable secondviewcontroller O\nto\tO\tto\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\nif\tO\tif\tO\nstatements\tO\tstatements\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfirstviewcontroller B-Variable firstviewcontroller O\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nam\tO\tam\tO\nthinking\tO\tthinking\tO\nsegues B-Library segues O\nare\tO\tare\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\n?\tO\t?\tO\n\t\nSorry\tO\tSorry\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nseems\tO\tseems\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nrudimentary\tO\trudimentary\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nbrand\tO\tbrand\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nXcode B-Application Xcode O\nand\tO\tand\tO\nobjective\tO\tobjective\tO\nc B-Language c O\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11680985\tO\t11680985\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11680985/\tO\thttps://stackoverflow.com/questions/11680985/\tO\n\t\n\t\nis\tO\tis\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nUnlock\tO\tUnlock\tO\nScreen B-User_Interface_Element Screen O\nby\tO\tby\tO\nclicking\tO\tclicking\tO\nhome B-User_Interface_Element home O\nbutton I-User_Interface_Element button O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\ndid\tO\tdid\tO\nlock\tO\tlock\tO\nscreen B-User_Interface_Element screen O\ndynamically\tO\tdynamically\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nDeviceAdminReceiver B-Library DeviceAdminReceiver O\nAPI I-Library API O\n.\tO\t.\tO\n\t\nas\tO\tas\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nunlock\tO\tunlock\tO\nthe\tO\tthe\tO\nscreen B-User_Interface_Element screen O\nby\tO\tby\tO\nclicking\tO\tclicking\tO\nthe\tO\tthe\tO\nhome B-User_Interface_Element home O\nbutton I-User_Interface_Element button O\nor\tO\tor\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nkeys B-User_Interface_Element keys O\n.\tO\t.\tO\n\t\nkindly\tO\tkindly\tO\nsome\tO\tsome\tO\none\tO\tone\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\nideas\tO\tideas\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nplease\tO\tplease\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11189300\tO\t11189300\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11189300/\tO\thttps://stackoverflow.com/questions/11189300/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\nbasic\tO\tbasic\tO\nCSS3 B-Language CSS3 O\nanimation\tO\tanimation\tO\ntest\tO\ttest\tO\nwhich\tO\twhich\tO\nincreases\tO\tincreases\tO\nand\tO\tand\tO\ndecreases\tO\tdecreases\tO\nthe\tO\tthe\tO\nbackground-size\tO\tbackground-size\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nclick\tO\tclick\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nelements\tO\telements\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nactive\tO\tactive\tO\nis\tO\tis\tO\ntoggled\tO\ttoggled\tO\nand\tO\tand\tO\na\tO\ta\tO\ntransition\tO\ttransition\tO\noccurs\tO\toccurs\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthough\tO\tthough\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\n.active B-Class .active O\nclass\tO\tclass\tO\nis\tO\tis\tO\nremoved\tO\tremoved\tO\nthe\tO\tthe\tO\nanimation\tO\tanimation\tO\ndoesnt\tO\tdoesnt\tO\noccur\tO\toccur\tO\nanymore\tO\tanymore\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nreset\tO\treset\tO\nanimation\tO\tanimation\tO\nto\tO\tto\tO\nnone\tO\tnone\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nadvise\tO\tadvise\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nCSS B-Language CSS O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1033 I-Code_Block Q_1033 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nJS B-Language JS O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1034 I-Code_Block Q_1034 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFiddle B-Application Fiddle O\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://jsfiddle.net/VQaGh/22/\tO\thttp://jsfiddle.net/VQaGh/22/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11189300\tO\t11189300\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11189300/\tO\thttps://stackoverflow.com/questions/11189300/\tO\n\t\n\t\nas\tO\tas\tO\nmy\tO\tmy\tO\nunderstanding\tO\tunderstanding\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\neffects\tO\teffects\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\ntry\tO\ttry\tO\nthis\tO\tthis\tO\none\tO\tone\tO\nhttp://jsfiddle.net/Sk2sX/\tO\thttp://jsfiddle.net/Sk2sX/\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmodify\tO\tmodify\tO\nboth\tO\tboth\tO\ncss B-Language css O\nand\tO\tand\tO\njs B-Language js O\nhope\tO\thope\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n\t\nfor\tO\tfor\tO\nany\tO\tany\tO\nquery\tO\tquery\tO\nregarding\tO\tregarding\tO\ncode\tO\tcode\tO\npost\tO\tpost\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41559764\tO\t41559764\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41559764/\tO\thttps://stackoverflow.com/questions/41559764/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIm\tO\tIm\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoesnt\tO\tdoesnt\tO\ndisplay\tO\tdisplay\tO\nanything\tO\tanything\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5280 I-Code_Block Q_5280 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16741679\tO\t16741679\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16741679/\tO\thttps://stackoverflow.com/questions/16741679/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nsorry\tO\tsorry\tO\nbecause\tO\tbecause\tO\nthis\tO\tthis\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ndoubled\tO\tdoubled\tO\npost\tO\tpost\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nsaw\tO\tsaw\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nother\tO\tother\tO\nthreads\tO\tthreads\tO\nand\tO\tand\tO\ni\tO\ti\tO\ncant\tO\tcant\tO\nunderstand\tO\tunderstand\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\nhas_and_belongs_to_many B-Function has_and_belongs_to_many O\nbut\tO\tbut\tO\ni\tO\ti\tO\nam\tO\tam\tO\nstuck\tO\tstuck\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ninformation\tO\tinformation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\n:\tO\t:\tO\n\t\nOrb B-Class Orb O\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1679 I-Code_Block Q_1679 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBook B-Class Book O\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1680 I-Code_Block Q_1680 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nA B-Class A O\n_form I-Class _form O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1681 I-Code_Block Q_1681 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1682 I-Code_Block Q_1682 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWith\tO\tWith\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nhas\tO\thas\tO\na\tO\ta\tO\ncheckbox B-User_Interface_Element checkbox O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwont\tO\twont\tO\nbe\tO\tbe\tO\nsave\tO\tsave\tO\nanywere\tO\tanywere\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndont\tO\tdont\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nsome\tO\tsome\tO\none\tO\tone\tO\nme\tO\tme\tO\nexplain\tO\texplain\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16741679\tO\t16741679\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16741679/\tO\thttps://stackoverflow.com/questions/16741679/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\na\tO\ta\tO\njoin\tO\tjoin\tO\ntable B-Data_Structure table O\nto\tO\tto\tO\nuse\tO\tuse\tO\nhas_and_belongs_to_many B-Function has_and_belongs_to_many O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2187 I-Code_Block A_2187 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nsee\tO\tsee\tO\nhere\tO\there\tO\nmy\tO\tmy\tO\nworking\tO\tworking\tO\nversion\tO\tversion\tO\n:\tO\t:\tO\nhttps://github.com/senayar/books\tO\thttps://github.com/senayar/books\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6343991\tO\t6343991\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6343991/\tO\thttps://stackoverflow.com/questions/6343991/\tO\n\t\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nform\tO\tform\tO\nwhich\tO\twhich\tO\nfills\tO\tfills\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\neither\tO\teither\tO\n'\tO\t'\tO\nresolved\tO\tresolved\tO\n'\tO\t'\tO\nor\tO\tor\tO\n'\tO\t'\tO\nnotresolved\tO\tnotresolved\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ncounter\tO\tcounter\tO\nwhich\tO\twhich\tO\nstarts\tO\tstarts\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\nis\tO\tis\tO\nsubmitted\tO\tsubmitted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nstatus\tO\tstatus\tO\nis\tO\tis\tO\n'\tO\t'\tO\nnotresolved\tO\tnotresolved\tO\n'\tO\t'\tO\nyet\tO\tyet\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nresolve\tO\tresolve\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\ntaken\tO\ttaken\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nimplement\tO\timplement\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_472 I-Code_Block Q_472 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6343991\tO\t6343991\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6343991/\tO\thttps://stackoverflow.com/questions/6343991/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncolumn B-Data_Structure column O\nof\tO\tof\tO\ntype\tO\ttype\tO\nTIMESTAMP B-Data_Type TIMESTAMP B-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\ndatabase\tO\tdatabase\tO\ntable B-Data_Structure table O\nand\tO\tand\tO\nhave\tO\thave\tO\nits\tO\tits\tO\ndefault\tO\tdefault\tO\nvalue\tO\tvalue\tO\nset\tO\tset\tO\nas\tO\tas\tO\nCURRENT_TIMESTAMP B-Variable CURRENT_TIMESTAMP B-Code_Block\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nthread\tO\tthread\tO\non\tO\ton\tO\nStackoverflow B-Website Stackoverflow O\n:\tO\t:\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nset\tO\tset\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\nvalue\tO\tvalue\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nMySQL B-Application MySQL O\nDatetime B-Data_Type Datetime O\ncolumn B-Data_Structure column O\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nTimestamp\tO\tTimestamp\tO\nproperties\tO\tproperties\tO\nin\tO\tin\tO\nMySQL B-Application MySQL O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6343991\tO\t6343991\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6343991/\tO\thttps://stackoverflow.com/questions/6343991/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nthinking\tO\tthinking\tO\nfast\tO\tfast\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nmind\tO\tmind\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_715 I-Code_Block A_715 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIs\tO\tIs\tO\nthat\tO\tthat\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nhttp://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_datediff\tO\thttp://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_datediff\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nMySQL B-Application MySQL O\ndates\tO\tdates\tO\n,\tO\t,\tO\nfollowing\tO\tfollowing\tO\nRufinus B-User_Name Rufinus O\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31096939\tO\t31096939\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31096939/\tO\thttps://stackoverflow.com/questions/31096939/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nduplicate\tO\tduplicate\tO\nelements\tO\telements\tO\nin\tO\tin\tO\na\tO\ta\tO\narray B-Data_Structure array O\n'\tO\t'\tO\ndata B-Variable data O\n'\tO\t'\tO\ninto\tO\tinto\tO\n0 B-Value 0 O\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nrow-wise B-User_Interface_Element row-wise O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3743 I-Code_Block Q_3743 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nanswer\tO\tanswer\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3744 I-Code_Block Q_3744 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31096939\tO\t31096939\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31096939/\tO\thttps://stackoverflow.com/questions/31096939/\tO\n\t\n\t\nApproach\tO\tApproach\tO\n#1\tO\t#1\tO\n\t\nOne\tO\tOne\tO\napproach\tO\tapproach\tO\nwith\tO\twith\tO\nnp.unique B-Function np.unique B-Code_Block\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4417 I-Code_Block A_4417 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSample\tO\tSample\tO\nrun\tO\trun\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4418 I-Code_Block A_4418 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nApproach\tO\tApproach\tO\n#2\tO\t#2\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nsorting\tO\tsorting\tB-Code_Block\nand\tO\tand\tO\ndifferentiation\tO\tdifferentiation\tB-Code_Block\nas\tO\tas\tO\na\tO\ta\tO\nfaster\tO\tfaster\tO\napproach\tO\tapproach\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4419 I-Code_Block A_4419 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nRuntime\tO\tRuntime\tO\ntests\tO\ttests\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4420 I-Code_Block A_4420 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nExtending\tO\tExtending\tO\nto\tO\tto\tO\na\tO\ta\tO\n2D\tO\t2D\tO\ncase\tO\tcase\tO\n:\tO\t:\tO\n\t\nApproach\tO\tApproach\tO\n#2\tO\t#2\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nextended\tO\textended\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\na\tO\ta\tO\n2D\tO\t2D\tO\narray B-Data_Structure array O\ncase\tO\tcase\tO\n,\tO\t,\tO\navoiding\tO\tavoiding\tO\nany\tO\tany\tO\nloop\tO\tloop\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4421 I-Code_Block A_4421 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSample\tO\tSample\tO\nrun\tO\trun\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4422 I-Code_Block A_4422 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31096939\tO\t31096939\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31096939/\tO\thttps://stackoverflow.com/questions/31096939/\tO\n\t\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\npure-Python B-Language pure-Python O\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4423 I-Code_Block A_4423 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36967459\tO\t36967459\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36967459/\tO\thttps://stackoverflow.com/questions/36967459/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nimplemented\tO\timplemented\tO\nan\tO\tan\tO\ninvitation\tO\tinvitation\tO\nsystem\tO\tsystem\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\ngenerates\tO\tgenerates\tO\nan\tO\tan\tO\nical B-File_Type ical O\nattachment\tO\tattachment\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nusers\tO\tusers\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\nbody\tO\tbody\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\ntrigger\tO\ttrigger\tO\nthe\tO\tthe\tO\nprocessing\tO\tprocessing\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninvitation\tO\tinvitation\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nin\tO\tin\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nextra\tO\textra\tO\nbuttons B-User_Interface_Element buttons O\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nsome\tO\tsome\tO\nemail B-Application email O\nclients I-Application clients O\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\nquestion\tO\tquestion\tO\nmentions\tO\tmentions\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nemail\tO\temail\tO\nattachments\tO\tattachments\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ngeneral\tO\tgeneral\tO\ncase\tO\tcase\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nstill\tO\tstill\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\nfor\tO\tfor\tO\nicalendar B-Application icalendar O\nattachments\tO\tattachments\tO\n?\tO\t?\tO\n\t\nOther\tO\tOther\tO\nquestions\tO\tquestions\tO\nsuggest\tO\tsuggest\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nservice\tO\tservice\tO\nlike\tO\tlike\tO\nhttps://www.addevent.com/\tO\thttps://www.addevent.com/\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\noriented\tO\toriented\tO\ntoward\tO\ttoward\tO\n\"\tO\t\"\tO\npublic\tO\tpublic\tO\nevents\tO\tevents\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nwhereas\tO\twhereas\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nsomething\tO\tsomething\tO\nquite\tO\tquite\tO\nprivate\tO\tprivate\tO\n(\tO\t(\tO\nonly\tO\tonly\tO\ninvitations\tO\tinvitations\tO\nbetween\tO\tbetween\tO\n2\tO\t2\tO\npeople\tO\tpeople\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nexpected\tO\texpected\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ngenerates\tO\tgenerates\tO\nquite\tO\tquite\tO\noften\tO\toften\tO\n(\tO\t(\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nscale\tO\tscale\tO\nup\tO\tup\tO\nto\tO\tto\tO\n100/day B-Value 100/day O\nwithout\tO\twithout\tO\nproblem\tO\tproblem\tO\n)\tO\t)\tO\n,\tO\t,\tO\nor\tO\tor\tO\nit\tO\tit\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nme\tO\tme\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nbad\tO\tbad\tO\nimpression\tO\timpression\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36967459\tO\t36967459\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36967459/\tO\thttps://stackoverflow.com/questions/36967459/\tO\n\t\n\t\nDealt\tO\tDealt\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nseveral\tO\tseveral\tO\nyears\tO\tyears\tO\nago\tO\tago\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\nno\tO\tno\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nforce\tO\tforce\tO\nmost\tO\tmost\tO\nemail B-Application email O\nclient I-Application client O\nto\tO\tto\tO\n\"\tO\t\"\tO\nprocess\tO\tprocess\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\ntrigger\tO\ttrigger\tO\n\"\tO\t\"\tO\nAdd\tO\tAdd\tO\nto\tO\tto\tO\ncalendar\tO\tcalendar\tO\n\"\tO\t\"\tO\nmenu B-User_Interface_Element menu O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nmake\tO\tmake\tO\nsome\tO\tsome\tO\nelement\tO\telement\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nemail\tO\temail\tO\ntrigger\tO\ttrigger\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nsimply\tO\tsimply\tO\nlinking\tO\tlinking\tO\nthat\tO\tthat\tO\nelement\tO\telement\tO\nto\tO\tto\tO\n.ical B-File_Type .ical B-Code_Block\nfile\tO\tfile\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nserver B-Device server O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nadvantage\tO\tadvantage\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nattache\tO\tattache\tO\nsome\tO\tsome\tO\nparameters\tO\tparameters\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nlink\tO\tlink\tO\nand\tO\tand\tO\ngenerate\tO\tgenerate\tO\nthat\tO\tthat\tO\nevent\tO\tevent\tO\nfile\tO\tfile\tO\ndynamically\tO\tdynamically\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nit\tO\tit\tO\nscales\tO\tscales\tO\npretty\tO\tpretty\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2290073\tO\t2290073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2290073/\tO\thttps://stackoverflow.com/questions/2290073/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nstandard\tO\tstandard\tO\nGWT B-Application GWT O\n(\tO\t(\tO\n2.0.1 B-Version 2.0.1 O\n)\tO\t)\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\ninternet\tO\tinternet\tO\napp\tO\tapp\tO\nand\tO\tand\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nwierd\tO\twierd\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nhuge B-Value huge O\nfonts\tO\tfonts\tO\n(\tO\t(\tO\nedit\tO\tedit\tO\n:\tO\t:\tO\nwell\tO\twell\tO\n,\tO\t,\tO\nlarger\tO\tlarger\tO\nthan\tO\tthan\tO\nnormal\tO\tnormal\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nstyle\tO\tstyle\tO\nin\tO\tin\tO\nIE B-Application IE O\n7 B-Version 7 O\n&\tO\t&\tO\n8 B-Version 8 O\n,\tO\t,\tO\nwhile\tO\twhile\tO\nFF B-Application FF O\n,\tO\t,\tO\nChrome B-Application Chrome O\nand\tO\tand\tO\nSafari B-Application Safari O\nare\tO\tare\tO\ndisplaying\tO\tdisplaying\tO\nfonts\tO\tfonts\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nfirst\tO\tfirst\tO\ni\tO\ti\tO\nthought\tO\tthought\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\non\tO\ton\tO\nerror\tO\terror\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nside\tO\tside\tO\n(\tO\t(\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nUiBinder B-Class UiBinder O\nwith\tO\twith\tO\nsome\tO\tsome\tO\ncustom\tO\tcustom\tO\ncss B-Language css O\n)\tO\t)\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nGWT B-Application GWT O\nshowcases\tO\tshowcases\tO\nsite\tO\tsite\tO\nthe\tO\tthe\tO\nvarious\tO\tvarious\tO\nwidget B-User_Interface_Element widget O\nfonts\tO\tfonts\tO\nare\tO\tare\tO\nalso\tO\talso\tO\ntoo\tO\ttoo\tO\nbig\tO\tbig\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2290073\tO\t2290073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2290073/\tO\thttps://stackoverflow.com/questions/2290073/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nIE B-Application IE O\ndefault\tO\tdefault\tO\nfont\tO\tfont\tO\nsize\tO\tsize\tO\nrendering\tO\trendering\tO\nand\tO\tand\tO\nhas\tO\thas\tO\nnothing\tO\tnothing\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nGWT B-Application GWT O\nbut\tO\tbut\tO\nrather\tO\trather\tO\nwith\tO\twith\tO\nCSS B-Language CSS O\nstyling\tO\tstyling\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nfonts\tO\tfonts\tO\nare\tO\tare\tO\nconsistent\tO\tconsistent\tO\nover\tO\tover\tO\nmultiple\tO\tmultiple\tO\nbrowser B-Application browser O\nwith\tO\twith\tO\na\tO\ta\tO\nCSS B-Language CSS O\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_235 I-Code_Block A_235 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nTo\tO\tTo\tO\nensure\tO\tensure\tO\nall\tO\tall\tO\nwidgets B-User_Interface_Element widgets O\n\"\tO\t\"\tO\nget\tO\tget\tO\n\"\tO\t\"\tO\nthis\tO\tthis\tO\nnew\tO\tnew\tO\nstyle\tO\tstyle\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nput\tO\tput\tO\nyour\tO\tyour\tO\nCSS B-File_Type CSS O\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n*\tO\t*\tO\n.gwt.xml B-File_Type .gwt.xml O\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nway\tO\tway\tO\n(\tO\t(\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\nlines\tO\tlines\tO\nis\tO\tis\tO\nimportant\tO\timportant\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_236 I-Code_Block A_236 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nput\tO\tput\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nHTML B-Language HTML O\npage\tO\tpage\tO\n!\tO\t!\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nstyle\tO\tstyle\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\nwidget B-User_Interface_Element widget O\nstyles\tO\tstyles\tO\n.\tO\t.\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\nmight\tO\tmight\tO\noverride\tO\toverride\tO\nsome\tO\tsome\tO\nwidget B-User_Interface_Element widget O\nstyles\tO\tstyles\tO\nby\tO\tby\tO\nhand\tO\thand\tO\n(\tO\t(\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nGwtOverride.css B-File_Name GwtOverride.css O\nfor\tO\tfor\tO\nthat\tO\tthat\tO\npurpose\tO\tpurpose\tO\n)\tO\t)\tO\n..\tO\t..\tO\n.\tO\t.\tO\nsee\tO\tsee\tO\nsnippet\tO\tsnippet\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_237 I-Code_Block A_237 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2290073\tO\t2290073\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2290073/\tO\thttps://stackoverflow.com/questions/2290073/\tO\n\t\n\t\nA\tO\tA\tO\nquick\tO\tquick\tO\ncomparison\tO\tcomparison\tO\nbetween\tO\tbetween\tO\nOpera B-Application Opera O\n10.10 B-Version 10.10 O\n,\tO\t,\tO\nIE B-Application IE O\n6 B-Version 6 O\nand\tO\tand\tO\nFF B-Application FF O\n3.6 B-Version 3.6 O\n(\tO\t(\tO\nall\tO\tall\tO\non\tO\ton\tO\nWinXP B-Operating_System WinXP O\nSP B-Version SP O\n3) I-Version 3) O\n-\tO\t-\tO\nOpera B-Application Opera O\nand\tO\tand\tO\nIE B-Application IE O\nshow\tO\tshow\tO\nslightly\tO\tslightly\tO\nlarger\tO\tlarger\tO\nfonts\tO\tfonts\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nGWT B-Application GWT O\n's\tO\t's\tO\nfault\tO\tfault\tO\n-\tO\t-\tO\nevery\tO\tevery\tO\nbrowser B-Application browser O\nhas\tO\thas\tO\nsome\tO\tsome\tO\ncore\tO\tcore\tO\nCSS B-Language CSS O\nrules\tO\trules\tO\ndefining\tO\tdefining\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nlook\tO\tlook\tO\n,\tO\t,\tO\nif\tO\tif\tO\nno\tO\tno\tO\nadditional\tO\tadditional\tO\nCSS B-Language CSS O\nstyles\tO\tstyles\tO\nare\tO\tare\tO\napplied\tO\tapplied\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\nannoying\tO\tannoying\tO\nblue\tO\tblue\tO\nborder B-User_Interface_Element border O\non\tO\ton\tO\nall\tO\tall\tO\nimages B-User_Interface_Element images O\nin\tO\tin\tO\nFF B-Application FF O\n)\tO\t)\tO\n,\tO\t,\tO\nso\tO\tso\tO\njust\tO\tjust\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nset\tO\tset\tO\nexplicitly\tO\texplicitly\tO\nyour\tO\tyour\tO\nfont\tO\tfont\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\netc\tO\tetc\tO\nto\tO\tto\tO\nnullify\tO\tnullify\tO\nthese\tO\tthese\tO\ndifferences\tO\tdifferences\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\n,\tO\t,\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nseeing\tO\tseeing\tO\nfonts\tO\tfonts\tO\nway\tO\tway\tO\nlarger\tO\tlarger\tO\nthan\tO\tthan\tO\nthey\tO\tthey\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n-\tO\t-\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\nunder\tO\tunder\tO\nLinux B-Operating_System Linux O\n(\tO\t(\tO\nGentoo B-Version Gentoo O\namd6 I-Version amd6 O\n4) I-Version 4) O\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n-\tO\t-\tO\nOpera B-Application Opera O\nreneders\tO\treneders\tO\nslightly\tO\tslightly\tO\nlarger\tO\tlarger\tO\nfonts\tO\tfonts\tO\nthan\tO\tthan\tO\nFirefox B-Application Firefox O\n,\tO\t,\tO\nbut\tO\tbut\tO\nnothing\tO\tnothing\tO\nthat\tO\tthat\tO\nlooks\tO\tlooks\tO\nodd\tO\todd\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46419176\tO\t46419176\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46419176/\tO\thttps://stackoverflow.com/questions/46419176/\tO\n\t\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\ndialog B-Class dialog O\nthat\tO\tthat\tO\ncalls\tO\tcalls\tO\nmodeless\tO\tmodeless\tO\ndialogs B-Class dialogs O\nthrough\tO\tthrough\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nlegacy\tO\tlegacy\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6088 I-Code_Block Q_6088 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nProblem\tO\tProblem\tO\n:\tO\t:\tO\nall\tO\tall\tO\nsub\tO\tsub\tO\ndialogs B-User_Interface_Element dialogs O\nstay\tO\tstay\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\ndialog B-User_Interface_Element dialog O\n.\tO\t.\tO\n\t\nDesired\tO\tDesired\tO\nbehavior\tO\tbehavior\tO\n:\tO\t:\tO\nwhichever\tO\twhichever\tO\n's\tO\t's\tO\nfocused\tO\tfocused\tO\n(\tO\t(\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nall\tO\tall\tO\nmodeless\tO\tmodeless\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbe\tO\tbe\tO\nit\tO\tit\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\ndialog B-User_Interface_Element dialog O\n,\tO\t,\tO\nor\tO\tor\tO\nsub\tO\tsub\tO\ndialogs B-User_Interface_Element dialogs O\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\ntopmost\tO\ttopmost\tO\ndialog B-User_Interface_Element dialog O\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nI\tO\tI\tO\nalready\tO\talready\tO\ntried\tO\ttried\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\ndialog B-Class dialog O\n's\tO\t's\tO\nOnInitDialog() B-Function OnInitDialog() B-Code_Block\nthese\tO\tthese\tO\nbut\tO\tbut\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\nSetWindowPos(&this->wndTop,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE) B-Code_Block SetWindowPos(&this->wndTop,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE) B-Code_Block\n; I-Code_Block ; I-Code_Block\n\t\n2\tO\t2\tO\n.\tO\t.\tO\nSetWindowPos(&this->wndTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE) B-Code_Block SetWindowPos(&this->wndTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE) B-Code_Block\n;\tO\t;\tI-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nsub\tO\tsub\tO\ndialogs B-Class dialogs O\nare\tO\tare\tO\ncreated\tO\tcreated\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nm_subDlg1->Create B-Code_Block m_subDlg1->Create B-Code_Block\n( I-Code_Block ( I-Code_Block\nSubDlg1::IDD I-Code_Block SubDlg1::IDD I-Code_Block\n, I-Code_Block , I-Code_Block\nthis I-Code_Block this I-Code_Block\n) I-Code_Block ) I-Code_Block\n; I-Code_Block ; I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46419176\tO\t46419176\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46419176/\tO\thttps://stackoverflow.com/questions/46419176/\tO\n\t\n\t\nAs\tO\tAs\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nowner\tO\towner\tO\nrelation\tO\trelation\tO\nbetween\tO\tbetween\tO\ntwo\tO\ttwo\tO\nwindows B-User_Interface_Element windows O\n.\tO\t.\tO\n\t\nthe\tO\tthe\tO\nowner\tO\towner\tO\nof\tO\tof\tO\na\tO\ta\tO\nwindow B-User_Interface_Element window O\ncan\tO\tcan\tO\nnever\tO\tnever\tO\nbe\tO\tbe\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nowned\tO\towned\tO\nwindow B-User_Interface_Element window O\n.\tO\t.\tO\n\t\nWindows B-User_Interface_Element Windows O\nin\tO\tin\tO\nan\tO\tan\tO\nowner\tO\towner\tO\n,\tO\t,\tO\nparent\tO\tparent\tO\n,\tO\t,\tO\nchild\tO\tchild\tO\nrelation\tO\trelation\tO\nalways\tO\talways\tO\nbehave\tO\tbehave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nowned/child\tO\towned/child\tO\nwindow B-User_Interface_Element window O\nis\tO\tis\tO\nalways\tO\talways\tO\non\tO\ton\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nparent/owner\tO\tparent/owner\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\nthe\tO\tthe\tO\nowner/child\tO\towner/child\tO\nrelation\tO\trelation\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nall\tO\tall\tO\ndialog B-User_Interface_Element dialog O\nwindows I-User_Interface_Element windows O\nhave\tO\thave\tO\nno\tO\tno\tO\nowner\tO\towner\tO\n..\tO\t..\tO\n.\tO\t.\tO\nthan\tO\tthan\tO\nthey\tO\tthey\tO\nmay\tO\tmay\tO\nfloat\tO\tfloat\tO\nfreely\tO\tfreely\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n:\tO\t:\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nexpect\tO\texpect\tO\nthe\tO\tthe\tO\nyou\tO\tyou\tO\nprogram\tO\tprogram\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nbehave\tO\tbehave\tO\nbetter\tO\tbetter\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nworse\tO\tworse\tO\n.\tO\t.\tO\n\t\nUser\tO\tUser\tO\nmight\tO\tmight\tO\nsearch\tO\tsearch\tO\nwindows B-User_Interface_Element windows O\nthat\tO\tthat\tO\nare\tO\tare\tO\ndeep\tO\tdeep\tO\nbelow\tO\tbelow\tO\ncovered\tO\tcovered\tO\nunder\tO\tunder\tO\nother\tO\tother\tO\nwindows B-User_Interface_Element windows O\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthey\tO\tthey\tO\nwill\tO\twill\tO\nnever\tO\tnever\tO\nget\tO\tget\tO\nin\tO\tin\tO\nfront\tO\tfront\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\ngets\tO\tgets\tO\nactive\tO\tactive\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\ndescription\tO\tdescription\tO\nabout\tO\tabout\tO\nparent/child/owned\tO\tparent/child/owned\tO\nwindows B-User_Interface_Element windows O\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\ninternally\tO\tinternally\tO\nthe\tO\tthe\tO\nMFC B-Library MFC O\nsets\tO\tsets\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nwindow B-User_Interface_Element window O\nas\tO\tas\tO\nan\tO\tan\tO\nowner\tO\towner\tO\nif\tO\tif\tO\nno\tO\tno\tO\nparent\tO\tparent\tO\nis\tO\tis\tO\ngiven\tO\tgiven\tO\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nBOOL B-Code_Block BOOL B-Code_Block\nWnd I-Code_Block Wnd I-Code_Block\n:: I-Code_Block :: I-Code_Block\nCreateDlgIndirect(LPCDLGTEMPLATE I-Code_Block CreateDlgIndirect(LPCDLGTEMPLATE I-Code_Block\nlpDialogTemplate I-Code_Block lpDialogTemplate I-Code_Block\n, I-Code_Block , I-Code_Block\nCWnd I-Code_Block CWnd I-Code_Block\n* I-Code_Block * I-Code_Block\npParentWnd I-Code_Block pParentWnd I-Code_Block\n, I-Code_Block , I-Code_Block\nHINSTANCE I-Code_Block HINSTANCE I-Code_Block\nhInst I-Code_Block hInst I-Code_Block\n) I-Code_Block ) I-Code_Block\nallows\tO\tallows\tO\nto\tO\tto\tO\nleave\tO\tleave\tO\npParentWnd B-Variable pParentWnd O\nNULL B-Value NULL O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nwindow B-User_Interface_Element window O\nas\tO\tas\tO\nnormal\tO\tnormal\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nuse\tO\tuse\tO\nSetParent(NULL) B-Function SetParent(NULL) O\nafter\tO\tafter\tO\nit\tO\tit\tO\nwas\tO\twas\tO\ncreated\tO\tcreated\tO\n.\tO\t.\tO\n\t\nAgain\tO\tAgain\tO\nthe\tO\tthe\tO\nMFC B-Library MFC O\nASSERTs\tO\tASSERTs\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nSO\tO\tSO\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nAPI B-Library API O\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nhandle\tO\thandle\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndialog B-Class dialog O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7514788\tO\t7514788\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7514788/\tO\thttps://stackoverflow.com/questions/7514788/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nCheckBoxes B-Class CheckBoxes O\nwich\tO\twich\tO\nare\tO\tare\tO\nmade\tO\tmade\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\ntable B-Data_Structure table O\nnames\tO\tnames\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_594 I-Code_Block Q_594 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nnow\tO\tnow\tO\nlets\tO\tlets\tO\nsay\tO\tsay\tO\ni\tO\ti\tO\nget\tO\tget\tO\n10\tO\t10\tO\ncheckboxes B-Class checkboxes O\n(\tO\t(\tO\nwith\tO\twith\tO\ndifferent\tO\tdifferent\tO\nnames\tO\tnames\tO\nofc\tO\tofc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nhow\tO\thow\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\nknow\tO\tknow\tO\nwich\tO\twich\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nwas\tO\twas\tO\nchecked\tO\tchecked\tO\n?\tO\t?\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\nI\tO\tI\tO\ncheck\tO\tcheck\tO\nbox\tO\tbox\tO\nnr\tO\tnr\tO\n1.5.7 B-Value 1.5.7 O\nand\tO\tand\tO\nclick\tO\tclick\tO\non\tO\ton\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\n\" B-Value \" O\nPrint I-Value Print O\n\" I-Value \" O\nhow\tO\thow\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\nprint\tO\tprint\tO\nthem\tO\tthem\tO\nout\tO\tout\tO\n?\tO\t?\tO\n\t\nSystem.out.println B-Code_Block System.out.println B-Code_Block\n( I-Code_Block ( I-Code_Block\n\" I-Code_Block \" I-Code_Block\nChecked I-Code_Block Checked I-Code_Block\nitems I-Code_Block items I-Code_Block\n: I-Code_Block : I-Code_Block\n\" I-Code_Block \" I-Code_Block\n+check I-Code_Block +check I-Code_Block\n) I-Code_Block ) I-Code_Block\n; B-Code_Block ; B-Code_Block\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7514788\tO\t7514788\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7514788/\tO\thttps://stackoverflow.com/questions/7514788/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nstructure\tO\tstructure\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nMap B-Class Map O\nto\tO\tto\tO\nmap\tO\tmap\tO\nbetween\tO\tbetween\tO\nyour\tO\tyour\tO\ncheckboxes B-Class checkboxes O\nand\tO\tand\tO\nthe\tO\tthe\tO\ntables B-Data_Structure tables O\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nusually\tO\tusually\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nSWT B-Application SWT O\nand\tO\tand\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmap\tO\tmap\tO\nin\tO\tin\tO\neach\tO\teach\tO\nGUI\tO\tGUI\tO\ncomponent\tO\tcomponent\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nwhatever\tO\twhatever\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nawt B-Application awt O\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nmanually\tO\tmanually\tO\n..\tO\t..\tO\n.\tO\t.\tO\n(\tO\t(\tO\nI\tO\tI\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nawt B-Application awt O\n,\tO\t,\tO\nalthough\tO\talthough\tO\nCheckBox B-Class CheckBox O\nclass\tO\tclass\tO\nin\tO\tin\tO\nawt B-Application awt O\nis\tO\tis\tO\nactually\tO\tactually\tO\nCheckbox B-Class Checkbox O\nnot\tO\tnot\tO\nCheckBox B-Class CheckBox O\n!!\tO\t!!\tO\n!\tO\t!\tO\n)\tO\t)\tO\n\t\nBottom\tO\tBottom\tO\nline\tO\tline\tO\nis\tO\tis\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbind\tO\tbind\tO\nsome\tO\tsome\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nGUI\tO\tGUI\tO\ncomponents\tO\tcomponents\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nrecognize\tO\trecognize\tO\nthem\tO\tthem\tO\nlater\tO\tlater\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nmap B-Class map O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_870 I-Code_Block A_870 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nbuild\tO\tbuild\tO\nthem\tO\tthem\tO\nup\tO\tup\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nchecks\tO\tchecks\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7514788\tO\t7514788\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7514788/\tO\thttps://stackoverflow.com/questions/7514788/\tO\n\t\n\t\nUse\tO\tUse\tO\nCheckboxGroup B-Class CheckboxGroup B-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_867 I-Code_Block A_867 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nadd\tO\tadd\tO\na\tO\ta\tO\nCheckboxGroup B-Class CheckboxGroup B-Code_Block\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_868 I-Code_Block A_868 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nselected\tO\tselected\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_869 I-Code_Block A_869 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5122776\tO\t5122776\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5122776/\tO\thttps://stackoverflow.com/questions/5122776/\tO\n\t\n\t\nFor\tO\tFor\tO\nmy\tO\tmy\tO\nexperiment\tO\texperiment\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nspecific\tO\tspecific\tO\nsimilarity\tO\tsimilarity\tO\nmetrics\tO\tmetrics\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nfield\tO\tfield\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncollection\tO\tcollection\tO\ndocuments\tO\tdocuments\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmeasure\tO\tmeasure\tO\nthe\tO\tthe\tO\nDescription B-Variable Description O\nfield\tO\tfield\tO\nsimilarity\tO\tsimilarity\tO\nwith\tO\twith\tO\ntf.idf B-Algorithm tf.idf O\n,\tO\t,\tO\nand\tO\tand\tO\nGeolocation B-Variable Geolocation O\nfields\tO\tfields\tO\nwith\tO\twith\tO\nHarvesine B-Algorithm Harvesine O\ndistance. I-Algorithm distance. O\n.\tO\t.\tO\netc\tO\tetc\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnow\tO\tnow\tO\nstudying\tO\tstudying\tO\nthe\tO\tthe\tO\nSimilarity B-Class Similarity O\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\ngood\tO\tgood\tO\ntutorial\tO\ttutorial\tO\nor\tO\tor\tO\nexample\tO\texample\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nprocede\tO\tprocede\tO\nfaster\tO\tfaster\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5122776\tO\t5122776\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5122776/\tO\thttps://stackoverflow.com/questions/5122776/\tO\n\t\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nIIUC\tO\tIIUC\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsimilarity\tO\tsimilarity\tO\nformula\tO\tformula\tO\nper\tO\tper\tO\nfield\tO\tfield\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nper\tO\tper\tO\ndocument\tO\tdocument\tO\n,\tO\t,\tO\nrunning\tO\trunning\tO\nagainst\tO\tagainst\tO\nall\tO\tall\tO\nother\tO\tother\tO\ndocuments\tO\tdocuments\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nseveral\tO\tseveral\tO\noptions\tO\toptions\tO\n,\tO\t,\tO\nall\tO\tall\tO\nat\tO\tat\tO\nindexing\tO\tindexing\tO\ntime\tO\ttime\tO\n:\tO\t:\tO\n\t\nExtend\tO\tExtend\tO\nthe\tO\tthe\tO\nDefaultSimilarity B-Class DefaultSimilarity O\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nExtend\tO\tExtend\tO\nthe\tO\tthe\tO\nSimilarityDelegator B-Class SimilarityDelegator O\nclass\tO\tclass\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nboth\tO\tboth\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nmake\tO\tmake\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\npayloads\tO\tpayloads\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nterm-specific\tO\tterm-specific\tO\ninformation\tO\tinformation\tO\n(\tO\t(\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlat-long\tO\tlat-long\tO\ndata\tO\tdata\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nimplementing\tO\timplementing\tO\na\tO\ta\tO\nSimilarity B-Class Similarity O\nclass\tO\tclass\tO\nusing\tO\tusing\tO\none\tO\tone\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nSimilarity.setDefault(mySimilarity) B-Function Similarity.setDefault(mySimilarity) O\nto\tO\tto\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nSimilarity B-Class Similarity O\ninstance\tO\tinstance\tO\nfor\tO\tfor\tO\nindexing\tO\tindexing\tO\nand\tO\tand\tO\nsearching\tO\tsearching\tO\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nthen\tO\tthen\tO\nindex\tO\tindex\tO\nyour\tO\tyour\tO\ntext\tO\ttext\tO\ncorpus\tO\tcorpus\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsearch\tO\tsearch\tO\nlater\tO\tlater\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nprobably\tO\tprobably\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nextend\tO\textend\tO\nthe\tO\tthe\tO\nSearcher B-Class Searcher O\nclass\tO\tclass\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nraw\tO\traw\tO\nsimilarity\tO\tsimilarity\tO\n.\tO\t.\tO\n\t\nHaving\tO\tHaving\tO\nsaid\tO\tsaid\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nthis\tO\tthis\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\n-\tO\t-\tO\nLucene B-Library Lucene O\nis\tO\tis\tO\noptimized\tO\toptimized\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nsimilar\tO\tsimilar\tO\ndocuments\tO\tdocuments\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nscore\tO\tscore\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\none\tO\tone\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\npredict\tO\tpredict\tO\nthe\tO\tthe\tO\nruntime\tO\truntime\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nprohibitive\tO\tprohibitive\tO\n-\tO\t-\tO\nHope\tO\tHope\tO\nI\tO\tI\tO\nam\tO\tam\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnevertheless\tO\tnevertheless\tO\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nyou\tO\tyou\tO\nread\tO\tread\tO\nMining\tO\tMining\tO\nof\tO\tof\tO\nMassive\tO\tMassive\tO\nDatasets\tO\tDatasets\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\napproach\tO\tapproach\tO\n-\tO\t-\tO\nmin B-Algorithm min O\nhashes I-Algorithm hashes O\nand\tO\tand\tO\nshingling B-Algorithm shingling O\n.\tO\t.\tO\n\t\nGood\tO\tGood\tO\nluck\tO\tluck\tO\n.\tO\t.\tO\n\t\nPatrick B-User_Name Patrick O\n,\tO\t,\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nfirst\tO\tfirst\tO\nquote\tO\tquote\tO\nGrant B-User_Name Grant O\nIngersoll I-User_Name Ingersoll O\nabout\tO\tabout\tO\nmodifying\tO\tmodifying\tO\nthe\tO\tthe\tO\nSimilarity B-Class Similarity O\nclass\tO\tclass\tO\n:\tO\t:\tO\n\"\tO\t\"\tO\nHere\tO\tHere\tO\nbe\tO\tbe\tO\nDragons\tO\tDragons\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nCustomizing\tO\tCustomizing\tO\nLucene B-Class Lucene O\n's\tO\t's\tO\nSimilarity I-Class Similarity O\nclass\tO\tclass\tO\nis\tO\tis\tO\nhard\tO\thard\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nfun\tO\tfun\tO\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nabsolutely\tO\tabsolutely\tO\nhave\tO\thave\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsuggest\tO\tsuggest\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nfirst\tO\tfirst\tO\nread\tO\tread\tO\nGrant B-User_Name Grant O\n's\tO\t's\tO\nspatial\tO\tspatial\tO\nsearch\tO\tsearch\tO\npaper\tO\tpaper\tO\n,\tO\t,\tO\nhis\tO\this\tO\nfindability\tO\tfindability\tO\npaper\tO\tpaper\tO\nand\tO\tand\tO\nhis\tO\this\tO\n'\tO\t'\tO\ndebugging\tO\tdebugging\tO\nrelevance\tO\trelevance\tO\n'\tO\t'\tO\npaper\tO\tpaper\tO\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nshow\tO\tshow\tO\nother\tO\tother\tO\nways\tO\tways\tO\nto\tO\tto\tO\nget\tO\tget\tO\nhits\tO\thits\tO\nas\tO\tas\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47382219\tO\t47382219\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47382219/\tO\thttps://stackoverflow.com/questions/47382219/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n.svc B-File_Type .svc B-Code_Block\nwebservice\tO\twebservice\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nWebservice\tO\tWebservice\tO\ncertficiate\tO\tcertficiate\tO\nand\tO\tand\tO\nto\tO\tto\tO\nbrowse\tO\tbrowse\tO\nwith\tO\twith\tO\nHTTPS\tO\tHTTPS\tO\ninstead\tO\tinstead\tO\nHTTP\tO\tHTTP\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\ncertificate\tO\tcertificate\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nAnd\tO\tAnd\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nWS\tO\tWS\tO\nwithout\tO\twithout\tO\nHTTPS\tO\tHTTPS\tO\nits\tO\tits\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nhttp://localhost/myws.svc/\tO\thttp://localhost/myws.svc/\tO\n-\tO\t-\tO\nWorks\tO\tWorks\tO\n\t\nhttps://localhost/myws.svc/\tO\thttps://localhost/myws.svc/\tO\n-\tO\t-\tO\nError\tO\tError\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nsolve\tO\tsolve\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9748514\tO\t9748514\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9748514/\tO\thttps://stackoverflow.com/questions/9748514/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nadd-in\tO\tadd-in\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\narticle\tO\tarticle\tO\nbelow\tO\tbelow\tO\n\t\nhttp://blogs.microsoft.co.il/blogs/shair/archive/2008/07/28/how-to-create-sql-server-management-studio-addin.aspx\tO\thttp://blogs.microsoft.co.il/blogs/shair/archive/2008/07/28/how-to-create-sql-server-management-studio-addin.aspx\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\nis\tO\tis\tO\na\tO\ta\tO\nbit\tO\tbit\tO\noutdated\tO\toutdated\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nmanaged\tO\tmanaged\tO\nto\tO\tto\tO\nget\tO\tget\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nthis\tO\tthis\tO\narticle\tO\tarticle\tO\nagain\tO\tagain\tO\n\t\nhttp://jcooney.net/post/2007/11/26/The-Black-Art-of-Writing-a-SQL-Server-Management-Studio-2005-Add-In.aspx\tO\thttp://jcooney.net/post/2007/11/26/The-Black-Art-of-Writing-a-SQL-Server-Management-Studio-2005-Add-In.aspx\tO\n\t\nhere\tO\there\tO\nonce\tO\tonce\tO\ni\tO\ti\tO\nreached\tO\treached\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\npart\tO\tpart\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nexternal\tO\texternal\tO\nprogram\tO\tprogram\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nupon\tO\tupon\tO\ndebug\tO\tdebug\tO\ni\tO\ti\tO\nwas\tO\twas\tO\nmet\tO\tmet\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nnasty\tO\tnasty\tO\nerror\tO\terror\tO\n\t\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\ngood\tO\tgood\tO\narticle\tO\tarticle\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nadd-in\tO\tadd-in\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nVS2010 B-Application VS2010 O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nSMSS2008r2 B-Application SMSS2008r2 O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9748514\tO\t9748514\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9748514/\tO\thttps://stackoverflow.com/questions/9748514/\tO\n\t\n\t\nDo\tO\tDo\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nstarting\tO\tstarting\tO\nthe\tO\tthe\tO\ndebug\tO\tdebug\tO\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nSSMS B-Application SSMS O\nwithout\tO\twithout\tO\nany\tO\tany\tO\nparameters\tO\tparameters\tO\n-\tO\t-\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n\"\tO\t\"\tO\nbad\tO\tbad\tO\nnews\tO\tnews\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nalso\tO\talso\tO\ndeveloped\tO\tdeveloped\tO\nan\tO\tan\tO\nadd-in\tO\tadd-in\tO\nand\tO\tand\tO\nduring\tO\tduring\tO\ndevelopment\tO\tdevelopment\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nfaced\tO\tfaced\tO\nwas\tO\twas\tO\n:\tO\t:\tO\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndebug\tO\tdebug\tO\nSSMS2008 B-Application SSMS2008 O\nAdd-In\tO\tAdd-In\tO\nonly\tO\tonly\tO\nfrom\tO\tfrom\tO\nVS2008 B-Application VS2008 O\n(\tO\t(\tO\nfull\tO\tfull\tO\nor\tO\tor\tO\nexpress\tO\texpress\tO\n)\tO\t)\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndefbug\tO\tdefbug\tO\nSSMS2012 B-Application SSMS2012 O\nadd-in\tO\tadd-in\tO\nonly\tO\tonly\tO\nfrom\tO\tfrom\tO\nVS2010 B-Application VS2010 O\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n\"\tO\t\"\tO\ncross\tO\tcross\tO\n\"\tO\t\"\tO\nversions\tO\tversions\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nput\tO\tput\tO\na\tO\ta\tO\nmessage B-User_Interface_Element message O\nbox I-User_Interface_Element box O\nin\tO\tin\tO\nyour\tO\tyour\tO\nadd-in\tO\tadd-in\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nattach\tO\tattach\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nmy\tO\tmy\tO\nadd-in\tO\tadd-in\tO\n-\tO\t-\tO\nssmsboost B-Application ssmsboost O\n-\tO\t-\tO\nmaybe\tO\tmaybe\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\nown\tO\town\tO\n:)\tO\t:)\tO\nNew\tO\tNew\tO\nfeature\tO\tfeature\tO\nrequests\tO\trequests\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\ncheck\tO\tcheck\tO\nssms B-Application ssms O\ntools\tO\ttools\tO\npack\tO\tpack\tO\n-\tO\t-\tO\nit\tO\tit\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nvery\tO\tvery\tO\npopular\tO\tpopular\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14076772\tO\t14076772\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14076772/\tO\thttps://stackoverflow.com/questions/14076772/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nsome\tO\tsome\tO\nresearch\tO\tresearch\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nMemento B-Algorithm Memento O\nPattern I-Algorithm Pattern O\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngenerally\tO\tgenerally\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nbehavioural\tO\tbehavioural\tO\npatterns\tO\tpatterns\tO\nand\tO\tand\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nresearch\tO\tresearch\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ngetting\tO\tgetting\tO\npretty\tO\tpretty\tO\nconfused\tO\tconfused\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nthings\tO\tthings\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ngetting\tO\tgetting\tO\nconfused\tO\tconfused\tO\non\tO\ton\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndifferences\tO\tdifferences\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\nMemento B-Algorithm Memento O\nPattern I-Algorithm Pattern O\nand\tO\tand\tO\nSerialization\tO\tSerialization\tO\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ngather\tO\tgather\tO\nboth\tO\tboth\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nobjects\tO\tobjects\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nthem\tO\tthem\tO\nbrought\tO\tbrought\tO\nback\tO\tback\tO\nat\tO\tat\tO\na\tO\ta\tO\nlater\tO\tlater\tO\ndate\tO\tdate\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nbeen\tO\tbeen\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nclear\tO\tclear\tO\ncut\tO\tcut\tO\nanswer\tO\tanswer\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\ndifferences\tO\tdifferences\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\nare\tO\tare\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nmissed\tO\tmissed\tO\nsomething\tO\tsomething\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nresearch\tO\tresearch\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nanyone\tO\tanyone\tO\ncould\tO\tcould\tO\nshed\tO\tshed\tO\nsome\tO\tsome\tO\nlight\tO\tlight\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\ndifferences\tO\tdifferences\tO\nare\tO\tare\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14076772\tO\t14076772\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14076772/\tO\thttps://stackoverflow.com/questions/14076772/\tO\n\t\n\t\nTypically\tO\tTypically\tO\nthe\tO\tthe\tO\nMemento B-Algorithm Memento O\npattern I-Algorithm pattern O\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nroll-back/save\tO\troll-back/save\tO\npoint\tO\tpoint\tO\nsupport\tO\tsupport\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nI\tO\tI\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmark\tO\tmark\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nof\tO\tof\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nat\tO\tat\tO\na\tO\ta\tO\npoint\tO\tpoint\tO\nin\tO\tin\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nwork\tO\twork\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ndecide\tO\tdecide\tO\nto\tO\tto\tO\nrevert\tO\trevert\tO\nthat\tO\tthat\tO\nobject\tO\tobject\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npoint\tO\tpoint\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwas\tO\twas\tO\nmarked\tO\tmarked\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\na\tO\ta\tO\nMemento B-Algorithm Memento O\npattern I-Algorithm pattern O\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nserialisation\tO\tserialisation\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\ninvolve\tO\tinvolve\tO\nsaving\tO\tsaving\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nbyte[] B-Data_Structure byte[] O\nand\tO\tand\tO\nkeeping\tO\tkeeping\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\nor\tO\tor\tO\nwriting\tO\twriting\tO\nto\tO\tto\tO\ndisk B-Device disk O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nreverting\tO\treverting\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nrebuilt\tO\trebuilt\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nserialised\tO\tserialised\tO\ncopy\tO\tcopy\tO\n.\tO\t.\tO\n\t\nConversely\tO\tConversely\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\nMemento B-Algorithm Memento O\npattern I-Algorithm pattern O\nby\tO\tby\tO\ncloning\tO\tcloning\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\nand\tO\tand\tO\nkeeping\tO\tkeeping\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncopy\tO\tcopy\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncopying\tO\tcopying\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nback\tO\tback\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nneeds\tO\tneeds\tO\nreverting\tO\treverting\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmethod\tO\tmethod\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nserialisation\tO\tserialisation\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14076772\tO\t14076772\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14076772/\tO\thttps://stackoverflow.com/questions/14076772/\tO\n\t\n\t\nThe\tO\tThe\tO\nMemento B-Algorithm Memento O\npattern I-Algorithm pattern O\nis\tO\tis\tO\nan\tO\tan\tO\nOO B-Algorithm OO O\ndesign I-Algorithm design O\npattern I-Algorithm pattern O\nused\tO\tused\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nprevious\tO\tprevious\tO\nstates\tO\tstates\tO\nof\tO\tof\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nuseful\tO\tuseful\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\nUndo\tO\tUndo\tO\n\"\tO\t\"\tO\noperation\tO\toperation\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nSerialization\tO\tSerialization\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nof\tO\tof\tO\ntransforming\tO\ttransforming\tO\na\tO\ta\tO\ngraph B-Data_Structure graph O\nof\tO\tof\tO\nobjects\tO\tobjects\tO\nto\tO\tto\tO\na\tO\ta\tO\nbyte B-Data_Structure byte O\narray I-Data_Structure array O\n,\tO\t,\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\non\tO\ton\tO\ndisk B-Device disk O\n,\tO\t,\tO\nor\tO\tor\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nJVM B-Application JVM O\nover\tO\tover\tO\nthe\tO\tthe\tO\nnetwork\tO\tnetwork\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nmuch\tO\tmuch\tO\nin\tO\tin\tO\ncommon\tO\tcommon\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36603056\tO\t36603056\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36603056/\tO\thttps://stackoverflow.com/questions/36603056/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndifferent\tO\tdifferent\tO\n<select> B-HTML_XML_Tag <select> B-Code_Block\nin\tO\tin\tO\na\tO\ta\tO\nng-repeat B-HTML_XML_Tag ng-repeat O\ndiv I-HTML_XML_Tag div O\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nis\tO\tis\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nusers\tO\tusers\tO\nselect\tO\tselect\tO\nseveral\tO\tseveral\tO\ntimes\tO\ttimes\tO\na\tO\ta\tO\nsame\tO\tsame\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\nfilter\tO\tfilter\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4503 I-Code_Block Q_4503 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nfilter\tO\tfilter\tO\nworks\tO\tworks\tO\nlike\tO\tlike\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n(\tO\t(\tO\nI\tO\tI\tO\ntested\tO\ttested\tO\nit\tO\tit\tO\nseparately\tO\tseparately\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nfilter\tO\tfilter\tO\nis\tO\tis\tO\nactive\tO\tactive\tO\n,\tO\t,\tO\noptions\tO\toptions\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\nselect\tO\tselect\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nonly\tO\tonly\tO\n\"\tO\t\"\tO\nfree\tO\tfree\tO\n\"\tO\t\"\tO\nattributes\tO\tattributes\tO\n(\tO\t(\tO\nit\tO\tit\tO\nmeans\tO\tmeans\tO\n,\tO\t,\tO\nattributes\tO\tattributes\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nyet\tO\tyet\tO\nselected\tO\tselected\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nDemo\tO\tDemo\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nexplicit\tO\texplicit\tO\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16350473\tO\t16350473\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16350473/\tO\thttps://stackoverflow.com/questions/16350473/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nstd::condition_variable B-Class std::condition_variable B-Code_Block\nis\tO\tis\tO\nvery\tO\tvery\tO\ndifficult\tO\tdifficult\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nspurious\tO\tspurious\tO\nwakeups\tO\twakeups\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nsometimes\tO\tsometimes\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nflags\tO\tflags\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1633 I-Code_Block Q_1633 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nset\tO\tset\tO\nis_ready B-Variable is_ready B-Code_Block\nto\tO\tto\tO\ntrue\tO\ttrue\tB-Code_Block\nbefore\tO\tbefore\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nnotify B-Function notify O\n(\tO\t(\tO\nnotify_one() B-Function notify_one() B-Code_Block\nor\tO\tor\tO\nnotify_all()) B-Function notify_all()) B-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nwait\tO\twait\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1634 I-Code_Block Q_1634 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nreason\tO\treason\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n(\tO\t(\tO\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nOk\tO\tOk\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nreally\tO\treally\tO\na\tO\ta\tO\nbad\tO\tbad\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1635 I-Code_Block Q_1635 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nif\tO\tif\tO\ncondition_variable B-Class condition_variable B-Code_Block\nhad\tO\thad\tO\nchosen\tO\tchosen\tO\na\tO\ta\tO\nwaiting\tO\twaiting\tO\nduration\tO\tduration\tO\n(\tO\t(\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhether\tO\twhether\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\ntrue\tO\ttrue\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nprefer\tO\tprefer\tO\nchoose\tO\tchoose\tO\nit\tO\tit\tO\nmyself\tO\tmyself\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16350473\tO\t16350473\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16350473/\tO\thttps://stackoverflow.com/questions/16350473/\tO\n\t\n\t\nThe\tO\tThe\tO\npurpose\tO\tpurpose\tO\nof\tO\tof\tO\nstd::condition_variable B-Class std::condition_variable B-Code_Block\nis\tO\tis\tO\nto\tO\tto\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\ncondition\tO\tcondition\tO\nto\tO\tto\tO\nbecome\tO\tbecome\tO\ntrue B-Value true O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndesigned\tO\tdesigned\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\njust\tO\tjust\tO\na\tO\ta\tO\nreceiver\tO\treceiver\tO\nof\tO\tof\tO\na\tO\ta\tO\nnotify B-Function notify O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nconsumer\tO\tconsumer\tO\nthread\tO\tthread\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nqueue B-Data_Structure queue O\nto\tO\tto\tO\nbecome\tO\tbecome\tO\nnon-empty\tO\tnon-empty\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2114 I-Code_Block A_2114 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nconsumer\tO\tconsumer\tO\n(\tO\t(\tO\nget_from_queue B-Function get_from_queue B-Code_Block\n)\tO\t)\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncondition B-Class condition O\nvariable I-Class variable O\n,\tO\t,\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nwaiting\tO\twaiting\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncondition\tO\tcondition\tO\nthe_queue.empty() B-Function the_queue.empty() B-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncondition B-Class condition O\nvariable I-Class variable O\ngives\tO\tgives\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nsleep\tO\tsleep\tO\nwhile\tO\twhile\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nwaiting\tO\twaiting\tO\n,\tO\t,\tO\nsimultaneously\tO\tsimultaneously\tO\nreleasing\tO\treleasing\tO\nthe\tO\tthe\tO\nmutex B-Class mutex O\nand\tO\tand\tO\ndoing\tO\tdoing\tO\nso\tO\tso\tO\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\navoids\tO\tavoids\tO\nrace\tO\trace\tO\nconditions\tO\tconditions\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nmiss\tO\tmiss\tO\nwake\tO\twake\tO\nups\tO\tups\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncondition\tO\tcondition\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nwaiting\tO\twaiting\tO\non\tO\ton\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nprotected\tO\tprotected\tO\nby\tO\tby\tO\na\tO\ta\tO\nmutex B-Class mutex O\n(\tO\t(\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nyou\tO\tyou\tO\nrelease\tO\trelease\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nwait\tO\twait\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncondition B-Class condition O\nvariable I-Class variable O\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncondition\tO\tcondition\tO\nrarely\tO\trarely\tO\n(\tO\t(\tO\nif\tO\tif\tO\never\tO\tever\tO\n)\tO\t)\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\natomic B-Data_Type atomic B-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nalways\tO\talways\tO\naccessing\tO\taccessing\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nmutex B-Class mutex O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16350473\tO\t16350473\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16350473/\tO\thttps://stackoverflow.com/questions/16350473/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncode\tO\tcode\tO\nthis\tO\tthis\tO\neither\tO\teither\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nUsing\tO\tUsing\tO\natomics B-Data_Type atomics O\nand\tO\tand\tO\na\tO\ta\tO\npolling\tO\tpolling\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\na\tO\ta\tO\ncondition_variable B-Class condition_variable B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncoded\tO\tcoded\tO\nit\tO\tit\tO\nboth\tO\tboth\tO\nways\tO\tways\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nmy\tO\tmy\tO\nsystem\tO\tsystem\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nmonitor\tO\tmonitor\tO\nin\tO\tin\tO\nreal\tO\treal\tO\ntime\tO\ttime\tO\nhow\tO\thow\tO\nmuch\tO\tmuch\tO\ncpu B-Device cpu O\nany\tO\tany\tO\ngiven\tO\tgiven\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npolling\tO\tpolling\tO\nloop\tO\tloop\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2115 I-Code_Block A_2115 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFor\tO\tFor\tO\nme\tO\tme\tO\nthis\tO\tthis\tO\ntakes\tO\ttakes\tO\n30\tO\t30\tO\nseconds\tO\tseconds\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nexecuting\tO\texecuting\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ntakes\tO\ttakes\tO\nabout\tO\tabout\tO\n99.6\tO\t99.6\tO\n%\tO\t%\tO\nof\tO\tof\tO\na\tO\ta\tO\ncpu B-Device cpu O\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncondition_variable B-Class condition_variable B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2116 I-Code_Block A_2116 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nsame\tO\tsame\tO\nbehavior\tO\tbehavior\tO\nexcept\tO\texcept\tO\nthat\tO\tthat\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\n30\tO\t30\tO\nsecond\tO\tsecond\tO\nexecution\tO\texecution\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\ntaking\tO\ttaking\tO\n0.0\tO\t0.0\tO\n%\tO\t%\tO\ncpu B-Device cpu O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nwriting\tO\twriting\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nexecute\tO\texecute\tO\non\tO\ton\tO\na\tO\ta\tO\nbattery B-Device battery O\npowered\tO\tpowered\tO\ndevice\tO\tdevice\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlatter\tO\tlatter\tO\nis\tO\tis\tO\nnearly\tO\tnearly\tO\ninfinitely\tO\tinfinitely\tO\neasier\tO\teasier\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbattery B-Device battery O\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nadmittedly\tO\tadmittedly\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhad\tO\thad\tO\na\tO\ta\tO\nvery\tO\tvery\tO\npoor\tO\tpoor\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nstd::condition_variable B-Class std::condition_variable B-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\ncould\tO\tcould\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ninefficiency\tO\tinefficiency\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\npolling\tO\tpolling\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nin\tO\tin\tO\npractice\tO\tpractice\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nvendor\tO\tvendor\tO\nought\tO\tought\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nout\tO\tout\tO\nof\tO\tof\tO\nbusiness\tO\tbusiness\tO\nfairly\tO\tfairly\tO\nquickly\tO\tquickly\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n\t\nFor\tO\tFor\tO\ngrins\tO\tgrins\tO\nI\tO\tI\tO\naugmented\tO\taugmented\tO\nmy\tO\tmy\tO\ncondition_variable B-Class condition_variable O\nwait\tO\twait\tO\nloop\tO\tloop\tO\nwith\tO\twith\tO\na\tO\ta\tO\nspurious\tO\tspurious\tO\nwakeup\tO\twakeup\tO\ndetector\tO\tdetector\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nran\tO\tran\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\none\tO\tone\tO\nspurious\tO\tspurious\tO\nwakeup\tO\twakeup\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nnot\tO\tnot\tO\nguaranteed\tO\tguaranteed\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\ndemonstrate\tO\tdemonstrate\tO\nwhat\tO\twhat\tO\na\tO\ta\tO\nquality\tO\tquality\tO\nimplementation\tO\timplementation\tO\ncan\tO\tcan\tO\nachieve\tO\tachieve\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32816393\tO\t32816393\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32816393/\tO\thttps://stackoverflow.com/questions/32816393/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n5000\tO\t5000\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nDB\tO\tDB\tO\ntable B-Data_Structure table O\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\napply\tO\tapply\tO\njQuery B-Library jQuery O\nAutosuggestion\tO\tAutosuggestion\tO\nFilter\tO\tFilter\tO\non\tO\ton\tO\nfrontend\tO\tfrontend\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nrequirement\tO\trequirement\tO\nimplemented\tO\timplemented\tO\njs B-Language js O\n&\tO\t&\tO\nCSS B-Language CSS O\n\t\nselect2.css B-File_Name select2.css O\nand\tO\tand\tO\nselect2.js B-File_Name select2.js O\nwith\tO\twith\tO\njquery-2.1.1.js B-File_Name jquery-2.1.1.js O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nunfortunately\tO\tunfortunately\tO\nafter\tO\tafter\tO\nimplementing\tO\timplementing\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nAutosuggestion B-User_Interface_Element Autosuggestion O\nFilter I-User_Interface_Element Filter O\nfrom\tO\tfrom\tO\nfront-end\tO\tfront-end\tO\n,\tO\t,\tO\nhere\tO\there\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\ndelay\tO\tdelay\tO\nis\tO\tis\tO\nmore\tO\tmore\tO\nso\tO\tso\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nsuggest\tO\tsuggest\tO\nme\tO\tme\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nload\tO\tload\tO\nvery\tO\tvery\tO\nfast\tO\tfast\tO\nand\tO\tand\tO\nno\tO\tno\tO\ndelay\tO\tdelay\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32816393\tO\t32816393\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32816393/\tO\thttps://stackoverflow.com/questions/32816393/\tO\n\t\n\t\nAre\tO\tAre\tO\nyou\tO\tyou\tO\nlimiting\tO\tlimiting\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nrecords\tO\trecords\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfront-end\tO\tfront-end\tO\n?\tO\t?\tO\n\t\nQuery\tO\tQuery\tO\nyour\tO\tyour\tO\ndatabase\tO\tdatabase\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\n10\tO\t10\tO\nrecords\tO\trecords\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nonly\tO\tonly\tO\nthese\tO\tthese\tO\nrecords\tO\trecords\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nFront-End\tO\tFront-End\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32816393\tO\t32816393\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32816393/\tO\thttps://stackoverflow.com/questions/32816393/\tO\n\t\n\t\nBreak\tO\tBreak\tO\ndown\tO\tdown\tO\nyour\tO\tyour\tO\nresult\tO\tresult\tO\nfrom\tO\tfrom\tO\nDB\tO\tDB\tO\nin\tO\tin\tO\nto\tO\tto\tO\nseparate\tO\tseparate\tO\nlists B-Data_Structure lists O\nlike\tO\tlike\tO\ni\tO\ti\tO\nwill\tO\twill\tO\nsay\tO\tsay\tO\nin\tO\tin\tO\nalphabetical\tO\talphabetical\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\n5000\tO\t5000\tO\nrecord\tO\trecord\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\ncorresponding\tO\tcorresponding\tO\nrequest\tO\trequest\tO\nthen\tO\tthen\tO\ncache\tO\tcache\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nnow\tO\tnow\tO\nchallenge\tO\tchallenge\tO\nis\tO\tis\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\nstring B-Data_Type string O\nand\tO\tand\tO\nfetch\tO\tfetch\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6493198\tO\t6493198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6493198/\tO\thttps://stackoverflow.com/questions/6493198/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nreally\tO\treally\tO\nbad\tO\tbad\tO\nwith\tO\twith\tO\nhtml/css B-Language html/css O\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nfiddle B-Application fiddle O\nof\tO\tof\tO\nthis\tO\tthis\tO\ntable B-User_Interface_Element table O\nfiddle B-Application fiddle O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntd B-HTML_XML_Tag td O\nrows B-User_Interface_Element rows O\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwidth B-Variable width O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncolumn B-User_Interface_Element column O\non\tO\ton\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\n200 B-Value 200 O\npx I-Value px O\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncolumn B-User_Interface_Element column O\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\n50 B-Value 50 O\npx I-Value px O\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nrows B-User_Interface_Element rows O\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_482 I-Code_Block Q_482 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCSS B-Language CSS O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_483 I-Code_Block Q_483 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6493198\tO\t6493198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6493198/\tO\thttps://stackoverflow.com/questions/6493198/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nwriting\tO\twriting\tO\nan\tO\tan\tO\ninline\tO\tinline\tO\nstyle B-HTML_XML_Tag style O\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nHTML B-Language HTML O\nmarkup\tO\tmarkup\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_728 I-Code_Block A_728 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6493198\tO\t6493198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6493198/\tO\thttps://stackoverflow.com/questions/6493198/\tO\n\t\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\non\tO\ton\tO\nevery\tO\tevery\tO\n<td>, B-HTML_XML_Tag <td>, B-Code_Block\njust\tO\tjust\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n<th> B-HTML_XML_Tag <th> B-Code_Block\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nanswers\tO\tanswers\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nclass\tO\tclass\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n<th> B-HTML_XML_Tag <th> B-Code_Block\nand\tO\tand\tO\napply\tO\tapply\tO\nthe\tO\tthe\tO\nwidth B-Variable width O\nstyles\tO\tstyles\tO\nthat\tO\tthat\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_729 I-Code_Block A_729 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nCSS B-Language CSS O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_730 I-Code_Block A_730 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nJust\tO\tJust\tO\nmy\tO\tmy\tO\nstyle\tO\tstyle\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nfan\tO\tfan\tO\nof\tO\tof\tO\ninline\tO\tinline\tO\nstyles\tO\tstyles\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsimple\tO\tsimple\tO\nfact\tO\tfact\tO\nyou\tO\tyou\tO\nMAY\tO\tMAY\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstyle\tO\tstyle\tO\nthe\tO\tthe\tO\nheaders\tO\theaders\tO\ndifferently\tO\tdifferently\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\ninline\tO\tinline\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37291839\tO\t37291839\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37291839/\tO\thttps://stackoverflow.com/questions/37291839/\tO\n\t\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\nlaravel B-Library laravel O\nsession\tO\tsession\tO\nvariable\tO\tvariable\tO\nsent\tO\tsent\tO\nby\tO\tby\tO\ncontroller\tO\tcontroller\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\ncontroller\tO\tcontroller\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4666 I-Code_Block Q_4666 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nshowing\tO\tshowing\tO\nthis\tO\tthis\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nview\tO\tview\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4667 I-Code_Block Q_4667 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\nthis\tO\tthis\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\ntables B-User_Interface_Element tables O\n)\tO\t)\tO\nevery\tO\tevery\tO\n2\tO\t2\tO\nseconds\tO\tseconds\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39087401\tO\t39087401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39087401/\tO\thttps://stackoverflow.com/questions/39087401/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nwritten\tO\twritten\tO\na\tO\ta\tO\nC# B-Language C# O\npowershell B-Application powershell O\ncmdlet\tO\tcmdlet\tO\nthat\tO\tthat\tO\nfills\tO\tfills\tO\nup\tO\tup\tO\ncustom\tO\tcustom\tO\nobjects\tO\tobjects\tO\nfrom\tO\tfrom\tO\njson B-File_Type json O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\nother\tO\tother\tO\nC# B-Language C# O\ncmdlets\tO\tcmdlets\tO\nthat\tO\tthat\tO\nfollow\tO\tfollow\tO\n\t\nThanks\tO\tThanks\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6465189\tO\t6465189\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6465189/\tO\thttps://stackoverflow.com/questions/6465189/\tO\n\t\n\t\nCan\tO\tCan\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\nblocked\tO\tblocked\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nadblock\tO\tadblock\tO\nlike\tO\tlike\tO\nAdblock B-Application Adblock O\nPlus I-Application Plus O\nor\tO\tor\tO\nothers\tO\tothers\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6465189\tO\t6465189\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6465189/\tO\thttps://stackoverflow.com/questions/6465189/\tO\n\t\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nblocked\tO\tblocked\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\nas\tO\tas\tO\na\tO\ta\tO\nbanner\tO\tbanner\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nURL\tO\tURL\tO\nmatches\tO\tmatches\tO\nthe\tO\tthe\tO\nblack\tO\tblack\tO\nlist\tO\tlist\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nhttp://domain.com/ads/ B-Code_Block http://domain.com/ads/ B-Code_Block\n... I-Code_Block ... I-Code_Block\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nAdBlock B-Application AdBlock O\nallows\tO\tallows\tO\nto\tO\tto\tO\nblock\tO\tblock\tO\nFlash B-Application Flash O\nembeds\tO\tembeds\tO\nfrom\tO\tfrom\tO\nroll-over\tO\troll-over\tO\nmenu B-User_Interface_Element menu O\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nbrowsers B-Application browsers O\n,\tO\t,\tO\nexpecially\tO\texpecially\tO\nmobile B-Device mobile O\nones\tO\tones\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\ndisable\tO\tdisable\tO\nall\tO\tall\tO\nFlash B-Application Flash O\nembeds\tO\tembeds\tO\nuntil\tO\tuntil\tO\nuser\tO\tuser\tO\nmanually\tO\tmanually\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\nparticular\tO\tparticular\tO\nembed\tO\tembed\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\nand\tO\tand\tO\nstart\tO\tstart\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25436038\tO\t25436038\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25436038/\tO\thttps://stackoverflow.com/questions/25436038/\tO\n\t\n\t\nMicrosoft B-Website Microsoft O\nannounced\tO\tannounced\tO\nthe\tO\tthe\tO\navailability\tO\tavailability\tO\nof\tO\tof\tO\nAzure B-Application Azure O\nDocumentDB I-Application DocumentDB O\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2889 I-Code_Block Q_2889 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nreally\tO\treally\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\ntransactional\tO\ttransactional\tO\nexecution\tO\texecution\tO\nof\tO\tof\tO\nJavaScript B-Language JavaScript O\nlogic\tO\tlogic\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nSounds\tO\tSounds\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\napproach\tO\tapproach\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nof\tO\tof\tO\nPostgreSQL B-Application PostgreSQL O\nNoSQL I-Application NoSQL O\n.\tO\t.\tO\n\t\nAnyone\tO\tAnyone\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ntechnological\tO\ttechnological\tO\nbasis\tO\tbasis\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nAzure B-Application Azure O\nDocumentDB I-Application DocumentDB O\nservice\tO\tservice\tO\n?\tO\t?\tO\n\t\nSQL B-Language SQL O\nServer B-Application Server O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25436038\tO\t25436038\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25436038/\tO\thttps://stackoverflow.com/questions/25436038/\tO\n\t\n\t\nDocumentDB B-Application DocumentDB O\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nbuilt\tO\tbuilt\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nground\tO\tground\tO\nup\tO\tup\tO\nas\tO\tas\tO\nan\tO\tan\tO\nentirely\tO\tentirely\tO\nnew\tO\tnew\tO\ndatabase\tO\tdatabase\tO\nspecifically\tO\tspecifically\tO\ndesigned\tO\tdesigned\tO\nfor\tO\tfor\tO\nJSON B-File_Type JSON O\nand\tO\tand\tO\none\tO\tone\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\ndeep\tO\tdeep\tO\nintegration\tO\tintegration\tO\nwith\tO\twith\tO\nJavaScript B-Language JavaScript O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nshare\tO\tshare\tO\nanything\tO\tanything\tO\nwith\tO\twith\tO\nSQL B-Language SQL O\nServer B-Application Server O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36272581\tO\t36272581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36272581/\tO\thttps://stackoverflow.com/questions/36272581/\tO\n\t\n\t\nUsing\tO\tUsing\tO\na\tO\ta\tO\nKnockBack B-Class KnockBack O\nViewModel I-Class ViewModel O\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncomputed\tO\tcomputed\tO\nobservable\tO\tobservable\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nunderlying\tO\tunderlying\tO\nBackbone B-Library Backbone O\nmodel\tO\tmodel\tO\n's\tO\t's\tO\nmethods\tO\tmethods\tO\n?\tO\t?\tO\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nin\tO\tin\tO\njavascript B-Language javascript O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4461 I-Code_Block Q_4461 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nKnockout B-Library Knockout O\nmarkup\tO\tmarkup\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4462 I-Code_Block Q_4462 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4463 I-Code_Block Q_4463 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nor\tO\tor\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nobservable\tO\tobservable\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nViewModel B-Class ViewModel O\nmanually\tO\tmanually\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4464 I-Code_Block Q_4464 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\njsfiddles B-Application jsfiddles O\n:\tO\t:\tO\nwithout\tO\twithout\tO\nobservable\tO\tobservable\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nobservable\tO\tobservable\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36272581\tO\t36272581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36272581/\tO\thttps://stackoverflow.com/questions/36272581/\tO\n\t\n\t\nA\tO\tA\tO\nlittle\tO\tlittle\tO\npreamble\tO\tpreamble\tO\n:\tO\t:\tO\nKnockback B-Library Knockback O\nputs\tO\tputs\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nin\tO\tin\tO\nMVVM B-Algorithm MVVM O\n,\tO\t,\tO\nwhere\tO\twhere\tO\nKnockout B-Library Knockout O\nis\tO\tis\tO\nreally\tO\treally\tO\njust\tO\tjust\tO\nVVM B-Algorithm VVM O\n.\tO\t.\tO\n\t\nKnockback B-Library Knockback O\nalso\tO\talso\tO\ngives\tO\tgives\tO\nyou\tO\tyou\tO\nsome\tO\tsome\tO\nautomatic\tO\tautomatic\tO\nsynchronization\tO\tsynchronization\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnice\tO\tnice\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nyou\tO\tyou\tO\nstill\tO\tstill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nviewmodel B-Class viewmodel O\nare\tO\tare\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\npieces\tO\tpieces\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nviewmodel B-Class viewmodel O\nis\tO\tis\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\na\tO\ta\tO\nKnockout B-Library Knockout O\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nBootstrap B-Library Bootstrap O\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nput\tO\tput\tO\nviewmodel B-Class viewmodel O\npieces\tO\tpieces\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\nwhether\tO\twhether\tO\nvalidation\tO\tvalidation\tO\nis\tO\tis\tO\na\tO\ta\tO\nviewmodel B-Class viewmodel O\nbehavior\tO\tbehavior\tO\nor\tO\tor\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nsay\tO\tsay\tO\nviewmodel B-Class viewmodel O\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nremove\tO\tremove\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\nand\tO\tand\tO\ndefine\tO\tdefine\tO\na\tO\ta\tO\ncomputed\tO\tcomputed\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmodel\tO\tmodel\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nevent\tO\tevent\tO\nhandler\tO\thandler\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\non\tO\ton\tO\nchange\tO\tchange\tO\n.\tO\t.\tO\n\t\nKnockback B-Library Knockback O\nwill\tO\twill\tO\ndutifully\tO\tdutifully\tO\ncopy\tO\tcopy\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nviewmodel B-Class viewmodel O\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5182 I-Code_Block Q_5182 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5183 I-Code_Block Q_5183 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5184 I-Code_Block Q_5184 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44939317\tO\t44939317\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44939317/\tO\thttps://stackoverflow.com/questions/44939317/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nTCP\tO\tTCP\tO\nKeep\tO\tKeep\tO\nAlive\tO\tAlive\tO\nconnection\tO\tconnection\tO\noptions\tO\toptions\tO\non\tO\ton\tO\npsql.exe B-File_Name psql.exe O\nrunning\tO\trunning\tO\non\tO\ton\tO\nWindows B-Operating_System Windows O\nconnecting\tO\tconnecting\tO\nto\tO\tto\tO\nAWS B-Application AWS O\nRedshift I-Application Redshift O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nset B-Code_Block set O\nPGOPTIONS='-c I-Code_Block PGOPTIONS='-c O\ntcp_keepalives_idle I-Code_Block tcp_keepalives_idle O\n= I-Code_Block = O\n30 I-Code_Block 30 O\n-c I-Code_Block -c O\ntcp_keepalives_interval I-Code_Block tcp_keepalives_interval O\n= I-Code_Block = O\n1 I-Code_Block 1 O\n-c I-Code_Block -c O\ntcp_keepalives_count=10 I-Code_Block tcp_keepalives_count=10 O\n' B-Code_Block ' O\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nerrors\tO\terrors\tO\nfrom\tO\tfrom\tO\nRedshift B-Application Redshift O\n-\tO\t-\tO\nunknown B-Error_Name unknown O\nparameters I-Error_Name parameters O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nWindows B-Application Windows O\nRegistry I-Application Registry O\nEditor I-Application Editor O\nto\tO\tto\tO\nchange\tO\tchange\tO\nTCP\tO\tTCP\tO\nKeep\tO\tKeep\tO\nAlive\tO\tAlive\tO\nparameters\tO\tparameters\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nreboot\tO\treboot\tO\n,\tO\t,\tO\nno\tO\tno\tO\neffect\tO\teffect\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nvia\tO\tvia\tO\npsql B-Library psql O\nany\tO\tany\tO\nmoderately\tO\tmoderately\tO\nlong\tO\tlong\tO\nSQL B-Language SQL O\nstatement\tO\tstatement\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nVacuum B-Function Vacuum O\n,\tO\t,\tO\nCopy B-Function Copy O\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nvia\tO\tvia\tO\nJDBC B-Library JDBC O\n,\tO\t,\tO\nODBC B-Library ODBC O\nand\tO\tand\tO\nNpgSQL B-Library NpgSQL O\nbut\tO\tbut\tO\nI\tO\tI\tO\nprefer\tO\tprefer\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsubmit\tO\tsubmit\tO\na\tO\ta\tO\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nRedshift B-Application Redshift O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\npsql.exe B-File_Name psql.exe O\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\noption\tO\toption\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nworks\tO\tworks\tO\non\tO\ton\tO\nshort\tO\tshort\tO\nqueries\tO\tqueries\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38051757\tO\t38051757\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38051757/\tO\thttps://stackoverflow.com/questions/38051757/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\non\tO\ton\tO\nDraft-JS B-Library Draft-JS O\nand\tO\tand\tO\nable\tO\table\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ndecent\tO\tdecent\tO\nenough\tO\tenough\tO\ntext B-Application text O\neditor I-Application editor O\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nconsumption\tO\tconsumption\tO\n,\tO\t,\tO\nBut\tO\tBut\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nUL B-HTML_XML_Tag UL O\nlist B-Data_Structure list O\nwith\tO\twith\tO\nLI B-HTML_XML_Tag LI O\nitems\tO\titems\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nTextarea B-HTML_XML_Tag Textarea O\nby\tO\tby\tO\ncoding\tO\tcoding\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nImport\tO\tImport\tO\nHTML B-Language HTML O\nand\tO\tand\tO\nthen\tO\tthen\tO\nadding\tO\tadding\tO\nmy\tO\tmy\tO\nHTML B-Language HTML O\ninto\tO\tinto\tO\nit\tO\tit\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nExporting\tO\tExporting\tO\nit\tO\tit\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\neditor B-Variable editor O\nstate I-Variable state O\n,\tO\t,\tO\nBut\tO\tBut\tO\nUndo\tO\tUndo\tO\nand\tO\tand\tO\nRedo\tO\tRedo\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmay\tO\tmay\tO\nsound\tO\tsound\tO\nstrange\tO\tstrange\tO\nbut\tO\tbut\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nhighly\tO\thighly\tO\nappreciated\tO\tappreciated\tO\nas\tO\tas\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\ngood\tO\tgood\tO\nresources\tO\tresources\tO\nof\tO\tof\tO\nDraft-JS B-Library Draft-JS O\n\t\nMy\tO\tMy\tO\nCode\tO\tCode\tO\nfor\tO\tfor\tO\nadding\tO\tadding\tO\nhtml B-Language html O\nwhich\tO\twhich\tO\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nusing\tO\tusing\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4793 I-Code_Block Q_4793 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntaking\tO\ttaking\tO\nhtml B-Language html O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\neditor B-Variable editor O\nstate I-Variable state O\nand\tO\tand\tO\nthen\tO\tthen\tO\nappend\tO\tappend\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\nhtml B-Language html O\nstring B-Data_Type string O\nand\tO\tand\tO\nregenerate\tO\tregenerate\tO\nthe\tO\tthe\tO\ncontent B-Variable content O\nstate I-Variable state O\nfrom\tO\tfrom\tO\nhtml B-Language html O\nand\tO\tand\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\neditor B-Variable editor O\nstate I-Variable state O\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nYou.\tO\tYou.\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44970574\tO\t44970574\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44970574/\tO\thttps://stackoverflow.com/questions/44970574/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbelow\tO\tbelow\tO\nquery\tO\tquery\tO\nin\tO\tin\tO\nmysql B-Application mysql O\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nbranch B-Variable branch O\nid I-Variable id O\nand\tO\tand\tO\nyear B-Variable year O\nof\tO\tof\tO\nfinance B-Variable finance O\ntype I-Variable type O\nfrom\tO\tfrom\tO\nbranch_master B-Variable branch_master O\nare\tO\tare\tO\nequal\tO\tequal\tO\nwith\tO\twith\tO\nbranch B-Variable branch O\nid I-Variable id O\nand\tO\tand\tO\nyear B-Variable year O\nof\tO\tof\tO\nmanager B-Variable manager O\nthen\tO\tthen\tO\nupdate\tO\tupdate\tO\nstatus B-Variable status O\nin\tO\tin\tO\nmanager B-Variable manager O\ntable B-Data_Structure table O\nagainst\tO\tagainst\tO\nbranch B-Variable branch O\nid I-Variable id O\nin\tO\tin\tO\nmanager B-Variable manager O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5857 I-Code_Block Q_5857 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nbut\tO\tbut\tO\ngetting\tO\tgetting\tO\nerror\tO\terror\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44970574\tO\t44970574\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44970574/\tO\thttps://stackoverflow.com/questions/44970574/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\ntypical\tO\ttypical\tO\nMySQL B-Application MySQL O\nthing\tO\tthing\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nusually\tO\tusually\tO\nbe\tO\tbe\tO\ncircumvented\tO\tcircumvented\tO\nby\tO\tby\tO\nselecting\tO\tselecting\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ntable B-Data_Structure table O\nderived\tO\tderived\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6525 I-Code_Block A_6525 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nuse\tO\tuse\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6526 I-Code_Block A_6526 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ncomplete\tO\tcomplete\tO\nstatement\tO\tstatement\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6527 I-Code_Block A_6527 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44970574\tO\t44970574\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44970574/\tO\thttps://stackoverflow.com/questions/44970574/\tO\n\t\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nEXISTS B-Code_Block EXISTS B-Code_Block\noperator\tO\toperator\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6524 I-Code_Block A_6524 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nquery\tO\tquery\tO\nuses\tO\tuses\tO\nan\tO\tan\tO\nadditional\tO\tadditional\tO\nnesting\tO\tnesting\tO\nlevel\tO\tlevel\tO\n,\tO\t,\tO\nas\tO\tas\tO\nproposed\tO\tproposed\tO\nby\tO\tby\tO\n@Thorsten B-User_Name @Thorsten O\n,\tO\t,\tO\nas\tO\tas\tO\na\tO\ta\tO\nmeans\tO\tmeans\tO\nto\tO\tto\tO\ncircumvent\tO\tcircumvent\tO\nthe\tO\tthe\tO\nTable B-Data_Structure Table O\nis\tO\tis\tO\nspecified\tO\tspecified\tO\ntwice\tO\ttwice\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nDemo\tO\tDemo\tO\nhere\tO\there\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6928871\tO\t6928871\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6928871/\tO\thttps://stackoverflow.com/questions/6928871/\tO\n\t\n\t\nOverview\tO\tOverview\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nwritten\tO\twritten\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nthat\tO\tthat\tO\nallows\tO\tallows\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\ndefine\tO\tdefine\tO\na\tO\ta\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nsubmit\tO\tsubmit\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nserver B-Device server O\nand\tO\tand\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsoftware\tO\tsoftware\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\non\tO\ton\tO\nDB2 B-Application DB2 O\nor\tO\tor\tO\nMySQL B-Application MySQL O\n.\tO\t.\tO\n\t\nProblem\tO\tProblem\tO\n:\tO\t:\tO\n\t\nWe\tO\tWe\tO\n've\tO\t've\tO\nhad\tO\thad\tO\nissues\tO\tissues\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nDB2 B-Application DB2 O\nversion\tO\tversion\tO\nwhere\tO\twhere\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nhas\tO\thas\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nfailed\tO\tfailed\tO\nbecause\tO\tbecause\tO\ntheir\tO\ttheir\tO\nuser\tO\tuser\tO\nprofile\tO\tprofile\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ndisabled\tO\tdisabled\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nquery\tO\tquery\tO\non\tO\ton\tO\nDB2 B-Application DB2 O\n(\tO\t(\tO\non\tO\ton\tO\nan\tO\tan\tO\nIBM B-Operating_System IBM O\ni) I-Operating_System i) O\n,\tO\t,\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nprofile\tO\tprofile\tO\nname\tO\tname\tO\nand\tO\tand\tO\npassword\tO\tpassword\tO\nare\tO\tare\tO\nprovided\tO\tprovided\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconnection\tO\tconnection\tO\nstring B-Data_Type string O\n.\tO\t.\tO\n\t\nSecurity\tO\tSecurity\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\ncan\tO\tcan\tO\nspecify\tO\tspecify\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nprofile\tO\tprofile\tO\nis\tO\tis\tO\ndisabled\tO\tdisabled\tO\nafter\tO\tafter\tO\ntwo\tO\ttwo\tO\nor\tO\tor\tO\nthree\tO\tthree\tO\nincorrect\tO\tincorrect\tO\nlogins\tO\tlogins\tO\n.\tO\t.\tO\n\t\nQuestion\tO\tQuestion\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ndebugged\tO\tdebugged\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nbeing\tO\tbeing\tO\nsubmitted\tO\tsubmitted\tO\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\npassword\tO\tpassword\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\nthe\tO\tthe\tO\nknock-on\tO\tknock-on\tO\neffect\tO\teffect\tO\nof\tO\tof\tO\ndisabling\tO\tdisabling\tO\ntheir\tO\ttheir\tO\nprofile\tO\tprofile\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nfurther\tO\tfurther\tO\ninspection\tO\tinspection\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\n've\tO\t've\tO\ninspected\tO\tinspected\tO\nthe\tO\tthe\tO\nlogs B-File_Type logs O\non\tO\ton\tO\nthe\tO\tthe\tO\nserver B-Device server O\n(\tO\t(\tO\nwhile\tO\twhile\tO\ndebugging\tO\tdebugging\tO\nline\tO\tline\tO\nby\tO\tby\tO\nline\tO\tline\tO\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nis\tO\tis\tO\nsubmitted\tO\tsubmitted\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nTADOQuery.sql.add() B-Function TADOQuery.sql.add() O\n,\tO\t,\tO\nand\tO\tand\tO\nagain\tO\tagain\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nTADOQuery B-Class TADOQuery O\n's\tO\t's\tO\nactive B-Variable active O\npropery\tO\tpropery\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\ntrue B-Value true O\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\npoint\tO\tpoint\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsubmitted\tO\tsubmitted\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver B-Device server O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_525 I-Code_Block Q_525 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\ntherefore\tO\ttherefore\tO\nquite\tO\tquite\tO\nsimple\tO\tsimple\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n.\tO\t.\tO\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nTADOQuery.sql.add() B-Function TADOQuery.sql.add() O\nmethod\tO\tmethod\tO\nsubmit\tO\tsubmit\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\n(\tO\t(\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nsql B-Language sql O\nto\tO\tto\tO\nthe\tO\tthe\tO\nTADOQuery B-Class TADOQuery O\n's\tO\t's\tO\nsql B-Variable sql O\nproperty\tO\tproperty\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\n2\tO\t2\tO\n.\tO\t.\tO\nWhat\tO\tWhat\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nthe\tO\tthe\tO\nsql B-Language sql O\nbeing\tO\tbeing\tO\nsubmitted\tO\tsubmitted\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nadd() B-Function add() O\nmethod\tO\tmethod\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nthose\tO\tthose\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nextra\tO\textra\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nlogs B-File_Type logs O\n,\tO\t,\tO\nthe\tO\tthe\tO\nexit\tO\texit\tO\npoint\tO\tpoint\tO\nlogs\tO\tlogs\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nIBM B-Operating_System IBM O\ni I-Operating_System i O\nshow\tO\tshow\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nadoqry.sql.add B-Function adoqry.sql.add O\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nis\tO\tis\tO\nrun\tO\trun\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nDatabase\tO\tDatabase\tO\nServer-SQL\tO\tServer-SQL\tO\nRequests\tO\tRequests\tO\n\"\tO\t\"\tO\nexit\tO\texit\tO\npoint\tO\tpoint\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nvia\tO\tvia\tO\nfunction\tO\tfunction\tO\n\"\tO\t\"\tO\nPrepare\tO\tPrepare\tO\nand\tO\tand\tO\nDescribe\tO\tDescribe\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nadoqry.active B-Code_Block adoqry.active O\n:= I-Code_Block := O\ntrue I-Code_Block true O\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nquery\tO\tquery\tO\ngoes\tO\tgoes\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nexit\tO\texit\tO\npoint\tO\tpoint\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nvia\tO\tvia\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nOpen/Describe\tO\tOpen/Describe\tO\n\"\tO\t\"\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nfamiliar\tO\tfamiliar\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nIBM B-Operating_System IBM O\ni I-Operating_System i O\n,\tO\t,\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\n-\tO\t-\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\njust\tO\tjust\tO\nincluding\tO\tincluding\tO\nthat\tO\tthat\tO\ninformation\tO\tinformation\tO\nas\tO\tas\tO\nproof\tO\tproof\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntraced\tO\ttraced\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nbeing\tO\tbeing\tO\nsubmitted\tO\tsubmitted\tO\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreal\tO\treal\tO\nissue\tO\tissue\tO\nis\tO\tis\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nTADOQuery B-Library TADOQuery O\n's\tO\t's\tO\nsql.add() B-Function sql.add() O\nprocessing\tO\tprocessing\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6928871\tO\t6928871\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6928871/\tO\thttps://stackoverflow.com/questions/6928871/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nyour\tO\tyour\tO\ndescription\tO\tdescription\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nI\tO\tI\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nConnectionString B-Variable ConnectionString O\nof\tO\tof\tO\nthe\tO\tthe\tO\nADOQuery B-Class ADOQuery O\n.\tO\t.\tO\n\t\nDoing\tO\tDoing\tO\nthis\tO\tthis\tO\ncombines\tO\tcombines\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nlogin\tO\tlogin\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nrunning\tO\trunning\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nhas\tO\thas\tO\nundesirable\tO\tundesirable\tO\nside\tO\tside\tO\neffects\tO\teffects\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\ncredentials\tO\tcredentials\tO\nare\tO\tare\tO\ninvalid\tO\tinvalid\tO\n.\tO\t.\tO\n\t\nSeparate\tO\tSeparate\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nlogin\tO\tlogin\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nADOConnection B-Class ADOConnection O\n.\tO\t.\tO\n\t\nSpecify\tO\tSpecify\tO\nthe\tO\tthe\tO\nConnectionString B-Variable ConnectionString O\nof\tO\tof\tO\nthe\tO\tthe\tO\nADOConnection B-Class ADOConnection O\nand\tO\tand\tO\nassign\tO\tassign\tO\nthe\tO\tthe\tO\nADOConnection B-Class ADOConnection O\nto\tO\tto\tO\nthe\tO\tthe\tO\nADOQuery.Connection B-Variable ADOQuery.Connection O\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncontrol\tO\tcontrol\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nlogin\tO\tlogin\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\ncatch\tO\tcatch\tO\nlogins\tO\tlogins\tO\nwith\tO\twith\tO\nbad\tO\tbad\tO\ncredentials\tO\tcredentials\tO\n.\tO\t.\tO\n\t\nAdditionally\tO\tAdditionally\tO\nthe\tO\tthe\tO\nADOConnection.Open B-Function ADOConnection.Open O\nmethod\tO\tmethod\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nusername\tO\tusername\tO\nand\tO\tand\tO\npassword\tO\tpassword\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nConnectionString B-Variable ConnectionString O\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nanswer\tO\tanswer\tO\nyou\tO\tyou\tO\nspecific\tO\tspecific\tO\nquestions\tO\tquestions\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\napproach\tO\tapproach\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nprofile\tO\tprofile\tO\nbeing\tO\tbeing\tO\ndisabled\tO\tdisabled\tO\nby\tO\tby\tO\nseparating\tO\tseparating\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nrunning\tO\trunning\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41015516\tO\t41015516\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41015516/\tO\thttps://stackoverflow.com/questions/41015516/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ndeployed\tO\tdeployed\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\non\tO\ton\tO\nTomcat B-Application Tomcat O\nserver I-Application server O\n(\tO\t(\tO\ni.e\tO\ti.e\tO\non\tO\ton\tO\ncloud\tO\tcloud\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ntwo\tO\ttwo\tO\ndays\tO\tdays\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nToday\tO\tToday\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nsolve\tO\tsolve\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31409444\tO\t31409444\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31409444/\tO\thttps://stackoverflow.com/questions/31409444/\tO\n\t\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n87\tO\t87\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nGame B-Device Game O\nBoy I-Device Boy O\nCPU I-Device CPU O\nManual\tO\tManual\tO\nit\tO\tit\tO\nis\tO\tis\tO\nclaimed\tO\tclaimed\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nCP B-Code_Block CP B-Code_Block\nn I-Code_Block n I-Code_Block\ninstruction\tO\tinstruction\tO\nsets\tO\tsets\tO\nthe\tO\tthe\tO\ncarry B-Variable carry O\nflag\tO\tflag\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nwas\tO\twas\tO\nno\tO\tno\tO\nborrow\tO\tborrow\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nA B-Code_Block A B-Code_Block\n< I-Code_Block < I-Code_Block\nn I-Code_Block n I-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nconflict\tO\tconflict\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ncarry B-Variable carry O\nflag\tO\tflag\tO\nis\tO\tis\tO\nset\tO\tset\tO\nwhen\tO\twhen\tO\nA B-Code_Block A B-Code_Block\n> I-Code_Block > I-Code_Block\nn I-Code_Block n I-Code_Block\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\n:\tO\t:\tO\nIf\tO\tIf\tO\nA B-Code_Block A B-Code_Block\n= I-Code_Block = I-Code_Block\n0 I-Code_Block 0 I-Code_Block\nand\tO\tand\tO\nB B-Code_Block B B-Code_Block\n= I-Code_Block = I-Code_Block\n1 I-Code_Block 1 I-Code_Block\n,\tO\t,\tO\nCP B-Code_Block CP B-Code_Block\nB I-Code_Block B I-Code_Block\nsets\tO\tsets\tO\nthe\tO\tthe\tO\nflags\tO\tflags\tO\nlike\tO\tlike\tO\nSUB B-Code_Block SUB B-Code_Block\nA I-Code_Block A I-Code_Block\n, I-Code_Block , I-Code_Block\nB I-Code_Block B I-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\n0 B-Value 0 O\n- I-Value - O\n1 I-Value 1 O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nbecomes\tO\tbecomes\tO\n0 B-Value 0 O\n+ I-Value + O\n255 I-Value 255 O\n= I-Value = O\n255 I-Value 255 O\nand\tO\tand\tO\nthe\tO\tthe\tO\ncarry\tO\tcarry\tO\nflag\tO\tflag\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nset\tO\tset\tO\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nA B-Code_Block A B-Code_Block\n< I-Code_Block < I-Code_Block\nB I-Code_Block B I-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncame\tO\tcame\tO\nacross\tO\tacross\tO\nthis\tO\tthis\tO\nsame\tO\tsame\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nother\tO\tother\tO\nZ80 B-Device Z80 O\ndocuments\tO\tdocuments\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nbelieve\tO\tbelieve\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\ntypo\tO\ttypo\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nmisunderstanding\tO\tmisunderstanding\tO\nhow\tO\thow\tO\nborrow\tO\tborrow\tO\nand\tO\tand\tO\nSUB B-Code_Block SUB B-Code_Block\nwork\tO\twork\tO\nor\tO\tor\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nSUB B-Code_Block SUB B-Code_Block\nnot\tO\tnot\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nADD B-Code_Block ADD B-Code_Block\nwith\tO\twith\tO\ntwo\tO\ttwo\tO\n's\tO\t's\tO\ncomplement\tO\tcomplement\tO\nin\tO\tin\tO\nterms\tO\tterms\tO\nof\tO\tof\tO\nflags\tO\tflags\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31409444\tO\t31409444\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31409444/\tO\thttps://stackoverflow.com/questions/31409444/\tO\n\t\n\t\nThe\tO\tThe\tO\nGameBoy B-Device GameBoy O\nCPU I-Device CPU O\nmanual\tO\tmanual\tO\nhas\tO\thas\tO\nit\tO\tit\tO\nbackwards\tO\tbackwards\tO\n.\tO\t.\tO\n\t\nSUB B-Code_Block SUB B-Code_Block\n,\tO\t,\tO\nSBC B-Code_Block SBC B-Code_Block\nand\tO\tand\tO\nCP B-Code_Block CP B-Code_Block\nall\tO\tall\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ncarry\tO\tcarry\tO\nflag\tO\tflag\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nborrow\tO\tborrow\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nSUB/SBC/CP B-Code_Block SUB/SBC/CP B-Code_Block\nA I-Code_Block A I-Code_Block\n, I-Code_Block , I-Code_Block\nn I-Code_Block n I-Code_Block\nis\tO\tis\tO\nexecuted\tO\texecuted\tO\nthen\tO\tthen\tO\ncarry\tO\tcarry\tO\nis\tO\tis\tO\nset\tO\tset\tO\nif\tO\tif\tO\nn B-Code_Block n B-Code_Block\n> I-Code_Block > I-Code_Block\nA I-Code_Block A I-Code_Block\notherwise\tO\totherwise\tO\nit\tO\tit\tO\nis\tO\tis\tO\nclear\tO\tclear\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nconsistent\tO\tconsistent\tO\nwith\tO\twith\tO\nZ-80 B-Device Z-80 O\n(\tO\t(\tO\nand\tO\tand\tO\n8080 B-Device 8080 O\n)\tO\t)\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nwell\tO\twell\tO\nMAME B-Application MAME O\nand\tO\tand\tO\nMESS B-Application MESS O\nimplement\tO\timplement\tO\ncarry B-Variable carry O\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19332981\tO\t19332981\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19332981/\tO\thttps://stackoverflow.com/questions/19332981/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndeveloping\tO\tdeveloping\tO\necommerece\tO\tecommerece\tO\nsite\tO\tsite\tO\nusing\tO\tusing\tO\nmagento B-Application magento O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\n\t\nShow\tO\tShow\tO\nall\tO\tall\tO\ncountries\tO\tcountries\tO\ndropdown B-User_Interface_Element dropdown O\nbox I-User_Interface_Element box O\nin\tO\tin\tO\nuser\tO\tuser\tO\nregister\tO\tregister\tO\npage B-User_Interface_Element page O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nshow\tO\tshow\tO\nonly\tO\tonly\tO\nindia\tO\tindia\tO\n,\tO\t,\tO\nsingapore\tO\tsingapore\tO\n,\tO\t,\tO\nusa\tO\tusa\tO\nin\tO\tin\tO\ndropdown B-User_Interface_Element dropdown O\nbox I-User_Interface_Element box O\nin\tO\tin\tO\nproduct\tO\tproduct\tO\nshipping\tO\tshipping\tO\naddress\tO\taddress\tO\nfor\tO\tfor\tO\nregisterd\tO\tregisterd\tO\nuser\tO\tuser\tO\nand\tO\tand\tO\nguest\tO\tguest\tO\n.\tO\t.\tO\n\t\nAnybody\tO\tAnybody\tO\nhelp\tO\thelp\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nThanx\tO\tThanx\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19332981\tO\t19332981\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19332981/\tO\thttps://stackoverflow.com/questions/19332981/\tO\n\t\n\t\nShipping\tO\tShipping\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nallowed\tO\tallowed\tO\nonly\tO\tonly\tO\nto\tO\tto\tO\ndefined\tO\tdefined\tO\ncountries\tO\tcountries\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\nin\tO\tin\tO\nshipping\tO\tshipping\tO\nmethod\tO\tmethod\tO\nsettings\tO\tsettings\tO\n(\tO\t(\tO\nsystem->configuration->shipping\tO\tsystem->configuration->shipping\tO\nmethods->your\tO\tmethods->your\tO\nshipping\tO\tshipping\tO\nmethod->Ship\tO\tmethod->Ship\tO\nto\tO\tto\tO\nApplicable\tO\tApplicable\tO\nCountries\tO\tCountries\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nvalues\tO\tvalues\tO\n:\tO\t:\tO\n\" B-Value \" O\nShip I-Value Ship O\nto I-Value to O\nApplicable I-Value Applicable O\nCountries I-Value Countries O\n\" I-Value \" O\nand\tO\tand\tO\n\" B-Value \" O\nSpecific I-Value Specific O\nCountries I-Value Countries O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nset\tO\tset\tO\nup\tO\tup\tO\nsecond\tO\tsecond\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nshipping\tO\tshipping\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\naviable\tO\taviable\tO\nonly\tO\tonly\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ncountries\tO\tcountries\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nselect\tO\tselect\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfeald\tO\tfeald\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36920142\tO\t36920142\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36920142/\tO\thttps://stackoverflow.com/questions/36920142/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\na\tO\ta\tO\nJsonResult B-Class JsonResult B-Code_Block\nobject\tO\tobject\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nMVC B-Algorithm MVC O\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\none\tO\tone\tO\nelement\tO\telement\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\nbefore\tO\tbefore\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwithout\tO\twithout\tO\nmapping\tO\tmapping\tO\nit\tO\tit\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nis\tO\tis\tO\nhuge\tO\thuge\tO\nand\tO\tand\tO\nvery\tO\tvery\tO\ncomplex\tO\tcomplex\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nachieve\tO\tachieve\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\neg\tO\teg\tO\n.\tO\t.\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4557 I-Code_Block Q_4557 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4558 I-Code_Block Q_4558 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nthen\tO\tthen\tO\nREMOVE B-Function REMOVE O\nPropertyToNOTExpose B-Variable PropertyToNOTExpose O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nUPDATE\tO\tUPDATE\tO\nfrom\tO\tfrom\tO\nreal\tO\treal\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4559 I-Code_Block Q_4559 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36920142\tO\t36920142\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36920142/\tO\thttps://stackoverflow.com/questions/36920142/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nexcluding\tO\texcluding\tO\nthe\tO\tthe\tO\nproperties\tO\tproperties\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nsent\tO\tsent\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5285 I-Code_Block A_5285 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnother\tO\tAnother\tO\noptions\tO\toptions\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\na\tO\ta\tO\nNewtonsoft.Json.Linq.JObject B-Class Newtonsoft.Json.Linq.JObject O\nand\tO\tand\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\nusing\tO\tusing\tO\nJObject.Remove B-Function JObject.Remove O\nMethod\tO\tMethod\tO\n(\tO\t(\tO\nString B-Data_Type String O\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5286 I-Code_Block A_5286 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36920142\tO\t36920142\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36920142/\tO\thttps://stackoverflow.com/questions/36920142/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\n[ B-Code_Block [ B-Code_Block\nScriptIgnore I-Code_Block ScriptIgnore I-Code_Block\n] I-Code_Block ] I-Code_Block\nattribute\tO\tattribute\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\nthe\tO\tthe\tO\nJavaScriptSerializer B-Class JavaScriptSerializer B-Code_Block\nto\tO\tto\tO\nignore\tO\tignore\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nignored\tO\tignored\tO\non\tO\ton\tO\ndeserialization\tO\tdeserialization\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhether\tO\twhether\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nsituation\tO\tsituation\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5287 I-Code_Block A_5287 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28949270\tO\t28949270\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28949270/\tO\thttps://stackoverflow.com/questions/28949270/\tO\n\t\n\t\nGiven\tO\tGiven\tO\nHTML B-Language HTML O\nthat\tO\tthat\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3430 I-Code_Block Q_3430 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nonly\tO\tonly\tO\nCSS B-Language CSS O\n(\tO\t(\tO\nwithout\tO\twithout\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\na\tO\ta\tO\n<span> B-HTML_XML_Tag <span> B-Code_Block\nelement\tO\telement\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nHTML B-Language HTML O\n)\tO\t)\tO\n,\tO\t,\tO\nto\tO\tto\tO\nformat\tO\tformat\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ntwo\tO\ttwo\tO\ndigits\tO\tdigits\tO\n(\tO\t(\tO\nor\tO\tor\tO\n,\tO\t,\tO\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\n,\tO\t,\tO\ncharacters\tO\tcharacters\tO\n)\tO\t)\tO\ndiminished\tO\tdiminished\tO\nin\tO\tin\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ngoal\tO\tgoal\tO\nis\tO\tis\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nCSS B-Language CSS O\nstylesheet\tO\tstylesheet\tO\nrule\tO\trule\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nunadorned\tO\tunadorned\tO\nHTML B-Language HTML O\nabove\tO\tabove\tO\nthat\tO\tthat\tO\nbehaves\tO\tbehaves\tO\nas\tO\tas\tO\nif\tO\tif\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3431 I-Code_Block Q_3431 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28949270\tO\t28949270\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28949270/\tO\thttps://stackoverflow.com/questions/28949270/\tO\n\t\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\nwith\tO\twith\tO\npure\tO\tpure\tO\nCSS B-Language CSS O\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nhtml B-Language html O\nas\tO\tas\tO\nyou\tO\tyou\tO\npointed\tO\tpointed\tO\nout\tO\tout\tO\nor\tO\tor\tO\nJavascript B-Language Javascript O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22583138\tO\t22583138\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22583138/\tO\thttps://stackoverflow.com/questions/22583138/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nandroid B-Operating_System android O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\none\tO\tone\tO\nactivity B-Class activity O\nand\tO\tand\tO\none\tO\tone\tO\nservice B-Class service O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nservice B-Class service O\nis\tO\tis\tO\nhaving\tO\thaving\tO\none\tO\tone\tO\nbroadcast B-Class broadcast O\nreceiver I-Class receiver O\nand\tO\tand\tO\nactivity B-Class activity O\nis\tO\tis\tO\nhaving\tO\thaving\tO\nbroadcast B-Class broadcast O\nsender I-Class sender O\nwhich\tO\twhich\tO\nis\tO\tis\tO\nin\tO\tin\tO\nPeriodSender B-Function PeriodSender O\nmethod\tO\tmethod\tO\n.Dynamically\tO\t.Dynamically\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nam\tO\tam\tO\nregistering\tO\tregistering\tO\nthe\tO\tthe\tO\nreceiver B-Class receiver O\nthen\tO\tthen\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nservice B-Class service O\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ninvoking\tO\tinvoking\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\ni\tO\ti\tO\nsend\tO\tsend\tO\nsome\tO\tsome\tO\nthing\tO\tthing\tO\nafter\tO\tafter\tO\nfew\tO\tfew\tO\nmoment\tO\tmoment\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\ninvokes\tO\tinvokes\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nregister\tO\tregister\tO\nit\tO\tit\tO\nin\tO\tin\tO\nManifest B-File_Name Manifest O\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nincluded\tO\tincluded\tO\nthe\tO\tthe\tO\nreceiver\tO\treceiver\tO\ndetails\tO\tdetails\tO\nin\tO\tin\tO\nManifest B-File_Name Manifest O\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nreceiver B-Class receiver O\nis\tO\tis\tO\nnot\tO\tnot\tO\ninvoking\tO\tinvoking\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nreceiver B-Class receiver O\nclass\tO\tclass\tO\nname\tO\tname\tO\nis\tO\tis\tO\nMyReceiver21 B-Class MyReceiver21 O\nand\tO\tand\tO\nthe\tO\tthe\tO\nintent B-Class intent O\naction\tO\taction\tO\nis\tO\tis\tO\nMY_ACTION1 B-Variable MY_ACTION1 O\n.\tO\t.\tO\n\t\nactually\tO\tactually\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nmy\tO\tmy\tO\nbroadcast B-Class broadcast O\nreceiver I-Class receiver O\nto\tO\tto\tO\nbe\tO\tbe\tO\nregistered\tO\tregistered\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nstarting\tO\tstarting\tO\nit\tO\tit\tO\nself\tO\tself\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2473 I-Code_Block Q_2473 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22583138\tO\t22583138\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22583138/\tO\thttps://stackoverflow.com/questions/22583138/\tO\n\t\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nintent B-HTML_XML_Tag intent O\nfilter I-HTML_XML_Tag filter O\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nbroadcasts B-Class broadcasts O\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nregister\tO\tregister\tO\nthe\tO\tthe\tO\nservice B-Class service O\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nbroadcasts B-Class broadcasts O\nwith\tO\twith\tO\nregisterReceiver() B-Function registerReceiver() B-Code_Block\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nservice B-Class service O\nis\tO\tis\tO\nstarted\tO\tstarted\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nservice B-Class service O\nmanually\tO\tmanually\tO\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\nApp\tO\tApp\tO\nstarts\tO\tstarts\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nMainActivity.onCreate() B-Function MainActivity.onCreate() B-Code_Block\n: I-Function : I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3072 I-Code_Block A_3072 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nMainActivity B-Class MainActivity O\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\ncreated\tO\tcreated\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nstart\tO\tstart\tO\nthe\tO\tthe\tO\nservice B-Class service O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nitself\tO\titself\tO\nregisters\tO\tregisters\tO\nfor\tO\tfor\tO\nBroadcastIntents B-Class BroadcastIntents O\nand\tO\tand\tO\nstarts\tO\tstarts\tO\nlistening\tO\tlistening\tO\nfor\tO\tfor\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22498881\tO\t22498881\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22498881/\tO\thttps://stackoverflow.com/questions/22498881/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\ngame\tO\tgame\tO\nwith\tO\twith\tO\nKivy B-Library Kivy O\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmove\tO\tmove\tO\na\tO\ta\tO\ncharacter B-User_Interface_Element character O\naround\tO\taround\tO\nthe\tO\tthe\tO\nscreen B-User_Interface_Element screen O\n.\tO\t.\tO\n\t\nEarlier\tO\tEarlier\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\nwhere\tO\twhere\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\ncharacter B-User_Interface_Element character O\nright\tO\tright\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nimage B-User_Interface_Element image O\nwould\tO\twould\tO\nscroll\tO\tscroll\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsame\tO\tsame\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nRecently\tO\tRecently\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwas\tO\twas\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nimage B-User_Interface_Element image O\nto\tO\tto\tO\na\tO\ta\tO\nwidget B-Class widget O\nalong\tO\talong\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\nimage\tO\timage\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nintention\tO\tintention\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncould\tO\tcould\tO\ncontrol\tO\tcontrol\tO\nmultiple\tO\tmultiple\tO\nimage B-User_Interface_Element image O\nlocations\tO\tlocations\tO\nwith\tO\twith\tO\n'\tO\t'\tO\nwidget.pos B-Variable widget.pos O\n'\tO\t'\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nonly\tO\tonly\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nimage B-User_Interface_Element image O\n(\tO\t(\tO\nhero B-Variable hero O\n2) I-Variable 2) O\nnot\tO\tnot\tO\nscroll\tO\tscroll\tO\nright\tO\tright\tO\nor\tO\tor\tO\nleft\tO\tleft\tO\nbut\tO\tbut\tO\nneither\tO\tneither\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nimage B-User_Interface_Element image O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwondering\tO\twondering\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2460 I-Code_Block Q_2460 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22498881\tO\t22498881\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22498881/\tO\thttps://stackoverflow.com/questions/22498881/\tO\n\t\n\t\nLooks\tO\tLooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nFLoatLayout B-Class FLoatLayout O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\na\tO\ta\tO\nnormal\tO\tnormal\tO\nlayout\tO\tlayout\tO\n(\tO\t(\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\na\tO\ta\tO\nFloatLayout B-Class FloatLayout O\n)\tO\t)\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nautomatically\tO\tautomatically\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nchildren\tO\tchildren\tO\n's\tO\t's\tO\nco-ordinates\tO\tco-ordinates\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthat\tO\tthat\tO\nbehavior\tO\tbehavior\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nRelativeLayout B-Class RelativeLayout O\n.\tO\t.\tO\n\t\nhttp://kivy.org/docs/api-kivy.uix.relativelayout.html\tO\thttp://kivy.org/docs/api-kivy.uix.relativelayout.html\tO\n\t\nPeace\tO\tPeace\tO\nout\tO\tout\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7148916\tO\t7148916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7148916/\tO\thttps://stackoverflow.com/questions/7148916/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntable B-Data_Structure table O\nwith\tO\twith\tO\n8.2\tO\t8.2\tO\nmillion\tO\tmillion\tO\nentries\tO\tentries\tO\nin\tO\tin\tO\na\tO\ta\tO\nSQL B-Application SQL O\nServer I-Application Server O\n2005 B-Version 2005 O\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ntable B-Data_Structure table O\nstores\tO\tstores\tO\nbasic\tO\tbasic\tO\npast\tO\tpast\tO\ncustomer\tO\tcustomer\tO\ndetails\tO\tdetails\tO\n(\tO\t(\tO\nreferrer\tO\treferrer\tO\n,\tO\t,\tO\nip\tO\tip\tO\n,\tO\t,\tO\nwhether\tO\twhether\tO\nthey\tO\tthey\tO\nentered\tO\tentered\tO\nvia\tO\tvia\tO\nan\tO\tan\tO\nadvertisement\tO\tadvertisement\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\ncustomer\tO\tcustomer\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nhad\tO\thad\tO\ncome\tO\tcome\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nwhoever\tO\twhoever\tO\ndesigned\tO\tdesigned\tO\nthe\tO\tthe\tO\ntable B-Data_Structure table O\n(\tO\t(\tO\nway\tO\tway\tO\nbefore\tO\tbefore\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nhere\tO\there\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\na\tO\ta\tO\nlowly\tO\tlowly\tO\nintern\tO\tintern\tO\n)\tO\t)\tO\nused\tO\tused\tO\na\tO\ta\tO\nvarchar(50) B-Data_Type varchar(50) B-Code_Block\nfield\tO\tfield\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nip\tO\tip\tO\naddress\tO\taddress\tO\nfield\tO\tfield\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable B-Data_Structure table O\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ntasked\tO\ttasked\tO\nwith\tO\twith\tO\nfinding\tO\tfinding\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nif\tO\tif\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nentry\tO\tentry\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nip\tO\tip\tO\naddress\tO\taddress\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\n've\tO\t've\tO\nhad\tO\thad\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nset B-Data_Structure set O\nthis\tO\tthis\tO\nlarge\tO\tlarge\tO\nand\tO\tand\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nspeed\tO\tspeed\tO\nmuch\tO\tmuch\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nquery\tO\tquery\tO\nfrom\tO\tfrom\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nrunning\tO\trunning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_548 I-Code_Block Q_548 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nquery\tO\tquery\tO\nran\tO\tran\tO\nfor\tO\tfor\tO\nover\tO\tover\tO\n2\tO\t2\tO\nmin\tO\tmin\tO\nand\tO\tand\tO\n31\tO\t31\tO\nseconds\tO\tseconds\tO\nbefore\tO\tbefore\tO\nI\tO\tI\tO\ncancelled\tO\tcancelled\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\nthe\tO\tthe\tO\nspeed\tO\tspeed\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nlook\tO\tlook\tO\nup\tO\tup\tO\nor\tO\tor\tO\nwould\tO\twould\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nadvisable\tO\tadvisable\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nindex B-Variable index O\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable B-Data_Structure table O\nthat\tO\tthat\tO\nstores\tO\tstores\tO\nthe\tO\tthe\tO\nINET_ATON B-Function INET_ATON O\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\nlook\tO\tlook\tO\nup\tO\tup\tO\non\tO\ton\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7148916\tO\t7148916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7148916/\tO\thttps://stackoverflow.com/questions/7148916/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\noften\tO\toften\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\n\"\tO\t\"\tO\ndo\tO\tdo\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nIP\tO\tIP\tO\naddress\tO\taddress\tO\n\"\tO\t\"\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ndefinitely\tO\tdefinitely\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nindex B-Variable index O\non\tO\ton\tO\nIP\tO\tIP\tO\naddress\tO\taddress\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\none-off\tO\tone-off\tO\nexercise\tO\texercise\tO\nthen\tO\tthen\tO\nno\tO\tno\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7148916\tO\t7148916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7148916/\tO\thttps://stackoverflow.com/questions/7148916/\tO\n\t\n\t\nTry\tO\tTry\tO\ncreating\tO\tcreating\tO\nan\tO\tan\tO\nindex\tO\tindex\tO\non\tO\ton\tO\nIPAddress B-Variable IPAddress O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nthings\tO\tthings\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nare\tO\tare\tO\nID B-Variable ID O\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nIPAddress B-Variable IPAddress O\n,\tO\t,\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nfrequent\tO\tfrequent\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nsearch\tO\tsearch\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nindex B-Variable index O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_814 I-Code_Block A_814 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20613241\tO\t20613241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20613241/\tO\thttps://stackoverflow.com/questions/20613241/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\ncamera\tO\tcamera\tO\napp\tO\tapp\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nto\tO\tto\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvideos\tO\tvideos\tO\nusers\tO\tusers\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\non\tO\ton\tO\ntheir\tO\ttheir\tO\niPhone B-Device iPhone O\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ngets\tO\tgets\tO\nthe\tO\tthe\tO\nvideos\tO\tvideos\tO\nfrom\tO\tfrom\tO\nuser\tO\tuser\tO\nCamera B-Application Camera O\nRoll I-Application Roll O\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nmy\tO\tmy\tO\nusers\tO\tusers\tO\nhave\tO\thave\tO\ncomplained\tO\tcomplained\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\ncustom\tO\tcustom\tO\nfolders\tO\tfolders\tO\ncreated\tO\tcreated\tO\nunder\tO\tunder\tO\ntheir\tO\ttheir\tO\nPhoto B-Application Photo O\nAlbum I-Application Album O\napp\tO\tapp\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nstore\tO\tstore\tO\nsome\tO\tsome\tO\nvideos\tO\tvideos\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nonly\tO\tonly\tO\nlooks\tO\tlooks\tO\nat\tO\tat\tO\nCamera B-Application Camera O\nRoll I-Application Roll O\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\npickup\tO\tpickup\tO\nthe\tO\tthe\tO\nmovies\tO\tmovies\tO\nfrom\tO\tfrom\tO\ntheir\tO\ttheir\tO\nother\tO\tother\tO\nfolders\tO\tfolders\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\nother\tO\tother\tO\nfolders\tO\tfolders\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2188 I-Code_Block Q_2188 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20613241\tO\t20613241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20613241/\tO\thttps://stackoverflow.com/questions/20613241/\tO\n\t\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nmedia\tO\tmedia\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\nsynced\tO\tsynced\tO\nfrom\tO\tfrom\tO\niTunes B-Application iTunes O\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nALAssetsGroupLibrary B-Library ALAssetsGroupLibrary O\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nall\tO\tall\tO\npossible\tO\tpossible\tO\nvariants\tO\tvariants\tO\nfor\tO\tfor\tO\nALAssetsGroupType B-Variable ALAssetsGroupType O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\njust\tO\tjust\tO\nchange\tO\tchange\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2752 I-Code_Block A_2752 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2753 I-Code_Block A_2753 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20613241\tO\t20613241\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20613241/\tO\thttps://stackoverflow.com/questions/20613241/\tO\n\t\n\t\nYou\tO\tYou\tO\ngot\tO\tgot\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfilter\tO\tfilter\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nassets\tO\tassets\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2903 I-Code_Block A_2903 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOptions\tO\tOptions\tO\nfor\tO\tfor\tO\nfilters\tO\tfilters\tO\nare\tO\tare\tO\n:\tO\t:\tO\n\t\n-\tO\t-\tO\nallAssets B-Variable allAssets O\n\t\n-\tO\t-\tO\nallVideos B-Variable allVideos O\n\t\n-\tO\t-\tO\nallPhotos B-Variable allPhotos O\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26018107\tO\t26018107\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26018107/\tO\thttps://stackoverflow.com/questions/26018107/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nrack\tO\track\tO\naap\tO\taap\tO\nthat\tO\tthat\tO\nimplements\tO\timplements\tO\na\tO\ta\tO\nwebsocket B-Class websocket O\nand\tO\tand\tO\na\tO\ta\tO\nplain\tO\tplain\tO\nhttp B-Library http O\napi I-Library api O\nendpoint\tO\tendpoint\tO\n,\tO\t,\tO\nclients B-Application clients O\ncan\tO\tcan\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nit\tO\tit\tO\nand\tO\tand\tO\nat\tO\tat\tO\na\tO\ta\tO\nlater\tO\tlater\tO\npoint\tO\tpoint\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\na\tO\ta\tO\nhttp\tO\thttp\tO\npost\tO\tpost\tO\nwith\tO\twith\tO\na\tO\ta\tO\ntoken B-Application token O\nand\tO\tand\tO\na\tO\ta\tO\nclient B-Application client O\nconnected\tO\tconnected\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nwebsocket B-Class websocket O\nwill\tO\twill\tO\nno\tO\tno\tO\nnotified\tO\tnotified\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nif\tO\tif\tO\npuma B-Application puma O\nis\tO\tis\tO\nrunning\tO\trunning\tO\nin\tO\tin\tO\ncluster\tO\tcluster\tO\nmode\tO\tmode\tO\nwith\tO\twith\tO\n4\tO\t4\tO\nworkers\tO\tworkers\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nthat\tO\tthat\tO\none\tO\tone\tO\nworker\tO\tworker\tO\nholds\tO\tholds\tO\nthe\tO\tthe\tO\nwebsocket B-Class websocket O\nconnection\tO\tconnection\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\nis\tO\tis\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\nhttp\tO\thttp\tO\nrequest\tO\trequest\tO\n?\tO\t?\tO\n\t\nRegards\tO\tRegards\tO\n,\tO\t,\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26018107\tO\t26018107\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26018107/\tO\thttps://stackoverflow.com/questions/26018107/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nended\tO\tended\tO\nup\tO\tup\tO\nimplementing\tO\timplementing\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nredis B-Data_Structure redis O\nfrom\tO\tfrom\tO\nhttps://devcenter.heroku.com/articles/ruby-websockets\tO\thttps://devcenter.heroku.com/articles/ruby-websockets\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42891691\tO\t42891691\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42891691/\tO\thttps://stackoverflow.com/questions/42891691/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nto\tO\tto\tO\nget\tO\tget\tO\nhelp\tO\thelp\tO\nsetting\tO\tsetting\tO\nup\tO\tup\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nenvironment\tO\tenvironment\tO\nin\tO\tin\tO\nSublimeREPl B-Library SublimeREPl O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nContinuum B-Website Continuum O\nAnalytics I-Website Analytics O\nAnaconda B-Application Anaconda O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nsuccessfully\tO\tsuccessfully\tO\nadded\tO\tadded\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nenvironment\tO\tenvironment\tO\n's\tO\t's\tO\npython B-Language python O\nas\tO\tas\tO\na\tO\ta\tO\nbuild\tO\tbuild\tO\nsystem\tO\tsystem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nto\tO\tto\tO\nSublimeREPL B-Library SublimeREPL O\nfor\tO\tfor\tO\nan\tO\tan\tO\ninteractive\tO\tinteractive\tO\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21646240\tO\t21646240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21646240/\tO\thttps://stackoverflow.com/questions/21646240/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nnewbie\tO\tnewbie\tO\nto\tO\tto\tO\nObjective-C B-Language Objective-C O\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nhandle\tO\thandle\tO\nin\tO\tin\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\narrays B-Data_Structure arrays O\n.\tO\t.\tO\n\t\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nApples B-Website Apples O\nown\tO\town\tO\ndocumentation\tO\tdocumentation\tO\nNSMutableArray B-Class NSMutableArray B-Code_Block\ninherits\tO\tinherits\tO\nfrom\tO\tfrom\tO\nNSArray B-Class NSArray B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nseeking\tO\tseeking\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nobjectAtIndex:i B-Function objectAtIndex:i B-Code_Block\nwithin\tO\twithin\tO\na\tO\ta\tO\nfor B-Code_Block for O\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nYet\tO\tYet\tO\nXcode B-Application Xcode O\nis\tO\tis\tO\nclaiming\tO\tclaiming\tO\nthat\tO\tthat\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nWithin\tO\tWithin\tO\na\tO\ta\tO\nfor B-Code_Block for O\nloop\tO\tloop\tO\nI\tO\tI\tO\nam\tO\tam\tO\nperforming\tO\tperforming\tO\n(\tO\t(\tO\nor\tO\tor\tO\nseeking\tO\tseeking\tO\nto\tO\tto\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntest\tO\ttest\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncertain\tO\tcertain\tO\nI\tO\tI\tO\nnot\tO\tnot\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfrustrating\tO\tfrustrating\tO\nlearning\tO\tlearning\tO\nthe\tO\tthe\tO\nidiosyncrasies\tO\tidiosyncrasies\tO\nof\tO\tof\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nprogramming\tO\tprogramming\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nme\tO\tme\tO\nObjective B-Language Objective O\nC I-Language C O\nhas\tO\thas\tO\n,\tO\t,\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nborne\tO\tborne\tO\nlittle\tO\tlittle\tO\nresemblance\tO\tresemblance\tO\nto\tO\tto\tO\nC++ B-Language C++ O\nor\tO\tor\tO\nC B-Language C O\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\npointer\tO\tpointer\tO\nor\tO\tor\tO\nassistance\tO\tassistance\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nWalt B-User_Name Walt O\nWilliams I-User_Name Williams O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21646240\tO\t21646240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21646240/\tO\thttps://stackoverflow.com/questions/21646240/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nyour\tO\tyour\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nand\tO\tand\tO\nparameter\tO\tparameter\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nPossibly\tO\tPossibly\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndot\tO\tdot\tO\nnotation\tO\tnotation\tO\n?\tO\t?\tO\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2938 I-Code_Block A_2938 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nindex B-Variable index O\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nloop\tO\tloop\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nobject B-Variable object B-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21646240\tO\t21646240\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21646240/\tO\thttps://stackoverflow.com/questions/21646240/\tO\n\t\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nWain B-User_Name Wain O\n's\tO\t's\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsake\tO\tsake\tO\nof\tO\tof\tO\ncompleteness\tO\tcompleteness\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nand\tO\tand\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nEx\tO\tEx\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2939 I-Code_Block A_2939 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncause\tO\tcause\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\ncomplaining\tO\tcomplaining\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nnamed\tO\tnamed\tO\n\"\tO\t\"\tO\nobjectAtIndex B-Function objectAtIndex B-Code_Block\n\"\tO\t\"\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmean\tO\tmean\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2940 I-Code_Block A_2940 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nObjective-C B-Language Objective-C O\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n\"\tO\t\"\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsending\tO\tsending\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\n(\tO\t(\tO\nobjectAtIndex:i B-Function objectAtIndex:i B-Code_Block\n)\tO\t)\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13776721\tO\t13776721\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13776721/\tO\thttps://stackoverflow.com/questions/13776721/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nflash B-Application flash O\nxml B-Language xml O\ntemplate\tO\ttemplate\tO\ni\tO\ti\tO\nbuy\tO\tbuy\tO\nfrom\tO\tfrom\tO\nactiveden B-Website activeden O\nbut\tO\tbut\tO\ni\tO\ti\tO\ncant\tO\tcant\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\narabic\tO\tarabic\tO\ntext\tO\ttext\tO\nfrom\tO\tfrom\tO\nright\tO\tright\tO\nto\tO\tto\tO\nleft\tO\tleft\tO\nand\tO\tand\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nresearch\tO\tresearch\tO\ni\tO\ti\tO\nfind\tO\tfind\tO\nthat\tO\tthat\tO\ntextfield B-Class textfield O\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nsupport\tO\tsupport\tO\nrtl\tO\trtl\tO\ncorrectly\tO\tcorrectly\tO\nand\tO\tand\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nto\tO\tto\tO\nTLFTextfield B-Class TLFTextfield O\n,\tO\t,\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nhere\tO\there\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nclassic\tO\tclassic\tO\ntextfield\tO\ttextfield\tO\ninto\tO\tinto\tO\nTLFTextField B-Class TLFTextField O\nin\tO\tin\tO\nas3 B-Language as3 O\n?\tO\t?\tO\n\t\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13776721\tO\t13776721\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13776721/\tO\thttps://stackoverflow.com/questions/13776721/\tO\n\t\n\t\nBuild\tO\tBuild\tO\nthe\tO\tthe\tO\ntextfield\tO\ttextfield\tO\nas\tO\tas\tO\nTLFTextField B-Class TLFTextField O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\n,\tO\t,\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nNOT\tO\tNOT\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nTLF B-Library TLF O\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nNOT\tO\tNOT\tO\nincluded\tO\tincluded\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43330507\tO\t43330507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43330507/\tO\thttps://stackoverflow.com/questions/43330507/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nhard\tO\thard\tO\ntime\tO\ttime\tO\napplying\tO\tapplying\tO\na\tO\ta\tO\nfilter\tO\tfilter\tO\nto\tO\tto\tO\nan\tO\tan\tO\ninline\tO\tinline\tO\nSVG B-HTML_XML_Tag SVG O\nsymbol\tO\tsymbol\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\na\tO\ta\tO\nnormal\tO\tnormal\tO\nexternal\tO\texternal\tO\nSVG B-File_Type SVG O\nfile\tO\tfile\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\ninline\tO\tinline\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nHTML B-File_Type HTML O\ndocument\tO\tdocument\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfiltered\tO\tfiltered\tO\nobjects\tO\tobjects\tO\ndisappear\tO\tdisappear\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nanything\tO\tanything\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nmissing\tO\tmissing\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfilter B-HTML_XML_Tag filter B-Code_Block\nattribute\tO\tattribute\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nfails\tO\tfails\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nin\tO\tin\tO\nan\tO\tan\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\nChrome B-Application Chrome O\n57 B-Version 57 O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5541 I-Code_Block Q_5541 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43330507\tO\t43330507\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43330507/\tO\thttps://stackoverflow.com/questions/43330507/\tO\n\t\n\t\nSetting\tO\tSetting\tO\nyour\tO\tyour\tO\nSVG B-HTML_XML_Tag SVG O\nto\tO\tto\tO\ndisplay:none B-Code_Block display:none O\nwill\tO\twill\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nnon-functional\tO\tnon-functional\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\ndisables\tO\tdisables\tO\nall\tO\tall\tO\nCSS B-Language CSS O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6271 I-Code_Block Q_6271 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42195389\tO\t42195389\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42195389/\tO\thttps://stackoverflow.com/questions/42195389/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nC++ B-Language C++ O\nfunction\tO\tfunction\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nbeen\tO\tbeen\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nVisual B-Application Visual O\nStudio I-Application Studio O\n6 B-Version 6 O\n(\tO\t(\tO\n1998\tO\t1998\tO\nyear\tO\tyear\tO\n)\tO\t)\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\nstatic B-Data_Type static B-Code_Block\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5362 I-Code_Block Q_5362 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42195389\tO\t42195389\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42195389/\tO\thttps://stackoverflow.com/questions/42195389/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ndangerously\tO\tdangerously\tO\nunsafe\tO\tunsafe\tO\n(\tO\t(\tO\nundefined\tO\tundefined\tO\nbehavior\tO\tbehavior\tO\n)\tO\t)\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\na\tO\ta\tO\npointer B-Data_Type pointer O\nto\tO\tto\tO\na\tO\ta\tO\nstack B-Data_Structure stack O\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nincludes\tO\tincludes\tO\narrays B-Data_Structure arrays O\nallocated\tO\tallocated\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nstack B-Data_Structure stack O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmemory\tO\tmemory\tO\noccupied\tO\toccupied\tO\nby\tO\tby\tO\na\tO\ta\tO\nstack B-Data_Structure stack O\nvariable\tO\tvariable\tO\nis\tO\tis\tO\nessentially\tO\tessentially\tO\ndeallocated\tO\tdeallocated\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nreturns\tO\treturns\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6049 I-Code_Block A_6049 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBy\tO\tBy\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nallocation\tO\tallocation\tO\nstatic B-Data_Type static O\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nallocation\tO\tallocation\tO\nwill\tO\twill\tO\npersist\tO\tpersist\tO\nand\tO\tand\tO\nis\tO\tis\tO\nsafer\tO\tsafer\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6050 I-Code_Block A_6050 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nany\tO\tany\tO\ncode\tO\tcode\tO\npath\tO\tpath\tO\ncaches\tO\tcaches\tO\nthe\tO\tthe\tO\npointer B-Data_Type pointer O\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\n\"\tO\t\"\tO\ntest\tO\ttest\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nanother\tO\tanother\tO\ncode\tO\tcode\tO\npath\tO\tpath\tO\nthat\tO\tthat\tO\ncalls\tO\tcalls\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\ncould\tO\tcould\tO\ninvalidate\tO\tinvalidate\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nyour\tO\tyour\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nduplicate\tO\tduplicate\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nbefore\tO\tbefore\tO\nreturning\tO\treturning\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nexpectation\tO\texpectation\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncaller\tO\tcaller\tO\nwill\tO\twill\tO\n\"\tO\t\"\tO\nfree B-Function free O\n\"\tO\t\"\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nlater\tO\tlater\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6051 I-Code_Block A_6051 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47108775\tO\t47108775\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47108775/\tO\thttps://stackoverflow.com/questions/47108775/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\niterate\tO\titerate\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\njava B-Language java O\narraylist B-Class arraylist O\npassed\tO\tpassed\tO\nas\tO\tas\tO\nmessage\tO\tmessage\tO\nheader\tO\theader\tO\nto\tO\tto\tO\na\tO\ta\tO\ncamel B-Library camel O\nroute B-HTML_XML_Tag route O\nvia\tO\tvia\tO\nbean B-Class bean O\nso\tO\tso\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\nstring B-Data_Type string O\nitem\tO\titem\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nbasically\tO\tbasically\tO\nan\tO\tan\tO\nurl\tO\turl\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\npassed\tO\tpassed\tO\nas\tO\tas\tO\nuri\tO\turi\tO\nargument\tO\targument\tO\ninside\tO\tinside\tO\ntag\tO\ttag\tO\nin\tO\tin\tO\ncamel B-Library camel O\nroute B-HTML_XML_Tag route O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\npassing\tO\tpassing\tO\nan\tO\tan\tO\narray B-Class array O\nlist I-Class list O\nas\tO\tas\tO\nmessage\tO\tmessage\tO\nheader\tO\theader\tO\nto\tO\tto\tO\ncamel B-Class camel O\nroute I-Class route O\nthrough\tO\tthrough\tO\njava B-Language java O\nbean B-Class bean O\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6236 I-Code_Block Q_6236 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\n,\tO\t,\tO\ninside\tO\tinside\tO\ncamel B-Class camel O\nroute I-Class route O\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\niterate\tO\titerate\tO\nthrough\tO\tthrough\tO\nthis\tO\tthis\tO\nlist B-Variable list O\nand\tO\tand\tO\nretrieve\tO\tretrieve\tO\neach\tO\teach\tO\nlist B-Variable list O\nitem\tO\titem\tO\none\tO\tone\tO\nby\tO\tby\tO\none\tO\tone\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\npass\tO\tpass\tO\nthese\tO\tthese\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nuri\tO\turi\tO\n.\tO\t.\tO\n\t\nhere\tO\there\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\ncamel B-Library camel O\nroute B-HTML_XML_Tag route O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6237 I-Code_Block Q_6237 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\ni\tO\ti\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\niterate\tO\titerate\tO\nthrough\tO\tthrough\tO\neach\tO\teach\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nlist B-Variable list O\nrecieved\tO\trecieved\tO\nas\tO\tas\tO\nheader.endpoints B-Variable header.endpoints O\ninside\tO\tinside\tO\ncamel B-Library camel O\nroute B-HTML_XML_Tag route O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47108775\tO\t47108775\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47108775/\tO\thttps://stackoverflow.com/questions/47108775/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nrecipient B-HTML_XML_Tag recipient O\nlist I-HTML_XML_Tag list O\nEIP\tO\tEIP\tO\npattern\tO\tpattern\tO\nthan\tO\tthan\tO\ncan\tO\tcan\tO\nsend\tO\tsend\tO\nmessages\tO\tmessages\tO\nto\tO\tto\tO\nN+ B-Variable N+ O\ndestinations\tO\tdestinations\tO\n:\tO\t:\tO\nhttp://camel.apache.org/recipient-list.html\tO\thttp://camel.apache.org/recipient-list.html\tO\n\t\nThe\tO\tThe\tO\nrecipient B-HTML_XML_Tag recipient O\nlist I-HTML_XML_Tag list O\nEIP\tO\tEIP\tO\nis\tO\tis\tO\nbasically\tO\tbasically\tO\na\tO\ta\tO\ntoD B-HTML_XML_Tag toD B-Code_Block\nbut\tO\tbut\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\n1.N B-Value 1.N O\nendpoints\tO\tendpoints\tO\n.\tO\t.\tO\n\t\nWhere\tO\tWhere\tO\nas\tO\tas\tO\ntoD B-HTML_XML_Tag toD B-Code_Block\ncan\tO\tcan\tO\nonly\tO\tonly\tO\ndo\tO\tdo\tO\n1 B-Value 1 O\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nyour\tO\tyour\tO\nmessage\tO\tmessage\tO\nheader B-User_Interface_Element header O\nas-is\tO\tas-is\tO\n,\tO\t,\tO\neg\tO\teg\tO\na\tO\ta\tO\nList B-Data_Structure List B-Code_Block\nor\tO\tor\tO\nCollection B-Library Collection B-Code_Block\nand\tO\tand\tO\nsend\tO\tsend\tO\nto\tO\tto\tO\neach\tO\teach\tO\ndestination\tO\tdestination\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ndo\tO\tdo\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6856 I-Code_Block A_6856 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12111325\tO\t12111325\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12111325/\tO\thttps://stackoverflow.com/questions/12111325/\tO\n\t\n\t\nSorry\tO\tSorry\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nrewrite\tO\trewrite\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nhoping\tO\thoping\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nclear\tO\tclear\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\n.cpp B-File_Type .cpp O\ncode\tO\tcode\tO\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nquads B-Class quads O\n,\tO\t,\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nhave\tO\thave\tO\na\tO\ta\tO\nflag B-Variable flag O\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npixel\tO\tpixel\tO\nshader\tO\tshader\tO\nI\tO\tI\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nflag B-Variable flag O\nis\tO\tis\tO\nset\tO\tset\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nflag B-Variable flag O\nis\tO\tis\tO\nnot\tO\tnot\tO\nset\tO\tset\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nquad B-Class quad O\ngets\tO\tgets\tO\ncolored\tO\tcolored\tO\nin\tO\tin\tO\nred B-Value red O\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nflag B-Variable flag O\nis\tO\tis\tO\nset\tO\tset\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\nthe\tO\tthe\tO\ncolor B-Variable color O\nof\tO\tof\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\npixel\tO\tpixel\tO\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncolour\tO\tcolour\tO\nhalf\tO\thalf\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nflagged\tO\tflagged\tO\nquad B-Class quad O\nin\tO\tin\tO\nred B-Value red O\nand\tO\tand\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nhalf\tO\thalf\tO\nin\tO\tin\tO\nblue B-Value blue O\nI\tO\tI\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1133 I-Code_Block Q_1133 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nhalf\tO\thalf\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquad B-Class quad O\ncolored\tO\tcolored\tO\nin\tO\tin\tO\nblue B-Value blue O\nand\tO\tand\tO\nanother\tO\tanother\tO\nhalf\tO\thalf\tO\ncolored\tO\tcolored\tO\nin\tO\tin\tO\nred B-Value red O\n,\tO\t,\tO\nor\tO\tor\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndecide\tO\tdecide\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nred B-Value red O\ncolor\tO\tcolor\tO\nor\tO\tor\tO\nwhere\tO\twhere\tO\nto\tO\tto\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nblue B-Value blue O\none\tO\tone\tO\n.\tO\t.\tO\n\t\nImagine\tO\tImagine\tO\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nquad B-Class quad O\n50x50\tO\t50x50\tO\npixels\tO\tpixels\tO\n\t\n[\tO\t[\tO\nfrag\tO\tfrag\tO\n]\tO\t]\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1134 I-Code_Block Q_1134 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nthat\tO\tthat\tO\na\tO\ta\tO\nquad B-Class quad O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nflag\tO\tflag\tO\nset\tO\tset\tO\nwill\tO\twill\tO\nget\tO\tget\tO\ntwo\tO\ttwo\tO\ncolors\tO\tcolors\tO\nper\tO\tper\tO\nface\tO\tface\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\nnow\tO\tnow\tO\n.\tO\t.\tO\n\t\nthanks\tO\tthanks\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsomething\tO\tsomething\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nany\tO\tany\tO\ntexture B-Class texture O\n.\tO\t.\tO\n\t\nOk\tO\tOk\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nnow\tO\tnow\tO\n:\tO\t:\tO\n\t\nEvery\tO\tEvery\tO\nquad B-Class quad O\nhas\tO\thas\tO\n4\tO\t4\tO\ntextures B-Class textures O\ncoordinated\tO\tcoordinated\tO\n( B-Value ( O\n0 I-Value 0 O\n, I-Value , O\n0 I-Value 0 O\n) I-Value ) O\n,\tO\t,\tO\n( B-Value ( O\n0 I-Value 0 O\n, I-Value , O\n1) I-Value 1) O\n,\tO\t,\tO\n( B-Value ( O\n1 I-Value 1 O\n, I-Value , O\n1) I-Value 1) O\n,\tO\t,\tO\n( B-Value ( O\n1 I-Value 1 O\n, I-Value , O\n0 I-Value 0 O\n) I-Value ) O\n;\tO\t;\tO\n\t\nI\tO\tI\tO\nenable\tO\tenable\tO\nthe\tO\tthe\tO\ntexture B-Class texture O\ncoordinates\tO\tcoordinates\tO\nusing\tO\tusing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1135 I-Code_Block Q_1135 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n[\tO\t[\tO\nvert\tO\tvert\tO\n]\tO\t]\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1136 I-Code_Block Q_1136 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n[\tO\t[\tO\nfrag\tO\tfrag\tO\n]\tO\t]\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1137 I-Code_Block Q_1137 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nalways\tO\talways\tO\nthe\tO\tthe\tO\nyellow B-Value yellow O\ncolor\tO\tcolor\tO\nso\tO\tso\tO\nx1 B-Code_Block x1 O\n= I-Code_Block = O\n1 I-Code_Block 1 O\nand\tO\tand\tO\nx2 B-Code_Block x2 O\n= I-Code_Block = O\n1 I-Code_Block 1 O\nalmost\tO\talmost\tO\nalways\tO\talways\tO\nand\tO\tand\tO\nsome\tO\tsome\tO\nquad\tO\tquad\tO\nis\tO\tis\tO\nyellow/green B-Value yellow/green O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntexture B-Class texture O\ncoordinates\tO\tcoordinates\tO\nchange\tO\tchange\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfragment\tO\tfragment\tO\nshader\tO\tshader\tO\nand\tO\tand\tO\nso\tO\tso\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nget\tO\tget\tO\na\tO\ta\tO\ngradient\tO\tgradient\tO\n,\tO\t,\tO\nam\tO\tam\tO\nI\tO\tI\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12111325\tO\t12111325\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12111325/\tO\thttps://stackoverflow.com/questions/12111325/\tO\n\t\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nChris B-User_Name Chris O\nDodd I-User_Name Dodd O\n's\tO\t's\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nscreen-space\tO\tscreen-space\tO\ncoordinate\tO\tcoordinate\tO\n(\tO\t(\tO\nin\tO\tin\tO\npixels\tO\tpixels\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\nactually\tO\tactually\tO\npixel\tO\tpixel\tO\ncenters\tO\tcenters\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\n? B-Value ? B-Code_Block\n. I-Value . I-Code_Block\n5) I-Value 5) I-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\ncurrently\tO\tcurrently\tO\nprocessed\tO\tprocessed\tO\nfragment\tO\tfragment\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nspecial\tO\tspecial\tO\nfragment\tO\tfragment\tO\nshader\tO\tshader\tO\nvariable\tO\tvariable\tO\ngl_FragCoord B-Variable gl_FragCoord B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1555 I-Code_Block A_1555 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\ngives\tO\tgives\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfragment\tO\tfragment\tO\nin\tO\tin\tO\nscreen-space\tO\tscreen-space\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\nrelative\tO\trelative\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlower\tO\tlower\tO\nleft\tO\tleft\tO\ncorner\tO\tcorner\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\nviewport B-User_Interface_Element viewport O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nactually\tO\tactually\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nindividual\tO\tindividual\tO\nquad\tO\tquad\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nmakes\tO\tmakes\tO\nmore\tO\tmore\tO\nsense\tO\tsense\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nactually\tO\tactually\tO\ncolor\tO\tcolor\tO\neach\tO\teach\tO\nquad\tO\tquad\tO\nhalf-by-half\tO\thalf-by-half\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nhalf-cut\tO\thalf-cut\tO\n\"\tO\t\"\tO\nwould\tO\twould\tO\notherwise\tO\totherwise\tO\nvary\tO\tvary\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nquad\tO\tquad\tO\n's\tO\t's\tO\nposition\tO\tposition\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nChris B-User_Name Chris O\nDodd I-User_Name Dodd O\n's\tO\t's\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12111325\tO\t12111325\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12111325/\tO\thttps://stackoverflow.com/questions/12111325/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\ncoordinate\tO\tcoordinate\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nquad B-Class quad O\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncalculate\tO\tcalculate\tO\nit\tO\tit\tO\nyourself\tO\tyourself\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\ninterpolant\tO\tinterpolant\tO\n(\tO\t(\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nvec2 B-Code_Block vec2 B-Code_Block\nquadCoord I-Code_Block quadCoord I-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nset\tO\tset\tO\nit\tO\tit\tO\nappropriately\tO\tappropriately\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nvertex\tO\tvertex\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmeans\tO\tmeans\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nlikely\tO\tlikely\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nas\tO\tas\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\nand\tO\tand\tO\npass\tO\tpass\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\nyour\tO\tyour\tO\nvertex\tO\tvertex\tO\nshader\tO\tshader\tO\n.\tO\t.\tO\n\t\neg\tO\teg\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1554 I-Code_Block A_1554 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nfeed\tO\tfeed\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nattribute\tO\tattribute\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ndrawing\tO\tdrawing\tO\ncode\tO\tcode\tO\nwhen\tO\twhen\tO\ndrawing\tO\tdrawing\tO\nyour\tO\tyour\tO\nquads B-Class quads O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\neach\tO\teach\tO\nquad B-Class quad O\n,\tO\t,\tO\nthe\tO\tthe\tO\nvertexes\tO\tvertexes\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nlikely\tO\tlikely\tO\nhave\tO\thave\tO\nquadCoordIn B-Variable quadCoordIn B-Code_Block\nvalues\tO\tvalues\tO\nof\tO\tof\tO\n( B-Value ( O\n0 I-Value 0 O\n, I-Value , O\n0 I-Value 0 O\n) I-Value ) O\n,\tO\t,\tO\n( B-Value ( O\n0 I-Value 0 O\n, I-Value , O\n1) I-Value 1) O\n,\tO\t,\tO\n( B-Value ( O\n1 I-Value 1 O\n, I-Value , O\n1) I-Value 1) O\nand\tO\tand\tO\n( B-Value ( O\n1 I-Value 1 O\n, I-Value , O\n0 I-Value 0 O\n) I-Value ) O\n-\tO\t-\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\ncoordinate\tO\tcoordinate\tO\nsystem\tO\tsystem\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nprefer\tO\tprefer\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nfragment\tO\tfragment\tO\nprogram\tO\tprogram\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nquadCoord.xy B-Variable quadCoord.xy B-Code_Block\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nwhere\tO\twhere\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nquad B-Class quad O\nyou\tO\tyou\tO\nare\tO\tare\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23025618\tO\t23025618\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23025618/\tO\thttps://stackoverflow.com/questions/23025618/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncsv B-File_Type csv O\nfile\tO\tfile\tO\nwith\tO\twith\tO\ncomments\tO\tcomments\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nwhich\tO\twhich\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsplit\tO\tsplit\tO\nbetween\tO\tbetween\tO\ntwo\tO\ttwo\tO\nArrayLists B-Class ArrayLists O\n.\tO\t.\tO\n\t\neg\tO\teg\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2521 I-Code_Block Q_2521 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nof\tO\tof\tO\nachieving\tO\tachieving\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nshould\tO\tshould\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ncounter B-Data_Structure counter O\nthat\tO\tthat\tO\nis\tO\tis\tO\nincremented\tO\tincremented\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nstate\tO\tstate\tO\nchanges\tO\tchanges\tO\nfrom\tO\tfrom\tO\n% B-Code_Block % O\nto\tO\tto\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nor\tO\tor\tO\nvice\tO\tvice\tO\nversa\tO\tversa\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nif B-Code_Block if O\ncounter I-Code_Block counter O\n% I-Code_Block % O\n2 I-Code_Block 2 O\n= I-Code_Block = O\n0 I-Code_Block 0 O\nthen\tO\tthen\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nArrayList B-Class ArrayList O\nand\tO\tand\tO\nstart\tO\tstart\tO\nwriting\tO\twriting\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nthats\tO\tthats\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nway\tO\tway\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nthink\tO\tthink\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\nclumsy\tO\tclumsy\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nidea\tO\tidea\tO\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nwritten\tO\twritten\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nactually\tO\tactually\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\ncsv B-File_Type csv O\nvalues\tO\tvalues\tO\n,\tO\t,\tO\ni\tO\ti\tO\ndont\tO\tdont\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nwondering\tO\twondering\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsplit\tO\tsplit\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\ninto\tO\tinto\tO\ntwo\tO\ttwo\tO\nlists. B-Class lists. O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23025618\tO\t23025618\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23025618/\tO\thttps://stackoverflow.com/questions/23025618/\tO\n\t\n\t\nYour\tO\tYour\tO\nsuggestion\tO\tsuggestion\tO\nsounds\tO\tsounds\tO\ngood\tO\tgood\tO\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nformat\tO\tformat\tO\nis\tO\tis\tO\nreally\tO\treally\tO\nso\tO\tso\tO\npredictable\tO\tpredictable\tO\n,\tO\t,\tO\nany\tO\tany\tO\nmore\tO\tmore\tO\nsophisticated\tO\tsophisticated\tO\napproaches\tO\tapproaches\tO\nmight\tO\tmight\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\noverkill\tO\toverkill\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nopinion\tO\topinion\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\napproach\tO\tapproach\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nidea\tO\tidea\tO\n:\tO\t:\tO\nEvery\tO\tEvery\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\nan\tO\tan\tO\n% B-Code_Block % B-Code_Block\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nwe\tO\twe\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nto\tO\tto\tO\nan\tO\tan\tO\nArrayList B-Class ArrayList B-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nwhenever\tO\twhenever\tO\nyou\tO\tyou\tO\ncome\tO\tcome\tO\nacross\tO\tacross\tO\na\tO\ta\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nparsing\tO\tparsing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nlines\tO\tlines\tO\nto\tO\tto\tO\nan\tO\tan\tO\nArrayList B-Class ArrayList B-Code_Block\nuntil\tO\tuntil\tO\nyou\tO\tyou\tO\neither\tO\teither\tO\nhit\tO\thit\tO\nanother\tO\tanother\tO\ncomment\tO\tcomment\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\noptions\tO\toptions\tO\nmark\tO\tmark\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npart\tO\tpart\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nin\tO\tin\tO\none\tO\tone\tO\nsingle\tO\tsingle\tO\nArrayList B-Class ArrayList B-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3117 I-Code_Block A_3117 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhere\tO\twhere\tO\nlineIsComment B-Code_Block lineIsComment B-Code_Block\n( I-Code_Block ( I-Code_Block\nString I-Code_Block String I-Code_Block\nline I-Code_Block line I-Code_Block\n) I-Code_Block ) I-Code_Block\nreturns\tO\treturns\tO\na\tO\ta\tO\nboolean B-Data_Type boolean O\nthat\tO\tthat\tO\nindicates\tO\tindicates\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\nline\tO\tline\tO\nis\tO\tis\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nand\tO\tand\tO\naddToList B-Code_Block addToList B-Code_Block\n( I-Code_Block ( I-Code_Block\nString I-Code_Block String I-Code_Block\nline I-Code_Block line I-Code_Block\n, I-Code_Block , I-Code_Block\nArrayList I-Code_Block ArrayList I-Code_Block\n<Integer> I-Code_Block <Integer> I-Code_Block\nlist I-Code_Block list I-Code_Block\n) I-Code_Block ) I-Code_Block\nuses\tO\tuses\tO\nyour\tO\tyour\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\na\tO\ta\tO\nline\tO\tline\tO\nof\tO\tof\tO\nnumbers\tO\tnumbers\tO\nand\tO\tand\tO\nstores\tO\tstores\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprovided\tO\tprovided\tO\nlist\tO\tlist\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8656150\tO\t8656150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8656150/\tO\thttps://stackoverflow.com/questions/8656150/\tO\n\t\n\t\nMy\tO\tMy\tO\nMVC B-Application MVC O\n3 B-Version 3 O\nproject\tO\tproject\tO\nis\tO\tis\tO\nbuilding\tO\tbuilding\tO\nsuccessfully\tO\tsuccessfully\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ndevelopment\tO\tdevelopment\tO\nmachine\tO\tmachine\tO\nwith\tO\twith\tO\nVisual B-Application Visual O\nStudio I-Application Studio O\n2010 B-Version 2010 O\n+\tO\t+\tO\nMVC B-Application MVC O\n3 B-Version 3 O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\nserver B-Application server O\n,\tO\t,\tO\nVS2010 B-Application VS2010 O\nis\tO\tis\tO\nnot\tO\tnot\tO\nused\tO\tused\tO\nand\tO\tand\tO\nI\tO\tI\tO\n've\tO\t've\tO\ninstalled\tO\tinstalled\tO\n'\tO\t'\tO\nASP.NET B-Application ASP.NET O\nMVC I-Application MVC O\n3 I-Application 3 O\nTools I-Application Tools O\nUpdate I-Application Update O\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nalso\tO\talso\tO\ndownloaded\tO\tdownloaded\tO\nNAnt B-Application NAnt O\nand\tO\tand\tO\nused\tO\tused\tO\nTortoiseSVN B-Application TortoiseSVN O\nto\tO\tto\tO\ncheckout\tO\tcheckout\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\nexcept\tO\texcept\tO\nbin B-File_Name bin O\ndirectories\tO\tdirectories\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhile\tO\twhile\tO\nbuilding\tO\tbuilding\tO\nusing\tO\tusing\tO\nNant B-Code_Block Nant B-Code_Block\ndefault.build I-Code_Block default.build I-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nbuild B-Error_Name build O\nerror I-Error_Name error O\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\n(\tO\t(\tO\nare\tO\tare\tO\nyou\tO\tyou\tO\nmissing\tO\tmissing\tO\nan\tO\tan\tO\nassembly\tO\tassembly\tO\nreference\tO\treference\tO\n?\tO\t?\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSame\tO\tSame\tO\nwith\tO\twith\tO\n'\tO\t'\tO\nController B-Application Controller O\n'\tO\t'\tO\n,\tO\t,\tO\n'\tO\t'\tO\nActionResult B-Application ActionResult O\n'\tO\t'\tO\n,\tO\t,\tO\n'\tO\t'\tO\nGlobalFilterCollection B-Application GlobalFilterCollection O\n'\tO\t'\tO\netc\tO\tetc\tO\n(\tO\t(\tO\ntype B-Error_Name type O\nor I-Error_Name or O\nnamespace I-Error_Name namespace O\ncould I-Error_Name could O\nnot I-Error_Name not O\nbe I-Error_Name be O\nfound I-Error_Name found O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nSystem.Web.Mvc.dll B-File_Name System.Web.Mvc.dll B-Code_Block\nin\tO\tin\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nNAnt B-Application NAnt O\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nno\tO\tno\tO\nother\tO\tother\tO\nway\tO\tway\tO\nthan\tO\tthan\tO\ncopying\tO\tcopying\tO\nthe\tO\tthe\tO\nassembly B-File_Type assembly O\nfiles\tO\tfiles\tO\ninto\tO\tinto\tO\nlocal\tO\tlocal\tO\nbin B-File_Name bin O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8656150\tO\t8656150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8656150/\tO\thttps://stackoverflow.com/questions/8656150/\tO\n\t\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nissue\tO\tissue\tO\nand\tO\tand\tO\nwas\tO\twas\tO\nn't\tO\tn't\tO\nable\tO\table\tO\nto\tO\tto\tO\nlocate\tO\tlocate\tO\nthe\tO\tthe\tO\nSystem.Web.MVC B-Class System.Web.MVC O\nreference\tO\treference\tO\nassembly\tO\tassembly\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nlocated\tO\tlocated\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nlocation\tO\tlocation\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nVS B-Application VS O\nwas\tO\twas\tO\ninstalled\tO\tinstalled\tO\nin\tO\tin\tO\nC B-File_Name C O\n: I-File_Name : O\n(\tO\t(\tO\nSometimes\tO\tSometimes\tO\nthe\tO\tthe\tO\nMVC B-Application MVC O\nis\tO\tis\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndefaul\tO\tdefaul\tO\nlocation\tO\tlocation\tO\nwhich\tO\twhich\tO\neverybody\tO\teverybody\tO\ntalk\tO\ttalk\tO\nabout\tO\tabout\tO\n,\tO\t,\tO\ni\tO\ti\tO\nmean\tO\tmean\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nReference B-File_Name Reference O\nAssemblies I-File_Name Assemblies O\n\"\tO\t\"\tO\nfolder\tO\tfolder\tO\nlocated\tO\tlocated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nC B-File_Name C O\n: I-File_Name : O\ndrive\tO\tdrive\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\ndefinitely\tO\tdefinitely\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nProgram B-File_Name Program O\nfiles(x86) I-File_Name files(x86) O\n--> I-File_Name --> O\nMicrosoft I-File_Name Microsoft O\nASP.NET I-File_Name ASP.NET O\n--> I-File_Name --> O\nASP.NET I-File_Name ASP.NET O\nMVC I-File_Name MVC O\n2 I-File_Name 2 O\n--> I-File_Name --> O\nAssemblies I-File_Name Assemblies O\nSystem.Web.Mvc.dll I-File_Name System.Web.Mvc.dll O\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\none\tO\tone\tO\nis\tO\tis\tO\nhelpful\tO\thelpful\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8656150\tO\t8656150\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8656150/\tO\thttps://stackoverflow.com/questions/8656150/\tO\n\t\n\t\nWhich\tO\tWhich\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nmsbuild B-Application msbuild O\nare\tO\tare\tO\nyou\tO\tyou\tO\nusing\tO\tusing\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nproject\tO\tproject\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nproject\tO\tproject\tO\nreferencing\tO\treferencing\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nor\tO\tor\tO\nfile\tO\tfile\tO\npath\tO\tpath\tO\nto\tO\tto\tO\nSystem.Web.Mvc.dll B-File_Name System.Web.Mvc.dll O\n?\tO\t?\tO\n\t\nDownload\tO\tDownload\tO\nand\tO\tand\tO\ninstall\tO\tinstall\tO\nASP.NET B-Application ASP.NET O\nMVC I-Application MVC O\n3\tO\t3\tO\n: B-Version : O\n\t\nhttp://www.microsoft.com/download/en/details.aspx?displaylang=en&id=4211\tO\thttp://www.microsoft.com/download/en/details.aspx?displaylang=en&id=4211\tO\n\t\nAccording\tO\tAccording\tO\nto\tO\tto\tO\n:\tO\t:\tO\nhttp://weblogs.asp.net/scottgu/archive/2011/05/03/asp-net-mvc-3-tools-update.aspx\tO\thttp://weblogs.asp.net/scottgu/archive/2011/05/03/asp-net-mvc-3-tools-update.aspx\tO\n\t\n\"\tO\t\"\tO\nThe\tO\tThe\tO\nASP.NET B-Application ASP.NET O\nMVC I-Application MVC O\n3 I-Application 3 O\nTools I-Application Tools O\nupdate\tO\tupdate\tO\nonly\tO\tonly\tO\nincludes\tO\tincludes\tO\nVisual B-Application Visual O\nStudio I-Application Studio O\ntooling\tO\ttooling\tO\nimprovements\tO\timprovements\tO\nand\tO\tand\tO\ndefault\tO\tdefault\tO\nproject\tO\tproject\tO\ntemplate\tO\ttemplate\tO\nchanges\tO\tchanges\tO\n–\tO\t–\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ninclude\tO\tinclude\tO\nany\tO\tany\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nASP.NET B-Application ASP.NET O\nMVC I-Application MVC O\n3 B-Version 3 O\nruntime\tO\truntime\tO\nbinaries\tO\tbinaries\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10908029\tO\t10908029\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10908029/\tO\thttps://stackoverflow.com/questions/10908029/\tO\n\t\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\na\tO\ta\tO\nbunch\tO\tbunch\tO\nof\tO\tof\tO\nresearch\tO\tresearch\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\ncould\tO\tcould\tO\nnot\tO\tnot\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nspecific\tO\tspecific\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nallot\tO\tallot\tO\nof\tO\tof\tO\npeople\tO\tpeople\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nplagued\tO\tplagued\tO\nwith\tO\twith\tO\nsimilar\tO\tsimilar\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nGoogle B-Application Google O\nApp I-Application App O\nEngine I-Application Engine O\nand\tO\tand\tO\njust\tO\tjust\tO\ncreated\tO\tcreated\tO\nan\tO\tan\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndownloaded\tO\tdownloaded\tO\nthe\tO\tthe\tO\nSDK B-Library SDK O\nfor\tO\tfor\tO\nPython B-Language Python O\n2.7 B-Version 2.7 O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndeployed\tO\tdeployed\tO\nthe\tO\tthe\tO\nHello B-Value Hello O\n, I-Value , O\nWorld I-Value World O\n! I-Value ! O\n\t\nto\tO\tto\tO\nthe\tO\tthe\tO\nsupplied\tO\tsupplied\tO\nappspot.com\tO\tappspot.com\tO\naddress\tO\taddress\tO\nand\tO\tand\tO\nit\tO\tit\tO\nprints\tO\tprints\tO\nhello B-Value hello O\nworld I-Value world O\njust\tO\tjust\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nlocalhost\tO\tlocalhost\tO\nit\tO\tit\tO\ngives\tO\tgives\tO\na\tO\ta\tO\n500 B-Error_Name 500 O\nserver\tO\tserver\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ndifferent\tO\tdifferent\tO\napplications\tO\tapplications\tO\nand\tO\tand\tO\nmessing\tO\tmessing\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nport\tO\tport\tO\nsettings\tO\tsettings\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\napp.yaml B-File_Name app.yaml O\nfile\tO\tfile\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nmain.py B-File_Name main.py O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nStill\tO\tStill\tO\ncant\tO\tcant\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nIm\tO\tIm\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nan\tO\tan\tO\nMac B-Device Mac O\nand\tO\tand\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\ndownload\tO\tdownload\tO\nand\tO\tand\tO\ninstall\tO\tinstall\tO\nPython B-Language Python O\n2.7 B-Version 2.7 O\nto\tO\tto\tO\nensure\tO\tensure\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\n.\tO\t.\tO\n\t\nIm\tO\tIm\tO\nalso\tO\talso\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nPython B-Language Python O\nand\tO\tand\tO\nApp B-Application App O\nEngine I-Application Engine O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nworld\tO\tworld\tO\nof\tO\tof\tO\nPHP B-Language PHP O\nand\tO\tand\tO\nXAMPP B-Application XAMPP O\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10908029\tO\t10908029\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10908029/\tO\thttps://stackoverflow.com/questions/10908029/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\ntry\tO\ttry\tO\nPython B-Language Python O\n2.7.4 B-Version 2.7.4 O\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nGoogle B-Website Google O\nlinks\tO\tlinks\tO\nto\tO\tto\tO\nand\tO\tand\tO\nrun\tO\trun\tO\na\tO\ta\tO\nPHP B-Language PHP O\nversion\tO\tversion\tO\ncompiled\tO\tcompiled\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nmodules\tO\tmodules\tO\nand\tO\tand\tO\noption\tO\toption\tO\nthat\tO\tthat\tO\nGAE B-Library GAE O\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nvideo B-File_Type video O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\n\t\nhttp://www.youtube.com/watch?v=IFuNNddWQIo\tO\thttp://www.youtube.com/watch?v=IFuNNddWQIo\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24879353\tO\t24879353\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24879353/\tO\thttps://stackoverflow.com/questions/24879353/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nXML B-Language XML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2801 I-Code_Block Q_2801 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\ntag\tO\ttag\tO\n\"\tO\t\"\tO\nstatus B-HTML_XML_Tag status O\n\"\tO\t\"\tO\nto\tO\tto\tO\n\" B-Value \" O\nNEW I-Value NEW O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\njava B-Language java O\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2802 I-Code_Block Q_2802 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nstatus B-HTML_XML_Tag status O\ntag\tO\ttag\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nchanged\tO\tchanged\tO\nin\tO\tin\tO\nXML B-Language XML O\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24879353\tO\t24879353\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24879353/\tO\thttps://stackoverflow.com/questions/24879353/\tO\n\t\n\t\nThe\tO\tThe\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nwritten\tO\twritten\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nMay\tO\tMay\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nchecking\tO\tchecking\tO\nweather\tO\tweather\tO\nits\tO\tits\tO\nworking\tO\tworking\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ngone\tO\tgone\tO\nthrough\tO\tthrough\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nchecking\tO\tchecking\tO\nthe\tO\tthe\tO\nupdate\tO\tupdate\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nXML B-Language XML O\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nany\tO\tany\tO\ndoubts\tO\tdoubts\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\npost\tO\tpost\tO\nimages B-User_Interface_Element images O\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nreputation\tO\treputation\tO\nscore\tO\tscore\tO\notherwise\tO\totherwise\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nshown\tO\tshown\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nfrom\tO\tfrom\tO\neclipse B-Application eclipse O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24879353\tO\t24879353\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24879353/\tO\thttps://stackoverflow.com/questions/24879353/\tO\n\t\n\t\nTry\tO\tTry\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nif(\"status\".equalsIgnoreCase((nNode.getNodeName()))) B-Code_Block if(\"status\".equalsIgnoreCase((nNode.getNodeName()))) B-Code_Block\n{ I-Code_Block { I-Code_Block\nnNode.setTextContent(\"2000000\") I-Code_Block nNode.setTextContent(\"2000000\") I-Code_Block\n; I-Code_Block ; I-Code_Block\n} I-Code_Block } I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45040320\tO\t45040320\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45040320/\tO\thttps://stackoverflow.com/questions/45040320/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npreppend\tO\tpreppend\tO\n<span>word</span> B-Code_Block <span>word</span> B-Code_Block\ntags\tO\ttags\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\ntree B-Data_Structure tree O\nleaf\tO\tleaf\tO\nnodes B-Class nodes O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntree B-Data_Structure tree O\nnode B-Class node O\nis\tO\tis\tO\nloaded\tO\tloaded\tO\nasynchronously\tO\tasynchronously\tO\nand\tO\tand\tO\nit\tO\tit\tO\nbecomes\tO\tbecomes\tO\nimpossible\tO\timpossible\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\non\tO\ton\tO\nload B-Class load O\nevent I-Class event O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nnode.rendered B-Function node.rendered B-Code_Block\nand\tO\tand\tO\nnode.childrenrendered B-Function node.childrenrendered B-Code_Block\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nelements\tO\telements\tO\nare\tO\tare\tO\nloaded\tO\tloaded\tO\nat\tO\tat\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nkeeping\tO\tkeeping\tO\nan\tO\tan\tO\napprox\tO\tapprox\tO\ntimeout\tO\ttimeout\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5869 I-Code_Block Q_5869 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEven\tO\tEven\tO\nthough\tO\tthough\tO\nthis\tO\tthis\tO\nsolution\tO\tsolution\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsatisfied\tO\tsatisfied\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\ntheir\tO\ttheir\tO\nis\tO\tis\tO\nan\tO\tan\tO\nevent B-Class event B-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\nfired\tO\tfired\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nnode\tO\tnode\tO\nis\tO\tis\tO\nrendered\tO\trendered\tO\nin\tO\tin\tO\nUI\tO\tUI\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nload B-Class load B-Code_Block\nevent I-Class event O\nfor\tO\tfor\tO\nloading\tO\tloading\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nload B-Class load O\nevent I-Class event O\nalready\tO\talready\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nPretty\tO\tPretty\tO\nmuch\tO\tmuch\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\nload\tO\tload\tO\nhappens\tO\thappens\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nnode\tO\tnode\tO\nis\tO\tis\tO\nrendered\tO\trendered\tO\nin\tO\tin\tO\nUI\tO\tUI\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\nor\tO\tor\tO\nsuggestions\tO\tsuggestions\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45188070\tO\t45188070\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45188070/\tO\thttps://stackoverflow.com/questions/45188070/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nQuery B-Class Query O\nthat\tO\tthat\tO\nexcludes\tO\texcludes\tO\nresults\tO\tresults\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nArray B-Data_Structure Array O\nwhen\tO\twhen\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\nString B-Data_Type String O\nsent\tO\tsent\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nQuery B-Class Query O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\nArrays B-Data_Structure Arrays O\n\t\nArray B-Variable Array O\n1 I-Variable 1 O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5886 I-Code_Block Q_5886 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nArray B-Variable Array O\n2 I-Variable 2 O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5887 I-Code_Block Q_5887 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nexclude\tO\texclude\tO\nJUST\tO\tJUST\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\none\tO\tone\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5888 I-Code_Block Q_5888 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\neither\tO\teither\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5889 I-Code_Block Q_5889 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ntime\tO\ttime\tO\n!\tO\t!\tO\n\t\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45188070\tO\t45188070\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45188070/\tO\thttps://stackoverflow.com/questions/45188070/\tO\n\t\n\t\nOk\tO\tOk\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsolved\tO\tsolved\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6547 I-Code_Block A_6547 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15845547\tO\t15845547\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15845547/\tO\thttps://stackoverflow.com/questions/15845547/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\na\tO\ta\tO\nexplosion B-User_Interface_Element explosion O\nto\tO\tto\tO\nplay\tO\tplay\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nobject\tO\tobject\tO\nhits\tO\thits\tO\nanother\tO\tanother\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nhitTestObject B-Variable hitTestObject O\nis\tO\tis\tO\ntrue\tO\ttrue\tO\n,\tO\t,\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthis\tO\tthis\tO\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1564 I-Code_Block Q_1564 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nExplosion B-Class Explosion O\nclass\tO\tclass\tO\nonly\tO\tonly\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nto\tO\tto\tO\nit\tO\tit\tO\n's\tO\t's\tO\nx B-Variable x O\nand\tO\tand\tO\ny B-Variable y O\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nin\tO\tin\tO\nexplosion B-Variable explosion O\nmovieclip\tO\tmovieclip\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nframes\tO\tframes\tO\nof\tO\tof\tO\na\tO\ta\tO\nanimation\tO\tanimation\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nends\tO\tends\tO\nin\tO\tin\tO\na\tO\ta\tO\nkeyframe\tO\tkeyframe\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n,\tO\t,\tO\nas\tO\tas\tO\nan\tO\tan\tO\naction\tO\taction\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nframe\tO\tframe\tO\n)\tO\t)\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1565 I-Code_Block Q_1565 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nreally\tO\treally\tO\ngone\tO\tgone\tO\nnow\tO\tnow\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nstop() B-Function stop() O\nto\tO\tto\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\nerror\tO\terror\tO\n1009 B-Error_Name 1009 O\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nmakes\tO\tmakes\tO\nme\tO\tme\tO\nsuspect\tO\tsuspect\tO\nsome\tO\tsome\tO\nevent\tO\tevent\tO\ntimer\tO\ttimer\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nrunning\tO\trunning\tO\naround\tO\taround\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15845547\tO\t15845547\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15845547/\tO\thttps://stackoverflow.com/questions/15845547/\tO\n\t\n\t\nRemoving\tO\tRemoving\tO\na\tO\ta\tO\ndisplay\tO\tdisplay\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndisplay\tO\tdisplay\tO\nlist B-Data_Structure list O\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\nanimation\tO\tanimation\tO\nor\tO\tor\tO\nremove\tO\tremove\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\njust\tO\tjust\tO\nremoves\tO\tremoves\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndisplay\tO\tdisplay\tO\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\nanimation\tO\tanimation\tO\nand\tO\tand\tO\nremove\tO\tremove\tO\nany\tO\tany\tO\nevent B-Class event O\nlisteners\tO\tlisteners\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nactive\tO\tactive\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\ndisplay\tO\tdisplay\tO\nobject\tO\tobject\tO\nis\tO\tis\tO\nnever\tO\tnever\tO\ntruly\tO\ttruly\tO\ngone\tO\tgone\tO\nuntil\tO\tuntil\tO\nit\tO\tit\tO\nis\tO\tis\tO\ngarbage\tO\tgarbage\tO\ncollected\tO\tcollected\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nhappen\tO\thappen\tO\nuntil\tO\tuntil\tO\nno\tO\tno\tO\nreferences\tO\treferences\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nobject\tO\tobject\tO\nremain\tO\tremain\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\ncalled\tO\tcalled\tO\nexplosion B-Variable explosion O\nthat\tO\tthat\tO\nreferences\tO\treferences\tO\nyour\tO\tyour\tO\ndisplay\tO\tdisplay\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nit\tO\tit\tO\nto\tO\tto\tO\nnull B-Value null O\nafter\tO\tafter\tO\nremoving\tO\tremoving\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndisplay\tO\tdisplay\tO\nlist B-Data_Structure list O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2053 I-Code_Block A_2053 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nimmediately\tO\timmediately\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nmemory\tO\tmemory\tO\n,\tO\t,\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nmakes\tO\tmakes\tO\nit\tO\tit\tO\nfair\tO\tfair\tO\ngame\tO\tgame\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ngarbage\tO\tgarbage\tO\ncollector\tO\tcollector\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ngoogle\tO\tgoogle\tO\n\"\tO\t\"\tO\nAS3 B-Language AS3 O\nGarbage\tO\tGarbage\tO\nCollection\tO\tCollection\tO\n\"\tO\t\"\tO\nto\tO\tto\tO\nget\tO\tget\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nthat\tO\tthat\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48586510\tO\t48586510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48586510/\tO\thttps://stackoverflow.com/questions/48586510/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nchange\tO\tchange\tO\nionic B-User_Interface_Element ionic O\ntabs I-User_Interface_Element tabs O\nroot I-User_Interface_Element root O\npage I-User_Interface_Element page O\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\ndash B-User_Interface_Element dash O\nboard I-User_Interface_Element board O\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nmy\tO\tmy\tO\nTabs.ts B-File_Name Tabs.ts O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6468 I-Code_Block Q_6468 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ntabs.html B-File_Name tabs.html O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6469 I-Code_Block Q_6469 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nmy\tO\tmy\tO\nhome.ts B-File_Name home.ts O\nfile\tO\tfile\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6470 I-Code_Block Q_6470 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nhome.html B-File_Name home.html O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6471 I-Code_Block Q_6471 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\ntab B-User_Interface_Element tab O\nroot\tO\troot\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclick\tO\tclick\tO\ndashboard B-User_Interface_Element dashboard O\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nhome.html B-File_Name home.html O\nit\tO\tit\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntab B-User_Interface_Element tab O\nroot\tO\troot\tO\nto\tO\tto\tO\ndashboard B-User_Interface_Element dashboard O\npage I-User_Interface_Element page O\nand\tO\tand\tO\nselect\tO\tselect\tO\ndashboard B-User_Interface_Element dashboard O\n.\tO\t.\tO\n\t\nif\tO\tif\tO\npress\tO\tpress\tO\npress\tO\tpress\tO\ntraining\tO\ttraining\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\nto\tO\tto\tO\ntraining\tO\ttraining\tO\npage B-User_Interface_Element page O\nand\tO\tand\tO\nalso\tO\talso\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntab B-User_Interface_Element tab O\nroot\tO\troot\tO\nto\tO\tto\tO\ntrainning\tO\ttrainning\tO\npage B-User_Interface_Element page O\nans\tO\tans\tO\nselect\tO\tselect\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48586510\tO\t48586510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48586510/\tO\thttps://stackoverflow.com/questions/48586510/\tO\n\t\n\t\nyea\tO\tyea\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ninside\tO\tinside\tO\nyour\tO\tyour\tO\ntabs.html B-File_Name tabs.html O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7106 I-Code_Block A_7106 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ninside\tO\tinside\tO\nyour\tO\tyour\tO\ntabs.ts B-File_Name tabs.ts O\nfile\tO\tfile\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7107 I-Code_Block A_7107 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nin\tO\tin\tO\nother\tO\tother\tO\nway\tO\tway\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\nthis.navCtrl.push(TrainingPage,this.token) B-Function this.navCtrl.push(TrainingPage,this.token) B-Code_Block\n; I-Function ; I-Code_Block\nuse\tO\tuse\tO\nthis.navCtrl.select B-Function this.navCtrl.select B-Code_Block\n( I-Function ( I-Code_Block\n\" I-Function \" I-Code_Block\n1 I-Function 1 I-Code_Block\n\" I-Function \" I-Code_Block\n, I-Function , I-Code_Block\nthis.token I-Function this.token I-Code_Block\n) I-Function ) I-Code_Block\n; I-Function ; I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48586510\tO\t48586510\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48586510/\tO\thttps://stackoverflow.com/questions/48586510/\tO\n\t\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nsee\tO\tsee\tO\none\tO\tone\tO\nway\tO\tway\tO\nto\tO\tto\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\n&\tO\t&\tO\nit\tO\tit\tO\n's\tO\t's\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npage B-User_Interface_Element page O\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7108 I-Code_Block A_7108 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21302564\tO\t21302564\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21302564/\tO\thttps://stackoverflow.com/questions/21302564/\tO\n\t\n\t\nWe\tO\tWe\tO\ndevelop\tO\tdevelop\tO\nwith\tO\twith\tO\nXamarin.iOS B-Application Xamarin.iOS O\nand\tO\tand\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsearch/highlight\tO\tsearch/highlight\tO\nin\tO\tin\tO\na\tO\ta\tO\nPDF B-File_Type PDF O\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nan\tO\tan\tO\niOS B-Operating_System iOS O\nclass\tO\tclass\tO\nfor\tO\tfor\tO\nsearching\tO\tsearching\tO\n,\tO\t,\tO\nCGPDFScanner B-Class CGPDFScanner O\n,\tO\t,\tO\nbut\tO\tbut\tO\nunfortunately\tO\tunfortunately\tO\nno\tO\tno\tO\nbindings\tO\tbindings\tO\nare\tO\tare\tO\noffered\tO\toffered\tO\nby\tO\tby\tO\nXamarin B-Application Xamarin O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nor\tO\tor\tO\nwe\tO\twe\tO\nshould\tO\tshould\tO\nforget\tO\tforget\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nWe\tO\tWe\tO\nbelieve\tO\tbelieve\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nbindings\tO\tbindings\tO\nfor\tO\tfor\tO\nexisting\tO\texisting\tO\niOS B-Operating_System iOS O\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nwe\tO\twe\tO\ncould\tO\tcould\tO\nprobably\tO\tprobably\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nPDFKitten B-Library PDFKitten O\n,\tO\t,\tO\nand\tO\tand\tO\nmake\tO\tmake\tO\nXamarin B-Application Xamarin O\nbindings\tO\tbindings\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhints\tO\thints\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21302564\tO\t21302564\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21302564/\tO\thttps://stackoverflow.com/questions/21302564/\tO\n\t\n\t\nXamarin B-Application Xamarin O\noffers\tO\toffers\tO\nway\tO\tway\tO\nfor\tO\tfor\tO\ncreating\tO\tcreating\tO\nbinding\tO\tbinding\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\nworking\tO\tworking\tO\nand\tO\tand\tO\ntested\tO\ttested\tO\nsolution\tO\tsolution\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nObjective B-Language Objective O\nC I-Language C O\n,\tO\t,\tO\ncreate\tO\tcreate\tO\nBinding\tO\tBinding\tO\nlibrary\tO\tlibrary\tO\nin\tO\tin\tO\ntamarin B-Application tamarin O\nand\tO\tand\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncheck\tO\tcheck\tO\ndetailed\tO\tdetailed\tO\ndocument\tO\tdocument\tO\nof\tO\tof\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nhere\tO\there\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\nbinding\tO\tbinding\tO\nlibrary\tO\tlibrary\tO\nfor\tO\tfor\tO\none\tO\tone\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nintegrate\tO\tintegrate\tO\nthird\tO\tthird\tO\nparty\tO\tparty\tO\nsdk B-Application sdk O\nwhich\tO\twhich\tO\nwas\tO\twas\tO\nonly\tO\tonly\tO\nin\tO\tin\tO\nobjective B-Language objective O\nC I-Language C O\n.\tO\t.\tO\nI\tO\tI\tO\nfollowed\tO\tfollowed\tO\nstep\tO\tstep\tO\ngiven\tO\tgiven\tO\nhere\tO\there\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48274414\tO\t48274414\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48274414/\tO\thttps://stackoverflow.com/questions/48274414/\tO\n\t\n\t\nIn\tO\tIn\tO\nCakePHP B-Library CakePHP O\n2.x B-Version 2.x O\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\noutput\tO\toutput\tO\npagination\tO\tpagination\tO\nin\tO\tin\tO\nBootstrap B-Library Bootstrap O\n3 B-Version 3 O\nperfectly\tO\tperfectly\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6423 I-Code_Block Q_6423 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\noutput\tO\toutput\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6424 I-Code_Block Q_6424 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\nBootstrap B-Library Bootstrap O\n4 B-Version 4 O\nBeta\tO\tBeta\tO\nis\tO\tis\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nwith\tO\twith\tO\nclass\tO\tclass\tO\ninside\tO\tinside\tO\neach\tO\teach\tO\nelement\tO\telement\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6425 I-Code_Block Q_6425 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\nto\tO\tto\tO\nset\tO\tset\tO\noptions\tO\toptions\tO\nof\tO\tof\tO\nPaginator B-Library Paginator O\nin\tO\tin\tO\nCakePHP B-Library CakePHP O\n2.x B-Version 2.x O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18652926\tO\t18652926\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18652926/\tO\thttps://stackoverflow.com/questions/18652926/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nfacing\tO\tfacing\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nasp.net B-Library asp.net O\napplication\tO\tapplication\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nupdate B-Class update O\npanel I-Class panel O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nonly\tO\tonly\tO\nwith\tO\twith\tO\nIE9 B-Application IE9 O\nand\tO\tand\tO\nfor\tO\tfor\tO\nother\tO\tother\tO\nbrowser B-Application browser O\napplication\tO\tapplication\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ndebuging\tO\tdebuging\tO\npurpose\tO\tpurpose\tO\nand\tO\tand\tO\nto\tO\tto\tO\nconclude\tO\tconclude\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nonly\tO\tonly\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nupdate B-Class update O\npanel I-Class panel O\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nasp.net B-Library asp.net O\nweb\tO\tweb\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nASPX B-File_Type ASPX O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1934 I-Code_Block Q_1934 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbutton\tO\tbutton\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nJS B-Language JS O\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nJS B-Language JS O\nerror\tO\terror\tO\nis\tO\tis\tO\n\t\nFrom\tO\tFrom\tO\nIE B-Application IE O\n's\tO\t's\tO\nF12 B-Application F12 O\ndeveloper I-Application developer O\ntool I-Application tool O\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1935 I-Code_Block Q_1935 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFrom\tO\tFrom\tO\nVisual B-Application Visual O\nStudio I-Application Studio O\n2012 B-Version 2012 O\n,\tO\t,\tO\n\t\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nupdate B-Class update O\npanel I-Class panel O\n,\tO\t,\tO\nthe\tO\tthe\tO\nJS B-Language JS O\nerror\tO\terror\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18652926\tO\t18652926\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18652926/\tO\thttps://stackoverflow.com/questions/18652926/\tO\n\t\n\t\nAdd\tO\tAdd\tO\nfollowing\tO\tfollowing\tO\nline\tO\tline\tO\nin\tO\tin\tO\n<head> B-HTML_XML_Tag <head> B-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2447 I-Code_Block A_2447 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOR\tO\tOR\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2448 I-Code_Block A_2448 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOR\tO\tOR\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2449 I-Code_Block A_2449 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46973946\tO\t46973946\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46973946/\tO\thttps://stackoverflow.com/questions/46973946/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndownload\tO\tdownload\tO\n20\tO\t20\tO\nimages B-User_Interface_Element images O\nfrom\tO\tfrom\tO\nremote\tO\tremote\tO\nserver B-Application server O\nand\tO\tand\tO\nstore\tO\tstore\tO\nin\tO\tin\tO\nAndroid B-File_Name Android O\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nInterface\tO\tInterface\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6214 I-Code_Block Q_6214 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nfragment\tO\tfragment\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6215 I-Code_Block Q_6215 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nI\tO\tI\tO\niterate\tO\titerate\tO\nloop\tO\tloop\tO\nand\tO\tand\tO\ncall\tO\tcall\tO\ncall.enqueue() B-Function call.enqueue() B-Code_Block\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nimage B-User_Interface_Element image O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\ngood\tO\tgood\tO\nsolution\tO\tsolution\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nperform\tO\tperform\tO\nmy\tO\tmy\tO\nandroid B-Operating_System android O\napp\tO\tapp\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46973946\tO\t46973946\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46973946/\tO\thttps://stackoverflow.com/questions/46973946/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ndependencies\tO\tdependencies\tO\nlike\tO\tlike\tO\nGlide B-Class Glide O\n,\tO\t,\tO\nPissaco B-Class Pissaco O\netc\tO\tetc\tO\nfor\tO\tfor\tO\ndownloading\tO\tdownloading\tO\nimages B-User_Interface_Element images O\nfrom\tO\tfrom\tO\nremote\tO\tremote\tO\nserver B-Application server O\n.\tO\t.\tO\n\t\nBecause\tO\tBecause\tO\nthese\tO\tthese\tO\nprovide\tO\tprovide\tO\nbetter\tO\tbetter\tO\ncaching\tO\tcaching\tO\nand\tO\tand\tO\nerror\tO\terror\tO\nhandling\tO\thandling\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nPissaco B-Class Pissaco O\nto\tO\tto\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\n\t\nFirst\tO\tFirst\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nPissaco B-Class Pissaco O\ndependency\tO\tdependency\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nbuild.gradle B-Function build.gradle B-Code_Block\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6834 I-Code_Block A_6834 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38534653\tO\t38534653\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38534653/\tO\thttps://stackoverflow.com/questions/38534653/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nquestuion\tO\tquestuion\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\narticle B-Class article O\nwith\tO\twith\tO\nrepeatable\tO\trepeatable\tO\nproperty\tO\tproperty\tO\ntags B-Variable tags O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ni\tO\ti\tO\nediting\tO\tediting\tO\nexist\tO\texist\tO\narticle B-Class article O\nand\tO\tand\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\ntags B-Variable tags O\nall\tO\tall\tO\nis\tO\tis\tO\nok\tO\tok\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\na\tO\ta\tO\nremove\tO\tremove\tO\ntag B-Variable tag O\nfrom\tO\tfrom\tO\nform B-Variable form O\nin\tO\tin\tO\narticle B-Class article O\nthis\tO\tthis\tO\ntag B-Variable tag O\nstill\tO\tstill\tO\nexists\tO\texists\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\ni\tO\ti\tO\nunderstand\tO\tunderstand\tO\npost\tO\tpost\tO\ndata\tO\tdata\tO\nbinding\tO\tbinding\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nform B-Variable form O\nand\tO\tand\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nentity\tO\tentity\tO\n.\tO\t.\tO\n\t\nThats\tO\tThats\tO\nway\tO\tway\tO\nnew\tO\tnew\tO\ntags B-Variable tags O\nappear\tO\tappear\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmaterial\tO\tmaterial\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhy\tO\twhy\tO\ndid\tO\tdid\tO\nthey\tO\tthey\tO\nnot\tO\tnot\tO\ndisappear\tO\tdisappear\tO\nafter\tO\tafter\tO\nbinding\tO\tbinding\tO\nnew\tO\tnew\tO\npost\tO\tpost\tO\ndata\tO\tdata\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4855 I-Code_Block Q_4855 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nUPDATE\tO\tUPDATE\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nArticle B-Class Article O\nentity\tO\tentity\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4856 I-Code_Block Q_4856 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nArticleType B-Class ArticleType O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4857 I-Code_Block Q_4857 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38534653\tO\t38534653\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38534653/\tO\thttps://stackoverflow.com/questions/38534653/\tO\n\t\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nadd B-Function add O\ntag I-Function tag O\nand\tO\tand\tO\nremove B-Function remove O\ntag I-Function tag O\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nArticle B-Class Article O\nentity\tO\tentity\tO\nto\tO\tto\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5570 I-Code_Block A_5570 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44606362\tO\t44606362\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44606362/\tO\thttps://stackoverflow.com/questions/44606362/\tO\n\t\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ntry B-Code_Block try O\ncatch I-Code_Block catch O\nblock\tO\tblock\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5798 I-Code_Block Q_5798 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nwhich\tO\twhich\tO\nexception B-Class exception O\ntype\tO\ttype\tO\nit\tO\tit\tO\nis\tO\tis\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nmay\tO\tmay\tO\nthrow\tO\tthrow\tO\nmultiple\tO\tmultiple\tO\nexception B-Class exception O\ntypes\tO\ttypes\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2435111\tO\t2435111\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2435111/\tO\thttps://stackoverflow.com/questions/2435111/\tO\n\t\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nlighter\tO\tlighter\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nan\tO\tan\tO\nEntity\tO\tEntity\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\njust\tO\tjust\tO\nfor\tO\tfor\tO\nperformance\tO\tperformance\tO\nreason\tO\treason\tO\npointing\tO\tpointing\tO\nto\tO\tto\tO\nsame\tO\tsame\tO\ntable B-Data_Structure table O\nbut\tO\tbut\tO\nwith\tO\twith\tO\nfewer\tO\tfewer\tO\ncolumns B-Data_Structure columns O\nmapped\tO\tmapped\tO\n.\tO\t.\tO\n\t\nE.g\tO\tE.g\tO\nIf\tO\tIf\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nContact\tO\tContact\tO\nTable B-Data_Structure Table O\nwhich\tO\twhich\tO\nhas\tO\thas\tO\n50\tO\t50\tO\nColumns B-Data_Structure Columns O\nand\tO\tand\tO\nin\tO\tin\tO\nfew\tO\tfew\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrelated\tO\trelated\tO\nentities\tO\tentities\tO\nI\tO\tI\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\ninterested\tO\tinterested\tO\nin\tO\tin\tO\nFirstName B-Variable FirstName O\nand\tO\tand\tO\nLastName B-Variable LastName O\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nit\tO\tit\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nlightweight\tO\tlightweight\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nContact\tO\tContact\tO\ntable B-Data_Structure table O\n.\tO\t.\tO\n\t\nE.g\tO\tE.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_163 I-Code_Block Q_163 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlso\tO\tAlso\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nmultiple\tO\tmultiple\tO\nclasses\tO\tclasses\tO\nto\tO\tto\tO\nsame\tO\tsame\tO\ntable B-Data_Structure table O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2435111\tO\t2435111\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2435111/\tO\thttps://stackoverflow.com/questions/2435111/\tO\n\t\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nmap\tO\tmap\tO\nmultiple\tO\tmultiple\tO\nclasses\tO\tclasses\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntable B-Data_Structure table O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\nonce\tO\tonce\tO\nand\tO\tand\tO\nthough\tO\tthough\tO\nit\tO\tit\tO\nworked\tO\tworked\tO\nfor\tO\tfor\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ndoing\tO\tdoing\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nbitten\tO\tbitten\tO\nme\tO\tme\tO\nlater\tO\tlater\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nprojections\tO\tprojections\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nlight\tO\tlight\tO\n\"\tO\t\"\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2435111\tO\t2435111\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2435111/\tO\thttps://stackoverflow.com/questions/2435111/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\nalways\tO\talways\tO\nmap\tO\tmap\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\nsmaller\tO\tsmaller\tO\nones\tO\tones\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nproject\tO\tproject\tO\non\tO\ton\tO\nusing\tO\tusing\tO\nTransformers.AliasToBean B-Function Transformers.AliasToBean B-Code_Block\nor\tO\tor\tO\nLINQ B-Language LINQ O\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlatter\tO\tlatter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_241 I-Code_Block A_241 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nonly\tO\tonly\tO\nselect\tO\tselect\tO\nthose\tO\tthose\tO\nthree\tO\tthree\tO\nfields\tO\tfields\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nDB\tO\tDB\tO\n,\tO\t,\tO\neven\tO\teven\tO\nwhen\tO\twhen\tO\nfiltering\tO\tfiltering\tO\nby\tO\tby\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nworth\tO\tworth\tO\nnoting\tO\tnoting\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nLINQ B-Language LINQ O\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nanonymous\tO\tanonymous\tO\ntype\tO\ttype\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\nany\tO\tany\tO\nprojection\tO\tprojection\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nwithout\tO\twithout\tO\ncreating\tO\tcreating\tO\nadditional\tO\tadditional\tO\ntypes\tO\ttypes\tO\nor\tO\tor\tO\nmappings\tO\tmappings\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37080078\tO\t37080078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37080078/\tO\thttps://stackoverflow.com/questions/37080078/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nGoogle B-Language Google O\nScript I-Language Script O\nto\tO\tto\tO\nsend\tO\tsend\tO\nuser\tO\tuser\tO\ninformation\tO\tinformation\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nHTML B-File_Type HTML O\nform\tO\tform\tO\nto\tO\tto\tO\nGoogle B-Application Google O\nDrive I-Application Drive O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\na\tO\ta\tO\nversion\tO\tversion\tO\nthat\tO\tthat\tO\nworked\tO\tworked\tO\nwell\tO\twell\tO\nenough\tO\tenough\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nonclick\tO\tonclick\tO\nevent\tO\tevent\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nfunctionality\tO\tfunctionality\tO\nthat\tO\tthat\tO\nensured\tO\tensured\tO\nall\tO\tall\tO\nrequired\tO\trequired\tO\nfields\tO\tfields\tO\nwere\tO\twere\tO\nfilled\tO\tfilled\tO\nin\tO\tin\tO\nbefore\tO\tbefore\tO\nsubmission\tO\tsubmission\tO\n.\tO\t.\tO\n\t\nResearch\tO\tResearch\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\nsuggested\tO\tsuggested\tO\nonsubmit\tO\tonsubmit\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\ntag\tO\ttag\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nmodified\tO\tmodified\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nonsubmit\tO\tonsubmit\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\nthat\tO\tthat\tO\nappears\tO\tappears\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nhappens\tO\thappens\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\non\tO\ton\tO\nsubmission\tO\tsubmission\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\ncompletely\tO\tcompletely\tO\ndisappears\tO\tdisappears\tO\nand\tO\tand\tO\nno\tO\tno\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nDrive B-Application Drive O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\nonsubmit\tO\tonsubmit\tO\nrefreshes\tO\trefreshes\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n...\tO\t...\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nit\tO\tit\tO\nto\tO\tto\tO\nalso\tO\talso\tO\nrecreate\tO\trecreate\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\npage\tO\tpage\tO\nminus\tO\tminus\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n,\tO\t,\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\nmessage\tO\tmessage\tO\nabout\tO\tabout\tO\nsuccessful\tO\tsuccessful\tO\nupload\tO\tupload\tO\n.\tO\t.\tO\n\t\nFile\tO\tFile\tO\nsubmission\tO\tsubmission\tO\nalso\tO\talso\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nappreciate\tO\tappreciate\tO\nany\tO\tany\tO\nthoughts\tO\tthoughts\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nposts\tO\tposts\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nvery\tO\tvery\tO\nsimilar\tO\tsimilar\tO\nquestions\tO\tquestions\tO\nand\tO\tand\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\nluck\tO\tluck\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4612 I-Code_Block Q_4612 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nJavaScript B-Language JavaScript O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4613 I-Code_Block Q_4613 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37080078\tO\t37080078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37080078/\tO\thttps://stackoverflow.com/questions/37080078/\tO\n\t\n\t\nAnother\tO\tAnother\tO\nnote\tO\tnote\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ninputs\tO\tinputs\tO\nshare\tO\tshare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nID B-Variable ID O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nID B-Variable ID O\nand\tO\tand\tO\nname\tO\tname\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nmake\tO\tmake\tO\nthem\tO\tthem\tO\nmatch\tO\tmatch\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\ngive\tO\tgive\tO\nthe\tO\tthe\tO\nsubmit\tO\tsubmit\tO\nbutton\tO\tbutton\tO\nan\tO\tan\tO\nID\tO\tID\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nalso\tO\talso\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nHTML5 B-Language HTML5 O\nform\tO\tform\tO\ninput\tO\tinput\tO\nvalidation\tO\tvalidation\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nmostly\tO\tmostly\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nbrowsers B-Application browsers O\n,\tO\t,\tO\nbut\tO\tbut\tO\nultimately\tO\tultimately\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\njavascript B-Language javascript O\n(\tO\t(\tO\nclient-side B-Application client-side O\n)\tO\t)\tO\nand\tO\tand\tO\nserver B-Application server O\nside\tO\tside\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\nyour\tO\tyour\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5321 I-Code_Block A_5321 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30308968\tO\t30308968\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30308968/\tO\thttps://stackoverflow.com/questions/30308968/\tO\n\t\n\t\nWith\tO\tWith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nscript\tO\tscript\tO\n,\tO\t,\tO\nI\tO\tI\tO\nsplit\tO\tsplit\tO\ntext\tO\ttext\tO\ninto\tO\tinto\tO\nsentences\tO\tsentences\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncreate\tO\tcreate\tO\nimages B-User_Interface_Element images O\ndynamically\tO\tdynamically\tO\nfrom\tO\tfrom\tO\neach\tO\teach\tO\nsentence\tO\tsentence\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nfor\tO\tfor\tO\nloop\tO\tloop\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexecuting\tO\texecuting\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nimage B-User_Interface_Element image O\ncreation\tO\tcreation\tO\nfunction\tO\tfunction\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\nonly\tO\tonly\tO\nonce\tO\tonce\tO\n,\tO\t,\tO\ncreating\tO\tcreating\tO\njust\tO\tjust\tO\none\tO\tone\tO\nimage B-User_Interface_Element image O\n,\tO\t,\tO\ndespite\tO\tdespite\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\ncontains\tO\tcontains\tO\n4\tO\t4\tO\ndistinct\tO\tdistinct\tO\nsentences\tO\tsentences\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npurpose\tO\tpurpose\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\ncreating\tO\tcreating\tO\nfour\tO\tfour\tO\nimages B-User_Interface_Element images O\nand\tO\tand\tO\nsaving\tO\tsaving\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nhard B-Device hard O\ndrive I-Device drive O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nyour\tO\tyour\tO\nsuggestions\tO\tsuggestions\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3639 I-Code_Block Q_3639 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30308968\tO\t30308968\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30308968/\tO\thttps://stackoverflow.com/questions/30308968/\tO\n\t\n\t\nAll\tO\tAll\tO\nthe\tO\tthe\tO\nimages B-User_Interface_Element images O\nare\tO\tare\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfilename\tO\tfilename\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nruns\tO\truns\tO\nfast\tO\tfast\tO\nenough\tO\tenough\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntime() B-Function time() B-Code_Block\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nin\tO\tin\tO\nseconds\tO\tseconds\tO\n)\tO\t)\tO\nis\tO\tis\tO\ngiving\tO\tgiving\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\n4\tO\t4\tO\ntimes\tO\ttimes\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\noverwriting\tO\toverwriting\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfile\tO\tfile\tO\n4\tO\t4\tO\ntimes\tO\ttimes\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4307 I-Code_Block A_4307 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\nworkaround\tO\tworkaround\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nappend\tO\tappend\tO\na\tO\ta\tO\nrandom\tO\trandom\tO\nnumber\tO\tnumber\tO\nfor\tO\tfor\tO\nuniqueness\tO\tuniqueness\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nrand() B-Function rand() B-Code_Block\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4308 I-Code_Block A_4308 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBetter\tO\tBetter\tO\nyet\tO\tyet\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nphp B-Language php O\n's\tO\t's\tO\nbuilt-in\tO\tbuilt-in\tO\ntempnam() B-Function tempnam() B-Code_Block\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nfilename\tO\tfilename\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24511126\tO\t24511126\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24511126/\tO\thttps://stackoverflow.com/questions/24511126/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\njQuery B-Library jQuery O\nvalidation\tO\tvalidation\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nsort\tO\tsort\tO\nbanners B-User_Interface_Element banners O\non\tO\ton\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthree\tO\tthree\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nbanners B-User_Interface_Element banners O\n:\tO\t:\tO\n\t\nDefault B-Variable Default O\nBanner I-Variable Banner O\n(\tO\t(\tO\nset\tO\tset\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncompany\tO\tcompany\tO\n,\tO\t,\tO\nexisting\tO\texisting\tO\nrule\tO\trule\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nremoved\tO\tremoved\tO\nbut\tO\tbut\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsorted\tO\tsorted\tO\n)\tO\t)\tO\n\t\nSelectable B-Variable Selectable O\nBanner I-Variable Banner O\n(\tO\t(\tO\nselectable B-User_Interface_Element selectable O\nbanner I-User_Interface_Element banner O\nform\tO\tform\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nmany\tO\tmany\tO\n)\tO\t)\tO\n\t\nSpecial B-Variable Special O\nBanner I-Variable Banner O\n(\tO\t(\tO\nspecial B-User_Interface_Element special O\nbanner I-User_Interface_Element banner O\n,\tO\t,\tO\nset\tO\tset\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncompany\tO\tcompany\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\ndefault\tO\tdefault\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nremoved\tO\tremoved\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncarousel\tO\tcarousel\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nbanners\tO\tbanners\tO\ncarousel\tO\tcarousel\tO\nhas\tO\thas\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nrules\tO\trules\tO\nno\tO\tno\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\n7\tO\t7\tO\nbanners B-User_Interface_Element banners O\nare\tO\tare\tO\nallowed\tO\tallowed\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ncarousel\tO\tcarousel\tO\nand\tO\tand\tO\nfour\tO\tfour\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncustom\tO\tcustom\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfour\tO\tfour\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nbeing\tO\tbeing\tO\nselectablebanners B-Variable selectablebanners O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nlogic\tO\tlogic\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2731 I-Code_Block Q_2731 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnother\tO\tAnother\tO\nrule\tO\trule\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ndefault B-Variable default O\nbanner I-Variable banner O\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nremoved\tO\tremoved\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsorted\tO\tsorted\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nimplemented\tO\timplemented\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2732 I-Code_Block Q_2732 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n} B-Code_Block } O\n) I-Code_Block ) O\n; B-Code_Block ; O\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\namend\tO\tamend\tO\nthis\tO\tthis\tO\nslightly\tO\tslightly\tO\nbut\tO\tbut\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nbegin\tO\tbegin\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nlogic\tO\tlogic\tO\nas\tO\tas\tO\nit\tO\tit\tO\nis\tO\tis\tO\nslightly\tO\tslightly\tO\nmore\tO\tmore\tO\nadvanced\tO\tadvanced\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrule\tO\trule\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\n2\tO\t2\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\n\"\tO\t\"\tO\nselectedbanners B-Variable selectedbanners O\n\"\tO\t\"\tO\nin\tO\tin\tO\nul\tO\tul\tO\n#sortable1 B-Class #sortable1 O\nthen\tO\tthen\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nbanners\tO\tbanners\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nremoved\tO\tremoved\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nif\tO\tif\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ndefaultbanner B-Variable defaultbanner O\nand\tO\tand\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nselectablebanner B-Class selectablebanner O\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nmy\tO\tmy\tO\nprevious\tO\tprevious\tO\nvalidation\tO\tvalidation\tO\nto\tO\tto\tO\napply\tO\tapply\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ndefault B-Variable default O\nbanner I-Variable banner O\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nremoved\tO\tremoved\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\njsFiddle B-Application jsFiddle O\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nmy\tO\tmy\tO\nfull\tO\tfull\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24511126\tO\t24511126\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24511126/\tO\thttps://stackoverflow.com/questions/24511126/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\ncompletely\tO\tcompletely\tO\nclear\tO\tclear\tO\nto\tO\tto\tO\nme\tO\tme\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nbest\tO\tbest\tO\nguess\tO\tguess\tO\nas\tO\tas\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3354 I-Code_Block A_3354 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFiddle B-Application Fiddle O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2967994\tO\t2967994\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2967994/\tO\thttps://stackoverflow.com/questions/2967994/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ncurrently\tO\tcurrently\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\nwin32 B-Operating_System win32 O\nconsole B-Application console O\napplication\tO\tapplication\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nvisual B-Application visual O\nstudio I-Application studio O\nopen\tO\topen\tO\nit\tO\tit\tO\nin\tO\tin\tO\npowershell B-Application powershell O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncmd.exe B-File_Name cmd.exe O\nwhen\tO\twhen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndebugging\tO\tdebugging\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nI\tO\tI\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nis\tO\tis\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nshell B-Application shell O\n,\tO\t,\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ncopy/paste\tO\tcopy/paste\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nwithout\tO\twithout\tO\nclicking\tO\tclicking\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2967994\tO\t2967994\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2967994/\tO\thttps://stackoverflow.com/questions/2967994/\tO\n\t\n\t\nIn\tO\tIn\tO\nVisual B-Application Visual O\nStudio I-Application Studio O\ngoto\tO\tgoto\tO\nTools\tO\tTools\tO\n>\tO\t>\tO\nExternal\tO\tExternal\tO\nTools\tO\tTools\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nwindow B-User_Interface_Element window O\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nTitle\tO\tTitle\tO\nto\tO\tto\tO\nPowershell B-Application Powershell O\n.\tO\t.\tO\n\t\nSet\tO\tSet\tO\nthe\tO\tthe\tO\nPowershell B-Application Powershell O\nStartup\tO\tStartup\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nwindow B-User_Interface_Element window O\nbox I-User_Interface_Element box O\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ndump\tO\tdump\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\ntypically\tO\ttypically\tO\ngoto\tO\tgoto\tO\ncmd B-Application cmd O\ninto\tO\tinto\tO\nPowershell B-Application Powershell O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nlink\tO\tlink\tO\nwill\tO\twill\tO\nexplain\tO\texplain\tO\nit\tO\tit\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nbit\tO\tbit\tO\nmore\tO\tmore\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2967994\tO\t2967994\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2967994/\tO\thttps://stackoverflow.com/questions/2967994/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nmixing\tO\tmixing\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nNT B-Library NT O\nconsole I-Library console O\nsubsystem I-Library subsystem O\n(\tO\t(\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nframework\tO\tframework\tO\nofferring\tO\tofferring\tO\ncommon\tO\tcommon\tO\nservices\tO\tservices\tO\n)\tO\t)\tO\nwith\tO\twith\tO\ncmd.exe B-File_Name cmd.exe O\n(\tO\t(\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nconsuming\tO\tconsuming\tO\nthose\tO\tthose\tO\nservices\tO\tservices\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nWhen\tO\tWhen\tO\nvisuals B-Application visuals O\nstudio I-Application studio O\nruns\tO\truns\tO\na\tO\ta\tO\nconsole\tO\tconsole\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nactually\tO\tactually\tO\nrunning\tO\trunning\tO\nCMD B-Application CMD O\n.\tO\t.\tO\n\t\nCMD B-Application CMD O\nis\tO\tis\tO\na\tO\ta\tO\nconsole B-Application console O\napplication\tO\tapplication\tO\nitself\tO\titself\tO\n,\tO\t,\tO\nno\tO\tno\tO\ndifferent\tO\tdifferent\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\n,\tO\t,\tO\ntherefore\tO\ttherefore\tO\nrunning\tO\trunning\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\npowershell B-Application powershell O\n\"\tO\t\"\tO\nis\tO\tis\tO\nequally\tO\tequally\tO\nas\tO\tas\tO\nmistaken\tO\tmistaken\tO\na\tO\ta\tO\nconcept\tO\tconcept\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nin\tO\tin\tO\nPowerShell B-Application PowerShell O\nISE I-Application ISE O\n, I-Application , O\nthis\tO\tthis\tO\nis\tO\tis\tO\nimpossible\tO\timpossible\tO\n.\tO\t.\tO\n\t\nISE B-Application ISE O\nis\tO\tis\tO\na\tO\ta\tO\nWindows B-Operating_System Windows O\nApplication\tO\tApplication\tO\n(\tO\t(\tO\nNT B-Library NT O\nGUI I-Library GUI O\nsubsystem I-Library subsystem O\n)\tO\t)\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nan\tO\tan\tO\nentirely\tO\tentirely\tO\ndifferent\tO\tdifferent\tO\nsubsystem\tO\tsubsystem\tO\nthan\tO\tthan\tO\nthat\tO\tthat\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nconsole B-Application console O\n.\tO\t.\tO\n\t\n-Oisin B-User_Name -Oisin O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48180837\tO\t48180837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48180837/\tO\thttps://stackoverflow.com/questions/48180837/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n3\tO\t3\tO\ncassandra B-Application cassandra O\nnodes\tO\tnodes\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nexecute\tO\texecute\tO\na\tO\ta\tO\nquery\tO\tquery\tB-Code_Block\n,\tO\t,\tO\n2\tO\t2\tO\nnodes B-Data_Structure nodes O\nare\tO\tare\tO\ngiving\tO\tgiving\tO\nsame\tO\tsame\tO\nresponse\tO\tresponse\tO\nbut\tO\tbut\tO\n1\tO\t1\tO\nnode B-Data_Structure node O\nis\tO\tis\tO\ngiving\tO\tgiving\tO\ndifferent\tO\tdifferent\tO\nresponse\tO\tresponse\tO\n\t\nSuppose\tO\tSuppose\tO\nI\tO\tI\tO\nexecuted\tO\texecuted\tO\nfollowing\tO\tfollowing\tO\nquery\tO\tquery\tB-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6406 I-Code_Block Q_6406 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNode1 B-Variable Node1 O\nand\tO\tand\tO\nNode2 B-Variable Node2 O\nare\tO\tare\tO\ngiving\tO\tgiving\tO\n2\tO\t2\tB-Code_Block\nrows B-Data_Structure rows I-Code_Block\nbut\tO\tbut\tO\nNode3 B-Variable Node3 O\nis\tO\tis\tO\ngiving\tO\tgiving\tO\n0\tO\t0\tB-Code_Block\nrows B-Data_Structure rows I-Code_Block\n(\tO\t(\tI-Code_Block\nempty\tO\tempty\tI-Code_Block\nresponse\tO\tresponse\tI-Code_Block\n)\tO\t)\tI-Code_Block\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48180837\tO\t48180837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48180837/\tO\thttps://stackoverflow.com/questions/48180837/\tO\n\t\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nsteps\tO\tsteps\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nproblem\tO\tproblem\tO\nwas\tO\twas\tO\nsolved\tO\tsolved\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nin\tO\tin\tO\nsync\tO\tsync\tO\nin\tO\tin\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\n3\tO\t3\tO\nnodes B-Data_Structure nodes O\n\t\nrun\tO\trun\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nnodetool B-Function nodetool B-Code_Block\nrebuild I-Function rebuild I-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\ninstances\tO\tinstances\tO\nand\tO\tand\tO\nalso\tO\talso\tO\n\t\nupdate\tO\tupdate\tO\n' B-Code_Block ' B-Code_Block\nreplication_factor I-Code_Block replication_factor I-Code_Block\n' B-Code_Block ' B-Code_Block\n: I-Code_Block : I-Code_Block\n' I-Code_Block ' I-Code_Block\n2 I-Code_Block 2 I-Code_Block\n' B-Code_Block ' B-Code_Block\nto\tO\tto\tO\n' B-Code_Block ' B-Code_Block\nreplication_factor I-Code_Block replication_factor I-Code_Block\n' B-Code_Block ' B-Code_Block\n: I-Code_Block : I-Code_Block\n' I-Code_Block ' I-Code_Block\n3 I-Code_Block 3 I-Code_Block\n' B-Code_Block ' B-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48180837\tO\t48180837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48180837/\tO\thttps://stackoverflow.com/questions/48180837/\tO\n\t\n\t\n1.You\tO\t1.You\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nNetwork\tO\tNetwork\tO\ntopology\tO\ttopology\tO\n.\tO\t.\tO\n\t\n2.Your\tO\t2.Your\tO\nreplication B-Variable replication O\nfactor I-Variable factor O\nis\tO\tis\tO\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nSimple\tO\tSimple\tO\nstrategy\tO\tstrategy\tO\n:\tO\t:\tO\nUse\tO\tUse\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ndatacenter\tO\tdatacenter\tO\nand\tO\tand\tO\none\tO\tone\tO\nrack\tO\track\tO\n.\tO\t.\tO\n\t\nSimpleStrategy\tO\tSimpleStrategy\tO\nplaces\tO\tplaces\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nreplica\tO\treplica\tO\non\tO\ton\tO\na\tO\ta\tO\nnode B-Data_Structure node O\ndetermined\tO\tdetermined\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\npartitioner\tO\tpartitioner\tO\n.\tO\t.\tO\n\t\nAdditional\tO\tAdditional\tO\nreplicas\tO\treplicas\tO\nare\tO\tare\tO\nplaced\tO\tplaced\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nnodes B-Data_Structure nodes O\nclockwise\tO\tclockwise\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nring\tO\tring\tO\nwithout\tO\twithout\tO\nconsidering\tO\tconsidering\tO\ntopology\tO\ttopology\tO\n(\tO\t(\tO\nrack\tO\track\tO\nor\tO\tor\tO\ndatacenter\tO\tdatacenter\tO\nlocation\tO\tlocation\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nGo\tO\tGo\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\n\t\nhttps://docs.datastax.com/en/cassandra/3.0/cassandra/architecture/archDataDistributeReplication.html\tO\thttps://docs.datastax.com/en/cassandra/3.0/cassandra/architecture/archDataDistributeReplication.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33400904\tO\t33400904\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33400904/\tO\thttps://stackoverflow.com/questions/33400904/\tO\n\t\n\t\nThis\tO\tThis\tO\nfunction\tO\tfunction\tO\nretrieves\tO\tretrieves\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nof\tO\tof\tO\nitem\tO\titem\tO\nrepresentation\tO\trepresentation\tO\nfrom\tO\tfrom\tO\ndisk\tO\tdisk\tO\n,\tO\t,\tO\nconverts\tO\tconverts\tO\nit\tO\tit\tO\nto\tO\tto\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nof\tO\tof\tO\nTodoItem B-Variable TodoItem O\ninstances\tO\tinstances\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nunnamed\tO\tunnamed\tO\nclosure\tO\tclosure\tO\nwe\tO\twe\tO\npass\tO\tpass\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsorts\tO\tsorts\tO\nthat\tO\tthat\tO\narray B-Data_Structure array O\nchronologically\tO\tchronologically\tO\n.\tO\t.\tO\n\t\nSorted\tO\tSorted\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nanymore\tO\tanymore\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nsort B-Function sort O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nWhatever\tO\tWhatever\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nvarious\tO\tvarious\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4077 I-Code_Block Q_4077 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33400904\tO\t33400904\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33400904/\tO\thttps://stackoverflow.com/questions/33400904/\tO\n\t\n\t\nJust\tO\tJust\tO\nreplace\tO\treplace\tO\nsorted B-Function sorted B-Code_Block\nby\tO\tby\tO\nsort B-Function sort B-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nalready\tO\talready\tO\ndone\tO\tdone\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntranslation\tO\ttranslation\tO\n(\tO\t(\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ncheck\tO\tcheck\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nknowing\tO\tknowing\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nbefore\tO\tbefore\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4780 I-Code_Block A_4780 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nReminder\tO\tReminder\tO\n:\tO\t:\tO\nsorted B-Function sorted B-Code_Block\nhas\tO\thas\tO\nbecome\tO\tbecome\tO\nsort B-Function sort B-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nold\tO\told\tO\nsort B-Function sort B-Code_Block\nis\tO\tis\tO\nnow\tO\tnow\tO\nsortInPlace B-Function sortInPlace B-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2004326\tO\t2004326\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2004326/\tO\thttps://stackoverflow.com/questions/2004326/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ndeveloping\tO\tdeveloping\tO\na\tO\ta\tO\nc# B-Language c# O\n.net B-Library .net O\napp\tO\tapp\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsubtract\tO\tsubtract\tO\ntwo\tO\ttwo\tO\ntime\tO\ttime\tO\nperiods\tO\tperiods\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntaken\tO\ttaken\tO\ntwo\tO\ttwo\tO\ndate B-Class date O\nobjects\tO\tobjects\tO\nand\tO\tand\tO\nsubtracted\tO\tsubtracted\tO\nthem\tO\tthem\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2004326\tO\t2004326\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2004326/\tO\thttps://stackoverflow.com/questions/2004326/\tO\n\t\n\t\nSubtracting\tO\tSubtracting\tO\none\tO\tone\tO\nDateTime B-Class DateTime O\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\nreturns\tO\treturns\tO\na\tO\ta\tO\nTimespan B-Class Timespan O\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nwhich\tO\twhich\tO\nbasically\tO\tbasically\tO\ntells\tO\ttells\tO\nyou\tO\tyou\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\ndays/hours/mins/secs/milliseconds/ticks\tO\tdays/hours/mins/secs/milliseconds/ticks\tO\nthat\tO\tthat\tO\noccured\tO\toccured\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\n2\tO\t2\tO\nDateTimes B-Class DateTimes O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2004326\tO\t2004326\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2004326/\tO\thttps://stackoverflow.com/questions/2004326/\tO\n\t\n\t\nCheck\tO\tCheck\tO\nthe\tO\tthe\tO\nTimeSpan B-Class TimeSpan O\nstruct B-Data_Structure struct O\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nDateTime B-Class DateTime O\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nhandy\tO\thandy\tO\nprocedures\tO\tprocedures\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nAddDays B-Function AddDays B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_200 I-Code_Block A_200 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSimilarlly\tO\tSimilarlly\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nAddHours B-Function AddHours B-Code_Block\n,\tO\t,\tO\nAddMonths B-Function AddMonths B-Code_Block\nand\tO\tand\tO\neven\tO\teven\tO\nAddMilliseconds B-Function AddMilliseconds B-Code_Block\n:\tO\t:\tO\n\t\nhttp://msdn.microsoft.com/en-us/library/system.datetime_members.aspx\tO\thttp://msdn.microsoft.com/en-us/library/system.datetime_members.aspx\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14639108\tO\t14639108\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14639108/\tO\thttps://stackoverflow.com/questions/14639108/\tO\n\t\n\t\nImagine\tO\tImagine\tO\na\tO\ta\tO\nplane\tO\tplane\tO\nwith\tO\twith\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\npoints\tO\tpoints\tO\nat\tO\tat\tO\nknown\tO\tknown\tO\nlocations\tO\tlocations\tO\n.\tO\t.\tO\n\t\nMost\tO\tMost\tO\nare\tO\tare\tO\nclustered\tO\tclustered\tO\nclose\tO\tclose\tO\ntogether\tO\ttogether\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsome\tO\tsome\tO\nare\tO\tare\tO\noutliers\tO\toutliers\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nlarge\tO\tlarge\tO\nareas\tO\tareas\tO\nwhere\tO\twhere\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\npoints\tO\tpoints\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nclients\tO\tclients\tO\nwho\tO\twho\tO\ncan\tO\tcan\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\nplane\tO\tplane\tO\nthrough\tO\tthrough\tO\nrectangular\tO\trectangular\tO\nviewports\tO\tviewports\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nclient\tO\tclient\tO\n's\tO\t's\tO\nviewport\tO\tviewport\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nof\tO\tof\tO\ndifferent\tO\tdifferent\tO\ndimensions\tO\tdimensions\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmoved\tO\tmoved\tO\ninstantly\tO\tinstantly\tO\nto\tO\tto\tO\nany\tO\tany\tO\nlocation\tO\tlocation\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nplane\tO\tplane\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclients\tO\tclients\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nlocations\tO\tlocations\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npoints\tO\tpoints\tO\n;\tO\t;\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\na\tO\ta\tO\nclient\tO\tclient\tO\nconnects\tO\tconnects\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncommunicate\tO\tcommunicate\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nits\tO\tits\tO\nviewport\tO\tviewport\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\nshould\tO\tshould\tO\nrespond\tO\trespond\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlocation\tO\tlocation\tO\nwhere\tO\twhere\tO\none\tO\tone\tO\nor\tO\tor\tO\nmore\tO\tmore\tO\npoints\tO\tpoints\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nvisible\tO\tvisible\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nclient\tO\tclient\tO\n's\tO\t's\tO\nviewport\tO\tviewport\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclient\tO\tclient\tO\nvisits\tO\tvisits\tO\nthat\tO\tthat\tO\nlocation\tO\tlocation\tO\n,\tO\t,\tO\ncollects\tO\tcollects\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nvisiting\tO\tvisiting\tO\nthose\tO\tthose\tO\npoints\tO\tpoints\tO\n,\tO\t,\tO\nsends\tO\tsends\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver\tO\tserver\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nrequests\tO\trequests\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nlocation\tO\tlocation\tO\nto\tO\tto\tO\nvisit\tO\tvisit\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncontinues\tO\tcontinues\tO\nuntil\tO\tuntil\tO\nall\tO\tall\tO\npoints\tO\tpoints\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nvisited\tO\tvisited\tO\nby\tO\tby\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\none\tO\tone\tO\nclient\tO\tclient\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nan\tO\tan\tO\nefficient\tO\tefficient\tO\nalgorithm\tO\talgorithm\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nchoose\tO\tchoose\tO\nthe\tO\tthe\tO\nlocations\tO\tlocations\tO\nto\tO\tto\tO\nvisit\tO\tvisit\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nideal\tO\tideal\tO\nsolution\tO\tsolution\tO\nwill\tO\twill\tO\nminimize\tO\tminimize\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nlocations\tO\tlocations\tO\nthat\tO\tthat\tO\nclients\tO\tclients\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nvisit\tO\tvisit\tO\nby\tO\tby\tO\nincluding\tO\tincluding\tO\nas\tO\tas\tO\nmany\tO\tmany\tO\nunvisited\tO\tunvisited\tO\npoints\tO\tpoints\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\nviewport\tO\tviewport\tO\nlocation\tO\tlocation\tO\n,\tO\t,\tO\nminimizing\tO\tminimizing\tO\nduplicate\tO\tduplicate\tO\nvisits\tO\tvisits\tO\non\tO\ton\tO\npoints\tO\tpoints\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nvisiting\tO\tvisiting\tO\nlocations\tO\tlocations\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nunvisited\tO\tunvisited\tO\npoints\tO\tpoints\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nrecommend\tO\trecommend\tO\nan\tO\tan\tO\nalgorithm\tO\talgorithm\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14639108\tO\t14639108\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14639108/\tO\thttps://stackoverflow.com/questions/14639108/\tO\n\t\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1855 I-Code_Block A_1855 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27406632\tO\t27406632\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27406632/\tO\thttps://stackoverflow.com/questions/27406632/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\nFileHandlers B-Class FileHandlers O\nthat\tO\tthat\tO\nwrite\tO\twrite\tO\nout\tO\tout\tO\nto\tO\tto\tO\ntwo\tO\ttwo\tO\nseparate\tO\tseparate\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nI/O\tO\tI/O\tO\noccurring\tO\toccurring\tO\nis\tO\tis\tO\nslowing\tO\tslowing\tO\ndown\tO\tdown\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nbit\tO\tbit\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nFileHandlers B-Class FileHandlers O\nrun\tO\trun\tO\non\tO\ton\tO\nseparate\tO\tseparate\tO\nthreads\tO\tthreads\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\non\tO\ton\tO\nseparate\tO\tseparate\tO\nthreads\tO\tthreads\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneeded\tO\tneeded\tO\na\tO\ta\tO\nconcept\tO\tconcept\tO\nof\tO\tof\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nqueue B-Data_Structure queue O\n\"\tO\t\"\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nseparate\tO\tseparate\tO\nthreads\tO\tthreads\tO\ncan\tO\tcan\tO\npoll\tO\tpoll\tO\nthis\tO\tthis\tO\nqueue\tO\tqueue\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nany\tO\tany\tO\nincoming\tO\tincoming\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\npreformatted\tO\tpreformatted\tO\nmessages\tO\tmessages\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nany\tO\tany\tO\narguments\tO\targuments\tO\nused\tO\tused\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\nbefore\tO\tbefore\tO\nthey\tO\tthey\tO\nactually\tO\tactually\tO\nreach\tO\treach\tO\nthe\tO\tthe\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFileHandler B-Class FileHandler O\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\n've\tO\t've\tO\nrealised\tO\trealised\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nlog B-File_Type log O\n\"\tO\t\"\tO\nmethods\tO\tmethods\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nlogger\tO\tlogger\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthat\tO\tthat\tO\nattempts\tO\tattempts\tO\nto\tO\tto\tO\ninvoke\tO\tinvoke\tO\nmethods\tO\tmethods\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nthread\tO\tthread\tO\nto\tO\tto\tO\nformat\tO\tformat\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nsimply\tO\tsimply\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nadds\tO\tadds\tO\nmy\tO\tmy\tO\ntrace\tO\ttrace\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nqueue\tO\tqueue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nrun() B-Function run() O\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nFileHandlers B-Class FileHandlers O\nto\tO\tto\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\nusing\tO\tusing\tO\npublish() B-Function publish() O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nnow\tO\tnow\tO\nrealise\tO\trealise\tO\npublish() B-Function publish() O\nonly\tO\tonly\tO\ntakes\tO\ttakes\tO\nin\tO\tin\tO\na\tO\ta\tO\nLogRecord B-Class LogRecord O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nlevel\tO\tlevel\tO\n+\tO\t+\tO\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ntraces\tO\ttraces\tO\nhave\tO\thave\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nsimply\tO\tsimply\tO\nbe\tO\tbe\tO\nplaced\tO\tplaced\tO\nin\tO\tin\tO\nan\tO\tan\tO\noverall\tO\toverall\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nFormatter B-Class Formatter O\n\"\tO\t\"\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n've\tO\t've\tO\nset\tO\tset\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nFileHandler B-Class FileHandler O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlogger\tO\tlogger\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFileHandler B-Class FileHandler O\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nlog\tO\tlog\tO\nmethod\tO\tmethod\tO\nand\tO\tand\tO\nformat\tO\tformat\tO\nthe\tO\tthe\tO\nstring\tO\tstring\tO\nas\tO\tas\tO\ndesigned\tO\tdesigned\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nFormatter B-Class Formatter O\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nkinda\tO\tkinda\tO\n.\tO\t.\tO\n\t\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nsilly\tO\tsilly\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\nworth\tO\tworth\tO\ncontinuing\tO\tcontinuing\tO\non\tO\ton\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nworking\tO\tworking\tO\nAROUND\tO\tAROUND\tO\nthe\tO\tthe\tO\njava.util.Logger B-Class java.util.Logger O\nrather\tO\trather\tO\nthan\tO\tthan\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nuseful\tO\tuseful\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\njava.util.Logger B-Value java.util.Logger O\nis\tO\tis\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nlogger\tO\tlogger\tO\ninstance\tO\tinstance\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nclass\tO\tclass\tO\nand\tO\tand\tO\nbeing\tO\tbeing\tO\nable\tO\table\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nmore\tO\tmore\tO\ncontrol\tO\tcontrol\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nsuggestions\tO\tsuggestions\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nquite\tO\tquite\tO\nlong\tO\tlong\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\neasily\tO\teasily\tO\nunderstood\tO\tunderstood\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndescription\tO\tdescription\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nif\tO\tif\tO\nnot\tO\tnot\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nupload\tO\tupload\tO\nsomewhere\tO\tsomewhere\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27406632\tO\t27406632\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27406632/\tO\thttps://stackoverflow.com/questions/27406632/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nlog4j B-Application log4j O\n2 B-Version 2 O\nJDK\tO\tJDK\tO\nLogging\tO\tLogging\tO\nAdapter\tO\tAdapter\tO\nto\tO\tto\tO\nenable\tO\tenable\tO\nlogging\tO\tlogging\tO\nwith\tO\twith\tO\nlog4j B-Application log4j O\n,\tO\t,\tO\nAnd\tO\tAnd\tO\nlog4j B-Application log4j O\n2 B-Version 2 O\nprovide\tO\tprovide\tO\nremarkable\tO\tremarkable\tO\nasynchronous\tO\tasynchronous\tO\nLogging\tO\tLogging\tO\nmechanism\tO\tmechanism\tO\nwith\tO\twith\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nconfiguration\tO\tconfiguration\tO\noptions\tO\toptions\tO\n.\tO\t.\tO\n\t\nNecessary\tO\tNecessary\tO\nVM\tO\tVM\tO\narguments\tO\targuments\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5332 I-Code_Block A_5332 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\nabout\tO\tabout\tO\nlog4j B-Application log4j O\n2 B-Version 2 O\nasync\tO\tasync\tO\nlogging\tO\tlogging\tO\nhere\tO\there\tO\nand\tO\tand\tO\ntomcat B-Application tomcat O\nconfiguration\tO\tconfiguration\tO\ndetails\tO\tdetails\tO\nhere\tO\there\tO\n\t\nsample\tO\tsample\tO\nLog4j2.xml B-File_Name Log4j2.xml O\nfor\tO\tfor\tO\nasync\tO\tasync\tO\nloggign\tO\tloggign\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5333 I-Code_Block A_5333 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27406632\tO\t27406632\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27406632/\tO\thttps://stackoverflow.com/questions/27406632/\tO\n\t\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nreally\tO\treally\tO\nconsider\tO\tconsider\tO\nusing\tO\tusing\tO\nSLF4J B-Library SLF4J O\n.\tO\t.\tO\n\t\nThese\tO\tThese\tO\nissues\tO\tissues\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndescribing\tO\tdescribing\tO\ncome\tO\tcome\tO\nalong\tO\talong\tO\nwith\tO\twith\tO\nrolling\tO\trolling\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nlogger B-Application logger O\n.\tO\t.\tO\n\t\nSLF4J B-Library SLF4J O\nis\tO\tis\tO\nreally\tO\treally\tO\ncommonly\tO\tcommonly\tO\nused\tO\tused\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nvery\tO\tvery\tO\nintrusive\tO\tintrusive\tO\n,\tO\t,\tO\nshould\tO\tshould\tO\nyou\tO\tyou\tO\ndecide\tO\tdecide\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nsomething\tO\tsomething\tO\ndifferent\tO\tdifferent\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nswap\tO\tswap\tO\nit\tO\tit\tO\nout\tO\tout\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nframework\tO\tframework\tO\n.\tO\t.\tO\n\t\nhttp://saltnlight5.blogspot.ca/2013/08/how-to-configure-slf4j-with-different.html\tO\thttp://saltnlight5.blogspot.ca/2013/08/how-to-configure-slf4j-with-different.html\tO\n\t\nhttp://www.slf4j.org/manual.html\tO\thttp://www.slf4j.org/manual.html\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\ndecide\tO\tdecide\tO\nto\tO\tto\tO\nstick\tO\tstick\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nlogger B-Application logger O\nI\tO\tI\tO\nwould\tO\twould\tO\nsay\tO\tsay\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nstart\tO\tstart\tO\nby\tO\tby\tO\nmaking\tO\tmaking\tO\nit\tO\tit\tO\na\tO\ta\tO\nsingleton\tO\tsingleton\tO\nwith\tO\twith\tO\nseveral\tO\tseveral\tO\nlogwriters\tO\tlogwriters\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nlog\tO\tlog\tO\nlevels\tO\tlevels\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nthen\tO\tthen\tO\nsetup\tO\tsetup\tO\na\tO\ta\tO\nnon-blocking\tO\tnon-blocking\tO\nqueue B-Data_Structure queue O\nfor\tO\tfor\tO\neach\tO\teach\tO\nlogger B-Application logger O\n(\tO\t(\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntons\tO\ttons\tO\nof\tO\tof\tO\nexamples\tO\texamples\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\nthere\tO\tthere\tO\n)\tO\t)\tO\nand\tO\tand\tO\nsimply\tO\tsimply\tO\ncall\tO\tcall\tO\nlog(logLevel, B-Function log(logLevel, O\nlogOrigin, I-Function logOrigin, O\nlogMessage) I-Function logMessage) O\nand\tO\tand\tO\nunder\tO\tunder\tO\nthe\tO\tthe\tO\nhood\tO\thood\tO\nsend\tO\tsend\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\neach\tO\teach\tO\nlogwriter B-Class logwriter O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nnon-blocking\tO\tnon-blocking\tO\nqueue B-Data_Structure queue O\nthat\tO\tthat\tO\nruns\tO\truns\tO\non\tO\ton\tO\na\tO\ta\tO\nthread\tO\tthread\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nlogwriter B-Class logwriter O\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nlogwriter B-Class logwriter O\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nit\tO\tit\tO\n's\tO\t's\tO\nown\tO\town\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\neach\tO\teach\tO\nlog B-File_Type log O\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\none\tO\tone\tO\nlogger B-Application logger O\nas\tO\tas\tO\nall\tO\tall\tO\nit\tO\tit\tO\nis\tO\tis\tO\nis\tO\tis\tO\na\tO\ta\tO\nshort\tO\tshort\tO\nhand\tO\thand\tO\nto\tO\tto\tO\nplace\tO\tplace\tO\nthings\tO\tthings\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nlogwriter B-Class logwriter O\n's\tO\t's\tO\nqueues B-Data_Structure queues O\nfrom\tO\tfrom\tO\nanywhere\tO\tanywhere\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15729742\tO\t15729742\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15729742/\tO\thttps://stackoverflow.com/questions/15729742/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nAVAssetReaderOutput B-Class AVAssetReaderOutput B-Code_Block\nto\tO\tto\tO\nread\tO\tread\tO\nsamples\tO\tsamples\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nAVAsset B-Class AVAsset B-Code_Block\n,\tO\t,\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\nprocessing\tO\tprocessing\tO\non\tO\ton\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nand\tO\tand\tO\nplay\tO\tplay\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nRemoteIO B-Device RemoteIO O\nAU I-Device AU O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nafter\tO\tafter\tO\ncalling\tO\tcalling\tO\nAudioOutputUnitStop B-Function AudioOutputUnitStop B-Code_Block\nto\tO\tto\tO\npause\tO\tpause\tO\nthe\tO\tthe\tO\nplayback\tO\tplayback\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nafter\tO\tafter\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nand\tO\tand\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nstart\tO\tstart\tO\nagain\tO\tagain\tO\nafter\tO\tafter\tO\ncalling\tO\tcalling\tO\nAudioOutputUnitStart B-Function AudioOutputUnitStart B-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncopyNextSampleBuffer B-Function copyNextSampleBuffer B-Code_Block\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nAVAssetReaderOutput B-Class AVAssetReaderOutput B-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nrendering\tO\trendering\tO\npipeline\tO\tpipeline\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nstatus B-Variable status B-Code_Block\nproperty\tO\tproperty\tO\nof\tO\tof\tO\nAVAssetReader B-Class AVAssetReader B-Code_Block\nafter\tO\tafter\tO\ncalling\tO\tcalling\tO\ncopyNextSampleBuffer B-Function copyNextSampleBuffer B-Code_Block\nis\tO\tis\tO\nAVAssetReaderStatusFailed B-Error_Name AVAssetReaderStatusFailed B-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nits\tO\tits\tO\nerror B-Variable error B-Code_Block\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nError B-Output_Block Error O\nDomain I-Output_Block Domain O\n= I-Output_Block = O\nAVFoundationErrorDomain I-Output_Block AVFoundationErrorDomain O\nCode I-Output_Block Code O\n= I-Output_Block = O\n-11847 I-Output_Block -11847 O\n\" I-Output_Block \" O\nOperation I-Output_Block Operation O\nInterrupted I-Output_Block Interrupted O\n\" I-Output_Block \" O\nUserInfo I-Output_Block UserInfo O\n= I-Output_Block = O\n0x1d8b6100 I-Output_Block 0x1d8b6100 O\n{ I-Output_Block { O\nNSLocalizedRecoverySuggestion I-Output_Block NSLocalizedRecoverySuggestion O\n= I-Output_Block = O\nStop I-Output_Block Stop O\nother I-Output_Block other O\noperations I-Output_Block operations O\nand I-Output_Block and O\ntry I-Output_Block try O\nagain I-Output_Block again O\n. I-Output_Block . O\n, I-Output_Block , O\nNSLocalizedDescription I-Output_Block NSLocalizedDescription O\n= I-Output_Block = O\nOperation I-Output_Block Operation O\nInterrupted} I-Output_Block Interrupted} O\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nwhich\tO\twhich\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nforce\tO\tforce\tO\nme\tO\tme\tO\nto\tO\tto\tO\nreinitialize\tO\treinitialize\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\npipeline\tO\tpipeline\tO\nafter\tO\tafter\tO\ncoming\tO\tcoming\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\n-\tO\t-\tO\nHoping\tO\tHoping\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nAVAssetReaders B-Class AVAssetReaders B-Code_Block\ncan\tO\tcan\tO\nsurvive\tO\tsurvive\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbackground\tO\tbackground\tO\nand\tO\tand\tO\nback.\tO\tback.\tO\n.\tO\t.\tO\n\t\nNotes\tO\tNotes\tO\n\t\nThe\tO\tThe\tO\napp\tO\tapp\tO\nis\tO\tis\tO\nentitled\tO\tentitled\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\naudio\tO\taudio\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhandling\tO\thandling\tO\naudio\tO\taudio\tO\ninterruptions\tO\tinterruptions\tO\n-\tO\t-\tO\nSetting\tO\tSetting\tO\nmy\tO\tmy\tO\nAVAudioSession B-Class AVAudioSession B-Code_Block\nas\tO\tas\tO\nthe\tO\tthe\tO\nactive\tO\tactive\tO\none\tO\tone\tO\nboth\tO\tboth\tO\non\tO\ton\tO\nAVAudioSessionDelegates B-Variable AVAudioSessionDelegates B-Code_Block\nendInterruptionWithFlags B-Function endInterruptionWithFlags I-Code_Block\n: I-Function : I-Code_Block\nevent\tO\tevent\tO\nand\tO\tand\tO\nwhenever\tO\twhenever\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nbecomes\tO\tbecomes\tO\nactive\tO\tactive\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ndifference\tO\tdifference\tO\nwhether\tO\twhether\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nAudioPlayer B-Class AudioPlayer O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1548 I-Code_Block Q_1548 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAudioReader B-Class AudioReader O\nSetup\tO\tSetup\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1549 I-Code_Block Q_1549 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAudioReader B-Class AudioReader O\nRender B-Function Render O\nMethod\tO\tMethod\tO\n,\tO\t,\tO\ncalled\tO\tcalled\tO\neventually\tO\teventually\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nRenderCallback B-Function RenderCallback O\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1550 I-Code_Block Q_1550 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15729742\tO\t15729742\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15729742/\tO\thttps://stackoverflow.com/questions/15729742/\tO\n\t\n\t\nThe\tO\tThe\tO\ngraph B-User_Interface_Element graph O\nand\tO\tand\tO\nAVReader B-Class AVReader O\nunderpinnings\tO\tunderpinnings\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nconnected/linked\tO\tconnected/linked\tO\nwhatsoever\tO\twhatsoever\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nconfusion\tO\tconfusion\tO\nperhaps\tO\tperhaps\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nthat\tO\tthat\tO\niOS B-Operating_System iOS O\nwo\tO\two\tO\nn't\tO\tn't\tO\n\"\tO\t\"\tO\nbackground\tO\tbackground\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nhibernate\tO\thibernate\tO\n)\tO\t)\tO\na\tO\ta\tO\nprocess\tO\tprocess\tO\nif\tO\tif\tO\nit\tO\tit\tO\nsees\tO\tsees\tO\nthe\tO\tthe\tO\naudio B-User_Interface_Element audio O\ngraph I-User_Interface_Element graph O\nrunning\tO\trunning\tO\n(\tO\t(\tO\nbecause\tO\tbecause\tO\nthen\tO\tthen\tO\naudio\tO\taudio\tO\ndata\tO\tdata\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ngenerated\tO\tgenerated\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nwhy\tO\twhy\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\naudio B-User_Interface_Element audio O\ngraph I-User_Interface_Element graph O\n,\tO\t,\tO\n2-3\tO\t2-3\tO\nminutes\tO\tminutes\tO\nlater\tO\tlater\tO\n,\tO\t,\tO\niOS B-Operating_System iOS O\nwill\tO\twill\tO\nbackground\tO\tbackground\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\n(\tO\t(\tO\nas\tO\tas\tO\nof\tO\tof\tO\niOS B-Operating_System iOS O\n9 B-Version 9 O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPresumably\tO\tPresumably\tO\n,\tO\t,\tO\niOS B-Operating_System iOS O\nlooks\tO\tlooks\tO\nat\tO\tat\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\nand\tO\tand\tO\ndecides\tO\tdecides\tO\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nforced\tO\tforced\tO\nto\tO\tto\tO\nbackground\tO\tbackground\tO\n(\tO\t(\tO\nvia\tO\tvia\tO\nbeginBackgroundTaskWithName:expirationHandler B-Code_Block beginBackgroundTaskWithName:expirationHandler B-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nApple B-Website Apple O\ndevs\tO\tdevs\tO\ndecided\tO\tdecided\tO\nfor\tO\tfor\tO\nwhatever\tO\twhatever\tO\nreason\tO\treason\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nAVReader B-Class AVReader O\nstop\tO\tstop\tO\nwhen\tO\twhen\tO\nput\tO\tput\tO\ninto\tO\tinto\tO\nbackground\tO\tbackground\tO\nmode\tO\tmode\tO\n(\tO\t(\tO\nmy\tO\tmy\tO\nbest\tO\tbest\tO\nguess\tO\tguess\tO\nis\tO\tis\tO\nQA\tO\tQA\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ngood\tO\tgood\tO\nnews\tO\tnews\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndetect\tO\tdetect\tO\nit\tO\tit\tO\nand\tO\tand\tO\nrecover\tO\trecover\tO\nwhen\tO\twhen\tO\nyour\tO\tyour\tO\nprocess\tO\tprocess\tO\nexits\tO\texits\tO\nbackground\tO\tbackground\tO\nmode\tO\tmode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nWILL\tO\tWILL\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrestart\tO\trestart\tO\nyour\tO\tyour\tO\nreader B-Variable reader O\nand\tO\tand\tO\nreaderOutput B-Variable readerOutput O\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nAVAssetReaderOutput B-Class AVAssetReaderOutput O\n's\tO\t's\tO\ncopyNextSampleBuffer B-Function copyNextSampleBuffer B-Code_Block\nreturns\tO\treturns\tO\nNULL B-Value NULL O\n,\tO\t,\tO\ncheck\tO\tcheck\tO\nAVAssetReader.error.code B-Variable AVAssetReader.error.code B-Code_Block\nfor\tO\tfor\tO\nAVErrorOperationInterrupted B-Variable AVErrorOperationInterrupted B-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nwe\tO\twe\tO\npull\tO\tpull\tO\noff\tO\toff\tO\na\tO\ta\tO\ngapless\tO\tgapless\tO\nrecovery\tO\trecovery\tO\nhere\tO\there\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nwe\tO\twe\tO\nget\tO\tget\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\npoint\tO\tpoint\tO\n,\tO\t,\tO\nwe\tO\twe\tO\nfirst\tO\tfirst\tO\ncalculate\tO\tcalculate\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\ntime\tO\ttime\tO\nwe\tO\twe\tO\nleft\tO\tleft\tO\noff\tO\toff\tO\nat\tO\tat\tO\n(\tO\t(\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n-\tO\t-\tO\n-\tO\t-\tO\njust\tO\tjust\tO\nmaintain\tO\tmaintain\tO\na\tO\ta\tO\ncounter\tO\tcounter\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\nsamples\tO\tsamples\tO\nalready\tO\talready\tO\noutput\tO\toutput\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nWILL\tO\tWILL\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrestart\tO\trestart\tO\nyour\tO\tyour\tO\nAVAssetReader B-Class AVAssetReader B-Code_Block\nand\tO\tand\tO\nAVAssetReaderOutput B-Class AVAssetReaderOutput B-Code_Block\nflow\tO\tflow\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nno\tO\tno\tO\nproblem\tO\tproblem\tO\nsince\tO\tsince\tO\nyour\tO\tyour\tO\ngood\tO\tgood\tO\ndevelopment\tO\tdevelopment\tO\npractices\tO\tpractices\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nencapsulated\tO\tencapsulated\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\nseek\tO\tseek\tO\ntime\tO\ttime\tO\nas\tO\tas\tO\nan\tO\tan\tO\nargument\tO\targument\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthat\tO\tthat\tO\nfunction\tO\tfunction\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nAVAssetReader.timeRange B-Variable AVAssetReader.timeRange B-Code_Block\nto\tO\tto\tO\nseek\tO\tseek\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\ntime\tO\ttime\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nresume\tO\tresume\tO\nat\tO\tat\tO\nand\tO\tand\tO\npresto\tO\tpresto\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15729742\tO\t15729742\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15729742/\tO\thttps://stackoverflow.com/questions/15729742/\tO\n\t\n\t\nThere\tO\tThere\tO\nfirst\tO\tfirst\tO\nthing\tO\tthing\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ntry\tO\ttry\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nNot\tO\tNot\tO\ncalling\tO\tcalling\tO\nAudioOutputUnitStop B-Function AudioOutputUnitStop B-Code_Block\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nyou\tO\tyou\tO\nleave\tO\tleave\tO\nthe\tO\tthe\tO\ngraph B-User_Interface_Element graph O\nrunning\tO\trunning\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\nis\tO\tis\tO\npaused\tO\tpaused\tO\nsimply\tO\tsimply\tO\nnot\tO\tnot\tO\ncall\tO\tcall\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2061 I-Code_Block A_2061 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nInstead\tO\tInstead\tO\njust\tO\tjust\tO\nfill\tO\tfill\tO\nthe\tO\tthe\tO\nbuffer B-Data_Structure buffer O\nwith\tO\twith\tO\n0 B-Value 0 O\n's\tO\t's\tO\nand/or\tO\tand/or\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nrender\tO\trender\tO\naction\tO\taction\tO\nof\tO\tof\tO\nkAudioUnitRenderAction_OutputIsSilence B-Variable kAudioUnitRenderAction_OutputIsSilence O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbuffers B-Data_Structure buffers O\n.\tO\t.\tO\n\t\nStarting\tO\tStarting\tO\nand\tO\tand\tO\nstopping\tO\tstopping\tO\nthe\tO\tthe\tO\ngraph B-User_Interface_Element graph O\ntakes\tO\ttakes\tO\ntime\tO\ttime\tO\nand\tO\tand\tO\nleads\tO\tleads\tO\nto\tO\tto\tO\nan\tO\tan\tO\nunresponsive\tO\tunresponsive\tO\ngraph B-User_Interface_Element graph O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nnever\tO\tnever\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\ngraph B-User_Interface_Element graph O\nwhile\tO\twhile\tO\nmy\tO\tmy\tO\napps\tO\tapps\tO\nare\tO\tare\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nUnless\tO\tUnless\tO\nsome\tO\tsome\tO\nserious\tO\tserious\tO\ninterruption\tO\tinterruption\tO\nhappens\tO\thappens\tO\n)\tO\t)\tO\nThis\tO\tThis\tO\nmay\tO\tmay\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nasset\tO\tasset\tO\nreader\tO\treader\tO\naround\tO\taround\tO\nand\tO\tand\tO\nhappy\tO\thappy\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nhunch\tO\thunch\tO\nthat\tO\tthat\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nAVAssetReader B-Class AVAssetReader B-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\ndirectly\tO\tdirectly\tO\nconnected\tO\tconnected\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\naudio B-User_Interface_Element audio O\ngraph I-User_Interface_Element graph O\n(\tO\t(\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nhappen\tO\thappen\tO\nto\tO\tto\tO\nrequest\tO\trequest\tO\nsamples\tO\tsamples\tO\nand\tO\tand\tO\nplace\tO\tplace\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbuffer B-Data_Structure buffer O\nsupplied\tO\tsupplied\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nrender\tO\trender\tO\ncallback\tO\tcallback\tO\n)\tO\t)\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nlie\tO\tlie\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\naudio B-User_Interface_Element audio O\ngraph I-User_Interface_Element graph O\nbeing\tO\tbeing\tO\nstopped\tO\tstopped\tO\nand\tO\tand\tO\nrestarted\tO\trestarted\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nline\tO\tline\tO\nof\tO\tof\tO\nattack\tO\tattack\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ntry\tO\ttry\tO\nis\tO\tis\tO\nto\tO\tto\tO\nrequest\tO\trequest\tO\nsamples\tO\tsamples\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nAVAsset B-Class AVAsset O\n,\tO\t,\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nbackground\tO\tbackground\tO\nand\tO\tand\tO\nbring\tO\tbring\tO\nit\tO\tit\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nforeground\tO\tforeground\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nAUGraph B-Variable AUGraph O\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\ndetermine\tO\tdetermine\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAUGraph B-Variable AUGraph B-Code_Block\nor\tO\tor\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nentering\tO\tentering\tO\na\tO\ta\tO\nbackground\tO\tbackground\tO\nstate\tO\tstate\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nsomething\tO\tsomething\tO\nhappens\tO\thappens\tO\nthat\tO\tthat\tO\nforces\tO\tforces\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ntear\tO\ttear\tO\ndown\tO\tdown\tO\nyour\tO\tyour\tO\nAVAssetReader B-Class AVAssetReader B-Code_Block\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nreconnect\tO\treconnect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nasset\tO\tasset\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nanother\tO\tanother\tO\nthe\tO\tthe\tO\noption\tO\toption\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nReconnect\tO\tReconnect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nAVAssetReader B-Class AVAssetReader B-Code_Block\n,\tO\t,\tO\nseek\tO\tseek\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nyou\tO\tyou\tO\nleft\tO\tleft\tO\noff\tO\toff\tO\nat\tO\tat\tO\nand\tO\tand\tO\nkeep\tO\tkeep\tO\ngoing\tO\tgoing\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47280695\tO\t47280695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47280695/\tO\thttps://stackoverflow.com/questions/47280695/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nstruggling\tO\tstruggling\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nlogin\tO\tlogin\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nsuccessfully\tO\tsuccessfully\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nkeeps\tO\tkeeps\tO\non\tO\ton\tO\nechoing\tO\techoing\tO\nthe\tO\tthe\tO\n\" B-Output_Block \" O\nUsername I-Output_Block Username O\nor I-Output_Block or O\nPassword I-Output_Block Password O\nincorrect. I-Output_Block incorrect. O\n. I-Output_Block . O\n\" I-Output_Block \" O\nsection\tO\tsection\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nusername B-Variable username O\nand\tO\tand\tO\npassword B-Variable password O\nin\tO\tin\tO\nentered\tO\tentered\tO\n.\tO\t.\tO\n\t\nAm\tO\tAm\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\nsomewhere\tO\tsomewhere\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6274 I-Code_Block Q_6274 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47280695\tO\t47280695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47280695/\tO\thttps://stackoverflow.com/questions/47280695/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nworked\tO\tworked\tO\nin\tO\tin\tO\ntest\tO\ttest\tO\n(\tO\t(\tO\nup\tO\tup\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\npassword_verify B-Function password_verify B-Code_Block\nwhere\tO\twhere\tO\nI\tO\tI\tO\nused\tO\tused\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\ntest\tO\ttest\tO\nas\tO\tas\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nPHP B-Language PHP O\n5.3.2 B-Version 5.3.2 O\nand\tO\tand\tO\nhence\tO\thence\tO\nno\tO\tno\tO\npassword_verify B-Function password_verify O\n)\tO\t)\tO\n~\tO\t~\tO\nhopefully\tO\thopefully\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\nprove\tO\tprove\tO\nof\tO\tof\tO\nbenefit\tO\tbenefit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6893 I-Code_Block A_6893 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47280695\tO\t47280695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47280695/\tO\thttps://stackoverflow.com/questions/47280695/\tO\n\t\n\t\n/\tO\t/\tO\n**\tO\t**\tO\n\t\n*\tO\t*\tO\nYou\tO\tYou\tO\nmight\tO\tmight\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\na\tO\ta\tO\nhashed\tO\thashed\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npassword B-Variable password O\nat\tO\tat\tO\nthe\tO\tthe\tO\npoint\tO\tpoint\tO\nof\tO\tof\tO\n\t\n*\tO\t*\tO\nuser\tO\tuser\tO\ncreation\tO\tcreation\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\npassword_verify B-Function password_verify O\nthe\tO\tthe\tO\ninput\tO\tinput\tO\npassword B-Variable password O\nagainst\tO\tagainst\tO\nthe\tO\tthe\tO\nhashed\tO\thashed\tO\n\t\n*\tO\t*\tO\ncopy\tO\tcopy\tO\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nDB\tO\tDB\tO\n.\tO\t.\tO\n\t\n*\tO\t*\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n*\tO\t*\tO\n$hashed B-Code_Block $hashed O\n= I-Code_Block = O\npassword_hash I-Code_Block password_hash O\n( I-Code_Block ( O\n$password I-Code_Block $password O\n, I-Code_Block , O\nPASSWORD_BCRYPT I-Code_Block PASSWORD_BCRYPT O\n) I-Code_Block ) O\n; B-Code_Block ; O\n\t\n*\tO\t*\tO\nNOTE\tO\tNOTE\tO\n:\tO\t:\tO\nI\tO\tI\tO\n've\tO\t've\tO\nchanged\tO\tchanged\tO\nyou\tO\tyou\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nan\tO\tan\tO\nextent\tO\textent\tO\n,\tO\t,\tO\npls\tO\tpls\tO\nadapt\tO\tadapt\tO\n.\tO\t.\tO\n\t\n*\tO\t*\tO\n/\tO\t/\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6892 I-Code_Block A_6892 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12329588\tO\t12329588\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12329588/\tO\thttps://stackoverflow.com/questions/12329588/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstudying\tO\tstudying\tO\nthe\tO\tthe\tO\nClojure B-Language Clojure O\nKoans\tO\tKoans\tO\n:\tO\t:\tO\n\t\nhttps://github.com/functional-koans/clojure-koans/blob/master/src/koans/10_lazy_sequences.clj\tO\thttps://github.com/functional-koans/clojure-koans/blob/master/src/koans/10_lazy_sequences.clj\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nstuck\tO\tstuck\tO\non\tO\ton\tO\nthis\tO\tthis\tO\none\tO\tone\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1162 I-Code_Block Q_1162 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nexact\tO\texact\tO\nbuiltin\tO\tbuiltin\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nfill\tO\tfill\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n_ B-Value _ O\nblanks\tO\tblanks\tO\nwith\tO\twith\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nwriting\tO\twriting\tO\nmy\tO\tmy\tO\nown\tO\town\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwrote\tO\twrote\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nfunction\tO\tfunction\tO\nas\tO\tas\tO\na\tO\ta\tO\ntest\tO\ttest\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nintend\tO\tintend\tO\nthis\tO\tthis\tO\none\tO\tone\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\nif\tO\tif\tO\nx B-Variable x O\nis\tO\tis\tO\na\tO\ta\tO\nseq B-Data_Structure seq O\n,\tO\t,\tO\nthen\tO\tthen\tO\njust\tO\tjust\tO\nrepeat\tO\trepeat\tO\nits\tO\tits\tO\nfirst\tO\tfirst\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\na\tO\ta\tO\nseq B-Data_Structure seq O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1163 I-Code_Block Q_1163 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nexplicitly\tO\texplicitly\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nfine\tO\tfine\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1164 I-Code_Block Q_1164 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nusing\tO\tusing\tO\niterate B-Code_Block iterate B-Code_Block\nadds\tO\tadds\tO\nan\tO\tan\tO\nextra\tO\textra\tO\nparenthesis B-Value parenthesis O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1165 I-Code_Block Q_1165 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12329588\tO\t12329588\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12329588/\tO\thttps://stackoverflow.com/questions/12329588/\tO\n\t\n\t\nRe-read\tO\tRe-read\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nfor\tO\tfor\tO\niterate B-Code_Block iterate B-Code_Block\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nUse\tO\tUse\tO\nnth B-Code_Block nth B-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ntake B-Code_Block take B-Code_Block\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\niteration\tO\titeration\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK O\n: I-Code_Block : O\n( I-Code_Block ( O\ncode I-Code_Block code O\nomitted I-Code_Block omitted O\nfor I-Code_Block for O\nannotation I-Code_Block annotation O\n) I-Code_Block ) O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12329588\tO\t12329588\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12329588/\tO\thttps://stackoverflow.com/questions/12329588/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2696 I-Code_Block A_2696 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nsolves\tO\tsolves\tO\nthis\tO\tthis\tO\nparticular\tO\tparticular\tO\nkoan\tO\tkoan\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2206220\tO\t2206220\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2206220/\tO\thttps://stackoverflow.com/questions/2206220/\tO\n\t\n\t\n(\tO\t(\tO\nAsking\tO\tAsking\tO\non\tO\ton\tO\nbehalf\tO\tbehalf\tO\nof\tO\tof\tO\na\tO\ta\tO\nfriend\tO\tfriend\tO\nemployed\tO\temployed\tO\nin\tO\tin\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nbank\tO\tbank\tO\n)\tO\t)\tO\n\t\nSince\tO\tSince\tO\nhe\tO\the\tO\n's\tO\t's\tO\nno\tO\tno\tO\nprogramming\tO\tprogramming\tO\nexperience\tO\texperience\tO\n(\tO\t(\tO\nneither\tO\tneither\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nwith\tO\twith\tO\nSQL B-Application SQL O\nServer I-Application Server O\n)\tO\t)\tO\n,\tO\t,\tO\nhe\tO\the\tO\n's\tO\t's\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ntool\tO\ttool\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nshow\tO\tshow\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\njpg B-File_Type jpg O\nimages B-User_Interface_Element images O\nstored\tO\tstored\tO\nin\tO\tin\tO\na\tO\ta\tO\nwindows\tO\twindows\tO\nSQL B-Application SQL O\nServer I-Application Server O\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nGoogle B-Website Google O\ndid\tO\tdid\tO\nn't\tO\tn't\tO\ngive\tO\tgive\tO\nany\tO\tany\tO\nsatisfactory\tO\tsatisfactory\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2206220\tO\t2206220\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2206220/\tO\thttps://stackoverflow.com/questions/2206220/\tO\n\t\n\t\nSQL B-Application SQL O\nImage I-Application Image O\nViewer I-Application Viewer O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11087271\tO\t11087271\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11087271/\tO\thttps://stackoverflow.com/questions/11087271/\tO\n\t\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nhave\tO\thave\tO\nany\tO\tany\tO\ntips\tO\ttips\tO\nfor\tO\tfor\tO\ncalculating\tO\tcalculating\tO\npercentages\tO\tpercentages\tO\nin\tO\tin\tO\nLinq B-Language Linq O\nto\tO\tto\tO\nEntities\tO\tEntities\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nguessing\tO\tguessing\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nthan\tO\tthan\tO\nreturning\tO\treturning\tO\n2\tO\t2\tO\nresults\tO\tresults\tO\nand\tO\tand\tO\ncalculating\tO\tcalculating\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nan\tO\tan\tO\ninventive\tO\tinventive\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nlet\tO\tlet\tO\nor\tO\tor\tO\ninto\tO\tinto\tO\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n\t\nThanks\tO\tThanks\tO\nMark B-User_Name Mark O\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nsnippet\tO\tsnippet\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\n2\tO\t2\tO\ndatabase\tO\tdatabase\tO\nhits\tO\thits\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1022 I-Code_Block Q_1022 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11087271\tO\t11087271\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11087271/\tO\thttps://stackoverflow.com/questions/11087271/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nLINQ B-Library LINQ O\nto\tO\tto\tO\nEntities\tO\tEntities\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nsomething\tO\tsomething\tO\nalong\tO\talong\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\nselect B-Code_Block select B-Code_Block\nx I-Code_Block x I-Code_Block\n* I-Code_Block * I-Code_Block\n100.0 I-Code_Block 100.0 I-Code_Block\n/ I-Code_Block / I-Code_Block\ny I-Code_Block y I-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\nquery\tO\tquery\tO\nthen\tO\tthen\tO\nthis\tO\tthis\tO\nexpression\tO\texpression\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nconverted\tO\tconverted\tO\nto\tO\tto\tO\nSQL B-Language SQL O\nand\tO\tand\tO\nrun\tO\trun\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nefficient\tO\tefficient\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23299993\tO\t23299993\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23299993/\tO\thttps://stackoverflow.com/questions/23299993/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nJava B-Language Java O\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\ndrawing\tO\tdrawing\tO\nan\tO\tan\tO\noval B-User_Interface_Element oval O\nusing\tO\tusing\tO\npaintComponent B-Function paintComponent O\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nmany\tO\tmany\tO\nsimilar\tO\tsimilar\tO\nthreads\tO\tthreads\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnone\tO\tnone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsoultions\tO\tsoultions\tO\nworked\tO\tworked\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nRacerMain.java B-File_Name RacerMain.java O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2567 I-Code_Block Q_2567 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDot.java B-File_Name Dot.java O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2568 I-Code_Block Q_2568 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhy\tO\tWhy\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nworking\tO\tworking\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23299993\tO\t23299993\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23299993/\tO\thttps://stackoverflow.com/questions/23299993/\tO\n\t\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset B-Function set O\npreferred I-Function preferred O\nsize I-Function size O\nin\tO\tin\tO\nconstructor\tO\tconstructor\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3174 I-Code_Block A_3174 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23299993\tO\t23299993\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23299993/\tO\thttps://stackoverflow.com/questions/23299993/\tO\n\t\n\t\nJPanel B-Class JPanel B-Code_Block\nuses\tO\tuses\tO\nFlowLayout B-Class FlowLayout B-Code_Block\nwhich\tO\twhich\tO\nrespects\tO\trespects\tO\npreferred\tO\tpreferred\tO\nsizes\tO\tsizes\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nDot B-Class Dot B-Code_Block\ncomponent\tO\tcomponent\tO\nis\tO\tis\tO\ntoo\tO\ttoo\tO\nsmall\tO\tsmall\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nseen\tO\tseen\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nlayout\tO\tlayout\tO\nmanager\tO\tmanager\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nthe\tO\tthe\tO\nmaximum\tO\tmaximum\tO\narea\tO\tarea\tO\navailable\tO\tavailable\tO\nor\tO\tor\tO\noverride\tO\toverride\tO\ngetPreferredSize B-Function getPreferredSize B-Code_Block\n.\tO\t.\tO\n\t\nRemember\tO\tRemember\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\npack B-Function pack B-Code_Block\nbefore\tO\tbefore\tO\ncalling\tO\tcalling\tO\nJFrame B-Function JFrame B-Code_Block\n#setVisible I-Function #setVisible I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3173 I-Code_Block A_3173 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27759560\tO\t27759560\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27759560/\tO\thttps://stackoverflow.com/questions/27759560/\tO\n\t\n\t\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nsave\tO\tsave\tO\nmy\tO\tmy\tO\nbash B-File_Name bash O\nprofile I-File_Name profile O\n/\tO\t/\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nclean\tO\tclean\tO\ninstall\tO\tinstall\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nmac B-Device mac O\n/\tO\t/\tO\nthen\tO\tthen\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\nbash B-File_Name bash O\nprofile I-File_Name profile O\n?\tO\t?\tO\n\t\nTYIA\tO\tTYIA\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27759560\tO\t27759560\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27759560/\tO\thttps://stackoverflow.com/questions/27759560/\tO\n\t\n\t\nBefore\tO\tBefore\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nclean\tO\tclean\tO\ninstall\tO\tinstall\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nback\tO\tback\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nrestore\tO\trestore\tO\nyour\tO\tyour\tO\nbash B-File_Name bash O\nprofile I-File_Name profile O\n( I-File_Name ( O\nor\tO\tor\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n)\tO\t)\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbackup\tO\tbackup\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\n\"\tO\t\"\tO\nbash B-File_Name bash O\nprofile I-File_Name profile O\n\"\tO\t\"\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nof\tO\tof\tO\n~ B-File_Name ~ B-Code_Block\n/bash_login I-File_Name /bash_login I-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\n~ B-File_Name ~ B-Code_Block\n/.bash_profile I-File_Name /.bash_profile I-Code_Block\n,\tO\t,\tO\nor\tO\tor\tO\n~ B-File_Name ~ B-Code_Block\n/.profile I-File_Name /.profile I-Code_Block\nthat\tO\tthat\tO\nexists\tO\texists\tO\n,\tO\t,\tO\nplus\tO\tplus\tO\n~ B-File_Name ~ B-Code_Block\n/.bashrc I-File_Name /.bashrc I-Code_Block\nif\tO\tif\tO\nit\tO\tit\tO\nexists\tO\texists\tO\n,\tO\t,\tO\nplus\tO\tplus\tO\nany\tO\tany\tO\nfiles\tO\tfiles\tO\nthat\tO\tthat\tO\nthese\tO\tthese\tO\nfiles\tO\tfiles\tO\nimport\tO\timport\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nplain\tO\tplain\tO\ntext\tO\ttext\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncopied\tO\tcopied\tO\nwith\tO\twith\tO\n/bin/cat B-File_Name /bin/cat B-Code_Block\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nTerminal B-Application Terminal O\npreferences\tO\tpreferences\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nproperly-speaking\tO\tproperly-speaking\tO\nanything\tO\tanything\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nbash B-Language bash O\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nconsider\tO\tconsider\tO\nthem\tO\tthem\tO\npart\tO\tpart\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nyour\tO\tyour\tO\nprofile\tO\tprofile\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nwith\tO\twith\tO\ndefaults B-Code_Block defaults B-Code_Block\nexport I-Code_Block export I-Code_Block\ncom.apple.Terminal I-Code_Block com.apple.Terminal I-Code_Block\npath/to/saved.plist I-Code_Block path/to/saved.plist I-Code_Block\nand\tO\tand\tO\nrestore\tO\trestore\tO\nit\tO\tit\tO\nlater\tO\tlater\tO\nwith\tO\twith\tO\ndefaults B-Code_Block defaults B-Code_Block\nimport I-Code_Block import I-Code_Block\ncom.apple.Terminal I-Code_Block com.apple.Terminal I-Code_Block\npath/to/saved.plist I-Code_Block path/to/saved.plist I-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14336289\tO\t14336289\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14336289/\tO\thttps://stackoverflow.com/questions/14336289/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nphp B-Language php O\nscript\tO\tscript\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\nruby B-Language ruby O\nfile\tO\tfile\tO\nbut\tO\tbut\tO\nto\tO\tto\tO\nno\tO\tno\tO\nsuccess\tO\tsuccess\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\nphp B-Language php O\nscript\tO\tscript\tO\nin\tO\tin\tO\nits\tO\tits\tO\nphp B-Language php O\ndirectory\tO\tdirectory\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1367 I-Code_Block Q_1367 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nruby B-Language ruby O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\noutside\tO\toutside\tO\nphp B-Language php O\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nExpected\tO\tExpected\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\ninformation\tO\tinformation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nterminal B-Application terminal O\nand\tO\tand\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43133612\tO\t43133612\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43133612/\tO\thttps://stackoverflow.com/questions/43133612/\tO\n\t\n\t\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nSharePoint B-Application SharePoint O\nlogin\tO\tlogin\tO\nuser\tO\tuser\tO\nroleDefinitionBindings B-Class roleDefinitionBindings O\nusing\tO\tusing\tO\njavascript B-Language javascript O\n.\tO\t.\tO\n\t\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\ncall\tO\tcall\tO\nrest B-Library rest O\napi I-Library api O\ncall\tO\tcall\tO\nfor\tO\tfor\tO\nroleDefinitionBindings B-Class roleDefinitionBindings O\ni\tO\ti\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nin\tO\tin\tO\nresponse\tO\tresponse\tO\n:\tO\t:\tO\n\t\n{ B-Output_Block { O\n\" I-Output_Block \" O\nerror I-Output_Block error O\n\" I-Output_Block \" O\n:{ I-Output_Block :{ O\n\" I-Output_Block \" O\ncode I-Output_Block code O\n\" I-Output_Block \" O\n: I-Output_Block : O\n\" I-Output_Block \" O\n-2147024891 I-Output_Block -2147024891 O\n, I-Output_Block , O\nSystem.UnauthorizedAccessException I-Output_Block System.UnauthorizedAccessException O\n\" I-Output_Block \" O\n, I-Output_Block , O\n\t\n\" B-Output_Block \" O\nmessage I-Output_Block message O\n\" I-Output_Block \" O\n:{ I-Output_Block :{ O\n\" I-Output_Block \" O\nlang I-Output_Block lang O\n\" I-Output_Block \" O\n: I-Output_Block : O\n\" I-Output_Block \" O\nen-US I-Output_Block en-US O\n\" I-Output_Block \" O\n, I-Output_Block , O\n\" I-Output_Block \" O\nvalue I-Output_Block value O\n\" I-Output_Block \" O\n: I-Output_Block : O\n\" I-Output_Block \" O\nAccess I-Output_Block Access O\ndenied I-Output_Block denied O\n. I-Output_Block . O\n\t\nYou B-Output_Block You O\ndo I-Output_Block do O\nnot I-Output_Block not O\nhave I-Output_Block have O\npermission I-Output_Block permission O\nto I-Output_Block to O\nperform I-Output_Block perform O\nthis I-Output_Block this O\naction I-Output_Block action O\nor I-Output_Block or O\naccess I-Output_Block access O\nthis I-Output_Block this O\nresource I-Output_Block resource O\n. I-Output_Block . O\n\" I-Output_Block \" O\n}}} I-Output_Block }}} O\n\t\nMy\tO\tMy\tO\nrest B-Library rest O\napi I-Library api O\ncall\tO\tcall\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\n[ B-Code_Block [ O\nfunction I-Code_Block function O\ngetUserRole(appWeburl, I-Code_Block getUserRole(appWeburl, O\nprincipalid,success,failed) I-Code_Block principalid,success,failed) O\n{ I-Code_Block { O\n\t\n$ B-Code_Block $ O\n.ajax I-Code_Block .ajax O\n( B-Code_Block ( O\n{ I-Code_Block { O\n\t\nurl B-Code_Block url O\n: I-Code_Block : O\nappWeburl+ I-Code_Block appWeburl+ O\n\" I-Code_Block \" O\n/_api/web/RoleAssignments I-Code_Block /_api/web/RoleAssignments O\n(' I-Code_Block (' O\n\" B-Code_Block \" O\n+ I-Code_Block + O\nprincipalid I-Code_Block principalid O\n+ I-Code_Block + O\n\" I-Code_Block \" O\n' B-Code_Block ' O\n) I-Code_Block ) O\n/roleDefinitionBindings I-Code_Block /roleDefinitionBindings O\n\" I-Code_Block \" O\n, I-Code_Block , O\n\t\nmethod B-Code_Block method O\n: I-Code_Block : O\n\" I-Code_Block \" O\nGET I-Code_Block GET O\n\" I-Code_Block \" O\n, I-Code_Block , O\n\t\nheaders B-Code_Block headers O\n: I-Code_Block : O\n{ I-Code_Block { O\n\" I-Code_Block \" O\nAccept I-Code_Block Accept O\n\" I-Code_Block \" O\n: I-Code_Block : O\n\" I-Code_Block \" O\napplication/json I-Code_Block application/json O\n; I-Code_Block ; O\nodata I-Code_Block odata O\n= I-Code_Block = O\nverbose I-Code_Block verbose O\n\" I-Code_Block \" O\n} I-Code_Block } O\n,\tO\t,\tO\n\t\nsuccess B-Code_Block success O\n: I-Code_Block : O\nfunction(data) I-Code_Block function(data) O\n{ I-Code_Block { O\nconsole.log I-Code_Block console.log O\n( I-Code_Block ( O\n\" I-Code_Block \" O\nSuccess I-Code_Block Success O\nLoad I-Code_Block Load O\n\" I-Code_Block \" O\n) I-Code_Block ) O\n; I-Code_Block ; O\nsuccess I-Code_Block success O\n( I-Code_Block ( O\ndata.d.results B-Code_Block data.d.results O\n) I-Code_Block ) O\n;} I-Code_Block ;} O\n,\tO\t,\tO\n\t\nerror B-Code_Block error O\n: I-Code_Block : O\nfunction I-Code_Block function O\n( I-Code_Block ( O\ndata I-Code_Block data O\n) I-Code_Block ) O\n{ B-Code_Block { O\nconsole.log I-Code_Block console.log O\n( I-Code_Block ( O\n\" I-Code_Block \" O\nFailed I-Code_Block Failed O\nto I-Code_Block to O\nLoad I-Code_Block Load O\n\" I-Code_Block \" O\n) I-Code_Block ) O\n; I-Code_Block ; O\nfailed() I-Code_Block failed() O\n; I-Code_Block ; O\n} I-Code_Block } O\n} I-Code_Block } O\n) I-Code_Block ) O\n; B-Code_Block ; O\n\t\n} B-Code_Block } O\n] I-Code_Block ] O\n1 B-Code_Block 1 O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48680943\tO\t48680943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48680943/\tO\thttps://stackoverflow.com/questions/48680943/\tO\n\t\n\t\nInstall\tO\tInstall\tO\nInfo\tO\tInfo\tO\nis\tO\tis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nsonarqube-6.7.1 B-Application sonarqube-6.7.1 O\n|\tO\t|\tO\nsonar-scanner-3.0.3.778 B-Application sonar-scanner-3.0.3.778 O\n|\tO\t|\tO\nsonar-scanner-msbuild-4.0.2.892 B-Application sonar-scanner-msbuild-4.0.2.892 O\n|\tO\t|\tO\nmsbuild B-Application msbuild O\n14 B-Version 14 O\n|\tO\t|\tO\nJava B-Application Java O\nSE I-Application SE O\nDevelopment I-Application Development O\nKit I-Application Kit O\n8 B-Version 8 O\n|\tO\t|\tO\n.NET B-Library .NET O\nFramework I-Library Framework O\n4.6.2 B-Version 4.6.2 O\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nwindows\tO\twindows\tO\nbatch B-File_Type batch O\nfile\tO\tfile\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nand\tO\tand\tO\nscan(sonar)\tO\tscan(sonar)\tO\n.\tO\t.\tO\n\t\nbut\tO\tbut\tO\nsome\tO\tsome\tO\nprojects\tO\tprojects\tO\nare\tO\tare\tO\nok\tO\tok\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nsome\tO\tsome\tO\nprojects\tO\tprojects\tO\nare\tO\tare\tO\nfailed\tO\tfailed\tO\n.\tO\t.\tO\n\t\nbatch B-File_Type batch O\nfile\tO\tfile\tO\nis\tO\tis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nOur\tO\tOur\tO\nBuild.bat B-File_Name Build.bat O\nis\tO\tis\tO\ncustomized\tO\tcustomized\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\nBuild.bat B-File_Name Build.bat O\nnot\tO\tnot\tO\ninclude\tO\tinclude\tO\nSonarQube B-Application SonarQube O\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nis\tO\tis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nC:\\Program B-Output_Block C:\\Program O\nFiles I-Output_Block Files O\n( I-Output_Block ( O\nx86 I-Output_Block x86 O\n) I-Output_Block ) O\n\\Jenkins\\workspace\\CSS_SQ>exit B-Output_Block \\Jenkins\\workspace\\CSS_SQ>exit O\n0 I-Output_Block 0 O\n\t\n[ B-Output_Block [ O\nCSS_SQ I-Output_Block CSS_SQ O\n] I-Output_Block ] O\n$ B-Output_Block $ O\n\" I-Output_Block \" O\nC:\\Program I-Output_Block C:\\Program O\nFiles(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\MSBuild.SonarQube.Runner.exe\" I-Output_Block Files(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\MSBuild.SonarQube.Runner.exe\" O\nend I-Output_Block end O\n/d:sonar.login I-Output_Block /d:sonar.login O\n= I-Output_Block = O\n****** I-Output_Block ****** O\n******** I-Output_Block ******** O\n\t\nSonarQube B-Output_Block SonarQube O\nScanner I-Output_Block Scanner O\nfor I-Output_Block for O\nMSBuild I-Output_Block MSBuild O\n4.0.2 I-Output_Block 4.0.2 O\n\t\nDefault B-Output_Block Default O\nproperties I-Output_Block properties O\nfile I-Output_Block file O\nwas I-Output_Block was O\nfound I-Output_Block found O\nat I-Output_Block at O\nC:\\Program I-Output_Block C:\\Program O\nFiles(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml I-Output_Block Files(x86)\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml O\n\t\nLoading B-Output_Block Loading O\nanalysis I-Output_Block analysis O\nproperties I-Output_Block properties O\nfrom I-Output_Block from O\nC:\\Program I-Output_Block C:\\Program O\nFiles I-Output_Block Files O\n( I-Output_Block ( O\nx86 I-Output_Block x86 O\n) I-Output_Block ) O\n\\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml B-Output_Block \\Jenkins\\tools\\hudson.plugins.sonar.MsBuildSQRunnerInstallation\\SonarQube_Scanner_for_MSBuild\\SonarQube.Analysis.xml O\n\t\nPost-processing\tO\tPost-processing\tO\nstarted\tO\tstarted\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nGeneration B-Output_Block Generation O\nof I-Output_Block of O\nthe I-Output_Block the O\nsonar-properties I-Output_Block sonar-properties O\nfile I-Output_Block file O\nfailed I-Output_Block failed O\n. I-Output_Block . O\n\t\nUnable B-Output_Block Unable O\nto I-Output_Block to O\ncomplete I-Output_Block complete O\nSonarQube I-Output_Block SonarQube O\nanalysis I-Output_Block analysis O\n.\tO\t.\tO\n\t\n14:36:16.988 B-Value 14:36:16.988 O\nCreating\tO\tCreating\tO\na\tO\ta\tO\nsummary\tO\tsummary\tO\nmarkdown B-File_Type markdown O\nfile\tO\tfile\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\n14:36:16.989 B-Output_Block 14:36:16.989 O\nPost-processing I-Output_Block Post-processing O\nfailed I-Output_Block failed O\n. I-Output_Block . O\n\t\nExit B-Output_Block Exit O\ncode I-Output_Block code O\n: I-Output_Block : O\n1 I-Output_Block 1 O\n\t\nERROR B-Output_Block ERROR O\n: I-Output_Block : O\nExecution I-Output_Block Execution O\nof I-Output_Block of O\nSonarQube I-Output_Block SonarQube O\nScanner I-Output_Block Scanner O\nfor I-Output_Block for O\nMSBuild I-Output_Block MSBuild O\nfailed I-Output_Block failed O\n( I-Output_Block ( O\nexit I-Output_Block exit O\ncode I-Output_Block code O\n1) I-Output_Block 1) O\n\t\nFinished B-Output_Block Finished O\n: I-Output_Block : O\nFAILURE I-Output_Block FAILURE O\n\t\nAbout\tO\tAbout\tO\nthe\tO\tthe\tO\nPossible\tO\tPossible\tO\ncauses\tO\tcauses\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nchecked\tO\tchecked\tO\n1\tO\t1\tO\nand\tO\tand\tO\n2\tO\t2\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nfor\tO\tfor\tO\n3\tO\t3\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nguessing\tO\tguessing\tO\nthe\tO\tthe\tO\n.sonarqube B-File_Type .sonarqube O\nfile\tO\tfile\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfolder\tO\tfolder\tO\nwith\tO\twith\tO\n.sln B-File_Type .sln O\nfile\tO\tfile\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nbatch B-File_Type batch O\nfiles\tO\tfiles\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\npath B-Variable path O\nin\tO\tin\tO\nAdditional\tO\tAdditional\tO\narguments\tO\targuments\tO\ncolumn\tO\tcolumn\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nclue\tO\tclue\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthat\tO\tthat\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nmakes\tO\tmakes\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n?\tO\t?\tO\n\t\nand\tO\tand\tO\nHow\tO\tHow\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48680943\tO\t48680943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48680943/\tO\thttps://stackoverflow.com/questions/48680943/\tO\n\t\n\t\nThe\tO\tThe\tO\nthird\tO\tthird\tO\noption\tO\toption\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nbegin\tO\tbegin\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nend\tO\tend\tO\n\"\tO\t\"\tO\ncommands\tO\tcommands\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nrun\tO\trun\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfolder\tO\tfolder\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nfolder\tO\tfolder\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwhen\tO\twhen\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\ncommands\tO\tcommands\tO\n(\tO\t(\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nexecute\tO\texecute\tO\ncd B-Code_Block cd B-Code_Block\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nscanner\tO\tscanner\tO\ncommands\tO\tcommands\tO\nthe\tO\tthe\tO\nprinted\tO\tprinted\tO\npaths\tO\tpaths\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nparticular\tO\tparticular\tO\nproblem\tO\tproblem\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncaused\tO\tcaused\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nbuild\tO\tbuild\tO\nis\tO\tis\tO\nexecuting\tO\texecuting\tO\nolder\tO\tolder\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nMSBuild B-Application MSBuild O\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\n,\tO\t,\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\nMSBuild B-Application MSBuild O\n14 B-Version 14 O\nor\tO\tor\tO\n15 B-Version 15 O\nin\tO\tin\tO\nyour\tO\tyour\tO\nanalysis\tO\tanalysis\tO\nbuilds\tO\tbuilds\tO\n.\tO\t.\tO\n\t\nOlder\tO\tOlder\tO\nsuggestion\tO\tsuggestion\tO\n(\tO\t(\tO\nstill\tO\tstill\tO\ngenerally\tO\tgenerally\tO\nvalid\tO\tvalid\tO\n)\tO\t)\tO\n\t\nWe\tO\tWe\tO\njust\tO\tjust\tO\ninvestigated\tO\tinvestigated\tO\nsimilar\tO\tsimilar\tO\nproblem\tO\tproblem\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncaused\tO\tcaused\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nthe\tO\tthe\tO\nSlave B-Application Slave O\nAgent I-Application Agent O\nservice\tO\tservice\tO\nis\tO\tis\tO\nauthenticated\tO\tauthenticated\tO\nwith\tO\twith\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nyours\tO\tyours\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nbegin B-Code_Block begin B-Code_Block\nstep\tO\tstep\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscanner\tO\tscanner\tO\nwith\tO\twith\tO\n/d:sonar.verbose B-Code_Block /d:sonar.verbose B-Code_Block\n= I-Code_Block = I-Code_Block\ntrue I-Code_Block true I-Code_Block\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nsee\tO\tsee\tO\nlines\tO\tlines\tO\nlike\tO\tlike\tO\nthese\tO\tthese\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7140 I-Code_Block A_7140 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\npaths\tO\tpaths\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nare\tO\tare\tO\nsubfolders\tO\tsubfolders\tO\nof\tO\tof\tO\nC:\\Windows B-File_Name C:\\Windows B-Code_Block\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nJenkins B-Application Jenkins O\nslave I-Application slave O\nagent I-Application agent O\n's\tO\t's\tO\nWindows B-Application Windows O\nService I-Application Service O\nuser\tO\tuser\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndomain\tO\tdomain\tO\nuser\tO\tuser\tO\n(\tO\t(\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nLocal\tO\tLocal\tO\nSystem\tO\tSystem\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26514544\tO\t26514544\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26514544/\tO\thttps://stackoverflow.com/questions/26514544/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nbeginner\tO\tbeginner\tO\nin\tO\tin\tO\nJava B-Language Java O\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nDFS B-Algorithm DFS O\nof\tO\tof\tO\na\tO\ta\tO\ngraph B-Data_Structure graph O\nusing\tO\tusing\tO\nit\tO\tit\tO\n's\tO\t's\tO\narraylists B-Class arraylists O\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nadjacency B-Data_Structure adjacency O\nlist I-Data_Structure list O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerrors\tO\terrors\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3025 I-Code_Block Q_3025 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3026 I-Code_Block Q_3026 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nGraph.txt B-File_Name Graph.txt O\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3027 I-Code_Block Q_3027 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26514544\tO\t26514544\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26514544/\tO\thttps://stackoverflow.com/questions/26514544/\tO\n\t\n\t\nviz B-Variable viz B-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nStack B-Class Stack O\n,\tO\t,\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nnotation\tO\tnotation\tO\n-\tO\t-\tO\nviz[node] B-Variable viz[node] B-Code_Block\n-\tO\t-\tO\non\tO\ton\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3659 I-Code_Block A_3659 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nyour\tO\tyour\tO\nStack B-Class Stack B-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\ngeneric\tO\tgeneric\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\ncast\tO\tcast\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\npop() B-Function pop() B-Code_Block\nto\tO\tto\tO\nInteger B-Data_Type Integer B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3660 I-Code_Block A_3660 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAn\tO\tAn\tO\nalternative\tO\talternative\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nstack B-Class stack O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3661 I-Code_Block A_3661 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26514544\tO\t26514544\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26514544/\tO\thttps://stackoverflow.com/questions/26514544/\tO\n\t\n\t\nYou\tO\tYou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\narray B-Data_Structure array O\nsyntax\tO\tsyntax\tO\n(array B-Code_Block (array B-Code_Block\n[ I-Code_Block [ I-Code_Block\nindex I-Code_Block index I-Code_Block\n] I-Code_Block ] I-Code_Block\n)\tO\t)\tO\nfor\tO\tfor\tO\nstacks B-Class stacks O\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npush() B-Function push() B-Code_Block\n,\tO\t,\tO\npop() B-Function pop() B-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\npeek() B-Function peek() B-Code_Block\n\t\nStacks B-Class Stacks O\nwork\tO\twork\tO\non\tO\ton\tO\na\tO\ta\tO\nfirst-in\tO\tfirst-in\tO\n,\tO\t,\tO\nlast-out\tO\tlast-out\tO\nbasis\tO\tbasis\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nelement\tO\telement\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstack B-Class stack O\nthat\tO\tthat\tO\nis\tO\tis\tO\naccessible\tO\taccessible\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\npop() B-Function pop() B-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nitem\tO\titem\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccessed\tO\taccessed\tO\n.\tO\t.\tO\n\t\npush() B-Function push() B-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\nput\tO\tput\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nand\tO\tand\tO\npeek() B-Function peek() B-Code_Block\nis\tO\tis\tO\nused\tO\tused\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nitem\tO\titem\tO\nwithout\tO\twithout\tO\npopping\tO\tpopping\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nstack B-Class stack O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3656 I-Code_Block A_3656 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nUsing\tO\tUsing\tO\npop() B-Function pop() B-Code_Block\n,\tO\t,\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\n\" B-Value \" O\nSam I-Value Sam O\n\" I-Value \" O\nand\tO\tand\tO\nremove\tO\tremove\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nstack B-Data_Structure stack O\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3657 I-Code_Block A_3657 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPushing\tO\tPushing\tO\n\" B-Value \" O\nCharlie I-Value Charlie O\n\" I-Value \" O\nwill\tO\twill\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nstack\tO\tstack\tO\nlook\tO\tlook\tO\nthis\tO\tthis\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3658 I-Code_Block A_3658 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nto\tO\tto\tO\npop B-Function pop O\ntwice\tO\ttwice\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\n\" B-Value \" O\nAdam I-Value Adam O\n\" I-Value \" O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47807126\tO\t47807126\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47807126/\tO\thttps://stackoverflow.com/questions/47807126/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nsqlite3 B-Library sqlite3 O\nin\tO\tin\tO\nIntel-PIN B-Application Intel-PIN O\nbut\tO\tbut\tO\nI\tO\tI\tO\nfailed\tO\tfailed\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nsearched\tO\tsearched\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nPinCRT B-Application PinCRT O\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsocket\tO\tsocket\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nother\tO\tother\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nI\tO\tI\tO\nseems\tO\tseems\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthese\tO\tthese\tO\ncodes\tO\tcodes\tO\nand\tO\tand\tO\na\tO\ta\tO\nserver B-Application server O\ncannot\tO\tcannot\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nPin B-Application Pin O\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nServer B-Application Server O\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6347 I-Code_Block Q_6347 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPin B-Application Pin O\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6348 I-Code_Block Q_6348 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nwhile\tO\twhile\tO\nusing\tO\tusing\tO\nPinCRT B-Application PinCRT O\nAPIs I-Application APIs O\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nway\tO\tway\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\na\tO\ta\tO\n_OS_RETURN_CODE B-Class _OS_RETURN_CODE O\n.\tO\t.\tO\n\t\n_OS_RETURN_CODE B-Class _OS_RETURN_CODE O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\n== B-Code_Block == O\nor\tO\tor\tO\n!= B-Code_Block != O\noperators\tO\toperators\tO\nand\tO\tand\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncast\tO\tcast\tO\na\tO\ta\tO\n_OS_RETURN_CODE B-Class _OS_RETURN_CODE O\ntype\tO\ttype\tO\nto\tO\tto\tO\nint B-Data_Type int O\nbut\tO\tbut\tO\nfailed\tO\tfailed\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nsomebody\tO\tsomebody\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1287747\tO\t1287747\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1287747/\tO\thttps://stackoverflow.com/questions/1287747/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\ntens\tO\ttens\tO\nof\tO\tof\tO\nGigabytes\tO\tGigabytes\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\none\tO\tone\tO\nbinary B-File_Type binary O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nrecord\tO\trecord\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nvariable\tO\tvariable\tO\nlength\tO\tlength\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_73 I-Code_Block Q_73 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\ncontains\tO\tcontains\tO\ninteger B-Data_Type integer O\n,\tO\t,\tO\npointer B-Data_Type pointer O\n,\tO\t,\tO\ndouble B-Data_Type double O\nvalue\tO\tvalue\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\npython B-Language python O\ncan\tO\tcan\tO\nnot\tO\tnot\tO\neven\tO\teven\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nsituation\tO\tsituation\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nproblem\tO\tproblem\tO\nif\tO\tif\tO\nI\tO\tI\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nfast\tO\tfast\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthe\tO\tthe\tO\nstruct B-Library struct B-Code_Block\npackage\tO\tpackage\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngood\tO\tgood\tO\nat\tO\tat\tO\nperformance\tO\tperformance\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nalmost\tO\talmost\tO\nstuck\tO\tstuck\tO\non\tO\ton\tO\nunpack\tO\tunpack\tO\nthe\tO\tthe\tO\nbytes\tO\tbytes\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1287747\tO\t1287747\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1287747/\tO\thttps://stackoverflow.com/questions/1287747/\tO\n\t\n\t\nstruct B-Library struct B-Code_Block\nand\tO\tand\tO\narray B-Library array B-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nother\tO\tother\tO\nanswers\tO\tanswers\tO\nrecommend\tO\trecommend\tO\n,\tO\t,\tO\nare\tO\tare\tO\nfine\tO\tfine\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimplementation\tO\timplementation\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nneeds\tO\tneeds\tO\nare\tO\tare\tO\nalways\tO\talways\tO\nto\tO\tto\tO\nsequentially\tO\tsequentially\tO\nread\tO\tread\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nor\tO\tor\tO\na\tO\ta\tO\nprefix\tO\tprefix\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\noptions\tO\toptions\tO\ninclude\tO\tinclude\tO\nbuffer B-Library buffer O\n,\tO\t,\tO\nmmap B-Library mmap O\n,\tO\t,\tO\neven\tO\teven\tO\nctypes B-Library ctypes O\n,\tO\t,\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nmany\tO\tmany\tO\ndetails\tO\tdetails\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nmention\tO\tmention\tO\nregarding\tO\tregarding\tO\nyour\tO\tyour\tO\nexact\tO\texact\tO\nneeds\tO\tneeds\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\na\tO\ta\tO\nlittle\tO\tlittle\tO\nspecialized\tO\tspecialized\tO\nCython-coded B-Language Cython-coded O\nhelper\tO\thelper\tO\ncan\tO\tcan\tO\noffer\tO\toffer\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nextra\tO\textra\tO\nperformance\tO\tperformance\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n,\tO\t,\tO\nif\tO\tif\tO\nno\tO\tno\tO\nsuitable\tO\tsuitable\tO\nand\tO\tand\tO\naccessible\tO\taccessible\tO\nlibrary\tO\tlibrary\tO\n(\tO\t(\tO\nin\tO\tin\tO\nC B-Language C O\n,\tO\t,\tO\nC++ B-Language C++ O\n,\tO\t,\tO\nFortran B-Language Fortran O\n,\tO\t,\tO\n..\tO\t..\tO\n.\tO\t.\tO\n)\tO\t)\tO\nalready\tO\talready\tO\nexists\tO\texists\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ninterfaced\tO\tinterfaced\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\npurpose\tO\tpurpose\tO\nof\tO\tof\tO\nhandling\tO\thandling\tO\nthis\tO\tthis\tO\nhumongous\tO\thumongous\tO\nfile\tO\tfile\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nclearly\tO\tclearly\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\npeculiar\tO\tpeculiar\tO\nissues\tO\tissues\tO\nhere\tO\there\tO\n-\tO\t-\tO\n-\tO\t-\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nfile\tO\tfile\tO\ncontain\tO\tcontain\tO\npointers B-Data_Type pointers O\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nintrinsically\tO\tintrinsically\tO\na\tO\ta\tO\nconcept\tO\tconcept\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\naddressing\tO\taddressing\tO\nmemory\tO\tmemory\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nthey\tO\tthey\tO\nmaybe\tO\tmaybe\tO\n\"\tO\t\"\tO\noffsets\tO\toffsets\tO\n\"\tO\t\"\tO\ninstead\tO\tinstead\tO\n,\tO\t,\tO\nand\tO\tand\tO\n,\tO\t,\tO\nif\tO\tif\tO\nso\tO\tso\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nexactly\tO\texactly\tO\nare\tO\tare\tO\nthey\tO\tthey\tO\nbased\tO\tbased\tO\nand\tO\tand\tO\ncoded\tO\tcoded\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nyour\tO\tyour\tO\nneeds\tO\tneeds\tO\nat\tO\tat\tO\nall\tO\tall\tO\nmore\tO\tmore\tO\nadvanced\tO\tadvanced\tO\nthan\tO\tthan\tO\nsimply\tO\tsimply\tO\nsequential\tO\tsequential\tO\nreading\tO\treading\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\nrandom\tO\trandom\tO\naccess\tO\taccess\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nso\tO\tso\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nfirst\tO\tfirst\tO\n\"\tO\t\"\tO\nindexing\tO\tindexing\tO\n\"\tO\t\"\tO\npass\tO\tpass\tO\nto\tO\tto\tO\nget\tO\tget\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\noffsets\tO\toffsets\tO\nfrom\tO\tfrom\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nrecord\tO\trecord\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nusable\tO\tusable\tO\n,\tO\t,\tO\ncompact\tO\tcompact\tO\n,\tO\t,\tO\nhandily-formatted\tO\thandily-formatted\tO\nauxiliary B-File_Type auxiliary O\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nThat\tO\tThat\tO\nbinary B-File_Type binary O\nfile\tO\tfile\tO\nof\tO\tof\tO\noffsets\tO\toffsets\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nnatural\tO\tnatural\tO\nfor\tO\tfor\tO\narray B-Library array B-Code_Block\n-\tO\t-\tO\n-\tO\t-\tO\nunless\tO\tunless\tO\nthe\tO\tthe\tO\noffsets\tO\toffsets\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nlonger\tO\tlonger\tO\nthan\tO\tthan\tO\narray B-Library array B-Code_Block\nsupports\tO\tsupports\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nmachine\tO\tmachine\tO\n!\tO\t!\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndistribution\tO\tdistribution\tO\nof\tO\tof\tO\nrecord\tO\trecord\tO\nlengths\tO\tlengths\tO\nand\tO\tand\tO\ncompositions\tO\tcompositions\tO\nand\tO\tand\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nrecords\tO\trecords\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\ntens\tO\ttens\tO\nof\tO\tof\tO\ngigabytes\tO\tgigabytes\tO\n\"\tO\t\"\tO\n?\tO\t?\tO\n\t\nEtc\tO\tEtc\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nlarge\tO\tlarge\tO\nscale\tO\tscale\tO\nproblem\tO\tproblem\tO\n(\tO\t(\tO\nand\tO\tand\tO\nno\tO\tno\tO\ndoubt\tO\tdoubt\tO\nvery\tO\tvery\tO\nlarge\tO\tlarge\tO\nscale\tO\tscale\tO\nhardware\tO\thardware\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nit\tO\tit\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\nmention\tO\tmention\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\nread\tO\tread\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nmemory\tO\tmemory\tO\nthat\tO\tthat\tO\nmeans\tO\tmeans\tO\na\tO\ta\tO\n64bit\tO\t64bit\tO\nbox\tO\tbox\tO\nwith\tO\twith\tO\nmany\tO\tmany\tO\ntens\tO\ttens\tO\nof\tO\tof\tO\nGB\tO\tGB\tO\nof\tO\tof\tO\nRAM B-Device RAM O\n-\tO\t-\tO\n-\tO\t-\tO\nwow\tO\twow\tO\n!\tO\t!\tO\n\t\n)\tO\t)\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\n's\tO\t's\tO\nwell\tO\twell\tO\nworth\tO\tworth\tO\nthe\tO\tthe\tO\ndetailed\tO\tdetailed\tO\ncare\tO\tcare\tO\nto\tO\tto\tO\noptimize\tO\toptimize\tO\nthe\tO\tthe\tO\nhandling\tO\thandling\tO\nthereof\tO\tthereof\tO\n-\tO\t-\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nwe\tO\twe\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nhelp\tO\thelp\tO\nmuch\tO\tmuch\tO\nwith\tO\twith\tO\nsuch\tO\tsuch\tO\ndetailed\tO\tdetailed\tO\ncare\tO\tcare\tO\nunless\tO\tunless\tO\nwe\tO\twe\tO\nknow\tO\tknow\tO\nenough\tO\tenough\tO\ndetail\tO\tdetail\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n!\tO\t!\tO\n-\tO\t-\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1287747\tO\t1287747\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1287747/\tO\thttps://stackoverflow.com/questions/1287747/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\ndump\tO\tdump\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nsqlite3 B-Library sqlite3 O\nin\tO\tin\tO\nmemory\tO\tmemory\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_129 I-Code_Block A_129 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nsql B-Language sql O\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nBesides\tO\tBesides\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\ngenerators\tO\tgenerators\tO\n(\tO\t(\tO\nor\tO\tor\tO\nhere\tO\there\tO\n)\tO\t)\tO\nand\tO\tand\tO\niterators\tO\titerators\tO\n(\tO\t(\tO\nor\tO\tor\tO\nhere\tO\there\tO\nand\tO\tand\tO\nhere\tO\there\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47545108\tO\t47545108\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47545108/\tO\thttps://stackoverflow.com/questions/47545108/\tO\n\t\n\t\nWhat\tO\tWhat\tO\ncommand\tO\tcommand\tO\ncould\tO\tcould\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\nin\tO\tin\tO\none\tO\tone\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nturn\tO\tturn\tO\nthis\tO\tthis\tO\ntext\tO\ttext\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6316 I-Code_Block Q_6316 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ninto\tO\tinto\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6317 I-Code_Block Q_6317 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47545108\tO\t47545108\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47545108/\tO\thttps://stackoverflow.com/questions/47545108/\tO\n\t\n\t\nlet\tO\tlet\tO\nyour\tO\tyour\tO\nsource\tO\tsource\tO\nfile\tO\tfile\tO\nbe\tO\tbe\tO\ninput.txt B-File_Name input.txt O\n\t\nwe\tO\twe\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ntab\tO\ttab\tO\nat\tO\tat\tO\nstarting\tO\tstarting\tO\nof\tO\tof\tO\neach\tO\teach\tO\nline\tO\tline\tO\nwhich\tO\twhich\tO\ncontain\tO\tcontain\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nberry B-Value berry O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6937 I-Code_Block A_6937 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\noptionally\tO\toptionally\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\n-i B-Code_Block -i O\noption\tO\toption\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nfile\tO\tfile\tO\nitself\tO\titself\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6938 I-Code_Block A_6938 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nheading\tO\theading\tO\nberries B-Value berries O\n:\tO\t:\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nbelow\tO\tbelow\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6939 I-Code_Block A_6939 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nassuming\tO\tassuming\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nsorted\tO\tsorted\tO\nso\tO\tso\tO\nall\tO\tall\tO\nberries B-Value berries O\nare\tO\tare\tO\nin\tO\tin\tO\nadjacent\tO\tadjacent\tO\nlines\tO\tlines\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47545108\tO\t47545108\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47545108/\tO\thttps://stackoverflow.com/questions/47545108/\tO\n\t\n\t\nAt\tO\tAt\tO\na\tO\ta\tO\nsimplistic\tO\tsimplistic\tO\nlevel\tO\tlevel\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nmore\tO\tmore\tO\nor\tO\tor\tO\nless\tO\tless\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nask\tO\task\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6935 I-Code_Block A_6935 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSample\tO\tSample\tO\nOutput\tO\tOutput\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6936 I-Code_Block A_6936 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThat\tO\tThat\tO\nsays.\tO\tsays.\tO\n.\tO\t.\tO\nfind\tO\tfind\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\nNOT\tO\tNOT\tO\ncontaining\tO\tcontaining\tO\n\" B-Value \" O\nberry I-Value berry O\n\" I-Value \" O\nin\tO\tin\tO\noriginal.txt B-File_Name original.txt B-Code_Block\nbecause\tO\tbecause\tO\ngrep B-Code_Block grep B-Code_Block\n-v I-Code_Block -v I-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nnegative\tO\tnegative\tO\nsearch\tO\tsearch\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nit\tO\tit\tO\nprints\tO\tprints\tO\nthe\tO\tthe\tO\ntitle\tO\ttitle\tO\n\" B-Value \" O\nberries I-Value berries O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nsed B-Code_Block sed B-Code_Block\nwith\tO\twith\tO\n-n B-Code_Block -n B-Code_Block\nso\tO\tso\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n,\tO\t,\tO\nit\tO\tit\tO\nprints\tO\tprints\tO\nnothing\tO\tnothing\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nlines\tO\tlines\tO\nmatching\tO\tmatching\tO\n\" B-Value \" O\nberry I-Value berry O\n\" I-Value \" O\n,\tO\t,\tO\nit\tO\tit\tO\nreplaces\tO\treplaces\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nline\tO\tline\tO\nwith\tO\twith\tO\n3\tO\t3\tO\nspaces\tO\tspaces\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nprints\tO\tprints\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\nwith\tO\twith\tO\np B-Code_Block p B-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nfind\tO\tfind\tO\n\" B-Value \" O\nloganberry I-Value loganberry O\n\" I-Value \" O\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\nif\tO\tif\tO\n\" B-Value \" O\nstrawberries I-Value strawberries O\n\" I-Value \" O\nappears\tO\tappears\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nalso\tO\talso\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\n\" B-Value \" O\nberries I-Value berries O\n: I-Value : O\n\" I-Value \" O\ntitle\tO\ttitle\tO\neven\tO\teven\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nberries B-Value berries O\nin\tO\tin\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42343986\tO\t42343986\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42343986/\tO\thttps://stackoverflow.com/questions/42343986/\tO\n\t\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nSlider B-Library Slider O\nin\tO\tin\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndrag\tO\tdrag\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nChrome B-Application Chrome O\ndeveloper I-Application developer O\nenvironment\tO\tenvironment\tO\nwith\tO\twith\tO\ndevice\tO\tdevice\tO\nemulation\tO\temulation\tO\nturned\tO\tturned\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntool-tips\tO\ttool-tips\tO\nshowing\tO\tshowing\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nvalue\tO\tvalue\tO\nare\tO\tare\tO\nvisible\tO\tvisible\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\ndrag\tO\tdrag\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nvery\tO\tvery\tO\nsame\tO\tsame\tO\nproject\tO\tproject\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nIPhone B-Device IPhone O\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndrag\tO\tdrag\tO\nit\tO\tit\tO\nperfectly\tO\tperfectly\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ntool-tips B-User_Interface_Element tool-tips O\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42343986\tO\t42343986\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42343986/\tO\thttps://stackoverflow.com/questions/42343986/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nattribute\tO\tattribute\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\ntrick\tO\ttrick\tO\nand\tO\tand\tO\nit\tO\tit\tO\nactually\tO\tactually\tO\nworks\tO\tworks\tO\non\tO\ton\tO\ntouch\tO\ttouch\tO\ndevices\tO\tdevices\tO\nlike\tO\tlike\tO\nmy\tO\tmy\tO\nIPhone B-Device IPhone O\n6s B-Version 6s O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nremarable\tO\tremarable\tO\nbecause\tO\tbecause\tO\ntooltips B-User_Interface_Element tooltips O\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\non\tO\ton\tO\nbuttons B-User_Interface_Element buttons O\nusing\tO\tusing\tO\ngwtbootstrap3 B-Library gwtbootstrap3 O\n.\tO\t.\tO\n\t\nActually\tO\tActually\tO\nthey\tO\tthey\tO\nwork\tO\twork\tO\nbut\tO\tbut\tO\nthey\tO\tthey\tO\ntake\tO\ttake\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntip\tO\ttip\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ntip\tO\ttip\tO\ntwice\tO\ttwice\tO\non\tO\ton\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25614976\tO\t25614976\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25614976/\tO\thttps://stackoverflow.com/questions/25614976/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthread\tO\tthread\tO\nlibrary.For\tO\tlibrary.For\tO\nthis\tO\tthis\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nqueue B-Data_Structure queue O\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\npending\tO\tpending\tO\nthreads\tO\tthreads\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2913 I-Code_Block Q_2913 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nI\tO\tI\tO\nmentioned\tO\tmentioned\tO\nthe\tO\tthe\tO\nqueue B-Data_Structure queue O\nbecause\tO\tbecause\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nexperimenting\tO\texperimenting\tO\nby\tO\tby\tO\nremoving\tO\tremoving\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\n'\tO\t'\tO\nMyThreadYield B-Function MyThreadYield O\n'\tO\t'\tO\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworkes\tO\tworkes\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\ndoesnt\tO\tdoesnt\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nintended\tO\tintended\tO\nfunctionality\tO\tfunctionality\tO\n.\tO\t.\tO\n\t\ngetcontext(&(save.context)) B-Function getcontext(&(save.context)) O\n; I-Function ; O\n\t\naddToQueue(save) B-Function addToQueue(save) O\n; I-Function ; O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25614976\tO\t25614976\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25614976/\tO\thttps://stackoverflow.com/questions/25614976/\tO\n\t\n\t\nFor\tO\tFor\tO\none\tO\tone\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nqueue B-Data_Structure queue O\nimplementation\tO\timplementation\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nthread-safe\tO\tthread-safe\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nquestion\tO\tquestion\tO\nstrongly\tO\tstrongly\tO\nsuggests\tO\tsuggests\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\na\tO\ta\tO\nmulti-threaded\tO\tmulti-threaded\tO\nenvironment\tO\tenvironment\tO\n.\tO\t.\tO\n\t\nHaving\tO\tHaving\tO\na\tO\ta\tO\nnon\tO\tnon\tO\nthread-safe\tO\tthread-safe\tO\nqueue B-Data_Structure queue O\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nwrong\tO\twrong\tO\nresults\tO\tresults\tO\n,\tO\t,\tO\nand\tO\tand\tO\nweird\tO\tweird\tO\nthings\tO\tthings\tO\ncan\tO\tcan\tO\nhappen\tO\thappen\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nremoveFromQueue() B-Function removeFromQueue() B-Code_Block\nreturning\tO\treturning\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\nthreads\tO\tthreads\tO\n,\tO\t,\tO\nor\tO\tor\tO\naddToQueue() B-Function addToQueue() B-Code_Block\ninserting\tO\tinserting\tO\ntwo\tO\ttwo\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nposition\tO\tposition\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAside\tO\tAside\tO\nfrom\tO\tfrom\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nqueue B-Data_Structure queue O\nimplementation\tO\timplementation\tO\nwould\tO\twould\tO\nnever\tO\tnever\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nfront B-Variable front B-Code_Block\nand\tO\tand\tO\nrear B-Variable rear B-Code_Block\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nLook\tO\tLook\tO\ncarefully\tO\tcarefully\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ninsert\tO\tinsert\tO\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3531 I-Code_Block A_3531 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nrear B-Variable rear B-Code_Block\nis\tO\tis\tO\nMAX B-Variable MAX B-Code_Block\n,\tO\t,\tO\nyet\tO\tyet\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwrite\tO\twrite\tO\ninto\tO\tinto\tO\nqueue[front] B-Variable queue[front] B-Code_Block\nand\tO\tand\tO\nincrement\tO\tincrement\tO\nfront B-Variable front B-Code_Block\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nif\tO\tif\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nkeep\tO\tkeep\tO\nadding\tO\tadding\tO\nitems\tO\titems\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nqueue\tO\tqueue\tO\n,\tO\t,\tO\neventually\tO\teventually\tO\nreaching\tO\treaching\tO\nthe\tO\tthe\tO\nbuffer\tO\tbuffer\tO\n's\tO\t's\tO\nlimit\tO\tlimit\tO\n?\tO\t?\tO\n\t\nrear B-Variable rear B-Code_Block\nwill\tO\twill\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\n0 B-Value 0 O\n,\tO\t,\tO\nfront B-Variable front B-Code_Block\nwill\tO\twill\tO\ngrow\tO\tgrow\tO\nindefinitely\tO\tindefinitely\tO\n,\tO\t,\tO\nand\tO\tand\tO\nyour\tO\tyour\tO\nfunction\tO\tfunction\tO\nwill\tO\twill\tO\nwrite\tO\twrite\tO\nbeyond\tO\tbeyond\tO\nthe\tO\tthe\tO\nlimits\tO\tlimits\tO\nof\tO\tof\tO\nqueue B-Data_Structure queue B-Code_Block\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nprobably\tO\tprobably\tO\nthe\tO\tthe\tO\ncause\tO\tcause\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nsegmentation B-Error_Name segmentation O\nfault I-Error_Name fault O\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nfor\tO\tfor\tO\nfront B-Variable front B-Code_Block\ninstead\tO\tinstead\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3532 I-Code_Block A_3532 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nremoveFromQueue() B-Function removeFromQueue() B-Code_Block\nlooks\tO\tlooks\tO\nsuperficially\tO\tsuperficially\tO\nok\tO\tok\tO\n,\tO\t,\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nqueue B-Data_Structure queue B-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nglobal B-Data_Type global O\narray B-Data_Structure array O\n(\tO\t(\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nreturning\tO\treturning\tO\na\tO\ta\tO\npointer B-Data_Type pointer O\n,\tO\t,\tO\nand\tO\tand\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nreturn\tO\treturn\tO\npointers B-Data_Type pointers O\nto\tO\tto\tO\nlocal\tO\tlocal\tO\nvariables\tO\tvariables\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nsingle\tO\tsingle\tO\n,\tO\t,\tO\nmost\tO\tmost\tO\nimportant\tO\timportant\tO\nfact\tO\tfact\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\nqueue B-Data_Structure queue O\nimplementation\tO\timplementation\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nscale\tO\tscale\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlong-term\tO\tlong-term\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\narray-based\tO\tarray-based\tO\nqueue B-Data_Structure queue O\nis\tO\tis\tO\na\tO\ta\tO\nterrible\tO\tterrible\tO\nchoice\tO\tchoice\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\nout\tO\tout\tO\nof\tO\tof\tO\nspace\tO\tspace\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nif\tO\tif\tO\nI\tO\tI\tO\ninsert\tO\tinsert\tO\nMAX B-Variable MAX B-Code_Block\nelements\tO\telements\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nremove\tO\tremove\tO\n2 B-Value 2 O\nor\tO\tor\tO\n3 B-Value 3 O\n,\tO\t,\tO\nand\tO\tand\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ninsert\tO\tinsert\tO\nmore\tO\tmore\tO\n?\tO\t?\tO\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nsay\tO\tsay\tO\nthe\tO\tthe\tO\nqueue B-Data_Structure queue O\nis\tO\tis\tO\nfull\tO\tfull\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\never\tO\tever\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ninsert\tO\tinsert\tO\nMAX B-Variable MAX B-Code_Block\nelements\tO\telements\tO\nin\tO\tin\tO\ntotal\tO\ttotal\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nshift\tO\tshift\tO\nevery\tO\tevery\tO\nelement\tO\telement\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nqueue B-Data_Structure queue O\nto\tO\tto\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nwhen\tO\twhen\tO\nan\tO\tan\tO\nelement\tO\telement\tO\nis\tO\tis\tO\nremoved\tO\tremoved\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\ncrazy\tO\tcrazy\tO\n,\tO\t,\tO\nand\tO\tand\tO\nextremely\tO\textremely\tO\ninefficient\tO\tinefficient\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nincrement\tO\tincrement\tO\nfront B-Variable front B-Code_Block\nmodulo\tO\tmodulo\tO\nMAX B-Variable MAX B-Code_Block\n,\tO\t,\tO\nallowing\tO\tallowing\tO\nrear B-Variable rear B-Code_Block\nto\tO\tto\tO\nbe\tO\tbe\tO\nahead\tO\tahead\tO\nof\tO\tof\tO\nfront B-Variable front B-Code_Block\n,\tO\t,\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nno\tO\tno\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nMAX B-Variable MAX B-Code_Block\nelements\tO\telements\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ninserted\tO\tinserted\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbreak\tO\tbreak\tO\nthe\tO\tthe\tO\nlogic\tO\tlogic\tO\nin\tO\tin\tO\nremoveFromQueue() B-Function removeFromQueue() B-Code_Block\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\npointers B-Data_Type pointers O\nreturned\tO\treturned\tO\nearlier\tO\tearlier\tO\nwill\tO\twill\tO\npossibly\tO\tpossibly\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nthread\tO\tthread\tO\nstruct B-Data_Structure struct O\nas\tO\tas\tO\nyou\tO\tyou\tO\nmanipulate\tO\tmanipulate\tO\nthe\tO\tthe\tO\nqueue B-Data_Structure queue O\n-\tO\t-\tO\ntotal\tO\ttotal\tO\ndisaster\tO\tdisaster\tO\n.\tO\t.\tO\n\t\nDefinitely\tO\tDefinitely\tO\nnot\tO\tnot\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nmuch\tO\tmuch\tO\n,\tO\t,\tO\nmuch\tO\tmuch\tO\nbetter\tO\tbetter\tO\napproach\tO\tapproach\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlinked B-Data_Structure linked O\nlist I-Data_Structure list O\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nkeep\tO\tkeep\tO\na\tO\ta\tO\npointer B-Data_Type pointer O\nto\tO\tto\tO\nthe\tO\tthe\tO\nhead\tO\thead\tO\nand\tO\tand\tO\na\tO\ta\tO\npointer B-Data_Type pointer O\nto\tO\tto\tO\nthe\tO\tthe\tO\ntail\tO\ttail\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nhttp://en.wikipedia.org/wiki/Queue_(abstract_data_type)#Queue_implementation\tO\thttp://en.wikipedia.org/wiki/Queue_(abstract_data_type)#Queue_implementation\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48520021\tO\t48520021\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48520021/\tO\thttps://stackoverflow.com/questions/48520021/\tO\n\t\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6459 I-Code_Block Q_6459 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48520021\tO\t48520021\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48520021/\tO\thttps://stackoverflow.com/questions/48520021/\tO\n\t\n\t\nTry\tO\tTry\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7104 I-Code_Block A_7104 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11619118\tO\t11619118\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11619118/\tO\thttps://stackoverflow.com/questions/11619118/\tO\n\t\n\t\nI\tO\tI\tO\ndestroyed\tO\tdestroyed\tO\nmy\tO\tmy\tO\nsubversion B-Application subversion O\ntree B-Data_Structure tree O\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\ncould\tO\tcould\tO\nhave\tO\thave\tO\ncaused\tO\tcaused\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nsvn B-Code_Block svn B-Code_Block\nignore I-Code_Block ignore I-Code_Block\non\tO\ton\tO\nsome\tO\tsome\tO\nfiles\tO\tfiles\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nago\tO\tago\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nrevisited\tO\trevisited\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\nretract\tO\tretract\tO\nthe\tO\tthe\tO\nsvn B-Code_Block svn B-Code_Block\nignore I-Code_Block ignore I-Code_Block\nby\tO\tby\tO\nusing\tO\tusing\tO\nsvn B-Code_Block svn B-Code_Block\npropdel I-Code_Block propdel I-Code_Block\nsvn:ignore I-Code_Block svn:ignore I-Code_Block\n-R I-Code_Block -R I-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nremoves\tO\tremoves\tO\nall\tO\tall\tO\ningnores\tO\tingnores\tO\nI\tO\tI\tO\n've\tO\t've\tO\nmade\tO\tmade\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nnow\tO\tnow\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmessage\tO\tmessage\tO\n:\tO\t:\tO\n\t\nConflict B-Output_Block Conflict B-Code_Block\nfor I-Output_Block for I-Code_Block\nproperty I-Output_Block property I-Code_Block\n' I-Output_Block ' I-Code_Block\nsvn:ignore I-Output_Block svn:ignore I-Code_Block\n' I-Output_Block ' I-Code_Block\ndiscovered I-Output_Block discovered I-Code_Block\non I-Output_Block on I-Code_Block\n'' I-Output_Block '' I-Code_Block\n. I-Output_Block . I-Code_Block\n\t\nWhat\tO\tWhat\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\nempty\tO\tempty\tO\nsingle\tO\tsingle\tO\nquotes\tO\tquotes\tO\nmean\tO\tmean\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nsubversion B-Application subversion O\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ntrouble\tO\ttrouble\tO\nfinding\tO\tfinding\tO\nmy\tO\tmy\tO\nworking\tO\tworking\tO\ndirectory\tO\tdirectory\tO\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\n! B-Value ! B-Code_Block\nM I-Value M I-Code_Block\n.\tO\t.\tI-Code_Block\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nsvn B-Application svn O\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\nto\tO\tto\tO\nme\tO\tme\tO\nis\tO\tis\tO\nhow\tO\thow\tO\ndoes\tO\tdoes\tO\nsvn B-Application svn O\naccurately\tO\taccurately\tO\ndisplay\tO\tdisplay\tO\nwhat\tO\twhat\tO\nfiles\tO\tfiles\tO\nI\tO\tI\tO\n've\tO\t've\tO\nmodified\tO\tmodified\tO\nif\tO\tif\tO\nit\tO\tit\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nmy\tO\tmy\tO\ndirectory\tO\tdirectory\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nMaybe\tO\tMaybe\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nmisinterpreting\tO\tmisinterpreting\tO\nthe\tO\tthe\tO\n! B-Value ! B-Code_Block\nM I-Value M I-Code_Block\nmessage\tO\tmessage\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nthat\tO\tthat\tO\nmean\tO\tmean\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\npath\tO\tpath\tO\nis\tO\tis\tO\nmissing\tO\tmissing\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n478788\tO\t478788\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/478788/\tO\thttps://stackoverflow.com/questions/478788/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nEclipse B-Class Eclipse O\nJDT I-Class JDT O\nAST I-Class AST O\nparsing\tO\tparsing\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nincluding\tO\tincluding\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nJAR B-File_Type JAR O\n,\tO\t,\tO\nand\tO\tand\tO\nsorting\tO\tsorting\tO\nout\tO\tout\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nmore\tO\tmore\tO\ndependencies\tO\tdependencies\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nwith\tO\twith\tO\n7+\tO\t7+\tO\nJARs B-File_Type JARs O\nand\tO\tand\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nhaving\tO\thaving\tO\nNoClassDefFoundError B-Error_Name NoClassDefFoundError O\nexceptions B-Class exceptions O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nsituation\tO\tsituation\tO\narises\tO\tarises\tO\nwhenever\tO\twhenever\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nlibraries\tO\tlibraries\tO\nwith\tO\twith\tO\nlittle\tO\tlittle\tO\nor\tO\tor\tO\nno\tO\tno\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nTrial\tO\tTrial\tO\nand\tO\tand\tO\nerror\tO\terror\tO\nseems\tO\tseems\tO\na\tO\ta\tO\nvery\tO\tvery\tO\ndumb\tO\tdumb\tO\n(\tO\t(\tO\nand\tO\tand\tO\nannoying\tO\tannoying\tO\n)\tO\t)\tO\napproach\tO\tapproach\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nautomatically\tO\tautomatically\tO\nsort\tO\tsort\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\nusing\tO\tusing\tO\nEclipse B-Application Eclipse O\n?\tO\t?\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\nLater\tO\tLater\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nthat\tO\tthat\tO\nadding\tO\tadding\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nJARs B-File_Type JARs O\nyou\tO\tyou\tO\nhave\tO\thave\tO\n,\tO\t,\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nCtrl-T B-Keyboard_IP Ctrl-T O\n(\tO\t(\tO\nto\tO\tto\tO\nview/locate\tO\tview/locate\tO\ntypes\tO\ttypes\tO\n)\tO\t)\tO\n,\tO\t,\tO\nlets\tO\tlets\tO\nyou\tO\tyou\tO\nmanually\tO\tmanually\tO\nlocate\tO\tlocate\tO\nthe\tO\tthe\tO\nJAR B-File_Type JAR O\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nthat\tO\tthat\tO\nGoogle B-Website Google O\nprovided\tO\tprovided\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n478788\tO\t478788\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/478788/\tO\thttps://stackoverflow.com/questions/478788/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\na\tO\ta\tO\ndependency\tO\tdependency\tO\nanalyzer\tO\tanalyzer\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nJarAnalyzer B-Application JarAnalyzer O\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nparse\tO\tparse\tO\na\tO\ta\tO\ndirectory\tO\tdirectory\tO\nfull\tO\tfull\tO\nof\tO\tof\tO\nJars B-File_Type Jars O\nand\tO\tand\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nan\tO\tan\tO\nXML B-Language XML O\noutput\tO\toutput\tO\ndependency\tO\tdependency\tO\nmap\tO\tmap\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nwhich\tO\twhich\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nseveral\tO\tseveral\tO\ntools\tO\ttools\tO\nfor\tO\tfor\tO\ndisplaying\tO\tdisplaying\tO\nin\tO\tin\tO\neither\tO\teither\tO\ngraphical\tO\tgraphical\tO\nor\tO\tor\tO\ntext\tO\ttext\tO\nform\tO\tform\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n478788\tO\t478788\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/478788/\tO\thttps://stackoverflow.com/questions/478788/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nSO B-Website SO O\nquestion\tO\tquestion\tO\nFinding\tO\tFinding\tO\nunused\tO\tunused\tO\njars B-File_Type jars O\nused\tO\tused\tO\nin\tO\tin\tO\nan\tO\tan\tO\neclipse B-Application eclipse O\nproject\tO\tproject\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nClassPathHelper B-Application ClassPathHelper O\n,\tO\t,\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nquickly\tO\tquickly\tO\nfocus\tO\tfocus\tO\non\tO\ton\tO\nunresolved\tO\tunresolved\tO\nclasses\tO\tclasses\tO\n:\tO\t:\tO\n\t\nIt\tO\tIt\tO\nautomatically\tO\tautomatically\tO\nidentifies\tO\tidentifies\tO\norphan\tO\torphan\tO\njars B-File_Type jars O\n,\tO\t,\tO\nblocked\tO\tblocked\tO\n(\tO\t(\tO\nobscured\tO\tobscured\tO\n)\tO\t)\tO\nclasses\tO\tclasses\tO\n,\tO\t,\tO\nand\tO\tand\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nlimit\tO\tlimit\tO\nis\tO\tis\tO\ndependencies\tO\tdependencies\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\ndefined\tO\tdefined\tO\nin\tO\tin\tO\nclasses\tO\tclasses\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nin\tO\tin\tO\ndependency\tO\tdependency\tO\ninjection\tO\tinjection\tO\nframework\tO\tframework\tO\nconfiguration\tO\tconfiguration\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33254882\tO\t33254882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33254882/\tO\thttps://stackoverflow.com/questions/33254882/\tO\n\t\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwhen\tO\twhen\tO\npositioning\tO\tpositioning\tO\nthree\tO\tthree\tO\ndivs B-HTML_XML_Tag divs O\nside\tO\tside\tO\nby\tO\tby\tO\nside\tO\tside\tO\n.\tO\t.\tO\n\t\nThose\tO\tThose\tO\nthree\tO\tthree\tO\ndivs B-HTML_XML_Tag divs O\ncontain\tO\tcontain\tO\nnormal\tO\tnormal\tO\ntext\tO\ttext\tO\nbut\tO\tbut\tO\nalso\tO\talso\tO\nhave\tO\thave\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4040 I-Code_Block Q_4040 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nresponsive\tO\tresponsive\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nare\tO\tare\tO\ninline-block B-Code_Block inline-block B-Code_Block\nwith\tO\twith\tO\na\tO\ta\tO\nwidth B-Variable width O\nof\tO\tof\tO\n32% B-Value 32% O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4041 I-Code_Block Q_4041 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nwindow B-User_Interface_Element window O\nsize\tO\tsize\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nheight\tO\theight\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nlinks\tO\tlinks\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nposition\tO\tposition\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nBut\tO\tBut\tO\nactual\tO\tactual\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nJavaScript B-Language JavaScript O\nto\tO\tto\tO\nset\tO\tset\tO\nthose\tO\tthose\tO\nitems\tO\titems\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nheight\tO\theight\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nget\tO\tget\tO\ntheese\tO\ttheese\tO\nlinks\tO\tlinks\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nposition\tO\tposition\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nitem\tO\titem\tO\nto\tO\tto\tO\nposition B-Code_Block position B-Code_Block\n: I-Code_Block : I-Code_Block\nrelative I-Code_Block relative I-Code_Block\n; I-Code_Block ; I-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\na\tO\ta\tO\nto\tO\tto\tO\nposition B-Code_Block position B-Code_Block\n: I-Code_Block : I-Code_Block\nabsolute I-Code_Block absolute I-Code_Block\n; I-Code_Block ; I-Code_Block\nbottom I-Code_Block bottom I-Code_Block\n: I-Code_Block : I-Code_Block\n0 I-Code_Block 0 I-Code_Block\n; I-Code_Block ; I-Code_Block\nbut\tO\tbut\tO\nthen\tO\tthen\tO\ntext-align B-Code_Block text-align B-Code_Block\n: I-Code_Block : I-Code_Block\ncenter I-Code_Block center I-Code_Block\n; I-Code_Block ; I-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nJSFiddle B-Application JSFiddle O\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33254882\tO\t33254882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33254882/\tO\thttps://stackoverflow.com/questions/33254882/\tO\n\t\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\nasked\tO\tasked\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nwithout\tO\twithout\tO\nposition B-Code_Block position B-Code_Block\n: I-Code_Block : I-Code_Block\nabsolute I-Code_Block absolute I-Code_Block\n; I-Code_Block ; I-Code_Block\nbottom I-Code_Block bottom I-Code_Block\n: I-Code_Block : I-Code_Block\n0 I-Code_Block 0 I-Code_Block\n; I-Code_Block ; I-Code_Block\nI\tO\tI\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nwrap\tO\twrap\tO\nup\tO\tup\tO\nyour\tO\tyour\tO\ncontent\tO\tcontent\tO\ncontainers\tO\tcontainers\tO\ninto\tO\tinto\tO\nanother\tO\tanother\tO\ndiv-container B-HTML_XML_Tag div-container O\nand\tO\tand\tO\ninsert\tO\tinsert\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nafter\tO\tafter\tO\nyour\tO\tyour\tO\ncontent\tO\tcontent\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwould\tO\twould\tO\nget\tO\tget\tO\na\tO\ta\tO\npseudo\tO\tpseudo\tO\nstructure\tO\tstructure\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4738 I-Code_Block A_4738 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFor\tO\tFor\tO\nevery\tO\tevery\tO\nthree\tO\tthree\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ncontent\tO\tcontent\tO\ncontainers\tO\tcontainers\tO\n.\tO\t.\tO\n\t\nWorking\tO\tWorking\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\njavascript B-Language javascript O\nresizeFunction B-Function resizeFunction O\nthe\tO\tthe\tO\nlinks\tO\tlinks\tO\nare\tO\tare\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nheight\tO\theight\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\ndiv.content-wrapper B-Code_Block div.content-wrapper B-Code_Block\nis\tO\tis\tO\ndisplay:inline-block B-Code_Block display:inline-block B-Code_Block\n; I-Code_Block ; I-Code_Block\nnow\tO\tnow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyour\tO\tyour\tO\ndiv.content B-Code_Block div.content B-Code_Block\nare\tO\tare\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nGreetz\tO\tGreetz\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33254882\tO\t33254882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33254882/\tO\thttps://stackoverflow.com/questions/33254882/\tO\n\t\n\t\nFlex B-Class Flex O\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nvery\tO\tvery\tO\neasily\tO\teasily\tO\nbut\tO\tbut\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nwhat\tO\twhat\tO\nless\tO\tless\tO\nbrowser B-Application browser O\nsupport\tO\tsupport\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nway\tO\tway\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\ndisplay B-Code_Block display B-Code_Block\n: I-Code_Block : I-Code_Block\ntable I-Code_Block table I-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nhave\tO\thave\tO\nvery\tO\tvery\tO\ngood\tO\tgood\tO\nsupport\tO\tsupport\tO\n(\tO\t(\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\nIE8 B-Application IE8 O\n)\tO\t)\tO\n,\tO\t,\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nyou\tO\tyou\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsample\tO\tsample\tO\nusing\tO\tusing\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nmore\tO\tmore\tO\nway\tO\tway\tO\n,\tO\t,\tO\nthinking\tO\tthinking\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nrows B-User_Interface_Element rows O\n\"\tO\t\"\tO\n,\tO\t,\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nabsolute\tO\tabsolute\tO\nposition\tO\tposition\tO\n,\tO\t,\tO\nno\tO\tno\tO\nscript\tO\tscript\tO\nand\tO\tand\tO\nkeep\tO\tkeep\tO\nyour\tO\tyour\tO\nlinks\tO\tlinks\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\n,\tO\t,\tO\nall\tO\tall\tO\ncentered\tO\tcentered\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n\t\nAs\tO\tAs\tO\nrequested\tO\trequested\tO\n,\tO\t,\tO\nand\tO\tand\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nmore\tO\tmore\tO\nresponsive\tO\tresponsive\tO\n,\tO\t,\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\na\tO\ta\tO\nmedia B-Class media O\nquery I-Class query O\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nthe\tO\tthe\tO\nsnippet B-Application snippet O\nin\tO\tin\tO\nfull\tO\tfull\tO\npage\tO\tpage\tO\nand\tO\tand\tO\nresize\tO\tresize\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\nto\tO\tto\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\nin\tO\tin\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nnoted\tO\tnoted\tO\nthough\tO\tthough\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nflex B-Class flex O\n\"\tO\t\"\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nUpdate\tO\tUpdate\tO\n2\tO\t2\tO\n\t\nAdded\tO\tAdded\tO\na\tO\ta\tO\ndisplay B-Code_Block display B-Code_Block\n: I-Code_Block : I-Code_Block\ntable I-Code_Block table I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4739 I-Code_Block Q_4739 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4740 I-Code_Block Q_4740 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ntable B-User_Interface_Element table O\nversion\tO\tversion\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4741 I-Code_Block Q_4741 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4742 I-Code_Block Q_4742 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n19105373\tO\t19105373\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19105373/\tO\thttps://stackoverflow.com/questions/19105373/\tO\n\t\n\t\nSomebody\tO\tSomebody\tO\nknows\tO\tknows\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nsintaxys\tO\tsintaxys\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2003 I-Code_Block Q_2003 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nexperience\tO\texperience\tO\nwith\tO\twith\tO\nSQL B-Application SQL O\nServer I-Application Server O\n,\tO\t,\tO\nbut\tO\tbut\tO\nMySQL B-Application MySQL O\nis\tO\tis\tO\na\tO\ta\tO\nHeadache\tO\tHeadache\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nMySQL B-Application MySQL O\nthat\tO\tthat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nMySQL B-Application MySQL O\nDatabase I-Application Database O\nVersion\tO\tVersion\tO\n5.0.51b B-Version 5.0.51b O\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nand\tO\tand\tO\nregards\tO\tregards\tO\n\t\nSorry\tO\tSorry\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nreally\tO\treally\tO\nsorry\tO\tsorry\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nmistake\tO\tmistake\tO\n,\tO\t,\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nthe\tO\tthe\tO\nchange\tO\tchange\tO\nInfinity\tO\tInfinity\tO\nsuggested\tO\tsuggested\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nError\tO\tError\tO\nSQL B-Language SQL O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2004 I-Code_Block Q_2004 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2005 I-Code_Block Q_2005 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThanks\tO\tThanks\tO\nSiride B-User_Name Siride O\n,\tO\t,\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2006 I-Code_Block Q_2006 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nwas\tO\twas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2007 I-Code_Block Q_2007 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nconsole B-Application console O\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nfinal\tO\tfinal\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2008 I-Code_Block Q_2008 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19105373\tO\t19105373\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19105373/\tO\thttps://stackoverflow.com/questions/19105373/\tO\n\t\n\t\nYou\tO\tYou\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npretty\tO\tpretty\tO\nfine\tO\tfine\tO\nwith\tO\twith\tO\nMySQL B-Application MySQL O\n,\tO\t,\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nTRIGGUER B-Variable TRIGGUER B-Code_Block\nkeyboard B-Device keyboard O\nwith\tO\twith\tO\nTRIGGER B-Variable TRIGGER B-Code_Block\n:-)\tO\t:-)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n19105373\tO\t19105373\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/19105373/\tO\thttps://stackoverflow.com/questions/19105373/\tO\n\t\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nTRIGGUER B-Variable TRIGGUER B-Code_Block\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nleft\tO\tleft\tO\noff\tO\toff\tO\nthe\tO\tthe\tO\nsemi-colon\tO\tsemi-colon\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nUPDATE B-Code_Block UPDATE B-Code_Block\nstatement\tO\tstatement\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nIF B-Code_Block IF B-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12133711\tO\t12133711\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12133711/\tO\thttps://stackoverflow.com/questions/12133711/\tO\n\t\n\t\nThis\tO\tThis\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nbugging\tO\tbugging\tO\nme\tO\tme\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\na\tO\ta\tO\nbeginner\tO\tbeginner\tO\nand\tO\tand\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1141 I-Code_Block Q_1141 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBasically\tO\tBasically\tO\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nwordToDisplay B-Variable wordToDisplay O\nshow\tO\tshow\tO\nup\tO\tup\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ntextView B-Class textView O\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1142 I-Code_Block Q_1142 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nsorry\tO\tsorry\tO\nfor\tO\tfor\tO\nasking\tO\tasking\tO\nso\tO\tso\tO\nmany\tO\tmany\tO\nquestions\tO\tquestions\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12133711\tO\t12133711\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12133711/\tO\thttps://stackoverflow.com/questions/12133711/\tO\n\t\n\t\nTo\tO\tTo\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\ntest\tO\ttest\tO\nappear\tO\tappear\tO\nin\tO\tin\tO\nTextView B-Class TextView O\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nset\tO\tset\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nsetText(); B-Function setText(); B-Code_Block\n,\tO\t,\tO\nso\tO\tso\tO\nbasically\tO\tbasically\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nyour\tO\tyour\tO\ntextview B-Class textview O\nid\tO\tid\tO\nor\tO\tor\tO\ntag\tO\ttag\tO\n(\tO\t(\tO\nadd\tO\tadd\tO\nandroid:id B-Code_Block android:id B-Code_Block\n= I-Code_Block = I-Code_Block\n\" I-Code_Block \" I-Code_Block\n@+ I-Code_Block @+ I-Code_Block\nid/mytextview I-Code_Block id/mytextview I-Code_Block\n)\tO\t)\tO\nthen\tO\tthen\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nobject\tO\tobject\tO\nTextView B-Code_Block TextView B-Code_Block\ntv I-Code_Block tv I-Code_Block\n= I-Code_Block = I-Code_Block\n(TextView)findViewById(R.id.mytextview) I-Code_Block (TextView)findViewById(R.id.mytextview) I-Code_Block\n; I-Code_Block ; I-Code_Block\ntv.setText(\"foo\") I-Code_Block tv.setText(\"foo\") I-Code_Block\n; I-Code_Block ; I-Code_Block\nI\tO\tI\tO\n'd\tO\t'd\tO\nalso\tO\talso\tO\nrecommend\tO\trecommend\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nsome\tO\tsome\tO\ntutorials\tO\ttutorials\tO\non\tO\ton\tO\nandroid B-Operating_System android O\nbasics\tO\tbasics\tO\n-\tO\t-\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12133711\tO\t12133711\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12133711/\tO\thttps://stackoverflow.com/questions/12133711/\tO\n\t\n\t\nFor\tO\tFor\tO\nefficiency\tO\tefficiency\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1571 I-Code_Block A_1571 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\none\tO\tone\tO\nrandom\tO\trandom\tO\nnumber\tO\tnumber\tO\nobject\tO\tobject\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\nrandom\tO\trandom\tO\nInteger B-Data_Type Integer O\nor\tO\tor\tO\ncorresponding\tO\tcorresponding\tO\nString B-Data_Type String O\nin\tO\tin\tO\nlocal\tO\tlocal\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\nthem\tO\tthem\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nit\tO\tit\tO\nis\tO\tis\tO\nokay\tO\tokay\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nlocal\tO\tlocal\tO\nvariables\tO\tvariables\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\nreadability\tO\treadability\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24919047\tO\t24919047\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24919047/\tO\thttps://stackoverflow.com/questions/24919047/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nSOAP\tO\tSOAP\tO\nweb\tO\tweb\tO\nservice\tO\tservice\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\nwindows B-Operating_System windows O\nwhich\tO\twhich\tO\nis\tO\tis\tO\nsecured\tO\tsecured\tO\nwith\tO\twith\tO\nNTLM\tO\tNTLM\tO\nauthentication\tO\tauthentication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nchange\tO\tchange\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nan\tO\tan\tO\nURL\tO\tURL\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nservice\tO\tservice\tO\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\npassword\tO\tpassword\tO\ndialog B-User_Interface_Element dialog O\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nauthenticate\tO\tauthenticate\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nWSDL B-Language WSDL O\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nit\tO\tit\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nMaven B-Application Maven O\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nJava B-Language Java O\nclasses\tO\tclasses\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nWSDL B-Language WSDL O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nmaven-jaxb2-plugin B-Application maven-jaxb2-plugin B-Code_Block\nfor\tO\tfor\tO\nMaven B-Application Maven O\nand\tO\tand\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsuitable\tO\tsuitable\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\ntask\tO\ttask\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nnow\tO\tnow\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\non\tO\ton\tO\nLinux B-Operating_System Linux O\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nthis\tO\tthis\tO\nplugin B-Application plugin O\nor\tO\tor\tO\nmaven B-Application maven O\nthe\tO\tthe\tO\nnecessary\tO\tnecessary\tO\ncredentials\tO\tcredentials\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nservice\tO\tservice\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nplugin\tO\tplugin\tO\nsuch\tO\tsuch\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\npass\tO\tpass\tO\nit\tO\tit\tO\nthe\tO\tthe\tO\nNTLM\tO\tNTLM\tO\ncredentials\tO\tcredentials\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nconfiguration\tO\tconfiguration\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2813 I-Code_Block Q_2813 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\ngoal\tO\tgoal\tO\nmvn B-Code_Block mvn B-Code_Block\njaxb2:generate I-Code_Block jaxb2:generate I-Code_Block\non\tO\ton\tO\nwindows B-Operating_System windows O\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\ngeneration\tO\tgeneration\tO\nworks\tO\tworks\tO\nautomatically\tO\tautomatically\tO\nwithout\tO\twithout\tO\npassword\tO\tpassword\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nwindows B-Operating_System windows O\neach\tO\teach\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nregenerate\tO\tregenerate\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nwsdl B-Language wsdl O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44926975\tO\t44926975\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44926975/\tO\thttps://stackoverflow.com/questions/44926975/\tO\n\t\n\t\nwhile\tO\twhile\tO\nreading\tO\treading\tO\nRoute53 B-Application Route53 O\ni\tO\ti\tO\ngot\tO\tgot\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nreusable\tO\treusable\tO\ndelegation\tO\tdelegation\tO\nsets.But\tO\tsets.But\tO\ni\tO\ti\tO\nam\tO\tam\tO\nreally\tO\treally\tO\nconfused\tO\tconfused\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\ntopic\tO\ttopic\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\na\tO\ta\tO\ngood\tO\tgood\tO\npractice\tO\tpractice\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nsame\tO\tsame\tO\nname\tO\tname\tO\nservers B-Device servers O\nfor\tO\tfor\tO\nmultiple\tO\tmultiple\tO\ndomains\tO\tdomains\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nexplain\tO\texplain\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nreusable\tO\treusable\tO\ndelegation\tO\tdelegation\tO\nsets\tO\tsets\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nproblems\tO\tproblems\tO\nit\tO\tit\tO\ngonna\tO\tgonna\tO\nsolve\tO\tsolve\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26554879\tO\t26554879\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26554879/\tO\thttps://stackoverflow.com/questions/26554879/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nusing\tO\tusing\tO\nQt B-Application Qt O\ncreator I-Application creator O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n3\tO\t3\tO\nscreen B-User_Interface_Element screen O\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nscreen B-User_Interface_Element screen O\nthere\tO\tthere\tO\nare\tO\tare\tO\n4\tO\t4\tO\nbutton B-User_Interface_Element button O\n.\tO\t.\tO\n\t\nwhen\tO\twhen\tO\nclicked\tO\tclicked\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nbutton B-User_Interface_Element button O\nit\tO\tit\tO\nwill\tO\twill\tO\nwirte\tO\twirte\tO\n0\tO\t0\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nchar B-Data_Type char O\n)\tO\t)\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\nto\tO\tto\tO\n3\tO\t3\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ni\tO\ti\tO\nreach\tO\treach\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nscreen B-User_Interface_Element screen O\n(\tO\t(\tO\n4\tO\t4\tO\n.\tO\t.\tO\nscreen B-User_Interface_Element screen O\n)\tO\t)\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nwill\tO\twill\tO\nread B-Function read O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbuttons B-User_Interface_Element buttons O\nit\tO\tit\tO\ndoenst\tO\tdoenst\tO\nshow\tO\tshow\tO\nthe\tO\tthe\tO\n3\tO\t3\tO\nchars B-Data_Type chars O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3030 I-Code_Block Q_3030 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhen\tO\twhen\tO\ni\tO\ti\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nopen\tO\topen\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\nwith\tO\twith\tO\nnew\tO\tnew\tO\ninputs\tO\tinputs\tO\nfrom\tO\tfrom\tO\nbutton B-User_Interface_Element button O\nit\tO\tit\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\ninput\tO\tinput\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nscreen B-User_Interface_Element screen O\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nsuggestion\tO\tsuggestion\tO\nor\tO\tor\tO\nhelp\tO\thelp\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26554879\tO\t26554879\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26554879/\tO\thttps://stackoverflow.com/questions/26554879/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmultiple\tO\tmultiple\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\nfunction\tO\tfunction\tO\nnames\tO\tnames\tO\nare\tO\tare\tO\nweird\tO\tweird\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nchecking\tO\tchecking\tO\nagainst\tO\tagainst\tO\nerrors\tO\terrors\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nwrite B-Function write O\nsystem\tO\tsystem\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nchecking\tO\tchecking\tO\nagainst\tO\tagainst\tO\nerrors\tO\terrors\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nlseek B-Function lseek O\nsystem\tO\tsystem\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nchecking\tO\tchecking\tO\nagainst\tO\tagainst\tO\nerrors\tO\terrors\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nclose B-Function close O\nsystem\tO\tsystem\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ninconsistently\tO\tinconsistently\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\n: B-Code_Block : B-Code_Block\n: I-Code_Block : I-Code_Block\nprefix\tO\tprefix\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nclose B-Function close O\nsystem\tO\tsystem\tO\ncall\tO\tcall\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nclose B-Function close O\neven\tO\teven\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nopen B-Function open O\nwas\tO\twas\tO\nunsuccessful\tO\tunsuccessful\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nwrite B-Function write O\n2\tO\t2\tO\ncharacters B-Data_Type characters O\nto\tO\tto\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread B-Function read O\n4\tO\t4\tO\ncharacters B-Data_Type characters O\nback\tO\tback\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nleft-over\tO\tleft-over\tO\nsyncfs B-Function syncfs O\nbehind\tO\tbehind\tO\ncomment\tO\tcomment\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhard-coded\tO\thard-coded\tO\nthe\tO\tthe\tO\nhome\tO\thome\tO\npath\tO\tpath\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\nsome\tO\tsome\tO\nhome\tO\thome\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsuperfluous\tO\tsuperfluous\tO\ntemporary\tO\ttemporary\tO\nvariable\tO\tvariable\tO\n\"\tO\t\"\tO\nstr B-Variable str O\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nread B-Function read O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nclose B-Function close O\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nplatform\tO\tplatform\tO\nspecific\tO\tspecific\tO\n,\tO\t,\tO\nwhereas\tO\twhereas\tO\nyou\tO\tyou\tO\nalready\tO\talready\tO\ndepend\tO\tdepend\tO\non\tO\ton\tO\nQt B-Library Qt O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\npersonally\tO\tpersonally\tO\nthrow\tO\tthrow\tO\nout\tO\tout\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\none\tO\tone\tO\ninstead\tO\tinstead\tO\n:\tO\t:\tO\n\t\nmain.cpp B-File_Name main.cpp O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3670 I-Code_Block A_3670 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nmain.pro B-File_Name main.pro O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3671 I-Code_Block A_3671 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBuild\tO\tBuild\tO\nand\tO\tand\tO\nRun\tO\tRun\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3672 I-Code_Block A_3672 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7251621\tO\t7251621\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7251621/\tO\thttps://stackoverflow.com/questions/7251621/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\none\tO\tone\tO\nPlayer\tO\tPlayer\tO\nObject\tO\tObject\tO\nArray B-Data_Structure Array O\nwith\tO\twith\tO\nplayer\tO\tplayer\tO\nName B-Variable Name O\nand\tO\tand\tO\nplayer\tO\tplayer\tO\nScore B-Variable Score O\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nrow+\tO\trow+\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nPlayer1\tO\tPlayer1\tO\n____playerScore1\tO\t____playerScore1\tO\n\t\nrow+\tO\trow+\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nPlayer2\tO\tPlayer2\tO\n____playerScore2\tO\t____playerScore2\tO\n\t\nrow+\tO\trow+\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nPlayer3\tO\tPlayer3\tO\n____playerScore3\tO\t____playerScore3\tO\n\t\n......\tO\t......\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n,\tO\t,\tO\n\t\nHarry B-User_Name Harry O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7251621\tO\t7251621\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7251621/\tO\thttps://stackoverflow.com/questions/7251621/\tO\n\t\n\t\nAssuming\tO\tAssuming\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntalking\tO\ttalking\tO\nabout\tO\tabout\tO\na\tO\ta\tO\nUITable B-Class UITable O\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\napproach\tO\tapproach\tO\nin\tO\tin\tO\na\tO\ta\tO\ncurrent\tO\tcurrent\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nCreating\tO\tCreating\tO\na\tO\ta\tO\ngrid\tO\tgrid\tO\nview\tO\tview\tO\nin\tO\tin\tO\niOS B-Operating_System iOS O\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nvery\tO\tvery\tO\nstraightforward\tO\tstraightforward\tO\n,\tO\t,\tO\nassuming\tO\tassuming\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nyour\tO\tyour\tO\nway\tO\tway\tO\naround\tO\taround\tO\ntable\tO\ttable\tO\ncontrollers\tO\tcontrollers\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncode\tO\tcode\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nblog\tO\tblog\tO\npost\tO\tpost\tO\nexplains\tO\texplains\tO\nhow\tO\thow\tO\nit\tO\tit\tO\n's\tO\t's\tO\nput\tO\tput\tO\ntogether\tO\ttogether\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\neach\tO\teach\tO\nrow B-User_Interface_Element row O\n,\tO\t,\tO\nyou\tO\tyou\tO\nsimply\tO\tsimply\tO\nsetup\tO\tsetup\tO\nthe\tO\tthe\tO\ncells B-User_Interface_Element cells O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_835 I-Code_Block A_835 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7251621\tO\t7251621\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7251621/\tO\thttps://stackoverflow.com/questions/7251621/\tO\n\t\n\t\nCheckout\tO\tCheckout\tO\nUITableView B-Class UITableView O\n:\tO\t:\tO\n\t\nhttp://www.littlecomputers.net/2009/?page_id=549\tO\thttp://www.littlecomputers.net/2009/?page_id=549\tO\n\t\nhttp://www.icodeblog.com/2008/08/08/iphone-programming-tutorial-populating-uitableview-with-an-nsarray/\tO\thttp://www.icodeblog.com/2008/08/08/iphone-programming-tutorial-populating-uitableview-with-an-nsarray/\tO\n\t\nAnd\tO\tAnd\tO\nalso\tO\talso\tO\ncustomizing\tO\tcustomizing\tO\nthe\tO\tthe\tO\ntable B-Class table O\nview I-Class view O\ncells B-User_Interface_Element cells O\n:\tO\t:\tO\n\t\nhttp://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html\tO\thttp://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html\tO\n\t\nHope\tO\tHope\tO\nthose\tO\tthose\tO\nhelps\tO\thelps\tO\n\t\nedit\tO\tedit\tO\n:\tO\t:\tO\nI\tO\tI\tO\npasted\tO\tpasted\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nlink\tO\tlink\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ninitial\tO\tinitial\tO\npost\tO\tpost\tO\n(\tO\t(\tO\none\tO\tone\tO\nfor\tO\tfor\tO\nmono B-Application mono O\ntouch I-Application touch O\n-\tO\t-\tO\nmeant\tO\tmeant\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\non\tO\ton\tO\nfor\tO\tfor\tO\nUITableView B-Class UITableView O\nover\tO\tover\tO\narray B-Data_Structure array O\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3823913\tO\t3823913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3823913/\tO\thttps://stackoverflow.com/questions/3823913/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\nC# B-Language C# O\nand\tO\tand\tO\nC++ B-Language C++ O\ncode\tO\tcode\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nnaming\tO\tnaming\tO\nconvention\tO\tconvention\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nask\tO\task\tO\nprogrammers\tO\tprogrammers\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nvariable\tO\tvariable\tO\nnames\tO\tnames\tO\nusing\tO\tusing\tO\nunderscore\tO\tunderscore\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\ne.gr\tO\te.gr\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_267 I-Code_Block Q_267 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nrationale\tO\trationale\tO\nsupporting\tO\tsupporting\tO\nthat\tO\tthat\tO\nconvention\tO\tconvention\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3823913\tO\t3823913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3823913/\tO\thttps://stackoverflow.com/questions/3823913/\tO\n\t\n\t\nThe\tO\tThe\tO\nMicrosoft B-Website Microsoft O\nGuidelines\tO\tGuidelines\tO\nfor\tO\tfor\tO\nmember\tO\tmember\tO\nnaming\tO\tnaming\tO\nspecifies\tO\tspecifies\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\nprefixes\tO\tprefixes\tO\nfor\tO\tfor\tO\nfields\tO\tfields\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nMicrosoft B-Website Microsoft O\n's\tO\t's\tO\nguidelines\tO\tguidelines\tO\nfor\tO\tfor\tO\nnames\tO\tnames\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\njust\tO\tjust\tO\napplies\tO\tapplies\tO\nto\tO\tto\tO\nC# B-Language C# O\n,\tO\t,\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3823913\tO\t3823913\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3823913/\tO\thttps://stackoverflow.com/questions/3823913/\tO\n\t\n\t\nIn\tO\tIn\tO\nC# B-Language C# O\nI\tO\tI\tO\nusually\tO\tusually\tO\nprefix\tO\tprefix\tO\nwith\tO\twith\tO\n_ B-Value _ B-Code_Block\nprivate\tO\tprivate\tO\nfields\tO\tfields\tO\nbut\tO\tbut\tO\nnever\tO\tnever\tO\nlocal\tO\tlocal\tO\nvariables\tO\tvariables\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrationale\tO\trationale\tO\nbehind\tO\tbehind\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nprivate\tO\tprivate\tO\nvariable\tO\tvariable\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\n_ B-Value _ B-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nIntellisense B-Application Intellisense O\nfilters\tO\tfilters\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nable\tO\table\tO\nto\tO\tto\tO\ndistinguish\tO\tdistinguish\tO\nbetween\tO\tbetween\tO\nprivate\tO\tprivate\tO\nfrom\tO\tfrom\tO\nlocal\tO\tlocal\tO\nvariables\tO\tvariables\tO\nand\tO\tand\tO\nI\tO\tI\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ntype\tO\ttype\tO\nthis.variablename B-Variable this.variablename B-Code_Block\nfor\tO\tfor\tO\nclass\tO\tclass\tO\nfields\tO\tfields\tO\nbut\tO\tbut\tO\nsimply\tO\tsimply\tO\n_variablename B-Variable _variablename B-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37895444\tO\t37895444\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37895444/\tO\thttps://stackoverflow.com/questions/37895444/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\na\tO\ta\tO\nnote/label B-User_Interface_Element note/label O\non\tO\ton\tO\nmy\tO\tmy\tO\ntableview B-Class tableview O\nbackground B-User_Interface_Element background O\nwhen/if\tO\twhen/if\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nload\tO\tload\tO\n,\tO\t,\tO\nor\tO\tor\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nfetched\tO\tfetched\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nXcode B-Application Xcode O\nis\tO\tis\tO\nshowing\tO\tshowing\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\n\" B-Output_Block \" O\nWill I-Output_Block Will O\nnever I-Output_Block never O\nbe I-Output_Block be O\nexecuted I-Output_Block executed O\n\" I-Output_Block \" O\non\tO\ton\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\nif B-Code_Block if B-Code_Block\nmostUpTodateNewsItemsFromRealm I-Code_Block mostUpTodateNewsItemsFromRealm I-Code_Block\n? I-Code_Block ? I-Code_Block\n. I-Code_Block . I-Code_Block\ncount I-Code_Block count I-Code_Block\n< I-Code_Block < I-Code_Block\n1 I-Code_Block 1 I-Code_Block\n{ I-Code_Block { I-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4767 I-Code_Block Q_4767 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37895444\tO\t37895444\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37895444/\tO\thttps://stackoverflow.com/questions/37895444/\tO\n\t\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nfirst\tO\tfirst\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nconstant\tO\tconstant\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5450 I-Code_Block A_5450 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncheck\tO\tcheck\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\nis\tO\tis\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n1 B-Value 1 O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5451 I-Code_Block A_5451 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSince\tO\tSince\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nconstant\tO\tconstant\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnever\tO\tnever\tO\nchange\tO\tchange\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nif\tO\tif\tO\nclause\tO\tclause\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nThus\tO\tThus\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nelse B-Code_Block else B-Code_Block\nclause\tO\tclause\tO\nwill\tO\twill\tO\nnever\tO\tnever\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfirst\tO\tfirst\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nconstant\tO\tconstant\tO\nvariable\tO\tvariable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5452 I-Code_Block A_5452 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\njust\tO\tjust\tO\nchange\tO\tchange\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5453 I-Code_Block A_5453 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nto\tO\tto\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5454 I-Code_Block A_5454 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\n,\tO\t,\tO\nnumberOFChannelSubscribedToIs B-Variable numberOFChannelSubscribedToIs B-Code_Block\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\nnumber\tO\tnumber\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\n0 B-Value 0 O\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthe\tO\tthe\tO\nelse\tO\telse\tO\nclause\tO\tclause\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nvar B-Data_Type var B-Code_Block\nand\tO\tand\tO\nlet B-Data_Type let B-Code_Block\nare\tO\tare\tO\nvery\tO\tvery\tO\ndifferent\tO\tdifferent\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16842944\tO\t16842944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16842944/\tO\thttps://stackoverflow.com/questions/16842944/\tO\n\t\n\t\nAny\tO\tAny\tO\nsuggestion\tO\tsuggestion\tO\nplease\tO\tplease\tO\n.......\tO\t.......\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncompletely\tO\tcompletely\tO\nstucked\tO\tstucked\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\n.\tO\t.\tO\n\t\nCause\tO\tCause\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nfigure\tO\tfigure\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\nin\tO\tin\tO\nsql B-Language sql O\n?\tO\t?\tO\n\t\nSomebody\tO\tSomebody\tO\nsuggested\tO\tsuggested\tO\nme\tO\tme\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\npivot B-Class pivot O\n(\tO\t(\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconcept\tO\tconcept\tO\n...\tO\t...\tO\ncouldn\tO\tcouldn\tO\n'\tO\t'\tO\nt\tO\tt\tO\nfigure\tO\tfigure\tO\nit\tO\tit\tO\nout\tO\tout\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\n4\tO\t4\tO\nsteps\tO\tsteps\tO\nof\tO\tof\tO\nCol5 B-Variable Col5 O\nmakes\tO\tmakes\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\ncycle\tO\tcycle\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmultiple\tO\tmultiple\tO\nsteps\tO\tsteps\tO\nprocessed\tO\tprocessed\tO\nand\tO\tand\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\ntiming\tO\ttiming\tO\nof\tO\tof\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\ncycle\tO\tcycle\tO\n.\tO\t.\tO\n\t\n1\tO\t1\tO\nstep\tO\tstep\tO\nof\tO\tof\tO\na\tO\ta\tO\ncycle\tO\tcycle\tO\nmay\tO\tmay\tO\nbegin\tO\tbegin\tO\nbefore\tO\tbefore\tO\ncompletion\tO\tcompletion\tO\nof\tO\tof\tO\nother\tO\tother\tO\n.\tO\t.\tO\n\t\nTable B-Variable Table O\nA I-Variable A O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1696 I-Code_Block Q_1696 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nExpected\tO\tExpected\tO\nOutPut\tO\tOutPut\tO\nTable\tO\tTable\tO\n(\tO\t(\tO\nResult\tO\tResult\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1697 I-Code_Block Q_1697 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16842944\tO\t16842944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16842944/\tO\thttps://stackoverflow.com/questions/16842944/\tO\n\t\n\t\nTo\tO\tTo\tO\nme\tO\tme\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\ncycles\tO\tcycles\tO\nare\tO\tare\tO\ndetermined\tO\tdetermined\tO\nby\tO\tby\tO\ncombinations\tO\tcombinations\tO\nof\tO\tof\tO\nfour\tO\tfour\tO\n\"\tO\t\"\tO\nsteps\tO\tsteps\tO\n\"\tO\t\"\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntag\tO\ttag\tO\nin\tO\tin\tO\ncol6 B-Variable col6 B-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nonly\tO\tonly\tO\nhas\tO\thas\tO\none\tO\tone\tO\ncycle\tO\tcycle\tO\nper\tO\tper\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\nsuggest\tO\tsuggest\tO\nthere\tO\tthere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nwe\tO\twe\tO\nidentify\tO\tidentify\tO\nwhich\tO\twhich\tO\ncycle\tO\tcycle\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\ncode\tO\tcode\tO\na\tO\ta\tO\nrecord\tO\trecord\tO\nbelongs\tO\tbelongs\tO\nto\tO\tto\tO\n?\tO\t?\tO\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\none\tO\tone\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncycles\tO\tcycles\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nare\tO\tare\tO\ncomplete\tO\tcomplete\tO\nand\tO\tand\tO\njust\tO\tjust\tO\nenumerate\tO\tenumerate\tO\nthe\tO\tthe\tO\nrecords\tO\trecords\tO\nby\tO\tby\tO\ncol6 B-Variable col6 B-Code_Block\n,\tO\t,\tI-Code_Block\ncol5 B-Variable col5 I-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nadditional\tO\tadditional\tO\ncycle\tO\tcycle\tO\nsequence\tO\tsequence\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\nthen\tO\tthen\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\naggregation\tO\taggregation\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nenumerating\tO\tenumerating\tO\nthe\tO\tthe\tO\nsequences\tO\tsequences\tO\n,\tO\t,\tO\nI\tO\tI\tO\nfurther\tO\tfurther\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndates\tO\tdates\tO\nare\tO\tare\tO\nincreasing\tO\tincreasing\tO\nover\tO\tover\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nAlthough\tO\tAlthough\tO\na\tO\ta\tO\npivot B-Class pivot O\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\naggregation\tO\taggregation\tO\nmethod\tO\tmethod\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nclearer\tO\tclearer\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2197 I-Code_Block A_2197 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16842944\tO\t16842944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16842944/\tO\thttps://stackoverflow.com/questions/16842944/\tO\n\t\n\t\nThe\tO\tThe\tO\nQuery\tO\tQuery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2198 I-Code_Block A_2198 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nOutput\tO\tOutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2199 I-Code_Block A_2199 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nchoose\tO\tchoose\tO\nwhich\tO\twhich\tO\ncolumns B-Data_Structure columns O\nyou\tO\tyou\tO\nrequire\tO\trequire\tO\nand\tO\tand\tO\nwhich\tO\twhich\tO\ncolumns B-Data_Structure columns O\nto\tO\tto\tO\nremove\tO\tremove\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nfinal\tO\tfinal\tO\nselect\tO\tselect\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nregarding\tO\tregarding\tO\ncol3 B-Variable col3 O\n,\tO\t,\tO\nCol4 B-Variable Col4 O\n,\tO\t,\tO\nCol4 B-Variable Col4 O\n1) I-Variable 1) O\n\t\n****\tO\t****\tO\nBased\tO\tBased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlogic\tO\tlogic\tO\nexplained\tO\texplained\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments*******\tO\tcomments*******\tO\n\t\n/\tO\t/\tO\n*\tO\t*\tO\nProvided\tO\tProvided\tO\nsample\tO\tsample\tO\nData\tO\tData\tO\n*\tO\t*\tO\n/\tO\t/\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2200 I-Code_Block A_2200 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n/\tO\t/\tO\n*Query\tO\t*Query\tO\nassuming\tO\tassuming\tO\neach\tO\teach\tO\nCycle\tO\tCycle\tO\nhappens\tO\thappens\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nminute\tO\tminute\tO\n*\tO\t*\tO\n/\tO\t/\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2201 I-Code_Block A_2201 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOUTPUT\tO\tOUTPUT\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2202 I-Code_Block A_2202 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25894423\tO\t25894423\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25894423/\tO\thttps://stackoverflow.com/questions/25894423/\tO\n\t\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\nbuild\tO\tbuild\tO\nnested\tO\tnested\tO\nconditions\tO\tconditions\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nSelectQuery B-Class SelectQuery B-Code_Block\nobject\tO\tobject\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2968 I-Code_Block Q_2968 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25894423\tO\t25894423\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25894423/\tO\thttps://stackoverflow.com/questions/25894423/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ninline\tO\tinline\tO\nall\tO\tall\tO\nconditions\tO\tconditions\tO\n/\tO\t/\tO\npredicates.\tO\tpredicates.\tO\n.\tO\t.\tO\n\t\n.\tO\t.\tO\n.\tO\t.\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsupply\tO\tsupply\tO\nthem\tO\tthem\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nSelectQuery B-Class SelectQuery B-Code_Block\nobject\tO\tobject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3569 I-Code_Block A_3569 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nadded\tO\tadded\tO\nsome\tO\tsome\tO\nwhitespace\tO\twhitespace\tO\nfor\tO\tfor\tO\nimproved\tO\timproved\tO\nreadability\tO\treadability\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\ndynamic\tO\tdynamic\tO\nquery\tO\tquery\tO\nbuilding.\tO\tbuilding.\tO\n.\tO\t.\tO\n\t\n.\tO\t.\tO\n.\tO\t.\tO\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\npredicate\tO\tpredicate\tO\nin\tO\tin\tO\nvarious\tO\tvarious\tO\nsteps\tO\tsteps\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3570 I-Code_Block A_3570 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBoth\tO\tBoth\tO\napproaches\tO\tapproaches\tO\nare\tO\tare\tO\ncompletely\tO\tcompletely\tO\nequivalent\tO\tequivalent\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25894423\tO\t25894423\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25894423/\tO\thttps://stackoverflow.com/questions/25894423/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nnow\tO\tnow\tO\nand\tO\tand\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\naddConditions B-Class addConditions O\nmethods\tO\tmethods\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nOR B-Code_Block OR O\noperator\tO\toperator\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nyour\tO\tyour\tO\nnested\tO\tnested\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\n4\tO\t4\tO\ndifferent\tO\tdifferent\tO\noverloaded\tO\toverloaded\tO\nmethods\tO\tmethods\tO\nwith\tO\twith\tO\naddConditions B-Function addConditions O\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ntwo\tO\ttwo\tO\nallow\tO\tallow\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nsupply\tO\tsupply\tO\nan\tO\tan\tO\noperator\tO\toperator\tO\n(\tO\t(\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\nOR B-Code_Block OR O\n)\tO\t)\tO\nand\tO\tand\tO\none\tO\tone\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nstring B-Data_Type string O\ntogether\tO\ttogether\tO\nmultiple\tO\tmultiple\tO\nconditions\tO\tconditions\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nsupplied\tO\tsupplied\tO\noperator\tO\toperator\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nbreak\tO\tbreak\tO\napart\tO\tapart\tO\nyour\tO\tyour\tO\nnested\tO\tnested\tO\nstatements\tO\tstatements\tO\ninto\tO\tinto\tO\nseparate\tO\tseparate\tO\nconditions\tO\tconditions\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nlink\tO\tlink\tO\nthem\tO\tthem\tO\ntogether\tO\ttogether\tO\nwith\tO\twith\tO\nyour\tO\tyour\tO\naddConditions B-Code_Block addConditions B-Code_Block\n( I-Code_Block ( I-Code_Block\n[Collection I-Code_Block [Collection I-Code_Block\nof I-Code_Block of I-Code_Block\nConditions I-Code_Block Conditions I-Code_Block\n] I-Code_Block ] I-Code_Block\n, B-Code_Block , B-Code_Block\nOR I-Code_Block OR I-Code_Block\n) I-Code_Block ) I-Code_Block\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30751075\tO\t30751075\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30751075/\tO\thttps://stackoverflow.com/questions/30751075/\tO\n\t\n\t\nHere\tO\tHere\tO\ni\tO\ti\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nto\tO\tto\tO\ndiv B-HTML_XML_Tag div O\nwith\tO\twith\tO\nid B-Code_Block id B-Code_Block\n= I-Code_Block = I-Code_Block\n\" I-Code_Block \" I-Code_Block\nmylist I-Code_Block mylist I-Code_Block\n\" I-Code_Block \" I-Code_Block\n.i\tO\t.i\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nand\tO\tand\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\nprintList() B-Function printList() B-Code_Block\nfunction\tO\tfunction\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nand\tO\tand\tO\ni\tO\ti\tO\nam\tO\tam\tO\nprinting\tO\tprinting\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nprintList() B-Function printList() B-Code_Block\nbut\tO\tbut\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nworking.how\tO\tworking.how\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3693 I-Code_Block Q_3693 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nJavascript B-Language Javascript O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3694 I-Code_Block Q_3694 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nalso\tO\talso\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ndelay\tO\tdelay\tO\nfor\tO\tfor\tO\nprinting\tO\tprinting\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30751075\tO\t30751075\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30751075/\tO\thttps://stackoverflow.com/questions/30751075/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4372 I-Code_Block A_4372 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nappend\tO\tappend\tO\nother\tO\tother\tO\nDOM\tO\tDOM\tO\nNode\tO\tNode\tO\n(\tO\t(\tO\nas\tO\tas\tO\nchild\tO\tchild\tO\n)\tO\t)\tO\nto\tO\tto\tO\nDOM\tO\tDOM\tO\nNodes\tO\tNodes\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\ndocument.createTextNode() B-Function document.createTextNode() B-Code_Block\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nnode\tO\tnode\tO\nand\tO\tand\tO\ndocument.appendChild() B-Function document.appendChild() B-Code_Block\nto\tO\tto\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nchild\tO\tchild\tO\nto\tO\tto\tO\nexisting\tO\texisting\tO\nnode\tO\tnode\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30751075\tO\t30751075\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30751075/\tO\thttps://stackoverflow.com/questions/30751075/\tO\n\t\n\t\nProblem\tO\tProblem\tO\nis\tO\tis\tO\ndocument.write B-Function document.write B-Code_Block\nreturns\tO\treturns\tO\nnothing\tO\tnothing\tO\n,\tO\t,\tO\nalso\tO\talso\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrecommended\tO\trecommended\tO\n.\tO\t.\tO\n\t\nSecondly\tO\tSecondly\tO\ndom\tO\tdom\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nfunction\tO\tfunction\tO\nappend\tO\tappend\tB-Code_Block\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nit\tO\tit\tO\nis\tO\tis\tO\nappendChild B-Function appendChild B-Code_Block\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\ndocument.createTextNode B-Function document.createTextNode B-Code_Block\nand\tO\tand\tO\nappendChild B-Function appendChild B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4368 I-Code_Block Q_4368 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4369 I-Code_Block Q_4369 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nalso\tO\talso\tO\ntry\tO\ttry\tO\ninnerHTML B-Function innerHTML B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4370 I-Code_Block Q_4370 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4371 I-Code_Block Q_4371 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n29769215\tO\t29769215\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29769215/\tO\thttps://stackoverflow.com/questions/29769215/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nstring B-Data_Type string O\nas\tO\tas\tO\nbelow\tO\tbelow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3557 I-Code_Block Q_3557 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nextract\tO\textract\tO\nthe\tO\tthe\tO\nepisode\tO\tepisode\tO\nnumber\tO\tnumber\tO\n(\tO\t(\tO\n1 B-Value 1 B-Code_Block\n5) I-Value 5) I-Code_Block\nfrom\tO\tfrom\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nruby B-Language ruby O\nregex\tO\tregex\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29769215\tO\t29769215\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29769215/\tO\thttps://stackoverflow.com/questions/29769215/\tO\n\t\n\t\nJust\tO\tJust\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nnumber\tO\tnumber\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4226 I-Code_Block A_4226 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n29769215\tO\t29769215\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/29769215/\tO\thttps://stackoverflow.com/questions/29769215/\tO\n\t\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4227 I-Code_Block A_4227 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22398340\tO\t22398340\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22398340/\tO\thttps://stackoverflow.com/questions/22398340/\tO\n\t\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nI\tO\tI\tO\nasked\tO\tasked\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ngenerate\tO\tgenerate\tO\nshades\tO\tshades\tO\nof\tO\tof\tO\none\tO\tone\tO\ncolor\tO\tcolor\tO\nresponsive\tO\tresponsive\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ndiv B-HTML_XML_Tag div O\n's\tO\t's\tO\n.\tO\t.\tO\n\t\n@DonJuwe B-User_Name @DonJuwe O\ncame\tO\tcame\tO\nup\tO\tup\tO\nwith\tO\twith\tO\na\tO\ta\tO\nperfectly\tO\tperfectly\tO\nworking\tO\tworking\tO\nsolution\tO\tsolution\tO\nand\tO\tand\tO\ndemo\tO\tdemo\tO\n:\tO\t:\tO\nhttp://jsbin.com/xakifequ/1/edit\tO\thttp://jsbin.com/xakifequ/1/edit\tO\n\t\nHowever\tO\tHowever\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\njsfiddle B-Application jsfiddle O\nor\tO\tor\tO\nJSBin B-Application JSBin O\nit\tO\tit\tO\njust\tO\tjust\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ndownloaded\tO\tdownloaded\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nJSBin B-Application JSBin O\n,\tO\t,\tO\nopened\tO\topened\tO\nthe\tO\tthe\tO\n.html-file B-File_Type .html-file O\nand\tO\tand\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nwas\tO\twas\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nplease\tO\tplease\tO\nexplain\tO\texplain\tO\nme\tO\tme\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22398340\tO\t22398340\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22398340/\tO\thttps://stackoverflow.com/questions/22398340/\tO\n\t\n\t\nAs\tO\tAs\tO\nper\tO\tper\tO\nsnapshot\tO\tsnapshot\tO\n,\tO\t,\tO\nYou\tO\tYou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3045 I-Code_Block A_3045 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nReplace\tO\tReplace\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3046 I-Code_Block A_3046 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nprotocol\tO\tprotocol\tO\nless\tO\tless\tO\nUrls\tO\tUrls\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n//code.jquery.com/jquery\tO\t//code.jquery.com/jquery\tB-Code_Block\n-1.9.1.js\tO\t-1.9.1.js\tI-Code_Block\n,\tO\t,\tO\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nopen\tO\topen\tO\na\tO\ta\tO\nyour\tO\tyour\tO\nhtml B-File_Type html O\nfile\tO\tfile\tO\nlike\tO\tlike\tO\nfile://\tO\tfile://\tB-Code_Block\nthen\tO\tthen\tO\njQuery B-Library jQuery O\nis\tO\tis\tO\nnot\tO\tnot\tO\nloaded\tO\tloaded\tO\nthus\tO\tthus\tO\ndesired\tO\tdesired\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nachieved\tO\tachieved\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ntest\tO\ttest\tO\nyour\tO\tyour\tO\nhtml B-File_Type html O\nfile\tO\tfile\tO\nlike\tO\tlike\tO\nhttp://localhost/yourfile.html\tO\thttp://localhost/yourfile.html\tB-Code_Block\nyou\tO\tyou\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nUse\tO\tUse\tO\n//\tO\t//\tB-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nhttp://\tO\thttp://\tB-Code_Block\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ninherit\tO\tinherit\tO\nthe\tO\tthe\tO\nprotocol\tO\tprotocol\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22398340\tO\t22398340\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22398340/\tO\thttps://stackoverflow.com/questions/22398340/\tO\n\t\n\t\nyou\tO\tyou\tO\nmissed\tO\tmissed\tO\nhttp B-Value http B-Code_Block\n: I-Value : I-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\njQuery B-Library jQuery O\nsource\tO\tsource\tO\nlink\tO\tlink\tO\n.\tO\t.\tO\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nusing\tO\tusing\tO\nonline\tO\tonline\tB-Code_Block\nresource\tO\tresource\tI-Code_Block\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nfollow\tO\tfollow\tO\nthe\tO\tthe\tO\nurl\tO\turl\tB-Code_Block\n's\tO\t's\tI-Code_Block\nprotocol\tO\tprotocol\tI-Code_Block\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\nwise\tO\twise\tO\nbrowser B-Application browser O\nwill\tO\twill\tO\nsearch\tO\tsearch\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nlocal\tO\tlocal\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nconfused\tO\tconfused\tO\nyour\tO\tyour\tO\nbrowser B-Application browser O\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nonly\tO\tonly\tO\nit\tO\tit\tO\nhappens\tO\thappens\tO\n..\tO\t..\tO\n.\tO\t.\tO\n:D\tO\t:D\tO\n\t\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3047 I-Code_Block A_3047 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3048 I-Code_Block A_3048 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7985704\tO\t7985704\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7985704/\tO\thttps://stackoverflow.com/questions/7985704/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nVB.Net B-Language VB.Net O\nprojects\tO\tprojects\tO\nwhich\tO\twhich\tO\ncalls\tO\tcalls\tO\nsome\tO\tsome\tO\nC# B-Language C# O\ndll B-File_Type dll O\n's\tO\t's\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndebug\tO\tdebug\tO\nthe\tO\tthe\tO\nC# B-Language C# O\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nwhen\tO\twhen\tO\nan\tO\tan\tO\nexception B-Class exception O\noccurs\tO\toccurs\tO\n,\tO\t,\tO\nVB.Net B-Language VB.Net O\nopens\tO\topens\tO\nthe\tO\tthe\tO\nC# B-Language C# O\ncode\tO\tcode\tO\nin\tO\tin\tO\na\tO\ta\tO\ntext-editor B-Application text-editor O\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nsyntax-coloring\tO\tsyntax-coloring\tO\n,\tO\t,\tO\nset\tO\tset\tO\nbreakpoints\tO\tbreakpoints\tO\nin\tO\tin\tO\nother\tO\tother\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfeel\tO\tfeel\tO\nit\tO\tit\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nobvious\tO\tobvious\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfigure\tO\tfigure\tO\nit\tO\tit\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7985704\tO\t7985704\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7985704/\tO\thttps://stackoverflow.com/questions/7985704/\tO\n\t\n\t\nStart\tO\tStart\tO\nyour\tO\tyour\tO\ndebugging\tO\tdebugging\tO\nsession\tO\tsession\tO\nnormally\tO\tnormally\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nonce\tO\tonce\tO\nit\tO\tit\tO\nis\tO\tis\tO\nstarted\tO\tstarted\tO\n,\tO\t,\tO\nuse\tO\tuse\tO\nVisual B-Application Visual O\nStudio I-Application Studio O\n,\tO\t,\tO\nFile/Open\tO\tFile/Open\tO\nmenu B-User_Interface_Element menu O\nto\tO\tto\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\n.cs B-File_Type .cs O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncorresponding\tO\tcorresponding\tO\n.pdb B-File_Type .pdb O\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ndll B-File_Type dll O\nin\tO\tin\tO\nwhich\tO\twhich\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nincluded\tO\tincluded\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nset\tO\tset\tO\nbreakpoints\tO\tbreakpoints\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nhit\tO\thit\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ndebugging\tO\tdebugging\tO\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\npdb B-File_Type pdb O\nfile\tO\tfile\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmeans\tO\tmeans\tO\nyour\tO\tyour\tO\ndll B-File_Type dll O\nwas\tO\twas\tO\ncompiled\tO\tcompiled\tO\nin\tO\tin\tO\nRelease\tO\tRelease\tO\nconfiguration\tO\tconfiguration\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\ndebug\tO\tdebug\tO\nconfiguration\tO\tconfiguration\tO\n.\tO\t.\tO\n\t\nDuring\tO\tDuring\tO\nthis\tO\tthis\tO\nsession\tO\tsession\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nother\tO\tother\tO\n.cs B-File_Type .cs O\nfiles\tO\tfiles\tO\nmanually\tO\tmanually\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nstep\tO\tstep\tO\ninto\tO\tinto\tO\nstatements\tO\tstatements\tO\n.\tO\t.\tO\n\t\nOpen\tO\tOpen\tO\nthe\tO\tthe\tO\nneeded\tO\tneeded\tO\nfiles\tO\tfiles\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\nstep\tO\tstep\tO\ninto\tO\tinto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7985704\tO\t7985704\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7985704/\tO\thttps://stackoverflow.com/questions/7985704/\tO\n\t\n\t\nPrior\tO\tPrior\tO\nto\tO\tto\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nprojects\tO\tprojects\tO\n(\tO\t(\tO\nF B-Keyboard_IP F O\n5) I-Keyboard_IP 5) O\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nC# B-Language C# O\ncode\tO\tcode\tO\n(\tO\t(\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nPDB B-File_Type PDB O\n)\tO\t)\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nopen\tO\topen\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\n.cs B-File_Type .cs O\nfile\tO\tfile\tO\nusing\tO\tusing\tO\nFile->Open\tO\tFile->Open\tO\nand\tO\tand\tO\nset\tO\tset\tO\nbreakpoints\tO\tbreakpoints\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\n.cs B-File_Type .cs O\nthen\tO\tthen\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nreflector\tO\treflector\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\nthe\tO\tthe\tO\n.cs B-File_Type .cs O\nfiles\tO\tfiles\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nbreakpoints\tO\tbreakpoints\tO\nwith\tO\twith\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nPDB B-File_Type PDB O\nbut\tO\tbut\tO\nI\tO\tI\tO\n've\tO\t've\tO\nonly\tO\tonly\tO\nhad\tO\thad\tO\nsuccess\tO\tsuccess\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nI\tO\tI\tO\n've\tO\t've\tO\nalready\tO\talready\tO\ninterrupted\tO\tinterrupted\tO\na\tO\ta\tO\nrunning\tO\trunning\tO\ndebug\tO\tdebug\tO\nsession\tO\tsession\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28656556\tO\t28656556\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28656556/\tO\thttps://stackoverflow.com/questions/28656556/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nstatic_assert B-Function static_assert O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3371 I-Code_Block Q_3371 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nbut\tO\tbut\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\non\tO\ton\tO\ncompilation\tO\tcompilation\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nexpression\tO\texpression\tO\nso\tO\tso\tO\nwhats\tO\twhats\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28656556\tO\t28656556\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28656556/\tO\thttps://stackoverflow.com/questions/28656556/\tO\n\t\n\t\nFor\tO\tFor\tO\na\tO\ta\tO\ncompiler B-Application compiler O\nwithout\tO\twithout\tO\nconstexpr B-Code_Block constexpr B-Code_Block\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nC B-Language C O\nlibrary\tO\tlibrary\tO\nMAX B-Variable MAX B-Code_Block\nnames\tO\tnames\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nSIZE_MAX B-Variable SIZE_MAX B-Code_Block\nfrom\tO\tfrom\tO\n<stdint.h> B-Library <stdint.h> B-Code_Block\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nunsigned\tO\tunsigned\tO\ntype\tO\ttype\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nsize_t B-Data_Type size_t B-Code_Block\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nsize_t(-1) B-Data_Type size_t(-1) B-Code_Block\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\n(\tO\t(\tO\nhttp://en.cppreference.com/w/cpp/types/climits\tO\thttp://en.cppreference.com/w/cpp/types/climits\tO\n)\tO\t)\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nlist\tO\tlist\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37378562\tO\t37378562\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37378562/\tO\thttps://stackoverflow.com/questions/37378562/\tO\n\t\n\t\nTrying\tO\tTrying\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nSurveys B-Library Surveys O\nAPI I-Library API O\nsample\tO\tsample\tO\nPython B-Language Python O\nscript\tO\tscript\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nList B-Code_Block List O\nSurveys I-Code_Block Surveys O\n\"\tO\t\"\tO\ncommand\tO\tcommand\tO\nreturns\tO\treturns\tO\nonly\tO\tonly\tO\na\tO\ta\tO\nrequest_id B-Variable request_id O\nand\tO\tand\tO\nnot\tO\tnot\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nresources\tO\tresources\tO\n\"\tO\t\"\tO\nobject\tO\tobject\tO\nwith\tO\twith\tO\na\tO\ta\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nsurveys\tO\tsurveys\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n\t\nExecuting\tO\tExecuting\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nscript\tO\tscript\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nResults\tO\tResults\tO\nof\tO\tof\tO\n\" B-Code_Block \" O\nlist I-Code_Block list O\n\" I-Code_Block \" O\ncommand\tO\tcommand\tO\nto_json B-Function to_json O\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4673 I-Code_Block Q_4673 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nResponse\tO\tResponse\tO\nfrom\tO\tfrom\tO\nexecuting\tO\texecuting\tO\nthe\tO\tthe\tO\nlist B-Code_Block list O\ncommand\tO\tcommand\tO\n-\tO\t-\tO\nno B-Output_Block no O\n\" I-Output_Block \" O\nresources I-Output_Block resources O\n\" I-Output_Block \" O\nobject I-Output_Block object O\nas I-Output_Block as O\nadvertised I-Output_Block advertised O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4674 I-Code_Block Q_4674 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsome\tO\tsome\tO\n150\tO\t150\tO\nsurveys\tO\tsurveys\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncommand\tO\tcommand\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAPI B-Application API O\nexplorer I-Application explorer O\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nchain\tO\tchain\tO\nof\tO\tof\tO\nnext\tO\tnext\tO\npage\tO\tpage\tO\ntokens\tO\ttokens\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\nplease\tO\tplease\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37378562\tO\t37378562\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37378562/\tO\thttps://stackoverflow.com/questions/37378562/\tO\n\t\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nlist B-Data_Structure list O\nsurveys\tO\tsurveys\tO\nowned\tO\towned\tO\nby\tO\tby\tO\nyour\tO\tyour\tO\naccount\tO\taccount\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nservice\tO\tservice\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nyou''ll\tO\tyou''ll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\naccount\tO\taccount\tO\nas\tO\tas\tO\nan\tO\tan\tO\nowner\tO\towner\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nresources\tO\tresources\tO\nthat\tO\tthat\tO\nyour\tO\tyour\tO\naccount\tO\taccount\tO\nowns\tO\towns\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nprocess\tO\tprocess\tO\nfound\tO\tfound\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nallow\tO\tallow\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nget\tO\tget\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nsurvey\tO\tsurvey\tO\nresults\tO\tresults\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nGoogle B-Library Google O\nConsumer I-Library Consumer O\nSurveys I-Library Surveys O\nAPI I-Library API O\n?\tO\t?\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\n3\tO\t3\tO\nlegged\tO\tlegged\tO\nOAuth B-Library OAuth O\nclient B-Variable client O\nsecret I-Variable secret O\nand\tO\tand\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nprompt\tO\tprompt\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\nas\tO\tas\tO\nyour\tO\tyour\tO\nregular\tO\tregular\tO\nnon-service\tO\tnon-service\tO\naccount\tO\taccount\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthose\tO\tthose\tO\ncredentials\tO\tcredentials\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nhttps://developers.google.com/identity/protocols/OAuth2WebServer\tO\thttps://developers.google.com/identity/protocols/OAuth2WebServer\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthis\tO\tthis\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nclient\tO\tclient\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ncredential\tO\tcredential\tO\n.\tO\t.\tO\n\t\n./example_client.py B-Code_Block ./example_client.py O\nlist I-Code_Block list O\n--client_secrets_file I-Code_Block --client_secrets_file O\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nthe\tO\tthe\tO\ncredentials\tO\tcredentials\tO\nto\tO\tto\tO\nredirect\tO\tredirect\tO\nto\tO\tto\tO\nlocalhost:8080 B-Value localhost:8080 O\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28887577\tO\t28887577\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28887577/\tO\thttps://stackoverflow.com/questions/28887577/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntime\tO\ttime\tO\nformat\tO\tformat\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\na\tO\ta\tO\nfactor\tO\tfactor\tO\n\t\n2004-03-01-22.58.00.912933 B-Value 2004-03-01-22.58.00.912933 O\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nR B-Language R O\nand\tO\tand\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nsomething\tO\tsomething\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nan\tO\tan\tO\nactual\tO\tactual\tO\ntime\tO\ttime\tO\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nOthers\tO\tOthers\tO\nhave\tO\thave\tO\nposted\tO\tposted\tO\nsimilar\tO\tsimilar\tO\nquestions\tO\tquestions\tO\nbut\tO\tbut\tO\nno\tO\tno\tO\none\tO\tone\tO\nhas\tO\thas\tO\ndealt\tO\tdealt\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\nformat\tO\tformat\tO\nspecifically\tO\tspecifically\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28887577\tO\t28887577\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28887577/\tO\thttps://stackoverflow.com/questions/28887577/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nfactor\tO\tfactor\tO\nis\tO\tis\tO\nf1 B-Code_Block f1 B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4064 I-Code_Block A_4064 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nfractions\tO\tfractions\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ndisplay\tO\tdisplay\tO\n,\tO\t,\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\noption\tO\toption\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4065 I-Code_Block A_4065 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20319347\tO\t20319347\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20319347/\tO\thttps://stackoverflow.com/questions/20319347/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nmusic\tO\tmusic\tO\ngame\tO\tgame\tO\nwebsite\tO\twebsite\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nSpotify B-Application Spotify O\nplay B-User_Interface_Element play O\nbutton I-User_Interface_Element button O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ntakes\tO\ttakes\tO\nspotify B-Application spotify O\ntrack\tO\ttrack\tO\nnumbers/urls\tO\tnumbers/urls\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nhuge\tO\thuge\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nthem\tO\tthem\tO\nwith\tO\twith\tO\nwhich\tO\twhich\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\nmy\tO\tmy\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nfind\tO\tfind\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\nlist B-Data_Structure list O\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nscrape\tO\tscrape\tO\nthem\tO\tthem\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20319347\tO\t20319347\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20319347/\tO\thttps://stackoverflow.com/questions/20319347/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nmillions\tO\tmillions\tO\nof\tO\tof\tO\ntracks\tO\ttracks\tO\nin\tO\tin\tO\nSpotify B-Application Spotify O\nso\tO\tso\tO\nthat\tO\tthat\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\na\tO\ta\tO\npretty\tO\tpretty\tO\nunmanageable\tO\tunmanageable\tO\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nimportantly\tO\timportantly\tO\n,\tO\t,\tO\nscraping\tO\tscraping\tO\nthe\tO\tthe\tO\nSpotify B-Application Spotify O\ncatalog\tO\tcatalog\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nagainst\tO\tagainst\tO\nSpotify B-Website Spotify O\n's\tO\t's\tO\nAPI\tO\tAPI\tO\nTerms\tO\tTerms\tO\nof\tO\tof\tO\nService\tO\tService\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nfind\tO\tfind\tO\nyourself\tO\tyourself\tO\nrate\tO\trate\tO\nlimited\tO\tlimited\tO\npretty\tO\tpretty\tO\nfast\tO\tfast\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\n,\tO\t,\tO\nconsider\tO\tconsider\tO\nasking\tO\tasking\tO\nusers\tO\tusers\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\ngame\tO\tgame\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\nsomething\tO\tsomething\tO\n-\tO\t-\tO\nsearching\tO\tsearching\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nuser-supplied\tO\tuser-supplied\tO\nstring\tO\tstring\tO\nand\tO\tand\tO\ncaching\tO\tcaching\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsearch\tO\tsearch\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nbreak\tO\tbreak\tO\nthe\tO\tthe\tO\nTerms\tO\tTerms\tO\nof\tO\tof\tO\nService\tO\tService\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33375136\tO\t33375136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33375136/\tO\thttps://stackoverflow.com/questions/33375136/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4075 I-Code_Block Q_4075 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33375136\tO\t33375136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33375136/\tO\thttps://stackoverflow.com/questions/33375136/\tO\n\t\n\t\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nassignment\tO\tassignment\tO\noperator\tO\toperator\tO\nbut\tO\tbut\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nin\tO\tin\tO\nwrong\tO\twrong\tO\nway\tO\tway\tO\nor\tO\tor\tO\nin\tO\tin\tO\nwrong\tO\twrong\tO\nplace\tO\tplace\tO\n,\tO\t,\tO\n\t\nthen\tO\tthen\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\nerrors\tO\terrors\tO\n!\tO\t!\tO\n\t\nsuppose\tO\tsuppose\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ntype\tO\ttype\tO\n:\tO\t:\tO\n\t\np+1 B-Code_Block p+1 O\n=p I-Code_Block =p O\n; I-Code_Block ; O\nyou\tO\tyou\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nyou\tO\tyou\tO\nwill\tO\twill\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nerror\tO\terror\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nif B-Code_Block if O\n( I-Code_Block ( O\nch>='a' I-Code_Block ch>='a' O\n&& I-Code_Block && O\nch='z' I-Code_Block ch='z' O\n) I-Code_Block ) O\n\t\nas\tO\tas\tO\nyou\tO\tyou\tO\nsee\tO\tsee\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nassign\tO\tassign\tO\nin\tO\tin\tO\nif() B-Code_Block if() O\nstatement\tO\tstatement\tO\n!!\tO\t!!\tO\n!\tO\t!\tO\n\t\nhow\tO\thow\tO\nsilly\tO\tsilly\tO\nI\tO\tI\tO\nam\tO\tam\tO\n!!\tO\t!!\tO\n!\tO\t!\tO\n\t\nright\tO\tright\tO\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nha\tO\tha\tO\nha\tO\tha\tO\n\t\nactually\tO\tactually\tO\ni\tO\ti\tO\nforgot\tO\tforgot\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nless\tO\tless\tO\nthen(<) B-Code_Block then(<) O\nsign\tO\tsign\tO\n\t\nif B-Code_Block if O\n( I-Code_Block ( O\nch>='a' I-Code_Block ch>='a' O\n&& I-Code_Block && O\nch<='z' I-Code_Block ch<='z' O\n) I-Code_Block ) O\n\t\nand\tO\tand\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33375136\tO\t33375136\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33375136/\tO\thttps://stackoverflow.com/questions/33375136/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nassignment\tO\tassignment\tO\noperator\tO\toperator\tO\nin\tO\tin\tO\na\tO\ta\tO\nstatement\tO\tstatement\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nLHS\tO\tLHS\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noperator\tO\toperator\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nsomething\tO\tsomething\tO\nthe\tO\tthe\tO\nlanguage\tO\tlanguage\tO\ncalls\tO\tcalls\tO\nan\tO\tan\tO\nlvalue\tO\tlvalue\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nLHS\tO\tLHS\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noperator\tO\toperator\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nevaluate\tO\tevaluate\tO\nto\tO\tto\tO\nan\tO\tan\tO\nlvalue\tO\tlvalue\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nRHS\tO\tRHS\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nassigned\tO\tassigned\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nLHS\tO\tLHS\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncannot\tO\tcannot\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4774 I-Code_Block A_4774 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nsince\tO\tsince\tO\n10 B-Value 10 B-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nevaluate\tO\tevaluate\tO\nto\tO\tto\tO\nan\tO\tan\tO\nlvalue\tO\tlvalue\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4775 I-Code_Block A_4775 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nsince\tO\tsince\tO\ni B-Variable i B-Code_Block\ndoes\tO\tdoes\tO\nevaluate\tO\tevaluate\tO\nto\tO\tto\tO\nan\tO\tan\tO\nlvalue\tO\tlvalue\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncannot\tO\tcannot\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4776 I-Code_Block A_4776 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nsince\tO\tsince\tO\ni B-Code_Block i B-Code_Block\n+ I-Code_Block + I-Code_Block\n1 I-Code_Block 1 I-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nevaluate\tO\tevaluate\tO\nto\tO\tto\tO\nan\tO\tan\tO\nlvalue\tO\tlvalue\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\np B-Code_Block p B-Code_Block\n+ I-Code_Block + I-Code_Block\n1 I-Code_Block 1 I-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nevaluate\tO\tevaluate\tO\nto\tO\tto\tO\nan\tO\tan\tO\nlavalue\tO\tlavalue\tO\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nuse\tO\tuse\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4777 I-Code_Block A_4777 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22931291\tO\t22931291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22931291/\tO\thttps://stackoverflow.com/questions/22931291/\tO\n\t\n\t\nadvise\tO\tadvise\tO\nappreciated\tO\tappreciated\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndrop-down B-User_Interface_Element drop-down O\nlist I-User_Interface_Element list O\nwith\tO\twith\tO\n\" B-Value \" O\nselect I-Value select O\n.. I-Value .. O\n. I-Value . O\n\" I-Value \" O\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\na\tO\ta\tO\nlist B-User_Interface_Element list O\nof\tO\tof\tO\nlinks\tO\tlinks\tO\nwhich\tO\twhich\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\neach\tO\teach\tO\nopens\tO\topens\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nURL\tO\tURL\tO\nin\tO\tin\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nwindow B-User_Interface_Element window O\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nuser\tO\tuser\tO\nselection\tO\tselection\tO\n(\tO\t(\tO\n\"\tO\t\"\tO\nclick\tO\tclick\tO\n\"\tO\t\"\tO\n)\tO\t)\tO\nI\tO\tI\tO\nhowever\tO\thowever\tO\nneed\tO\tneed\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndrop-down B-User_Interface_Element drop-down O\nalways\tO\talways\tO\nkeeps\tO\tkeeps\tO\nshowing\tO\tshowing\tO\n\" B-Value \" O\nselect I-Value select O\n.. I-Value .. O\n. I-Value . O\n\" I-Value \" O\nand\tO\tand\tO\ndoes\tO\tdoes\tO\nNOT\tO\tNOT\tO\nshow\tO\tshow\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\npreviously\tO\tpreviously\tO\nselected/clicked\tO\tselected/clicked\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nit\tO\tit\tO\nstill\tO\tstill\tO\nshows\tO\tshows\tO\nwhatever\tO\twhatever\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nselected/clicked\tO\tselected/clicked\tO\non\tO\ton\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ndrop-down B-User_Interface_Element drop-down O\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nalways\tO\talways\tO\nshowing\tO\tshowing\tO\n\" B-Value \" O\nselect I-Value select O\n.. I-Value .. O\n. I-Value . O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nsuggestion\tO\tsuggestion\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nTHANKS\tO\tTHANKS\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2507 I-Code_Block Q_2507 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22931291\tO\t22931291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22931291/\tO\thttps://stackoverflow.com/questions/22931291/\tO\n\t\n\t\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3109 I-Code_Block A_3109 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3110 I-Code_Block A_3110 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9910837\tO\t9910837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9910837/\tO\thttps://stackoverflow.com/questions/9910837/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nappend\tO\tappend\tO\none\tO\tone\tO\nstring B-Data_Type string O\nto\tO\tto\tO\nanother\tO\tanother\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndeclare\tO\tdeclare\tO\ntwo\tO\ttwo\tO\nglobal B-Data_Type global O\nstring I-Data_Type string O\nvariables\tO\tvariables\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_850 I-Code_Block Q_850 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nfor\tO\tfor\tO\ngetting\tO\tgetting\tO\ncommand\tO\tcommand\tO\nline\tO\tline\tO\narguments\tO\targuments\tO\n.\tO\t.\tO\n\t\nWhenever\tO\tWhenever\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nenters\tO\tenters\tO\na\tO\ta\tO\nfilename\tO\tfilename\tO\nin\tO\tin\tO\na\tO\ta\tO\ncommand B-Application command O\nline I-Application line O\nargument\tO\targument\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\nrest B-Variable rest O\nand\tO\tand\tO\nthen\tO\tthen\tO\nrest B-Variable rest O\nis\tO\tis\tO\nappended\tO\tappended\tO\nto\tO\tto\tO\ngrid_filename B-Variable grid_filename O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_851 I-Code_Block Q_851 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nwhenever\tO\twhenever\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nvalgrind B-Application valgrind O\ngives\tO\tgives\tO\nme\tO\tme\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_852 I-Code_Block Q_852 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\naddresses\tO\taddresses\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstrings B-Data_Type strings O\nand\tO\tand\tO\nneither\tO\tneither\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nmatch\tO\tmatch\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nvalgrind B-Application valgrind O\nis\tO\tis\tO\nsaying\tO\tsaying\tO\nis\tO\tis\tO\n0\tO\t0\tO\nbytes\tO\tbytes\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nthis\tO\tthis\tO\nleads\tO\tleads\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nsecond\tO\tsecond\tO\nerror\tO\terror\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\npass\tO\tpass\tO\ngrid_filename B-Variable grid_filename O\nto\tO\tto\tO\nanother\tO\tanother\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nsends\tO\tsends\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nover\tO\tover\tO\na\tO\ta\tO\ntcp\tO\ttcp\tO\nconnection\tO\tconnection\tO\n.\tO\t.\tO\n\t\nValgrind B-Application Valgrind O\ntells\tO\ttells\tO\nme\tO\tme\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_853 I-Code_Block Q_853 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nexplain\tO\texplain\tO\nto\tO\tto\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsupply\tO\tsupply\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nif\tO\tif\tO\nneeded\tO\tneeded\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9910837\tO\t9910837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9910837/\tO\thttps://stackoverflow.com/questions/9910837/\tO\n\t\n\t\nAbout\tO\tAbout\tO\nyour\tO\tyour\tO\nfirst\tO\tfirst\tO\nerror\tO\terror\tO\n:\tO\t:\tO\nwe\tO\twe\tO\nhad\tO\thad\tO\nfalse\tO\tfalse\tO\npositives\tO\tpositives\tO\nin\tO\tin\tO\nvalgrind B-Application valgrind O\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nto\tO\tto\tO\nsuppress\tO\tsuppress\tO\nthese\tO\tthese\tO\n,\tO\t,\tO\nespecially\tO\tespecially\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\npointing\tO\tpointing\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nchecked\tO\tchecked\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nactually\tO\tactually\tO\ncause\tO\tcause\tO\nproblems\tO\tproblems\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9910837\tO\t9910837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9910837/\tO\thttps://stackoverflow.com/questions/9910837/\tO\n\t\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nresponse\tO\tresponse\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\ncode\tO\tcode\tO\nreview\tO\treview\tO\nsite\tO\tsite\tO\n..\tO\t..\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\nreally\tO\treally\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nstare\tO\tstare\tO\nat\tO\tat\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nwalk\tO\twalk\tO\naway\tO\taway\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\nfunctions\tO\tfunctions\tO\nthat\tO\tthat\tO\nreally\tO\treally\tO\nhelp\tO\thelp\tO\nin\tO\tin\tO\na\tO\ta\tO\ntoolbox B-User_Interface_Element toolbox O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1243 I-Code_Block A_1243 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nrewrite\tO\trewrite\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nquite\tO\tquite\tO\nefficiently\tO\tefficiently\tO\n(\tO\t(\tO\nno\tO\tno\tO\nextra\tO\textra\tO\nmemory\tO\tmemory\tO\nallocation\tO\tallocation\tO\n)\tO\t)\tO\nand\tO\tand\tO\nwith\tO\twith\tO\nmore\tO\tmore\tO\nreadability\tO\treadability\tO\ntoo\tO\ttoo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1244 I-Code_Block A_1244 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhich\tO\tWhich\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nhelp\tO\thelp\tO\nmuch\tO\tmuch\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nquestion\tO\tquestion\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nshowing\tO\tshowing\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nproducing\tO\tproducing\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39208837\tO\t39208837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39208837/\tO\thttps://stackoverflow.com/questions/39208837/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nwebsite\tO\twebsite\tO\nwith\tO\twith\tO\n.cgi B-File_Type .cgi B-Code_Block\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nso\tO\tso\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\nindex.cgi B-File_Name index.cgi O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4936 I-Code_Block Q_4936 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nevrything\tO\tevrything\tO\nis\tO\tis\tO\ndisplaying\tO\tdisplaying\tO\ncorectly\tO\tcorectly\tO\netc\tO\tetc\tO\n.\tO\t.\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nanything\tO\tanything\tO\nabout\tO\tabout\tO\nlogin\tO\tlogin\tO\nform\tO\tform\tO\n:/\tO\t:/\tO\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nlogin\tO\tlogin\tO\nform\tO\tform\tO\ninput\tO\tinput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4937 I-Code_Block Q_4937 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nmy\tO\tmy\tO\nJS B-Language JS O\nlogin\tO\tlogin\tO\nscript\tO\tscript\tO\n(\tO\t(\tO\nhe\tO\the\tO\nis\tO\tis\tO\ninclude\tO\tinclude\tO\nin\tO\tin\tO\nheader\tO\theader\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4938 I-Code_Block Q_4938 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nmake\tO\tmake\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\nverify\tO\tverify\tO\nif\tO\tif\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nlogged\tO\tlogged\tO\non\tO\ton\tO\nevery\tO\tevery\tO\npage\tO\tpage\tO\n?\tO\t?\tO\n\t\nand\tO\tand\tO\nchange\tO\tchange\tO\nfew\tO\tfew\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\ndisplay\tO\tdisplay\tO\ndisconnect\tO\tdisconnect\tO\nbutton B-User_Interface_Element button O\netc\tO\tetc\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nsomeone\tO\tsomeone\tO\nnice\tO\tnice\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n<3\tO\t<3\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nsince\tO\tsince\tO\n1\tO\t1\tO\nweek\tO\tweek\tO\nago\tO\tago\tO\n:')\tO\t:')\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39208837\tO\t39208837\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39208837/\tO\thttps://stackoverflow.com/questions/39208837/\tO\n\t\n\t\nFirst\tO\tFirst\tO\nyour\tO\tyour\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\ninsecure\tO\tinsecure\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nput\tO\tput\tO\nyou\tO\tyou\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ntrack\tO\ttrack\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nuse B-Code_Block use B-Code_Block\nHTML::Template I-Code_Block HTML::Template I-Code_Block\n; I-Code_Block ; I-Code_Block\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nlogin\tO\tlogin\tO\nand\tO\tand\tO\nlogout\tO\tlogout\tO\nof\tO\tof\tO\nsessions\tO\tsessions\tO\nin\tO\tin\tO\n2\tO\t2\tO\ncgi B-File_Type cgi O\nscripts\tO\tscripts\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15425905\tO\t15425905\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15425905/\tO\thttps://stackoverflow.com/questions/15425905/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\ngiven\tO\tgiven\tO\nstep\tO\tstep\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\n< B-HTML_XML_Tag < B-Code_Block\nheading I-HTML_XML_Tag heading I-Code_Block\ntag\tO\ttag\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\noccurring\tO\toccurring\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\noccurrence\tO\toccurrence\tO\nonly\tO\tonly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nshell B-Application shell O\nscript\tO\tscript\tO\nin\tO\tin\tO\nWindows B-Operating_System Windows O\nusing\tO\tusing\tO\ncygwin B-Application cygwin O\ntool\tO\ttool\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1504 I-Code_Block Q_1504 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthis\tO\tthis\tO\nwill\tO\twill\tO\ngive\tO\tgive\tO\nan\tO\tan\tO\noutput\tO\toutput\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n17 B-Value 17 B-Code_Block\n24 I-Value 24 I-Code_Block\n46 I-Value 46 I-Code_Block\n\t\nFrom\tO\tFrom\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nretrieve\tO\tretrieve\tO\n17 B-Value 17 B-Code_Block\nonly\tO\tonly\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15425905\tO\t15425905\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15425905/\tO\thttps://stackoverflow.com/questions/15425905/\tO\n\t\n\t\nOne\tO\tOne\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\npipe\tO\tpipe\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\nhead B-Code_Block head B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1983 I-Code_Block A_1983 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4823760\tO\t4823760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4823760/\tO\thttps://stackoverflow.com/questions/4823760/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ninternet\tO\tinternet\tO\nbut\tO\tbut\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\nwithin\tO\twithin\tO\nmy\tO\tmy\tO\nsample\tO\tsample\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nseparator\tO\tseparator\tO\nbetween\tO\tbetween\tO\nContext B-User_Interface_Element Context O\nmenu I-User_Interface_Element menu O\nitem\tO\titem\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\ngenerated\tO\tgenerated\tO\nfrom\tO\tfrom\tO\ncode\tO\tcode\tO\nbehind\tO\tbehind\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nsuch\tO\tsuch\tO\ncode\tO\tcode\tO\nlines\tO\tlines\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nsuccess\tO\tsuccess\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_333 I-Code_Block Q_333 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwondering\tO\twondering\tO\nif\tO\tif\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nContext B-HTML_XML_Tag Context O\nMenu I-HTML_XML_Tag Menu O\nXAML B-Language XAML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_334 I-Code_Block Q_334 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nC# B-Language C# O\nthat\tO\tthat\tO\nadded\tO\tadded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_335 I-Code_Block Q_335 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4823760\tO\t4823760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4823760/\tO\thttps://stackoverflow.com/questions/4823760/\tO\n\t\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nthis\tO\tthis\tO\nonce\tO\tonce\tO\nand\tO\tand\tO\nused\tO\tused\tO\na\tO\ta\tO\nnull B-Value null B-Code_Block\nas\tO\tas\tO\nmy\tO\tmy\tO\nseparator B-HTML_XML_Tag separator O\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nXAML B-Language XAML O\n,\tO\t,\tO\nI\tO\tI\tO\nthen\tO\tthen\tO\nstyled\tO\tstyled\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nseparator B-HTML_XML_Tag separator O\nif\tO\tif\tO\nthe\tO\tthe\tO\ndatacontext B-Variable datacontext O\nwas\tO\twas\tO\nnull B-Value null O\n\t\nCode\tO\tCode\tO\nbehind\tO\tbehind\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_489 I-Code_Block A_489 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nXAML B-Language XAML O\nwas\tO\twas\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_490 I-Code_Block A_490 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHope\tO\tHope\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nsyntax\tO\tsyntax\tO\nright\tO\tright\tO\n-\tO\t-\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nIDE B-Application IDE O\non\tO\ton\tO\nthis\tO\tthis\tO\nmachine\tO\tmachine\tO\nto\tO\tto\tO\nverify\tO\tverify\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n\t\nEDIT\tO\tEDIT\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\ntemplate\tO\ttemplate\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncontext B-User_Interface_Element context O\nmenu I-User_Interface_Element menu O\nseparator I-User_Interface_Element separator O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nputting\tO\tputting\tO\nit\tO\tit\tO\nin\tO\tin\tO\nContextMenu.Resources B-HTML_XML_Tag ContextMenu.Resources B-Code_Block\n,\tO\t,\tO\nalthough\tO\talthough\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nput\tO\tput\tO\nthis\tO\tthis\tO\nanywhere\tO\tanywhere\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nContextMenu B-HTML_XML_Tag ContextMenu O\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_491 I-Code_Block A_491 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4823760\tO\t4823760\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4823760/\tO\thttps://stackoverflow.com/questions/4823760/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmodified\tO\tmodified\tO\nthe\tO\tthe\tO\nsolution\tO\tsolution\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nRachel B-User_Name Rachel O\nabove\tO\tabove\tO\nto\tO\tto\tO\ncorrect\tO\tcorrect\tO\nthe\tO\tthe\tO\nSeparator B-HTML_XML_Tag Separator O\nstyle\tO\tstyle\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrealize\tO\trealize\tO\nthis\tO\tthis\tO\npost\tO\tpost\tO\nis\tO\tis\tO\nold\tO\told\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nstill\tO\tstill\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nresults\tO\tresults\tO\non\tO\ton\tO\nGoogle B-Website Google O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nsituation\tO\tsituation\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nMenu B-HTML_XML_Tag Menu O\nvs\tO\tvs\tO\na\tO\ta\tO\nContextMenu B-HTML_XML_Tag ContextMenu O\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nshould\tO\tshould\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nXAML B-Language XAML O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7007 I-Code_Block A_7007 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWithout\tO\tWithout\tO\nSeparator B-HTML_XML_Tag Separator O\nStyle\tO\tStyle\tO\nChange\tO\tChange\tO\n\t\nWith\tO\tWith\tO\nSeparator B-HTML_XML_Tag Separator O\nStyle\tO\tStyle\tO\nChange\tO\tChange\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7684289\tO\t7684289\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7684289/\tO\thttps://stackoverflow.com/questions/7684289/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nXML B-Language XML O\nfrom\tO\tfrom\tO\nthird-party\tO\tthird-party\tO\nservice\tO\tservice\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_605 I-Code_Block Q_605 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nlike\tO\tlike\tO\nsingle\tO\tsingle\tO\ncollection\tO\tcollection\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nfields\tO\tfields\tO\nof\tO\tof\tO\nare\tO\tare\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\nname\tO\tname\tO\nof\tO\tof\tO\npart\tO\tpart\tO\nis\tO\tis\tO\ndiffer\tO\tdiffer\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\nserialization\tO\tserialization\tO\nfirst\tO\tfirst\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_606 I-Code_Block Q_606 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nresponse\tO\tresponse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_607 I-Code_Block Q_607 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nLooks\tO\tLooks\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nvery\tO\tvery\tO\nclose\tO\tclose\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\ncollection\tO\tcollection\tO\nobjects\tO\tobjects\tO\n?\tO\t?\tO\n\t\nUPD\tO\tUPD\tO\n:\tO\t:\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nafter\tO\tafter\tO\nserialization\tO\tserialization\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_608 I-Code_Block Q_608 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16720329\tO\t16720329\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16720329/\tO\thttps://stackoverflow.com/questions/16720329/\tO\n\t\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nparses\tO\tparses\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\nstrings B-Data_Type strings O\noperands\tO\toperands\tO\ninto\tO\tinto\tO\ndouble B-Data_Type double O\nand\tO\tand\tO\nadds\tO\tadds\tO\nthem\tO\tthem\tO\ntogether\tO\ttogether\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmodify\tO\tmodify\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nany\tO\tany\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nstrings B-Data_Type strings O\noperands\tO\toperands\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1678 I-Code_Block Q_1678 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16720329\tO\t16720329\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16720329/\tO\thttps://stackoverflow.com/questions/16720329/\tO\n\t\n\t\nAll\tO\tAll\tO\nthe\tO\tthe\tO\nanswers\tO\tanswers\tO\nsays\tO\tsays\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ninfo\tO\tinfo\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nvariable\tO\tvariable\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\narguement\tO\targuement\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\naccorind\tO\taccorind\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncomment\tO\tcomment\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nparameter\tO\tparameter\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nstring B-Data_Type string O\nlike\tO\tlike\tO\n1+5+ B-Value 1+5+ O\n10 I-Value 10 O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nvarargs B-Data_Type varargs O\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nmust\tO\tmust\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nsingle\tO\tsingle\tO\nstring B-Data_Type string O\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nStringTokenizer B-Function StringTokenizer O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nExample\tO\tExample\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2167 I-Code_Block A_2167 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16720329\tO\t16720329\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16720329/\tO\thttps://stackoverflow.com/questions/16720329/\tO\n\t\n\t\nChange\tO\tChange\tO\nthe\tO\tthe\tO\nsignature\tO\tsignature\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nvarargs B-Data_Type varargs O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2163 I-Code_Block A_2163 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nhandled\tO\thandled\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n's\tO\t's\tO\nbody\tO\tbody\tO\nas\tO\tas\tO\na\tO\ta\tO\nString B-Data_Type String O\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17604481\tO\t17604481\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17604481/\tO\thttps://stackoverflow.com/questions/17604481/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nOpenTok B-Library OpenTok O\ndemo\tO\tdemo\tO\nWebRTC B-Application WebRTC O\napp\tO\tapp\tO\non\tO\ton\tO\nChrome B-Application Chrome O\n-\tO\t-\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nI\tO\tI\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nin\tO\tin\tO\nIE B-Application IE O\n,\tO\t,\tO\nit\tO\tit\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n(\tO\t(\tO\nabout\tO\tabout\tO\npage\tO\tpage\tO\ncompatibility\tO\tcompatibility\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPretty\tO\tPretty\tO\nobvious\tO\tobvious\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nold\tO\told\tO\n(\tO\t(\tO\nFlash-based B-Application Flash-based O\n)\tO\t)\tO\nOpenTok B-Library OpenTok O\nlibrary\tO\tlibrary\tO\non\tO\ton\tO\nIE B-Application IE O\n-\tO\t-\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n\"\tO\t\"\tO\nmanually\tO\tmanually\tO\n\"\tO\t\"\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\nautomatic\tO\tautomatic\tO\nswitching\tO\tswitching\tO\n\"\tO\t\"\tO\nlibrary\tO\tlibrary\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nload\tO\tload\tO\nWebRTC B-Application WebRTC O\n(\tO\t(\tO\n2.0 B-Version 2.0 O\n)\tO\t)\tO\nTB.min.js B-File_Name TB.min.js O\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\nfails\tO\tfails\tO\nfall\tO\tfall\tO\nback\tO\tback\tO\nto\tO\tto\tO\nFlash B-Application Flash O\n(\tO\t(\tO\n0.9 B-Version 0.9 O\n)\tO\t)\tO\nversion\tO\tversion\tO\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\na\tO\ta\tO\nrelated\tO\trelated\tO\nquestion\tO\tquestion\tO\n-\tO\t-\tO\nwill\tO\twill\tO\nall\tO\tall\tO\nthese\tO\tthese\tO\nversions\tO\tversions\tO\ninteroperate\tO\tinteroperate\tO\n?\tO\t?\tO\n\t\nI.e\tO\tI.e\tO\n.\tO\t.\tO\n\t\ncan\tO\tcan\tO\nChromes B-Application Chromes O\n(\tO\t(\tO\nrunning\tO\trunning\tO\n2.0/WebRTC B-Version 2.0/WebRTC O\n)\tO\t)\tO\ntalk\tO\ttalk\tO\nto\tO\tto\tO\nIE B-Application IE O\n(\tO\t(\tO\nrunning\tO\trunning\tO\n0.9/Flash B-Version 0.9/Flash O\n)\tO\t)\tO\nand\tO\tand\tO\ntalk\tO\ttalk\tO\nto\tO\tto\tO\niOS B-Operating_System iOS O\n(\tO\t(\tO\nrunning\tO\trunning\tO\nnative\tO\tnative\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17604481\tO\t17604481\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17604481/\tO\thttps://stackoverflow.com/questions/17604481/\tO\n\t\n\t\nTo\tO\tTo\tO\nhave\tO\thave\tO\nWebRTC B-Application WebRTC O\ncapabilities\tO\tcapabilities\tO\non\tO\ton\tO\nIE B-Application IE O\n,\tO\t,\tO\nusers\tO\tusers\tO\ncould\tO\tcould\tO\ninstall\tO\tinstall\tO\nChrome B-Application Chrome O\nFrame\tO\tFrame\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nIE6+ B-Application IE6+ O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\nvalid\tO\tvalid\tO\noption\tO\toption\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nbeing\tO\tbeing\tO\nactively\tO\tactively\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nGoogle B-Website Google O\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nautomatic\tO\tautomatic\tO\nswitching\tO\tswitching\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nserver\tO\tserver\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nHTTP\tO\tHTTP\tO\nrequests\tO\trequests\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nclient B-Application client O\n's\tO\t's\tO\nbrowser I-Application browser O\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndynamically\tO\tdynamically\tO\nload\tO\tload\tO\neither\tO\teither\tO\nthe\tO\tthe\tO\nWebRTC B-Application WebRTC O\nor\tO\tor\tO\nFlash B-Application Flash O\nlibrary\tO\tlibrary\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\n's\tO\t's\tO\nsupport\tO\tsupport\tO\nfor\tO\tfor\tO\nWebRTC B-Application WebRTC O\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nOpenTok B-Library OpenTok O\nWebRTC B-Application WebRTC O\nlibrary\tO\tlibrary\tO\nsupports\tO\tsupports\tO\n:\tO\t:\tO\n\t\nChrome B-Application Chrome O\n23+ B-Version 23+ O\n\t\nFirefox B-Application Firefox O\n22+ B-Version 22+ O\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nOpenTok B-Library OpenTok O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ninteroperate\tO\tinteroperate\tO\nbetween\tO\tbetween\tO\nFlash B-Application Flash O\nand\tO\tand\tO\nWebRTC B-Application WebRTC O\nclients I-Application clients O\n.\tO\t.\tO\n\t\nWebRTC B-Application WebRTC O\nclients\tO\tclients\tO\ncan\tO\tcan\tO\noperate\tO\toperate\tO\nwith\tO\twith\tO\nother\tO\tother\tO\nWebRTC B-Application WebRTC O\nclients\tO\tclients\tO\n(\tO\t(\tO\nmobile\tO\tmobile\tO\n,\tO\t,\tO\nweb\tO\tweb\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nFlash B-Application Flash O\ncan\tO\tcan\tO\nonly\tO\tonly\tO\noperate\tO\toperate\tO\nwith\tO\twith\tO\nother\tO\tother\tO\nFlash B-Application Flash O\nclients\tO\tclients\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nan\tO\tan\tO\niOS B-Operating_System iOS O\nclient\tO\tclient\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nWebRTC B-Application WebRTC O\nSDK I-Application SDK O\nand\tO\tand\tO\nthe\tO\tthe\tO\nChrome/Firefox B-Application Chrome/Firefox O\nweb\tO\tweb\tO\napp\tO\tapp\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nWebRTC B-Application WebRTC O\nJavascript B-Language Javascript O\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21092905\tO\t21092905\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21092905/\tO\thttps://stackoverflow.com/questions/21092905/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmigrate\tO\tmigrate\tO\na\tO\ta\tO\nmedium-sized\tO\tmedium-sized\tO\nsite\tO\tsite\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nPHP B-Website PHP O\nNuke I-Website Nuke O\n(\tO\t(\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n2000\tO\t2000\tO\nposts\tO\tposts\tO\n)\tO\t)\tO\nto\tO\tto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nWordPress B-Application WordPress O\ninstallation\tO\tinstallation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nproblems\tO\tproblems\tO\nwriting\tO\twriting\tO\nthe\tO\tthe\tO\nredirection\tO\tredirection\tO\nrules\tO\trules\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2247 I-Code_Block Q_2247 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2248 I-Code_Block Q_2248 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nshould\tO\tshould\tO\nbecome\tO\tbecome\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2249 I-Code_Block Q_2249 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\n.htaccess B-File_Type .htaccess O\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nnuke B-Variable nuke O\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nmodules B-Variable modules O\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nNews B-Variable News O\n\"\tO\t\"\tO\nfolder\tO\tfolder\tO\nwith\tO\twith\tO\nnot\tO\tnot\tO\nluck\tO\tluck\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nvery\tO\tvery\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nworking\tO\tworking\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2250 I-Code_Block Q_2250 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21092905\tO\t21092905\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21092905/\tO\thttps://stackoverflow.com/questions/21092905/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nplace\tO\tplace\tO\nthe\tO\tthe\tO\nhtaccess B-File_Type htaccess O\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nnuke B-Variable nuke O\n\"\tO\t\"\tO\nfolder\tO\tfolder\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nomit\tO\tomit\tO\nthe\tO\tthe\tO\nnuke B-Variable nuke B-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\npattern\tO\tpattern\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2829 I-Code_Block A_2829 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nturned\tO\tturned\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nrewrite\tO\trewrite\tO\nengine\tO\tengine\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2830 I-Code_Block A_2830 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30061936\tO\t30061936\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30061936/\tO\thttps://stackoverflow.com/questions/30061936/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nwhich\tO\twhich\tO\nreads\tO\treads\tO\nvalues\tO\tvalues\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nCSV B-File_Type CSV O\nthrough\tO\tthrough\tO\npandas B-Library pandas O\ninto\tO\tinto\tO\na\tO\ta\tO\nDataFrame B-Class DataFrame O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nvalues\tO\tvalues\tO\n,\tO\t,\tO\n' B-Value ' O\nA I-Value A O\n' B-Value ' O\nand\tO\tand\tO\n' B-Value ' O\nB I-Value B O\n' B-Value ' O\n,\tO\t,\tO\nare\tO\tare\tO\ninputs\tO\tinputs\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nequation\tO\tequation\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nequation\tO\tequation\tO\nis\tO\tis\tO\nobtained\tO\tobtained\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nXML B-File_Type XML O\noutput\tO\toutput\tO\nfile\tO\tfile\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nexternal\tO\texternal\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nequation\tO\tequation\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\nresult\tO\tresult\tO\nfor\tO\tfor\tO\n' B-Value ' O\nA I-Value A O\n' B-Value ' O\nand\tO\tand\tO\n' B-Value ' O\nB I-Value B O\n' B-Value ' O\nrow-by-row B-User_Interface_Element row-by-row O\nof\tO\tof\tO\nthe\tO\tthe\tO\nDataFrame B-Class DataFrame O\nand\tO\tand\tO\nplaces\tO\tplaces\tO\nthose\tO\tthose\tO\nresults\tO\tresults\tO\nback\tO\tback\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nDataFrame B-Class DataFrame O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\ndefinition\tO\tdefinition\tO\n,\tO\t,\tO\nexplicitly\tO\texplicitly\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nequation\tO\tequation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndefinition\tO\tdefinition\tO\n,\tO\t,\tO\nand\tO\tand\tO\nreturn\tO\treturn\tO\nthat\tO\tthat\tO\nthat\tO\tthat\tO\nequation\tO\tequation\tO\n,\tO\t,\tO\nthings\tO\tthings\tO\nwork\tO\twork\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3607 I-Code_Block Q_3607 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nreally\tO\treally\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\nbuild\tO\tbuild\tO\n\"\tO\t\"\tO\nthat\tO\tthat\tO\nsame\tO\tsame\tO\nequation\tO\tequation\tO\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nXML B-File_Type XML O\nfile\tO\tfile\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nentering\tO\tentering\tO\nit\tO\tit\tO\nin\tO\tin\tO\nexplicitly\tO\texplicitly\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nbasically\tO\tbasically\tO\npull\tO\tpull\tO\n'\tO\t'\tO\nterms\tO\tterms\tO\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\ncoefficients\tO\tcoefficients\tO\n'\tO\t'\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nxml B-File_Type xml O\nfile\tO\tfile\tO\nand\tO\tand\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\na\tO\ta\tO\nstring B-Data_Type string O\nform\tO\tform\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nequation\tO\tequation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nto\tO\tto\tO\nan\tO\tan\tO\nexecutable\tO\texecutable\tO\nfunction\tO\tfunction\tO\nusing\tO\tusing\tO\nsympy.sympify() B-Function sympy.sympify() O\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3608 I-Code_Block Q_3608 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nthis\tO\tthis\tO\nequation\tO\tequation\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\ndataFrame B-Variable dataFrame O\nthe\tO\tthe\tO\nliteral\tO\tliteral\tO\nequation\tO\tequation\tO\nis\tO\tis\tO\ncopied\tO\tcopied\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\noutPut\tO\toutPut\tO\n\"\tO\t\"\tO\nDF B-Class DF O\nrather\tO\trather\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nrow B-User_Interface_Element row O\nby\tO\tby\tO\nrow B-User_Interface_Element row O\nresult\tO\tresult\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\n' B-Value ' O\nA I-Value A O\n' B-Value ' O\nand\tO\tand\tO\n' B-Value ' O\nB I-Value B O\n' B-Value ' O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nPython B-Language Python O\nsees\tO\tsees\tO\nthese\tO\tthese\tO\ncode\tO\tcode\tO\nexamples\tO\texamples\tO\ndifferently\tO\tdifferently\tO\n,\tO\t,\tO\nnor\tO\tnor\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nachieve\tO\tachieve\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nsome\tO\tsome\tO\nreason\tO\treason\tO\nthe\tO\tthe\tO\nsympify() B-Class sympify() O\nresult\tO\tresult\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexecutable\tO\texecutable\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsame\tO\tsame\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\noccur\tO\toccur\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\neval() B-Class eval() O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30061936\tO\t30061936\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30061936/\tO\thttps://stackoverflow.com/questions/30061936/\tO\n\t\n\t\nElaborating\tO\tElaborating\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nlambdify B-Function lambdify B-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4274 I-Code_Block A_4274 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDepending\tO\tDepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nexpressions\tO\texpressions\tO\nencountered\tO\tencountered\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nxml B-File_Type xml O\nfile\tO\tfile\tO\n,\tO\t,\tO\nsympy B-Library sympy O\nmay\tO\tmay\tO\nbe\tO\tbe\tO\noverkill\tO\toverkill\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\neval B-Function eval B-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4275 I-Code_Block A_4275 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34574024\tO\t34574024\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34574024/\tO\thttps://stackoverflow.com/questions/34574024/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nin\tO\tin\tO\nRails B-Library Rails O\n4 B-Version 4 O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nuse\tO\tuse\tO\nsimple B-HTML_XML_Tag simple O\nform I-HTML_XML_Tag form O\nfor\tO\tfor\tO\nforms\tO\tforms\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nindustry B-Class industry O\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nindustry.rb B-File_Name industry.rb O\nhas\tO\thas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4210 I-Code_Block Q_4210 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nindustry B-Class industry O\ncontroller\tO\tcontroller\tO\nhas\tO\thas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4211 I-Code_Block Q_4211 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nindustry B-Class industry O\nform\tO\tform\tO\nhas\tO\thas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4212 I-Code_Block Q_4212 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nmy\tO\tmy\tO\nform\tO\tform\tO\ninput\tO\tinput\tO\nfor\tO\tfor\tO\n:sector B-Class :sector O\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nindustries B-Class industries O\n(\tO\t(\tO\nby\tO\tby\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\nscope B-Function scope O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4213 I-Code_Block Q_4213 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34574024\tO\t34574024\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34574024/\tO\thttps://stackoverflow.com/questions/34574024/\tO\n\t\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nalphabetically B-Function alphabetically B-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nalphabetical B-Code_Block alphabetical B-Code_Block\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noptions_from_collection_for_select B-Function options_from_collection_for_select O\ndocumentation\tO\tdocumentation\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n3\tO\t3\tO\narguments\tO\targuments\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noptions_from_collection_for_select B-Function options_from_collection_for_select B-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\ncollection B-Variable collection B-Code_Block\n,\tO\t,\tO\nvalue_method B-Variable value_method B-Code_Block\nand\tO\tand\tO\ntext_method B-Variable text_method B-Code_Block\n.\tO\t.\tO\n\t\nChange\tO\tChange\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4919 I-Code_Block A_4919 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33886034\tO\t33886034\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33886034/\tO\thttps://stackoverflow.com/questions/33886034/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nvideo\tO\tvideo\tO\ngame\tO\tgame\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nuniversity\tO\tuniversity\tO\ncourse\tO\tcourse\tO\nusing\tO\tusing\tO\naltera B-Device altera O\nDE0 I-Device DE0 O\nor\tO\tor\tO\nDE2 B-Device DE2 O\nor\tO\tor\tO\nDE1-SoC B-Device DE1-SoC O\nboards\tO\tboards\tO\n,\tO\t,\tO\ni\tO\ti\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nisa\tO\tisa\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nnios B-Device nios O\nII I-Device II O\ncpu I-Device cpu O\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\natomic\tO\tatomic\tO\ntest-and-set\tO\ttest-and-set\tO\ninstruction\tO\tinstruction\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nISA\tO\tISA\tO\n.\tO\t.\tO\n\t\nhow\tO\thow\tO\nwould\tO\twould\tO\ni\tO\ti\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nlock\tO\tlock\tO\nhere\tO\there\tO\n,\tO\t,\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\nenforces\tO\tenforces\tO\nmutual\tO\tmutual\tO\nexclusion\tO\texclusion\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ntiny\tO\ttiny\tO\nperiod\tO\tperiod\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nwe\tO\twe\tO\nare\tO\tare\tO\ngonna\tO\tgonna\tO\nhave\tO\thave\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ngonna\tO\tgonna\tO\nrun\tO\trun\tO\nfrom\tO\tfrom\tO\nmain() B-Function main() B-Code_Block\nand\tO\tand\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nrun\tO\trun\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nInterrupt\tO\tInterrupt\tO\nService\tO\tService\tO\nRoutine\tO\tRoutine\tO\n,\tO\t,\tO\nand\tO\tand\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nput\tO\tput\tO\nlocks\tO\tlocks\tO\non\tO\ton\tO\nsome\tO\tsome\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33886034\tO\t33886034\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33886034/\tO\thttps://stackoverflow.com/questions/33886034/\tO\n\t\n\t\nIt\tO\tIt\tO\nappears\tO\tappears\tO\nthe\tO\tthe\tO\nNios B-Device Nios O\nII I-Device II O\narchitecture\tO\tarchitecture\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\natomic\tO\tatomic\tO\ntest-and-set\tO\ttest-and-set\tO\ninstructions\tO\tinstructions\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nfor\tO\tfor\tO\nsynchronization\tO\tsynchronization\tO\nof\tO\tof\tO\nshared\tO\tshared\tO\nresources\tO\tresources\tO\nbetween\tO\tbetween\tO\nmultiple\tO\tmultiple\tO\nNios B-Device Nios O\nII I-Device II O\nprocessors\tO\tprocessors\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\narchitecture\tO\tarchitecture\tO\nuses\tO\tuses\tO\nan\tO\tan\tO\n\"\tO\t\"\tO\nHardware\tO\tHardware\tO\nMutex\tO\tMutex\tO\nCore\tO\tCore\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nas\tO\tas\tO\na\tO\ta\tO\nshared\tO\tshared\tO\nperipheral\tO\tperipheral\tO\nthat\tO\tthat\tO\nprovides\tO\tprovides\tO\nan\tO\tan\tO\natomic\tO\tatomic\tO\ntest-and-test\tO\ttest-and-test\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nin\tO\tin\tO\nAltera B-Website Altera O\n's\tO\t's\tO\nCreating\tO\tCreating\tO\nMultiprocessor\tO\tMultiprocessor\tO\nNios B-Device Nios O\nII I-Device II O\nSystems\tO\tSystems\tO\nTutorial\tO\tTutorial\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nan\tO\tan\tO\natomic\tO\tatomic\tO\ntest-and-set\tO\ttest-and-set\tO\noperation\tO\toperation\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmake\tO\tmake\tO\nany\tO\tany\tO\nsequence\tO\tsequence\tO\nof\tO\tof\tO\ninstructions\tO\tinstructions\tO\natomic\tO\tatomic\tO\nwith\tO\twith\tO\nrespect\tO\trespect\tO\nto\tO\tto\tO\ninterrupts\tO\tinterrupts\tO\non\tO\ton\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ncore\tO\tcore\tO\nsystem\tO\tsystem\tO\nsimply\tO\tsimply\tO\nby\tO\tby\tO\ndisabling\tO\tdisabling\tO\ninterrupts\tO\tinterrupts\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37025943\tO\t37025943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37025943/\tO\thttps://stackoverflow.com/questions/37025943/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4589 I-Code_Block Q_4589 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\njava B-Library java O\nsdk I-Library sdk O\nin\tO\tin\tO\nmy\tO\tmy\tO\npom.xml B-File_Name pom.xml B-Code_Block\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4590 I-Code_Block Q_4590 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nbuild\tO\tbuild\tO\nmy\tO\tmy\tO\njava B-Language java O\napplication\tO\tapplication\tO\n,\tO\t,\tO\nand\tO\tand\tO\nproduces\tO\tproduces\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4591 I-Code_Block Q_4591 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nClientConfigurationFactory B-Class ClientConfigurationFactory B-Code_Block\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJava B-Library Java O\nSDK I-Library SDK O\nright\tO\tright\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nappreciate\tO\tappreciate\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nguys\tO\tguys\tO\ncan\tO\tcan\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37025943\tO\t37025943\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37025943/\tO\thttps://stackoverflow.com/questions/37025943/\tO\n\t\n\t\ncom.amazonaws.ClientConfigurationFactory B-Class com.amazonaws.ClientConfigurationFactory O\nis\tO\tis\tO\ninside\tO\tinside\tO\naws-java-sdk-core B-Library aws-java-sdk-core O\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\ndependencies\tO\tdependencies\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\npom.xml B-File_Name pom.xml O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23293642\tO\t23293642\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23293642/\tO\thttps://stackoverflow.com/questions/23293642/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthose\tO\tthose\tO\njava B-Language java O\nfiles\tO\tfiles\tO\n:\tO\t:\tO\n\t\n//i2cjni.java B-File_Name //i2cjni.java O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2560 I-Code_Block Q_2560 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2561 I-Code_Block Q_2561 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n//i2c.java B-File_Name //i2c.java O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2562 I-Code_Block Q_2562 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n}\tO\t}\tO\n\t\n//I2CBoard.java B-File_Name //I2CBoard.java O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2563 I-Code_Block Q_2563 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n} B-Code_Block } B-Code_Block\n\t\n-I\tO\t-I\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nnative\tO\tnative\tO\nlibrary\tO\tlibrary\tO\npath\tO\tpath\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2564 I-Code_Block Q_2564 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n-I\tO\t-I\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nthis\tO\tthis\tO\nfolder\tO\tfolder\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2565 I-Code_Block Q_2565 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n-when\tO\t-when\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nthe\tO\tthe\tO\nU2C_GetDeviceCount() B-Function U2C_GetDeviceCount() O\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2566 I-Code_Block Q_2566 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23293642\tO\t23293642\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23293642/\tO\thttps://stackoverflow.com/questions/23293642/\tO\n\t\n\t\nthat\tO\tthat\tO\nlike\tO\tlike\tO\nis\tO\tis\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nmay\tO\tmay\tO\nbe\tO\tbe\tO\nyour\tO\tyour\tO\n.c B-File_Type .c O\nfile\tO\tfile\tO\nfunction\tO\tfunction\tO\nname\tO\tname\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nright\tO\tright\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\npost\tO\tpost\tO\nyour\tO\tyour\tO\n.c B-File_Type .c O\n\t\nfile\tO\tfile\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32308401\tO\t32308401\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32308401/\tO\thttps://stackoverflow.com/questions/32308401/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nCoffeScript B-Language CoffeScript O\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\nangular B-Library angular O\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nstrange\tO\tstrange\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nwebService.coffe B-File_Name webService.coffe O\n(\tO\t(\tO\nsimplificated\tO\tsimplificated\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3913 I-Code_Block Q_3913 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nsimplificated\tO\tsimplificated\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n_Class.logout B-Output_Block _Class.logout B-Code_Block\nis I-Output_Block is I-Code_Block\nnot I-Output_Block not I-Code_Block\na I-Output_Block a I-Code_Block\nfunction I-Output_Block function I-Code_Block\nwhen\tO\twhen\tO\nhandleResult B-Function handleResult B-Code_Block\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n102 B-Error_Name 102 O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n=> B-Code_Block => B-Code_Block\noperator\tO\toperator\tO\nshould\tO\tshould\tO\nresolve\tO\tresolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nJavascript B-Language Javascript O\ncompiled\tO\tcompiled\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nwebService.coffee B-File_Name webService.coffee O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3914 I-Code_Block Q_3914 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22525711\tO\t22525711\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22525711/\tO\thttps://stackoverflow.com/questions/22525711/\tO\n\t\n\t\nhi\tO\thi\tO\ni\tO\ti\tO\nam\tO\tam\tO\nretrieving\tO\tretrieving\tO\ncontacts\tO\tcontacts\tO\nfrom\tO\tfrom\tO\naddress\tO\taddress\tO\nbook\tO\tbook\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nduplicates\tO\tduplicates\tO\ntoo\tO\ttoo\tO\nfor\tO\tfor\tO\neg\tO\teg\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nare\tO\tare\tO\npresent\tO\tpresent\tO\nin\tO\tin\tO\naddress\tO\taddress\tO\nbook\tO\tbook\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nboth\tO\tboth\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nproperty\tO\tproperty\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nWhile\tO\tWhile\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\ndifferent\tO\tdifferent\tO\nfor\tO\tfor\tO\nsame\tO\tsame\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2465 I-Code_Block Q_2465 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthe\tO\tthe\tO\narrayContactsFromAddressbook B-Variable arrayContactsFromAddressbook B-Code_Block\ncontains\tO\tcontains\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\ncontacts\tO\tcontacts\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\naddress\tO\taddress\tO\nbook\tO\tbook\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\ni\tO\ti\tO\nremove\tO\tremove\tO\nduplicates\tO\tduplicates\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nphone\tO\tphone\tO\nnumber\tO\tnumber\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32202478\tO\t32202478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32202478/\tO\thttps://stackoverflow.com/questions/32202478/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nstrange\tO\tstrange\tO\neffect\tO\teffect\tO\nwhen\tO\twhen\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nschemaLocation B-Variable schemaLocation B-Code_Block\nto\tO\tto\tO\nmy\tO\tmy\tO\nxml-file B-File_Type xml-file O\n.\tO\t.\tO\n\t\nProblem\tO\tProblem\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nstill\tO\tstill\tO\nget\tO\tget\tO\ndisplayed\tO\tdisplayed\tO\nand\tO\tand\tO\ntransformed\tO\ttransformed\tO\ncorrectly\tO\tcorrectly\tO\nafter\tO\tafter\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nxsd-File B-File_Type xsd-File O\nto\tO\tto\tO\nthe\tO\tthe\tO\nschemaLocation B-Variable schemaLocation O\n?\tO\t?\tO\n\t\nInfo\tO\tInfo\tO\n:\tO\t:\tO\nAll\tO\tAll\tO\nfiles\tO\tfiles\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfolder\tO\tfolder\tO\n\t\nXML B-File_Type XML O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3899 I-Code_Block Q_3899 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nXSD B-File_Type XSD O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3900 I-Code_Block Q_3900 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nXSLT B-File_Type XSLT O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3901 I-Code_Block Q_3901 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nidea\tO\tidea\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nfiles\tO\tfiles\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32202478\tO\t32202478\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32202478/\tO\thttps://stackoverflow.com/questions/32202478/\tO\n\t\n\t\nThe\tO\tThe\tO\nschemaLocation B-Variable schemaLocation B-Code_Block\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmatter\tO\tmatter\tO\nbut\tO\tbut\tO\nyour\tO\tyour\tO\ninput\tO\tinput\tO\nsample\tO\tsample\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nnamespace\tO\tnamespace\tO\ndeclaration\tO\tdeclaration\tO\nxmlns B-Code_Block xmlns B-Code_Block\n= I-Code_Block = I-Code_Block\n\" I-Code_Block \" I-Code_Block\nhttp://www.w3schools.com I-Code_Block http://www.w3schools.com I-Code_Block\n\" I-Code_Block \" I-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nelement\tO\telement\tO\nwhich\tO\twhich\tO\nputs\tO\tputs\tO\nall\tO\tall\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\nnamespace\tO\tnamespace\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nXSLT B-Language XSLT O\nhowever\tO\thowever\tO\nuses\tO\tuses\tO\npaths\tO\tpaths\tO\nlike\tO\tlike\tO\nschool/personen/person B-File_Name school/personen/person B-Code_Block\nwhich\tO\twhich\tO\n(\tO\t(\tO\nin\tO\tin\tO\nXSLT/XPath B-Language XSLT/XPath O\n1.0 B-Version 1.0 O\n)\tO\t)\tO\nselect\tO\tselect\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nno\tO\tno\tO\nnamespace\tO\tnamespace\tO\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nmove\tO\tmove\tO\nto\tO\tto\tO\nan\tO\tan\tO\nXSLT B-Language XSLT O\n2.0 B-Version 2.0 O\nprocessor\tO\tprocessor\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\ndefine\tO\tdefine\tO\nxpath-default-namespace B-Code_Block xpath-default-namespace B-Code_Block\n= I-Code_Block = I-Code_Block\n\" I-Code_Block \" I-Code_Block\nhttp://www.w3schools.com I-Code_Block http://www.w3schools.com I-Code_Block\n\" I-Code_Block \" I-Code_Block\non\tO\ton\tO\nyour\tO\tyour\tO\nstylesheet\tO\tstylesheet\tO\nor\tO\tor\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nXSLT B-Language XSLT O\n1.0 B-Version 1.0 O\n,\tO\t,\tO\ndeclare\tO\tdeclare\tO\nxmlns:df B-Code_Block xmlns:df B-Code_Block\n= I-Code_Block = I-Code_Block\n\" I-Code_Block \" I-Code_Block\nhttp://www.w3schools.com I-Code_Block http://www.w3schools.com I-Code_Block\n\" I-Code_Block \" I-Code_Block\nin\tO\tin\tO\nyour\tO\tyour\tO\nstylesheet\tO\tstylesheet\tO\nand\tO\tand\tO\nadapt\tO\tadapt\tO\nyour\tO\tyour\tO\npaths\tO\tpaths\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nprefix\tO\tprefix\tO\nas\tO\tas\tO\nin\tO\tin\tO\ndf:school/df:personen/df:person B-Code_Block df:school/df:personen/df:person B-Code_Block\nand\tO\tand\tO\ndf:name B-Code_Block df:name B-Code_Block\nand\tO\tand\tO\nso\tO\tso\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14091079\tO\t14091079\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14091079/\tO\thttps://stackoverflow.com/questions/14091079/\tO\n\t\n\t\nWhere\tO\tWhere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nheader\tO\theader\tO\nand\tO\tand\tO\nbody\tO\tbody\tO\nin\tO\tin\tO\na\tO\ta\tO\nstream\tO\tstream\tO\ndefinition\tO\tdefinition\tO\nis\tO\tis\tO\nmentioned\tO\tmentioned\tO\nin\tO\tin\tO\na\tO\ta\tO\nWSO2 B-Application WSO2 O\nBAM I-Application BAM O\nmediator I-Application mediator O\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nPayload\tO\tPayload\tO\nData\tO\tData\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\ncan\tO\tcan\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\nchanged\tO\tchanged\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14091079\tO\t14091079\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14091079/\tO\thttps://stackoverflow.com/questions/14091079/\tO\n\t\n\t\nIn\tO\tIn\tO\nBAM B-Application BAM O\nmediator I-Application mediator O\n,\tO\t,\tO\nmessage\tO\tmessage\tO\nbody\tO\tbody\tO\nor\tO\tor\tO\nheader\tO\theader\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\ndeclared\tO\tdeclared\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nPayload\tO\tPayload\tO\nData\tO\tData\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41137032\tO\t41137032\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41137032/\tO\thttps://stackoverflow.com/questions/41137032/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nsetting\tO\tsetting\tO\nheader B-User_Interface_Element header O\nfor\tO\tfor\tO\nAngular B-Library Angular O\n2 B-Version 2 O\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5214 I-Code_Block Q_5214 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAs\tO\tAs\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nit\tO\tit\tO\ngives\tO\tgives\tO\nerror\tO\terror\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n41137032\tO\t41137032\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41137032/\tO\thttps://stackoverflow.com/questions/41137032/\tO\n\t\n\t\nWithout\tO\tWithout\tO\nyou\tO\tyou\tO\nposting\tO\tposting\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\njust\tO\tjust\tO\nguess\tO\tguess\tO\nwork\tO\twork\tO\nas\tO\tas\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\ngoing\tO\tgoing\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nprobably\tO\tprobably\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nsuper() B-Function super() B-Code_Block\ncall\tO\tcall\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nconstructor\tO\tconstructor\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\npoint\tO\tpoint\tO\nof\tO\tof\tO\ninterest\tO\tinterest\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nalmost\tO\talmost\tO\nsame\tO\tsame\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nbesides\tO\tbesides\tO\nthe\tO\tthe\tO\ncapital\tO\tcapital\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ncommon\tO\tcommon\tO\npractice\tO\tpractice\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nyour\tO\tyour\tO\nclass\tO\tclass\tO\nname\tO\tname\tO\nin\tO\tin\tO\nPascalCase\tO\tPascalCase\tB-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5890 I-Code_Block A_5890 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAfter\tO\tAfter\tO\nyou\tO\tyou\tO\nposted\tO\tposted\tO\nyour\tO\tyour\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nobvious\tO\tobvious\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nBefore\tO\tBefore\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nheaders\tO\theaders\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nopen B-Function open B-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5891 I-Code_Block A_5891 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAfter\tO\tAfter\tO\nyou\tO\tyou\tO\ncall\tO\tcall\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nset\tO\tset\tO\nyour\tO\tyour\tO\nrequest\tO\trequest\tO\nheaders\tO\theaders\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33830551\tO\t33830551\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33830551/\tO\thttps://stackoverflow.com/questions/33830551/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nprogramming\tO\tprogramming\tO\nand\tO\tand\tO\ntoday\tO\ttoday\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhere\tO\there\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexercise\tO\texercise\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nexercise\tO\texercise\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\nvarious\tO\tvarious\tO\nsmall\tO\tsmall\tO\nparts\tO\tparts\tO\n:\tO\t:\tO\n\t\n1)\tO\t1)\tO\nDefine\tO\tDefine\tO\na\tO\ta\tO\nstruct B-Data_Structure struct O\ncalled\tO\tcalled\tO\nPoint B-Class Point O\nwith\tO\twith\tO\ntwo\tO\ttwo\tO\nx B-Variable x O\nand\tO\tand\tO\ny B-Variable y O\ncoordinates\tO\tcoordinates\tO\n(\tO\t(\tO\ndouble B-Data_Type double O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\n2)\tO\t2)\tO\nPrompt\tO\tPrompt\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nenter\tO\tenter\tO\n7\tO\t7\tO\n(\tO\t(\tO\nx\tO\tx\tO\n,\tO\t,\tO\ny\tO\ty\tO\n)\tO\t)\tO\npairs\tO\tpairs\tO\n.\tO\t.\tO\n\t\n3)\tO\t3)\tO\nAs\tO\tAs\tO\nwe\tO\twe\tO\nread\tO\tread\tO\nthose\tO\tthose\tO\npairs\tO\tpairs\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\na\tO\ta\tO\nvector B-Data_Type vector O\nof\tO\tof\tO\nPoints B-Class Points O\ncalled\tO\tcalled\tO\noriginal_points B-Variable original_points O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nattempt\tO\tattempt\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4129 I-Code_Block Q_4129 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nformat\tO\tformat\tO\nerror\tO\terror\tO\noccurs\tO\toccurs\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrecover\tO\trecover\tO\nby\tO\tby\tO\nskipping\tO\tskipping\tO\nevery\tO\tevery\tO\ncharacter\tO\tcharacter\tO\nuntil\tO\tuntil\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nreaches\tO\treaches\tO\na\tO\ta\tO\n'\tO\t'\tO\n(\tO\t(\tO\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nenter\tO\tenter\tO\na\tO\ta\tO\nwrong\tO\twrong\tO\ninput\tO\tinput\tO\nformat\tO\tformat\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n:\tO\t:\tO\n9 B-Value 9 O\n, I-Value , O\n99 I-Value 99 O\n) I-Value ) O\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\npush_back() B-Function push_back() O\nboth\tO\tboth\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncorrect\tO\tcorrect\tO\nreading\tO\treading\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nand\tO\tand\tO\nalso\tO\talso\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\none\tO\tone\tO\nbefore\tO\tbefore\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\noccurred\tO\toccurred\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ninput\tO\tinput\tO\nsuch\tO\tsuch\tO\ndata\tO\tdata\tO\n:\tO\t:\tO\n\t\n( B-Value ( O\n1 I-Value 1 O\n, I-Value , O\n2) I-Value 2) O\n\t\n9 B-Value 9 O\n, I-Value , O\n99 I-Value 99 O\n) I-Value ) O\n\t\n( B-Value ( O\n5 I-Value 5 O\n, I-Value , O\n6 I-Value 6 O\n) I-Value ) O\n\t\nI\tO\tI\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nthree\tO\tthree\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nvector\tO\tvector\tO\n:\tO\t:\tO\n( B-Value ( O\n1 I-Value 1 O\n, I-Value , O\n2) I-Value 2) O\n,\tO\t,\tO\n( B-Value ( O\n1 I-Value 1 O\n, I-Value , O\n2) I-Value 2) O\nagain\tO\tagain\tO\n,\tO\t,\tO\nand\tO\tand\tO\n( B-Value ( O\n5 I-Value 5 O\n, I-Value , O\n6 I-Value 6 O\n) I-Value ) O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nget\tO\tget\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nafter\tO\tafter\tO\nevery\tO\tevery\tO\ncondition\tO\tcondition\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nP B-Variable P O\nremains\tO\tremains\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nPoint B-Class Point O\nobject\tO\tobject\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\niteration\tO\titeration\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nyou\tO\tyou\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nplease\tO\tplease\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\noccurring\tO\toccurring\tO\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33830551\tO\t33830551\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33830551/\tO\thttps://stackoverflow.com/questions/33830551/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmultiple\tO\tmultiple\tO\nthings\tO\tthings\tO\nhere\tO\there\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nok\tO\tok\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ninitialize\tO\tinitialize\tO\nthe\tO\tthe\tO\nPoint B-Class Point O\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nsome\tO\tsome\tO\nrandom\tO\trandom\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrandom\tO\trandom\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nso\tO\tso\tO\nrandom\tO\trandom\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nthe\tO\tthe\tO\nmemory\tO\tmemory\tO\nallocation\tO\tallocation\tO\nis\tO\tis\tO\nalways\tO\talways\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nloop\tO\tloop\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\noperator>>(...) B-Code_Block operator>>(...) O\nhere\tO\there\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nreturn\tO\treturn\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nchar B-Data_Type char O\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\n' B-Value ' O\n( B-Value ( O\n' B-Value ' O\n\t\nso\tO\tso\tO\nyou\tO\tyou\tO\njump\tO\tjump\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthere\tO\tthere\tO\nwithout\tO\twithout\tO\nsetting\tO\tsetting\tO\np.x B-Variable p.x O\nand\tO\tand\tO\np.y B-Variable p.y O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfunction\tO\tfunction\tO\nskip_to_character(...) B-Function skip_to_character(...) O\nis\tO\tis\tO\nanother\tO\tanother\tO\nthing\tO\tthing\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nok\tO\tok\tO\n,\tO\t,\tO\nbesides\tO\tbesides\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nread\tO\tread\tO\nand\tO\tand\tO\na\tO\ta\tO\nreally\tO\treally\tO\nbad\tO\tbad\tO\nway\tO\tway\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nfor B-Code_Block for O\nloop\tO\tloop\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\na\tO\ta\tO\n' B-Value ' O\nC I-Value C O\n' B-Value ' O\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nenter\tO\tenter\tO\n\" B-Value \" O\n9 I-Value 9 O\n, I-Value , O\n99 I-Value 99 O\n) I-Value ) O\n\" B-Value \" O\nso\tO\tso\tO\ni\tO\ti\tO\nguess\tO\tguess\tO\nhere\tO\there\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n\" B-Value \" O\nNo I-Value No O\ninput I-Value input O\n\" I-Value \" O\noutput\tO\toutput\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nnow\tO\tnow\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nfor B-Code_Block for O\nloop\tO\tloop\tO\nin\tO\tin\tO\nyou\tO\tyou\tO\nmain\tO\tmain\tO\n:\tO\t:\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nhappens\tO\thappens\tO\n:\tO\t:\tO\n\t\nyou\tO\tyou\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nPoint B-Class Point O\np B-Variable p O\nwithout\tO\twithout\tO\ninitializing\tO\tinitializing\tO\nit\tO\tit\tO\n\t\nyour\tO\tyour\tO\nread\tO\tread\tO\ngarbage\tO\tgarbage\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nand\tO\tand\tO\np B-Variable p O\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\n\t\nyou\tO\tyou\tO\nskip\tO\tskip\tO\ngarbage\tO\tgarbage\tO\n\t\nyou\tO\tyou\tO\npush\tO\tpush\tO\nyour\tO\tyour\tO\nuninitialized\tO\tuninitialized\tO\nPoint B-Class Point O\np B-Variable p O\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nvector B-Data_Type vector O\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nbelieve\tO\tbelieve\tO\nme\tO\tme\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\np B-Variable p O\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\ninitialize\tO\tinitialize\tO\nit\tO\tit\tO\nwith\tO\twith\tO\n0 B-Value 0 O\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\nand\tO\tand\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4839 I-Code_Block A_4839 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7410733\tO\t7410733\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7410733/\tO\thttps://stackoverflow.com/questions/7410733/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nprocess\tO\tprocess\tO\nthat\tO\tthat\tO\nloads\tO\tloads\tO\na\tO\ta\tO\ndynamic\tO\tdynamic\tO\nlibrary\tO\tlibrary\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nstarts\tO\tstarts\tO\n(\tO\t(\tO\ndlopen/dlsym B-Function dlopen/dlsym O\netc\tO\tetc\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\n\t\nsend\tO\tsend\tO\nsome\tO\tsome\tO\nmessage\tO\tmessage\tO\nto\tO\tto\tO\nit\tO\tit\tO\nwhile\tO\twhile\tO\nit\tO\tit\tO\n's\tO\t's\tO\nrunning\tO\trunning\tO\nto\tO\tto\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nunload\tO\tunload\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\n.so(dlclose) B-File_Type .so(dlclose) O\nand\tO\tand\tO\nload\tO\tload\tO\n\t\na\tO\ta\tO\nnew\tO\tnew\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nbecomes\tO\tbecomes\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntransfer\tO\ttransfer\tO\na\tO\ta\tO\nnew\tO\tnew\tO\n.so B-File_Type .so O\nusing\tO\tusing\tO\nnc B-Code_Block nc O\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_581 I-Code_Block Q_581 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\ngive\tO\tgive\tO\nnc B-Code_Block nc O\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfilename\tO\tfilename\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nloaded\tO\tloaded\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ngot\tO\tgot\tO\nsegv B-Error_Name segv O\n\t\nimmediately\tO\timmediately\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\ncommand\tO\tcommand\tO\nbeing\tO\tbeing\tO\nexecuted\tO\texecuted\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\ncase\tO\tcase\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\nprocess\tO\tprocess\tO\ncrash\tO\tcrash\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\npackage\tO\tpackage\tO\nthe\tO\tthe\tO\n.so B-File_Type .so O\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nrpm B-Application rpm O\npackage\tO\tpackage\tO\nand\tO\tand\tO\n\t\nthe\tO\tthe\tO\n.so B-File_Type .so O\nfile\tO\tfile\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nrpm B-Application rpm O\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyum B-Application yum O\nupdate\tO\tupdate\tO\nXXX B-Value XXX O\nwill\tO\twill\tO\ncause\tO\tcause\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ncrash\tO\tcrash\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ntold\tO\ttold\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\n.so B-File_Type .so O\nfile\tO\tfile\tO\ninto\tO\tinto\tO\nmemory\tO\tmemory\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nfailed\tO\tfailed\tO\n\t\nto\tO\tto\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nresource\tO\tresource\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nthoughts\tO\tthoughts\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nthankful\tO\tthankful\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37045331\tO\t37045331\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37045331/\tO\thttps://stackoverflow.com/questions/37045331/\tO\n\t\n\t\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nimport\tO\timport\tO\na\tO\ta\tO\nfile\tO\tfile\tO\noutside\tO\toutside\tO\nwebpack B-Application webpack O\nroot B-File_Name root O\ndirectory\tO\tdirectory\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4597 I-Code_Block Q_4597 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4598 I-Code_Block Q_4598 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nin\tO\tin\tO\nmain.js B-File_Name main.js B-Code_Block\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimport B-Code_Block import B-Code_Block\nShared I-Code_Block Shared I-Code_Block\nfrom I-Code_Block from I-Code_Block\n' I-Code_Block ' I-Code_Block\n../shared/index I-Code_Block ../shared/index I-Code_Block\n' I-Code_Block ' I-Code_Block\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthis\tO\tthis\tO\nshared\tO\tshared\tO\ndirectory\tO\tdirectory\tO\nin\tO\tin\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nloaders\tO\tloaders\tO\nbut\tO\tbut\tO\nstill\tO\tstill\tO\nno\tO\tno\tO\nluck\tO\tluck\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4599 I-Code_Block Q_4599 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37045331\tO\t37045331\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37045331/\tO\thttps://stackoverflow.com/questions/37045331/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nthe\tO\tthe\tO\nplugin\tO\tplugin\tO\n\"\tO\t\"\tO\ntransform-runtime B-Application transform-runtime O\n\"\tO\t\"\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5494 I-Code_Block A_5494 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27025944\tO\t27025944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27025944/\tO\thttps://stackoverflow.com/questions/27025944/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n14\tO\t14\tO\ndays\tO\tdays\tO\naverage\tO\taverage\tO\nCol B-Variable Col O\n1 I-Variable 1 O\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nCol B-Variable Col O\n2 I-Variable 2 O\nof\tO\tof\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntable B-Data_Structure table O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nCol B-Variable Col O\n2 I-Variable 2 O\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\n18.2 B-Value 18.2 O\n% I-Value % O\naverage\tO\taverage\tO\npercentage\tO\tpercentage\tO\nwith\tO\twith\tO\nCol B-Variable Col O\n1 I-Variable 1 O\ndata\tO\tdata\tO\nbetween\tO\tbetween\tO\n10/29 B-Value 10/29 O\nand\tO\tand\tO\n11/15 B-Value 11/15 O\ndate\tO\tdate\tO\nrange\tO\trange\tO\non\tO\ton\tO\ncolumn B-Data_Structure column O\ntoday B-Value today O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nso\tO\tso\tO\nconfused\tO\tconfused\tO\nas\tO\tas\tO\nto\tO\tto\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ngroup\tO\tgroup\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nan\tO\tan\tO\nupdate B-Code_Block update O\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nAnyone\tO\tAnyone\tO\nhas\tO\thas\tO\na\tO\ta\tO\nclue\tO\tclue\tO\n?\tO\t?\tO\n\t\nTABLE B-Variable TABLE O\n1 I-Variable 1 O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3096 I-Code_Block Q_3096 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27025944\tO\t27025944\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27025944/\tO\thttps://stackoverflow.com/questions/27025944/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nrecommended\tO\trecommended\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\naverage\tO\taverage\tO\nvalue\tO\tvalue\tO\nas\tO\tas\tO\ndecimal B-Data_Type decimal O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nvarchar B-Data_Type varchar O\n,\tO\t,\tO\nas\tO\tas\tO\n% B-Code_Block % O\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nadded\tO\tadded\tO\nin\tO\tin\tO\npresentation\tO\tpresentation\tO\nlayer\tO\tlayer\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nthe\tO\tthe\tO\ncalculation\tO\tcalculation\tO\n,\tO\t,\tO\nsubstring\tO\tsubstring\tO\nand\tO\tand\tO\ncast\tO\tcast\tO\nwas\tO\twas\tO\nneeded\tO\tneeded\tO\nas\tO\tas\tO\naverage\tO\taverage\tO\ncolumn B-Data_Structure column O\nis\tO\tis\tO\nvarchar B-Data_Type varchar O\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nremoved\tO\tremoved\tO\nsubstring\tO\tsubstring\tO\nlogic\tO\tlogic\tO\n,\tO\t,\tO\nas\tO\tas\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nfloat B-Data_Type float O\ncolumns B-Data_Structure columns O\n,\tO\t,\tO\nas\tO\tas\tO\nper\tO\tper\tO\nOP\tO\tOP\tO\ncomments\tO\tcomments\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3736 I-Code_Block A_3736 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nAs\tO\tAs\tO\nthis\tO\tthis\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\ndate B-Data_Type date O\n,\tO\t,\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nusing\tO\tusing\tO\ncursor B-Code_Block cursor O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3737 I-Code_Block A_3737 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32387357\tO\t32387357\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32387357/\tO\thttps://stackoverflow.com/questions/32387357/\tO\n\t\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nmade\tO\tmade\tO\nSwipe\tO\tSwipe\tO\naction\tO\taction\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nbrowsed\tO\tbrowsed\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfew\tO\tfew\tO\ndays\tO\tdays\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nmany\tO\tmany\tO\nsimilar\tO\tsimilar\tO\nquestions\tO\tquestions\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nworking\tO\tworking\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nTouchAction B-Class TouchAction O\nclass\tO\tclass\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nAppium B-Application Appium O\nVersion B-Version Version O\n1.4.13 I-Version 1.4.13 O\n(\tO\t(\tO\nDraco\tO\tDraco\tO\n)\tO\t)\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nJava B-Language Java O\n,\tO\t,\tO\nTestNG B-Library TestNG O\nframework\tO\tframework\tO\n.\tO\t.\tO\n\t\nbtw\tO\tbtw\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nscrolling\tO\tscrolling\tO\nwork\tO\twork\tO\nusing\tO\tusing\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nlogic\tO\tlogic\tO\nas\tO\tas\tO\na\tO\ta\tO\npull\tO\tpull\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\n)\tO\t)\tO\nhere\tO\there\tO\nis\tO\tis\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3924 I-Code_Block Q_3924 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32387357\tO\t32387357\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32387357/\tO\thttps://stackoverflow.com/questions/32387357/\tO\n\t\n\t\n//Method\tO\t//Method\tO\nnames\tO\tnames\tO\nexplain\tO\texplain\tO\nthemselves\tO\tthemselves\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4632 I-Code_Block A_4632 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32387357\tO\t32387357\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32387357/\tO\thttps://stackoverflow.com/questions/32387357/\tO\n\t\n\t\ndriver.swipe(startingXCoordinate,StartingYCoordinate,EndXCoordinate,EndYCoordinate,timeForSwipe) B-Function driver.swipe(startingXCoordinate,StartingYCoordinate,EndXCoordinate,EndYCoordinate,timeForSwipe) O\n; I-Function ; O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4782 I-Code_Block A_4782 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhere\tO\there\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nswipe\tO\tswipe\tO\nfrom\tO\tfrom\tO\n100th\tO\t100th\tO\nX B-Variable X O\ncoordinate\tO\tcoordinate\tO\nto\tO\tto\tO\n450th\tO\t450th\tO\nX B-Variable X O\ncoordinate.that\tO\tcoordinate.that\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nY B-Variable Y O\ncoordinates\tO\tcoordinates\tO\nare\tO\tare\tO\nsame\tO\tsame\tO\nfor\tO\tfor\tO\nstarting\tO\tstarting\tO\nand\tO\tand\tO\nending\tO\tending\tO\npoints\tO\tpoints\tO\n(\tO\t(\tO\n200\tO\t200\tO\nand\tO\tand\tO\n200\tO\t200\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlast\tO\tlast\tO\nparameter\tO\tparameter\tO\n2\tO\t2\tO\nindicates\tO\tindicates\tO\n,\tO\t,\tO\nswipe\tO\tswipe\tO\naction\tO\taction\tO\nwill\tO\twill\tO\nperforms\tO\tperforms\tO\n2\tO\t2\tO\nseconds\tO\tseconds\tO\n.\tO\t.\tO\n\t\nActually\tO\tActually\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nmention\tO\tmention\tO\n2000\tO\t2000\tO\nmilliseconds\tO\tmilliseconds\tO\nfor\tO\tfor\tO\n2\tO\t2\tO\nseconds\tO\tseconds\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12498963\tO\t12498963\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12498963/\tO\thttps://stackoverflow.com/questions/12498963/\tO\n\t\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nimage B-User_Interface_Element image O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nhttp://imgur.com/qBGvP\tO\thttp://imgur.com/qBGvP\tO\n\t\nIt\tO\tIt\tO\nalways\tO\talways\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nthe\tO\tthe\tO\nnumbers\tO\tnumbers\tO\nmight\tO\tmight\tO\ndiffer\tO\tdiffer\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\ngif B-File_Type gif O\n,\tO\t,\tO\nthe\tO\tthe\tO\nbackground B-User_Interface_Element background O\nis\tO\tis\tO\ntransparent\tO\ttransparent\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nnumbers\tO\tnumbers\tO\nwhite\tO\twhite\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nway\tO\tway\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nit\tO\tit\tO\nto\tO\tto\tO\nnumbers\tO\tnumbers\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nin\tO\tin\tO\na\tO\ta\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12498963\tO\t12498963\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12498963/\tO\thttps://stackoverflow.com/questions/12498963/\tO\n\t\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nfont\tO\tfont\tO\nis\tO\tis\tO\nmonospace\tO\tmonospace\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nis\tO\tis\tO\nconstant\tO\tconstant\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ntrivial\tO\ttrivial\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\ndown\tO\tdown\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\ninto\tO\tinto\tO\nindividual\tO\tindividual\tO\ndigits\tO\tdigits\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\noutput\tO\toutput\tO\neach\tO\teach\tO\nimage B-User_Interface_Element image O\nto\tO\tto\tO\nsome\tO\tsome\tO\nformat\tO\tformat\tO\n(\tO\t(\tO\nPNG B-File_Type PNG O\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nbest\tO\tbest\tO\n)\tO\t)\tO\nand\tO\tand\tO\ncompare\tO\tcompare\tO\nthe\tO\tthe\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nbest\tO\tbest\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nscript\tO\tscript\tO\nsave\tO\tsave\tO\nknown\tO\tknown\tO\ndigits\tO\tdigits\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ncompare\tO\tcompare\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\ncase\tO\tcase\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\npixel-for-pixel\tO\tpixel-for-pixel\tO\ncomparison\tO\tcomparison\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nthat\tO\tthat\tO\nbig\tO\tbig\tO\nof\tO\tof\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\non\tO\ton\tO\nsuch\tO\tsuch\tO\nsmall\tO\tsmall\tO\nimages B-User_Interface_Element images O\n.\tO\t.\tO\n\t\nEssentially\tO\tEssentially\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nmaking\tO\tmaking\tO\nan\tO\tan\tO\nextremely\tO\textremely\tO\nprimitive\tO\tprimitive\tO\nOCR\tO\tOCR\tO\nby\tO\tby\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nalong\tO\talong\tO\nthe\tO\tthe\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\n\"\tO\t\"\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\ndigits\tO\tdigits\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwhat\tO\twhat\tO\nnumber\tO\tnumber\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\"\tO\t\"\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17018962\tO\t17018962\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17018962/\tO\thttps://stackoverflow.com/questions/17018962/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsituation\tO\tsituation\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\ntables B-Data_Structure tables O\n'\tO\t'\tO\nusers B-Variable users O\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\nroles B-Variable roles O\n'\tO\t'\tO\ntable B-Data_Structure table O\nwhere\tO\twhere\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\neach\tO\teach\tO\nother\tO\tother\tO\nby\tO\tby\tO\nmany\tO\tmany\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\nrelationship\tO\trelationship\tO\n,\tO\t,\tO\nmany\tO\tmany\tO\nto\tO\tto\tO\nmany\tO\tmany\tO\nrelationship\tO\trelationship\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n3rd\tO\t3rd\tO\ntable B-Data_Structure table O\ncalled\tO\tcalled\tO\n'\tO\t'\tO\nUserRoles B-Variable UserRoles O\n'\tO\t'\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\ndistinct\tO\tdistinct\tO\nusers\tO\tusers\tO\nbut\tO\tbut\tO\nshow\tO\tshow\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nroles\tO\troles\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\nuser\tO\tuser\tO\nin\tO\tin\tO\none\tO\tone\tO\nsingle\tO\tsingle\tO\nrow B-Data_Structure row O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n3\tO\t3\tO\ntables B-Data_Structure tables O\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1731 I-Code_Block Q_1731 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nso\tO\tso\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\ndisplays\tO\tdisplays\tO\na\tO\ta\tO\nrow B-Data_Structure row O\nas\tO\tas\tO\nbelow\tO\tbelow\tO\nwith\tO\twith\tO\nroles\tO\troles\tO\nseparated\tO\tseparated\tO\nwith\tO\twith\tO\nsemicolons\tO\tsemicolons\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\nusers\tO\tusers\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1732 I-Code_Block Q_1732 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17018962\tO\t17018962\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17018962/\tO\thttps://stackoverflow.com/questions/17018962/\tO\n\t\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nto\tO\tto\tO\nbelieve\tO\tbelieve\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nexactly\tO\texactly\tO\nand\tO\tand\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nMySQL B-Application MySQL O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2229 I-Code_Block A_2229 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18395882\tO\t18395882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18395882/\tO\thttps://stackoverflow.com/questions/18395882/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmy\tO\tmy\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\nasp.net B-Library asp.net O\neverything\tO\teverything\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nwell\tO\twell\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\npublish\tO\tpublish\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\ncomputer B-Device computer O\nto\tO\tto\tO\nlocalhost\tO\tlocalhost\tO\nit\tO\tit\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1894 I-Code_Block Q_1894 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nalso\tO\talso\tO\nUncaught B-Output_Block Uncaught B-Code_Block\nReferenceError I-Output_Block ReferenceError I-Code_Block\n: I-Output_Block : I-Code_Block\nWebForm_FireDefaultButton I-Output_Block WebForm_FireDefaultButton I-Code_Block\nis I-Output_Block is I-Code_Block\nnot I-Output_Block not I-Code_Block\ndefined I-Output_Block defined I-Code_Block\n\t\nin\tO\tin\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nbehind\tO\tbehind\tO\ni\tO\ti\tO\nhave\tO\thave\tO\ntextbox1.Focus() B-Function textbox1.Focus() B-Code_Block\n\t\nso\tO\tso\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18395882\tO\t18395882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18395882/\tO\thttps://stackoverflow.com/questions/18395882/\tO\n\t\n\t\nThis\tO\tThis\tO\nhappens\tO\thappens\tO\nalso\tO\talso\tO\nwhen\tO\twhen\tO\nwebresource.axd B-File_Name webresource.axd O\nfile\tO\tfile\tO\nis\tO\tis\tO\ninaccessible\tO\tinaccessible\tO\n.\tO\t.\tO\n\t\nSometimes\tO\tSometimes\tO\nFirewall B-Application Firewall O\npolicy\tO\tpolicy\tO\nof\tO\tof\tO\nWeb B-Application Web O\nServer I-Application Server O\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nensure\tO\tensure\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\naccessible\tO\taccessible\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\naccessible\tO\taccessible\tO\nthen\tO\tthen\tO\nlook\tO\tlook\tO\nsolutions\tO\tsolutions\tO\nprovided\tO\tprovided\tO\nin\tO\tin\tO\nother\tO\tother\tO\nanswers\tO\tanswers\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18395882\tO\t18395882\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18395882/\tO\thttps://stackoverflow.com/questions/18395882/\tO\n\t\n\t\nTry\tO\tTry\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\noff\tO\toff\tO\nthe\tO\tthe\tO\nISAPI B-File_Name ISAPI O\nfilters I-File_Name filters O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11567285\tO\t11567285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11567285/\tO\thttps://stackoverflow.com/questions/11567285/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\ntwo\tO\ttwo\tO\nbranches\tO\tbranches\tO\ntest B-Code_Block test O\nand\tO\tand\tO\nmain B-Code_Block main O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nbeing\tO\tbeing\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmain B-Code_Block main O\nbranch\tO\tbranch\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1075 I-Code_Block Q_1075 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\neverything\tO\teverything\tO\nwent\tO\twent\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nwere\tO\twere\tO\nmerged\tO\tmerged\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nto\tO\tto\tO\npush B-Code_Block push O\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nremote\tO\tremote\tO\nmain B-Code_Block main O\n,\tO\t,\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1076 I-Code_Block Q_1076 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\ndid\tO\tdid\tO\nnothing\tO\tnothing\tO\n,\tO\t,\tO\nit\tO\tit\tO\nsaid\tO\tsaid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1077 I-Code_Block Q_1077 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nshowing\tO\tshowing\tO\nzero\tO\tzero\tO\nabove\tO\tabove\tO\nas\tO\tas\tO\nTotal\tO\tTotal\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\npush B-Code_Block push O\ndid\tO\tdid\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\npush\tO\tpush\tO\nmy\tO\tmy\tO\nmain B-Code_Block main O\nbranch\tO\tbranch\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11567285\tO\t11567285\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11567285/\tO\thttps://stackoverflow.com/questions/11567285/\tO\n\t\n\t\nThat\tO\tThat\tO\njust\tO\tjust\tO\nmeans\tO\tmeans\tO\ngit B-Application git O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwrite\tO\twrite\tO\nany\tO\tany\tO\nobjects\tO\tobjects\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nhappens\tO\thappens\tO\nwhen\tO\twhen\tO\nall\tO\tall\tO\nobjects\tO\tobjects\tO\nare\tO\tare\tO\nalready\tO\talready\tO\non\tO\ton\tO\nremote\tO\tremote\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nmerge\tO\tmerge\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nmove\tO\tmove\tO\nlabel\tO\tlabel\tO\n'\tO\t'\tO\nmain B-Code_Block main O\n'\tO\t'\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\ncommit B-Code_Block commit O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nmade\tO\tmade\tO\na\tO\ta\tO\nquick\tO\tquick\tO\ntest\tO\ttest\tO\nto\tO\tto\tO\nprove\tO\tprove\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1498 I-Code_Block A_1498 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20985289\tO\t20985289\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20985289/\tO\thttps://stackoverflow.com/questions/20985289/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nimplemented\tO\timplemented\tO\nthe\tO\tthe\tO\njQuery B-Library jQuery O\nUI B-Class UI O\nMenu I-Class Menu O\non\tO\ton\tO\nthis\tO\tthis\tO\npage\tO\tpage\tO\n:\tO\t:\tO\nhttp://dormfair.com/about.php\tO\thttp://dormfair.com/about.php\tO\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nborder B-User_Interface_Element border O\ncolor\tO\tcolor\tO\neverywhere\tO\teverywhere\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nwebsite\tO\twebsite\tO\nis\tO\tis\tO\nlight\tO\tlight\tO\nblue\tO\tblue\tO\n(\tO\t(\tO\n#B7DDF2\tO\t#B7DDF2\tO\n)\tO\t)\tO\n\t\nBUT\tO\tBUT\tO\nthe\tO\tthe\tO\nborder B-User_Interface_Element border O\ncolor\tO\tcolor\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\njQuery B-Library jQuery O\nUI B-Class UI O\nmenu I-Class menu O\nis\tO\tis\tO\ngrey B-Value grey O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthat\tO\tthat\tO\ngrey\tO\tgrey\tO\nto\tO\tto\tO\ncolor\tO\tcolor\tO\nto\tO\tto\tO\n#B7DDF2\tO\t#B7DDF2\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nlong\tO\tlong\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nno\tO\tno\tO\navail\tO\tavail\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nsearched\tO\tsearched\tO\nthe\tO\tthe\tO\nweb\tO\tweb\tO\nand\tO\tand\tO\nStackOverflow B-Website StackOverflow O\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nsomeone\tO\tsomeone\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2233 I-Code_Block Q_2233 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20985289\tO\t20985289\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20985289/\tO\thttps://stackoverflow.com/questions/20985289/\tO\n\t\n\t\nYour\tO\tYour\tO\nmenu B-User_Interface_Element menu O\n's\tO\t's\tO\nborder B-User_Interface_Element border O\ncolor\tO\tcolor\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\n.ui-widget-content B-Class .ui-widget-content O\nclass\tO\tclass\tO\non\tO\ton\tO\nline\tO\tline\tO\n800\tO\t800\tO\nin\tO\tin\tO\njquery-ui.css B-File_Name jquery-ui.css O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nmodify\tO\tmodify\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20985289\tO\t20985289\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20985289/\tO\thttps://stackoverflow.com/questions/20985289/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nborder B-Code_Block border B-Code_Block\n: I-Code_Block : I-Code_Block\n1px I-Code_Block 1px I-Code_Block\nsolid I-Code_Block solid I-Code_Block\n#B7DDF2 I-Code_Block #B7DDF2 I-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nCSS B-Language CSS O\nof\tO\tof\tO\nnav B-Code_Block nav B-Code_Block\n(\tO\t(\tO\nor\tO\tor\tO\n.ui-menu B-Code_Block .ui-menu O\nui-widget I-Code_Block ui-widget O\nui-widget-content I-Code_Block ui-widget-content O\nui-corner-all I-Code_Block ui-corner-all O\n)\tO\t)\tO\n:\tO\t:\tO\n\t\n(\tO\t(\tO\nCSS B-Language CSS O\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2811 I-Code_Block A_2811 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2812 I-Code_Block A_2812 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13659160\tO\t13659160\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13659160/\tO\thttps://stackoverflow.com/questions/13659160/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndate\tO\tdate\tO\ninput\tO\tinput\tO\nbox B-User_Interface_Element box O\nwith\tO\twith\tO\na\tO\ta\tO\npop-up B-User_Interface_Element pop-up O\ncalendar I-User_Interface_Element calendar O\ndate I-User_Interface_Element date O\nselector I-User_Interface_Element selector O\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nbox B-User_Interface_Element box O\nthe\tO\tthe\tO\npopup B-User_Interface_Element popup O\ncalendar I-User_Interface_Element calendar O\nappears\tO\tappears\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\neither\tO\teither\tO\n\t\nSelect\tO\tSelect\tO\na\tO\ta\tO\ndate\tO\tdate\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndate\tO\tdate\tO\nappears\tO\tappears\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nbox B-User_Interface_Element box O\nand\tO\tand\tO\nthe\tO\tthe\tO\ncalendar B-User_Interface_Element calendar O\nappears\tO\tappears\tO\n\t\nClick\tO\tClick\tO\noutside\tO\toutside\tO\nthe\tO\tthe\tO\ncalendar B-User_Interface_Element calendar O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncalendar B-User_Interface_Element calendar O\ndisappears\tO\tdisappears\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nvia\tO\tvia\tO\na\tO\ta\tO\nmouseup B-Class mouseup O\nevent I-Class event O\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nwhat\tO\twhat\tO\nwas\tO\twas\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nType\tO\tType\tO\na\tO\ta\tO\ndate\tO\tdate\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nbox B-User_Interface_Element box O\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n:\tO\t:\tO\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\na\tO\ta\tO\ndate\tO\tdate\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nbox B-User_Interface_Element box O\nand\tO\tand\tO\ntab B-User_Interface_Element tab O\naway\tO\taway\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ncalendar B-User_Interface_Element calendar O\nto\tO\tto\tO\ndisappear\tO\tdisappear\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nan\tO\tan\tO\nonBlur B-Class onBlur O\nevent I-Class event O\nto\tO\tto\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nbox B-User_Interface_Element box O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nevent B-Class event O\nmade\tO\tmade\tO\nthe\tO\tthe\tO\ncalendar B-User_Interface_Element calendar O\ngo\tO\tgo\tO\naway\tO\taway\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncalendar B-User_Interface_Element calendar O\ndisappears\tO\tdisappears\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\ncalendar B-User_Interface_Element calendar O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nsome\tO\tsome\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ndate\tO\tdate\tO\nbox B-User_Interface_Element box O\nonBlur B-Class onBlur O\nevent I-Class event O\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\ncalendar B-User_Interface_Element calendar O\nwas\tO\twas\tO\nclicked/has\tO\tclicked/has\tO\nfocus\tO\tfocus\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nsomething\tO\tsomething\tO\nelse\tO\telse\tO\naltogether\tO\taltogether\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nwhether\tO\twhether\tO\nthe\tO\tthe\tO\ncalendar B-User_Interface_Element calendar O\nhas\tO\thas\tO\nfocus\tO\tfocus\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\njquery B-Library jquery O\nI\tO\tI\tO\ndid\tO\tdid\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1304 I-Code_Block Q_1304 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\ndid\tO\tdid\tO\nnothing\tO\tnothing\tO\nuseful\tO\tuseful\tO\n.\tO\t.\tO\n\t\nNormally\tO\tNormally\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nonCLick B-Class onCLick O\nevent I-Class event O\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nwas\tO\twas\tO\nclicked\tO\tclicked\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nneed\tO\tneed\tO\nan\tO\tan\tO\nOnClick B-Class OnClick O\nand\tO\tand\tO\nan\tO\tan\tO\nOnBlur B-Class OnBlur O\nevent I-Class event O\nand\tO\tand\tO\nthe\tO\tthe\tO\nOnBlur B-Class OnBlur O\nevent I-Class event O\nwould\tO\twould\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nonClick B-Class onClick O\nevent I-Class event O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\nwhat\tO\twhat\tO\ngets\tO\tgets\tO\ncalled\tO\tcalled\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nChrome B-Application Chrome O\nand\tO\tand\tO\nIE B-Application IE O\nJS B-Language JS O\ndebuggers\tO\tdebuggers\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nadding\tO\tadding\tO\nbreakpoints\tO\tbreakpoints\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nwhat\tO\twhat\tO\nfunctions\tO\tfunctions\tO\nare\tO\tare\tO\ncalled\tO\tcalled\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmakes\tO\tmakes\tO\nno\tO\tno\tO\nsense\tO\tsense\tO\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\na\tO\ta\tO\nbreakpoint\tO\tbreakpoint\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nonBlur B-Class onBlur O\nevent I-Class event O\n:\tO\t:\tO\nit\tO\tit\tO\nstops\tO\tstops\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\na\tO\ta\tO\nbreakpoint\tO\tbreakpoint\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmouseUp B-Class mouseUp O\nevent I-Class event O\n:\tO\t:\tO\nit\tO\tit\tO\nstops\tO\tstops\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAdding\tO\tAdding\tO\na\tO\ta\tO\nbreakpoint\tO\tbreakpoint\tO\nin\tO\tin\tO\nboth\tO\tboth\tO\nevents B-Class events O\n:\tO\t:\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nstops\tO\tstops\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nonBlur B-Class onBlur O\nevent I-Class event O\neven\tO\teven\tO\nthough\tO\tthough\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\ncontinue\tO\tcontinue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\nthe\tO\tthe\tO\nmouseUp B-Class mouseUp O\nevent I-Class event O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13659160\tO\t13659160\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13659160/\tO\thttps://stackoverflow.com/questions/13659160/\tO\n\t\n\t\nhttp://jsfiddle.net/alaa13212/Gs5Y2/\tO\thttp://jsfiddle.net/alaa13212/Gs5Y2/\tO\n\t\nto\tO\tto\tO\nuse\tO\tuse\tO\nblur\tO\tblur\tB-Code_Block\nfocusout B-Function focusout O\nin\tO\tin\tO\njQuery B-Library jQuery O\n.\tO\t.\tO\n\t\nmust\tO\tmust\tO\nfocus\tO\tfocus\tO\non\tO\ton\tO\nelement\tO\telement\tO\n(\tO\t(\tO\nuse\tO\tuse\tO\ntabindex B-Variable tabindex B-Code_Block\nattribute\tO\tattribute\tO\nfor\tO\tfor\tO\nfocusable\tO\tfocusable\tO\n)\tO\t)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15545847\tO\t15545847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15545847/\tO\thttps://stackoverflow.com/questions/15545847/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\ndivs B-HTML_XML_Tag divs O\nin\tO\tin\tO\nmy\tO\tmy\tO\nHTML B-Language HTML O\none\tO\tone\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\nembedded\tO\tembedded\tO\nvideo B-User_Interface_Element video O\nfrom\tO\tfrom\tO\nyoutube B-Website youtube O\nand\tO\tand\tO\nother\tO\tother\tO\nwill\tO\twill\tO\nshow\tO\tshow\tO\ncontact-us\tO\tcontact-us\tO\ninput\tO\tinput\tO\nform B-User_Interface_Element form O\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nalso\tO\talso\tO\na\tO\ta\tO\nlink\tO\tlink\tO\n\"\tO\t\"\tO\nContact\tO\tContact\tO\nUs\tO\tUs\tO\n\"\tO\t\"\tO\nabove\tO\tabove\tO\nthe\tO\tthe\tO\nvideo B-User_Interface_Element video O\n.\tO\t.\tO\n\t\nInitially\tO\tInitially\tO\nwhen\tO\twhen\tO\npage\tO\tpage\tO\nis\tO\tis\tO\nloaded\tO\tloaded\tO\nvideo B-User_Interface_Element video O\nis\tO\tis\tO\ndisplayed\tO\tdisplayed\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nuser\tO\tuser\tO\nclicks\tO\tclicks\tO\non\tO\ton\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nContact\tO\tContact\tO\nUs\tO\tUs\tO\n\"\tO\t\"\tO\nlink B-User_Interface_Element link O\nthe\tO\tthe\tO\nvideo B-User_Interface_Element video O\nshould\tO\tshould\tO\nget\tO\tget\tO\nhidden\tO\thidden\tO\nand\tO\tand\tO\ncontact-us\tO\tcontact-us\tO\ninput\tO\tinput\tO\nform B-User_Interface_Element form O\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ndisplayed\tO\tdisplayed\tO\nin\tO\tin\tO\nits\tO\tits\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\njQuery B-Library jQuery O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15545847\tO\t15545847\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15545847/\tO\thttps://stackoverflow.com/questions/15545847/\tO\n\t\n\t\nUse\tO\tUse\tO\njQuery B-Library jQuery O\n's\tO\t's\tO\ntoggle() B-Function toggle() B-Code_Block\nor\tO\tor\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nmethods\tO\tmethods\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nand\tO\tand\tO\nhide\tO\thide\tO\nyour\tO\tyour\tO\n< B-HTML_XML_Tag < B-Code_Block\ndiv>s I-HTML_XML_Tag div>s I-Code_Block\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexample\tO\texample\tO\n(\tO\t(\tO\nhttp://jsfiddle.net/8wbXV/\tO\thttp://jsfiddle.net/8wbXV/\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2001 I-Code_Block A_2001 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nselector\tO\tselector\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\n$('a') B-Code_Block $('a') B-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nnormally\tO\tnormally\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nhere\tO\there\tO\njust\tO\tjust\tO\nfor\tO\tfor\tO\nillustration\tO\tillustration\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\njQuery B-Library jQuery O\nAPI I-Library API O\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11149773\tO\t11149773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11149773/\tO\thttps://stackoverflow.com/questions/11149773/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\njQuery B-Library jQuery O\nrich B-Application rich O\ntext I-Application text O\neditor I-Application editor O\non\tO\ton\tO\nmy\tO\tmy\tO\nwebsite\tO\twebsite\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nUeditor B-Application Ueditor O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nused\tO\tused\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nexactly\tO\texactly\tO\nas\tO\tas\tO\nshown\tO\tshown\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndemo\tO\tdemo\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nit\tO\tit\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nProblem\tO\tProblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\ntype\tO\ttype\tO\nmultiple\tO\tmultiple\tO\nparagraphs\tO\tparagraphs\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nform\tO\tform\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nflip\tO\tflip\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n\t\nI\tO\tI\tO\ntype\tO\ttype\tO\n-->\tO\t-->\tO\n\t\nLine\tO\tLine\tO\n1\tO\t1\tO\n\t\nLine\tO\tLine\tO\n2\tO\t2\tO\n\t\nOn\tO\tOn\tO\nsubmit\tO\tsubmit\tO\n-->\tO\t-->\tO\n\t\nLine\tO\tLine\tO\n2\tO\t2\tO\n\t\nLine\tO\tLine\tO\n1\tO\t1\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\nis\tO\tis\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanybody\tO\tanybody\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\njQuery B-Library jQuery O\ntext B-Application text O\neditor I-Application editor O\nthat\tO\tthat\tO\nI\tO\tI\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\npeople\tO\tpeople\tO\nthat\tO\tthat\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\ndecided\tO\tdecided\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nwith\tO\twith\tO\njWysiwyg B-Application jWysiwyg O\nText I-Application Text O\neditor I-Application editor O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nplayed\tO\tplayed\tO\naround\tO\taround\tO\nwith\tO\twith\tO\nprobably\tO\tprobably\tO\nevery\tO\tevery\tO\nsingle\tO\tsingle\tO\none\tO\tone\tO\nby\tO\tby\tO\nnow\tO\tnow\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nopinion\tO\topinion\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nevery\tO\tevery\tO\none\tO\tone\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nrich B-Application rich O\ntext I-Application text O\neditors I-Application editors O\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbox\tO\tbox\tO\ninside\tO\tinside\tO\np B-HTML_XML_Tag p O\ntags\tO\ttags\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nproperly\tO\tproperly\tO\nin\tO\tin\tO\nChrome B-Application Chrome O\nand\tO\tand\tO\nsafari B-Application safari O\n.\tO\t.\tO\n\t\nWeird\tO\tWeird\tO\nwish\tO\twish\tO\nI\tO\tI\tO\nknew\tO\tknew\tO\nwhy\tO\twhy\tO\n?\tO\t?\tO\n\t\nQuestion_ID B-Data_Type Question_ID O\n:\tO\t:\tO\n4504827\tO\t4504827\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4504827/\tO\thttps://stackoverflow.com/questions/4504827/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\njust\tO\tjust\tO\ngetting\tO\tgetting\tO\nto\tO\tto\tO\ngrips\tO\tgrips\tO\nwith\tO\twith\tO\nAutofac B-Library Autofac O\n,\tO\t,\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nquestions\tO\tquestions\tO\n:\tO\t:\tO\n\t\nGuice B-Library Guice O\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nhas\tO\thas\tO\nits\tO\tits\tO\nown\tO\town\tO\nannotations/ways\tO\tannotations/ways\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\npass\tO\tpass\tO\nparameters\tO\tparameters\tO\ninto\tO\tinto\tO\nconstructors\tO\tconstructors\tO\n(\tO\t(\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nhandled\tO\thandled\tO\nby\tO\tby\tO\nGuice B-Library Guice O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nautofac B-Library autofac O\ndo\tO\tdo\tO\nanything\tO\tanything\tO\nsimilar\tO\tsimilar\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nin\tO\tin\tO\nth\tO\tth\tO\nclass\tO\tclass\tO\ndefinition\tO\tdefinition\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ninstantiate\tO\tinstantiate\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nclasses\tO\tclasses\tO\nand\tO\tand\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nget\tO\tget\tO\nother\tO\tother\tO\ntypes\tO\ttypes\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nsetup\tO\tsetup\tO\nthe\tO\tthe\tO\ncontainer B-Variable container O\neach\tO\teach\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\nI\tO\tI\tO\nam\tO\tam\tO\nassuming\tO\tassuming\tO\nthis\tO\tthis\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nstatic B-Data_Type static O\nmember\tO\tmember\tO\n?\tO\t?\tO\n)\tO\t)\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4362235\tO\t4362235\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4362235/\tO\thttps://stackoverflow.com/questions/4362235/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\ndeveloping\tO\tdeveloping\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nin\tO\tin\tO\nC# B-Language C# O\nwhere\tO\twhere\tO\nI\tO\tI\tO\ndisplay\tO\tdisplay\tO\na\tO\ta\tO\nMessageBox B-Class MessageBox O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nautomatically\tO\tautomatically\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\nmessage B-User_Interface_Element message O\nbox I-User_Interface_Element box O\nafter\tO\tafter\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nseconds\tO\tseconds\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4362235\tO\t4362235\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4362235/\tO\thttps://stackoverflow.com/questions/4362235/\tO\n\t\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nWindow B-User_Interface_Element Window O\n,\tO\t,\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncode-behind\tO\tcode-behind\tO\ncontaining\tO\tcontaining\tO\na\tO\ta\tO\nloaded\tO\tloaded\tO\nhandler\tO\thandler\tO\nand\tO\tand\tO\na\tO\ta\tO\ntimer B-Class timer O\nhandler\tO\thandler\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_458 I-Code_Block A_458 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\ncustom\tO\tcustom\tO\nmessage B-User_Interface_Element message O\nbox I-User_Interface_Element box O\nappear\tO\tappear\tO\nby\tO\tby\tO\ncalling\tO\tcalling\tO\nShowDialog() B-Function ShowDialog() O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_459 I-Code_Block A_459 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4362235\tO\t4362235\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4362235/\tO\thttps://stackoverflow.com/questions/4362235/\tO\n\t\n\t\nThe\tO\tThe\tO\nSystem.Windows.MessageBox.Show() B-Function System.Windows.MessageBox.Show() O\nmethod\tO\tmethod\tO\nhas\tO\thas\tO\nan\tO\tan\tO\noverload\tO\toverload\tO\nwhich\tO\twhich\tO\ntakes\tO\ttakes\tO\nan\tO\tan\tO\nowner\tO\towner\tO\nWindow B-User_Interface_Element Window O\nas\tO\tas\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\ninvisible\tO\tinvisible\tO\nowner\tO\towner\tO\nWindow B-User_Interface_Element Window O\nwhich\tO\twhich\tO\nwe\tO\twe\tO\nthen\tO\tthen\tO\nclose\tO\tclose\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nspecified\tO\tspecified\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nchild\tO\tchild\tO\nmessage B-User_Interface_Element message O\nbox I-User_Interface_Element box O\nwould\tO\twould\tO\nclose\tO\tclose\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncomplete\tO\tcomplete\tO\nanswer\tO\tanswer\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/a/20098381/2190520\tO\thttps://stackoverflow.com/a/20098381/2190520\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26960012\tO\t26960012\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26960012/\tO\thttps://stackoverflow.com/questions/26960012/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nusing\tO\tusing\tO\nAsyncTask B-Class AsyncTask O\nfor\tO\tfor\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nalready\tO\talready\tO\nand\tO\tand\tO\nit\tO\tit\tO\nnever\tO\tnever\tO\nstopped\tO\tstopped\tO\nworking\tO\tworking\tO\nafter\tO\tafter\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\nlike\tO\tlike\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nexecute\tO\texecute\tO\nAsyncTask B-Class AsyncTask O\nmany\tO\tmany\tO\ntimes\tO\ttimes\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nafter\tO\tafter\tO\nI\tO\tI\tO\nclose\tO\tclose\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nand\tO\tand\tO\nput\tO\tput\tO\ndevice\tO\tdevice\tO\nto\tO\tto\tO\nstand\tO\tstand\tO\nstill\tO\tstill\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nminutes\tO\tminutes\tO\n,\tO\t,\tO\nAsyncTask B-Class AsyncTask O\nbecomes\tO\tbecomes\tO\nimpossible\tO\timpossible\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\n.\tO\t.\tO\n\t\nUsually\tO\tUsually\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nfor\tO\tfor\tO\n1-2\tO\t1-2\tO\nseconds\tO\tseconds\tO\nto\tO\tto\tO\nload\tO\tload\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nfor\tO\tfor\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nminutes\tO\tminutes\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nAsyncTask B-Class AsyncTask O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3086 I-Code_Block Q_3086 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOne\tO\tOne\tO\nmore\tO\tmore\tO\nthing\tO\tthing\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnoticed\tO\tnoticed\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\npress\tO\tpress\tO\nback B-Keyboard_IP back B-Code_Block\nor\tO\tor\tO\nhome B-Keyboard_IP home B-Code_Block\nbuttons B-User_Interface_Element buttons O\non\tO\ton\tO\nmy\tO\tmy\tO\ndevice\tO\tdevice\tO\nand\tO\tand\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\non\tO\ton\tO\nhome\tO\thome\tO\nscreen\tO\tscreen\tO\n,\tO\t,\tO\nin\tO\tin\tO\nLogCat B-Application LogCat O\nI\tO\tI\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nwarning\tO\twarning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3087 I-Code_Block Q_3087 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nwarning\tO\twarning\tO\nonly\tO\tonly\tO\nappears\tO\tappears\tO\nif\tO\tif\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nclose\tO\tclose\tO\nmy\tO\tmy\tO\nconnection\tO\tconnection\tO\nbut\tO\tbut\tO\nconnection.disconnect() B-Function connection.disconnect() B-Code_Block\n; I-Function ; I-Code_Block\nis\tO\tis\tO\nalways\tO\talways\tO\ncalled\tO\tcalled\tO\ninside\tO\tinside\tO\nfinally\tO\tfinally\tO\nblock\tO\tblock\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncould\tO\tcould\tO\nmaybe\tO\tmaybe\tO\nbe\tO\tbe\tO\na\tO\ta\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nUPDATE1\tO\tUPDATE1\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\nafter\tO\tafter\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nminutes\tO\tminutes\tO\nI\tO\tI\tO\nreceive\tO\treceive\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nexception B-Class exception O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3088 I-Code_Block Q_3088 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10351494\tO\t10351494\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10351494/\tO\thttps://stackoverflow.com/questions/10351494/\tO\n\t\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\non\tO\ton\tO\na\tO\ta\tO\nclick\tO\tclick\tO\nevent\tO\tevent\tO\nit\tO\tit\tO\ncalls\tO\tcalls\tO\na\tO\ta\tO\nphp B-Language php O\nfunction\tO\tfunction\tO\nthrough\tO\tthrough\tO\n$.post{} B-Function $.post{} B-Code_Block\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nalert(data) B-Function alert(data) B-Code_Block\nto\tO\tto\tO\nrecognized\tO\trecognized\tO\nerrors\tO\terrors\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nunfortunately\tO\tunfortunately\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nallerting\tO\tallerting\tO\nanything\tO\tanything\tO\nexcept\tO\texcept\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\nan\tO\tan\tO\nerror\tO\terror\tO\non\tO\ton\tO\nfirebug B-Application firebug O\nconsole I-Application console O\nwith\tO\twith\tO\nrelevant\tO\trelevant\tO\nurl\tO\turl\tO\n\" B-Error_Name \" B-Code_Block\nInternal I-Error_Name Internal I-Code_Block\nserver I-Error_Name server I-Code_Block\nerror I-Error_Name error I-Code_Block\n500 I-Error_Name 500 I-Code_Block\n\" I-Error_Name \" I-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthrough\tO\tthrough\tO\nbrowser B-Application browser O\npasting\tO\tpasting\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nurl\tO\turl\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nput\tO\tput\tO\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_916 I-Code_Block Q_916 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n,\tO\t,\tO\nbut\tO\tbut\tO\nshows\tO\tshows\tO\na\tO\ta\tO\nblank\tO\tblank\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlost\tO\tlost\tO\nhere\tO\there\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nwithout\tO\twithout\tO\nany\tO\tany\tO\nerrors\tO\terrors\tO\ndisplaying.\tO\tdisplaying.\tO\n.\tO\t.\tO\nHelp\tO\tHelp\tO\nmuch\tO\tmuch\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\np.s\tO\tp.s\tO\nin\tO\tin\tO\nphp B-Language php O\ninfo\tO\tinfo\tO\nerror\tO\terror\tO\nreporting\tO\treporting\tO\nis\tO\tis\tO\noff\tO\toff\tO\n.\tO\t.\tO\n\t\ni\tO\ti\tO\ntried\tO\ttried\tO\nhtaccess B-File_Type htaccess O\non\tO\ton\tO\nmy\tO\tmy\tO\nsubfolder\tO\tsubfolder\tO\nwithout\tO\twithout\tO\nno\tO\tno\tO\nluck\tO\tluck\tO\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10351494\tO\t10351494\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10351494/\tO\thttps://stackoverflow.com/questions/10351494/\tO\n\t\n\t\nMake\tO\tMake\tO\nsure\tO\tsure\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nerror_reporting(E_ALL) B-Function error_reporting(E_ALL) B-Code_Block\nis\tO\tis\tO\nright\tO\tright\tO\nafter\tO\tafter\tO\n< B-HTML_XML_Tag < B-Code_Block\n? I-HTML_XML_Tag ? I-Code_Block\nphp I-HTML_XML_Tag php I-Code_Block\ntag\tO\ttag\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nindeed\tO\tindeed\tO\na\tO\ta\tO\nPHP B-Language PHP O\nerror\tO\terror\tO\n-\tO\t-\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ndeliberately\tO\tdeliberately\tO\nmake\tO\tmake\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nelsewhere\tO\telsewhere\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nyour\tO\tyour\tO\nPHP B-Language PHP O\nbut\tO\tbut\tO\nthe\tO\tthe\tO\n.htaccess B-File_Type .htaccess O\nfile\tO\tfile\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngetting\tO\tgetting\tO\n500 B-Error_Name 500 O\n)\tO\t)\tO\n,\tO\t,\tO\nor\tO\tor\tO\nmaybe\tO\tmaybe\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nlogical\tO\tlogical\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15143633\tO\t15143633\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15143633/\tO\thttps://stackoverflow.com/questions/15143633/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nupcoming\tO\tupcoming\tO\nbirthdays\tO\tbirthdays\tO\nin\tO\tin\tO\na\tO\ta\tO\nweek\tO\tweek\tO\non\tO\ton\tO\niOS B-Operating_System iOS O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\npulled\tO\tpulled\tO\nthe\tO\tthe\tO\nbirthday\tO\tbirthday\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nFacebook B-Website Facebook O\nand\tO\tand\tO\ntrimmed\tO\ttrimmed\tO\nthe\tO\tthe\tO\nyear\tO\tyear\tO\npart\tO\tpart\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nusers\tO\tusers\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nprivacy\tO\tprivacy\tO\nsettings\tO\tsettings\tO\n)\tO\t)\tO\nhence\tO\thence\tO\nthe\tO\tthe\tO\nbirthday\tO\tbirthday\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nan\tO\tan\tO\nNSString B-Class NSString B-Code_Block\nwith\tO\twith\tO\ndate\tO\tdate\tO\nformat\tO\tformat\tO\n@ B-Code_Block @ B-Code_Block\n\" I-Code_Block \" I-Code_Block\nMM/dd I-Code_Block MM/dd I-Code_Block\n\" I-Code_Block \" I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1461 I-Code_Block Q_1461 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhere\tO\twhere\tO\ndateFormatterWithFormat B-Class dateFormatterWithFormat B-Code_Block\n: I-Class : I-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\ncategory\tO\tcategory\tO\non\tO\ton\tO\nNSDateFormatter B-Class NSDateFormatter B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1462 I-Code_Block Q_1462 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n2\tO\t2\tO\nquestions\tO\tquestions\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\n1\tO\t1\tO\n-\tO\t-\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\na\tO\ta\tO\nweek\tO\tweek\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nyear\tO\tyear\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nbirthdays B-Variable birthdays O\nin\tO\tin\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nyear\tO\tyear\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nsetting\tO\tsetting\tO\nthe\tO\tthe\tO\nyear\tO\tyear\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbirthday B-Variable birthday O\nto\tO\tto\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nyear\tO\tyear\tO\nand\tO\tand\tO\ndifference.day B-Variable difference.day B-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nway\tO\tway\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n0 B-Value 0 O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbirthdays B-Variable birthdays O\nin\tO\tin\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nyear\tO\tyear\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nfixing\tO\tfixing\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\n2\tO\t2\tO\n-\tO\t-\tO\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nsnippet\tO\tsnippet\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\ndancing\tO\tdancing\tO\n:\tO\t:\tO\nfirst\tO\tfirst\tO\nI\tO\tI\tO\nget\tO\tget\tO\ntoday\tO\ttoday\tO\n's\tO\t's\tO\ndate\tO\tdate\tO\nand\tO\tand\tO\ntime\tO\ttime\tO\nwith\tO\twith\tO\n[ B-Class [ B-Code_Block\nNSDate I-Class NSDate I-Code_Block\ndate I-Class date I-Code_Block\n] I-Class ] I-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nrip\tO\trip\tO\nit\tO\tit\tO\nto\tO\tto\tO\nits\tO\tits\tO\ncomponents\tO\tcomponents\tO\nand\tO\tand\tO\nassemble\tO\tassemble\tO\nit\tO\tit\tO\nback\tO\tback\tO\nto\tO\tto\tO\nan\tO\tan\tO\nNSDate B-Class NSDate B-Code_Block\nwith\tO\twith\tO\na\tO\ta\tO\ntime\tO\ttime\tO\nat\tO\tat\tO\nnoon\tO\tnoon\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\n[ B-Class [ B-Code_Block\nNSDate I-Class NSDate I-Code_Block\ndate I-Class date I-Code_Block\n] I-Class ] I-Code_Block\nreturns\tO\treturns\tO\na\tO\ta\tO\ndate\tO\tdate\tO\nwhose\tO\twhose\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\nsay\tO\tsay\tO\n23:00:00 B-Value 23:00:00 O\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nbirthday\tO\tbirthday\tO\ntime\tO\ttime\tO\nis\tO\tis\tO\n00:00:00 B-Value 00:00:00 O\n(\tO\t(\tO\n1\tO\t1\tO\nhour\tO\thour\tO\nlater\tO\tlater\tO\n,\tO\t,\tO\nmeaning\tO\tmeaning\tO\nthe\tO\tthe\tO\nbirthday\tO\tbirthday\tO\nis\tO\tis\tO\ntomorrow\tO\ttomorrow\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ndifference.day B-Class difference.day B-Code_Block\nequals\tO\tequals\tO\n0 B-Value 0 B-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndesired\tO\tdesired\tO\n1 B-Value 1 B-Code_Block\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nsnippet\tO\tsnippet\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\ndoing\tO\tdoing\tO\ntoo\tO\ttoo\tO\nmuch\tO\tmuch\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nsomething\tO\tsomething\tO\nseemingly\tO\tseemingly\tO\nso\tO\tso\tO\nsimple\tO\tsimple\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\narrangement\tO\tarrangement\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nslice\tO\tslice\tO\ntoday B-Variable today B-Code_Block\nand\tO\tand\tO\nbirthday B-Variable birthday B-Code_Block\ninto\tO\tinto\tO\ncomponents\tO\tcomponents\tO\nand\tO\tand\tO\nput\tO\tput\tO\nthem\tO\tthem\tO\nback\tO\tback\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nNSDate B-Class NSDate B-Code_Block\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15143633\tO\t15143633\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15143633/\tO\thttps://stackoverflow.com/questions/15143633/\tO\n\t\n\t\nSet\tO\tSet\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nyear\tO\tyear\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nbirthdayComponents B-Variable birthdayComponents O\nobject\tO\tobject\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1926 I-Code_Block A_1926 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42616468\tO\t42616468\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42616468/\tO\thttps://stackoverflow.com/questions/42616468/\tO\n\t\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nrefactor\tO\trefactor\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nexpression\tO\texpression\tO\nwith\tO\twith\tO\nES5 B-Language ES5 O\nprototype\tO\tprototype\tO\nsyntax\tO\tsyntax\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nextend\tO\textend\tO\na\tO\ta\tO\nnative\tO\tnative\tO\nclass\tO\tclass\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nexpression\tO\texpression\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\nbut\tO\tbut\tO\nextending\tO\textending\tO\nnative\tO\tnative\tO\nclasses\tO\tclasses\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nsupported\tO\tsupported\tO\nby\tO\tby\tO\nbabel\tO\tbabel\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ntranspile\tO\ttranspile\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nES5 B-Language ES5 O\nin\tO\tin\tO\nthe\tO\tthe\tO\nfuture\tO\tfuture\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ncode\tO\tcode\tO\ntaken\tO\ttaken\tO\noff\tO\toff\tO\nof\tO\tof\tO\ngoogle B-Website google O\n's\tO\t's\tO\ncustom\tO\tcustom\tO\nelements\tO\telements\tO\nprimer\tO\tprimer\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5429 I-Code_Block Q_5429 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nsimple\tO\tsimple\tO\n:\tO\t:\tO\n\t\nhow\tO\thow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nrefactor\tO\trefactor\tO\nan\tO\tan\tO\nES2015 B-Language ES2015 O\nclass\tO\tclass\tO\nexpression\tO\texpression\tO\nwith\tO\twith\tO\nsomething\tO\tsomething\tO\nES5 B-Language ES5 O\ncompatible\tO\tcompatible\tO\n(\tO\t(\tO\nor\tO\tor\tO\njust\tO\tjust\tO\nbabel B-Library babel O\ncompatible\tO\tcompatible\tO\nreally\tO\treally\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nbabel B-Library babel O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nbriefly\tO\tbriefly\tO\nexplain\tO\texplain\tO\nor\tO\tor\tO\npoint\tO\tpoint\tO\nme\tO\tme\tO\nto\tO\tto\tO\nreference\tO\treference\tO\nthat\tO\tthat\tO\nexplains\tO\texplains\tO\nhow\tO\thow\tO\nES6 B-Language ES6 O\nclasses\tO\tclasses\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nprototypes\tO\tprototypes\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n414976\tO\t414976\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/414976/\tO\thttps://stackoverflow.com/questions/414976/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\n4\tO\t4\tO\nimages B-User_Interface_Element images O\non\tO\ton\tO\na\tO\ta\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\nJS B-Class JS O\nevent I-Class event O\nonce\tO\tonce\tO\nall\tO\tall\tO\n4\tO\t4\tO\nimages B-User_Interface_Element images O\nare\tO\tare\tO\nloaded\tO\tloaded\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nof\tO\tof\tO\ncourse\tO\tcourse\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nsure\tO\tsure\tO\nwhich\tO\twhich\tO\norder\tO\torder\tO\nthe\tO\tthe\tO\nimages B-User_Interface_Element images O\nwill\tO\twill\tO\nbe\tO\tbe\tO\nloaded\tO\tloaded\tO\nin\tO\tin\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ntrigger\tO\ttrigger\tO\nthe\tO\tthe\tO\nevent B-Class event O\non\tO\ton\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nimage B-User_Interface_Element image O\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nthought\tO\tthought\tO\nwas\tO\twas\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncounter B-Variable counter O\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nwhen\tO\twhen\tO\nthat\tO\tthat\tO\ncounter B-Variable counter O\nis\tO\tis\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\n4 B-Value 4 O\nas\tO\tas\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nidea\tO\tidea\tO\nof\tO\tof\tO\na\tO\ta\tO\nsetTimeout() B-Function setTimeout() O\nchecking\tO\tchecking\tO\nevery\tO\tevery\tO\n200ms\tO\t200ms\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nother\tO\tother\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\njQuery B-Library jQuery O\non\tO\ton\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nthinking\tO\tthinking\tO\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nimage\tO\timage\tO\nHTML B-Language HTML O\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_22 I-Code_Block Q_22 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n414976\tO\t414976\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/414976/\tO\thttps://stackoverflow.com/questions/414976/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_51 I-Code_Block A_51 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n414976\tO\t414976\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/414976/\tO\thttps://stackoverflow.com/questions/414976/\tO\n\t\n\t\nAs\tO\tAs\tO\nregards\tO\tregards\tO\nSalty B-User_Name Salty O\n's\tO\t's\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nclosure\tO\tclosure\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nglobal B-Data_Type global O\nvariables\tO\tvariables\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nsuch\tO\tsuch\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_52 I-Code_Block A_52 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n[\tO\t[\tO\nEdit\tO\tEdit\tO\n]\tO\t]\tO\n\t\nAs\tO\tAs\tO\nper\tO\tper\tO\njeroen B-User_Name jeroen O\n's\tO\t's\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nI\tO\tI\tO\nreplaced\tO\treplaced\tO\nthe\tO\tthe\tO\nhardcoded\tO\thardcoded\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n4 B-Variable 4 O\n(\tO\t(\tO\ncount B-Code_Block count B-Code_Block\n== I-Code_Block == I-Code_Block\n= I-Code_Block = I-Code_Block\n4) I-Code_Block 4) I-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\njQuery B-Library jQuery O\nsize B-Function size B-Code_Block\nfunction\tO\tfunction\tO\nas\tO\tas\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\nflexibility\tO\tflexibility\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2444647\tO\t2444647\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2444647/\tO\thttps://stackoverflow.com/questions/2444647/\tO\n\t\n\t\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\na\tO\ta\tO\nwysiwyg\tO\twysiwyg\tO\niframe B-HTML_XML_Tag iframe O\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\nsubmit\tO\tsubmit\tO\ninput\tO\tinput\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\narea\tO\tarea\tO\non\tO\ton\tO\nthe\tO\tthe\tO\npage B-User_Interface_Element page O\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\niframe B-HTML_XML_Tag iframe O\ninput\tO\tinput\tO\nis\tO\tis\tO\nsubmitted\tO\tsubmitted\tO\n,\tO\t,\tO\nI\tO\tI\tO\nset\tO\tset\tO\nit\tO\tit\tO\nto\tO\tto\tO\nclear\tO\tclear\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nalso\tO\talso\tO\nautomatically\tO\tautomatically\tO\nfocus\tO\tfocus\tO\nback\tO\tback\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\niframe B-HTML_XML_Tag iframe O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\ncurrently\tO\tcurrently\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_164 I-Code_Block Q_164 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2444647\tO\t2444647\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2444647/\tO\thttps://stackoverflow.com/questions/2444647/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\npostContentClr B-Variable postContentClr B-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\njQuery B-Library jQuery O\nobject\tO\tobject\tO\n,\tO\t,\tO\nso\tO\tso\tO\ncalling\tO\tcalling\tO\nhtml() B-Function html() B-Code_Block\nrequires\tO\trequires\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\naccess\tO\taccess\tO\nit\tO\tit\tO\nvia\tO\tvia\tO\njQuery B-Library jQuery O\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_242 I-Code_Block A_242 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2444647\tO\t2444647\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2444647/\tO\thttps://stackoverflow.com/questions/2444647/\tO\n\t\n\t\nFigured\tO\tFigured\tO\nit\tO\tit\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\nfocus\tO\tfocus\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nJitter B-User_Name Jitter O\nis\tO\tis\tO\ncorrect\tO\tcorrect\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\nalready\tO\talready\tO\ndeclared\tO\tdeclared\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\njQuery B-Library jQuery O\nobject\tO\tobject\tO\n,\tO\t,\tO\nit\tO\tit\tO\nneed\tO\tneed\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nwrapped\tO\twrapped\tO\n.\tO\t.\tO\n\t\nWorking\tO\tWorking\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_243 I-Code_Block A_243 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46614845\tO\t46614845\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46614845/\tO\thttps://stackoverflow.com/questions/46614845/\tO\n\t\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\npreloading\tO\tpreloading\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\npurpose\tO\tpurpose\tO\nof\tO\tof\tO\ncache B-Variable cache O\nand\tO\tand\tO\nhash B-Variable hash O\nin\tO\tin\tO\nthis\tO\tthis\tO\nsnippet\tO\tsnippet\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nsimple\tO\tsimple\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\noverlooking\tO\toverlooking\tO\nit\tO\tit\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nwant\tO\twant\tO\nsome\tO\tsome\tO\ndirection\tO\tdirection\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6140 I-Code_Block Q_6140 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46614845\tO\t46614845\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46614845/\tO\thttps://stackoverflow.com/questions/46614845/\tO\n\t\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nexample\tO\texample\tO\n,\tO\t,\tO\ncache B-Variable cache B-Code_Block\nis\tO\tis\tO\nactually\tO\tactually\tO\nuseless\tO\tuseless\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nonly\tO\tonly\tO\nwrite\tO\twrite\tO\nto\tO\tto\tO\nit\tO\tit\tO\nand\tO\tand\tO\nnever\tO\tnever\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nhash B-Variable hash B-Code_Block\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nused\tO\tused\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nactual\tO\tactual\tO\ncache\tO\tcache\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nan\tO\tan\tO\nimage B-User_Interface_Element image O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nURL\tO\tURL\tO\nalready\tO\talready\tO\nexists\tO\texists\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nreturned\tO\treturned\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nhash B-Variable hash B-Code_Block\nobject\tO\tobject\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\ncreated\tO\tcreated\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47229969\tO\t47229969\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47229969/\tO\thttps://stackoverflow.com/questions/47229969/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\ndatabase\tO\tdatabase\tO\nsystems\tO\tsystems\tO\ncurrently\tO\tcurrently\tO\nin\tO\tin\tO\nuse\tO\tuse\tO\nin\tO\tin\tO\nproduction\tO\tproduction\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nPostgreSQL B-Application PostgreSQL O\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\ndatabase\tO\tdatabase\tO\n(\tO\t(\tO\nMemSQL B-Application MemSQL O\n)\tO\t)\tO\nused\tO\tused\tO\nprimarily\tO\tprimarily\tO\nfor\tO\tfor\tO\nanalytical\tO\tanalytical\tO\npurposes\tO\tpurposes\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsetup\tO\tsetup\tO\nstreaming\tO\tstreaming\tO\nreplication\tO\treplication\tO\nof\tO\tof\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntables\tO\ttables\tO\nin\tO\tin\tO\nPostgreSQL B-Application PostgreSQL O\nto\tO\tto\tO\nMemSQL B-Application MemSQL O\n(\tO\t(\tO\na\tO\ta\tO\nMySQL-compatible B-Application MySQL-compatible O\ndatabase\tO\tdatabase\tO\n)\tO\t)\tO\nrowstores\tO\trowstores\tO\n,\tO\t,\tO\nassuming\tO\tassuming\tO\nthe\tO\tthe\tO\ntables B-Data_Structure tables O\non\tO\ton\tO\nboth\tO\tboth\tO\ndatabases\tO\tdatabases\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nschema\tO\tschema\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47229969\tO\t47229969\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47229969/\tO\thttps://stackoverflow.com/questions/47229969/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nthink\tO\tthink\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ntool\tO\ttool\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n(\tO\t(\tO\nyet\tO\tyet\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\none\tO\tone\tO\nfor\tO\tfor\tO\nlimited\tO\tlimited\tO\nMySQL B-Application MySQL O\nto\tO\tto\tO\nPostgres B-Application Postgres O\nreplication\tO\treplication\tO\n:\tO\t:\tO\n\t\nhttps://github.com/the4thdoctor/pg_chameleon\tO\thttps://github.com/the4thdoctor/pg_chameleon\tO\n\t\nMaybe\tO\tMaybe\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nadapted\tO\tadapted\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nalways\tO\talways\tO\nbuild\tO\tbuild\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nlittle\tO\tlittle\tO\ndata\tO\tdata\tO\nshovel\tO\tshovel\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nNOTIFY/LISTEN\tO\tNOTIFY/LISTEN\tO\nfeature\tO\tfeature\tO\nof\tO\tof\tO\nPostgres B-Application Postgres O\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nonly\tO\tonly\tO\nan\tO\tan\tO\noption\tO\toption\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nsimple\tO\tsimple\tO\nset\tO\tset\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28769127\tO\t28769127\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28769127/\tO\thttps://stackoverflow.com/questions/28769127/\tO\n\t\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncome\tO\tcome\tO\nacross\tO\tacross\tO\nWinSCP B-Application WinSCP O\n(\tO\t(\tO\nhttp://winscp.net/eng/index.php\tO\thttp://winscp.net/eng/index.php\tO\n)\tO\t)\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nis\tO\tis\tO\na\tO\ta\tO\nfantastic\tO\tfantastic\tO\nclient B-Application client O\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nEC2 B-Application EC2 O\nubuntu B-Operating_System ubuntu O\ninstance\tO\tinstance\tO\nas\tO\tas\tO\na\tO\ta\tO\ngraphical\tO\tgraphical\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\nputty B-Application putty O\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nproblem\tO\tproblem\tO\nthough\tO\tthough\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nor\tO\tor\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ndrop\tO\tdrop\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nshell B-Application shell O\nand\tO\tand\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nsudo B-Code_Block sudo O\ncommand\tO\tcommand\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nlogin\tO\tlogin\tO\nwith\tO\twith\tO\nwinscp B-Application winscp O\nas\tO\tas\tO\na\tO\ta\tO\nsuperuser\tO\tsuperuser\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5403062\tO\t5403062\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5403062/\tO\thttps://stackoverflow.com/questions/5403062/\tO\n\t\n\t\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\napk B-File_Type apk O\nfile\tO\tfile\tO\nsome\tO\tsome\tO\nXML B-File_Type XML O\nfile\tO\tfile\tO\nstoring\tO\tstoring\tO\nprogram\tO\tprogram\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\nupdate\tO\tupdate\tO\npath\tO\tpath\tO\nand\tO\tand\tO\nother\tO\tother\tO\nuseful\tO\tuseful\tO\ndata\tO\tdata\tO\n(\tO\t(\tO\nnote\tO\tnote\tO\n:\tO\t:\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nmean\tO\tmean\tO\nAndroid B-Operating_System Android O\nXML B-File_Type XML O\nfile\tO\tfile\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nunpacked\tO\tunpacked\tO\nsomewhere\tO\tsomewhere\tO\nto\tO\tto\tO\nlocal\tO\tlocal\tO\ndata\tO\tdata\tO\nfolder\tO\tfolder\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\ncomparing\tO\tcomparing\tO\nversion\tO\tversion\tO\ninfo\tO\tinfo\tO\ninstalled\tO\tinstalled\tO\nlocally\tO\tlocally\tO\nand\tO\tand\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nserver B-Application server O\nin\tO\tin\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\nupdates\tO\tupdates\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nasking\tO\tasking\tO\n-\tO\t-\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\napk B-File_Type apk O\nsome\tO\tsome\tO\nother\tO\tother\tO\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5403062\tO\t5403062\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5403062/\tO\thttps://stackoverflow.com/questions/5403062/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\ninfo\tO\tinfo\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nthen\tO\tthen\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nmuch\tO\tmuch\tO\neasier\tO\teasier\tO\nway\tO\tway\tO\nto\tO\tto\tO\nidentify\tO\tidentify\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n\t\ngetPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionCode B-Code_Block getPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionCode B-Code_Block\n\t\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nversion\tO\tversion\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\n\t\ngetPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionName B-Code_Block getPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionName B-Code_Block\n\t\nto\tO\tto\tO\nget\tO\tget\tO\napp\tO\tapp\tO\n's\tO\t's\tO\nversion\tO\tversion\tO\nname\tO\tname\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5403062\tO\t5403062\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5403062/\tO\thttps://stackoverflow.com/questions/5403062/\tO\n\t\n\t\nThe\tO\tThe\tO\nassets/ B-File_Name assets/ B-Code_Block\nfolder\tO\tfolder\tO\nin\tO\tin\tO\napk B-File_Type apk O\nis\tO\tis\tO\nintended\tO\tintended\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nany\tO\tany\tO\nextra\tO\textra\tO\nuser\tO\tuser\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nany\tO\tany\tO\nformats\tO\tformats\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nincluded\tO\tincluded\tO\nto\tO\tto\tO\napk B-File_Type apk O\nautomatically\tO\tautomatically\tO\non\tO\ton\tO\ncompilation\tO\tcompilation\tO\nstage\tO\tstage\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccessed\tO\taccessed\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nusing\tO\tusing\tO\ngetAssets() B-Function getAssets() B-Code_Block\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_585 I-Code_Block A_585 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\neven\tO\teven\tO\nunnecessary\tO\tunnecessary\tO\nto\tO\tto\tO\ncopy\tO\tcopy\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nlocal\tO\tlocal\tO\nfolder\tO\tfolder\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43365372\tO\t43365372\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43365372/\tO\thttps://stackoverflow.com/questions/43365372/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nunity B-Application unity O\ngame\tO\tgame\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nnavigate\tO\tnavigate\tO\nfrom\tO\tfrom\tO\none\tO\tone\tO\n360\tO\t360\tO\ndegrees\tO\tdegrees\tO\npanorama\tO\tpanorama\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\npictures B-User_Interface_Element pictures O\nand\tO\tand\tO\nmade\tO\tmade\tO\nthe\tO\tthe\tO\ntexture B-User_Interface_Element texture O\nsize\tO\tsize\tO\nas\tO\tas\tO\na\tO\ta\tO\ncube B-User_Interface_Element cube O\nand\tO\tand\tO\nmapped\tO\tmapped\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlatitude-longitude\tO\tlatitude-longitude\tO\nlayout\tO\tlayout\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nmade\tO\tmade\tO\nskybox B-User_Interface_Element skybox O\nmaterial\tO\tmaterial\tO\nand\tO\tand\tO\nloaded\tO\tloaded\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\ninto\tO\tinto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfacing\tO\tfacing\tO\nhere\tO\there\tO\nis\tO\tis\tO\n-\tO\t-\tO\n\t\nWhenever\tO\tWhenever\tO\nI\tO\tI\tO\nload\tO\tload\tO\nthe\tO\tthe\tO\nskyboxes B-User_Interface_Element skyboxes O\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\ndirection\tO\tdirection\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\norientation\tO\torientation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\nby\tO\tby\tO\nchanging\tO\tchanging\tO\nthe\tO\tthe\tO\nskybox B-User_Interface_Element skybox O\nrotation\tO\trotation\tO\nto\tO\tto\tO\n100 B-Value 100 O\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nplanned\tO\tplanned\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\naround\tO\taround\tO\n100\tO\t100\tO\npictures B-User_Interface_Element pictures O\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\neach\tO\teach\tO\non\tO\ton\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nmanually\tO\tmanually\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npictures\tO\tpictures\tO\nwere\tO\twere\tO\ndownloaded\tO\tdownloaded\tO\nfrom\tO\tfrom\tO\ngoogle B-Website google O\nstreetview I-Website streetview O\n.\tO\t.\tO\n\t\nDesperately\tO\tDesperately\tO\nin\tO\tin\tO\nneed\tO\tneed\tO\nof\tO\tof\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13095695\tO\t13095695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13095695/\tO\thttps://stackoverflow.com/questions/13095695/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nashamed\tO\tashamed\tO\nto\tO\tto\tO\nsay\tO\tsay\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nspent\tO\tspent\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\ntoday\tO\ttoday\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nform B-User_Interface_Element form O\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncontents\tO\tcontents\tO\nof\tO\tof\tO\nan\tO\tan\tO\ndata B-Class data O\nstore I-Class store O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nExt.js B-Library Ext.js O\nand\tO\tand\tO\nthe\tO\tthe\tO\nMVC B-Algorithm MVC O\narchitecture\tO\tarchitecture\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1246 I-Code_Block Q_1246 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\n(\tO\t(\tO\nI\tO\tI\tO\n've\tO\t've\tO\nhad\tO\thad\tO\nmany\tO\tmany\tO\nthroughout\tO\tthroughout\tO\nthe\tO\tthe\tO\nday\tO\tday\tO\n)\tO\t)\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\nmy.items.push B-Output_Block my.items.push O\nis I-Output_Block is O\nnot I-Output_Block not O\na I-Output_Block a O\nfunction I-Output_Block function O\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\noffer\tO\toffer\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13095695\tO\t13095695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13095695/\tO\thttps://stackoverflow.com/questions/13095695/\tO\n\t\n\t\nitems B-Variable items B-Code_Block\nis\tO\tis\tO\nexpected\tO\texpected\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nnot\tO\tnot\tO\nMixedCollection B-Class MixedCollection O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nchanged\tO\tchanged\tO\nto\tO\tto\tO\nMixedCollection B-Class MixedCollection O\nlater\tO\tlater\tO\non\tO\ton\tO\nif\tO\tif\tO\nI\tO\tI\tO\nremember\tO\tremember\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nyour\tO\tyour\tO\nissue\tO\tissue\tO\nchange\tO\tchange\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1690 I-Code_Block A_1690 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1691 I-Code_Block A_1691 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nConsider\tO\tConsider\tO\nas\tO\tas\tO\nwell\tO\twell\tO\ndefining\tO\tdefining\tO\nitems B-Variable items B-Code_Block\nof\tO\tof\tO\nform\tO\tform\tO\nas\tO\tas\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\narray B-Data_Structure array O\nand\tO\tand\tO\nthen\tO\tthen\tO\nin\tO\tin\tO\ninitComponent B-Variable initComponent B-Code_Block\nmake\tO\tmake\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nExt.apply B-Function Ext.apply B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1692 I-Code_Block A_1692 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37793870\tO\t37793870\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37793870/\tO\thttps://stackoverflow.com/questions/37793870/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\ndates\tO\tdates\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nformat\tO\tformat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4749 I-Code_Block Q_4749 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4750 I-Code_Block Q_4750 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nput\tO\tput\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nSQL B-Language SQL O\nServer B-Application Server O\ntable B-Data_Structure table O\nas\tO\tas\tO\nnvarchar(MAX) B-Data_Type nvarchar(MAX) B-Code_Block\nbut\tO\tbut\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\ndatetime B-Data_Type datetime B-Code_Block\nin\tO\tin\tO\na\tO\ta\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npieces\tO\tpieces\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nbut\tO\tbut\tO\nneither\tO\tneither\tO\nwork\tO\twork\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4751 I-Code_Block Q_4751 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37793870\tO\t37793870\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37793870/\tO\thttps://stackoverflow.com/questions/37793870/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5441 I-Code_Block A_5441 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nReturn\tO\tReturn\tO\n2016-04-15 B-Value 2016-04-15 O\n13:30:00.000 I-Value 13:30:00.000 O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n7234291\tO\t7234291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7234291/\tO\thttps://stackoverflow.com/questions/7234291/\tO\n\t\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nsome\tO\tsome\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nXML B-Language XML O\nfrom\tO\tfrom\tO\nan\tO\tan\tO\nExcel B-Application Excel O\nspreadsheet\tO\tspreadsheet\tO\n>>\tO\t>>\tO\nHERE\tO\tHERE\tO\n<<\tO\t<<\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nroutine\tO\troutine\tO\nthat\tO\tthat\tO\ntakes\tO\ttakes\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\n4\tO\t4\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n15\tO\t15\tO\nsheets B-User_Interface_Element sheets O\nin\tO\tin\tO\nthe\tO\tthe\tO\nworkbook B-User_Interface_Element workbook O\n,\tO\t,\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\nour\tO\tour\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nAnyway\tO\tAnyway\tO\n...\tO\t...\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nthrowing\tO\tthrowing\tO\nan\tO\tan\tO\nInvalidOperationException B-Class InvalidOperationException B-Code_Block\nexception I-Class exception O\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nattempt\tO\tattempt\tO\nto\tO\tto\tO\nquery\tO\tquery\tO\nmy\tO\tmy\tO\nExcel B-Application Excel O\nspreadsheet\tO\tspreadsheet\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_563 I-Code_Block Q_563 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nspecific\tO\tspecific\tO\nerror\tO\terror\tO\nis\tO\tis\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nSequence B-Error_Name Sequence O\ncontains I-Error_Name contains O\nno I-Error_Name no O\nelements I-Error_Name elements O\n\"\tO\t\"\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nreally\tO\treally\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\ndebugging\tO\tdebugging\tO\nit\tO\tit\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nsomeone\tO\tsomeone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwrite\tO\twrite\tO\nit\tO\tit\tO\nin\tO\tin\tO\nStandard\tO\tStandard\tO\n\"\tO\t\"\tO\nC# B-Language C# O\nbefore\tO\tbefore\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nfancy\tO\tfancy\tO\nLINQ B-Library LINQ O\nexpression\tO\texpression\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nLINQ B-Library LINQ O\n,\tO\t,\tO\nright\tO\tright\tO\n?\tO\t?\tO\n)\tO\t)\tO\n\t\n[\tO\t[\tO\nSolved\tO\tSolved\tO\n]\tO\t]\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nsnippet\tO\tsnippet\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nJeffN825 B-User_Name JeffN825 O\n,\tO\t,\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nable\tO\table\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_564 I-Code_Block Q_564 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nturns\tO\tturns\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nmy\tO\tmy\tO\nsheet\tO\tsheet\tO\nnames\tO\tnames\tO\nin\tO\tin\tO\nExcel B-Application Excel O\nare\tO\tare\tO\n\"\tO\t\"\tO\nHV B-Variable HV O\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nM2 B-Variable M2 O\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nCB B-Variable CB O\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nCC B-Variable CC O\n\"\tO\t\"\tO\n,\tO\t,\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\nsheet2 B-Variable sheet2 O\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nsheet3 B-Variable sheet3 O\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nsheet4 B-Variable sheet4 O\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nsheet5 B-Variable sheet5 O\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nstep\tO\tstep\tO\nthrough\tO\tthrough\tO\n161\tO\t161\tO\nPackagePart B-Class PackagePart B-Code_Block\nobjects\tO\tobjects\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nLINQ B-Library LINQ O\nis\tO\tis\tO\njust\tO\tjust\tO\nso\tO\tso\tO\ndamn\tO\tdamn\tO\nefficient\tO\tefficient\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nhard\tO\thard\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nwhen\tO\twhen\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7234291\tO\t7234291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7234291/\tO\thttps://stackoverflow.com/questions/7234291/\tO\n\t\n\t\nThe\tO\tThe\tO\n.Single() B-Function .Single() B-Code_Block\nis\tO\tis\tO\nwhat\tO\twhat\tO\n's\tO\t's\tO\nthrowing\tO\tthrowing\tO\nthe\tO\tthe\tO\nexception B-Class exception O\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nyour\tO\tyour\tO\nquery\tO\tquery\tO\nis\tO\tis\tO\nreturning\tO\treturning\tO\nno\tO\tno\tO\nitems\tO\titems\tO\nor\tO\tor\tO\nit\tO\tit\tO\n's\tO\t's\tO\nreturning\tO\treturning\tO\n>\tO\t>\tO\n1\tO\t1\tO\nitem\tO\titem\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nitems\tO\titems\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nexpecting\tO\texpecting\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nusing\tO\tusing\tO\nFirstOrDefault() B-Function FirstOrDefault() B-Code_Block\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nmatch\tO\tmatch\tO\nor\tO\tor\tO\nnull B-Value null O\nif\tO\tif\tO\nno\tO\tno\tO\nmatches\tO\tmatches\tO\nare\tO\tare\tO\nfound\tO\tfound\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnon-LINQ B-Library non-LINQ O\nequivalent\tO\tequivalent\tO\nis\tO\tis\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_832 I-Code_Block A_832 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n7234291\tO\t7234291\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/7234291/\tO\thttps://stackoverflow.com/questions/7234291/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nbasically\tO\tbasically\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_830 I-Code_Block A_830 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\nversion\tO\tversion\tO\n,\tO\t,\tO\ntry\tO\ttry\tO\nreplacing\tO\treplacing\tO\n.Single() B-Function .Single() O\nwith\tO\twith\tO\n.FirstOrDefault() B-Function .FirstOrDefault() O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nfailing\tO\tfailing\tO\nbecause\tO\tbecause\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nmatch\tO\tmatch\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45904168\tO\t45904168\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45904168/\tO\thttps://stackoverflow.com/questions/45904168/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\ntwo\tO\ttwo\tO\nhttp/2\tO\thttp/2\tO\nservers B-Application servers O\non\tO\ton\tO\nmy\tO\tmy\tO\nubuntu B-Operating_System ubuntu O\nserver B-Application server O\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nreachable\tO\treachable\tO\nover\tO\tover\tO\nport B-Device port O\n443 B-Value 443 O\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\non\tO\ton\tO\nUbuntu B-Operating_System Ubuntu O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45904168\tO\t45904168\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45904168/\tO\thttps://stackoverflow.com/questions/45904168/\tO\n\t\n\t\nYes\tO\tYes\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nwebserver B-Application webserver O\nor\tO\tor\tO\nloadbalancer B-Application loadbalancer O\nlistening\tO\tlistening\tO\nto\tO\tto\tO\nport B-Device port O\n443 B-Value 443 O\nand\tO\tand\tO\nforwarding\tO\tforwarding\tO\nrequests\tO\trequests\tO\nappropriately\tO\tappropriately\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nApache B-Application Apache O\nfor\tO\tfor\tO\nexample\tO\texample\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nhandled\tO\thandled\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6665 I-Code_Block A_6665 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nwhile\tO\twhile\tO\nApache B-Application Apache O\ndoes\tO\tdoes\tO\nsupport\tO\tsupport\tO\nHTTP/2 B-Version HTTP/2 O\nin\tO\tin\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\nfront\tO\tfront\tO\nend\tO\tend\tO\nclient\tO\tclient\tO\nconnections\tO\tconnections\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nback\tO\tback\tO\nend\tO\tend\tO\nProxyPass\tO\tProxyPass\tO\nrequests\tO\trequests\tO\n(\tO\t(\tO\nwith\tO\twith\tO\nmod_proxy_http B-Code_Block mod_proxy_http O\n2) I-Code_Block 2) O\n,\tO\t,\tO\nsome\tO\tsome\tO\nother\tO\tother\tO\nwebservers/loadbalancers B-Application webservers/loadbalancers O\ndo\tO\tdo\tO\nn't\tO\tn't\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nNginx B-Application Nginx O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nhonest\tO\thonest\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbenefits\tO\tbenefits\tO\nfor\tO\tfor\tO\nHTTP/2 B-Version HTTP/2 O\nare\tO\tare\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nclient\tO\tclient\tO\nto\tO\tto\tO\nedge\tO\tedge\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nNginx B-Application Nginx O\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\nNginx B-Application Nginx O\nsupport\tO\tsupport\tO\nHTTP/2\tO\tHTTP/2\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nconnection\tO\tconnection\tO\nfrom\tO\tfrom\tO\nNginx B-Application Nginx O\nto\tO\tto\tO\nyour\tO\tyour\tO\nback\tO\tback\tO\nend\tO\tend\tO\napps\tO\tapps\tO\nbe\tO\tbe\tO\nplain\tO\tplain\tO\nold\tO\told\tO\nHTTP/1.1 B-Version HTTP/1.1 O\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nleast\tO\tleast\tO\nuntil\tO\tuntil\tO\nHTTP/2 B-Version HTTP/2 O\nbecomes\tO\tbecomes\tO\nmore\tO\tmore\tO\nregularly\tO\tregularly\tO\nsupported\tO\tsupported\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nhere\tO\there\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndiscussion\tO\tdiscussion\tO\non\tO\ton\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nHTTP2 B-Version HTTP2 O\nwith\tO\twith\tO\nnode.js B-Application node.js O\nbehind\tO\tbehind\tO\nnginx B-Application nginx O\nproxy\tO\tproxy\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31673914\tO\t31673914\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31673914/\tO\thttps://stackoverflow.com/questions/31673914/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nuser\tO\tuser\tO\nof\tO\tof\tO\nJson.net B-Library Json.net O\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nstuck\tO\tstuck\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nread\tO\tread\tO\na\tO\ta\tO\njson B-File_Type json O\nfile\tO\tfile\tO\nthanks\tO\tthanks\tO\nto\tO\tto\tO\nJsonTextReader B-Class JsonTextReader O\nusing\tO\tusing\tO\njson.net B-Library json.net O\n\t\nMy\tO\tMy\tO\njson B-File_Type json O\nfile\tO\tfile\tO\nis\tO\tis\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nclass\tO\tclass\tO\nPerson B-Class Person O\nwith\tO\twith\tO\nsome\tO\tsome\tO\nattributes\tO\tattributes\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nhttp://pastebin.com/DbSDVt2K\tO\thttp://pastebin.com/DbSDVt2K\tO\n\t\nWhen\tO\tWhen\tO\nreading\tO\treading\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nStreamReader B-Class StreamReader O\n(\tO\t(\tO\nor\tO\tor\tO\nTextReader B-Class TextReader O\n)\tO\t)\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nis\tO\tis\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nresult\tO\tresult\tO\nwith\tO\twith\tO\nan\tO\tan\tO\noutput\tO\toutput\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nJsonTextReader B-Class JsonTextReader O\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nunderstand\tO\tunderstand\tO\n:\tO\t:\tO\n\t\nhttp://pastebin.com/iwF3xuUp\tO\thttp://pastebin.com/iwF3xuUp\tO\n\t\nMy\tO\tMy\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nwith\tO\twith\tO\n:\tO\t:\tO\nmyString B-Code_Block myString O\n= I-Code_Block = O\nreader.ReadAsString() I-Code_Block reader.ReadAsString() O\n; I-Code_Block ; O\n\t\n\"\tO\t\"\tO\nAdditional\tO\tAdditional\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\nError\tO\tError\tO\nreading\tO\treading\tO\nstring\tO\tstring\tO\n.\tO\t.\tO\n\t\nUnexpected B-Error_Name Unexpected O\ntoken I-Error_Name token O\n:\tO\t:\tO\nStartArray\tO\tStartArray\tO\n.\tO\t.\tO\n\t\nPath\tO\tPath\tO\n''\tO\t''\tO\n,\tO\t,\tO\nline\tO\tline\tO\n1\tO\t1\tO\n,\tO\t,\tO\nposition\tO\tposition\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\"\tO\t\"\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nhours\tO\thours\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nmore\tO\tmore\tO\ninfo\tO\tinfo\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nnothing\tO\tnothing\tO\nthat\tO\tthat\tO\ncould\tO\tcould\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nany\tO\tany\tO\nof\tO\tof\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nunderstand\tO\tunderstand\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nextract\tO\textract\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ntr B-File_Type tr O\nfile\tO\tfile\tO\ncontent\tO\tcontent\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3831 I-Code_Block Q_3831 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31673914\tO\t31673914\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31673914/\tO\thttps://stackoverflow.com/questions/31673914/\tO\n\t\n\t\nSimply\tO\tSimply\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\na\tO\ta\tO\nregular\tO\tregular\tO\nTextReader B-Class TextReader O\n,\tO\t,\tO\nthen\tO\tthen\tO\nDeserialize B-Function Deserialize O\nusing\tO\tusing\tO\nJsonConvert B-Class JsonConvert O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6333 I-Code_Block A_6333 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31673914\tO\t31673914\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31673914/\tO\thttps://stackoverflow.com/questions/31673914/\tO\n\t\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\njust\tO\tjust\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\nstring B-Code_Block string B-Code_Block\nmyString I-Code_Block myString I-Code_Block\n= I-Code_Block = I-Code_Block\nreader.ReadAsString() I-Code_Block reader.ReadAsString() I-Code_Block\n; I-Code_Block ; I-Code_Block\nThe\tO\tThe\tO\nJson B-Class Json O\nSerializer I-Class Serializer O\ntries\tO\ttries\tO\nto\tO\tto\tO\nread\tO\tread\tO\na\tO\ta\tO\nstring B-Data_Type string O\nthere\tO\tthere\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nrecognizes\tO\trecognizes\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nan\tO\tan\tO\nArray B-Data_Structure Array O\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread\tO\tread\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4524 I-Code_Block A_4524 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nit\tO\tit\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncorrect\tO\tcorrect\tO\ntype\tO\ttype\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ngeneric\tO\tgeneric\tO\nDeserialze B-Function Deserialze O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nDeserialize B-Function Deserialize O\n.\tO\t.\tO\n\t\nthan\tO\tthan\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nspecifiy\tO\tspecifiy\tO\nthe\tO\tthe\tO\ndeserialization\tO\tdeserialization\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4525 I-Code_Block A_4525 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEdit\tO\tEdit\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncomment\tO\tcomment\tO\n:\tO\t:\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreuse\tO\treuse\tO\na\tO\ta\tO\nJsonReader B-Class JsonReader O\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nreader B-Variable reader O\nfrom\tO\tfrom\tO\na\tO\ta\tO\nJObject B-Class JObject O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4526 I-Code_Block A_4526 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nExample\tO\tExample\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nUsing\tO\tUsing\tO\nJToken.CreateReader B-Function JToken.CreateReader O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nNewtonsoft B-Website Newtonsoft O\nHelp\tO\tHelp\tO\nPage\tO\tPage\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37488678\tO\t37488678\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37488678/\tO\thttps://stackoverflow.com/questions/37488678/\tO\n\t\n\t\nIf\tO\tIf\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nhas\tO\thas\tO\nauthenticated\tO\tauthenticated\tO\n,\tO\t,\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\nhave\tO\thave\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\nit\tO\tit\tO\n,\tO\t,\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nreturning\tO\treturning\tO\ntrue\tO\ttrue\tB-Code_Block\nfor\tO\tfor\tO\nreq.isAuthenticated() B-Function req.isAuthenticated() B-Code_Block\n?\tO\t?\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\nthen\tO\tthen\tO\n?\tO\t?\tO\n\t\nShould\tO\tShould\tO\nn't\tO\tn't\tO\nI\tO\tI\tO\nbe\tO\tbe\tO\nfine\tO\tfine\tO\njust\tO\tjust\tO\nchecking\tO\tchecking\tO\nif\tO\tif\tO\nreq.user B-Class req.user O\nexists\tO\texists\tO\n,\tO\t,\tO\nin\tO\tin\tO\nterms\tO\tterms\tO\nof\tO\tof\tO\nmaking\tO\tmaking\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13310925\tO\t13310925\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13310925/\tO\thttps://stackoverflow.com/questions/13310925/\tO\n\t\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\ninheriting\tO\tinheriting\tO\nIDispatch B-Class IDispatch O\ndirectly\tO\tdirectly\tO\n(\tO\t(\tO\nIMyInterface B-Class IMyInterface O\n:\tO\t:\tO\nIDispatch B-Class IDispatch O\n)\tO\t)\tO\nand\tO\tand\tO\ndeclaring\tO\tdeclaring\tO\ninterface\tO\tinterface\tO\ntype\tO\ttype\tO\n[\tO\t[\tO\nInterfaceType(ComInterfaceType.InterfaceIsIDispatch) B-Class InterfaceType(ComInterfaceType.InterfaceIsIDispatch) O\n]\tO\t]\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46309927\tO\t46309927\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46309927/\tO\thttps://stackoverflow.com/questions/46309927/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nnoticed\tO\tnoticed\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nworksheet_change B-Function worksheet_change O\nfunction\tO\tfunction\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ntarget\tO\ttarget\tO\naddress\tO\taddress\tO\nis\tO\tis\tO\na\tO\ta\tO\ndrop B-User_Interface_Element drop O\ndown I-User_Interface_Element down O\n(\tO\t(\tO\ndata\tO\tdata\tO\nvalidation\tO\tvalidation\tO\n-\tO\t-\tO\npulled\tO\tpulled\tO\nfrom\tO\tfrom\tO\ntable B-Data_Structure table O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nsuccessfully\tO\tsuccessfully\tO\n?\tO\t?\tO\n\t\nExample\tO\tExample\tO\n(\tO\t(\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6079 I-Code_Block Q_6079 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46309927\tO\t46309927\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46309927/\tO\thttps://stackoverflow.com/questions/46309927/\tO\n\t\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\neither\tO\teither\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\nworksheet B-User_Interface_Element worksheet O\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\ndropdown B-User_Interface_Element dropdown O\nis\tO\tis\tO\nin\tO\tin\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nsheet B-User_Interface_Element sheet O\nthan\tO\tthan\tO\nwhere\tO\twhere\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nputting\tO\tputting\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nSheet1 B-File_Name Sheet1 O\nand\tO\tand\tO\nmake\tO\tmake\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\n\"\tO\t\"\tO\nG8 B-Variable G8 O\n\"\tO\t\"\tO\non\tO\ton\tO\nSheet1 B-File_Name Sheet1 O\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nhappens\tO\thappens\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6707 I-Code_Block A_6707 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\ncode\tO\tcode\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nthen\tO\tthen\tO\ntry\tO\ttry\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nbeleive\tO\tbeleive\tO\nyour\tO\tyour\tO\nsheet4.conditions B-Code_Block sheet4.conditions B-Code_Block\nhas\tO\thas\tO\nissues\tO\tissues\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36707052\tO\t36707052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36707052/\tO\thttps://stackoverflow.com/questions/36707052/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbeen\tO\tbeen\tO\nstruggling\tO\tstruggling\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nand\tO\tand\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nI\tO\tI\tO\n've\tO\t've\tO\na\tO\ta\tO\nfooter B-User_Interface_Element footer O\nthat\tO\tthat\tO\n's\tO\t's\tO\nfull\tO\tfull\tO\nwidth\tO\twidth\tO\n.\tO\t.\tO\n\t\nInside\tO\tInside\tO\nit\tO\tit\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nI\tO\tI\tO\nlist B-User_Interface_Element list O\nof\tO\tof\tO\nmessages\tO\tmessages\tO\nand\tO\tand\tO\nright\tO\tright\tO\nnext\tO\tnext\tO\nto\tO\tto\tO\nits\tO\tits\tO\nleft\tO\tleft\tO\nan\tO\tan\tO\nicon B-User_Interface_Element icon O\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nFont B-Library Font O\nAwesome I-Library Awesome O\nicon B-User_Interface_Element icon O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmessage\tO\tmessage\tO\nlist B-User_Interface_Element list O\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncentered\tO\tcentered\tO\nboth\tO\tboth\tO\nvertically\tO\tvertically\tO\nand\tO\tand\tO\nhorizontally\tO\thorizontally\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nicon B-User_Interface_Element icon O\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ncentered\tO\tcentered\tO\nvertically\tO\tvertically\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\nul B-HTML_XML_Tag ul O\nelements\tO\telements\tO\nwith\tO\twith\tO\ndisplay B-Code_Block display O\n: I-Code_Block : O\ninline-block I-Code_Block inline-block O\nand\tO\tand\tO\ntext-align B-Code_Block text-align O\n: I-Code_Block : O\ncenter I-Code_Block center O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nmessages\tO\tmessages\tO\ndisplays\tO\tdisplays\tO\ncorrectly\tO\tcorrectly\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nicon B-User_Interface_Element icon O\nis\tO\tis\tO\nstuck\tO\tstuck\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nplace\tO\tplace\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nits\tO\tits\tO\ncontainer B-User_Interface_Element container O\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n've\tO\t've\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4518 I-Code_Block Q_4518 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\ncss B-Language css O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4519 I-Code_Block Q_4519 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhttps://jsfiddle.net/b1rw80jz/1/\tO\thttps://jsfiddle.net/b1rw80jz/1/\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\naccomplish\tO\taccomplish\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36707052\tO\t36707052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36707052/\tO\thttps://stackoverflow.com/questions/36707052/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nflex-box\tO\tflex-box\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\n+CSS B-Language +CSS O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5260 I-Code_Block A_5260 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n+HTML B-Language +HTML O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5261 I-Code_Block A_5261 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDemo\tO\tDemo\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36707052\tO\t36707052\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36707052/\tO\thttps://stackoverflow.com/questions/36707052/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nicon B-User_Interface_Element icon O\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\npseudo-elements::before\tO\tpseudo-elements::before\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbell\tO\tbell\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5265 I-Code_Block A_5265 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhttps://jsfiddle.net/b1rw80jz/6/\tO\thttps://jsfiddle.net/b1rw80jz/6/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34165878\tO\t34165878\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34165878/\tO\thttps://stackoverflow.com/questions/34165878/\tO\n\t\n\t\nDoes\tO\tDoes\tO\nthis\tO\tthis\tO\nsimple\tO\tsimple\tO\nwalkthrough\tO\twalkthrough\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nanyone\tO\tanyone\tO\nelse\tO\telse\tO\n?\tO\t?\tO\n\t\nDoes\tO\tDoes\tO\nn't\tO\tn't\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nError\tO\tError\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nComponentGroup\tO\tComponentGroup\tO\nelement\tO\telement\tO\ncontains\tO\tcontains\tO\nan\tO\tan\tO\nunexpected\tO\tunexpected\tO\nchild\tO\tchild\tO\nelement\tO\telement\tO\n' B-Value ' O\nFile I-Value File O\n' B-Value ' O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\nwalkthrough\tO\twalkthrough\tO\nout\tO\tout\tO\nof\tO\tof\tO\ndate\tO\tdate\tO\n,\tO\t,\tO\ninvalid\tO\tinvalid\tO\nor\tO\tor\tO\nam\tO\tam\tO\nI\tO\tI\tO\npossibly\tO\tpossibly\tO\njust\tO\tjust\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nstupid\tO\tstupid\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nWiX B-Application WiX O\nI\tO\tI\tO\nhave\tO\thave\tO\ninstalled\tO\tinstalled\tO\nis\tO\tis\tO\n3.10 B-Version 3.10 O\n.\tO\t.\tO\nand\tO\tand\tO\nVisual B-Application Visual O\nStudio I-Application Studio O\n2015 B-Version 2015 O\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nCreating\tO\tCreating\tO\na\tO\ta\tO\nSimple\tO\tSimple\tO\nSetup\tO\tSetup\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34165878\tO\t34165878\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34165878/\tO\thttps://stackoverflow.com/questions/34165878/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nmissed\tO\tmissed\tO\nthe\tO\tthe\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\ncomponent B-HTML_XML_Tag component O\ntag\tO\ttag\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nFile B-HTML_XML_Tag File O\ntag\tO\ttag\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\nadded\tO\tadded\tO\nunderneath\tO\tunderneath\tO\nthe\tO\tthe\tO\nComponent B-HTML_XML_Tag Component O\ntag\tO\ttag\tO\n.\tO\t.\tO\n\t\nThink\tO\tThink\tO\nof\tO\tof\tO\nComponents B-HTML_XML_Tag Components O\nas\tO\tas\tO\ncontainers\tO\tcontainers\tO\nfor\tO\tfor\tO\nanything\tO\tanything\tO\nthat\tO\tthat\tO\ngets\tO\tgets\tO\ndeployed\tO\tdeployed\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4880 I-Code_Block A_4880 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32147112\tO\t32147112\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32147112/\tO\thttps://stackoverflow.com/questions/32147112/\tO\n\t\n\t\nMy\tO\tMy\tO\nskill\tO\tskill\tO\nlevel\tO\tlevel\tO\n:\tO\t:\tO\nBeginner\tO\tBeginner\tO\n\t\nCode\tO\tCode\tO\n:\tO\t:\tO\nC# B-Language C# O\n(\tO\t(\tO\nwpf B-Library wpf O\n)\tO\t)\tO\n\t\nHardware\tO\tHardware\tO\n:\tO\t:\tO\nDell B-Device Dell O\nVenue I-Device Venue O\n11 B-Version 11 O\nPro I-Version Pro O\ntablet B-Device tablet O\n(\tO\t(\tO\nwindows B-Operating_System windows O\n8.1 B-Version 8.1 O\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nlocation\tO\tlocation\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncomputer B-Device computer O\nvia\tO\tvia\tO\ncellular B-Device cellular O\ntriangulation\tO\ttriangulation\tO\nin\tO\tin\tO\ncoordinates(latitude/longitude)\tO\tcoordinates(latitude/longitude)\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nlink\tO\tlink\tO\nas\tO\tas\tO\na\tO\ta\tO\nreference\tO\treference\tO\n(\tO\t(\tO\nGetting\tO\tGetting\tO\nGPS B-Device GPS O\ncoordinates\tO\tcoordinates\tO\non\tO\ton\tO\nWindows B-Operating_System Windows O\nphone B-Device phone O\n7 B-Version 7 O\n)\tO\t)\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\npull\tO\tpull\tO\nthe\tO\tthe\tO\nlat/lon\tO\tlat/lon\tO\ncoordinates\tO\tcoordinates\tO\nfrom\tO\tfrom\tO\nWindows B-Application Windows O\nLocation I-Application Location O\nServices I-Application Services O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nverified\tO\tverified\tO\nthat\tO\tthat\tO\nWindows B-Application Windows O\nLocation I-Application Location O\nServices I-Application Services O\nis\tO\tis\tO\nreceiving\tO\treceiving\tO\nthe\tO\tthe\tO\ncoordinates\tO\tcoordinates\tO\nvia\tO\tvia\tO\ncell B-Device cell O\ntower\tO\ttower\tO\ntriangulation\tO\ttriangulation\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nthe\tO\tthe\tO\ncoordinates\tO\tcoordinates\tO\nare\tO\tare\tO\nlisted\tO\tlisted\tO\nas\tO\tas\tO\n\" B-Value \" O\nNaN I-Value NaN O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nhere\tO\there\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3897 I-Code_Block Q_3897 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32147112\tO\t32147112\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32147112/\tO\thttps://stackoverflow.com/questions/32147112/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nposition\tO\tposition\tO\nonce\tO\tonce\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\ncontinous\tO\tcontinous\tO\nupdate\tO\tupdate\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreplace\tO\treplace\tO\nStart B-Function Start B-Code_Block\nwith\tO\twith\tO\nTryStart B-Function TryStart B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5072 I-Code_Block A_5072 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nKeep\tO\tKeep\tO\nin\tO\tin\tO\nmind\tO\tmind\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nreturns\tO\treturns\tO\nsynchronously\tO\tsynchronously\tO\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbest\tO\tbest\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nin\tO\tin\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24571244\tO\t24571244\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24571244/\tO\thttps://stackoverflow.com/questions/24571244/\tO\n\t\n\t\nIs\tO\tIs\tO\nthe\tO\tthe\tO\nisChecked() B-Function isChecked() B-Code_Block\nmethod\tO\tmethod\tO\nDeprecated\tO\tDeprecated\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncoding\tO\tcoding\tO\nfor\tO\tfor\tO\nandroid B-Operating_System android O\nUI\tO\tUI\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nUiAutomator B-Library UiAutomator O\nFramework\tO\tFramework\tO\nthere\tO\tthere\tO\nthis\tO\tthis\tO\nmathod\tO\tmathod\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndisplayed\tO\tdisplayed\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\none\tO\tone\tO\nuiobject B-Class uiobject B-Code_Block\nthrough\tO\tthrough\tO\nisChecked() B-Function isChecked() B-Code_Block\nwhether\tO\twhether\tO\nit\tO\tit\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n.\tO\t.\tO\n\t\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nlink\tO\tlink\tO\ni\tO\ti\tO\ncame\tO\tcame\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nit\tO\tit\tO\nis\tO\tis\tO\nDeprecated\tO\tDeprecated\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nwe\tO\twe\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\ngetValue() B-Function getValue() B-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2748 I-Code_Block Q_2748 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCode\tO\tCode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2749 I-Code_Block Q_2749 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ngetValue B-Function getValue B-Code_Block\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\ndisplaying\tO\tdisplaying\tO\ni.e\tO\ti.e\tO\nnotavaible\tO\tnotavaible\tO\nfor\tO\tfor\tO\nuse\tO\tuse\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\nand\tO\tand\tO\nisChecked() B-Function isChecked() B-Code_Block\nis\tO\tis\tO\nalways\tO\talways\tO\nreturning\tO\treturning\tO\nfalse B-Value false B-Code_Block\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nany\tO\tany\tO\none\tO\tone\tO\ngive\tO\tgive\tO\nany\tO\tany\tO\nsuggestion\tO\tsuggestion\tO\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24571244\tO\t24571244\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24571244/\tO\thttps://stackoverflow.com/questions/24571244/\tO\n\t\n\t\nI\tO\tI\tO\nguess\tO\tguess\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nreferring\tO\treferring\tO\nto\tO\tto\tO\na\tO\ta\tO\nwrong\tO\twrong\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ncheck\tO\tcheck\tO\nthis\tO\tthis\tO\nLink\tO\tLink\tO\nfor\tO\tfor\tO\nUIObject B-Class UIObject O\nclass\tO\tclass\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nisChecked() B-Function isChecked() B-Code_Block\nis\tO\tis\tO\ndeprecated\tO\tdeprecated\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nonly\tO\tonly\tO\non\tO\ton\tO\nan\tO\tan\tO\nUI B-Class UI O\nObject I-Class Object O\nwho\tO\twho\tO\n's\tO\t's\tO\nnode\tO\tnode\tO\ndetail\tO\tdetail\tO\n' B-Code_Block ' B-Code_Block\ncheckable'=>true I-Code_Block checkable'=>true I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24571244\tO\t24571244\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24571244/\tO\thttps://stackoverflow.com/questions/24571244/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nsimilar\tO\tsimilar\tO\nproblem\tO\tproblem\tO\nexcept\tO\texcept\tO\nandroid B-Application android O\nstudio I-Application studio O\nwont\tO\twont\tO\neven\tO\teven\tO\naccept\tO\taccept\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nCheckedTextView B-Class CheckedTextView O\nand\tO\tand\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nput\tO\tput\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3864 I-Code_Block A_3864 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nandroid B-Application android O\nstudio I-Application studio O\ntells\tO\ttells\tO\nme\tO\tme\tO\n\"\tO\t\"\tO\ncannot\tO\tcannot\tO\nresolve\tO\tresolve\tO\nmethod\tO\tmethod\tO\nisChecked()\" B-Function isChecked()\" O\nbut\tO\tbut\tO\nhas\tO\thas\tO\nplenty\tO\tplenty\tO\nof\tO\tof\tO\nother\tO\tother\tO\nsuggestions\tO\tsuggestions\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nsuspiciously\tO\tsuspiciously\tO\nisChecked() B-Function isChecked() O\nis\tO\tis\tO\nthe\tO\tthe\tO\nonly\tO\tonly\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nno\tO\tno\tO\ndescription\tO\tdescription\tO\nbesides\tO\tbesides\tO\nthe\tO\tthe\tO\nsignature\tO\tsignature\tO\n.\tO\t.\tO\n\t\nhttp://developer.android.com/reference/android/widget/CheckedTextView.html#isChecked()\tO\thttp://developer.android.com/reference/android/widget/CheckedTextView.html#isChecked()\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22274295\tO\t22274295\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22274295/\tO\thttps://stackoverflow.com/questions/22274295/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\naccept\tO\taccept\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nname\tO\tname\tO\nthrough\tO\tthrough\tO\nan\tO\tan\tO\nApplescript B-Language Applescript O\nscript\tO\tscript\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\naccomplished\tO\taccomplished\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nam\tO\tam\tO\nthinking\tO\tthinking\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nsaved\tO\tsaved\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nbecause\tO\tbecause\tO\nthats\tO\tthats\tO\nall\tO\tall\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nand\tO\tand\tO\nhave\tO\thave\tO\nanother\tO\tanother\tO\npiece\tO\tpiece\tO\nof\tO\tof\tO\nscript\tO\tscript\tO\nactivate\tO\tactivate\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\nfrom\tO\tfrom\tO\nthat\tO\tthat\tO\npoint\tO\tpoint\tO\nand\tO\tand\tO\nretrieve\tO\tretrieve\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\naccept\tO\taccept\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nscript\tO\tscript\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nrun\tO\trun\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22274295\tO\t22274295\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22274295/\tO\thttps://stackoverflow.com/questions/22274295/\tO\n\t\n\t\nAppleScript B-Language AppleScript O\nOverview\tO\tOverview\tO\n\t\n|\tO\t|\tO\nScripting\tO\tScripting\tO\nwith\tO\twith\tO\nAppleScript B-Language AppleScript O\n\t\nOne\tO\tOne\tO\nway\tO\tway\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nproperties\tO\tproperties\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3017 I-Code_Block A_3017 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nproperty-value\tO\tproperty-value\tO\nis\tO\tis\tO\nstored\tO\tstored\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ncompiled\tO\tcompiled\tO\nscript\tO\tscript\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nalso\tO\talso\tO\nworks\tO\tworks\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nis\tO\tis\tO\nsaved\tO\tsaved\tO\nas\tO\tas\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nOpening\tO\tOpening\tO\nand\tO\tand\tO\nrecompiling\tO\trecompiling\tO\nit\tO\tit\tO\nin\tO\tin\tO\nAppleScript B-Application AppleScript O\nEditor I-Application Editor O\nresets\tO\tresets\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35501245\tO\t35501245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35501245/\tO\thttps://stackoverflow.com/questions/35501245/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nhigh B-Library high O\nchart I-Library chart O\nwith\tO\twith\tO\ncodeigniter B-Library codeigniter O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\nat\tO\tat\tO\nhttp://blueflame-software.com/using-highcharts-with-codeigniter/\tO\thttp://blueflame-software.com/using-highcharts-with-codeigniter/\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\neach\tO\teach\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\npreview\tO\tpreview\tO\nmy\tO\tmy\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\n,\tO\t,\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nempty\tO\tempty\tO\nscreen\tO\tscreen\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nresult\tO\tresult\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ncan\tO\tcan\tO\nsome\tO\tsome\tO\non\tO\ton\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nto\tO\tto\tO\nresolve\tO\tresolve\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\non\tO\ton\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nsometime\tO\tsometime\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nyet\tO\tyet\tO\nno\tO\tno\tO\npositive\tO\tpositive\tO\nresult\tO\tresult\tO\n\t\nAlso\tO\tAlso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\nshown\tO\tshown\tO\nhere\tO\there\tO\non\tO\ton\tO\nstack B-Website stack O\noverflow I-Website overflow O\n,\tO\t,\tO\nyet\tO\tyet\tO\nnothing\tO\tnothing\tO\nstill\tO\tstill\tO\ndisplay\tO\tdisplay\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\nwhen\tO\twhen\tO\nI\tO\tI\tO\nview\tO\tview\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35501245\tO\t35501245\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35501245/\tO\thttps://stackoverflow.com/questions/35501245/\tO\n\t\n\t\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nlibrary\tO\tlibrary\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nsteps\tO\tsteps\tO\nare\tO\tare\tO\nquite\tO\tquite\tO\nlarger\tO\tlarger\tO\nto\tO\tto\tO\ndescribe\tO\tdescribe\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nlinks\tO\tlinks\tO\n\t\nhttps://blueflame-software.com/using-highcharts-with-codeigniter/\tO\thttps://blueflame-software.com/using-highcharts-with-codeigniter/\tO\n\t\nhttps://blueflame-software.com/using-highcharts-with-codeigniter/\tO\thttps://blueflame-software.com/using-highcharts-with-codeigniter/\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15750354\tO\t15750354\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15750354/\tO\thttps://stackoverflow.com/questions/15750354/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nsearch\tO\tsearch\tO\nquery\tO\tquery\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nSoundCloud B-Library SoundCloud O\nAPI I-Library API O\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\ntheir\tO\ttheir\tO\nJavaScript B-Library JavaScript O\nSDK I-Library SDK O\n,\tO\t,\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nworks\tO\tworks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1558 I-Code_Block Q_1558 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nquery\tO\tquery\tO\nusing\tO\tusing\tO\ncURL B-Library cURL O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1559 I-Code_Block Q_1559 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nsays\tO\tsays\tO\n<error>401 B-HTML_XML_Tag <error>401 B-Code_Block\n- B-Error_Name - I-Code_Block\nUnauthorized</error> I-Error_Name Unauthorized</error> I-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nparams\tO\tparams\tO\nhttp://api.soundcloud.com/tracks?client_id=xxxx&q=punk B-Code_Block http://api.soundcloud.com/tracks?client_id=xxxx&q=punk B-Code_Block\nit\tO\tit\tO\nwill\tO\twill\tO\ndisregard\tO\tdisregard\tO\nthe\tO\tthe\tO\nq B-Variable q B-Code_Block\nparam\tO\tparam\tO\nand\tO\tand\tO\nrespond\tO\trespond\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\ntrack\tO\ttrack\tO\nlisting\tO\tlisting\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nway\tO\tway\tO\nto\tO\tto\tO\nquery\tO\tquery\tO\nthe\tO\tthe\tO\ntracks\tO\ttracks\tO\nendpoint\tO\tendpoint\tO\nfrom\tO\tfrom\tO\ncURL B-Library cURL O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15750354\tO\t15750354\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15750354/\tO\thttps://stackoverflow.com/questions/15750354/\tO\n\t\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\nnothing\tO\tnothing\tO\nincorrect\tO\tincorrect\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nURL\tO\tURL\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngetting\tO\tgetting\tO\na\tO\ta\tO\n401 B-Error_Name 401 O\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\ninvalid\tO\tinvalid\tO\nclient B-Variable client O\nid I-Variable id O\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ndouble\tO\tdouble\tO\ncheck\tO\tcheck\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nclient B-Variable client O\nid I-Variable id O\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\nwhen\tO\twhen\tO\ninitializing\tO\tinitializing\tO\nthe\tO\tthe\tO\nJavaScript B-Library JavaScript O\nSDK I-Library SDK O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nclient B-Variable client O\nid I-Variable id O\nof\tO\tof\tO\none\tO\tone\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ntest\tO\ttest\tO\napps\tO\tapps\tO\n:\tO\t:\tO\n\t\ncurl B-Code_Block curl B-Code_Block\n\" I-Code_Block \" I-Code_Block\nhttps://api.soundcloud.com/tracks?q=track&client_id=aeb03ac55f278fc7e579c744144b1d5d I-Code_Block https://api.soundcloud.com/tracks?q=track&client_id=aeb03ac55f278fc7e579c744144b1d5d I-Code_Block\n\t\nThe\tO\tThe\tO\norder\tO\torder\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nparameters\tO\tparameters\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nquerystring\tO\tquerystring\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nno\tO\tno\tO\neffect\tO\teffect\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n38003153\tO\t38003153\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38003153/\tO\thttps://stackoverflow.com/questions/38003153/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\nsimple\tO\tsimple\tO\nsql B-Language sql O\nto\tO\tto\tO\nconvert\tO\tconvert\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsql B-Language sql O\nquery\tO\tquery\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\ncolumn B-Data_Structure column O\nvalues\tO\tvalues\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4786 I-Code_Block Q_4786 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhich\tO\twhich\tO\nreturns\tO\treturns\tO\nme\tO\tme\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4787 I-Code_Block Q_4787 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhat\tO\twhat\tO\nI\tO\tI\tO\nactually\tO\tactually\tO\nwant\tO\twant\tO\nis\tO\tis\tO\nto\tO\tto\tO\nappend\tO\tappend\tO\nsomething\tO\tsomething\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nquery\tO\tquery\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nreturn\tO\treturn\tO\nme\tO\tme\tO\nsame\tO\tsame\tO\nrecord\tO\trecord\tO\nbut\tO\tbut\tO\ncertain\tO\tcertain\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\ntimes\tO\ttimes\tO\nwith\tO\twith\tO\none\tO\tone\tO\ndiffering\tO\tdiffering\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4788 I-Code_Block Q_4788 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nor\tO\tor\tO\nguidance\tO\tguidance\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nP.S\tO\tP.S\tO\n.\tO\t.\tO\nIf\tO\tIf\tO\nanyone\tO\tanyone\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nit\tO\tit\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nin\tO\tin\tO\nc# B-Language c# O\nwith\tO\twith\tO\nsql B-Language sql O\nmapping\tO\tmapping\tO\nto\tO\tto\tO\nobject\tO\tobject\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\nas\tO\tas\tO\nwell.Thanks\tO\twell.Thanks\tO\nalot\tO\talot\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38003153\tO\t38003153\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38003153/\tO\thttps://stackoverflow.com/questions/38003153/\tO\n\t\n\t\nYou\tO\tYou\tO\n've\tO\t've\tO\nnot\tO\tnot\tO\nstated\tO\tstated\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\n'\tO\t'\tO\nx B-Variable x O\n'\tO\t'\tO\n,\tO\t,\tO\n'\tO\t'\tO\ny B-Variable y O\n'\tO\t'\tO\nand\tO\tand\tO\n'\tO\t'\tO\nz B-Variable z O\n'\tO\t'\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ntypically\tO\ttypically\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nfrom\tO\tfrom\tO\nanother\tO\tanother\tO\ntable B-Data_Structure table O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nwhich\tO\twhich\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nmake\tO\tmake\tO\nanother\tO\tanother\tO\ntable B-Data_Structure table O\nand\tO\tand\tO\njoin\tO\tjoin\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nevery\tO\tevery\tO\nrow B-Data_Structure row O\nin\tO\tin\tO\nthe\tO\tthe\tO\n2nd\tO\t2nd\tO\ntable B-Data_Structure table O\njoins\tO\tjoins\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nrow B-Data_Structure row O\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable B-Data_Structure table O\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ndescribed\tO\tdescribed\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5477 I-Code_Block A_5477 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nResult\tO\tResult\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5478 I-Code_Block A_5478 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n38003153\tO\t38003153\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/38003153/\tO\thttps://stackoverflow.com/questions/38003153/\tO\n\t\n\t\nWell\tO\tWell\tO\nok\tO\tok\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nsome\tO\tsome\tO\nSQL B-Language SQL O\nmagic\tO\tmagic\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5476 I-Code_Block A_5476 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\n(\tO\t(\tO\nimplicit\tO\timplicit\tO\n)\tO\t)\tO\ncross\tO\tcross\tO\njoin\tO\tjoin\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncartesian\tO\tcartesian\tO\nproduct\tO\tproduct\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsingle\tO\tsingle\tO\n@alphabets\tO\t@alphabets\tB-Code_Block\nrow B-Data_Structure row O\nand\tO\tand\tO\nthe\tO\tthe\tO\nthree\tO\tthree\tO\nxyz B-Variable xyz B-Code_Block\nrows B-Data_Structure rows O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36957144\tO\t36957144\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36957144/\tO\thttps://stackoverflow.com/questions/36957144/\tO\n\t\n\t\nProject\tO\tProject\tO\nStructure\tO\tStructure\tO\n(\tO\t(\tO\nsrc\tO\tsrc\tO\ncontains\tO\tcontains\tO\nreact\tO\treact\tO\ncomponent\tO\tcomponent\tO\nclasses\tO\tclasses\tO\nusing\tO\tusing\tO\njsx B-Language jsx O\nsyntax\tO\tsyntax\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4568 I-Code_Block Q_4568 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCommand\tO\tCommand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\n:\tO\t:\tO\nbabel B-Code_Block babel B-Code_Block\nsrc I-Code_Block src I-Code_Block\n--out-dir I-Code_Block --out-dir I-Code_Block\nlib I-Code_Block lib I-Code_Block\n\t\nAnd\tO\tAnd\tO\nhere\tO\there\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4569 I-Code_Block Q_4569 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhere\tO\there\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\ntop\tO\ttop\tO\nbabel B-Library babel O\ndevDependencies\tO\tdevDependencies\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nincluding\tO\tincluding\tO\nplugins\tO\tplugins\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4570 I-Code_Block Q_4570 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCould\tO\tCould\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nlegitimate\tO\tlegitimate\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nbabel B-Library babel O\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nperhaps\tO\tperhaps\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nnode B-Library node O\nversion\tO\tversion\tO\n,\tO\t,\tO\ndependency\tO\tdependency\tO\nversion\tO\tversion\tO\n?\tO\t?\tO\n\t\nAny\tO\tAny\tO\nthoughts\tO\tthoughts\tO\nor\tO\tor\tO\nadvice\tO\tadvice\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36957144\tO\t36957144\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36957144/\tO\thttps://stackoverflow.com/questions/36957144/\tO\n\t\n\t\nRealized\tO\tRealized\tO\nthat\tO\tthat\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\nof\tO\tof\tO\nnode_modules\tO\tnode_modules\tO\nsomehow\tO\tsomehow\tO\nmade\tO\tmade\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nmy\tO\tmy\tO\nsrc\tO\tsrc\tO\nfolder\tO\tfolder\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nbabel B-Library babel O\nwas\tO\twas\tO\nrunning\tO\trunning\tO\nagainst\tO\tagainst\tO\nall\tO\tall\tO\nof\tO\tof\tO\nnode_modules B-Class node_modules O\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nsimplified\tO\tsimplified\tO\nmy\tO\tmy\tO\nbabel.rc B-File_Name babel.rc O\nfile\tO\tfile\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nthis\tO\tthis\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5296 I-Code_Block A_5296 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAfter\tO\tAfter\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nwas\tO\twas\tO\neither\tO\teither\tO\nfrom\tO\tfrom\tO\nbabel B-Library babel O\nrunning\tO\trunning\tO\naginst\tO\taginst\tO\nsomething\tO\tsomething\tO\nweird\tO\tweird\tO\nin\tO\tin\tO\nnode_modules B-Class node_modules O\nor\tO\tor\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmany\tO\tmany\tO\nplugins\tO\tplugins\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nmanually\tO\tmanually\tO\nspecified\tO\tspecified\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\nis\tO\tis\tO\nstill\tO\tstill\tO\nreally\tO\treally\tO\nconfusing\tO\tconfusing\tO\nbut\tO\tbut\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nany\tO\tany\tO\nfault\tO\tfault\tO\nof\tO\tof\tO\nbabel B-Library babel O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37790195\tO\t37790195\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37790195/\tO\thttps://stackoverflow.com/questions/37790195/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nthat\tO\tthat\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\nto\tO\tto\tO\na\tO\ta\tO\nMongoDB B-Library MongoDB O\ncollection\tO\tcollection\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\nname\tO\tname\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\noptions\tO\toptions\tO\nbefore\tO\tbefore\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\n1)\tO\t1)\tO\nAttribute\tO\tAttribute\tO\n\t\nI\tO\tI\tO\ndecorate\tO\tdecorate\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nattribute\tO\tattribute\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nreflection\tO\treflection\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\ninside\tO\tinside\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\ncache\tO\tcache\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tB-Code_Block\nto\tO\tto\tO\navoid\tO\tavoid\tO\nfuture\tO\tfuture\tO\nlookups\tO\tlookups\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4747 I-Code_Block Q_4747 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n2)\tO\t2)\tO\nStatic\tO\tStatic\tO\nProperty\tO\tProperty\tO\n\t\nHere\tO\tHere\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nstatic B-Data_Type static O\nproperty\tO\tproperty\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\nthat\tO\tthat\tO\ncontains\tO\tcontains\tO\nthe\tO\tthe\tO\ncollection\tO\tcollection\tO\nname\tO\tname\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4748 I-Code_Block Q_4748 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nfind\tO\tfind\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\ninclined\tO\tinclined\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nformer\tO\tformer\tO\nas\tO\tas\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nand\tO\tand\tO\nfeels\tO\tfeels\tO\ncleaner\tO\tcleaner\tO\nbut\tO\tbut\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsenior\tO\tsenior\tO\ndevs\tO\tdevs\tO\nhere\tO\there\tO\nare\tO\tare\tO\nturning\tO\tturning\tO\ntheir\tO\ttheir\tO\nnose\tO\tnose\tO\nup\tO\tup\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nreflection\tO\treflection\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\ncase\tO\tcase\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmade\tO\tmade\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\noption\tO\toption\tO\nor\tO\tor\tO\nis\tO\tis\tO\nit\tO\tit\tO\njust\tO\tjust\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nwith\tO\twith\tO\noption\tO\toption\tO\n2\tO\t2\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37790195\tO\t37790195\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37790195/\tO\thttps://stackoverflow.com/questions/37790195/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nclear\tO\tclear\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\nmetadata\tO\tmetadata\tO\nvs\tO\tvs\tO\n.\tO\t.\tO\ndata\tO\tdata\tO\n:\tO\t:\tO\n\t\nOption\tO\tOption\tO\n1\tO\t1\tO\n:\tO\t:\tO\nAttributes\tO\tAttributes\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nhold\tO\thold\tO\nmetadata\tO\tmetadata\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nentities\tO\tentities\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nattached\tO\tattached\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nOption\tO\tOption\tO\n2\tO\t2\tO\n:\tO\t:\tO\nmember\tO\tmember\tO\nfields\tO\tfields\tO\nand\tO\tand\tO\nproperties\tO\tproperties\tO\n,\tO\t,\tO\nregardless\tO\tregardless\tO\nif\tO\tif\tO\ninstance\tO\tinstance\tO\nor\tO\tor\tO\nstatic B-Data_Type static O\n,\tO\t,\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nhold\tO\thold\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nmake\tO\tmake\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nintegral\tO\tintegral\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nHence\tO\tHence\tO\n,\tO\t,\tO\noption\tO\toption\tO\n1\tO\t1\tO\n,\tO\t,\tO\nattributes\tO\tattributes\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\napproach\tO\tapproach\tO\nto\tO\tto\tO\nrepresent\tO\trepresent\tO\nmetadata\tO\tmetadata\tO\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\nof\tO\tof\tO\nreflection\tO\treflection\tO\nis\tO\tis\tO\na\tO\ta\tO\nmere\tO\tmere\tO\ntechnicality\tO\ttechnicality\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nencapsulated\tO\tencapsulated\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nan\tO\tan\tO\nAttributeManager B-Class AttributeManager B-Code_Block\n,\tO\t,\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nease\tO\tease\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nmetadata\tO\tmetadata\tO\nand\tO\tand\tO\ncache\tO\tcache\tO\nthem\tO\tthem\tO\nappropriately\tO\tappropriately\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nperformance\tO\tperformance\tO\noverhead\tO\toverhead\tO\n(\tO\t(\tO\nshould\tO\tshould\tO\nthat\tO\tthat\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nin\tO\tin\tO\na\tO\ta\tO\nparticular\tO\tparticular\tO\ncase\tO\tcase\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5626311\tO\t5626311\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5626311/\tO\thttps://stackoverflow.com/questions/5626311/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nat\tO\tat\tO\na\tO\ta\tO\nclient B-Application client O\nsite\tO\tsite\tO\nwhere\tO\twhere\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nwhich\tO\twhich\tO\nbegan\tO\tbegan\tO\nin\tO\tin\tO\nSharePoint B-Application SharePoint O\nand\tO\tand\tO\nis\tO\tis\tO\nslowly\tO\tslowly\tO\nmigrating\tO\tmigrating\tO\naway\tO\taway\tO\nto\tO\tto\tO\na\tO\ta\tO\nvery\tO\tvery\tO\ncustom\tO\tcustom\tO\nASP.NET B-Library ASP.NET O\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nof\tO\tof\tO\ntheir\tO\ttheir\tO\ndata\tO\tdata\tO\nelements\tO\telements\tO\nare\tO\tare\tO\nstill\tO\tstill\tO\nhosted\tO\thosted\tO\nwithin\tO\twithin\tO\nSharePoint B-Application SharePoint O\nlists\tO\tlists\tO\n,\tO\t,\tO\ntwo\tO\ttwo\tO\nof\tO\tof\tO\nwhich\tO\twhich\tO\ncurrently\tO\tcurrently\tO\nin\tO\tin\tO\nquestion\tO\tquestion\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\n\"\tO\t\"\tO\nNotes\tO\tNotes\tO\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\nTasks\tO\tTasks\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nfairly\tO\tfairly\tO\nsimple\tO\tsimple\tO\ndata\tO\tdata\tO\nelements\tO\telements\tO\nin\tO\tin\tO\ntheir\tO\ttheir\tO\nSharePoint B-Application SharePoint O\nsetup\tO\tsetup\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\nspecial\tO\tspecial\tO\nabout\tO\tabout\tO\nthem\tO\tthem\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nthings\tO\tthings\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nfrom\tO\tfrom\tO\nwithin\tO\twithin\tO\nASP.NET B-Library ASP.NET O\nis\tO\tis\tO\nto\tO\tto\tO\nautomatically\tO\tautomatically\tO\ncreate\tO\tcreate\tO\nsome\tO\tsome\tO\nnew\tO\tnew\tO\nitems\tO\titems\tO\nfor\tO\tfor\tO\nthese\tO\tthese\tO\nlists B-Data_Structure lists O\nand\tO\tand\tO\nadd\tO\tadd\tO\nthem\tO\tthem\tO\nfrom\tO\tfrom\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nit\tO\tit\tO\n's\tO\t's\tO\npretty\tO\tpretty\tO\neasy\tO\teasy\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\nweb\tO\tweb\tO\npart\tO\tpart\tO\nwhich\tO\twhich\tO\nhandled\tO\thandled\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nfor\tO\tfor\tO\nthose\tO\tthose\tO\nitems\tO\titems\tO\n,\tO\t,\tO\nattached\tO\tattached\tO\nthe\tO\tthe\tO\ndebugger\tO\tdebugger\tO\nto\tO\tto\tO\nit\tO\tit\tO\n,\tO\t,\tO\ntracked\tO\ttracked\tO\nhow\tO\thow\tO\nit\tO\tit\tO\ngot\tO\tgot\tO\nits\tO\tits\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfields\tO\tfields\tO\nbeing\tO\tbeing\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nitem\tO\titem\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nquite\tO\tquite\tO\nas\tO\tas\tO\nobvious\tO\tobvious\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nexisting\tO\texisting\tO\nweb\tO\tweb\tO\npart\tO\tpart\tO\nUI\tO\tUI\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nfield\tO\tfield\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nEssentially\tO\tEssentially\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nfield\tO\tfield\tO\nfor\tO\tfor\tO\nentering\tO\tentering\tO\na\tO\ta\tO\nuser\tO\tuser\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nWindows B-Website Windows O\ndomain\tO\tdomain\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbook\tO\tbook\tO\nicon\tO\ticon\tO\nopens\tO\topens\tO\na\tO\ta\tO\npop-up B-User_Interface_Element pop-up O\nwhich\tO\twhich\tO\nallows\tO\tallows\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nname\tO\tname\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\ntesting\tO\ttesting\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nrunning\tO\trunning\tO\nas\tO\tas\tO\nlocal\tO\tlocal\tO\nAdministrator\tO\tAdministrator\tO\non\tO\ton\tO\na\tO\ta\tO\ndevelopment\tO\tdevelopment\tO\nmachine\tO\tmachine\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nlook\tO\tlook\tO\nfor\tO\tfor\tO\n\"\tO\t\"\tO\nadmin B-Value admin O\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npop-up B-User_Interface_Element pop-up O\nand\tO\tand\tO\nit\tO\tit\tO\npopulates\tO\tpopulates\tO\nthe\tO\tthe\tO\nfield\tO\tfield\tO\nwith\tO\twith\tO\n\" B-Value \" O\n[ I-Value [ O\nmachine I-Value machine O\nname I-Value name O\n] I-Value ] O\n\\Administrator B-Value \\Administrator O\n\" B-Value \" O\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nin\tO\tin\tO\ndebugging\tO\tdebugging\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nthat\tO\tthat\tO\ngets\tO\tgets\tO\npulled\tO\tpulled\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfield\tO\tfield\tO\nand\tO\tand\tO\nentered\tO\tentered\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nSharePoint B-Application SharePoint O\nlist\tO\tlist\tO\nitem\tO\titem\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\n1 B-Value 1 O\n\"\tO\t\"\tO\nas\tO\tas\tO\nopposed\tO\topposed\tO\nto\tO\tto\tO\na\tO\ta\tO\nname\tO\tname\tO\nor\tO\tor\tO\nanything\tO\tanything\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\n\"\tO\t\"\tO\n1 B-Value 1 O\n\"\tO\t\"\tO\nis\tO\tis\tO\nan\tO\tan\tO\nidentifier\tO\tidentifier\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlocal\tO\tlocal\tO\nadmin\tO\tadmin\tO\naccount\tO\taccount\tO\n.\tO\t.\tO\n\t\nMakes\tO\tMakes\tO\nsense\tO\tsense\tO\n,\tO\t,\tO\nafter\tO\tafter\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nidentifier\tO\tidentifier\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nlogged-in\tO\tlogged-in\tO\nuser\tO\tuser\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nuser\tO\tuser\tO\n's\tO\t's\tO\nname\tO\tname\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nany\tO\tany\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nnumeric\tO\tnumeric\tO\n(\tO\t(\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nstring B-Data_Type string O\n)\tO\t)\tO\nID B-Variable ID O\n.\tO\t.\tO\n\t\nAdditionally\tO\tAdditionally\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\nhappening\tO\thappening\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\nan\tO\tan\tO\nASP.NET B-Library ASP.NET O\napplication\tO\tapplication\tO\ncontext\tO\tcontext\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\nalso\tO\talso\tO\na\tO\ta\tO\nWPF B-Library WPF O\nclient B-Application client O\napplication\tO\tapplication\tO\nfor\tO\tfor\tO\nlaptops B-Device laptops O\nwhich\tO\twhich\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngenerating\tO\tgenerating\tO\nthese\tO\tthese\tO\nlist B-Data_Structure list O\nitems\tO\titems\tO\nand\tO\tand\tO\nsynchronizing\tO\tsynchronizing\tO\nthem\tO\tthem\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver B-Application server O\nwhen\tO\twhen\tO\nconnected\tO\tconnected\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ncurrently\tO\tcurrently\tO\noperating\tO\toperating\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nassumption\tO\tassumption\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nclient B-Application client O\nuser\tO\tuser\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\nwith\tO\twith\tO\na\tO\ta\tO\nproper\tO\tproper\tO\ndomain\tO\tdomain\tO\naccount\tO\taccount\tO\nknown\tO\tknown\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver B-Application server O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nimagine\tO\timagine\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\npretty\tO\tpretty\tO\neasy\tO\teasy\tO\n,\tO\t,\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nstumbled\tO\tstumbled\tO\nacross\tO\tacross\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nquite\tO\tquite\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5626311\tO\t5626311\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5626311/\tO\thttps://stackoverflow.com/questions/5626311/\tO\n\t\n\t\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_605 I-Code_Block A_605 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBy\tO\tBy\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ninternal\tO\tinternal\tO\nId B-Variable Id O\nassigned\tO\tassigned\tO\nby\tO\tby\tO\nSharePoint B-Application SharePoint O\nto\tO\tto\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nId B-Variable Id O\nfrom\tO\tfrom\tO\na\tO\ta\tO\nWPF B-Library WPF O\napplication\tO\tapplication\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndeploy\tO\tdeploy\tO\na\tO\ta\tO\nWebService\tO\tWebService\tO\ninside\tO\tinside\tO\nSharePoint B-Application SharePoint O\nthat\tO\tthat\tO\nwould\tO\twould\tO\nreturn\tO\treturn\tO\nthis\tO\tthis\tO\nId B-Variable Id O\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\neven\tO\teven\tO\nquery\tO\tquery\tO\nthe\tO\tthe\tO\nSharePoint B-Application SharePoint O\ndatabase\tO\tdatabase\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsafe\tO\tsafe\tO\n:-)\tO\t:-)\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28628280\tO\t28628280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28628280/\tO\thttps://stackoverflow.com/questions/28628280/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nMule B-Application Mule O\nstandalone I-Application standalone O\n3.1.0 B-Version 3.1.0 O\nand\tO\tand\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nflow\tO\tflow\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndefault\tO\tdefault\tO\nexception B-Class exception O\nstrategy\tO\tstrategy\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nfooImpl B-Class fooImpl B-Code_Block\nclass\tO\tclass\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nexception B-Class exception O\non\tO\ton\tO\npurpose\tO\tpurpose\tO\nand\tO\tand\tO\nits\tO\tits\tO\nstacktrace\tO\tstacktrace\tO\ngets\tO\tgets\tO\nvomited\tO\tvomited\tO\nonto\tO\tonto\tO\nthe\tO\tthe\tO\nmule B-Application mule O\nstdout B-Class stdout O\n-\tO\t-\tO\nExceptionTransformer B-Class ExceptionTransformer B-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\ntriggered\tO\ttriggered\tO\nand\tO\tand\tO\nI\tO\tI\tO\nget\tO\tget\tO\nno\tO\tno\tO\nemail\tO\temail\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\ndefault-exception-strategy B-Code_Block default-exception-strategy B-Code_Block\ncompletely\tO\tcompletely\tO\nnothing\tO\tnothing\tO\nat\tO\tat\tO\nall\tO\tall\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nit\tO\tit\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nan\tO\tan\tO\nemail\tO\temail\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nthe\tO\tthe\tO\nexception B-Class exception O\nwith\tO\twith\tO\nExceptionTransformer B-Class ExceptionTransformer B-Code_Block\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3363 I-Code_Block Q_3363 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFurther\tO\tFurther\tO\non\tO\ton\tO\n,\tO\t,\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n<custom-exception-strategy B-Code_Block <custom-exception-strategy B-Code_Block\nclass=\"com.arcusys.nkeservice.mule.dynasty.ExceptionTest\"> I-Code_Block class=\"com.arcusys.nkeservice.mule.dynasty.ExceptionTest\"> I-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ndefault-exception-strategy B-Code_Block default-exception-strategy B-Code_Block\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nExceptionTest B-Class ExceptionTest B-Code_Block\ngets\tO\tgets\tO\ninstantiated\tO\tinstantiated\tO\nduring\tO\tduring\tO\nservice\tO\tservice\tO\nstartup\tO\tstartup\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\n@override B-Code_Block @override B-Code_Block\nhandleException B-Function handleException I-Code_Block\nnever\tO\tnever\tO\ngets\tO\tgets\tO\ncalled\tO\tcalled\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nforced\tO\tforced\tO\nexception B-Class exception O\nI\tO\tI\tO\nget\tO\tget\tO\nto\tO\tto\tO\nstdout B-Variable stdout O\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3364 I-Code_Block Q_3364 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28628280\tO\t28628280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28628280/\tO\thttps://stackoverflow.com/questions/28628280/\tO\n\t\n\t\nThere\tO\tThere\tO\nwas\tO\twas\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nCXF B-Library CXF O\ncomponents\tO\tcomponents\tO\ninvoking\tO\tinvoking\tO\nexception B-Class exception O\nstrategies\tO\tstrategies\tO\nprior\tO\tprior\tO\nto\tO\tto\tO\nMule B-Application Mule O\n3.1.3 B-Version 3.1.3 O\n:\tO\t:\tO\n\t\nhttp://mule.1045714.n5.nabble.com/mule-scm-mule-22344-branches-mule-3-1-x-modules-cxf-src-test-resources-EE-2273-td4557349.html\tO\thttp://mule.1045714.n5.nabble.com/mule-scm-mule-22344-branches-mule-3-1-x-modules-cxf-src-test-resources-EE-2273-td4557349.html\tO\n\t\nEE-2273\tO\tEE-2273\tO\n-\tO\t-\tO\nhttp://www.mulesoft.org/documentation/display/current/Mule+ESB+3.1.3+Release+Notes\tO\thttp://www.mulesoft.org/documentation/display/current/Mule+ESB+3.1.3+Release+Notes\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28628280\tO\t28628280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28628280/\tO\thttps://stackoverflow.com/questions/28628280/\tO\n\t\n\t\nuse\tO\tuse\tO\nbelow\tO\tbelow\tO\nas\tO\tas\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nchoice\tO\tchoice\tO\nbased\tO\tbased\tO\nexception B-Class exception O\nstrategy\tO\tstrategy\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nflow B-HTML_XML_Tag flow O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4030 I-Code_Block Q_4030 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13337146\tO\t13337146\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13337146/\tO\thttps://stackoverflow.com/questions/13337146/\tO\n\t\n\t\nlet\tO\tlet\tO\nsay\tO\tsay\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1263 I-Code_Block Q_1263 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhow\tO\thow\tO\nwould\tO\twould\tO\ni\tO\ti\tO\nread\tO\tread\tO\nthat\tO\tthat\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nvector B-Data_Structure vector O\ncalled\tO\tcalled\tO\nvector B-Code_Block vector B-Code_Block\n<Item> I-Code_Block <Item> I-Code_Block\nitems I-Code_Block items I-Code_Block\n;\tO\t;\tO\nwhere\tO\twhere\tO\nItem B-Class Item O\nis\tO\tis\tO\na\tO\ta\tO\nclass\tO\tclass\tO\nthat\tO\tthat\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nnames\tO\tnames\tO\nas\tO\tas\tO\nlisted\tO\tlisted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n.\tO\t.\tO\n\t\ni\tO\ti\tO\nhave\tO\thave\tO\na\tO\ta\tO\nset() B-Function set() O\nmethods\tO\tmethods\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nbut\tO\tbut\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\ni\tO\ti\tO\nread\tO\tread\tO\none\tO\tone\tO\nof\tO\tof\tO\neach\tO\teach\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nset\tO\tset\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nsetID() B-Function setID() O\nand\tO\tand\tO\nits\tO\tits\tO\nvalue\tO\tvalue\tO\nand\tO\tand\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nempty\tO\tempty\tO\nput\tO\tput\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\n-1 B-Value -1 O\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\nis\tO\tis\tO\njust\tO\tjust\tO\na\tO\ta\tO\nbasic\tO\tbasic\tO\nfile\tO\tfile\tO\nopen\tO\topen\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1264 I-Code_Block Q_1264 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nshould\tO\tshould\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nistringstream B-Class istringstream O\nor\tO\tor\tO\nwhat\tO\twhat\tO\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1265 I-Code_Block Q_1265 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBUT\tO\tBUT\tO\nI\tO\tI\tO\nget\tO\tget\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\nstatement\tO\tstatement\tO\ncannot\tO\tcannot\tO\nresolve\tO\tresolve\tO\naddress\tO\taddress\tO\nof\tO\tof\tO\noverloaded\tO\toverloaded\tO\nfunction\tO\tfunction\tO\nat\tO\tat\tO\nline\tO\tline\tO\n:\tO\t:\tO\nifstream B-Code_Block ifstream B-Code_Block\ninput(file_name) I-Code_Block input(file_name) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13337146\tO\t13337146\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13337146/\tO\thttps://stackoverflow.com/questions/13337146/\tO\n\t\n\t\nThey\tO\tThey\tO\nway\tO\tway\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nis\tO\tis\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nsuitable\tO\tsuitable\tO\ninput\tO\tinput\tO\noperator B-Code_Block operator O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1707 I-Code_Block A_1707 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOnce\tO\tOnce\tO\nthis\tO\tthis\tO\noperator B-Code_Block operator O\nis\tO\tis\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nusing\tO\tusing\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1708 I-Code_Block A_1708 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5926858\tO\t5926858\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5926858/\tO\thttps://stackoverflow.com/questions/5926858/\tO\n\t\n\t\nI\tO\tI\tO\nwonder\tO\twonder\tO\nif\tO\tif\tO\nit\tO\tit\tO\n's\tO\t's\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\ntwo\tO\ttwo\tO\nconsecutive\tO\tconsecutive\tO\nlists B-Data_Structure lists O\nin\tO\tin\tO\nmarkdown\tO\tmarkdown\tO\nwithout\tO\twithout\tO\nthem\tO\tthem\tO\nbeing\tO\tbeing\tO\nmerged\tO\tmerged\tO\nautomatically\tO\tautomatically\tO\n:\tO\t:\tO\n\t\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\na B-Value a O\n\t\nb B-Value b O\n\t\nx B-Value x O\n\t\ny B-Value y O\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\nmarkdown B-Language markdown O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nputs\tO\tputs\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nlist B-Data_Structure list O\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nelement\tO\telement\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nlist B-Data_Structure list O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_425 I-Code_Block Q_425 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDemo\tO\tDemo\tO\n:\tO\t:\tO\n\t\na B-Value a O\n\t\nb B-Value b O\n\t\nx B-Value x O\n\t\ny B-Value y O\n\t\nWhile\tO\tWhile\tO\nany\tO\tany\tO\nsolutions\tO\tsolutions\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nprefer\tO\tprefer\tO\none\tO\tone\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\npython-markdown B-Library python-markdown O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5926858\tO\t5926858\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5926858/\tO\thttps://stackoverflow.com/questions/5926858/\tO\n\t\n\t\nThe\tO\tThe\tO\neasiest\tO\teasiest\tO\nand\tO\tand\tO\ncleanest\tO\tcleanest\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nis\tO\tis\tO\nadding\tO\tadding\tO\na\tO\ta\tO\ncomment\tO\tcomment\tO\nbetween\tO\tbetween\tO\nlists B-Data_Structure lists O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1096 I-Code_Block A_1096 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nworking\tO\tworking\tO\nexample\tO\texample\tO\nin\tO\tin\tO\nstackoverflow B-Website stackoverflow O\n's\tO\t's\tO\nmarkdown B-Language markdown O\n:\tO\t:\tO\n\t\na B-Value a O\n\t\nb B-Value b O\n\t\nx B-Value x O\n\t\ny B-Value y O\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsad\tO\tsad\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nbugs\tO\tbugs\tO\noccurs\tO\toccurs\tO\n:\tO\t:\tO\nsomeone\tO\tsomeone\tO\nmust\tO\tmust\tO\ngo\tO\tgo\tO\nand\tO\tand\tO\nfill\tO\tfill\tO\nthe\tO\tthe\tO\nbugs\tO\tbugs\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\ndifferent\tO\tdifferent\tO\nmarkdown B-Language markdown O\nimplementations\tO\timplementations\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4496476\tO\t4496476\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4496476/\tO\thttps://stackoverflow.com/questions/4496476/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nListView B-Class ListView O\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntwo\tO\ttwo\tO\nentries\tO\tentries\tO\nin\tO\tin\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndisplayed\tO\tdisplayed\tO\ndifferently\tO\tdifferently\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\n.\tO\t.\tO\n\t\nNothing\tO\tNothing\tO\nfancy\tO\tfancy\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\nto\tO\tto\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\ntext B-Class text O\nviews I-Class views O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ntwo\tO\ttwo\tO\nentries\tO\tentries\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ndifferent\tO\tdifferent\tO\nsizes\tO\tsizes\tO\nand\tO\tand\tO\nweights\tO\tweights\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\nrest\tO\trest\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nmodifying\tO\tmodifying\tO\nthe\tO\tthe\tO\nArrayAdapter B-Class ArrayAdapter O\nclass\tO\tclass\tO\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_311 I-Code_Block Q_311 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\ninadvertantly\tO\tinadvertantly\tO\ncauses\tO\tcauses\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ntextviews B-Class textviews O\nto\tO\tto\tO\ntake\tO\ttake\tO\non\tO\ton\tO\nthese\tO\tthese\tO\nspecial\tO\tspecial\tO\nattributes\tO\tattributes\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbecause\tO\tbecause\tO\ncause\tO\tcause\tO\ntextviews B-Class textviews O\nget\tO\tget\tO\n\"\tO\t\"\tO\nrecycled\tO\trecycled\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nAbsListAdapter B-Class AbsListAdapter O\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4496476\tO\t4496476\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4496476/\tO\thttps://stackoverflow.com/questions/4496476/\tO\n\t\n\t\nTry\tO\tTry\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_475 I-Code_Block A_475 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3629354\tO\t3629354\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3629354/\tO\thttps://stackoverflow.com/questions/3629354/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ntables B-Data_Structure tables O\nwith\tO\twith\tO\ntheir\tO\ttheir\tO\ncolumns B-Data_Structure columns O\n(\tO\t(\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nrelevant\tO\trelevant\tO\ncolumns B-Data_Structure columns O\nare\tO\tare\tO\nlisted\tO\tlisted\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nforgotten\tO\tforgotten\tO\nto\tO\tto\tO\nmention\tO\tmention\tO\nthat\tO\tthat\tO\nCoreHourID B-Variable CoreHourID O\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nfield\tO\tfield\tO\n,\tO\t,\tO\ntable B-Data_Structure table O\ncan\tO\tcan\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_259 I-Code_Block Q_259 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSorry\tO\tSorry\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nbig\tO\tbig\tO\nlayout\tO\tlayout\tO\n,\tO\t,\tO\nI\tO\tI\tO\nreally\tO\treally\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nproperly\tO\tproperly\tO\npost\tO\tpost\tO\ntable B-Data_Structure table O\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nhere\tO\there\tO\n's\tO\t's\tO\nan\tO\tan\tO\nattempt\tO\tattempt\tO\nat\tO\tat\tO\nexplaining\tO\texplaining\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nEvery\tO\tEvery\tO\nday\tO\tday\tO\n,\tO\t,\tO\na\tO\ta\tO\nrow B-Data_Structure row O\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ninserted\tO\tinserted\tO\nin\tO\tin\tO\nEntry B-Variable Entry B-Code_Block\nand\tO\tand\tO\nHour B-Variable Hour B-Code_Block\nfor\tO\tfor\tO\nall\tO\tall\tO\nemployees\tO\temployees\tO\nwho\tO\twho\tO\nare\tO\tare\tO\nWorkingFromHome B-Variable WorkingFromHome B-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nEntry B-Variable Entry B-Code_Block\ntable B-Data_Structure table O\nit\tO\tit\tO\nshould\tO\tshould\tO\nplace\tO\tplace\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nEmployeeNumber B-Variable EmployeeNumber B-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nJustifyDate B-Variable JustifyDate B-Code_Block\nit\tO\tit\tO\nshould\tO\tshould\tO\nadd\tO\tadd\tO\nwhatever\tO\twhatever\tO\nday\tO\tday\tO\nit\tO\tit\tO\nis\tO\tis\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nEntryDate B-Variable EntryDate B-Code_Block\nfield\tO\tfield\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nadd\tO\tadd\tO\nthat\tO\tthat\tO\nday\tO\tday\tO\n's\tO\t's\tO\ndate\tO\tdate\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\npart\tO\tpart\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nInHour B-Variable InHour B-Code_Block\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncorresponding\tO\tcorresponding\tO\nCoreHour B-Variable CoreHour B-Code_Block\nrow B-Data_Structure row O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nHour B-Variable Hour B-Code_Block\ntable\tO\ttable\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nEntryID B-Variable EntryID B-Code_Block\nthat\tO\tthat\tO\njust\tO\tjust\tO\ngot\tO\tgot\tO\ninserted\tO\tinserted\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nEntry B-Variable Entry B-Code_Block\ntable B-Data_Structure table O\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nInHour B-Variable InHour B-Code_Block\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nEntryDate B-Variable EntryDate B-Code_Block\nand\tO\tand\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nOutHour B-Variable OutHour B-Code_Block\nfield\tO\tfield\tO\nit\tO\tit\tO\nshould\tO\tshould\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nDateTime B-Data_Type DateTime O\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nOutHour B-Variable OutHour B-Code_Block\ncorresponding\tO\tcorresponding\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nemployee\tO\temployee\tO\n's\tO\t's\tO\nCoreHourID B-Variable CoreHourID B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstruggling\tO\tstruggling\tO\na\tO\ta\tO\nlot\tO\tlot\tO\n,\tO\t,\tO\nso\tO\tso\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nAny\tO\tAny\tO\ncomments/questions\tO\tcomments/questions\tO\nregarding\tO\tregarding\tO\nmy\tO\tmy\tO\nexplanation\tO\texplanation\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwill\tO\twill\tO\ngladly\tO\tgladly\tO\nrespond\tO\trespond\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3629354\tO\t3629354\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3629354/\tO\thttps://stackoverflow.com/questions/3629354/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nencapsulated\tO\tencapsulated\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nstored\tO\tstored\tO\nprocedure\tO\tprocedure\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nexecuted\tO\texecuted\tO\nvia\tO\tvia\tO\na\tO\ta\tO\nscheduled\tO\tscheduled\tO\njob\tO\tjob\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nexactly\tO\texactly\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nmeant\tO\tmeant\tO\nby\tO\tby\tO\nfor\tO\tfor\tB-Code_Block\nJustifyDate B-Variable JustifyDate I-Code_Block\nit\tO\tit\tI-Code_Block\nshould\tO\tshould\tI-Code_Block\nadd\tO\tadd\tI-Code_Block\nwhatever\tO\twhatever\tI-Code_Block\nday\tO\tday\tI-Code_Block\nit\tO\tit\tI-Code_Block\nis\tO\tis\tI-Code_Block\nwhen\tO\twhen\tI-Code_Block\nthe\tO\tthe\tI-Code_Block\njob\tO\tjob\tI-Code_Block\nis\tO\tis\tI-Code_Block\nrunning\tO\trunning\tI-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_389 I-Code_Block A_389 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n(\tO\t(\tO\nRevised\tO\tRevised\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nOutput\tO\tOutput\tO\nclause\tO\tclause\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n771491\tO\t771491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/771491/\tO\thttps://stackoverflow.com/questions/771491/\tO\n\t\n\t\nGiven\tO\tGiven\tO\nthis\tO\tthis\tO\ntable B-Data_Structure table O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_41 I-Code_Block Q_41 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWith\tO\tWith\tO\nthis\tO\tthis\tO\nmodel\tO\tmodel\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_42 I-Code_Block Q_42 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nDataContext B-Class DataContext O\nto\tO\tto\tO\nfill\tO\tfill\tO\nthe\tO\tthe\tO\nArbitraryText B-Variable ArbitraryText B-Code_Block\nproperty\tO\tproperty\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nExecuteQuery B-Function ExecuteQuery B-Code_Block\nmethod\tO\tmethod\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_43 I-Code_Block Q_43 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nentity\tO\tentity\tO\nmapping\tO\tmapping\tO\nalgorithm\tO\talgorithm\tO\nignores\tO\tignores\tO\nany\tO\tany\tO\nproperty\tO\tproperty\tO\nnot\tO\tnot\tO\nmarked\tO\tmarked\tO\nwith\tO\twith\tO\nColumnAttribute B-Variable ColumnAttribute B-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nanother\tO\tanother\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nprefer\tO\tprefer\tO\nnot\tO\tnot\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nmapping\tO\tmapping\tO\nmyself\tO\tmyself\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nmy\tO\tmy\tO\nonly\tO\tonly\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nannoying\tO\tannoying\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nDataContext.ExecuteQuery B-Function DataContext.ExecuteQuery O\nfunction\tO\tfunction\tO\nwill\tO\twill\tO\nfill\tO\tfill\tO\na\tO\ta\tO\nPOCO B-Class POCO O\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nquery\tO\tquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_44 I-Code_Block Q_44 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nan\tO\tan\tO\ninner\tO\tinner\tO\nclass\tO\tclass\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nLINQ-mapped B-Library LINQ-mapped O\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nholds\tO\tholds\tO\nthe\tO\tthe\tO\nextra\tO\textra\tO\ndata\tO\tdata\tO\nmy\tO\tmy\tO\naggregate\tO\taggregate\tO\nquery\tO\tquery\tO\nreturns\tO\treturns\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nsub-optimal\tO\tsub-optimal\tO\n,\tO\t,\tO\nas\tO\tas\tO\nsome\tO\tsome\tO\nproperties\tO\tproperties\tO\nare\tO\tare\tO\nduplicated\tO\tduplicated\tO\n(\tO\t(\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nId B-Variable Id O\nand\tO\tand\tO\nText B-Variable Text O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n771491\tO\t771491\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/771491/\tO\thttps://stackoverflow.com/questions/771491/\tO\n\t\n\t\nNot\tO\tNot\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nprobably\tO\tprobably\tO\ndo\tO\tdo\tO\nsome\tO\tsome\tO\ngrungy\tO\tgrungy\tO\nthings\tO\tthings\tO\nto\tO\tto\tO\nmarry\tO\tmarry\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nUDF\tO\tUDF\tO\n,\tO\t,\tO\nperhaps\tO\tperhaps\tO\n-\tO\t-\tO\nbut\tO\tbut\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nmap\tO\tmap\tO\nthe\tO\tthe\tO\ncolumns B-Data_Structure columns O\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nUDF\tO\tUDF\tO\njust\tO\tjust\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\narbitrary\tO\tarbitrary\tO\ntext B-Variable text O\nand\tO\tand\tO\nthe\tO\tthe\tO\ncomment-id B-Variable comment-id O\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_71 I-Code_Block A_71 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlternatively\tO\tAlternatively\tO\n-\tO\t-\tO\nA\tO\tA\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nvariants\tO\tvariants\tO\non\tO\ton\tO\nExecuteQuery B-Function ExecuteQuery B-Code_Block\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nuseful\tO\tuseful\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\napproach\tO\tapproach\tO\nfor\tO\tfor\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\ndifferent\tO\tdifferent\tO\nthings.\tO\tthings.\tO\n.\tO\t.\tO\n\t\nPersonally\tO\tPersonally\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nprobably\tO\tprobably\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nside-step\tO\tside-step\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nfirst\tO\tfirst\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35258687\tO\t35258687\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35258687/\tO\thttps://stackoverflow.com/questions/35258687/\tO\n\t\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nappend\tO\tappend\tO\nan\tO\tan\tO\nexisting\tO\texisting\tO\nline\tO\tline\tO\nin\tO\tin\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n(\tO\t(\tO\nCent B-Operating_System Cent O\nOS I-Operating_System OS O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4318 I-Code_Block Q_4318 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nso\tO\tso\tO\nadding\tO\tadding\tO\nhash\tO\thash\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n'\tO\t'\tO\n\t\nUsing\tO\tUsing\tO\nsed B-Code_Block sed O\nwill\tO\twill\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\ntrick\tO\ttrick\tO\n?\tO\t?\tO\n\t\n**\tO\t**\tO\n\t\nUpdate\tO\tUpdate\tO\n:\tO\t:\tO\n\t\n**\tO\t**\tO\njust\tO\tjust\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\ngeneral\tO\tgeneral\tO\ninformation\tO\tinformation\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nsudoers B-File_Type sudoers O\nfile\tO\tfile\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\npart\tO\tpart\tO\nof\tO\tof\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27024754\tO\t27024754\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27024754/\tO\thttps://stackoverflow.com/questions/27024754/\tO\n\t\n\t\nWhile\tO\tWhile\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\ndifference\tO\tdifference\tO\nbranches\tO\tbranches\tO\nin\tO\tin\tO\ngit B-Application git O\nI\tO\tI\tO\nusually\tO\tusually\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nall\tO\tall\tO\nbranches\tO\tbranches\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\nwith\tO\twith\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\nusual\tO\tusual\tO\nworkflow\tO\tworkflow\tO\nis\tO\tis\tO\nas\tO\tas\tO\nfollow\tO\tfollow\tO\n\t\nWork\tO\tWork\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbranch\tO\tbranch\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nfeature B-Variable feature O\n1) I-Variable 1) O\n\t\nCheckout\tO\tCheckout\tO\nmaster\tO\tmaster\tO\nand\tO\tand\tO\nre-base\tO\tre-base\tO\nbranch\tO\tbranch\tO\n\t\nCheckout\tO\tCheckout\tO\nanother\tO\tanother\tO\nbranch\tO\tbranch\tO\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nfeature B-Variable feature O\n2) I-Variable 2) O\n\t\nRe-base\tO\tRe-base\tO\n(\tO\t(\tO\nfeature\tO\tfeature\tO\n2)\tO\t2)\tO\nbranch\tO\tbranch\tO\nwith\tO\twith\tO\nmaster\tO\tmaster\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nway\tO\tway\tO\nmy\tO\tmy\tO\nmaster\tO\tmaster\tO\nas\tO\tas\tO\nwells\tO\twells\tO\nas\tO\tas\tO\nfeature2 B-Variable feature2 O\nbranch\tO\tbranch\tO\nare\tO\tare\tO\nup\tO\tup\tO\nto\tO\tto\tO\ndate\tO\tdate\tO\nwith\tO\twith\tO\nfeature B-Variable feature O\n1 I-Variable 1 O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\ntwo\tO\ttwo\tO\ncommand\tO\tcommand\tO\ncheckout\tO\tcheckout\tO\nthen\tO\tthen\tO\nre-base\tO\tre-base\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nshort\tO\tshort\tO\ncommand\tO\tcommand\tO\nfor\tO\tfor\tO\nthese\tO\tthese\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27024754\tO\t27024754\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27024754/\tO\thttps://stackoverflow.com/questions/27024754/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3734 I-Code_Block A_3734 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\n<branch>\tO\t<branch>\tB-Code_Block\nis\tO\tis\tO\nspecified\tO\tspecified\tO\n,\tO\t,\tO\ngit B-Code_Block git O\nrebase I-Code_Block rebase O\nwill\tO\twill\tO\nperform\tO\tperform\tO\nan\tO\tan\tO\nautomatic\tO\tautomatic\tO\ngit B-Code_Block git O\ncheckout I-Code_Block checkout O\nbefore\tO\tbefore\tO\ndoing\tO\tdoing\tO\nanything\tO\tanything\tO\nelse\tO\telse\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nit\tO\tit\tO\nremains\tO\tremains\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nbranch\tO\tbranch\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42894405\tO\t42894405\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42894405/\tO\thttps://stackoverflow.com/questions/42894405/\tO\n\t\n\t\nAlthough\tO\tAlthough\tO\nI\tO\tI\tO\nreserved\tO\treserved\tO\na\tO\ta\tO\nstatic\tO\tstatic\tO\nIP\tO\tIP\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nwarning\tO\twarning\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nnot\tO\tnot\tO\nhaving\tO\thaving\tO\nload\tO\tload\tO\nbalancer\tO\tbalancer\tO\ncreated\tO\tcreated\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5482 I-Code_Block Q_5482 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42894405\tO\t42894405\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42894405/\tO\thttps://stackoverflow.com/questions/42894405/\tO\n\t\n\t\nOK\tO\tOK\tO\n,\tO\t,\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nonly\tO\tonly\tO\nwith\tO\twith\tO\nregional\tO\tregional\tO\nIPs\tO\tIPs\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45680804\tO\t45680804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45680804/\tO\thttps://stackoverflow.com/questions/45680804/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\n.mp3 B-File_Type .mp3 B-Code_Block\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nDSX B-Application DSX O\nfor\tO\tfor\tO\nMusic\tO\tMusic\tO\nInformation\tO\tInformation\tO\nRetrieval\tO\tRetrieval\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nlibrosa B-Library librosa B-Code_Block\nlibrary\tO\tlibrary\tO\nin\tO\tin\tO\npython B-Language python O\nfor\tO\tfor\tO\nthis\tO\tthis\tO\npurpose\tO\tpurpose\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nload\tO\tload\tO\n.mp3 B-File_Type .mp3 B-Code_Block\nfiles\tO\tfiles\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nabsence\tO\tabsence\tO\nof\tO\tof\tO\nffmpeg B-Library ffmpeg B-Code_Block\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ninstall\tO\tinstall\tO\nffmpeg B-Library ffmpeg B-Code_Block\nin\tO\tin\tO\nDSX B-Application DSX O\nor\tO\tor\tO\nany\tO\tany\tO\nother\tO\tother\tO\nwalk-around\tO\twalk-around\tO\nto\tO\tto\tO\nload\tO\tload\tO\n.mp3 B-File_Type .mp3 B-Code_Block\nfiles\tO\tfiles\tO\nin\tO\tin\tO\nDSX B-Application DSX O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45680804\tO\t45680804\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45680804/\tO\thttps://stackoverflow.com/questions/45680804/\tO\n\t\n\t\nAny\tO\tAny\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlibraries\tO\tlibraries\tO\nthat\tO\tthat\tO\nneed\tO\tneed\tO\nsudo\tO\tsudo\tO\npermissions\tO\tpermissions\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\ninstalled\tO\tinstalled\tO\non\tO\ton\tO\nSpark B-Library Spark O\nservice\tO\tservice\tO\nassociated\tO\tassociated\tO\nwith\tO\twith\tO\nnotebook\tO\tnotebook\tO\non\tO\ton\tO\nDSX B-Application DSX O\nby\tO\tby\tO\nuser\tO\tuser\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nonly\tO\tonly\tO\ninstall\tO\tinstall\tO\nlibraries\tO\tlibraries\tO\nwith\tO\twith\tO\n--user B-Code_Block --user B-Code_Block\nflag\tO\tflag\tO\nin\tO\tin\tO\npip B-Code_Block pip O\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nIBM B-Library IBM O\nSpark I-Library Spark O\nservice\tO\tservice\tO\nteam\tO\tteam\tO\ncan\tO\tcan\tO\ninstall\tO\tinstall\tO\nthis\tO\tthis\tO\nlibraries\tO\tlibraries\tO\nwhich\tO\twhich\tO\nneed\tO\tneed\tO\nsudo B-Code_Block sudo O\npermissions\tO\tpermissions\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nraise\tO\traise\tO\na\tO\ta\tO\nrequest/idea\tO\trequest/idea\tO\nhere\tO\there\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nlibrary\tO\tlibrary\tO\ninstalled\tO\tinstalled\tO\n:\tO\t:\tO\n-\tO\t-\tO\n\t\nhttps://ibmwatsondataplatform.ideas.aha.io/?category=6441922592725708622\tO\thttps://ibmwatsondataplatform.ideas.aha.io/?category=6441922592725708622\tO\n\t\nThanks\tO\tThanks\tO\n,\tO\t,\tO\n\t\nCharles B-User_Name Charles O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39745237\tO\t39745237\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39745237/\tO\thttps://stackoverflow.com/questions/39745237/\tO\n\t\n\t\nHi\tO\tHi\tO\nfellow\tO\tfellow\tO\nProgrammers\tO\tProgrammers\tO\n,\tO\t,\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nrelatively\tO\trelatively\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nWordpress B-Website Wordpress O\nsince\tO\tsince\tO\nI\tO\tI\tO\nusually\tO\tusually\tO\nused\tO\tused\tO\nTypo3 B-Website Typo3 O\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\nregarding\tO\tregarding\tO\nthe\tO\tthe\tO\ncustom\tO\tcustom\tO\nsidebars B-User_Interface_Element sidebars O\nin\tO\tin\tO\nWP B-Website WP O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nfunctions.php B-File_Name functions.php O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5016 I-Code_Block Q_5016 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n4\tO\t4\tO\npanels B-User_Interface_Element panels O\nfor\tO\tfor\tO\ninfo\tO\tinfo\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nhome\tO\thome\tO\npage\tO\tpage\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfooter B-User_Interface_Element footer O\nanother\tO\tanother\tO\nsmall\tO\tsmall\tO\nfield\tO\tfield\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nauthor\tO\tauthor\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nbio\tO\tbio\tO\nor\tO\tor\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nmy\tO\tmy\tO\nindex.php B-File_Name index.php O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5017 I-Code_Block Q_5017 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSame\tO\tSame\tO\nimplementation\tO\timplementation\tO\nis\tO\tis\tO\nin\tO\tin\tO\nfooter.php B-File_Name footer.php O\nat\tO\tat\tO\na\tO\ta\tO\ngiven\tO\tgiven\tO\nposition\tO\tposition\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nProblems\tO\tProblems\tO\nare\tO\tare\tO\n:\tO\t:\tO\n\t\nContent\tO\tContent\tO\nI\tO\tI\tO\nadd\tO\tadd\tO\nvia\tO\tvia\tO\nbackend\tO\tbackend\tO\nmenu B-User_Interface_Element menu O\nthemes\tO\tthemes\tO\n->\tO\t->\tO\nwidgets\tO\twidgets\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\nand\tO\tand\tO\nis\tO\tis\tO\ndeleted\tO\tdeleted\tO\nnext\tO\tnext\tO\ntime\tO\ttime\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\nbackend\tO\tbackend\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nerrors\tO\terrors\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwp-content/debug.log B-File_Name wp-content/debug.log O\n,\tO\t,\tO\nI\tO\tI\tO\nfixed\tO\tfixed\tO\nall\tO\tall\tO\ncommon\tO\tcommon\tO\nones\tO\tones\tO\nafter\tO\tafter\tO\nactivating\tO\tactivating\tO\nthe\tO\tthe\tO\noption\tO\toption\tO\nin\tO\tin\tO\nwp-config.php B-File_Name wp-config.php O\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nare\tO\tare\tO\nmy\tO\tmy\tO\nbasic\tO\tbasic\tO\nthinking\tO\tthinking\tO\nmistakes\tO\tmistakes\tO\n?\tO\t?\tO\n\t\nBest\tO\tBest\tO\nRegards\tO\tRegards\tO\nsKylo B-User_Name sKylo O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39745237\tO\t39745237\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39745237/\tO\thttps://stackoverflow.com/questions/39745237/\tO\n\t\n\t\nYour\tO\tYour\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nall\tO\tall\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\none\tO\tone\tO\nmistake\tO\tmistake\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\n%d B-Code_Block %d B-Code_Block\nto\tO\tto\tO\nconcatenate\tO\tconcatenate\tO\nthe\tO\tthe\tO\ndecimals B-Data_Type decimals O\nafter\tO\tafter\tO\nyour\tO\tyour\tO\nid B-Variable id O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nnecessary\tO\tnecessary\tO\nsince\tO\tsince\tO\n%d B-Code_Block %d O\nis\tO\tis\tO\nautomatically\tO\tautomatically\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsupplied\tO\tsupplied\tO\nid B-Variable id O\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nfind\tO\tfind\tO\ncodex B-Website codex O\nlink\tO\tlink\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\nremoved\tO\tremoved\tO\nthe\tO\tthe\tO\n%d B-Code_Block %d O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nid B-Variable id O\nsection\tO\tsection\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\n.\tO\t.\tO\n\t\nSolution\tO\tSolution\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5723 I-Code_Block A_5723 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5724 I-Code_Block A_5724 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\n%d B-Code_Block %d O\nto\tO\tto\tO\nid\tO\tid\tO\nof\tO\tof\tO\nregister_sidebars B-Function register_sidebars O\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ncodex B-Website codex O\n,\tO\t,\tO\n\t\nit\tO\tit\tO\nsays\tO\tsays\tO\n:\tO\t:\tO\n\t\n\"\tO\t\"\tO\n%d B-Code_Block %d O\n\"\tO\t\"\tO\nis\tO\tis\tO\nadded\tO\tadded\tO\nautomatically\tO\tautomatically\tO\nto\tO\tto\tO\nsupplied\tO\tsupplied\tO\n'\tO\t'\tO\nid B-Variable id O\n'\tO\t'\tO\nvalue\tO\tvalue\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n;\tO\t;\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nSidebar-1 B-Variable Sidebar-1 O\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nSidebar-2 B-Variable Sidebar-2 O\n\"\tO\t\"\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nSidebar-3 B-Variable Sidebar-3 O\n\"\tO\t\"\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28776895\tO\t28776895\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28776895/\tO\thttps://stackoverflow.com/questions/28776895/\tO\n\t\n\t\nthe\tO\tthe\tO\nquestion\tO\tquestion\tO\ni\tO\ti\tO\nam\tO\tam\tO\nasking\tO\tasking\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nhighest\tO\thighest\tO\nnumeric\tO\tnumeric\tO\nvalue\tO\tvalue\tO\nX B-Variable X O\nwill\tO\twill\tO\nhold\tO\thold\tO\nand\tO\tand\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nlowest\tO\tlowest\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nRandom B-Code_Block Random O\nrand I-Code_Block rand O\n= I-Code_Block = O\nnew I-Code_Block new O\nRandom() I-Code_Block Random() O\n; I-Code_Block ; O\n\t\nint B-Code_Block int O\nx I-Code_Block x O\n= I-Code_Block = O\n1 I-Code_Block 1 O\n- I-Code_Block - O\nrand.Next()%15 I-Code_Block rand.Next()%15 O\n; I-Code_Block ; O\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nentered\tO\tentered\tO\nthis\tO\tthis\tO\nand\tO\tand\tO\nreceive\tO\treceive\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n-12 B-Value -12 O\nas\tO\tas\tO\na\tO\ta\tO\nresult\tO\tresult\tO\nbut\tO\tbut\tO\ncannot\tO\tcannot\tO\nget\tO\tget\tO\na\tO\ta\tO\nrange\tO\trange\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28776895\tO\t28776895\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28776895/\tO\thttps://stackoverflow.com/questions/28776895/\tO\n\t\n\t\nrand.Next() B-Code_Block rand.Next() B-Code_Block\n% I-Code_Block % I-Code_Block\n15 I-Code_Block 15 I-Code_Block\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nbetween\tO\tbetween\tO\n0 B-Value 0 O\nand\tO\tand\tO\n14 B-Value 14 O\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nIf\tO\tIf\tO\nwe\tO\twe\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ngenerates\tO\tgenerates\tO\nonly\tO\tonly\tO\npositive\tO\tpositive\tO\nintegers B-Data_Type integers O\n,\tO\t,\tO\notherwise\tO\totherwise\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\na\tO\ta\tO\nnegative\tO\tnegative\tO\nnumber\tO\tnumber\tO\ntoo\tO\ttoo\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nhere\tO\there\tO\nhow\tO\thow\tO\n:\tO\t:\tO\n\t\nhttps://math.stackexchange.com/questions/519845/modulo-of-a-negative-number\tO\thttps://math.stackexchange.com/questions/519845/modulo-of-a-negative-number\tO\n\t\nThen\tO\tThen\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\n1 B-Code_Block 1 O\n- I-Code_Block - O\n{ I-Code_Block { O\na I-Code_Block a O\nnumber I-Code_Block number O\nfrom I-Code_Block from O\nthe I-Code_Block the O\nset I-Code_Block set O\nof I-Code_Block of O\n0 I-Code_Block 0 O\nand I-Code_Block and O\n14} I-Code_Block 14} O\nand\tO\tand\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28776895\tO\t28776895\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28776895/\tO\thttps://stackoverflow.com/questions/28776895/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4057 I-Code_Block A_4057 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\npay\tO\tpay\tO\nattention\tO\tattention\tO\nthat\tO\tthat\tO\n\"rand.Next() B-Code_Block \"rand.Next() O\n% I-Code_Block % O\n15 I-Code_Block 15 O\n\"\tO\t\"\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\n\"rand.Next(15)\" B-Function \"rand.Next(15)\" O\nand\tO\tand\tO\nalso\tO\talso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4058 I-Code_Block A_4058 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nrand.Next(minValue,maxValue) B-Function rand.Next(minValue,maxValue) O\nwhere\tO\twhere\tO\nminValue B-Variable minValue O\n-\tO\t-\tO\ninclusive\tO\tinclusive\tO\n,\tO\t,\tO\nmaxValue B-Variable maxValue O\n-\tO\t-\tO\nexclusive\tO\texclusive\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6008932\tO\t6008932\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6008932/\tO\thttps://stackoverflow.com/questions/6008932/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\n.NET B-Library .NET O\nentity I-Library entity O\nframework I-Library framework O\n4.1 B-Version 4.1 O\nwith\tO\twith\tO\ncode-first\tO\tcode-first\tO\napproach\tO\tapproach\tO\nto\tO\tto\tO\neffectively\tO\teffectively\tO\nsolve\tO\tsolve\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nhere\tO\there\tO\nsimplified\tO\tsimplified\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\ntable B-Data_Structure table O\nwith\tO\twith\tO\ntens\tO\ttens\tO\nof\tO\tof\tO\nthousands\tO\tthousands\tO\nof\tO\tof\tO\nentries\tO\tentries\tO\n.\tO\t.\tO\n\t\nSeveral\tO\tSeveral\tO\nusers\tO\tusers\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\n\t\nView\tO\tView\tO\nthe\tO\tthe\tO\n(\tO\t(\tO\nentire\tO\tentire\tO\n)\tO\t)\tO\ntable B-Data_Structure table O\nin\tO\tin\tO\na\tO\ta\tO\nGridRow B-Class GridRow O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nimplied\tO\timplied\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nTable B-Data_Structure Table O\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ndownloaded\tO\tdownloaded\tO\n.\tO\t.\tO\n\t\nModify\tO\tModify\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nany\tO\tany\tO\nrandom\tO\trandom\tO\nrow B-Data_Structure row O\n,\tO\t,\tO\nchanges\tO\tchanges\tO\nare\tO\tare\tO\nfrequent\tO\tfrequent\tO\nbut\tO\tbut\tO\nneed\tO\tneed\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\npersisted\tO\tpersisted\tO\nimmediately\tO\timmediately\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nexpected\tO\texpected\tO\nthat\tO\tthat\tO\ndifferent\tO\tdifferent\tO\nusers\tO\tusers\tO\nwill\tO\twill\tO\nmodify\tO\tmodify\tO\ndifferent\tO\tdifferent\tO\nrows B-Data_Structure rows O\n,\tO\t,\tO\nbut\tO\tbut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nalways\tO\talways\tO\ntrue\tO\ttrue\tO\n.\tO\t.\tO\n\t\nSome\tO\tSome\tO\nloss\tO\tloss\tO\nof\tO\tof\tO\nchanges\tO\tchanges\tO\nis\tO\tis\tO\npermitted\tO\tpermitted\tO\n,\tO\t,\tO\nas\tO\tas\tO\nusers\tO\tusers\tO\nwill\tO\twill\tO\nmost\tO\tmost\tO\nlikely\tO\tlikely\tO\nupdate\tO\tupdate\tO\nsame\tO\tsame\tO\nrows B-Data_Structure rows O\nto\tO\tto\tO\nsame\tO\tsame\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\noccasion\tO\toccasion\tO\nadd\tO\tadd\tO\nnew\tO\tnew\tO\nrows B-Data_Structure rows O\n.\tO\t.\tO\n\t\nSounds\tO\tSounds\tO\nsimple\tO\tsimple\tO\nenough\tO\tenough\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ninitial\tO\tinitial\tO\napproach\tO\tapproach\tO\nwas\tO\twas\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nlong-running\tO\tlong-running\tO\nDbContext B-Class DbContext B-Code_Block\ninstance\tO\tinstance\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\none\tO\tone\tO\nDbContext B-Class DbContext B-Code_Block\nwas\tO\twas\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nentities\tO\tentities\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nSaveChanges() B-Function SaveChanges() B-Code_Block\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n,\tO\t,\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlegwork\tO\tlegwork\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nmany\tO\tmany\tO\nhave\tO\thave\tO\npointed\tO\tpointed\tO\nout\tO\tout\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\noptimal\tO\toptimal\tO\nsolution\tO\tsolution\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlong\tO\tlong\tO\nrun\tO\trun\tO\n,\tO\t,\tO\nnotably\tO\tnotably\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nstill\tO\tstill\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\nreasons\tO\treasons\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\na\tO\ta\tO\nunit-of-work\tO\tunit-of-work\tO\nis\tO\tis\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nscenario\tO\tscenario\tO\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nuser\tO\tuser\tO\nchooses\tO\tchooses\tO\nherself\tO\therself\tO\nwhen\tO\twhen\tO\nto\tO\tto\tO\npersist\tO\tpersist\tO\nchanges\tO\tchanges\tO\n,\tO\t,\tO\nand\tO\tand\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nsay\tO\tsay\tO\nthat\tO\tthat\tO\nclient B-Application client O\nalways\tO\talways\tO\nwins\tO\twins\tO\nfor\tO\tfor\tO\nsimplicity\tO\tsimplicity\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nalso\tO\talso\tO\nimportant\tO\timportant\tO\nto\tO\tto\tO\nnote\tO\tnote\tO\nthat\tO\tthat\tO\nobjects\tO\tobjects\tO\nthat\tO\tthat\tO\nhave\tO\thave\tO\nnot\tO\tnot\tO\nbeen\tO\tbeen\tO\ntouched\tO\ttouched\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\noverwrite\tO\toverwrite\tO\nany\tO\tany\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\napproach\tO\tapproach\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nchanges\tO\tchanges\tO\nmanually\tO\tmanually\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\nobjects\tO\tobjects\tO\nthat\tO\tthat\tO\ntrack\tO\ttrack\tO\nchanges\tO\tchanges\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\ntoo\tO\ttoo\tO\nfamiliar\tO\tfamiliar\tO\nwith\tO\twith\tO\nsuch\tO\tsuch\tO\ntechniques\tO\ttechniques\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nwelcome\tO\twelcome\tO\na\tO\ta\tO\nnudge\tO\tnudge\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ndirection\tO\tdirection\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nway\tO\tway\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nwishy-washy\tO\twishy-washy\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\nit\tO\tit\tO\nas\tO\tas\tO\nmore\tO\tmore\tO\nfundamental\tO\tfundamental\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlack\tO\tlack\tO\nfundamental\tO\tfundamental\tO\nunderstanding\tO\tunderstanding\tO\nabout\tO\tabout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\nof\tO\tof\tO\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nme\tO\tme\tO\nthat\tO\tthat\tO\nlong\tO\tlong\tO\nliving\tO\tliving\tO\nDbContext B-Class DbContext B-Code_Block\nis\tO\tis\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nway\tO\tway\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nknowledgeable\tO\tknowledgeable\tO\npeople\tO\tpeople\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\notherwise\tO\totherwise\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nleads\tO\tleads\tO\nme\tO\tme\tO\nto\tO\tto\tO\nconfusion\tO\tconfusion\tO\nand\tO\tand\tO\nimprecise\tO\timprecise\tO\nquestions\tO\tquestions\tO\n.\tO\t.\tO\n\t\nEDIT1\tO\tEDIT1\tO\n\t\nAnother\tO\tAnother\tO\npoint\tO\tpoint\tO\nof\tO\tof\tO\nconfusion\tO\tconfusion\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nexistance\tO\texistance\tO\nof\tO\tof\tO\nLocal B-Variable Local B-Code_Block\nproperty\tO\tproperty\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nDbSet B-Class DbSet B-Code_Block\n<> I-Class <> I-Code_Block\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ninvites\tO\tinvites\tO\nme\tO\tme\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nlong\tO\tlong\tO\nrunning\tO\trunning\tO\ncontext\tO\tcontext\tO\n,\tO\t,\tO\nas\tO\tas\tO\nanother\tO\tanother\tO\nuser\tO\tuser\tO\nhas\tO\thas\tO\nposted\tO\tposted\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6008932\tO\t6008932\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6008932/\tO\thttps://stackoverflow.com/questions/6008932/\tO\n\t\n\t\nSounds\tO\tSounds\tO\nto\tO\tto\tO\nme\tO\tme\tO\nlike\tO\tlike\tO\nyour\tO\tyour\tO\nusers\tO\tusers\tO\ncould\tO\tcould\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncopy\tO\tcopy\tO\n(\tO\t(\tO\ncached\tO\tcached\tO\n)\tO\t)\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nindefinate\tO\tindefinate\tO\nperiod\tO\tperiod\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlonger\tO\tlonger\tO\nthe\tO\tthe\tO\nusers\tO\tusers\tO\nare\tO\tare\tO\nusing\tO\tusing\tO\ncached\tO\tcached\tO\ndata\tO\tdata\tO\nthe\tO\tthe\tO\ngreater\tO\tgreater\tO\nthe\tO\tthe\tO\nodds\tO\todds\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\ncould\tO\tcould\tO\nbecome\tO\tbecome\tO\ndisconnected\tO\tdisconnected\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nconnection\tO\tconnection\tO\nin\tO\tin\tO\nDbContext B-Class DbContext O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nis\tO\tis\tO\nEF B-Library EF O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nwell\tO\twell\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nprobably\tO\tprobably\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\noccaisionally\tO\toccaisionally\tO\nconnected\tO\tconnected\tO\narchitecture\tO\tarchitecture\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nexpect\tO\texpect\tO\nimplementing\tO\timplementing\tO\nthat\tO\tthat\tO\nmay\tO\tmay\tO\nsolve\tO\tsolve\tO\nmany\tO\tmany\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nissues\tO\tissues\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6008932\tO\t6008932\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6008932/\tO\thttps://stackoverflow.com/questions/6008932/\tO\n\t\n\t\nProblem\tO\tProblem\tO\nwith\tO\twith\tO\nlong\tO\tlong\tO\nrunning\tO\trunning\tO\ncontext\tO\tcontext\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nrefresh\tO\trefresh\tO\ndata\tO\tdata\tO\n-\tO\t-\tO\nI\tO\tI\tO\nmore\tO\tmore\tO\ndiscussed\tO\tdiscussed\tO\nproblems\tO\tproblems\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\nuser\tO\tuser\tO\nopens\tO\topens\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nand\tO\tand\tO\nmodify\tO\tmodify\tO\ndata\tO\tdata\tO\nhalf\tO\thalf\tO\nan\tO\tan\tO\nhour\tO\thour\tO\nshe\tO\tshe\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nchanges\tO\tchanges\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nof\tO\tof\tO\nWPF B-Library WPF O\nif\tO\tif\tO\nyour\tO\tyour\tO\nbusiness\tO\tbusiness\tO\naction\tO\taction\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nOpen\tO\tOpen\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n\t\nDo\tO\tDo\tO\nas\tO\tas\tO\nmany\tO\tmany\tO\nactions\tO\tactions\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n\t\nTrigger\tO\tTrigger\tO\nsaving\tO\tsaving\tO\nchanges\tO\tchanges\tO\n\t\nThen\tO\tThen\tO\nthis\tO\tthis\tO\nwhole\tO\twhole\tO\nis\tO\tis\tO\nunit\tO\tunit\tO\nof\tO\tof\tO\nwork\tO\twork\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nsingle\tO\tsingle\tO\ncontext\tO\tcontext\tO\ninstance\tO\tinstance\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nscenario\tO\tscenario\tO\nwhere\tO\twhere\tO\nlast\tO\tlast\tO\nedit\tO\tedit\tO\nwins\tO\twins\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nhave\tO\thave\tO\nproblems\tO\tproblems\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nuntil\tO\tuntil\tO\nsomebody\tO\tsomebody\tO\nelse\tO\telse\tO\ndeletes\tO\tdeletes\tO\nrecord\tO\trecord\tO\nwhich\tO\twhich\tO\ncurrent\tO\tcurrent\tO\nuser\tO\tuser\tO\nedits\tO\tedits\tO\n.\tO\t.\tO\n\t\nAdditionally\tO\tAdditionally\tO\nafter\tO\tafter\tO\nsaving\tO\tsaving\tO\nor\tO\tor\tO\ncancelling\tO\tcancelling\tO\nchanges\tO\tchanges\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ndispose\tO\tdispose\tO\ncurrent\tO\tcurrent\tO\ncontext\tO\tcontext\tO\nand\tO\tand\tO\nload\tO\tload\tO\ndata\tO\tdata\tO\nagain\tO\tagain\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nensure\tO\tensure\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nhave\tO\thave\tO\nfresh\tO\tfresh\tO\ndata\tO\tdata\tO\nfor\tO\tfor\tO\nnext\tO\tnext\tO\nunit\tO\tunit\tO\nof\tO\tof\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nContext\tO\tContext\tO\noffers\tO\toffers\tO\nsome\tO\tsome\tO\nfeatures\tO\tfeatures\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\ndata\tO\tdata\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nonly\tO\tonly\tO\nrefreshes\tO\trefreshes\tO\ndata\tO\tdata\tO\npreviously\tO\tpreviously\tO\nloaded\tO\tloaded\tO\n(\tO\t(\tO\nwithout\tO\twithout\tO\nrelations\tO\trelations\tO\n)\tO\t)\tO\nso\tO\tso\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nnew\tO\tnew\tO\nunsaved\tO\tunsaved\tO\nrecords\tO\trecords\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nstill\tO\tstill\tO\nincluded\tO\tincluded\tO\n.\tO\t.\tO\n\t\nPerhaps\tO\tPerhaps\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nread\tO\tread\tO\nabout\tO\tabout\tO\nMS B-Library MS O\nSync I-Library Sync O\nframework\tO\tframework\tO\nand\tO\tand\tO\nlocal\tO\tlocal\tO\ndata\tO\tdata\tO\ncache\tO\tcache\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12725463\tO\t12725463\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12725463/\tO\thttps://stackoverflow.com/questions/12725463/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\ndraggable\tO\tdraggable\tO\ncontrol\tO\tcontrol\tO\nthat\tO\tthat\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nrestrict\tO\trestrict\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nboundaries\tO\tboundaries\tO\nof\tO\tof\tO\nit\tO\tit\tO\n's\tO\t's\tO\ncontaining\tO\tcontaining\tO\ngrid B-User_Interface_Element grid O\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nnot\tO\tnot\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ndrag\tO\tdrag\tO\nit\tO\tit\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ngrid B-User_Interface_Element grid O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ntest\tO\ttest\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\ntrue B-Value true O\nor\tO\tor\tO\nfalse B-Value false O\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ncancel\tO\tcancel\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nlooked\tO\tlooked\tO\nat\tO\tat\tO\nVisualTreeHelper.FindElementsInHostCoordinates B-Function VisualTreeHelper.FindElementsInHostCoordinates O\nand\tO\tand\tO\nTransformToVisual B-Function TransformToVisual O\netc\tO\tetc\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\nwithout\tO\twithout\tO\nlots\tO\tlots\tO\nof\tO\tof\tO\nchecks\tO\tchecks\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncorners\tO\tcorners\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\nsome\tO\tsome\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nDialog B-Variable Dialog O\nis\tO\tis\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\ndragged\tO\tdragged\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1207 I-Code_Block Q_1207 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12725463\tO\t12725463\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12725463/\tO\thttps://stackoverflow.com/questions/12725463/\tO\n\t\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nI\tO\tI\tO\ntook\tO\ttook\tO\nanother\tO\tanother\tO\napproach\tO\tapproach\tO\n;\tO\t;\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nstop\tO\tstop\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nfrom\tO\tfrom\tO\ndragging\tO\tdragging\tO\nANY\tO\tANY\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\ncontrol B-Class control O\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nboundary\tO\tboundary\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nonly\tO\tonly\tO\nstopped\tO\tstopped\tO\nthem\tO\tthem\tO\nfrom\tO\tfrom\tO\ndragging\tO\tdragging\tO\nthe\tO\tthe\tO\npointer B-User_Interface_Element pointer O\noutside\tO\toutside\tO\nthe\tO\tthe\tO\nboundary\tO\tboundary\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmousemove B-Variable mousemove O\neventhandler B-Class eventhandler O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1635 I-Code_Block A_1635 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\ncontrol B-Class control O\nwere\tO\twere\tO\nvisible\tO\tvisible\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nwas\tO\twas\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nClip B-Variable Clip O\nproperty I-Variable property O\nof\tO\tof\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\ncontrol B-Class control O\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchild\tO\tchild\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nboundary\tO\tboundary\tO\nare\tO\tare\tO\nhidden\tO\thidden\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1636 I-Code_Block A_1636 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nquite\tO\tquite\tO\nnicely\tO\tnicely\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12725463\tO\t12725463\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12725463/\tO\thttps://stackoverflow.com/questions/12725463/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nno\tO\tno\tO\nway\tO\tway\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\nchecking\tO\tchecking\tO\neach\tO\teach\tO\ncorner\tO\tcorner\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontrol\tO\tcontrol\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nsome\tO\tsome\tO\nshortcuts\tO\tshortcuts\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nDialog B-Variable Dialog B-Code_Block\nand\tO\tand\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ndragging\tO\tdragging\tO\nit\tO\tit\tO\nover\tO\tover\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nshape\tO\tshape\tO\nor\tO\tor\tO\nsize\tO\tsize\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\ndrag\tO\tdrag\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\nimpossible\tO\timpossible\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nleft\tO\tleft\tO\nhand\tO\thand\tO\nedge\tO\tedge\tO\nof\tO\tof\tO\nDialog B-Variable Dialog B-Code_Block\nto\tO\tto\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nhand\tO\thand\tO\nedge\tO\tedge\tO\nof\tO\tof\tO\nGrid B-Class Grid B-Code_Block\nwithout\tO\twithout\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nhand\tO\thand\tO\nedge\tO\tedge\tO\nof\tO\tof\tO\nDialog B-Variable Dialog B-Code_Block\nalso\tO\talso\tO\nbeing\tO\tbeing\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nof\tO\tof\tO\nGrid B-Class Grid B-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nonly\tO\tonly\tO\napplies\tO\tapplies\tO\nif\tO\tif\tO\nDialog B-Variable Dialog B-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\nrotated\tO\trotated\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npseudo\tO\tpseudo\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1634 I-Code_Block A_1634 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21034131\tO\t21034131\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21034131/\tO\thttps://stackoverflow.com/questions/21034131/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nsome\tO\tsome\tO\nwebcam B-Device webcam O\nvideo B-User_Interface_Element video O\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nx264 B-Library x264 O\ncodec\tO\tcodec\tO\nfound\tO\tfound\tO\nhere\tO\there\tO\nx264 B-Library x264 O\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nwriting\tO\twriting\tO\nframes\tO\tframes\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nI\tO\tI\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\npoping\tO\tpoping\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nI\tO\tI\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\nVirtualDub B-Application VirtualDub O\nHack\tO\tHack\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nvirtual B-Application virtual O\ndub I-Application dub O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nFile\tO\tFile\tO\noutput\tO\toutput\tO\nmode\tO\tmode\tO\nand\tO\tand\tO\nzero\tO\tzero\tO\nlatency\tO\tlatency\tO\nmean\tO\tmean\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncodec B-Application codec O\nsince\tO\tsince\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\nto\tO\tto\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\ncodec B-Application codec O\n,\tO\t,\tO\neverything\tO\teverything\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\nC# B-Language C# O\nand\tO\tand\tO\nemgu B-Library emgu O\nbut\tO\tbut\tO\nI\tO\tI\tO\ndont\tO\tdont\tO\nthink\tO\tthink\tO\nthats\tO\tthats\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nlies\tO\tlies\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n\t\nIn\tO\tIn\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nhelps\tO\thelps\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2236 I-Code_Block Q_2236 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21034131\tO\t21034131\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21034131/\tO\thttps://stackoverflow.com/questions/21034131/\tO\n\t\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nis\tO\tis\tO\n's\tO\t's\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nlate\tO\tlate\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nfigured\tO\tfigured\tO\nthis\tO\tthis\tO\nout\tO\tout\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\n(\tO\t(\tO\non\tO\ton\tO\nwindows B-Operating_System windows O\n)\tO\t)\tO\nis\tO\tis\tO\nto\tO\tto\tO\nset\tO\tset\tO\n-1 B-Value -1 O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ncodec B-Application codec O\n's\tO\t's\tO\nfourcc\tO\tfourcc\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\npops\tO\tpops\tO\nup\tO\tup\tO\na\tO\ta\tO\ndialog B-User_Interface_Element dialog O\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchoose\tO\tchoose\tO\na\tO\ta\tO\ncodec B-Application codec O\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nchoose\tO\tchoose\tO\nx264wfv B-Library x264wfv O\n,\tO\t,\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nconfigure\tO\tconfigure\tO\nbutton B-User_Interface_Element button O\nwhich\tO\twhich\tO\nlets\tO\tlets\tO\nyou\tO\tyou\tO\nconfigure\tO\tconfigure\tO\nthose\tO\tthose\tO\noptions\tO\toptions\tO\n(\tO\t(\tO\nzero\tO\tzero\tO\nlatency\tO\tlatency\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nNext\tO\tNext\tO\ntime\tO\ttime\tO\ncodec B-Application codec O\nwill\tO\twill\tO\nuse\tO\tuse\tO\nexact\tO\texact\tO\nsame\tO\tsame\tO\nsettings\tO\tsettings\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nrun\tO\trun\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\nwith\tO\twith\tO\nfourcc\tO\tfourcc\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20953916\tO\t20953916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20953916/\tO\thttps://stackoverflow.com/questions/20953916/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntop B-Variable top B-Code_Block\nproperty\tO\tproperty\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\n.content B-Variable .content B-Code_Block\nif\tO\tif\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\n.nav-wrapper B-Variable .nav-wrapper B-Code_Block\nhas\tO\thas\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\ndisplay B-Variable display B-Code_Block\nset\tO\tset\tO\nto\tO\tto\tO\nblock B-Variable block B-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nactual\tO\tactual\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n)\tO\t)\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2229 I-Code_Block Q_2229 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCan\tO\tCan\tO\nsomeone\tO\tsomeone\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nfiguring\tO\tfiguring\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthis\tO\tthis\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20953916\tO\t20953916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20953916/\tO\thttps://stackoverflow.com/questions/20953916/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nvery\tO\tvery\tO\nprocedural\tO\tprocedural\tO\n,\tO\t,\tO\nBut\tO\tBut\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nhand\tO\thand\tO\n,\tO\t,\tO\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\npositioning\tO\tpositioning\tO\nstatic\tO\tstatic\tB-Code_Block\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhas\tO\thas\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\ncalled\tO\tcalled\tO\nTOP B-Variable TOP B-Code_Block\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\ncheck\tO\tcheck\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\nis\tO\tis\tO\nhaving\tO\thaving\tO\nany\tO\tany\tO\npositioning\tO\tpositioning\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tB-Code_Block\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2809 I-Code_Block A_2809 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20953916\tO\t20953916\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20953916/\tO\thttps://stackoverflow.com/questions/20953916/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nthe\tO\tthe\tO\ncondition\tO\tcondition\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nanimation\tO\tanimation\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\ncheck\tO\tcheck\tO\nis\tO\tis\tO\nit\tO\tit\tO\nis\tO\tis\tO\nvisible\tO\tvisible\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nCSS B-Language CSS O\nproperty\tO\tproperty\tO\ndisplay B-Variable display B-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2810 I-Code_Block A_2810 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45156320\tO\t45156320\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45156320/\tO\thttps://stackoverflow.com/questions/45156320/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nwithin\tO\twithin\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nController\tO\tController\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\nblock\tO\tblock\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nget\tO\tget\tO\nanything\tO\tanything\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngotten\tO\tgotten\tO\na\tO\ta\tO\nminimal\tO\tminimal\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nidea\tO\tidea\tO\nworking\tO\tworking\tO\nwith\tO\twith\tO\n$ B-Code_Block $ B-Code_Block\nscope I-Code_Block scope I-Code_Block\n:\tO\t:\tO\n\t\nJS B-Language JS O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5882 I-Code_Block Q_5882 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHTML B-Language HTML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5883 I-Code_Block Q_5883 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nJSFiddle B-Application JSFiddle O\n\t\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nintroduce\tO\tintroduce\tO\n\"\tO\t\"\tO\nController\tO\tController\tO\nas\tO\tas\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\ndisplay\tO\tdisplay\tO\n:\tO\t:\tO\n\t\nJS B-Language JS O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5884 I-Code_Block Q_5884 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHTML B-Language HTML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5885 I-Code_Block Q_5885 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nJSFiddle B-Application JSFiddle O\n\t\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\n$scope B-Code_Block $scope B-Code_Block\nand\tO\tand\tO\nthis\tO\tthis\tB-Code_Block\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\nconcepts\tO\tconcepts\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nwrap\tO\twrap\tO\nmy\tO\tmy\tO\nhead\tO\thead\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nspecifics\tO\tspecifics\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nresult\tO\tresult\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nscope\tO\tscope\tO\nrules\tO\trules\tO\nfor\tO\tfor\tO\nng-repeat B-HTML_XML_Tag ng-repeat O\n,\tO\t,\tO\nor\tO\tor\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\nsomething\tO\tsomething\tO\nobvious\tO\tobvious\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45156320\tO\t45156320\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45156320/\tO\thttps://stackoverflow.com/questions/45156320/\tO\n\t\n\t\nHere\tO\tHere\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\narrow B-Function arrow B-Code_Block\nfunction\tO\tfunction\tI-Code_Block\nwhile\tO\twhile\tO\ndefining\tO\tdefining\tO\ncontroller B-Function controller B-Code_Block\nfunction\tO\tfunction\tI-Code_Block\n,\tO\t,\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nlead\tO\tlead\tO\nthis\tO\tthis\tB-Code_Block\nto\tO\tto\tO\nan\tO\tan\tO\nunexpected\tO\tunexpected\tO\ncontext\tO\tcontext\tO\nwhich\tO\twhich\tO\nnot\tO\tnot\tO\nbelong\tO\tbelong\tO\nto\tO\tto\tO\ncontroller\tO\tcontroller\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\nusing\tO\tusing\tO\nnormal\tO\tnormal\tO\nfunction\tO\tfunction\tB-Code_Block\n.\tO\t.\tO\n\t\nrefer\tO\trefer\tO\nthe\tO\tthe\tO\nbelow\tO\tbelow\tO\nexample\tO\texample\tO\nand\tO\tand\tO\nfixed\tO\tfixed\tO\njsfiddle B-Application jsfiddle O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6543 I-Code_Block Q_6543 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6544 I-Code_Block Q_6544 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45156320\tO\t45156320\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45156320/\tO\thttps://stackoverflow.com/questions/45156320/\tO\n\t\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nes6 B-Language es6 O\narrow B-Function arrow O\nfunction\tO\tfunction\tO\nsyntax\tO\tsyntax\tO\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nsupport\tO\tsupport\tO\nes6 B-Language es6 O\nsyntax.Either\tO\tsyntax.Either\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ntranspiler(Babel) B-Application transpiler(Babel) O\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nes6 B-Language es6 O\ncode\tO\tcode\tO\nto\tO\tto\tO\npure\tO\tpure\tO\njavascript B-Language javascript O\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nchanging\tO\tchanging\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6545 I-Code_Block A_6545 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWith\tO\tWith\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6546 I-Code_Block A_6546 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nJSFiddle B-Application JSFiddle O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27450607\tO\t27450607\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27450607/\tO\thttps://stackoverflow.com/questions/27450607/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nperforming\tO\tperforming\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ntraversal\tO\ttraversal\tO\nin\tO\tin\tO\nNeo4J B-Application Neo4J O\n,\tO\t,\tO\nusing\tO\tusing\tO\nmy\tO\tmy\tO\nown\tO\town\tO\nevaluator\tO\tevaluator\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ntraversal\tO\ttraversal\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nnodes B-Class nodes O\n,\tO\t,\tO\nconnected\tO\tconnected\tO\nby\tO\tby\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\nrelationships\tO\trelationships\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nseeing\tO\tseeing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nrelationships\tO\trelationships\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nwalked\tO\twalked\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\ntraversal\tO\ttraversal\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\ncustom\tO\tcustom\tO\nevaluation\tO\tevaluation\tO\nchanges\tO\tchanges\tO\nits\tO\tits\tO\nbehavior\tO\tbehavior\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nwhether\tO\twhether\tO\nboth\tO\tboth\tO\nrelationships\tO\trelationships\tO\nare\tO\tare\tO\npresent\tO\tpresent\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nduring\tO\tduring\tO\na\tO\ta\tO\ntraversal\tO\ttraversal\tO\n,\tO\t,\tO\nNeo4J B-Application Neo4J O\nmaintains\tO\tmaintains\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\nvisited\tO\tvisited\tO\nnodes B-Class nodes O\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\na\tO\ta\tO\ncandidate\tO\tcandidate\tO\npath\tO\tpath\tO\nends\tO\tends\tO\nat\tO\tat\tO\na\tO\ta\tO\nnode B-Class node O\nthat\tO\tthat\tO\nhas\tO\thas\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\nvisited\tO\tvisited\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthat\tO\tthat\tO\npath\tO\tpath\tO\nis\tO\tis\tO\nnever\tO\tnever\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nevaluator\tO\tevaluator\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nevaluator\tO\tevaluator\tO\nexamine\tO\texamine\tO\nevery\tO\tevery\tO\npossible\tO\tpossible\tO\npath\tO\tpath\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnodes B-Class nodes O\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nquick\tO\tquick\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nSay\tO\tSay\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ngraph\tO\tgraph\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3164 I-Code_Block Q_3164 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ntraversal\tO\ttraversal\tO\nbegins\tO\tbegins\tO\nat\tO\tat\tO\nA B-Variable A O\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nhas\tO\thas\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\nrelationships\tO\trelationships\tO\ntying\tO\ttying\tO\nit\tO\tit\tO\nto\tO\tto\tO\nB B-Variable B O\n(\tO\t(\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\ndifferent\tO\tdifferent\tO\ntypes\tO\ttypes\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nremaining\tO\tremaining\tO\nnodes B-Class nodes O\nare\tO\tare\tO\nconnected\tO\tconnected\tO\nby\tO\tby\tO\nonly\tO\tonly\tO\n1\tO\t1\tO\nrelationship\tO\trelationship\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ngoal\tO\tgoal\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nevaluator\tO\tevaluator\tO\nis\tO\tis\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\nA-D B-Variable A-D O\n,\tO\t,\tO\nA-B B-Variable A-B O\n,\tO\t,\tO\nand\tO\tand\tO\nB-C B-Variable B-C O\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nD-E B-Variable D-E O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndetermination\tO\tdetermination\tO\nthat\tO\tthat\tO\nB-C B-Variable B-C O\nis\tO\tis\tO\nvalid\tO\tvalid\tO\ncomes\tO\tcomes\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nfact\tO\tfact\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nrelationships\tO\trelationships\tO\nbetween\tO\tbetween\tO\nA B-Variable A O\nand\tO\tand\tO\nB B-Variable B O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\nsolved\tO\tsolved\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27450607\tO\t27450607\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27450607/\tO\thttps://stackoverflow.com/questions/27450607/\tO\n\t\n\t\nYou\tO\tYou\tO\nmay\tO\tmay\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nthink\tO\tthink\tO\nyour\tO\tyour\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nmore\tO\tmore\tO\ncarefully\tO\tcarefully\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nsuggestion\tO\tsuggestion\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\ntraversal B-Library traversal O\nframework I-Library framework O\nin\tO\tin\tO\njava B-Language java O\n,\tO\t,\tO\nbasically\tO\tbasically\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nbuild\tO\tbuild\tO\na\tO\ta\tO\nTraversalDescription B-Function TraversalDescription B-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\niterate\tO\titerate\tO\nthrough\tO\tthrough\tO\nwhat\tO\twhat\tO\ncomes\tO\tcomes\tO\nback\tO\tback\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\nby\tO\tby\tO\nrelationships\tO\trelationships\tO\n,\tO\t,\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nby\tO\tby\tO\nPaths\tO\tPaths\tO\nor\tO\tor\tO\nby\tO\tby\tO\nNodes\tO\tNodes\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\nprimary\tO\tprimary\tO\ncomplaint\tO\tcomplaint\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\nnode B-Class node O\nis\tO\tis\tO\nvisited\tO\tvisited\tO\nonly\tO\tonly\tO\nonce\tO\tonce\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nTraversalDescription B-Function TraversalDescription B-Code_Block\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nRELATIONSHIP_GLOBAL B-Function RELATIONSHIP_GLOBAL O\nguaranteeing\tO\tguaranteeing\tO\nthat\tO\tthat\tO\nall\tO\tall\tO\nrelationships\tO\trelationships\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfollowed\tO\tfollowed\tO\n,\tO\t,\tO\nwhether\tO\twhether\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nthat\tO\tthat\tO\ncauses\tO\tcauses\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nhit\tO\thit\tO\na\tO\ta\tO\nnode\tO\tnode\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\nbroadly\tO\tbroadly\tO\n,\tO\t,\tO\ntraversers\tO\ttraversers\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ntend\tO\ttend\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nover\tO\tover\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nmaterial\tO\tmaterial\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nonce\tO\tonce\tO\nbecause\tO\tbecause\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\ndid\tO\tdid\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'd\tO\t'd\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nultra\tO\tultra\tO\ncareful\tO\tcareful\tO\nabout\tO\tabout\tO\nspecifying\tO\tspecifying\tO\na\tO\ta\tO\ntermination\tO\ttermination\tO\ncondition\tO\tcondition\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nhitting\tO\thitting\tO\ncertain\tO\tcertain\tO\nnodes B-Class nodes O\nor\tO\tor\tO\nrelationships\tO\trelationships\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\nonce\tO\tonce\tO\nis\tO\tis\tO\nOK\tO\tOK\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\ndo\tO\tdo\tO\nyou\tO\tyou\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndone\tO\tdone\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26068953\tO\t26068953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26068953/\tO\thttps://stackoverflow.com/questions/26068953/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nbrand\tO\tbrand\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nPyQt B-Application PyQt O\nso\tO\tso\tO\nbear\tO\tbear\tO\nwith\tO\twith\tO\nme\tO\tme\tO\nhere\tO\there\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nwidget B-User_Interface_Element widget O\nwith\tO\twith\tO\nQt B-Application Qt O\nDesigner I-Application Designer O\n,\tO\t,\tO\nthen\tO\tthen\tO\ncompile\tO\tcompile\tO\nit\tO\tit\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\nas\tO\tas\tO\n.py B-File_Type .py O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\n.py B-File_Type .py O\nfile\tO\tfile\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\nadditional\tO\tadditional\tO\nfunctionality\tO\tfunctionality\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthen\tO\tthen\tO\nsay\tO\tsay\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\nto\tO\tto\tO\nQt B-Application Qt O\nDesigner I-Application Designer O\nand\tO\tand\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nlayout\tO\tlayout\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nGUI\tO\tGUI\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nthat\tO\tthat\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\n.py B-File_Type .py O\nfile\tO\tfile\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nchanges\tO\tchanges\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nhaving\tO\thaving\tO\nto\tO\tto\tO\nmanually\tO\tmanually\tO\ncopy/paste\tO\tcopy/paste\tO\nmy\tO\tmy\tO\ncustom\tO\tcustom\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26068953\tO\t26068953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26068953/\tO\thttps://stackoverflow.com/questions/26068953/\tO\n\t\n\t\nPersonally\tO\tPersonally\tO\nI\tO\tI\tO\nhate\tO\thate\tO\ncompiling\tO\tcompiling\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nlike\tO\tlike\tO\nekhumoro B-User_Name ekhumoro O\nsaid\tO\tsaid\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nimport\tO\timport\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nstill\tO\tstill\tO\ndislike\tO\tdislike\tO\nthis\tO\tthis\tO\nthough\tO\tthough\tO\n.\tO\t.\tO\n\t\npyuic B-Library pyuic B-Code_Block\nsometimes\tO\tsometimes\tO\nimports\tO\timports\tO\nnasty\tO\tnasty\tO\nexample_rc B-File_Name example_rc B-Code_Block\nthings\tO\tthings\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nlowers\tO\tlowers\tO\nproductivity\tO\tproductivity\tO\nlevels\tO\tlevels\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nabsolutely\tO\tabsolutely\tO\nmust\tO\tmust\tO\ntransform\tO\ttransform\tO\n.ui B-File_Type .ui B-Code_Block\nto\tO\tto\tO\n.py B-File_Type .py B-Code_Block\n,\tO\t,\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\n.bat B-File_Type .bat B-Code_Block\nfile\tO\tfile\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nCode\tO\tCode\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3605 I-Code_Block A_3605 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOr\tO\tOr\tO\nwhatever\tO\twhatever\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nOS\tO\tOS\tO\n.\tO\t.\tO\n\t\nPersonally\tO\tPersonally\tO\nI\tO\tI\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nui B-Code_Block ui B-Code_Block\n= I-Code_Block = I-Code_Block\nuic.loadUi('example.ui') I-Code_Block uic.loadUi('example.ui') I-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\nui.setupUi() B-Function ui.setupUi() B-Code_Block\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nmuch\tO\tmuch\tO\nmuch\tO\tmuch\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\n!\tO\t!\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26068953\tO\t26068953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26068953/\tO\thttps://stackoverflow.com/questions/26068953/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ntop\tO\ttop\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ngenerated\tO\tgenerated\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\nline\tO\tline\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3585 I-Code_Block A_3585 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nmakes\tO\tmakes\tO\nit\tO\tit\tO\nquite\tO\tquite\tO\nclear\tO\tclear\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nmeant\tO\tmeant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nedited\tO\tedited\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nan\tO\tan\tO\nordinary\tO\tordinary\tO\npython B-Language python O\nmodule\tO\tmodule\tO\n,\tO\t,\tO\nand\tO\tand\tO\nso\tO\tso\tO\nit\tO\tit\tO\n's\tO\t's\tO\neasy\tO\teasy\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\nimport\tO\timport\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nyour\tO\tyour\tO\nmain\tO\tmain\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\naccess\tO\taccess\tO\nit\tO\tit\tO\nfrom\tO\tfrom\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nsubclass\tO\tsubclass\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntop-level\tO\ttop-level\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nQt B-Application Qt O\nDesigner I-Application Designer O\n(\tO\t(\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nQMainWindow B-Class QMainWindow B-Code_Block\n,\tO\t,\tO\nQDialog B-Class QDialog B-Code_Block\nor\tO\tor\tO\nQWidget B-Class QWidget B-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nsetupUi B-Function setupUi B-Code_Block\nmethod\tO\tmethod\tO\nprovided\tO\tprovided\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ngenerated\tO\tgenerated\tO\nmodule\tO\tmodule\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwidgets B-Class widgets O\nto\tO\tto\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nsubclass\tO\tsubclass\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ntop-level\tO\ttop-level\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nQt B-Application Qt O\nDesigner I-Application Designer O\nwas\tO\twas\tO\nnamed\tO\tnamed\tO\n\" B-Value \" O\nMainWindow I-Value MainWindow O\n\" I-Value \" O\n,\tO\t,\tO\npyuic B-Library pyuic O\nwill\tO\twill\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncorresponding\tO\tcorresponding\tO\nUi_MainWindow B-Class Ui_MainWindow B-Code_Block\nclass\tO\tclass\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nimported\tO\timported\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nmain.py B-File_Name main.py B-Code_Block\nscript\tO\tscript\tO\nand\tO\tand\tO\nused\tO\tused\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3586 I-Code_Block A_3586 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSee\tO\tSee\tO\nUsing\tO\tUsing\tO\nQt B-Application Qt O\nDesigner I-Application Designer O\nin\tO\tin\tO\nthe\tO\tthe\tO\nPyQt B-Application PyQt O\nDocumentation\tO\tDocumentation\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18972385\tO\t18972385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18972385/\tO\thttps://stackoverflow.com/questions/18972385/\tO\n\t\n\t\nTake\tO\tTake\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ninsertion B-Algorithm insertion O\nsort I-Algorithm sort O\nalgorithm\tO\talgorithm\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nit\tO\tit\tO\n's\tO\t's\tO\nO(n^2)\tO\tO(n^2)\tO\nfairly\tO\tfairly\tO\neasy\tO\teasy\tO\nby\tO\tby\tO\nexamining\tO\texamining\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nproving\tO\tproving\tO\nit\tO\tit\tO\n's\tO\t's\tO\nO(n^2)\tO\tO(n^2)\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\ndoing\tO\tdoing\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\nadd\tO\tadd\tO\nup\tO\tup\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\noperations\tO\toperations\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nn B-Code_Block n B-Code_Block\n+ I-Code_Block + I-Code_Block\n\" I-Code_Block \" I-Code_Block\nsum I-Code_Block sum I-Code_Block\nof I-Code_Block of I-Code_Block\nj I-Code_Block j I-Code_Block\n= I-Code_Block = I-Code_Block\n2 I-Code_Block 2 I-Code_Block\nto I-Code_Block to I-Code_Block\nn I-Code_Block n I-Code_Block\n\" I-Code_Block \" I-Code_Block\nwould\tO\twould\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\nn^2 B-Code_Block n^2 O\nas\tO\tas\tO\nfar\tO\tfar\tO\nas\tO\tas\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nprove\tO\tprove\tO\nthis\tO\tthis\tO\nexactly\tO\texactly\tO\n.\tO\t.\tO\n\t\nCould\tO\tCould\tO\nsomeone\tO\tsomeone\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nclearly\tO\tclearly\tO\nexplain\tO\texplain\tO\nhow\tO\thow\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nprove\tO\tprove\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nin\tO\tin\tO\na\tO\ta\tO\nway\tO\tway\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\nO(n^3)\tO\tO(n^3)\tO\nalgorithm\tO\talgorithm\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18972385\tO\t18972385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18972385/\tO\thttps://stackoverflow.com/questions/18972385/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nO(n^2)\tO\tO(n^2)\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nmultiplication\tO\tmultiplication\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nsum\tO\tsum\tO\n.\tO\t.\tO\n\t\nTake\tO\tTake\tO\nby\tO\tby\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nsorted\tO\tsorted\tO\nin\tO\tin\tO\ninverse\tO\tinverse\tO\norder\tO\torder\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2513 I-Code_Block A_2513 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nthese\tO\tthese\tO\ncases\tO\tcases\tO\nevery\tO\tevery\tO\niteration\tO\titeration\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ninner\tO\tinner\tO\nloop\tO\tloop\tO\nwill\tO\twill\tO\nscan\tO\tscan\tO\nand\tO\tand\tO\nshift\tO\tshift\tO\nthe\tO\tthe\tO\nentire\tO\tentire\tO\nsorted\tO\tsorted\tO\nsubsection\tO\tsubsection\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nbefore\tO\tbefore\tO\ninserting\tO\tinserting\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ngives\tO\tgives\tO\ninsertion B-Algorithm insertion O\nsort I-Algorithm sort O\na\tO\ta\tO\nquadratic\tO\tquadratic\tO\nrunning\tO\trunning\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n,\tO\t,\tO\nO(n2))\tO\tO(n2))\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\ninfo\tO\tinfo\tO\n\t\nThe\tO\tThe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\ncomplexity\tO\tcomplexity\tO\nis\tO\tis\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nworst\tO\tworst\tO\ncase\tO\tcase\tO\nexample\tO\texample\tO\nand\tO\tand\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\n's\tO\t's\tO\nsteps\tO\tsteps\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18972385\tO\t18972385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18972385/\tO\thttps://stackoverflow.com/questions/18972385/\tO\n\t\n\t\nYou\tO\tYou\tO\nprove\tO\tprove\tO\nbig\tO\tbig\tO\nO\tO\tO\tO\ncomplexity\tO\tcomplexity\tO\nby\tO\tby\tO\nconsidering\tO\tconsidering\tO\nhow\tO\thow\tO\nmany\tO\tmany\tO\noperations\tO\toperations\tO\nare\tO\tare\tO\nperformed\tO\tperformed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nworst\tO\tworst\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\n've\tO\t've\tO\ndone\tO\tdone\tO\nthe\tO\tthe\tO\ncounting\tO\tcounting\tO\npart\tO\tpart\tO\nand\tO\tand\tO\nentered\tO\tentered\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nhand\tO\thand\tO\ncolumn B-User_Interface_Element column O\nof\tO\tof\tO\nyour\tO\tyour\tO\nimage B-User_Interface_Element image O\n,\tO\t,\tO\nso\tO\tso\tO\nwhat\tO\twhat\tO\nremains\tO\tremains\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nproven\tO\tproven\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndominant\tO\tdominant\tO\nterm\tO\tterm\tO\nis\tO\tis\tO\nO(n^2) B-Code_Block O(n^2) B-Code_Block\n.\tO\t.\tO\n\t\nApart\tO\tApart\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\nthat\tO\tthat\tO\ninvolve\tO\tinvolve\tO\nthe\tO\tthe\tO\nsum\tO\tsum\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nprogram\tO\tprogram\tO\nconsists\tO\tconsists\tO\nof\tO\tof\tO\ninstructions\tO\tinstructions\tO\nthat\tO\tthat\tO\nget\tO\tget\tO\nexecuted\tO\texecuted\tO\nn-1 B-Code_Block n-1 B-Code_Block\ntimes\tO\ttimes\tO\nso\tO\tso\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nall\tO\tall\tO\nO(n) B-Code_Block O(n) B-Code_Block\nterms\tO\tterms\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsum\tO\tsum\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nworst\tO\tworst\tO\ncase\tO\tcase\tO\na\tO\ta\tO\nt_j B-Variable t_j B-Code_Block\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nj B-Variable j B-Code_Block\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nend\tO\tend\tO\nup\tO\tup\tO\ndecrementing\tO\tdecrementing\tO\ni B-Variable i B-Code_Block\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nset\tO\tset\tO\nto\tO\tto\tO\nj B-Variable j B-Code_Block\nall\tO\tall\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\n0\tO\t0\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nworst\tO\tworst\tO\ncase\tO\tcase\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nt_j B-Code_Block t_j B-Code_Block\n= I-Code_Block = I-Code_Block\nj I-Code_Block j I-Code_Block\nand\tO\tand\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nterm\tO\tterm\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsum B-Code_Block sum B-Code_Block\nfrom I-Code_Block from I-Code_Block\n2 I-Code_Block 2 I-Code_Block\nto I-Code_Block to I-Code_Block\nn I-Code_Block n I-Code_Block\nof I-Code_Block of I-Code_Block\nj I-Code_Block j I-Code_Block\nwhich\tO\twhich\tO\nis\tO\tis\tO\nO(n^2) B-Code_Block O(n^2) B-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\nmathematical\tO\tmathematical\tO\nidentity\tO\tidentity\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nproven\tO\tproven\tO\nby\tO\tby\tO\nsumming\tO\tsumming\tO\ntwo\tO\ttwo\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nseries\tO\tseries\tO\ntogether\tO\ttogether\tO\n,\tO\t,\tO\npaying\tO\tpaying\tO\nattention\tO\tattention\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nadd\tO\tadd\tO\ntwo\tO\ttwo\tO\nterms\tO\tterms\tO\nthat\tO\tthat\tO\nsum\tO\tsum\tO\nto\tO\tto\tO\nn+1 B-Code_Block n+1 B-Code_Block\ntogether\tO\ttogether\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\ndividing\tO\tdividing\tO\nthe\tO\tthe\tO\nsum\tO\tsum\tO\nby\tO\tby\tO\ntwo\tO\ttwo\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nproof\tO\tproof\tO\nin\tO\tin\tO\nwolfram B-Application wolfram O\n.\tO\t.\tO\n\t\nFinally\tO\tFinally\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nO B-Code_Block O B-Code_Block\n( I-Code_Block ( I-Code_Block\n( B-Code_Block ( B-Code_Block\nn^2 I-Code_Block n^2 I-Code_Block\n+ I-Code_Block + I-Code_Block\nn I-Code_Block n I-Code_Block\n) I-Code_Block ) I-Code_Block\n/2 B-Code_Block /2 B-Code_Block\n) I-Code_Block ) I-Code_Block\n= I-Code_Block = I-Code_Block\nO(n^2) I-Code_Block O(n^2) I-Code_Block\nyou\tO\tyou\tO\nget\tO\tget\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\nthat\tO\tthat\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nsum\tO\tsum\tO\ndominate\tO\tdominate\tO\nthe\tO\tthe\tO\nruntime\tO\truntime\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\nis\tO\tis\tO\nO(n^2) B-Code_Block O(n^2) B-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4898317\tO\t4898317\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4898317/\tO\thttps://stackoverflow.com/questions/4898317/\tO\n\t\n\t\nin\tO\tin\tO\nblacberry B-Device blacberry O\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nrecord\tO\trecord\tO\naudio\tO\taudio\tO\nfor\tO\tfor\tO\nVOIP B-Application VOIP O\napplication\tO\tapplication\tO\n,\tO\t,\tO\ni\tO\ti\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nrecording\tO\trecording\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nsave\tO\tsave\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\nphone B-Device phone O\n(\tO\t(\tO\nor\tO\tor\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nmodify\tO\tmodify\tO\nthis\tO\tthis\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\nstream\tO\tstream\tO\n)\tO\t)\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ncapture\tO\tcapture\tO\nsound\tO\tsound\tO\nand\tO\tand\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\ndelivering\tO\tdelivering\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nserver B-Application server O\nrather\tO\trather\tO\nthan\tO\tthan\tO\nrecording\tO\trecording\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nopensource\tO\topensource\tO\nprojects\tO\tprojects\tO\non\tO\ton\tO\nthis\tO\tthis\tO\ntopic\tO\ttopic\tO\n?\tO\t?\tO\n\t\nrecording\tO\trecording\tO\npart\tO\tpart\tO\nis\tO\tis\tO\nhere\tO\there\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_348 I-Code_Block Q_348 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ncurrently\tO\tcurrently\tO\ni\tO\ti\tO\nam\tO\tam\tO\nsaving\tO\tsaving\tO\nthe\tO\tthe\tO\nrecorded\tO\trecorded\tO\ndetails\tO\tdetails\tO\nto\tO\tto\tO\na\tO\ta\tO\nByteArrayOutputStream B-Class ByteArrayOutputStream O\nand\tO\tand\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nrecording\tO\trecording\tO\nsaving\tO\tsaving\tO\nit\tO\tit\tO\nto\tO\tto\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_349 I-Code_Block Q_349 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4898317\tO\t4898317\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4898317/\tO\thttps://stackoverflow.com/questions/4898317/\tO\n\t\n\t\nWell\tO\tWell\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nI\tO\tI\tO\nunderstand\tO\tunderstand\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\nstream\tO\tstream\tO\ndirectly\tO\tdirectly\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver B-Application server O\nwhile\tO\twhile\tO\nrecording\tO\trecording\tO\nI\tO\tI\tO\nguess\tO\tguess\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\naccess\tO\taccess\tO\nyour\tO\tyour\tO\nByteArrayOutputStream B-Class ByteArrayOutputStream O\n(\tO\t(\tO\ndataOut B-Variable dataOut O\n)\tO\t)\tO\nin\tO\tin\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nthread\tO\tthread\tO\n,\tO\t,\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nbytes B-Data_Type bytes O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\n,\tO\t,\tO\nwrap\tO\twrap\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nRTP\tO\tRTP\tO\npackages\tO\tpackages\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nstreaming\tO\tstreaming\tO\nserver B-Application server O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nseparate\tO\tseparate\tO\nthread\tO\tthread\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nrunning\tO\trunning\tO\ntogether\tO\ttogether\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nrecording\tO\trecording\tO\nprocess\tO\tprocess\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsave\tO\tsave\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\nstream\tO\tstream\tO\nin\tO\tin\tO\nany\tO\tany\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\nyou\tO\tyou\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\napproach\tO\tapproach\tO\n?\tO\t?\tO\n\t\nWhich\tO\tWhich\tO\nstreaming\tO\tstreaming\tO\nserver B-Application server O\nare\tO\tare\tO\nyou\tO\tyou\tO\nusing\tO\tusing\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14022529\tO\t14022529\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14022529/\tO\thttps://stackoverflow.com/questions/14022529/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntext B-File_Type text O\nfile\tO\tfile\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1334 I-Code_Block Q_1334 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1335 I-Code_Block Q_1335 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nfield\tO\tfield\tO\nfrom\tO\tfrom\tO\nlower-case\tO\tlower-case\tO\ninto\tO\tinto\tO\nupper-case\tO\tupper-case\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nfields\tO\tfields\tO\nin\tO\tin\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nline\tO\tline\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nfixed\tO\tfixed\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\naccomplish\tO\taccomplish\tO\nthis\tO\tthis\tO\ngoal\tO\tgoal\tO\nusing\tO\tusing\tO\nawk B-Language awk B-Code_Block\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14022529\tO\t14022529\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14022529/\tO\thttps://stackoverflow.com/questions/14022529/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1788 I-Code_Block A_1788 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14022529\tO\t14022529\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14022529/\tO\thttps://stackoverflow.com/questions/14022529/\tO\n\t\n\t\nYou\tO\tYou\tO\nsure\tO\tsure\tO\ncan\tO\tcan\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nhow\tO\thow\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1785 I-Code_Block A_1785 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nResults\tO\tResults\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1786 I-Code_Block A_1786 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFrom\tO\tFrom\tO\nthe\tO\tthe\tO\nmanual\tO\tmanual\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nI\tO\tI\tO\nmade\tO\tmade\tO\nthe\tO\tthe\tO\nassumption\tO\tassumption\tO\nthat\tO\tthat\tO\ngiven\tO\tgiven\tO\nyour\tO\tyour\tO\nsample\tO\tsample\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nthree\tO\tthree\tO\ncolumns B-User_Interface_Element columns O\nand\tO\tand\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\ncomponent\tO\tcomponent\tO\nyou\tO\tyou\tO\ndiscuss\tO\tdiscuss\tO\napplies\tO\tapplies\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncolumns B-User_Interface_Element columns O\nafter\tO\tafter\tO\nthose\tO\tthose\tO\ncontaining\tO\tcontaining\tO\nwords\tO\twords\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsimply\tO\tsimply\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nconditional\tO\tconditional\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1787 I-Code_Block A_1787 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3291218\tO\t3291218\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3291218/\tO\thttps://stackoverflow.com/questions/3291218/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\ndrawing\tO\tdrawing\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ntake\tO\ttake\tO\nan\tO\tan\tO\nordered\tO\tordered\tO\nlist\tO\tlist\tO\nmouse B-Device mouse O\npositions\tO\tpositions\tO\n,\tO\t,\tO\nand\tO\tand\tO\napproximate\tO\tapproximate\tO\na\tO\ta\tO\nsmooth\tO\tsmooth\tO\nQuadratic\tO\tQuadratic\tO\nBSpline\tO\tBSpline\tO\nCurve\tO\tCurve\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3291218\tO\t3291218\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3291218/\tO\thttps://stackoverflow.com/questions/3291218/\tO\n\t\n\t\n\"\tO\t\"\tO\nB-spline\tO\tB-spline\tO\ncurve\tO\tcurve\tO\nfitting\tO\tfitting\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nadaptive\tO\tadaptive\tO\ncurve\tO\tcurve\tO\nrefinement\tO\trefinement\tO\nusing\tO\tusing\tO\ndominant\tO\tdominant\tO\npoints\tO\tpoints\tO\n\"\tO\t\"\tO\nby\tO\tby\tO\nPark B-User_Name Park O\n&\tO\t&\tO\nLee B-User_Name Lee O\nand\tO\tand\tO\n\"\tO\t\"\tO\nFair\tO\tFair\tO\ninterpolation\tO\tinterpolation\tO\nand\tO\tand\tO\napproximation\tO\tapproximation\tO\nof\tO\tof\tO\nB-splines\tO\tB-splines\tO\nby\tO\tby\tO\nenergy\tO\tenergy\tO\nminimization\tO\tminimization\tO\nand\tO\tand\tO\npoints\tO\tpoints\tO\ninsertion\tO\tinsertion\tO\n\"\tO\t\"\tO\nby\tO\tby\tO\nVassilev B-User_Name Vassilev O\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nsolving\tO\tsolving\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nthere\tO\tthere\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nreferences\tO\treferences\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nlink\tO\tlink\tO\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nConverting\tO\tConverting\tO\ndata\tO\tdata\tO\npoints\tO\tpoints\tO\nto\tO\tto\tO\ncontrol\tO\tcontrol\tO\npoints\tO\tpoints\tO\nin\tO\tin\tO\nareas\tO\tareas\tO\nof\tO\tof\tO\nhigh\tO\thigh\tO\ncurvature\tO\tcurvature\tO\nand\tO\tand\tO\nremoving\tO\tremoving\tO\ndata\tO\tdata\tO\npoints\tO\tpoints\tO\nin\tO\tin\tO\nareas\tO\tareas\tO\nof\tO\tof\tO\nlittle\tO\tlittle\tO\ncurvature\tO\tcurvature\tO\nis\tO\tis\tO\na\tO\ta\tO\ngeneral\tO\tgeneral\tO\napproach\tO\tapproach\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n4613792\tO\t4613792\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4613792/\tO\thttps://stackoverflow.com/questions/4613792/\tO\n\t\n\t\nWe\tO\tWe\tO\nhave\tO\thave\tO\nsvn B-Application svn O\n1.6 B-Version 1.6 O\n,\tO\t,\tO\na\tO\ta\tO\ntrunk\tO\ttrunk\tO\nwith\tO\twith\tO\napprox\tO\tapprox\tO\n30000\tO\t30000\tO\nfiles\tO\tfiles\tO\n(\tO\t(\tO\n1\tO\t1\tO\nGB\tO\tGB\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\na\tO\ta\tO\n\"\tO\t\"\tO\ntest\tO\ttest\tO\n\"\tO\t\"\tO\nbranch\tO\tbranch\tO\noriginally\tO\toriginally\tO\ncopied\tO\tcopied\tO\nfrom\tO\tfrom\tO\ntrunk\tO\ttrunk\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nkeeping\tO\tkeeping\tO\nour\tO\tour\tO\n\" B-Value \" O\ntest I-Value test O\n\" I-Value \" O\nbranch\tO\tbranch\tO\nin\tO\tin\tO\nsync B-Value sync O\n,\tO\t,\tO\nthe\tO\tthe\tO\nsvn B-Code_Block svn B-Code_Block\nmerge I-Code_Block merge I-Code_Block\n^ I-Code_Block ^ I-Code_Block\n/trunk I-Code_Block /trunk I-Code_Block\ncommand\tO\tcommand\tO\ntakes\tO\ttakes\tO\na\tO\ta\tO\nlong\tO\tlong\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\n30\tO\t30\tO\nmin\tO\tmin\tO\n)\tO\t)\tO\nalthough\tO\talthough\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nonly\tO\tonly\tO\nchanging\tO\tchanging\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nfiles\tO\tfiles\tO\nin\tO\tin\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nsubdirectory\tO\tsubdirectory\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nknow\tO\tknow\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nmerge\tO\tmerge\tO\ncommand\tO\tcommand\tO\nfaster\tO\tfaster\tO\n?\tO\t?\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\ntakes\tO\ttakes\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nchanged\tO\tchanged\tO\nfiles\tO\tfiles\tO\nbut\tO\tbut\tO\napparently\tO\tapparently\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nall\tO\tall\tO\nrepository\tO\trepository\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanybody\tO\tanybody\tO\nknows\tO\tknows\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n4613792\tO\t4613792\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/4613792/\tO\thttps://stackoverflow.com/questions/4613792/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nprobably\tO\tprobably\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nsub-folders\tO\tsub-folders\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncheckout\tO\tcheckout\tO\n.\tO\t.\tO\n\t\nEach\tO\tEach\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nhas\tO\thas\tO\nan\tO\tan\tO\n.svn B-File_Type .svn O\nfolder\tO\tfolder\tO\nwhich\tO\twhich\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nchecked\tO\tchecked\tO\nfor\tO\tfor\tO\nlocal\tO\tlocal\tO\nchanges\tO\tchanges\tO\nduring\tO\tduring\tO\nthe\tO\tthe\tO\nmerge\tO\tmerge\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nmean\tO\tmean\tO\nthat\tO\tthat\tO\nhaving\tO\thaving\tO\none\tO\tone\tO\nhuge\tO\thuge\tO\nfolder\tO\tfolder\tO\nwith\tO\twith\tO\n30,000\tO\t30,000\tO\nfiles\tO\tfiles\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nany\tO\tany\tO\nfaster\tO\tfaster\tO\n,\tO\t,\tO\nthough\tO\tthough\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nin\tO\tin\tO\na\tO\ta\tO\nsmaller\tO\tsmaller\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nnoticeable\tO\tnoticeable\tO\ndifference\tO\tdifference\tO\nin\tO\tin\tO\ntime\tO\ttime\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\noperation\tO\toperation\tO\nwhen\tO\twhen\tO\nrunning\tO\trunning\tO\non\tO\ton\tO\na\tO\ta\tO\nfast\tO\tfast\tO\nSSD B-Device SSD O\ndrive I-Device drive O\nvs\tO\tvs\tO\n.\tO\t.\tO\nregular B-Device regular O\ndrive I-Device drive O\nor\tO\tor\tO\na\tO\ta\tO\nnetworked\tO\tnetworked\tO\nfile\tO\tfile\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30743773\tO\t30743773\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30743773/\tO\thttps://stackoverflow.com/questions/30743773/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nat\tO\tat\tO\nLC3 B-Language LC3 O\nassembly I-Language assembly O\nthat\tO\tthat\tO\ndevides\tO\tdevides\tO\n2\tO\t2\tO\nnatural B-Data_Type natural O\nnumbers I-Data_Type numbers O\nand\tO\tand\tO\nstores\tO\tstores\tO\nthe\tO\tthe\tO\nremainder\tO\tremainder\tO\nat\tO\tat\tO\nR0.In B-Variable R0.In O\ncase\tO\tcase\tO\nthat\tO\tthat\tO\nR1 B-Variable R1 O\nis\tO\tis\tO\nzero B-Value zero O\n,\tO\t,\tO\nR1 B-Variable R1 O\nmust\tO\tmust\tO\nbe\tO\tbe\tO\n0.Else B-Value 0.Else O\nR1 B-Variable R1 O\nmust\tO\tmust\tO\nbe\tO\tbe\tO\n1 B-Value 1 O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3692 I-Code_Block Q_3692 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nprogram\tO\tprogram\tO\nat\tO\tat\tO\nLC3 B-Language LC3 O\nassembly I-Language assembly O\n...\tO\t...\tO\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\ntotal\tO\ttotal\tO\nbeginner.Could\tO\tbeginner.Could\tO\nanyone\tO\tanyone\tO\nexplain\tO\texplain\tO\nto\tO\tto\tO\nme\tO\tme\tO\nwhy\tO\twhy\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ncompile\tO\tcompile\tO\n?\tO\t?\tO\nI\tO\tI\tO\nalways\tO\talways\tO\nget\tO\tget\tO\na\tO\ta\tO\n\"\tO\t\"\tO\nInvalid B-Error_Name Invalid O\nlabel I-Error_Name label O\n' I-Error_Name ' O\n#25 I-Error_Name #25 O\n\"\tO\t\"\tO\n\"\tO\t\"\tO\nerror\tO\terror\tO\nmessage.Thank\tO\tmessage.Thank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31464544\tO\t31464544\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31464544/\tO\thttps://stackoverflow.com/questions/31464544/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nsome\tO\tsome\tO\nsuggestion\tO\tsuggestion\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nASP.Net B-Library ASP.Net O\nMVC B-Algorithm MVC O\napplication\tO\tapplication\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nview\tO\tview\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccessed\tO\taccessed\tO\nunauthorized\tO\tunauthorized\tO\nand\tO\tand\tO\nthis\tO\tthis\tO\nview\tO\tview\tO\nhave\tO\thave\tO\na\tO\ta\tO\nregistration\tO\tregistration\tO\nform\tO\tform\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\nrequirement\tO\trequirement\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nregister\tO\tregister\tO\nfor\tO\tfor\tO\nmultiple\tO\tmultiple\tO\npeople\tO\tpeople\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\npersons\tO\tpersons\tO\nregistered\tO\tregistered\tO\nso\tO\tso\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\ntwo\tO\ttwo\tO\nregistration\tO\tregistration\tO\nform\tO\tform\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\ndetaisl\tO\tdetaisl\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nfilled\tO\tfilled\tO\nand\tO\tand\tO\npress\tO\tpress\tO\nsubmit\tO\tsubmit\tO\nthen\tO\tthen\tO\nthis\tO\tthis\tO\nwhole\tO\twhole\tO\ndata\tO\tdata\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nvalidated\tO\tvalidated\tO\nand\tO\tand\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nController\tO\tController\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\nViewModel\tO\tViewModel\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3788 I-Code_Block Q_3788 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n?\tO\t?\tO\n\t\nPlease\tO\tPlease\tO\nsuggest\tO\tsuggest\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6947286\tO\t6947286\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6947286/\tO\thttps://stackoverflow.com/questions/6947286/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nof\tO\tof\tO\nbuilding\tO\tbuilding\tO\nand\tO\tand\tO\ndesigning\tO\tdesigning\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nJavascript B-Language Javascript O\nOOP\tO\tOOP\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nwondering\tO\twondering\tO\nwhat\tO\twhat\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\nstructure\tO\tstructure\tO\n/\tO\t/\tO\nmanagement\tO\tmanagement\tO\nsystem\tO\tsystem\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\ninteraction\tO\tinteraction\tO\nbetween\tO\tbetween\tO\nJavascript B-Language Javascript O\nand\tO\tand\tO\nXML B-Language XML O\nis\tO\tis\tO\ngood\tO\tgood\tO\nand\tO\tand\tO\nfairly\tO\tfairly\tO\neasy\tO\teasy\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nXML B-Language XML O\nis\tO\tis\tO\nn't\tO\tn't\tO\nmeant\tO\tmeant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\nas\tO\tas\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nform\tO\tform\tO\na\tO\ta\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nboth\tO\tboth\tO\n?\tO\t?\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nserver-side\tO\tserver-side\tO\nlanguage\tO\tlanguage\tO\n(\tO\t(\tO\nPHP B-Language PHP O\n)\tO\t)\tO\ngenerate\tO\tgenerate\tO\nXML B-Language XML O\nand\tO\tand\tO\nhave\tO\thave\tO\nit\tO\tit\tO\nthen\tO\tthen\tO\nbe\tO\tbe\tO\nread\tO\tread\tO\nby\tO\tby\tO\nJS B-Language JS O\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nam\tO\tam\tO\nI\tO\tI\tO\nheading\tO\theading\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nwrong\tO\twrong\tO\ndirection\tO\tdirection\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6947286\tO\t6947286\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6947286/\tO\thttps://stackoverflow.com/questions/6947286/\tO\n\t\n\t\nJavascript B-Language Javascript O\nitself\tO\titself\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\nqueries\tO\tqueries\tO\n....\tO\t....\tO\nit\tO\tit\tO\nneeds\tO\tneeds\tO\na\tO\ta\tO\nhelper\tO\thelper\tO\nlike\tO\tlike\tO\nPHP B-Language PHP O\n,\tO\t,\tO\n.net B-Library .net O\n,\tO\t,\tO\nor\tO\tor\tO\nJava B-Language Java O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\ncan\tO\tcan\tO\ntraverse\tO\ttraverse\tO\nXML B-Language XML O\nor\tO\tor\tO\nJSON B-Language JSON O\njust\tO\tjust\tO\nfine\tO\tfine\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nsending\tO\tsending\tO\ncolossal\tO\tcolossal\tO\nXML B-Language XML O\ndocuments\tO\tdocuments\tO\nwith\tO\twith\tO\nall\tO\tall\tO\npossible\tO\tpossible\tO\ndata\tO\tdata\tO\nwhen\tO\twhen\tO\nonly\tO\tonly\tO\nsmall\tO\tsmall\tO\namounts\tO\tamounts\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nrequired\tO\trequired\tO\nwill\tO\twill\tO\nlead\tO\tlead\tO\nto\tO\tto\tO\nmassive\tO\tmassive\tO\noverhead\tO\toverhead\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nbring\tO\tbring\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nto\tO\tto\tO\nits\tO\tits\tO\nknees\tO\tknees\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\nlack-of-scalability\tO\tlack-of-scalability\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\npersonal\tO\tpersonal\tO\npreference\tO\tpreference\tO\nis\tO\tis\tO\nJQuery B-Library JQuery O\nAjax B-Function Ajax O\ntalking\tO\ttalking\tO\nto\tO\tto\tO\na\tO\ta\tO\nPHP B-Language PHP O\nbackend\tO\tbackend\tO\n(\tO\t(\tO\ntransactions\tO\ttransactions\tO\nvia\tO\tvia\tO\nJSON B-Language JSON O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndealing\tO\tdealing\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\npresentation\tO\tpresentation\tO\nof\tO\tof\tO\nlarge\tO\tlarge\tO\ndatasets\tO\tdatasets\tO\nI\tO\tI\tO\n'll\tO\t'll\tO\nalways\tO\talways\tO\npage\tO\tpage\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nserver-side\tO\tserver-side\tO\nand\tO\tand\tO\npipeline\tO\tpipeline\tO\nit\tO\tit\tO\n(\tO\t(\tO\nload\tO\tload\tO\ndata\tO\tdata\tO\nahead\tO\tahead\tO\nof\tO\tof\tO\nand\tO\tand\tO\nbehind\tO\tbehind\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nview\tO\tview\tO\nto\tO\tto\tO\nreduce\tO\treduce\tO\ntransactions\tO\ttransactions\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nusually\tO\tusually\tO\npresent\tO\tpresent\tO\nin\tO\tin\tO\nvia\tO\tvia\tO\njQuery B-Library jQuery O\nDataTables B-Function DataTables O\n.\tO\t.\tO\n\t\nGrids\tO\tGrids\tO\nare\tO\tare\tO\nalways\tO\talways\tO\nyour\tO\tyour\tO\nfriend\tO\tfriend\tO\nwith\tO\twith\tO\nlarge\tO\tlarge\tO\namounts\tO\tamounts\tO\nof\tO\tof\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nAgain\tO\tAgain\tO\n,\tO\t,\tO\npersonal\tO\tpersonal\tO\npreference\tO\tpreference\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nheavy\tO\theavy\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\njQuery B-Library jQuery O\nUI\tO\tUI\tO\nfor\tO\tfor\tO\nlayout\tO\tlayout\tO\nand\tO\tand\tO\npresentation\tO\tpresentation\tO\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nwrite\tO\twrite\tO\ncustom\tO\tcustom\tO\nJavascript B-Language Javascript O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nnifty\tO\tnifty\tO\n\"\tO\t\"\tO\none-off\tO\tone-off\tO\ntype\tO\ttype\tO\nthings\tO\tthings\tO\nthat\tO\tthat\tO\ncome\tO\tcome\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nAgain\tO\tAgain\tO\n,\tO\t,\tO\nany\tO\tany\tO\nserver\tO\tserver\tO\nlanguage\tO\tlanguage\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nand\tO\tand\tO\nare\tO\tare\tO\ncomfortable\tO\tcomfortable\tO\nwith\tO\twith\tO\nwill\tO\twill\tO\nsuffice\tO\tsuffice\tO\n,\tO\t,\tO\nas\tO\tas\tO\nJavascript B-Language Javascript O\nis\tO\tis\tO\nlanguage\tO\tlanguage\tO\nagnostic\tO\tagnostic\tO\n.\tO\t.\tO\n\t\nJavascript B-Language Javascript O\ncan\tO\tcan\tO\nget\tO\tget\tO\nout\tO\tout\tO\nof\tO\tof\tO\nhand\tO\thand\tO\nin\tO\tin\tO\na\tO\ta\tO\nhurry\tO\thurry\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nrecommend\tO\trecommend\tO\nthat\tO\tthat\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nton\tO\tton\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nhands\tO\thands\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nfocus\tO\tfocus\tO\non\tO\ton\tO\nclean\tO\tclean\tO\npresentation\tO\tpresentation\tO\nvia\tO\tvia\tO\nsomething\tO\tsomething\tO\nbaseline\tO\tbaseline\tO\nlike\tO\tlike\tO\nHTML B-Language HTML O\nwith\tO\twith\tO\njudicious\tO\tjudicious\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nJavascript B-Language Javascript O\nand\tO\tand\tO\nCSS B-Language CSS O\nfor\tO\tfor\tO\nprogressive\tO\tprogressive\tO\nenhancement\tO\tenhancement\tO\n.\tO\t.\tO\n\t\nThink\tO\tThink\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\ngo\tO\tgo\tO\ncrazy\tO\tcrazy\tO\nwith\tO\twith\tO\nmotion\tO\tmotion\tO\n,\tO\t,\tO\ndynamic\tO\tdynamic\tO\nelements\tO\telements\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nn't\tO\tn't\tO\nforget\tO\tforget\tO\nthe\tO\tthe\tO\nold\tO\told\tO\nadage\tO\tadage\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\n80%\tO\t80%\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npeople\tO\tpeople\tO\nonly\tO\tonly\tO\nuse\tO\tuse\tO\n20%\tO\t20%\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfunctionality\tO\tfunctionality\tO\n\"\tO\t\"\tO\nNail\tO\tNail\tO\nthat\tO\tthat\tO\n20%\tO\t20%\tO\ncleanly\tO\tcleanly\tO\nbefore\tO\tbefore\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ntown\tO\ttown\tO\non\tO\ton\tO\nflashy\tO\tflashy\tO\njavascript B-Language javascript O\nfluff\tO\tfluff\tO\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\nusers\tO\tusers\tO\nwill\tO\twill\tO\nthank\tO\tthank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6947286\tO\t6947286\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6947286/\tO\thttps://stackoverflow.com/questions/6947286/\tO\n\t\n\t\nJSON B-File_Type JSON O\nis\tO\tis\tO\nby\tO\tby\tO\nfar\tO\tfar\tO\nthe\tO\tthe\tO\nfastest\tO\tfastest\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nIS\tO\tIS\tO\nJavaScript B-Language JavaScript O\n.\tO\t.\tO\n\t\nApplication\tO\tApplication\tO\nframeworks\tO\tframeworks\tO\nlike\tO\tlike\tO\nEXT.JS B-Library EXT.JS O\nare\tO\tare\tO\nalready\tO\talready\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\ngreat\tO\tgreat\tO\nsuccess\tO\tsuccess\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16994398\tO\t16994398\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16994398/\tO\thttps://stackoverflow.com/questions/16994398/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\ndescribes\tO\tdescribes\tO\nwhat\tO\twhat\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nin\tO\tin\tO\nRuby B-Language Ruby O\n1.8 B-Version 1.8 O\n(\tO\t(\tO\nand\tO\tand\tO\nREE B-Version REE O\n)\tO\t)\tO\nbut\tO\tbut\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nfixed\tO\tfixed\tO\nin\tO\tin\tO\n1.9 B-Version 1.9 O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\n:\tO\t:\tO\n\t\nWhy\tO\tWhy\tO\ncalling\tO\tcalling\tO\n== B-Function == B-Code_Block\non\tO\ton\tO\nString B-Data_Type String B-Code_Block\nor\tO\tor\tO\nFixnum B-Data_Type Fixnum B-Code_Block\ntriggers\tO\ttriggers\tO\ncalling\tO\tcalling\tO\n== B-Function == B-Code_Block\non\tO\ton\tO\nother B-Variable other B-Code_Block\nobject\tO\tobject\tO\nat\tO\tat\tO\nall\tO\tall\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\ncalling\tO\tcalling\tO\n== B-Function == B-Code_Block\non\tO\ton\tO\nString B-Data_Type String B-Code_Block\nworks\tO\tworks\tO\ndifferently\tO\tdifferently\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nother B-Variable other B-Code_Block\nobject\tO\tobject\tO\nclass\tO\tclass\tO\n?\tO\t?\tO\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1724 I-Code_Block Q_1724 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nExample\tO\tExample\tO\n1\tO\t1\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1725 I-Code_Block Q_1725 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNothing\tO\tNothing\tO\ninteresting\tO\tinteresting\tO\nhere\tO\there\tO\n,\tO\t,\tO\nmove\tO\tmove\tO\nalong\tO\talong\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n2\tO\t2\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1726 I-Code_Block Q_1726 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCalling\tO\tCalling\tO\n== B-Function == B-Code_Block\non\tO\ton\tO\nString B-Data_Type String B-Code_Block\ntriggers\tO\ttriggers\tO\n== B-Function == B-Code_Block\non\tO\ton\tO\nother B-Variable other B-Code_Block\nobject\tO\tobject\tO\nof\tO\tof\tO\nException B-Class Exception B-Code_Block\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n3\tO\t3\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1727 I-Code_Block Q_1727 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCalling\tO\tCalling\tO\n== B-Function == B-Code_Block\non\tO\ton\tO\nFixnum B-Data_Type Fixnum B-Code_Block\ntriggers\tO\ttriggers\tO\n== B-Function == B-Code_Block\non\tO\ton\tO\nother B-Variable other B-Code_Block\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nExample\tO\tExample\tO\n4\tO\t4\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1728 I-Code_Block Q_1728 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCalling\tO\tCalling\tO\n== B-Function == B-Code_Block\non\tO\ton\tO\nString B-Data_Type String B-Code_Block\ntriggers\tO\ttriggers\tO\n== B-Function == B-Code_Block\non\tO\ton\tO\nother B-Variable other B-Code_Block\nobject\tO\tobject\tO\nof\tO\tof\tO\nException B-Class Exception B-Code_Block\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16994398\tO\t16994398\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16994398/\tO\thttps://stackoverflow.com/questions/16994398/\tO\n\t\n\t\nRuby B-Language Ruby O\nis\tO\tis\tO\nan\tO\tan\tO\nobject-oriented\tO\tobject-oriented\tO\nlanguage\tO\tlanguage\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nan\tO\tan\tO\nobject-oriented\tO\tobject-oriented\tO\nlanguage\tO\tlanguage\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nsend\tO\tsend\tO\nmessages\tO\tmessages\tO\nto\tO\tto\tO\nobjects\tO\tobjects\tO\nand\tO\tand\tO\nthose\tO\tthose\tO\nobjects\tO\tobjects\tO\nthen\tO\tthen\tO\nrespond\tO\trespond\tO\nto\tO\tto\tO\nthose\tO\tthose\tO\nmessages\tO\tmessages\tO\nhowever\tO\thowever\tO\nthey\tO\tthey\tO\nsee\tO\tsee\tO\nfit\tO\tfit\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nreceiver\tO\treceiver\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nand\tO\tand\tO\nonly\tO\tonly\tO\nthe\tO\tthe\tO\nreceiver(!)\tO\treceiver(!)\tO\n\t\nis\tO\tis\tO\nin\tO\tin\tO\ntotal\tO\ttotal\tO\ncontrol\tO\tcontrol\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\na\tO\ta\tO\nmessage\tO\tmessage\tO\nmeans\tO\tmeans\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nsome\tO\tsome\tO\noperators\tO\toperators\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ncertain\tO\tcertain\tO\nexpectations\tO\texpectations\tO\nof\tO\tof\tO\nsymmetry\tO\tsymmetry\tO\n:\tO\t:\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\na B-Code_Block a B-Code_Block\n== I-Code_Block == I-Code_Block\nb I-Code_Block b I-Code_Block\nis\tO\tis\tO\nexpected\tO\texpected\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nb B-Code_Block b B-Code_Block\n== I-Code_Block == I-Code_Block\na I-Code_Block a I-Code_Block\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nin\tO\tin\tO\nan\tO\tan\tO\nOO\tO\tOO\tO\nlanguage\tO\tlanguage\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nimpossible\tO\timpossible\tO\n!\tO\t!\tO\n\t\nEither\tO\tEither\tO\na B-Variable a B-Code_Block\nor\tO\tor\tO\nb B-Variable b B-Code_Block\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nreceiver\tO\treceiver\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\n,\tO\t,\tO\nso\tO\tso\tO\nin\tO\tin\tO\none\tO\tone\tO\ncase\tO\tcase\tO\na B-Variable a B-Code_Block\ngets\tO\tgets\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\nwhether\tO\twhether\tO\na B-Variable a B-Code_Block\nand\tO\tand\tO\nb B-Variable b B-Code_Block\nare\tO\tare\tO\nequal\tO\tequal\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ncase\tO\tcase\tO\nb B-Variable b B-Code_Block\ngets\tO\tgets\tO\nto\tO\tto\tO\ndecide\tO\tdecide\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nmight\tO\tmight\tO\ndecide\tO\tdecide\tO\ndifferently\tO\tdifferently\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nexpectation\tO\texpectation\tO\nof\tO\tof\tO\nsymmetry\tO\tsymmetry\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbroken\tO\tbroken\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nin\tO\tin\tO\nsome\tO\tsome\tO\nclasses\tO\tclasses\tO\nequality\tO\tequality\tO\nis\tO\tis\tO\nactually\tO\tactually\tO\nimplemented\tO\timplemented\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n:\tO\t:\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nNumeric B-Class Numeric B-Code_Block\nclass\tO\tclass\tO\n(\tO\t(\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\na\tO\ta\tO\nQuaternion B-Class Quaternion B-Code_Block\nclass\tO\tclass\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nsystem\tO\tsystem\tO\nbuiltin\tO\tbuiltin\tO\nFixnum B-Class Fixnum B-Code_Block\nclass\tO\tclass\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nanything\tO\tanything\tO\nabout\tO\tabout\tO\nQuaternions B-Class Quaternions B-Code_Block\n.\tO\t.\tO\nSo\tO\tSo\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nask\tO\task\tO\nthe\tO\tthe\tO\nFixnum B-Class Fixnum B-Code_Block\n0\tO\t0\tI-Code_Block\nwhether\tO\twhether\tO\nit\tO\tit\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nQuaternion B-Class Quaternion B-Code_Block\n( B-Value ( I-Code_Block\n0 I-Value 0 I-Code_Block\n, I-Value , I-Code_Block\n0 I-Value 0 I-Code_Block\n, I-Value , I-Code_Block\n0 I-Value 0 I-Code_Block\n, I-Value , I-Code_Block\n0 I-Value 0 I-Code_Block\n) I-Value ) I-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nresponds\tO\tresponds\tO\nfalse B-Value false B-Code_Block\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nthe\tO\tthe\tO\nFixnum B-Class Fixnum B-Code_Block\nwill\tO\twill\tO\nfirst\tO\tfirst\tO\ncheck\tO\tcheck\tO\n:\tO\t:\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nmyself\tO\tmyself\tO\nto\tO\tto\tO\na\tO\ta\tO\nQuaternion B-Class Quaternion B-Code_Block\n?\tO\t?\tO\n\t\nNo\tO\tNo\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmaybe\tO\tmaybe\tO\na\tO\ta\tO\nQuaternion B-Class Quaternion B-Code_Block\nknows\tO\tknows\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nitself\tO\titself\tO\nto\tO\tto\tO\na\tO\ta\tO\nFixnum B-Class Fixnum B-Code_Block\n!\tO\t!\tO\n\t\nAfter\tO\tAfter\tO\nall\tO\tall\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nQuaternion B-Class Quaternion B-Code_Block\nclass\tO\tclass\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nexist\tO\texist\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nFixnum B-Class Fixnum B-Code_Block\nclass\tO\tclass\tO\nwas\tO\twas\tO\nwritten\tO\twritten\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nFixnum B-Class Fixnum B-Code_Block\nclass\tO\tclass\tO\ncannot\tO\tcannot\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nQuaternions B-Class Quaternions B-Code_Block\n.\tO\t.\tO\nBut\tO\tBut\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nQuaternion B-Class Quaternion B-Code_Block\nclass\tO\tclass\tO\nwas\tO\twas\tO\nwritten\tO\twritten\tO\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\nthe\tO\tthe\tO\nauthor\tO\tauthor\tO\nwas\tO\twas\tO\nso\tO\tso\tO\nthoughtful\tO\tthoughtful\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nQuaternions B-Class Quaternions B-Code_Block\nwith\tO\twith\tO\nFixnums B-Class Fixnums B-Code_Block\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nwhy\tO\twhy\tO\nFixnum# B-Function Fixnum# B-Code_Block\n== I-Function == I-Code_Block\nreverses\tO\treverses\tO\nthe\tO\tthe\tO\narguments\tO\targuments\tO\nand\tO\tand\tO\ntries\tO\ttries\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nString B-Data_Type String B-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nbut\tO\tbut\tO\nsomewhat\tO\tsomewhat\tO\nmore\tO\tmore\tO\ncomplicated\tO\tcomplicated\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nRuby B-Language Ruby O\n,\tO\t,\tO\nclasses\tO\tclasses\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\ntypes\tO\ttypes\tO\nand\tO\tand\tO\nsubtyping\tO\tsubtyping\tO\nand\tO\tand\tO\nsubclassing\tO\tsubclassing\tO\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nRuby B-Language Ruby O\nitself\tO\titself\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\na\tO\ta\tO\nconcept\tO\tconcept\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nat\tO\tat\tO\nall\tO\tall\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\ntype\tO\ttype\tO\nof\tO\tof\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nis\tO\tis\tO\nits\tO\tits\tO\nprotocol\tO\tprotocol\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\nit\tO\tit\tO\nunderstands\tO\tunderstands\tO\nand\tO\tand\tO\nhow\tO\thow\tO\nit\tO\tit\tO\nresponds\tO\tresponds\tO\nto\tO\tto\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nthat\tO\tthat\tO\nconcept\tO\tconcept\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrecorded\tO\trecorded\tO\nin\tO\tin\tO\nRuby B-Language Ruby O\n(\tO\t(\tO\nunlike\tO\tunlike\tO\nObjective-C B-Language Objective-C O\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ndoes\tO\tdoes\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nexplicit\tO\texplicit\tO\nnotion\tO\tnotion\tO\nof\tO\tof\tO\nprotocol\tO\tprotocol\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbreak\tO\tbreak\tO\nOO\tO\tOO\tO\nencapsulation\tO\tencapsulation\tO\n,\tO\t,\tO\nand\tO\tand\tO\nknow\tO\tknow\tO\nthe\tO\tthe\tO\nspecific\tO\tspecific\tO\ntype\tO\ttype\tO\nand\tO\tand\tO\neven\tO\teven\tO\nmore\tO\tmore\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\nspecific\tO\tspecific\tO\nrepresentation\tO\trepresentation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nNote\tO\tNote\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nviolates\tO\tviolates\tO\nOO\tO\tOO\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsometimes\tO\tsometimes\tO\nnecessary\tO\tnecessary\tO\nfor\tO\tfor\tO\nperformance\tO\tperformance\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nIn\tO\tIn\tO\ncases\tO\tcases\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nRuby B-Language Ruby O\nneeds\tO\tneeds\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nof\tO\tof\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nclass\tO\tclass\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\njust\tO\tjust\tO\nresponding\tO\tresponding\tO\nto\tO\tto\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nprotocol\tO\tprotocol\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nlose\tO\tlose\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nflexibility\tO\tflexibility\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\na\tO\ta\tO\nString B-Data_Type String B-Code_Block\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nmuch\tO\tmuch\tO\nrather\tO\trather\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nRope B-Data_Type Rope B-Code_Block\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\norder\tO\torder\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nback\tO\tback\tO\nsome\tO\tsome\tO\nflexibility\tO\tflexibility\tO\n,\tO\t,\tO\nRuby B-Language Ruby O\nallows\tO\tallows\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nin\tO\tin\tO\nsomething\tO\tsomething\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nexactly\tO\texactly\tO\na\tO\ta\tO\nString B-Data_Type String B-Code_Block\nbut\tO\tbut\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nequivalent\tO\tequivalent\tO\nto\tO\tto\tO\none\tO\tone\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nconverted\tO\tconverted\tO\nto\tO\tto\tO\none\tO\tone\tO\nwith\tO\twith\tO\na\tO\ta\tO\nto_str B-Function to_str B-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nunlike\tO\tunlike\tO\nother\tO\tother\tO\nlanguages\tO\tlanguages\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nA B-Value A B-Code_Block\nIS-A I-Value IS-A I-Code_Block\nString I-Value String I-Code_Block\nis\tO\tis\tO\nrepresented\tO\trepresented\tO\nby\tO\tby\tO\nA B-Class A B-Code_Block\nbeing\tO\tbeing\tO\na\tO\ta\tO\nsubclass\tO\tsubclass\tO\nof\tO\tof\tO\nString B-Data_Type String B-Code_Block\n,\tO\t,\tO\nin\tO\tin\tO\nRuby B-Language Ruby O\n,\tO\t,\tO\nthe\tO\tthe\tO\nrelationship\tO\trelationship\tO\nA B-Value A B-Code_Block\nIS-A I-Value IS-A I-Code_Block\nString I-Value String I-Code_Block\nis\tO\tis\tO\nrepresented\tO\trepresented\tO\nby\tO\tby\tO\nA B-Class A B-Code_Block\nhaving\tO\thaving\tO\na\tO\ta\tO\nto_str B-Function to_str B-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nseeing\tO\tseeing\tO\nabove\tO\tabove\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\nargument\tO\targument\tO\nto\tO\tto\tO\nString# B-Function String# B-Code_Block\n== I-Function == I-Code_Block\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\nString B-Data_Type String B-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\nString# B-Function String# B-Code_Block\n== I-Function == I-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\nstring-like\tO\tstring-like\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nit\tO\tit\tO\nimplements\tO\timplements\tO\nto_str B-Function to_str B-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\nmaybe\tO\tmaybe\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nitself\tO\titself\tO\nto\tO\tto\tO\na\tO\ta\tO\nString B-Data_Type String B-Code_Block\n?\tO\t?\tO\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nequality\tO\tequality\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nget\tO\tget\tO\nright\tO\tright\tO\n.\tO\t.\tO\n\t\nPeople\tO\tPeople\tO\ncannot\tO\tcannot\tO\neven\tO\teven\tO\nagree\tO\tagree\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\nmeans\tO\tmeans\tO\nin\tO\tin\tO\na\tO\ta\tO\npurely\tO\tpurely\tO\nfunctional\tO\tfunctional\tO\nlanguage\tO\tlanguage\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\neasy\tO\teasy\tO\ncase\tO\tcase\tO\n!\tO\t!\tO\n\t\nIn\tO\tIn\tO\nRuby B-Language Ruby O\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nadditional\tO\tadditional\tO\ncomplications\tO\tcomplications\tO\n:\tO\t:\tO\nmutable\tO\tmutable\tO\nstate\tO\tstate\tO\nand\tO\tand\tO\nOO\tO\tOO\tO\n.\tO\t.\tO\n\t\nMutable\tO\tMutable\tO\nstate\tO\tstate\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\ntwo\tO\ttwo\tO\nobjects\tO\tobjects\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\nequal\tO\tequal\tO\na\tO\ta\tO\nmoment\tO\tmoment\tO\nago\tO\tago\tO\nmay\tO\tmay\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nequal\tO\tequal\tO\nanymore\tO\tanymore\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nmoments\tO\tmoments\tO\nlater\tO\tlater\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nshould\tO\tshould\tO\nthey\tO\tthey\tO\nbe\tO\tbe\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nthey\tO\tthey\tO\nbe\tO\tbe\tO\n?\tO\t?\tO\n\t\nAnd\tO\tAnd\tO\nOO\tO\tOO\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nequality\tO\tequality\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nsymmetric\tO\tsymmetric\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\nimplementations\tO\timplementations\tO\nof\tO\tof\tO\n== B-Function == B-Code_Block\nfor\tO\tfor\tO\nvarious\tO\tvarious\tO\ncore\tO\tcore\tO\nand\tO\tand\tO\nstdlib B-Library stdlib O\nclasses\tO\tclasses\tO\nare\tO\tare\tO\nconstantly\tO\tconstantly\tO\nimproved\tO\timproved\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nalso\tO\talso\tO\nwhy\tO\twhy\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nsee\tO\tsee\tO\nweird\tO\tweird\tO\nbehavior\tO\tbehavior\tO\nnow\tO\tnow\tO\nand\tO\tand\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nSometimes\tO\tSometimes\tO\nit\tO\tit\tO\nmay\tO\tmay\tO\njust\tO\tjust\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\nartifact\tO\tartifact\tO\nof\tO\tof\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nget\tO\tget\tO\nequality\tO\tequality\tO\nright\tO\tright\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsometimes\tO\tsometimes\tO\nit\tO\tit\tO\nmight\tO\tmight\tO\njust\tO\tjust\tO\nsimply\tO\tsimply\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\n:\tO\t:\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\narithmetic\tO\tarithmetic\tO\noperators\tO\toperators\tO\n,\tO\t,\tO\nsubclasses\tO\tsubclasses\tO\nof\tO\tof\tO\nNumeric B-Class Numeric B-Code_Block\nactually\tO\tactually\tO\nhave\tO\thave\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nformal\tO\tformal\tO\ndouble-dispatch\tO\tdouble-dispatch\tO\nprotocol\tO\tprotocol\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\ncoerce B-Function coerce B-Code_Block\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\na\tO\ta\tO\nNumeric B-Class Numeric B-Code_Block\nobject\tO\tobject\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nanother\tO\tanother\tO\nNumeric B-Class Numeric B-Code_Block\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nask\tO\task\tO\nthat\tO\tthat\tO\nother\tO\tother\tO\nobject\tO\tobject\tO\nto\tO\tto\tO\ncoerce B-Function coerce B-Code_Block\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nobjects\tO\tobjects\tO\nto\tO\tto\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nQuaternion B-Class Quaternion B-Code_Block\nto\tO\tto\tO\na\tO\ta\tO\nFixnum B-Class Fixnum B-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nFixnum B-Class Fixnum B-Code_Block\nwo\tO\two\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2222 I-Code_Block A_2222 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\n+ B-Function + B-Code_Block\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nFixnum B-Class Fixnum B-Code_Block\nwill\tO\twill\tO\nthen\tO\tthen\tO\ncall\tO\tcall\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2223 I-Code_Block A_2223 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIOW\tO\tIOW\tO\n:\tO\t:\tO\nit\tO\tit\tO\nwill\tO\twill\tO\ncall\tO\tcall\tO\nQuaternion B-Function Quaternion B-Code_Block\n#coerce I-Function #coerce I-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nequivalent\tO\tequivalent\tO\nof\tO\tof\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2224 I-Code_Block A_2224 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nto\tO\tto\tO\nwhich\tO\twhich\tO\nQuaternion B-Class Quaternion B-Code_Block\nwill\tO\twill\tO\nrespond\tO\trespond\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nArray B-Data_Structure Array B-Code_Block\nof\tO\tof\tO\n[ B-Code_Block [ B-Code_Block\nQuaternion.new(2,0,0,0) I-Code_Block Quaternion.new(2,0,0,0) I-Code_Block\n, I-Code_Block , I-Code_Block\nQuaternion.new(1,0,0,0) I-Code_Block Quaternion.new(1,0,0,0) I-Code_Block\n] I-Code_Block ] I-Code_Block\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nFixnum#+ B-Function Fixnum#+ B-Code_Block\nwill\tO\twill\tO\ntry\tO\ttry\tO\nagain\tO\tagain\tO\nby\tO\tby\tO\nsimply\tO\tsimply\tO\ncalling\tO\tcalling\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2225 I-Code_Block A_2225 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhich\tO\tWhich\tO\nwill\tO\twill\tO\nnow\tO\tnow\tO\nwork\tO\twork\tO\nbecause\tO\tbecause\tO\na B-Variable a B-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\nQuaternion B-Class Quaternion B-Code_Block\nalso\tO\talso\tO\nand\tO\tand\tO\nknows\tO\tknows\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\ntwo\tO\ttwo\tO\nQuaternions B-Class Quaternions B-Code_Block\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nvery\tO\tvery\tO\ncommon\tO\tcommon\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\ncoerce B-Function coerce B-Code_Block\nis\tO\tis\tO\nsimply\tO\tsimply\tO\nto\tO\tto\tO\nswap\tO\tswap\tO\nthe\tO\tthe\tO\narguments\tO\targuments\tO\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2226 I-Code_Block A_2226 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThat\tO\tThat\tO\n's\tO\t's\tO\nequivalent\tO\tequivalent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nbehavior\tO\tbehavior\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nseeing\tO\tseeing\tO\nwith\tO\twith\tO\nFixnum# B-Function Fixnum# B-Code_Block\n== I-Function == I-Code_Block\n.\tO\t.\tO\n\t\nAgain\tO\tAgain\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\ndispatch\tO\tdispatch\tO\nis\tO\tis\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nget\tO\tget\tO\nright\tO\tright\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nimprovements\tO\timprovements\tO\nbeing\tO\tbeing\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncoerce B-Function coerce B-Code_Block\nprotocol\tO\tprotocol\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16994398\tO\t16994398\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16994398/\tO\thttps://stackoverflow.com/questions/16994398/\tO\n\t\n\t\nRuby B-Language Ruby O\nhas\tO\thas\tO\nfour\tO\tfour\tO\nlevels\tO\tlevels\tO\nof\tO\tof\tO\nobject\tO\tobject\tO\nequivalence\tO\tequivalence\tO\n:\tO\t:\tO\n\t\n#equal B-Function #equal B-Code_Block\n? I-Function ? I-Code_Block\n–\tO\t–\tO\nsame\tO\tsame\tO\nobject\tO\tobject\tO\n\t\n#eql B-Function #eql B-Code_Block\n? I-Function ? I-Code_Block\n–\tO\t–\tO\nhighest\tO\thighest\tO\nlevel\tO\tlevel\tO\nof\tO\tof\tO\nequivalence\tO\tequivalence\tO\nbelow\tO\tbelow\tO\nsame\tO\tsame\tO\nobject\tO\tobject\tO\n\t\n# B-Function # B-Code_Block\n== I-Function == I-Code_Block\n–\tO\t–\tO\n\"\tO\t\"\tO\nstandard\tO\tstandard\tO\n\"\tO\t\"\tO\nequality\tO\tequality\tO\n\t\n# B-Function # B-Code_Block\n== I-Function == I-Code_Block\n= I-Function = I-Code_Block\n,\tO\t,\tO\n# B-Function # B-Code_Block\n= I-Function = I-Code_Block\n~ I-Function ~ I-Code_Block\n,\tO\t,\tO\n#hash B-Function #hash B-Code_Block\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\n–\tO\t–\tO\nloose\tO\tloose\tO\nequivalence\tO\tequivalence\tO\n,\tO\t,\tO\n\"\tO\t\"\tO\nsame\tO\tsame\tO\ngroup\tO\tgroup\tO\n\"\tO\t\"\tO\nequivalence\tO\tequivalence\tO\n\t\nMindful\tO\tMindful\tO\nprogrammer\tO\tprogrammer\tO\nequips\tO\tequips\tO\neach\tO\teach\tO\nof\tO\tof\tO\nher\tO\ther\tO\nclasses\tO\tclasses\tO\nwith\tO\twith\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nmethods\tO\tmethods\tO\nexcept\tO\texcept\tO\n#equal B-Function #equal B-Code_Block\n? I-Function ? I-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nnever\tO\tnever\tO\nbe\tO\tbe\tO\noverriden\tO\toverriden\tO\n.\tO\t.\tO\n\t\nGoing\tO\tGoing\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsubject\tO\tsubject\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n,\tO\t,\tO\nmany\tO\tmany\tO\nbuilt-in\tO\tbuilt-in\tO\nRuby B-Language Ruby O\nobjects\tO\tobjects\tO\nhave\tO\thave\tO\ntheir\tO\ttheir\tO\nshare\tO\tshare\tO\nof\tO\tof\tO\nidiosyncrasies\tO\tidiosyncrasies\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nimplementation\tO\timplementation\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nRuby B-Language Ruby O\ncore\tO\tcore\tO\nteam\tO\tteam\tO\nconstantly\tO\tconstantly\tO\nworks\tO\tworks\tO\nto\tO\tto\tO\nimprove\tO\timprove\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\nway\tO\tway\tO\nfrom\tO\tfrom\tO\n1.8 B-Version 1.8 O\nto\tO\tto\tO\n2.0 B-Version 2.0 O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nfixes\tO\tfixes\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\n1.8 B-Version 1.8 O\nproblems\tO\tproblems\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nmore\tO\tmore\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\nmention\tO\tmention\tO\nwith\tO\twith\tO\n# B-Function # B-Code_Block\n== I-Function == I-Code_Block\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nclasses\tO\tclasses\tO\nthat\tO\tthat\tO\nrepresent\tO\trepresent\tO\nelements\tO\telements\tO\nof\tO\tof\tO\nordered\tO\tordered\tO\nsets\tO\tsets\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nimplement\tO\timplement\tO\n# B-Function # B-Code_Block\n== I-Function == I-Code_Block\ndirectly\tO\tdirectly\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ninstead\tO\tinstead\tO\nyou\tO\tyou\tO\nprovide\tO\tprovide\tO\n#<=> B-Function #<=> B-Code_Block\nthree-way\tO\tthree-way\tO\ncomparison\tO\tcomparison\tO\nmethod,\tO\tmethod,\tO\nand\tO\tand\tO\ninclude\tO\tinclude\tO\nComparable B-Library Comparable B-Code_Block\nmodule,\tO\tmodule,\tO\nwhich\tO\twhich\tO\ngives\tO\tgives\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nfree\tO\tfree\tO\nmethods\tO\tmethods\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n#==, B-Function #==, B-Code_Block\n#<, I-Function #<, I-Code_Block\n#> I-Function #> I-Code_Block\n,\tO\t,\tO\n#sort B-Function #sort B-Code_Block\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nYet\tO\tYet\tO\none\tO\tone\tO\nmore\tO\tmore\tO\nthing\tO\tthing\tO\nto\tO\tto\tO\nmention\tO\tmention\tO\nwith\tO\twith\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\noperators\tO\toperators\tO\nand\tO\tand\tO\noperator-like\tO\toperator-like\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\nbe\tO\tbe\tO\nmindful\tO\tmindful\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexistence\tO\texistence\tO\nof\tO\tof\tO\n#coerce B-Function #coerce B-Code_Block\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\nundergoing\tO\tundergoing\tO\nimprovements\tO\timprovements\tO\nin\tO\tin\tO\nRuby B-Language Ruby O\n2.0 B-Version 2.0 O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36930559\tO\t36930559\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36930559/\tO\thttps://stackoverflow.com/questions/36930559/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nweb\tO\tweb\tO\napplication\tO\tapplication\tO\nand\tO\tand\tO\nit\tO\tit\tO\nhas\tO\thas\tO\ntwo\tO\ttwo\tO\ncontroller\tO\tcontroller\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ntwo\tO\ttwo\tO\ncontrollers\tO\tcontrollers\tO\nhave\tO\thave\tO\nan\tO\tan\tO\naction\tO\taction\tO\nwith\tO\twith\tO\nFormCollection B-Class FormCollection O\nparameter\tO\tparameter\tO\nwith\tO\twith\tO\nHTTPPost B-Variable HTTPPost O\nattribute\tO\tattribute\tO\ndecorated\tO\tdecorated\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\nForm\tO\tForm\tO\nsubmit\tO\tsubmit\tO\nbutton B-User_Interface_Element button O\nthen\tO\tthen\tO\nwhich\tO\twhich\tO\naction\tO\taction\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\ntriggered\tO\ttriggered\tO\nto\tO\tto\tO\ncapture\tO\tcapture\tO\nthe\tO\tthe\tO\nform B-Class form O\n's\tO\t's\tO\nvalues\tO\tvalues\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ncontroller\tO\tcontroller\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36930559\tO\t36930559\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36930559/\tO\thttps://stackoverflow.com/questions/36930559/\tO\n\t\n\t\nUsing\tO\tUsing\tO\nthe\tO\tthe\tO\nForm B-Class Form O\nCollection I-Class Collection O\nclass\tO\tclass\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\ncapture\tO\tcapture\tO\nthe\tO\tthe\tO\nform B-Class form O\n's\tO\t's\tO\nvalues\tO\tvalues\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ncontroller.There\tO\tcontroller.There\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nways\tO\tways\tO\nto\tO\tto\tO\nfetch\tO\tfetch\tO\nthese\tO\tthese\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nForm B-Class Form O\nCollection I-Class Collection O\nis\tO\tis\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nhttp://tutorial.techaltum.com/Form-collection-in-MVC.html\tO\thttp://tutorial.techaltum.com/Form-collection-in-MVC.html\tO\n\t\nhttp://www.c-sharpcorner.com/UploadFile/dacca2/understand-formcollection-in-mvc-controller/\tO\thttp://www.c-sharpcorner.com/UploadFile/dacca2/understand-formcollection-in-mvc-controller/\tO\n\t\nFollow\tO\tFollow\tO\nabove\tO\tabove\tO\nlink\tO\tlink\tO\nIt\tO\tIt\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\nunderstand\tO\tunderstand\tO\nmore\tO\tmore\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45515166\tO\t45515166\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45515166/\tO\thttps://stackoverflow.com/questions/45515166/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nexoplayer B-Class exoplayer O\nffmpeg B-Application ffmpeg O\nextension\tO\textension\tO\nand\tO\tand\tO\nadded\tO\tadded\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\ni\tO\ti\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nAMR B-File_Type AMR O\nformat\tO\tformat\tO\n,\tO\t,\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nFollowing\tO\tFollowing\tO\nthe\tO\tthe\tO\ntutorial\tO\ttutorial\tO\n:\tO\t:\tO\nFFmpeg B-Application FFmpeg O\nExtension\tO\tExtension\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5955 I-Code_Block Q_5955 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAfter\tO\tAfter\tO\nthe\tO\tthe\tO\ncompilation\tO\tcompilation\tO\nstep\tO\tstep\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5956 I-Code_Block Q_5956 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngenerated\tO\tgenerated\tO\naar B-File_Type aar O\nfile\tO\tfile\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5957 I-Code_Block Q_5957 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nextension-ffmpeg-debug.arr B-File_Name extension-ffmpeg-debug.arr O\nfile\tO\tfile\tO\ngenerated\tO\tgenerated\tO\nand\tO\tand\tO\nput\tO\tput\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlib B-File_Name lib O\nfolder\tO\tfolder\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nproject\tO\tproject\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nplayer\tO\tplayer\tO\nimplementation\tO\timplementation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5958 I-Code_Block Q_5958 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5959 I-Code_Block Q_5959 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nelse\tO\telse\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nconfigured\tO\tconfigured\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nAMR B-File_Type AMR O\nformat\tO\tformat\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nanyone\tO\tanyone\tO\nhave\tO\thave\tO\nany\tO\tany\tO\nsuggestions\tO\tsuggestions\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n32243385\tO\t32243385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32243385/\tO\thttps://stackoverflow.com/questions/32243385/\tO\n\t\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\ndeclare\tO\tdeclare\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nin\tO\tin\tO\nSwift B-Language Swift O\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nhold\tO\thold\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nany\tO\tany\tO\nenum B-Data_Type enum B-Code_Block\nString I-Data_Type String O\ntype\tO\ttype\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3907 I-Code_Block Q_3907 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ntwo\tO\ttwo\tO\nenum B-Data_Type enum O\ntypes\tO\ttypes\tO\nare\tO\tare\tO\nloosely\tO\tloosely\tO\nrelated\tO\trelated\tO\nbut\tO\tbut\tO\ndefinitely\tO\tdefinitely\tO\ndistinct\tO\tdistinct\tO\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nseparated\tO\tseparated\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nso\tO\tso\tO\nlumping\tO\tlumping\tO\nthem\tO\tthem\tO\nall\tO\tall\tO\ntogether\tO\ttogether\tO\nin\tO\tin\tO\none\tO\tone\tO\nenum B-Data_Type enum O\nand\tO\tand\tO\ndeclaring\tO\tdeclaring\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nof\tO\tof\tO\ntype\tO\ttype\tO\nMyAllIncludingEnumType B-Class MyAllIncludingEnumType O\nis\tO\tis\tO\nnot\tO\tnot\tO\ndesirable\tO\tdesirable\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\njust\tO\tjust\tO\ndeclare\tO\tdeclare\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nof\tO\tof\tO\nStrings B-Data_Type Strings O\nand\tO\tand\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nrawValues B-Class rawValues O\ndirectly\tO\tdirectly\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\ncould\tO\tcould\tO\ndeclare\tO\tdeclare\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nas\tO\tas\tO\n[ B-Library [ B-Code_Block\nAnyObject I-Library AnyObject I-Code_Block\n] I-Library ] I-Code_Block\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ntype\tO\ttype\tO\ncheck\tO\tcheck\tO\neach\tO\teach\tO\nelement\tO\telement\tO\nbefore\tO\tbefore\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\n.rawValue B-Class .rawValue B-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\ngreat\tO\tgreat\tO\neither\tO\teither\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nonly\tO\tonly\tO\nable\tO\table\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nSwift B-Language Swift O\n1.2 B-Version 1.2 O\non\tO\ton\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\n's\tO\t's\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nalready\tO\talready\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nApp B-Application App O\nStore I-Application Store O\nand\tO\tand\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nship\tO\tship\tO\nupdates\tO\tupdates\tO\nbefore\tO\tbefore\tO\nXcode B-Application Xcode O\n7 B-Version 7 O\ngoes\tO\tgoes\tO\nGM\tO\tGM\tO\n.\tO\t.\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\ncleaner\tO\tcleaner\tO\nbut\tO\tbut\tO\ncompletely\tO\tcompletely\tO\nalternate\tO\talternate\tO\nsolution\tO\tsolution\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32243385\tO\t32243385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32243385/\tO\thttps://stackoverflow.com/questions/32243385/\tO\n\t\n\t\nAn\tO\tAn\tO\nalternative\tO\talternative\tO\nto\tO\tto\tO\nKametrixom B-User_Name Kametrixom O\n's\tO\t's\tO\nanswer\tO\tanswer\tO\nis\tO\tis\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nboth\tO\tboth\tO\nenums B-Data_Type enums O\nconform\tO\tconform\tO\nto\tO\tto\tO\na\tO\ta\tO\ncommon\tO\tcommon\tO\nprotocol\tO\tprotocol\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\nautomatically\tO\tautomatically\tO\nconform\tO\tconform\tO\nto\tO\tto\tO\nRawRepresentable B-Class RawRepresentable B-Code_Block\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nraw\tO\traw\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nString B-Data_Type String B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4625 I-Code_Block A_4625 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ntype\tO\ttype\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\narray B-Data_Structure array O\nsince\tO\tsince\tO\nRawRepresentable B-Class RawRepresentable B-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\ngeneric\tO\tgeneric\tO\nprotocol\tO\tprotocol\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4626 I-Code_Block A_4626 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n32243385\tO\t32243385\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/32243385/\tO\thttps://stackoverflow.com/questions/32243385/\tO\n\t\n\t\nJust\tO\tJust\tO\nthink\tO\tthink\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nlogically\tO\tlogically\tO\n:\tO\t:\tO\nYou\tO\tYou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nmultiple\tO\tmultiple\tO\nenums B-Data_Type enums O\nin\tO\tin\tO\nan\tO\tan\tO\narray B-Data_Structure array O\n,\tO\t,\tO\nso\tO\tso\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\neither\tO\teither\tO\nthis\tO\tthis\tO\nor\tO\tor\tO\nthat\tO\tthat\tO\nenum B-Data_Type enum O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\njust\tO\tjust\tO\nwhat\tO\twhat\tO\nan\tO\tan\tO\nenum B-Data_Type enum O\nis\tO\tis\tO\n!\tO\t!\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndeclare\tO\tdeclare\tO\nan\tO\tan\tO\nnew\tO\tnew\tO\nenum B-Data_Type enum O\nthat\tO\tthat\tO\nhas\tO\thas\tO\nassociated\tO\tassociated\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\naccepted\tO\taccepted\tO\nother\tO\tother\tO\nenums B-Data_Type enums O\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4616 I-Code_Block A_4616 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4617 I-Code_Block A_4617 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42164231\tO\t42164231\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42164231/\tO\thttps://stackoverflow.com/questions/42164231/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\napproval\tO\tapproval\tO\nprocess\tO\tprocess\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nsummary\tO\tsummary\tO\nsheet\tO\tsheet\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\ncurrent\tO\tcurrent\tO\nshows\tO\tshows\tO\nthe\tO\tthe\tO\ndetails\tO\tdetails\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noffers\tO\toffers\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\na\tO\ta\tO\ndetail\tO\tdetail\tO\nsheet\tO\tsheet\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nam\tO\tam\tO\nkeeping\tO\tkeeping\tO\na\tO\ta\tO\nlog\tO\tlog\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\napproved\tO\tapproved\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\nyou\tO\tyou\tO\ntype\tO\ttype\tO\nthe\tO\tthe\tO\ninformation\tO\tinformation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noffer\tO\toffer\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nsheet\tO\tsheet\tO\n(\tO\t(\tO\noffer\tO\toffer\tO\ndetails\tO\tdetails\tO\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\napprover\tO\tapprover\tO\ncan\tO\tcan\tO\nview\tO\tview\tO\na\tO\ta\tO\ndrop B-User_Interface_Element drop O\ndown I-User_Interface_Element down O\nbox I-User_Interface_Element box O\nto\tO\tto\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nopen\tO\topen\tO\nand\tO\tand\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\napproved\tO\tapproved\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\neverything\tO\teverything\tO\nworking\tO\tworking\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\n,\tO\t,\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\napprover\tO\tapprover\tO\nto\tO\tto\tO\nclick\tO\tclick\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\nand\tO\tand\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nusername\tO\tusername\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\napprover\tO\tapprover\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ndate\tO\tdate\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\ncell\tO\tcell\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nOffer\tO\tOffer\tO\nDetail\tO\tDetail\tO\ntab B-User_Interface_Element tab O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nkey\tO\tkey\tO\n,\tO\t,\tO\nin\tO\tin\tO\nH1\tO\tH1\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nallow\tO\tallow\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nline\tO\tline\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ncolumn B-Data_Structure column O\nB B-Variable B O\non\tO\ton\tO\nthe\tO\tthe\tO\noffer\tO\toffer\tO\ndetails\tO\tdetails\tO\npage\tO\tpage\tO\nmatches\tO\tmatches\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSummary\tO\tSummary\tO\nTab\tO\tTab\tO\nin\tO\tin\tO\nH1\tO\tH1\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nwrote\tO\twrote\tO\nbelow\tO\tbelow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncells B-User_Interface_Element cells O\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nusername\tO\tusername\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\ninto\tO\tinto\tO\ncolumn B-Data_Structure column O\nM B-Variable M O\non\tO\ton\tO\nthe\tO\tthe\tO\noffer\tO\toffer\tO\ndetail\tO\tdetail\tO\nsheet\tO\tsheet\tO\n(\tO\t(\tO\nonce\tO\tonce\tO\nit\tO\tit\tO\nfinds\tO\tfinds\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nrow B-User_Interface_Element row O\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsummary\tO\tsummary\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nhardcoded\tO\thardcoded\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nkeep\tO\tkeep\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\naudit\tO\taudit\tO\npurposes\tO\tpurposes\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nand\tO\tand\tO\nI\tO\tI\tO\nwill\tO\twill\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nclarify\tO\tclarify\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5355 I-Code_Block Q_5355 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42164231\tO\t42164231\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42164231/\tO\thttps://stackoverflow.com/questions/42164231/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\ncolum\tO\tcolum\tO\n\"\tO\t\"\tO\nM B-Variable M O\n\"\tO\t\"\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nbase\tO\tbase\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6038 I-Code_Block A_6038 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2417585\tO\t2417585\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2417585/\tO\thttps://stackoverflow.com/questions/2417585/\tO\n\t\n\t\nThis\tO\tThis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nrelated\tO\trelated\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nquestion\tO\tquestion\tO\nI\tO\tI\tO\nasked\tO\tasked\tO\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n2\tO\t2\tO\nhorizontally\tO\thorizontally\tO\naligned\tO\taligned\tO\ndivs B-HTML_XML_Tag divs O\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\nsit\tO\tsit\tO\ninside\tO\tinside\tO\na\tO\ta\tO\ndiv B-HTML_XML_Tag div O\ncalled\tO\tcalled\tO\n\"\tO\t\"\tO\n.Parent B-Class .Parent O\n\"\tO\t\"\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nstructure\tO\tstructure\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_162 I-Code_Block Q_162 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nParent\tO\tParent\tO\ndiv B-HTML_XML_Tag div O\nexists\tO\texists\tO\ninside\tO\tinside\tO\na\tO\ta\tO\nanother\tO\tanother\tO\ndiv B-HTML_XML_Tag div O\ncalled\tO\tcalled\tO\n#main\tO\t#main\tO\n.\tO\t.\tO\n\t\n#main\tO\t#main\tO\nhas\tO\thas\tO\na\tO\ta\tO\nwhite\tO\twhite\tO\nbackground B-User_Interface_Element background O\nthat\tO\tthat\tO\nframes\tO\tframes\tO\nall\tO\tall\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ncontent\tO\tcontent\tO\n.\tO\t.\tO\n\t\nBefore\tO\tBefore\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\nthe\tO\tthe\tO\nfloats\tO\tfloats\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndivs B-HTML_XML_Tag divs O\ninside\tO\tinside\tO\n.Parent B-Class .Parent O\n,\tO\t,\tO\neverything\tO\teverything\tO\nwas\tO\twas\tO\nfine\tO\tfine\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ncontaining\tO\tcontaining\tO\nDiv B-HTML_XML_Tag Div O\npushed\tO\tpushed\tO\nthe\tO\tthe\tO\nwhite\tO\twhite\tO\nbackground B-User_Interface_Element background O\ndown\tO\tdown\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\nsize\tO\tsize\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nnow\tO\tnow\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ndivs B-HTML_XML_Tag divs O\nare\tO\tare\tO\nfloating\tO\tfloating\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\npush\tO\tpush\tO\n#main B-HTML_XML_Tag #main O\n'\tO\t'\tO\ns\tO\ts\tO\nwhite\tO\twhite\tO\nbackground B-User_Interface_Element background O\ndown\tO\tdown\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nsuggest\tO\tsuggest\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n#main B-HTML_XML_Tag #main O\nto\tO\tto\tO\nrecognise\tO\trecognise\tO\nthe\tO\tthe\tO\nsize B-Variable size O\nit\tO\tit\tO\n's\tO\t's\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nstrech\tO\tstrech\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\n?\tO\t?\tO\n\t\nShould\tO\tShould\tO\nI\tO\tI\tO\napproach\tO\tapproach\tO\nthis\tO\tthis\tO\ndifferently\tO\tdifferently\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nDave B-User_Name Dave O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2417585\tO\t2417585\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2417585/\tO\thttps://stackoverflow.com/questions/2417585/\tO\n\t\n\t\nActually\tO\tActually\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nARE\tO\tARE\tO\nbehaving\tO\tbehaving\tO\ncorrectly\tO\tcorrectly\tO\nand\tO\tand\tO\nparent\tO\tparent\tO\ndivs B-HTML_XML_Tag divs O\nare\tO\tare\tO\nnever\tO\tnever\tO\nto\tO\tto\tO\nexpand\tO\texpand\tO\nto\tO\tto\tO\ncontain\tO\tcontain\tO\nfloated\tO\tfloated\tO\nelements\tO\telements\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nshown\tO\tshown\tO\nby\tO\tby\tO\nother\tO\tother\tO\nanswers\tO\tanswers\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nGoogle B-Website Google O\nfor\tO\tfor\tO\n\"\tO\t\"\tO\nclear\tO\tclear\tO\nfloats\tO\tfloats\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\nexplanations\tO\texplanations\tO\nand\tO\tand\tO\nexamples\tO\texamples\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2417585\tO\t2417585\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2417585/\tO\thttps://stackoverflow.com/questions/2417585/\tO\n\t\n\t\nGive\tO\tGive\tO\nyour\tO\tyour\tO\n#main B-HTML_XML_Tag #main O\noverflow:hidden B-Code_Block overflow:hidden B-Code_Block\n; I-Code_Block ; I-Code_Block\nand\tO\tand\tO\noptionall\tO\toptionall\tO\nclear:both B-Code_Block clear:both B-Code_Block\n; I-Code_Block ; I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9301538\tO\t9301538\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9301538/\tO\thttps://stackoverflow.com/questions/9301538/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nif\tO\tif\tO\nelse\tO\telse\tO\nstatement\tO\tstatement\tO\nthat\tO\tthat\tO\nchange\tO\tchange\tO\nlanguage\tO\tlanguage\tO\nCapabilitie B-Class Capabilitie O\nEN\tO\tEN\tO\nto\tO\tto\tO\nENGLISH\tO\tENGLISH\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nits\tO\tits\tO\noverwriting\tO\toverwriting\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ncapabilities B-Class capabilities O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_785 I-Code_Block Q_785 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9301538\tO\t9301538\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9301538/\tO\thttps://stackoverflow.com/questions/9301538/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1138 I-Code_Block A_1138 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47311625\tO\t47311625\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47311625/\tO\thttps://stackoverflow.com/questions/47311625/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nCentos B-Operating_System Centos O\nserver B-Device server O\nand\tO\tand\tO\nI\tO\tI\tO\ninstall\tO\tinstall\tO\niptables B-Application iptables O\non\tO\ton\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nfirewall B-Application firewall O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\niptables B-Application iptables O\nto\tO\tto\tO\nmonitoring\tO\tmonitoring\tO\nsystem\tO\tsystem\tO\nLike\tO\tLike\tO\n(\tO\t(\tO\nPrtg B-Application Prtg O\n,\tO\t,\tO\nSolarwinds B-Application Solarwinds O\n,\tO\t,\tO\nOpmanger B-Application Opmanger O\n)\tO\t)\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\npossible\tO\tpossible\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47311625\tO\t47311625\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47311625/\tO\thttps://stackoverflow.com/questions/47311625/\tO\n\t\n\t\nYes\tO\tYes\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nother\tO\tother\tO\nmonitoring\tO\tmonitoring\tO\nsystems\tO\tsystems\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nwith\tO\twith\tO\nSolarwinds B-Application Solarwinds O\nServer I-Application Server O\nApplication I-Application Application O\nMonitor I-Application Monitor O\n,\tO\t,\tO\nby\tO\tby\tO\ncreating\tO\tcreating\tO\ncustom\tO\tcustom\tO\nLinuxScript B-Class LinuxScript O\ncomponent\tO\tcomponent\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nin\tO\tin\tO\nthwack B-Website thwack O\nforum\tO\tforum\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44664171\tO\t44664171\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44664171/\tO\thttps://stackoverflow.com/questions/44664171/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\ndjango B-Library django O\nproject\tO\tproject\tO\ni\tO\ti\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\najax B-Function ajax O\ncall\tO\tcall\tO\nfor\tO\tfor\tO\ndynamically\tO\tdynamically\tO\ndisplay\tO\tdisplay\tO\nand\tO\tand\tO\npopulate\tO\tpopulate\tO\nfields\tO\tfields\tO\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\n,\tO\t,\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ntemplate\tO\ttemplate\tO\ni\tO\ti\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\n:\tO\t:\tO\n\t\nTemplate\tO\tTemplate\tO\nhtml B-Language html O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5805 I-Code_Block Q_5805 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthen\tO\tthen\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\njs B-Language js O\n:\tO\t:\tO\n\t\nstart.js B-File_Name start.js O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5806 I-Code_Block Q_5806 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nurls.py B-File_Name urls.py O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5807 I-Code_Block Q_5807 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nfinally\tO\tfinally\tO\nmy\tO\tmy\tO\npython B-Language python O\nfunction\tO\tfunction\tO\ncalled\tO\tcalled\tO\nfrom\tO\tfrom\tO\nurls.py B-File_Name urls.py O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5808 I-Code_Block Q_5808 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAll\tO\tAll\tO\ndone\tO\tdone\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nhidden\tO\thidden\tO\ndiv B-HTML_XML_Tag div O\n\" I-HTML_XML_Tag \" O\ndiv_val I-HTML_XML_Tag div_val O\n\" I-HTML_XML_Tag \" O\nin\tO\tin\tO\ntemplate\tO\ttemplate\tO\nwas\tO\twas\tO\nshow\tO\tshow\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnow\tO\tnow\tO\ni\tO\ti\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nreturned\tO\treturned\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\ntemplate\tO\ttemplate\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\npopulate\tO\tpopulate\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\ndiv B-HTML_XML_Tag div O\n(\tO\t(\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\njquery B-Library jquery O\ninside\tO\tinside\tO\nmy\tO\tmy\tO\njs\tO\tjs\tO\nfunc\tO\tfunc\tO\nfor\tO\tfor\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\nchain\tO\tchain\tO\nTemplate\tO\tTemplate\tO\n->\tO\t->\tO\njs B-Language js O\n->\tO\t->\tO\nurls\tO\turls\tO\n->\tO\t->\tO\nview\tO\tview\tO\nmethod\tO\tmethod\tO\n->\tO\t->\tO\nTemplate\tO\tTemplate\tO\n?\tO\t?\tO\n\t\nMany\tO\tMany\tO\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44664171\tO\t44664171\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44664171/\tO\thttps://stackoverflow.com/questions/44664171/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nserver B-Application server O\nside\tO\tside\tO\nrendering\tO\trendering\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nclose\tO\tclose\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nchain\tO\tchain\tO\n\"\tO\t\"\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nrefering\tO\trefering\tO\nto\tO\tto\tO\nas\tO\tas\tO\neasily\tO\teasily\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nwhat\tO\twhat\tO\nDjango B-Library Django O\ndoes\tO\tdoes\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\nserve\tO\tserve\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nHTML B-Language HTML O\nand\tO\tand\tO\nJS B-Language JS O\n(\tO\t(\tO\nat\tO\tat\tO\nleas\tO\tleas\tO\nthe\tO\tthe\tO\nJS B-Language JS O\ninside\tO\tinside\tO\nyour\tO\tyour\tO\nHTML B-Language HTML O\nview\tO\tview\tO\n)\tO\t)\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ninitial\tO\tinitial\tO\nresponse\tO\tresponse\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\najax B-Function ajax O\nrequests\tO\trequests\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nafter\tO\tafter\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nbound\tO\tbound\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\nyou\tO\tyou\tO\nsend\tO\tsend\tO\ninitially\tO\tinitially\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nresponse\tO\tresponse\tO\nbecause\tO\tbecause\tO\nthis\tO\tthis\tO\nvariables\tO\tvariables\tO\nare\tO\tare\tO\npopulated\tO\tpopulated\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nrender() B-Function render() O\nfunction\tO\tfunction\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\n.\tO\t.\tO\n\t\nAfter\tO\tAfter\tO\nthat\tO\tthat\tO\nmoment\tO\tmoment\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nadd\tO\tadd\tO\nor\tO\tor\tO\nupdate\tO\tupdate\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\nthat\tO\tthat\tO\nwere\tO\twere\tO\nsent\tO\tsent\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nHTML B-Language HTML O\ntemplate\tO\ttemplate\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nonly\tO\tonly\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nmanage\tO\tmanage\tO\nrendering\tO\trendering\tO\nsmall\tO\tsmall\tO\nparts\tO\tparts\tO\nof\tO\tof\tO\nHTML B-Language HTML O\nis\tO\tis\tO\nusing\tO\tusing\tO\nJQuery B-Library JQuery O\nor\tO\tor\tO\nmaking\tO\tmaking\tO\nyour\tO\tyour\tO\nbackend\tO\tbackend\tO\na\tO\ta\tO\nREST\tO\tREST\tO\nAPI\tO\tAPI\tO\nwith\tO\twith\tO\nDjango B-Library Django O\nRest\tO\tRest\tO\nFramework\tO\tFramework\tO\nand\tO\tand\tO\nmoving\tO\tmoving\tO\nto\tO\tto\tO\na\tO\ta\tO\nmore\tO\tmore\tO\ncomplete\tO\tcomplete\tO\nfrontend\tO\tfrontend\tO\nframework\tO\tframework\tO\nlike\tO\tlike\tO\nAngular B-Library Angular O\nor\tO\tor\tO\nReact B-Library React O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\ndiscussions\tO\tdiscussions\tO\nover\tO\tover\tO\nserver B-Application server O\nside\tO\tside\tO\nrendering\tO\trendering\tO\nvs\tO\tvs\tO\nclient B-Application client O\nside\tO\tside\tO\nrendering\tO\trendering\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nread\tO\tread\tO\nmore\tO\tmore\tO\nabout\tO\tabout\tO\nit\tO\tit\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttps://medium.com/@adamzerner/client-side-rendering-vs-server-side-rendering-a32d2cf3bfcc\tO\thttps://medium.com/@adamzerner/client-side-rendering-vs-server-side-rendering-a32d2cf3bfcc\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16207678\tO\t16207678\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16207678/\tO\thttps://stackoverflow.com/questions/16207678/\tO\n\t\n\t\nWorking\tO\tWorking\tO\non\tO\ton\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\ncontrol\tO\tcontrol\tO\nthat\tO\tthat\tO\nfetches\tO\tfetches\tO\nemployee B-Class employee O\nfrom\tO\tfrom\tO\nWCF B-Library WCF O\nin\tO\tin\tO\njson B-File_Type json O\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1610 I-Code_Block Q_1610 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nthis\tO\tthis\tO\nservice\tO\tservice\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1611 I-Code_Block Q_1611 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nreturn\tO\treturn\tO\nEmployees B-Class Employees O\nin\tO\tin\tO\nfollowing\tO\tfollowing\tO\nformat\tO\tformat\tO\n(\tO\t(\tO\nJSON B-Data_Type JSON O\nArray B-Data_Structure Array O\nString B-Data_Type String O\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1612 I-Code_Block Q_1612 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nmade\tO\tmade\tO\nsuccessfully\tO\tsuccessfully\tO\n,\tO\t,\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nscreenshot\tO\tscreenshot\tO\nthat\tO\tthat\tO\ntells\tO\ttells\tO\npretty\tO\tpretty\tO\nmuch\tO\tmuch\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\ni\tO\ti\tO\nam\tO\tam\tO\nfacing\tO\tfacing\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndropdown B-User_Interface_Element dropdown O\nis\tO\tis\tO\nnot\tO\tnot\tO\nshowing\tO\tshowing\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\nsuspect\tO\tsuspect\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\nin\tO\tin\tO\nJSON B-File_Type JSON O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\na\tO\ta\tO\njavascript B-Language javascript O\narray B-Data_Structure array O\n,\tO\t,\tO\nnow\tO\tnow\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nplease\tO\tplease\tO\nsuggest\tO\tsuggest\tO\nwhere\tO\twhere\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\nin\tO\tin\tO\nto\tO\tto\tO\narray B-Data_Structure array O\nin\tO\tin\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nWCF B-Library WCF O\nCode\tO\tCode\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1613 I-Code_Block Q_1613 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16207678\tO\t16207678\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16207678/\tO\thttps://stackoverflow.com/questions/16207678/\tO\n\t\n\t\nThe\tO\tThe\tO\nplugin\tO\tplugin\tO\nactually\tO\tactually\tO\nexpects\tO\texpects\tO\nan\tO\tan\tO\nArray B-Data_Structure Array O\nof\tO\tof\tO\nobjects\tO\tobjects\tO\nwith\tO\twith\tO\nattributes\tO\tattributes\tO\nid\tO\tid\tO\nand\tO\tand\tO\nname\tO\tname\tO\nwhile\tO\twhile\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\na\tO\ta\tO\nJSON B-File_Type JSON O\nstring B-Data_Type string O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nmodified\tO\tmodified\tO\nthe\tO\tthe\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2093 I-Code_Block A_2093 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nadded\tO\tadded\tO\nthis\tO\tthis\tO\njust\tO\tjust\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nstarts\tO\tstarts\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2094 I-Code_Block A_2094 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17012753\tO\t17012753\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17012753/\tO\thttps://stackoverflow.com/questions/17012753/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1730 I-Code_Block Q_1730 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nstarted\tO\tstarted\tO\na\tO\ta\tO\nsession\tO\tsession\tO\nfor\tO\tfor\tO\nkeeping\tO\tkeeping\tO\ntrack\tO\ttrack\tO\nof\tO\tof\tO\nlogged\tO\tlogged\tO\nin\tO\tin\tO\nusers\tO\tusers\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nsame\tO\tsame\tO\ncode\tO\tcode\tO\nI\tO\tI\tO\nput\tO\tput\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nprofile.html B-File_Name profile.html O\nfile\tO\tfile\tO\nand\tO\tand\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nredirect\tO\tredirect\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\npage\tO\tpage\tO\nif\tO\tif\tO\na\tO\ta\tO\nlog\tO\tlog\tO\nin\tO\tin\tO\nattempt\tO\tattempt\tO\nis\tO\tis\tO\nsuccessful\tO\tsuccessful\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfetch\tO\tfetch\tO\nany\tO\tany\tO\ninformation\tO\tinformation\tO\nfrom\tO\tfrom\tO\n$_SESSION B-Code_Block $_SESSION B-Code_Block\nvariables\tO\tvariables\tO\ninto\tO\tinto\tO\nthat\tO\tthat\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nextension\tO\textension\tO\nto\tO\tto\tO\nprofile.php B-File_Name profile.php O\nit\tO\tit\tO\nworked\tO\tworked\tO\nnicely\tO\tnicely\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17012753\tO\t17012753\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17012753/\tO\thttps://stackoverflow.com/questions/17012753/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nwrite\tO\twrite\tO\nphp B-Language php O\ncode\tO\tcode\tO\nonly\tO\tonly\tO\nin\tO\tin\tO\nphp B-File_Type php O\nfile\tO\tfile\tO\nand\tO\tand\tO\nhtml B-Language html O\nin\tO\tin\tO\nhtml B-File_Type html O\nfile\tO\tfile\tO\nor\tO\tor\tO\nphp B-File_Type php O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17012753\tO\t17012753\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17012753/\tO\thttps://stackoverflow.com/questions/17012753/\tO\n\t\n\t\nPHP B-Language PHP O\nscripts\tO\tscripts\tO\nare\tO\tare\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\nonly\tO\tonly\tO\ninterpreted\tO\tinterpreted\tO\nin\tO\tin\tO\n.php B-File_Type .php O\nfiles\tO\tfiles\tO\n(\tO\t(\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\ntell\tO\ttell\tO\nthe\tO\tthe\tO\nPHP B-Language PHP O\ninterpreter\tO\tinterpreter\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\notherwise\tO\totherwise\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n,\tO\t,\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\n.htaccess B-File_Type .htaccess O\nfile\tO\tfile\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\n$_SESSION B-Code_Block $_SESSION B-Code_Block\nvariables\tO\tvariables\tO\nin\tO\tin\tO\nan\tO\tan\tO\n.html B-File_Type .html O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35528780\tO\t35528780\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35528780/\tO\thttps://stackoverflow.com/questions/35528780/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nquestions\tO\tquestions\tO\nabout\tO\tabout\tO\nthrowing\tO\tthrowing\tO\nexceptions B-Class exceptions O\nin\tO\tin\tO\nC++ B-Language C++ O\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nabout\tO\tabout\tO\nthem\tO\tthem\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nexception B-Class exception O\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nthrown\tO\tthrown\tO\nfrom\tO\tfrom\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nmain() B-Function main() O\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nblock\tO\tblock\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nthrow\tO\tthrow\tO\nan\tO\tan\tO\nexception\tO\texception\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain() B-Function main() O\nfunction\tO\tfunction\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsurrounded\tO\tsurrounded\tO\nby\tO\tby\tO\ntry B-Code_Block try O\nand\tO\tand\tO\ncatch B-Code_Block catch O\nstatements\tO\tstatements\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4346 I-Code_Block Q_4346 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\nabove\tO\tabove\tO\n,\tO\t,\tO\nwhy\tO\twhy\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nargument\tO\targument\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncatch\tO\tcatch\tO\na\tO\ta\tO\nconst B-Data_Type const O\nchar I-Data_Type char O\n* I-Data_Type * O\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nn't\tO\tn't\tO\nC++ B-Language C++ O\nallow\tO\tallow\tO\nfor\tO\tfor\tO\nstrings B-Data_Type strings O\n?\tO\t?\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nthrow\tO\tthrow\tO\nan\tO\tan\tO\nexception B-Class exception O\nthat\tO\tthat\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\nconst B-Data_Type const O\nchar I-Data_Type char O\n* I-Data_Type * O\n,\tO\t,\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\nint B-Data_Type int O\n?\tO\t?\tO\n\t\nor\tO\tor\tO\na\tO\ta\tO\nchar B-Data_Type char O\n?\tO\t?\tO\n\t\nDoes\tO\tDoes\tO\nthrowing\tO\tthrowing\tO\nan\tO\tan\tO\nexception B-Class exception O\nin\tO\tin\tO\nfoo B-Function foo O\n,\tO\t,\tO\nterminate\tO\tterminate\tO\nthe\tO\tthe\tO\nfoo B-Function foo O\nfunction\tO\tfunction\tO\n?\tO\t?\tO\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\ncases\tO\tcases\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\ncatch\tO\tcatch\tO\nstatements\tO\tstatements\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfunction\tO\tfunction\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nthrow\tO\tthrow\tO\n?\tO\t?\tO\n\t\nSorry\tO\tSorry\tO\nif\tO\tif\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\nbasic\tO\tbasic\tO\nquestions\tO\tquestions\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nSO B-Website SO O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35528780\tO\t35528780\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35528780/\tO\thttps://stackoverflow.com/questions/35528780/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nBecause\tO\tBecause\tO\nyou\tO\tyou\tO\nthrew\tO\tthrew\tO\nstring B-Data_Type string O\nliteral\tO\tliteral\tO\nwhich\tO\twhich\tO\ndecays\tO\tdecays\tO\nto\tO\tto\tO\nconst B-Data_Type const B-Code_Block\nchar* I-Data_Type char* I-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nshort\tO\tshort\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncatch\tO\tcatch\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nthrow\tO\tthrow\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIt\tO\tIt\tO\ndoes\tO\tdoes\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nto\tO\tto\tO\ncatch\tO\tcatch\tO\nstring B-Data_Type string O\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nthrow\tO\tthrow\tO\nstring B-Data_Type string O\nin\tO\tin\tO\nfirst\tO\tfirst\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthrow\tO\tthrow\tO\nliterally\tO\tliterally\tO\nanything\tO\tanything\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\nthrow\tO\tthrow\tO\nspecial\tO\tspecial\tO\nexception B-Class exception O\nclasses\tO\tclasses\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nstd::exception B-Class std::exception B-Code_Block\nand\tO\tand\tO\nderived\tO\tderived\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nmuch\tO\tmuch\tO\ncases\tO\tcases\tO\nwhere\tO\twhere\tO\ndoing\tO\tdoing\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nbook\tO\tbook\tO\nand\tO\tand\tO\nread\tO\tread\tO\nchapter\tO\tchapter\tO\nabout\tO\tabout\tO\nexceptions B-Class exceptions O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nmeantime\tO\tmeantime\tO\nthis\tO\tthis\tO\nsuper-FAQ\tO\tsuper-FAQ\tO\nentry\tO\tentry\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\nyou/\tO\tyou/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35528780\tO\t35528780\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35528780/\tO\thttps://stackoverflow.com/questions/35528780/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthrow\tO\tthrow\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nof\tO\tof\tO\nany\tO\tany\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n(\tO\t(\tO\nHopefully\tO\tHopefully\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nthis\tO\tthis\tO\nright\tO\tright\tO\nnow\tO\tnow\tO\n)\tO\t)\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\nis\tO\tis\tO\nthrow\tO\tthrow\tO\na\tO\ta\tO\nC-string B-Data_Structure C-string O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nconst B-Data_Type const B-Code_Block\nchar[13] I-Data_Type char[13] I-Code_Block\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n.\tO\t.\tO\n\t\nC-Arrays B-Data_Structure C-Arrays O\nwill\tO\twill\tO\ndecay\tO\tdecay\tO\nto\tO\tto\tO\npointers\tO\tpointers\tO\nto\tO\tto\tO\ntheir\tO\ttheir\tO\nfirst\tO\tfirst\tO\nelement\tO\telement\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\na\tO\ta\tO\npointer\tO\tpointer\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nconst B-Data_Type const B-Code_Block\nchar* I-Data_Type char* I-Code_Block\n.\tO\t.\tO\n\t\nTypically\tO\tTypically\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nthrow\tO\tthrow\tO\na\tO\ta\tO\npredefined\tO\tpredefined\tO\nexception B-Class exception O\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\nin\tO\tin\tO\nheader\tO\theader\tO\n<stdexcept> B-Class <stdexcept> B-Code_Block\nand\tO\tand\tO\nare\tO\tare\tO\nderived\tO\tderived\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nbase\tO\tbase\tO\nclass\tO\tclass\tO\nstd::exception B-Class std::exception B-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nderived\tO\tderived\tO\nexception B-Class exception O\nclasses\tO\tclasses\tO\nare\tO\tare\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\nstd::logic_error B-Class std::logic_error B-Code_Block\n,\tO\t,\tO\nstd::range_error B-Class std::range_error B-Code_Block\n,\tO\t,\tO\nstd::bad_alloc B-Class std::bad_alloc B-Code_Block\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nTheir\tO\tTheir\tO\nconstructors\tO\tconstructors\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nstring B-Data_Type string O\nas\tO\tas\tO\nargument\tO\targument\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5063 I-Code_Block A_5063 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nmessage\tO\tmessage\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\naccessed\tO\taccessed\tO\nin\tO\tin\tO\na\tO\ta\tO\ncatch\tO\tcatch\tO\nstatement\tO\tstatement\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5064 I-Code_Block A_5064 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nan\tO\tan\tO\nexception B-Class exception O\nis\tO\tis\tO\ncaught\tO\tcaught\tO\n,\tO\t,\tO\nso-called\tO\tso-called\tO\nstack B-Data_Structure stack O\nunwinding\tO\tunwinding\tO\ntakes\tO\ttakes\tO\nplace\tO\tplace\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nlocally\tO\tlocally\tO\n,\tO\t,\tO\nor\tO\tor\tO\nrethrow\tO\trethrow\tO\nthe\tO\tthe\tO\nexception B-Class exception O\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nwhen\tO\twhen\tO\nan\tO\tan\tO\nexception B-Class exception O\nis\tO\tis\tO\nthrown\tO\tthrown\tO\nand\tO\tand\tO\nnever\tO\tnever\tO\ncaught\tO\tcaught\tO\n,\tO\t,\tO\nstd::terminate() B-Function std::terminate() O\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nan\tO\tan\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\naborted\tO\taborted\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\ntry/catch\tO\ttry/catch\tO\nstatements\tO\tstatements\tO\nanywhere\tO\tanywhere\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nremember\tO\tremember\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nterm\tO\tterm\tO\n\"\tO\t\"\tO\nexception B-Class exception O\n\"\tO\t\"\tO\nactually\tO\tactually\tO\nmeans\tO\tmeans\tO\n.\tO\t.\tO\n\t\nCases\tO\tCases\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\ndealt\tO\tdealt\tO\nwith\tO\twith\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nconditional\tO\tconditional\tO\nexpression\tO\texpression\tO\nif B-Code_Block if B-Code_Block\n( I-Code_Block ( I-Code_Block\nn I-Code_Block n I-Code_Block\n< I-Code_Block < I-Code_Block\n0 I-Code_Block 0 I-Code_Block\n) I-Code_Block ) I-Code_Block\nbreak B-Code_Block break B-Code_Block\n; I-Code_Block ; I-Code_Block\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nexception B-Class exception O\ntreatment\tO\ttreatment\tO\n.\tO\t.\tO\n\t\nEspecially\tO\tEspecially\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nrealistically\tO\trealistically\tO\nexpect\tO\texpect\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nunwanted\tO\tunwanted\tO\ncondition\tO\tcondition\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ntrue\tO\ttrue\tO\noften\tO\toften\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nsomething\tO\tsomething\tO\n\"\tO\t\"\tO\nexceptional\tO\texceptional\tO\n\"\tO\t\"\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndecide\tO\tdecide\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nusing\tO\tusing\tO\nexceptions B-Class exceptions O\nand\tO\tand\tO\nthey\tO\tthey\tO\ncan\tO\tcan\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\ntreated\tO\ttreated\tO\nlocally\tO\tlocally\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nput\tO\tput\tO\ntry/catch\tO\ttry/catch\tO\nclauses\tO\tclauses\tO\naround\tO\taround\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\nand\tO\tand\tO\nend\tO\tend\tO\nof\tO\tof\tO\nmain() B-Function main() O\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nseveral\tO\tseveral\tO\ncatch\tO\tcatch\tO\nstatements\tO\tstatements\tO\ndirectly\tO\tdirectly\tO\nafter\tO\tafter\tO\na\tO\ta\tO\ntry\tO\ttry\tO\nstatement\tO\tstatement\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nbegin\tO\tbegin\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\nerrors\tO\terrors\tO\n,\tO\t,\tO\nor\tO\tor\tO\nsimply\tO\tsimply\tO\ncatch\tO\tcatch\tO\nanything\tO\tanything\tO\nvia\tO\tvia\tO\ncatch(...) B-Code_Block catch(...) B-Code_Block\n{ I-Code_Block { I-Code_Block\n//.. I-Code_Block //.. I-Code_Block\n. I-Code_Block . I-Code_Block\n} I-Code_Block } I-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nall\tO\tall\tO\ndescribed\tO\tdescribed\tO\nin\tO\tin\tO\ngreat\tO\tgreat\tO\ndetail\tO\tdetail\tO\n(\tO\t(\tO\nincluding\tO\tincluding\tO\npointers B-Data_Type pointers O\non\tO\ton\tO\nwhen\tO\twhen\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\n,\tO\t,\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nC++ B-Language C++ O\nFAQ\tO\tFAQ\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nHere\tO\tHere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nthat\tO\tthat\tO\nmakes\tO\tmakes\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\ntry/catch\tO\ttry/catch\tO\nstatements\tO\tstatements\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\nexception B-Class exception O\nobject\tO\tobject\tO\nis\tO\tis\tO\ncaught\tO\tcaught\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nan\tO\tan\tO\nint B-Data_Type int O\n(\tO\t(\tO\nerrno B-Variable errno O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreally\tO\treally\tO\nthrow/catch\tO\tthrow/catch\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nlike\tO\tlike\tO\n.\tO\t.\tO\n\t\nLet\tO\tLet\tO\nprocess_several_files() B-Function process_several_files() B-Code_Block\nbe\tO\tbe\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nsomewhere\tO\tsomewhere\tO\nnested\tO\tnested\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5065 I-Code_Block A_5065 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9387961\tO\t9387961\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9387961/\tO\thttps://stackoverflow.com/questions/9387961/\tO\n\t\n\t\nif\tO\tif\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nallocate\tO\tallocate\tO\nnon-cacheable\tO\tnon-cacheable\tO\nphysical\tO\tphysical\tO\nmemory\tO\tmemory\tO\n(\tO\t(\tO\nDRAM B-Device DRAM O\n)\tO\t)\tO\nfor\tO\tfor\tO\nusage\tO\tusage\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndriver B-Application driver O\n,\tO\t,\tO\n(\tO\t(\tO\nie\tO\tie\tO\n.\tO\t.\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nbeing\tO\tbeing\tO\ncached\tO\tcached\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\nCPU B-Device CPU O\n's\tO\t's\tO\ndata\tO\tdata\tO\ncache\tO\tcache\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nare\tO\tare\tO\naccessed\tO\taccessed\tO\n)\tO\t)\tO\nhow\tO\thow\tO\ncould\tO\tcould\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nthere\tO\tthere\tO\nare\tO\tare\tO\nfunctions\tO\tfunctions\tO\nlike\tO\tlike\tO\nkmalloc() B-Function kmalloc() O\n,\tO\t,\tO\nget_free_pages B-Function get_free_pages O\n,\tO\t,\tO\nvmalloc B-Function vmalloc O\n,\tO\t,\tO\netc\tO\tetc\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nspecify\tO\tspecify\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ncached\tO\tcached\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nthese\tO\tthese\tO\nfunctions\tO\tfunctions\tO\n?\tO\t?\tO\n\t\nany\tO\tany\tO\nsuggestion\tO\tsuggestion\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nthanks\tO\tthanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9387961\tO\t9387961\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9387961/\tO\thttps://stackoverflow.com/questions/9387961/\tO\n\t\n\t\nIn\tO\tIn\tO\nshort\tO\tshort\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\neasy\tO\teasy\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nplatform\tO\tplatform\tO\ndependent\tO\tdependent\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\na\tO\ta\tO\ngo\tO\tgo\tO\nat\tO\tat\tO\nit\tO\tit\tO\nread\tO\tread\tO\ndrivers/char/mem.c B-File_Name drivers/char/mem.c O\nand\tO\tand\tO\nChapter\tO\tChapter\tO\n15\tO\t15\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nLinux B-Operating_System Linux O\nDevice\tO\tDevice\tO\nDrivers\tO\tDrivers\tO\n3rd\tO\t3rd\tO\nEdition\tO\tEdition\tO\nbook\tO\tbook\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28499750\tO\t28499750\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28499750/\tO\thttps://stackoverflow.com/questions/28499750/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\npie B-User_Interface_Element pie O\ncharts I-User_Interface_Element charts O\nusing\tO\tusing\tO\nchart.js B-File_Name chart.js O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nadding\tO\tadding\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\njs B-File_Type js O\nfile\tO\tfile\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ngenerate\tO\tgenerate\tO\ncharts B-User_Interface_Element charts O\nusing\tO\tusing\tO\nHTML B-Language HTML O\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nHTML B-Language HTML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3346 I-Code_Block Q_3346 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nevery\tO\tevery\tO\nchart B-User_Interface_Element chart O\nretrieve\tO\tretrieve\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsibling\tO\tsibling\tO\nchart B-User_Interface_Element chart O\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\njs B-Language js O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3347 I-Code_Block Q_3347 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28499750\tO\t28499750\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28499750/\tO\thttps://stackoverflow.com/questions/28499750/\tO\n\t\n\t\nOk\tO\tOk\tO\nanyway\tO\tanyway\tO\nI\tO\tI\tO\nsolve\tO\tsolve\tO\nit\tO\tit\tO\nby\tO\tby\tO\nmyself\tO\tmyself\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nfor\tO\tfor\tO\nother\tO\tother\tO\nif\tO\tif\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nSorry\tO\tSorry\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\nbad\tO\tbad\tO\npractices\tO\tpractices\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\njs B-Language js O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\na\tO\ta\tO\npro\tO\tpro\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3986 I-Code_Block A_3986 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28499750\tO\t28499750\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28499750/\tO\thttps://stackoverflow.com/questions/28499750/\tO\n\t\n\t\nTo\tO\tTo\tO\ncreate\tO\tcreate\tO\nnew\tO\tnew\tO\ngraphs B-Data_Structure graphs O\nto\tO\tto\tO\ndynamics\tO\tdynamics\tO\nelements\tO\telements\tO\ninserted\tO\tinserted\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nDOM B-Library DOM O\nObserver B-Class Observer O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nfiddle B-Application fiddle O\nwith\tO\twith\tO\na\tO\ta\tO\nexample\tO\texample\tO\nin\tO\tin\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6811 I-Code_Block Q_6811 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6812 I-Code_Block Q_6812 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45562594\tO\t45562594\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45562594/\tO\thttps://stackoverflow.com/questions/45562594/\tO\n\t\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nlogs\tO\tlogs\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5971 I-Code_Block Q_5971 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nmessage\tO\tmessage\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nhelp\tO\thelp\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nstacktrace\tO\tstacktrace\tO\nwhere\tO\twhere\tO\nthis\tO\tthis\tO\nhappens\tO\thappens\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nlook\tO\tlook\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nwarning\tO\twarning\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nabout\tO\tabout\tO\nBeautiful B-Library Beautiful O\nSoup I-Library Soup O\n:-)\tO\t:-)\tO\n\t\nAn\tO\tAn\tO\neasy\tO\teasy\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\nthird\tO\tthird\tO\nparty\tO\tparty\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nbs4/__init__.py B-File_Name bs4/__init__.py B-Code_Block\nat\tO\tat\tO\nline\tO\tline\tO\n219\tO\t219\tO\n)\tO\t)\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5972 I-Code_Block Q_5972 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nReasons\tO\tReasons\tO\n:\tO\t:\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nproduction\tO\tproduction\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nnext\tO\tnext\tO\ntime\tO\ttime\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\noccurs\tO\toccurs\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nstacktrace\tO\tstacktrace\tO\nimmediately\tO\timmediately\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nflag\tO\tflag\tO\nor\tO\tor\tO\nsetting\tO\tsetting\tO\nfor\tO\tfor\tO\npython B-Language python O\nwhich\tO\twhich\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\n,\tO\t,\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nnot\tO\tnot\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nline\tO\tline\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nwhile\tO\twhile\tO\nstacktrace\tO\tstacktrace\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nupper\tO\tupper\tO\nframes\tO\tframes\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nenvironment\tO\tenvironment\tO\nPython B-Language Python O\n2.7 B-Version 2.7 O\ngets\tO\tgets\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45562594\tO\t45562594\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45562594/\tO\thttps://stackoverflow.com/questions/45562594/\tO\n\t\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nroot\tO\troot\tO\nof\tO\tof\tO\na\tO\ta\tO\nwarning\tO\twarning\tO\nI\tO\tI\tO\ngenerally\tO\tgenerally\tO\njust\tO\tjust\tO\npromote\tO\tpromote\tO\nWarnings B-Class Warnings B-Code_Block\nto\tO\tto\tO\nExceptions B-Class Exceptions B-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nsimply\tO\tsimply\tO\nuse\tO\tuse\tO\nwarnings.simplefilter B-Function warnings.simplefilter B-Code_Block\nor\tO\tor\tO\nwarnings.filterwarnings B-Function warnings.filterwarnings B-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6636 I-Code_Block A_6636 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhich\tO\twhich\tO\ngives\tO\tgives\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\ntraceback\tO\ttraceback\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6637 I-Code_Block A_6637 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nthis\tO\tthis\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\neasily\tO\teasily\tO\nhook\tO\thook\tO\nPythons B-Language Pythons O\npdbs B-Application pdbs B-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nencountered\tO\tencountered\tO\nexception B-Class exception O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6638 I-Code_Block A_6638 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nresulting\tO\tresulting\tO\nin\tO\tin\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6639 I-Code_Block A_6639 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nstarts\tO\tstarts\tO\na\tO\ta\tO\npost-mortem\tO\tpost-mortem\tO\nanalysis\tO\tanalysis\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nencountered\tO\tencountered\tO\nexception B-Class exception O\n.\tO\t.\tO\n\t\nWhich\tO\tWhich\tO\nshould\tO\tshould\tO\nenable\tO\tenable\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ndig\tO\tdig\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nframes\tO\tframes\tO\nand\tO\tand\tO\ninspect\tO\tinspect\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nalso\tO\talso\tO\nasked\tO\tasked\tO\nabout\tO\tabout\tO\na\tO\ta\tO\nflag\tO\tflag\tO\n,\tO\t,\tO\nand\tO\tand\tO\nindeed\tO\tindeed\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\nflag\tO\tflag\tO\nthat\tO\tthat\tO\nenables\tO\tenables\tO\n\"\tO\t\"\tO\nwarning\tO\twarning\tO\nhandling\tO\thandling\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\n-W B-Code_Block -W B-Code_Block\nflag\tO\tflag\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nvery\tO\tvery\tO\nmuch\tO\tmuch\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nwarnings.filterwarnings B-Function warnings.filterwarnings B-Code_Block\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nconvenience\tO\tconvenience\tO\nI\tO\tI\tO\njust\tO\tjust\tO\ncopied\tO\tcopied\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n-W B-Code_Block -W B-Code_Block\nflag\tO\tflag\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45562594\tO\t45562594\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45562594/\tO\thttps://stackoverflow.com/questions/45562594/\tO\n\t\n\t\nYou\tO\tYou\tO\nwould\tO\twould\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCreate\tO\tCreate\tO\nif\tO\tif\tO\nUSER_SITE B-Variable USER_SITE O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nexists\tO\texists\tO\n:\tO\t:\tO\nissue\tO\tissue\tO\npython B-Code_Block python B-Code_Block\n-c I-Code_Block -c I-Code_Block\n\" I-Code_Block \" I-Code_Block\nimport I-Code_Block import I-Code_Block\nsite I-Code_Block site I-Code_Block\n; I-Code_Block ; I-Code_Block\nsite._script()\" I-Code_Block site._script()\" I-Code_Block\n,\tO\t,\tO\nsee\tO\tsee\tO\nUSER_SITE B-Variable USER_SITE O\nvariable\tO\tvariable\tO\ncontents\tO\tcontents\tO\n\t\nPlace\tO\tPlace\tO\na\tO\ta\tO\nfile\tO\tfile\tO\nusercustomize.py B-File_Name usercustomize.py B-Code_Block\nin\tO\tin\tO\nthat\tO\tthat\tO\ndirectory\tO\tdirectory\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6632 I-Code_Block Q_6632 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCredits\tO\tCredits\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nanswer\tO\tanswer\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nas\tO\tas\tO\nusual\tO\tusual\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ntest\tO\ttest\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6633 I-Code_Block A_6633 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBefore\tO\tBefore\tO\nthe\tO\tthe\tO\nprocedure\tO\tprocedure\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6634 I-Code_Block A_6634 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAfter\tO\tAfter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6635 I-Code_Block A_6635 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17787438\tO\t17787438\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17787438/\tO\thttps://stackoverflow.com/questions/17787438/\tO\n\t\n\t\nLets\tO\tLets\tO\ntake\tO\ttake\tO\ntwo\tO\ttwo\tO\ndatetimes B-Class datetimes O\n2013-07-22 B-Value 2013-07-22 O\nand\tO\tand\tO\n2013-07-28 B-Value 2013-07-28 O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndatetimes B-Class datetimes O\nbetween\tO\tbetween\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\ndatetimes B-Class datetimes O\nare\tO\tare\tO\n2013-07-23 B-Value 2013-07-23 O\n,\tO\t,\tO\n2013-07-24 B-Value 2013-07-24 O\n,\tO\t,\tO\n2013-07-25 B-Value 2013-07-25 O\n,\tO\t,\tO\n2013-07-26 B-Value 2013-07-26 O\n,\tO\t,\tO\n2013-07-27 B-Value 2013-07-27 O\n,\tO\t,\tO\n2013-07-28 B-Value 2013-07-28 O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthis\tO\tthis\tO\nmuch\tO\tmuch\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nusing\tO\tusing\tO\nphp B-Language php O\ndatetime B-Class datetime O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1817 I-Code_Block Q_1817 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nRequire\tO\tRequire\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nanother\tO\tanother\tO\nvariable\tO\tvariable\tO\n$interval B-Variable $interval B-Code_Block\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\ntake\tO\ttake\tO\nvalues\tO\tvalues\tO\n1 B-Value 1 O\n,\tO\t,\tO\n2 B-Value 2 O\n,\tO\t,\tO\n3. B-Value 3. O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\n$interval B-Code_Block $interval B-Code_Block\n= I-Code_Block = I-Code_Block\n2 I-Code_Block 2 I-Code_Block\nthen\tO\tthen\tO\n$period B-Variable $period B-Code_Block\nwill\tO\twill\tO\nonly\tO\tonly\tO\ncontain\tO\tcontain\tO\n2013-07-24 B-Value 2013-07-24 O\n,\tO\t,\tO\n2013-07-26 B-Value 2013-07-26 O\n,\tO\t,\tO\n2013-07-28 B-Value 2013-07-28 O\n.\tO\t.\tO\n\t\nLikewise\tO\tLikewise\tO\n$interval B-Code_Block $interval B-Code_Block\n= I-Code_Block = I-Code_Block\n3 I-Code_Block 3 I-Code_Block\nthen\tO\tthen\tO\n$period B-Variable $period B-Code_Block\nwill\tO\twill\tO\nonly\tO\tonly\tO\ncontain\tO\tcontain\tO\n2013-07-25 B-Value 2013-07-25 O\n,\tO\t,\tO\n2013-07-28 B-Value 2013-07-28 O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17787438\tO\t17787438\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17787438/\tO\thttps://stackoverflow.com/questions/17787438/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nany\tO\tany\tO\ninterval B-Variable interval O\nwith\tO\twith\tO\nthat\tO\tthat\tO\nvariable\tO\tvariable\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nwrite\tO\twrite\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2343 I-Code_Block A_2343 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ninstead\tO\tinstead\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35972785\tO\t35972785\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35972785/\tO\thttps://stackoverflow.com/questions/35972785/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\nwith\tO\twith\tO\nng-repeat B-Function ng-repeat B-Code_Block\nwhere\tO\twhere\tO\nis\tO\tis\tO\nthrowing\tO\tthrowing\tO\nan\tO\tan\tO\ninjection B-Error_Name injection O\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\nadvance\tO\tadvance\tO\nangular B-Library angular O\ndeveloper\tO\tdeveloper\tO\n,\tO\t,\tO\na\tO\ta\tO\nnovice\tO\tnovice\tO\nmaybe\tO\tmaybe\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\nworking\tO\tworking\tO\nat\tO\tat\tO\none\tO\tone\tO\npoint\tO\tpoint\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\npoof\tO\tpoof\tO\n.\tO\t.\tO\n\t\nGone\tO\tGone\tO\n!\tO\t!\tO\n\t\nWhat\tO\tWhat\tO\ndid\tO\tdid\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\ndifferent\tO\tdifferent\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nchanged\tO\tchanged\tO\nmy\tO\tmy\tO\nlocalhost\tO\tlocalhost\tO\npath\tO\tpath\tO\nto\tO\tto\tO\nangular B-Library angular O\nto\tO\tto\tO\na\tO\ta\tO\nCDN B-Library CDN O\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntested\tO\ttested\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntemplate\tO\ttemplate\tO\nI\tO\tI\tO\ncopied\tO\tcopied\tO\nthis\tO\tthis\tO\nwork\tO\twork\tO\nfrom\tO\tfrom\tO\noriginally\tO\toriginally\tO\nand\tO\tand\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nnot\tO\tnot\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nsite\tO\tsite\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nHTML B-Language HTML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4403 I-Code_Block Q_4403 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nController\tO\tController\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4404 I-Code_Block Q_4404 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nCODEPEN B-Application CODEPEN O\nif\tO\tif\tO\nit\tO\tit\tO\nhelps\tO\thelps\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35972785\tO\t35972785\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35972785/\tO\thttps://stackoverflow.com/questions/35972785/\tO\n\t\n\t\n\t\nRemove\tO\tRemove\tO\n'\tO\t'\tO\nuiGmapgoogle-maps B-Function uiGmapgoogle-maps O\n'\tO\t'\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\ndependecies\tO\tdependecies\tO\n\t\nLinks\tO\tLinks\tO\nwith\tO\twith\tO\ndata-binding\tO\tdata-binding\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\nuse\tO\tuse\tO\nuse\tO\tuse\tO\nng-href B-Function ng-href O\n,\tO\t,\tO\nreplacing\tO\treplacing\tO\nhref B-Function href O\n\t\nI\tO\tI\tO\nrecommend\tO\trecommend\tO\nwrite\tO\twrite\tO\nyour\tO\tyour\tO\nangular B-Library angular O\napp\tO\tapp\tO\nfollowing\tO\tfollowing\tO\nthe\tO\tthe\tO\npreparation\tO\tpreparation\tO\nguide\tO\tguide\tO\nfor\tO\tfor\tO\nangular B-Library angular O\n2 B-Version 2 O\n.\tO\t.\tO\nand\tO\tand\tO\nJhon B-User_Name Jhon O\nPapa I-User_Name Papa O\n's\tO\t's\tO\nangular B-Library angular O\nstyle\tO\tstyle\tO\nguide\tO\tguide\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35972785\tO\t35972785\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35972785/\tO\thttps://stackoverflow.com/questions/35972785/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nloading\tO\tloading\tO\nuiGmapgoogle-maps B-Function uiGmapgoogle-maps B-Code_Block\nmodule\tO\tmodule\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\n\t\nRemoving\tO\tRemoving\tO\nuiGmapgoogle-maps B-Function uiGmapgoogle-maps O\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nangular B-Library angular O\nmodule\tO\tmodule\tO\ndependencies\tO\tdependencies\tO\nwill\tO\twill\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5132 I-Code_Block A_5132 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nattach\tO\tattach\tO\nthe\tO\tthe\tO\nfilter B-File_Type filter O\nfile\tO\tfile\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nfilter\tO\tfilter\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nngRepeat B-Function ngRepeat O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5133 I-Code_Block A_5133 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSee\tO\tSee\tO\nworking\tO\tworking\tO\nsample\tO\tsample\tO\nat\tO\tat\tO\n:\tO\t:\tO\nhttp://codepen.io/anon/pen/BKLdyP?editors=1011\tO\thttp://codepen.io/anon/pen/BKLdyP?editors=1011\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30161338\tO\t30161338\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30161338/\tO\thttps://stackoverflow.com/questions/30161338/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nlearn\tO\tlearn\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\ngraphic\tO\tgraphic\tO\nobjects\tO\tobjects\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nMATLAB B-Language MATLAB O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nplot\tO\tplot\tO\nwithout\tO\twithout\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\nfunction\tO\tfunction\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nconfused\tO\tconfused\tO\nwhy\tO\twhy\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nAFIK\tO\tAFIK\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nplot\tO\tplot\tO\nfunction\tO\tfunction\tO\nit\tO\tit\tO\ncreates\tO\tcreates\tO\nfigure\tO\tfigure\tO\n,\tO\t,\tO\naxis\tO\taxis\tO\n,\tO\t,\tO\nline\tO\tline\tO\nobjects\tO\tobjects\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsets\tO\tsets\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\nof\tO\tof\tO\neach\tO\teach\tO\nobject\tO\tobject\tO\naccordingly\tO\taccordingly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nso\tO\tso\tO\nbut\tO\tbut\tO\nall\tO\tall\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nis\tO\tis\tO\na\tO\ta\tO\nwhite/blank\tO\twhite/blank\tO\nfigure\tO\tfigure\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nplot\tO\tplot\tO\na\tO\ta\tO\nsine\tO\tsine\tO\nwave\tO\twave\tO\nso\tO\tso\tO\nmy\tO\tmy\tO\nX B-Variable X O\nand\tO\tand\tO\nY B-Variable Y O\ndata\tO\tdata\tO\nare\tO\tare\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3620 I-Code_Block Q_3620 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3621 I-Code_Block Q_3621 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nweird\tO\tweird\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntype\tO\ttype\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3622 I-Code_Block Q_3622 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\ngetting\tO\tgetting\tO\nanything\tO\tanything\tO\nback\tO\tback\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nappreciate\tO\tappreciate\tO\ntips\tO\ttips\tO\nand\tO\tand\tO\ncomments\tO\tcomments\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30161338\tO\t30161338\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30161338/\tO\thttps://stackoverflow.com/questions/30161338/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nline\tO\tline\tB-Code_Block\nbefore\tO\tbefore\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nit\tO\tit\tO\nand\tO\tand\tO\nchange\tO\tchange\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4291 I-Code_Block A_4291 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nIts\tO\tIts\tO\na\tO\ta\tO\ngood\tO\tgood\tO\nidea\tO\tidea\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\neach\tO\teach\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nobjects\tO\tobjects\tO\ndirectly\tO\tdirectly\tO\n(\tO\t(\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nallowing\tO\tallowing\tO\nthe\tO\tthe\tO\ncommand\tO\tcommand\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\nfigure\tO\tfigure\tO\n,\tO\t,\tO\naxes\tO\taxes\tO\netc\tO\tetc\tO\n...\tO\t...\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4292 I-Code_Block A_4292 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25065828\tO\t25065828\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25065828/\tO\thttps://stackoverflow.com/questions/25065828/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nscenario\tO\tscenario\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\npagination\tO\tpagination\tO\nwith\tO\twith\tO\nDataTables B-Library DataTables O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nfirst\tO\tfirst\tO\ncolumn\tO\tcolumn\tO\nis\tO\tis\tO\ncss B-Language css O\nstyled\tO\tstyled\tO\nbased\tO\tbased\tO\nupon\tO\tupon\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\npassed\tO\tpassed\tO\nin\tO\tin\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndisplay\tO\tdisplay\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ncolored\tO\tcolored\tO\nicon B-User_Interface_Element icon O\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nproperty\tO\tproperty\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nitem\tO\titem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ntable\tO\ttable\tO\n.\tO\t.\tO\n\t\nEverything\tO\tEverything\tO\non\tO\ton\tO\npage B-User_Interface_Element page O\n1\tO\t1\tO\ndisplays\tO\tdisplays\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\ndoing\tO\tdoing\tO\nthe\tO\tthe\tO\nbasics\tO\tbasics\tO\n,\tO\t,\tO\neverything\tO\teverything\tO\non\tO\ton\tO\nfurther\tO\tfurther\tO\npages B-User_Interface_Element pages O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\ndisplayed\tO\tdisplayed\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nremoved\tO\tremoved\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nDOM B-Library DOM O\nat\tO\tat\tO\nthat\tO\tthat\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\n$('#my_id') B-Code_Block $('#my_id') B-Code_Block\n.on I-Code_Block .on I-Code_Block\n( B-Code_Block ( B-Code_Block\n'page I-Code_Block 'page I-Code_Block\n.dt I-Code_Block .dt I-Code_Block\n' I-Code_Block ' I-Code_Block\n, I-Code_Block , I-Code_Block\nfunction() I-Code_Block function() I-Code_Block\n{ I-Code_Block { I-Code_Block\nperPageFunctionCall() I-Code_Block perPageFunctionCall() I-Code_Block\n;}) I-Code_Block ;}) I-Code_Block\n.dataTable(soonansoforth) I-Code_Block .dataTable(soonansoforth) I-Code_Block\n} I-Code_Block } I-Code_Block\n; I-Code_Block ; I-Code_Block\nto\tO\tto\tO\ncall\tO\tcall\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nwhich\tO\twhich\tO\nselects\tO\tselects\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\ncolored\tO\tcolored\tO\nflag\tO\tflag\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\npage B-User_Interface_Element page O\n2\tO\t2\tO\n,\tO\t,\tO\nnothing\tO\tnothing\tO\ngets\tO\tgets\tO\nupdated\tO\tupdated\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\npage B-User_Interface_Element page O\n1\tO\t1\tO\nagain\tO\tagain\tO\nand\tO\tand\tO\nit\tO\tit\tO\nredisplays\tO\tredisplays\tO\nthe\tO\tthe\tO\n1st\tO\t1st\tO\npage B-User_Interface_Element page O\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\npage B-User_Interface_Element page O\n2\tO\t2\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\ntime\tO\ttime\tO\nnow\tO\tnow\tO\nand\tO\tand\tO\nit\tO\tit\tO\ndisplays\tO\tdisplays\tO\neverything\tO\teverything\tO\ncorrectly\tO\tcorrectly\tO\nthis\tO\tthis\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ncausing\tO\tcausing\tO\nthe\tO\tthe\tO\ndisplay\tO\tdisplay\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\nnew\tO\tnew\tO\ncss B-Language css O\nthe\tO\tthe\tO\n1st\tO\t1st\tO\ntrip\tO\ttrip\tO\nbut\tO\tbut\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nproperly\tO\tproperly\tO\non\tO\ton\tO\nsubsequent\tO\tsubsequent\tO\ntrips\tO\ttrips\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nsomeway\tO\tsomeway\tO\nto\tO\tto\tO\nrefresh\tO\trefresh\tO\nthe\tO\tthe\tO\nelement\tO\telement\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ntable\tO\ttable\tO\nafter\tO\tafter\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\nmy\tO\tmy\tO\ncss B-Language css O\nmanipulation\tO\tmanipulation\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25065828\tO\t25065828\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25065828/\tO\thttps://stackoverflow.com/questions/25065828/\tO\n\t\n\t\nfor\tO\tfor\tO\nrefresh\tO\trefresh\tO\nresp\tO\tresp\tO\n.\tO\t.\tO\n\t\ntable\tO\ttable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3437 I-Code_Block A_3437 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25065828\tO\t25065828\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25065828/\tO\thttps://stackoverflow.com/questions/25065828/\tO\n\t\n\t\nWell\tO\tWell\tO\nit\tO\tit\tO\nis\tO\tis\tO\none\tO\tone\tO\nof\tO\tof\tO\ntwo\tO\ttwo\tO\nthings\tO\tthings\tO\n:\tO\t:\tO\n\t\nEither\tO\tEither\tO\nit\tO\tit\tO\nis\tO\tis\tO\n\t\n1\tO\t1\tO\n:\tO\t:\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3436 I-Code_Block A_3436 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nin\tO\tin\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\npage\tO\tpage\tO\nfunction\tO\tfunction\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nmore\tO\tmore\tO\nlikely\tO\tlikely\tO\neveryone\tO\teveryone\tO\n's\tO\t's\tO\nfavorite\tO\tfavorite\tO\nreason\tO\treason\tO\n:\tO\t:\tO\n\t\n2\tO\t2\tO\n:\tO\t:\tO\nCaching\tO\tCaching\tO\n\t\nIn\tO\tIn\tO\neither\tO\teither\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nwork\tO\twork\tO\nflawlessly\tO\tflawlessly\tO\nnow\tO\tnow\tO\nas\tO\tas\tO\nexpected\tO\texpected\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n20575698\tO\t20575698\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20575698/\tO\thttps://stackoverflow.com/questions/20575698/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nso\tO\tso\tO\nusers\tO\tusers\tO\ncan\tO\tcan\tO\nsubscribe\tO\tsubscribe\tO\nto\tO\tto\tO\na\tO\ta\tO\nforum\tO\tforum\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\na\tO\ta\tO\nforum\tO\tforum\tO\nis\tO\tis\tO\nupdated\tO\tupdated\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nalerted\tO\talerted\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nlife\tO\tlife\tO\nof\tO\tof\tO\nme\tO\tme\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\nset\tO\tset\tO\nup\tO\tup\tO\nan\tO\tan\tO\nassociative\tO\tassociative\tO\ntable B-Data_Structure table O\nwith\tO\twith\tO\nuser_id B-Variable user_id O\nand\tO\tand\tO\nforum_id B-Variable forum_id O\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nsure\tO\tsure\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nsomeone\tO\tsomeone\tO\ncould\tO\tcould\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\npointers\tO\tpointers\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nstart\tO\tstart\tO\nthis\tO\tthis\tO\nor\tO\tor\tO\nplan\tO\tplan\tO\nit\tO\tit\tO\nout\tO\tout\tO\nor\tO\tor\tO\neven\tO\teven\tO\npoint\tO\tpoint\tO\nme\tO\tme\tO\nto\tO\tto\tO\nsome\tO\tsome\tO\nresources\tO\tresources\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreat\tO\tgreat\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20575698\tO\t20575698\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20575698/\tO\thttps://stackoverflow.com/questions/20575698/\tO\n\t\n\t\ncreate\tO\tcreate\tO\na\tO\ta\tO\njoin\tO\tjoin\tO\ntable B-Data_Structure table O\ncalled\tO\tcalled\tO\nuser_forum_subscriptions B-Variable user_forum_subscriptions O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2739 I-Code_Block A_2739 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nforum.users B-Variable forum.users B-Code_Block\nare\tO\tare\tO\nthe\tO\tthe\tO\nones\tO\tones\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nalert\tO\talert\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nforum B-Class forum O\nchanges\tO\tchanges\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n20575698\tO\t20575698\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/20575698/\tO\thttps://stackoverflow.com/questions/20575698/\tO\n\t\n\t\nI\tO\tI\tO\nsuppose\tO\tsuppose\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\ngenerating\tO\tgenerating\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nmodel\tO\tmodel\tO\ncalled\tO\tcalled\tO\nSubscription B-Class Subscription O\n.\tO\t.\tO\n\t\nLook\tO\tLook\tO\nat\tO\tat\tO\nsubscriptions\tO\tsubscriptions\tO\nas\tO\tas\tO\nresources\tO\tresources\tO\n.\tO\t.\tO\n\t\nUser B-Class User O\nshould\tO\tshould\tO\nhave_many\tO\thave_many\tO\nsubscriptions\tO\tsubscriptions\tO\nwhich\tO\twhich\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nadded/removed/edited\tO\tadded/removed/edited\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nprobably\tO\tprobably\tO\nstart\tO\tstart\tO\nwith\tO\twith\tO\nMichael B-User_Name Michael O\nHartl I-User_Name Hartl O\n's\tO\t's\tO\ntutorial\tO\ttutorial\tO\nChapter\tO\tChapter\tO\n11\tO\t11\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nhe\tO\the\tO\nshows\tO\tshows\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nestablish\tO\testablish\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nfollowing\tO\tfollowing\tO\n'\tO\t'\tO\nrelationship\tO\trelationship\tO\nfor\tO\tfor\tO\nhis\tO\this\tO\ntwitter-like B-Application twitter-like O\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nmany\tO\tmany\tO\nways\tO\tways\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\n,\tO\t,\tO\nread\tO\tread\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nRelationship\tO\tRelationship\tO\nmodel\tO\tmodel\tO\n,\tO\t,\tO\nhope\tO\thope\tO\nit\tO\tit\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37507843\tO\t37507843\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37507843/\tO\thttps://stackoverflow.com/questions/37507843/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nwhere\tO\twhere\tO\nclause\tO\tclause\tO\nfor\tO\tfor\tO\ncomparing\tO\tcomparing\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\npassed\tO\tpassed\tO\nfrom\tO\tfrom\tO\nroute\tO\troute\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nid B-Variable id O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nused\tO\tused\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4700 I-Code_Block Q_4700 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncompare\tO\tcompare\tO\nid B-Variable id O\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncolumn B-Data_Structure column O\nname\tO\tname\tO\nin\tO\tin\tO\ncontroller\tO\tcontroller\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\ngrade_id B-Variable grade_id O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\nFollowing\tO\tFollowing\tO\ncode\tO\tcode\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nused\tO\tused\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4701 I-Code_Block Q_4701 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nis\tO\tis\tO\nreturning\tO\treturning\tO\nempty\tO\tempty\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\npass\tO\tpass\tO\ndirect\tO\tdirect\tO\nvalue\tO\tvalue\tO\n1 B-Value 1 O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n$ B-Variable $ O\ndata I-Variable data O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nworks\tO\tworks\tO\nperfectly\tO\tperfectly\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nprovide\tO\tprovide\tO\nme\tO\tme\tO\nsolution\tO\tsolution\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37507843\tO\t37507843\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37507843/\tO\thttps://stackoverflow.com/questions/37507843/\tO\n\t\n\t\nuse\tO\tuse\tO\nwhereLoose() B-Function whereLoose() B-Code_Block\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nwhere() B-Function where() B-Code_Block\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nSource\tO\tSource\tO\n\t\nWhy\tO\tWhy\tO\nthis\tO\tthis\tO\nhappening\tO\thappening\tO\n?\tO\t?\tO\n\t\n$data B-Variable $data B-Code_Block\nhave\tO\thave\tO\na\tO\ta\tO\nString B-Data_Type String B-Code_Block\ntype\tO\ttype\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ncomparing\tO\tcomparing\tO\nString B-Data_Type String O\nwith\tO\twith\tO\nInt B-Data_Type Int B-Code_Block\ntype\tO\ttype\tO\neven\tO\teven\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\npass\tO\tpass\tO\nnumeric\tO\tnumeric\tO\nvalue\tO\tvalue\tO\n$data B-Variable $data B-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nString B-Data_Type String O\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5389 I-Code_Block A_5389 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28946305\tO\t28946305\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28946305/\tO\thttps://stackoverflow.com/questions/28946305/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nan\tO\tan\tO\nhtml B-Language html O\ndocument\tO\tdocument\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\nform\tO\tform\tO\nwhere\tO\twhere\tO\nselecting\tO\tselecting\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\nactivates\tO\tactivates\tO\na\tO\ta\tO\nprogram\tO\tprogram\tO\nthat\tO\tthat\tO\nruns\tO\truns\tO\na\tO\ta\tO\nrobotic B-Device robotic O\narm I-Device arm O\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nalso\tO\talso\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nbutton B-User_Interface_Element button O\nlink\tO\tlink\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nBased\tO\tBased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nresearch\tO\tresearch\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ndone\tO\tdone\tO\npreviously\tO\tpreviously\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nan\tO\tan\tO\nOnClick B-Function OnClick O\nevent\tO\tevent\tO\nwould\tO\twould\tO\ndo\tO\tdo\tO\nexactly\tO\texactly\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nnot\tO\tnot\tO\nquite\tO\tquite\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nreference\tO\treference\tO\nboth\tO\tboth\tO\nthe\tO\tthe\tO\nrobot\tO\trobot\tO\ncommand\tO\tcommand\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\npage B-User_Interface_Element page O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3429 I-Code_Block Q_3429 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\n..//../Karel/RIGHT1 B-Value ..//../Karel/RIGHT1 O\nis\tO\tis\tO\nthe\tO\tthe\tO\nrobot\tO\trobot\tO\nprogram\tO\tprogram\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nis\tO\tis\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nand\tO\tand\tO\nrightmanual.stm B-File_Name rightmanual.stm O\nis\tO\tis\tO\nthe\tO\tthe\tO\npage B-User_Interface_Element page O\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nalso\tO\talso\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nimage/button B-User_Interface_Element image/button O\nonegrey.jpg B-File_Name onegrey.jpg O\nis\tO\tis\tO\nselected\tO\tselected\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nas\tO\tas\tO\nspecific\tO\tspecific\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nthanks\tO\tthanks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nsent\tO\tsent\tO\nmy\tO\tmy\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28946305\tO\t28946305\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28946305/\tO\thttps://stackoverflow.com/questions/28946305/\tO\n\t\n\t\nSo\tO\tSo\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nredirect\tO\tredirect\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\npage B-User_Interface_Element page O\non\tO\ton\tO\nform\tO\tform\tO\nsubmit\tO\tsubmit\tO\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nid B-HTML_XML_Tag id O\ntag\tO\ttag\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\n,\tO\t,\tO\nwith\tO\twith\tO\na\tO\ta\tO\nname\tO\tname\tO\neg\tO\teg\tO\n.\tO\t.\tO\n\" B-Value \" O\nbtnRedirect I-Value btnRedirect O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4072 I-Code_Block A_4072 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\njQuery B-Library jQuery O\nfor\tO\tfor\tO\nan\tO\tan\tO\nonclick\tO\tonclick\tO\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nMore\tO\tMore\tO\non\tO\ton\tO\njQuery B-Library jQuery O\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4073 I-Code_Block A_4073 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\nadd\tO\tadd\tO\nan\tO\tan\tO\nonClick B-HTML_XML_Tag onClick O\nevent\tO\tevent\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nsubmit\tO\tsubmit\tO\nbutton B-User_Interface_Element button O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4074 I-Code_Block A_4074 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48295198\tO\t48295198\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48295198/\tO\thttps://stackoverflow.com/questions/48295198/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n(\tO\t(\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nhere\tO\there\tO\n:P\tO\t:P\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\na\tO\ta\tO\nTimerTask B-Class TimerTask O\nand/or\tO\tand/or\tO\na\tO\ta\tO\nHandler B-Class Handler O\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nevery\tO\tevery\tO\nsecond\tO\tsecond\tO\n,\tO\t,\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nscreen\tO\tscreen\tO\nis\tO\tis\tO\non\tO\ton\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\n(\tO\t(\tO\nstandby\tO\tstandby\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\n,\tO\t,\tO\nafter\tO\tafter\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\n(\tO\t(\tO\n2\tO\t2\tO\nto\tO\tto\tO\n10\tO\t10\tO\nhours\tO\thours\tO\n)\tO\t)\tO\nthis\tO\tthis\tO\nprocess\tO\tprocess\tO\nbecomes\tO\tbecomes\tO\nweird\tO\tweird\tO\ntimed\tO\ttimed\tO\n.\tO\t.\tO\n\t\nSometimes\tO\tSometimes\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\n10\tO\t10\tO\nseconds\tO\tseconds\tO\n,\tO\t,\tO\nsometimes\tO\tsometimes\tO\n4\tO\t4\tO\nhours\tO\thours\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\n've\tO\t've\tO\nread\tO\tread\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nPartial B-Variable Partial O\nWake I-Variable Wake O\nLock I-Variable Lock O\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nTried\tO\tTried\tO\nit\tO\tit\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nhas\tO\thas\tO\nnot\tO\tnot\tO\nsolved\tO\tsolved\tO\nmy\tO\tmy\tO\nissue\tO\tissue\tO\n(\tO\t(\tO\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nanother\tO\tanother\tO\nlibrary\tO\tlibrary\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nWakeLock B-Class WakeLock O\nwhich\tO\twhich\tO\ngets\tO\tgets\tO\nreleased\tO\treleased\tO\nafter\tO\tafter\tO\nsome\tO\tsome\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nmine\tO\tmine\tO\nnever\tO\tnever\tO\ngets\tO\tgets\tO\nreleased\tO\treleased\tO\nby\tO\tby\tO\nme\tO\tme\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nMaybe\tO\tMaybe\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntask/runnable\tO\ttask/runnable\tO\nruns\tO\truns\tO\non\tO\ton\tO\nan\tO\tan\tO\nasynctask B-Class asynctask O\n(\tO\t(\tO\nso\tO\tso\tO\non\tO\ton\tO\nit\tO\tit\tO\n's\tO\t's\tO\nown\tO\town\tO\nthread\tO\tthread\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nwakelock B-Class wakelock O\nis\tO\tis\tO\ncreated\tO\tcreated\tO\nfrom\tO\tfrom\tO\noutside\tO\toutside\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nMaybe\tO\tMaybe\tO\nit\tO\tit\tO\n's\tO\t's\tO\ngood\tO\tgood\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\nowner\tO\towner\tO\napp\tO\tapp\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nbattery\tO\tbattery\tO\ndrain\tO\tdrain\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\napp\tO\tapp\tO\nreally\tO\treally\tO\nhas\tO\thas\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nthis\tO\tthis\tO\nevery\tO\tevery\tO\nsecond\tO\tsecond\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\n,\tO\t,\tO\nany\tO\tany\tO\n,\tO\t,\tO\nno\tO\tno\tO\nmatter\tO\tmatter\tO\nwhich\tO\twhich\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n2\tO\t2\tO\n:\tO\t:\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nmy\tO\tmy\tO\ncurrent\tO\tcurrent\tO\nWakeLock B-Class WakeLock O\ncode\tO\tcode\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nstarted\tO\tstarted\tO\nwhen\tO\twhen\tO\nmy\tO\tmy\tO\ncustom\tO\tcustom\tO\napplication\tO\tapplication\tO\nreaches\tO\treaches\tO\nonCreate B-Function onCreate O\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nI\tO\tI\tO\nsaid\tO\tsaid\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnever\tO\tnever\tO\nreleased\tO\treleased\tO\n.\tO\t.\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6426 I-Code_Block Q_6426 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25082128\tO\t25082128\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25082128/\tO\thttps://stackoverflow.com/questions/25082128/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nan\tO\tan\tO\nasynchronous\tO\tasynchronous\tO\nunit\tO\tunit\tO\ntest\tO\ttest\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2840 I-Code_Block Q_2840 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nconsole B-Application console O\nthe\tO\tthe\tO\nline\tO\tline\tO\nconsole.log(e) B-Code_Block console.log(e) B-Code_Block\nexecuted\tO\texecuted\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nresult\tO\tresult\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2841 I-Code_Block Q_2841 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nam\tO\tam\tO\nI\tO\tI\tO\nmissing\tO\tmissing\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25082128\tO\t25082128\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25082128/\tO\thttps://stackoverflow.com/questions/25082128/\tO\n\t\n\t\nJust\tO\tJust\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\ndone() B-Function done() B-Code_Block\ncall\tO\tcall\tO\ndown\tO\tdown\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nassert B-Code_Block assert O\nstatement\tO\tstatement\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3438 I-Code_Block A_3438 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47180826\tO\t47180826\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47180826/\tO\thttps://stackoverflow.com/questions/47180826/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\noperating\tO\toperating\tO\nsystem\tO\tsystem\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nkernel B-Application kernel O\nsystem\tO\tsystem\tO\ncalls\tO\tcalls\tO\ninto\tO\tinto\tO\nextern B-Function extern B-Code_Block\nfunctions\tO\tfunctions\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6258 I-Code_Block Q_6258 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nkernel.s B-File_Name kernel.s B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6259 I-Code_Block Q_6259 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n31243125\tO\t31243125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31243125/\tO\thttps://stackoverflow.com/questions/31243125/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nSignalR B-Library SignalR O\nSelf B-Application Self O\nHosted I-Application Hosted O\nService I-Application Service O\n(\tO\t(\tO\nV\tO\tV\tO\n2.2.0 B-Version 2.2.0 O\n)\tO\t)\tO\nas\tO\tas\tO\nserver B-Application server O\nand\tO\tand\tO\nusing\tO\tusing\tO\nSilverlight B-Library Silverlight O\nas\tO\tas\tO\nSignalR B-Library SignalR O\nClient B-Application Client O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver B-Application server O\nand\tO\tand\tO\nable\tO\table\tO\nto\tO\tto\tO\nexchange\tO\texchange\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\nto\tO\tto\tO\nstop\tO\tstop\tO\nconnection\tO\tconnection\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nSignalR B-Library SignalR O\nservice\tO\tservice\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nis\tO\tis\tO\n,\tO\t,\tO\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\nthis\tO\tthis\tO\nbutton B-User_Interface_Element button O\n,\tO\t,\tO\nConnection\tO\tConnection\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nClient B-Application Client O\nshould\tO\tshould\tO\nget\tO\tget\tO\ndisconnected\tO\tdisconnected\tO\nfrom\tO\tfrom\tO\nSignalR B-Library SignalR O\nHub\tO\tHub\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nget\tO\tget\tO\ndisconnected\tO\tdisconnected\tO\nfrom\tO\tfrom\tO\nSignalR B-Library SignalR O\nHub\tO\tHub\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ntakes\tO\ttakes\tO\nso\tO\tso\tO\nmuch\tO\tmuch\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nrespond\tO\trespond\tO\nand\tO\tand\tO\nmy\tO\tmy\tO\nClient B-Application Client O\n(\tO\t(\tO\nSilverlight B-Library Silverlight O\nWeb\tO\tWeb\tO\nApplication\tO\tApplication\tO\n)\tO\t)\tO\ngets\tO\tgets\tO\ninto\tO\tinto\tO\nunresponsive\tO\tunresponsive\tO\nstate\tO\tstate\tO\nand\tO\tand\tO\ncomes\tO\tcomes\tO\nback\tO\tback\tO\nafter\tO\tafter\tO\naround\tO\taround\tO\n28-30\tO\t28-30\tO\nsecs\tO\tsecs\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndisconnect\tO\tdisconnect\tO\nclient B-Application client O\nimmediately\tO\timmediately\tO\nonce\tO\tonce\tO\nthe\tO\tthe\tO\nbutton B-User_Interface_Element button O\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31243125\tO\t31243125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31243125/\tO\thttps://stackoverflow.com/questions/31243125/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\na\tO\ta\tO\ndeadlock\tO\tdeadlock\tO\n.\tO\t.\tO\n\t\nSignalR B-Library SignalR O\nclient B-Application client O\nblocks\tO\tblocks\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nwhen\tO\twhen\tO\nsending\tO\tsending\tO\nthe\tO\tthe\tO\nAbort\tO\tAbort\tO\nrequest\tO\trequest\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nSilverlight B-Library Silverlight O\nwants\tO\twants\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nrequest\tO\trequest\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nthread\tO\tthread\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndefault\tO\tdefault\tO\ntimeout\tO\ttimeout\tO\nfor\tO\tfor\tO\nstopping\tO\tstopping\tO\nthe\tO\tthe\tO\nconnection\tO\tconnection\tO\nis\tO\tis\tO\n30\tO\t30\tO\nseconds\tO\tseconds\tO\nso\tO\tso\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\ntimeout\tO\ttimeout\tO\nthe\tO\tthe\tO\nthread\tO\tthread\tO\nis\tO\tis\tO\nunblocked\tO\tunblocked\tO\nand\tO\tand\tO\nexecution\tO\texecution\tO\ncontinues\tO\tcontinues\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nworked\tO\tworked\tO\naround\tO\taround\tO\nby\tO\tby\tO\ninvoking\tO\tinvoking\tO\nstop\tO\tstop\tO\nasynchronously\tO\tasynchronously\tO\n(\tO\t(\tO\nawait B-Code_Block await B-Code_Block\nTask.Factory.StartNew I-Code_Block Task.Factory.StartNew I-Code_Block\n(() I-Code_Block (() I-Code_Block\n=> I-Code_Block => I-Code_Block\nhubConnection.Stop());) I-Code_Block hubConnection.Stop());) I-Code_Block\nor\tO\tor\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\ntimeout\tO\ttimeout\tO\nsmaller\tO\tsmaller\tO\n.\tO\t.\tO\n\t\nTL\tO\tTL\tO\n;D\tO\t;D\tO\nR\tO\tR\tO\n;\tO\t;\tO\n\t\nhttps://github.com/SignalR/SignalR/issues/3102\tO\thttps://github.com/SignalR/SignalR/issues/3102\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n31243125\tO\t31243125\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/31243125/\tO\thttps://stackoverflow.com/questions/31243125/\tO\n\t\n\t\nI\tO\tI\tO\nresolved\tO\tresolved\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nby\tO\tby\tO\ncalling\tO\tcalling\tO\nhub\tO\thub\tO\ndisconnect\tO\tdisconnect\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nSilverlight B-Library Silverlight O\nThreading\tO\tThreading\tO\ntask\tO\ttask\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nnow\tO\tnow\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\nacknowledgement\tO\tacknowledgement\tO\nof\tO\tof\tO\nhub\tO\thub\tO\ndisconnect\tO\tdisconnect\tO\nfrom\tO\tfrom\tO\nSignalR B-Library SignalR O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45343442\tO\t45343442\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45343442/\tO\thttps://stackoverflow.com/questions/45343442/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nscroll\tO\tscroll\tO\ninside\tO\tinside\tO\nof\tO\tof\tO\na\tO\ta\tO\ndiv B-HTML_XML_Tag div O\non\tO\ton\tO\na\tO\ta\tO\nwebpage\tO\twebpage\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nseeing\tO\tseeing\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThis\tO\tThis\tO\nonly\tO\tonly\tO\noccurs\tO\toccurs\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nPhantomJS B-Application PhantomJS O\nheadless\tO\theadless\tO\nbrowser B-Application browser O\nwith\tO\twith\tO\nSelenium B-Application Selenium O\nWebdriver I-Application Webdriver O\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nSafari B-Application Safari O\nas\tO\tas\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\nwith\tO\twith\tO\nSelenium B-Application Selenium O\nWebdriver I-Application Webdriver O\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\ndiv B-HTML_XML_Tag div O\nscrolls\tO\tscrolls\tO\nfine\tO\tfine\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\nPhantomJS B-Application PhantomJS O\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5924 I-Code_Block Q_5924 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nline\tO\tline\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5925 I-Code_Block Q_5925 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nworks\tO\tworks\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5926 I-Code_Block Q_5926 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\ncausing\tO\tcausing\tO\nthe\tO\tthe\tO\nissue\tO\tissue\tO\nbecause\tO\tbecause\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nis\tO\tis\tO\ncommented\tO\tcommented\tO\nout\tO\tout\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nscroll\tO\tscroll\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nin\tO\tin\tO\norder\tO\torder\tO\nto\tO\tto\tO\nget\tO\tget\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndynamically\tO\tdynamically\tO\nloaded\tO\tloaded\tO\ndivs B-HTML_XML_Tag divs O\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nis\tO\tis\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3445748\tO\t3445748\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3445748/\tO\thttps://stackoverflow.com/questions/3445748/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ndropUp\tO\tdropUp\tO\nmenu B-User_Interface_Element menu O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_240 I-Code_Block Q_240 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nafter\tO\tafter\tO\nclicking\tO\tclicking\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmenu_tab B-User_Interface_Element menu_tab O\n,\tO\t,\tO\nthe\tO\tthe\tO\nmenu B-User_Interface_Element menu O\ndrops\tO\tdrops\tO\nup\tO\tup\tO\nand\tO\tand\tO\nstays\tO\tstays\tO\nup\tO\tup\tO\nuntil\tO\tuntil\tO\nclicked\tO\tclicked\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\na\tO\ta\tO\ntimeout\tO\ttimeout\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nafter\tO\tafter\tO\nsay\tO\tsay\tO\n2\tO\t2\tO\nseconds\tO\tseconds\tO\nthe\tO\tthe\tO\nmenu B-User_Interface_Element menu O\ndrops\tO\tdrops\tO\ndown\tO\tdown\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nobviously\tO\tobviously\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\ncoding\tO\tcoding\tO\nwrong\tO\twrong\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\ntimeout\tO\ttimeout\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n!\tO\t!\tO\n\t\nTIA B-User_Name TIA O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3445748\tO\t3445748\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3445748/\tO\thttps://stackoverflow.com/questions/3445748/\tO\n\t\n\t\nYour\tO\tYour\tO\nuse\tO\tuse\tO\nof\tO\tof\tO\nclearTimeout() B-Function clearTimeout() O\nhere\tO\there\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\npass\tO\tpass\tO\nit\tO\tit\tO\na\tO\ta\tO\nreference\tO\treference\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nID B-Variable ID O\nreturned\tO\treturned\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ncreated\tO\tcreated\tO\nthat\tO\tthat\tO\ntimer\tO\ttimer\tO\nwith\tO\twith\tO\nsetTimeout() B-Function setTimeout() O\n.\tO\t.\tO\n\t\nCa\tO\tCa\tO\nn't\tO\tn't\tO\nsay\tO\tsay\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\ncausing\tO\tcausing\tO\nyour\tO\tyour\tO\nproblem\tO\tproblem\tO\nthough\tO\tthough\tO\n(\tO\t(\tO\nit\tO\tit\tO\nprobably\tO\tprobably\tO\nisn't\tO\tisn't\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nanything\tO\tanything\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nJavascript B-Language Javascript O\nerror B-Application error O\nconsole I-Application console O\nthat\tO\tthat\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3445748\tO\t3445748\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3445748/\tO\thttps://stackoverflow.com/questions/3445748/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nTry\tO\tTry\tO\nit\tO\tit\tO\nout\tO\tout\tO\n:\tO\t:\tO\nhttp://jsfiddle.net/YFPey/\tO\thttp://jsfiddle.net/YFPey/\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_368 I-Code_Block A_368 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42907093\tO\t42907093\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42907093/\tO\thttps://stackoverflow.com/questions/42907093/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nform B-User_Interface_Element form O\nlabels\tO\tlabels\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nSolidus B-Application Solidus O\necommerce\tO\tecommerce\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nparticular\tO\tparticular\tO\nuse\tO\tuse\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\nhandling\tO\thandling\tO\nUK\tO\tUK\tO\naddresses\tO\taddresses\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\n\" B-Value \" O\nZip I-Value Zip O\nCode I-Value Code O\n\" I-Value \" O\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nchanged\tO\tchanged\tO\nto\tO\tto\tO\n\" B-Value \" O\nPost I-Value Post O\nCode I-Value Code O\n\" I-Value \" O\n-\tO\t-\tO\nbut\tO\tbut\tO\nthere\tO\tthere\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nother\tO\tother\tO\nlocalization\tO\tlocalization\tO\nchanges\tO\tchanges\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42907093\tO\t42907093\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42907093/\tO\thttps://stackoverflow.com/questions/42907093/\tO\n\t\n\t\nSolidus B-Application Solidus O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nwas\tO\twas\tO\nforked\tO\tforked\tO\nfrom\tO\tfrom\tO\nSpree B-Application Spree O\n,\tO\t,\tO\nprovides\tO\tprovides\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nways\tO\tways\tO\nto\tO\tto\tO\ncustomize\tO\tcustomize\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntranslate\tO\ttranslate\tO\na\tO\ta\tO\nstring B-Data_Type string O\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nlocale\tO\tlocale\tO\n.\tO\t.\tO\n\t\nSolidus B-Application Solidus O\nprovides\tO\tprovides\tO\na\tO\ta\tO\ninternationalization\tO\tinternationalization\tO\ngem B-Code_Block gem O\nsolidus_i18n I-Code_Block solidus_i18n O\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nInstallation\tO\tInstallation\tO\nInstructions\tO\tInstructions\tO\nare\tO\tare\tO\ncurrently\tO\tcurrently\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\ncheck\tO\tcheck\tO\nwith\tO\twith\tO\ngem B-Code_Block gem O\nreadme I-Code_Block readme O\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6194 I-Code_Block A_6194 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nlocale\tO\tlocale\tO\nwithin\tO\twithin\tO\nconfig/initializers/spree.rb B-File_Name config/initializers/spree.rb B-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6195 I-Code_Block A_6195 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFurther\tO\tFurther\tO\nReading\tO\tReading\tO\n\t\nSpree B-Application Spree O\nDocumentation\tO\tDocumentation\tO\non\tO\ton\tO\nInternationalization\tO\tInternationalization\tO\n-\tO\t-\tO\nvery\tO\tvery\tO\nsimilar\tO\tsimilar\tO\ndocumenation\tO\tdocumenation\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46868825\tO\t46868825\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46868825/\tO\thttps://stackoverflow.com/questions/46868825/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ncall\tO\tcall\tO\nthat\tO\tthat\tO\ngoes\tO\tgoes\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ndialogueService B-Class dialogueService O\nand\tO\tand\tO\nreturns\tO\treturns\tO\nan\tO\tan\tO\nobservable\tO\tobservable\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nfired\tO\tfired\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\nproperty\tO\tproperty\tO\non\tO\ton\tO\nmy\tO\tmy\tO\ncomponent\tO\tcomponent\tO\nis\tO\tis\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngreatly\tO\tgreatly\tO\nappreciated\tO\tappreciated\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\neverything\tO\teverything\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nget\tO\tget\tO\nit\tO\tit\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nat\tO\tat\tO\nall\tO\tall\tO\n.\tO\t.\tO\n\t\nDialogue.component.ts B-File_Name Dialogue.component.ts O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6184 I-Code_Block Q_6184 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDialogue.component.spec.ts B-File_Name Dialogue.component.spec.ts O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6185 I-Code_Block Q_6185 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n} B-Code_Block } O\n) I-Code_Block ) O\n; B-Code_Block ; O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47838488\tO\t47838488\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47838488/\tO\thttps://stackoverflow.com/questions/47838488/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nsomeone\tO\tsomeone\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ninput\tO\tinput\tO\ntext\tO\ttext\tO\nin\tO\tin\tO\na\tO\ta\tO\ntextbox B-User_Interface_Element textbox B-Code_Block\nand\tO\tand\tO\nwhen\tO\twhen\tO\nthey\tO\tthey\tO\nhit\tO\thit\tO\nsubmit\tO\tsubmit\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\nwhat\tO\twhat\tO\nthey\tO\tthey\tO\nentered\tO\tentered\tO\nunderneath\tO\tunderneath\tO\nit\tO\tit\tO\nand\tO\tand\tO\nalso\tO\talso\tO\ndisplays\tO\tdisplays\tO\nit\tO\tit\tO\non\tO\ton\tO\na\tO\ta\tO\nsecond\tO\tsecond\tO\nphp B-Language php B-Code_Block\npage B-User_Interface_Element page O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6355 I-Code_Block Q_6355 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\npage B-User_Interface_Element page O\nwhere\tO\twhere\tO\nthey\tO\tthey\tO\nenter\tO\tenter\tO\ntheir\tO\ttheir\tO\nmessage\tO\tmessage\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\npage B-User_Interface_Element page O\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6356 I-Code_Block Q_6356 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nanybody\tO\tanybody\tO\nknows\tO\tknows\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nand/or\tO\tand/or\tO\nimprove\tO\timprove\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nawesome\tO\tawesome\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9160741\tO\t9160741\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9160741/\tO\thttps://stackoverflow.com/questions/9160741/\tO\n\t\n\t\nFor\tO\tFor\tO\nlearning\tO\tlearning\tO\njQuery B-Library jQuery O\nUI I-Library UI O\ndialog B-Class dialog O\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\ndefined\tO\tdefined\tO\nbelow\tO\tbelow\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nfollowing\tO\tfollowing\tO\nthree\tO\tthree\tO\ntasks\tO\ttasks\tO\n\t\n1)\tO\t1)\tO\nUse\tO\tUse\tO\nmy\tO\tmy\tO\nimage B-User_Interface_Element image O\nas\tO\tas\tO\n\"\tO\t\"\tO\nOK\tO\tOK\tO\n\"\tO\t\"\tO\nbutton B-User_Interface_Element button O\nand\tO\tand\tO\n\"\tO\t\"\tO\nCancel\tO\tCancel\tO\n\"\tO\t\"\tO\nbutton B-User_Interface_Element button O\n\t\n2)\tO\t2)\tO\nUse\tO\tUse\tO\nmy\tO\tmy\tO\ncustom\tO\tcustom\tO\nimage B-User_Interface_Element image O\nas\tO\tas\tO\nthe\tO\tthe\tO\nclose\tO\tclose\tO\nbutton B-User_Interface_Element button O\non\tO\ton\tO\nright\tO\tright\tO\ntop\tO\ttop\tO\nend\tO\tend\tO\nof\tO\tof\tO\ndialog B-User_Interface_Element dialog O\n\t\n3)\tO\t3)\tO\nBackground\tO\tBackground\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\ndialog B-User_Interface_Element dialog O\nshould\tO\tshould\tO\nbe\tO\tbe\tO\n\"\tO\t\"\tO\ngray\tO\tgray\tO\n\"\tO\t\"\tO\n(\tO\t(\tO\nincluding\tO\tincluding\tO\ntitle\tO\ttitle\tO\n,\tO\t,\tO\nand\tO\tand\tO\nplace\tO\tplace\tO\nfor\tO\tfor\tO\nOK\tO\tOK\tO\nbutton B-User_Interface_Element button O\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nThe\tO\tThe\tO\nimportant\tO\timportant\tO\npoint\tO\tpoint\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\napplied\tO\tapplied\tO\nonly\tO\tonly\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ndialog B-User_Interface_Element dialog O\n.\tO\t.\tO\n\t\nAll\tO\tAll\tO\nother\tO\tother\tO\nwidgets B-User_Interface_Element widgets O\nshould\tO\tshould\tO\nhave\tO\thave\tO\ndefault\tO\tdefault\tO\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ncontent\tO\tcontent\tO\narea\tO\tarea\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nachieve\tO\tachieve\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\n#myDiv B-Code_Block #myDiv O\n.ui-widget-content I-Code_Block .ui-widget-content O\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\nsuggest\tO\tsuggest\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nPlease\tO\tPlease\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\npractices\tO\tpractices\tO\n,\tO\t,\tO\nif\tO\tif\tO\npossible\tO\tpossible\tO\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nE.g\tO\tE.g\tO\n.\tO\t.\tO\n1\tO\t1\tO\n.\tO\t.\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n$myDialog B-Variable $myDialog O\n2\tO\t2\tO\n.\tO\t.\tO\nuse\tO\tuse\tO\nautoOpen B-Variable autoOpen O\n:\tO\t:\tO\nfalse\tO\tfalse\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_773 I-Code_Block Q_773 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_774 I-Code_Block Q_774 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlso\tO\tAlso\tB-Code_Block\n,\tO\t,\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\na\tO\ta\tO\ncss B-Language css O\nclass\tO\tclass\tO\nto\tO\tto\tO\noverride\tO\toverride\tO\nthe\tO\tthe\tO\nwidget B-User_Interface_Element widget O\nfunctionality\tO\tfunctionality\tO\nonly\tO\tonly\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\ndialog B-User_Interface_Element dialog O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_775 I-Code_Block Q_775 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9160741\tO\t9160741\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9160741/\tO\thttps://stackoverflow.com/questions/9160741/\tO\n\t\n\t\nFor\tO\tFor\tO\nthis\tO\tthis\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nover-ride\tO\tover-ride\tO\ndefault\tO\tdefault\tO\ncss B-Language css O\nprovided\tO\tprovided\tO\nby\tO\tby\tO\njQuery B-Library jQuery O\nUI I-Library UI O\n(\tO\t(\tO\njquery.ui.theme.css B-File_Name jquery.ui.theme.css O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nImage B-User_Interface_Element Image O\nfor\tO\tfor\tO\nOk\tO\tOk\tO\nbutton B-User_Interface_Element button O\n:\tO\t:\tO\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\n.ui-state-default B-HTML_XML_Tag .ui-state-default B-Code_Block\n,\tO\t,\tI-Code_Block\n.ui-widget-content B-HTML_XML_Tag .ui-widget-content I-Code_Block\n.ui-state-default I-HTML_XML_Tag .ui-state-default I-Code_Block\n,\tO\t,\tI-Code_Block\n.ui-widget-header B-HTML_XML_Tag .ui-widget-header I-Code_Block\n.ui-state-default I-HTML_XML_Tag .ui-state-default I-Code_Block\nbackground\tO\tbackground\tO\nimage B-User_Interface_Element image O\n.\tO\t.\tO\n\t\nClose\tO\tClose\tO\nButton B-User_Interface_Element Button O\n:\tO\t:\tO\nChange\tO\tChange\tO\n.ui-widget-header B-HTML_XML_Tag .ui-widget-header B-Code_Block\n.ui-icon I-HTML_XML_Tag .ui-icon I-Code_Block\n\t\nBackground\tO\tBackground\tO\nof\tO\tof\tO\nDialogue B-User_Interface_Element Dialogue O\n:\tO\t:\tO\nChange\tO\tChange\tO\n.ui-widget-content B-HTML_XML_Tag .ui-widget-content B-Code_Block\nbackground\tO\tbackground\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9160741\tO\t9160741\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9160741/\tO\thttps://stackoverflow.com/questions/9160741/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nupvoted\tO\tupvoted\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nanswer\tO\tanswer\tO\n.\tO\t.\tO\n\t\nStill\tO\tStill\tO\ndialogClass B-Variable dialogClass O\n:\tO\t:\tO\n' B-Variable ' O\nmyDialogCSS I-Variable myDialogCSS O\n' B-Variable ' O\nwas\tO\twas\tO\nthe\tO\tthe\tO\nkey\tO\tkey\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\n.\tO\t.\tO\n\t\nHTML B-Language HTML O\nand\tO\tand\tO\njQuery B-Library jQuery O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1151 I-Code_Block A_1151 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMyStyleSheet.css B-File_Name MyStyleSheet.css O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1152 I-Code_Block A_1152 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n12527077\tO\t12527077\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12527077/\tO\thttps://stackoverflow.com/questions/12527077/\tO\n\t\n\t\nFirst\tO\tFirst\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\ntime\tO\ttime\tO\nusing\tO\tusing\tO\nGSON B-Library GSON O\n.\tO\t.\tO\n\t\nTrying\tO\tTrying\tO\nto\tO\tto\tO\nparse\tO\tparse\tO\nsome\tO\tsome\tO\nJSON B-File_Type JSON O\n,\tO\t,\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\n\" B-Output_Block \" O\nincompatible I-Output_Block incompatible O\ntypes I-Output_Block types O\n\" I-Output_Block \" O\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1193 I-Code_Block Q_1193 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPlayerData B-Class PlayerData B-Code_Block\nis\tO\tis\tO\nan\tO\tan\tO\ninner\tO\tinner\tO\nclass\tO\tclass\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1194 I-Code_Block Q_1194 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\ncauses\tO\tcauses\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nGSON B-Library GSON O\ndocs\tO\tdocs\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nclearly\tO\tclearly\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1195 I-Code_Block Q_1195 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nat\tO\tat\tO\n(\tO\t(\tO\nAFAIK\tO\tAFAIK\tO\n)\tO\t)\tO\njust\tO\tjust\tO\nlike\tO\tlike\tO\nGoogle B-Website Google O\nin\tO\tin\tO\nit\tO\tit\tO\n's\tO\t's\tO\nGSON B-Library GSON O\nUser\tO\tUser\tO\nGuide\tO\tGuide\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nXCode B-Application XCode O\nwas\tO\twas\tO\ndoing\tO\tdoing\tO\nsomething\tO\tsomething\tO\nstrange\tO\tstrange\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\nTerminal B-Application Terminal B-Code_Block\neverything\tO\teverything\tO\nworked\tO\tworked\tO\n,\tO\t,\tO\nexcept\tO\texcept\tO\nfor\tO\tfor\tO\nmy\tO\tmy\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nserver B-Application server O\n,\tO\t,\tO\nwhat\tO\twhat\tO\nresulted\tO\tresulted\tO\nin\tO\tin\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nNPE B-Error_Name NPE O\n's\tO\t's\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nresponse B-Variable response B-Code_Block\nremained\tO\tremained\tO\nempty B-Value empty O\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nto\tO\tto\tO\nmaaartinus B-User_Name maaartinus O\nI\tO\tI\tO\nlearned\tO\tlearned\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nshould\tO\tshould\tO\nn't\tO\tn't\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\ncompiler B-Application compiler O\nerror\tO\terror\tO\nso\tO\tso\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ncompile\tO\tcompile\tO\nit\tO\tit\tO\nwithout\tO\twithout\tO\nXCode B-Application XCode O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12527077\tO\t12527077\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12527077/\tO\thttps://stackoverflow.com/questions/12527077/\tO\n\t\n\t\nFor\tO\tFor\tO\nme\tO\tme\tO\nit\tO\tit\tO\ncompiles\tO\tcompiles\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nreplace\tO\treplace\tO\nGSON\tO\tGSON\tB-Code_Block\nby\tO\tby\tO\nGson B-Library Gson B-Code_Block\n.\tO\t.\tO\n\t\nEither\tO\tEither\tO\nyou\tO\tyou\tO\nwere\tO\twere\tO\nsloppy\tO\tsloppy\tO\nwhen\tO\twhen\tO\nwriting\tO\twriting\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nor\tO\tor\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nsome\tO\tsome\tO\n\"\tO\t\"\tO\nGSON B-Library GSON O\n\"\tO\t\"\tO\nI\tO\tI\tO\n've\tO\t've\tO\nnever\tO\tnever\tO\nheard\tO\theard\tO\nabout\tO\tabout\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nyour\tO\tyour\tO\nresponse B-Variable response B-Code_Block\na\tO\ta\tO\nString B-Data_Type String B-Code_Block\n??\tO\t??\tO\n?\tO\t?\tO\n\t\nOnce\tO\tOnce\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\nit\tO\tit\tO\nrunning\tO\trunning\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nthe\tO\tthe\tO\nanswer\tO\tanswer\tO\nby\tO\tby\tO\nVrushank B-User_Name Vrushank O\nDesai I-User_Name Desai O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n12527077\tO\t12527077\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/12527077/\tO\thttps://stackoverflow.com/questions/12527077/\tO\n\t\n\t\nTry\tO\tTry\tO\nmaking\tO\tmaking\tO\nyour\tO\tyour\tO\ninner\tO\tinner\tO\nclass\tO\tclass\tO\nstatic B-Data_Type static B-Code_Block\nor\tO\tor\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nInstanceCreator B-Class InstanceCreator B-Code_Block\nfor\tO\tfor\tO\nit\tO\tit\tO\nas\tO\tas\tO\nstated\tO\tstated\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nGson B-Library Gson O\nUser\tO\tUser\tO\nGuide\tO\tGuide\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16840884\tO\t16840884\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16840884/\tO\thttps://stackoverflow.com/questions/16840884/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncolumn B-Data_Structure column O\nof\tO\tof\tO\ncharacters B-Data_Type characters O\nin\tO\tin\tO\na\tO\ta\tO\ndata.frame B-Data_Structure data.frame O\nwhich\tO\twhich\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nrecognized\tO\trecognized\tO\nas\tO\tas\tO\ndates\tO\tdates\tO\n:\tO\t:\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1695 I-Code_Block Q_1695 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nthis\tO\tthis\tO\nreturns\tO\treturns\tO\n:\tO\t:\tO\n\t\n\" B-Value \" O\n--------- I-Value --------- O\n- I-Value - O\n\" I-Value \" O\n\" I-Value \" O\n--------- I-Value --------- O\n- I-Value - O\n\" I-Value \" O\n\" I-Value \" O\n--------- I-Value --------- O\n- I-Value - O\n\" I-Value \" O\n\" I-Value \" O\n--------- I-Value --------- O\n- I-Value - O\n\" I-Value \" O\n\t\nwhile\tO\twhile\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n\t\n\" B-Value \" O\n2013-05-30 I-Value 2013-05-30 O\n\" I-Value \" O\n,\tO\t,\tO\n\" B-Value \" O\n2013-05-29 I-Value 2013-05-29 O\n\" I-Value \" O\n,\tO\t,\tO\n\" B-Value \" O\n2013-05-28 I-Value 2013-05-28 O\n\" I-Value \" O\n,\tO\t,\tO\n\" B-Value \" O\n2013-05-27 I-Value 2013-05-27 O\n\" I-Value \" O\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\ngrateful\tO\tgrateful\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16840884\tO\t16840884\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16840884/\tO\thttps://stackoverflow.com/questions/16840884/\tO\n\t\n\t\nWould\tO\tWould\tO\nn't\tO\tn't\tO\nit\tO\tit\tO\nbe\tO\tbe\tO\neasier\tO\teasier\tO\nto\tO\tto\tO\nsimply\tO\tsimply\tO\ncoerce\tO\tcoerce\tO\nthem\tO\tthem\tO\nto\tO\tto\tO\ndates\tO\tdates\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2192 I-Code_Block A_2192 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nyour\tO\tyour\tO\ngsub B-Function gsub B-Code_Block\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\n. B-Value . B-Code_Block\nhas\tO\thas\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nmeaning\tO\tmeaning\tO\nin\tO\tin\tO\nregex\tO\tregex\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nhave\tO\thave\tO\nit\tO\tit\tO\ninterpreted\tO\tinterpreted\tO\nliterally\tO\tliterally\tO\nby\tO\tby\tO\nspecifying\tO\tspecifying\tO\nfixed B-Code_Block fixed B-Code_Block\n= I-Code_Block = I-Code_Block\nTRUE I-Code_Block TRUE I-Code_Block\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16840884\tO\t16840884\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16840884/\tO\thttps://stackoverflow.com/questions/16840884/\tO\n\t\n\t\nin\tO\tin\tO\nyour\tO\tyour\tO\ngsub B-Function gsub O\ncall\tO\tcall\tO\n,\tO\t,\tO\n\" B-Value \" O\n. I-Value . O\n\" I-Value \" O\nis\tO\tis\tO\nyour\tO\tyour\tO\npattern\tO\tpattern\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\n\" B-Value \" O\n. I-Value . O\n\" I-Value \" O\nsymbol\tO\tsymbol\tO\nin\tO\tin\tO\na\tO\ta\tO\npattern\tO\tpattern\tO\nmeans\tO\tmeans\tO\n\"\tO\t\"\tO\nany\tO\tany\tO\ncharacter\tO\tcharacter\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ntalling\tO\ttalling\tO\ngsub B-Function gsub O\nto\tO\tto\tO\nreplace\tO\treplace\tO\nevery\tO\tevery\tO\ncharacter\tO\tcharacter\tO\nwith\tO\twith\tO\na\tO\ta\tO\ndash B-Value dash O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncorrect\tO\tcorrect\tO\ngsub B-Function gsub B-Code_Block\ncall\tO\tcall\tO\nrequires\tO\trequires\tO\nescaping\tO\tescaping\tO\nthe\tO\tthe\tO\nperiod B-Value period O\nso\tO\tso\tO\nR B-Language R O\nknows\tO\tknows\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nliteral\tO\tliteral\tO\nperiod B-Value period O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2193 I-Code_Block A_2193 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nsyntax\tO\tsyntax\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\ngsub B-Function gsub O\nreplace\tO\treplace\tO\nall\tO\tall\tO\nperiods B-Value periods O\nwith\tO\twith\tO\ndashes B-Value dashes O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nreally\tO\treally\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\ndates\tO\tdates\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nas.Date B-Function as.Date B-Code_Block\nlike\tO\tlike\tO\nso\tO\tso\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2194 I-Code_Block A_2194 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYour\tO\tYour\tO\nintended\tO\tintended\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nonly\tO\tonly\tO\nhave\tO\thave\tO\nconverted\tO\tconverted\tO\nyour\tO\tyour\tO\nstrings B-Data_Type strings O\nto\tO\tto\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nstring B-Data_Type string O\nformat\tO\tformat\tO\n.\tO\t.\tO\n\t\nUsing\tO\tUsing\tO\nas.Date B-Function as.Date O\ntells\tO\ttells\tO\nR B-Language R O\nto\tO\tto\tO\ntreat\tO\ttreat\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nas\tO\tas\tO\ndates\tO\tdates\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nstrings B-Data_Type strings O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2195 I-Code_Block A_2195 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwill\tO\twill\tO\nproduce\tO\tproduce\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n(\tO\t(\tO\nbecause\tO\tbecause\tO\nR B-Language R O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nask\tO\task\tO\nit\tO\tit\tO\nto\tO\tto\tO\nplot\tO\tplot\tO\nnothing\tO\tnothing\tO\nbut\tO\tbut\tO\nstrings B-Data_Type strings O\n)\tO\t)\tO\n,\tO\t,\tO\nwhereas\tO\twhereas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2196 I-Code_Block A_2196 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nProduces\tO\tProduces\tO\na\tO\ta\tO\nplot\tO\tplot\tO\nof\tO\tof\tO\nindex\tO\tindex\tO\nvs\tO\tvs\tO\n.\tO\t.\tO\nday\tO\tday\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nweek\tO\tweek\tO\n(\tO\t(\tO\nsince\tO\tsince\tO\nR B-Language R O\nrecognizes\tO\trecognizes\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ntimeseries\tO\ttimeseries\tO\ndata\tO\tdata\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n11683838\tO\t11683838\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11683838/\tO\thttps://stackoverflow.com/questions/11683838/\tO\n\t\n\t\nHello\tO\tHello\tO\nthe\tO\tthe\tO\nGWT+Hibernate+Gilead B-Application GWT+Hibernate+Gilead O\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\ni\tO\ti\tO\nhave\tO\thave\tO\ndownloaded\tO\tdownloaded\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\ncode\tO\tcode\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\n\t\nhttps://developers.google.com/web-toolkit/articles/using_gwt_with_hibernate\tO\thttps://developers.google.com/web-toolkit/articles/using_gwt_with_hibernate\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1090 I-Code_Block Q_1090 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\njar B-File_Type jar O\nfile\tO\tfile\tO\ni\tO\ti\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nPlease\tO\tPlease\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\ninform\tO\tinform\tO\nme\tO\tme\tO\nwhere\tO\twhere\tO\ni\tO\ti\tO\nam\tO\tam\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n11683838\tO\t11683838\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/11683838/\tO\thttps://stackoverflow.com/questions/11683838/\tO\n\t\n\t\nWell\tO\tWell\tO\n,\tO\t,\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\nnewer\tO\tnewer\tO\n\"\tO\t\"\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nGWT B-Application GWT O\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nnewer\tO\tnewer\tO\nthan\tO\tthan\tO\n1.7 B-Version 1.7 O\nI\tO\tI\tO\nthink\tO\tthink\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nrecent\tO\trecent\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nGilead B-Application Gilead O\n.\tO\t.\tO\n\t\nAFAIK\tO\tAFAIK\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nyou\tO\tyou\tO\ndescribe\tO\tdescribe\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nsolved\tO\tsolved\tO\nlong\tO\tlong\tO\nago\tO\tago\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlast\tO\tlast\tO\nrelease\tO\trelease\tO\nwas\tO\twas\tO\nversion\tO\tversion\tO\n1.3.2 B-Version 1.3.2 O\non\tO\ton\tO\n2010-05-22\tO\t2010-05-22\tO\n.\tO\t.\tO\n\t\nYes\tO\tYes\tO\n,\tO\t,\tO\nthis\tO\tthis\tO\nrelease\tO\trelease\tO\nis\tO\tis\tO\nold\tO\told\tO\n,\tO\t,\tO\nand\tO\tand\tO\nGilead B-Application Gilead O\nis\tO\tis\tO\nn't\tO\tn't\tO\nupdated\tO\tupdated\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nit\tO\tit\tO\nstill\tO\tstill\tO\nworks\tO\tworks\tO\n,\tO\t,\tO\neven\tO\teven\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nGWT B-Application GWT O\nversions\tO\tversions\tO\n(\tO\t(\tO\ncurrently\tO\tcurrently\tO\n2.5 B-Version 2.5 O\nrc\tO\trc\tO\n)\tO\t)\tO\n,\tO\t,\tO\nas\tO\tas\tO\nlong\tO\tlong\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nusing\tO\tusing\tO\nHibernate B-Application Hibernate O\n<=\tO\t<=\tO\n3.5.x B-Version 3.5.x O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nrecommend\tO\trecommend\tO\nstarting\tO\tstarting\tO\na\tO\ta\tO\nproject\tO\tproject\tO\nwith\tO\twith\tO\nGilead B-Application Gilead O\nnow\tO\tnow\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nhttp://sourceforge.net/projects/gilead/forums/forum/868076/topic/4525959\tO\thttp://sourceforge.net/projects/gilead/forums/forum/868076/topic/4525959\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43712855\tO\t43712855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43712855/\tO\thttps://stackoverflow.com/questions/43712855/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\nmaking\tO\tmaking\tO\na\tO\ta\tO\nscript\tO\tscript\tO\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nadd\tO\tadd\tO\nto\tO\tto\tO\ncart\tO\tcart\tO\nand\tO\tand\tO\ncheckout\tO\tcheckout\tO\nitems\tO\titems\tO\non\tO\ton\tO\ne-commerce\tO\te-commerce\tO\nwebsites\tO\twebsites\tO\nrun\tO\trun\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nshopify B-Application shopify O\nplatform\tO\tplatform\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nspeed\tO\tspeed\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nadd B-Function add O\nto I-Function to O\ncart I-Function cart O\nmethod\tO\tmethod\tO\non\tO\ton\tO\nmultiple\tO\tmultiple\tO\nthreads\tO\tthreads\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nadd B-Function add O\nto I-Function to O\ncart I-Function cart O\nfunction\tO\tfunction\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5628 I-Code_Block Q_5628 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhere\tO\twhere\tO\nkeywords B-Variable keywords O\nis\tO\tis\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\nof\tO\tof\tO\nstrings B-Data_Type strings O\nso\tO\tso\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nparse\tO\tparse\tO\nand\tO\tand\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nitem\tO\titem\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsession B-Variable session O\nis\tO\tis\tO\nthe\tO\tthe\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nsession B-Class session O\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nrequests B-Library requests O\nmodule\tO\tmodule\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfunction\tO\tfunction\tO\nfirst\tO\tfirst\tO\nparses\tO\tparses\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nsitemap\tO\tsitemap\tO\n,\tO\t,\tO\nfinding\tO\tfinding\tO\nthe\tO\tthe\tO\nunique\tO\tunique\tO\nproduct\tO\tproduct\tO\nID\tO\tID\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nsends\tO\tsends\tO\na\tO\ta\tO\npost\tO\tpost\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsession B-Variable session O\nvariable\tO\tvariable\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsaid\tO\tsaid\tO\nitem\tO\titem\tO\nto\tO\tto\tO\ncart\tO\tcart\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nthe\tO\tthe\tO\nscript\tO\tscript\tO\nusing\tO\tusing\tO\nthreads B-Class threads O\nto\tO\tto\tO\nadd\tO\tadd\tO\nmultiple\tO\tmultiple\tO\nitems\tO\titems\tO\nto\tO\tto\tO\ncart\tO\tcart\tO\n,\tO\t,\tO\ni\tO\ti\tO\nonly\tO\tonly\tO\nsee\tO\tsee\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\n.\tO\t.\tO\n\t\nWhy\tO\tWhy\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nthis\tO\tthis\tO\nworking\tO\tworking\tO\n?\tO\t?\tO\n\t\nWould\tO\tWould\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nlock\tO\tlock\tO\n+\tO\t+\tO\nunlock\tO\tunlock\tO\nthe\tO\tthe\tO\nsession B-Variable session O\nvariable\tO\tvariable\tO\nand\tO\tand\tO\nsend\tO\tsend\tO\nthe\tO\tthe\tO\nPOST\tO\tPOST\tO\nrequest\tO\trequest\tO\none\tO\tone\tO\nby\tO\tby\tO\none\tO\tone\tO\n?\tO\t?\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\nam\tO\tam\tO\nrunning\tO\trunning\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5629 I-Code_Block Q_5629 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43712855\tO\t43712855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43712855/\tO\thttps://stackoverflow.com/questions/43712855/\tO\n\t\n\t\nFrom\tO\tFrom\tO\nmy\tO\tmy\tO\nexperience\tO\texperience\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nhit\tO\thit\tO\nShopify B-Application Shopify O\nwith\tO\twith\tO\nmultiple\tO\tmultiple\tO\ncart\tO\tcart\tO\nchanges\tO\tchanges\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\nonly\tO\tonly\tO\none\tO\tone\tO\nwill\tO\twill\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nguess\tO\tguess\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nShopify B-Application Shopify O\nhandles\tO\thandles\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nAt\tO\tAt\tO\ntime\tO\ttime\tO\n0 B-Value 0 O\nwe\tO\twe\tO\nhave\tO\thave\tO\nour\tO\tour\tO\ninitial\tO\tinitial\tO\ncart\tO\tcart\tO\n-\tO\t-\tO\ncall\tO\tcall\tO\nit\tO\tit\tO\ncart0 B-Variable cart0 O\n\t\nAt\tO\tAt\tO\ntime\tO\ttime\tO\nt B-Variable t O\n,\tO\t,\tO\nwe\tO\twe\tO\nsubmit\tO\tsubmit\tO\nn B-Variable n O\nsimultaneous\tO\tsimultaneous\tO\nrequests\tO\trequests\tO\nto\tO\tto\tO\nadd/update/change\tO\tadd/update/change\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\n\t\nRequest\tO\tRequest\tO\n0 B-Value 0 O\n:\tO\t:\tO\ntake\tO\ttake\tO\ncart0 B-Variable cart0 O\nand\tO\tand\tO\napply\tO\tapply\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nreturn\tO\treturn\tO\nresult\tO\tresult\tO\n\t\nRequest\tO\tRequest\tO\n1 B-Value 1 O\n:\tO\t:\tO\ntake\tO\ttake\tO\ncart0 B-Variable cart0 O\nand\tO\tand\tO\napply\tO\tapply\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nreturn\tO\treturn\tO\nresult\tO\tresult\tO\n\t\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nRequest\tO\tRequest\tO\nn B-Variable n O\n:\tO\t:\tO\ntake\tO\ttake\tO\ncart0 B-Variable cart0 O\nand\tO\tand\tO\napply\tO\tapply\tO\nrequest\tO\trequest\tO\n,\tO\t,\tO\nreturn\tO\treturn\tO\nresult\tO\tresult\tO\n\t\nThis\tO\tThis\tO\nseems\tO\tseems\tO\nconsistent\tO\tconsistent\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncart\tO\tcart\tO\nreturn\tO\treturn\tO\nvalues\tO\tvalues\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ngot\tO\tgot\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ntested\tO\ttested\tO\nmultiple\tO\tmultiple\tO\nrequests\tO\trequests\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ntime\tO\ttime\tO\n-\tO\t-\tO\neach\tO\teach\tO\ncallback\tO\tcallback\tO\nfunction\tO\tfunction\tO\nwould\tO\twould\tO\ntrigger\tO\ttrigger\tO\nwith\tO\twith\tO\na\tO\ta\tO\ncart\tO\tcart\tO\nthat\tO\tthat\tO\nhad\tO\thad\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nchange\tO\tchange\tO\napplied\tO\tapplied\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nfound\tO\tfound\tO\ntwo\tO\ttwo\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nlimitation\tO\tlimitation\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfirst\tO\tfirst\tO\nis\tO\tis\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\nrequests\tO\trequests\tO\nare\tO\tare\tO\nchained\tO\tchained\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\nwait\tO\twait\tO\nfor\tO\tfor\tO\none\tO\tone\tO\nto\tO\tto\tO\nfinish\tO\tfinish\tO\nbefore\tO\tbefore\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\n-\tO\t-\tO\neffectively\tO\teffectively\tO\nturning\tO\tturning\tO\nthe\tO\tthe\tO\nasynchronous\tO\tasynchronous\tO\nrequests\tO\trequests\tO\ninto\tO\tinto\tO\nsynchronous\tO\tsynchronous\tO\nones\tO\tones\tO\n.\tO\t.\tO\n\t\nNot\tO\tNot\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nfor\tO\tfor\tO\nspeed\tO\tspeed\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nother\tO\tother\tO\nmethod\tO\tmethod\tO\nonly\tO\tonly\tO\nworks\tO\tworks\tO\nif\tO\tif\tO\nwe\tO\twe\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nline\tO\tline\tO\nitem\tO\titem\tO\nproperties\tO\tproperties\tO\nto\tO\tto\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\n:\tO\t:\tO\ncombining\tO\tcombining\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nadditions/changes\tO\tadditions/changes\tO\ninto\tO\tinto\tO\none\tO\tone\tO\ncall\tO\tcall\tO\nto\tO\tto\tO\n/cart/update.js B-File_Name /cart/update.js B-Code_Block\n,\tO\t,\tO\npassing\tO\tpassing\tO\nthe\tO\tthe\tO\nvariant\tO\tvariant\tO\nIDs\tO\tIDs\tO\nand\tO\tand\tO\ndesired\tO\tdesired\tO\nquantities\tO\tquantities\tO\nall\tO\tall\tO\nat\tO\tat\tO\nonce\tO\tonce\tO\n-\tO\t-\tO\nsee\tO\tsee\tO\nhttps://help.shopify.com/themes/development/getting-started/using-ajax-api#update-cart\tO\thttps://help.shopify.com/themes/development/getting-started/using-ajax-api#update-cart\tO\nfor\tO\tfor\tO\nexamples\tO\texamples\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nline\tO\tline\tO\nproperties\tO\tproperties\tO\nto\tO\tto\tO\nworry\tO\tworry\tO\nabout\tO\tabout\tO\n,\tO\t,\tO\nchanging\tO\tchanging\tO\nyour\tO\tyour\tO\nsingle-line\tO\tsingle-line\tO\nadditions\tO\tadditions\tO\ninto\tO\tinto\tO\none\tO\tone\tO\nbig\tO\tbig\tO\nupdate\tO\tupdate\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsignificant\tO\tsignificant\tO\nspeed\tO\tspeed\tO\nand\tO\tand\tO\nreliability\tO\treliability\tO\nincrease\tO\tincrease\tO\n.\tO\t.\tO\n\t\nQuestion_ID B-User_Interface_Element Question_ID O\n:\tO\t:\tO\n40561979\tO\t40561979\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40561979/\tO\thttps://stackoverflow.com/questions/40561979/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\njavafx B-Library javafx O\napplication\tO\tapplication\tO\nwith\tO\twith\tO\na\tO\ta\tO\nTableView B-Class TableView B-Code_Block\n.\tO\t.\tO\n\t\nOnly\tO\tOnly\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\ncolumn B-User_Interface_Element column O\n(\tO\t(\tO\ndataTypeColumn B-Variable dataTypeColumn B-Code_Block\n)\tO\t)\tO\nis\tO\tis\tO\neditable\tO\teditable\tO\nand\tO\tand\tO\nit\tO\tit\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nComboBox B-Class ComboBox B-Code_Block\nfor\tO\tfor\tO\nediting\tO\tediting\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nthe\tO\tthe\tO\nTableView B-Class TableView B-Code_Block\ndoes\tO\tdoes\tO\nwhat\tO\twhat\tO\nit\tO\tit\tO\nis\tO\tis\tO\nsupposed\tO\tsupposed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nweird\tO\tweird\tO\nbugs\tO\tbugs\tO\nwhen\tO\twhen\tO\ni\tO\ti\tO\nstart\tO\tstart\tO\nediting\tO\tediting\tO\na\tO\ta\tO\ncell B-User_Interface_Element cell O\nand\tO\tand\tO\nthen\tO\tthen\tO\nscroll\tO\tscroll\tO\nit\tO\tit\tO\nout\tO\tout\tO\nof\tO\tof\tO\nview\tO\tview\tO\nwithout\tO\twithout\tO\ncommiting\tO\tcommiting\tO\nthe\tO\tthe\tO\nedit\tO\tedit\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nTableView B-Class TableView B-Code_Block\nreuses\tO\treuses\tO\nthe\tO\tthe\tO\ncells B-User_Interface_Element cells O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nfound\tO\tfound\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nintervene\tO\tintervene\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nto\tO\tto\tO\nforbid\tO\tforbid\tO\nreuse\tO\treuse\tO\nof\tO\tof\tO\ncells B-User_Interface_Element cells O\nthat\tO\tthat\tO\nare\tO\tare\tO\ncurrently\tO\tcurrently\tO\nediting\tO\tediting\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwith\tO\twith\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nEven\tO\tEven\tO\nthough\tO\tthough\tO\nI\tO\tI\tO\nam\tO\tam\tO\npretty\tO\tpretty\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\ncell B-User_Interface_Element cell O\nreuse\tO\treuse\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwill\tO\twill\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nproblem\tO\tproblem\tO\nbelow\tO\tbelow\tO\n,\tO\t,\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ncolumn B-User_Interface_Element column O\nin\tO\tin\tO\nquestion\tO\tquestion\tO\ncontains\tO\tcontains\tO\nValues\tO\tValues\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nenum\tO\tenum\tO\nDataType B-Class DataType B-Code_Block\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncell B-User_Interface_Element cell O\nFactory\tO\tFactory\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\ncolumn B-User_Interface_Element column O\nlooking\tO\tlooking\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5121 I-Code_Block Q_5121 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nvalues\tO\tvalues\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\ncolumn B-User_Interface_Element column O\nget\tO\tget\tO\nread\tO\tread\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5122 I-Code_Block Q_5122 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\ncase\tO\tcase\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nconfusing\tO\tconfusing\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nitems\tO\titems\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ngive\tO\tgive\tO\nmy\tO\tmy\tO\nTableView B-Class TableView B-Code_Block\nare\tO\tare\tO\nIntegers B-Data_Type Integers B-Code_Block\n(\tO\t(\tO\nfrom\tO\tfrom\tO\n0 B-Value 0 O\nto\tO\tto\tO\nn-1 B-Value n-1 O\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndifferent\tO\tdifferent\tO\ncolumn B-User_Interface_Element column O\nCellValueFactories B-Variable CellValueFactories B-Code_Block\nthe\tO\tthe\tO\nactual\tO\tactual\tO\nvalues\tO\tvalues\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nloaded\tO\tloaded\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nInteger B-Data_Type Integer B-Code_Block\nassoziated\tO\tassoziated\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ncolumn B-User_Interface_Element column O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhen\tO\twhen\tO\nediting\tO\tediting\tO\nit\tO\tit\tO\n,\tO\t,\tO\nit\tO\tit\tO\nshows\tO\tshows\tO\na\tO\ta\tO\nComboBox B-Class ComboBox B-Code_Block\nwith\tO\twith\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nValues\tO\tValues\tO\nthat\tO\tthat\tO\nDataType B-Class DataType B-Code_Block\ncan\tO\tcan\tO\nhave\tO\thave\tO\nand\tO\tand\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nselect\tO\tselect\tO\none\tO\tone\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncallback\tO\tcallback\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncolumn B-User_Interface_Element column O\nthat\tO\tthat\tO\nreacts\tO\treacts\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nEdit\tO\tEdit\tO\ncommited\tO\tcommited\tO\nevent\tO\tevent\tO\nand\tO\tand\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5123 I-Code_Block Q_5123 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nproblems\tO\tproblems\tO\nthat\tO\tthat\tO\noccur\tO\toccur\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nbeginning\tO\tbeginning\tO\nall\tO\tall\tO\ncells B-User_Interface_Element cells O\nin\tO\tin\tO\nthat\tO\tthat\tO\ncolumn B-User_Interface_Element column O\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nvalue\tO\tvalue\tO\n:\tO\t:\tO\n\" B-Value \" O\nnothing I-Value nothing O\nselected I-Value selected O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\na\tO\ta\tO\nspecial\tO\tspecial\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nenum\tO\tenum\tO\nreserved\tO\treserved\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\n,\tO\t,\tO\nas\tO\tas\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nsetPlaceholder B-Function setPlaceholder O\nfunction\tO\tfunction\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nComboBoxTableCell B-Class ComboBoxTableCell B-Code_Block\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nknow\tO\tknow\tO\nstart\tO\tstart\tO\nediting\tO\tediting\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncells B-User_Interface_Element cells O\nand\tO\tand\tO\nthen\tO\tthen\tO\nscroll\tO\tscroll\tO\nit\tO\tit\tO\nout\tO\tout\tO\nof\tO\tof\tO\nview\tO\tview\tO\n,\tO\t,\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nrows B-User_Interface_Element rows O\nwill\tO\twill\tO\nsuddendly\tO\tsuddendly\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nstate\tO\tstate\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n,\tO\t,\tO\neven\tO\teven\tO\nthough\tO\tthough\tO\nthat\tO\tthat\tO\nrow B-User_Interface_Element row O\nhas\tO\thas\tO\nnot\tO\tnot\tO\nbeen\tO\tbeen\tO\ntouched\tO\ttouched\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nscroll\tO\tscroll\tO\nfurther\tO\tfurther\tO\nan\tO\tan\tO\ncell B-User_Interface_Element cell O\nin\tO\tin\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nstate\tO\tstate\tO\nwill\tO\twill\tO\nappear\tO\tappear\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\none\tO\tone\tO\nscrolls\tO\tscrolls\tO\nout\tO\tout\tO\nof\tO\tof\tO\nview\tO\tview\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\ngo\tO\tgo\tO\nback\tO\tback\tO\nand\tO\tand\tO\nwill\tO\twill\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncells B-User_Interface_Element cells O\nin\tO\tin\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nstate\tO\tstate\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\ncell B-User_Interface_Element cell O\nthat\tO\tthat\tO\nshould\tO\tshould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nstate\tO\tstate\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ninstead\tO\tinstead\tO\nthe\tO\tthe\tO\ncell B-User_Interface_Element cell O\nthat\tO\tthat\tO\nI\tO\tI\tO\noriginally\tO\toriginally\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nwill\tO\twill\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\n's\tO\t's\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nunderlying\tO\tunderlying\tO\nObservableList B-Class ObservableList B-Code_Block\n,\tO\t,\tO\nthat\tO\tthat\tO\nautomatically\tO\tautomatically\tO\nupdates\tO\tupdates\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncolumn B-User_Interface_Element column O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nstart\tO\tstart\tO\nediting\tO\tediting\tO\na\tO\ta\tO\ncell B-User_Interface_Element cell O\nthat\tO\tthat\tO\nhas\tO\thas\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nvalue\tO\tvalue\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nprevious\tO\tprevious\tO\nedit\tO\tedit\tO\n)\tO\t)\tO\n,\tO\t,\tO\nsomething\tO\tsomething\tO\neven\tO\teven\tO\nmore\tO\tmore\tO\nweird\tO\tweird\tO\nhappens\tO\thappens\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nscrolling\tO\tscrolling\tO\nit\tO\tit\tO\nout\tO\tout\tO\nof\tO\tof\tO\nview\tO\tview\tO\nagain\tO\tagain\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nrow B-User_Interface_Element row O\nwill\tO\twill\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncell B-User_Interface_Element cell O\nin\tO\tin\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\npage\tO\tpage\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nvalue\tO\tvalue\tO\n\" B-Value \" O\nnothing I-Value nothing O\nselected I-Value selected O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nscroll\tO\tscroll\tO\nbackwards\tO\tbackwards\tO\nthe\tO\tthe\tO\ncell B-User_Interface_Element cell O\nthat\tO\tthat\tO\ni\tO\ti\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\noriginally\tO\toriginally\tO\nwill\tO\twill\tO\nno\tO\tno\tO\nlonger\tO\tlonger\tO\nbe\tO\tbe\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nstate\tO\tstate\tO\nhowever\tO\thowever\tO\nit\tO\tit\tO\n's\tO\t's\tO\nvalue\tO\tvalue\tO\nhas\tO\thas\tO\nchanged\tO\tchanged\tO\nto\tO\tto\tO\n\" B-Value \" O\nnothing I-Value nothing O\nselected I-Value selected O\n\" I-Value \" O\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\ncell B-User_Interface_Element cell O\nthat\tO\tthat\tO\ngot\tO\tgot\tO\nthe\tO\tthe\tO\nediting\tO\tediting\tO\nstate\tO\tstate\tO\nsomehow\tO\tsomehow\tO\ncommited\tO\tcommited\tO\nit\tO\tit\tO\n's\tO\t's\tO\nown\tO\town\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nsome\tO\tsome\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\n:)\tO\t:)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40561979\tO\t40561979\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40561979/\tO\thttps://stackoverflow.com/questions/40561979/\tO\n\t\n\t\nThis\tO\tThis\tO\nindeed\tO\tindeed\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nRather\tO\tRather\tO\nsurprising\tO\tsurprising\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\nscroll B-User_Interface_Element scroll O\nbar I-User_Interface_Element bar O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nmouse B-Device mouse O\n,\tO\t,\tO\nthe\tO\tthe\tO\nedit\tO\tedit\tO\nis\tO\tis\tO\nproperly\tO\tproperly\tO\ncanceled\tO\tcanceled\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nmouse B-Device mouse O\nwheel\tO\twheel\tO\nto\tO\tto\tO\nscroll\tO\tscroll\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nworkaround\tO\tworkaround\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nbuf\tO\tbuf\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\nsimply\tO\tsimply\tO\nhave\tO\thave\tO\nto\tO\tto\tO\ncancel\tO\tcancel\tO\nthe\tO\tthe\tO\nedit\tO\tedit\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nitem\tO\titem\tO\nis\tO\tis\tO\nreplaced\tO\treplaced\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\ncellFactory B-Code_Block cellFactory B-Code_Block\non\tO\ton\tO\nyour\tO\tyour\tO\nown\tO\town\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5811 I-Code_Block A_5811 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24115009\tO\t24115009\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24115009/\tO\thttps://stackoverflow.com/questions/24115009/\tO\n\t\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nread\tO\tread\tO\neach\tO\teach\tO\nrow B-Data_Structure row O\nin\tO\tin\tO\nDatagrid B-Class Datagrid O\none\tO\tone\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nmy\tO\tmy\tO\ndatagrid B-Class datagrid O\nhas\tO\thas\tO\n5\tO\t5\tO\ndata B-Variable data O\non\tO\ton\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nAnd\tO\tAnd\tO\neach\tO\teach\tO\ndata B-Variable data O\ncorresponds\tO\tcorresponds\tO\nto\tO\tto\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\n/\tO\t/\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nC# B-Language C# O\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nread\tO\tread\tO\nit\tO\tit\tO\nas\tO\tas\tO\ndata B-Variable data O\n1\tO\t1\tO\nthen\tO\tthen\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nfunction\tO\tfunction\tO\nunder\tO\tunder\tO\nthat\tO\tthat\tO\ndata B-Variable data O\n.\tO\t.\tO\n\t\nthen\tO\tthen\tO\nread\tO\tread\tO\ndata B-Variable data O\n2\tO\t2\tO\nthen\tO\tthen\tO\nperform\tO\tperform\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nfunction\tO\tfunction\tO\nunder\tO\tunder\tO\nthat\tO\tthat\tO\ndata B-Variable data O\n2\tO\t2\tO\n.\tO\t.\tO\nand\tO\tand\tO\nso\tO\tso\tO\non.\tO\ton.\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\ngive\tO\tgive\tO\nme\tO\tme\tO\nsome\tO\tsome\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24115009\tO\t24115009\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24115009/\tO\thttps://stackoverflow.com/questions/24115009/\tO\n\t\n\t\nI\tO\tI\tO\nassume\tO\tassume\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nfollowing\tO\tfollowing\tO\nMVVM B-Algorithm MVVM O\n,\tO\t,\tO\nGet\tO\tGet\tO\nthe\tO\tthe\tO\nItems\tO\tItems\tO\nFrom\tO\tFrom\tO\nYour\tO\tYour\tO\nDataGrid B-Class DataGrid O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3285 I-Code_Block A_3285 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2590794\tO\t2590794\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2590794/\tO\thttps://stackoverflow.com/questions/2590794/\tO\n\t\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\ntell\tO\ttell\tO\nme\tO\tme\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\ngcov B-Application gcov O\nmessage\tO\tmessage\tO\n\"\tO\t\"\tO\nMerge\tO\tMerge\tO\nmismatch\tO\tmismatch\tO\nfor\tO\tfor\tO\nsummaries\tO\tsummaries\tO\n\"\tO\t\"\tO\nmeans\tO\tmeans\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nfound\tO\tfound\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ngcc B-Application gcc O\nsource\tO\tsource\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttp://www.opensource.apple.com/source/gcc/gcc-5646/gcc/libgcov.c\tO\thttp://www.opensource.apple.com/source/gcc/gcc-5646/gcc/libgcov.c\tO\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nsanity\tO\tsanity\tO\ncheck\tO\tcheck\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ntags\tO\ttags\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n.gcda B-File_Type .gcda B-Code_Block\nfiles\tO\tfiles\tO\nmatch\tO\tmatch\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\n.\tO\t.\tO\n\t\nAnyone\tO\tAnyone\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nwork\tO\twork\tO\naround\tO\taround\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2590794\tO\t2590794\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2590794/\tO\thttps://stackoverflow.com/questions/2590794/\tO\n\t\n\t\nThis\tO\tThis\tO\nhappens\tO\thappens\tO\nwhen\tO\twhen\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nobjects\tO\tobjects\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlinking\tO\tlinking\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\nexecutable\tO\texecutable\tO\nchanges\tO\tchanges\tO\nsignificantly\tO\tsignificantly\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\nit\tO\tit\tO\ngains\tO\tgains\tO\nor\tO\tor\tO\nloses\tO\tloses\tO\nsome\tO\tsome\tO\nlines\tO\tlines\tO\nof\tO\tof\tO\nprofilable\tO\tprofilable\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nminimal\tO\tminimal\tO\ncase\tO\tcase\tO\nto\tO\tto\tO\nproduce\tO\tproduce\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nis\tO\tis\tO\nwith\tO\twith\tO\n2\tO\t2\tO\nsource\tO\tsource\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\n2\tO\t2\tO\nexample\tO\texample\tO\nsource\tO\tsource\tO\nfiles\tO\tfiles\tO\ncalled\tO\tcalled\tO\nc B-File_Name c O\n.. I-File_Name .. O\n. I-File_Name . O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_260 I-Code_Block A_260 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nstuff.c B-File_Name stuff.c O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_261 I-Code_Block A_261 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nthey\tO\tthey\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nimportant\tO\timportant\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nbuild\tO\tbuild\tO\nthem\tO\tthem\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nMakefile B-File_Name Makefile O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_262 I-Code_Block A_262 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nMakefile B-File_Name Makefile O\nis\tO\tis\tO\nset\tO\tset\tO\nup\tO\tup\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncompilation\tO\tcompilation\tO\nis\tO\tis\tO\nmain.c B-Code_Block main.c B-Code_Block\n-> I-Code_Block -> I-Code_Block\nmain.o I-Code_Block main.o I-Code_Block\n,\tO\t,\tO\nstuff.c B-Code_Block stuff.c B-Code_Block\n-> I-Code_Block -> I-Code_Block\nstuff.o I-Code_Block stuff.o I-Code_Block\nand\tO\tand\tO\nfinally\tO\tfinally\tO\nstuff.o B-Code_Block stuff.o B-Code_Block\n+ I-Code_Block + I-Code_Block\nmain.o I-Code_Block main.o I-Code_Block\n-> I-Code_Block -> I-Code_Block\ntestexe I-Code_Block testexe I-Code_Block\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nwe\tO\twe\tO\ncompile\tO\tcompile\tO\nand\tO\tand\tO\nlink\tO\tlink\tO\nthose\tO\tthose\tO\nC B-Language C O\nfiles\tO\tfiles\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n-fprofile-arcs B-Code_Block -fprofile-arcs B-Code_Block\n-ftest-coverage I-Code_Block -ftest-coverage I-Code_Block\noptions\tO\toptions\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nexecutable\tO\texecutable\tO\nfile\tO\tfile\tO\nhas\tO\thas\tO\nprofiling\tO\tprofiling\tO\n.\tO\t.\tO\n\t\nRun\tO\tRun\tO\nthat\tO\tthat\tO\nexecuatable\tO\texecuatable\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\n2\tO\t2\tO\noutput\tO\toutput\tO\nfiles\tO\tfiles\tO\n,\tO\t,\tO\nmain.gcda B-File_Name main.gcda B-Code_Block\nand\tO\tand\tO\nstuff.gcda B-File_Name stuff.gcda B-Code_Block\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\nso\tO\tso\tO\ngood\tO\tgood\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nline\tO\tline\tO\n#if B-Code_Block #if B-Code_Block\n0 I-Code_Block 0 I-Code_Block\nto\tO\tto\tO\n#if B-Code_Block #if B-Code_Block\n1 I-Code_Block 1 I-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nMakefile B-File_Name Makefile O\nshould\tO\tshould\tO\ncause\tO\tcause\tO\njust\tO\tjust\tO\nstuff.c B-File_Name stuff.c O\nto\tO\tto\tO\nrecompile\tO\trecompile\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\nexecutable\tO\texecutable\tO\nto\tO\tto\tO\nrelink\tO\trelink\tO\n.\tO\t.\tO\n\t\nNext\tO\tNext\tO\ntime\tO\ttime\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\nexecutable\tO\texecutable\tO\ngets\tO\tgets\tO\nrun\tO\trun\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\n\" B-Output_Block \" O\nMerge I-Output_Block Merge O\nmismatch I-Output_Block mismatch O\n\" I-Output_Block \" O\nmessage\tO\tmessage\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nmain.gcda B-File_Name main.gcda O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nstuff.gcda B-File_Name stuff.gcda O\nfile\tO\tfile\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\naffected\tO\taffected\tO\nsince\tO\tsince\tO\nits\tO\tits\tO\nobject\tO\tobject\tO\nfile\tO\tfile\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nrecreated\tO\trecreated\tO\nwith\tO\twith\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nnew\tO\tnew\tO\nsummary\tO\tsummary\tO\ninformation\tO\tinformation\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nrecompile\tO\trecompile\tO\nmain.c B-File_Name main.c B-Code_Block\nand\tO\tand\tO\nrelink\tO\trelink\tO\nthe\tO\tthe\tO\nexecutable\tO\texecutable\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessage\tO\tmessage\tO\ngoes\tO\tgoes\tO\naway\tO\taway\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nwhat\tO\twhat\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlove\tO\tlove\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\n!\tO\t!\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\nmoment\tO\tmoment\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nfind B-Code_Block find B-Code_Block\n. I-Code_Block . I-Code_Block\n-name I-Code_Block -name I-Code_Block\n' I-Code_Block ' I-Code_Block\n* I-Code_Block * I-Code_Block\n.gcda I-Code_Block .gcda I-Code_Block\n' I-Code_Block ' I-Code_Block\n| I-Code_Block | I-Code_Block\nxargs I-Code_Block xargs I-Code_Block\nrm I-Code_Block rm I-Code_Block\nwhenever\tO\twhenever\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nre-check\tO\tre-check\tO\ncoverage\tO\tcoverage\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nreally\tO\treally\tO\nideal\tO\tideal\tO\n.\tO\t.\tO\n\t\nAnother\tO\tAnother\tO\nsolution\tO\tsolution\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nrecompile\tO\trecompile\tO\neverything\tO\teverything\tO\nwhen\tO\twhen\tO\nusing\tO\tusing\tO\nprofiling\tO\tprofiling\tO\n\"\tO\t\"\tO\njust\tO\tjust\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\n\"\tO\t\"\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\noverkill\tO\toverkill\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9782265\tO\t9782265\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9782265/\tO\thttps://stackoverflow.com/questions/9782265/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nopenssl B-Library openssl O\n0.9.8g B-Version 0.9.8g O\nto\tO\tto\tO\nvalidate\tO\tvalidate\tO\nthe\tO\tthe\tO\ncertificate\tO\tcertificate\tO\nsignature\tO\tsignature\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nAPI B-Library API O\n\" I-Library \" O\nX509_verify I-Library X509_verify O\n\" I-Library \" O\nreturns\tO\treturns\tO\n0/1 B-Value 0/1 O\naccording\tO\taccording\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\nbut\tO\tbut\tO\ni\tO\ti\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\n-1 B-Value -1 O\nas\tO\tas\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nwhy\tO\twhy\tO\ni\tO\ti\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\n-1 B-Value -1 O\nas\tO\tas\tO\nreturn\tO\treturn\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n.\tO\t.\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9782265\tO\t9782265\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9782265/\tO\thttps://stackoverflow.com/questions/9782265/\tO\n\t\n\t\nNeed\tO\tNeed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nalgorithms\tO\talgorithms\tO\ndetails\tO\tdetails\tO\n.\tO\t.\tO\n.\tO\t.\tO\n\t\ncall\tO\tcall\tO\nthese\tO\tthese\tO\nfunctions\tO\tfunctions\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nalgorithm\tO\talgorithm\tO\nlist B-Data_Structure list O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1236 I-Code_Block A_1236 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nReturn\tO\tReturn\tO\n-1 B-Value -1 O\nbecause\tO\tbecause\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthe\tO\tthe\tO\nAlgorithm\tO\tAlgorithm\tO\nobj_ID B-Variable obj_ID O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n24293004\tO\t24293004\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24293004/\tO\thttps://stackoverflow.com/questions/24293004/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntemplate\tO\ttemplate\tO\nhelper\tO\thelper\tO\ncalled\tO\tcalled\tO\nnotifications B-Variable notifications B-Code_Block\nand\tO\tand\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nreturn\tO\treturn\tO\n3\tO\t3\tO\ncollection B-Class collection O\ncursors I-Class cursors O\nto\tO\tto\tO\nmy\tO\tmy\tO\ntemplate\tO\ttemplate\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nview\tO\tview\tO\nall\tO\tall\tO\n\t\nTemplate\tO\tTemplate\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2702 I-Code_Block Q_2702 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHelper\tO\tHelper\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2703 I-Code_Block Q_2703 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n24293004\tO\t24293004\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/24293004/\tO\thttps://stackoverflow.com/questions/24293004/\tO\n\t\n\t\nThe\tO\tThe\tO\nliteral\tO\tliteral\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nfetch B-Function fetch B-Code_Block\non\tO\ton\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncursors B-Class cursors O\nand\tO\tand\tO\nconcatenate\tO\tconcatenate\tO\nthem\tO\tthem\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3322 I-Code_Block A_3322 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBecause\tO\tBecause\tO\nall\tO\tall\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\ndocuments\tO\tdocuments\tO\ncome\tO\tcome\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\ncollection B-Class collection O\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalternatively\tO\talternatively\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nsophisticated\tO\tsophisticated\tO\nquery\tO\tquery\tO\n.\tO\t.\tO\n\t\nGive\tO\tGive\tO\nthis\tO\tthis\tO\na\tO\ta\tO\ntry\tO\ttry\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3323 I-Code_Block A_3323 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n21079023\tO\t21079023\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21079023/\tO\thttps://stackoverflow.com/questions/21079023/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ncreating\tO\tcreating\tO\na\tO\ta\tO\nform\tO\tform\tO\nin\tO\tin\tO\nangularjs B-Library angularjs O\nin\tO\tin\tO\nwhich\tO\twhich\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\ntwo\tO\ttwo\tO\nngShow B-Class ngShow O\nfor\tO\tfor\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncrossfade\tO\tcrossfade\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\nmessages\tO\tmessages\tO\nplacing\tO\tplacing\tO\nthem\tO\tthem\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nspot\tO\tspot\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\n,\tO\t,\tO\ni\tO\ti\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nplunker\tO\tplunker\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\nhttp://plnkr.co/edit/EcT2oOmClz65WUgXgG4g?p=preview\tO\thttp://plnkr.co/edit/EcT2oOmClz65WUgXgG4g?p=preview\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\n1.2.4 B-Version 1.2.4 O\nand\tO\tand\tO\nlinked\tO\tlinked\tO\nthe\tO\tthe\tO\nng-animate B-Library ng-animate O\nlib\tO\tlib\tO\n.\tO\t.\tO\n\t\nRight\tO\tRight\tO\nnow\tO\tnow\tO\nthe\tO\tthe\tO\nanimation\tO\tanimation\tO\n(\tO\t(\tO\nfading\tO\tfading\tO\nin/out\tO\tin/out\tO\n)\tO\t)\tO\nis\tO\tis\tO\nachieved\tO\tachieved\tO\nusing\tO\tusing\tO\nCSS B-Language CSS O\nnot\tO\tnot\tO\nJS B-Language JS O\n:\tO\t:\tO\n\t\nhtml B-Language html O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2241 I-Code_Block Q_2241 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ncss B-Language css O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2242 I-Code_Block Q_2242 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nJS B-Language JS O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2243 I-Code_Block Q_2243 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n21079023\tO\t21079023\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/21079023/\tO\thttps://stackoverflow.com/questions/21079023/\tO\n\t\n\t\nThe\tO\tThe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nis\tO\tis\tO\nby\tO\tby\tO\nadding\tO\tadding\tO\nposition\tO\tposition\tO\n:\tO\t:\tO\nabsolute\tO\tabsolute\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontainer\tO\tcontainer\tO\n's\tO\t's\tO\nstyle\tO\tstyle\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3429 I-Code_Block A_3429 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nwill\tO\twill\tO\nmake\tO\tmake\tO\nboth\tO\tboth\tO\nerrors\tO\terrors\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nposition\tO\tposition\tO\nwhile\tO\twhile\tO\nfading\tO\tfading\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\noverlapping\tO\toverlapping\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\nmean\tO\tmean\tO\nby\tO\tby\tO\ncrossfading\tO\tcrossfading\tO\n)\tO\t)\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nhad\tO\thad\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nwidth\tO\twidth\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncontainer B-User_Interface_Element container O\nbecause\tO\tbecause\tO\nits\tO\tits\tO\nwidth\tO\twidth\tO\nwas\tO\twas\tO\nmaking\tO\tmaking\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\nspan\tO\tspan\tO\nseveral\tO\tseveral\tO\nlines\tO\tlines\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nedited\tO\tedited\tO\nplunker B-Application plunker O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n41068216\tO\t41068216\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/41068216/\tO\thttps://stackoverflow.com/questions/41068216/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\ninsight\tO\tinsight\tO\ninto\tO\tinto\tO\nreporting\tO\treporting\tO\nutilization\tO\tutilization\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ntime\tO\ttime\tO\nplot\tO\tplot\tO\nthat\tO\tthat\tO\nreports\tO\treports\tO\nresourceName.utilization() B-Function resourceName.utilization() B-Code_Block\n,\tO\t,\tO\nadditionally\tO\tadditionally\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nadding\tO\tadding\tO\nthe\tO\tthe\tO\nutilization\tO\tutilization\tO\nvalues\tO\tvalues\tO\nto\tO\tto\tO\na\tO\ta\tO\nStatistics\tO\tStatistics\tO\nobject\tO\tobject\tO\nevery\tO\tevery\tO\nhour\tO\thour\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthen\tO\tthen\tO\nplot\tO\tplot\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nStatistics\tO\tStatistics\tO\nobject\tO\tobject\tO\nas\tO\tas\tO\nstatisticName.mean() B-Function statisticName.mean() B-Code_Block\n.\tO\t.\tO\n\t\nSince\tO\tSince\tO\nutilization\tO\tutilization\tO\nin\tO\tin\tO\nAnyLogic B-Application AnyLogic O\nis\tO\tis\tO\nthe\tO\tthe\tO\nreturned\tO\treturned\tO\nvalue\tO\tvalue\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nmean\tO\tmean\tO\nover\tO\tover\tO\nall\tO\tall\tO\nindividual\tO\tindividual\tO\nunit\tO\tunit\tO\nutilization\tO\tutilization\tO\n,\tO\t,\tO\ncalculated\tO\tcalculated\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nmost\tO\tmost\tO\nrecent\tO\trecent\tO\nresetStats() B-Function resetStats() B-Code_Block\ncall\tO\tcall\tO\nup\tO\tup\tO\nto\tO\tto\tO\ncurrent\tO\tcurrent\tO\ntime\tO\ttime\tO\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nreporting\tO\treporting\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nstatisticName.mean() B-Function statisticName.mean() B-Code_Block\neven\tO\teven\tO\nmake\tO\tmake\tO\nsense\tO\tsense\tO\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\naverage\tO\taverage\tO\nof\tO\tof\tO\ntime\tO\ttime\tO\naveraged\tO\taveraged\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36429486\tO\t36429486\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36429486/\tO\thttps://stackoverflow.com/questions/36429486/\tO\n\t\n\t\nIm\tO\tIm\tO\nusing\tO\tusing\tO\ntwig B-Language twig O\nbut\tO\tbut\tO\nits\tO\tits\tO\nbeing\tO\tbeing\tO\nrun\tO\trun\tO\nvia\tO\tvia\tO\ngulp B-Library gulp O\nnot\tO\tnot\tO\nsymphony B-Library symphony O\n.\tO\t.\tO\n\t\nhttps://www.npmjs.com/package/gulp-twig\tO\thttps://www.npmjs.com/package/gulp-twig\tO\n\t\nIve\tO\tIve\tO\nused\tO\tused\tO\nextends\tO\textends\tO\nand\tO\tand\tO\nincludes\tO\tincludes\tO\nsuccessfully\tO\tsuccessfully\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncant\tO\tcant\tO\nget\tO\tget\tO\nmacros\tO\tmacros\tO\nto\tO\tto\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nDo\tO\tDo\tO\nmacros\tO\tmacros\tO\nrequire\tO\trequire\tO\nsymphony B-Library symphony O\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\nmain\tO\tmain\tO\ntwig B-File_Type twig O\nfile\tO\tfile\tO\nI\tO\tI\tO\nhave\tO\thave\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4482 I-Code_Block Q_4482 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\ntest.twig B-File_Name test.twig O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4483 I-Code_Block Q_4483 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36429486\tO\t36429486\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36429486/\tO\thttps://stackoverflow.com/questions/36429486/\tO\n\t\n\t\nIt\tO\tIt\tO\nwas\tO\twas\tO\na\tO\ta\tO\nsyntax\tO\tsyntax\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nmain B-File_Name main O\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5212 I-Code_Block A_5212 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\ntest.twig B-File_Name test.twig O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5213 I-Code_Block A_5213 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nImplementation\tO\tImplementation\tO\nNotes\tO\tNotes\tO\n:\tO\t:\tO\n\t\nhttps://github.com/justjohn/twig.js/wiki/Implementation-Notes\tO\thttps://github.com/justjohn/twig.js/wiki/Implementation-Notes\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16175946\tO\t16175946\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16175946/\tO\thttps://stackoverflow.com/questions/16175946/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nhaving\tO\thaving\tO\nsome\tO\tsome\tO\ntrouble\tO\ttrouble\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\nGWT B-Application GWT O\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n:\tO\t:\tO\nhttps://developers.google.com/web-toolkit/tools/gwtdesigner/features/menu_editing\tO\thttps://developers.google.com/web-toolkit/tools/gwtdesigner/features/menu_editing\tO\nGoogle\tO\tGoogle\tO\nthemselves\tO\tthemselves\tO\ntalk\tO\ttalk\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npossibility\tO\tpossibility\tO\nof\tO\tof\tO\nJava B-Application Java O\nSwing I-Application Swing O\n,\tO\t,\tO\nJFrame B-Class JFrame O\nimplementation\tO\timplementation\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nGWT B-Application GWT O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\na\tO\ta\tO\nJava B-Language Java O\nnewbie\tO\tnewbie\tO\nand\tO\tand\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nSWT B-Application SWT O\nequivalent\tO\tequivalent\tO\nof\tO\tof\tO\nSwing B-Application Swing O\nis\tO\tis\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\ntried\tO\ttried\tO\nthat\tO\tthat\tO\noption\tO\toption\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nbuilt\tO\tbuilt\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nGWT B-Application GWT O\nDesigner I-Application Designer O\n)\tO\t)\tO\nI\tO\tI\tO\nget\tO\tget\tO\nerrors\tO\terrors\tO\nat\tO\tat\tO\neach\tO\teach\tO\nline\tO\tline\tO\nthat\tO\tthat\tO\nuses\tO\tuses\tO\nJFrame B-Class JFrame O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1597 I-Code_Block Q_1597 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nReturning\tO\tReturning\tO\n:\tO\t:\tO\n[\tO\t[\tO\nERROR\tO\tERROR\tO\n]\tO\t]\tO\n[\tO\t[\tO\ngwtearthdemo B-Error_Name gwtearthdemo O\n]\tO\t]\tO\n-\tO\t-\tO\nLine\tO\tLine\tO\n96\tO\t96\tO\n:\tO\t:\tO\nNo\tO\tNo\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\nis\tO\tis\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\ntype\tO\ttype\tO\njavax.swing.JFrame B-Class javax.swing.JFrame O\n; I-Class ; O\ndid\tO\tdid\tO\nyou\tO\tyou\tO\nforget\tO\tforget\tO\nto\tO\tto\tO\ninherit\tO\tinherit\tO\na\tO\ta\tO\nrequired\tO\trequired\tO\nmodule\tO\tmodule\tO\n?\tO\t?\tO\n\t\nDitto\tO\tDitto\tO\nfor\tO\tfor\tO\nJMenuBar B-Class JMenuBar O\n,\tO\t,\tO\nJMenu B-Class JMenu O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nseen\tO\tseen\tO\nerrors\tO\terrors\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nwith\tO\twith\tO\nanswers\tO\tanswers\tO\nsuggesting\tO\tsuggesting\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\napplicable\tO\tapplicable\tO\nto\tO\tto\tO\nGWT B-Application GWT O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nGoogle B-Website Google O\nsuggests\tO\tsuggests\tO\nit\tO\tit\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nadvice\tO\tadvice\tO\nhere\tO\there\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16175946\tO\t16175946\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16175946/\tO\thttps://stackoverflow.com/questions/16175946/\tO\n\t\n\t\nIn\tO\tIn\tO\nGWT B-Application GWT O\nyou\tO\tyou\tO\nare\tO\tare\tO\nrestricted\tO\trestricted\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nonly\tO\tonly\tO\nsome\tO\tsome\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\njava B-Language java O\nclasses\tO\tclasses\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\njava B-Language java O\nclasses\tO\tclasses\tO\nto\tO\tto\tO\njavascript B-Language javascript O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nlist\tO\tlist\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nallowed\tO\tallowed\tO\nclasses\tO\tclasses\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nlink\tO\tlink\tO\n:\tO\t:\tO\nList\tO\tList\tO\nof\tO\tof\tO\nClasses\tO\tClasses\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2759665\tO\t2759665\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2759665/\tO\thttps://stackoverflow.com/questions/2759665/\tO\n\t\n\t\nI\tO\tI\tO\nwas\tO\twas\tO\nhaving\tO\thaving\tO\nsome\tO\tsome\tO\nperformance\tO\tperformance\tO\nissues\tO\tissues\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nOracle B-Application Oracle O\nquery\tO\tquery\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndownloaded\tO\tdownloaded\tO\na\tO\ta\tO\ntrial\tO\ttrial\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nQuest B-Application Quest O\nSQL I-Application SQL O\nOptimizer I-Application Optimizer O\nfor\tO\tfor\tO\nOracle B-Application Oracle O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nmade\tO\tmade\tO\nsome\tO\tsome\tO\nchanges\tO\tchanges\tO\nthat\tO\tthat\tO\ndramatically\tO\tdramatically\tO\nimproved\tO\timproved\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\n's\tO\t's\tO\nperformance\tO\tperformance\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nexactly\tO\texactly\tO\nsure\tO\tsure\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\nrecommended\tO\trecommended\tO\nquery\tO\tquery\tO\nhad\tO\thad\tO\nsuch\tO\tsuch\tO\nan\tO\tan\tO\nimprovement\tO\timprovement\tO\n;\tO\t;\tO\ncan\tO\tcan\tO\nanyone\tO\tanyone\tO\nprovide\tO\tprovide\tO\nan\tO\tan\tO\nexplanation\tO\texplanation\tO\n?\tO\t?\tO\n\t\nBefore\tO\tBefore\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_177 I-Code_Block Q_177 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPlan\tO\tPlan\tO\nCost\tO\tCost\tO\n:\tO\t:\tO\n831 B-Value 831 O\n\t\nElapsed\tO\tElapsed\tO\nTime\tO\tTime\tO\n:\tO\t:\tO\n00:00:21.40 B-Value 00:00:21.40 O\n\t\nNumber\tO\tNumber\tO\nof\tO\tof\tO\nRecords\tO\tRecords\tO\n:\tO\t:\tO\n40,717 B-Value 40,717 O\n\t\nAfter\tO\tAfter\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_178 I-Code_Block Q_178 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPlan\tO\tPlan\tO\nCost\tO\tCost\tO\n:\tO\t:\tO\n686 B-Value 686 O\n\t\nElapsed\tO\tElapsed\tO\nTime\tO\tTime\tO\n:\tO\t:\tO\n00:00:00.95 B-Value 00:00:00.95 O\n\t\nNumber\tO\tNumber\tO\nof\tO\tof\tO\nRecords\tO\tRecords\tO\n:\tO\t:\tO\n40,717 B-Value 40,717 O\n\t\nQuestions\tO\tQuestions\tO\n:\tO\t:\tO\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nre-arranging\tO\tre-arranging\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntables B-Data_Structure tables O\nin\tO\tin\tO\nthe\tO\tthe\tO\nFROM B-Code_Block FROM B-Code_Block\nclause\tO\tclause\tO\nhelp\tO\thelp\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nadding\tO\tadding\tO\n+ B-Code_Block + B-Code_Block\n0 I-Code_Block 0 I-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nWHERE B-Code_Block WHERE B-Code_Block\nclause\tO\tclause\tO\ncomparisons\tO\tcomparisons\tO\nhelp\tO\thelp\tO\n?\tO\t?\tO\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\n|| B-Code_Block || B-Code_Block\n'' I-Code_Block '' I-Code_Block\n<> I-Code_Block <> I-Code_Block\n' I-Code_Block ' I-Code_Block\nAA I-Code_Block AA I-Code_Block\n' B-Code_Block ' B-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\nWHERE B-Code_Block WHERE B-Code_Block\nclause\tO\tclause\tO\nVERSION_NAME B-Code_Block VERSION_NAME B-Code_Block\ncomparison\tO\tcomparison\tO\nhelp\tO\thelp\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthis\tO\tthis\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nof\tO\tof\tO\nhandling\tO\thandling\tO\npossible\tO\tpossible\tO\nnulls B-Value nulls B-Code_Block\non\tO\ton\tO\nthis\tO\tthis\tO\ncolumn B-Data_Structure column O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2759665\tO\t2759665\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2759665/\tO\thttps://stackoverflow.com/questions/2759665/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nrun\tO\trun\tO\nboth\tO\tboth\tO\nstatements\tO\tstatements\tO\nthrough\tO\tthrough\tO\nan\tO\tan\tO\nexplain B-Code_Block explain O\nplan I-Code_Block plan O\n,\tO\t,\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nyourself\tO\tyourself\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nissue\tO\tissue\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_267 I-Code_Block A_267 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\n's\tO\t's\tO\nstill\tO\tstill\tO\nnot\tO\tnot\tO\nclear\tO\tclear\tO\nwhy\tO\twhy\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\noccurs\tO\toccurs\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nplease\tO\tplease\tO\npaste\tO\tpaste\tO\nthe\tO\tthe\tO\noutput\tO\toutput\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nRegards\tO\tRegards\tO\n,\tO\t,\tO\n\t\nRob B-User_Name Rob O\n.\tO\t.\tO\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\n+ B-Code_Block + O\n0 I-Code_Block 0 O\n\"\tO\t\"\tO\nand\tO\tand\tO\n\"\tO\t\"\tO\n|| B-Code_Block || O\n''\tO\t''\tO\n\"\tO\t\"\tO\nare\tO\tare\tO\njust\tO\tjust\tO\ntricks\tO\ttricks\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nregular\tO\tregular\tO\nindexes\tO\tindexes\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncolumns B-Data_Structure columns O\nare\tO\tare\tO\nnot\tO\tnot\tO\nbeing\tO\tbeing\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\nThey\tO\tThey\tO\nalso\tO\talso\tO\nmake\tO\tmake\tO\nyour\tO\tyour\tO\nquery\tO\tquery\tO\nless\tO\tless\tO\nreadable\tO\treadable\tO\n,\tO\t,\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwould\tO\twould\tO\ntune\tO\ttune\tO\nthem\tO\tthem\tO\nmyself\tO\tmyself\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nrelying\tO\trelying\tO\non\tO\ton\tO\na\tO\ta\tO\ntool\tO\ttool\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2759665\tO\t2759665\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2759665/\tO\thttps://stackoverflow.com/questions/2759665/\tO\n\t\n\t\nAlmost\tO\tAlmost\tO\ncertainly\tO\tcertainly\tO\nthe\tO\tthe\tO\nstatistics\tO\tstatistics\tO\non\tO\ton\tO\nthese\tO\tthese\tO\ntables B-Data_Structure tables O\nare\tO\tare\tO\nwrong\tO\twrong\tO\n,\tO\t,\tO\ncausing\tO\tcausing\tO\nthe\tO\tthe\tO\noptimizer\tO\toptimizer\tO\nto\tO\tto\tO\nchoose\tO\tchoose\tO\na\tO\ta\tO\npoor\tO\tpoor\tO\nplan\tO\tplan\tO\n.\tO\t.\tO\n\t\nGather\tO\tGather\tO\nstats\tO\tstats\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ntables B-Data_Structure tables O\nand\tO\tand\tO\nindexes\tO\tindexes\tO\n(\tO\t(\tO\nor\tO\tor\tO\nget\tO\tget\tO\nyour\tO\tyour\tO\nDBA\tO\tDBA\tO\nto\tO\tto\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nin\tO\tin\tO\ncontrol\tO\tcontrol\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nthing\tO\tthing\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\ntry\tO\ttry\tO\nyour\tO\tyour\tO\nqueries\tO\tqueries\tO\nagain\tO\tagain\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n2980010\tO\t2980010\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2980010/\tO\thttps://stackoverflow.com/questions/2980010/\tO\n\t\n\t\nThe\tO\tThe\tO\nfollowing\tO\tfollowing\tO\npage\tO\tpage\tO\nshows\tO\tshows\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nload\tO\tload\tO\nexternal\tO\texternal\tO\nimages B-User_Interface_Element images O\nin\tO\tin\tO\nAS3 B-Language AS3 O\nDataGrid B-Class DataGrid O\n:\tO\t:\tO\nhttp://www.adobe.com/devnet/flash/quickstart/datagrid_pt3/\tO\thttp://www.adobe.com/devnet/flash/quickstart/datagrid_pt3/\tO\n(\tO\t(\tO\nimage B-User_Interface_Element image O\nand\tO\tand\tO\ntext B-User_Interface_Element text O\nare\tO\tare\tO\ndisplayed\tO\tdisplayed\tO\nin\tO\tin\tO\ntwo\tO\ttwo\tO\ncolumns B-User_Interface_Element columns O\n)\tO\t)\tO\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nwonder\tO\twonder\tO\nhow\tO\thow\tO\nthe\tO\tthe\tO\nimage B-User_Interface_Element image O\nand\tO\tand\tO\ntext B-User_Interface_Element text O\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nloaded\tO\tloaded\tO\ntogether\tO\ttogether\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nDataGrid B-Class DataGrid O\n.\tO\t.\tO\n\t\nWithin\tO\tWithin\tO\none\tO\tone\tO\ncolumn B-User_Interface_Element column O\n:\tO\t:\tO\nImage B-User_Interface_Element Image O\nfollowed\tO\tfollowed\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ntext B-User_Interface_Element text O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nget\tO\tget\tO\nit\tO\tit\tO\nwork\tO\twork\tO\nso\tO\tso\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nbe\tO\tbe\tO\ngrateful\tO\tgrateful\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nwith\tO\twith\tO\nexamples\tO\texamples\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n2980010\tO\t2980010\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/2980010/\tO\thttps://stackoverflow.com/questions/2980010/\tO\n\t\n\t\nYou\tO\tYou\tO\njust\tO\tjust\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nCellRenderer B-Class CellRenderer O\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nreally\tO\treally\tO\nread\tO\tread\tO\nand\tO\tand\tO\nunderstand\tO\tunderstand\tO\nthat\tO\tthat\tO\npage\tO\tpage\tO\nyou\tO\tyou\tO\nlinked\tO\tlinked\tO\n,\tO\t,\tO\nthey\tO\tthey\tO\nexplain\tO\texplain\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\ncustom\tO\tcustom\tO\nCellRenderers B-Class CellRenderers O\n,\tO\t,\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nput\tO\tput\tO\nwhatever\tO\twhatever\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nin\tO\tin\tO\na\tO\ta\tO\ncell B-User_Interface_Element cell O\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nimage B-User_Interface_Element image O\nwith\tO\twith\tO\ntext B-User_Interface_Element text O\n,\tO\t,\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\n,\tO\t,\tO\na\tO\ta\tO\ngame\tO\tgame\tO\nof\tO\tof\tO\ntetris\tO\ttetris\tO\n,\tO\t,\tO\nwhatever\tO\twhatever\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15958043\tO\t15958043\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15958043/\tO\thttps://stackoverflow.com/questions/15958043/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nbuilding\tO\tbuilding\tO\na\tO\ta\tO\njoomla B-Application joomla O\n2.5 B-Version 2.5 O\nmodule\tO\tmodule\tO\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\ndata\tO\tdata\tO\npass\tO\tpass\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\nparameter\tO\tparameter\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\nFatal B-Error_Name Fatal O\nerror I-Error_Name error O\n:\tO\t:\tO\nCall\tO\tCall\tO\nto\tO\tto\tO\na\tO\ta\tO\nmember\tO\tmember\tO\nfunction\tO\tfunction\tO\nget() B-Function get() O\non\tO\ton\tO\na\tO\ta\tO\nnon-object\tO\tnon-object\tO\n\t\nMy\tO\tMy\tO\ncode\tO\tcode\tO\nfollows\tO\tfollows\tO\nbelows\tO\tbelows\tO\n:\tO\t:\tO\n\t\nhelper.php B-File_Name helper.php O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1573 I-Code_Block Q_1573 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nmod_feedGrabber.php B-File_Name mod_feedGrabber.php O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1574 I-Code_Block Q_1574 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nmod_feedGrabber.xml B-File_Name mod_feedGrabber.xml O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1575 I-Code_Block Q_1575 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ndefault.php B-File_Name default.php O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1576 I-Code_Block Q_1576 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15958043\tO\t15958043\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15958043/\tO\thttps://stackoverflow.com/questions/15958043/\tO\n\t\n\t\nThe\tO\tThe\tO\nmain\tO\tmain\tO\nproblem\tO\tproblem\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nsupplied\tO\tsupplied\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\n$params B-Variable $params B-Code_Block\nto\tO\tto\tO\nyour\tO\tyour\tO\nhelper\tO\thelper\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nread\tO\tread\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2068 I-Code_Block A_2068 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAlso\tO\tAlso\tO\nyour\tO\tyour\tO\nXML B-Language XML O\nis\tO\tis\tO\ninvalid\tO\tinvalid\tO\n,\tO\t,\tO\nas\tO\tas\tO\nit\tO\tit\tO\n's\tO\t's\tO\nmissing\tO\tmissing\tO\nclosing\tO\tclosing\tO\ntags\tO\ttags\tO\nfor\tO\tfor\tO\nfieldset B-HTML_XML_Tag fieldset B-Code_Block\nand\tO\tand\tO\nfields B-HTML_XML_Tag fields B-Code_Block\ntags\tO\ttags\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nlook\tO\tlook\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2069 I-Code_Block A_2069 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAs\tO\tAs\tO\na\tO\ta\tO\ntip\tO\ttip\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nquick\tO\tquick\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nan\tO\tan\tO\nXML B-File_Type XML O\nfile\tO\tfile\tO\nis\tO\tis\tO\nvalid\tO\tvalid\tO\nby\tO\tby\tO\ndragging\tO\tdragging\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nbrowser B-Application browser O\nwindow\tO\twindow\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\nposted\tO\tposted\tO\nabove\tO\tabove\tO\nresults\tO\tresults\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14784221\tO\t14784221\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14784221/\tO\thttps://stackoverflow.com/questions/14784221/\tO\n\t\n\t\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndetect\tO\tdetect\tO\nif\tO\tif\tO\nvideo B-User_Interface_Element video O\nplayback\tO\tplayback\tO\nis\tO\tis\tO\nrunning\tO\trunning\tO\nor\tO\tor\tO\nnot\tO\tnot\tO\nwith\tO\twith\tO\nWin32 B-Library Win32 O\nAPI I-Library API O\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\naudio\tO\taudio\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndetect\tO\tdetect\tO\nplayback\tO\tplayback\tO\nprocesses\tO\tprocesses\tO\nby\tO\tby\tO\n:\tO\t:\tO\n\t\nenumerate\tO\tenumerate\tO\nplayback\tO\tplayback\tO\ndevices\tO\tdevices\tO\nwith\tO\twith\tO\nMMDeviceEnumerator B-Class MMDeviceEnumerator O\nand\tO\tand\tO\n,\tO\t,\tO\n\t\nfor\tO\tfor\tO\neach\tO\teach\tO\ndevice\tO\tdevice\tO\n,\tO\t,\tO\nenumerate\tO\tenumerate\tO\nsessions\tO\tsessions\tO\nwith\tO\twith\tO\nIaudiosessionManager B-Class IaudiosessionManager O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\nsimilar\tO\tsimilar\tO\nthing\tO\tthing\tO\nfor\tO\tfor\tO\nvideo B-User_Interface_Element video O\nplayback\tO\tplayback\tO\n.\tO\t.\tO\n\t\nIdeally\tO\tIdeally\tO\n,\tO\t,\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\napplication\tO\tapplication\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nimpossible\tO\timpossible\tO\n,\tO\t,\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nspecific\tO\tspecific\tO\nframework\tO\tframework\tO\n(\tO\t(\tO\nDirectShow B-Library DirectShow O\n,\tO\t,\tO\nMedia B-Library Media O\nFoundation I-Library Foundation O\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nis\tO\tis\tO\nok\tO\tok\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10358109\tO\t10358109\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10358109/\tO\thttps://stackoverflow.com/questions/10358109/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\ntwitter B-Library twitter O\nbootstrap I-Library bootstrap O\nand\tO\tand\tO\nin\tO\tin\tO\ncustom\tO\tcustom\tO\ncss B-Language css O\nsaying\tO\tsaying\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_918 I-Code_Block Q_918 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhen\tO\twhen\tO\nadded\tO\tadded\tO\n,\tO\t,\tO\nit\tO\tit\tO\nalways\tO\talways\tO\ndisplays\tO\tdisplays\tO\nvertical\tO\tvertical\tO\nscrollbar B-User_Interface_Element scrollbar O\n.\tO\t.\tO\n\t\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nfix\tO\tfix\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10358109\tO\t10358109\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10358109/\tO\thttps://stackoverflow.com/questions/10358109/\tO\n\t\n\t\nadd\tO\tadd\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncss B-Language css O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1312 I-Code_Block A_1312 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44413280\tO\t44413280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44413280/\tO\thttps://stackoverflow.com/questions/44413280/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nworking\tO\tworking\tO\n(\tO\t(\tO\nin\tO\tin\tO\nmacOS B-Operating_System macOS O\napp\tO\tapp\tO\nPatterns\tO\tPatterns\tO\n)\tO\t)\tO\nRegExp\tO\tRegExp\tO\nthat\tO\tthat\tO\nreformats\tO\treformats\tO\nGeoJSON B-File_Type GeoJSON O\nMultiPolygon\tO\tMultiPolygon\tO\ncoordinates\tO\tcoordinates\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nescape\tO\tescape\tO\nit\tO\tit\tO\nfor\tO\tfor\tO\nsed B-Code_Block sed B-Code_Block\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nfile\tO\tfile\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nis\tO\tis\tO\nover\tO\tover\tO\n90\tO\t90\tO\nMb\tO\tMb\tO\nin\tO\tin\tO\nsize\tO\tsize\tO\n,\tO\t,\tO\nso\tO\tso\tO\nbash B-Application bash O\nterminal I-Application terminal O\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nideal\tO\tideal\tO\nplace\tO\tplace\tO\nand\tO\tand\tO\nsed B-Code_Block sed B-Code_Block\nthe\tO\tthe\tO\nperfect\tO\tperfect\tO\ntool\tO\ttool\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\njob\tO\tjob\tO\n.\tO\t.\tO\n\t\nSearch\tO\tSearch\tO\nText\tO\tText\tO\nExample\tO\tExample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5770 I-Code_Block Q_5770 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDesired\tO\tDesired\tO\noutcome\tO\toutcome\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5771 I-Code_Block Q_5771 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\ncurrent\tO\tcurrent\tO\nRegExp\tO\tRegExp\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5772 I-Code_Block Q_5772 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nreformatting\tO\treformatting\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5773 I-Code_Block Q_5773 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ncommand\tO\tcommand\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nsomething\tO\tsomething\tO\nalong\tO\talong\tO\nthese\tO\tthese\tO\nlines\tO\tlines\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5774 I-Code_Block Q_5774 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nwhat\tO\twhat\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nescaped\tO\tescaped\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nRegExp\tO\tRegExp\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nMy\tO\tMy\tO\nattempts\tO\tattempts\tO\nalways\tO\talways\tO\ncomplain\tO\tcomplain\tO\nof\tO\tof\tO\nbeing\tO\tbeing\tO\nunbalanced\tO\tunbalanced\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nsorry\tO\tsorry\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nhas\tO\thas\tO\nalready\tO\talready\tO\nbeen\tO\tbeen\tO\nanswered\tO\tanswered\tO\nelsewhere\tO\telsewhere\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\nn't\tO\tn't\tO\nfind\tO\tfind\tO\neven\tO\teven\tO\nafter\tO\tafter\tO\nextensive\tO\textensive\tO\nsearching\tO\tsearching\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n2017-01-07\tO\t2017-01-07\tO\n:\tO\t:\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nclear\tO\tclear\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\ncontains\tO\tcontains\tO\nproperties\tO\tproperties\tO\nother\tO\tother\tO\nthan\tO\tthan\tO\njust\tO\tjust\tO\nthe\tO\tthe\tO\nGPS-points\tO\tGPS-points\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nexample\tO\texample\tO\nvalues\tO\tvalues\tO\npicked\tO\tpicked\tO\nfrom\tO\tfrom\tO\nGeoJSON B-File_Type GeoJSON O\nFeature\tO\tFeature\tO\nproperties\tO\tproperties\tO\nis\tO\tis\tO\n\" B-Value \" B-Code_Block\n35.642.1.001_001 I-Value 35.642.1.001_001 I-Code_Block\n\" I-Value \" I-Code_Block\n,\tO\t,\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nleft\tO\tleft\tO\nunchanged\tO\tunchanged\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbraces\tO\tbraces\tO\ncheck\tO\tcheck\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\noriginal\tO\toriginal\tO\nregex\tO\tregex\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nreason\tO\treason\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44413280\tO\t44413280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44413280/\tO\thttps://stackoverflow.com/questions/44413280/\tO\n\t\n\t\nThat\tO\tThat\tO\nregex\tO\tregex\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nlegal\tO\tlegal\tO\nin\tO\tin\tO\nsed B-Code_Block sed B-Code_Block\n;\tO\t;\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\nuses\tO\tuses\tO\nPerl B-Language Perl O\nsyntax\tO\tsyntax\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nrecommendation\tO\trecommendation\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nperl B-Language perl B-Code_Block\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nregular\tO\tregular\tO\nexpression\tO\texpression\tO\nworks\tO\tworks\tO\nexactly\tO\texactly\tO\nas-is\tO\tas-is\tO\n,\tO\t,\tO\nand\tO\tand\tO\neven\tO\teven\tO\nthe\tO\tthe\tO\ncommand B-Application command O\nline I-Application line O\nis\tO\tis\tO\nalmost\tO\talmost\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\n;\tO\t;\tO\nyou\tO\tyou\tO\njust\tO\tjust\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\n-p B-Code_Block -p B-Code_Block\noption\tO\toption\tO\nto\tO\tto\tO\nget\tO\tget\tO\nperl B-Language perl B-Code_Block\nto\tO\tto\tO\noperate\tO\toperate\tO\nin\tO\tin\tO\nfilter\tO\tfilter\tO\nmode\tO\tmode\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nsed B-Code_Block sed B-Code_Block\ndoes\tO\tdoes\tO\nby\tO\tby\tO\ndefault\tO\tdefault\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nalso\tO\talso\tO\nrecommend\tO\trecommend\tO\nadding\tO\tadding\tO\nan\tO\tan\tO\nargument\tO\targument\tO\nsuffix\tO\tsuffix\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\n-i B-Code_Block -i B-Code_Block\noption\tO\toption\tO\n(\tO\t(\tO\nwhether\tO\twhether\tO\nusing\tO\tusing\tO\nsed B-Code_Block sed B-Code_Block\nor\tO\tor\tO\nperl B-Language perl B-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nbackup\tO\tbackup\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\ncase\tO\tcase\tO\nsomething\tO\tsomething\tO\ngoes\tO\tgoes\tO\nhorribly\tO\thorribly\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nfor\tO\tfor\tO\nquoting\tO\tquoting\tO\n,\tO\t,\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nsubstitution\tO\tsubstitution\tO\ncommand\tO\tcommand\tO\nin\tO\tin\tO\nsingle\tO\tsingle\tO\nquotation\tO\tquotation\tO\nmarks\tO\tmarks\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6411 I-Code_Block A_6411 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44413280\tO\t44413280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44413280/\tO\thttps://stackoverflow.com/questions/44413280/\tO\n\t\n\t\nA\tO\tA\tO\nsimple\tO\tsimple\tO\nsed B-Code_Block sed O\nwill\tO\twill\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6414 I-Code_Block A_6414 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44660718\tO\t44660718\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44660718/\tO\thttps://stackoverflow.com/questions/44660718/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ncurrently\tO\tcurrently\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nturn\tO\tturn\tO\na\tO\ta\tO\nPython B-Language Python O\nscript\tO\tscript\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nregularly\tO\tregularly\tO\ninto\tO\tinto\tO\nan\tO\tan\tO\napplication\tO\tapplication\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nPlatypus B-Library Platypus O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nmy\tO\tmy\tO\nscript\tO\tscript\tO\nprompts\tO\tprompts\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nfor\tO\tfor\tO\ninput\tO\tinput\tO\nseveral\tO\tseveral\tO\ntimes\tO\ttimes\tO\nand\tO\tand\tO\nuses\tO\tuses\tO\nthat\tO\tthat\tO\ninput\tO\tinput\tO\nto\tO\tto\tO\nconstruct\tO\tconstruct\tO\na\tO\ta\tO\nURL\tO\tURL\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nbeing\tO\tbeing\tO\nused\tO\tused\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nAPI B-Library API O\nrequests\tO\trequests\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nused\tO\tused\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nscript\tO\tscript\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5803 I-Code_Block Q_5803 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ndata\tO\tdata\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\n(\tO\t(\tO\nand\tO\tand\tO\nstored\tO\tstored\tO\nas\tO\tas\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n)\tO\t)\tO\nis\tO\tis\tO\nthen\tO\tthen\tO\nused\tO\tused\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5804 I-Code_Block Q_5804 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSince\tO\tSince\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\ncreated\tO\tcreated\tO\nusing\tO\tusing\tO\nPlatypus B-Library Platypus O\nwo\tO\two\tO\nn't\tO\tn't\tO\nallow\tO\tallow\tO\nfor\tO\tfor\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n(\tO\t(\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nI\tO\tI\tO\nam\tO\tam\tO\nrequesting\tO\trequesting\tO\nit\tO\tit\tO\nthrough\tO\tthrough\tO\nmy\tO\tmy\tO\nscript\tO\tscript\tO\n)\tO\t)\tO\nI\tO\tI\tO\nwas\tO\twas\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nTkinter B-Library Tkinter O\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nread\tO\tread\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\nand\tO\tand\tO\nam\tO\tam\tO\nconfused\tO\tconfused\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nsyntax\tO\tsyntax\tO\n(\tO\t(\tO\nI\tO\tI\tO\nam\tO\tam\tO\nstill\tO\tstill\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nPython B-Language Python O\nin\tO\tin\tO\ngeneral\tO\tgeneral\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nhelp\tO\thelp\tO\n,\tO\t,\tO\nor\tO\tor\tO\nshow\tO\tshow\tO\nan\tO\tan\tO\nexample\tO\texample\tO\nof\tO\tof\tO\nhow\tO\thow\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nmy\tO\tmy\tO\nrequest\tO\trequest\tO\nfor\tO\tfor\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\n(\tO\t(\tO\nbased\tO\tbased\tO\non\tO\ton\tO\nmy\tO\tmy\tO\nexample\tO\texample\tO\nabove\tO\tabove\tO\n)\tO\t)\tO\nusing\tO\tusing\tO\nTkinter B-Library Tkinter O\nso\tO\tso\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nwill\tO\twill\tO\nwork\tO\twork\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nalso\tO\talso\tO\nusing\tO\tusing\tO\nPython B-Language Python O\n2.7 B-Version 2.7 O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44660718\tO\t44660718\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44660718/\tO\thttps://stackoverflow.com/questions/44660718/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nentry B-Class entry B-Code_Block\nwidget\tO\twidget\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\ninput\tO\tinput\tO\nas\tO\tas\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\ntype\tO\ttype\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\nID\tO\tID\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nhit\tO\thit\tO\nthe\tO\tthe\tO\nsubmit\tO\tsubmit\tO\nbutton B-User_Interface_Element button O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nbutton B-User_Interface_Element button O\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ntied\tO\ttied\tO\nto\tO\tto\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nwill\tO\twill\tO\ndo\tO\tdo\tO\nanything\tO\tanything\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nit\tO\tit\tO\nto\tO\tto\tO\nform\tO\tform\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6456 I-Code_Block A_6456 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10948803\tO\t10948803\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10948803/\tO\thttps://stackoverflow.com/questions/10948803/\tO\n\t\n\t\nIn\tO\tIn\tO\nPHP B-Language PHP O\n,\tO\t,\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\na\tO\ta\tO\nuser\tO\tuser\tO\ntypes\tO\ttypes\tO\n:\tO\t:\tO\n\t\n[ B-Code_Block [ B-Code_Block\nLINK I-Code_Block LINK I-Code_Block\n] I-Code_Block ] I-Code_Block\nurl B-Code_Block url B-Code_Block\n[ B-Code_Block [ B-Code_Block\n/LINK I-Code_Block /LINK I-Code_Block\n] I-Code_Block ] I-Code_Block\n\t\nIt\tO\tIt\tO\nwill\tO\twill\tO\nreplace\tO\treplace\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nanchor B-HTML_XML_Tag anchor O\ntag\tO\ttag\tO\n:\tO\t:\tO\n\t\n<a B-Code_Block <a B-Code_Block\nhref=url>url</a> I-Code_Block href=url>url</a> I-Code_Block\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\nshow\tO\tshow\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ntranslate\tO\ttranslate\tO\nthis\tO\tthis\tO\ninto\tO\tinto\tO\nregex B-Library regex O\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntried\tO\ttried\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n:\tO\t:\tO\n\t\n[ B-Code_Block [ B-Code_Block\nLINK I-Code_Block LINK I-Code_Block\n] I-Code_Block ] I-Code_Block\n[ B-Code_Block [ B-Code_Block\na-zA-Z0-9_-. I-Code_Block a-zA-Z0-9_-. I-Code_Block\n] I-Code_Block ] I-Code_Block\n+ I-Code_Block + I-Code_Block\n[ I-Code_Block [ I-Code_Block\n/LINK I-Code_Block /LINK I-Code_Block\n] I-Code_Block ] I-Code_Block\n\t\nBut\tO\tBut\tO\nobviously\tO\tobviously\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\nright\tO\tright\tO\n:(\tO\t:(\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10948803\tO\t10948803\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10948803/\tO\thttps://stackoverflow.com/questions/10948803/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1389 I-Code_Block A_1389 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nExplanation\tO\tExplanation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1390 I-Code_Block A_1390 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10948803\tO\t10948803\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10948803/\tO\thttps://stackoverflow.com/questions/10948803/\tO\n\t\n\t\nCatch\tO\tCatch\tO\nlinks\tO\tlinks\tO\nbut\tO\tbut\tO\nwould\tO\twould\tO\nalways\tO\talways\tO\nrequire\tO\trequire\tO\nleading\tO\tleading\tO\nhttp://\tO\thttp://\tO\nor\tO\tor\tO\nhttps://\tO\thttps://\tO\nelse\tO\telse\tO\nthe\tO\tthe\tO\nurl\tO\turl\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nexample.com/google.com\tO\texample.com/google.com\tO\nalso\tO\talso\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nuse\tO\tuse\tO\npreg_replace_callback() B-Function preg_replace_callback() O\nas\tO\tas\tO\nits\tO\tits\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nxss B-Library xss O\nunsanitized\tO\tunsanitized\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nare\tO\tare\tO\nsome\tO\tsome\tO\nexamples\tO\texamples\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1391 I-Code_Block A_1391 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOr\tO\tOr\tO\nStrip\tO\tStrip\tO\nthe\tO\tthe\tO\nhttp://\tO\thttp://\tO\n&\tO\t&\tO\nhttps://\tO\thttps://\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nthen\tO\tthen\tO\nappend\tO\tappend\tO\nit\tO\tit\tO\nwhen\tO\twhen\tO\noutputting\tO\toutputting\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1392 I-Code_Block A_1392 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOr\tO\tOr\tO\nA\tO\tA\tO\ndifferent\tO\tdifferent\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nBB B-Language BB O\ncode I-Language code O\nlinks\tO\tlinks\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nspecify\tO\tspecify\tO\nLink\tO\tLink\tO\nname\tO\tname\tO\nfrom\tO\tfrom\tO\nlink\tO\tlink\tO\naddress\tO\taddress\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nback\tO\tback\tO\nfunction\tO\tfunction\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nmultiple\tO\tmultiple\tO\ntypes\tO\ttypes\tO\nof\tO\tof\tO\noutputs\tO\toutputs\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1393 I-Code_Block A_1393 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37516509\tO\t37516509\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37516509/\tO\thttps://stackoverflow.com/questions/37516509/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ntables B-Data_Structure tables O\n:\tO\t:\tO\n\t\nAnalyses B-Variable Analyses O\n,\tO\t,\tO\ncolumns(id B-Data_Structure columns(id B-Code_Block\n,\tO\t,\tI-Code_Block\nname B-Variable name I-Code_Block\n,\tO\t,\tI-Code_Block\ngame_id(FK B-Variable game_id(FK I-Code_Block\n)); I-Variable )); I-Code_Block\n\t\nGames B-Variable Games O\n,\tO\t,\tO\ncolumns(id B-Data_Structure columns(id B-Code_Block\n,\tO\t,\tI-Code_Block\nname B-Variable name I-Code_Block\n,\tO\t,\tI-Code_Block\nround_id(FK B-Variable round_id(FK I-Code_Block\n)); I-Variable )); I-Code_Block\n\t\nRound B-Variable Round O\n,\tO\t,\tO\ncolumns(id, B-Data_Structure columns(id, B-Code_Block\nround) B-Variable round) I-Code_Block\n;\tO\t;\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nget\tO\tget\tO\nall\tO\tall\tO\nrecords\tO\trecords\tO\nof\tO\tof\tO\nAnalyses B-Variable Analyses O\norder\tO\torder\tO\nby\tO\tby\tO\n(\tO\t(\tO\nround_id B-Variable round_id B-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntry\tO\ttry\tO\nAnalyses::orderBy('round_id')->get() B-Code_Block Analyses::orderBy('round_id')->get() B-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\n;\tO\t;\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37516509\tO\t37516509\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37516509/\tO\thttps://stackoverflow.com/questions/37516509/\tO\n\t\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ndont\tO\tdont\tO\nhave\tO\thave\tO\nthat\tO\tthat\tO\ncolumn B-Data_Structure column O\nin\tO\tin\tO\nyour\tO\tyour\tO\nanalyses\tO\tanalyses\tO\ntable B-Data_Structure table O\n\t\nto\tO\tto\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\norderby\tO\torderby\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nrelation\tO\trelation\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\ncorrectly\tO\tcorrectly\tO\ndone\tO\tdone\tO\n)\tO\t)\tO\n\t\nAnalyses\tO\tAnalyses\tO\nmodel\tO\tmodel\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5392 I-Code_Block A_5392 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nGames B-Variable Games O\nmodel\tO\tmodel\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5393 I-Code_Block A_5393 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNow\tO\tNow\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nAnalyses B-Variable Analyses O\nwith\tO\twith\tO\nthe\tO\tthe\tO\ngames\tO\tgames\tO\nand\tO\tand\tO\nround\tO\tround\tO\nusing\tO\tusing\tO\neagerloading\tO\teagerloading\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5394 I-Code_Block A_5394 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nchain\tO\tchain\tO\nanother\tO\tanother\tO\norderby\tO\torderby\tO\nfor\tO\tfor\tO\nAnalyses B-Variable Analyses O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nfor\tO\tfor\tO\nexemple\tO\texemple\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5395 I-Code_Block A_5395 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nin\tO\tin\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nexemple\tO\texemple\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nAnalyses\tO\tAnalyses\tO\nordered\tO\tordered\tO\nby\tO\tby\tO\ngame_id B-Variable game_id O\nand\tO\tand\tO\nthe\tO\tthe\tO\ngames\tO\tgames\tO\ninside\tO\tinside\tO\neach\tO\teach\tO\nAnalyse B-Variable Analyse O\nwill\tO\twill\tO\nbe\tO\tbe\tO\norderedby\tO\torderedby\tO\nround_id B-Variable round_id O\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37516509\tO\t37516509\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37516509/\tO\thttps://stackoverflow.com/questions/37516509/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5396 I-Code_Block A_5396 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnalyses B-Variable Analyses O\nmodel\tO\tmodel\tO\n\t\nRound B-Variable Round O\nModel\tO\tModel\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5397 I-Code_Block A_5397 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nGame B-Variable Game O\nModel\tO\tModel\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5398 I-Code_Block A_5398 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYour\tO\tYour\tO\nQuery\tO\tQuery\tO\nShould\tO\tShould\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\nThis\tO\tThis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5399 I-Code_Block A_5399 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10662029\tO\t10662029\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10662029/\tO\thttps://stackoverflow.com/questions/10662029/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nreading\tO\treading\tO\nthe\tO\tthe\tO\nbook\tO\tbook\tO\nProgramming\tO\tProgramming\tB-Code_Block\nEntity\tO\tEntity\tI-Code_Block\nFramework\tO\tFramework\tI-Code_Block\n:\tO\t:\tI-Code_Block\nDbContext\tO\tDbContext\tI-Code_Block\nand\tO\tand\tO\nI\tO\tI\tO\njust\tO\tjust\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nchapter\tO\tchapter\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nthree\tO\tthree\tO\ndata\tO\tdata\tO\nloading\tO\tloading\tO\ntypes\tO\ttypes\tO\n:\tO\t:\tO\n\t\nLazy B-Algorithm Lazy O\nloading I-Algorithm loading O\n(\tO\t(\tO\ndefault\tO\tdefault\tO\n)\tO\t)\tO\n\t\nEager B-Algorithm Eager O\nloading I-Algorithm loading O\n\t\nExplicit B-Algorithm Explicit O\nloading I-Algorithm loading O\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nasking\tO\tasking\tO\nmyself\tO\tmyself\tO\nwhich\tO\twhich\tO\ndata\tO\tdata\tO\nloading\tO\tloading\tO\nis\tO\tis\tO\nbetter\tO\tbetter\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\nsituation\tO\tsituation\tO\n.\tO\t.\tO\n\t\nA\tO\tA\tO\nconcrete\tO\tconcrete\tO\ncomparison\tO\tcomparison\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nnice\tO\tnice\tO\n!\tO\t!\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nfound\tO\tfound\tO\nany\tO\tany\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nusing\tO\tusing\tO\ndefault\tO\tdefault\tO\nlazy B-Algorithm lazy O\nloading I-Algorithm loading O\non\tO\ton\tO\na\tO\ta\tO\nmodule\tO\tmodule\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nclient B-Application client O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmodule\tO\tmodule\tO\ndeals\tO\tdeals\tO\nwith\tO\twith\tO\nsales\tO\tsales\tO\nreps\tO\treps\tO\nand\tO\tand\tO\nimply\tO\timply\tO\nthese\tO\tthese\tO\nrelated\tO\trelated\tO\ntables\tO\ttables\tO\n:\tO\t:\tO\n\t\nReps B-Variable Reps O\n\t\nReps_Zones B-Variable Reps_Zones O\n\t\nReps_Prerequisites B-Variable Reps_Prerequisites O\n\t\nUsers B-Variable Users O\n\t\nReps_Languages B-Variable Reps_Languages O\n\t\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nOn\tO\tOn\tO\nthe\tO\tthe\tO\nmodule\tO\tmodule\tO\n,\tO\t,\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nall\tO\tall\tO\nthese\tO\tthese\tO\ntables\tO\ttables\tO\nto\tO\tto\tO\ndispatch\tO\tdispatch\tO\nappointments\tO\tappointments\tO\n(\tO\t(\tO\nabout\tO\tabout\tO\n150\tO\t150\tO\nappointments\tO\tappointments\tO\nto\tO\tto\tO\n50\tO\t50\tO\nreps\tO\treps\tO\nat\tO\tat\tO\na\tO\ta\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nslow\tO\tslow\tO\n.\tO\t.\tO\n\t\nWould\tO\tWould\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nloading\tO\tloading\tO\nstrategy\tO\tstrategy\tO\nreally\tO\treally\tO\nimprove\tO\timprove\tO\nthe\tO\tthe\tO\nperformances\tO\tperformances\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10662029\tO\t10662029\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10662029/\tO\thttps://stackoverflow.com/questions/10662029/\tO\n\t\n\t\nLazy-loading B-Algorithm Lazy-loading O\nseems\tO\tseems\tO\nmost\tO\tmost\tO\nsuitable\tO\tsuitable\tO\nfor\tO\tfor\tO\nsmaller\tO\tsmaller\tO\napps\tO\tapps\tO\nwithout\tO\twithout\tO\nseparate\tO\tseparate\tO\ndata\tO\tdata\tO\nlayers\tO\tlayers\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\ngrows\tO\tgrows\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nseparating\tO\tseparating\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nseparate\tO\tseparate\tO\nlayers\tO\tlayers\tO\n,\tO\t,\tO\nlazy B-Algorithm lazy O\nloading I-Algorithm loading O\nbecomes\tO\tbecomes\tO\nless\tO\tless\tO\nuseful\tO\tuseful\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nDBcontext B-Class DBcontext O\nhas\tO\thas\tO\nlong\tO\tlong\tO\nsince\tO\tsince\tO\nbeen\tO\tbeen\tO\ndestroyed\tO\tdestroyed\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ntime\tO\ttime\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\ngets\tO\tgets\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nUI\tO\tUI\tO\nlayer\tO\tlayer\tO\n,\tO\t,\tO\nand\tO\tand\tO\nwhile\tO\twhile\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ndatalayer\tO\tdatalayer\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nbig\tO\tbig\tO\ndeal\tO\tdeal\tO\nto\tO\tto\tO\nspecify\tO\tspecify\tO\nthe\tO\tthe\tO\nproperites\tO\tproperites\tO\nto\tO\tto\tO\nload\tO\tload\tO\n.\tO\t.\tO\n\t\nLazy B-Algorithm Lazy O\nloading I-Algorithm loading O\nis\tO\tis\tO\nturned\tO\tturned\tO\noff\tO\toff\tO\nfor\tO\tfor\tO\nvalidation\tO\tvalidation\tO\n,\tO\t,\tO\nso\tO\tso\tO\nif\tO\tif\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nis\tO\tis\tO\nmarked\tO\tmarked\tO\nas\tO\tas\tO\nrequired\tO\trequired\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nonly\tO\tonly\tO\nloaded\tO\tloaded\tO\nthe\tO\tthe\tO\nparent\tO\tparent\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nwill\tO\twill\tO\nalways\tO\talways\tO\nbe\tO\tbe\tO\nthrown\tO\tthrown\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nvery\tO\tvery\tO\nfrustrating\tO\tfrustrating\tO\n.\tO\t.\tO\n\t\nLazy B-Algorithm Lazy O\nloading I-Algorithm loading O\nalso\tO\talso\tO\nmakes\tO\tmakes\tO\ndebugging\tO\tdebugging\tO\nrather\tO\trather\tO\ntricky\tO\ttricky\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nisnt\tO\tisnt\tO\nexecuted\tO\texecuted\tO\nuntil\tO\tuntil\tO\nit\tO\tit\tO\nis\tO\tis\tO\nused\tO\tused\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nexamine\tO\texamine\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\nas\tO\tas\tO\neasily\tO\teasily\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nusually\tO\tusually\tO\nadd\tO\tadd\tO\na\tO\ta\tO\nToList() B-Function ToList() O\nor\tO\tor\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\nEF\tO\tEF\tO\nqueries\tO\tqueries\tO\nso\tO\tso\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\neasily\tO\teasily\tO\nexamine\tO\texamine\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n9304147\tO\t9304147\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9304147/\tO\thttps://stackoverflow.com/questions/9304147/\tO\n\t\n\t\nIt\tO\tIt\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthere\tO\tthere\tO\n's\tO\t's\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfacebook B-Website facebook O\npage\tO\tpage\tO\ntabs B-User_Interface_Element tabs O\n.\tO\t.\tO\n\t\nLots\tO\tLots\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nare\tO\tare\tO\nrendering\tO\trendering\tO\ncontent\tO\tcontent\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbottom\tO\tbottom\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage B-User_Interface_Element page O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nchange\tO\tchange\tO\nthat\tO\tthat\tO\ndevelopers\tO\tdevelopers\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\naware\tO\taware\tO\nof\tO\tof\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9304147\tO\t9304147\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9304147/\tO\thttps://stackoverflow.com/questions/9304147/\tO\n\t\n\t\nProblem\tO\tProblem\tO\nstill\tO\tstill\tO\npersists\tO\tpersists\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbug\tO\tbug\tO\nlisted\tO\tlisted\tO\non\tO\ton\tO\nFacebook B-Website Facebook O\nhttp://developers.facebook.com/bugs/298512163544012?browse=search_4f3c5c801a70d4639459595\tO\thttp://developers.facebook.com/bugs/298512163544012?browse=search_4f3c5c801a70d4639459595\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nit\tO\tit\tO\ngets\tO\tgets\tO\nprioritized\tO\tprioritized\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n9304147\tO\t9304147\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/9304147/\tO\thttps://stackoverflow.com/questions/9304147/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nin\tO\tin\tO\nfact\tO\tfact\tO\na\tO\ta\tO\nbug\tO\tbug\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\njust\tO\tjust\tO\nspent\tO\tspent\tO\nan\tO\tan\tO\nhour\tO\thour\tO\nlooking\tO\tlooking\tO\ninto\tO\tinto\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nappears\tO\tappears\tO\nthat\tO\tthat\tO\nthey\tO\tthey\tO\nhave\tO\thave\tO\nincreased\tO\tincreased\tO\nthe\tO\tthe\tO\nwidth\tO\twidth\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\npane B-User_Interface_Element pane O\nand\tO\tand\tO\nit\tO\tit\tO\nhas\tO\thas\tO\ncaused\tO\tcaused\tO\nthe\tO\tthe\tO\ncontent B-User_Interface_Element content O\narea I-User_Interface_Element area O\nto\tO\tto\tO\nshrink\tO\tshrink\tO\nto\tO\tto\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n520px B-Value 520px O\n.\tO\t.\tO\n\t\nUnfortunately\tO\tUnfortunately\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\niframe B-HTML_XML_Tag iframe O\nthat\tO\tthat\tO\nFacebook B-Website Facebook O\nuses\tO\tuses\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\napp\tO\tapp\tO\ncontent\tO\tcontent\tO\nis\tO\tis\tO\nhardcoded\tO\thardcoded\tO\nwith\tO\twith\tO\na\tO\ta\tO\n520px B-Value 520px O\nwidth\tO\twidth\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nmodify\tO\tmodify\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nNeed\tO\tNeed\tO\nto\tO\tto\tO\nwait\tO\twait\tO\ntill\tO\ttill\tO\nFacebook B-Website Facebook O\npushes\tO\tpushes\tO\nout\tO\tout\tO\nan\tO\tan\tO\nupdate\tO\tupdate\tO\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nBug\tO\tBug\tO\nreported\tO\treported\tO\nto\tO\tto\tO\nfacebook B-Website facebook O\nalready\tO\talready\tO\n.\tO\t.\tO\n\t\nDetails\tO\tDetails\tO\nhere\tO\there\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26677268\tO\t26677268\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26677268/\tO\thttps://stackoverflow.com/questions/26677268/\tO\n\t\n\t\nI\tO\tI\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\nis\tO\tis\tO\nused\tO\tused\tO\nin\tO\tin\tO\nseparate\tO\tseparate\tO\nwindow B-User_Interface_Element window O\nby\tO\tby\tO\nblue B-Application blue O\ngriffon I-Application griffon O\n,\tO\t,\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\nsvg B-File_Type svg O\nin\tO\tin\tO\nplace\tO\tplace\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26677268\tO\t26677268\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26677268/\tO\thttps://stackoverflow.com/questions/26677268/\tO\n\t\n\t\nIn\tO\tIn\tO\ntheory\tO\ttheory\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nopen\tO\topen\tO\nsvg-edit.html B-File_Name svg-edit.html O\nand\tO\tand\tO\nremove\tO\tremove\tO\nany\tO\tany\tO\nhtml B-HTML_XML_Tag html O\n,\tO\t,\tO\nhead B-HTML_XML_Tag head O\n,\tO\t,\tO\nand\tO\tand\tO\nbody B-HTML_XML_Tag body O\ntags\tO\ttags\tO\nand\tO\tand\tO\nmove\tO\tmove\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\npage\tO\tpage\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nload\tO\tload\tO\njs/css B-Language js/css O\nresources\tO\tresources\tO\non\tO\ton\tO\nyour\tO\tyour\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nplace\tO\tplace\tO\nit\tO\tit\tO\ninline\tO\tinline\tO\nthough\tO\tthough\tO\n?\tO\t?\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nstill\tO\tstill\tO\ninteract\tO\tinteract\tO\nwith\tO\twith\tO\nSVG-Edit B-Application SVG-Edit O\neven\tO\teven\tO\nwhile\tO\twhile\tO\nit\tO\tit\tO\n's\tO\t's\tO\nin\tO\tin\tO\nan\tO\tan\tO\niframe B-HTML_XML_Tag iframe O\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nto\tO\tto\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nSVG B-File_Type SVG O\ncontent\tO\tcontent\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nediting\tO\tediting\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4528 I-Code_Block A_4528 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n15375039\tO\t15375039\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15375039/\tO\thttps://stackoverflow.com/questions/15375039/\tO\n\t\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nset\tO\tset\tO\nto\tO\tto\tO\nListBoxItem B-Class ListBoxItem O\ndifferent\tO\tdifferent\tO\nshowing\tO\tshowing\tO\ntext\tO\ttext\tO\nand\tO\tand\tO\ndifferent\tO\tdifferent\tO\nhidden\tO\thidden\tO\nvalue\tO\tvalue\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\nas\tO\tas\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nin\tO\tin\tO\nHTML B-Language HTML O\nthat\tO\tthat\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1499 I-Code_Block Q_1499 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n15375039\tO\t15375039\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/15375039/\tO\thttps://stackoverflow.com/questions/15375039/\tO\n\t\n\t\nOf\tO\tOf\tO\ncourse\tO\tcourse\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nthings\tO\tthings\tO\nwith\tO\twith\tO\nXAML B-Language XAML O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nset\tO\tset\tO\na\tO\ta\tO\nTag B-Function Tag B-Code_Block\nproperty\tO\tproperty\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nListBoxItem B-Class ListBoxItem B-Code_Block\nto\tO\tto\tO\nanything\tO\tanything\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ncommon\tO\tcommon\tO\napproach\tO\tapproach\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nMVVM\tO\tMVVM\tO\npattern\tO\tpattern\tO\nand\tO\tand\tO\nbindings\tO\tbindings\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nwould\tO\twould\tO\nset\tO\tset\tO\nItemsSource B-Function ItemsSource B-Code_Block\nof\tO\tof\tO\nyour\tO\tyour\tO\nListBox B-Class ListBox B-Code_Block\nto\tO\tto\tO\na\tO\ta\tO\ncollection\tO\tcollection\tO\nof\tO\tof\tO\nitems\tO\titems\tO\nand\tO\tand\tO\neach\tO\teach\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nitems\tO\titems\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nproperties\tO\tproperties\tO\nto\tO\tto\tO\ndisplay\tO\tdisplay\tO\nand\tO\tand\tO\nother\tO\tother\tO\nproperties\tO\tproperties\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nelsewhere\tO\telsewhere\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwould\tO\twould\tO\nbind\tO\tbind\tO\nthe\tO\tthe\tO\nvisible\tO\tvisible\tO\nproperties\tO\tproperties\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nelements\tO\telements\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nItemTemplate B-Function ItemTemplate B-Code_Block\nof\tO\tof\tO\nyour\tO\tyour\tO\nListBox B-Class ListBox B-Code_Block\nand\tO\tand\tO\nbind\tO\tbind\tO\nSelectedItem B-Function SelectedItem B-Code_Block\nof\tO\tof\tO\nthe\tO\tthe\tO\nListBox B-Class ListBox B-Code_Block\nwith\tO\twith\tO\na\tO\ta\tO\nTwoWay B-Function TwoWay B-Code_Block\nbinding\tO\tbinding\tO\nto\tO\tto\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nview\tO\tview\tO\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ncare\tO\tcare\tO\nabout\tO\tabout\tO\npatterns\tO\tpatterns\tO\nand\tO\tand\tO\nsimply\tO\tsimply\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsee\tO\tsee\tO\nit\tO\tit\tO\nworking\tO\tworking\tO\n-\tO\t-\tO\ngo\tO\tgo\tO\nahead\tO\tahead\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nTag B-Function Tag B-Code_Block\nand\tO\tand\tO\nthe\tO\tthe\tO\nSelectionChanged B-Function SelectionChanged B-Code_Block\nevent\tO\tevent\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n33803057\tO\t33803057\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33803057/\tO\thttps://stackoverflow.com/questions/33803057/\tO\n\t\n\t\nIn\tO\tIn\tO\nSafari B-Application Safari O\nthe\tO\tthe\tO\ncolors\tO\tcolors\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nshowing\tO\tshowing\tO\nup\tO\tup\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\neverything\tO\teverything\tO\nis\tO\tis\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nIE B-Application IE O\n,\tO\t,\tO\nFF B-Application FF O\nand\tO\tand\tO\nChrome B-Application Chrome O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\ncross-browser B-Application cross-browser O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\naccomplish\tO\taccomplish\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4119 I-Code_Block Q_4119 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4120 I-Code_Block Q_4120 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nSafari B-Application Safari O\nshow\tO\tshow\tO\nthe\tO\tthe\tO\nright\tO\tright\tO\ncolors\tO\tcolors\tO\nfpr\tO\tfpr\tO\nmy\tO\tmy\tO\ncss B-Language css O\nbuttons B-User_Interface_Element buttons O\nand\tO\tand\tO\nbackground B-User_Interface_Element background O\ncolor\tO\tcolor\tO\nand\tO\tand\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\nsolved\tO\tsolved\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nit\tO\tit\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nall\tO\tall\tO\nmajor\tO\tmajor\tO\nbrowsers B-Application browsers O\n?\tO\t?\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nreading\tO\treading\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n1\tO\t1\tO\nScreenshots\tO\tScreenshots\tO\n\t\nAs\tO\tAs\tO\nrequested\tO\trequested\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\n:\tO\t:\tO\nI\tO\tI\tO\nadded\tO\tadded\tO\n2\tO\t2\tO\nscreenshots\tO\tscreenshots\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking.\tO\tworking.\tO\n.\tO\t.\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nblue\tO\tblue\tO\narrow B-User_Interface_Element arrow O\nis\tO\tis\tO\nworking\tO\tworking\tO\nand\tO\tand\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nan\tO\tan\tO\nissue\tO\tissue\tO\n,\tO\t,\tO\njust\tO\tjust\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nincude\tO\tincude\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nSafari B-Application Safari O\nscreen\tO\tscreen\tO\ncapture\tO\tcapture\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbackground B-User_Interface_Element background O\ncolor\tO\tcolor\tO\nand\tO\tand\tO\nthe\tO\tthe\tO\ncolor\tO\tcolor\tO\nused\tO\tused\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ncss B-Language css O\nbuttons B-User_Interface_Element buttons O\nare\tO\tare\tO\nthe\tO\tthe\tO\nissue.\tO\tissue.\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npicture\tO\tpicture\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\na\tO\ta\tO\nfirefox B-Application firefox O\n42 B-Version 42 O\nscreen\tO\tscreen\tO\ncapture\tO\tcapture\tO\n,\tO\t,\tO\nit\tO\tit\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nMSIE B-Application MSIE O\nand\tO\tand\tO\nChrome B-Application Chrome O\nas\tO\tas\tO\nwell\tO\twell\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\npicture\tO\tpicture\tO\nbelow\tO\tbelow\tO\nis\tO\tis\tO\na\tO\ta\tO\nSafari B-Application Safari O\n5.1.7 B-Version 5.1.7 O\nscreen\tO\tscreen\tO\ncapture\tO\tcapture\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n33803057\tO\t33803057\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/33803057/\tO\thttps://stackoverflow.com/questions/33803057/\tO\n\t\n\t\nFor\tO\tFor\tO\nolder\tO\tolder\tO\nversions\tO\tversions\tO\nof\tO\tof\tO\nSafari B-Application Safari O\nuse\tO\tuse\tO\n:\tO\t:\tO\n-webkit-linear-gradient(#FFF,#000) B-Code_Block -webkit-linear-gradient(#FFF,#000) B-Code_Block\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42487521\tO\t42487521\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42487521/\tO\thttps://stackoverflow.com/questions/42487521/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nvector B-Data_Structure vector O\nvariables\tO\tvariables\tO\nas\tO\tas\tO\nglobal B-Data_Type global O\nand\tO\tand\tO\nexterning\tO\texterning\tO\nit\tO\tit\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nin\tO\tin\tO\nanother\tO\tanother\tO\nfile\tO\tfile\tO\n,\tO\t,\tO\nHere\tO\tHere\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\ncode\tO\tcode\tO\n\t\nHeader B-File_Type Header O\nfile\tO\tfile\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5412 I-Code_Block Q_5412 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nheader\tO\theader\tO\nfile\tO\tfile\tO\nhas\tO\thas\tO\nno\tO\tno\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvector B-Data_Structure vector O\nvariables\tO\tvariables\tO\n.\tO\t.\tO\n\t\nMain.cpp B-File_Name Main.cpp O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5413 I-Code_Block Q_5413 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nfunctions.cpp B-File_Name functions.cpp O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5414 I-Code_Block Q_5414 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\nI\tO\tI\tO\nam\tO\tam\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5415 I-Code_Block Q_5415 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nC++ B-Language C++ O\n,\tO\t,\tO\ncould\tO\tcould\tO\nanyone\tO\tanyone\tO\nplease\tO\tplease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42487521\tO\t42487521\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42487521/\tO\thttps://stackoverflow.com/questions/42487521/\tO\n\t\n\t\nchange\tO\tchange\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6121 I-Code_Block A_6121 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nto\tO\tto\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6122 I-Code_Block A_6122 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nbecause\tO\tbecause\tO\nextern B-Code_Block extern B-Code_Block\nstd::vector<Point2f> I-Code_Block std::vector<Point2f> I-Code_Block\nobj_corners(4) I-Code_Block obj_corners(4) I-Code_Block\n; I-Code_Block ; I-Code_Block\nis\tO\tis\tO\na\tO\ta\tO\ndefinition\tO\tdefinition\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\nprovide\tO\tprovide\tO\nan\tO\tan\tO\ninitializer\tO\tinitializer\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nis\tO\tis\tO\na\tO\ta\tO\ndeclaration\tO\tdeclaration\tO\njust\tO\tjust\tO\nto\tO\tto\tO\nlet\tO\tlet\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\nknow\tO\tknow\tO\nthat\tO\tthat\tO\nvector B-Data_Structure vector O\nexists\tO\texists\tO\nsomewhere\tO\tsomewhere\tO\nelse\tO\telse\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n27575753\tO\t27575753\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27575753/\tO\thttps://stackoverflow.com/questions/27575753/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncase\tO\tcase\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nan\tO\tan\tO\noptional B-Data_Type optional O\nI\tO\tI\tO\nhave\tO\thave\tO\nis\tO\tis\tO\nEqual\tO\tEqual\tO\nto\tO\tto\tO\na\tO\ta\tO\nstring B-Data_Type string O\n.\tO\t.\tO\n\t\nFirst\tO\tFirst\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nunwrap\tO\tunwrap\tO\nit\tO\tit\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nit\tO\tit\tO\nexists\tO\texists\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nif\tO\tif\tO\nit\tO\tit\tO\nis\tO\tis\tO\nequal\tO\tequal\tO\nto\tO\tto\tO\nanother\tO\tanother\tO\nstring B-Data_Type string O\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nthat\tO\tthat\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ncode\tO\tcode\tO\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'll\tO\t'll\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3196 I-Code_Block Q_3196 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAs\tO\tAs\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\n,\tO\t,\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nwrite\tO\twrite\tO\nthe\tO\tthe\tO\nelse\tO\telse\tO\nstatement\tO\tstatement\tO\ntwice\tO\ttwice\tO\n.\tO\t.\tO\n\t\nOnce\tO\tOnce\tO\n,\tO\t,\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nname B-Variable name O\nexists\tO\texists\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\n'\tO\t'\tO\nJohn B-Value John O\n'\tO\t'\tO\n,\tO\t,\tO\nand\tO\tand\tO\nanother\tO\tanother\tO\ntime\tO\ttime\tO\nfor\tO\tfor\tO\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nname B-Variable name O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nexist\tO\texist\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n,\tO\t,\tO\nhow\tO\thow\tO\ncan\tO\tcan\tO\nthis\tO\tthis\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nway\tO\tway\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27575753\tO\t27575753\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27575753/\tO\thttps://stackoverflow.com/questions/27575753/\tO\n\t\n\t\nOptional B-Data_Type Optional B-Code_Block\nhas\tO\thas\tO\nan\tO\tan\tO\n== B-Code_Block == B-Code_Block\noperator\tO\toperator\tO\ndefined\tO\tdefined\tO\nfor\tO\tfor\tO\nit\tO\tit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nSwift B-Language Swift O\nstandard\tO\tstandard\tO\nlibrary\tO\tlibrary\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3825 I-Code_Block A_3825 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThat\tO\tThat\tO\nmeans\tO\tmeans\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\noptional B-Data_Type optional O\ncontains\tO\tcontains\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nequatable\tO\tequatable\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncompare\tO\tcompare\tO\ntwo\tO\ttwo\tO\noptionals B-Data_Type optionals O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\noptionals B-Data_Type optionals O\nare\tO\tare\tO\nboth\tO\tboth\tO\nnil\tO\tnil\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\nequal\tO\tequal\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\noptionals B-Data_Type optionals O\nwrap\tO\twrap\tO\nvalues\tO\tvalues\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nequal\tO\tequal\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\nequal\tO\tequal\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\ncare\tO\tcare\tO\nabout\tO\tabout\tO\nwhether\tO\twhether\tO\nperson.name B-Variable person.name B-Code_Block\nis\tO\tis\tO\nnil B-Value nil B-Code_Block\nor\tO\tor\tO\nnot\tO\tnot\tO\n,\tO\t,\tO\njust\tO\tjust\tO\nwhether\tO\twhether\tO\nit\tO\tit\tO\ncontains\tO\tcontains\tO\na\tO\ta\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\n\" B-Value \" O\nJohn I-Value John O\n\" I-Value \" O\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\njust\tO\tjust\tO\nwrite\tO\twrite\tO\nif B-Code_Block if B-Code_Block\nperson.name I-Code_Block person.name I-Code_Block\n== I-Code_Block == I-Code_Block\n\" I-Code_Block \" I-Code_Block\nJohn I-Code_Block John I-Code_Block\n\" I-Code_Block \" I-Code_Block\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndoes\tO\tdoes\tO\nthat\tO\tthat\tO\nwork\tO\twork\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\n\" B-Value \" O\nJohn I-Value John O\n\" I-Value \" O\nis\tO\tis\tO\na\tO\ta\tO\nString B-Data_Type String B-Code_Block\nnot\tO\tnot\tO\na\tO\ta\tO\nString B-Data_Type String B-Code_Block\n?\tO\t?\tI-Code_Block\n?\tO\t?\tO\n\t\n*\tO\t*\tO\nBecause\tO\tBecause\tO\nSwift B-Language Swift O\nwill\tO\twill\tO\nimplicitly\tO\timplicitly\tO\nconvert\tO\tconvert\tO\nany\tO\tany\tO\ntype\tO\ttype\tO\nto\tO\tto\tO\nan\tO\tan\tO\noptional B-Data_Type optional O\nwrapping\tO\twrapping\tO\nthat\tO\tthat\tO\ntype\tO\ttype\tO\nif\tO\tif\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nan\tO\tan\tO\nargument\tO\targument\tO\nrequires\tO\trequires\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\n== B-Code_Block == B-Code_Block\nfunction\tO\tfunction\tO\nfor\tO\tfor\tO\ncomparing\tO\tcomparing\tO\noptionals B-Data_Type optionals O\nrequires\tO\trequires\tO\na\tO\ta\tO\nString B-Data_Type String B-Code_Block\n? I-Data_Type ? I-Code_Block\nargument\tO\targument\tO\n,\tO\t,\tO\n\" B-Value \" O\nJohn I-Value John O\n\" I-Value \" O\nwill\tO\twill\tO\nbe\tO\tbe\tO\nimplicitly\tO\timplicitly\tO\nconverted\tO\tconverted\tO\nto\tO\tto\tO\n{ B-Code_Block { B-Code_Block\nSome I-Code_Block Some I-Code_Block\n\" I-Code_Block \" I-Code_Block\nJohn I-Code_Block John I-Code_Block\n\" I-Code_Block \" I-Code_Block\n} I-Code_Block } I-Code_Block\n,\tO\t,\tO\nallowing\tO\tallowing\tO\nthe\tO\tthe\tO\n== B-Code_Block == B-Code_Block\noperator\tO\toperator\tO\nbetween\tO\tbetween\tO\ntwo\tO\ttwo\tO\noptionals B-Data_Type optionals O\nto\tO\tto\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\n.\tO\t.\tO\n\t\n*\tO\t*\tO\nwell\tO\twell\tO\nactually\tO\tactually\tO\n\" B-Value \" O\nJohn I-Value John O\n\" I-Value \" O\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\nString B-Data_Type String B-Code_Block\neither\tO\teither\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\na\tO\ta\tO\nstring B-Data_Type string O\nliteral\tO\tliteral\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\ngetting\tO\tgetting\tO\nconverted\tO\tconverted\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nString B-Data_Type String B-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n27575753\tO\t27575753\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/27575753/\tO\thttps://stackoverflow.com/questions/27575753/\tO\n\t\n\t\nSince\tO\tSince\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\ntesting\tO\ttesting\tO\nfor\tO\tfor\tO\nthree\tO\tthree\tO\ndifferent\tO\tdifferent\tO\nconditions\tO\tconditions\tO\n,\tO\t,\tO\ncorrect\tO\tcorrect\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nincorrect\tO\tincorrect\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nor\tO\tor\tO\nno\tO\tno\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nduplication\tO\tduplication\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nminimized\tO\tminimized\tO\nby\tO\tby\tO\nextracting\tO\textracting\tO\nthe\tO\tthe\tO\nduplication\tO\tduplication\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3823 I-Code_Block A_3823 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n14108003\tO\t14108003\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14108003/\tO\thttps://stackoverflow.com/questions/14108003/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nconfigured\tO\tconfigured\tO\ndatabase\tO\tdatabase\tO\nproperly\tO\tproperly\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\ntable\tO\ttable\tO\nhello B-Variable hello B-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ndatabase\tO\tdatabase\tO\ncalled\tO\tcalled\tO\ngenes B-Variable genes B-Code_Block\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\nproper\tO\tproper\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\nfrom\tO\tfrom\tO\nbooks.models B-Code_Block books.models B-Code_Block\nimport I-Code_Block import I-Code_Block\nhello I-Code_Block hello I-Code_Block\nas\tO\tas\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nhave\tO\thave\tO\nhello B-Variable hello O\nin\tO\tin\tO\nmodels.py B-File_Name models.py O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ndatabase\tO\tdatabase\tO\ngenes B-Variable genes O\nand\tO\tand\tO\ntable\tO\ttable\tO\nhello B-Variable hello O\nis\tO\tis\tO\nnot\tO\tnot\tO\nthe\tO\tthe\tO\ndefault\tO\tdefault\tO\nDjango B-Library Django O\ndatabase\tO\tdatabase\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntwo\tO\ttwo\tO\ndatabases\tO\tdatabases\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nsetup\tO\tsetup\tO\nRouter B-Class Router B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nnow\tO\tnow\tO\naccess\tO\taccess\tO\ndata\tO\tdata\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n14108003\tO\t14108003\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/14108003/\tO\thttps://stackoverflow.com/questions/14108003/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\na\tO\ta\tO\nfew\tO\tfew\tO\nthings.\tO\tthings.\tO\n.\tO\t.\tO\n\t\nsettings.py B-File_Name settings.py O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1793 I-Code_Block A_1793 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nrouters.py B-File_Name routers.py O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1794 I-Code_Block A_1794 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOne\tO\tOne\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nthis\tO\tthis\tO\nset\tO\tset\tO\nup\tO\tup\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nthe\tO\tthe\tO\nmodels.py B-File_Name models.py O\nfile\tO\tfile\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\n\t\nmodels.py B-File_Name models.py O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1795 I-Code_Block A_1795 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nprogmatically.\tO\tprogmatically.\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1796 I-Code_Block A_1796 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOnce\tO\tOnce\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\ndone\tO\tdone\tO\n-\tO\t-\tO\nyou\tO\tyou\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nQuery B-Class Query O\nusing\tO\tusing\tO\nstandard\tO\tstandard\tO\nDjango B-Library Django O\nquerysets B-Class querysets O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1797 I-Code_Block A_1797 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n42567341\tO\t42567341\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42567341/\tO\thttps://stackoverflow.com/questions/42567341/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nask\tO\task\tO\n,\tO\t,\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nset\tO\tset\tO\nheight B-Variable height O\non\tO\ton\tO\nall\tO\tall\tO\nimages B-User_Interface_Element images O\nwhich\tO\twhich\tO\nare\tO\tare\tO\non\tO\ton\tO\nspecific\tO\tspecific\tO\nlist B-User_Interface_Element list O\nand\tO\tand\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nHTML B-Language HTML O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5424 I-Code_Block Q_5424 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nwithout\tO\twithout\tO\nworking\tO\tworking\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5425 I-Code_Block Q_5425 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nheight B-Variable height O\n:\tO\t:\tO\n10px B-Value 10px O\n!\tO\t!\tO\nimportant\tO\timportant\tO\n;\tO\t;\tO\n\t\n}\tO\t}\tO\n\t\nWhere\tO\tWhere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nCSS B-Language CSS O\nto\tO\tto\tO\nwork\tO\twork\tO\nit\tO\tit\tO\nproperly\tO\tproperly\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nheight B-Variable height O\non\tO\ton\tO\nall\tO\tall\tO\nimages B-User_Interface_Element images O\nwith\tO\twith\tO\nclass\tO\tclass\tO\nproduct-category B-Class product-category O\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nfor\tO\tfor\tO\nhelp\tO\thelp\tO\n,\tO\t,\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nsmall\tO\tsmall\tO\nimprovement\tO\timprovement\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nknow\tO\tknow\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\n.\tO\t.\tO\n\t\nHave\tO\tHave\tO\na\tO\ta\tO\nnice\tO\tnice\tO\nday\tO\tday\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42567341\tO\t42567341\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42567341/\tO\thttps://stackoverflow.com/questions/42567341/\tO\n\t\n\t\nli.product-category B-Code_Block li.product-category B-Code_Block\nproduct>img I-Code_Block product>img I-Code_Block\nselects\tO\tselects\tO\nall\tO\tall\tO\nimages B-User_Interface_Element images O\nthat\tO\tthat\tO\nare\tO\tare\tO\ndirect\tO\tdirect\tO\nchildren\tO\tchildren\tO\nof\tO\tof\tO\nelements\tO\telements\tO\n<product> B-HTML_XML_Tag <product> B-Code_Block\ninside\tO\tinside\tO\nli-s B-HTML_XML_Tag li-s B-Code_Block\nwith\tO\twith\tO\n'\tO\t'\tO\nproduct-category B-Class product-category O\n'\tO\t'\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nweird\tO\tweird\tO\n.\tO\t.\tO\n\t\nTry\tO\tTry\tO\nli.product-category B-Code_Block li.product-category B-Code_Block\nimg I-Code_Block img I-Code_Block\ninstead\tO\tinstead\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n42567341\tO\t42567341\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/42567341/\tO\thttps://stackoverflow.com/questions/42567341/\tO\n\t\n\t\nThe\tO\tThe\tO\n\"\tO\t\"\tO\n>\tO\t>\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nCSS B-Language CSS O\nselector\tO\tselector\tO\nmeans\tO\tmeans\tO\nimmediate\tO\timmediate\tO\nchild\tO\tchild\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nselect\tO\tselect\tO\ning\tO\ting\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nhas\tO\thas\tO\nan\tO\tan\tO\na\tO\ta\tO\ntag\tO\ttag\tO\nbefore\tO\tbefore\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nalso\tO\talso\tO\nchanged\tO\tchanged\tO\nit\tO\tit\tO\nto\tO\tto\tO\nheight B-Variable height O\n,\tO\t,\tO\naccording\tO\taccording\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nlike\tO\tlike\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6136 I-Code_Block A_6136 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nor\tO\tor\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nany\tO\tany\tO\n<img> B-HTML_XML_Tag <img> B-Code_Block\n,\tO\t,\tO\nthen\tO\tthen\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6137 I-Code_Block A_6137 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25643159\tO\t25643159\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25643159/\tO\thttps://stackoverflow.com/questions/25643159/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2914 I-Code_Block Q_2914 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhere\tO\there\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nclass\tO\tclass\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\na\tO\ta\tO\nhomePage B-User_Interface_Element homePage O\nframe B-Class frame O\nwhich\tO\twhich\tO\ncalls\tO\tcalls\tO\nanother\tO\tanother\tO\nclass\tO\tclass\tO\ncalled\tO\tcalled\tO\nProgressSample B-Class ProgressSample O\nwhich\tO\twhich\tO\nwrites\tO\twrites\tO\ndata\tO\tdata\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\noutput B-Class output O\nstream I-Class stream O\nand\tO\tand\tO\nalso\tO\talso\tO\nupdates\tO\tupdates\tO\nthe\tO\tthe\tO\nprogress\tO\tprogress\tO\nbar\tO\tbar\tO\nsimultaneously\tO\tsimultaneously\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2915 I-Code_Block Q_2915 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nclass\tO\tclass\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nwhen\tO\twhen\tO\ni\tO\ti\tO\ncall\tO\tcall\tO\nits\tO\tits\tO\nmain(......) B-Function main(......) O\nmethod\tO\tmethod\tO\njust\tO\tjust\tO\na\tO\ta\tO\nframe B-Class frame O\nwith\tO\twith\tO\nwhite\tO\twhite\tO\ncolor\tO\tcolor\tO\non\tO\ton\tO\nit\tO\tit\tO\nappears\tO\tappears\tO\nnothing\tO\tnothing\tO\nis\tO\tis\tO\nadded\tO\tadded\tO\non\tO\ton\tO\nit\tO\tit\tO\nplz\tO\tplz\tO\nplz\tO\tplz\tO\nplz\tO\tplz\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nwith\tO\twith\tO\nur\tO\tur\tO\nsuggestions\tO\tsuggestions\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\npossible\tO\tpossible\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2916 I-Code_Block Q_2916 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30652409\tO\t30652409\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30652409/\tO\thttps://stackoverflow.com/questions/30652409/\tO\n\t\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\ndifferent\tO\tdifferent\tO\nfrom\tO\tfrom\tO\nfoo.bar B-Variable foo.bar O\ncalling\tO\tcalling\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\ninstance\tO\tinstance\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nseen\tO\tseen\tO\nit\tO\tit\tO\naround\tO\taround\tO\non\tO\ton\tO\ntutorials\tO\ttutorials\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnever\tO\tnever\tO\nexplained\tO\texplained\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\ntoo\tO\ttoo\tO\ngeneral\tO\tgeneral\tO\na\tO\ta\tO\nterm\tO\tterm\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nup\tO\tup\tO\non\tO\ton\tO\ngoogle B-Website google O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30652409\tO\t30652409\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30652409/\tO\thttps://stackoverflow.com/questions/30652409/\tO\n\t\n\t\nOperator\tO\tOperator\tO\noperator-> B-Code_Block operator-> B-Code_Block\ncan\tO\tcan\tO\nonly\tO\tonly\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\non\tO\ton\tO\na\tO\ta\tO\npointer B-Data_Type pointer O\ntype\tO\ttype\tO\n(\tO\t(\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ncase\tO\tcase\tO\nfoo->bar B-Code_Block foo->bar B-Code_Block\nis\tO\tis\tO\nequivalent\tO\tequivalent\tO\nto\tO\tto\tO\n( B-Code_Block ( B-Code_Block\n* I-Code_Block * I-Code_Block\nptr I-Code_Block ptr I-Code_Block\n) I-Code_Block ) I-Code_Block\n.bar B-Code_Block .bar B-Code_Block\n)\tO\t)\tO\nor\tO\tor\tO\na\tO\ta\tO\ntype\tO\ttype\tO\nthat\tO\tthat\tO\noverloads\tO\toverloads\tO\noperator-> B-Code_Block operator-> B-Code_Block\n(\tO\t(\tO\nin\tO\tin\tO\nthat\tO\tthat\tO\ncase\tO\tcase\tO\nthe\tO\tthe\tO\nsemantic\tO\tsemantic\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\nthe\tO\tthe\tO\noverload\tO\toverload\tO\nitself\tO\titself\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nwith\tO\twith\tO\na\tO\ta\tO\npointer B-Data_Type pointer O\ntype\tO\ttype\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4361 I-Code_Block A_4361 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAn\tO\tAn\tO\nexample\tO\texample\tO\nfor\tO\tfor\tO\nan\tO\tan\tO\noverloaded\tO\toverloaded\tO\ntype\tO\ttype\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4362 I-Code_Block A_4362 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30652409\tO\t30652409\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30652409/\tO\thttps://stackoverflow.com/questions/30652409/\tO\n\t\n\t\nfoo->bar B-Code_Block foo->bar O\nis\tO\tis\tO\nused\tO\tused\tO\nwhen\tO\twhen\tO\nfoo B-Variable foo O\nis\tO\tis\tO\npointing\tO\tpointing\tO\nto\tO\tto\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\ndata\tO\tdata\tO\ntype\tO\ttype\tO\n\t\nfoo.bar B-Code_Block foo.bar O\nis\tO\tis\tO\nused\tO\tused\tO\nwhen\tO\twhen\tO\nfoo B-Class foo O\nis\tO\tis\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nof\tO\tof\tO\na\tO\ta\tO\nclass\tO\tclass\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n17403464\tO\t17403464\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17403464/\tO\thttps://stackoverflow.com/questions/17403464/\tO\n\t\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\nService B-Class Service O\nObject\tO\tObject\tO\ncalled\tO\tcalled\tO\nTransaction B-Class Transaction O\nwhich\tO\twhich\tO\nprocesses\tO\tprocesses\tO\nan\tO\tan\tO\norder\tO\torder\tO\nmade\tO\tmade\tO\n,\tO\t,\tO\nsets\tO\tsets\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\npayments\tO\tpayments\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsets\tO\tsets\tO\nup\tO\tup\tO\na\tO\ta\tO\nmodel\tO\tmodel\tO\nassociation\tO\tassociation\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nclass\tO\tclass\tO\nis\tO\tis\tO\ncalled\tO\tcalled\tO\nTransaction B-Class Transaction O\nwith\tO\twith\tO\ntwo\tO\ttwo\tO\nmethods\tO\tmethods\tO\n,\tO\t,\tO\ninitialize B-Function initialize B-Code_Block\nand\tO\tand\tO\npay B-Function pay B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntesting\tO\ttesting\tO\nit\tO\tit\tO\nin\tO\tin\tO\nspec/services/ B-Code_Block spec/services/ B-Code_Block\n(\tO\t(\tO\nit\tO\tit\tO\nis\tO\tis\tO\nin\tO\tin\tO\napp/services B-Code_Block app/services B-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\ninitialize B-Function initialize B-Code_Block\nmethod\tO\tmethod\tO\ntakes\tO\ttakes\tO\nin\tO\tin\tO\nan\tO\tan\tO\naccount B-Variable account B-Code_Block\nand\tO\tand\tO\nsome\tO\tsome\tO\nparameters\tO\tparameters\tO\npassed\tO\tpassed\tO\nin\tO\tin\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nthe\tO\tthe\tO\norder\tO\torder\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ntest\tO\ttest\tO\npay B-Function pay B-Code_Block\nwith\tO\twith\tO\nrspec B-Application rspec O\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ndo\tO\tdo\tO\nI\tO\tI\tO\nactually\tO\tactually\tO\ndo\tO\tdo\tO\nsuch\tO\tsuch\tO\na\tO\ta\tO\ntest\tO\ttest\tO\n?\tO\t?\tO\n\t\nThis\tO\tThis\tO\nfunction\tO\tfunction\tO\nhas\tO\thas\tO\na\tO\ta\tO\nlot\tO\tlot\tO\ngoing\tO\tgoing\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nit\tO\tit\tO\ncreates\tO\tcreates\tO\nnew\tO\tnew\tO\nmodels\tO\tmodels\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsets\tO\tsets\tO\nup\tO\tup\tO\nsome\tO\tsome\tO\nassociations\tO\tassociations\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfar\tO\tfar\tO\n,\tO\t,\tO\nI\tO\tI\tO\ncreated\tO\tcreated\tO\na\tO\ta\tO\ndouble B-Data_Type double O\naccount B-Variable account B-Code_Block\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\n@account B-Code_Block @account B-Code_Block\n= I-Code_Block = I-Code_Block\ndouble I-Code_Block double I-Code_Block\n( I-Code_Block ( I-Code_Block\n\" B-Code_Block \" B-Code_Block\naccount I-Code_Block account I-Code_Block\n\" I-Code_Block \" I-Code_Block\n, I-Code_Block , I-Code_Block\n:confirmed I-Code_Block :confirmed I-Code_Block\n=> I-Code_Block => I-Code_Block\ntrue I-Code_Block true I-Code_Block\n, I-Code_Block , I-Code_Block\n:confirmed I-Code_Block :confirmed I-Code_Block\n? I-Code_Block ? I-Code_Block\n=> I-Code_Block => I-Code_Block\ntrue I-Code_Block true I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nfunctions\tO\tfunctions\tO\n(\tO\t(\tO\nand\tO\tand\tO\nassociations\tO\tassociations\tO\n)\tO\t)\tO\nused\tO\tused\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nTransaction B-Class Transaction O\npay B-Function pay O\nmethod\tO\tmethod\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nfor\tO\tfor\tO\nexample\tO\texample\tO\nwhen\tO\twhen\tO\nthese\tO\tthese\tO\nassociations\tO\tassociations\tO\nare\tO\tare\tO\ncalled\tO\tcalled\tO\n(\tO\t(\tO\nonce\tO\tonce\tO\nI\tO\tI\tO\ncall\tO\tcall\tO\nTransaction.pay B-Function Transaction.pay B-Code_Block\nin\tO\tin\tO\nthe\tO\tthe\tO\ntest\tO\ttest\tO\n)\tO\t)\tO\n,\tO\t,\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nan\tO\tan\tO\nerror\tO\terror\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1769 I-Code_Block Q_1769 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nbusiness B-Variable business B-Code_Block\nmodel\tO\tmodel\tO\nis\tO\tis\tO\na\tO\ta\tO\ndouble B-Data_Type double O\njust\tO\tjust\tO\nlike\tO\tlike\tO\naccount B-Variable account B-Code_Block\n,\tO\t,\tO\nand\tO\tand\tO\nadded\tO\tadded\tO\nas\tO\tas\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\nto\tO\tto\tO\n@account B-Variable @account B-Code_Block\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ntest\tO\ttest\tO\nmy\tO\tmy\tO\nTransaction.pay B-Function Transaction.pay O\nwhen\tO\twhen\tO\nit\tO\tit\tO\ncreates\tO\tcreates\tO\nnew\tO\tnew\tO\nmodels\tO\tmodels\tO\nand\tO\tand\tO\nassociations\tO\tassociations\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\n?\tO\t?\tO\n\t\nDo\tO\tDo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmock\tO\tmock\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nas\tO\tas\tO\nshown\tO\tshown\tO\nabove\tO\tabove\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nusing\tO\tusing\tO\nFactoryGirl B-Application FactoryGirl O\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nam\tO\tam\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nas\tO\tas\tO\nmy\tO\tmy\tO\naccount B-Variable account B-Code_Block\nmodel\tO\tmodel\tO\nuses\tO\tuses\tO\nDevise B-Application Devise O\n.\tO\t.\tO\n\t\nDevise B-Application Devise O\ntest\tO\ttest\tO\nhelpers\tO\thelpers\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nused\tO\tused\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\ncontrollers\tO\tcontrollers\tO\n,\tO\t,\tO\nand\tO\tand\tO\nsince\tO\tsince\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ntesting\tO\ttesting\tO\nin\tO\tin\tO\nservices\tO\tservices\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n17403464\tO\t17403464\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/17403464/\tO\thttps://stackoverflow.com/questions/17403464/\tO\n\t\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nspecific\tO\tspecific\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\nnot\tO\tnot\tO\nprovided\tO\tprovided\tO\nyour\tO\tyour\tO\nTransaction B-Class Transaction O\nclass\tO\tclass\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nat\tO\tat\tO\na\tO\ta\tO\nhigh\tO\thigh\tO\nlevel\tO\tlevel\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\nrecommend\tO\trecommend\tO\n:\tO\t:\tO\n\t\nDo\tO\tDo\tO\nnot\tO\tnot\tO\nuse\tO\tuse\tO\nFactoryGirl B-Application FactoryGirl O\nor\tO\tor\tO\nDevise B-Application Devise O\nhelpers\tO\thelpers\tO\n-\tO\t-\tO\nideally\tO\tideally\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nwriting\tO\twriting\tO\na\tO\ta\tO\nunit\tO\tunit\tO\ntest\tO\ttest\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\n,\tO\t,\tO\nso\tO\tso\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\nany\tO\tany\tO\nexternal\tO\texternal\tO\ndependencies\tO\tdependencies\tO\n.\tO\t.\tO\n\t\nStub\tO\tStub\tO\nout\tO\tout\tO\nany\tO\tany\tO\nmodel\tO\tmodel\tO\ninstances\tO\tinstances\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndealing\tO\tdealing\tO\nwith\tO\twith\tO\n-\tO\t-\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n've\tO\t've\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\naccount B-Variable account B-Code_Block\n.\tO\t.\tO\n\t\nStub\tO\tStub\tO\nout\tO\tout\tO\nany\tO\tany\tO\nexternal\tO\texternal\tO\nclasses\tO\tclasses\tO\nbeing\tO\tbeing\tO\nused\tO\tused\tO\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\nservice\tO\tservice\tO\n(\tO\t(\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nBusiness B-Variable Business B-Code_Block\n)\tO\t)\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ncreating\tO\tcreating\tO\ninstances\tO\tinstances\tO\nof\tO\tof\tO\nthose\tO\tthose\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nclasses\tO\tclasses\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nthey\tO\tthey\tO\n're\tO\t're\tO\ndoubles B-Data_Type doubles O\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\na\tO\ta\tO\nvague\tO\tvague\tO\nexample\tO\texample\tO\nwith\tO\twith\tO\nno\tO\tno\tO\nreal\tO\treal\tO\nimplementation\tO\timplementation\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2289 I-Code_Block A_2289 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\n'll\tO\t'll\tO\nnote\tO\tnote\tO\nI\tO\tI\tO\n've\tO\t've\tO\nonly\tO\tonly\tO\nrequired\tO\trequired\tO\nthe\tO\tthe\tO\ntransaction B-File_Name transaction O\nfile\tO\tfile\tO\n-\tO\t-\tO\nthis\tO\tthis\tO\nhelps\tO\thelps\tO\nyou\tO\tyou\tO\nbe\tO\tbe\tO\naware\tO\taware\tO\nof\tO\tof\tO\nwhat\tO\twhat\tO\nother\tO\tother\tO\nclasses\tO\tclasses\tO\nit\tO\tit\tO\ndepends\tO\tdepends\tO\non\tO\ton\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\n'll\tO\t'll\tO\n(\tO\t(\tO\nideally\tO\tideally\tO\n)\tO\t)\tO\nstub\tO\tstub\tO\nthe\tO\tthe\tO\nconstants\tO\tconstants\tO\n,\tO\t,\tO\nor\tO\tor\tO\nif\tO\tif\tO\nnecessary\tO\tnecessary\tO\n,\tO\t,\tO\nrequire\tO\trequire\tO\nother\tO\tother\tO\nfiles\tO\tfiles\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n'll\tO\t'll\tO\nkeep\tO\tkeep\tO\nthis\tO\tthis\tO\nspec\tO\tspec\tO\n's\tO\t's\tO\nrunning\tO\trunning\tO\ntime\tO\ttime\tO\nmuch\tO\tmuch\tO\nbetter\tO\tbetter\tO\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\n,\tO\t,\tO\nI\tO\tI\tO\nonly\tO\tonly\tO\nstubbed\tO\tstubbed\tO\nconfirmed B-Variable confirmed B-Code_Block\n? I-Variable ? I-Code_Block\n,\tO\t,\tO\nnot\tO\tnot\tO\nconfirmed B-Variable confirmed B-Code_Block\non\tO\ton\tO\nthe\tO\tthe\tO\naccount B-Variable account O\ndouble B-Data_Type double O\n.\tO\t.\tO\n\t\nFrom\tO\tFrom\tO\na\tO\ta\tO\nRails B-Library Rails O\nperspective\tO\tperspective\tO\nthey\tO\tthey\tO\nmean\tO\tmean\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\n's\tO\t's\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\none\tO\tone\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nconsistently\tO\tconsistently\tO\n,\tO\t,\tO\ninstead\tO\tinstead\tO\nof\tO\tof\tO\nboth\tO\tboth\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\na\tO\ta\tO\nton\tO\tton\tO\nof\tO\tof\tO\nsetup\tO\tsetup\tO\n(\tO\t(\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nconstants\tO\tconstants\tO\nand\tO\tand\tO\ntest\tO\ttest\tO\ndoubles B-Data_Type doubles O\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nI\tO\tI\tO\n'd\tO\t'd\tO\ntake\tO\ttake\tO\nthat\tO\tthat\tO\nas\tO\tas\tO\na\tO\ta\tO\nsign\tO\tsign\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nTransaction B-Class Transaction O\nclass\tO\tclass\tO\nprobably\tO\tprobably\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nbroken\tO\tbroken\tO\nup\tO\tup\tO\ninto\tO\tinto\tO\nseveral\tO\tseveral\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\nclasses\tO\tclasses\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16778041\tO\t16778041\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16778041/\tO\thttps://stackoverflow.com/questions/16778041/\tO\n\t\n\t\nMy\tO\tMy\tO\nsql B-Language sql O\nschema\tO\tschema\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nsqlfiddle B-Application sqlfiddle O\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nShow\tO\tShow\tO\nthe\tO\tthe\tO\nTransactionID B-Variable TransactionID O\n,\tO\t,\tO\nDoctorID B-Variable DoctorID O\n,\tO\t,\tO\nPatientID B-Variable PatientID O\n,\tO\t,\tO\nand\tO\tand\tO\nTotalMedicine B-Variable TotalMedicine O\n(\tO\t(\tO\nobtained\tO\tobtained\tO\nfrom\tO\tfrom\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nMedicineID B-Variable MedicineID O\non\tO\ton\tO\neach\tO\teach\tO\ntransaction\tO\ttransaction\tO\n)\tO\t)\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\n3\tO\t3\tO\ndigits\tO\tdigits\tO\nnumbers\tO\tnumbers\tO\nof\tO\tof\tO\nPatientID B-Variable PatientID O\nare\tO\tare\tO\nmultiples\tO\tmultiples\tO\nof\tO\tof\tO\n4\tO\t4\tO\n.\tO\t.\tO\n\t\nSort\tO\tSort\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nascending\tO\tascending\tO\nby\tO\tby\tO\nDoctorID B-Variable DoctorID O\n,\tO\t,\tO\nthen\tO\tthen\tO\ncount\tO\tcount\tO\nthe\tO\tthe\tO\nTotalMedicine B-Variable TotalMedicine O\nthe\tO\tthe\tO\nlargest\tO\tlargest\tO\n,\tO\t,\tO\nsmallest\tO\tsmallest\tO\nand\tO\tand\tO\naverage\tO\taverage\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nDoctor B-Variable Doctor O\nID I-Variable ID O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ntried\tO\ttried\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_1686 I-Code_Block Q_1686 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nbut\tO\tbut\tO\nit\tO\tit\tO\ndidnot\tO\tdidnot\tO\nselect\tO\tselect\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\n3\tO\t3\tO\ndigit\tO\tdigit\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nPatientID B-Variable PatientID O\nthat\tO\tthat\tO\nare\tO\tare\tO\nmultiplies\tO\tmultiplies\tO\nof\tO\tof\tO\n4.\tO\t4.\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16778041\tO\t16778041\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16778041/\tO\thttps://stackoverflow.com/questions/16778041/\tO\n\t\n\t\nAdd\tO\tAdd\tO\nWhere B-Code_Block Where B-Code_Block\nCast(Substring(PatientId I-Code_Block Cast(Substring(PatientId I-Code_Block\n, I-Code_Block , I-Code_Block\nLen(PatientId I-Code_Block Len(PatientId I-Code_Block\n) I-Code_Block ) I-Code_Block\n- I-Code_Block - I-Code_Block\n2 I-Code_Block 2 I-Code_Block\n, I-Code_Block , I-Code_Block\n3 I-Code_Block 3 I-Code_Block\n) I-Code_Block ) I-Code_Block\nas I-Code_Block as I-Code_Block\nInteger I-Code_Block Integer I-Code_Block\n) I-Code_Block ) I-Code_Block\n% I-Code_Block % I-Code_Block\n4 I-Code_Block 4 I-Code_Block\n= I-Code_Block = I-Code_Block\n0 I-Code_Block 0 I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2179 I-Code_Block A_2179 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16778041\tO\t16778041\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16778041/\tO\thttps://stackoverflow.com/questions/16778041/\tO\n\t\n\t\nAssuming\tO\tAssuming\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nchange\tO\tchange\tO\nyour\tO\tyour\tO\nschema\tO\tschema\tO\nto\tO\tto\tO\ngive\tO\tgive\tO\ntableHeader\tO\ttableHeader\tB-Code_Block\na\tO\ta\tO\nvarchar B-Data_Type varchar B-Code_Block\ndata\tO\tdata\tO\ntype\tO\ttype\tO\n,\tO\t,\tO\nor\tO\tor\tO\na\tO\ta\tO\nchar(5) B-Data_Type char(5) B-Code_Block\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\naccount\tO\taccount\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nspaces\tO\tspaces\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncolumn B-Data_Structure column O\n.\tO\t.\tO\n\t\nRTRIM B-Code_Block RTRIM O\nwill\tO\twill\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2180 I-Code_Block A_2180 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3989100\tO\t3989100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3989100/\tO\thttps://stackoverflow.com/questions/3989100/\tO\n\t\n\t\nIn\tO\tIn\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n$ B-Code_Block $ O\nthis->forward404 I-Code_Block this->forward404 O\n( I-Code_Block ( O\n\" I-Code_Block \" O\nData I-Code_Block Data O\nnot I-Code_Block not O\nfound I-Code_Block found O\n\" I-Code_Block \" O\n) I-Code_Block ) O\n; I-Code_Block ; O\nto\tO\tto\tO\noutput\tO\toutput\tO\nindividual\tO\tindividual\tO\nerror\tO\terror\tO\nmessages\tO\tmessages\tO\nwhen\tO\twhen\tO\nnecessary\tO\tnecessary\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ndev\tO\tdev\tO\nmode\tO\tmode\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrun\tO\trun\tO\nmy\tO\tmy\tO\napp\tO\tapp\tO\nin\tO\tin\tO\nproduction\tO\tproduction\tO\nmode\tO\tmode\tO\n-\tO\t-\tO\nwhere\tO\twhere\tO\ndebug\tO\tdebug\tO\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\nfalse B-Value false O\nin\tO\tin\tO\ngetApplicationConfiguration() B-Function getApplicationConfiguration() O\n-\tO\t-\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nmessages\tO\tmessages\tO\nanymore\tO\tanymore\tO\n.\tO\t.\tO\n\t\nin\tO\tin\tO\nsettings.yml B-File_Name settings.yml O\nI\tO\tI\tO\nset\tO\tset\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\n404 B-Error_Name 404 O\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nall\tO\tall\tO\n:\tO\t:\tO\n.actions\tO\t.actions\tO\n:\tO\t:\tO\nerror_404_module B-Class error_404_module O\n:\tO\t:\tO\nmain B-Function main O\nerror_404_action I-Function error_404_action O\n:\tO\t:\tO\ncustom404 B-Function custom404 O\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nforward404 B-Class forward404 O\nto\tO\tto\tO\nmy\tO\tmy\tO\ncustom404Success.php B-File_Name custom404Success.php O\ntemplate\tO\ttemplate\tO\n??\tO\t??\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3989100\tO\t3989100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3989100/\tO\thttps://stackoverflow.com/questions/3989100/\tO\n\t\n\t\nThe\tO\tThe\tO\n404 B-Error_Name 404 O\nhandling\tO\thandling\tO\nis\tO\tis\tO\ncompletely\tO\tcompletely\tO\ndifferent\tO\tdifferent\tO\nbetween\tO\tbetween\tO\nprod B-Class prod B-Code_Block\nand\tO\tand\tO\ndev B-Class dev B-Code_Block\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nprod B-Class prod B-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nyou\tO\tyou\tO\npass\tO\tpass\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nforward404 B-Class forward404 B-Code_Block\nis\tO\tis\tO\nsimply\tO\tsimply\tO\nwritten\tO\twritten\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlog\tO\tlog\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\npassed\tO\tpassed\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhandler\tO\thandler\tO\naction\tO\taction\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\nways\tO\tways\tO\nto\tO\tto\tO\nget\tO\tget\tO\nround\tO\tround\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nquickest\tO\tquickest\tO\n(\tO\t(\tO\nalbeit\tO\talbeit\tO\ndirtiest\tO\tdirtiest\tO\n)\tO\t)\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nthe\tO\tthe\tO\nmessage\tO\tmessage\tO\nin\tO\tin\tO\na\tO\ta\tO\nstatic B-Data_Type static O\nvariable\tO\tvariable\tO\nsomewhere\tO\tsomewhere\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\n404 B-Error_Name 404 O\nhandler\tO\thandler\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nit\tO\tit\tO\nonce\tO\tonce\tO\nthe\tO\tthe\tO\nprocess\tO\tprocess\tO\ngets\tO\tgets\tO\nthere\tO\tthere\tO\n,\tO\t,\tO\ne.g\tO\te.g\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nyour\tO\tyour\tO\naction\tO\taction\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_410 I-Code_Block A_410 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnd\tO\tAnd\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\n404 B-Error_Name 404 O\nhandler\tO\thandler\tO\n(\tO\t(\tO\nassuming\tO\tassuming\tO\nit\tO\tit\tO\n's\tO\t's\tO\nin\tO\tin\tO\nCommonActions B-Class CommonActions O\n)\tO\t)\tO\n,\tO\t,\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_411 I-Code_Block A_411 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3989100\tO\t3989100\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3989100/\tO\thttps://stackoverflow.com/questions/3989100/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nable\tO\table\tO\nto\tO\tto\tO\nget\tO\tget\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nmethod\tO\tmethod\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nsfError404Exception B-Error_Name sfError404Exception O\n,\tO\t,\tO\nthat\tO\tthat\tO\nhandles\tO\thandles\tO\nrespect\tO\trespect\tO\nof\tO\tof\tO\nenviroment\tO\tenviroment\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ndev B-Class dev O\nit\tO\tit\tO\nsimple\tO\tsimple\tO\nthrows\tO\tthrows\tO\nan\tO\tan\tO\nexception\tO\texception\tO\nand\tO\tand\tO\nin\tO\tin\tO\nprod B-Class prod O\nit\tO\tit\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nhandle\tO\thandle\tO\nvia\tO\tvia\tO\nset_exception_handler(\"my_handle\") B-Function set_exception_handler(\"my_handle\") O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\noverride\tO\toverride\tO\nthis\tO\tthis\tO\nit\tO\tit\tO\n's\tO\t's\tO\npublic\tO\tpublic\tO\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_412 I-Code_Block A_412 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6723135\tO\t6723135\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6723135/\tO\thttps://stackoverflow.com/questions/6723135/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nPardon\tO\tPardon\tO\nmy\tO\tmy\tO\nstupidity\tO\tstupidity\tO\n,\tO\t,\tO\nanyone\tO\tanyone\tO\nknows\tO\tknows\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthem\tO\tthem\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_506 I-Code_Block Q_506 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_507 I-Code_Block Q_507 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_508 I-Code_Block Q_508 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6723135\tO\t6723135\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6723135/\tO\thttps://stackoverflow.com/questions/6723135/\tO\n\t\n\t\n\t\nWill\tO\tWill\tO\ncatch\tO\tcatch\tO\nand\tO\tand\tO\nrethrow\tO\trethrow\tO\nonly\tO\tonly\tO\nexceptions B-Class exceptions O\nderived\tO\tderived\tO\nfrom\tO\tfrom\tO\nException B-Class Exception B-Code_Block\n.\tO\t.\tO\n\t\nWill\tO\tWill\tO\ncatch\tO\tcatch\tO\nand\tO\tand\tO\nrethrow\tO\trethrow\tO\nany\tO\tany\tO\nexception B-Class exception O\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nSince\tO\tSince\tO\nCLRv2 B-Library CLRv2 O\n,\tO\t,\tO\nall\tO\tall\tO\nexceptions B-Class exceptions O\nare\tO\tare\tO\nderived\tO\tderived\tO\nfrom\tO\tfrom\tO\nException B-Class Exception B-Code_Block\nso\tO\tso\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nidentical\tO\tidentical\tO\nto\tO\tto\tO\n1\tO\t1\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nEric B-User_Name Eric O\nLippert I-User_Name Lippert O\n's\tO\t's\tO\ncomment\tO\tcomment\tO\nbelow\tO\tbelow\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWill\tO\tWill\tO\ncatch\tO\tcatch\tO\nany\tO\tany\tO\nexception B-Class exception O\nderived\tO\tderived\tO\nfrom\tO\tfrom\tO\nException B-Class Exception B-Code_Block\nand\tO\tand\tO\nthrow\tO\tthrow\tO\nit\tO\tit\tO\nagain\tO\tagain\tO\n,\tO\t,\tO\nthus\tO\tthus\tO\nresetting\tO\tresetting\tO\nthe\tO\tthe\tO\nstack\tO\tstack\tO\ntrace\tO\ttrace\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nexception B-Class exception O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6723135\tO\t6723135\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6723135/\tO\thttps://stackoverflow.com/questions/6723135/\tO\n\t\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nexample\tO\texample\tO\n1\tO\t1\tO\nand\tO\tand\tO\n2\tO\t2\tO\n.\tO\t.\tO\n\t\nBoth\tO\tBoth\tO\nrethrows\tO\trethrows\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\nexception B-Class exception O\n,\tO\t,\tO\nand\tO\tand\tO\nboth\tO\tboth\tO\ncatches\tO\tcatches\tO\nthe\tO\tthe\tO\ngeneral\tO\tgeneral\tO\nException B-Class Exception B-Code_Block\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nwould\tO\twould\tO\nuse\tO\tuse\tO\nexample\tO\texample\tO\n1\tO\t1\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ncatch\tO\tcatch\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nspecific\tO\tspecific\tO\nexception B-Class exception O\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nDivisionByZeroException B-Class DivisionByZeroException B-Code_Block\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nexample\tO\texample\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nre-throwing\tO\tre-throwing\tO\nthe\tO\tthe\tO\nexception B-Class exception O\n;\tO\t;\tO\nbut\tO\tbut\tO\nthrowing\tO\tthrowing\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nexception B-Class exception O\nobject\tO\tobject\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\ncaught\tO\tcaught\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncauses\tO\tcauses\tO\nthe\tO\tthe\tO\nexception B-Class exception O\nstacktrace\tO\tstacktrace\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nre-set\tO\tre-set\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlocation\tO\tlocation\tO\nwhere\tO\twhere\tO\nyou\tO\tyou\tO\nthrow\tO\tthrow\tO\nit\tO\tit\tO\n-\tO\t-\tO\nwhich\tO\twhich\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nstacktrace\tO\tstacktrace\tO\nthen\tO\tthen\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nlocation\tO\tlocation\tO\nin\tO\tin\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nactually\tO\tactually\tO\noccured\tO\toccured\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n46791815\tO\t46791815\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46791815/\tO\thttps://stackoverflow.com/questions/46791815/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nDurable B-Application Durable O\nfunction I-Application function O\n(\tO\t(\tO\nOrchestration\tO\tOrchestration\tO\nfunction\tO\tfunction\tO\n)\tO\t)\tO\nand\tO\tand\tO\nseen\tO\tseen\tO\nsample\tO\tsample\tO\napplication\tO\tapplication\tO\nas\tO\tas\tO\nper\tO\tper\tO\nMicrosoft B-Website Microsoft O\ndocumentation.So\tO\tdocumentation.So\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nfew\tO\tfew\tO\ndoubts\tO\tdoubts\tO\n.\tO\t.\tO\n\t\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6162 I-Code_Block Q_6162 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nto\tO\tto\tO\ninvoke\tO\tinvoke\tO\nit\tO\tit\tO\nI\tO\tI\tO\nmade\tO\tmade\tO\nHTTP B-Function HTTP O\nPOST I-Function POST O\nrequest\tO\trequest\tO\nusing\tO\tusing\tO\npostman B-Application postman O\nso\tO\tso\tO\nrequest\tO\trequest\tO\nprocessed\tO\tprocessed\tO\nsuccessfully\tO\tsuccessfully\tO\nbut\tO\tbut\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nconfigured\tO\tconfigured\tO\ndifferent\tO\tdifferent\tO\nverb\tO\tverb\tO\nlike\tO\tlike\tO\nHTTP B-Function HTTP O\nGET I-Function GET O\nit\tO\tit\tO\nwas\tO\twas\tO\nresponded\tO\tresponded\tO\nwith\tO\twith\tO\nNotFound B-Error_Name NotFound O\n\"\tO\t\"\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nconsole\tO\tconsole\tO\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\nrequest\tO\trequest\tO\nmade\tO\tmade\tO\nto\tO\tto\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nhttp\tO\thttp\tO\nrequest\tO\trequest\tO\nfrom\tO\tfrom\tO\nbrowser\tO\tbrowser\tO\nresponded\tO\tresponded\tO\nwith\tO\twith\tO\n\"\tO\t\"\tO\nNotFound B-Error_Name NotFound O\n\"\tO\t\"\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nconsole B-Application console O\n.Why\tO\t.Why\tO\nthis\tO\tthis\tO\nhappened\tO\thappened\tO\n?\tO\t?\tO\n\t\nCan\tO\tCan\tO\nI\tO\tI\tO\ninvoke\tO\tinvoke\tO\nany\tO\tany\tO\nOrchestration\tO\tOrchestration\tO\nfunction\tO\tfunction\tO\nwith\tO\twith\tO\nin\tO\tin\tO\ntimer\tO\ttimer\tO\ntrigger\tO\ttrigger\tO\nazure B-Application azure O\nfunction I-Application function O\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nnot\tO\tnot\tO\nwhy\tO\twhy\tO\n?\tO\t?\tO\n\t\nUPDATE\tO\tUPDATE\tO\n:\tO\t:\tO\n\t\nSome\tO\tSome\tO\nadditional\tO\tadditional\tO\ndetails\tO\tdetails\tO\nabout\tO\tabout\tO\nquestion\tO\tquestion\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6163 I-Code_Block Q_6163 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ncan\tO\tcan\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nrequest\tO\trequest\tO\nto\tO\tto\tO\nhttp\tO\thttp\tO\ntrigger\tO\ttrigger\tO\nby\tO\tby\tO\ntimer\tO\ttimer\tO\ntriggred\tO\ttriggred\tO\nwhy\tO\twhy\tO\nbecause\tO\tbecause\tO\nmy\tO\tmy\tO\ndurable\tO\tdurable\tO\nfunction\tO\tfunction\tO\nhas\tO\thas\tO\nlong\tO\tlong\tO\nrunning\tO\trunning\tO\nprocess\tO\tprocess\tO\nso\tO\tso\tO\nif\tO\tif\tO\ninvoke\tO\tinvoke\tO\norchestration\tO\torchestration\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\ntimer\tO\ttimer\tO\ntrigger\tO\ttrigger\tO\nitself\tO\titself\tO\nso\tO\tso\tO\nthere\tO\tthere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\npossibility\tO\tpossibility\tO\nof\tO\tof\tO\ntimer\tO\ttimer\tO\ntriggered\tO\ttriggered\tO\ntimeout\tO\ttimeout\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nwhy\tO\twhy\tO\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nfollow\tO\tfollow\tO\nthis\tO\tthis\tO\napproach.Is\tO\tapproach.Is\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\ninvoke\tO\tinvoke\tO\nby\tO\tby\tO\nabove\tO\tabove\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46791815\tO\t46791815\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46791815/\tO\thttps://stackoverflow.com/questions/46791815/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ngeneral\tO\tgeneral\tO\nAzure B-Application Azure O\nFunctions I-Application Functions O\nbehavior\tO\tbehavior\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nreason\tO\treason\tO\nGET B-Function GET O\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nsample\tO\tsample\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\nconfigured\tO\tconfigured\tO\nto\tO\tto\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nPOST B-Function POST O\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nthe\tO\tthe\tO\n[ B-Variable [ B-Code_Block\nHttpTrigger I-Variable HttpTrigger I-Code_Block\n] I-Variable ] I-Code_Block\nattribute\tO\tattribute\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\nsignature\tO\tsignature\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6792 I-Code_Block A_6792 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nsupport\tO\tsupport\tO\nGET B-Function GET O\n,\tO\t,\tO\nthen\tO\tthen\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nmethods B-Variable methods B-Code_Block\nparameter\tO\tparameter\tO\naccordingly\tO\taccordingly\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6793 I-Code_Block A_6793 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nVisual B-Application Visual O\nStudio I-Application Studio O\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\na\tO\ta\tO\ncaching\tO\tcaching\tO\nbug\tO\tbug\tO\nwhere\tO\twhere\tO\nmaking\tO\tmaking\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nroute\tO\troute\tO\ninformation\tO\tinformation\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nproperly\tO\tproperly\tO\nsaved\tO\tsaved\tO\nwhen\tO\twhen\tO\ndebugging\tO\tdebugging\tO\nlocally\tO\tlocally\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nopened\tO\topened\tO\na\tO\ta\tO\nGitHub B-Website GitHub O\nissue\tO\tissue\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nthat\tO\tthat\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttps://github.com/Azure/Azure-Functions/issues/552\tO\thttps://github.com/Azure/Azure-Functions/issues/552\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nHTTP\tO\tHTTP\tO\ntriggers\tO\ttriggers\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\ndocumentation\tO\tdocumentation\tO\n:\tO\t:\tO\nhttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook\tO\thttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ntrigger\tO\ttrigger\tO\na\tO\ta\tO\nDurable B-Application Durable O\nFunction I-Application Function O\nusing\tO\tusing\tO\na\tO\ta\tO\ntimer\tO\ttimer\tO\ntrigger\tO\ttrigger\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\njust\tO\tjust\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntrigger\tO\ttrigger\tO\ntype\tO\ttype\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6794 I-Code_Block A_6794 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\non\tO\ton\tO\nTimer\tO\tTimer\tO\ntriggers\tO\ttriggers\tO\n,\tO\t,\tO\nsee\tO\tsee\tO\nthis\tO\tthis\tO\ndocumentation\tO\tdocumentation\tO\n:\tO\t:\tO\nhttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer\tO\thttps://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n46791815\tO\t46791815\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/46791815/\tO\thttps://stackoverflow.com/questions/46791815/\tO\n\t\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nBecause\tO\tBecause\tO\nyou\tO\tyou\tO\nspecified\tO\tspecified\tO\nyour\tO\tyour\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ntriggered\tO\ttriggered\tO\non\tO\ton\tO\nPOST B-Function POST O\nonly\tO\tonly\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6790 I-Code_Block A_6790 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nTo\tO\tTo\tO\nenable\tO\tenable\tO\nGET B-Function GET O\n,\tO\t,\tO\nadd\tO\tadd\tO\nget B-Code_Block get B-Code_Block\nto\tO\tto\tO\nmethods B-Variable methods B-Code_Block\nparameter\tO\tparameter\tO\n.\tO\t.\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndefine\tO\tdefine\tO\ntimer-triggered\tO\ttimer-triggered\tO\nfunction\tO\tfunction\tO\nwith\tO\twith\tO\nOrchestrationClient B-Class OrchestrationClient B-Code_Block\ninput\tO\tinput\tO\nbinding\tO\tbinding\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\nHTTP\tO\tHTTP\tO\nfunction\tO\tfunction\tO\n.\tO\t.\tO\n\t\nSample\tO\tSample\tO\ndeclaration\tO\tdeclaration\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6791 I-Code_Block A_6791 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n1446356\tO\t1446356\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1446356/\tO\thttps://stackoverflow.com/questions/1446356/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nrelatively\tO\trelatively\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\ngit B-Application git O\n,\tO\t,\tO\nhaving\tO\thaving\tO\nused\tO\tused\tO\nSubversion B-Application Subversion O\nprimarily\tO\tprimarily\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npast\tO\tpast\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nrecently\tO\trecently\tO\ncloned\tO\tcloned\tO\na\tO\ta\tO\nSubversion B-Application Subversion O\nrepository\tO\trepository\tO\n,\tO\t,\tO\nmade\tO\tmade\tO\nchanges\tO\tchanges\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nset\tO\tset\tO\nup\tO\tup\tO\na\tO\ta\tO\nremote\tO\tremote\tO\nbare\tO\tbare\tO\ngit B-Application git O\nrepository\tO\trepository\tO\nthat\tO\tthat\tO\nfellow\tO\tfellow\tO\ndevelopers\tO\tdevelopers\tO\nwill\tO\twill\tO\nuse\tO\tuse\tO\nas\tO\tas\tO\nwe\tO\twe\tO\nmove\tO\tmove\tO\ntowards\tO\ttowards\tO\ngit B-Application git O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\npushed\tO\tpushed\tO\nchanges\tO\tchanges\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nSVN B-Library SVN O\nrepository\tO\trepository\tO\nyet\tO\tyet\tO\n(\tO\t(\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nn't\tO\tn't\tO\nintentionally\tO\tintentionally\tO\ndone\tO\tdone\tO\nthis\tO\tthis\tO\n!\tO\t!\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\npull\tO\tpull\tO\nin\tO\tin\tO\nnew\tO\tnew\tO\nchanges\tO\tchanges\tO\nfrom\tO\tfrom\tO\nSubversion B-Application Subversion O\nwith\tO\twith\tO\ngit B-Library git O\nsvn I-Library svn O\nrebase I-Library rebase O\n,\tO\t,\tO\nand\tO\tand\tO\nthat\tO\tthat\tO\n's\tO\t's\tO\nabout\tO\tabout\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\ntrouble\tO\ttrouble\tO\nbegan\tO\tbegan\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nillustration\tO\tillustration\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\noutput\tO\toutput\tO\nfrom\tO\tfrom\tO\ngitk B-Application gitk O\n:\tO\t:\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\non\tO\ton\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndelete\tO\tdelete\tO\nthis\tO\tthis\tO\nduplicate\tO\tduplicate\tO\nhistory\tO\thistory\tO\n?\tO\t?\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nlooking\tO\tlooking\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nhelped\tO\thelped\tO\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nhelpful\tO\thelpful\tO\npeople\tO\tpeople\tO\nat\tO\tat\tO\n#git B-Website #git O\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_85 I-Code_Block Q_85 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nis\tO\tis\tO\nthis\tO\tthis\tO\ndoing\tO\tdoing\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n1446356\tO\t1446356\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/1446356/\tO\thttps://stackoverflow.com/questions/1446356/\tO\n\t\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\ntry\tO\ttry\tO\n\t\nin\tO\tin\tO\nmaster\tO\tmaster\tO\nreset\tO\treset\tO\nto\tO\tto\tO\nlatest\tO\tlatest\tO\ncommit\tO\tcommit\tO\nbefore\tO\tbefore\tO\nmerge\tO\tmerge\tO\n\t\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nbranch\tO\tbranch\tO\n\t\nrebase\tO\trebase\tO\nbranch\tO\tbranch\tO\non\tO\ton\tO\nmaster\tO\tmaster\tO\n\t\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nmaster\tO\tmaster\tO\n\t\nmerge\tO\tmerge\tO\nbranch\tO\tbranch\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n28287543\tO\t28287543\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28287543/\tO\thttps://stackoverflow.com/questions/28287543/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\ntable B-Data_Structure table O\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nformat\tO\tformat\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3294 I-Code_Block Q_3294 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\ngroup\tO\tgroup\tO\ndifferent\tO\tdifferent\tO\ncolumn B-Data_Structure column O\nin\tO\tin\tO\na\tO\ta\tO\nbit\tO\tbit\tO\ndifferent\tO\tdifferent\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nbasis\tO\tbasis\tO\nof\tO\tof\tO\nreporting_date B-Variable reporting_date O\nso\tO\tso\tO\nthat\tO\tthat\tO\nmy\tO\tmy\tO\nout\tO\tout\tO\nput\tO\tput\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3295 I-Code_Block Q_3295 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ni.e\tO\ti.e\tO\nthe\tO\tthe\tO\ninterest_payment B-Variable interest_payment O\nshould\tO\tshould\tO\ngrouped\tO\tgrouped\tO\nby\tO\tby\tO\nreporting\tO\treporting\tO\ndate\tO\tdate\tO\nbut\tO\tbut\tO\nwhile\tO\twhile\tO\ngrouping\tO\tgrouping\tO\nthe\tO\tthe\tO\nbalance\tO\tbalance\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ngroup\tO\tgroup\tO\nby\tO\tby\tO\nfirst\tO\tfirst\tO\nrow B-Data_Structure row O\nof\tO\tof\tO\nthat\tO\tthat\tO\nreporting\tO\treporting\tO\ndate\tO\tdate\tO\nonly\tO\tonly\tO\n\t\nso\tO\tso\tO\nfor\tO\tfor\tO\n200401 B-Variable 200401 O\nthe\tO\tthe\tO\ninterest B-Variable interest O\npayment I-Variable payment O\nwill\tO\twill\tO\nbe\tO\tbe\tO\n15 B-Value 15 O\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nbalance B-Variable balance O\nwill\tO\twill\tO\nbe\tO\tbe\tO\nonly\tO\tonly\tO\n10 B-Value 10 O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3296 I-Code_Block Q_3296 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nquery\tO\tquery\tO\ni\tO\ti\tO\nwas\tO\twas\tO\nplanning\tO\tplanning\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nbut\tO\tbut\tO\nobviously\tO\tobviously\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nbalance B-Variable balance O\ncolumn I-Variable column O\n.Is\tO\t.Is\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhandle\tO\thandle\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nsql B-Language sql O\nserver\tO\tserver\tO\nso\tO\tso\tO\nthat\tO\tthat\tO\nin\tO\tin\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nquery\tO\tquery\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\ngroup\tO\tgroup\tO\nby\tO\tby\tO\nparticular\tO\tparticular\tO\nset B-Data_Structure set O\nbut\tO\tbut\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\ni\tO\ti\tO\ncan\tO\tcan\tO\ngroup\tO\tgroup\tO\nby\tO\tby\tO\ndifferent\tO\tdifferent\tO\nset B-Data_Structure set O\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28287543\tO\t28287543\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28287543/\tO\thttps://stackoverflow.com/questions/28287543/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nquery\tO\tquery\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3913 I-Code_Block A_3913 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\nassumption\tO\tassumption\tO\nthat\tO\tthat\tO\nid B-Variable id B-Code_Block\nfield\tO\tfield\tO\ndefines\tO\tdefines\tO\nprecedence\tO\tprecedence\tO\nfor\tO\tfor\tO\nbalance B-Variable balance B-Code_Block\n,\tO\t,\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nthe\tO\tthe\tO\nbalance B-Variable balance B-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nlowest\tO\tlowest\tO\nrelated\tO\trelated\tO\nid B-Variable id B-Code_Block\nvalue\tO\tvalue\tO\ncomes\tO\tcomes\tO\nfirst\tO\tfirst\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n28287543\tO\t28287543\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/28287543/\tO\thttps://stackoverflow.com/questions/28287543/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3912 I-Code_Block A_3912 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n36096263\tO\t36096263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36096263/\tO\thttps://stackoverflow.com/questions/36096263/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nlooking\tO\tlooking\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nsyntax\tO\tsyntax\tO\nto\tO\tto\tO\nallow\tO\tallow\tO\nme\tO\tme\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\nnew\tO\tnew\tO\nobject\tO\tobject\tO\nwith\tO\twith\tO\none\tO\tone\tO\nproperty\tO\tproperty\tO\nand\tO\tand\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nthat\tO\tthat\tO\nproperty\tO\tproperty\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nan\tO\tan\tO\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlove\tO\tlove\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nall\tO\tall\tO\non\tO\ton\tO\none\tO\tone\tO\nline\tO\tline\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4430 I-Code_Block Q_4430 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nShould\tO\tShould\tO\nlog\tO\tlog\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4431 I-Code_Block Q_4431 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nthought\tO\tthought\tO\nI\tO\tI\tO\nsaw\tO\tsaw\tO\nonce\tO\tonce\tO\nthat\tO\tthat\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\npossible\tO\tpossible\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nes-spec\tO\tes-spec\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nbabel-2015 B-Application babel-2015 O\npreset\tO\tpreset\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4432 I-Code_Block Q_4432 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36096263\tO\t36096263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36096263/\tO\thttps://stackoverflow.com/questions/36096263/\tO\n\t\n\t\nYou\tO\tYou\tO\nwill\tO\twill\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\ncomputed\tO\tcomputed\tO\nproperty\tO\tproperty\tO\nnames\tO\tnames\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5154 I-Code_Block A_5154 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names\tO\thttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names\tO\n\t\n(\tO\t(\tO\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nwith\tO\twith\tO\nes2015 B-Version es2015 O\nBabel B-Application Babel O\npreset\tO\tpreset\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n36096263\tO\t36096263\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/36096263/\tO\thttps://stackoverflow.com/questions/36096263/\tO\n\t\n\t\nthis\tO\tthis\tO\nworks\tO\tworks\tO\nfor\tO\tfor\tO\nme\tO\tme\tO\n:\tO\t:\tO\n\t\n*\tO\t*\tO\nnote\tO\tnote\tO\n:\tO\t:\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nthe\tO\tthe\tO\nresult\tO\tresult\tO\nconsoling\tO\tconsoling\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconsole B-Application console O\n.\tO\t.\tO\n\t\nOpen\tO\tOpen\tO\nconsole B-Application console O\nto\tO\tto\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5155 I-Code_Block Q_5155 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n<script B-Code_Block <script B-Code_Block\nsrc=\"https://cdnjs.cloudflare.com/ajax/libs/babel-core/6.1.19/browser.min.js\"></script> I-Code_Block src=\"https://cdnjs.cloudflare.com/ajax/libs/babel-core/6.1.19/browser.min.js\"></script> I-Code_Block\n\t\n0Aconst%20A%20%3D%20%7B%5BL%5D%3A%20responses%7D%0Aconsole.log(A)%0A\tO\t0Aconst%20A%20%3D%20%7B%5BL%5D%3A%20responses%7D%0Aconsole.log(A)%0A\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5156 I-Code_Block A_5156 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nnoted\tO\tnoted\tO\n:\tO\t:\tO\nother\tO\tother\tO\nperson\tO\tperson\tO\ngot\tO\tgot\tO\nin\tO\tin\tO\nbefore\tO\tbefore\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34021288\tO\t34021288\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34021288/\tO\thttps://stackoverflow.com/questions/34021288/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nbuild\tO\tbuild\tO\nappinventor B-Application appinventor O\nlocally\tO\tlocally\tO\non\tO\ton\tO\nwindows B-Operating_System windows O\n7 B-Version 7 O\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndocument\tO\tdocument\tO\n:\tO\t:\tO\nhttps://docs.google.com/document/d/1Xc9yt02x3BRoq5m1PJHBr81OOv69rEBy8LVG_84j9jc/pub#h.5p32kqx16c2d\tO\thttps://docs.google.com/document/d/1Xc9yt02x3BRoq5m1PJHBr81OOv69rEBy8LVG_84j9jc/pub#h.5p32kqx16c2d\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ndownloaded\tO\tdownloaded\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nsoftware\tO\tsoftware\tO\nlisted\tO\tlisted\tO\nin\tO\tin\tO\nsection\tO\tsection\tO\n3\tO\t3\tO\nand\tO\tand\tO\nproceeded\tO\tproceeded\tO\nbuilding\tO\tbuilding\tO\nthe\tO\tthe\tO\napp\tO\tapp\tO\ninventor\tO\tinventor\tO\nby\tO\tby\tO\ncloning\tO\tcloning\tO\na\tO\ta\tO\ngit B-Application git O\nrepository\tO\trepository\tO\nby\tO\tby\tO\nrunning\tO\trunning\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ngit B-Application git O\ncommand\tO\tcommand\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nshell B-Application shell O\n:\tO\t:\tO\ngit B-Code_Block git O\nclone I-Code_Block clone O\nhttps://github.com/mit-cml/appinventor-sources.git\tO\thttps://github.com/mit-cml/appinventor-sources.git\tO\n\t\nI\tO\tI\tO\nkeep\tO\tkeep\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nerror\tO\terror\tO\n:\tO\t:\tO\nfailed\tO\tfailed\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\ngithub\tO\tgithub\tO\n443 B-Error_Name 443 O\nerror I-Error_Name error O\n\t\nI\tO\tI\tO\n've\tO\t've\tO\ntired\tO\ttired\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nGoogle B-Website Google O\nsearch\tO\tsearch\tO\nand\tO\tand\tO\nfound\tO\tfound\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nGitHub B-Website GitHub O\n-\tO\t-\tO\nfailed\tO\tfailed\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\ngithub B-Website github O\n443 B-Error_Name 443 O\nwindows/ B-Operating_System windows/ O\nFailed\tO\tFailed\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\ngitHub B-Website gitHub O\n-\tO\t-\tO\nNo\tO\tNo\tO\nError\tO\tError\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nnot\tO\tnot\tO\nat\tO\tat\tO\nall\tO\tall\tO\nexperienced\tO\texperienced\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nfield\tO\tfield\tO\nso\tO\tso\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nunderstand\tO\tunderstand\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsolutions\tO\tsolutions\tO\nmentioned\tO\tmentioned\tO\n,\tO\t,\tO\ncould\tO\tcould\tO\nyou\tO\tyou\tO\nplease\tO\tplease\tO\ntry\tO\ttry\tO\nand\tO\tand\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nout\tO\tout\tO\nby\tO\tby\tO\ngoing\tO\tgoing\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nsolution\tO\tsolution\tO\nstep\tO\tstep\tO\nby\tO\tby\tO\nstep\tO\tstep\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\na\tO\ta\tO\ncompany\tO\tcompany\tO\nso\tO\tso\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nproxy\tO\tproxy\tO\nlike\tO\tlike\tO\nthey\tO\tthey\tO\nmentioned\tO\tmentioned\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\nfirewall\tO\tfirewall\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nblocking\tO\tblocking\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34021288\tO\t34021288\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34021288/\tO\thttps://stackoverflow.com/questions/34021288/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nbehind\tO\tbehind\tO\nthe\tO\tthe\tO\ncorporate\tO\tcorporate\tO\nfirewall\tO\tfirewall\tO\nand\tO\tand\tO\nif\tO\tif\tO\nall\tO\tall\tO\nyour\tO\tyour\tO\nrequests\tO\trequests\tO\ngoes\tO\tgoes\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\nproxy\tO\tproxy\tO\nserver\tO\tserver\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\nmust\tO\tmust\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nGit B-Application Git O\nproxy\tO\tproxy\tO\nfirst\tO\tfirst\tO\nbefore\tO\tbefore\tO\nrunning\tO\trunning\tO\nany\tO\tany\tO\nget\tO\tget\tO\ncommands\tO\tcommands\tO\nlike\tO\tlike\tO\npull B-Code_Block pull O\n,\tO\t,\tO\nfetch B-Code_Block fetch O\nand\tO\tand\tO\npush B-Code_Block push O\ncommands\tO\tcommands\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nGit B-Application Git O\nproxy\tO\tproxy\tO\nfor\tO\tfor\tO\nHTTP\tO\tHTTP\tO\nand\tO\tand\tO\nHTTPS\tO\tHTTPS\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nGit B-Application Git O\ncommands\tO\tcommands\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ngit B-Application git O\nbash I-Application bash O\nshell I-Application shell O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4873 I-Code_Block A_4873 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCheck\tO\tCheck\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nconfigure\tO\tconfigure\tO\nGit B-Application Git O\nproxy\tO\tproxy\tO\nand\tO\tand\tO\nHow\tO\tHow\tO\nto\tO\tto\tO\nunset\tO\tunset\tO\nthe\tO\tthe\tO\nGit B-Application Git O\nProxy\tO\tProxy\tO\nfor\tO\tfor\tO\nmore\tO\tmore\tO\ndetails\tO\tdetails\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n22928390\tO\t22928390\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22928390/\tO\thttps://stackoverflow.com/questions/22928390/\tO\n\t\n\t\nIf\tO\tIf\tO\nsay\tO\tsay\tO\ni\tO\ti\tO\nam\tO\tam\tO\nhaving\tO\thaving\tO\na\tO\ta\tO\ntextbox B-User_Interface_Element textbox O\ninput\tO\tinput\tO\nand\tO\tand\tO\na\tO\ta\tO\ninteger B-Data_Type integer O\nvalue\tO\tvalue\tO\nA B-Variable A O\nthen\tO\tthen\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ncheck\tO\tcheck\tO\nat\tO\tat\tO\ntime\tO\ttime\tO\nof\tO\tof\tO\ntyping\tO\ttyping\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nitself\tO\titself\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nentered\tO\tentered\tO\nin\tO\tin\tO\ntextbox B-User_Interface_Element textbox O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nexceed\tO\texceed\tO\nA B-Variable A O\n.\tO\t.\tO\n\t\nTextbox B-User_Interface_Element Textbox O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2504 I-Code_Block Q_2504 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nscript B-HTML_XML_Tag script O\n:\tO\t:\tO\n\t\n(\tO\t(\tO\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nanswer\tO\tanswer\tO\nby\tO\tby\tO\nFelix B-User_Name Felix O\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2505 I-Code_Block Q_2505 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFORM B-HTML_XML_Tag FORM O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2506 I-Code_Block Q_2506 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhats\tO\tWhats\tO\nproblem\tO\tproblem\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nthe\tO\tthe\tO\nscript B-HTML_XML_Tag script O\ncode\tO\tcode\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrunning\tO\trunning\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nprinting\tO\tprinting\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nmessage.Please\tO\tmessage.Please\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22928390\tO\t22928390\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22928390/\tO\thttps://stackoverflow.com/questions/22928390/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\n.keyup() B-Function .keyup() O\nevent\tO\tevent\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3104 I-Code_Block A_3104 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFiddle B-Application Fiddle O\nDemo\tO\tDemo\tO\n\t\nBased\tO\tBased\tO\non\tO\ton\tO\nyour\tO\tyour\tO\ncomment\tO\tcomment\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3105 I-Code_Block A_3105 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nFiddle B-Application Fiddle O\nDemo\tO\tDemo\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22928390\tO\t22928390\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22928390/\tO\thttps://stackoverflow.com/questions/22928390/\tO\n\t\n\t\nDo\tO\tDo\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3107 I-Code_Block A_3107 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nDemo\tO\tDemo\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n22928390\tO\t22928390\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/22928390/\tO\thttps://stackoverflow.com/questions/22928390/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3106 I-Code_Block A_3106 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n3601479\tO\t3601479\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3601479/\tO\thttps://stackoverflow.com/questions/3601479/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nClass\tO\tClass\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nhave\tO\thave\tO\ncreated\tO\tcreated\tO\nas\tO\tas\tO\nan\tO\tan\tO\nNSObject B-Class NSObject O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nclass\tO\tclass\tO\nhas\tO\thas\tO\na\tO\ta\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nproperties\tO\tproperties\tO\nof\tO\tof\tO\ndifferent\tO\tdifferent\tO\ntypes\tO\ttypes\tO\nand\tO\tand\tO\nmethods\tO\tmethods\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\ninstantiate\tO\tinstantiate\tO\nthis\tO\tthis\tO\nclass\tO\tclass\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nApp\tO\tApp\tO\n(\tO\t(\tO\nsay\tO\tsay\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmain\tO\tmain\tO\nView B-Class View O\nController I-Class Controller O\n)\tO\t)\tO\nI\tO\tI\tO\n\t\nimmediately\tO\timmediately\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\na\tO\ta\tO\nrelease\tO\trelease\tO\ncall\tO\tcall\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nam\tO\tam\tO\nfinished\tO\tfinished\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nie\tO\tie\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_257 I-Code_Block Q_257 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nSo\tO\tSo\tO\nmy\tO\tmy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\n:\tO\t:\tO\n\t\nWhen\tO\tWhen\tO\nI\tO\tI\tO\nrelease\tO\trelease\tO\nmyObject B-Variable myObject O\n,\tO\t,\tO\ndoes\tO\tdoes\tO\nit\tO\tit\tO\nautomatically\tO\tautomatically\tO\nrelease\tO\trelease\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ndeclared\tO\tdeclared\tO\nobjects\tO\tobjects\tO\n,\tO\t,\tO\nvariables\tO\tvariables\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\nthat\tO\tthat\tO\nI\tO\tI\tO\ndeclared\tO\tdeclared\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nMyObject B-File_Name MyObject O\n.h I-File_Name .h O\nfile\tO\tfile\tO\n?\tO\t?\tO\n\t\nOR\tO\tOR\tO\n\t\nDo\tO\tDo\tO\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\na\tO\ta\tO\ncustom\tO\tcustom\tO\nrelease\tO\trelease\tO\nmethod\tO\tmethod\tO\nwhich\tO\twhich\tO\nreleases\tO\treleases\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nask\tO\task\tO\nbecause\tO\tbecause\tO\nof\tO\tof\tO\nmemory\tO\tmemory\tO\nmanagement\tO\tmanagement\tO\nissues\tO\tissues\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3601479\tO\t3601479\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3601479/\tO\thttps://stackoverflow.com/questions/3601479/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nimplement\tO\timplement\tO\na\tO\ta\tO\ndealloc B-Function dealloc B-Code_Block\nmethod\tO\tmethod\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nobject\tO\tobject\tO\nand\tO\tand\tO\nuse\tO\tuse\tO\nthat\tO\tthat\tO\nmethod\tO\tmethod\tO\nto\tO\tto\tO\nrelease\tO\trelease\tO\nany\tO\tany\tO\nresources\tO\tresources\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nown\tO\town\tO\n.\tO\t.\tO\n\t\nhttp://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmObjectOwnership.html#//apple_ref/doc/uid/20000043-SW4\tO\thttp://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmObjectOwnership.html#//apple_ref/doc/uid/20000043-SW4\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_388 I-Code_Block A_388 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nImportant\tO\tImportant\tO\nnote\tO\tnote\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\nnever\tO\tnever\tO\ncall\tO\tcall\tO\na\tO\ta\tO\ndealloc B-Function dealloc O\nmethod\tO\tmethod\tO\non\tO\ton\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\n,\tO\t,\tO\nit\tO\tit\tO\n's\tO\t's\tO\ninvoked\tO\tinvoked\tO\nautomatically\tO\tautomatically\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nruntime\tO\truntime\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\n's\tO\t's\tO\ntime\tO\ttime\tO\nto\tO\tto\tO\nclean\tO\tclean\tO\nup\tO\tup\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n3601479\tO\t3601479\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/3601479/\tO\thttps://stackoverflow.com/questions/3601479/\tO\n\t\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nissue\tO\tissue\tO\nas\tO\tas\tO\nZigglzworth B-User_Name Zigglzworth B-Code_Block\nand\tO\tand\tO\nit\tO\tit\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nposition\tO\tposition\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\n[\tO\t[\tB-Code_Block\nsuper\tO\tsuper\tI-Code_Block\ndealloc B-Function dealloc I-Code_Block\n]\tO\t]\tI-Code_Block\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nit\tO\tit\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nstart\tO\tstart\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\n-(void)dealloc B-Function -(void)dealloc B-Code_Block\nmethod\tO\tmethod\tO\nand\tO\tand\tO\nit\tO\tit\tO\nwas\tO\twas\tO\ncausing\tO\tcausing\tO\na\tO\ta\tO\ncrash\tO\tcrash\tO\nevery\tO\tevery\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nMoved\tO\tMoved\tO\n[\tO\t[\tB-Code_Block\nsuper\tO\tsuper\tI-Code_Block\ndealloc B-Function dealloc I-Code_Block\n]\tO\t]\tI-Code_Block\nto\tO\tto\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nrelease\tO\trelease\tO\nstatements\tO\tstatements\tO\nand\tO\tand\tO\nnow\tO\tnow\tO\nit\tO\tit\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5147234\tO\t5147234\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5147234/\tO\thttps://stackoverflow.com/questions/5147234/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\noptimization\tO\toptimization\tO\nproblems\tO\tproblems\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nknown\tO\tknown\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nNP-hard\tO\tNP-hard\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\ntraveling\tO\ttraveling\tO\nsalesman\tO\tsalesman\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nMAX-SAT\tO\tMAX-SAT\tO\n,\tO\t,\tO\nor\tO\tor\tO\nfinding\tO\tfinding\tO\nthe\tO\tthe\tO\nminimum\tO\tminimum\tO\nchromatic\tO\tchromatic\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\na\tO\ta\tO\ngraph B-Data_Structure graph O\n.\tO\t.\tO\n\t\nGiven\tO\tGiven\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nsort\tO\tsort\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ncurious\tO\tcurious\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\ncomplexity\tO\tcomplexity\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIntuitively\tO\tIntuitively\tO\n,\tO\t,\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nco-NP\tO\tco-NP\tO\nhard\tO\thard\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nit\tO\tit\tO\n's\tO\t's\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nrefute\tO\trefute\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\nan\tO\tan\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\nby\tO\tby\tO\nguessing\tO\tguessing\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\nand\tO\tand\tO\nusing\tO\tusing\tO\nit\tO\tit\tO\nas\tO\tas\tO\na\tO\ta\tO\nwitness\tO\twitness\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nidea\tO\tidea\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nshow\tO\tshow\tO\nthis\tO\tthis\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\nreason\tO\treason\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\ncomplexity\tO\tcomplexity\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nDoes\tO\tDoes\tO\nanyone\tO\tanyone\tO\nknow\tO\tknow\tO\nof\tO\tof\tO\nany\tO\tany\tO\ngood\tO\tgood\tO\nlower\tO\tlower\tO\nbounds\tO\tbounds\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncomplexity\tO\tcomplexity\tO\nof\tO\tof\tO\nthis\tO\tthis\tO\ndecision\tO\tdecision\tO\nproblem\tO\tproblem\tO\n?\tO\t?\tO\n\t\nKnowing\tO\tKnowing\tO\nwhether\tO\twhether\tO\nthis\tO\tthis\tO\nwas\tO\twas\tO\nco-NP\tO\tco-NP\tO\nhard\tO\thard\tO\n,\tO\t,\tO\nPSPACE-hard\tO\tPSPACE-hard\tO\n,\tO\t,\tO\netc\tO\tetc\tO\n.\tO\t.\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nreally\tO\treally\tO\ninteresting\tO\tinteresting\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5147234\tO\t5147234\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5147234/\tO\thttps://stackoverflow.com/questions/5147234/\tO\n\t\n\t\nThe\tO\tThe\tO\nterm\tO\tterm\tO\n'\tO\t'\tO\nNP-hard\tO\tNP-hard\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\n'\tO\t'\tO\nseems\tO\tseems\tO\na\tO\ta\tO\nbit\tO\tbit\tO\ntoo\tO\ttoo\tO\nbroad\tO\tbroad\tO\nto\tO\tto\tO\nlet\tO\tlet\tO\na\tO\ta\tO\nsatisfying\tO\tsatisfying\tO\nanswer\tO\tanswer\tO\nbe\tO\tbe\tO\nfound\tO\tfound\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nsee\tO\tsee\tO\nwhat\tO\twhat\tO\nprecludes\tO\tprecludes\tO\ndecision\tO\tdecision\tO\nproblems\tO\tproblems\tO\nfrom\tO\tfrom\tO\nbeing\tO\tbeing\tO\nconsidered\tO\tconsidered\tO\nNP-hard\tO\tNP-hard\tO\noptimization\tO\toptimization\tO\nproblems\tO\tproblems\tO\n-\tO\t-\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nconsider\tO\tconsider\tO\n,\tO\t,\tO\nsay\tO\tsay\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nMAX-CNF-SAT\tO\tMAX-CNF-SAT\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nsolutions\tO\tsolutions\tO\nbeing\tO\tbeing\tO\nscored\tO\tscored\tO\nas\tO\tas\tO\nfloor(k/N) B-Function floor(k/N) O\n,\tO\t,\tO\nwhere\tO\twhere\tO\nk B-Variable k O\nis\tO\tis\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nsatisfied\tO\tsatisfied\tO\nclauses\tO\tclauses\tO\nand\tO\tand\tO\nN B-Variable N O\nis\tO\tis\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nclauses\tO\tclauses\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ninstance\tO\tinstance\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nclearly\tO\tclearly\tO\ncomputable\tO\tcomputable\tO\nin\tO\tin\tO\npolynomial\tO\tpolynomial\tO\ntime\tO\ttime\tO\n)\tO\t)\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nany\tO\tany\tO\nvaluation\tO\tvaluation\tO\nwhich\tO\twhich\tO\nyields\tO\tyields\tO\na\tO\ta\tO\n1 B-Value 1 O\nin\tO\tin\tO\nthis\tO\tthis\tO\nformula\tO\tformula\tO\nwill\tO\twill\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nsatisfy\tO\tsatisfy\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nformula\tO\tformula\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nlet\tO\tlet\tO\n's\tO\t's\tO\nassume\tO\tassume\tO\nthat\tO\tthat\tO\nwe\tO\twe\tO\nare\tO\tare\tO\nmaximizing\tO\tmaximizing\tO\nfloor(k/N) B-Function floor(k/N) O\nand\tO\tand\tO\ncall\tO\tcall\tO\nthis\tO\tthis\tO\nthe\tO\tthe\tO\nFLOOR-CNF-SAT\tO\tFLOOR-CNF-SAT\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\n:\tO\t:\tO\n)\tO\t)\tO\n\t\nThis\tO\tThis\tO\nimplies\tO\timplies\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nreduce\tO\treduce\tO\nTAUTOLOGY\tO\tTAUTOLOGY\tO\nto\tO\tto\tO\nsaid\tO\tsaid\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\n-\tO\t-\tO\nnegate\tO\tnegate\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nand\tO\tand\tO\nadd\tO\tadd\tO\nany\tO\tany\tO\nsolution\tO\tsolution\tO\nas\tO\tas\tO\nS B-Variable S O\n.\tO\t.\tO\nYou\tO\tYou\tO\ncan\tO\tcan\tO\neven\tO\teven\tO\nadd\tO\tadd\tO\na\tO\ta\tO\ndummy\tO\tdummy\tO\nvariable\tO\tvariable\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\nthe\tO\tthe\tO\ninitial\tO\tinitial\tO\nsolution\tO\tsolution\tO\nis\tO\tis\tO\ngets\tO\tgets\tO\na\tO\ta\tO\n0 B-Value 0 O\nin\tO\tin\tO\nthe\tO\tthe\tO\nFLOOR-CNF-SAT\tO\tFLOOR-CNF-SAT\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nNegation\tO\tNegation\tO\nis\tO\tis\tO\npolynomial\tO\tpolynomial\tO\nin\tO\tin\tO\ntime\tO\ttime\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\nif\tO\tif\tO\na\tO\ta\tO\nsolver\tO\tsolver\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nproposed\tO\tproposed\tO\nproblem\tO\tproblem\tO\ndeems\tO\tdeems\tO\nS B-Variable S O\nto\tO\tto\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\noptimal\tO\toptimal\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nmust\tO\tmust\tO\nclearly\tO\tclearly\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nvaluation\tO\tvaluation\tO\nwhich\tO\twhich\tO\nyields\tO\tyields\tO\na\tO\ta\tO\n1 B-Value 1 O\naccording\tO\taccording\tO\nto\tO\tto\tO\nour\tO\tour\tO\ncrafted\tO\tcrafted\tO\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nthus\tO\tthus\tO\nsatisfies\tO\tsatisfies\tO\nthe\tO\tthe\tO\nwhole\tO\twhole\tO\nformula\tO\tformula\tO\n-\tO\t-\tO\nin\tO\tin\tO\nturn\tO\tturn\tO\nproviding\tO\tproviding\tO\na\tO\ta\tO\nvaluation\tO\tvaluation\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nsatisfy\tO\tsatisfy\tO\nthe\tO\tthe\tO\noriginal\tO\toriginal\tO\ninput\tO\tinput\tO\nto\tO\tto\tO\nTAUTOLOGY\tO\tTAUTOLOGY\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\ncheating\tO\tcheating\tO\nslightly\tO\tslightly\tO\n(\tO\t(\tO\nusing\tO\tusing\tO\nan\tO\tan\tO\nartificially\tO\tartificially\tO\ncrafted\tO\tcrafted\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\n)\tO\t)\tO\nwe\tO\twe\tO\nhave\tO\thave\tO\nestablished\tO\testablished\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nis\tO\tis\tO\noptimal\tO\toptimal\tO\n'\tO\t'\tO\nproblem\tO\tproblem\tO\nas\tO\tas\tO\nco-NP-complete\tO\tco-NP-complete\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nTAUTOLOGY\tO\tTAUTOLOGY\tO\nis\tO\tis\tO\neasily\tO\teasily\tO\nshown\tO\tshown\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nco-NP-complete\tO\tco-NP-complete\tO\n.\tO\t.\tO\n\t\nBy\tO\tBy\tO\nyour\tO\tyour\tO\nown\tO\town\tO\nargument\tO\targument\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nis\tO\tis\tO\noptimal\tO\toptimal\tO\n'\tO\t'\tO\ndecision\tO\tdecision\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nco-NP-hard\tO\tco-NP-hard\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nas\tO\tas\tO\na\tO\ta\tO\nwitness\tO\twitness\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nsolution\tO\tsolution\tO\n-\tO\t-\tO\nscore\tO\tscore\tO\nS B-Variable S O\n,\tO\t,\tO\nscore\tO\tscore\tO\nthe\tO\tthe\tO\nwitness\tO\twitness\tO\nand\tO\tand\tO\ncompare\tO\tcompare\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nreally\tO\treally\tO\nfeel\tO\tfeel\tO\ngreat\tO\tgreat\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\nreduction\tO\treduction\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\neasily\tO\teasily\tO\nimprove\tO\timprove\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nclass\tO\tclass\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nrequire\tO\trequire\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nbe\tO\tbe\tO\ninstances\tO\tinstances\tO\nwhich\tO\twhich\tO\nscore\tO\tscore\tO\narbitrarily\tO\tarbitrarily\tO\nhigh\tO\thigh\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\njust\tO\tjust\tO\n{ B-Value { O\n0 I-Value 0 O\n, I-Value , O\n1} I-Value 1} O\n,\tO\t,\tO\nI\tO\tI\tO\ncould\tO\tcould\tO\njust\tO\tjust\tO\nuse\tO\tuse\tO\nN B-Code_Block N O\n* I-Code_Block * O\nfloor(k/N) I-Code_Block floor(k/N) O\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nimprovement\tO\timprovement\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nclass\tO\tclass\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\nonly\tO\tonly\tO\nconsider\tO\tconsider\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nan\tO\tan\tO\nNP-hard\tO\tNP-hard\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\nif\tO\tif\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nK B-Variable K O\nthere\tO\tthere\tO\nexists\tO\texists\tO\nan\tO\tan\tO\ninstance\tO\tinstance\tO\nthat\tO\tthat\tO\nhas\tO\thas\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nK B-Variable K O\nsolutions\tO\tsolutions\tO\nwhich\tO\twhich\tO\nall\tO\tall\tO\nscore\tO\tscore\tO\ndifferently\tO\tdifferently\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nstill\tO\tstill\tO\ncheat\tO\tcheat\tO\nmy\tO\tmy\tO\nway\tO\tway\tO\nthrough\tO\tthrough\tO\nthat\tO\tthat\tO\n:\tO\t:\tO\n\t\nConsider\tO\tConsider\tO\na\tO\ta\tO\nreduction\tO\treduction\tO\nthat\tO\tthat\tO\nadds\tO\tadds\tO\nN B-Variable N O\ndummy\tO\tdummy\tO\nvariables\tO\tvariables\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nTAUTOLOGY\tO\tTAUTOLOGY\tO\ninput\tO\tinput\tO\nas\tO\tas\tO\nfollows\tO\tfollows\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_593 I-Code_Block A_593 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhere\tO\twhere\tO\nS B-Variable S O\nis\tO\tis\tO\nthe\tO\tthe\tO\nnegated\tO\tnegated\tO\ninput\tO\tinput\tO\n.\tO\t.\tO\n\t\nAs\tO\tAs\tO\nan\tO\tan\tO\ninitial\tO\tinitial\tO\nvaluation\tO\tvaluation\tO\nI\tO\tI\tO\nchoose\tO\tchoose\tO\nd1 B-Code_Block d1 O\n, I-Code_Block , O\n.. I-Code_Block .. O\n. I-Code_Block . O\n, I-Code_Block , O\ndN I-Code_Block dN O\n= I-Code_Block = O\nfalse I-Code_Block false O\n,\tO\t,\tO\nbut\tO\tbut\tO\nas\tO\tas\tO\na\tO\ta\tO\nscore\tO\tscore\tO\nI\tO\tI\tO\ngive\tO\tgive\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\n2N B-Code_Block 2N O\n- I-Code_Block - O\n1 I-Code_Block 1 O\nif\tO\tif\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nN B-Variable N O\nclauses\tO\tclauses\tO\nare\tO\tare\tO\nall\tO\tall\tO\nfalse\tO\tfalse\tO\n,\tO\t,\tO\notherwise\tO\totherwise\tO\nit\tO\tit\tO\nreturns\tO\treturns\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nsatisfied\tO\tsatisfied\tO\nclauses\tO\tclauses\tO\n.\tO\t.\tO\n\t\nSuch\tO\tSuch\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nwould\tO\twould\tO\nonly\tO\tonly\tO\nreturn\tO\treturn\tO\n2N B-Variable 2N O\nif\tO\tif\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nclauses\tO\tclauses\tO\nwere\tO\twere\tO\nsatisfied\tO\tsatisfied\tO\nbut\tO\tbut\tO\ncould\tO\tcould\tO\neasily\tO\teasily\tO\nhave\tO\thave\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nN B-Variable N O\ndistinct\tO\tdistinct\tO\nvalues\tO\tvalues\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nafraid\tO\tafraid\tO\nthat\tO\tthat\tO\nwithout\tO\twithout\tO\nsome\tO\tsome\tO\ncomplicated\tO\tcomplicated\tO\nregularity\tO\tregularity\tO\nconditions\tO\tconditions\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nscoring\tO\tscoring\tO\nfunction\tO\tfunction\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\n,\tO\t,\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nconsider\tO\tconsider\tO\nthe\tO\tthe\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\nan\tO\tan\tO\nNP-hard\tO\tNP-hard\tO\noptimization\tO\toptimization\tO\nproblem\tO\tproblem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\n'\tO\t'\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nfor\tO\tfor\tO\nwhich\tO\twhich\tO\n,\tO\t,\tO\ngiven\tO\tgiven\tO\na\tO\ta\tO\ncandidate\tO\tcandidate\tO\nsolution\tO\tsolution\tO\nS B-Variable S O\n,\tO\t,\tO\nwe\tO\twe\tO\ncan\tO\tcan\tO\nin\tO\tin\tO\npolynomial\tO\tpolynomial\tO\ntime\tO\ttime\tO\nverify\tO\tverify\tO\nwhether\tO\twhether\tO\nS B-Variable S O\nis\tO\tis\tO\noptimal\tO\toptimal\tO\n'\tO\t'\tO\n,\tO\t,\tO\nin\tO\tin\tO\nwhich\tO\twhich\tO\ncase\tO\tcase\tO\n'\tO\t'\tO\nis-optimal\tO\tis-optimal\tO\n'\tO\t'\tO\nis\tO\tis\tO\nclearly\tO\tclearly\tO\nP\tO\tP\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nno\tO\tno\tO\nfun\tO\tfun\tO\nat\tO\tat\tO\nall:/\tO\tall:/\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5147234\tO\t5147234\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5147234/\tO\thttps://stackoverflow.com/questions/5147234/\tO\n\t\n\t\nBecause\tO\tBecause\tO\nS B-Variable S O\nis\tO\tis\tO\na\tO\ta\tO\ncandidate\tO\tcandidate\tO\nsolution\tO\tsolution\tO\n;\tO\t;\tO\ngiven\tO\tgiven\tO\nthat\tO\tthat\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nother\tO\tother\tO\nS B-Variable S O\nin\tO\tin\tO\nwhich\tO\twhich\tO\nS B-Variable S O\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nproven\tO\tproven\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\ngreedy\tO\tgreedy\tO\nor\tO\tor\tO\nless\tO\tless\tO\noptimal\tO\toptimal\tO\nthan\tO\tthan\tO\nany\tO\tany\tO\nother\tO\tother\tO\nS B-Variable S O\n.\tO\t.\tO\nIt\tO\tIt\tO\nmust\tO\tmust\tO\nbe\tO\tbe\tO\nthat\tO\tthat\tO\nS B-Variable S O\nis\tO\tis\tO\nat\tO\tat\tO\ncurrent\tO\tcurrent\tO\nthe\tO\tthe\tO\nMOST\tO\tMOST\tO\noptimal\tO\toptimal\tO\nsolution\tO\tsolution\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5654175\tO\t5654175\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5654175/\tO\thttps://stackoverflow.com/questions/5654175/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nnew\tO\tnew\tO\nto\tO\tto\tO\nPentaho B-Application Pentaho O\nKettle I-Application Kettle O\nand\tO\tand\tO\nI\tO\tI\tO\nam\tO\tam\tO\nwondering\tO\twondering\tO\nwhat\tO\twhat\tO\nthe\tO\tthe\tO\nInternal.Job.Filename.Directory B-Variable Internal.Job.Filename.Directory B-Code_Block\nis\tO\tis\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nit\tO\tit\tO\nmy\tO\tmy\tO\nSPoon.bat B-File_Name SPoon.bat B-Code_Block\nfolder\tO\tfolder\tO\n,\tO\t,\tO\nor\tO\tor\tO\nthe\tO\tthe\tO\njob/xfrm B-File_Name job/xfrm O\nfolder\tO\tfolder\tO\ni\tO\ti\tO\ncreated\tO\tcreated\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nchange\tO\tchange\tO\nit\tO\tit\tO\nto\tO\tto\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\nparticular\tO\tparticular\tO\nfolder\tO\tfolder\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nrunnig\tO\trunnig\tO\nspoon.bat B-File_Name spoon.bat B-Code_Block\nin\tO\tin\tO\nWindows B-Operating_System Windows O\nXP B-Version XP O\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5654175\tO\t5654175\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5654175/\tO\thttps://stackoverflow.com/questions/5654175/\tO\n\t\n\t\nTo\tO\tTo\tO\nset\tO\tset\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\nvariable\tO\tvariable\tO\nInternal.Job.Filename.Directory B-Variable Internal.Job.Filename.Directory O\n,\tO\t,\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nlaunch\tO\tlaunch\tO\nJob B-Class Job O\nin\tO\tin\tO\nthis\tO\tthis\tO\n\t\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3102 I-Code_Block Q_3102 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5654175\tO\t5654175\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5654175/\tO\thttps://stackoverflow.com/questions/5654175/\tO\n\t\n\t\nInternal.Job.Filename.Directory B-Variable Internal.Job.Filename.Directory B-Code_Block\nis\tO\tis\tO\nonly\tO\tonly\tO\nset\tO\tset\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nrepository\tO\trepository\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nset\tO\tset\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncannot\tO\tcannot\tO\nset\tO\tset\tO\nit\tO\tit\tO\nmanually\tO\tmanually\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\nnot\tO\tnot\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nan\tO\tan\tO\nrepository\tO\trepository\tO\n?\tO\t?\tO\n\t\nWhen\tO\tWhen\tO\nyou\tO\tyou\tO\nstart\tO\tstart\tO\nSpoon B-Application Spoon O\n,\tO\t,\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\na\tO\ta\tO\ndialog B-User_Interface_Element dialog O\nwhich\tO\twhich\tO\nasks\tO\tasks\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nrepository\tO\trepository\tO\n.\tO\t.\tO\n\t\nJust\tO\tJust\tO\nclose\tO\tclose\tO\nthis\tO\tthis\tO\ndialog\tO\tdialog\tO\nwith\tO\twith\tO\ncancel\tO\tcancel\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nfine\tO\tfine\tO\n!\tO\t!\tO\n\t\nIt\tO\tIt\tO\ntook\tO\ttook\tO\nme\tO\tme\tO\na\tO\ta\tO\nwhile\tO\twhile\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nwondering\tO\twondering\tO\nwhy\tO\twhy\tO\nInternal.Job.Filename.Directory B-Variable Internal.Job.Filename.Directory B-Code_Block\nwas\tO\twas\tO\nalways\tO\talways\tO\nempty\tO\tempty\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nrepository\tO\trepository\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\ncause\tO\tcause\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ndocumented\tO\tdocumented\tO\nhere\tO\there\tO\n:\tO\t:\tO\nhttp://jira.pentaho.com/browse/PDI-7434\tO\thttp://jira.pentaho.com/browse/PDI-7434\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n40975280\tO\t40975280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40975280/\tO\thttps://stackoverflow.com/questions/40975280/\tO\n\t\n\t\nWhen\tO\tWhen\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\ncharacters\tO\tcharacters\tO\nin\tO\tin\tO\njson B-Function json O\nresult\tO\tresult\tO\nis\tO\tis\tO\nlarge\tO\tlarge\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nexception B-Class exception O\nwill\tO\twill\tO\nbe\tO\tbe\tO\nraised\tO\traised\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\nexception B-Class exception O\nis\tO\tis\tO\na\tO\ta\tO\nserver\tO\tserver\tO\nside\tO\tside\tO\nexception B-Class exception O\nwith\tO\twith\tO\n500 B-Error_Name 500 O\nresponse\tO\tresponse\tO\ncode\tO\tcode\tO\nso\tO\tso\tO\nif\tO\tif\tO\nwe\tO\twe\tO\nput\tO\tput\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\ninside\tO\tinside\tO\na\tO\ta\tO\ntry B-Code_Block try O\ncatch I-Code_Block catch O\nblock\tO\tblock\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\ncaught\tO\tcaught\tO\nin\tO\tin\tO\ncatch B-Code_Block catch O\nblock\tO\tblock\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\ntry B-Code_Block try O\ncatch I-Code_Block catch O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nwork\tO\twork\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nscenario\tO\tscenario\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\ntest\tO\ttest\tO\nthis\tO\tthis\tO\nproblem\tO\tproblem\tO\nby\tO\tby\tO\nfollowing\tO\tfollowing\tO\ncode\tO\tcode\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\ninside\tO\tinside\tO\nan\tO\tan\tO\nasp.net B-Library asp.net O\nmvc B-Algorithm mvc O\ncontroller\tO\tcontroller\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5184 I-Code_Block Q_5184 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40975280\tO\t40975280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40975280/\tO\thttps://stackoverflow.com/questions/40975280/\tO\n\t\n\t\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nreproduce\tO\treproduce\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nanyway\tO\tanyway\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nhappening\tO\thappening\tO\nto\tO\tto\tO\nyou\tO\tyou\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nJson B-Function Json B-Code_Block\nmethod\tO\tmethod\tO\nimplementation\tO\timplementation\tO\nis\tO\tis\tO\nalready\tO\talready\tO\ncatching\tO\tcatching\tO\nthe\tO\tthe\tO\nexception B-Class exception O\ninternally\tO\tinternally\tO\nand\tO\tand\tO\nconverting\tO\tconverting\tO\nit\tO\tit\tO\nto\tO\tto\tO\nfull-blown\tO\tfull-blown\tO\nHTTP B-Error_Name HTTP O\n5xx I-Error_Name 5xx O\nresponse I-Error_Name response O\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nexception B-Class exception O\ncoming\tO\tcoming\tO\nout\tO\tout\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nreturn\tO\treturn\tB-Code_Block\nJson() B-Function Json() I-Code_Block\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nchance\tO\tchance\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ncatch\tO\tcatch\tO\nthe\tO\tthe\tO\nexception B-Class exception O\nbecause\tO\tbecause\tO\n..\tO\t..\tO\n.\tO\t.\tO\nwhat\tO\twhat\tO\nwould\tO\twould\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\n?\tO\t?\tO\n\t\nGenerate\tO\tGenerate\tO\nan\tO\tan\tO\nHTTP B-Error_Name HTTP O\n5xx I-Error_Name 5xx O\nresponse I-Error_Name response O\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\nalready\tO\talready\tO\ndone\tO\tdone\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nMVC B-Algorithm MVC O\nframework\tO\tframework\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n40975280\tO\t40975280\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/40975280/\tO\thttps://stackoverflow.com/questions/40975280/\tO\n\t\n\t\nTry\tO\tTry\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5860 I-Code_Block A_5860 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25988688\tO\t25988688\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25988688/\tO\thttps://stackoverflow.com/questions/25988688/\tO\n\t\n\t\nwhat\tO\twhat\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nto\tO\tto\tO\nseparate\tO\tseparate\tO\nfollowing\tO\tfollowing\tO\ntext B-File_Type text O\nfile\tO\tfile\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nits\tO\tits\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\nformat\tO\tformat\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25988688\tO\t25988688\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25988688/\tO\thttps://stackoverflow.com/questions/25988688/\tO\n\t\n\t\nIf\tO\tIf\tO\nyour\tO\tyour\tO\ninput\tO\tinput\tO\ndata\tO\tdata\tO\nare\tO\tare\tO\nin\tO\tin\tO\nJSON B-File_Type JSON O\nformat\tO\tformat\tO\n,\tO\t,\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\na\tO\ta\tO\nC-based B-Language C-based O\nJSON B-File_Type JSON O\nparser\tO\tparser\tO\n,\tO\t,\tO\nlike\tO\tlike\tO\nJSON-C B-Library JSON-C O\nor\tO\tor\tO\nJansson B-Library Jansson O\n.\tO\t.\tO\n\t\nParse\tO\tParse\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\nobjects\tO\tobjects\tO\nfrom\tO\tfrom\tO\nJSON B-File_Type JSON O\nformat\tO\tformat\tO\nand\tO\tand\tO\ninto\tO\tinto\tO\nsome\tO\tsome\tO\nstruct B-Data_Structure struct B-Code_Block\nof\tO\tof\tO\nyour\tO\tyour\tO\ndesign\tO\tdesign\tO\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nwrite\tO\twrite\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nto\tO\tto\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nof\tO\tof\tO\nstruct\tO\tstruct\tB-Code_Block\nelements\tO\telements\tO\nto\tO\tto\tO\nstandard\tO\tstandard\tO\noutput\tO\toutput\tO\n,\tO\t,\tO\nin\tO\tin\tO\na\tO\ta\tO\nformat\tO\tformat\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nchoosing\tO\tchoosing\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n18634027\tO\t18634027\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18634027/\tO\thttps://stackoverflow.com/questions/18634027/\tO\n\t\n\t\nHow\tO\tHow\tO\nwould\tO\twould\tO\nI\tO\tI\tO\nget\tO\tget\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nchildren\tO\tchildren\tO\nin\tO\tin\tO\na\tO\ta\tO\nspecific\tO\tspecific\tO\nColumn B-Data_Structure Column O\nof\tO\tof\tO\na\tO\ta\tO\nGrid B-Data_Structure Grid O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nperform\tO\tperform\tO\nsome\tO\tsome\tO\ncalculations\tO\tcalculations\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nchildren\tO\tchildren\tO\ninside\tO\tinside\tO\na\tO\ta\tO\ncertain\tO\tcertain\tO\nColumn B-Data_Structure Column O\nin\tO\tin\tO\na\tO\ta\tO\nGrid B-Data_Structure Grid O\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\na\tO\ta\tO\nway\tO\tway\tO\nof\tO\tof\tO\ngetting\tO\tgetting\tO\nall\tO\tall\tO\nchildren\tO\tchildren\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\nColumn B-Data_Structure Column O\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nhelp\tO\thelp\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nappreciated\tO\tappreciated\tO\n.\tO\t.\tO\n\t\nAdam B-User_Name Adam O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18634027\tO\t18634027\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18634027/\tO\thttps://stackoverflow.com/questions/18634027/\tO\n\t\n\t\nDo\tO\tDo\tO\nsome\tO\tsome\tO\nthing\tO\tthing\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nexample\tO\texample\tO\n\t\nXAML B-Language XAML O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2445 I-Code_Block A_2445 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE\tO\tCODE\tO\n(\tO\t(\tO\nc# B-Language c# O\n)\tO\t)\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2446 I-Code_Block A_2446 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\noly\tO\toly\tO\nconstraint\tO\tconstraint\tO\nis\tO\tis\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\na\tO\ta\tO\ncheck\tO\tcheck\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nelements\tO\telements\tO\nu\tO\tu\tO\nplace\tO\tplace\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nGrid B-Data_Structure Grid O\n.\tO\t.\tO\n.\tO\t.\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\ndifferent\tO\tdifferent\tO\nthen\tO\tthen\tO\nmapping\tO\tmapping\tO\nthem\tO\tthem\tO\nwill\tO\twill\tO\ncause\tO\tcause\tO\ntrouble\tO\ttrouble\tO\n..\tO\t..\tO\n.\tO\t.\tO\nplease\tO\tplease\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nif\tO\tif\tO\ndifferent\tO\tdifferent\tO\nelements\tO\telements\tO\nare\tO\tare\tO\npresent\tO\tpresent\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n18634027\tO\t18634027\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/18634027/\tO\thttps://stackoverflow.com/questions/18634027/\tO\n\t\n\t\nTry\tO\tTry\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2444 I-Code_Block A_2444 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44383064\tO\t44383064\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44383064/\tO\thttps://stackoverflow.com/questions/44383064/\tO\n\t\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nread\tO\tread\tO\none\tO\tone\tO\npdf B-File_Type pdf O\nfile\tO\tfile\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nin\tO\tin\tO\nbelow\tO\tbelow\tO\nformat\tO\tformat\tO\n-\tO\t-\tO\n\t\ndata.pdf B-File_Name data.pdf O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5766 I-Code_Block Q_5766 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nusing\tO\tusing\tO\npython B-Library python O\npandas I-Library pandas O\nbut\tO\tbut\tO\nI\tO\tI\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nany\tO\tany\tO\nsuccess\tO\tsuccess\tO\nyet\tO\tyet\tO\n.\tO\t.\tO\n\t\nActually\tO\tActually\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\nin\tO\tin\tO\ncsv B-File_Type csv O\nformat\tO\tformat\tO\nlike\tO\tlike\tO\nbelow\tO\tbelow\tO\n-\tO\t-\tO\n\t\noutput.csv B-File_Name output.csv O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5767 I-Code_Block Q_5767 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nalready\tO\talready\tO\ntried\tO\ttried\tO\nwith\tO\twith\tO\npdfminer B-Library pdfminer O\nbut\tO\tbut\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nget\tO\tget\tO\nany\tO\tany\tO\nsuccess\tO\tsuccess\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nhtml B-File_Type html O\noutput\tO\toutput\tO\nonly\tO\tonly\tO\ngives\tO\tgives\tO\nme\tO\tme\tO\nblank\tO\tblank\tO\npages B-User_Interface_Element pages O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\ntheir\tO\ttheir\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nread\tO\tread\tO\npdf B-File_Type pdf O\nfile\tO\tfile\tO\nusing\tO\tusing\tO\npython B-Library python O\npandas I-Library pandas O\nor\tO\tor\tO\ncan\tO\tcan\tO\nwe\tO\twe\tO\nconvert\tO\tconvert\tO\npdf B-File_Type pdf O\nto\tO\tto\tO\nany\tO\tany\tO\nformat\tO\tformat\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nread\tO\tread\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\npython B-Library python O\npandas I-Library pandas O\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n44383064\tO\t44383064\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44383064/\tO\thttps://stackoverflow.com/questions/44383064/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ntabula B-Library tabula O\ninstalled\tO\tinstalled\tO\nthen\tO\tthen\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6409 I-Code_Block A_6409 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nprint\tO\tprint\tO\nyour\tO\tyour\tO\ndata\tO\tdata\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6410 I-Code_Block A_6410 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nhope\tO\thope\tO\nthis\tO\tthis\tO\nwill\tO\twill\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n!\tO\t!\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35184450\tO\t35184450\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35184450/\tO\thttps://stackoverflow.com/questions/35184450/\tO\n\t\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nnon-graphic\tO\tnon-graphic\tO\n(\tO\t(\tO\ntext\tO\ttext\tO\n)\tO\t)\tO\nC++ B-Language C++ O\ngame\tO\tgame\tO\n(\tO\t(\tO\nyou\tO\tyou\tO\nmove\tO\tmove\tO\nyour\tO\tyour\tO\ncharacter\tO\tcharacter\tO\nusing\tO\tusing\tO\nn\tO\tn\tO\n, B-Value , O\ns I-Value s O\n,\tO\t,\tO\nw B-Value w O\n,\tO\t,\tO\ne B-Value e O\nand\tO\tand\tO\nevery\tO\tevery\tO\nlocation\tO\tlocation\tO\nis\tO\tis\tO\ndescribed\tO\tdescribed\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nLocations\tO\tLocations\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nan\tO\tan\tO\narray B-Data_Structure array O\nof\tO\tof\tO\nan\tO\tan\tO\nobjects\tO\tobjects\tO\n(\tO\t(\tO\nthere\tO\tthere\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nlocation\tO\tlocation\tO\ndescription\tO\tdescription\tO\nand\tO\tand\tO\nother\tO\tother\tO\ninformation\tO\tinformation\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\narray B-Data_Structure array O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nstarted\tO\tstarted\tO\nmaking\tO\tmaking\tO\nthis\tO\tthis\tO\ngame\tO\tgame\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nquestion\tO\tquestion\tO\n:\tO\t:\tO\nIs\tO\tIs\tO\nit\tO\tit\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\narrays B-Data_Structure arrays O\nwith\tO\twith\tO\ndimensions\tO\tdimensions\tO\nx B-Variable x O\n-\tO\t-\tO\nfrom\tO\tfrom\tO\n-100 B-Value -100 O\nto\tO\tto\tO\n100 B-Value 100 O\nand\tO\tand\tO\nz B-Variable z O\n-\tO\t-\tO\nfrom\tO\tfrom\tO\n-100 B-Value -100 O\nto\tO\tto\tO\n100 B-Value 100 O\n?\tO\t?\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\npossible\tO\tpossible\tO\n,\tO\t,\tO\nare\tO\tare\tO\nthere\tO\tthere\tO\nother\tO\tother\tO\nways\tO\tways\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nwant\tO\twant\tO\na\tO\ta\tO\n[ B-Value [ O\n0 I-Value 0 O\n] I-Value ] O\n[ B-Value [ O\n0 I-Value 0 O\n] I-Value ] O\nposition\tO\tposition\tO\nin\tO\tin\tO\none\tO\tone\tO\nof\tO\tof\tO\n4\tO\t4\tO\ncorners\tO\tcorners\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nmiddle\tO\tmiddle\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35184450\tO\t35184450\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35184450/\tO\thttps://stackoverflow.com/questions/35184450/\tO\n\t\n\t\nOne\tO\tOne\tO\ncommon\tO\tcommon\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\nrather\tO\trather\tO\nsketchy\tO\tsketchy\tO\n)\tO\t)\tO\nmethod\tO\tmethod\tO\nis\tO\tis\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n(\tO\t(\tO\nexample\tO\texample\tO\nfor\tO\tfor\tO\n21\tO\t21\tO\nx\tO\tx\tO\n21\tO\t21\tO\nboard\tO\tboard\tO\n)\tO\t)\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5037 I-Code_Block A_5037 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\nnormal\tO\tnormal\tO\n21x21\tO\t21x21\tO\narray B-Data_Structure array O\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nit\tO\tit\tO\nalso\tO\talso\tO\ncreates\tO\tcreates\tO\na\tO\ta\tO\npointer B-Data_Type pointer O\nto\tO\tto\tO\na\tO\ta\tO\nfake\tO\tfake\tO\narray B-Data_Structure array O\nwhich\tO\twhich\tO\nis\tO\tis\tO\ninitialised\tO\tinitialised\tO\nto\tO\tto\tO\npoint\tO\tpoint\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\ncentre\tO\tcentre\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nreal\tO\treal\tO\narray B-Data_Structure array O\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthen\tO\tthen\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nfake\tO\tfake\tO\npointer B-Data_Type pointer O\nas\tO\tas\tO\nif\tO\tif\tO\nit\tO\tit\tO\nwere\tO\twere\tO\na\tO\ta\tO\nreal\tO\treal\tO\narray B-Data_Structure array O\nwith\tO\twith\tO\nindices\tO\tindices\tO\nranging\tO\tranging\tO\nfrom\tO\tfrom\tO\n-10 B-Value -10 O\nto\tO\tto\tO\n+10 B-Value +10 O\n(\tO\t(\tO\ninclusive\tO\tinclusive\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nLIVE\tO\tLIVE\tB-Keyboard_IP\nDEMO\tO\tDEMO\tI-Keyboard_IP\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35184450\tO\t35184450\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35184450/\tO\thttps://stackoverflow.com/questions/35184450/\tO\n\t\n\t\nAn\tO\tAn\tO\nArray B-Data_Structure Array O\ncan\tO\tcan\tO\nhave\tO\thave\tO\nonly\tO\tonly\tO\npositive\tO\tpositive\tO\nindexes\tO\tindexes\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5032 I-Code_Block A_5032 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ndefine\tO\tdefine\tO\na\tO\ta\tO\nFunktion\tO\tFunktion\tO\nthat\tO\tthat\tO\nreturns\tO\treturns\tO\nyour\tO\tyour\tO\ndesired\tO\tdesired\tO\nLocation B-Class Location O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5033 I-Code_Block A_5033 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nLocation B-Class Location O\nby\tO\tby\tO\ncalling\tO\tcalling\tO\nthe\tO\tthe\tO\nfunction\tO\tfunction\tO\ngetLocation(x,y) B-Function getLocation(x,y) B-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13596623\tO\t13596623\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13596623/\tO\thttps://stackoverflow.com/questions/13596623/\tO\n\t\n\t\nThere\tO\tThere\tO\n's\tO\t's\tO\na\tO\ta\tO\nfair\tO\tfair\tO\namount\tO\tamount\tO\nof\tO\tof\tO\nsupport\tO\tsupport\tO\n,\tO\t,\tO\nthrough\tO\tthrough\tO\nthings\tO\tthings\tO\nlike\tO\tlike\tO\nthe\tO\tthe\tO\nvarious\tO\tvarious\tO\nRevolution\tO\tRevolution\tO\nR B-Language R O\nmodules\tO\tmodules\tO\n,\tO\t,\tO\nin\tO\tin\tO\nwhat\tO\twhat\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nbringing\tO\tbringing\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\ndataset\tO\tdataset\tO\ninto\tO\tinto\tO\nR B-Language R O\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\ntoo\tO\ttoo\tO\nlarge\tO\tlarge\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nstored\tO\tstored\tO\nin\tO\tin\tO\nRAM B-Device RAM O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndeal\tO\tdeal\tO\nwith\tO\twith\tO\ndata\tO\tdata\tO\nsets\tO\tsets\tO\nbeing\tO\tbeing\tO\ncreated\tO\tcreated\tO\nwithin\tO\twithin\tO\nR B-Language R O\nthat\tO\tthat\tO\nare\tO\tare\tO\ntoo\tO\ttoo\tO\nbig\tO\tbig\tO\nto\tO\tto\tO\nstore\tO\tstore\tO\nin\tO\tin\tO\nRAM B-Device RAM O\n,\tO\t,\tO\nbeyond\tO\tbeyond\tO\nsimply\tO\tsimply\tO\n(\tO\t(\tO\nand\tO\tand\tO\nby\tO\tby\tO\nhand\tO\thand\tO\n)\tO\t)\tO\nbreaking\tO\tbreaking\tO\nthe\tO\tthe\tO\ncreation\tO\tcreation\tO\nstep\tO\tstep\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nseries\tO\tseries\tO\nof\tO\tof\tO\nRAM-sized B-Device RAM-sized O\nchunks\tO\tchunks\tO\n,\tO\t,\tO\nwriting\tO\twriting\tO\nthat\tO\tthat\tO\nchunk\tO\tchunk\tO\nto\tO\tto\tO\ndisk B-Device disk O\n,\tO\t,\tO\nclearing\tO\tclearing\tO\nit\tO\tit\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncontinuing\tO\tcontinuing\tO\non\tO\ton\tO\n?\tO\t?\tO\n\t\nFor\tO\tFor\tO\nexample\tO\texample\tO\n,\tO\t,\tO\njust\tO\tjust\tO\ndoing\tO\tdoing\tO\na\tO\ta\tO\nlarge\tO\tlarge\tO\nsimulation\tO\tsimulation\tO\n,\tO\t,\tO\nor\tO\tor\tO\nusing\tO\tusing\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nSurvSplit() B-Function SurvSplit() O\nto\tO\tto\tO\ntake\tO\ttake\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nobservation\tO\tobservation\tO\nwith\tO\twith\tO\na\tO\ta\tO\nsurvival\tO\tsurvival\tO\ntime\tO\ttime\tO\nfrom\tO\tfrom\tO\n1 B-Value 1 O\nto\tO\tto\tO\nN B-Variable N O\nand\tO\tand\tO\nbreak\tO\tbreak\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\nN B-Variable N O\nseperate\tO\tseperate\tO\nobservations\tO\tobservations\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n13596623\tO\t13596623\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/13596623/\tO\thttps://stackoverflow.com/questions/13596623/\tO\n\t\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ncreating\tO\tcreating\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nin\tO\tin\tO\nR B-Language R O\nand\tO\tand\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nyour\tO\tyour\tO\nanalysis\tO\tanalysis\tO\non\tO\ton\tO\na\tO\ta\tO\nsmall\tO\tsmall\tO\nchunk\tO\tchunk\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ntotal\tO\ttotal\tO\ndata\tO\tdata\tO\n,\tO\t,\tO\nthen\tO\tthen\tO\nonly\tO\tonly\tO\ncreate\tO\tcreate\tO\nas\tO\tas\tO\nlarge\tO\tlarge\tO\nof\tO\tof\tO\na\tO\ta\tO\nchunk\tO\tchunk\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nfor\tO\tfor\tO\nany\tO\tany\tO\ngiven\tO\tgiven\tO\nanalysis\tO\tanalysis\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45099328\tO\t45099328\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45099328/\tO\thttps://stackoverflow.com/questions/45099328/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nread\tO\tread\tO\nonly\tO\tonly\tO\ncolum B-Data_Structure colum O\nwith\tO\twith\tO\nred\tO\tred\tO\nlabel\tO\tlabel\tO\nin\tO\tin\tO\na\tO\ta\tO\ncsv B-File_Type csv O\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nphp B-Language php O\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nor\tO\tor\tO\na\tO\ta\tO\nsymfony B-Library symfony O\nbundle\tO\tbundle\tO\n?\tO\t?\tO\n\t\nNow\tO\tNow\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nreading\tO\treading\tO\ncsv B-File_Type csv O\nfile\tO\tfile\tO\nwith\tO\twith\tO\nfgetcsv B-Function fgetcsv O\nfunction\tO\tfunction\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5874 I-Code_Block Q_5874 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\nlabel\tO\tlabel\tO\n's\tO\t's\tO\ncolor.Is\tO\tcolor.Is\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nread\tO\tread\tO\nthe\tO\tthe\tO\ncolor\tO\tcolor\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncsv B-File_Type csv O\nfiles\tO\tfiles\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45099328\tO\t45099328\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45099328/\tO\thttps://stackoverflow.com/questions/45099328/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nthis\tO\tthis\tO\nphp B-Language php O\nclass\tO\tclass\tO\nto\tO\tto\tO\nread\tO\tread\tO\ncsv B-File_Type csv O\nfiles\tO\tfiles\tO\n:\tO\t:\tO\nhttps://git.webworks-nuernberg.de/webworks-nuernberg/parsecsv\tO\thttps://git.webworks-nuernberg.de/webworks-nuernberg/parsecsv\tO\n\t\nBut\tO\tBut\tO\ncweiske B-User_Name cweiske O\nis\tO\tis\tO\nright\tO\tright\tO\n,\tO\t,\tO\ncsv B-File_Type csv O\nhas\tO\thas\tO\nn't\tO\tn't\tO\nany\tO\tany\tO\nformatting\tO\tformatting\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n45099328\tO\t45099328\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45099328/\tO\thttps://stackoverflow.com/questions/45099328/\tO\n\t\n\t\nCSV B-File_Type CSV O\nfiles\tO\tfiles\tO\nhave\tO\thave\tO\nno\tO\tno\tO\nformatting\tO\tformatting\tO\n.\tO\t.\tO\n\t\n.xls B-File_Type .xls B-Code_Block\nor\tO\tor\tO\n.odt B-File_Type .odt B-Code_Block\nfiles\tO\tfiles\tO\nhave\tO\thave\tO\nformatting\tO\tformatting\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nCSV B-File_Type CSV O\ndefinitely\tO\tdefinitely\tO\nnot\tO\tnot\tO\n-\tO\t-\tO\nonly\tO\tonly\tO\ndata\tO\tdata\tO\nare\tO\tare\tO\nsaved\tO\tsaved\tO\nin\tO\tin\tO\nthere\tO\tthere\tO\n.\tO\t.\tO\n\t\nLook\tO\tLook\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nwith\tO\twith\tO\na\tO\ta\tO\ntext B-Application text O\neditor I-Application editor O\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35938811\tO\t35938811\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35938811/\tO\thttps://stackoverflow.com/questions/35938811/\tO\n\t\n\t\nWhy\tO\tWhy\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nset\tO\tset\tO\nthe\tO\tthe\tO\nvalue\tO\tvalue\tO\nto\tO\tto\tO\ninput\tO\tinput\tO\nelement\tO\telement\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4400 I-Code_Block Q_4400 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nchange\tO\tchange\tO\ndate\tO\tdate\tO\nto\tO\tto\tO\n\" B-Code_Block \" O\nnew I-Code_Block new O\nDate(2016, I-Code_Block Date(2016, O\n4, I-Code_Block 4, O\n1) I-Code_Block 1) O\n\" I-Code_Block \" O\nvalue\tO\tvalue\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\ncorrectly\tO\tcorrectly\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nappears\tO\tappears\tO\nin\tO\tin\tO\nall\tO\tall\tO\nbrowsers B-Application browsers O\n.\tO\t.\tO\n\t\nLink\tO\tLink\tO\nto\tO\tto\tO\nJSbin B-Application JSbin O\nexample\tO\texample\tO\nhttp://jsbin.com/catolumifa/edit?html,output\tO\thttp://jsbin.com/catolumifa/edit?html,output\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35938811\tO\t35938811\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35938811/\tO\thttps://stackoverflow.com/questions/35938811/\tO\n\t\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nable\tO\table\tO\nto\tO\tto\tO\nset\tO\tset\tO\npast\tO\tpast\tO\ndate\tO\tdate\tO\n\" B-Value \" O\n2016 I-Value 2016 O\n, I-Value , O\n1 I-Value 1 O\n, I-Value , O\n1 I-Value 1 O\n\" I-Value \" O\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\nset\tO\tset\tO\nminimum\tO\tminimum\tO\ndate\tO\tdate\tO\nas\tO\tas\tO\ncurrent B-Value current O\ndate I-Value date O\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nyou\tO\tyou\tO\ncannot\tO\tcannot\tO\nset\tO\tset\tO\nolder\tO\tolder\tO\ndate\tO\tdate\tO\nthan\tO\tthan\tO\ntoday\tO\ttoday\tO\n.\tO\t.\tO\n\t\nso\tO\tso\tO\nplease\tO\tplease\tO\nremove\tO\tremove\tO\nbelow\tO\tbelow\tO\ncode\tO\tcode\tO\nlines\tO\tlines\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5131 I-Code_Block A_5131 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37598575\tO\t37598575\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37598575/\tO\thttps://stackoverflow.com/questions/37598575/\tO\n\t\n\t\nCan\tO\tCan\tO\n<meta> B-HTML_XML_Tag <meta> B-Code_Block\ntags\tO\ttags\tO\ngo\tO\tgo\tO\nin\tO\tin\tO\nexternal\tO\texternal\tO\nCSS B-Language CSS O\nsheets,\tO\tsheets,\tO\nand\tO\tand\tO\nbe\tO\tbe\tO\nlinked\tO\tlinked\tO\nto\tO\tto\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\n<link> B-HTML_XML_Tag <link> B-Code_Block\ntags\tO\ttags\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nCSS B-Language CSS O\n?\tO\t?\tO\n\t\nThat\tO\tThat\tO\nis\tO\tis\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4717 I-Code_Block Q_4717 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCSS B-Language CSS O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4718 I-Code_Block Q_4718 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhy\tO\tWhy\tO\nthe\tO\tthe\tO\ndown\tO\tdown\tO\nvote\tO\tvote\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nconsider\tO\tconsider\tO\nthis\tO\tthis\tO\nwell\tO\twell\tO\nasked\tO\tasked\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nimproved\tO\timproved\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nsuggest\tO\tsuggest\tO\nhow\tO\thow\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\nup\tO\tup\tO\nvote\tO\tvote\tO\n!\tO\t!\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37598575\tO\t37598575\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37598575/\tO\thttps://stackoverflow.com/questions/37598575/\tO\n\t\n\t\nMeta\tO\tMeta\tO\ntags\tO\ttags\tO\nare\tO\tare\tO\nnot\tO\tnot\tO\nstyles\tO\tstyles\tO\n,\tO\t,\tO\nand\tO\tand\tO\ntherefore\tO\ttherefore\tO\ncannot\tO\tcannot\tO\nbe\tO\tbe\tO\nput\tO\tput\tO\nin\tO\tin\tO\nstylesheets\tO\tstylesheets\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23639002\tO\t23639002\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23639002/\tO\thttps://stackoverflow.com/questions/23639002/\tO\n\t\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nHW\tO\tHW\tO\nquestion\tO\tquestion\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nMultivariate\tO\tMultivariate\tO\nAnalysis\tO\tAnalysis\tO\nClass\tO\tClass\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2620 I-Code_Block Q_2620 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPROC B-Data_Structure PROC O\nPLOT I-Data_Structure PLOT O\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\ngenerating\tO\tgenerating\tO\na\tO\ta\tO\nhuge\tO\thuge\tO\nchart B-Data_Structure chart O\n,\tO\t,\tO\nmaybe\tO\tmaybe\tO\n5-10\tO\t5-10\tO\npages\tO\tpages\tO\ntall\tO\ttall\tO\n,\tO\t,\tO\nwith\tO\twith\tO\nridiculous\tO\tridiculous\tO\nvertical\tO\tvertical\tO\nscaling\tO\tscaling\tO\n(\tO\t(\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\n.05 B-Value .05 O\n=\tO\t=\tO\nan\tO\tan\tO\ninch+\tO\tinch+\tO\nof\tO\tof\tO\ncomputer\tO\tcomputer\tO\nscreen\tO\tscreen\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\ntoo\tO\ttoo\tO\nbig\tO\tbig\tO\nto\tO\tto\tO\nput\tO\tput\tO\nin\tO\tin\tO\na\tO\ta\tO\nword\tO\tword\tO\ndocument\tO\tdocument\tO\nto\tO\tto\tO\nhand\tO\thand\tO\nin\tO\tin\tO\n,\tO\t,\tO\nand\tO\tand\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\ninformative\tO\tinformative\tO\nas\tO\tas\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nquestion\tO\tquestion\tO\nis\tO\tis\tO\nwhy\tO\twhy\tO\nis\tO\tis\tO\nmy\tO\tmy\tO\nSAS B-Application SAS O\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nand\tO\tand\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nfix\tO\tfix\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlove\tO\tlove\tO\nit\tO\tit\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nscaled\tO\tscaled\tO\ndown\tO\tdown\tO\nto\tO\tto\tO\na\tO\ta\tO\n5 B-Value 5 O\n\" I-Value \" O\nx I-Value x O\n5 I-Value 5 O\n\" I-Value \" O\nor\tO\tor\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthat\tO\tthat\tO\n...\tO\t...\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\n(\tO\t(\tO\nI\tO\tI\tO\n've\tO\t've\tO\na\tO\ta\tO\nworking\tO\tworking\tO\nknowledge\tO\tknowledge\tO\nof\tO\tof\tO\nSAS B-Application SAS O\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nfar\tO\tfar\tO\nfrom\tO\tfrom\tO\nskilled\tO\tskilled\tO\nat\tO\tat\tO\nit\tO\tit\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23639002\tO\t23639002\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23639002/\tO\thttps://stackoverflow.com/questions/23639002/\tO\n\t\n\t\nTry\tO\tTry\tO\nusing\tO\tusing\tO\nods B-Function ods B-Code_Block\ngraphics I-Function graphics I-Code_Block\nand\tO\tand\tO\nPROC B-Function PROC B-Code_Block\nSGPLOT I-Function SGPLOT I-Code_Block\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3233 I-Code_Block A_3233 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8770235\tO\t8770235\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8770235/\tO\thttps://stackoverflow.com/questions/8770235/\tO\n\t\n\t\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ntrack\tO\ttrack\tO\nmy\tO\tmy\tO\nmodels\tO\tmodels\tO\nand\tO\tand\tO\ntheir\tO\ttheir\tO\nCRUD B-Library CRUD O\noperations\tO\toperations\tO\nthrough\tO\tthrough\tO\nhandling\tO\thandling\tO\npost_save B-Function post_save O\n,\tO\t,\tO\ndelete B-Function delete O\nand\tO\tand\tO\ninit B-Function init O\nsignals I-Function signals O\n,\tO\t,\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nsave\tO\tsave\tO\nentry\tO\tentry\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nDatabase\tO\tDatabase\tO\nabout\tO\tabout\tO\nthis\tO\tthis\tO\noperation\tO\toperation\tO\nhandled\tO\thandled\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_734 I-Code_Block Q_734 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nthe\tO\tthe\tO\nfunny\tO\tfunny\tO\nthing\tO\tthing\tO\n,\tO\t,\tO\nit\tO\tit\tO\nis\tO\tis\tO\na\tO\ta\tO\nrecursion\tO\trecursion\tO\nof\tO\tof\tO\nsaves B-Function saves O\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncreated\tO\tcreated\tO\nmodel\tO\tmodel\tO\nCRUD_Storage B-Function CRUD_Storage O\n,\tO\t,\tO\ni\tO\ti\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nit\tO\tit\tO\nsending\tO\tsending\tO\nsignals\tO\tsignals\tO\nlike\tO\tlike\tO\npre(post)init B-Function pre(post)init O\n,\tO\t,\tO\ndelete B-Function delete O\n,\tO\t,\tO\nsave\tO\tsave\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8770235\tO\t8770235\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8770235/\tO\thttps://stackoverflow.com/questions/8770235/\tO\n\t\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\na\tO\ta\tO\nDRY\tO\tDRY\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndismissing\tO\tdismissing\tO\nsignals\tO\tsignals\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndismiss\tO\tdismiss\tO\na\tO\ta\tO\nsignal\tO\tsignal\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nrecursion\tO\trecursion\tO\n,\tO\t,\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\nway\tO\tway\tO\nto\tO\tto\tO\ngo\tO\tgo\tO\nis\tO\tis\tO\nto\tO\tto\tO\nset\tO\tset\tO\nan\tO\tan\tO\nattribute\tO\tattribute\tO\non\tO\ton\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\ninstance\tO\tinstance\tO\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nupcoming\tO\tupcoming\tO\nsignals\tO\tsignals\tO\nfiring\tO\tfiring\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nsimple\tO\tsimple\tO\ndecorator\tO\tdecorator\tO\nthat\tO\tthat\tO\nchecks\tO\tchecks\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\ninstance\tO\tinstance\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\n'\tO\t'\tO\nskip_signal B-Function skip_signal O\n'\tO\t'\tO\nattribute\tO\tattribute\tO\n,\tO\t,\tO\nand\tO\tand\tO\nif\tO\tif\tO\nso\tO\tso\tO\nprevents\tO\tprevents\tO\nthe\tO\tthe\tO\nmethod\tO\tmethod\tO\nfrom\tO\tfrom\tO\nbeing\tO\tbeing\tO\ncalled\tO\tcalled\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3761 I-Code_Block A_3761 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWe\tO\tWe\tO\ncan\tO\tcan\tO\nnow\tO\tnow\tO\nuse\tO\tuse\tO\nit\tO\tit\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3762 I-Code_Block A_3762 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHope\tO\tHope\tO\nThis\tO\tThis\tO\nhelps\tO\thelps\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8770235\tO\t8770235\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8770235/\tO\thttps://stackoverflow.com/questions/8770235/\tO\n\t\n\t\nI\tO\tI\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\nthink\tO\tthink\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nprevent\tO\tprevent\tO\nDjango B-Library Django O\nfrom\tO\tfrom\tO\nsending\tO\tsending\tO\nthose\tO\tthose\tO\nsignals\tO\tsignals\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadapt\tO\tadapt\tO\nyour\tO\tyour\tO\nhandler\tO\thandler\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\nlog\tO\tlog\tO\nsaves\tO\tsaves\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nCRUD_Storage B-Function CRUD_Storage B-Code_Block\nmodel\tO\tmodel\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1071 I-Code_Block A_1071 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n16060005\tO\t16060005\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16060005/\tO\thttps://stackoverflow.com/questions/16060005/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\nan\tO\tan\tO\ninternal\tO\tinternal\tO\nhelpdesk\tO\thelpdesk\tO\n.\tO\t.\tO\n\t\nEmails\tO\tEmails\tO\naddress\tO\taddress\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nhelpdesk\tO\thelpdesk\tO\nappear\tO\tappear\tO\nin\tO\tin\tO\na\tO\ta\tO\nNotes B-User_Interface_Element Notes O\nView I-User_Interface_Element View O\n,\tO\t,\tO\nand\tO\tand\tO\nI\tO\tI\tO\ncan\tO\tcan\tO\nopen\tO\topen\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nin\tO\tin\tO\nXPages B-Application XPages O\nand\tO\tand\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\ntext B-User_Interface_Element text O\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nit\tO\tit\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nshow\tO\tshow\tO\nany\tO\tany\tO\ninserted\tO\tinserted\tO\nimages B-User_Interface_Element images O\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\ntext B-User_Interface_Element text O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nlist\tO\tlist\tO\nthe\tO\tthe\tO\nattachments\tO\tattachments\tO\nas\tO\tas\tO\nexternal\tO\texternal\tO\nlinks\tO\tlinks\tO\n(\tO\t(\tO\ncourtesy\tO\tcourtesy\tO\nof\tO\tof\tO\nhttp://techdriveactive.blogspot.co.uk/2012/11/open-attachments-in-xpage-in-client.html\tO\thttp://techdriveactive.blogspot.co.uk/2012/11/open-attachments-in-xpage-in-client.html\tO\n)\tO\t)\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nget\tO\tget\tO\na\tO\ta\tO\nhandle\tO\thandle\tO\non\tO\ton\tO\nthe\tO\tthe\tO\nimages B-User_Interface_Element images O\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\n?\tO\t?\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16060005\tO\t16060005\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16060005/\tO\thttps://stackoverflow.com/questions/16060005/\tO\n\t\n\t\nTo\tO\tTo\tO\nyou\tO\tyou\tO\nHelpDeskOpenDoc.xsp B-File_Name HelpDeskOpenDoc.xsp O\nXPage B-Application XPage O\nadd\tO\tadd\tO\na\tO\ta\tO\nRich B-User_Interface_Element Rich O\nText I-User_Interface_Element Text O\ncontrol I-User_Interface_Element control O\nand\tO\tand\tO\nbind\tO\tbind\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nRich B-User_Interface_Element Rich O\nText I-User_Interface_Element Text O\nField I-User_Interface_Element Field O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nimages B-User_Interface_Element images O\nand\tO\tand\tO\nother\tO\tother\tO\nrich\tO\trich\tO\ncontent\tO\tcontent\tO\n..\tO\t..\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3057 I-Code_Block A_3057 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n16060005\tO\t16060005\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/16060005/\tO\thttps://stackoverflow.com/questions/16060005/\tO\n\t\n\t\nOne\tO\tOne\tO\nway\tO\tway\tO\naround\tO\taround\tO\nthat\tO\tthat\tO\nchallenge\tO\tchallenge\tO\nis\tO\tis\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nDojo B-Class Dojo O\nContentPane I-Class ContentPane O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nhas\tO\thas\tO\na\tO\ta\tO\nhref B-Variable href O\nattribute\tO\tattribute\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nurl\tO\turl\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nthen\tO\tthen\tO\ncan\tO\tcan\tO\npoint\tO\tpoint\tO\nit\tO\tit\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncontent\tO\tcontent\tO\nrendered\tO\trendered\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nclassic\tO\tclassic\tO\nengine\tO\tengine\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_2076 I-Code_Block A_2076 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nthis\tO\tthis\tO\nwo\tO\two\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nin\tO\tin\tO\nXPiNC B-Application XPiNC O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n44890740\tO\t44890740\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/44890740/\tO\thttps://stackoverflow.com/questions/44890740/\tO\n\t\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nimplementing\tO\timplementing\tO\nthis\tO\tthis\tO\ntick\tO\ttick\tO\nmethod\tO\tmethod\tO\nin\tO\tin\tO\na\tO\ta\tO\nWin B-Operating_System Win O\n8 B-Version 8 O\nWAMP B-Application WAMP O\nserver I-Application server O\nrunning\tO\trunning\tO\nPHP B-Language PHP O\n7.1 B-Version 7.1 O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5846 I-Code_Block Q_5846 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBut\tO\tBut\tO\nI\tO\tI\tO\nend\tO\tend\tO\nup\tO\tup\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nerror\tO\terror\tO\nafter\tO\tafter\tO\na\tO\ta\tO\nprocess\tO\tprocess\tO\nthat\tO\tthat\tO\nseem\tO\tseem\tO\nmore\tO\tmore\tO\nlike\tO\tlike\tO\nan\tO\tan\tO\ninfinite\tO\tinfinite\tO\nloop\tO\tloop\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nMean\tO\tMean\tO\nwhile\tO\twhile\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nworks\tO\tworks\tO\non\tO\ton\tO\na\tO\ta\tO\nlive\tO\tlive\tO\nsever B-Device sever O\nrunning\tO\trunning\tO\nPHP B-Language PHP O\n7.1 B-Version 7.1 O\nand\tO\tand\tO\nalso\tO\talso\tO\non\tO\ton\tO\na\tO\ta\tO\nWIN B-Operating_System WIN O\n8 B-Version 8 O\nWAMP B-Application WAMP O\nserver I-Application server O\nrunning\tO\trunning\tO\nPHP B-Language PHP O\n5.5 B-Version 5.5 O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26851123\tO\t26851123\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26851123/\tO\thttps://stackoverflow.com/questions/26851123/\tO\n\t\n\t\nFirst\tO\tFirst\tO\nof\tO\tof\tO\nall\tO\tall\tO\nreally\tO\treally\tO\nsorry\tO\tsorry\tO\nif\tO\tif\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\na\tO\ta\tO\nduplicate\tO\tduplicate\tO\n,\tO\t,\tO\nalthough\tO\talthough\tO\nI\tO\tI\tO\nthink\tO\tthink\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\ncoz\tO\tcoz\tO\nI\tO\tI\tO\nhave\tO\thave\tO\nsearched\tO\tsearched\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nbut\tO\tbut\tO\nfound\tO\tfound\tO\nnothing\tO\tnothing\tO\nworking\tO\tworking\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nthe\tO\tthe\tO\nnotification B-User_Interface_Element notification O\non\tO\ton\tO\nclick\tO\tclick\tO\nof\tO\tof\tO\ncancel B-User_Interface_Element cancel O\n-\tO\t-\tO\nwhich\tO\twhich\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nsomewhere\tO\tsomewhere\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\n.cancel() B-Function .cancel() O\nmethod\tO\tmethod\tO\nbut\tO\tbut\tO\nwhere\tO\twhere\tO\nshould\tO\tshould\tO\ni\tO\ti\tO\nmake\tO\tmake\tO\nthat\tO\tthat\tO\ncall\tO\tcall\tO\n.\tO\t.\tO\n\t\nOther\tO\tOther\tO\none\tO\tone\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nclick\tO\tclick\tO\non\tO\ton\tO\naccept B-User_Interface_Element accept O\nor\tO\tor\tO\ncancel B-User_Interface_Element cancel O\nthe\tO\tthe\tO\nintent B-Class intent O\nvalues\tO\tvalues\tO\ncomes\tO\tcomes\tO\nsame\tO\tsame\tO\nonly\tO\tonly\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\n\"\tO\t\"\tO\nNotifications\tO\tNotifications\tO\n\"\tO\t\"\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlogcat\tO\tlogcat\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nlet\tO\tlet\tO\nme\tO\tme\tO\nknow\tO\tknow\tO\nwhat\tO\twhat\tO\ni\tO\ti\tO\nam\tO\tam\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nnotification B-User_Interface_Element notification O\ncreator\tO\tcreator\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3073 I-Code_Block Q_3073 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhile\tO\tWhile\tO\nthe\tO\tthe\tO\nother\tO\tother\tO\nfile\tO\tfile\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nintent B-Class intent O\nreceiver\tO\treceiver\tO\nit\tO\tit\tO\nis\tO\tis\tO\nlike\tO\tlike\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3074 I-Code_Block Q_3074 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26851123\tO\t26851123\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26851123/\tO\thttps://stackoverflow.com/questions/26851123/\tO\n\t\n\t\n1)\tO\t1)\tO\nto\tO\tto\tO\nremove\tO\tremove\tO\nnotification B-User_Interface_Element notification O\non\tO\ton\tO\ncancel B-User_Interface_Element cancel O\nclick\tO\tclick\tO\n:\tO\t:\tO\n\t\nadd\tO\tadd\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nreciever\tO\treciever\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3706 I-Code_Block A_3706 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPS\tO\tPS\tO\n:\tO\t:\tO\nyou\tO\tyou\tO\nused\tO\tused\tO\n\" B-Value \" O\n1 I-Value 1 O\n\" I-Value \" O\nas\tO\tas\tO\nnotificationId B-Variable notificationId O\nin\tO\tin\tO\nyour\tO\tyour\tO\ncode\tO\tcode\tO\n(\tO\t(\tO\nmNotificationManager B-Code_Block mNotificationManager B-Code_Block\n. I-Code_Block . I-Code_Block\nnotify(1 I-Code_Block notify(1 I-Code_Block\n, I-Code_Block , I-Code_Block\nmBuilder I-Code_Block mBuilder I-Code_Block\n. I-Code_Block . I-Code_Block\nbuild I-Code_Block build I-Code_Block\n()) I-Code_Block ()) I-Code_Block\n;) I-Code_Block ;) I-Code_Block\n,\tO\t,\tO\nthe\tO\tthe\tO\nbest\tO\tbest\tO\nway\tO\tway\tO\nis\tO\tis\tO\nto\tO\tto\tO\nsend\tO\tsend\tO\nit\tO\tit\tO\nvia\tO\tvia\tO\nputExtra B-Function putExtra O\n() I-Function () O\nand\tO\tand\tO\nretrieve\tO\tretrieve\tO\nit\tO\tit\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\nreceiver\tO\treceiver\tO\n.\tO\t.\tO\n\t\n2)\tO\t2)\tO\nsorry\tO\tsorry\tO\n,\tO\t,\tO\ni\tO\ti\tO\ndid\tO\tdid\tO\nn't\tO\tn't\tO\nunderstand\tO\tunderstand\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\npart\tO\tpart\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nquestion\tO\tquestion\tO\n.\tO\t.\tO\n\t\ncan\tO\tcan\tO\nyou\tO\tyou\tO\nexplain\tO\texplain\tO\nmore\tO\tmore\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10386394\tO\t10386394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10386394/\tO\thttps://stackoverflow.com/questions/10386394/\tO\n\t\n\t\nIt\tO\tIt\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nincoming\tO\tincoming\tO\ntelephone B-User_Interface_Element telephone O\ncall I-User_Interface_Element call O\nscreen I-User_Interface_Element screen O\nbeing\tO\tbeing\tO\nshown\tO\tshown\tO\nover\tO\tover\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\n?\tO\t?\tO\n\t\nIn\tO\tIn\tO\nfact\tO\tfact\tO\n,\tO\t,\tO\nwhile\tO\twhile\tO\nwe\tO\twe\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\naccept\tO\taccept\tO\ncall\tO\tcall\tO\n-\tO\t-\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\ndeactivated\tO\tdeactivated\tO\n,\tO\t,\tO\nso\tO\tso\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nAPI B-Library API O\nmethod\tO\tmethod\tO\nor\tO\tor\tO\nmaybe\tO\tmaybe\tO\nsome\tO\tsome\tO\nworkarounds\tO\tworkarounds\tO\nlike\tO\tlike\tO\nscreenshoting\tO\tscreenshoting\tO\nand\tO\tand\tO\nverifying\tO\tverifying\tO\nby\tO\tby\tO\npixel\tO\tpixel\tO\n?\tO\t?\tO\n\t\n:-)\tO\t:-)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10386394\tO\t10386394\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10386394/\tO\thttps://stackoverflow.com/questions/10386394/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ntell\tO\ttell\tO\nif\tO\tif\tO\nthe\tO\tthe\tO\nuser\tO\tuser\tO\nis\tO\tis\tO\nreceiving\tO\treceiving\tO\nan\tO\tan\tO\nincoming\tO\tincoming\tO\ntelephone B-Device telephone O\ncall\tO\tcall\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nRootFrame.Obscured B-Class RootFrame.Obscured O\nevent\tO\tevent\tO\nas\tO\tas\tO\ndescribed\tO\tdescribed\tO\nhere\tO\there\tO\n:\tO\t:\tO\n\t\nhttp://www.wintellect.com/CS/blogs/jprosise/archive/2011/02/11/silverlight-for-windows-phone-programming-tip-6.aspx\tO\thttp://www.wintellect.com/CS/blogs/jprosise/archive/2011/02/11/silverlight-for-windows-phone-programming-tip-6.aspx\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37557116\tO\t37557116\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37557116/\tO\thttps://stackoverflow.com/questions/37557116/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nrun\tO\trun\tO\na\tO\ta\tO\nCSV B-File_Type CSV O\nimport\tO\timport\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nCOPY B-Function COPY B-Code_Block\ncommand\tO\tcommand\tO\nfor\tO\tfor\tO\nsome\tO\tsome\tO\ndata\tO\tdata\tO\nthat\tO\tthat\tO\nincludes\tO\tincludes\tO\na\tO\ta\tO\nguillemet\tO\tguillemet\tO\n(Âť) B-Code_Block (Âť) B-Code_Block\n.\tO\t.\tO\n\t\nRedshift B-Application Redshift O\ncomplains\tO\tcomplains\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncolumn B-Data_Structure column O\nvalue\tO\tvalue\tO\nis\tO\tis\tO\ntoo\tO\ttoo\tO\nlong\tO\tlong\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nvarchar B-Variable varchar B-Code_Block\ncolumn B-Data_Structure column O\nI\tO\tI\tO\nhave\tO\thave\tO\ndefined\tO\tdefined\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nerror\tO\terror\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\n\" B-Value \" O\nLoads I-Value Loads O\n\" I-Value \" O\ntab B-User_Interface_Element tab O\nin\tO\tin\tO\nthe\tO\tthe\tO\nRedshift B-Application Redshift O\nGUI I-Application GUI O\ndisplays\tO\tdisplays\tO\nthis\tO\tthis\tO\ncharacter\tO\tcharacter\tO\nas\tO\tas\tO\ntwo\tO\ttwo\tO\ndots\tO\tdots\tO\n:\tO\t:\tO\n. B-Value . B-Code_Block\n. I-Value . I-Code_Block\n-\tO\t-\tO\nhad\tO\thad\tO\nit\tO\tit\tO\nbeen\tO\tbeen\tO\ntreated\tO\ttreated\tO\nas\tO\tas\tO\none\tO\tone\tO\n,\tO\t,\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nhave\tO\thave\tO\nfit\tO\tfit\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nvarchar B-Variable varchar B-Code_Block\ncolumn B-Data_Structure column O\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nclear\tO\tclear\tO\nwhether\tO\twhether\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nconversion\tO\tconversion\tO\nerror\tO\terror\tO\noccurring\tO\toccurring\tO\nor\tO\tor\tO\nif\tO\tif\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\na\tO\ta\tO\ndisplay\tO\tdisplay\tO\nissue\tO\tissue\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nplain\tO\tplain\tO\nINSERTs B-Code_Block INSERTs B-Code_Block\nI\tO\tI\tO\nrun\tO\trun\tO\ninto\tO\tinto\tO\nstrange\tO\tstrange\tO\nbehavior\tO\tbehavior\tO\nas\tO\tas\tO\nwell\tO\twell\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4712 I-Code_Block Q_4712 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n3\tO\t3\tO\ncharacters\tO\tcharacters\tO\ntreated\tO\ttreated\tO\nas\tO\tas\tO\n4\tO\t4\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4713 I-Code_Block Q_4713 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhy\tO\tWhy\tO\ndoes\tO\tdoes\tO\nchar_length B-Function char_length B-Code_Block\nreturn\tO\treturn\tO\n2 B-Value 2 O\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4714 I-Code_Block Q_4714 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nchecked\tO\tchecked\tO\nthe\tO\tthe\tO\nclient\tO\tclient\tO\nencoding\tO\tencoding\tO\nand\tO\tand\tO\ndatabase\tO\tdatabase\tO\nencodings\tO\tencodings\tO\nand\tO\tand\tO\nthose\tO\tthose\tO\nall\tO\tall\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nUTF8/UNICODE\tO\tUTF8/UNICODE\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37557116\tO\t37557116\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37557116/\tO\thttps://stackoverflow.com/questions/37557116/\tO\n\t\n\t\nYou\tO\tYou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nincrease\tO\tincrease\tO\nthe\tO\tthe\tO\nlength\tO\tlength\tO\nof\tO\tof\tO\nyour\tO\tyour\tO\nvarchar B-Variable varchar O\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nMultibyte\tO\tMultibyte\tO\ncharacters B-Data_Type characters O\nuse\tO\tuse\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\none\tO\tone\tO\ncharacter B-Data_Type character O\nand\tO\tand\tO\nlength\tO\tlength\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndefinition\tO\tdefinition\tO\nof\tO\tof\tO\nvarchar B-Variable varchar O\nfield\tO\tfield\tO\nare\tO\tare\tO\nbyte\tO\tbyte\tO\nbased\tO\tbased\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nyour\tO\tyour\tO\nspecial\tO\tspecial\tO\nchar B-Data_Type char O\nmight\tO\tmight\tO\nbe\tO\tbe\tO\ntaking\tO\ttaking\tO\nmore\tO\tmore\tO\nthan\tO\tthan\tO\na\tO\ta\tO\nbyte\tO\tbyte\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nit\tO\tit\tO\nstill\tO\tstill\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nwork\tO\twork\tO\nrefer\tO\trefer\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndoc\tO\tdoc\tO\npage\tO\tpage\tO\nfor\tO\tfor\tO\nRedshift B-Application Redshift O\nbelow\tO\tbelow\tO\n,\tO\t,\tO\n\t\nhttp://docs.aws.amazon.com/redshift/latest/dg/multi-byte-character-load-errors.html\tO\thttp://docs.aws.amazon.com/redshift/latest/dg/multi-byte-character-load-errors.html\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n26904392\tO\t26904392\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26904392/\tO\thttps://stackoverflow.com/questions/26904392/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3083 I-Code_Block Q_3083 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n'd\tO\t'd\tO\nlike\tO\tlike\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nrow B-Data_Structure row O\nin\tO\tin\tO\nthe\tO\tthe\tO\nbig\tO\tbig\tO\nlist B-Data_Structure list O\nthe\tO\tthe\tO\n'\tO\t'\tO\nclosest\tO\tclosest\tO\n'\tO\t'\tO\nrow B-Data_Structure row O\nin\tO\tin\tO\nthe\tO\tthe\tO\nlittle\tO\tlittle\tO\nlist B-Data_Structure list O\n,\tO\t,\tO\nas\tO\tas\tO\ndefined\tO\tdefined\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\neuclidean\tO\teuclidean\tO\nnorm\tO\tnorm\tO\n(\tO\t(\tO\ni.e\tO\ti.e\tO\n.\tO\t.\tO\nsum\tO\tsum\tO\nof\tO\tof\tO\nsquared\tO\tsquared\tO\ndistances\tO\tdistances\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ncorresponding\tO\tcorresponding\tO\nvalues\tO\tvalues\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nk B-Code_Block k O\n=3 I-Code_Block =3 O\ndimension\tO\tdimension\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ncan\tO\tcan\tO\nsee\tO\tsee\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\ntwo\tO\ttwo\tO\nloops\tO\tloops\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nlike\tO\tlike\tO\nthere\tO\tthere\tO\nought\tO\tought\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nbetter\tO\tbetter\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\nbuilt\tO\tbuilt\tO\nin\tO\tin\tO\nmatrix B-Data_Structure matrix O\noperations\tO\toperations\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26904392\tO\t26904392\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26904392/\tO\thttps://stackoverflow.com/questions/26904392/\tO\n\t\n\t\nApproach\tO\tApproach\tO\n#1\tO\t#1\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nbuilt\tO\tbuilt\tO\nin\tO\tin\tO\nMATLAB B-Language MATLAB O\nfunction\tO\tfunction\tO\npdist2 B-Function pdist2 B-Code_Block\nwhich\tO\twhich\tO\nfinds\tO\tfinds\tO\n\"\tO\t\"\tB-Code_Block\nPairwise\tO\tPairwise\tI-Code_Block\ndistance\tO\tdistance\tI-Code_Block\nbetween\tO\tbetween\tI-Code_Block\ntwo\tO\ttwo\tI-Code_Block\nsets\tO\tsets\tI-Code_Block\nof\tO\tof\tI-Code_Block\nobservations\tO\tobservations\tI-Code_Block\n\"\tO\t\"\tI-Code_Block\n.\tO\t.\tO\n\t\nWith\tO\tWith\tO\nit\tO\tit\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncalculate\tO\tcalculate\tO\nthe\tO\tthe\tO\neuclidean\tO\teuclidean\tO\ndistance\tO\tdistance\tO\nmatrix B-Data_Structure matrix O\nand\tO\tand\tO\nthen\tO\tthen\tO\nfind\tO\tfind\tO\nindices\tO\tindices\tO\nof\tO\tof\tO\nminimum\tO\tminimum\tO\nvalues\tO\tvalues\tO\nalong\tO\talong\tO\nthe\tO\tthe\tO\nappropriate\tO\tappropriate\tO\ndimension\tO\tdimension\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndistance\tO\tdistance\tO\nmatrix B-Data_Structure matrix O\nthat\tO\tthat\tO\nwould\tO\twould\tO\nrepresent\tO\trepresent\tO\nthe\tO\tthe\tO\n\"\tO\t\"\tO\nclosest\tO\tclosest\tO\n\"\tO\t\"\tO\nfor\tO\tfor\tO\neach\tO\teach\tO\nrow B-Data_Structure row O\nof\tO\tof\tO\nbigList B-Variable bigList B-Code_Block\nin\tO\tin\tO\nlittleList B-Variable littleList B-Code_Block\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\n's\tO\t's\tO\nthe\tO\tthe\tO\none-liner\tO\tone-liner\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3721 I-Code_Block A_3721 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nApproach\tO\tApproach\tO\n#2\tO\t#2\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\ncare\tO\tcare\tO\nabout\tO\tabout\tO\nperformance\tO\tperformance\tO\n,\tO\t,\tO\nhere\tO\there\tO\n's\tO\t's\tO\na\tO\ta\tO\nmethod\tO\tmethod\tO\nthat\tO\tthat\tO\nleverages\tO\tleverages\tO\nfast\tO\tfast\tB-Code_Block\nmatrix B-Data_Structure matrix I-Code_Block\nmultiplication\tO\tmultiplication\tI-Code_Block\nin\tO\tin\tI-Code_Block\nMATLAB B-Language MATLAB I-Code_Block\n\t\nand\tO\tand\tO\nmost\tO\tmost\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\npresented\tO\tpresented\tO\nhere\tO\there\tO\nis\tO\tis\tO\ntaken\tO\ttaken\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nsmart\tO\tsmart\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3722 I-Code_Block A_3722 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBenchmarking\tO\tBenchmarking\tO\n\t\nBenchmarking\tO\tBenchmarking\tO\nCode\tO\tCode\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3723 I-Code_Block A_3723 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nBenchmark\tO\tBenchmark\tO\nresults\tO\tresults\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3724 I-Code_Block A_3724 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuick\tO\tQuick\tO\nconclusions\tO\tconclusions\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nruntimes\tO\truntimes\tO\nwith\tO\twith\tO\nShai B-User_Name Shai O\n's\tO\t's\tO\nsecond\tO\tsecond\tO\napproach\tO\tapproach\tO\nthat\tO\tthat\tO\nwas\tO\twas\tO\na\tO\ta\tO\ncombination\tO\tcombination\tO\nof\tO\tof\tO\nbsxfun B-Function bsxfun B-Code_Block\nand\tO\tand\tO\nmatrix B-Data_Structure matrix O\nmultiplication\tO\tmultiplication\tO\nwere\tO\twere\tO\nvery\tO\tvery\tO\nclose\tO\tclose\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\none\tO\tone\tO\nbased\tO\tbased\tO\non\tO\ton\tO\npdist2 B-Function pdist2 B-Code_Block\nand\tO\tand\tO\nno\tO\tno\tO\nclear\tO\tclear\tO\nwinner\tO\twinner\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\ndecided\tO\tdecided\tO\nbetween\tO\tbetween\tO\nthose\tO\tthose\tO\ntwo\tO\ttwo\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n26904392\tO\t26904392\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/26904392/\tO\thttps://stackoverflow.com/questions/26904392/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nwith\tO\twith\tO\nbsxfun B-Function bsxfun B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3717 I-Code_Block A_3717 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n23692695\tO\t23692695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23692695/\tO\thttps://stackoverflow.com/questions/23692695/\tO\n\t\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndetect\tO\tdetect\tO\nmousedown B-Class mousedown O\nevent I-Class event O\non\tO\ton\tO\na\tO\ta\tO\ndirective\tO\tdirective\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\nclicked\tO\tclicked\tO\n.\tO\t.\tO\n\t\nHowever\tO\tHowever\tO\nmy\tO\tmy\tO\ndirective\tO\tdirective\tO\nalso\tO\talso\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbecome\tO\tbecome\tO\nunforcused\tO\tunforcused\tO\nor\tO\tor\tO\ndeselected\tO\tdeselected\tO\nwhen\tO\twhen\tO\nmouse B-Device mouse O\nis\tO\tis\tO\ndown\tO\tdown\tO\noutside\tO\toutside\tO\nof\tO\tof\tO\nmy\tO\tmy\tO\ndirective/\tO\tdirective/\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n23692695\tO\t23692695\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/23692695/\tO\thttps://stackoverflow.com/questions/23692695/\tO\n\t\n\t\nCreate\tO\tCreate\tO\na\tO\ta\tO\nlink\tO\tlink\tO\nfunction\tO\tfunction\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nwhich\tO\twhich\tO\nbinds\tO\tbinds\tO\na\tO\ta\tO\nmousedown B-Class mousedown O\nevent I-Class event O\nhandler I-Class handler O\non\tO\ton\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\n.\tO\t.\tO\n\t\nThen\tO\tThen\tO\n,\tO\t,\tO\nbind\tO\tbind\tO\nanother\tO\tanother\tO\nmousedown B-Class mousedown O\nevent I-Class event O\non\tO\ton\tO\nthe\tO\tthe\tO\ndirective\tO\tdirective\tO\nelement\tO\telement\tO\nitself\tO\titself\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nlatter\tO\tlatter\tO\nhandler\tO\thandler\tO\nshould\tO\tshould\tO\nalso\tO\talso\tO\ncall\tO\tcall\tO\nevent.stopPropagation() B-Function event.stopPropagation() B-Code_Block\nto\tO\tto\tO\nprevent\tO\tprevent\tO\nthe\tO\tthe\tO\nevent\tO\tevent\tO\nfrom\tO\tfrom\tO\nbubbling\tO\tbubbling\tO\nall\tO\tall\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nup\tO\tup\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ndocument\tO\tdocument\tO\nlevel\tO\tlevel\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3239 I-Code_Block A_3239 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWorking\tO\tWorking\tO\nPlunker B-Application Plunker O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8883078\tO\t8883078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8883078/\tO\thttps://stackoverflow.com/questions/8883078/\tO\n\t\n\t\nIf\tO\tIf\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nwas\tO\twas\tO\ninstalled\tO\tinstalled\tO\non\tO\ton\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nuninstalled\tO\tuninstalled\tO\n,\tO\t,\tO\nis\tO\tis\tO\nthere\tO\tthere\tO\na\tO\ta\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndetermining\tO\tdetermining\tO\nthis\tO\tthis\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nAPN B-Application APN O\nfeedback\tO\tfeedback\tO\nservice\tO\tservice\tO\n?\tO\t?\tO\n\t\nThe\tO\tThe\tO\nfeedback\tO\tfeedback\tO\nservice\tO\tservice\tO\nis\tO\tis\tO\ndocumented\tO\tdocumented\tO\nas\tO\tas\tO\nsaying\tO\tsaying\tO\nits\tO\tits\tO\npossible\tO\tpossible\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\ndevices\tO\tdevices\tO\nwhich\tO\twhich\tO\nare\tO\tare\tO\nn't\tO\tn't\tO\nresponding\tO\tresponding\tO\nto\tO\tto\tO\nnotifications\tO\tnotifications\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nadditional\tO\tadditional\tO\ninformation\tO\tinformation\tO\nincluded\tO\tincluded\tO\n,\tO\t,\tO\nsuch\tO\tsuch\tO\nwhy\tO\twhy\tO\nits\tO\tits\tO\nnot\tO\tnot\tO\nresponding\tO\tresponding\tO\nand\tO\tand\tO\nwhen\tO\twhen\tO\nit\tO\tit\tO\nfirst\tO\tfirst\tO\nstarted\tO\tstarted\tO\nnon\tO\tnon\tO\nresponding\tO\tresponding\tO\netc\tO\tetc\tO\n.\tO\t.\tO\n?\tO\t?\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nway\tO\tway\tO\nof\tO\tof\tO\ndetermining\tO\tdetermining\tO\nif\tO\tif\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nuninstalled\tO\tuninstalled\tO\n?\tO\t?\tO\n\t\nOr\tO\tOr\tO\nof\tO\tof\tO\nknowing\tO\tknowing\tO\nif\tO\tif\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nis\tO\tis\tO\npresent\tO\tpresent\tO\nof\tO\tof\tO\nabsent\tO\tabsent\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\n?\tO\t?\tO\n\t\nThanks\tO\tThanks\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8883078\tO\t8883078\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8883078/\tO\thttps://stackoverflow.com/questions/8883078/\tO\n\t\n\t\nIn\tO\tIn\tO\nshort\tO\tshort\tO\n,\tO\t,\tO\nno\tO\tno\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nn't\tO\tn't\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndetermine\tO\tdetermine\tO\nif\tO\tif\tO\nan\tO\tan\tO\napp\tO\tapp\tO\nhas\tO\thas\tO\nbeen\tO\tbeen\tO\nuninstalled\tO\tuninstalled\tO\n.\tO\t.\tO\n\t\nSee\tO\tSee\tO\nmy\tO\tmy\tO\nanswer\tO\tanswer\tO\nto\tO\tto\tO\nthis\tO\tthis\tO\nquestion\tO\tquestion\tO\nwhich\tO\twhich\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nBasically\tO\tBasically\tO\n,\tO\t,\tO\nyes\tO\tyes\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nfeedback\tO\tfeedback\tO\nservice\tO\tservice\tO\nof\tO\tof\tO\nAPNS B-Application APNS O\nbut\tO\tbut\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nn't\tO\tn't\tO\nconclusively\tO\tconclusively\tO\ntell\tO\ttell\tO\nyou\tO\tyou\tO\nif\tO\tif\tO\na\tO\ta\tO\ndevice\tO\tdevice\tO\nhad\tO\thad\tO\nbeen\tO\tbeen\tO\nuninstalled\tO\tuninstalled\tO\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\nthis\tO\tthis\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nunfortunately\tO\tunfortunately\tO\ngoing\tO\tgoing\tO\nto\tO\tto\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ngoing\tO\tgoing\tO\nabout\tO\tabout\tO\nthings\tO\tthings\tO\nas\tO\tas\tO\nit\tO\tit\tO\n's\tO\t's\tO\nimpossible\tO\timpossible\tO\nto\tO\tto\tO\nknow\tO\tknow\tO\n(\tO\t(\tO\nat\tO\tat\tO\npresent\tO\tpresent\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43884711\tO\t43884711\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43884711/\tO\thttps://stackoverflow.com/questions/43884711/\tO\n\t\n\t\nng-map.min.js B-File_Name ng-map.min.js O\nin\tO\tin\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nfor\tO\tfor\tO\nview\tO\tview\tO\nmap B-User_Interface_Element map O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\nmap B-User_Interface_Element map O\nmy\tO\tmy\tO\napplicatoion\tO\tapplicatoion\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nin\tO\tin\tO\nconsole B-Application console O\nthere\tO\tthere\tO\nis\tO\tis\tO\nan\tO\tan\tO\nerror\tO\terror\tO\nlike\tO\tlike\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5668 I-Code_Block Q_5668 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nMy\tO\tMy\tO\nMap B-User_Interface_Element Map O\ndiv B-HTML_XML_Tag div O\nis\tO\tis\tO\nfollowing\tO\tfollowing\tO\nbelow\tO\tbelow\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5669 I-Code_Block Q_5669 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5670 I-Code_Block Q_5670 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ngot\tO\tgot\tO\nmap B-User_Interface_Element map O\nbut\tO\tbut\tO\nin\tO\tin\tO\nconsole B-Application console O\nerrors\tO\terrors\tO\noccurs\tO\toccurs\tO\n.How\tO\t.How\tO\ncan\tO\tcan\tO\ni\tO\ti\tO\nsolve\tO\tsolve\tO\nthis\tO\tthis\tO\nissues\tO\tissues\tO\n?\tO\t?\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n34612581\tO\t34612581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34612581/\tO\thttps://stackoverflow.com/questions/34612581/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\na\tO\ta\tO\nsong\tO\tsong\tO\nin\tO\tin\tO\nbrowses B-Application browses O\nincluding\tO\tincluding\tO\nAndroid B-Device Android O\nand\tO\tand\tO\nIphone B-Device Iphone O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ndid\tO\tdid\tO\nit\tO\tit\tO\nusing\tO\tusing\tO\nthe\tO\tthe\tO\nhtml5 B-Language html5 O\naudio\tO\taudio\tO\nplayer\tO\tplayer\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nplaybackrate B-Variable playbackrate O\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nMobile B-Device Mobile O\nBrowsers B-Application Browsers O\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nthere\tO\tthere\tO\nany\tO\tany\tO\nlibrary\tO\tlibrary\tO\nor\tO\tor\tO\nplugin\tO\tplugin\tO\navailable\tO\tavailable\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\n?\tO\t?\tO\n.\tO\t.\tO\n\t\nIs\tO\tIs\tO\nweb-audio B-Library web-audio O\nAPI I-Library API O\nsupports\tO\tsupports\tO\nthis\tO\tthis\tO\nfeature\tO\tfeature\tO\n?\tO\t?\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthis\tO\tthis\tO\nsite\tO\tsite\tO\nplayback B-Variable playback O\nrate I-Variable rate O\nis\tO\tis\tO\nworking\tO\tworking\tO\nin\tO\tin\tO\nmobiles B-Device mobiles O\ntoo\tO\ttoo\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nunable\tO\tunable\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nwhich\tO\twhich\tO\nmethod\tO\tmethod\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nfollowing\tO\tfollowing\tO\n?\tO\t?\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4220 I-Code_Block Q_4220 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34612581\tO\t34612581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34612581/\tO\thttps://stackoverflow.com/questions/34612581/\tO\n\t\n\t\nThe\tO\tThe\tO\nsite\tO\tsite\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nlinking\tO\tlinking\tO\nto\tO\tto\tO\nuses\tO\tuses\tO\nWeb B-Library Web O\nAudio I-Library Audio O\n,\tO\t,\tO\nbut\tO\tbut\tO\nit\tO\tit\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\nuse\tO\tuse\tO\nplaybackrate B-Variable playbackrate O\nto\tO\tto\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntempo\tO\ttempo\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nsong\tO\tsong\tO\n.\tO\t.\tO\n\t\nInstead\tO\tInstead\tO\nit\tO\tit\tO\nschedules\tO\tschedules\tO\neach\tO\teach\tO\nnote\tO\tnote\tO\nseparately\tO\tseparately\tO\n,\tO\t,\tO\nso\tO\tso\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\ntempo\tO\ttempo\tO\n,\tO\t,\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nreally\tO\treally\tO\ndoing\tO\tdoing\tO\nis\tO\tis\tO\nchange\tO\tchange\tO\nthe\tO\tthe\tO\nBPM\tO\tBPM\tO\nat\tO\tat\tO\nwhich\tO\twhich\tO\nnotes\tO\tnotes\tO\nare\tO\tare\tO\nscheduled\tO\tscheduled\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nthink\tO\tthink\tO\nof\tO\tof\tO\nit\tO\tit\tO\nas\tO\tas\tO\nchanging\tO\tchanging\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4936 I-Code_Block A_4936 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nto\tO\tto\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4937 I-Code_Block A_4937 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ngo\tO\tgo\tO\nfrom\tO\tfrom\tO\n60 B-Value 60 O\nBPM I-Value BPM O\nto\tO\tto\tO\n120 B-Value 120 O\nBPM I-Value BPM O\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\n,\tO\t,\tO\nhowever\tO\thowever\tO\n,\tO\t,\tO\na\tO\ta\tO\nsimilar\tO\tsimilar\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nWeb B-Library Web O\nAudio I-Library Audio O\nas\tO\tas\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\ndoing\tO\tdoing\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\nelement\tO\telement\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nAudioBufferSourceNode B-Class AudioBufferSourceNode O\n,\tO\t,\tO\nwhich\tO\twhich\tO\nyou\tO\tyou\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\na\tO\ta\tO\npre\tO\tpre\tO\nrecorded\tO\trecorded\tO\nsample\tO\tsample\tO\n,\tO\t,\tO\nhas\tO\thas\tO\na\tO\ta\tO\nproperty\tO\tproperty\tO\ncalled\tO\tcalled\tO\nplaybackRate B-Variable playbackRate O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nchanges\tO\tchanges\tO\nthe\tO\tthe\tO\nrate\tO\trate\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\naudio\tO\taudio\tO\n(\tO\t(\tO\nbut\tO\tbut\tO\ndoes\tO\tdoes\tO\nn't\tO\tn't\tO\ndo\tO\tdo\tO\npitch\tO\tpitch\tO\ncorrection\tO\tcorrection\tO\n!\tO\t!\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCheck\tO\tCheck\tO\nit\tO\tit\tO\nout\tO\tout\tO\nat\tO\tat\tO\nhttps://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode\tO\thttps://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n34612581\tO\t34612581\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/34612581/\tO\thttps://stackoverflow.com/questions/34612581/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nno\tO\tno\tO\nany\tO\tany\tO\nexternal\tO\texternal\tO\nPlugin B-Application Plugin O\nor\tO\tor\tO\nAPI B-Application API O\nwhich\tO\twhich\tO\nis\tO\tis\tO\nrequired\tO\trequired\tO\nto\tO\tto\tO\nplay\tO\tplay\tO\naudio\tO\taudio\tO\nin\tO\tin\tO\nBrowser B-Application Browser O\n,\tO\t,\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nadvantages\tO\tadvantages\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\nHTML5 B-Language HTML5 O\n.\tO\t.\tO\n\t\nBelow\tO\tBelow\tO\ni\tO\ti\tO\nam\tO\tam\tO\nmentioning\tO\tmentioning\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nwith\tO\twith\tO\neasy\tO\teasy\tO\nsyntax\tO\tsyntax\tO\nand\tO\tand\tO\nattributes\tO\tattributes\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4928 I-Code_Block A_4928 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n48232498\tO\t48232498\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48232498/\tO\thttps://stackoverflow.com/questions/48232498/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nupdate\tO\tupdate\tO\na\tO\ta\tO\nMySQL B-Application MySQL O\ntable\tO\ttable\tO\nusing\tO\tusing\tO\nC# B-Language C# O\n,\tO\t,\tO\nhowever\tO\thowever\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ngetting\tO\tgetting\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nBelow\tO\tBelow\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfull\tO\tfull\tO\nquery\tO\tquery\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nattempting\tO\tattempting\tO\nto\tO\tto\tO\nexecute\tO\texecute\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\ninserted\tO\tinserted\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6414 I-Code_Block Q_6414 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nchecked\tO\tchecked\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\ncolumn B-Data_Structure column O\nnames\tO\tnames\tO\nare\tO\tare\tO\ncorrect\tO\tcorrect\tO\nand\tO\tand\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\njust\tO\tjust\tO\nca\tO\tca\tO\nn't\tO\tn't\tO\nseem\tO\tseem\tO\nto\tO\tto\tO\nspot\tO\tspot\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\ninvalid\tO\tinvalid\tO\nabout\tO\tabout\tO\nmy\tO\tmy\tO\nquery\tO\tquery\tO\n,\tO\t,\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nsure\tO\tsure\tO\nit\tO\tit\tO\n's\tO\t's\tO\nsomething\tO\tsomething\tO\nbasic\tO\tbasic\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nanyone\tO\tanyone\tO\nspot\tO\tspot\tO\nwhat\tO\twhat\tO\nis\tO\tis\tO\nwrong\tO\twrong\tO\nwith\tO\twith\tO\nit\tO\tit\tO\n?\tO\t?\tO\n\t\nCheers\tO\tCheers\tO\n\t\nEDIT\tO\tEDIT\tO\n-\tO\t-\tO\nThere\tO\tThere\tO\nis\tO\tis\tO\na\tO\ta\tO\nsingle\tO\tsingle\tO\nquotation\tO\tquotation\tO\nmark\tO\tmark\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nuid='0 B-Code_Block uid='0 O\nhowever\tO\thowever\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nhave\tO\thave\tO\ndisapeared\tO\tdisapeared\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\npost\tO\tpost\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n48232498\tO\t48232498\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/48232498/\tO\thttps://stackoverflow.com/questions/48232498/\tO\n\t\n\t\nmissing\tO\tmissing\tO\n' B-Value ' O\nfollowing\tO\tfollowing\tO\nzero\tO\tzero\tO\n:\tO\t:\tO\nnear B-Code_Block near O\nciv_alive='0 I-Code_Block civ_alive='0 O\n\t\noriginal\tO\toriginal\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7062 I-Code_Block A_7062 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nerror\tO\terror\tO\nsyntax\tO\tsyntax\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7063 I-Code_Block A_7063 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nregarding\tO\tregarding\tO\nmariadb B-Application mariadb O\ncomments\tO\tcomments\tO\n-\tO\t-\tO\nmariadb B-Application mariadb O\nis\tO\tis\tO\na\tO\ta\tO\nfork\tO\tfork\tO\nof\tO\tof\tO\nmysql B-Application mysql O\nso\tO\tso\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\npretty\tO\tpretty\tO\nsimilar\tO\tsimilar\tO\n,\tO\t,\tO\ntherefore\tO\ttherefore\tO\nwould\tO\twould\tO\nnot\tO\tnot\tO\nmake\tO\tmake\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\nout\tO\tout\tO\nof\tO\tof\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n39409500\tO\t39409500\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39409500/\tO\thttps://stackoverflow.com/questions/39409500/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\npandas.DataFrame B-Class pandas.DataFrame B-Code_Block\nwith\tO\twith\tO\n3\tO\t3\tO\ncolumns B-Data_Structure columns O\nof\tO\tof\tO\ntype\tO\ttype\tO\nstr B-Data_Type str B-Code_Block\nand\tO\tand\tO\nn B-Variable n B-Code_Block\nother\tO\tother\tO\ncolumns B-Data_Structure columns O\nof\tO\tof\tO\ntype\tO\ttype\tO\nfloat64 B-Data_Type float64 B-Code_Block\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ngroup\tO\tgroup\tO\nrows\tO\trows\tO\nby\tO\tby\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nthree\tO\tthree\tO\nstr B-Data_Type str B-Code_Block\ncolumns\tO\tcolumns\tO\nand\tO\tand\tO\napply\tO\tapply\tO\na\tO\ta\tO\nfunction\tO\tfunction\tO\nmyComplexFunc() B-Function myComplexFunc() B-Code_Block\nwhich\tO\twhich\tO\nwill\tO\twill\tO\nreduce\tO\treduce\tO\n`̀N B-Value `̀N O\nrows\tO\trows\tO\nto\tO\tto\tO\none\tO\tone\tO\nrow\tO\trow\tO\n.\tO\t.\tO\n\t\nmyComplexFunc() B-Function myComplexFunc() B-Code_Block\ntake\tO\ttake\tO\nonly\tO\tonly\tO\nrows B-Variable rows O\nof\tO\tof\tO\ntype\tO\ttype\tO\nfloat64 B-Data_Type float64 B-Code_Block\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nwith\tO\twith\tO\nsome\tO\tsome\tO\nfor B-Code_Block for O\nloops I-Code_Block loops O\nbut\tO\tbut\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nefficient\tO\tefficient\tO\n,\tO\t,\tO\nSo\tO\tSo\tO\nI\tO\tI\tO\ntried\tO\ttried\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nflexible\tO\tflexible\tO\napply\tO\tapply\tO\nof\tO\tof\tO\npandas B-Library pandas B-Code_Block\nbut\tO\tbut\tO\nit\tO\tit\tO\nseems\tO\tseems\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nruns\tO\truns\tO\nthe\tO\tthe\tO\nheavy\tO\theavy\tO\ncode\tO\tcode\tO\nof\tO\tof\tO\nmyComplexFunc() B-Function myComplexFunc() B-Code_Block\ntwice\tO\ttwice\tO\n!\tO\t!\tO\n\t\nTo\tO\tTo\tO\nbe\tO\tbe\tO\nmore\tO\tmore\tO\nclear\tO\tclear\tO\n,\tO\t,\tO\nhere\tO\there\tO\nis\tO\tis\tO\na\tO\ta\tO\nminimal\tO\tminimal\tO\nexample\tO\texample\tO\n\t\nLet\tO\tLet\tO\n\"\tO\t\"\tO\ndf B-Variable df O\n\"\tO\t\"\tO\nbe\tO\tbe\tO\na\tO\ta\tO\ndataFrame B-Class dataFrame O\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4965 I-Code_Block Q_4965 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nmyComplexFunc() B-Function myComplexFunc() O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4966 I-Code_Block Q_4966 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\nI\tO\tI\tO\nwant\tO\twant\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4967 I-Code_Block Q_4967 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\ncolumn\tO\tcolumn\tO\nB B-Variable B B-Code_Block\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\nremoved\tO\tremoved\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\nnot\tO\tnot\tO\nof\tO\tof\tO\ntype\tO\ttype\tO\nfloat64 B-Data_Type float64 B-Code_Block\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nin\tO\tin\tO\nadvance\tO\tadvance\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n39409500\tO\t39409500\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/39409500/\tO\thttps://stackoverflow.com/questions/39409500/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfilter\tO\tfilter\tO\nDataFrame B-Class DataFrame O\nby\tO\tby\tO\ndtype B-Data_Type dtype B-Code_Block\nby\tO\tby\tO\nselect_dtypes B-Function select_dtypes B-Code_Block\n,\tO\t,\tO\nbut\tO\tbut\tO\nthen\tO\tthen\tO\nneed\tO\tneed\tO\naggreagate\tO\taggreagate\tO\nby\tO\tby\tO\nSeries B-Class Series B-Code_Block\ndf.A B-Variable df.A I-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5690 I-Code_Block A_5690 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nbecause\tO\tbecause\tO\nif\tO\tif\tO\nuse\tO\tuse\tO\nonly\tO\tonly\tO\nA B-Variable A B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5691 I-Code_Block A_5691 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nget\tO\tget\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nand\tO\tand\tO\nit\tO\tit\tO\nis\tO\tis\tO\nright\tO\tright\tO\n-\tO\t-\tO\nall\tO\tall\tO\nstring B-Data_Type string O\ncolumns\tO\tcolumns\tO\nare\tO\tare\tO\nexcluded\tO\texcluded\tO\n(\tO\t(\tO\nA B-Variable A B-Code_Block\nand\tO\tand\tO\nB B-Variable B B-Code_Block\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5692 I-Code_Block A_5692 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n6647098\tO\t6647098\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6647098/\tO\thttps://stackoverflow.com/questions/6647098/\tO\n\t\n\t\nSomething\tO\tSomething\tO\ngoing\tO\tgoing\tO\nwrong\tO\twrong\tO\nbadly\tO\tbadly\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nMessage B-User_Interface_Element Message O\nCompose I-User_Interface_Element Compose O\nScreen I-User_Interface_Element Screen O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nworking\tO\tworking\tO\non\tO\ton\tO\na\tO\ta\tO\nTabBar B-User_Interface_Element TabBar O\nbased\tO\tbased\tO\napplication\tO\tapplication\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nsome\tO\tsome\tO\nscreens\tO\tscreens\tO\nI\tO\tI\tO\nam\tO\tam\tO\nshowing\tO\tshowing\tO\nToolBar B-User_Interface_Element ToolBar O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\ntabBar B-User_Interface_Element tabBar O\nby\tO\tby\tO\nsetting\tO\tsetting\tO\nhidesBottomBarWhenPushed B-Code_Block hidesBottomBarWhenPushed B-Code_Block\n= I-Code_Block = I-Code_Block\nYES I-Code_Block YES I-Code_Block\n; I-Code_Block ; I-Code_Block\nand\tO\tand\tO\nits\tO\tits\tO\nworking\tO\tworking\tO\nfine\tO\tfine\tO\neverytime\tO\teverytime\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nIn\tO\tIn\tO\n1\tO\t1\tO\nscreen\tO\tscreen\tO\nI\tO\tI\tO\nam\tO\tam\tO\nsending\tO\tsending\tO\nSMS\tO\tSMS\tO\nby\tO\tby\tO\nopening\tO\topening\tO\nMessage B-User_Interface_Element Message O\nCompose I-User_Interface_Element Compose O\nScreen I-User_Interface_Element Screen O\nwithin\tO\twithin\tO\nthe\tO\tthe\tO\niphone B-Device iphone O\nApp\tO\tApp\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nproblem\tO\tproblem\tO\noccurs\tO\toccurs\tO\nif\tO\tif\tO\nI\tO\tI\tO\nopen\tO\topen\tO\nMessage B-User_Interface_Element Message O\nCompose I-User_Interface_Element Compose O\nScreen I-User_Interface_Element Screen O\nand\tO\tand\tO\ni\tO\ti\tO\nclicked\tO\tclicked\tO\nCancel\tO\tCancel\tO\nbutton B-User_Interface_Element button O\nof\tO\tof\tO\nMessage\tO\tMessage\tO\nScreen\tO\tScreen\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\n,\tO\t,\tO\nwhenever\tO\twhenever\tO\ngoing\tO\tgoing\tO\nback\tO\tback\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nmodule\tO\tmodule\tO\nwhere\tO\twhere\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nshowing\tO\tshowing\tO\nToolBar B-User_Interface_Element ToolBar O\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\non\tO\ton\tO\nclick\tO\tclick\tO\nof\tO\tof\tO\nbutton\tO\tbutton\tO\nno\tO\tno\tO\nToolBar B-User_Interface_Element ToolBar O\n.\tO\t.\tO\n\t\nTotally\tO\tTotally\tO\nblank\tO\tblank\tO\n,\tO\t,\tO\nno\tO\tno\tO\ntoolbar B-User_Interface_Element toolbar O\nand\tO\tand\tO\nno\tO\tno\tO\ntabbar B-User_Interface_Element tabbar O\n(\tO\t(\tO\ntabbar B-User_Interface_Element tabbar O\nis\tO\tis\tO\nquite\tO\tquite\tO\nobvious\tO\tobvious\tO\ni\tO\ti\tO\nhave\tO\thave\tO\nalready\tO\talready\tO\nset\tO\tset\tO\nhidesBottomBarWhenPushed B-Class hidesBottomBarWhenPushed O\n)\tO\t)\tO\n.\tO\t.\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nwhy\tO\twhy\tO\ntoolbar B-User_Interface_Element toolbar O\nnow\tO\tnow\tO\nshowing\tO\tshowing\tO\ndue\tO\tdue\tO\nto\tO\tto\tO\nCompose B-User_Interface_Element Compose O\nscreen I-User_Interface_Element screen O\n?\tO\t?\tO\n\t\nThere\tO\tThere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nlink\tO\tlink\tO\nwith\tO\twith\tO\ncompose B-User_Interface_Element compose O\nscreen I-User_Interface_Element screen O\nto\tO\tto\tO\nthis\tO\tthis\tO\nscreen B-User_Interface_Element screen O\n.\tO\t.\tO\n\t\nFar\tO\tFar\tO\ndifferent\tO\tdifferent\tO\nimplementation\tO\timplementation\tO\nand\tO\tand\tO\ndifferent\tO\tdifferent\tO\ncontrollers\tO\tcontrollers\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\ncheck\tO\tcheck\tO\nby\tO\tby\tO\ndebugging\tO\tdebugging\tO\n,\tO\t,\tO\nToolbar B-User_Interface_Element Toolbar O\nframe\tO\tframe\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nhelp\tO\thelp\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6647098\tO\t6647098\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6647098/\tO\thttps://stackoverflow.com/questions/6647098/\tO\n\t\n\t\nI\tO\tI\tO\nthink\tO\tthink\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbecause\tO\tbecause\tO\nthe\tO\tthe\tO\nMFMessageComposeViewController B-Class MFMessageComposeViewController O\nhas\tO\thas\tO\ngot\tO\tgot\tO\na\tO\ta\tO\nnavigation B-User_Interface_Element navigation O\nbar I-User_Interface_Element bar O\n.\tO\t.\tO\n\t\nYour\tO\tYour\tO\napplication\tO\tapplication\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nnavigation\tO\tnavigation\tO\nbased\tO\tbased\tO\napplication\tO\tapplication\tO\nfor\tO\tfor\tO\nthat\tO\tthat\tO\n.\tO\t.\tO\n\t\nOtherwise\tO\tOtherwise\tO\nyour\tO\tyour\tO\ntoolbar B-User_Interface_Element toolbar O\n's\tO\t's\tO\nframe\tO\tframe\tO\nposition\tO\tposition\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\naffected\tO\taffected\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nhad\tO\thad\tO\nthis\tO\tthis\tO\nkind\tO\tkind\tO\nof\tO\tof\tO\nproblem\tO\tproblem\tO\nonce\tO\tonce\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\ni\tO\ti\tO\nchanged\tO\tchanged\tO\nthe\tO\tthe\tO\napplication\tO\tapplication\tO\ninto\tO\tinto\tO\nnavigation\tO\tnavigation\tO\nbased\tO\tbased\tO\nbut\tO\tbut\tO\nhid\tO\thid\tO\nthe\tO\tthe\tO\nnavigation B-User_Interface_Element navigation O\ncontroller I-User_Interface_Element controller O\n. I-User_Interface_Element . O\n\t\nHope\tO\tHope\tO\nthis\tO\tthis\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\nyou\tO\tyou\tO\n,\tO\t,\tO\n\t\nHappy\tO\tHappy\tO\ncoding\tO\tcoding\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n6647098\tO\t6647098\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/6647098/\tO\thttps://stackoverflow.com/questions/6647098/\tO\n\t\n\t\nIssue\tO\tIssue\tO\nfixed\tO\tfixed\tO\n..\tO\t..\tO\n.\tO\t.\tO\nhad\tO\thad\tO\nproblem\tO\tproblem\tO\nwith\tO\twith\tO\nadding\tO\tadding\tO\nit\tO\tit\tO\nto\tO\tto\tO\nkeyframe B-User_Interface_Element keyframe O\nwindow I-User_Interface_Element window O\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n43393391\tO\t43393391\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43393391/\tO\thttps://stackoverflow.com/questions/43393391/\tO\n\t\n\t\nI\tO\tI\tO\n'm\tO\t'm\tO\ntraying\tO\ttraying\tO\nto\tO\tto\tO\nread\tO\tread\tO\nmails\tO\tmails\tO\nfrom\tO\tfrom\tO\ngmail B-Application gmail O\n\t\nusing\tO\tusing\tO\nImapClient B-Application ImapClient O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_5556 I-Code_Block Q_5556 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAn\tO\tAn\tO\nexception B-Class exception O\nof\tO\tof\tO\ntype\tO\ttype\tO\n'\tO\t'\tO\nSystem.Exception B-Error_Name System.Exception O\n'\tO\t'\tO\noccurred\tO\toccurred\tO\nin\tO\tin\tO\nAE.Net.Mail.dll B-File_Name AE.Net.Mail.dll O\nbut\tO\tbut\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\nhandled\tO\thandled\tO\nin\tO\tin\tO\nuser\tO\tuser\tO\ncode\tO\tcode\tO\n\t\nAdditional\tO\tAdditional\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\nxm003 B-Value xm003 O\nBAD\tO\tBAD\tO\nCould\tO\tCould\tO\nnot\tO\tnot\tO\nparse\tO\tparse\tO\ncommand\tO\tcommand\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43393391\tO\t43393391\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43393391/\tO\thttps://stackoverflow.com/questions/43393391/\tO\n\t\n\t\nThis\tO\tThis\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\ncurrently\tO\tcurrently\tO\nan\tO\tan\tO\nopen\tO\topen\tO\nbug\tO\tbug\tO\nwith\tO\twith\tO\nAE.Net.Mail B-Library AE.Net.Mail O\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nsee\tO\tsee\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nURL\tO\tURL\tO\nfor\tO\tfor\tO\ninformation\tO\tinformation\tO\n:\tO\t:\tO\n\t\nhttps://github.com/andyedinborough/aenetmail/issues/197\tO\thttps://github.com/andyedinborough/aenetmail/issues/197\tO\n\t\nIt\tO\tIt\tO\nlooks\tO\tlooks\tO\nlike\tO\tlike\tO\n,\tO\t,\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nbug\tO\tbug\tO\ninformation\tO\tinformation\tO\nand\tO\tand\tO\ncomments\tO\tcomments\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\n's\tO\t's\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nwith\tO\twith\tO\nthe\tO\tthe\tO\nDateTime B-Class DateTime O\nin\tO\tin\tO\nthe\tO\tthe\tO\nsearch B-Class search O\ncondition I-Class condition O\n.\tO\t.\tO\n\t\nReplacing\tO\tReplacing\tO\nyour\tO\tyour\tO\ncurrent\tO\tcurrent\tO\nSearchCondition B-Class SearchCondition B-Code_Block\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nmight\tO\tmight\tO\nprevent\tO\tprevent\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\n,\tO\t,\tO\nif\tO\tif\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\nreading\tO\treading\tO\nthe\tO\tthe\tO\ncomments\tO\tcomments\tO\ncorrectly\tO\tcorrectly\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6275 I-Code_Block A_6275 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n43393391\tO\t43393391\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/43393391/\tO\thttps://stackoverflow.com/questions/43393391/\tO\n\t\n\t\n@Ahmado B-User_Name @Ahmado O\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\npop3\tO\tpop3\tO\nfor\tO\tfor\tO\nreading\tO\treading\tO\ninbox B-Application inbox O\nemail\tO\temail\tO\n.\tO\t.\tO\n\t\nthis\tO\tthis\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nfor\tO\tfor\tO\nonly\tO\tonly\tO\ngmail B-Application gmail O\n,\tO\t,\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nuse\tO\tuse\tO\nfor\tO\tfor\tO\nother\tO\tother\tO\nemail\tO\temail\tO\nalso.for\tO\talso.for\tO\nthis\tO\tthis\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\n2\tO\t2\tO\ndll B-File_Type dll O\n.\tO\t.\tO\n\t\nDownload\tO\tDownload\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\napplicatin\tO\tapplicatin\tO\nusing\tO\tusing\tO\nnuget B-Application nuget O\n.\tO\t.\tO\n\t\nOpenPop.NET B-Library OpenPop.NET O\nand\tO\tand\tO\nAE.Net.Mail B-Library AE.Net.Mail O\n\t\nStep1\tO\tStep1\tO\n:\tO\t:\tO\nAccording\tO\tAccording\tO\nto\tO\tto\tO\nyour\tO\tyour\tO\ncredential\tO\tcredential\tO\nread\tO\tread\tO\nall\tO\tall\tO\ninbox B-Application inbox O\nemail\tO\temail\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6540 I-Code_Block A_6540 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nStep\tO\tStep\tO\n2\tO\t2\tO\n:Each\tO\t:Each\tO\nemail\tO\temail\tO\nhas\tO\thas\tO\na\tO\ta\tO\nunique\tO\tunique\tO\nid B-Variable id O\n,\tO\t,\tO\nusing\tO\tusing\tO\nthis\tO\tthis\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nemail\tO\temail\tO\ndetails\tO\tdetails\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_6541 I-Code_Block A_6541 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\nfor\tO\tfor\tO\nASP.NET B-Library ASP.NET O\nMVC I-Library MVC O\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nyour\tO\tyour\tO\ncase\tO\tcase\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nreview\tO\treview\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nsample\tO\tsample\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n45244287\tO\t45244287\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/45244287/\tO\thttps://stackoverflow.com/questions/45244287/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\nbeen\tO\tbeen\tO\ntrying\tO\ttrying\tO\nfor\tO\tfor\tO\ntwo\tO\ttwo\tO\nweeks\tO\tweeks\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nbinaries\tO\tbinaries\tO\nfor\tO\tfor\tO\nffmpeg B-Application ffmpeg O\nand\tO\tand\tO\nSox B-Application Sox O\n(\tO\t(\tO\narmeabi B-Device armeabi O\n,\tO\t,\tO\narmeabiv7 B-Device armeabiv7 O\n,\tO\t,\tO\nx86 B-Device x86 O\n)\tO\t)\tO\nbut\tO\tbut\tO\ni\tO\ti\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nsucceed\tO\tsucceed\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ntried\tO\ttried\tO\nbuilding\tO\tbuilding\tO\nit\tO\tit\tO\nmy\tO\tmy\tO\nself\tO\tself\tO\nfrom\tO\tfrom\tO\nthis\tO\tthis\tO\nproject\tO\tproject\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nstill\tO\tstill\tO\ndid\tO\tdid\tO\nnot\tO\tnot\tO\nsucceed\tO\tsucceed\tO\n.\tO\t.\tO\n\t\nCan\tO\tCan\tO\nyou\tO\tyou\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nbuild\tO\tbuild\tO\nthe\tO\tthe\tO\nproject\tO\tproject\tO\nand\tO\tand\tO\nthen\tO\tthen\tO\nshare\tO\tshare\tO\nthe\tO\tthe\tO\nbinaries B-File_Type binaries O\n?\tO\t?\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nheartly\tO\theartly\tO\nappreciate\tO\tappreciate\tO\n.\tO\t.\tO\n\t\nHere\tO\tHere\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\ngithub B-Website github O\nrepository\tO\trepository\tO\n\t\nhttps://github.com/guardianproject/android-ffmpeg\tO\thttps://github.com/guardianproject/android-ffmpeg\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n30370935\tO\t30370935\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30370935/\tO\thttps://stackoverflow.com/questions/30370935/\tO\n\t\n\t\nHow\tO\tHow\tO\nto\tO\tto\tO\nget\tO\tget\tO\nprevious\tO\tprevious\tO\nor\tO\tor\tO\nnext\tO\tnext\tO\nobject\tO\tobject\tO\nwith\tO\twith\tO\nthis\tO\tthis\tO\nformat\tO\tformat\tO\nof\tO\tof\tO\ncode\tO\tcode\tO\n?\tO\t?\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3643 I-Code_Block Q_3643 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\nknow\tO\tknow\tO\nhow\tO\thow\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthat\tO\tthat\tO\nwith\tO\twith\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_3644 I-Code_Block Q_3644 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30370935\tO\t30370935\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30370935/\tO\thttps://stackoverflow.com/questions/30370935/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nenumerate B-Code_Block enumerate B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4315 I-Code_Block A_4315 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nas\tO\tas\tO\na\tO\ta\tO\nmore\tO\tmore\tO\nefficient\tO\tefficient\tO\nway\tO\tway\tO\nfor\tO\tfor\tO\naccessing\tO\taccessing\tO\nto\tO\tto\tO\nnext\tO\tnext\tB-Code_Block\nitems\tO\titems\tO\nand\tO\tand\tO\nrefuse\tO\trefuse\tO\nof\tO\tof\tO\nmultiple\tO\tmultiple\tO\nindexing\tO\tindexing\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\niter() B-Function iter() B-Code_Block\nfunction\tO\tfunction\tO\nto\tO\tto\tO\ncreate\tO\tcreate\tO\nan\tO\tan\tO\niterator\tO\titerator\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nyour\tO\tyour\tO\nlist B-Data_Structure list O\n(\tO\t(\tO\nfrom\tO\tfrom\tO\nsecond\tO\tsecond\tO\nelement\tO\telement\tO\nto\tO\tto\tO\nend\tO\tend\tO\n)\tO\t)\tO\nand\tO\tand\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nnext\tO\tnext\tO\nelements\tO\telements\tO\nin\tO\tin\tO\neach\tO\teach\tO\niteration\tO\titeration\tO\nwith\tO\twith\tO\nnext B-Code_Block next B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4316 I-Code_Block A_4316 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\nthat\tO\tthat\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\ndo\tO\tdo\tO\nn't\tO\tn't\tO\npass\tO\tpass\tO\nthe\tO\tthe\tO\nNone B-Value None B-Code_Block\nas\tO\tas\tO\nthe\tO\tthe\tO\nsecond\tO\tsecond\tO\nargument\tO\targument\tO\nto\tO\tto\tO\nnext() B-Function next() B-Code_Block\nfunction\tO\tfunction\tO\nit\tO\tit\tO\nwill\tO\twill\tO\nraise\tO\traise\tO\na\tO\ta\tO\nStopIteration B-Error_Name StopIteration B-Code_Block\nerror.You\tO\terror.You\tO\ncan\tO\tcan\tO\nalso\tO\talso\tO\nhandle\tO\thandle\tO\nit\tO\tit\tO\nwith\tO\twith\tO\na\tO\ta\tO\ntry-except B-Code_Block try-except B-Code_Block\nstatement\tO\tstatement\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nfor\tO\tfor\tO\nshort\tO\tshort\tO\nlists B-Data_Structure lists O\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nzip B-Function zip B-Code_Block\nfunction\tO\tfunction\tO\nand\tO\tand\tO\nfor\tO\tfor\tO\nlong\tO\tlong\tO\nlists B-Data_Structure lists O\nitertools.izip() B-Function itertools.izip() B-Code_Block\nfunction\tO\tfunction\tO\n(\tO\t(\tO\nzip B-Function zip B-Code_Block\nin\tO\tin\tO\npython B-Language python O\n3) B-Version 3) O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4317 I-Code_Block A_4317 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nzip(l,l[1:]) B-Code_Block zip(l,l[1:]) B-Code_Block\nwill\tO\twill\tO\ngive\tO\tgive\tO\nyou\tO\tyou\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\npairs\tO\tpairs\tO\nof\tO\tof\tO\nitems\tO\titems\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4318 I-Code_Block A_4318 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nand\tO\tand\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nloop\tO\tloop\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\ni B-Variable i B-Code_Block\nas\tO\tas\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nitem\tO\titem\tO\nthen\tO\tthen\tO\nj B-Variable j B-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nitem\tO\titem\tO\nor\tO\tor\tO\nuse\tO\tuse\tO\nj B-Variable j B-Code_Block\nas\tO\tas\tO\nthe\tO\tthe\tO\ncurrent\tO\tcurrent\tO\nthen\tO\tthen\tO\ni B-Variable i B-Code_Block\nwill\tO\twill\tO\nbe\tO\tbe\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\n!\tO\t!\tO\n\t\n:)\tO\t:)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n30370935\tO\t30370935\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/30370935/\tO\thttps://stackoverflow.com/questions/30370935/\tO\n\t\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\nmany\tO\tmany\tO\ndifferent\tO\tdifferent\tO\noptions\tO\toptions\tO\ndepending\tO\tdepending\tO\non\tO\ton\tO\nwhat\tO\twhat\tO\nyour\tO\tyour\tO\nuse\tO\tuse\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nneighbour\tO\tneighbour\tO\nentry\tO\tentry\tO\nis\tO\tis\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nonly\tO\tonly\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\npairs\tO\tpairs\tO\n,\tO\t,\tO\nand\tO\tand\tO\nnot\tO\tnot\tO\nmodify\tO\tmodify\tO\nthe\tO\tthe\tO\nlist B-Data_Structure list O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4320 I-Code_Block A_4320 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOr\tO\tOr\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nkeep\tO\tkeep\tO\nthe\tO\tthe\tO\nprior\tO\tprior\tO\nentry\tO\tentry\tO\nas\tO\tas\tO\na\tO\ta\tO\nreference\tO\treference\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_4321 I-Code_Block A_4321 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNone B-Value None B-Code_Block\nhere\tO\there\tO\nis\tO\tis\tO\nused\tO\tused\tO\nin\tO\tin\tO\nplace\tO\tplace\tO\nof\tO\tof\tO\na\tO\ta\tO\nprior\tO\tprior\tO\nitem\tO\titem\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\n,\tO\t,\tO\nsimilar\tO\tsimilar\tO\nto\tO\tto\tO\nhow\tO\thow\tO\nit\tO\tit\tO\n's\tO\t's\tO\nused\tO\tused\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nnext\tO\tnext\tO\nitem\tO\titem\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\nin\tO\tin\tO\nKasra B-User_Name Kasra O\n's\tO\t's\tO\niter()-based B-Function iter()-based O\nexample\tO\texample\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37149514\tO\t37149514\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37149514/\tO\thttps://stackoverflow.com/questions/37149514/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nsome\tO\tsome\tO\nCSS B-Language CSS O\nusing\tO\tusing\tO\nPHP B-Language PHP O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nCSS B-Language CSS O\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nprocess\tO\tprocess\tO\nis\tO\tis\tO\npage-specific\tO\tpage-specific\tO\nand\tO\tand\tO\nso\tO\tso\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nset\tO\tset\tO\na\tO\ta\tO\nvariable\tO\tvariable\tO\nin\tO\tin\tO\nmy\tO\tmy\tO\nindex.php B-File_Name index.php B-Code_Block\nto\tO\tto\tO\nonly\tO\tonly\tO\necho\tO\techo\tO\nthe\tO\tthe\tO\nCSS B-Language CSS O\nwhen\tO\twhen\tO\nthe\tO\tthe\tO\nvariable\tO\tvariable\tO\nis\tO\tis\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nindex.php B-File_Name index.php O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4622 I-Code_Block Q_4622 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nheader.php B-File_Name header.php O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4623 I-Code_Block Q_4623 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nimport.php B-File_Name import.php O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4624 I-Code_Block Q_4624 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nheader\tO\theader\tO\nis\tO\tis\tO\nproperly\tO\tproperly\tO\nset\tO\tset\tO\nfor\tO\tfor\tO\nthis\tO\tthis\tO\nfile\tO\tfile\tO\n.\tO\t.\tO\n\t\nand\tO\tand\tO\nthe\tO\tthe\tO\nCSS B-Language CSS O\nis\tO\tis\tO\ninterpreted\tO\tinterpreted\tO\n.\tO\t.\tO\n\t\nstyles.css.php B-File_Name styles.css.php O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4625 I-Code_Block Q_4625 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nsure\tO\tsure\tO\n$name B-Variable $name B-Code_Block\nis\tO\tis\tO\nset\tO\tset\tO\nto\tO\tto\tO\nit\tO\tit\tO\n's\tO\t's\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\nas\tO\tas\tO\nset\tO\tset\tO\nin\tO\tin\tO\nindex.php B-File_Name index.php B-Code_Block\n?\tO\t?\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nMy\tO\tMy\tO\nfinal\tO\tfinal\tO\nsolution\tO\tsolution\tO\nwas\tO\twas\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\nan\tO\tan\tO\nobject\tO\tobject\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nstdClass B-Class stdClass B-Code_Block\nand\tO\tand\tO\nadd\tO\tadd\tO\nthe\tO\tthe\tO\nvariables\tO\tvariables\tO\nI\tO\tI\tO\nneeded\tO\tneeded\tO\nas\tO\tas\tO\nattributes\tO\tattributes\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nputting\tO\tputting\tO\na\tO\ta\tO\nGET B-Function GET O\nrequest\tO\trequest\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlink\tO\tlink\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nCSS B-File_Type CSS O\nfile\tO\tfile\tO\nwhich\tO\twhich\tO\nwas\tO\twas\tO\nthe\tO\tthe\tO\nBase64 B-Data_Type Base64 O\nof\tO\tof\tO\nthe\tO\tthe\tO\nJSON B-File_Type JSON O\nstring B-Data_Type string O\nof\tO\tof\tO\nthe\tO\tthe\tO\nobject\tO\tobject\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37149514\tO\t37149514\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37149514/\tO\thttps://stackoverflow.com/questions/37149514/\tO\n\t\n\t\nThe\tO\tThe\tO\nproblem\tO\tproblem\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nlinking\tO\tlinking\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\nstyles.css.php B-File_Name styles.css.php O\nfrom\tO\tfrom\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nrendered\tO\trendered\tO\nhtml B-Language html O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\npage\tO\tpage\tO\nwill\tO\twill\tO\nbe\tO\tbe\tO\nfetched\tO\tfetched\tO\nin\tO\tin\tO\na\tO\ta\tO\nseparate\tO\tseparate\tO\nrequest\tO\trequest\tO\n(\tO\t(\tO\nas\tO\tas\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nse\tO\tse\tO\nwhen\tO\twhen\tO\nyou\tO\tyou\tO\ninspect\tO\tinspect\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nrequest\tO\trequest\tO\nnever\tO\tnever\tO\npasses\tO\tpasses\tO\ntrough\tO\ttrough\tO\nyour\tO\tyour\tO\nindex.php B-File_Name index.php O\n,\tO\t,\tO\nand\tO\tand\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\n$name B-Variable $name B-Code_Block\nvariable\tO\tvariable\tO\nwill\tO\twill\tO\nnot\tO\tnot\tO\nbe\tO\tbe\tO\nset\tO\tset\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwould\tO\twould\tO\nadvise\tO\tadvise\tO\nyou\tO\tyou\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\ncss B-Language css O\nin\tO\tin\tO\nthe\tO\tthe\tO\nrendered\tO\trendered\tO\nHTML B-Language HTML O\ninside\tO\tinside\tO\na\tO\ta\tO\nstyle\tO\tstyle\tO\nblock\tO\tblock\tO\n.\tO\t.\tO\n\t\nIt\tO\tIt\tO\nshould\tO\tshould\tO\nbe\tO\tbe\tO\nas\tO\tas\tO\neasy\tO\teasy\tO\nas\tO\tas\tO\nchanging\tO\tchanging\tO\nyour\tO\tyour\tO\nimport.php B-File_Name import.php O\nto\tO\tto\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5334 I-Code_Block A_5334 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\nthe\tO\tthe\tO\nadded\tO\tadded\tO\nbenefit\tO\tbenefit\tO\nof\tO\tof\tO\nreducing\tO\treducing\tO\nthe\tO\tthe\tO\nnumber\tO\tnumber\tO\nof\tO\tof\tO\nrequests\tO\trequests\tO\nthe\tO\tthe\tO\nbrowser B-Application browser O\nhas\tO\thas\tO\nto\tO\tto\tO\nmake\tO\tmake\tO\n,\tO\t,\tO\nand\tO\tand\tO\nshould\tO\tshould\tO\ntherefore\tO\ttherefore\tO\nspeed\tO\tspeed\tO\nup\tO\tup\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nbtw\tO\tbtw\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nvery\tO\tvery\tO\nstandard\tO\tstandard\tO\nmethod\tO\tmethod\tO\nof\tO\tof\tO\nusing\tO\tusing\tO\ncss B-Language css O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nbelieve\tO\tbelieve\tO\nit\tO\tit\tO\nwould\tO\twould\tO\nbe\tO\tbe\tO\nbetter\tO\tbetter\tO\nto\tO\tto\tO\nadd\tO\tadd\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\nof\tO\tof\tO\nid\tO\tid\tO\n(\tO\t(\tO\nor\tO\tor\tO\ndata\tO\tdata\tO\nattribute\tO\tattribute\tO\n)\tO\t)\tO\non\tO\ton\tO\nyour\tO\tyour\tO\nbody B-HTML_XML_Tag body B-Code_Block\ntag\tO\ttag\tO\nthat\tO\tthat\tO\nindicates\tO\tindicates\tO\nthe\tO\tthe\tO\nname\tO\tname\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\npage\tO\tpage\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\ncss B-File_Type css O\nfile\tO\tfile\tO\n(\tO\t(\tO\nthat\tO\tthat\tO\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nrun\tO\trun\tO\ntrough\tO\ttrough\tO\nphp B-Language php O\n,\tO\t,\tO\njust\tO\tjust\tO\na\tO\ta\tO\nstandard\tO\tstandard\tO\ncss B-File_Type css O\nfile\tO\tfile\tO\n)\tO\t)\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\nthen\tO\tthen\tO\ndo\tO\tdo\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5335 I-Code_Block A_5335 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37149514\tO\t37149514\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37149514/\tO\thttps://stackoverflow.com/questions/37149514/\tO\n\t\n\t\nThe\tO\tThe\tO\n<link> B-HTML_XML_Tag <link> B-Code_Block\ntag\tO\ttag\tO\nmakes\tO\tmakes\tO\nan\tO\tan\tO\nHTTP\tO\tHTTP\tO\nrequest\tO\trequest\tO\nfor\tO\tfor\tO\na\tO\ta\tO\nfile\tO\tfile\tO\ntotally\tO\ttotally\tO\nindependent\tO\tindependent\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nPHP B-Language PHP O\npages\tO\tpages\tO\nthat\tO\tthat\tO\nare\tO\tare\tO\nincluding\tO\tincluding\tO\neach\tO\teach\tO\nother\tO\tother\tO\n,\tO\t,\tO\nso\tO\tso\tO\n$name B-Variable $name B-Code_Block\nis\tO\tis\tO\nnot\tO\tnot\tO\navailable\tO\tavailable\tO\nin\tO\tin\tO\nstyles.css.php B-File_Name styles.css.php O\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\ndo\tO\tdo\tO\nit\tO\tit\tO\nthis\tO\tthis\tO\nway\tO\tway\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nlink\tO\tlink\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\nsheet\tO\tsheet\tO\nsomething\tO\tsomething\tO\nlike\tO\tlike\tO\nthis\tO\tthis\tO\nto\tO\tto\tO\npass\tO\tpass\tO\n$name B-Variable $name B-Code_Block\nas\tO\tas\tO\na\tO\ta\tO\nget\tO\tget\tO\nvariable\tO\tvariable\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5336 I-Code_Block A_5336 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nstyle\tO\tstyle\tO\nsheet\tO\tsheet\tO\nstyles.css.php\tO\tstyles.css.php\tO\nuse\tO\tuse\tO\n$_GET['name'] B-Code_Block $_GET['name'] B-Code_Block\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5337 I-Code_Block A_5337 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37977365\tO\t37977365\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37977365/\tO\thttps://stackoverflow.com/questions/37977365/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nscenario\tO\tscenario\tO\nwhere\tO\twhere\tO\nmy\tO\tmy\tO\napplication\tO\tapplication\tO\nopens\tO\topens\tO\na\tO\ta\tO\ndocument B-User_Interface_Element document O\nin\tO\tin\tO\ngoogle B-Application google O\ndrive I-Application drive O\nand\tO\tand\tO\nallows\tO\tallows\tO\nuser\tO\tuser\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nif\tO\tif\tO\nI\tO\tI\tO\nwant\tO\twant\tO\nmultiple\tO\tmultiple\tO\nusers\tO\tusers\tO\nto\tO\tto\tO\nedit\tO\tedit\tO\nthe\tO\tthe\tO\ndocument B-User_Interface_Element document O\n,\tO\t,\tO\nhow\tO\thow\tO\n(\tO\t(\tO\nwhat\tO\twhat\tO\ngoogle\tO\tgoogle\tO\napi-oauth/openconnect/identity\tO\tapi-oauth/openconnect/identity\tO\nfederation/sign\tO\tfederation/sign\tO\nin\tO\tin\tO\n)\tO\t)\tO\nshould\tO\tshould\tO\nI\tO\tI\tO\nuse\tO\tuse\tO\nto\tO\tto\tO\nauthenticate\tO\tauthenticate\tO\nusers\tO\tusers\tO\nand\tO\tand\tO\nget\tO\tget\tO\ntheir\tO\ttheir\tO\nprofile\tO\tprofile\tO\ninfo\tO\tinfo\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nthat\tO\tthat\tO\neach\tO\teach\tO\nuser\tO\tuser\tO\ncan\tO\tcan\tO\naccess\tO\taccess\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\ndocument B-User_Interface_Element document O\nand\tO\tand\tO\nedit\tO\tedit\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nCurrently\tO\tCurrently\tO\n,\tO\t,\tO\nI\tO\tI\tO\nam\tO\tam\tO\nauthenticating\tO\tauthenticating\tO\nusing\tO\tusing\tO\nservice\tO\tservice\tO\naccount\tO\taccount\tO\nand\tO\tand\tO\nallowing\tO\tallowing\tO\nanonymous\tO\tanonymous\tO\naccess\tO\taccess\tO\n.\tO\t.\tO\n\t\nHow\tO\tHow\tO\ncan\tO\tcan\tO\nI\tO\tI\tO\nimplement\tO\timplement\tO\nthe\tO\tthe\tO\nabove\tO\tabove\tO\nscenario\tO\tscenario\tO\n?\tO\t?\tO\n\t\nWhat\tO\tWhat\tO\nAPI\tO\tAPI\tO\n's\tO\t's\tO\nmight\tO\tmight\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nto\tO\tto\tO\nlook\tO\tlook\tO\nat\tO\tat\tO\n?\tO\t?\tO\n\t\nKindly\tO\tKindly\tO\nguide\tO\tguide\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n37977365\tO\t37977365\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/37977365/\tO\thttps://stackoverflow.com/questions/37977365/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nactually\tO\tactually\tO\nuse\tO\tuse\tO\nGoogle B-Library Google O\nDrive I-Library Drive O\nRest I-Library Rest O\nAPI I-Library API O\nwhich\tO\twhich\tO\nuses\tO\tuses\tO\nthese\tO\tthese\tO\nauthorization\tO\tauthorization\tO\nprotocols\tO\tprotocols\tO\n:\tO\t:\tO\n\t\nOAuth B-Library OAuth O\n2.0 B-Version 2.0 O\nto\tO\tto\tO\nauthorize\tO\tauthorize\tO\nrequests\tO\trequests\tO\n,\tO\t,\tO\nor\tO\tor\tO\n\t\nif\tO\tif\tO\nyour\tO\tyour\tO\napplication\tO\tapplication\tO\nuses\tO\tuses\tO\nGoogle B-Website Google O\nSign-in\tO\tSign-in\tO\n,\tO\t,\tO\nsome\tO\tsome\tO\naspects\tO\taspects\tO\nof\tO\tof\tO\nauthorization\tO\tauthorization\tO\nare\tO\tare\tO\nhandled\tO\thandled\tO\nfor\tO\tfor\tO\nyou\tO\tyou\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfollow\tO\tfollow\tO\nthis\tO\tthis\tO\ngeneral\tO\tgeneral\tO\nauthorization\tO\tauthorization\tO\nprocess\tO\tprocess\tO\nfor\tO\tfor\tO\nall\tO\tall\tO\napplication\tO\tapplication\tO\ntypes\tO\ttypes\tO\nas\tO\tas\tO\ngiven\tO\tgiven\tO\nin\tO\tin\tO\nAuthorizing\tO\tAuthorizing\tO\nrequests\tO\trequests\tO\nwith\tO\twith\tO\nOAuth B-Library OAuth O\n2.0 B-Version 2.0 O\n:\tO\t:\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIn\tO\tIn\tO\naddition\tO\taddition\tO\nto\tO\tto\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nif\tO\tif\tO\nyour\tO\tyour\tO\napp\tO\tapp\tO\nrequires\tO\trequires\tO\naccess\tO\taccess\tO\nto\tO\tto\tO\nany\tO\tany\tO\nother\tO\tother\tO\nGoogle B-Library Google O\nAPIs I-Library APIs O\n,\tO\t,\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nadd\tO\tadd\tO\nscopes\tO\tscopes\tO\nas\tO\tas\tO\ngiven\tO\tgiven\tO\nin\tO\tin\tO\nOAuth B-Library OAuth O\n2.0 B-Version 2.0 O\nscope\tO\tscope\tO\ninformation\tO\tinformation\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nDrive B-Library Drive O\nAPI I-Library API O\ndetailed\tO\tdetailed\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\ndocumentation\tO\tdocumentation\tO\n.\tO\t.\tO\n\t\nFor\tO\tFor\tO\nmore\tO\tmore\tO\ninformation\tO\tinformation\tO\n,\tO\t,\tO\nplease\tO\tplease\tO\ngo\tO\tgo\tO\nthrough\tO\tthrough\tO\nthe\tO\tthe\tO\ngiven\tO\tgiven\tO\ndocumentations\tO\tdocumentations\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nmay\tO\tmay\tO\nalso\tO\talso\tO\nadd\tO\tadd\tO\nUsing\tO\tUsing\tO\nOAuth B-Library OAuth O\n2.0 B-Version 2.0 O\nto\tO\tto\tO\nAccess\tO\tAccess\tO\nGoogle B-Library Google O\nAPIs I-Library APIs O\nin\tO\tin\tO\nyour\tO\tyour\tO\nreferences\tO\treferences\tO\nwith\tO\twith\tO\nregards\tO\tregards\tO\nto\tO\tto\tO\nGoogle B-Library Google O\nAPI I-Library API O\nscopes\tO\tscopes\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n47922855\tO\t47922855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47922855/\tO\thttps://stackoverflow.com/questions/47922855/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nSQL B-Language SQL O\nServer\tO\tServer\tO\ntable B-Data_Structure table O\nwith\tO\twith\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\ndata\tO\tdata\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6364 I-Code_Block Q_6364 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nabove\tO\tabove\tO\ntable B-Data_Structure table O\nstores\tO\tstores\tO\nthe\tO\tthe\tO\ndata\tO\tdata\tO\nof\tO\tof\tO\nconnecting\tO\tconnecting\tO\nflights\tO\tflights\tO\nbetween\tO\tbetween\tO\ndifferent\tO\tdifferent\tO\ncities\tO\tcities\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwant\tO\twant\tO\na\tO\ta\tO\nresult\tO\tresult\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\nformat\tO\tformat\tO\n-\tO\t-\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_6365 I-Code_Block Q_6365 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nPlease\tO\tPlease\tO\nadvise\tO\tadvise\tO\non\tO\ton\tO\nhow\tO\thow\tO\nthis\tO\tthis\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nachieved\tO\tachieved\tO\n.\tO\t.\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47922855\tO\t47922855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47922855/\tO\thttps://stackoverflow.com/questions/47922855/\tO\n\t\n\t\nJust\tO\tJust\tO\nuse\tO\tuse\tO\ngroup B-Code_Block group B-Code_Block\nby I-Code_Block by I-Code_Block\nclause\tO\tclause\tO\nwith\tO\twith\tO\nconditional\tO\tconditional\tO\naggregation\tO\taggregation\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7005 I-Code_Block A_7005 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\n\t\nYou\tO\tYou\tO\ncould\tO\tcould\tO\nalso\tO\talso\tO\ndirectly\tO\tdirectly\tO\nfetch\tO\tfetch\tO\nthe\tO\tthe\tO\nsource\tO\tsource\tO\nand\tO\tand\tO\ndestination\tO\tdestination\tO\nstation\tO\tstation\tO\nby\tO\tby\tO\nusing\tO\tusing\tO\nfirst_value() B-Function first_value() B-Code_Block\nand\tO\tand\tO\nlast_value() B-Function last_value() B-Code_Block\nfunction\tO\tfunction\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7006 I-Code_Block A_7006 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nThe\tO\tThe\tO\nabove\tO\tabove\tO\nis\tO\tis\tO\ntested\tO\ttested\tO\nbased\tO\tbased\tO\non\tO\ton\tO\ndata\tO\tdata\tO\nprovided\tO\tprovided\tO\nin\tO\tin\tO\nQ\tO\tQ\tB-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n47922855\tO\t47922855\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/47922855/\tO\thttps://stackoverflow.com/questions/47922855/\tO\n\t\n\t\nTry\tO\tTry\tO\nthe\tO\tthe\tO\nfollowing\tO\tfollowing\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7001 I-Code_Block A_7001 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nOr\tO\tOr\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\nwindow\tO\twindow\tO\nfunctions\tO\tfunctions\tO\nFIRST_VALUE B-Function FIRST_VALUE B-Code_Block\nand\tO\tand\tO\nLAST_VALUE B-Function LAST_VALUE B-Code_Block\nif\tO\tif\tO\nyour\tO\tyour\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nSQLServer B-Application SQLServer O\nsupports\tO\tsupports\tO\nthem\tO\tthem\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7002 I-Code_Block A_7002 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIf\tO\tIf\tO\nID B-Variable ID B-Code_Block\nare\tO\tare\tO\ninconsistent\tO\tinconsistent\tO\nthen\tO\tthen\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\nuse\tO\tuse\tO\na\tO\ta\tO\nrecursive\tO\trecursive\tO\nCTE\tO\tCTE\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7003 I-Code_Block A_7003 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIt\tO\tIt\tO\n's\tO\t's\tO\na\tO\ta\tO\nsymbiosis\tO\tsymbiosis\tO\nfrom\tO\tfrom\tO\ntwo\tO\ttwo\tO\nqueries B-Data_Structure queries O\nwhich\tO\twhich\tO\nprovided\tO\tprovided\tO\nYogesh B-User_Name Yogesh O\nSharma I-User_Name Sharma O\nand\tO\tand\tO\nmy\tO\tmy\tO\nfirst\tO\tfirst\tO\nquery B-Data_Structure query O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_7004 I-Code_Block A_7004 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n25677891\tO\t25677891\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25677891/\tO\thttps://stackoverflow.com/questions/25677891/\tO\n\t\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ninsert\tO\tinsert\tO\na\tO\ta\tO\nclick\tO\tclick\tO\nto\tO\tto\tO\ncall\tO\tcall\tO\nbutton B-User_Interface_Element button O\non\tO\ton\tO\nmy\tO\tmy\tO\nhome\tO\thome\tO\npage\tO\tpage\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nfirst\tO\tfirst\tO\nsite\tO\tsite\tO\nI\tO\tI\tO\n've\tO\t've\tO\nbuilt\tO\tbuilt\tO\nusing\tO\tusing\tO\nBootstrap B-Library Bootstrap O\n(\tO\t(\tO\nBootstrap B-Library Bootstrap O\n3.2.0 B-Version 3.2.0 O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nPlease\tO\tPlease\tO\nview\tO\tview\tO\nthe\tO\tthe\tO\ncode\tO\tcode\tO\nand\tO\tand\tO\nhelp\tO\thelp\tO\nme\tO\tme\tO\nfigure\tO\tfigure\tO\nout\tO\tout\tO\nwhat\tO\twhat\tO\nI\tO\tI\tO\n'm\tO\t'm\tO\ndoing\tO\tdoing\tO\nwrong\tO\twrong\tO\n.\tO\t.\tO\n\t\nThank\tO\tThank\tO\nyou\tO\tyou\tO\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nvisit\tO\tvisit\tO\nthe\tO\tthe\tO\nsite\tO\tsite\tO\nhere\tO\there\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_2924 I-Code_Block Q_2924 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n25677891\tO\t25677891\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/25677891/\tO\thttps://stackoverflow.com/questions/25677891/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nworking\tO\tworking\tO\nbecause\tO\tbecause\tO\nyou\tO\tyou\tO\nhave\tO\thave\tO\ninvalid\tO\tinvalid\tO\nHTML B-Language HTML O\n(\tO\t(\tO\nan\tO\tan\tO\nhref B-HTML_XML_Tag href O\nattribute\tO\tattribute\tO\non\tO\ton\tO\na\tO\ta\tO\nbutton B-User_Interface_Element button O\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nUsage\tO\tUsage\tO\ninfo\tO\tinfo\tO\nfrom\tO\tfrom\tO\nW3C B-Website W3C O\n\t\nThis\tO\tThis\tO\nshould\tO\tshould\tO\ndo\tO\tdo\tO\nthe\tO\tthe\tO\ntrick\tO\ttrick\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_3537 I-Code_Block A_3537 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n10103953\tO\t10103953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10103953/\tO\thttps://stackoverflow.com/questions/10103953/\tO\n\t\n\t\nAre\tO\tAre\tO\nthere\tO\tthere\tO\nan\tO\tan\tO\nefficient\tO\tefficient\tO\nalgorithm\tO\talgorithm\tO\nto\tO\tto\tO\nsearch\tO\tsearch\tO\nand\tO\tand\tO\ndump\tO\tdump\tO\nall\tO\tall\tO\ncommon\tO\tcommon\tO\nsubstrings\tO\tsubstrings\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nlength\tO\tlength\tO\nis\tO\tis\tO\n3\tO\t3\tO\nor\tO\tor\tO\nlonger\tO\tlonger\tO\n)\tO\t)\tO\nbetween\tO\tbetween\tO\n2\tO\t2\tO\nstrings B-Data_Type strings O\n?\tO\t?\tO\n\t\nExample\tO\tExample\tO\ninput\tO\tinput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_880 I-Code_Block Q_880 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nExample\tO\tExample\tO\noutput\tO\toutput\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_881 I-Code_Block Q_881 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nIn\tO\tIn\tO\nthe\tO\tthe\tO\nexample\tO\texample\tO\n,\tO\t,\tO\n\" B-Value \" O\n-D I-Value -D O\n\" I-Value \" O\n,\tO\t,\tO\n\" B-Value \" O\n-M I-Value -M O\n\" I-Value \" O\nis\tO\tis\tO\nalso\tO\talso\tO\na\tO\ta\tO\ncommon\tO\tcommon\tO\nsubstring\tO\tsubstring\tO\nbut\tO\tbut\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\nrequired\tO\trequired\tO\n,\tO\t,\tO\nbecause\tO\tbecause\tO\nit\tO\tit\tO\n's\tO\t's\tO\nlength\tO\tlength\tO\nis\tO\tis\tO\nonly\tO\tonly\tO\n2 B-Value 2 O\n.\tO\t.\tO\n\t\n(\tO\t(\tO\nThere\tO\tThere\tO\nmight\tO\tmight\tO\nbe\tO\tbe\tO\nsome\tO\tsome\tO\nmissing\tO\tmissing\tO\noutputs\tO\toutputs\tO\nin\tO\tin\tO\nexample\tO\texample\tO\nbecause\tO\tbecause\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nso\tO\tso\tO\nmany\tO\tmany\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\n..\tO\t..\tO\n.\tO\t.\tO\n)\tO\t)\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n10103953\tO\t10103953\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/10103953/\tO\thttps://stackoverflow.com/questions/10103953/\tO\n\t\n\t\nYou\tO\tYou\tO\ncan\tO\tcan\tO\nfind\tO\tfind\tO\nall\tO\tall\tO\ncommon\tO\tcommon\tO\nsubstrings\tO\tsubstrings\tO\nusing\tO\tusing\tO\na\tO\ta\tO\ndata\tO\tdata\tO\nstructure\tO\tstructure\tO\ncalled\tO\tcalled\tO\na\tO\ta\tO\nGeneralized B-Data_Structure Generalized O\nsuffix I-Data_Structure suffix O\ntree I-Data_Structure tree O\n\t\nLibstree B-Library Libstree O\ncontains\tO\tcontains\tO\nsome\tO\tsome\tO\nexample\tO\texample\tO\ncode\tO\tcode\tO\nfor\tO\tfor\tO\nfinding\tO\tfinding\tO\nthe\tO\tthe\tO\nlongest\tO\tlongest\tO\ncommon\tO\tcommon\tO\nsubstring\tO\tsubstring\tO\n.\tO\t.\tO\n\t\nThat\tO\tThat\tO\nexample\tO\texample\tO\ncode\tO\tcode\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\nmodified\tO\tmodified\tO\nto\tO\tto\tO\nobtain\tO\tobtain\tO\nall\tO\tall\tO\ncommon\tO\tcommon\tO\nsubstrings\tO\tsubstrings\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n5294014\tO\t5294014\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5294014/\tO\thttps://stackoverflow.com/questions/5294014/\tO\n\t\n\t\nI\tO\tI\tO\nneed\tO\tneed\tO\na\tO\ta\tO\nway\tO\tway\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nable\tO\table\tO\nto\tO\tto\tO\nread\tO\tread\tO\nfrom\tO\tfrom\tO\na\tO\ta\tO\nUTF-8\tO\tUTF-8\tO\nencoded\tO\tencoded\tO\nfile\tO\tfile\tO\nand\tO\tand\tO\nstore\tO\tstore\tO\ndata\tO\tdata\tO\nfrom\tO\tfrom\tO\nit\tO\tit\tO\ninto\tO\tinto\tO\n\"\tO\t\"\tO\nUTF-8\tO\tUTF-8\tO\ncompatible\tO\tcompatible\tO\nstrings B-Data_Type strings O\n\"\tO\t\"\tO\nof\tO\tof\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\n,\tO\t,\tO\nin\tO\tin\tO\nC++ B-Language C++ O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\ndata\tO\tdata\tO\nneeds\tO\tneeds\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\nwritten\tO\twritten\tO\nback\tO\tback\tO\nto\tO\tto\tO\na\tO\ta\tO\nUTF-8\tO\tUTF-8\tO\nencoded\tO\tencoded\tO\nfile\tO\tfile\tO\nlater\tO\tlater\tO\non\tO\ton\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nseems\tO\tseems\tO\nto\tO\tto\tO\nbe\tO\tbe\tO\na\tO\ta\tO\nlot\tO\tlot\tO\nof\tO\tof\tO\nadvice\tO\tadvice\tO\non\tO\ton\tO\ngoogle B-Website google O\nabout\tO\tabout\tO\ndoing\tO\tdoing\tO\nthis\tO\tthis\tO\nin\tO\tin\tO\nWindows B-Operating_System Windows O\nbut\tO\tbut\tO\nI\tO\tI\tO\ncannot\tO\tcannot\tO\nfind\tO\tfind\tO\nany\tO\tany\tO\nhelp\tO\thelp\tO\nfor\tO\tfor\tO\nUnix B-Operating_System Unix O\nsystems\tO\tsystems\tO\n.\tO\t.\tO\n\t\nThanks\tO\tThanks\tO\nfor\tO\tfor\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n!\tO\t!\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n5294014\tO\t5294014\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/5294014/\tO\thttps://stackoverflow.com/questions/5294014/\tO\n\t\n\t\nIf\tO\tIf\tO\nall\tO\tall\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nis\tO\tis\tO\nread\tO\tread\tO\nand\tO\tand\tO\nwrite\tO\twrite\tO\nit\tO\tit\tO\nthen\tO\tthen\tO\nstd::string B-Class std::string O\nis\tO\tis\tO\nfine\tO\tfine\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_576 I-Code_Block A_576 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nworks\tO\tworks\tO\nbecause\tO\tbecause\tO\nno\tO\tno\tO\nmulti-character\tO\tmulti-character\tO\nUTF\tO\tUTF\tO\ncodepoint\tO\tcodepoint\tO\noverlaps\tO\toverlaps\tO\nwith\tO\twith\tO\nan\tO\tan\tO\nan\tO\tan\tO\nASCII\tO\tASCII\tO\ncharacter\tO\tcharacter\tO\nso\tO\tso\tO\nthe\tO\tthe\tO\nstandard\tO\tstandard\tO\nprocessing\tO\tprocessing\tO\nof\tO\tof\tO\ntext\tO\ttext\tO\nworks\tO\tworks\tO\njust\tO\tjust\tO\nfine\tO\tfine\tO\nin\tO\tin\tO\nrelation\tO\trelation\tO\nto\tO\tto\tO\nend\tO\tend\tO\nof\tO\tof\tO\nline\tO\tline\tO\nsequence\tO\tsequence\tO\nand\tO\tand\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nother\tO\tother\tO\nprocessing\tO\tprocessing\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\n.\tO\t.\tO\n\t\nWhat\tO\tWhat\tO\nyou\tO\tyou\tO\nread\tO\tread\tO\nis\tO\tis\tO\nwhat\tO\twhat\tO\nyou\tO\tyou\tO\nget\tO\tget\tO\n.\tO\t.\tO\n\t\nOutputting\tO\tOutputting\tO\nthe\tO\tthe\tO\nstring B-Data_Type string O\ndoes\tO\tdoes\tO\nnot\tO\tnot\tO\nchange\tO\tchange\tO\nany\tO\tany\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\ncodepoints\tO\tcodepoints\tO\n.\tO\t.\tO\n\t\nNow\tO\tNow\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\nmanipulate\tO\tmanipulate\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nthat\tO\tthat\tO\nis\tO\tis\tO\na\tO\ta\tO\ndifferent\tO\tdifferent\tO\nquestion\tO\tquestion\tO\nand\tO\tand\tO\ngets\tO\tgets\tO\nmore\tO\tmore\tO\ncomplex\tO\tcomplex\tO\n.\tO\t.\tO\n\t\nUsually\tO\tUsually\tO\nmanipulating\tO\tmanipulating\tO\nUTF-8\tO\tUTF-8\tO\nis\tO\tis\tO\nway\tO\tway\tO\nto\tO\tto\tO\nhard\tO\thard\tO\n(\tO\t(\tO\ncan\tO\tcan\tO\nbe\tO\tbe\tO\ndone\tO\tdone\tO\nbut\tO\tbut\tO\nnot\tO\tnot\tO\nworth\tO\tworth\tO\nit\tO\tit\tO\nIMO\tO\tIMO\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nWhen\tO\tWhen\tO\nit\tO\tit\tO\ncomes\tO\tcomes\tO\nto\tO\tto\tO\nmanipulating\tO\tmanipulating\tO\nthe\tO\tthe\tO\ntext\tO\ttext\tO\nyou\tO\tyou\tO\nwant\tO\twant\tO\nto\tO\tto\tO\nconvert\tO\tconvert\tO\nthe\tO\tthe\tO\nUTF-8\tO\tUTF-8\tO\n(\tO\t(\tO\nwhich\tO\twhich\tO\nis\tO\tis\tO\nnot\tO\tnot\tO\na\tO\ta\tO\nfixed\tO\tfixed\tO\nwidth\tO\twidth\tO\n)\tO\t)\tO\nto\tO\tto\tO\nan\tO\tan\tO\ninternal\tO\tinternal\tO\nfixed\tO\tfixed\tO\nwidth\tO\twidth\tO\nformat\tO\tformat\tO\n;\tO\t;\tO\n(\tO\t(\tO\nUTF-16\tO\tUTF-16\tO\nor\tO\tor\tO\nUTF-32\tO\tUTF-32\tO\nare\tO\tare\tO\ncommon\tO\tcommon\tO\nformats\tO\tformats\tO\nfor\tO\tfor\tO\nmanipulation\tO\tmanipulation\tO\nand\tO\tand\tO\neasy\tO\teasy\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\n;\tO\t;\tO\n(\tO\t(\tO\nUTF-16\tO\tUTF-16\tO\nwindows B-Operating_System windows O\n,\tO\t,\tO\nUTF-32\tO\tUTF-32\tO\nfor\tO\tfor\tO\nmost\tO\tmost\tO\n* B-Operating_System * O\nnix I-Operating_System nix O\nlike\tO\tlike\tO\nOS\tO\tOS\tO\n)\tO\t)\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\neasiest\tO\teasiest\tO\nway\tO\tway\tO\nto\tO\tto\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\nis\tO\tis\tO\nto\tO\tto\tO\nimbue\tO\timbue\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nwith\tO\twith\tO\na\tO\ta\tO\nfacet\tO\tfacet\tO\nthat\tO\tthat\tO\nknows\tO\tknows\tO\nthe\tO\tthe\tO\ninput\tO\tinput\tO\nis\tO\tis\tO\nin\tO\tin\tO\nUTF-8\tO\tUTF-8\tO\nand\tO\tand\tO\nwill\tO\twill\tO\nconvert\tO\tconvert\tO\nit\tO\tit\tO\nautomatically\tO\tautomatically\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\na\tO\ta\tO\ncouple\tO\tcouple\tO\nof\tO\tof\tO\nthese\tO\tthese\tO\nfacets\tO\tfacets\tO\nfloating\tO\tfloating\tO\naround\tO\taround\tO\nin\tO\tin\tO\ndifferent\tO\tdifferent\tO\nlibraries\tO\tlibraries\tO\n.\tO\t.\tO\n\t\nBut\tO\tBut\tO\nan\tO\tan\tO\neasy\tO\teasy\tO\none\tO\tone\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nis\tO\tis\tO\nboost\tO\tboost\tO\n:\tO\t:\tO\n\t\nhttp://www.boost.org/doc/libs/1_38_0/libs/serialization/doc/codecvt.html\tO\thttp://www.boost.org/doc/libs/1_38_0/libs/serialization/doc/codecvt.html\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nIt\tO\tIt\tO\nis\tO\tis\tO\nalso\tO\talso\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nlatest\tO\tlatest\tO\nversion\tO\tversion\tO\nof\tO\tof\tO\nboost B-Library boost O\n1.46 B-Version 1.46 O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_577 I-Code_Block A_577 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThe\tO\tThe\tO\nprocesses\tO\tprocesses\tO\nis\tO\tis\tO\nthe\tO\tthe\tO\nsame\tO\tsame\tO\nfor\tO\tfor\tO\nwritting\tO\twritting\tO\nUTF-16/32\tO\tUTF-16/32\tO\nback\tO\tback\tO\nto\tO\tto\tO\na\tO\ta\tO\nstream\tO\tstream\tO\nand\tO\tand\tO\nconverting\tO\tconverting\tO\nit\tO\tit\tO\nto\tO\tto\tO\nUTF-8\tO\tUTF-8\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_578 I-Code_Block A_578 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nNote\tO\tNote\tO\n.\tO\t.\tO\n\t\nYou\tO\tYou\tO\nshould\tO\tshould\tO\nimbue\tO\timbue\tO\nthe\tO\tthe\tO\nfile\tO\tfile\tO\nbefore\tO\tbefore\tO\nit\tO\tit\tO\nis\tO\tis\tO\nopened\tO\topened\tO\n.\tO\t.\tO\n\t\nDifferent\tO\tDifferent\tO\nimplementations\tO\timplementations\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nwill\tO\twill\tO\nreact\tO\treact\tO\ndifferently\tO\tdifferently\tO\nif\tO\tif\tO\nyou\tO\tyou\tO\nimbue\tO\timbue\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nafter\tO\tafter\tO\nit\tO\tit\tO\nis\tO\tis\tO\nopen\tO\topen\tO\n.\tO\t.\tO\n\t\nThus\tO\tThus\tO\nit\tO\tit\tO\nis\tO\tis\tO\nbest\tO\tbest\tO\nto\tO\tto\tO\nimbue\tO\timbue\tO\nthe\tO\tthe\tO\nstream\tO\tstream\tO\nbefore\tO\tbefore\tO\nopening\tO\topening\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nDinkumware\tO\tDinkumware\tO\nalso\tO\talso\tO\nhas\tO\thas\tO\na\tO\ta\tO\nset\tO\tset\tO\nof\tO\tof\tO\nconversion\tO\tconversion\tO\nfacets\tO\tfacets\tO\n(\tO\t(\tO\nnot\tO\tnot\tO\nsure\tO\tsure\tO\nif\tO\tif\tO\nthey\tO\tthey\tO\nare\tO\tare\tO\nfree\tO\tfree\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nhttp://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=index_cvt.html#Code%20Conversions\tO\thttp://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=index_cvt.html#Code%20Conversions\tO\n\t\nNote\tO\tNote\tO\n:\tO\t:\tO\nI\tO\tI\tO\nprefer\tO\tprefer\tO\nto\tO\tto\tO\nuse\tO\tuse\tO\nthe\tO\tthe\tO\nterms\tO\tterms\tO\nUTF-X\tO\tUTF-X\tO\nrather\tO\trather\tO\nthan\tO\tthan\tO\nUCS-Y\tO\tUCS-Y\tO\n.\tO\t.\tO\n\t\nThough\tO\tThough\tO\ntechnically\tO\ttechnically\tO\nthere\tO\tthere\tO\nare\tO\tare\tO\nvery\tO\tvery\tO\nminor\tO\tminor\tO\ndifferences\tO\tdifferences\tO\nthese\tO\tthese\tO\nare\tO\tare\tO\ninconsequential\tO\tinconsequential\tO\ncompared\tO\tcompared\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nconfusion\tO\tconfusion\tO\nyou\tO\tyou\tO\ncan\tO\tcan\tO\ncreate\tO\tcreate\tO\nby\tO\tby\tO\nswitching\tO\tswitching\tO\nbetween\tO\tbetween\tO\nthe\tO\tthe\tO\ntwo\tO\ttwo\tO\nterms\tO\tterms\tO\nwhile\tO\twhile\tO\ntalking\tO\ttalking\tO\nabout\tO\tabout\tO\nthe\tO\tthe\tO\nsubject\tO\tsubject\tO\n.\tO\t.\tO\n\t\nStick\tO\tStick\tO\nto\tO\tto\tO\none\tO\tone\tO\nunless\tO\tunless\tO\nyou\tO\tyou\tO\nneed\tO\tneed\tO\nto\tO\tto\tO\ntalk\tO\ttalk\tO\nexplicitly\tO\texplicitly\tO\nabout\tO\tabout\tO\na\tO\ta\tO\nfeature\tO\tfeature\tO\n(\tO\t(\tO\nlike\tO\tlike\tO\nSurrogate\tO\tSurrogate\tO\npairs\tO\tpairs\tO\n)\tO\t)\tO\n.\tO\t.\tO\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35136362\tO\t35136362\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35136362/\tO\thttps://stackoverflow.com/questions/35136362/\tO\n\t\n\t\nThis\tO\tThis\tO\ncode\tO\tcode\tO\ntakes\tO\ttakes\tO\npractically\tO\tpractically\tO\nno\tO\tno\tO\ntime\tO\ttime\tO\nat\tO\tat\tO\nall\tO\tall\tO\nwhen\tO\twhen\tO\noptimizing\tO\toptimizing\tO\nwith\tO\twith\tO\n-O3\tO\t-O3\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4297 I-Code_Block Q_4297 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nWhat\tO\tWhat\tO\ncompiler B-Application compiler O\noptimization\tO\toptimization\tO\nis\tO\tis\tO\nmaking\tO\tmaking\tO\nthis\tO\tthis\tO\ncode\tO\tcode\tO\ngo\tO\tgo\tO\nfrom\tO\tfrom\tO\n0.014\tO\t0.014\tO\nseconds\tO\tseconds\tO\nwith\tO\twith\tO\n-O0\tO\t-O0\tO\nto\tO\tto\tO\n0.000000\tO\t0.000000\tO\nwith\tO\twith\tO\n-03 B-Code_Block -03 O\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35136362\tO\t35136362\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35136362/\tO\thttps://stackoverflow.com/questions/35136362/\tO\n\t\n\t\nThe\tO\tThe\tO\ninternal\tO\tinternal\tO\nlarge\tO\tlarge\tO\nloop\tO\tloop\tO\nhas\tO\thas\tO\nno\tO\tno\tO\nside\tO\tside\tO\neffects\tO\teffects\tO\nsince\tO\tsince\tO\nyou\tO\tyou\tO\n're\tO\t're\tO\nnot\tO\tnot\tO\nusing\tO\tusing\tO\nB B-Variable B O\nanywhere\tO\tanywhere\tO\n,\tO\t,\tO\nso\tO\tso\tO\nany\tO\tany\tO\ndecent\tO\tdecent\tO\ncompiler B-Application compiler O\nwith\tO\twith\tO\n-O3 B-Code_Block -O3 O\nwill\tO\twill\tO\neliminate\tO\teliminate\tO\nit\tO\tit\tO\n.\tO\t.\tO\n\t\nTo\tO\tTo\tO\navoid\tO\tavoid\tO\nthat\tO\tthat\tO\n,\tO\t,\tO\nyou\tO\tyou\tO\ncould\tO\tcould\tO\ntry\tO\ttry\tO\nto\tO\tto\tO\nsummarize\tO\tsummarize\tO\nthe\tO\tthe\tO\nvalues\tO\tvalues\tO\nand\tO\tand\tO\nprint\tO\tprint\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\noutcome\tO\toutcome\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nend\tO\tend\tO\n.\tO\t.\tO\n\t\nAlternatively\tO\tAlternatively\tO\n,\tO\t,\tO\nprinting\tO\tprinting\tO\nsome\tO\tsome\tO\nrandom\tO\trandom\tO\nelement\tO\telement\tO\nfrom\tO\tfrom\tO\nB B-Variable B O\nmight\tO\tmight\tO\nmake\tO\tmake\tO\nthe\tO\tthe\tO\ncompiler B-Application compiler O\nsuspicious\tO\tsuspicious\tO\nenough\tO\tenough\tO\nto\tO\tto\tO\navoid\tO\tavoid\tO\nthat\tO\tthat\tO\nelimination\tO\telimination\tO\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n35136362\tO\t35136362\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35136362/\tO\thttps://stackoverflow.com/questions/35136362/\tO\n\t\n\t\nIt\tO\tIt\tO\nis\tO\tis\tO\nhard\tO\thard\tO\nto\tO\tto\tO\nsay\tO\tsay\tO\nfor\tO\tfor\tO\nsure\tO\tsure\tO\nwithout\tO\twithout\tO\nchecking\tO\tchecking\tO\nthe\tO\tthe\tO\ngenerated B-File_Name generated O\nassembly I-File_Name assembly O\n.\tO\t.\tO\n\t\nIn\tO\tIn\tO\ngeneral\tO\tgeneral\tO\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nas-if\tO\tas-if\tO\nrule\tO\trule\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\n\t\nOP_BLOCK B-Output_Block OP_BLOCK B-Output_Block\n: I-Output_Block : I-Output_Block\n( I-Output_Block ( I-Output_Block\noutput I-Output_Block output I-Output_Block\nomitted I-Output_Block omitted I-Output_Block\nfor I-Output_Block for I-Output_Block\nannotation I-Output_Block annotation I-Output_Block\n) I-Output_Block ) I-Output_Block\n\t\nIt\tO\tIt\tO\ncould\tO\tcould\tO\nbe\tO\tbe\tO\n,\tO\t,\tO\nfor\tO\tfor\tO\ninstance\tO\tinstance\tO\n,\tO\t,\tO\nthat\tO\tthat\tO\nsince\tO\tsince\tO\nneither\tO\tneither\tO\nA B-Variable A B-Code_Block\nno\tO\tno\tO\nB B-Variable B B-Code_Block\nare\tO\tare\tO\nused\tO\tused\tO\nanywhere\tO\tanywhere\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\ncompiler B-Application compiler O\njust\tO\tjust\tO\nomits\tO\tomits\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5017 I-Code_Block A_5017 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nas\tO\tas\tO\nwell\tO\twell\tO\nas\tO\tas\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_5018 I-Code_Block A_5018 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n8988321\tO\t8988321\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8988321/\tO\thttps://stackoverflow.com/questions/8988321/\tO\n\t\n\t\nI\tO\tI\tO\nhave\tO\thave\tO\na\tO\ta\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nspend\tO\tspend\tO\naround\tO\taround\tO\n5\tO\t5\tO\nhours\tO\thours\tO\ntrying\tO\ttrying\tO\neverything\tO\teverything\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwas\tO\twas\tO\nnot\tO\tnot\tO\neven\tO\teven\tO\nable\tO\table\tO\nto\tO\tto\tO\nreproduce\tO\treproduce\tO\nit\tO\tit\tO\nproperly\tO\tproperly\tO\nso\tO\tso\tO\nI\tO\tI\tO\ninclude\tO\tinclude\tO\nthe\tO\tthe\tO\nsimplified\tO\tsimplified\tO\noriginal\tO\toriginal\tO\nsource\tO\tsource\tO\ncode\tO\tcode\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\napologize\tO\tapologize\tO\nfor\tO\tfor\tO\nthe\tO\tthe\tO\nextent\tO\textent\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nI\tO\tI\tO\nwanted\tO\twanted\tO\nto\tO\tto\tO\ninclude\tO\tinclude\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nrelevant\tO\trelevant\tO\ninformation\tO\tinformation\tO\nI\tO\tI\tO\nfound\tO\tfound\tO\nout\tO\tout\tO\nso\tO\tso\tO\nfar\tO\tfar\tO\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\none\tO\tone\tO\nof\tO\tof\tO\nthe\tO\tthe\tO\nfew\tO\tfew\tO\ntimes\tO\ttimes\tO\nI\tO\tI\tO\nfeel\tO\tfeel\tO\ncompletely\tO\tcompletely\tO\npowerless\tO\tpowerless\tO\nand\tO\tand\tO\nkindly\tO\tkindly\tO\nrequest\tO\trequest\tO\nyour\tO\tyour\tO\nhelp\tO\thelp\tO\n.\tO\t.\tO\n\t\nAny\tO\tAny\tO\nideas\tO\tideas\tO\nare\tO\tare\tO\nwelcome\tO\twelcome\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nany\tO\tany\tO\ncomments\tO\tcomments\tO\nthat\tO\tthat\tO\ncan\tO\tcan\tO\nbring\tO\tbring\tO\nat\tO\tat\tO\nleast\tO\tleast\tO\nsome\tO\tsome\tO\nlight\tO\tlight\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\nmatter\tO\tmatter\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nbehaviour\tO\tbehaviour\tO\nin\tO\tin\tO\nthis\tO\tthis\tO\ncase\tO\tcase\tO\nis\tO\tis\tO\na\tO\ta\tO\ncomplete\tO\tcomplete\tO\nmystery\tO\tmystery\tO\nto\tO\tto\tO\nme\tO\tme\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nprogramming\tO\tprogramming\tO\nin\tO\tin\tO\nQtCreator B-Application QtCreator O\nin\tO\tin\tO\nUbuntu B-Operating_System Ubuntu O\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\ntrying\tO\ttrying\tO\nto\tO\tto\tO\ndevelop\tO\tdevelop\tO\na\tO\ta\tO\nframework\tO\tframework\tO\nto\tO\tto\tO\nsolve\tO\tsolve\tO\nmathematical\tO\tmathematical\tO\nproblems\tO\tproblems\tO\nusing\tO\tusing\tO\na\tO\ta\tO\nPopulation B-Class Population O\nof\tO\tof\tO\ncandidate\tO\tcandidate\tO\nsolutions\tO\tsolutions\tO\n,\tO\t,\tO\nwhich\tO\twhich\tO\nshould\tO\tshould\tO\nevolve\tO\tevolve\tO\ninto\tO\tinto\tO\nthe\tO\tthe\tO\ntrue\tO\ttrue\tO\nsolution\tO\tsolution\tO\n.\tO\t.\tO\n\t\nThere\tO\tThere\tO\nare\tO\tare\tO\n3\tO\t3\tO\nclasses\tO\tclasses\tO\ninvolved\tO\tinvolved\tO\n:\tO\t:\tO\nPopulation B-Class Population O\n,\tO\t,\tO\nPopulationMember B-Class PopulationMember O\nand\tO\tand\tO\nProblem B-Class Problem O\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_752 I-Code_Block Q_752 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nUsually\tO\tUsually\tO\nmy\tO\tmy\tO\nprogram\tO\tprogram\tO\nruns\tO\truns\tO\nin\tO\tin\tO\nloops\tO\tloops\tO\n,\tO\t,\tO\nwhere\tO\twhere\tO\nthe\tO\tthe\tO\npopulation B-Class population O\ncalls\tO\tcalls\tO\nits\tO\tits\tO\nvarious\tO\tvarious\tO\nmethods\tO\tmethods\tO\n.\tO\t.\tO\n\t\nOne\tO\tOne\tO\nof\tO\tof\tO\nthem\tO\tthem\tO\nis\tO\tis\tO\nPopulation::evaluate() B-Function Population::evaluate() O\n.\tO\t.\tO\n\t\nMy\tO\tMy\tO\nprogram\tO\tprogram\tO\nran\tO\tran\tO\ngreat\tO\tgreat\tO\nuntil\tO\tuntil\tO\nI\tO\tI\tO\nintroduced\tO\tintroduced\tO\nsome\tO\tsome\tO\nnew\tO\tnew\tO\nmethods\tO\tmethods\tO\nof\tO\tof\tO\nPopulation B-Class Population O\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_753 I-Code_Block Q_753 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThen\tO\tThen\tO\nI\tO\tI\tO\nget\tO\tget\tO\na\tO\ta\tO\nsegmentation B-Error_Name segmentation O\nerror\tO\terror\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nmiddle\tO\tmiddle\tO\nof\tO\tof\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nstrangest\tO\tstrangest\tO\nthing\tO\tthing\tO\nis\tO\tis\tO\nthat\tO\tthat\tO\nit\tO\tit\tO\nhappens\tO\thappens\tO\nonly\tO\tonly\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\n10\tO\t10\tO\nloops\tO\tloops\tO\n,\tO\t,\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\npopulation B-Class population O\nexecuted\tO\texecuted\tO\nreport() B-Function report() O\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nafter\tO\tafter\tO\nsome\tO\tsome\tO\nexperimentation\tO\texperimentation\tO\n,\tO\t,\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nexcluded\tO\texcluded\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\noperations\tO\toperations\tO\nwhich\tO\twhich\tO\nrequire\tO\trequire\tO\ndynamic\tO\tdynamic\tO\nallocation\tO\tallocation\tO\nof\tO\tof\tO\nsome\tO\tsome\tO\nsort\tO\tsort\tO\n(\tO\t(\tO\nstrings B-Data_Type strings O\n)\tO\t)\tO\nfrom\tO\tfrom\tO\nthe\tO\tthe\tO\nreport() B-Function report() O\nmethod\tO\tmethod\tO\n,\tO\t,\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nnot\tO\tnot\tO\nget\tO\tget\tO\nthe\tO\tthe\tO\nerror\tO\terror\tO\n.\tO\t.\tO\n\t\nConversely\tO\tConversely\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\ndisable\tO\tdisable\tO\nthe\tO\tthe\tO\nsorting\tO\tsorting\tO\nmethod\tO\tmethod\tO\n(\tO\t(\tO\nuses\tO\tuses\tO\neither\tO\teither\tO\nstd::sort B-Function std::sort O\nor\tO\tor\tO\nqSort B-Function qSort O\n)\tO\t)\tO\nthe\tO\tthe\tO\nproblem\tO\tproblem\tO\nstops\tO\tstops\tO\n.\tO\t.\tO\n\t\nAlso\tO\tAlso\tO\nwhen\tO\twhen\tO\nI\tO\tI\tO\nleave\tO\tleave\tO\nthe\tO\tthe\tO\nactions\tO\tactions\tO\ndone\tO\tdone\tO\nby\tO\tby\tO\nthe\tO\tthe\tO\ntemp B-Variable temp O\nPopulation B-Class Population O\n,\tO\t,\tO\nthere\tO\tthere\tO\nis\tO\tis\tO\nno\tO\tno\tO\nproblem\tO\tproblem\tO\n.\tO\t.\tO\n\t\nSo\tO\tSo\tO\nI\tO\tI\tO\nstarted\tO\tstarted\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nlet\tO\tlet\tO\nit\tO\tit\tO\ncomplete\tO\tcomplete\tO\n10\tO\t10\tO\nloops\tO\tloops\tO\nand\tO\tand\tO\nstarted\tO\tstarted\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nstep\tO\tstep\tO\nby\tO\tby\tO\nstep\tO\tstep\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\nwent\tO\twent\tO\ninto\tO\tinto\tO\nPopulation->evaluate() B-Code_Block Population->evaluate() O\n; I-Code_Block ; O\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_754 I-Code_Block Q_754 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n} B-Code_Block } O\n\t\ndebug\tO\tdebug\tO\n:\tO\t:\tO\n\t\nThe\tO\tThe\tO\naddres\tO\taddres\tO\nprinted\tO\tprinted\tO\nout\tO\tout\tO\nis\tO\tis\tO\n0xbffff628 B-Value 0xbffff628 O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nsame\tO\tsame\tO\nas\tO\tas\tO\nthe\tO\tthe\tO\nprevious\tO\tprevious\tO\n10 B-Code_Block 10 O\n* I-Code_Block * O\npopulation_->members_.count() I-Code_Block population_->members_.count() O\nprintouts\tO\tprintouts\tO\n.\tO\t.\tO\n\t\nI\tO\tI\tO\ngo\tO\tgo\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\n( B-Code_Block ( O\n* I-Code_Block * O\nit I-Code_Block it O\n) I-Code_Block ) O\n-> B-Code_Block -> O\nevaluate() I-Code_Block evaluate() O\n; I-Code_Block ; O\nHere\tO\tHere\tO\nI\tO\tI\tO\nswitch\tO\tswitch\tO\nto\tO\tto\tO\nassembly B-Language assembly O\ncode\tO\tcode\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_755 I-Code_Block Q_755 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nI\tO\tI\tO\ngo\tO\tgo\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\ncall\tO\tcall\tO\nof\tO\tof\tO\nfunction\tO\tfunction\tO\nat\tO\tat\tO\nthe\tO\tthe\tO\nlast\tO\tlast\tO\ninstruction\tO\tinstruction\tO\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthe\tO\tthe\tO\ninstant\tO\tinstant\tO\nI\tO\tI\tO\ndo\tO\tdo\tO\nthis\tO\tthis\tO\n,\tO\t,\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nattributes\tO\tattributes\tO\nin\tO\tin\tO\nproblem_ B-Variable problem_ O\nbecome\tO\tbecome\tO\nnot\tO\tnot\tO\naccessible\tO\taccessible\tO\naccording\tO\taccording\tO\nto\tO\tto\tO\nmy\tO\tmy\tO\ndebugger B-Application debugger O\n.\tO\t.\tO\n\t\nAt\tO\tAt\tO\nthis\tO\tthis\tO\npoint\tO\tpoint\tO\nall\tO\tall\tO\nis\tO\tis\tO\nlost\tO\tlost\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_756 I-Code_Block Q_756 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\ndebug\tO\tdebug\tO\n:\tO\t:\tO\n\t\nFinally\tO\tFinally\tO\nthe\tO\tthe\tO\naddress\tO\taddress\tO\nthe\tO\tthe\tO\nproblem_ B-Variable problem_ O\nis\tO\tis\tO\npointing\tO\tpointing\tO\nat\tO\tat\tO\nbecomes\tO\tbecomes\tO\n0xbffff780 B-Value 0xbffff780 O\ninstead\tO\tinstead\tO\nof\tO\tof\tO\n0xbffff628 B-Value 0xbffff628 O\n.\tO\t.\tO\n\t\nAn\tO\tAn\tO\nincrement\tO\tincrement\tO\nof\tO\tof\tO\n344 B-Value 344 O\n\t\nThis\tO\tThis\tO\nhappens\tO\thappens\tO\nalways\tO\talways\tO\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nincrement\tO\tincrement\tO\nis\tO\tis\tO\n344 B-Value 344 O\n.\tO\t.\tO\n\t\nIf\tO\tIf\tO\nI\tO\tI\tO\nmake\tO\tmake\tO\nsome\tO\tsome\tO\nminor\tO\tminor\tO\nchanges\tO\tchanges\tO\nin\tO\tin\tO\nthe\tO\tthe\tO\nprogram\tO\tprogram\tO\n,\tO\t,\tO\nthe\tO\tthe\tO\naddress\tO\taddress\tO\nchanges\tO\tchanges\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\ndifference\tO\tdifference\tO\nbetween\tO\tbetween\tO\nthese\tO\tthese\tO\ntwo\tO\ttwo\tO\naddresses\tO\taddresses\tO\nremains\tO\tremains\tO\n344 B-Value 344 O\n.\tO\t.\tO\n\t\nThis\tO\tThis\tO\nis\tO\tis\tO\nall\tO\tall\tO\nthe\tO\tthe\tO\nmore\tO\tmore\tO\npuzzling\tO\tpuzzling\tO\n,\tO\t,\tO\nsince\tO\tsince\tO\nthe\tO\tthe\tO\nsize\tO\tsize\tO\nof\tO\tof\tO\nall\tO\tall\tO\nmy\tO\tmy\tO\nthree\tO\tthree\tO\nclasses\tO\tclasses\tO\nis\tO\tis\tO\nless\tO\tless\tO\nthan\tO\tthan\tO\n100 B-Value 100 O\n.\tO\t.\tO\n\t\nThe\tO\tThe\tO\nprogram\tO\tprogram\tO\ncrashes\tO\tcrashes\tO\ninside\tO\tinside\tO\nthe\tO\tthe\tO\nvoid B-Code_Block void O\nProblem I-Code_Block Problem O\n:: I-Code_Block :: O\nevaluate(PopulationMember&)const I-Code_Block evaluate(PopulationMember&)const O\n; I-Code_Block ; O\nmethod\tO\tmethod\tO\nas\tO\tas\tO\nsoon\tO\tsoon\tO\nas\tO\tas\tO\nsome\tO\tsome\tO\nlogic\tO\tlogic\tO\nis\tO\tis\tO\ninvolved\tO\tinvolved\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_757 I-Code_Block Q_757 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAnswer_to_Question_ID\tO\tAnswer_to_Question_ID\tO\n:\tO\t:\tO\n8988321\tO\t8988321\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/8988321/\tO\thttps://stackoverflow.com/questions/8988321/\tO\n\t\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1104 I-Code_Block A_1104 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nYou\tO\tYou\tO\nare\tO\tare\tO\ncopying\tO\tcopying\tO\naround\tO\taround\tO\nPopulation-instances B-Class Population-instances B-Code_Block\nquite\tO\tquite\tO\na\tO\ta\tO\nbit\tO\tbit\tO\n:\tO\t:\tO\n1\tO\t1\tO\n.\tO\t.\tO\nyou\tO\tyou\tO\nare\tO\tare\tO\nreturning\tO\treturning\tO\na\tO\ta\tO\nlocal\tO\tlocal\tO\ncopy\tO\tcopy\tO\nby\tO\tby\tO\nvalue\tO\tvalue\tO\n,\tO\t,\tO\n2\tO\t2\tO\n.\tO\t.\tO\ncopying\tO\tcopying\tO\nagain\tO\tagain\tO\nby\tO\tby\tO\nassigning\tO\tassigning\tO\ninto\tO\tinto\tO\nanother\tO\tanother\tO\nlocal\tO\tlocal\tO\nwith\tO\twith\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1105 I-Code_Block A_1105 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nAll\tO\tAll\tO\nthese\tO\tthese\tO\ninstances\tO\tinstances\tO\nget\tO\tget\tO\npointers B-Data_Type pointers O\nto\tO\tto\tO\nPopulationMember B-Class PopulationMember B-Code_Block\nand\tO\tand\tO\nownsMembers_ B-Variable ownsMembers_ B-Code_Block\nis\tO\tis\tO\nalways\tO\talways\tO\nset\tO\tset\tO\ntrue B-Value true O\n-\tO\t-\tO\nthis\tO\tthis\tO\nlooks\tO\tlooks\tO\nquite\tO\tquite\tO\na\tO\ta\tO\nbit\tO\tbit\tO\nfishy\tO\tfishy\tO\nand\tO\tand\tO\nyou\tO\tyou\tO\nmight\tO\tmight\tO\nwant\tO\twant\tO\nto\tO\tto\tO\ndebug\tO\tdebug\tO\nwith\tO\twith\tO\nbreakpoints\tO\tbreakpoints\tO\nin\tO\tin\tO\nyour\tO\tyour\tO\ndestructors/constructors\tO\tdestructors/constructors\tO\nto\tO\tto\tO\nfind\tO\tfind\tO\nout\tO\tout\tO\nthe\tO\tthe\tO\nlifecycle\tO\tlifecycle\tO\nof\tO\tof\tO\neach\tO\teach\tO\npopulation B-Class population O\nand\tO\tand\tO\nits\tO\tits\tO\nmembers\tO\tmembers\tO\n.\tO\t.\tO\n\t\nEDIT\tO\tEDIT\tO\n:\tO\t:\tO\nappend\tO\tappend\tO\nmethod\tO\tmethod\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1106 I-Code_Block A_1106 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nThis\tO\tThis\tO\nmeans\tO\tmeans\tO\nthat\tO\tthat\tO\nthe\tO\tthe\tO\nmembers\tO\tmembers\tO\nto\tO\tto\tO\nnot\tO\tnot\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\nthe\tO\tthe\tO\ncorrect\tO\tcorrect\tO\nPopulation B-Class Population O\nanymore\tO\tanymore\tO\n!\tO\t!\tO\n\t\nThe\tO\tThe\tO\nvalue\tO\tvalue\tO\nof\tO\tof\tO\nPopulation& B-Class Population& B-Code_Block\nis\tO\tis\tO\nstored\tO\tstored\tO\non\tO\ton\tO\nstack B-Data_Structure stack O\nand\tO\tand\tO\ngets\tO\tgets\tO\ndeleted\tO\tdeleted\tO\nafter\tO\tafter\tO\nthe\tO\tthe\tO\nfor B-Code_Block for B-Code_Block\nloop\tO\tloop\tO\nends\tO\tends\tO\n,\tO\t,\tO\nbut\tO\tbut\tO\nthe\tO\tthe\tO\nPopulationMembers B-Class PopulationMembers O\nstill\tO\tstill\tO\npoint\tO\tpoint\tO\nto\tO\tto\tO\nthese\tO\tthese\tO\nPopulations B-Class Populations O\n.\tO\t.\tO\n\t\nEdit\tO\tEdit\tO\n:\tO\t:\tO\nFix\tO\tFix\tO\n\t\nplease\tO\tplease\tO\ntry\tO\ttry\tO\nthis\tO\tthis\tO\n:\tO\t:\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nA_1107 I-Code_Block A_1107 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\nQuestion_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n35329565\tO\t35329565\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/questions/35329565/\tO\thttps://stackoverflow.com/questions/35329565/\tO\n\t\n\t\nI\tO\tI\tO\n've\tO\t've\tO\nscoured\tO\tscoured\tO\nSOF B-Website SOF O\nand\tO\tand\tO\ngoogle B-Website google O\nfor\tO\tfor\tO\nan\tO\tan\tO\nanswer\tO\tanswer\tO\nno\tO\tno\tO\njoy\tO\tjoy\tO\n\t\nI\tO\tI\tO\nam\tO\tam\tO\nable\tO\table\tO\nto\tO\tto\tO\nconnect\tO\tconnect\tO\nto\tO\tto\tO\na\tO\ta\tO\ndatabase\tO\tdatabase\tO\nI\tO\tI\tO\npresume\tO\tpresume\tO\nin\tO\tin\tO\nJavaScript B-Language JavaScript O\n,\tO\t,\tO\nI\tO\tI\tO\nwish\tO\twish\tO\nto\tO\tto\tO\npopulate\tO\tpopulate\tO\nthe\tO\tthe\tO\nresults\tO\tresults\tO\ninto\tO\tinto\tO\na\tO\ta\tO\nHTML B-Language HTML O\nforms\tO\tforms\tO\noption\tO\toption\tO\nfield\tO\tfield\tO\n.\tO\t.\tO\n\t\nCODE_BLOCK B-Code_Block CODE_BLOCK B-Code_Block\n: I-Code_Block : I-Code_Block\nQ_4333 I-Code_Block Q_4333 I-Code_Block\n( I-Code_Block ( I-Code_Block\ncode I-Code_Block code I-Code_Block\nomitted I-Code_Block omitted I-Code_Block\nfor I-Code_Block for I-Code_Block\nannotation I-Code_Block annotation I-Code_Block\n) I-Code_Block ) I-Code_Block\n\t\n"
  },
  {
    "path": "resources/pretrained_word_vectors/Readme.md",
    "content": "# Downloading Resources\n\nDownload the pretrained word vectors from here: [https://drive.google.com/drive/folders/1iEEMr2DYofulK2F5pSErOPf5ggrEqtJt?usp=sharing](https://drive.google.com/drive/folders/1iEEMr2DYofulK2F5pSErOPf5ggrEqtJt?usp=sharing), and then unzip all the ziped folders.\n"
  }
]